07070100000000000081A40000000000000000000000015ECE244400000085000000000000000000000000000000000000001B00000000cobbler-3.1.2/.codecov.yml    coverage:
  notify:
    gitter:
      default:
        url: "https://webhooks.gitter.im/e/df396c29172a840b5cdb"
        threshold: 1%   07070100000001000081A40000000000000000000000015ECE244400000097000000000000000000000000000000000000001C00000000cobbler-3.1.2/.dockerignore   # Created by .ignore support plugin (hsz.mobi)
# Idea settings
.idea/

# Python venvs
venv/
venv3/

# Coverage
covhtml/

# Python stuff
**/__pycache__
 07070100000002000041ED0000000000000000000000035ECE244400000000000000000000000000000000000000000000001600000000cobbler-3.1.2/.github 07070100000003000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000002500000000cobbler-3.1.2/.github/ISSUE_TEMPLATE  07070100000004000081A40000000000000000000000015ECE2444000001A5000000000000000000000000000000000000003900000000cobbler-3.1.2/.github/ISSUE_TEMPLATE/backport-request.md  ---
name: Backport Request
about: Any request for backport something specific
title: "[Backport] Your title"
labels: ''
assignees: ''

---

### Original feature issue

<!--- (if present): Describe the fearture --->
<!--- Is there an PR number for that feature? --->

### Target Release Series

- [ ] release30
- [ ] release28
- [ ] release26

### Reason

<!--- Describe briefly why you want to have this backported. --->
   07070100000005000081A40000000000000000000000015ECE2444000002CF000000000000000000000000000000000000003300000000cobbler-3.1.2/.github/ISSUE_TEMPLATE/bug_report.md    ---
name: Bug report
about: Create a report to help us improve
title: ''
labels: Bug Report
assignees: ''

---

### Describe the bug

<!--- A clear and concise description of what the bug is. -->

<!--- HINT: You can paste gist.github.com links for long logs or larger files -->

### To Reproduce

1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

### Expected behavior

<!--- A clear and concise description of what you expected to happen. -->

### Version

<!--- Paste output from `cobbler version` -->
````paste below
````

### Screenshots

<!--- If applicable, add screenshots to help explain your problem. -->

### Additional context

<!--- Add any other context about the problem here. -->
 07070100000006000081A40000000000000000000000015ECE24440000026A000000000000000000000000000000000000003800000000cobbler-3.1.2/.github/ISSUE_TEMPLATE/feature_request.md   ---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: Feature Request
assignees: ''

---

### Is your feature request related to a problem?

<!--- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] -->

### The Behaviour you'd like

<!--- A clear and concise description of what you want to happen. -->

### Alternatives you've considered

<!--- A clear and concise description of any alternative solutions or features you've considered. -->

### Additional context

<!--- Add any other context or screenshots about the feature request here. -->
  07070100000007000081A40000000000000000000000015ECE24440000010B000000000000000000000000000000000000003100000000cobbler-3.1.2/.github/ISSUE_TEMPLATE/question.md  ---
name: Question
about: A question which is not a bug report but sth which may need to be addressed.
title: ''
labels: Question
assignees: ''

---

### Version

<!--- Paste output from `cobbler version` -->
````paste below
````

### Question

<!--- Be precise! -->
 07070100000008000081A40000000000000000000000015ECE244400000114000000000000000000000000000000000000001F00000000cobbler-3.1.2/.readthedocs.yml    # .readthedocs.yml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

version: 2

sphinx:
  configuration: docs/conf.py

formats: all

python:
  version: 3.7
  install:
    - requirements: docs/requirements.rtd.txt
07070100000009000081A40000000000000000000000015ECE244400000770000000000000000000000000000000000000001A00000000cobbler-3.1.2/.travis.yml dist: xenial
language: generic
services:
  - docker
branches:
  only:
    - master
addons:
  apt:
    packages:
      - python3
      - python3-pip
jobs:
  include:
    - stage: lint
      name: "Linter"
      script:
        - pip3 install pyflakes pycodestyle
        - pyflakes *.py cobbler/*.py cobbler/modules/*.py cobbler/web/*.py cobbler/web/templatetags/*.py bin/cobbler* bin/*.py web/cobbler.wsgi
        - pycodestyle -r --ignore E501,E402,E722,W504 *.py cobbler/*.py cobbler/modules/*.py cobbler/web/*.py cobbler/web/templatetags/*.py bin/cobbler* bin/*.py web/cobbler.wsgi
    - stage: testing
      name: "Run unit tests"
      script:
        - docker build -t cobbler .
        - docker run -d --privileged -v /sys/fs/cgroup:/sys/fs/cgroup:ro -v /test_dir:${PWD} --name cobbler cobbler
        - sleep 10
        - docker logs cobbler
        - COMMIT_SHA=`git rev-parse HEAD`
        - docker exec -u 0 -it cobbler bash -c "pytest --cov=./cobbler && codecov --token=1064928c-6477-41be-9ac2-7ce5e6d1fd8b --commit=${COMMIT_SHA}"
    - stage: rpms
      name: "Build CentOS 7 RPMs"
      script: ./tests/build-and-install-rpms.sh el7 dockerfiles/CentOS7.dockerfile
    - stage: rpms
      name: "Build CentOS 8 RPMs"
      script: ./tests/build-and-install-rpms.sh el8 dockerfiles/CentOS8.dockerfile
    - stage: rpms
      name: "Build Fedora 31 RPMs"
      script: ./tests/build-and-install-rpms.sh fc31 dockerfiles/Fedora31.dockerfile
    - stage: debs
      name: "Build Debian 10 DEBs"
      script: ./tests/build-and-install-debs.sh deb10 dockerfiles/Debian10.dockerfile
notifications:
  webhooks:
    urls:
      - https://webhooks.gitter.im/e/988ae7d365d12a2bf093
    on_success: always  # options: [always|never|change] default: always
    on_failure: always  # options: [always|never|change] default: always
    on_start: never     # options: [always|never|change] default: always
0707010000000A000081A40000000000000000000000015ECE2444000000EC000000000000000000000000000000000000001900000000cobbler-3.1.2/AUTHORS.in  Cobbler was originally created by:

    Michael DeHaan <michael.dehaan@gmail.com>

And is currently maintained by:

    Enno Gotthold <matrixfueller@gmail.com> aka SchoolGuy

With patches and other contributions from (alphabetically):

0707010000000B000081A40000000000000000000000015ECE2444000000D1000000000000000000000000000000000000001E00000000cobbler-3.1.2/CONTRIBUTING.md # How to contribute?

Please have a look at: https://github.com/cobbler/cobbler/wiki

The Github Wiki should be the place for developers to document with a single page a single topic about developing
cobbler.
   0707010000000C000081A40000000000000000000000015ECE244400004644000000000000000000000000000000000000001600000000cobbler-3.1.2/COPYING 		    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.

    <one line to give the program's name and a brief idea of what it does.>
    Copyright (C) <year>  <name of author>

    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.

  <signature of Ty Coon>, 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.

0707010000000D000081A40000000000000000000000015ECE2444000000E6000000000000000000000000000000000000001E00000000cobbler-3.1.2/DOCKER-BUILD.md # Build using Docker

1. Make sure docker and docker-compose are installed
2. Use docker-compose to build rpms for the various distros
```
make clean
docker-compose build --parallel
docker-compose up
```
3. RPMs are in rpm-build/
  0707010000000E000081A40000000000000000000000015ECE24440000013D000000000000000000000000000000000000001900000000cobbler-3.1.2/Dockerfile  # WARNING! This is not in any way production ready. It is just for testing!

FROM opensuse/leap:15.2

ENV container docker

WORKDIR /test_dir
COPY . /test_dir

VOLUME [ "/sys/fs/cgroup" ]

RUN ["/bin/bash", "-c", "tests/setup-test-docker.sh"]

# Set this as an entrypoint
CMD ["/usr/lib/systemd/systemd", "--system"]
   0707010000000F000081A40000000000000000000000015ECE244400000180000000000000000000000000000000000000001A00000000cobbler-3.1.2/MANIFEST.in include COPYING AUTHORS
include cobbler.spec config/service/cobblerd.service
include AUTHORS.in README.md
recursive-include misc *
recursive-include bin *
recursive-include config *
recursive-include docs *
recursive-include templates *
recursive-include autoinstall_snippets *
recursive-include autoinstall_templates *
recursive-include autoinstall_scripts *
recursive-include web *
07070100000010000081A40000000000000000000000015ECE244400001ABE000000000000000000000000000000000000001700000000cobbler-3.1.2/Makefile    #
# Setup Makefile to match your environment
#
PYTHON=/usr/bin/python3

# check for executables

PYFLAKES = $(shell { command -v pyflakes-3 || command -v pyflakes3 || command -v pyflakes; }  2> /dev/null)
PYCODESTYLE := $(shell { command -v pycodestyle-3 || command -v pycodestyle3 || command -v pycodestyle; } 2> /dev/null)
HTTPD = $(shell which httpd)
APACHE2 = $(shell which apache2)

# Debian / Ubuntu have /bin/sh -> dash
SHELL = /bin/bash

TOP_DIR:=$(shell pwd)
DESTDIR=/

prefix=devinstall
statepath=/tmp/cobbler_settings/$(prefix)

# Taken from: https://marmelab.com/blog/2016/02/29/auto-documented-makefile.html
help:
	@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'

all: clean build ## Executes the clean target and afterwards the build target.

clean: ## Cleans Python bytecode, build artifacts and the temp files.
	@echo "cleaning: python bytecode"
	@rm -f *.pyc
	@rm -f cobbler/*.pyc
	@rm -f cobbler/modules/*.pyc
	@rm -f cobbler/web/*.pyc
	@rm -f cobbler/web/templatetags/*.pyc
	@echo "cleaning: build artifacts"
	@rm -rf build release dist cobbler.egg-info
	@rm -rf rpm-build/*
	@rm -rf deb-build/*
	@rm -f MANIFEST AUTHORS
	@rm -f config/version
	@rm -f docs/*.1.gz
	@echo "cleaning: temp files"
	@rm -f *~
	@rm -rf buildiso
	@rm -f *.tmp
	@rm -f *.log

cleandoc: ## Cleans the docs directory.
	@echo "cleaning: documentation"
	@cd docs; make clean > /dev/null 2>&1

doc: ## Creates the documentation with sphinx in html form.
	@echo "creating: documentation"
	@cd docs; make html > /dev/null 2>&1

qa: ## If pyflakes and/or pycodestyle is found then they are run.
ifeq ($(strip $(PYFLAKES)),)
	@echo "No pyflakes found"
else
	@echo "checking: pyflakes ${PYFLAKES}"
	@${PYFLAKES} \
		*.py \
		cobbler/*.py \
		cobbler/modules/*.py \
		cobbler/web/*.py cobbler/web/templatetags/*.py \
		bin/cobbler* bin/*.py web/cobbler.wsgi
endif

ifeq ($(strip $(PYCODESTYLE)),)
	@echo "No pycodestyle found"
else
	@echo "checking: pycodestyle"
	@${PYCODESTYLE} -r --ignore E501,E402,E722,W504 \
			*.py \
		cobbler/*.py \
		cobbler/modules/*.py \
		cobbler/web/*.py cobbler/web/templatetags/*.py \
		bin/cobbler* bin/*.py web/cobbler.wsgi
endif

authors: ## Creates the AUTHORS file.
	@echo "creating: AUTHORS"
	@cp AUTHORS.in AUTHORS
	@git log --format='%aN <%aE>' | grep -v 'root' | sort -u >> AUTHORS

sdist: authors ## Creates the sdist for release preparation.
	@echo "creating: sdist"
	@${PYTHON} setup.py sdist bdist_wheel

release: clean qa authors sdist ## Creates the full release.
	@echo "creating: release artifacts"
	@mkdir release
	@cp dist/*.gz release/
	@cp cobbler.spec release/

test-centos7: ## Executes the testscript for testing cobbler in a docker container on CentOS7.
	./tests/build-and-install-rpms.sh --with-tests el7 dockerfiles/CentOS7.dockerfile

test-centos8: ## Executes the testscript for testing cobbler in a docker container on CentOS8.
	./tests/build-and-install-rpms.sh --with-tests el8 dockerfiles/CentOS8.dockerfile

test-fedora31: ## Executes the testscript for testing cobbler in a docker container on Fedora 31.
	./tests/build-and-install-rpms.sh --with-tests f31 dockerfiles/Fedora31.dockerfile

test-debian10: ## Executes the testscript for testing cobbler in a docker container on Debian 10.
	./tests/build-and-install-debs.sh --with-tests deb10 dockerfiles/Debian10.dockerfile

build: ## Runs the Python Build.
	${PYTHON} setup.py build -f

install: build ## Runs the build target and then installs via setup.py
	# Debian/Ubuntu requires an additional parameter in setup.py
	@${PYTHON} setup.py install --root $(DESTDIR) -f

devinstall: ## This deletes the /usr/share/cobbler directory and then runs the targets savestate, install and restorestate.
	-rm -rf $(DESTDIR)/usr/share/cobbler
	make savestate
	make install
	make restorestate

savestate: ## This runs the setup.py task savestate.
	@${PYTHON} setup.py -v savestate --root $(DESTDIR); \


restorestate: ## This restores a state which was previously saved via the target savestate. (Also run via setup.py)
	# Check if we are on Red Hat, Suse or Debian based distribution
	@${PYTHON} setup.py -v restorestate --root $(DESTDIR); \
	find $(DESTDIR)/var/lib/cobbler/triggers | xargs chmod +x
	if [ -n "`getent passwd apache`" ] ; then \
		chown -R apache $(DESTDIR)/var/www/cobbler; \
	elif [ -n "`getent passwd wwwrun`" ] ; then \
		chown -R wwwrun $(DESTDIR)/usr/share/cobbler/web; \
	elif [ -n "`getent passwd www-data`"] ; then \
		chown -R www-data $(DESTDIR)/usr/share/cobbler/web; \
	fi
	if [ -d $(DESTDIR)/var/www/cobbler ] ; then \
		chmod -R +x $(DESTDIR)/var/www/cobbler/svc; \
	fi
	if [ -d $(DESTDIR)/usr/share/cobbler/web ] ; then \
		chmod -R +x $(DESTDIR)/usr/share/cobbler/web; \
	fi
	if [ -d $(DESTDIR)/srv/www/cobbler/svc ]; then \
		chmod -R +x $(DESTDIR)/srv/www/cobbler/svc; \
	fi
	rm -rf $(statepath)

webtest: devinstall ## Runs the task devinstall and then runs the targets clean, devinstall and restartservices.
	make clean
	make devinstall
	make restartservices

restartservices: ## Restarts the Apache2 and Cobbler-Web via init.d, service or systemctl.
	$(shell systemctl restart cobblerd)
ifneq ($(strip $(HTTPD)),)
	systemctl restart httpd
else ifneq ($(strip $(APACHE2)),)
	systemctl restart apache2
else
	$(error "No apache2 or httpd in $(PATH), consider installing one of the two (depending on the distro)!")
endif

rpms: release ## Runs the target release and then creates via rpmbuild the rpms in a directory called rpm-build.
	mkdir -p rpm-build
	cp dist/*.gz rpm-build/
	rpmbuild --define "_topdir %(pwd)/rpm-build" \
	--define "_builddir %{_topdir}" \
	--define "_rpmdir %{_topdir}" \
	--define "_srcrpmdir %{_topdir}" \
	--define "_specdir %{_topdir}" \
	--define '_rpmfilename %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm' \
	--define "_sourcedir  %{_topdir}" \
	-ba cobbler.spec

# Only build a binary package
debs: release ## Runs the target release and then creates via debbuild the debs in a directory called deb-build.
	mkdir -p deb-build
	mkdir -p deb-build/{BUILD,BUILDROOT,DEBS,SDEBS,SOURCES}
	cp dist/*.gz deb-build/
	debbuild --define "_topdir %(pwd)/deb-build" \
	--define "_builddir %{_topdir}" \
	--define "_specdir %{_topdir}" \
	--define "_sourcedir  %{_topdir}" \
	-vv -bb cobbler.spec

eraseconfig: ## Deletes the cobbler data jsons which are created when using the file provider.
	-rm /var/lib/cobbler/cobbler_collections/distros/*
	-rm /var/lib/cobbler/cobbler_collections/images/*
	-rm /var/lib/cobbler/cobbler_collections/profiles/*
	-rm /var/lib/cobbler/cobbler_collections/systems/*
	-rm /var/lib/cobbler/cobbler_collections/repos/*
	-rm /var/lib/cobbler/cobbler_collections/mgmtclasses/*
	-rm /var/lib/cobbler/cobbler_collections/files/*
	-rm /var/lib/cobbler/cobbler_collections/packages/*
  07070100000011000081A40000000000000000000000015ECE24440000067F000000000000000000000000000000000000001800000000cobbler-3.1.2/README.md   [![Build Status](https://travis-ci.org/cobbler/cobbler.svg)](https://travis-ci.org/cobbler/cobbler)
[![Documentation Status](https://readthedocs.org/projects/cobbler/badge/?version=latest)](https://cobbler.readthedocs.io/en/latest/)
[![Gitter chat](https://badges.gitter.im/cobbler/gitter.png)](https://gitter.im/cobbler/community)
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/9bcdcf0fdf374e22843f2c088d4b7449)](https://www.codacy.com/manual/Cobbler_2/cobbler?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=cobbler/cobbler&amp;utm_campaign=Badge_Grade)
[![codecov](https://codecov.io/gh/cobbler/cobbler/branch/master/graph/badge.svg)](https://codecov.io/gh/cobbler/cobbler)

Cobbler
=======

Cobbler is a Linux installation server that allows for rapid setup of network installation environments. It glues
together and automates many associated Linux tasks so you do not have to hop between lots of various commands and
applications when rolling out new systems, and, in some cases, changing existing ones. It can help with installation,
DNS, DHCP, package updates, power management, configuration management orchestration, and much more.

Read more at [https://cobbler.github.io](https://cobbler.github.io)

To view the manpages, install the RPM and run `man cobbler` or run `perldoc cobbler.pod` from a source checkout.

To build the RPM, run `make rpms`. Developers, try `make webtest` to do a local `make install` that preserves your
configuration.

If you want to contribute you may find more information under [CONTRIBUTING.md](CONTRIBUTING.md).

The documentation can be found at [Readthedocs](https://cobbler.readthedocs.io)
 07070100000012000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000002200000000cobbler-3.1.2/autoinstall_scripts 07070100000013000081A40000000000000000000000015ECE2444000000AF000000000000000000000000000000000000003800000000cobbler-3.1.2/autoinstall_scripts/preseed_early_default   # Start preseed_early_default
# This script is not run in the chroot /target by default
$SNIPPET('autoinstall_start')
$SNIPPET('save_boot_device')
# End preseed_early_default
 07070100000014000081A40000000000000000000000015ECE244400000111000000000000000000000000000000000000003700000000cobbler-3.1.2/autoinstall_scripts/preseed_late_default    # Start preseed_late_default
# This script runs in the chroot /target by default
$SNIPPET('post_install_network_config_deb')
$SNIPPET('late_apt_repo_config')
$SNIPPET('post_run_deb')
$SNIPPET('download_config_files')
$SNIPPET('autoinstall_done')
# End preseed_late_default
   07070100000015000081A40000000000000000000000015ECE24440000009B000000000000000000000000000000000000004000000000cobbler-3.1.2/autoinstall_scripts/preseed_nochroot_late_default   # Start preseed_nochroot_late_default
# This script runs in the / directory by default
$SNIPPET('restore_boot_device')
# End preseed_nochroot_late_default
 07070100000016000041ED0000000000000000000000035ECE244400000000000000000000000000000000000000000000002300000000cobbler-3.1.2/autoinstall_snippets    07070100000017000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000002800000000cobbler-3.1.2/autoinstall_snippets/SuSE   07070100000018000081A40000000000000000000000015ECE2444000003FF000000000000000000000000000000000000003300000000cobbler-3.1.2/autoinstall_snippets/SuSE/addons.xml    ##
## This snippet enables you to install additional and customized packages
## by adding further software repositories.
##
<add-on>
    <add_on_products config:type="list">
##
#for rkey in range(0 , len($repos))
  #set rdata         = $repo_data[$rkey]
  #set $repo_name    = $rdata.get("name", "")
  #set $repo_arch    = $rdata.get("arch", "")
  #set $repo_breed   = $rdata.get("breed", "")
  #set $repo_mirror  = $rdata.get("mirror", "")
  #set $repo_comment = $rdata.get("comment", "")
  #if $repo_comment == ""
    #set $repo_comment = $repo_name
  #end if
  #set $repo_proxy   = $rdata.get("proxy", "")
  #set $repo_prio    = $rdata.get("priority", "")
##
      <listentry>
        <media_url>$repo_mirror</media_url>
        <product>$repo_comment</product>
        <product_dir>/</product_dir>
        <ask_on_error config:type="boolean">false</ask_on_error>
        <!-- available since openSUSE 11.0/SLES 11 -->
        <name>$repo_name</name>
      </listentry>
##
#end for
##
    </add_on_products>
  </add-on>
 07070100000019000081A40000000000000000000000015ECE244400000335000000000000000000000000000000000000003200000000cobbler-3.1.2/autoinstall_snippets/SuSE/hosts.xml <host>
    <hosts config:type="list">
      <hosts_entry>
        <host_address>127.0.0.1</host_address>
        <names config:type="list">
          <name>localhost</name>
        </names>
      </hosts_entry>
      #if $getVar("system_name","") != ""
      #set $ikeys = $interfaces.keys()
      #for $iface in $ikeys
      #set $idata = $interfaces[$iface]
      #if $idata["interface_type"].lower() in ["","na","bridge","bond"]
      <hosts_entry>
        <host_address>$idata["ip_address"]</host_address>
        <names config:type="list">
          #set $my_interface_hostname_short = $idata["dns_name"].split('.',1)[:1][0]
          <name>$idata["dns_name"].lower() $my_interface_hostname_short.lower()</name>
        </names>
      </hosts_entry>
      #end if
      #end for
      #end if
    </hosts>
  </host>
   0707010000001A000081A40000000000000000000000015ECE24440000051E000000000000000000000000000000000000003200000000cobbler-3.1.2/autoinstall_snippets/SuSE/kdump.xml <kdump>
    <!-- memory reservation -->
    <!-- reserve 64 MB with 256MB to 2GB Memory and 128MB with more then 2GB Memory -->
    <add_crash_kernel config:type="boolean">true</add_crash_kernel>
    <crash_kernel>256M-2G:64M,2G-:128M</crash_kernel>
  
    <general>
      <!-- dump target settings -->
      <KDUMP_SAVEDIR>file:///var/crash</KDUMP_SAVEDIR>
      <KDUMP_COPY_KERNEL>true</KDUMP_COPY_KERNEL>
      <KDUMP_FREE_DISK_SIZE>64</KDUMP_FREE_DISK_SIZE>
      <KDUMP_KEEP_OLD_DUMPS>4</KDUMP_KEEP_OLD_DUMPS>
  
      <!-- filtering and compression -->
      <KDUMP_DUMPFORMAT>compressed</KDUMP_DUMPFORMAT>
      <KDUMP_DUMPLEVEL>31</KDUMP_DUMPLEVEL>
  
      <!-- notification -->
      <KDUMP_NOTIFICATION_TO></KDUMP_NOTIFICATION_TO>
      <KDUMP_NOTIFICATION_CC></KDUMP_NOTIFICATION_CC>
      <KDUMP_SMTP_SERVER></KDUMP_SMTP_SERVER>
      <KDUMP_SMTP_USER></KDUMP_SMTP_USER>
      <KDUMP_SMTP_PASSWORD></KDUMP_SMTP_PASSWORD>
  
      <!-- kdump kernel -->
      <KDUMP_KERNELVER></KDUMP_KERNELVER>
      <KDUMP_COMMANDLINE></KDUMP_COMMANDLINE>
      <KDUMP_COMMANDLINE_APPEND></KDUMP_COMMANDLINE_APPEND>
  
      <!-- expert settings -->
      <KDUMP_IMMEDIATE_REBOOT>yes</KDUMP_IMMEDIATE_REBOOT>
      <KDUMP_VERBOSE>3</KDUMP_VERBOSE>
      <KEXEC_OPTIONS></KEXEC_OPTIONS>
    </general>
  </kdump> 
  0707010000001B000081A40000000000000000000000015ECE244400002165000000000000000000000000000000000000003700000000cobbler-3.1.2/autoinstall_snippets/SuSE/networking.xml    #set $osversion = $getVar("os_version","")
#set $hostname = $getVar("hostname","")
#if $hostname == ""
#set $hostname = $getVar("system_name","cobbler")
#end if
#if $getVar("dns_name_eth0","") != ""
	#set $my_hostname = $hostname.split('.',1)[:1][0]
	#set $my_domainname = $dns_name_eth0.split('.',1)[1:][0]
#else
	#set $my_hostname = $hostname
	#set $my_domainname = "site"
#end if

  <networking>
    <keep_install_network config:type="boolean">false</keep_install_network>
    <dhcp_options>
      <dhclient_client_id></dhclient_client_id>
      <dhclient_hostname_option></dhclient_hostname_option>
    </dhcp_options>
    <dns>
      <dhcp_hostname config:type="boolean">false</dhcp_hostname>
      <dhcp_resolv config:type="boolean">false</dhcp_resolv>
      <write_hostname config:type="boolean">false</write_hostname>
      <resolv_conf_policy></resolv_conf_policy>
      <hostname>$my_hostname</hostname>
      <domain>$my_domainname</domain>
      #if $getVar("name_servers_search","") != ""
      <searchlist config:type="list">
      #for $sd in $name_servers_search
        <search>$sd</search>
      #end for
      </searchlist>
      #end if
      <nameservers config:type="list">
      #for $ns in $name_servers
        <nameserver>$ns</nameserver>
      #end for
      </nameservers>
    </dns>
    <interfaces config:type="list">
    #if $getVar("system_name","") != ""
    #import re
    #set $vlanpattern = $re.compile("[a-zA-Z0-9]+[\.][0-9]+")
    #set $ikeys = $interfaces.keys()
    #for $iface in $ikeys
      #set $idata                = $interfaces[$iface]
      #set $mac                  = $idata.get("mac_address", "").lower()
      #set $static               = $idata.get("static", "")
      #set $ip                   = $idata.get("ip_address", "")
      #set $netmask              = $idata.get("netmask", "")
      #set $static_routes        = $idata.get("static_routes", "")
      #set $iface_type           = $idata.get("interface_type", "").lower()
      #set $iface_master         = $idata.get("interface_master", "")
      #set $bonding_opts         = $idata.get("bonding_opts", "").lower()
      #set $ipv6_address         = $idata.get("ipv6_address", "")
      #set $ipv6_secondaries     = $idata.get("ipv6_secondaries", "")
      #set $ipv6_mtu             = $idata.get("ipv6_mtu", "")
      #set $ipv6_default_gateway = $idata.get("ipv6_default_gateway", "")
      #set $ipv6_static_routes   = $idata.get("ipv6_static_routes", "")
      ## start of interface section
      <interface>
      #if $iface_type in ("bond", "master")
        <bonding_master>yes</bonding_master>
        <bonding_module_opts>$bonding_opts</bonding_module_opts>
        #set $loop_ikeys = $interfaces.keys()
        #set $loop_counter = 0
        #for $loop_iface in $loop_ikeys
          #set $loop_idata          = $interfaces[$loop_iface]
          #set $loop_interface_type = $loop_idata.get("interface_type", "").lower()
          #if $loop_interface_type in ("slave","bond_slave")
             #if $loop_idata["interface_master"] != ""
                #if $loop_idata["interface_master"].lower() == $iface.lower()
        <bonding_slave$loop_counter>$loop_iface</bonding_slave$loop_counter>
                   #set $loop_counter += 1
                #end if
             #end if
          #end if
        #end for
        #if $static
        <bootproto>static</bootproto>
        #else
        <bootproto>dhcp</bootproto>
        #end if
        <device>$iface</device>
        <ipaddr>$ip</ipaddr>
        <netmask>$netmask</netmask>
        <startmode>auto</startmode>
        <usercontrol>no</usercontrol>
      #elif $iface_type in ("slave","bond_slave","bridge_slave")
        <bootproto>none</bootproto>
        <device>$iface</device>
        #if $osversion == "sles12" or re.match('^sles12sp[1234]$', $osversion)
        <startmode>hotplug</startmode>
        #else
        <startmode>off</startmode>
        #end if
        <usercontrol>no</usercontrol>
      #elif $iface_type in ("","na")
        #if $static
        <bootproto>static</bootproto>
        #else
        <bootproto>dhcp</bootproto>
        #end if
        <device>$iface</device>
        <lladdr>$mac</lladdr>
        <ipaddr>$ip</ipaddr>
        <netmask>$netmask</netmask>
        <startmode>auto</startmode>
        <usercontrol>no</usercontrol>
      #end if
      ## ===================================================================
      ## VLAN configuration
      ## ===================================================================
      #if $vlanpattern.match($iface)
        #set [$etherdevice, $vlanid] = $iface.split(".")
        <etherdevice>$etherdevice</etherdevice>
        <vlan_id>$vlanid</vlan_id>
      #end if
      ## ===================================================================
      ## IPv6 support
      ## ===================================================================
      #if $ipv6_address != ""
        <aliases>
          <alias0>
            <IPADDR>$ipv6_address</IPADDR>
            <LABEL>a0</LABEL>
            <PREFIXLEN>64</PREFIXLEN>
          </alias0>
        #if $ipv6_secondaries != ""
          #set $s = 1
          #for $alias in $ipv6_secondaries
          <alias${s}>
            <IPADDR>$alias</IPADDR>
            <LABEL>a${s}</LABEL>
            <PREFIXLEN>64</PREFIXLEN>
          </alias${s}>
            #set $s += 1
          #end for
        #end if
        </aliases>
      #end if
      </interface>
    #end for
    #end if
    </interfaces>
    <managed config:type="boolean">false</managed>
    <net-udev config:type="list">
    #if $getVar("system_name","") != ""
    #set $ikeys = $interfaces.keys()
    #for $iface in $ikeys
      #set $idata = $interfaces[$iface]
      #set $mac            = $idata["mac_address"]
      #set $interface_type = $idata["interface_type"]
      #if $mac.lower() != ""
      #if $interface_type.lower() not in ["bond","bridge"]
      <rule>
        <name>$iface</name>
        <rule>ATTR{address}</rule>
        <value>$mac.lower()</value>
      </rule>
      #end if
      #end if
    #end for
    #end if
    </net-udev>
    <routing>
      <ip_forward config:type="boolean">false</ip_forward>
      #if $getVar("system_name","") != ""
      <routes config:type="list">
        <route>
          <destination>default</destination>
          <netmask>-</netmask>
          <device>-</device>
          <gateway>$gateway</gateway>
        </route>
        ## ===================================================================
        ## IPv4 static route setup
        ## ===================================================================
        #for $iface in $ikeys
          #set $idata         = $interfaces[$iface]
          #set $static_routes = $idata.get("static_routes", "")
          #for $route in $static_routes
            #set routepattern = $re.compile("[0-9/.]+:[0-9.]+")
            #if $routepattern.match($route)
              #set $routebits = $route.split(":")
              #set [$network, $router] = $route.split(":")
        <route>
          <destination>$network</destination>
          <netmask>-</netmask>
          <device>$iface</device>
          <gateway>$router</gateway>
        </route>
            #end if
          #end for
        #end for
        ## ===================================================================
        ## IPv6 routing setup
        ## ===================================================================
        #for $iface in $ikeys
          #set $idata                = $interfaces[$iface]
          #set $ipv6_static_routes   = $idata.get("ipv6_static_routes", "")
          #set $ipv6_default_gateway = $idata.get("ipv6_default_gateway", "")
          #if $ipv6_default_gateway != ""
        <route>
          <destination>default</destination>
          <netmask>-</netmask>
          <device>$iface</device>
          <gateway>$ipv6_default_gateway</gateway>
        </route>
          #end if
          #for $route in $ipv6_static_routes
            #set routepattern = $re.compile("[0-9a-fA-F:/]+,[0-9a-fA-F:]+")
            #if $routepattern.match($route)
              #set $routebits = $route.split(",")
              #set [$network, $router] = $route.split(",")
        <route>
          <destination>$network</destination>
          <netmask>-</netmask>
          <device>$iface</device>
          <gateway>$router</gateway>
        </route>
            #end if
          #end for
        #end for
      </routes>
      #end if
    </routing>
  </networking>
   0707010000001C000081A40000000000000000000000015ECE244400000107000000000000000000000000000000000000003200000000cobbler-3.1.2/autoinstall_snippets/SuSE/proxy.xml <proxy>
  <enabled config:type="boolean">true</enabled>
  <ftp_proxy></ftp_proxy>
  <http_proxy>$proxy</http_proxy>
  <https_proxy></https_proxy>
  <no_proxy>localhost, 127.0.0.1</no_proxy>
  <proxy_password></proxy_password>
  <proxy_user></proxy_user>
</proxy>
 0707010000001D000081A40000000000000000000000015ECE2444000001B6000000000000000000000000000000000000003F00000000cobbler-3.1.2/autoinstall_snippets/SuSE/suse_scriptwrapper.xml    <script>
##        <debug config:type="boolean">true</debug>
##        <feedback config:type="boolean">false</feedback>
##        <location></location>
        <network_needed config:type="boolean">true</network_needed>
        <interpreter>shell</interpreter>
#set $filename = $wrappedscript.replace('/', '_')
        <filename>$filename</filename>
        <source><![CDATA[
$SNIPPET($wrappedscript)
        ]]></source>
      </script>
  0707010000001E000081A40000000000000000000000015ECE2444000015B5000000000000000000000000000000000000003400000000cobbler-3.1.2/autoinstall_snippets/autoinstall_done   #set system_name = $getVar('system_name','')
#set profile_name = $getVar('profile_name','')
#set breed = $getVar('breed','')
#set os_version = $getVar('os_version','')
#set srv = $getVar('http_server','')
#set autoinstall = $getVar('autoinstall','')
#set run_install_triggers = $str($getVar('run_install_triggers',''))
#set pxe_just_once = $str($getVar('pxe_just_once',''))
#set nopxe = ""
#set save_autoinstall = ""
#set runpost = ""
#if $system_name != ''
    ## PXE JUST ONCE
    #if $pxe_just_once in [ "1", "true", "yes", "y" ]
        #if $breed == 'redhat'
            #set nopxe = "\ncurl \"http://%s/cblr/svc/op/nopxe/system/%s\" -o /dev/null" % (srv, system_name)
        #else if $breed == 'suse'
            #set nopxe = "\nwget \"http://%s/cblr/svc/op/nopxe/system/%s\" -O /dev/null" % (srv, system_name)
        #else if $breed == 'vmware' and $os_version == 'esx4'
            #set nopxe = "\ncurl \"http://%s/cblr/svc/op/nopxe/system/%s\" -o /dev/null" % (srv, system_name)
        #else if $breed == 'vmware'
            #set nopxe = "\nwget \"http://%s/cblr/svc/op/nopxe/system/%s\" -O /dev/null" % (srv, system_name)
        #else if $breed == 'debian' or $breed == 'ubuntu'
            #set nopxe = "\nwget \"http://%s/cblr/svc/op/nopxe/system/%s\" -O /dev/null" % (srv, system_name)
        #else
            ## default to wget
            #set nopxe = "\nwget \"http://%s/cblr/svc/op/nopxe/system/%s\" -O /dev/null;" % (srv, system_name)
        #end if
    #end if
    ## SAVE AUTO INSTALLATION
    #if $autoinstall != ''
        #if $breed == 'redhat'
            #set save_autoinstall = "\ncurl \"http://%s/cblr/svc/op/autoinstall/%s/%s\" -o /root/cobbler.ks" % (srv, "system", system_name)
        #else if $breed == 'suse'
            #set save_autoinstall = "\ncurl \"http://%s/cblr/svc/op/autoinstall/%s/%s\" -o /root/cobbler.xml" % (srv, "system", system_name)
        #else if $breed == 'vmware' and $os_version == 'esx4'
            #set save_autoinstall = "\ncurl \"http://%s/cblr/svc/op/autoinstall/%s/%s\" -o /root/cobbler.ks" % (srv, "system", system_name)
        #else if $breed == 'vmware'
            #set save_autoinstall = "\nwget \"http://%s/cblr/svc/op/autoinstall/%s/%s\" -O /var/log/cobbler.ks" % (srv, "system", system_name)
        #else if $breed == 'debian' or $breed == 'ubuntu'
            #set save_autoinstall = "\nwget \"http://%s/cblr/svc/op/autoinstall/%s/%s\" -O /var/log/cobbler.seed" % (srv, "system", system_name)
        #end if
    #end if
    ## RUN POST TRIGGER
    #if $run_install_triggers in [ "1", "true", "yes", "y" ]
        #if $breed == 'redhat'
            #set runpost = "\ncurl \"http://%s/cblr/svc/op/trig/mode/post/%s/%s\" -o /dev/null" % (srv, "system", system_name)
        #else if $breed == 'suse'
            #set runpost = "\ncurl \"http://%s/cblr/svc/op/trig/mode/post/%s/%s\" -o /dev/null" % (srv, "system", system_name)
        #else if $breed == 'vmware' and $os_version == 'esx4'
            #set runpost = "\ncurl \"http://%s/cblr/svc/op/trig/mode/post/%s/%s\" -o /dev/null" % (srv, "system", system_name)
        #else if $breed == 'vmware'
            #set runpost = "\nwget \"http://%s/cblr/svc/op/trig/mode/post/%s/%s\" -O /dev/null" % (srv, "system", system_name)
        #else if $breed == 'debian' or $breed == 'ubuntu'
            #set runpost = "\nwget \"http://%s/cblr/svc/op/trig/mode/post/%s/%s\" -O /dev/null" % (srv, "system", system_name)
        #end if
    #end if
#else if $profile_name != ''
    ## SAVE KICKSTART
    #if $autoinstall != ''
        #if $breed == 'redhat'
            #set save_autoinstall = "\ncurl \"http://%s/cblr/svc/op/autoinstall/%s/%s\" -o /root/cobbler.ks" % (srv, "profile", profile_name)
        #else if $breed == 'suse'
            #set save_autoinstall = "\ncurl \"http://%s/cblr/svc/op/autoinstall/%s/%s\" -o /root/cobbler.xml" % (srv, "profile", profile_name)
        #else if $breed == 'vmware' and $os_version == 'esx4'
            #set save_autoinstall = "\ncurl \"http://%s/cblr/svc/op/autoinstall/%s/%s\" -o /root/cobbler.ks" % (srv, "profile", profile_name)
        #else if $breed == 'vmware'
            #set save_autoinstall = "\nwget \"http://%s/cblr/svc/op/autoinstall/%s/%s\" -O /var/log/cobbler.ks" % (srv, "profile", profile_name)
        #else if $breed == 'debian' or $breed == 'ubuntu'
            #set save_autoinstall = "\nwget \"http://%s/cblr/svc/op/autoinstall/%s/%s\" -O /var/log/cobbler.seed" % (srv, "profile", profile_name)
        #end if
    #end if
    ## RUN POST TRIGGER
    #if $run_install_triggers in [ "1", "true", "yes", "y" ]
        #if $breed == 'redhat'
            #set runpost = "\ncurl \"http://%s/cblr/svc/op/trig/mode/post/%s/%s\" -o /dev/null" % (srv, "profile", profile_name)
        #else if $breed == 'suse'
            #set runpost = "\ncurl \"http://%s/cblr/svc/op/trig/mode/post/%s/%s\" -o /dev/null" % (srv, "profile", profile_name)
        #else if $breed == 'vmware' and $os_version == 'esx4'
            #set runpost = "\ncurl \"http://%s/cblr/svc/op/trig/mode/post/%s/%s\" -o /dev/null" % (srv, "profile", profile_name)
        #else if $breed == 'vmware'
            #set runpost = "\nwget \"http://%s/cblr/svc/op/trig/mode/post/%s/%s\" -O /dev/null" % (srv, "profile", profile_name)
        #else if $breed == 'debian' or $breed == 'ubuntu'
            #set runpost = "\nwget \"http://%s/cblr/svc/op/trig/mode/post/%s/%s\" -O /dev/null" % (srv, "profile", profile_name)
        #end if
    #end if
#end if
#echo $save_autoinstall
#echo $runpost
#echo $nopxe
   0707010000001F000081A40000000000000000000000015ECE244400000738000000000000000000000000000000000000003500000000cobbler-3.1.2/autoinstall_snippets/autoinstall_start  #set system_name = $getVar('system_name','')
#set profile_name = $getVar('profile_name','')
#set breed = $getVar('breed','')
#set srv = $getVar('http_server','')
#set run_install_triggers = $str($getVar('run_install_triggers',''))
#set runpre = ""
#if $system_name != ''
    ## RUN PRE TRIGGER
    #if $run_install_triggers in [ "1", "true", "yes", "y" ]
        #if $breed == 'redhat'
            #set runpre = "\ncurl \"http://%s/cblr/svc/op/trig/mode/pre/%s/%s\" -o /dev/null" % (srv, "system", system_name)
        #else if $breed == 'suse'
            #set runpre = "\ncurl \"http://%s/cblr/svc/op/trig/mode/pre/%s/%s\" -o /dev/null" % (srv, "system", system_name)
        #else if $breed == 'vmware'
            #set runpre = "\nwget \"http://%s/cblr/svc/op/trig/mode/pre/%s/%s\" -O /dev/null" % (srv, "system", system_name)
        #else if $breed == 'debian' or $breed == 'ubuntu'
            #set runpre = "\nwget \"http://%s/cblr/svc/op/trig/mode/pre/%s/%s\" -O /dev/null" % (srv, "system", system_name)
        #else if $breed == 'vmware'
            #set runpre = "\nwget \"http://%s/cblr/svc/op/trig/mode/pre/%s/%s\" -O /dev/null" % (srv, "system", system_name)
        #end if
    #end if
#else if $profile_name != ''
    ## RUN PRE TRIGGER
    #if $run_install_triggers in [ "1", "true", "yes", "y" ]
        #if $breed == 'redhat'
            #set runpre = "\ncurl \"http://%s/cblr/svc/op/trig/mode/pre/%s/%s\" -o /dev/null" % (srv, "profile", profile_name)
        #else if $breed == 'suse'
            #set runpre = "\ncurl \"http://%s/cblr/svc/op/trig/mode/pre/%s/%s\" -o /dev/null" % (srv, "profile", profile_name)
        #else if $breed == 'vmware'
            #set runpre = "\nwget \"http://%s/cblr/svc/op/trig/mode/pre/%s/%s\" -O /dev/null" % (srv, "profile", profile_name)
        #end if
    #end if
#end if
#echo $runpre
07070100000020000081A40000000000000000000000015ECE2444000001AF000000000000000000000000000000000000003400000000cobbler-3.1.2/autoinstall_snippets/cobbler_register   # Begin cobbler registration
#if $getVar('system_name','') == ''
#if $str($getVar('register_new_installs','')) in [ "1", "true", "yes", "y" ]
if [ -f "/usr/bin/cobbler-register" ]; then
    cobbler-register --server=$server --fqdn '*AUTO*' --profile=$profile_name --batch
fi
#else
# cobbler registration is disabled in /etc/cobbler/settings
#end if
#else
# skipping for system-based installation
#end if
# End cobbler registration
 07070100000021000081A40000000000000000000000015ECE244400000285000000000000000000000000000000000000003900000000cobbler-3.1.2/autoinstall_snippets/download_config_files  # Start download cobbler managed config files (if applicable)
#for $tkey, $tpath in $template_files.items()
    #set $orig = $tpath
    #set $tpath = $tpath.replace("_","__").replace("/","_")
    #if $getVar("system_name","") != ""
        #set $ttype = "system"
        #set $tname = $system_name
    #else
        #set $ttype = "profile"
        #set $tname = $profile_name
    #end if
    #set $turl = "http://"+$http_server+"/cblr/svc/op/template/"+$ttype+"/"+$tname+"/path/"+$tpath
#if $orig.startswith("/")
mkdir -p `dirname $orig`
curl "$turl" --output "$orig"
#end if
#end for
# End download cobbler managed config files (if applicable)
   07070100000022000081A40000000000000000000000015ECE244400000361000000000000000000000000000000000000003D00000000cobbler-3.1.2/autoinstall_snippets/download_config_files_deb  ## Start download cobbler managed config files (if applicable)
#import os
#import stat
#set $cmd = '\\'
#for $tkey, $tpath in $template_files.items()
    #set $orig = $tpath
    #set $tpath = $tpath.replace("_","__").replace("/","_")
    #if $getVar("system_name","") != ""
        #set $ttype = "system"
        #set $tname = $system_name
    #else
        #set $ttype = "profile"
        #set $tname = $profile_name
    #end if
    #set $turl = "http://"+$http_server+"/cblr/svc/op/template/"+$ttype+"/"+$tname+"/path/"+$tpath
#if $orig.startswith("/")
#set $perms = oct(stat.S_IMODE(os.stat($tkey).st_mode))[-3:]
#set $cmd = $cmd + "\n" + "mkdir -p " + "`dirname " + $orig + "`; wget -nv " + $turl + " --output-document=" + $orig + "; chmod " + $perms +" " + $orig +"; \\"
#end if
#end for
#echo $cmd
## End download cobbler managed config files (if applicable)
   07070100000023000081A40000000000000000000000015ECE244400000A03000000000000000000000000000000000000003600000000cobbler-3.1.2/autoinstall_snippets/keep_cfengine_keys #raw
# Nifty trick to restore cfengine keys without using a nochroot %post
# This is deprecated by the generic 'keep_files' script.

echo "Saving cfengine  keys..." > /dev/ttyS0

SEARCHDIR=/var/cfengine/ppkeys
TEMPDIR=cfengine
PATTERN=localhost

keys_found=no
# /var could be a separate partition
SHORTDIR=${SEARCHDIR#/var}
if [ $SHORTDIR = $SEARCHDIR ]; then
	SHORTDIR=''
fi	
insmod /lib/jbd.o
insmod /lib/ext3.o

mkdir -p /tmp/$TEMPDIR

function findkeys
{
 for disk in $DISKS; do
    name=$(basename $disk)
    tmpdir=$(mktemp -d $name.XXXXXX)
    mkdir -p /tmp/$tmpdir
    mount $disk /tmp/$tmpdir
    if [ $? -ne 0 ]; then # Skip to the next partition if the mount fails
      rm -rf /tmp/$tmpdir
      continue
    fi
    # Copy current host keys out to be reused
    if [ -d /tmp/$tmpdir$SEARCHDIR ] && cp -a /tmp/$tmpdir$SEARCHDIR/${PATTERN}* /tmp/$TEMPDIR; then
        keys_found="yes"
	umount /tmp/$tmpdir
	rm -r /tmp/$tmpdir
	break
    elif [ -n "$SHORTDIR" ] && [ -d /tmp/$tmpdir$SHORTDIR ] && cp -a /tmp/$tmpdir$SHORTDIR/${PATTERN}* /tmp/$TEMPDIR; then
	keys_found="yes"
        umount /tmp/$tmpdir
	rm -r /tmp/$tmpdir
        break
    fi
    umount /tmp/$tmpdir
    rm -r /tmp/$tmpdir
 done
}

DISKS=$(awk '{if ($NF ~ "^[a-zA-Z].*[0-9]$" && $NF !~ "c[0-9]+d[0-9]+$" && $NF !~ "^loop.*") print "/dev/"$NF}'  /proc/partitions)
# In the awk line above we want to make list of partitions, but not devices/controllers
# cciss raid controllers have partitions like /dev/cciss/cNdMpL, where N,M,L - some digits, we want to make sure 'pL' is there
# No need to scan loopback niether.
# Try to find the keys on ordinary partitions

findkeys

# Try software RAID
if [ "$keys_found" = "no" ]; then
  if mdadm -As; then
      DISKS=$(awk '/md/{print "/dev/"$1}' /proc/mdstat)
      findkeys
  fi
fi


# Try LVM if that didn't work
if [ "$keys_found" = "no" ]; then
    lvm lvmdiskscan
    vgs=$(lvm vgs | tail -n +2 | awk '{ print $1 }')
    for vg in $vgs; do
        # Activate any VG we found
        lvm vgchange -ay $vg
    done
    
    DISKS=$(lvm lvs | tail -n +2 | awk '{ print "/dev/" $2 "/" $1 }')
    findkeys    

    # And clean up..
    for vg in $vgs; do
        lvm vgchange -an $vg
    done
fi

# Loop until the corresponding rpm is installed
if [ "$keys_found" = "yes" ]; then
    while : ; do
        sleep 10
        if [ -d /mnt/sysimage$SEARCHDIR ] ; then
            cp -af /tmp/$TEMPDIR/${PATTERN}* /mnt/sysimage$SEARCHDIR
            logger "keys copied to newly installed system"
            break
        fi
    done &
fi
#end raw
 07070100000024000081A40000000000000000000000015ECE244400001537000000000000000000000000000000000000002E00000000cobbler-3.1.2/autoinstall_snippets/keep_files # #
# # Keep Files (Preserve files during re-build)
##  This snippet preserves files during re-build.
##  It supersedes other similar snippets - keep_*_keys.
##  Put it in %pre section of the kickstart template file
##  It uses preserve_files field which should contain a list of items to preserve
##  This field for now could contain any of the following:
##  'ssh', 'cfengine', 'rhn' in any order
##  'rhn' part of this snippet should NOT be used with systems subscribed
##  to Red Hat Satellite Server or Spacewalk as these
##  have a concept of "reactivation keys" to keep the systems
##  appearing to be the same.  Also do not use if changing
##  base channels, i.e. RHEL4 -> RHEL5 upgrades.
##

# Allow you to set attributes in the KS-file before calling this snippet.
# Example: #attr $preserve_files_ks = 'ssh'
# Passed external args has precedence.
#set $preserve_files_ks = $getVar('preserve_files_ks',  '')

#if $getVar('preserve_files', $preserve_files_ks) != ''
   #set $preserve_files = $getVar('$preserve_files', $preserve_files_ks)
   preserve_files=$preserve_files

#raw
# Nifty trick to restore keys without using a nochroot %post

echo "Saving keys..." > /dev/ttyS0

insmod /lib/jbd.o
insmod /lib/ext3.o

function findkeys
{
 for disk in $DISKS; do
    name=$(basename $disk)
    tmpdir=$(mktemp -d $name.XXXXXX)
    mkdir -p /tmp/$tmpdir
    mount $disk /tmp/$tmpdir
    if [ $? -ne 0 ]; then # Skip to the next partition if the mount fails
      rm -rf /tmp/$tmpdir
      continue
    fi
    # Copy current host keys out to be reused
    if [ -d /tmp/$tmpdir$SEARCHDIR ] && cp -a /tmp/$tmpdir$SEARCHDIR/${PATTERN}* /tmp/$TEMPDIR; then
        keys_found="yes"
	umount /tmp/$tmpdir
	rm -r /tmp/$tmpdir
	break
    elif [ -n "$SHORTDIR" ] && [ -d /tmp/$tmpdir$SHORTDIR ] && cp -a /tmp/$tmpdir$SHORTDIR/${PATTERN}* /tmp/$TEMPDIR; then
	keys_found="yes"
        umount /tmp/$tmpdir
	rm -r /tmp/$tmpdir
        break
    fi
    umount /tmp/$tmpdir
    rm -r /tmp/$tmpdir
 done
}

function search_for_keys
{

 SEARCHDIR=$1
 TEMPDIR=$2
 PATTERN=$3

 keys_found=no
 # /var could be a separate partition
 SHORTDIR=${SEARCHDIR#/var}
 if [ $SHORTDIR = $SEARCHDIR ]; then
	SHORTDIR=''
 fi

 mkdir -p /tmp/$TEMPDIR

 DISKS=$(awk '{if ($NF ~ "^[a-zA-Z].*[0-9]$" && $NF !~ "c[0-9]+d[0-9]+$" && $NF !~ "^loop.*") print "/dev/"$NF}'  /proc/partitions)
 # In the awk line above we want to make list of partitions, but not devices/controllers
 # cciss raid controllers have partitions like /dev/cciss/cNdMpL, where N,M,L - some digits, we want to make sure 'pL' is there
 # No need to scan loopback neither.
 # Try to find the keys on ordinary partitions

 findkeys

 # Try software RAID
 if [ "$keys_found" = "no" ]; then
  if mdadm -As; then
      DISKS=$(awk '/md/{print "/dev/"$1}' /proc/mdstat)
      findkeys
  fi
 fi


 # Try LVM if that didn't work
 if [ "$keys_found" = "no" ]; then
    lvm lvmdiskscan
    vgs=$(lvm vgs | tail -n +2 | awk '{ print $1 }')
    for vg in $vgs; do
        # Activate any VG we found
        lvm vgchange -ay $vg
    done

    DISKS=$(lvm lvs | tail -n +2 | awk '{ print "/dev/" $2 "/" $1 }')
    findkeys

    # And clean up..
    for vg in $vgs; do
        lvm vgchange -an $vg
    done
 fi
}

function fix_ssh_key_groups
{
 # CentOS 7 has the ssh key-files owned by the group: ssh_keys
 # On CentOS 7.4 this results in that the group id may change from the
 # Squash-image and when it boots up from the system drive.
 # If it's not corrected - SSHD will not start.
 # We can't be sure that the existing Group is correct either - assume ssh_keys if group exists.

 if ls /mnt/sysimage/etc/ssh/ssh_host*key > /dev/null; then
    echo "We have ssh_host -keys to check"
    gid_ssh_keys=$(grep ssh_keys /mnt/sysimage/etc/group | cut -d ':'  -f 3)
    re_number='^[0-9]+$'
    if [[ $gid_ssh_keys =~ $re_number ]]; then
        # On systems where we don't have a ssh_keys group, this will not be run.
        echo "SSH: ssh_keys has group id: $gid_ssh_keys -> setting that on the key-files."
        chown :$gid_ssh_keys /mnt/sysimage/etc/ssh/ssh_host*key
    else
	echo "SSH: ssh_keys -group id not found."
    fi
 fi
}

function restore_keys
{
 SEARCHDIR=$1
 TEMPDIR=$2
 PATTERN=$3
 # Loop until the corresponding rpm is installed if the keys are saved
 if [ "$keys_found" = "yes" ] && ls /tmp/${TEMPDIR}/${PATTERN}*; then
    while : ; do
        sleep 10
        if [ -d /mnt/sysimage${SEARCHDIR} ] ; then
            cp -af /tmp/${TEMPDIR}/${PATTERN}* /mnt/sysimage${SEARCHDIR}
            logger "${TEMPDIR} keys copied to newly installed system"
	    if [ "$PATTERN" = "ssh_host_" ]; then
	       fix_ssh_key_groups
	    fi
	    break
        fi
    done &
 fi
}

for key in $preserve_files
do
 if [ $key = 'ssh' ]; then
   search_for_keys '/etc/ssh' 'ssh' 'ssh_host_'
 elif [ $key = 'cfengine' ]; then
   search_for_keys '/var/cfengine/ppkeys' 'cfengine' 'localhost'
 elif [ $key = 'rhn' ]; then
   search_for_keys '/etc/sysconfig/rhn', 'rhn', '*'
 else
   echo "No keys to save!" > /dev/ttyS0
 fi
done

# now restore keys if found

for key in $preserve_files
do
 if [ $key = 'ssh' ]; then
   restore_keys '/etc/ssh' 'ssh' 'ssh_host_'
 elif [ $key = 'cfengine' ]; then
   restore_keys '/var/cfengine/ppkeys' 'cfengine' 'localhost'
 elif [ $key = 'rhn' ]; then
   restore_keys '/etc/sysconfig/rhn', 'rhn', '*'
 else
   echo "Nothing to restore!" > /dev/ttyS0
 fi
done

#end raw
#end if
 07070100000025000081A40000000000000000000000015ECE244400000A31000000000000000000000000000000000000003100000000cobbler-3.1.2/autoinstall_snippets/keep_rhn_keys  #raw

## this snippet should NOT be used with systems subscribed
## to Red Hat Satellite Server or Spacewalk as these
## have a concept of "reactivation keys" to keep the systems
## appearing to be the same.  Also do not use if changing
## base channels, i.e. RHEL4 -> RHEL5 upgrades.

echo "Saving RHN keys..." > /dev/ttyS0

rhn_keys_found=no

insmod /lib/jbd.o
insmod /lib/ext3.o

mkdir -p /tmp/rhn

drives=$(list-harddrives | awk '{print $1}')
for disk in $drives; do
    DISKS="$DISKS $(fdisk -l /dev/$disk | awk '/^\/dev/{print $1}')"
done

# Try to find the keys on ordinary partitions
for disk in $DISKS; do
    name=$(basename $disk)
    mkdir -p /tmp/$name
    mount $disk /tmp/$name
    [ $? -eq 0 ] || continue # Skip to the next partition if the mount fails

    # Copy current RHN host keys out to be reused
    if [ -d /tmp/${name}/etc/sysconfig/rhn ]; then
        cp -a /tmp/${name}/etc/sysconfig/rhn/install-num /tmp/rhn
        cp -a /tmp/${name}/etc/sysconfig/rhn/systemid /tmp/rhn
        cp -a /tmp/${name}/etc/sysconfig/rhn/up2date /tmp/rhn
        rhn_keys_found="yes"
        umount /tmp/$name
        break
    fi
    umount /tmp/$name
    rm -r /tmp/$name
done

# Try LVM if that didn't work
if [ "$rhn_keys_found" = "no" ]; then
    lvm lvmdiskscan
    vgs=$(lvm vgs | tail -n +2 | awk '{ print $1 }')
    for vg in $vgs; do
        # Activate any VG we found
        lvm vgchange -ay $vg
    done
    
    lvs=$(lvm lvs | tail -n +2 | awk '{ print "/dev/" $2 "/" $1 }')
    for lv in $lvs; do
        tmpdir=$(mktemp -d findkeys.XXXXXX)
        mkdir -p /tmp/${tmpdir}
        mount $lv /tmp/${tmpdir} || continue # Skip to next volume if this fails

        # Let's see if the keys are in there
        if [ -d /tmp/${tmpdir}/etc/sysconfig/rhn ]; then
            cp -a /tmp/${tmpdir}/etc/sysconfig/rhn/install-num* /tmp/rhn/
            cp -a /tmp/${tmpdir}/etc/sysconfig/rhn/systemid* /tmp/rhn/
            cp -a /tmp/${tmpdir}/etc/sysconfig/rhn/up2date /tmp/rhn/
            rhn_keys_found="yes"
            umount /tmp/${tmpdir}
            break # We're done!
        fi
        umount /tmp/${tmpdir}
        rm -r /tmp/${tmpdir}
    done
    
    # And clean up..
    for vg in $vgs; do
        lvm vgchange -an $vg
    done
fi

# Loop until the RHN rpm is installed
if [ "$rhn_keys_found" = "yes" ]; then
    while : ; do
        sleep 10
        if [ -d /mnt/sysimage/etc/sysconfig/rhn ] ; then
            cp -af /tmp/rhn/* /mnt/sysimage/etc/sysconfig/rhn/
            logger "RHN KEY copied to newly installed system"
            break
        fi
    done &
fi
#end raw
   07070100000026000081A40000000000000000000000015ECE244400000A04000000000000000000000000000000000000003400000000cobbler-3.1.2/autoinstall_snippets/keep_rudder_keys   #raw
# Nifty trick to restore cfengine keys without using a nochroot %post

echo "Saving rudder  keys..." > /dev/ttyS0

SEARCHDIR=/var/rudder/cfengine-community/ppkeys
TEMPDIR=rudder
PATTERN=localhost

keys_found=no
# /var could be a separate partition
SHORTDIR=${SEARCHDIR#/var/rudder}
if [ $SHORTDIR = $SEARCHDIR ]; then
	SHORTDIR=''
fi	

insmod /lib/jbd.o
insmod /lib/ext3.o
insmod /lib/ext4.o
insmod /lib/xfs.o

mkdir -p /tmp/$TEMPDIR

function findkeys
{
 for disk in $DISKS; do
    name=$(basename $disk)
    tmpdir=$(mktemp -d $name.XXXXXX)
    mkdir -p /tmp/$tmpdir
    mount $disk /tmp/$tmpdir
    if [ $? -ne 0 ]; then # Skip to the next partition if the mount fails
      rm -rf /tmp/$tmpdir
      continue
    fi
    # Copy current host keys out to be reused
    if [ -d /tmp/$tmpdir$SEARCHDIR ] && cp -a /tmp/$tmpdir$SEARCHDIR/${PATTERN}* /tmp/$TEMPDIR; then
        keys_found="yes"
	umount /tmp/$tmpdir
	rm -r /tmp/$tmpdir
	break
    elif [ -n "$SHORTDIR" ] && [ -d /tmp/$tmpdir$SHORTDIR ] && cp -a /tmp/$tmpdir$SHORTDIR/${PATTERN}* /tmp/$TEMPDIR; then
	keys_found="yes"
        umount /tmp/$tmpdir
	rm -r /tmp/$tmpdir
        break
    fi
    umount /tmp/$tmpdir
    rm -r /tmp/$tmpdir
 done
}

DISKS=$(awk '{if ($NF ~ "^[a-zA-Z].*[0-9]$" && $NF !~ "c[0-9]+d[0-9]+$" && $NF !~ "^loop.*") print "/dev/"$NF}'  /proc/partitions)
# In the awk line above we want to make list of partitions, but not devices/controllers
# cciss raid controllers have partitions like /dev/cciss/cNdMpL, where N,M,L - some digits, we want to make sure 'pL' is there
# No need to scan loopback niether.
# Try to find the keys on ordinary partitions

findkeys

# Try software RAID
if [ "$keys_found" = "no" ]; then
  if mdadm -As; then
      DISKS=$(awk '/md/{print "/dev/"$1}' /proc/mdstat)
      findkeys
  fi
fi


# Try LVM if that didn't work
if [ "$keys_found" = "no" ]; then
    lvm lvmdiskscan
    vgs=$(lvm vgs | tail -n +2 | awk '{ print $1 }')
    for vg in $vgs; do
        # Activate any VG we found
        lvm vgchange -ay $vg
    done
    
    DISKS=$(lvm lvs | tail -n +2 | awk '{ print "/dev/" $2 "/" $1 }')
    findkeys    

    # And clean up..
    for vg in $vgs; do
        lvm vgchange -an $vg
    done
fi

# Loop until the corresponding rpm is installed
if [ "$keys_found" = "yes" ]; then
    while : ; do
        sleep 10
        if [ -d /mnt/sysimage$SEARCHDIR ] ; then
            cp -af /tmp/$TEMPDIR/${PATTERN}* /mnt/sysimage$SEARCHDIR
            logger "keys copied to newly installed system"
            break
        fi
    done &
fi
#end raw
07070100000027000081A40000000000000000000000015ECE2444000009E6000000000000000000000000000000000000003400000000cobbler-3.1.2/autoinstall_snippets/keep_rudder_uuid   #raw
# Nifty trick to restore cfengine keys without using a nochroot %post

echo "Saving rudder  keys..." > /dev/ttyS0

SEARCHDIR=/opt/rudder/etc
TEMPDIR=rudderuuid
PATTERN=uuid

keys_found=no
# /opt could be a separate partition
SHORTDIR=${SEARCHDIR#/opt}
if [ $SHORTDIR = $SEARCHDIR ]; then
	SHORTDIR=''
fi	

insmod /lib/jbd.o
insmod /lib/ext3.o
insmod /lib/ext4.o
insmod /lib/xfs.o

mkdir -p /tmp/$TEMPDIR

function findkeys
{
 for disk in $DISKS; do
    name=$(basename $disk)
    tmpdir=$(mktemp -d $name.XXXXXX)
    mkdir -p /tmp/$tmpdir
    mount $disk /tmp/$tmpdir
    if [ $? -ne 0 ]; then # Skip to the next partition if the mount fails
      rm -rf /tmp/$tmpdir
      continue
    fi
    # Copy current host keys out to be reused
    if [ -d /tmp/$tmpdir$SEARCHDIR ] && cp -a /tmp/$tmpdir$SEARCHDIR/${PATTERN}* /tmp/$TEMPDIR; then
        keys_found="yes"
	umount /tmp/$tmpdir
	rm -r /tmp/$tmpdir
	break
    elif [ -n "$SHORTDIR" ] && [ -d /tmp/$tmpdir$SHORTDIR ] && cp -a /tmp/$tmpdir$SHORTDIR/${PATTERN}* /tmp/$TEMPDIR; then
	keys_found="yes"
        umount /tmp/$tmpdir
	rm -r /tmp/$tmpdir
        break
    fi
    umount /tmp/$tmpdir
    rm -r /tmp/$tmpdir
 done
}

DISKS=$(awk '{if ($NF ~ "^[a-zA-Z].*[0-9]$" && $NF !~ "c[0-9]+d[0-9]+$" && $NF !~ "^loop.*") print "/dev/"$NF}'  /proc/partitions)
# In the awk line above we want to make list of partitions, but not devices/controllers
# cciss raid controllers have partitions like /dev/cciss/cNdMpL, where N,M,L - some digits, we want to make sure 'pL' is there
# No need to scan loopback niether.
# Try to find the keys on ordinary partitions

findkeys

# Try software RAID
if [ "$keys_found" = "no" ]; then
  if mdadm -As; then
      DISKS=$(awk '/md/{print "/dev/"$1}' /proc/mdstat)
      findkeys
  fi
fi


# Try LVM if that didn't work
if [ "$keys_found" = "no" ]; then
    lvm lvmdiskscan
    vgs=$(lvm vgs | tail -n +2 | awk '{ print $1 }')
    for vg in $vgs; do
        # Activate any VG we found
        lvm vgchange -ay $vg
    done
    
    DISKS=$(lvm lvs | tail -n +2 | awk '{ print "/dev/" $2 "/" $1 }')
    findkeys    

    # And clean up..
    for vg in $vgs; do
        lvm vgchange -an $vg
    done
fi

# Loop until the corresponding rpm is installed
if [ "$keys_found" = "yes" ]; then
    while : ; do
        sleep 10
        if [ -d /mnt/sysimage$SEARCHDIR ] ; then
            cp -af /tmp/$TEMPDIR/${PATTERN}* /mnt/sysimage$SEARCHDIR
            logger "keys copied to newly installed system"
            break
        fi
    done &
fi
#end raw
  07070100000028000081A40000000000000000000000015ECE244400000B4D000000000000000000000000000000000000003600000000cobbler-3.1.2/autoinstall_snippets/keep_ssh_host_keys #raw
# Nifty trick to restore keys without using a nochroot %post
# This is deprecated by the generic 'keep_files' script.

echo "Saving keys..." > /dev/ttyS0

SEARCHDIR=/etc/ssh
TEMPDIR=ssh
PATTERN=ssh_host_

keys_found=no
	
insmod /lib/jbd.o
insmod /lib/ext3.o

mkdir -p /tmp/$TEMPDIR


function findkeys
{
 for disk in $DISKS; do
    name=$(basename $disk)
    tmpdir=$(mktemp -d $name.XXXXXX)
    mkdir -p /tmp/$tmpdir
    mount $disk /tmp/$tmpdir
    if [ $? -ne 0 ]; then # Skip to the next partition if the mount fails
      rm -rf /tmp/$tmpdir                                                
      continue                                                           
    fi                                                                   
    # Copy current host keys out to be reused
    if [ -d /tmp/$tmpdir$SEARCHDIR ] &&  cp -a /tmp/$tmpdir$SEARCHDIR/${PATTERN}* /tmp/$TEMPDIR; then 
        keys_found="yes"
	umount /tmp/$tmpdir
	rm -r /tmp/$tmpdir
	break
    fi
    umount /tmp/$tmpdir
    rm -r /tmp/$tmpdir
 done
}

DISKS=$(awk '{if ($NF ~ "^[a-zA-Z].*[0-9]$" && $NF !~ "c[0-9]+d[0-9]+$" && $NF !~ "^loop.*") print "/dev/"$NF}'  /proc/partitions)
# In the awk line above we want to make list of partitions, but not devices/controllers
# cciss raid controllers have partitions like /dev/cciss/cNdMpL, where N,M,L - some digits, we want to make sure 'pL' is there
# No need to scan loopback niether.
# Try to find the keys on ordinary partitions

findkeys

# Try software RAID
if [ "$keys_found" = "no" ]; then
  if mdadm -As; then
      DISKS=$(awk '/md/{print "/dev/"$1}' /proc/mdstat)
      findkeys
      # unmount and deactivate all md 
      for md in $DISKS ; do
          umount $md
          mdadm -S $md
      done
  fi
fi


# Try LVM if that didn't work
if [ "$keys_found" = "no" ]; then
    lvm lvmdiskscan
    vgs=$(lvm vgs | tail -n +2 | awk '{ print $1 }')
    for vg in $vgs; do
        # Activate any VG we found
        lvm vgchange -ay $vg
    done
    
    DISKS=$(lvm lvs | tail -n +2 | awk '{ print "/dev/" $2 "/" $1 }')
    findkeys    

    # And clean up..
    for vg in $vgs; do
        lvm vgchange -an $vg
    done
fi

# Loop until the corresponding rpm is installed
if [ "$keys_found" = "yes" ]; then
    if [ "$PATTERN" = "ssh_host_" ]; then
        while : ; do
        sleep 10
        if [ -f /etc/ssh/ssh_host_key ] ; then
          cp -af /tmp/$TEMPDIR/${PATTERN}* $SEARCHDIR
          break
        fi
        done 1>/dev/null 2>/dev/null &
    fi
    while : ; do
        sleep 10
        if [ -d /mnt/sysimage$SEARCHDIR ] ; then
            cp -af /tmp/$TEMPDIR/${PATTERN}* /mnt/sysimage$SEARCHDIR
            if [ -e "/sbin/restorecon"]; then
                /sbin/restorecon -r /etc/ssh
            fi
            logger "keys copied to newly installed system"
            break
        fi
    done 1>/dev/null 2>/dev/null &
fi
#end raw

   07070100000029000081A40000000000000000000000015ECE2444000000BF000000000000000000000000000000000000003400000000cobbler-3.1.2/autoinstall_snippets/koan_environment   # Start koan environment setup
echo "export COBBLER_SERVER=$server" > /etc/profile.d/cobbler.sh
echo "setenv COBBLER_SERVER $server" > /etc/profile.d/cobbler.csh
# End koan environment setup
 0707010000002A000081A40000000000000000000000015ECE244400000284000000000000000000000000000000000000003800000000cobbler-3.1.2/autoinstall_snippets/late_apt_repo_config   # start late_apt_repo_config
cat<<EOF>/etc/apt/sources.list
deb http://$http_server/cblr/links/$distro_name $os_version main
#set $repo_data = $getVar("repo_data",[])
#for $repo in $repo_data
 #for $dist in $repo.apt_dists
 #set $comps = " ".join($repo.apt_components)
 #if $repo.comment != ""
# ${repo.comment}
 #end if
 #if $repo.arch == "x86_64"
 #set $rarch = "[arch=amd64]"
 #else
 #set $rarch = "[arch=%s]" % $repo.arch
 #end if
 #if $repo.mirror_locally
deb ${rarch} http://$http_server/cblr/repo_mirror/${repo.name} $dist $comps
 #else
deb ${rarch} ${repo.mirror} $dist $comps
 #end if
 #end for
#end for
EOF
# end late_apt_repo_config
0707010000002B000081A40000000000000000000000015ECE244400000028000000000000000000000000000000000000002F00000000cobbler-3.1.2/autoinstall_snippets/log_ks_post    set -x -v
exec 1>/root/ks-post.log 2>&1
0707010000002C000081A40000000000000000000000015ECE24440000003E000000000000000000000000000000000000003800000000cobbler-3.1.2/autoinstall_snippets/log_ks_post_nochroot   set -x -v
exec 1>/mnt/sysimage/root/ks-post-nochroot.log 2>&1
  0707010000002D000081A40000000000000000000000015ECE244400000119000000000000000000000000000000000000002E00000000cobbler-3.1.2/autoinstall_snippets/log_ks_pre set -x -v
exec 1>/tmp/ks-pre.log 2>&1

# Once root's homedir is there, copy over the log.
while : ; do
    sleep 10
    if [ -d /mnt/sysimage/root ]; then
        cp /tmp/ks-pre.log /mnt/sysimage/root/
        logger "Copied %pre section log to system"
        break
    fi
done &
   0707010000002E000081A40000000000000000000000015ECE24440000002E000000000000000000000000000000000000003900000000cobbler-3.1.2/autoinstall_snippets/main_partition_select  # partition selection
%include /tmp/partinfo

  0707010000002F000081A40000000000000000000000015ECE244400000FA9000000000000000000000000000000000000003200000000cobbler-3.1.2/autoinstall_snippets/network_config ## start of cobbler network_config generated code
#if $getVar("system_name","") != ""
    #set ikeys = $interfaces.keys()
    #import re
    #set $vlanpattern = $re.compile("[a-zA-Z0-9]+[\.][0-9]+")
    ##
    ## Determine if we should use the MAC address to configure the interfaces first
    ## Only physical interfaces are required to have a MAC address
    #set $configbymac = True
    #for $iname in $ikeys
        #set $idata = $interfaces[$iname]
        ## Ignore BMC interface
        #if $idata["interface_type"].lower() == "bmc"
            #continue
        #end if
        #if $idata["mac_address"] == "" and not $vlanpattern.match($iname) and not $idata["interface_type"].lower() in ("bond","bridge","bonded_bridge_slave")
            #set $configbymac = False
        #end if
    #end for
    #set $i = -1
    #if $configbymac
# Using "new" style networking config, by matching networking information to the physical interface's 
# MAC-address
%include /tmp/pre_install_network_config
    #else
# Using "old" style networking config. Make sure all MAC-addresses are in cobbler to use the new-style config
        #set $vlanpattern = $re.compile("[a-zA-Z0-9]+[\.][0-9]+")
        #for $iname in $ikeys
            #set $idata    = $interfaces[$iname]
            #set $mac      = $idata["mac_address"]
            #set $static   = $idata["static"]
            #set $ip       = $idata["ip_address"]
            #set $netmask  = $idata["netmask"]
            #set $type     = $idata["interface_type"]
            ## Ignore BMC interface
            #if $type == "bmc"
                #continue
            #end if
            #if $vlanpattern.match($iname) or $type in ("bond","bridge","bonded_bridge_slave")
                ## If this is a VLAN interface, skip it, anaconda doesn't know
                ## about VLANs.
                #set $is_vlan = "true"
            #else
                #set $is_vlan = "false"
                ## Only up the counter on physical interfaces!
                #set $i = $i + 1 
            #end if
            #if $mac != "" or $ip != "" and $is_vlan == "false"
                #if $static == True:
                    #if $ip != "":
                        #set $network_str = "--bootproto=static"
                        #set $network_str = $network_str + " --ip=" + $ip 
                        #if $netmask != "":
                            #set $network_str = $network_str + " --netmask=" + $netmask 
                        #end if
                        #if $gateway != "":
                            #set $network_str = $network_str + " --gateway=" + $gateway
                        #end if
                        #if $name_servers and $name_servers[0] != "":
                            ## Anaconda only allows one nameserver
                            #set $network_str = $network_str + " --nameserver=" + $name_servers[0]
                        #end if
                    #else
                        #set $network_str = "--bootproto=none"
                    #end if
                #else
                    #set $network_str = "--bootproto=dhcp"
                #end if
                #if $hostname != ""
                    #set $network_str = $network_str + " --hostname=" + $hostname
                #end if
            #else
                #set $network_str = "--bootproto=dhcp"
            #end if
    ## network details are populated from the cobbler system object
            #if $is_vlan == "false"
                #if $getVar('os_version','').find("rhel3") == -1
network $network_str --device=$iname --onboot=on
                #else
network $network_str --device=$iname
                #end if
            #end if
        #end for
    #end if
#else
## profile based install so just provide one interface for starters
#if $getVar('os_version','').find("rhel3") == -1
network --bootproto=dhcp --device=eth0 --onboot=on  
#else
network $network_str --device=$iname
#end if
#end if
## end of cobbler network_config generated code
   07070100000030000081A40000000000000000000000015ECE2444000007B6000000000000000000000000000000000000003600000000cobbler-3.1.2/autoinstall_snippets/network_config_esx #import re

#if $getVar("system_name","") != ""
    #set ikeys = $interfaces.keys()
    #set $vlanpattern = $re.compile("[a-zA-Z0-9]+[\.][0-9]+")
    #for $iname in $ikeys
        #set $idata    = $interfaces[$iname]
        #set $mac      = $idata["mac_address"]
        #set $static   = $idata["static"]
        #set $ip       = $idata["ip_address"]
        #set $netmask  = $idata["netmask"]
        #set $type     = $idata["interface_type"]
        #if $type == "bmc"
            #continue
        #end if
        #if $vlanpattern.match($iname) or $type in ("bond","bridge")
            ## If this is a VLAN interface, skip it, anaconda doesn't know
            ## about VLANs.
            #set $is_vlan = "true"
        #else
            #set $is_vlan = "false"
        #end if
        #if $mac != "" or $ip != "" and $is_vlan == "false"
            #if $static == True:
                #set $network_str = "--bootproto=static"
                #if $ip != "":
                    #set $network_str = $network_str + " --ip=" + $ip
                    #if $netmask != "":
                        #set $network_str = $network_str + " --netmask=" + $netmask
                    #end if
                    #if $gateway != "":
                        #set $network_str = $network_str + " --gateway=" + $gateway
                    #end if
                    #if $name_servers and $name_servers[0] != "":
                        ## Anaconda only allows one nameserver
                        #set $network_str = $network_str + " --nameserver=" + $name_servers[0]
                    #end if
                #end if
            #else
                #set $network_str = "--bootproto=dhcp"
            #end if
            #if $hostname != ""
                #set $network_str = $network_str + " --hostname=" + $hostname
            #end if
        #else
            #set $network_str = "--bootproto=dhcp"
        #end if
network $network_str --device=$mac
    #end for
#end if
  07070100000031000081A40000000000000000000000015ECE24440000091C000000000000000000000000000000000000003700000000cobbler-3.1.2/autoinstall_snippets/network_config_esxi    #import re

#if $getVar("system_name","") != ""
    #set ikeys = $interfaces.keys()
    #set $vlanpattern = $re.compile("[a-zA-Z0-9]+[\.][0-9]+")
    #for $iname in $ikeys
        #set $idata    = $interfaces[$iname]
        #set $mac      = $idata["mac_address"]
        #set $static   = $idata["static"]
        #set $ip       = $idata["ip_address"]
        #set $netmask  = $idata["netmask"]
        #set $type     = $idata["interface_type"]
        #set $vlanid   = ""
        #if $type == "bmc"
            #continue
        #end if
        #if $vlanpattern.match($iname) or $type in ("bond","bridge")
            ## If this is a VLAN interface, skip it, anaconda doesn't know
            ## about VLANs.
            #set $is_vlan = "true"
            #set $vlanid = " --vlanid=" + $iname.split('.')[1]
            #set $iname = $iname.split('.')[0]
        #else
            #set $is_vlan = "false"
        #end if
        #if $mac != "" or $ip != "" and $is_vlan == "false"
            #if $static == True:
                #set $network_str = "--bootproto=static"
                #if $ip != "":
                    #set $network_str = $network_str + " --ip=" + $ip
                    #if $netmask != "":
                        #set $network_str = $network_str + " --netmask=" + $netmask
                    #end if
                    #if $gateway != "":
                        #set $network_str = $network_str + " --gateway=" + $gateway
                    #end if
                    #if $name_servers and $name_servers[0] != "":
                        #set $network_str = $network_str + " --nameserver=" + $name_servers[0]
                        #if len($name_servers) > 1 and $name_servers[1] != "":
                            #set $network_str += "," + $name_servers[1]
                        #end if
                    #end if
                #end if
            #else
                #set $network_str = "--bootproto=dhcp"
            #end if
            #if $hostname != ""
                #set $network_str = $network_str + " --hostname=" + $hostname
            #end if
        #else
            #set $network_str = "--bootproto=dhcp"

        #end if
        #if $vlanid != ""
            #set $network_str = $network_str + $vlanid
        #end if
network $network_str --device=$iname
    #end for
#end if
07070100000032000081A40000000000000000000000015ECE2444000002A3000000000000000000000000000000000000003400000000cobbler-3.1.2/autoinstall_snippets/partition_select   %include /tmp/partinfo

%pre
# Determine how many drives we have
set \$(list-harddrives)
let numd=\$#/2
d1=\$1
d2=\$3

# Determine architecture-specific partitioning needs
EFI_PART=""
PPC_PREP_PART=""
BOOT_PART=""

case \$(uname -m) in
    ppc*)
        PPC_PREP_PART="part None --fstype 'PPC PReP Boot' --size 8"
        BOOT_PART="part /boot --fstype ext3 --size 200 --recommended"
        ;;
    *)
        BOOT_PART="part /boot --fstype ext3 --size 200 --recommended"
        ;;
esac

cat << EOF > /tmp/partinfo
\$EFI_PART
\$PPC_PREP_PART
\$BOOT_PART
part / --fstype ext3 --size=1024 --grow --ondisk=\$d1 --asprimary
part swap --recommended --ondisk=\$d1 --asprimary
EOF
 07070100000033000081A40000000000000000000000015ECE2444000002C5000000000000000000000000000000000000002F00000000cobbler-3.1.2/autoinstall_snippets/post_anamon    #if $str($getVar('anamon_enabled','')) == "1"

## install anamon script
curl -o /usr/local/sbin/anamon "http://$server:$http_port/cobbler/misc/anamon"
## install anamon system service
curl -o /etc/rc.d/init.d/anamon "http://$server:$http_port/cobbler/misc/anamon.init"

## adjust permissions
chmod 755 /etc/rc.d/init.d/anamon /usr/local/sbin/anamon
test -d /selinux && restorecon /etc/rc.d/init.d/anamon /usr/local/sbin/anamon

## enable the script
chkconfig --add anamon

## configure anamon service
cat << __EOT__ > /etc/sysconfig/anamon
COBBLER_SERVER="$server"
COBBLER_PORT="$http_port"
COBBLER_NAME="$name"
LOGFILES="/var/log/boot.log /var/log/messages /var/log/dmesg /root/ks-post.log"
__EOT__

#end if
   07070100000034000081A40000000000000000000000015ECE244400000348000000000000000000000000000000000000003F00000000cobbler-3.1.2/autoinstall_snippets/post_install_kernel_options    #if $getVar('kernel_options_post','') != ''
# Start post install kernel options update
if [ -f /etc/default/grub ]; then
  TMP_GRUB=\$(gawk 'match(\$0,/^GRUB_CMDLINE_LINUX="([^"]+)"/,a) {printf("%s\n",a[1])}' /etc/default/grub)
  sed -i '/^GRUB_CMDLINE_LINUX=/d' /etc/default/grub
  echo "GRUB_CMDLINE_LINUX=\"\$TMP_GRUB $kernel_options_post\"" >> /etc/default/grub
  grub2-mkconfig -o /boot/grub2/grub.cfg
  if grep -E '/boot/efi (efi|vfat)' /etc/mtab 2>&1 >/dev/null; then
    /bin/cp -f /boot/grub2/grub.cfg /boot/efi/EFI/redhat/grub.cfg
  fi
else
  /sbin/grubby --update-kernel=\$(/sbin/grubby --default-kernel) --args="$kernel_options_post"
  if grep -E '/boot/efi (efi|vfat)' /etc/mtab 2>&1 >/dev/null; then
    /bin/cp -f /boot/grub/grub.conf /boot/efi/EFI/redhat/grub.conf
  fi
fi
# End post install kernel options update
#end if


07070100000035000081A40000000000000000000000015ECE24440000437D000000000000000000000000000000000000003F00000000cobbler-3.1.2/autoinstall_snippets/post_install_network_config    # Start post_install_network_config generated code
#if $getVar("system_name","") != ""
    ## this is being provisioned by system records, not profile records
    ## so we can do the more complex stuff
    ## get the list of interface names
    #set ikeys = $interfaces.keys()
    #set osversion = $getVar("os_version","")
    #import re
    #set $vlanpattern = $re.compile("[a-zA-Z0-9]+[\.][0-9]+")
    ## Determine if we should use the MAC address to configure the interfaces first
    ## Only physical interfaces are required to have a MAC address
    ## Also determine the number of bonding devices we have, so we can set the
    ## max-bonds option in modprobe.conf accordingly. -- jcapel
    #set $configbymac = True
    #set $numbondingdevs = 0
    #set $enableipv6 = False
    #set $usedbondingopts = False
    ## Non-interface specific bonding options are located in different files for
    ## different versions of RHEL.  These probably should be set for Fedora too.
    ## RHEL < 6: /etc/modprobe.conf
    ## RHEL >= 6: /etc/modprobe.d/bonding.conf
    #if $osversion == "rhel6" or $osversion == "rhel7" or $osversion == "ovz7"
        #set $mp_bonding = "/etc/modprobe.d/bonding.conf"
    #else
        #set $mp_bonding = "/etc/modprobe.conf"
    #end if
    ## =============================================================================
    #for $iname in $ikeys
        ## look at the interface hash data for the specific interface
        #set $idata = $interfaces[$iname]
        ## Ignore BMC interface
        #if $idata.get("interface_type", "").lower() == "bmc"
            #continue
        #end if
        ## do not configure by mac address if we don't have one AND it's not for bonding/vlans
        ## as opposed to a "real" physical interface
        #if $idata.get("mac_address", "") == "" and not $vlanpattern.match($iname) and not $idata.get("interface_type", "").lower() in ("bond","bridge"):
                ## we have to globally turn off the config by mac feature as we can't
                ## use it now
                #set $configbymac = False
        #end if
        ## count the number of bonding devices we have.
        #if $idata.get("interface_type", "").lower() in ("bond","bonded_bridge_slave")
            #set $numbondingdevs += 1
        #end if
        ## enable IPv6 networking if we set an ipv6 address or turn on autoconfiguration
        #if $idata.get("ipv6_address", "") != "" or $ipv6_autoconfiguration == True
            #set $enableipv6 = True
        #end if
    #end for
    ## end looping through the interfaces to see which ones we need to configure.
    ## =============================================================================
    #set $i = 0
    ## =============================================================================
    ## create a staging directory to build out our network scripts into
    ## make sure we preserve the loopback device

# create a working directory for interface scripts
mkdir /etc/sysconfig/network-scripts/cobbler
cp /etc/sysconfig/network-scripts/ifcfg-lo /etc/sysconfig/network-scripts/cobbler/
    ## =============================================================================
    ## configure the gateway if set up (this is global, not a per-interface setting)
    #if $gateway != ""

# set the gateway in the network configuration file
grep -v GATEWAY /etc/sysconfig/network > /etc/sysconfig/network.cobbler
echo "GATEWAY=$gateway" >> /etc/sysconfig/network.cobbler
rm -f /etc/sysconfig/network
mv /etc/sysconfig/network.cobbler /etc/sysconfig/network
    #end if
    ## =============================================================================
    ## Configure the system's primary hostname. This is also passed to anaconda, but
    ## anaconda doesn't seem to honour it in DHCP-setups.
    #if $hostname != ""

# set the hostname in the network configuration file
grep -v HOSTNAME /etc/sysconfig/network > /etc/sysconfig/network.cobbler
echo "HOSTNAME=$hostname" >> /etc/sysconfig/network.cobbler
rm -f /etc/sysconfig/network
mv /etc/sysconfig/network.cobbler /etc/sysconfig/network

# Also set the hostname now, some applications require it
# (e.g.: if we're connecting to Puppet before a reboot).
/bin/hostname $hostname
    #end if
    #if $enableipv6 == True
grep -v NETWORKING_IPV6 /etc/sysconfig/network > /etc/sysconfig/network.cobbler
echo "NETWORKING_IPV6=yes" >> /etc/sysconfig/network.cobbler
rm -f /etc/sysconfig/network
mv /etc/sysconfig/network.cobbler /etc/sysconfig/network
        #if $ipv6_autoconfiguration != ""
grep -v IPV6_AUTOCONF /etc/sysconfig/network > /etc/sysconfig/network.cobbler
            #if $ipv6_autoconfiguration == True
echo "IPV6_AUTOCONF=yes" >> /etc/sysconfig/network.cobbler
            #else
echo "IPV6_AUTOCONF=no" >> /etc/sysconfig/network.cobbler
            #end if
rm -f /etc/sysconfig/network
mv /etc/sysconfig/network.cobbler /etc/sysconfig/network
        #end if
        #if $ipv6_default_device != ""
grep -v IPV6_DEFAULTDEV /etc/sysconfig/network > /etc/sysconfig/network.cobbler
echo "IPV6_DEFAULTDEV=$ipv6_default_device" >> /etc/sysconfig/network.cobbler
rm -f /etc/sysconfig/network
mv /etc/sysconfig/network.cobbler /etc/sysconfig/network
        #end if
    #end if
    ## =============================================================================
    ## now create the config file for each interface
    #for $iname in $ikeys

# Start configuration for $iname
        ## create lots of variables to use later
        #set $idata                = $interfaces[$iname]
        #set $mac                  = $idata.get("mac_address", "").upper()
        #set $connected_mode       = $idata.get("connected_mode", "")
        #set $static               = $idata.get("static", "")
        #set $ip                   = $idata.get("ip_address", "")
        #set $netmask              = $idata.get("netmask", "")
        #set $if_gateway           = $idata.get("if_gateway", "")
        #set $static_routes        = $idata.get("static_routes", "")
        #set $iface_type           = $idata.get("interface_type", "").lower()
        #set $iface_master         = $idata.get("interface_master", "")
        #set $bonding_opts         = $idata.get("bonding_opts", "")
        #set $bridge_opts          = $idata.get("bridge_opts", "").split(" ")
        #set $ipv6_address         = $idata.get("ipv6_address", "")
        #set $ipv6_secondaries     = $idata.get("ipv6_secondaries", "")
        #set $ipv6_default_gateway = $idata.get("ipv6_default_gateway", "")
        #set $ipv6_static_routes   = $idata.get("ipv6_static_routes", "")
        ## Inherit slave mtu from master
        #if $iface_type.lower() in ("bond_slave","bridge_slave","bonded_bridge_slave")
            #set $mtu              = $interfaces[$iface_master].get("mtu", "")
            #set $ipv6_mtu         = $interfaces[$iface_master].get("ipv6_mtu", "")
        #else
            #set $mtu              = $idata.get("mtu", "")
            #set $ipv6_mtu         = $idata.get("ipv6_mtu", "")
        #end if
        #set $devfile              = "/etc/sysconfig/network-scripts/cobbler/ifcfg-" + $iname
        #set $routesfile           = "/etc/sysconfig/network-scripts/cobbler/route-" + $iname
        #set $ipv6_routesfile      = "/etc/sysconfig/network-scripts/cobbler/route6-" + $iname
        ## Ignore BMC interface
        #if $iface_type == "bmc"
            #continue
        #end if
        ## determine if this interface is for a VLAN
        #if $vlanpattern.match($iname)
            #set $is_vlan = "true"
            ## Set the vlan name
            #set $vlan_device = $iname.split(".")[0]
            #set $vlan_id = $iname.split(".")[1]            
        #else
            #set $is_vlan = "false"
        #end if
        ## slave interfaces are assumed to be static
        #if $iface_type in ("bond_slave","bridge_slave","bonded_bridge_slave")
            #set $static = 1
        #end if
        ## ===================================================================
        ## Things every interface get, no matter what
        ## ===================================================================
echo "DEVICE=$iname" > $devfile
echo "ONBOOT=yes" >> $devfile
            #if $mac != "" and $iface_type not in ("bond","bridge","bonded_bridge_slave")
            ## virtual interfaces don't get MACs
echo "HWADDR=$mac" >> $devfile
IFNAME=\$(ip -o link | grep -i '$mac' | sed -e 's/^[0-9]*: //' -e 's/:.*//')
            ## Rename this interface in modprobe.conf
            ## FIXME: if both interfaces startwith eth this is wrong
if [ -f "/etc/modprobe.conf" ] && [ \$IFNAME ]; then
    grep \$IFNAME /etc/modprobe.conf | sed "s/\$IFNAME/$iname/" >> /etc/modprobe.conf.cobbler
    grep -v \$IFNAME /etc/modprobe.conf >> /etc/modprobe.conf.new
    rm -f /etc/modprobe.conf
    mv /etc/modprobe.conf.new /etc/modprobe.conf
fi
            #end if
        ## ===================================================================
        ## Actions based on interface_type
        ## ===================================================================
        #if $iface_type == "bond_slave" and $iface_master != ""
echo "SLAVE=yes" >> $devfile
echo "MASTER=$iface_master" >> $devfile
echo "HOTPLUG=no" >> $devfile
        #end if
        #if $iface_type in ("bond","bonded_bridge_slave")
            ## if this is a bonded interface, configure it in modprobe.conf
            #if $osversion == "rhel4"
if [ -f "$mp_bonding" ]; then
    echo "install $iname /sbin/modprobe bonding -o $iname $bonding_opts" >> $(mp_bonding).cobbler
fi
            #elif $osversion == "rhel7" or $osversion == "ovz7"
            ## Add required bonding options to interface file
echo "TYPE=Bond" >> $devfile
echo "BONDING_MASTER=yes" >> $devfile
            #else
            ## Add required entry to modprobe config
echo "alias $iname bonding" >> $(mp_bonding).cobbler
            #end if
            #if $bonding_opts != ""
            #set $usedbondingopts = True
cat >> $devfile << EOF
BONDING_OPTS="$bonding_opts"
EOF
            #end if
        #elif $iface_type == "bridge"
echo "TYPE=Bridge" >> $devfile
            #for $bridge_opt in $bridge_opts
                #if $bridge_opt.strip() != ""
echo "$bridge_opt" >> $devfile
                #end if
            #end for
        #elif ($iface_type == "bridge_slave" or $iface_type == "bonded_bridge_slave") and $iface_master != ""
echo "TYPE=Bridge" >> $devfile
echo "BRIDGE=$iface_master" >> $devfile
echo "HOTPLUG=no" >> $devfile
        #elif $iface_type == "infiniband"
echo "TYPE=InfiniBand" >> $devfile
        #elif $is_vlan == "true"
echo "TYPE=VLan" >> $devfile
        #else
echo "TYPE=Ethernet" >> $devfile
        #end if
        ## ===================================================================
        ## Actions based on static/dynamic configuration
        ## ===================================================================
        #if $static
            #if $mac == "" and $iface_type == ""
# WARNING! Configuring interfaces by their names only
#          is error-prone, and can cause issues if and when
#          the kernel gives an interface a different name
#          following a reboot/hardware changes.
            #end if
echo "BOOTPROTO=none" >> $devfile
            #if $ip != "" and $iface_type not in ("bond_slave","bridge_slave","bonded_bridge_slave")
                ## Only configure static networking if an IP-address is configured
                ## and if the interface isn't slaved to another interface (bridging or bonding)
echo "IPADDR=$ip" >> $devfile
                #if $if_gateway != ""
echo "GATEWAY=$if_gateway" >> $devfile
                #end if
                #if $netmask == ""
                    ## Default to 255.255.255.0?
                    #set $netmask = "255.255.255.0"
                #end if
echo "NETMASK=$netmask" >> $devfile
            #end if
            #if $enableipv6 == True and $ipv6_autoconfiguration == False
                #if $ipv6_address != ""
echo "IPV6INIT=yes" >> $devfile
echo "IPV6ADDR=$ipv6_address" >> $devfile
                #end if
                #if $ipv6_secondaries != ""
                    #set ipv6_secondaries = ' '.join(ipv6_secondaries)
                    ## The quotes around the ipv6 ip's need to be here
echo "IPV6ADDR_SECONDARIES=\"$ipv6_secondaries\"" >> $devfile
                #end if
                #if $ipv6_mtu != ""
echo "IPV6MTU=$ipv6_mtu" >> $devfile
                #end if
                #if $ipv6_default_gateway != ""
echo "IPV6_DEFAULTGW=$ipv6_default_gateway" >> $devfile
                #end if
            #end if
        #else
            ## this is a DHCP interface, much less work to do
echo "BOOTPROTO=dhcp" >> $devfile
            #if $len($name_servers) > 0
echo "PEERDNS=no" >> $devfile
            #end if
        #end if
        ## ===================================================================
        ## VLAN configuration
        ## ===================================================================
        #if $is_vlan == "true"
echo "VLAN=yes" >> $devfile
echo "VLAN_ID=$vlan_id" >> $devfile
echo "PHYSDEV=$vlan_device" >> $devfile        
        #end if
        ## ===================================================================
        ## Optional configuration stuff
        ## ===================================================================
        #if $iface_type == "infiniband"
            #if $connected_mode != ""
echo "CONNECTED_MODE=yes" >> $devfile
            #else
echo "CONNECTED_MODE=no" >> $devfile
            #end if
        #end if
        #if $mtu != ""
echo "MTU=$mtu" >> $devfile
        #end if
        ## ===================================================================
        ## Non-slave DNS configuration, when applicable
        ## ===================================================================
        ## If the interface is anything but a slave then add DNSn entry
        #if $iface_type.lower() not in ("bond_slave","bridge_slave","bonded_bridge_slave")
            #set $nct = 0
            #for $nameserver in $name_servers
                #set $nct = $nct + 1
echo "DNS$nct=$nameserver" >> $devfile
            #end for
        #end if
        ## ===================================================================
        ## Interface route configuration
        ## ===================================================================
        #for $route in $static_routes
            #set routepattern = $re.compile("[0-9/.]+:[0-9.]+")
            #if $routepattern.match($route)
                #set $routebits = $route.split(":")
                #set [$network, $router] = $route.split(":")
echo "$network via $router" >> $routesfile
            #else
# Warning: invalid route "$route"
            #end if
        #end for
        #if $enableipv6 == True
            #for $route in $ipv6_static_routes
                #set routepattern = $re.compile("[0-9a-fA-F:/]+,[0-9a-fA-F:]+")
                #if $routepattern.match($route)
                    #set $routebits = $route.split(",")
                    #set [$network, $router] = $route.split(",")
echo "$network via $router dev $iname" >> $ipv6_routesfile
                #else
# Warning: invalid ipv6 route "$route"
                #end if
            #end for
        #end if
        ## ===================================================================
        ## Done with this interface
        ## ===================================================================
        #set $i = $i + 1
# End configuration for $iname
    #end for
    ## =============================================================================
    ## Configure name server search path in /etc/resolv.conf
    #set $num_ns = $len($name_servers)
    #set $num_ns_search = $len($name_servers_search)
    #if $num_ns_search > 0

sed -i -e "/^search /d" /etc/resolv.conf
echo -n "search " >>/etc/resolv.conf
        #for $nameserversearch in $name_servers_search
echo -n "$nameserversearch " >>/etc/resolv.conf
        #end for
echo "" >>/etc/resolv.conf
    #end if
    ## =============================================================================
    ## Configure name servers in /etc/resolv.conf
    #if $num_ns > 0

sed -i -e "/^nameserver /d" /etc/resolv.conf
        #for $nameserver in $name_servers
echo "nameserver $nameserver" >>/etc/resolv.conf
        #end for
    #end if

## Disable all eth interfaces by default before overwriting
## the old files with the new ones in the working directory
## This stops unneccesary (and time consuming) DHCP queries
## during the network initialization
sed -i 's/ONBOOT=yes/ONBOOT=no/g' /etc/sysconfig/network-scripts/ifcfg-eth*

## Move all staged files to their final location
    #for $iname in $ikeys
rm -f /etc/sysconfig/network-scripts/ifcfg-$iname
    #end for
mv /etc/sysconfig/network-scripts/cobbler/* /etc/sysconfig/network-scripts/
rm -r /etc/sysconfig/network-scripts/cobbler
    #if not $usedbondingopts
    ## Bonding opts were not used, so set max_bonds in modprobe
echo "options bonding max_bonds=$numbondingdevs" >> $mp_bonding
cat $(mp_bonding).cobbler >> $mp_bonding
    #end if
rm -f $(mp_bonding).cobbler
#end if
# End post_install_network_config generated code
   07070100000036000081A40000000000000000000000015ECE244400003425000000000000000000000000000000000000004300000000cobbler-3.1.2/autoinstall_snippets/post_install_network_config_deb    # Start post_install_network_config generated code 
#if $getVar("system_name","") != ""
    ## this is being provisioned by system records, not profile records
    ## so we can do the more complex stuff
    ## get the list of interface names
    #set ikeys = $interfaces.keys()
    #set osversion = $getVar("os_version","")
    #import re
    #set $vlanpattern = $re.compile("[a-zA-Z0-9]+[\.][0-9]+")
    ## Determine if we should use the MAC address to configure the interfaces first
    ## Only physical interfaces are required to have a MAC address
    ## Also determine the number of bonding devices we have, so we can set the
    ## max-bonds option in modprobe.conf accordingly. -- jcapel
    #set $configbymac = True
    #set $bridge_slaves = {}
    #set $numbondingdevs = 0
    #set $enableipv6 = False
    ## =============================================================================
    #for $iname in $ikeys
        ## look at the interface hash data for the specific interface
        #set $idata = $interfaces[$iname]
        ## Ignore BMC interface
        #if $idata.get("interface_type", "").lower() == "bmc"
            #continue
        #end if
        ## do not configure by mac address if we don't have one AND it's not for bonding/vlans
        ## as opposed to a "real" physical interface
        #if $idata.get("mac_address", "") == "" and not $vlanpattern.match($iname) and not $idata.get("interface_type", "").lower() in ("bond","bridge"):
                ## we have to globally turn off the config by mac feature as we can't
                ## use it now
                #set $configbymac = False
        #end if
        ## count the number of bonding devices we have.
        #if $idata.get("interface_type", "").lower() in ("bond","bonded_bridge_slave")
            #set $numbondingdevs += 1
        #end if
        ## build a mapping of bridge slaves, since deb/ubuntu bridge slaves do not
        ## get interface entries of their own
        #if $idata.get("interface_type","").lower() == "bridge_slave"
            #set $this_master = $idata.get("interface_master", None)
            #if $this_master and not $bridge_slaves.has_key($this_master)
               #set $bridge_slaves[$this_master] = []
            #end if
            <% bridge_slaves[this_master].append(iname) %>
        #end if
        ## enable IPv6 networking if we set an ipv6 address or turn on autoconfiguration
        #if $idata.get("ipv6_address", "") != "" or $ipv6_autoconfiguration == True
            #set $enableipv6 = True
        #end if
    #end for
    ## end looping through the interfaces to see which ones we need to configure.
    ## =============================================================================
    ## Rewrite the interfaces file and make sure we preserve the loopback device
rm -f /etc/network/interfaces 
touch /etc/network/interfaces 
echo "auto lo" >> /etc/network/interfaces 
echo "iface lo inet loopback" >> /etc/network/interfaces 
echo "" >> /etc/network/interfaces 
    ## =============================================================================
    ## now create the config file for each interface
    #for $iname in $ikeys


        ## create lots of variables to use later
        #set $idata                = $interfaces[$iname]
        #set $mac                  = $idata.get("mac_address", "").upper()
        #set $static               = $idata.get("static", "")
        #set $ip                   = $idata.get("ip_address", "")
        #set $netmask              = $idata.get("netmask", "")
        ## configure the gateway if set up, preferring per-interface over global
        #if $idata.get("if_gateway") != ""
            #set $if_gateway = $idata.get("if_gateway")
        #elif $gateway != ""
            #set $if_gateway = $gateway
        #else
            #set $if_gateway = ""
        #end if
        #set $static_routes        = $idata.get("static_routes", "")
        #set $iface_type           = $idata.get("interface_type", "").lower()
        #set $iface_master         = $idata.get("interface_master", "")
        #set $bonding_opts         = $idata.get("bonding_opts", "")
        #set $bridge_opts          = $idata.get("bridge_opts", "").split(" ")
        #set $ipv6_address         = $idata.get("ipv6_address", "")
        #set $ipv6_secondaries     = $idata.get("ipv6_secondaries", "")
        #set $ipv6_default_gateway = $idata.get("ipv6_default_gateway", "")
        #set $ipv6_static_routes   = $idata.get("ipv6_static_routes", "")
        ## determine if this interface is for a VLAN
        #if $vlanpattern.match($iname)
            #set $is_vlan = "true"
        #else
            #set $is_vlan = "false"
        #end if
        #if $iface_type.lower() in ("bond_slave","bridge_slave","bonded_bridge_slave")
            ## Inherit slave mtu from master
            #set $mtu              = $interfaces[$iface_master].get("mtu", "")
            #set $ipv6_mtu         = $interfaces[$iface_master].get("ipv6_mtu", "")
            ## slave interfaces are assumed to be static
            #set $static = 1
        #else
            #set $mtu              = $idata.get("mtu", "")
            #set $ipv6_mtu         = $idata.get("ipv6_mtu", "")
        #end if
        ## ===================================================================
        ## Things every interface get, no matter what
        ## ===================================================================
echo "auto $iname" >> /etc/network/interfaces 
        ## ===================================================================
        ## Actions based on interface_type
        ## ===================================================================
        #if $iface_type in ("bond","bonded_bridge_slave")
          #pass
        #elif $iface_type == "bond_slave" and $iface_master != ""
          #pass
        #elif $iface_type == "bridge"
          #set $slave_ports = " ".join($bridge_slaves.get($iname,[]))
          #if $slave_ports != ""
echo "  bridge_ports $slave_ports" >> /etc/network/interfaces 
          #end if
          #for $bridge_opt in $bridge_opts
            #if $bridge_opt.strip() != ""
echo "  $bridge_opt" >> /etc/network/interfaces 
            #end if
          #end for
        #end if
        ## ===================================================================
        ## Actions based on static configuration
        ## ===================================================================
        #if $static
            #if $ip != "" and $iface_type not in ("bond_slave","bridge_slave","bonded_bridge_slave") and $is_vlan == "true"
echo "iface $iname inet static" >> /etc/network/interfaces 
echo "   address $ip" >> /etc/network/interfaces 
                #if $netmask != ""
echo "   netmask $netmask" >> /etc/network/interfaces 
                #end if
        	#if $mtu != ""
echo "   mtu $mtu" >> /etc/network/interfaces
	        #end if
	    #end if
            #if $ip == "" and $iface_type == "bond" and $is_vlan == "false"
echo "iface $iname inet manual" >> /etc/network/interfaces 
                  #set $bondslaves = ""
                  #for $bondiname in $ikeys
                      #set $bondidata                = $interfaces[$bondiname]
                      #set $bondiface_type           = $bondidata.get("interface_type", "").lower()
                      #set $bondiface_master         = $bondidata.get("interface_master", "")
                      #if $bondiface_master == $iname
                         #set $bondslaves += $bondiname + " "
                      #end if
                  #end for
echo "   bond-slaves $bondslaves" >> /etc/network/interfaces
		  #for $bondopts in $bonding_opts.split(" ")
		      #set [$bondkey, $bondvalue] = $bondopts.split("=")
echo "   bond-$bondkey $bondvalue" >> /etc/network/interfaces
                  #end for
        	  #if $mtu != ""
echo "   mtu $mtu" >> /etc/network/interfaces
	          #end if

            #else if  $ip != "" and $iface_type not in ("bond_slave","bridge_slave","bonded_bridge_slave") and $is_vlan == "false"
echo "iface $iname inet static" >> /etc/network/interfaces 
                #if $mac != ""
echo "   hwaddress $mac" >> /etc/network/interfaces
		#end if
echo "   address $ip" >> /etc/network/interfaces 
        	#if $mtu != ""
echo "   mtu $mtu" >> /etc/network/interfaces
	        #end if
                #if $netmask != ""
echo "   netmask $netmask" >> /etc/network/interfaces 
                #end if
                #if $iface_type == "bond"
                  #set $bondslaves = ""
                  #for $bondiname in $ikeys
                      #set $bondidata                = $interfaces[$bondiname]
                      #set $bondiface_type           = $bondidata.get("interface_type", "").lower()
                      #set $bondiface_master         = $bondidata.get("interface_master", "")
                      #if $bondiface_master == $iname
                         #set $bondslaves += $bondiname + " "
                      #end if
                  #end for
echo "   bond-slaves $bondslaves" >> /etc/network/interfaces
		  #for $bondopts in $bonding_opts.split(" ")
		      #set [$bondkey, $bondvalue] = $bondopts.split("=")
echo "   bond-$bondkey $bondvalue" >> /etc/network/interfaces
                  #end for
                #end if
            #else 
		    #if $is_vlan == "false"
echo "iface $iname inet manual" >> /etc/network/interfaces 
	           #end if
            #end if
            #if $iface_type == "bond_slave" and $iface_master != ""
echo "bond-master $iface_master" >> /etc/network/interfaces
            #end if
            #if $enableipv6 == True and $ipv6_autoconfiguration == False
                #if $ipv6_address != ""
                  #pass
                #end if
                #if $ipv6_secondaries != ""
                    #set ipv6_secondaries = ' '.join(ipv6_secondaries)
                #end if
                #if $ipv6_mtu != ""
                  #pass
                #end if
                #if $ipv6_default_gateway != ""
                  #pass
                #end if
            #end if
        #else
echo "iface $iname inet dhcp" >> /etc/network/interfaces 
        #end if
        ## ===================================================================
        ## VLAN configuration
        ## ===================================================================
        #if $is_vlan == "true"
          #pass
        #end if
        ## ===================================================================
        ## Optional configuration stuff
        ## ===================================================================
        #if $if_gateway != ""
echo "   gateway $if_gateway" >> /etc/network/interfaces
        #end if
        ## ===================================================================
        ## Interface route configuration
        ## ===================================================================
        #for $route in $static_routes
            #set routepattern = $re.compile("[0-9/.]+:[0-9.]+")
            #if $routepattern.match($route)
                #set [$network, $router] = $route.split(":")
echo "   up ip route add $network via $router dev $iname || true" >> /etc/network/interfaces
            #else
echo "   # Warning: invalid route: $route" >> /etc/network/interfaces
            #end if
        #end for
        #if $enableipv6 == True
            #for $route in $ipv6_static_routes
                #set routepattern = $re.compile("[0-9a-fA-F:/]+,[0-9a-fA-F:]+")
                #if $routepattern.match($route)
                    #set [$network, $router] = $route.split(",")
echo "   up ip -6 route add $network via $router dev $iname || true" >> /etc/network/interfaces
                #else
echo "   # Warning: invalid route: $route" >> /etc/network/interfaces
                #end if
            #end for
        #end if
        ## ===================================================================
        ## Done with this interface
        ## ===================================================================
    #end for
    ## =============================================================================
    ## Configure the system's primary hostname. This is also passed to anaconda, but
    ## anaconda doesn't seem to honour it in DHCP-setups.
    #if $hostname != ""
echo "$hostname" > /etc/hostname 
/bin/hostname $hostname 
    #end if
    ## =============================================================================
    ## Configure name server search path in /etc/resolv.conf
    #set $num_ns = $len($name_servers)
    #set $num_ns_search = $len($name_servers_search)
    #if $num_ns_search > 0
sed -i -e "/^search /d" /etc/resolv.conf 
echo -n "search " >>/etc/resolv.conf 
        #for $nameserversearch in $name_servers_search
echo -n "$nameserversearch " >>/etc/resolv.conf 
        #end for
echo "" >>/etc/resolv.conf 
    #end if
    ## =============================================================================
    ## Configure name servers in /etc/resolv.conf
    #if $num_ns > 0
sed -i -e "/^nameserver /d" /etc/resolv.conf 
        #for $nameserver in $name_servers
echo "nameserver $nameserver" >>/etc/resolv.conf 
        #end for
    #end if
#end if
# End post_install_network_config generated code 
   07070100000037000081A40000000000000000000000015ECE2444000000CC000000000000000000000000000000000000004100000000cobbler-3.1.2/autoinstall_snippets/post_koan_add_reinstall_entry  %post
#if $getVar("system_name","") != ""
   koan --server=$server --replace-self --add-reinstall-entry
#else
   koan --server=$server --replace-self --profile=$profile_name --add-reinstall-entry
#end if
07070100000038000081A40000000000000000000000015ECE244400000045000000000000000000000000000000000000003000000000cobbler-3.1.2/autoinstall_snippets/post_run_deb   # A general purpose snippet to add late-command actions for preseeds
   07070100000039000081A40000000000000000000000015ECE244400000150000000000000000000000000000000000000002E00000000cobbler-3.1.2/autoinstall_snippets/pre_anamon #if $str($getVar('anamon_enabled','')) == "1"
curl -o /tmp/anamon "http://$server:$http_port/cobbler/misc/anamon"
python=python
[ -x /usr/libexec/platform-python ] && python=/usr/libexec/platform-python
[ -x /usr/bin/python3 ] && python=/usr/bin/python3
$python /tmp/anamon --name "$name" --server "$server" --port "$http_port"
#end if
0707010000003A000081A40000000000000000000000015ECE244400001B13000000000000000000000000000000000000003E00000000cobbler-3.1.2/autoinstall_snippets/pre_install_network_config #if $getVar("system_name","") != ""
# Start pre_install_network_config generated code
#raw
# generic functions to be used later for discovering NICs
mac_exists() {
  [ -z "$1" ] && return 1

  if which ip 2>/dev/null >/dev/null; then
    ip -o link | grep -i "$1" 2>/dev/null >/dev/null
    return $?
  elif which esxcfg-nics 2>/dev/null >/dev/null; then
    esxcfg-nics -l | grep -i "$1" 2>/dev/null >/dev/null
    return $?
  else
    ifconfig -a | grep -i "$1" 2>/dev/null >/dev/null
    return $?
  fi
}
get_ifname() {
  if which ip 2>/dev/null >/dev/null; then
    IFNAME=$(ip -o link | grep -i "$1" | sed -e 's/^[0-9]*: //' -e 's/:.*//')
  elif which esxcfg-nics 2>/dev/null >/dev/null; then
    IFNAME=$(esxcfg-nics -l | grep -i "$1" | cut -d " " -f 1)
  else
    IFNAME=$(ifconfig -a | grep -i "$1" | cut -d " " -f 1)
    if [ -z $IFNAME ]; then
      IFNAME=$(ifconfig -a | grep -i -B 2 "$1" | sed -n '/flags/s/:.*$//p')
    fi
  fi
}
#end raw
    #set ikeys = $interfaces.keys()
    #import re
    #set $vlanpattern = $re.compile("[a-zA-Z0-9]+[\.][0-9]+")
    #set $routepattern = $re.compile("[0-9/.]+:[0-9.]+")
    ##
    ## Determine if we should use the MAC address to configure the interfaces first
    ## Only physical interfaces are required to have a MAC address
    #set $configbymac = True
    #for $iname in $ikeys
        #set $idata = $interfaces[$iname]
        ## Ignore BMC interface
        #if $idata["interface_type"].lower() == "bmc"
            #continue
        #end if
        #if $idata["mac_address"] == "" and not $vlanpattern.match($iname) and not $idata["interface_type"].lower() in ("bond","bridge","bonded_bridge_slave")
            #set $configbymac = False
        #end if
    #end for
    #set $i = 0

    #if $configbymac
        ## Output diagnostic message
# Start of code to match cobbler system interfaces to physical interfaces by their mac addresses
    #end if
    #for $iname in $ikeys
#  Start $iname
        #set $idata         = $interfaces[$iname]
        #set $mac           = $idata["mac_address"]
        #set $static        = $idata["static"]
        #set $ip            = $idata["ip_address"]
        #set $netmask       = $idata["netmask"]
        #set $gateway       = $getVar("gateway","")
        #set $if_gateway    = $idata["if_gateway"]
        #set $iface_type    = $idata["interface_type"]
        #set $iface_master  = $idata["interface_master"]
        #set $static_routes = $idata["static_routes"]
        #set $devfile       = "/etc/sysconfig/network-scripts/ifcfg-" + $iname
        #if $vlanpattern.match($iname)
            ## If this is a VLAN interface, skip it, anaconda doesn't know
            ## about VLANs.
            #set $is_vlan = "true"
        #else
            #set $is_vlan = "false"
        #end if
        ## Ignore BMC interface
        #if $iface_type.lower() == "bmc"
            #continue
        #end if
        #if ($configbymac and $is_vlan == "false" and $iface_type.lower() not in ("bond_slave","bridge_slave","bonded_bridge_slave")) or $iface_type.lower() in ("bond","bridge")
            ## This is a physical interface, hand it to anaconda. Do not
            ## process slave interface here.
            #if $iface_type.lower() in ("bond","bridge","bonded_bridge_slave")
                ## Find a slave for this interface
                #for $tiname in $ikeys
                    #set $tidata = $interfaces[$tiname]
                    #if $tidata["interface_type"].lower() in ("bond_slave","bridge_slave") and $tidata["interface_master"].lower() == $iname
                        #if $tidata["mac_address"] != '':
                            #set $mac = $tidata["mac_address"]
#  Found a slave for this interface: $tiname ($mac)
                            #break
                        #end if
                    #else if $tidata["interface_type"].lower() == "bonded_bridge_slave" and $tidata["interface_master"].lower() == $iname
                        ## find a slave for this slave interface...
                        #for $stiname in $ikeys
                            #set $stidata = $interfaces[$stiname]
                            #if $stidata["interface_type"].lower() in ("bond_slave","bridge_slave") and $stidata["interface_master"].lower() == $tiname
                                #if $stidata["mac_address"] != '':
                                    #set $mac = $stidata["mac_address"]
#  Found a slave for this interface: $tiname -> $stiname ($mac)
                                    #break
                                #end if
                            #end if
                        #end for
                    #end if
                #end for
            #end if
            #if $static and $ip != ""
                #if $netmask == ""
                    ## Netmask not provided, default to /24.
                    #set $netmask = "255.255.255.0"
                #end if
                #set $netinfo = "--bootproto=static --ip=%s --netmask=%s" % ($ip, $netmask)
                #if $if_gateway != ""
	                #if $if_gateway == $gateway
	                   #set $netinfo = "%s --gateway=%s" % ($netinfo, $if_gateway)
	                #else
	                   #set $netinfo = "%s --gateway=%s --nodefroute" % ($netinfo, $if_gateway)
	                #end if
                #else if $gateway != ""
	                #set $netinfo = "%s --gateway=%s" % ($netinfo, $gateway)
    	        #end if
    	        #if $len($name_servers) > 0
    	            #set $netinfo = "%s --nameserver=%s" % ($netinfo, $name_servers[0])
                #end if
            #else if not $static
                #set $netinfo = "--bootproto=dhcp"
            #else
                ## Skip this interface, it's set as static, but without
                ## networking info.
#  Skipping (no configuration)...
#  Ensure there is some pre_install_network_config file created
touch /tmp/pre_install_network_config
                #continue
            #end if
            #if $hostname != ""
                #set $netinfo = "%s --hostname=%s" % ($netinfo, $hostname)
            #end if
# Configuring $iname ($mac)
if mac_exists $mac
then
  get_ifname $mac
  echo "network --device=\$IFNAME $netinfo" >> /tmp/pre_install_network_config
            #for $route in $static_routes
                #if $routepattern.match($route)
                    #set $routebits = $route.split(":")
                    #set [$network, $router] = $route.split(":")
  ip route add $network via $router dev \$IFNAME
                #else
  # Warning: invalid route "$route"
                #end if
            #end for
fi
        #else
            #if $iface_type.lower() in ("bond_slave","bridge_slave","bonded_bridge_slave")
#  Skipping (slave-interface)
            #else
#  Skipping (not a physical interface)...
            #end if
        #end if
    #end for
# End pre_install_network_config generated code
#end if
 0707010000003B000081A40000000000000000000000015ECE2444000002A7000000000000000000000000000000000000003800000000cobbler-3.1.2/autoinstall_snippets/pre_partition_select   # partition details calculation

# Determine how many drives we have
set \$(list-harddrives)
let numd=\$#/2
d1=\$1
d2=\$3

# Determine architecture-specific partitioning needs
EFI_PART=""
PPC_PREP_PART=""
BOOT_PART=""

case \$(uname -m) in
    ppc*)
        PPC_PREP_PART="part None --fstype 'PPC PReP Boot' --size 8"
        BOOT_PART="part /boot --fstype ext3 --size 200 --recommended"
        ;;
    *)
        BOOT_PART="part /boot --fstype ext3 --size 200 --recommended"
        ;;
esac

cat << EOF > /tmp/partinfo
\$EFI_PART
\$PPC_PREP_PART
\$BOOT_PART
part / --fstype ext3 --size=1024 --grow --ondisk=\$d1 --asprimary
part swap --recommended --ondisk=\$d1 --asprimary
EOF
 0707010000003C000081A40000000000000000000000015ECE244400000274000000000000000000000000000000000000003B00000000cobbler-3.1.2/autoinstall_snippets/preseed_apt_repo_config    # Additional repositories, local[0-9] available
#set $cur=0
#set $repo_data = $getVar("repo_data",[])
#for $repo in $repo_data
 #for $dist in $repo.apt_dists
 #set $comps = " ".join($repo.apt_components)
d-i apt-setup/local${cur}/repository string \
 #if $repo.mirror_locally
      http://$http_server/cblr/repo_mirror/${repo.name} $dist $comps
 #else
      ${repo.mirror} $dist $comps
 #end if
 #if $repo.comment != ""
d-i apt-setup/local${cur}/comment string ${repo.comment}
 #end if
 #if $repo.breed == "src"
# Enable deb-src lines
d-i apt-setup/local${cur}/source boolean false
 #end if
 #set $cur=$cur+1
 #end for
#end for
0707010000003D000081A40000000000000000000000015ECE244400000041000000000000000000000000000000000000003D00000000cobbler-3.1.2/autoinstall_snippets/puppet_install_if_enabled  #if $str($getVar('puppet_auto_setup','')) == "1"
puppet
#end if

   0707010000003E000081A40000000000000000000000015ECE244400000284000000000000000000000000000000000000003E00000000cobbler-3.1.2/autoinstall_snippets/puppet_register_if_enabled # start puppet registration 
#if $str($getVar('puppet_auto_setup','')) == "1"
# generate puppet certificates and trigger a signing request, but
# don't wait for signing to complete
#if $int($getVar('puppet_version',2)) >= 3
/usr/bin/puppet agent --test --waitforcert 0 #echo (($str($getVar('puppet_server','')) != '') and "--server '"+$str($getVar('puppet_server',''))+"'" or '')
#else
/usr/sbin/puppetd --test --waitforcert 0 #echo (($str($getVar('puppet_server','')) != '') and "--server '"+$str($getVar('puppet_server',''))+"'" or '')
#end if

# turn puppet service on for reboot
/sbin/chkconfig puppet on

#end if
# end puppet registration
0707010000003F000081A40000000000000000000000015ECE244400000344000000000000000000000000000000000000003300000000cobbler-3.1.2/autoinstall_snippets/redhat_register    # begin Red Hat management server registration
#if $redhat_management_type != "off" and $redhat_management_key != ""
mkdir -p /usr/share/rhn/
   #if $redhat_management_type == "site"
      #set $mycert_file = "RHN-ORG-TRUSTED-SSL-CERT"
      #set $mycert = "/usr/share/rhn/" + $mycert_file
curl http://$redhat_management_server/pub/RHN-ORG-TRUSTED-SSL-CERT -o $mycert
perl -npe 's/RHNS-CA-CERT/$mycert_file/g' -i /etc/sysconfig/rhn/*
   #end if
   #if $redhat_management_type == "hosted"
      #set $mycert = "/usr/share/rhn/RHNS-CA-CERT"
   #end if 
   #set $endpoint = "https://%s/XMLRPC" % $redhat_management_server
rhnreg_ks --serverUrl=$endpoint --sslCACert=$mycert --activationkey=$redhat_management_key
#else
# not configured to register to any Red Hat management server (ok)
#end if
# end Red Hat management server registration
07070100000040000081A40000000000000000000000015ECE2444000002B8000000000000000000000000000000000000003700000000cobbler-3.1.2/autoinstall_snippets/restore_boot_device    #if ( "ppc" in $arch ) and ( $breed == "suse" or $breed == "redhat" or $breed == "ubuntu")
# Some Linux distributions, such as Fedora 17+, SLES 11+ and RHEL 7+, set the disk
# as first boot device in Power machines. Therefore, restore the original boot
# order.
#if ( $breed == "suse" )
# we have already chrooted, former /root is available now at /root/inst-sys
boot_order_orig="\$(cat /root/inst-sys/boot-device.bak)"
#else
boot_order_orig="\$(cat /root/boot-device.bak)"
#end if
boot_order_cur="\$(nvram --print-config=boot-device)"
if [[ ( -n "\$boot_order_orig" ) &&  ( "\$boot_order_orig" != "\$boot_order_cur" ) ]]
then
    nvram --update-config boot-device="\$boot_order_orig"
fi
#end if
07070100000041000081A40000000000000000000000015ECE24440000026C000000000000000000000000000000000000004200000000cobbler-3.1.2/autoinstall_snippets/rhn_certificate_based_register # begin Red Hat Network certificate-based server registration
#if $redhat_management_type == "cert" and $redhat_register_user != "" and $redhat_register_password != ""
# Subscribe (register) the system
subscription-manager register --autosubscribe --username=$redhat_register_user --password=$redhat_register_password
# Add what used to be called channels
yum -y install yum-utils
yum-config-manager --enable  rhel-6-server-optional-rpms
yum-config-manager --enable  rhel-6-server-supplementary
#else
# not configured to use Certificate-based RHN (ok)
#end if
# end Red Hat Network certificate-based server registration
07070100000042000081A40000000000000000000000015ECE244400000290000000000000000000000000000000000000003400000000cobbler-3.1.2/autoinstall_snippets/save_boot_device   #if ( "ppc" in $arch ) and ( $breed == "suse" or $breed == "redhat" or $breed == "ubuntu" )
# Some Linux distributions, such as Fedora 17+, SLES 11+ and RHEL 7+, set the disk
# as first boot device in Power machines. Therefore, save the original boot
# order, so it can be restored after installation is completed.
#if ( $breed == "suse" or $breed == "ubuntu" )
nvram --print-config=boot-device > /root/boot-device.bak
#else
# Once root's homedir is there, copy over the log.
while : ; do
    sleep 10
    if [ -d /mnt/sysimage/root ]; then
	nvram --print-config=boot-device > /mnt/sysimage/root/boot-device.bak
        break
    fi
done &
#end if
#end if
07070100000043000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000002400000000cobbler-3.1.2/autoinstall_templates   07070100000044000081A40000000000000000000000015ECE244400000073000000000000000000000000000000000000002F00000000cobbler-3.1.2/autoinstall_templates/default.ks    # this file intentionally left blank
# admins:  edit it as you like, or leave it blank for non-interactive install
 07070100000045000081A40000000000000000000000015ECE244400000016000000000000000000000000000000000000003100000000cobbler-3.1.2/autoinstall_templates/esxi4-ks.cfg  # Test ESXi 5 ks file
  07070100000046000081A40000000000000000000000015ECE244400000016000000000000000000000000000000000000003100000000cobbler-3.1.2/autoinstall_templates/esxi5-ks.cfg  # Test ESXi 5 ks file
  07070100000047000081A40000000000000000000000015ECE244400000594000000000000000000000000000000000000002E00000000cobbler-3.1.2/autoinstall_templates/legacy.ks #platform=x86, AMD64, or Intel EM64T
# System authorization information
auth  --useshadow  --enablemd5
# System bootloader configuration
bootloader --location=mbr
# Partition clearing information
clearpart --all --initlabel
# Use text mode install
text
# Firewall configuration
firewall --enabled
# Run the Setup Agent on first boot
firstboot --disable
# System keyboard
keyboard us
# System language
lang en_US
# Use network installation
url --url=$tree
# Network information
$SNIPPET('network_config')
# Reboot after installation
reboot

#Root password
rootpw --iscrypted $default_password_crypted
# SELinux configuration
selinux --disabled
# Do not configure the X Window System
skipx
# System timezone
timezone  America/New_York
# Install OS instead of upgrade
install
# Clear the Master Boot Record
zerombr
# Allow anaconda to partition the system as needed
autopart

%pre
$SNIPPET('log_ks_pre')
$SNIPPET('autoinstall_start')
$SNIPPET('pre_install_network_config')
$SNIPPET('pre_anamon')

%packages

%post --nochroot
$SNIPPET('log_ks_post_nochroot')
%end

%post
$SNIPPET('log_ks_post')
# Begin yum configuration
$yum_config_stanza
# End yum configuration
$SNIPPET('post_install_kernel_options')
$SNIPPET('post_install_network_config')
$SNIPPET('download_config_files')
$SNIPPET('koan_environment')
$SNIPPET('redhat_register')
$SNIPPET('cobbler_register')
# Begin final steps
$SNIPPET('autoinstall_done')
# End final steps

07070100000048000081A40000000000000000000000015ECE24440000029D000000000000000000000000000000000000003000000000cobbler-3.1.2/autoinstall_templates/powerkvm.ks   # kickstart template for PowerKVM 2.1 and later

# Root password
rootpw --iscrypted $default_password_crypted
# System timezone
timezone  America/Chicago
# Allow anaconda to partition the system as needed
partition / --ondisk=/dev/sda
# network specification is also supported, but if we specify the network
# device on the command-line, we can skip it

%pre
$SNIPPET('log_ks_pre')
$SNIPPET('autoinstall_start')
%end

%post
$SNIPPET('log_ks_post')
# Start yum configuration
$yum_config_stanza
# End yum configuration
$SNIPPET('post_install_kernel_options')
$SNIPPET('post_install_network_config')
# Start final steps
$SNIPPET('autoinstall_done')
# End final steps
%end
   07070100000049000081A40000000000000000000000015ECE244400000124000000000000000000000000000000000000003100000000cobbler-3.1.2/autoinstall_templates/pxerescue.ks  # Rescue Boot Template

# Set the language and language support
lang en_US
# uncomment for legacy system (e.g. RHEL4)
# langsupport en_US

# Set the keyboard
keyboard "us"

# Network kickstart
network --bootproto dhcp

# Rescue method (only NFS/FTP/HTTP currently supported)
url --url=$tree

0707010000004A000081A40000000000000000000000015ECE2444000006B8000000000000000000000000000000000000002E00000000cobbler-3.1.2/autoinstall_templates/sample.ks # Sample kickstart file for current EL, Fedora based distributions.

#platform=x86, AMD64, or Intel EM64T
# System authorization information
auth  --useshadow  --enablemd5
# System bootloader configuration
bootloader --location=mbr
# Partition clearing information
clearpart --all --initlabel
# Use text mode install
text
# Firewall configuration
firewall --enabled
# Run the Setup Agent on first boot
firstboot --disable
# System keyboard
keyboard us
# System language
lang en_US
# Use network installation
url --url=$tree
# If any cobbler repo definitions were referenced in the kickstart profile, include them here.
$yum_repo_stanza
# Network information
$SNIPPET('network_config')
# Reboot after installation
reboot

#Root password
rootpw --iscrypted $default_password_crypted
# SELinux configuration
selinux --disabled
# Do not configure the X Window System
skipx
# System timezone
timezone  America/New_York
# Install OS instead of upgrade
install
# Clear the Master Boot Record
zerombr
# Allow anaconda to partition the system as needed
autopart

%pre
$SNIPPET('log_ks_pre')
$SNIPPET('autoinstall_start')
$SNIPPET('pre_install_network_config')
# Enable installation monitoring
$SNIPPET('pre_anamon')
%end

%packages
%end

%post --nochroot
$SNIPPET('log_ks_post_nochroot')
%end

%post
$SNIPPET('log_ks_post')
# Start yum configuration
$yum_config_stanza
# End yum configuration
$SNIPPET('post_install_kernel_options')
$SNIPPET('post_install_network_config')
$SNIPPET('download_config_files')
$SNIPPET('koan_environment')
$SNIPPET('redhat_register')
$SNIPPET('cobbler_register')
# Enable post-install boot notification
$SNIPPET('post_anamon')
# Start final steps
$SNIPPET('autoinstall_done')
# End final steps
%end
0707010000004B000081A40000000000000000000000015ECE244400001A38000000000000000000000000000000000000003000000000cobbler-3.1.2/autoinstall_templates/sample.seed   # Mostly based on the Ubuntu installation guide
# https://help.ubuntu.com/18.04/installation-guide/
# Debian sample
# https://www.debian.org/releases/stable/example-preseed.txt

# Preseeding only locale sets language, country and locale.
d-i debian-installer/locale string en_US

# Keyboard selection.
# Disable automatic (interactive) keymap detection.
d-i console-setup/ask_detect boolean false
d-i keyboard-configuration/xkb-keymap select us
d-i keyboard-configuration/toggle select No toggling
d-i keyboard-configuration/layoutcode string us
d-i keyboard-configuration/variantcode string

# netcfg will choose an interface that has link if possible. This makes it
# skip displaying a list if there is more than one interface.
#set $myhostname = $getVar('hostname',$getVar('name','cobbler')).replace("_","-")
d-i netcfg/choose_interface select auto
d-i netcfg/get_hostname string $myhostname

# If non-free firmware is needed for the network or other hardware, you can
# configure the installer to always try to load it, without prompting. Or
# change to false to disable asking.
# d-i hw-detect/load_firmware boolean true

# NTP/Time Setup
d-i time/zone string US/Eastern
d-i clock-setup/utc boolean true
d-i clock-setup/ntp boolean true
d-i clock-setup/ntp-server  string ntp.ubuntu.com

# Setup the installation source
d-i mirror/country string manual
d-i mirror/http/hostname string $http_server
d-i mirror/http/directory string $install_source_directory
d-i mirror/http/proxy string

#set $os_v = $getVar('os_version','')
#if $breed == "ubuntu" and $os_v and $os_v.lower() != 'precise'
# Required at least for ubuntu 12.10+ , so test os_v is not precise. Olders versions are not supported anymore
d-i live-installer/net-image string http://$http_server/cobbler/links/$distro_name/install/filesystem.squashfs
#end if

# Suite to install.
# d-i mirror/suite string precise
# d-i mirror/udeb/suite string precise

# Components to use for loading installer components (optional).
#d-i mirror/udeb/components multiselect main, restricted

# Disk Partitioning
# Use LVM, and wipe out anything that already exists
d-i partman/choose_partition select finish
d-i partman/confirm boolean true
d-i partman/confirm_nooverwrite boolean true
d-i partman-auto/method string lvm
d-i partman-lvm/device_remove_lvm boolean true
d-i partman-lvm/confirm boolean true
d-i partman-lvm/confirm_nooverwrite boolean true
d-i partman-md/device_remove_md boolean true
d-i partman-partitioning/confirm_write_new_label boolean true

# You can choose one of the three predefined partitioning recipes:
# - atomic: all files in one partition
# - home:   separate /home partition
# - multi:  separate /home, /usr, /var, and /tmp partitions
d-i partman-auto/choose_recipe select atomic

# If you just want to change the default filesystem from ext3 to something
# else, you can do that without providing a full recipe.
# d-i partman/default_filesystem string ext4

# root account and password
d-i passwd/root-login boolean true
d-i passwd/root-password-crypted password $default_password_crypted

# skip creation of a normal user account.
d-i passwd/make-user boolean false

# You can choose to install restricted and universe software, or to install
# software from the backports repository.
# d-i apt-setup/restricted boolean true
# d-i apt-setup/universe boolean true
# d-i apt-setup/backports boolean true

# Uncomment this if you don't want to use a network mirror.
# d-i apt-setup/use_mirror boolean false

# Select which update services to use; define the mirrors to be used.
# Values shown below are the normal defaults.
# d-i apt-setup/services-select multiselect security
# d-i apt-setup/security_host string security.ubuntu.com
# d-i apt-setup/security_path string /ubuntu

$SNIPPET('preseed_apt_repo_config')

# Enable deb-src lines
# d-i apt-setup/local0/source boolean true

# URL to the public key of the local repository; you must provide a key or
# apt will complain about the unauthenticated repository and so the
# sources.list line will be left commented out
# d-i apt-setup/local0/key string http://local.server/key

# By default the installer requires that repositories be authenticated
# using a known gpg key. This setting can be used to disable that
# authentication. Warning: Insecure, not recommended.
# d-i debian-installer/allow_unauthenticated boolean true

# Package selection
# Default for minimal
tasksel tasksel/first multiselect standard
# Default for server
# tasksel tasksel/first multiselect standard, web-server
# Default for gnome-desktop
# tasksel tasksel/first multiselect standard, gnome-desktop

# Individual additional packages to install
# wget is REQUIRED otherwise quite a few things won't work
# later in the build (like late-command scripts)
d-i pkgsel/include string ntp ssh wget

# Debian needs this for the installer to avoid any question for grub
# Please verify that it suit your needs as it may overwrite any usb stick
#if $breed == "debian"
d-i grub-installer/grub2_instead_of_grub_legacy boolean true
d-i grub-installer/bootdev string default
#end if

# Use the following option to add additional boot parameters for the
# installed system (if supported by the bootloader installer).
# Note: options passed to the installer will be added automatically.
d-i debian-installer/add-kernel-opts string $kernel_options_post

# Avoid that last message about the install being complete.
d-i finish-install/reboot_in_progress note

## Figure out if we're automating OS installation for a system or a profile
#if $getVar('system_name','') != ''
#set $what = "system"
#else
#set $what = "profile"
#end if

# This first command is run as early as possible, just after preseeding is read.
# d-i preseed/early_command string [command]
d-i preseed/early_command string wget -O- \
   http://$http_server/cblr/svc/op/script/$what/$name/?script=preseed_early_default | \
   /bin/sh -s

# This command is run immediately before the partitioner starts. It may be
# useful to apply dynamic partitioner preseeding that depends on the state
# of the disks (which may not be visible when preseed/early_command runs).
# d-i partman/early_command \
#       string debconf-set partman-auto/disk "\$(list-devices disk | head -n1)"

# This command is run just before the install finishes, but when there is
# still a usable /target directory. You can chroot to /target and use it
# directly, or use the apt-install and in-target commands to easily install
# packages and run commands in the target system.
# d-i preseed/late_command string [command]
d-i preseed/late_command string wget -O- \
   http://$http_server/cblr/svc/op/script/$what/$name/?script=preseed_late_default | \
   chroot /target /bin/sh -s
0707010000004C000081A40000000000000000000000015ECE244400000B11000000000000000000000000000000000000003800000000cobbler-3.1.2/autoinstall_templates/sample_autoyast.xml   <?xml version="1.0"?>
<!DOCTYPE profile>
<profile xmlns="http://www.suse.com/1.0/yast2ns" xmlns:config="http://www.suse.com/1.0/configns">
  <deploy_image>
    <image_installation config:type="boolean">false</image_installation>
  </deploy_image>
  ## without the next 6 lines autoyast will ask for confirmation bevore installation
  <general>
    <mode>
      <confirm config:type="boolean">false</confirm>
      <final_reboot config:type="boolean">true</final_reboot>	
    </mode>
  </general>
  $SNIPPET('addons.xml')
  $SNIPPET('hosts.xml')
  $SNIPPET('kdump.xml')
  <keyboard>
    <keymap>english</keymap>
  </keyboard>
  <language>
    <language>en_US</language>
    <languages></languages>
  </language>
  <login_settings/>
  $SNIPPET('networking.xml')
  <runlevel>
    <default>3</default>
  </runlevel>
  <users config:type="list">
    <user>
      <encrypted config:type="boolean">true</encrypted>
      <fullname>root</fullname>
      <gid>0</gid>
      <home>/root</home>
      <password_settings>
        <expire></expire>
        <flag></flag>
        <inact></inact>
        <max></max>
        <min></min>
        <warn></warn>
      </password_settings>
      <shell>/bin/bash</shell>
      <uid>0</uid>
	<user_password>$default_password_crypted</user_password>
      <username>root</username>
    </user>
  </users>
  <scripts>
    ## we have to include the pre-scripts tag to get autoinstall_start included
    <pre-scripts config:type="list">
      #set global $wrappedscript = 'autoinstall_start'
      $SNIPPET('suse_scriptwrapper.xml')
	## SuSE has an annoying habit on ppc64 of changing the system
	## boot order after installation. This makes it non-trivial to
	## automatically re-install future OS.
	#set global $wrappedscript = 'save_boot_device'
	$SNIPPET('suse_scriptwrapper.xml')
    </pre-scripts>
    <post-scripts config:type="list">
	##
	## This plugin wrapper provides the flexibility to call pure shell
	## snippets which can be used directly on autoinst file and with
	## wrapper on SuSE.
	##
	## To use it
	## - exchange name_of_pure_shell_snippet with the name of this shell snippet
	## - and remove the '##' in front of the line with suse_scriptwrapper.xml
	##
	#set global $wrappedscript = 'name_of_pure_shell_snippet'
	## $SNIPPET('suse_scriptwrapper.xml')

	## SuSE has an annoying habit on ppc64 of changing the system
	## boot order after installation. This makes it non-trivial to
	## automatically re-install future OS.
	#set global $wrappedscript = 'restore_boot_device'
	$SNIPPET('suse_scriptwrapper.xml')
    </post-scripts>
    ## we have to include the init-scripts tag to get autoinstall_done included
    <init-scripts config:type="list">
      #set global $wrappedscript = 'autoinstall_done'
      $SNIPPET('suse_scriptwrapper.xml')
    </init-scripts>
  </scripts>
</profile>
   0707010000004D000081A40000000000000000000000015ECE244400000148000000000000000000000000000000000000003400000000cobbler-3.1.2/autoinstall_templates/sample_esxi4.ks   # sample Kickstart for ESXi

install url $tree

rootpw --iscrypted $default_password_crypted

accepteula
reboot

autopart --firstdisk --overwritevmfs
 
$SNIPPET('network_config_esxi')

%pre --unsupported --interpreter=busybox
$SNIPPET('autoinstall_start')

%post --unsupported --interpreter=busybox
$SNIPPET('autoinstall_done')
0707010000004E000081A40000000000000000000000015ECE244400000186000000000000000000000000000000000000003400000000cobbler-3.1.2/autoinstall_templates/sample_esxi5.ks   #
# Sample scripted installation file
# for ESXi 5+
#

vmaccepteula
reboot --noeject
rootpw --iscrypted $default_password_crypted

install --firstdisk --overwritevmfs
clearpart --firstdisk --overwritevmfs

$SNIPPET('network_config')

%pre --interpreter=busybox

$SNIPPET('autoinstall_start')
$SNIPPET('pre_install_network_config')

%post --interpreter=busybox

$SNIPPET('autoinstall_done')
  0707010000004F000081A40000000000000000000000015ECE244400000186000000000000000000000000000000000000003400000000cobbler-3.1.2/autoinstall_templates/sample_esxi6.ks   #
# Sample scripted installation file
# for ESXi 6+
#

vmaccepteula
reboot --noeject
rootpw --iscrypted $default_password_crypted

install --firstdisk --overwritevmfs
clearpart --firstdisk --overwritevmfs

$SNIPPET('network_config')

%pre --interpreter=busybox

$SNIPPET('autoinstall_start')
$SNIPPET('pre_install_network_config')

%post --interpreter=busybox

$SNIPPET('autoinstall_done')
  07070100000050000081A40000000000000000000000015ECE24440000072C000000000000000000000000000000000000003500000000cobbler-3.1.2/autoinstall_templates/sample_legacy.ks  # This kickstart file can be used on RHEL 4, 5 and Fedora < 8
# Don't use this on current distributions!

#platform=x86, AMD64, or Intel EM64T
# System authorization information
auth  --useshadow  --enablemd5
# System bootloader configuration
bootloader --location=mbr
# Partition clearing information
clearpart --all --initlabel
# Use text mode install
text
# Firewall configuration
firewall --enabled
# Run the Setup Agent on first boot
firstboot --disable
# System keyboard
keyboard us
# System language
lang en_US
# Use network installation
url --url=$tree
# If any cobbler repo definitions were referenced in the kickstart profile, include them here.
$yum_repo_stanza
# Network information
$SNIPPET('network_config')
# Reboot after installation
reboot

#Root password
rootpw --iscrypted $default_password_crypted
# SELinux configuration
selinux --disabled
# Do not configure the X Window System
skipx
# System timezone
timezone  America/New_York
# Install OS instead of upgrade
install
# Clear the Master Boot Record
zerombr
# Allow anaconda to partition the system as needed
autopart


%pre
$SNIPPET('log_ks_pre')
$SNIPPET('autoinstall_start')
$SNIPPET('pre_install_network_config')
# Enable installation monitoring
$SNIPPET('pre_anamon')
%end

%packages
$SNIPPET('puppet_install_if_enabled')
%end

%post --nochroot
$SNIPPET('log_ks_post_nochroot')
%end

%post
$SNIPPET('log_ks_post')
# Start yum configuration 
$yum_config_stanza
# End yum configuration
$SNIPPET('post_install_kernel_options')
$SNIPPET('post_install_network_config')
$SNIPPET('puppet_register_if_enabled')
$SNIPPET('download_config_files')
$SNIPPET('koan_environment')
$SNIPPET('redhat_register')
$SNIPPET('cobbler_register')
# Enable post-install boot notification
$SNIPPET('post_anamon')
# Start final steps
$SNIPPET('autoinstall_done')
# End final steps
%end
07070100000051000081A40000000000000000000000015ECE244400000D6F000000000000000000000000000000000000003400000000cobbler-3.1.2/autoinstall_templates/sample_old.seed   #platform=x86, AMD64, or Intel EM64T
# System authorization information

# System bootloader configuration
d-i	grub-installer/only_debian	boolean	true
#grub-installer	grub-installer/bootdev	string	hd0
d-i	grub-installer/bootdev	string	hd0
### add kernel postinst options (--kopts-post)
d-i	debian-installer/add-kernel-opts	string $kernel_options_post

# Partition clearing information
### Partitioning available methods are: "regular", "lvm" and "crypto"
d-i partman-auto/disk string /dev/sda
d-i partman-auto/method string lvm
d-i partman-auto/purge_lvm_from_device boolean true
d-i partman-lvm/device_remove_lvm boolean true
d-i partman-lvm/confirm boolean true

#d-i partman-auto/init_automatically_partition \\
#       select Guided - use entire disk and set up LVM

#d-i partman-auto/expert_recipe_file string /recipe
d-i partman-auto/choose_recipe select atomic

d-i partman/confirm_write_new_label boolean true
d-i partman/choose_partition select finish
d-i partman/confirm boolean true


# Use text mode install

# Firewall configuration

# Run the Setup Agent on first boot

# System keyboard
d-i	console-setup/dont_ask_layout	note	
d-i	console-keymaps-at/keymap	select	us
# System language

# Use network installation
# NOTE : The suite seems to be hardcoded on installer
d-i	mirror/suite		string	$suite
d-i	mirror/country		string	enter information manually
d-i	mirror/http/hostname	string	$hostname
d-i	mirror/http/directory	string	$directory
d-i	mirror/http/proxy	string	
# If any cobbler repo definitions were referenced in the automated installation
# file profile, include them here.
#apt-setup-udeb	apt-setup/services-select multiselect	security
d-i	apt-setup/services-select multiselect	security
d-i	apt-setup/security_host	string	$hostname$directory-security
d-i	apt-setup/volatile_host string	$hostname$directory-volatile

# Network information
# NOTE : this questions are asked before downloading preseed
#d-i	netcfg/get_hostname	string unassigned-hostname
#d-i	netcfg/get_domain	string unassigned-hostname

# Reboot after installation
finish-install	finish-install/reboot_in_progress	note	

#Root password
d-i	passwd/root-password-crypted	password	\$1\$mF86/UHC\$WvcIcX2t6crBz2onWxyac.
user-setup-udeb	passwd/root-login	boolean	true
user-setup-udeb	passwd/make-user	boolean	false
# SELinux configuration

# Do not configure the X Window System

# System timezone
clock-setup	clock-setup/utc	boolean	false
tzsetup-udeb	time/zone	select	America/New_York
# Install OS instead of upgrade

# Clear the Master Boot Record


# Select individual packages and groups for install
d-i	pkgsel/include	string	openssh-server
tasksel	tasksel/first	multiselect	standard, desktop

# Disable automatic updates
d-i pkgsel/update-policy select none

# Debian specific configuration
# See http://www.debian.org/releases/stable/i386/apbs04.html.en & preseed documentation

# By default the installer requires that repositories be authenticated
# using a known gpg key. This setting can be used to disable that
# authentication. Warning: Insecure, not recommended.
d-i	debian-installer/allow_unauthenticated	string	true

# Some versions of the installer can report back on what software you have
# installed, and what software you use. The default is not to report back,
# but sending reports helps the project determine what software is most
# popular and include it on CDs.
popularity-contest	popularity-contest/participate	boolean	false

 07070100000052000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000001200000000cobbler-3.1.2/bin 07070100000053000081ED0000000000000000000000015ECE244400000360000000000000000000000000000000000000001A00000000cobbler-3.1.2/bin/cobbler #!/usr/bin/python3
"""
Wrapper for cobbler

Copyright 2006-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

This software may be freely redistributed under the terms of the GNU
general public license.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301  USA.
"""
import cobbler.cli as app
import sys

PROFILING = False

if PROFILING:
    print("** PROFILING **")
    import hotshot
    import hotshot.stats
    prof = hotshot.Profile("cobbler.prof")
    prof.runcall(app.main)
    prof.close()
    stats = hotshot.stats.load("cobbler.prof")
    stats.strip_dirs()
    stats.sort_stats('time')
    print("** REPORT **")
    stats.print_stats(100)
    sys.exit(0)
else:
    sys.exit(app.main())
07070100000054000081ED0000000000000000000000015ECE2444000001F3000000000000000000000000000000000000002400000000cobbler-3.1.2/bin/cobbler-ext-nodes   #!/usr/bin/python3

import yaml
import requests
import sys


if __name__ == "__main__":
    hostname = None
    try:
        hostname = sys.argv[1]
    except:
        print("usage: cobbler-ext-nodes <hostname>")

    if hostname is not None:
        conf = open("/etc/cobbler/settings")
        config = yaml.safe_load(conf.read())
        conf.close()
        url = "http://%s:%s/cblr/svc/op/puppet/hostname/%s" % (config["server"], config["http_port"], hostname)
        print(requests.get(url))
 07070100000055000081ED0000000000000000000000015ECE244400000B0C000000000000000000000000000000000000001B00000000cobbler-3.1.2/bin/cobblerd    #!/usr/bin/python3
"""
Wrapper for cobbler's remote syslog watching daemon.

Copyright 2006-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

This software may be freely redistributed under the terms of the GNU
general public license.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301  USA.
"""
import sys
import os
import traceback
import optparse
import cobbler.cobblerd as app
import cobbler.api as cobbler_api


def daemonize_self():
    # daemonizing code:  http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/66012
    # logger.info("cobblerd started")
    try:
        pid = os.fork()
        if pid > 0:
            # exit first parent
            sys.exit(0)
    except OSError as e:
        print("fork #1 failed: %d (%s)" % (e.errno, e.strerror), file=sys.stderr)
        sys.exit(1)

    # decouple from parent environment
    os.chdir("/")
    os.setsid()
    os.umask(0o22)

    # do second fork
    try:
        pid = os.fork()
        if pid > 0:
            # print "Daemon PID %d" % pid
            sys.exit(0)
    except OSError as e:
        print("fork #2 failed: %d (%s)" % (e.errno, e.strerror), file=sys.stderr)
        sys.exit(1)

    dev_null = open('/dev/null', 'r+')
    os.dup2(dev_null.fileno(), sys.stdin.fileno())
    os.dup2(dev_null.fileno(), sys.stdout.fileno())
    os.dup2(dev_null.fileno(), sys.stderr.fileno())


def main():
    op = optparse.OptionParser()
    op.set_defaults(daemonize=True, log_level=None)
    op.add_option('-B', '--daemonize', dest='daemonize', action='store_true',
                  help='run in background (default)')
    op.add_option('-F', '--no-daemonize', dest='daemonize', action='store_false',
                  help='run in foreground (do not daemonize)')
    op.add_option('-f', '--log-file', dest='log_file', metavar='NAME',
                  help='file to log to')
    op.add_option('-l', '--log-level', dest='log_level', metavar='LEVEL',
                  help='log level (ie. INFO, WARNING, ERROR, CRITICAL)')

    options, args = op.parse_args()

    # load the API now rather than later, to ensure cobblerd
    # startup time is done before the service returns
    api = None
    try:
        api = cobbler_api.CobblerAPI(is_cobblerd=True)
    except Exception as exc:
        if sys.exc_info()[0] == SystemExit:
            return exc.code
        else:
            # FIXME: log this too
            traceback.print_exc()
            return 1

    logger = api.logger

    if options.daemonize:
        daemonize_self()

    try:
        app.core(api)
    except Exception as e:
        logger.error(e)
        traceback.print_exc()


if __name__ == "__main__":
    main()
07070100000056000081ED0000000000000000000000015ECE244400000295000000000000000000000000000000000000002100000000cobbler-3.1.2/bin/fence_ipmitool  #!/bin/bash -x

# fence_ipmitool wrapper script to call fence_ipmilan with -P parameter
# fence_ipmilan will then use IPMIv2.0 -I lanplus interface which should
# be used by all modern IPMI driven BMCs out there

# An issue is open for fence-agents project to use IPMIv2.0 by default:
# https://github.com/ClusterLabs/fence-agents/issues/314

# Clarification:
# fence_ipmilan "$@" --lanplus
# does not work. cobbler passes options via stdin and fence_ipmilan
# does either recognise opions from stdin or via commandline.
# Therefore below line adds lanplus=1\n to incomming stdin (cobbler passed fence
# options)

cat <(echo "lanplus=1") - | fence_ipmilan "$@"
   07070100000057000081ED0000000000000000000000015ECE24440000ABB9000000000000000000000000000000000000001B00000000cobbler-3.1.2/bin/tftpd.py    #!/usr/bin/python3
"""
SYNOPSIS
    tftpd.py [-h,--help] [-v,--verbose] [-d,--debug] [--version]
             [--port=<port>(69)]

DESCRIPTION
A python, Cobbler integrated TFTP server.  It is suitable to call via
xinetd, or as a stand-alone daemon.  If called via xinetd, it will run,
handling requests, until it has been idle for at least 30 seconds, and
will then exit.

This server queries Cobbler for information about hosts that make requests,
and will instantiate template files from the materialized hosts'
'fetchable_files' attribute.

EXIT STATUS

AUTHOR
    Douglas Kilpatrick <kilpatds@oppositelock.org>

LICENSE
    This script is in the public domain, free from copyrights or restrictions

VERSION
    0.5

TODO
    Requirement: retransmit
    Requirement: Ignore stale retrainsmits
    Security:    only return files that are o+r
    Security:    support hosts.allow/deny
    Security:    Make absolute path support optional, and default off
    Feature:     support blksize2 (blksize, limited to powers of 2)
    Feature:     support utimeout (timeout, in ms)

"""


from future import standard_library
standard_library.install_aliases()
from builtins import str
from builtins import range
from builtins import object
VERSION = 0.5

import sys
import os
import stat
import errno
import time
import optparse
import re
import socket
import pwd
import traceback
import logging
import logging.handlers
import xmlrpc.client

from collections import deque
from fnmatch import fnmatch
from cobbler.utils import local_get_cobbler_api_url
from cobbler import settings

import tornado.ioloop as ioloop
import cobbler.templar
import Cheetah      # need exception types

from struct import pack, unpack
from subprocess import Popen, PIPE, STDOUT

# Data/Defines
TFTP_OPCODE_RRQ = 1
TFTP_OPCODE_DATA = 3
TFTP_OPCODE_ACK = 4
TFTP_OPCODE_ERROR = 5
TFTP_OPCODE_OACK = 6

COBBLER_HANDLE = xmlrpc.client.Server(local_get_cobbler_api_url())

OPTIONS = {
    "port": "69",
    "timeout": 10,
    "min_timeout": 1,
    "max_timeout": 255,
    "blksize": 512,         # that's the default, required
    "max_blksize": 1428,    # MTU - overhead
    "min_blksize": 512,     # the default is small enough already
    "retries": 4,
    "verbose": False,
    "debug": False,
    "idle": 0,              # how long to stick around: 0: unlimited
    "idle_timer": None,
    "cache": True,          # 'cache-time' = 300
    "cache-time": 5 * 300,
    "neg-cache-time": 10,
    "active": 0,
    "prefix": settings.Settings.tftpboot_location,
    "logger": "stream",
    "file_cmd": "/usr/bin/file",
    "user": "nobody",
    # the well known socket.  needs to be global for timeout
    # Using the options hash as a hackaround for python's
    # "create a new object at local scope by default" design.
    "sock": None
}

ERRORS = [
    'Not defined, see error message (if any)',  # 0
    'File not found',                           # 1
    'Access violation',                         # 2
    'Disk full or allocation exceeded',         # 3
    'Illegal TFTP operation',                   # 4
    'Unknown transfer ID',                      # 5
    'File already exists',                      # 6
    'No such user',                             # 7
    'Option negotiation'                        # 8
]

REQUESTS = None


class RenderedFile(object):
    """
    A class to manage rendered files, without changing the logic
    of the rest of the TFTP server.  It replaces the file object
    via duck typing, and feeds out sections of the saved string
    as required
    """

    def __init__(self, data=""):
        """
        Provide the string to be served out as an argument to the
        constructor.  The data object needs to support slices.
        """
        self.data = data
        self.offset = 0

    def seek(self, bytes):
        """
        Only the two-argument version of seek (SEEK_SET) is currently
        supported
        """
        self.offset = bytes

    def read(self, size):
        """Returns <size> bytes relative to the current offset."""
        end = self.offset + size
        return self.data[self.offset:end]

    def fileno(self):
        return 0


class Packet(object):
    """
    Represents a packet received (or sent?) from a tftp client.
    Is a base class that is intended to be overridden.
    The main use cases are "I got a packet, parse it", but
    I'm also keeping the "how to write a packet of type X"
    in the same class to keep the relevant code snippets close
    to each other.

    Any strings that control behavior (mode, rfc2347 options) are
    case-INsensitive.  Filename is allowed to be case sensitive
    """
    def __init__(self, data, local_sock, remote_addr):
        self.data = data
        self.local_sock = local_sock
        self.remote_addr = remote_addr
        self.opcode, = unpack("!H", data[0:2])

    def marshall(self):
        raise NotImplementedError("%s: Write marshall method" % repr(self))

    def is_error(self):
        return False


class RRQPacket(Packet):
    """
    The RRQ Packet.  We only receive those, so this object only
    supports the receive use case.

              2 bytes   string   byte   String   byte
              ---------------------------------------
       DATA  | 01    |   name |   \0   | mode   | \0 |
              ---------------------------------------
              string          string
              ----------------------------
     rfc2347 | name |   \0   | value | \0 | [*]
              ----------------------------
    """
    def __init__(self, data, local_sock, remote_addr):
        Packet.__init__(self, data, local_sock, remote_addr)

        # opcode already extracted, and unpack is awkward for this
        # so pulling out strings by hand
        (f, mode, rfc2347str) = data[2:].split('\0', 2)

        logging.debug("RRQ for file %s(%s) from %s" % (f, mode, remote_addr))
        # Ug.  Can't come up with a simplier way of doing this
        if rfc2347str:
            # the "-1" is to trim off the trailing \0
            self.req_options = deque(rfc2347str[:-1].split('\0'))
            logging.debug("client %s requested options: %s" % (
                str(remote_addr), str(rfc2347str.replace('\0', ','))))
        else:
            self.req_options = deque()

        self.filename = f
        self.mode = mode

    def get_request(self, templar):
        return Request(self.filename, self.remote_addr, templar)


class DATAPacket(Packet):
    """
    The DATA packet.  We only send these, so this object only
    supports the send use case.

              2 bytes    2 bytes       n bytes
             -----------------------------------
       DATA  | 03    |   Block #  |    Data    |
             -----------------------------------
    """
    def __init__(self, data, blk_num):
        self.data = data
        self.blk_num = blk_num

    def marshall(self):
        return pack("!HH %ds" % (len(self.data)), TFTP_OPCODE_DATA, self.blk_num & 0xFFFF, str(self.data))


class ACKPacket(Packet):
    """
    The ACK packet.  We only receive these.

                2 bytes    2 bytes
               ----------------------
         ACK   | 04    |   Block #  |
               ----------------------
    """

    def __init__(self, data, local_sock, remote_addr):
        Packet.__init__(self, data, local_sock, remote_addr)
        block_number, = unpack("!H", data[2:4])
        logging.log(9, "ACK for packet %d from %s" % (block_number, remote_addr))
        self.block_number = block_number

    def marshall(self):
        raise NotImplementedError("We don't send these, we read them")


class ERRORPacket(Packet):
    """The error packet.  We could send or receive these.
       But we really only handle sending them.
               2 bytes  2 bytes        string    1 byte
              ------------------------------------------
        ERROR | 05    |  ErrorCode |   ErrMsg   |   0  |
              ------------------------------------------
    """
    def __init__(self, data, local_sock, remote_addr):
        Packet.__init__(self, data, local_sock, remote_addr)
        self.error_code, = unpack("!h", data[2:4])
        self.error_str = data[4:-1]
        logging.debug("ERROR %d: %s from %s" % (self.error_code, self.error_str, remote_addr))

# FIXME: disabled as per pyflakes, not really sure about this one..
#    def __init__(self, error_code, error_str):
#        self.error_code = error_code
#        self.error_str  = error_str

    def is_error(self):
        return True

    def marshall(self):
        return pack("!HH %dsB" % (len(self.error_str)),
                    TFTP_OPCODE_ERROR, self.error_code, self.error_str, 0)


class OACKPacket(Packet):
    """
    The Option Acknowledge (rfc2347) packet.  We only send these.
    We make an effort to retain name case and order, to aid clients
    that depend on either.

               2 bytes   string   1 byte  string  1 byte
             ----------|--------------------------------
        OACK | 06     || name    |    0  | value |  0  | [*]
             ----------|--------------------------------
    """
    def __init__(self, rfc2347):
        self.opcode = TFTP_OPCODE_OACK
        self.options = rfc2347

    def marshall(self):
        optstr = "\0".join([str(x) for x in self.options])

        return pack("!H %ds c" % (len(optstr)), self.opcode, optstr, '\0')


class XMLRPCSystem(object):
    """
    Use XMLRPC to look up system attributes.  This is the recommended
    method.

    The cache is controlled by the "cache" option and the "cache-time"
    option
    """
    cache = {}

    def __init__(self, ip_address=None, mac_address=None):
        name = None
        resolve = True

        # Try the cache.
        if ip_address in XMLRPCSystem.cache:
            cache_ent = XMLRPCSystem.cache[ip_address]
            now = time.time()
            cache_time = float(OPTIONS["cache-time"])
            neg_cache_time = float(OPTIONS["neg-cache-time"])

            if cache_ent["time"] + cache_time > now:
                name = cache_ent["name"]

                if name is not None:
                    logging.debug("Using cache name for system %s,%s" % (cache_ent["name"], ip_address))
                    resolve = False
                elif (name is None and mac_address is None and cache_ent["time"] + neg_cache_time > now):
                    age = (cache_ent["time"] + neg_cache_time) - now
                    logging.debug("Using neg-cache for system %s:%f" % (ip_address, age))
                    resolve = False
                else:
                    age = (cache_ent["time"] + neg_cache_time) - now
                    logging.debug("ignoring cache for %s:%d" % (ip_address, age))

                # Don't bother trying to find it.. until the neg-cache-time
                # expires anyway
            else:
                del XMLRPCSystem.cache[ip_address]

        # Not in the cache, try to find it.
        if resolve:
            query = {}
            if mac_address is not None:
                query["mac_address"] = mac_address.replace("-", ":").upper()
            elif ip_address is not None:
                query["ip_address"] = ip_address

            try:
                logging.debug("Searching for system %s" % repr(query))
                systems = COBBLER_HANDLE.find_system(query)
                if len(systems) > 1:
                    raise RuntimeError("Args mapped to multiple systems")
                elif len(systems) == 0:
                    raise RuntimeError("%s,%s not found in Cobbler" % (ip_address, mac_address))
                name = systems[0]

            except RuntimeError as e:
                logging.info(str(e))
                name = None
            except:
                (etype, eval,) = sys.exc_info()[:2]
                logging.warn("Exception retrieving rendered system: %s (%s):%s" %
                             (name, eval, traceback.format_exc()))
                name = None

        if name is not None:
            logging.debug("Materializing system %s" % name)
            try:
                self.system = COBBLER_HANDLE.get_system_as_rendered(name)
                self.attrs = self.system
                self.name = self.attrs["name"]
            except:
                (etype, eval,) = sys.exc_info()[:2]
                logging.warn("Exception Materializing system %s (%s):%s" %
                             (name, eval, traceback.format_exc()))
                if ip_address in XMLRPCSystem.cache:
                    del XMLRPCSystem.cache[ip_address]
                self.system = None
                self.attrs = dict()
                self.name = str(ip_address)
        else:
            self.system = None
            self.attrs = dict()
            self.name = str(ip_address)

        # fill the cache, negative entries too
        if OPTIONS["cache"] and resolve:
            logging.debug("Putting %s,%s into cache" % (name, ip_address))
            XMLRPCSystem.cache[ip_address] = {
                "name": name,
                "time": time.time(),
            }


class Request(object):
    """
    Handles the "business logic" of the TFTP server.  One instance
    is spawned per client request (RRQ packet received on well-known port)
    and it is responsible for keeping track of where the file transfer
    is...
    """
    def __init__(self, rrq_packet, local_sock, templar):
        # Trim leading /s, since that's kinda implicit
        self.filename = rrq_packet.filename.lstrip('/')  # assumed
        self.type = "chroot"
        self.remote_addr = rrq_packet.remote_addr
        self.req_options = rrq_packet.req_options
        self.options = dict()
        self.offset = 0
        self.local_sock = local_sock
        self.state = TFTP_OPCODE_RRQ
        self.expand = False
        self.templar = templar

        # Sanitize input more
        # Strip out \s
        self.filename = self.filename.replace('\\', '')
        # Look for elements starting with ".", and blow up.
        try:
            if len(self.filename) == 0:
                raise RuntimeError("Empty Path: ")
            for elm in self.filename.split("/"):
                if elm[0] == ".":
                    raise RuntimeError("Path includes '.': ")
        except RuntimeError as e:
            logging.warn(str(e) + rrq_packet.filename)
            self.error_code = 2
            self.error_str = "Invalid file name"
            self.state = TFTP_OPCODE_ERROR
            self.filename = None

        OPTIONS["active"] += 1
        self.system = XMLRPCSystem(self.remote_addr[0])

    def _remap_strip_ip(self, filename):
        # remove per-host IP or Mac prefixes, so that earlier pxelinux requests
        # can be templated.  We are already doing per-host stuff, so we don't
        # need the IP addresses/mac addresses tacked on
        # /<filename>/UUID (503a463c-537a-858b-af2a-519686f53c58)
        # /<filename>/MAC (01-00-50-56-8b-33-88)
        # /<filename>/IP (C000025B)
        trimmed = filename
        if self.system.system is None:
            # If the file name has a mac address, strip that, use it to
            # look up the system, and recurse.
            m = re.compile("01((-[0-9a-f]{2}){6})$").search(filename)
            if m:
                # Found a mac address.  try and look up a system
                self.system = XMLRPCSystem(self.system.name, m.group(1)[1:])
                if self.system.system is not None:
                    logging.info("Looked up host late: '%s'" % self.system.name)
                    return self._remap_strip_ip(filename)

            # We can still trim off an ip address... system.name is the
            # incoming ip
            suffix = "/%08X" % unpack('!L', socket.inet_aton(self.system.name))[0]
            if suffix and trimmed[len(trimmed) - len(suffix):] == suffix:
                trimmed = trimmed.replace(suffix, "")
                logging.debug('_remap_strip_ip: converted %s to %s' % (filename, trimmed))
                return trimmed
        else:
            # looking over all keys, because I have to search for keys I want
            for (k, v) in list(self.system.system.items()):
                suffix = False
                # if I find a mac_address key or ip_address key, then see if
                # that matches the file I'm looking at
                if k.find("mac_address") >= 0 and v != '':
                    # the "01" is the ARP type of the interface.  01 is
                    # ethernet.  This won't work for token ring, for example
                    suffix = "/01-" + v.replace(":", "-").lower()
                elif k.find("ip_address") >= 0 and v != '':
                    # IPv4 hardcoded here.
                    suffix = "/%08X" % unpack('!L', socket.inet_aton(v))[0]

                if suffix and trimmed[len(trimmed) - len(suffix):] == suffix:
                    trimmed = trimmed.replace(suffix, "")
                    logging.debug('_remap_strip_ip: converted %s to %s' % (filename, trimmed))
                    return trimmed
        return filename

    def _remap_via_profiles(self, filename):
        pattern = re.compile("images/([^/]*)/(.*)")
        m = pattern.match(filename)
        if m:
            logging.debug("client requesting distro?")
            p = COBBLER_HANDLE.get_distro_as_rendered(m.group(1))
            if p:
                logging.debug("%s matched distro %s" % (filename, p["name"]))
                if m.group(2) == os.path.basename(p["kernel"]):
                    return p["kernel"], "template"
                elif m.group(2) == os.path.basename(p["initrd"]):
                    return p["initrd"], "template"
                logging.debug("but unknown file requested.")
            else:
                logging.debug("Couldn't load profile %s" % m.group(1))
        return filename, "chroot"

    def _remap_name_via_fetchable(self, filename):
        fetchable_files = self.system.attrs["fetchable_files"].strip()
        if not fetchable_files:
            return filename, None

        # We support two types of matches in fetchable_files
        # * Direct match ("/foo=/bar")
        # * Globs on directories ("/foo/*=/bar")
        #   A glob is realliy just a directory remap
        glob_pattern = re.compile("(/)?[*]$")

        # Look for the file in the fetchable_files hash
        # XXX: Template name
        for (k, v) in [x.split("=") for x in fetchable_files.split(" ")]:
            k = k.lstrip('/')  # Allow some slop w/ starting /s
            # Full Path: "/foo=/bar"
            result = None

            if k == filename:
                logging.debug('_remap_name: %s => %s' % (k, v))
                result = v
            # Glob Path: "/foo/*=/bar/"
            else:
                match = glob_pattern.search(k)
                if match and fnmatch("/" + filename, "/" + k):
                    logging.debug('_remap_name (glob): %s => %s' % (k, v))
                    # Erase the trailing '/?[*]' in key
                    # Replace the matching leading portion in filename
                    # with the value
                    # Expand the result
                    if match.group(1):
                        lead_dir = glob_pattern.sub(match.group(1), k)
                    else:
                        lead_dir = glob_pattern.sub("", k)
                    result = filename.replace(lead_dir, v, 1)

            # Render the target, to expand things like "$kernel"
            if result is not None:
                try:
                    return self.templar.render(
                        result, self.system.attrs, None).strip(), "template"
                except Cheetah.Parser.ParseError as e:
                    logging.warn('Unable to expand name: %s(%s): %s' % (filename, result, e))

        return filename, None

    def _remap_name_via_boot_files(self, filename):

        boot_files = self.system.attrs["boot_files"].strip()
        if not boot_files:
            logging.debug('_remap_name: no boot_files for %s/%s' % (self.system, filename))
            return filename, None

        filename = filename.lstrip('/')  # assumed

        # Override "img_path", as that's the only variable used by
        # the VMWare boot_files support, and they use a slightly different
        # definition: one that's relative to tftpboot
        attrs = self.system.attrs.copy()
        attrs["img_path"] = os.path.join("images", attrs["distro_name"])

        # Look for the file in the boot_files hash
        for (k, v) in [x.split("=") for x in boot_files.split(" ")]:
            k = k.lstrip('/')  # Allow some slop w/ starting /s

            # Render the key, to expand things like "$img_path"
            try:
                expanded_k = self.templar.render(k, attrs, None)
            except Cheetah.Parser.ParseError as e:
                logging.warn('Unable to expand name: %s(%s): %s' % (filename, k, e))
                continue

            if expanded_k == filename:
                # Render the target, to expand things like "$kernel"
                logging.debug('_remap_name: %s => %s' % (expanded_k, v))

                try:
                    return self.templar.render(v, attrs, None).strip(), "template"
                except Cheetah.Parser.ParseError as e:
                    logging.warn('Unable to expand name: %s(%s): %s' % (filename, v, e))

        return filename, None

    def _remap_name(self, filename):
        filename = filename.lstrip('/')  # assumed
        # If possible, ignore pxelinux.0 added things we already know
        trimmed = self._remap_strip_ip(filename)

        if self.system.system is None:
            # Look for image match.  All we can do
            return self._remap_via_profiles(trimmed)

        # Specific hacks to handle the PXE/initrd case without any configuration
        if trimmed in self.system.attrs:
            if trimmed in ["pxelinux.cfg"]:
                return trimmed, "hash_value"
            elif trimmed in ["initrd"]:
                return self.system.attrs[trimmed], "template"

        # for the two tests below, I want to ignore "pytftp.*" in the string,
        # which allows for some minimal control over extensions, which matters
        # to pxelinux.0
        noext = re.sub("pytftpd.*", "", filename)
        if noext in self.system.attrs and noext in ["kernel"]:
            return self.system.attrs[noext], "template"

        (new_name, find_type) = self._remap_name_via_fetchable(trimmed)
        if find_type is not None:
            return new_name, find_type

        (new_name, find_type) = self._remap_name_via_boot_files(trimmed)
        if find_type is not None:
            return new_name, find_type

        # last try: try profiles
        return self._remap_via_profiles(trimmed)

    def _render_template(self):
        try:
            return RenderedFile(self.templar.render(open(self.filename, "r"),
                                self.system.attrs, None))
        except Cheetah.Parser.ParseError as e:
            logging.warn('Unable to expand template: %s: %s' % (self.filename, e))
            return None
        except IOError as e:
            logging.warn('Unable to expand template: %s: %s' % (self.filename, e))
            return None

    def _setup_xfer(self):
        """Open the file to be loaded, or materalize the template.
           This method can set the state to be an ERROR state, so
           avoid setting state after calling this method.
        """
        logging.info('host %s requesting %s' % (self.system.name, self.filename))

        self.filename, self.type = self._remap_name(self.filename)
        logging.debug('host %s getting %s: %s' %
                      (self.system.name, self.filename, self.type))
        if self.type == "template":
            # TODO: Add file magic here
            output = Popen([OPTIONS["file_cmd"], self.filename],
                           stdout=PIPE, stderr=STDOUT,
                           close_fds=True).communicate()[0]
            if output.find(" text") >= 0:
                self.file = self._render_template()
                if self.file:
                    self.block_count = 0
                    self.file_size = len(self.file.data)
                    return
                else:
                    logging.debug('Template failed to render.')
            else:
                logging.debug('Not rendering binary file %s (%s).' % (self.filename, output))
        elif self.type == "hash_value":
            self.file = RenderedFile(self.system.attrs[self.filename])
            self.block_count = 0
            self.file_size = len(self.file.data)
            return
        else:
            logging.debug('Relative path')

        # Oh well.  Look for the actual given file.
        # XXX: add per-host IP or Mac prefixes?
        #       add: for pxeboot, or other non pxelinux
        try:
            logging.debug('starting xfer of %s to %s' %
                          (self.filename, self.remote_addr))
            # Templates are specified by an absolute path
            if self.type == "template":
                self.file = open(self.filename, 'rb', 0)
            else:
                # TODO! restrict.  Chroot?
                # We are sanitizing in the input, but a second line of defense
                # wouldn't be a bad idea
                self.file = open(OPTIONS["prefix"] + "/" + self.filename, 'rb', 0)
            self.block_count = 0
            self.file_size = os.fstat(self.file.fileno()).st_size
        except IOError:
            logging.debug('%s requested %s: file not found.' %
                          (self.remote_addr, self.filename))
            self.state = TFTP_OPCODE_ERROR
            self.error_code = 1
            self.error_str = "No such file"
        return

    def finish(self):
        io_loop = ioloop.IOLoop.instance()
        logging.debug("finishing req from %s for %s" %
                      (self.filename, self.remote_addr))

        self.state = 0
        try:
            io_loop.remove_handler(self.local_sock.fileno())
            logging.debug("closing fd %d" % self.local_sock.fileno())
            self.local_sock.close()
        except:
            logging.debug("closed FD twice.  Ignoring")

        if self.timeout:
            io_loop.remove_timeout(self.timeout)
            self.timeout = None

        OPTIONS["active"] -= 1
        if (OPTIONS["idle"] > 0 and OPTIONS["active"] == 0 and OPTIONS["idle_timer"] is None):
            io_loop.stop()

    def handle_timeout(self):
        # We timed out.  We're done... (I hope)
        logging.info('Timeout.  Transfer of %s done' % self.filename)
        self.timeout = None
        self.finish()

    def handle_input(self, packet):
        """The client sent us a new packet.  Respond to it.
           RRQ is handled in the constructor sequence, basically.
           This should handle everything else"""
        # We got input, so didn't time out.  Refresh the timeout
        io_loop = ioloop.IOLoop.instance()
        io_loop.remove_timeout(self.timeout)
        self.timeout = io_loop.add_timeout(time.time() + self.options["timeout"], lambda: self.handle_timeout())

        if packet.opcode == TFTP_OPCODE_ACK:
            if self.state == TFTP_OPCODE_DATA:
                # Incremement offset.  They got the last bit
                # the FFFF are to permit wrap.  It's OK for the block
                # number to wrap, since it's one client (and not unicast),
                # so the client can figure that out.
                if ((packet.block_number & 0xFFFF) == ((self.block_count + 1) & 0xFFFF)):
                    # Only update if they actually ack the packet we
                    # sent, but we'll still resend the last packet either way
                    self.block_count += 1

                self.state = TFTP_OPCODE_ACK
            elif self.state == TFTP_OPCODE_OACK:
                # Ok, start feeding data
                self.state = TFTP_OPCODE_ACK

        elif packet.opcode == TFTP_OPCODE_ERROR:
            logging.warn("Error from clients %s: %d:%s" %
                         (self.remote_addr, packet.error_code,
                          packet.error_str))
            self.state = 0
        else:
            logging.warn("Unknown opcode from clients %s: %ds" %
                         (self.remote_addr, packet.opcode))
            self.state = 0

    def reply(self):
        """Given the current state, returns the next packet we should send
        to the client"""
        # Python doesn't have a switch statement (I presume on the theory
        # that needing one means you didn't set your classes up right)
        # so ... have a set of if/elif statements.

        # Fast path: it's an ACK.  Feed more data
        if self.state == TFTP_OPCODE_ACK:
            offset = self.block_count * self.options["blksize"]

            if self.file_size < offset:
                # We're done.
                logging.info('Transfer of %s to %s done' % (self.filename, self.remote_addr))
                return None

            self.file.seek(self.block_count * self.options["blksize"])
            data = self.file.read(self.options["blksize"])

            self.state = TFTP_OPCODE_DATA
            # Block Count starts at 1, so offset
            logging.log(9, "DATA to %s/%d, block_count %d/%d, size %d(%d/%d)" % (
                self.remote_addr[0], self.remote_addr[1],
                self.block_count + 1, (self.block_count + 1) & 0xFFFF,
                len(data), offset + len(data), self.file_size))
            return DATAPacket(data, self.block_count + 1)

        if self.state == 0:
            return None

        if self.state == TFTP_OPCODE_ERROR:
            # Don't bother waiting.. this was the first request
            # a "resend" would go to the well known port
            return ERRORPacket(self.error_code, self.error_str)

        if self.state == TFTP_OPCODE_RRQ and self.req_options:
            # They asked for various rfc2347 options.  Figure out
            # what we'll allow, and send an OACK.
            self.state = TFTP_OPCODE_OACK
            # Most clients will ask for tsize, which is the size of the
            # file we'll be giving them.   Let's look that up.
            self._setup_xfer()
            # Check for an error loading the file
            if self.state == TFTP_OPCODE_ERROR:
                # Don't bother waiting.. this was the first request
                # a "resend" would go to the well known port
                return ERRORPacket(self.error_code, self.error_str)

            # make sure we have defaults
            self.options = dict(blksize=OPTIONS["blksize"], timeout=OPTIONS["timeout"])

            accepted_opts = []
            # Sorry for the excessive complexity here.
            # I'm trying to maintain client's case and order, to protect
            # against braindamaged clients.  Given clients are frequently
            # written in assembly, they can be excused some braindamage
            logging.debug("Requested options: %s" % (repr(self.req_options)))
            for i in range(0, len(self.req_options), 2):
                key = self.req_options[i]
                value = self.req_options[i + 1]

                logging.debug("looking at key %s" % (key))
                if key.lower() == "tsize":
                    accepted_opts.append(key)
                    accepted_opts.append(self.file_size)
                elif ("min_" + key).lower() in OPTIONS:
                    value = int(value)  # string
                    # if it's an option we know about/can bound
                    upper_bound = OPTIONS[("max_" + key).lower()]
                    lower_bound = OPTIONS[("min_" + key).lower()]

                    logging.debug("%s: req: %d (%d - %d)" % (key, value, lower_bound, upper_bound))
                    if value < lower_bound:
                        value = lower_bound
                    if value > upper_bound:
                        value = upper_bound

                    self.options[key.lower()] = value
                    accepted_opts.append(key)
                    accepted_opts.append(str(value))
                else:
                    # ignore it, do not include in the OACK
                    logging.info("Unknown option requested %s" % (key))

            logging.debug("Using Options: %s" % (repr(self.options)))

            return OACKPacket(accepted_opts)

        if self.state == TFTP_OPCODE_RRQ:
            # No options.  Fill in the defaults
            # and then recurse, pretending we just got the ACK to our OACK
            self.options = dict(blksize=OPTIONS["blksize"], timeout=OPTIONS["timeout"])

            logging.debug("Using Options: %s" % (repr(self.options)))

            self.state = TFTP_OPCODE_ACK

            self._setup_xfer()
            if self.state == TFTP_OPCODE_ERROR:
                return ERRORPacket(self.error_code, self.error_str)

            return self.reply()

        raise NotImplementedError("Unknown state %d" % (self.state))


REQ_NAME = 0
REQ_CLASS = 1
REQUESTS = [
    ["INVALID", None],     # 0
    ["RRQ", RRQPacket],    # 1
    ["WRQ", None],         # 2
    ["DATA", None],        # 3
    ["ACK", ACKPacket],    # 4
    ["ERROR", None],       # 5
    ["OACK", OACKPacket]   # 6
]


def read_packet(data, local_sock, remote_addr):
    """Object factory.  Reads the first tiny bit of the packet to get the
       opcode, and returns a Packet object of the relevant type

       Returns None on failure
    """
    opcode, = unpack("!H", data[0:2])
    if opcode < 1 or opcode > 6:
        logging.warn("Unknown request id %d from %s" % (opcode, remote_addr))
        local_sock.sendto(ERRORPacket(0, "Unknown request").marshall(), remote_addr)
        return None

    if REQUESTS[opcode][REQ_CLASS] is None:
        if opcode != TFTP_OPCODE_ERROR:
            logging.warn("Unsupported request %d(%s) from %s" % (opcode, REQUESTS[opcode][REQ_NAME], remote_addr))
        local_sock.sendto(
            ERRORPacket(2, "Unsupported request").marshall(), remote_addr)
        return None

    try:
        return (REQUESTS[opcode][REQ_CLASS])(data, local_sock, remote_addr)
    except:
        return None


def partial(func, *args, **keywords):
    """
    Method factory.  Returns a semi-anonymous method that provides
    certain arguments to another method.
    Usually could be replaced by a lambda expression

    Example:
         def add(i,j):
             return i+j
         fn = partial(add,1) # always pass 1 as the first arg to add
         fn(2) # returns 1+2
    """
    def newfunc(*fargs, **fkeywords):
        newkeywords = keywords.copy()
        newkeywords.update(fkeywords)
        return func(*(args + fargs), **newkeywords)
    newfunc.func = func
    newfunc.args = args
    newfunc.keywords = keywords
    return newfunc


def handle_request(request, fd, events):
    """Used as the IO handler for subsequent requests.  Followup
       packets for a given request are sent to a different port, because
       UDP doesn't have it's own connection concept.  Also packets
       can be larger after option negotiation, so the amount to read
       can vary.

       This method handles packets sent to the transient ports,
       and calls the Request.handle_input method of the request associated
       with the port.
    """
    try:
        while request.state != 0:  # 0 is the "done" state
            try:
                data, address = request.local_sock.recvfrom(request.options["blksize"])
            except socket.error as e:
                if e[0] in (errno.EWOULDBLOCK, errno.EAGAIN):
                    return
                else:
                    raise

            if address == request.remote_addr:
                packet = read_packet(data, request.local_sock, address)
                if (packet is None):
                    request.finish()
                    continue

                request.handle_input(packet)
                reply = request.reply()

                if reply:
                    request.local_sock.sendto(reply.marshall(), address)

                if not reply or reply is ERRORPacket:
                    request.finish()
            else:
                raise NotImplementedError("Input from unexpected source")
    finally:
        # Reset the timer
        if OPTIONS["idle"] > 0:
            io_loop = ioloop.IOLoop.instance()
            try:
                io_loop.remove_timeout(OPTIONS["idle_timer"])
            except:
                pass
            OPTIONS["idle_timer"] = io_loop.add_timeout(
                time.time() + OPTIONS["idle"], lambda: idle_out())


def idle_out():
    logging.info("Idling out")
    io_loop = ioloop.IOLoop.instance()
    io_loop.remove_handler(OPTIONS["sock"].fileno())
    OPTIONS["sock"].close()
    if OPTIONS["active"] == 0:
        OPTIONS["idle_timer"] = None
        io_loop.stop()


# called from ioloop.py:245
def new_req(sock, templar, fd, events):
    """The IO handler for the well-known port.  Handles the RRQ
       packet of a known size (512), and sets up the transient port
       for future messages for the same request.
    """
    io_loop = ioloop.IOLoop.instance()
    if OPTIONS["idle"] > 0:
        try:
            io_loop.remove_timeout(OPTIONS["idle_timer"])
        except:
            pass

    while True:
        try:
            data, address = sock.recvfrom(OPTIONS["blksize"])
        except socket.error as e:
            if e[0] not in (errno.EWOULDBLOCK, errno.EAGAIN):
                raise
            break

        packet = read_packet(data, sock, address)
        # this is the new_request handler.  (packet had better be an RRQ
        # request)
        if packet is None or packet.opcode != TFTP_OPCODE_RRQ:
            sock.sendto(
                ERRORPacket(2, "Unsupported initial request").marshall(), address)
            break

        # Create the new transient port for this request
        new_address = socket.socket(socket.AF_INET, socket.SOCK_DGRAM, 0)
        new_address.bind(("", 0))  # random port: XXX control?
        logging.debug("Bound to transient socket %d" % new_address.getsockname()[1])
        new_address.setblocking(0)
        packet.local_sock = new_address

        # Create the request object to handle this request, and bind it
        # to IO from the transient port
        request = Request(packet, new_address, templar)
        io_loop.add_handler(
            new_address.fileno(),
            partial(handle_request, request),
            io_loop.READ)
        request.timeout = io_loop.add_timeout(time.time() + OPTIONS["timeout"], lambda: request.handle_timeout())

        # Ask the request what to do now..
        reply = request.reply()
        if reply:
            new_address.sendto(reply.marshall(), address)

        if not reply or reply.is_error():
            request.finish()

    # After the while loop.  Re-add the idle timer
    if OPTIONS["idle"] > 0:
        OPTIONS["idle_timer"] = io_loop.add_timeout(time.time() + OPTIONS["idle"], lambda: idle_out())


def main():
    # If we're called from xinetd, set idle to non-zero
    mode = os.fstat(sys.stdin.fileno()).st_mode
    if stat.S_ISSOCK(mode):
        OPTIONS["idle"] = 30
        OPTIONS["logger"] = "syslog"

    # setup option parsing
    opt_help = dict(
        port=dict(type="int", help="The port to bind to for new requests"),
        idle=dict(type="int", help="How long to wait for input"),
        timeout=dict(type="int", help="How long to wait for a given request"),
        max_blksize=dict(type="int", help="The maximum block size to permit"),
        prefix=dict(type="string", help="Where files are stored by default [" + OPTIONS["prefix"] + "]"),
        logger=dict(type="string", help="How to log"),
        file_cmd=dict(type="string", help="The location of the 'file' command"),
        user=dict(type="string", help="The user to run as [nobody]"),
    )

    parser = optparse.OptionParser(
        formatter=optparse.IndentedHelpFormatter(),
        usage=globals()['__doc__'],
        version=VERSION)
    parser.add_option('-v', '--verbose', action='store_true', default=False,
                      help="Increase output verbosity")
    parser.add_option('-d', '--debug', action='store_true', default=False,
                      help="Debug (vastly increases output verbosity)")
    parser.add_option('-c', '--cache', action='store_true', default=True,
                      help="Use a cache to help find hosts w/o IP address")
    parser.add_option('--cache-time', action='store', type="int", default=5 * 60,
                      help="How long an ip->name mapping is valid")
    parser.add_option('--neg-cache-time', action='store', type="int", default=10,
                      help="How long an ip->name mapping is valid")

    opts = list(opt_help.keys())
    opts.sort()
    for k in opts:
        v = opt_help[k]
        parser.add_option("--" + k, default=OPTIONS[k], type=v["type"], help=v["help"])
    parser.add_option('-B', dest="max_blksize", type="int", default=1428,
                      help="alias for --max-blksize, for in.tftpd compatibility")

    # Actually read the args
    (options, args) = parser.parse_args()

    for attr in dir(options):
        if attr in OPTIONS:
            OPTIONS[attr] = getattr(options, attr)

    if stat.S_ISSOCK(mode) or OPTIONS["logger"] == "syslog":
        # log to syslog.  Facility 11 isn't in the class, but it's FTP on linux
        logger = logging.handlers.SysLogHandler("/dev/log", 11)
        logger.setFormatter(
            logging.Formatter('%(filename)s: %(levelname)s: %(message)s'))
    elif OPTIONS["logger"] == "stream":
        # log to stdout
        logger = logging.StreamHandler()
        logger.setFormatter(logging.Formatter(logging.BASIC_FORMAT))
    else:
        logger = logging.FileHandler("/var/log/tftpd")
        logger.setFormatter(logging.Formatter(
            "%(asctime)s %(name)s: %(levelname)s: %(message)s"))

    logging.getLogger().addHandler(logger)

    if OPTIONS["debug"]:
        logging.getLogger().setLevel(logging.DEBUG)
    elif OPTIONS["verbose"]:
        logging.getLogger().setLevel(logging.INFO)
    else:
        logging.getLogger().setLevel(logging.WARN)

    if stat.S_ISSOCK(mode):
        OPTIONS["sock"] = socket.fromfd(sys.stdin.fileno(), socket.AF_INET, socket.SOCK_DGRAM, 0)
    else:
        OPTIONS["sock"] = socket.socket(socket.AF_INET, socket.SOCK_DGRAM, 0)
        OPTIONS["sock"].setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
        try:
            OPTIONS["sock"].bind(("", OPTIONS["port"]))
        except socket.error as e:
            if e[0] in (errno.EPERM, errno.EACCES):
                print("Unable to bind to port %d" % OPTIONS["port"])
                return -1
            else:
                raise

    OPTIONS["sock"].setblocking(0)

    if os.getuid() == 0:
        uid = pwd.getpwnam(OPTIONS["user"])[2]
        os.setreuid(uid, uid)

    # This takes a while, so do it after we open the port, so we
    # don't drop the packet that spawned us
    templar = cobbler.templar.Templar(None)

    io_loop = ioloop.IOLoop.instance()
    io_loop.add_handler(OPTIONS["sock"].fileno(), partial(new_req, OPTIONS["sock"], templar), io_loop.READ)
    # Shove the timeout into OPTIONS, because it's there
    if OPTIONS["idle"] > 0:
        OPTIONS["idle_timer"] = io_loop.add_timeout(time.time() + OPTIONS["idle"], lambda: idle_out())

    logging.info('Starting Eventloop')
    try:
        try:
            io_loop.start()
        except KeyboardInterrupt:
            # Someone hit ^C
            logging.info('Exiting')
    finally:
        OPTIONS["sock"].close()
    return 0


if __name__ == "__main__":
    sys.exit(main())
   07070100000058000041ED0000000000000000000000075ECE244400000000000000000000000000000000000000000000001600000000cobbler-3.1.2/cobbler 07070100000059000081A40000000000000000000000015ECE2444000001E4000000000000000000000000000000000000002000000000cobbler-3.1.2/cobbler.rpmlintrc   # We don't want this warning because cobblerd is the server and cobbler would be the cli client.
addFilter("W: incoherent-logrotate-file")

# In our case okay because we do this as a community
addFilter("W: hardcoded-packager-tag")

# On Deb-based distros the deduplication would fail
addFilter("cobbler.noarch: W: files-duplicate /usr/lib/python3.7/site-packages/cobbler")

# We use the normal not suse specific macros
addFilter("cobbler.noarch: W: systemd-service-without-service")
0707010000005A000081A40000000000000000000000015ECE24440000424B000000000000000000000000000000000000001B00000000cobbler-3.1.2/cobbler.spec    #
# RPM spec file for all Cobbler packages
#
# Supported/tested build targets:
# - Fedora: 30, 31, Rawhide
# - CentOS + EPEL: 7, 8
# - SLE: 15sp1
# - OpenSuSE: Leap 15.1, Tumbleweed
# - Debian: 10
# - Ubuntu: 18.04
#
# If it doesn't build on the Open Build Service (OBS) it's a bug.
#

# Force bash instead of Debian dash
%global _buildshell /bin/bash

# Work around quirk in OBS about handling defines...
%if 0%{?el7}
%{!?python3_pkgversion: %global python3_pkgversion 36}
%else
%{!?python3_pkgversion: %global python3_pkgversion 3}
%endif

%if 0%{?suse_version}
%define apache_pkg apache2
%define apache_dir /srv/www
%define apache_etc /etc/apache2
%define apache_user wwwrun
%define apache_group www
%define apache_log /var/log/apache2
%define apache_webconfigdir /etc/apache2/vhosts.d
%define apache_mod_wsgi apache2-mod_wsgi-python%{python3_pkgversion}
%define tftpboot_dir /srv/tftpboot
%define tftpsrv_pkg tftp
%define createrepo_pkg createrepo_c
%define grub2_x64_efi_pkg grub2-x86_64-efi
%define grub2_ia32_efi_pkg grub2-i386-efi
%define system_release_pkg distribution-release
%undefine python_enable_dependency_generator
%undefine python_disable_dependency_generator
%endif

%if 0%{?debian} || 0%{?ubuntu}
%define apache_pkg apache2
%define apache_dir /var/www
%define apache_etc /etc/apache2
%define apache_user www-data
%define apache_group www-data
%define apache_log /var/log/apache2
%define apache_webconfigdir /etc/apache2/conf-available
%define apache_mod_wsgi libapache2-mod-wsgi-py%{python3_pkgversion}
%define tftpboot_dir /var/lib/tftpboot
%define tftpsrv_pkg tftpd-hpa
%define createrepo_pkg createrepo
%define grub2_x64_efi_pkg grub-efi-amd64
%define grub2_ia32_efi_pkg grub-efi-ia32
%define system_release_pkg base-files
%endif

%if 0%{?fedora} || 0%{?rhel}
%define apache_pkg httpd
%define apache_dir /var/www
%define apache_etc /etc/httpd
%define apache_user apache
%define apache_group apache
%define apache_log /var/log/httpd
%define apache_webconfigdir /etc/httpd/conf.d
%define apache_mod_wsgi python%{python3_pkgversion}-mod_wsgi
%define tftpboot_dir /var/lib/tftpboot
%define tftpsrv_pkg tftp-server
%define createrepo_pkg createrepo_c
%define grub2_x64_efi_pkg grub2-efi-x64
%define grub2_ia32_efi_pkg grub2-efi-ia32
%define system_release_pkg system-release
%endif

# Python module package names that differ between SUSE and everybody else... :(
%if 0%{?suse_version}
%define py3_module_cheetah python%{python3_pkgversion}-Cheetah3
%define py3_module_django python%{python3_pkgversion}-Django
%define py3_module_dns python%{python3_pkgversion}-dnspython
%define py3_module_pyyaml python%{python3_pkgversion}-PyYAML
%define py3_module_sphinx python%{python3_pkgversion}-Sphinx
%else
%define py3_module_cheetah python%{python3_pkgversion}-cheetah
%define py3_module_django python%{python3_pkgversion}-django
%define py3_module_dns python%{python3_pkgversion}-dns
%define py3_module_pyyaml python%{python3_pkgversion}-yaml
%define py3_module_sphinx python%{python3_pkgversion}-sphinx
%endif

# Deal with python3-coverage package quirk
%if 0%{?rhel} == 8
# In RHEL 8, python3-coverage doesn't exist, but it's accessible by common virtual provides
%define py3_module_coverage python3dist(coverage)
%else
%define py3_module_coverage python%{python3_pkgversion}-coverage
%endif

# If they aren't provided by a system installed macro, define them
%{!?__python3: %global __python3 /usr/bin/python3}

# To ensure correct byte compilation
%global __python %{__python3}

%if %{_vendor} == "debbuild"
%global devsuffix dev
%else
%global devsuffix devel
%endif

%global __requires_exclude_from ^%{python3_sitelib}/modules/serializer_mongodb.py*$

Name:           cobbler
Version:        3.1.2
Release:        1%{?dist}
Summary:        Boot server configurator
URL:            https://cobbler.github.io/

%if %{_vendor} == "debbuild"
Packager:       Cobbler Developers <cobbler@lists.fedorahosted.org>
Group:          admin
%endif
%if 0%{?suse_version}
Group:          Productivity/Networking/Boot/Servers
%else
Group:          Development/System
%endif

License:        GPL-2.0-or-later
Source0:        https://github.com/cobbler/cobbler/archive/v%{version}/%{name}-%{version}.tar.gz
BuildArch:      noarch

BuildRequires:  git-core
BuildRequires:  %{system_release_pkg}
BuildRequires:  python%{python3_pkgversion}-%{devsuffix}
%if 0%{?suse_version}
BuildRequires:  python-rpm-macros
%endif
%if %{_vendor} == "debbuild"
BuildRequires:  python3-deb-macros
BuildRequires:  apache2-deb-macros

%endif
BuildRequires:  %{py3_module_coverage}
BuildRequires:  python%{python3_pkgversion}-distro
BuildRequires:  python%{python3_pkgversion}-future
BuildRequires:  python%{python3_pkgversion}-setuptools
BuildRequires:  python%{python3_pkgversion}-netaddr
BuildRequires:  %{py3_module_cheetah}
BuildRequires:  %{py3_module_sphinx}
%if 0%{?suse_version}
# Make post-build-checks happy by including these in the buildroot
BuildRequires:  bash-completion
BuildRequires:  %{apache_pkg}
BuildRequires:  %{tftpsrv_pkg}
%endif

%if 0%{?rhel}
# We need these to build this properly, and OBS doesn't pull them in by default for EPEL
BuildRequires:  epel-rpm-macros
%endif
%if 0%{?rhel} && 0%{?rhel} < 9
BuildRequires:  systemd
%endif
%if 0%{?fedora} >= 30 || 0%{?rhel} >= 9 || 0%{?suse_version}
BuildRequires:  systemd-rpm-macros
%endif
%if %{_vendor} == "debbuild"
BuildRequires:  systemd-deb-macros
Requires:       systemd-sysv
Requires(post): python3-minimal
Requires(preun): python3-minimal
%endif
Requires(post): systemd
Requires(preun): systemd
Requires(postun): systemd


Requires:       %{apache_pkg}
Requires:       %{tftpsrv_pkg}
Requires:       %{createrepo_pkg}
Requires:       rsync
Requires:       xorriso
%{?python_enable_dependency_generator}
%if ! (%{defined python_enable_dependency_generator} || %{defined python_disable_dependency_generator})
Requires:       %{py3_module_cheetah}
Requires:       %{py3_module_dns}
Requires:       python%{python3_pkgversion}-future
Requires:       python%{python3_pkgversion}-ldap3
Requires:       %{apache_mod_wsgi}
Requires:       python%{python3_pkgversion}-netaddr
Requires:       %{py3_module_pyyaml}
Requires:       python%{python3_pkgversion}-requests
Requires:       python%{python3_pkgversion}-simplejson
Requires:       python%{python3_pkgversion}-tornado
%endif


%if 0%{?fedora} || 0%{?rhel}
Requires:       dnf-plugins-core
%endif
%if ! (0%{?rhel} && 0%{?rhel} < 8)
# Not everyone wants bash-completion...?
Recommends:     bash-completion
# syslinux is only available on x86
Recommends:     syslinux
# grub2 efi stuff is only available on x86
Recommends:     %{grub2_x64_efi_pkg}
Recommends:     %{grub2_ia32_efi_pkg}
Recommends:     logrotate
%endif
# https://github.com/cobbler/cobbler/issues/1685
%if %{_vendor} == "debbuild"
Requires:       init-system-helpers
%else
Requires:       /sbin/service
%endif
# No point in having this split out...
Obsoletes:      cobbler-nsupdate < 3.0.99
Provides:       cobbler-nsupdate = %{version}-%{release}

%description
Cobbler is a network install server.  Cobbler supports PXE, ISO
virtualized installs, and re-installing existing Linux machines.
The last two modes use a helper tool, 'koan', that integrates with
cobbler.  There is also a web interface 'cobbler-web'.  Cobbler's
advanced features include importing distributions from DVDs and rsync
mirrors, kickstart templating, integrated yum mirroring, and built-in
DHCP/DNS Management.  Cobbler has a XMLRPC API for integration with
other applications.


%package web
Summary:        Web interface for Cobbler
Requires:       cobbler = %{version}-%{release}
%if ! (%{defined python_enable_dependency_generator} || %{defined python_disable_dependency_generator})
Requires:       %{py3_module_django}
Requires:       %{apache_mod_wsgi}
%endif
%if 0%{?fedora} || 0%{?rhel}
Requires:       mod_ssl
%endif
Requires(post): openssl

%description web
Web interface for Cobbler that allows visiting
http://server/cobbler_web to configure the install server.


%prep
%setup

%if 0%{?suse_version}
# Set tftpboot location correctly for SUSE distributions
sed -e "s|/var/lib/tftpboot|%{tftpboot_dir}|g" -i cobbler/settings.py config/cobbler/settings
%endif

%build
%py3_build

%install
# bypass install errors ( don't chown in install step)
%py3_install ||:

# cobbler
rm %{buildroot}%{_sysconfdir}/cobbler/cobbler.conf

mkdir -p %{buildroot}%{_sysconfdir}/logrotate.d
mv %{buildroot}%{_sysconfdir}/cobbler/cobblerd_rotate %{buildroot}%{_sysconfdir}/logrotate.d/cobblerd

# Create data directories in tftpboot_dir
mkdir -p %{buildroot}%{tftpboot_dir}/{boot,etc,grub,images{,2},ppc,pxelinux.cfg,s390x}

# systemd
mkdir -p %{buildroot}%{_unitdir}
mv %{buildroot}%{_sysconfdir}/cobbler/cobblerd.service %{buildroot}%{_unitdir}
%if 0%{?suse_version}
ln -sf service %{buildroot}%{_sbindir}/rccobblerd
%endif

# cobbler-web
rm %{buildroot}%{_sysconfdir}/cobbler/cobbler_web.conf


%pre
%if %{_vendor} == "debbuild"
if [ "$1" = "upgrade" ]; then
%else
if [ $1 -ge 2 ]; then
%endif
    # package upgrade: backup configuration
    DATE=$(date "+%Y%m%d-%H%M%S")
    if [ ! -d "%{_sharedstatedir}/cobbler/backup/upgrade-${DATE}" ]; then
        mkdir -p "%{_sharedstatedir}/cobbler/backup/upgrade-${DATE}"
    fi
    for i in "config" "snippets" "templates" "triggers" "scripts"; do
        if [ -d "%{_sharedstatedir}/cobbler/${i}" ]; then
            cp -r "%{_sharedstatedir}/cobbler/${i}" "%{_sharedstatedir}/cobbler/backup/upgrade-${DATE}"
        fi
    done
    if [ -d %{_sysconfdir}/cobbler ]; then
        cp -r %{_sysconfdir}/cobbler "%{_sharedstatedir}/cobbler/backup/upgrade-${DATE}"
    fi
fi

%if %{_vendor} == "debbuild"
%post
%{py3_bytecompile_post %{name}}
%{systemd_post cobblerd.service}
%{apache2_module_post proxy_http}

%preun
%{py3_bytecompile_preun %{name}}
%{systemd_preun cobblerd.service}

%postun
%{systemd_postun_with_restart cobblerd.service}

%else
%post
%if 0%{?suse_version}
# Create bootloders into /var/lib/cobbler/loaders
# Other distros might also want to do that
%{_datadir}/%{name}/bin/mkgrub.sh >/dev/null 2>&1
%endif
%systemd_post cobblerd.service

%preun
%systemd_preun cobblerd.service

%postun
%if 0%{?suse_version}
# This is mkgrub.sh cleanup (exeucted above in post):
# remove linked and installed grub loader executables again
if [ -e %{_localstatedir}/lib/cobbler/loaders/.cobbler_postun_cleanup ];then
   for file in $(cat %{_localstatedir}/lib/cobbler/loaders/.cobbler_postun_cleanup);do
       rm -f %{_localstatedir}/lib/cobbler/loaders/$file
   done
   rm -rf %{_localstatedir}/lib/cobbler/loaders/.cobbler_postun_cleanup
fi
%endif
%systemd_postun_with_restart cobblerd.service
%endif

%post web
%if %{_vendor} == "debbuild"
# Work around broken attr support
# Cf. https://github.com/debbuild/debbuild/issues/160
chown %{apache_user}:%{apache_group} %{_datadir}/cobbler/web
mkdir -p %{_sharedstatedir}/cobbler/webui_sessions
chown %{apache_user}:root %{_sharedstatedir}/cobbler/webui_sessions
chmod 700 %{_sharedstatedir}/cobbler/webui_sessions
chown %{apache_user}:%{apache_group} %{apache_dir}/cobbler_webui_content/
%endif
# Change the SECRET_KEY option in the Django settings.py file
# required for security reasons, should be unique on all systems
# Choose from letters and numbers only, so no special chars like ampersand (&).
RAND_SECRET=$(head /dev/urandom | tr -dc 'A-Za-z0-9!' | head -c 50 ; echo '')
sed -i -e "s/SECRET_KEY = ''/SECRET_KEY = \'$RAND_SECRET\'/" %{_datadir}/cobbler/web/settings.py


%files
%license COPYING
%doc AUTHORS.in README.md
%doc docs/developer-guide.rst docs/quickstart-guide.rst docs/installation-guide.rst
%dir %{_sysconfdir}/cobbler
%config(noreplace) %{_sysconfdir}/cobbler/auth.conf
%dir %{_sysconfdir}/cobbler/boot_loader_conf
%config(noreplace) %{_sysconfdir}/cobbler/boot_loader_conf/bootcfg_esxi5.template
%config(noreplace) %{_sysconfdir}/cobbler/boot_loader_conf/bootcfg_esxi51.template
%config(noreplace) %{_sysconfdir}/cobbler/boot_loader_conf/bootcfg_esxi55.template
%config(noreplace) %{_sysconfdir}/cobbler/boot_loader_conf/bootcfg_esxi60.template
%config(noreplace) %{_sysconfdir}/cobbler/boot_loader_conf/bootcfg_esxi65.template
%config(noreplace) %{_sysconfdir}/cobbler/boot_loader_conf/bootcfg_esxi67.template
%config(noreplace) %{_sysconfdir}/cobbler/boot_loader_conf/gpxe_system_esxi5.template
%config(noreplace) %{_sysconfdir}/cobbler/boot_loader_conf/gpxe_system_esxi6.template
%config(noreplace) %{_sysconfdir}/cobbler/boot_loader_conf/gpxe_system_freebsd.template
%config(noreplace) %{_sysconfdir}/cobbler/boot_loader_conf/gpxe_system_linux.template
%config(noreplace) %{_sysconfdir}/cobbler/boot_loader_conf/gpxe_system_local.template
%config(noreplace) %{_sysconfdir}/cobbler/boot_loader_conf/gpxe_system_windows.template
%config(noreplace) %{_sysconfdir}/cobbler/boot_loader_conf/grublocal.template
%config(noreplace) %{_sysconfdir}/cobbler/boot_loader_conf/grubprofile.template
%config(noreplace) %{_sysconfdir}/cobbler/boot_loader_conf/grubsystem.template
%config(noreplace) %{_sysconfdir}/cobbler/boot_loader_conf/pxedefault.template
%config(noreplace) %{_sysconfdir}/cobbler/boot_loader_conf/pxelocal.template
%config(noreplace) %{_sysconfdir}/cobbler/boot_loader_conf/pxelocal_ia64.template
%config(noreplace) %{_sysconfdir}/cobbler/boot_loader_conf/pxeprofile.template
%config(noreplace) %{_sysconfdir}/cobbler/boot_loader_conf/pxeprofile_arm.template
%config(noreplace) %{_sysconfdir}/cobbler/boot_loader_conf/pxeprofile_esxi.template
%config(noreplace) %{_sysconfdir}/cobbler/boot_loader_conf/pxesystem.template
%config(noreplace) %{_sysconfdir}/cobbler/boot_loader_conf/pxesystem_arm.template
%config(noreplace) %{_sysconfdir}/cobbler/boot_loader_conf/pxesystem_esxi.template
%config(noreplace) %{_sysconfdir}/cobbler/boot_loader_conf/pxesystem_ia64.template
%config(noreplace) %{_sysconfdir}/cobbler/boot_loader_conf/pxesystem_ppc.template
%config(noreplace) %{_sysconfdir}/cobbler/boot_loader_conf/yaboot_ppc.template
%config(noreplace) %{_sysconfdir}/cobbler/cheetah_macros
%config(noreplace) %{_sysconfdir}/cobbler/dhcp.template
%config(noreplace) %{_sysconfdir}/cobbler/dnsmasq.template
%config(noreplace) %{_sysconfdir}/cobbler/genders.template
%config(noreplace) %{_sysconfdir}/cobbler/import_rsync_whitelist
%dir %{_sysconfdir}/cobbler/iso
%config(noreplace) %{_sysconfdir}/cobbler/iso/buildiso.template
%config(noreplace) %{_sysconfdir}/cobbler/logging_config.conf
%config(noreplace) %{_sysconfdir}/cobbler/modules.conf
%config(noreplace) %{_sysconfdir}/cobbler/mongodb.conf
%config(noreplace) %{_sysconfdir}/cobbler/named.template
%config(noreplace) %{_sysconfdir}/cobbler/ndjbdns.template
%dir %{_sysconfdir}/cobbler/reporting
%config(noreplace) %{_sysconfdir}/cobbler/reporting/build_report_email.template
%config(noreplace) %{_sysconfdir}/cobbler/rsync.exclude
%config(noreplace) %{_sysconfdir}/cobbler/rsync.template
%config(noreplace) %{_sysconfdir}/cobbler/secondary.template
%config(noreplace) %{_sysconfdir}/cobbler/settings
%dir %{_sysconfdir}/cobbler/settings.d
%config(noreplace) %{_sysconfdir}/cobbler/settings.d/bind_manage_ipmi.settings
%config(noreplace) %{_sysconfdir}/cobbler/settings.d/manage_genders.settings
%config(noreplace) %{_sysconfdir}/cobbler/settings.d/nsupdate.settings
%config(noreplace) %{_sysconfdir}/cobbler/users.conf
%config(noreplace) %{_sysconfdir}/cobbler/users.digest
%config(noreplace) %{_sysconfdir}/cobbler/version
%config(noreplace) %{_sysconfdir}/cobbler/zone.template
%dir %{_sysconfdir}/cobbler/zone_templates
%config(noreplace) %{_sysconfdir}/cobbler/zone_templates/foo.example.com
%config(noreplace) %{_sysconfdir}/logrotate.d/cobblerd
%config(noreplace) %{apache_webconfigdir}/cobbler.conf
%{_bindir}/cobbler
%{_bindir}/cobbler-ext-nodes
%{_bindir}/cobblerd
%{_sbindir}/tftpd.py
%{_sbindir}/fence_ipmitool
%dir %{_datadir}/cobbler
%{_datadir}/cobbler/bin
%{_mandir}/man1/cobbler.1*
%{_mandir}/man5/cobbler.conf.5*
%{_mandir}/man8/cobblerd.8*
%{_datadir}/bash-completion/completions/cobbler
%{python3_sitelib}/cobbler/
%{python3_sitelib}/cobbler-*
%{_unitdir}/cobblerd.service
%if 0%{?suse_version}
%{_sbindir}/rccobblerd
%endif
%{tftpboot_dir}/*
%{apache_dir}/cobbler
%{_sharedstatedir}/cobbler
%exclude %{_sharedstatedir}/cobbler/webui_sessions
%{_localstatedir}/log/cobbler

%files web
%license COPYING
%doc AUTHORS.in README.md
%config(noreplace) %{apache_webconfigdir}/cobbler_web.conf
%if %{_vendor} == "debbuild"
# Work around broken attr support
# Cf. https://github.com/debbuild/debbuild/issues/160
%{_datadir}/cobbler/web
%dir %{_sharedstatedir}/cobbler/webui_sessions
%{apache_dir}/cobbler_webui_content/
%else
%attr(-,%{apache_user},%{apache_group}) %{_datadir}/cobbler/web
%dir %attr(700,%{apache_user},root) %{_sharedstatedir}/cobbler/webui_sessions
%attr(-,%{apache_user},%{apache_group}) %{apache_dir}/cobbler_webui_content/
%endif


%changelog
* Thu Dec 19 2019 Neal Gompa <ngompa13@gmail.com>
- Initial rewrite of packaging
 0707010000005B000081A40000000000000000000000015ECE244400000000000000000000000000000000000000000000002200000000cobbler-3.1.2/cobbler/__init__.py 0707010000005C000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000001E00000000cobbler-3.1.2/cobbler/actions 0707010000005D000081A40000000000000000000000015ECE244400000000000000000000000000000000000000000000002A00000000cobbler-3.1.2/cobbler/actions/__init__.py 0707010000005E000081A40000000000000000000000015ECE24440000112A000000000000000000000000000000000000002500000000cobbler-3.1.2/cobbler/actions/acl.py  """
Configures acls for various users/groups so they can access the Cobbler command
line as non-root.  Now that CLI is largely remoted (XMLRPC) this is largely just
useful for not having to log in (access to shared-secret) file but also grants
access to hand-edit various cobbler_collections files and other useful things.

Copyright 2006-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""


from builtins import object
from cobbler.cexceptions import CX
from cobbler import clogger
from cobbler import utils


class AclConfig(object):

    def __init__(self, collection_mgr, logger=None):
        """
        Constructor

        :param collection_mgr: The collection manager which holds all information about Cobbler.
        :param logger: The logger to audit actions with.
        """
        self.collection_mgr = collection_mgr
        self.api = collection_mgr.api
        self.settings = collection_mgr.settings()
        if logger is None:
            logger = clogger.Logger()
        self.logger = logger

    def run(self, adduser=None, addgroup=None, removeuser=None, removegroup=None):
        """
        Automate setfacl commands. Only one of the four may be specified but one option also must be specified.

        :param adduser: Add a user to be able to manage Cobbler.
        :param addgroup: Add a group to be able to manage Cobbler.
        :param removeuser: Remove a user to be able to manage Cobbler.
        :param removegroup: Remove a group to be able to manage Cobbler.
        """

        ok = False
        if adduser:
            ok = True
            self.modacl(True, True, adduser)
        if addgroup:
            ok = True
            self.modacl(True, False, addgroup)
        if removeuser:
            ok = True
            self.modacl(False, True, removeuser)
        if removegroup:
            ok = True
            self.modacl(False, False, removegroup)
        if not ok:
            raise CX("no arguments specified, nothing to do")

    def modacl(self, isadd, isuser, who):
        """
        Modify the acls for Cobbler on the filesystem.

        :param isadd: If true then the ``who`` will be added. If false then ``who`` will be removed.
        :type isadd: bool
        :param isuser: If true then the ``who`` may be a user. If false then ``who`` may be a group.
        :type isuser: bool
        :param who: The user or group to be added or removed.
        """
        snipdir = self.settings.autoinstall_snippets_dir
        tftpboot = self.settings.tftpboot_location

        PROCESS_DIRS = {
            "/var/log/cobbler": "rwx",
            "/var/log/cobbler/tasks": "rwx",
            "/var/lib/cobbler": "rwx",
            "/etc/cobbler": "rwx",
            tftpboot: "rwx",
            "/var/lib/cobbler/triggers": "rwx"
        }
        if not snipdir.startswith("/var/lib/cobbler/"):
            PROCESS_DIRS[snipdir] = "r"

        cmd = "-R"

        if isadd:
            cmd = "%s -m" % cmd
        else:
            cmd = "%s -x" % cmd

        if isuser:
            cmd = "%s u:%s" % (cmd, who)
        else:
            cmd = "%s g:%s" % (cmd, who)

        for d in PROCESS_DIRS:
            how = PROCESS_DIRS[d]
            if isadd:
                cmd2 = "%s:%s" % (cmd, how)
            else:
                cmd2 = cmd

            cmd2 = "%s %s" % (cmd2, d)
            rc = utils.subprocess_call(self.logger, "setfacl -d %s" % cmd2, shell=True)
            if not rc == 0:
                utils.die(self.logger, "command failed")
            rc = utils.subprocess_call(self.logger, "setfacl %s" % cmd2, shell=True)
            if not rc == 0:
                utils.die(self.logger, "command failed")
  0707010000005F000081A40000000000000000000000015ECE244400009109000000000000000000000000000000000000002A00000000cobbler-3.1.2/cobbler/actions/buildiso.py """
Builds bootable CD images that have PXE-equivalent behavior
for all Cobbler distros/profiles/systems currently in memory.

Copyright 2006-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""


from builtins import str
from builtins import object
import os
import os.path
import re
import shutil

from cobbler import clogger
from cobbler import utils


class BuildIso(object):
    """
    Handles conversion of internal state to the isolinux tree layout
    """
    def __init__(self, collection_mgr, verbose=False, logger=None):
        """
        Constructor
        """
        self.verbose = verbose
        self.collection_mgr = collection_mgr
        self.settings = collection_mgr.settings()
        self.api = collection_mgr.api
        self.distros = collection_mgr.distros()
        self.profiles = collection_mgr.profiles()
        self.systems = collection_mgr.systems()
        self.distros = collection_mgr.distros()
        self.distmap = {}
        self.distctr = 0
        self.source = ""
        if logger is None:
            logger = clogger.Logger()
        self.logger = logger
        # grab the header from buildiso.header file
        header_src = open(os.path.join(self.settings.iso_template_dir, "buildiso.template"))
        self.iso_template = header_src.read()
        header_src.close()

    def add_remaining_kopts(self, koptdict):
        """
        Add remaining kernel_options to append_line

        :param koptdict: The kernel options which are not present in append_line.
        :type koptdict: dict
        :return: A single line with all kernel options
        :rtype: str
        """
        append_line = ""
        for (k, v) in list(koptdict.items()):
            if v is None:
                append_line += " %s" % k
            else:
                if isinstance(v, list):
                    for i in v:
                        _i = str(i).strip()
                        if ' ' in _i:
                            append_line += " %s='%s'" % (k, _i)
                        else:
                            append_line += " %s=%s" % (k, _i)
                else:
                    _v = str(v).strip()
                    if ' ' in _v:
                        append_line += " %s='%s'" % (k, _v)
                    else:
                        append_line += " %s=%s" % (k, _v)
        append_line += "\n"
        return append_line

    def make_shorter(self, distname):
        """
        Return A short distro identifier.

        :param distname: The distro name to return a identifieer for.
        :type distname: str
        :return: A short distro identifier
        :rtype: str
        """
        if distname in self.distmap:
            return self.distmap[distname]
        else:
            self.distctr += 1
            self.distmap[distname] = str(self.distctr)
            return str(self.distctr)

    def copy_boot_files(self, distro, destdir, prefix=None):
        """
        Copy kernel/initrd to destdir with (optional) newfile prefix

        :param distro: Distro object to return the boot files for.
        :param destdir: The destionation direcotry.
        :param prefix: The file prefix.
        :type prefix: str
        """
        if not os.path.exists(distro.kernel):
            utils.die(self.logger, "path does not exist: %s" % distro.kernel)
        if not os.path.exists(distro.initrd):
            utils.die(self.logger, "path does not exist: %s" % distro.initrd)
        if prefix is None:
            shutil.copyfile(distro.kernel, os.path.join(destdir, "%s" % os.path.basename(distro.kernel)))
            shutil.copyfile(distro.initrd, os.path.join(destdir, "%s" % os.path.basename(distro.initrd)))
        else:
            shutil.copyfile(distro.kernel, os.path.join(destdir, "%s.krn" % prefix))
            shutil.copyfile(distro.initrd, os.path.join(destdir, "%s.img" % prefix))

    def filter_systems_or_profiles(self, selected_items, list_type):
        """
        Return a list of valid profile or system objects selected from all profiles or systems by name, or everything if
        selected_items is empty.

        :param selected_items: The filter to match certain objects with. The filter will be applied to the object name.
        :param list_type: Must be "profile" or "system".
        :type list_type: str
        :return: A list of valid profiles OR systems.
        :rtype: list
        """
        if list_type == 'profile':
            all_objs = [profile for profile in self.api.profiles()]
        elif list_type == 'system':
            all_objs = [system for system in self.api.systems()]
        else:
            utils.die(self.logger, "Invalid list_type argument: " + list_type)

        all_objs.sort(key=lambda profile: profile.name)

        # no profiles/systems selection is made, let's process everything
        if not selected_items:
            return all_objs

        which_objs = []
        selected_list = utils.input_string_or_list(selected_items)
        for obj in all_objs:
            if obj.name in selected_list:
                which_objs.append(obj)
                selected_list.remove(obj.name)

        for bad_name in selected_list:
            self.logger.warning("WARNING: %s is not a valid %s" % (bad_name, list_type))

        if not which_objs:
            utils.die(self.logger, "No valid systems or profiles were specified.")

        return which_objs

    def generate_netboot_iso(self, imagesdir, isolinuxdir, profiles=None, systems=None, exclude_dns=None):
        """
        Create bootable CD image to be used for network installations

        :param imagesdir: Currently unused parameter.
        :param isolinuxdir: The parent directory where the isolinux.cfg is located.
        :param profiles: The filter to generate a netboot iso for. You may specify multiple profiles on the CLI space
                        separated.
        :param systems: The filter to generate a netboot iso for. You may specify multiple systems on the CLI space
                        separated.
        :param exclude_dns: If this is True then the dns server is skipped. None or False will set it.
        :type exclude_dns: bool or None
        """
        which_profiles = self.filter_systems_or_profiles(profiles, 'profile')
        which_systems = self.filter_systems_or_profiles(systems, 'system')

        # setup isolinux.cfg
        isolinuxcfg = os.path.join(isolinuxdir, "isolinux.cfg")
        cfg = open(isolinuxcfg, "w+")
        cfg.write(self.iso_template)

        # iterate through selected profiles
        for profile in which_profiles:
            self.logger.info("processing profile: %s" % profile.name)
            dist = profile.get_conceptual_parent()
            distname = self.make_shorter(dist.name)
            self.copy_boot_files(dist, isolinuxdir, distname)

            cfg.write("\n")
            cfg.write("LABEL %s\n" % profile.name)
            cfg.write("  MENU LABEL %s\n" % profile.name)
            cfg.write("  kernel %s.krn\n" % distname)

            data = utils.blender(self.api, False, profile)

            # SUSE is not using 'text'. Instead 'textmode' is used as kernel option.
            utils.kopts_overwrite(None, dist, data['kernel_options'], self.api.settings())

            if not re.match(r"[a-z]+://.*", data["autoinstall"]):
                data["autoinstall"] = "http://%s:%s/cblr/svc/op/autoinstall/profile/%s" % (
                    data["server"], self.api.settings().http_port, profile.name
                )

            append_line = " append initrd=%s.img" % distname
            if dist.breed == "suse":
                if "proxy" in data and data["proxy"] != "":
                    append_line += " proxy=%s" % data["proxy"]
                if "install" in data["kernel_options"] and data["kernel_options"]["install"] != "":
                    v = data["kernel_options"]["install"]
                    if isinstance(v, list):
                        v = v[0]
                        append_line += " install=%s" % v
                    del data["kernel_options"]["install"]
                else:
                    append_line += " install=http://%s:%s/cblr/links/%s" % (
                        data["server"], self.api.settings().http_port, dist.name
                    )
                if "autoyast" in data["kernel_options"] and data["kernel_options"]["autoyast"] != "":
                    append_line += " autoyast=%s" % data["kernel_options"]["autoyast"]
                    del data["kernel_options"]["autoyast"]
                else:
                    append_line += " autoyast=%s" % data["autoinstall"]

            if dist.breed == "redhat":
                if "proxy" in data and data["proxy"] != "":
                    append_line += " proxy=%s http_proxy=%s" % (data["proxy"], data["proxy"])
                append_line += " ks=%s" % data["autoinstall"]

            if dist.breed in ["ubuntu", "debian"]:
                append_line += " auto-install/enable=true url=%s" % data["autoinstall"]
                if "proxy" in data and data["proxy"] != "":
                    append_line += " mirror/http/proxy=%s" % data["proxy"]
            append_line += self.add_remaining_kopts(data["kernel_options"])
            cfg.write(append_line)

        cfg.write("\nMENU SEPARATOR\n")

        # iterate through all selected systems
        for system in which_systems:
            self.logger.info("processing system: %s" % system.name)
            profile = system.get_conceptual_parent()
            dist = profile.get_conceptual_parent()
            distname = self.make_shorter(dist.name)
            self.copy_boot_files(dist, isolinuxdir, distname)

            cfg.write("\n")
            cfg.write("LABEL %s\n" % system.name)
            cfg.write("  MENU LABEL %s\n" % system.name)
            cfg.write("  kernel %s.krn\n" % distname)

            data = utils.blender(self.api, False, system)
            if not re.match(r"[a-z]+://.*", data["autoinstall"]):
                data["autoinstall"] = "http://%s:%s/cblr/svc/op/autoinstall/system/%s" % (
                    data["server"], self.api.settings().http_port, system.name
                )

            append_line = " append initrd=%s.img" % distname
            if dist.breed == "suse":
                if "proxy" in data and data["proxy"] != "":
                    append_line += " proxy=%s" % data["proxy"]
                if "install" in data["kernel_options"] and data["kernel_options"]["install"] != "":
                    append_line += " install=%s" % data["kernel_options"]["install"]
                    del data["kernel_options"]["install"]
                else:
                    append_line += " install=http://%s:%s/cblr/links/%s" % (
                        data["server"], self.api.settings().http_port, dist.name
                    )
                if "autoyast" in data["kernel_options"] and data["kernel_options"]["autoyast"] != "":
                    append_line += " autoyast=%s" % data["kernel_options"]["autoyast"]
                    del data["kernel_options"]["autoyast"]
                else:
                    append_line += " autoyast=%s" % data["autoinstall"]

            if dist.breed == "redhat":
                if "proxy" in data and data["proxy"] != "":
                    append_line += " proxy=%s http_proxy=%s" % (data["proxy"], data["proxy"])
                append_line += " ks=%s" % data["autoinstall"]

            if dist.breed in ["ubuntu", "debian"]:
                append_line += " auto-install/enable=true url=%s netcfg/disable_autoconfig=true" % data["autoinstall"]
                if "proxy" in data and data["proxy"] != "":
                    append_line += " mirror/http/proxy=%s" % data["proxy"]
                # hostname is required as a parameter, the one in the preseed is not respected
                my_domain = "local.lan"
                if system.hostname != "":
                    # if this is a FQDN, grab the first bit
                    my_hostname = system.hostname.split(".")[0]
                    _domain = system.hostname.split(".")[1:]
                    if _domain:
                        my_domain = ".".join(_domain)
                else:
                    my_hostname = system.name.split(".")[0]
                    _domain = system.name.split(".")[1:]
                    if _domain:
                        my_domain = ".".join(_domain)
                # At least for debian deployments configured for DHCP networking this values are not used, but
                # specifying here avoids questions
                append_line += " hostname=%s domain=%s" % (my_hostname, my_domain)
                # A similar issue exists with suite name, as installer requires the existence of "stable" in the dists
                # directory
                append_line += " suite=%s" % dist.os_version

            # Try to add static ip boot options to avoid DHCP (interface/ip/netmask/gw/dns)
            # Check for overrides first and clear them from kernel_options
            my_int = None
            my_ip = None
            my_mask = None
            my_gw = None
            my_dns = None
            if dist.breed in ["suse", "redhat"]:
                if "netmask" in data["kernel_options"] and data["kernel_options"]["netmask"] != "":
                    my_mask = data["kernel_options"]["netmask"]
                    del data["kernel_options"]["netmask"]
                if "gateway" in data["kernel_options"] and data["kernel_options"]["gateway"] != "":
                    my_gw = data["kernel_options"]["gateway"]
                    del data["kernel_options"]["gateway"]

            if dist.breed == "redhat":
                if "ksdevice" in data["kernel_options"] and data["kernel_options"]["ksdevice"] != "":
                    my_int = data["kernel_options"]["ksdevice"]
                    if my_int == "bootif":
                        my_int = None
                    del data["kernel_options"]["ksdevice"]
                if "ip" in data["kernel_options"] and data["kernel_options"]["ip"] != "":
                    my_ip = data["kernel_options"]["ip"]
                    del data["kernel_options"]["ip"]
                if "dns" in data["kernel_options"] and data["kernel_options"]["dns"] != "":
                    my_dns = data["kernel_options"]["dns"]
                    del data["kernel_options"]["dns"]

            if dist.breed == "suse":
                if "netdevice" in data["kernel_options"] and data["kernel_options"]["netdevice"] != "":
                    my_int = data["kernel_options"]["netdevice"]
                    del data["kernel_options"]["netdevice"]
                if "hostip" in data["kernel_options"] and data["kernel_options"]["hostip"] != "":
                    my_ip = data["kernel_options"]["hostip"]
                    del data["kernel_options"]["hostip"]
                if "nameserver" in data["kernel_options"] and data["kernel_options"]["nameserver"] != "":
                    my_dns = data["kernel_options"]["nameserver"]
                    del data["kernel_options"]["nameserver"]

            if dist.breed in ["ubuntu", "debian"]:
                if "netcfg/choose_interface" in data["kernel_options"] and data["kernel_options"]["netcfg/choose_interface"] != "":
                    my_int = data["kernel_options"]["netcfg/choose_interface"]
                    del data["kernel_options"]["netcfg/choose_interface"]
                if "netcfg/get_ipaddress" in data["kernel_options"] and data["kernel_options"]["netcfg/get_ipaddress"] != "":
                    my_ip = data["kernel_options"]["netcfg/get_ipaddress"]
                    del data["kernel_options"]["netcfg/get_ipaddress"]
                if "netcfg/get_netmask" in data["kernel_options"] and data["kernel_options"]["netcfg/get_netmask"] != "":
                    my_mask = data["kernel_options"]["netcfg/get_netmask"]
                    del data["kernel_options"]["netcfg/get_netmask"]
                if "netcfg/get_gateway" in data["kernel_options"] and data["kernel_options"]["netcfg/get_gateway"] != "":
                    my_gw = data["kernel_options"]["netcfg/get_gateway"]
                    del data["kernel_options"]["netcfg/get_gateway"]
                if "netcfg/get_nameservers" in data["kernel_options"] and data["kernel_options"]["netcfg/get_nameservers"] != "":
                    my_dns = data["kernel_options"]["netcfg/get_nameservers"]
                    del data["kernel_options"]["netcfg/get_nameservers"]

            # If no kernel_options overrides are present find the management interface do nothing when zero or multiple
            # management interfaces are found
            if my_int is None:
                mgmt_ints = []
                mgmt_ints_multi = []
                slave_ints = []
                if len(list(data["interfaces"].keys())) >= 1:
                    for (iname, idata) in list(data["interfaces"].items()):
                        if idata["management"] and idata["interface_type"] in ["bond", "bridge"]:
                            # bonded/bridged management interface
                            mgmt_ints_multi.append(iname)
                        if idata["management"] and idata["interface_type"] not in ["bond", "bridge", "bond_slave", "bridge_slave", "bonded_bridge_slave"]:
                            # single management interface
                            mgmt_ints.append(iname)

                if len(mgmt_ints_multi) == 1 and len(mgmt_ints) == 0:
                    # Bonded/bridged management interface, find a slave interface if eth0 is a slave use that (it's what
                    # people expect)
                    for (iname, idata) in list(data["interfaces"].items()):
                        if idata["interface_type"] in ["bond_slave", "bridge_slave", "bonded_bridge_slave"] and idata["interface_master"] == mgmt_ints_multi[0]:
                            slave_ints.append(iname)

                    if "eth0" in slave_ints:
                        my_int = "eth0"
                    else:
                        my_int = slave_ints[0]
                    # Set my_ip from the bonded/bridged interface here
                    my_ip = data["ip_address_" + data["interface_master_" + my_int]]
                    my_mask = data["netmask_" + data["interface_master_" + my_int]]

                if len(mgmt_ints) == 1 and len(mgmt_ints_multi) == 0:
                    # Single management interface
                    my_int = mgmt_ints[0]

            # Lookup tcp/ip configuration data
            if my_ip is None and my_int is not None:
                intip = "ip_address_" + my_int
                if intip in data and data[intip] != "":
                    my_ip = data["ip_address_" + my_int]

            if my_mask is None and my_int is not None:
                intmask = "netmask_" + my_int
                if intmask in data and data[intmask] != "":
                    my_mask = data["netmask_" + my_int]

            if my_gw is None:
                if "gateway" in data and data["gateway"] != "":
                    my_gw = data["gateway"]

            if my_dns is None:
                if "name_servers" in data and data["name_servers"] != "":
                    my_dns = data["name_servers"]

            # Add information to the append_line
            if my_int is not None:
                intmac = "mac_address_" + my_int
                if dist.breed == "suse":
                    if intmac in data and data[intmac] != "":
                        append_line += " netdevice=%s" % data["mac_address_" + my_int].lower()
                    else:
                        append_line += " netdevice=%s" % my_int
                if dist.breed == "redhat":
                    if intmac in data and data[intmac] != "":
                        append_line += " ksdevice=%s" % data["mac_address_" + my_int]
                    else:
                        append_line += " ksdevice=%s" % my_int
                if dist.breed in ["ubuntu", "debian"]:
                    append_line += " netcfg/choose_interface=%s" % my_int

            if my_ip is not None:
                if dist.breed == "suse":
                    append_line += " hostip=%s" % my_ip
                if dist.breed == "redhat":
                    append_line += " ip=%s" % my_ip
                if dist.breed in ["ubuntu", "debian"]:
                    append_line += " netcfg/get_ipaddress=%s" % my_ip

            if my_mask is not None:
                if dist.breed in ["suse", "redhat"]:
                    append_line += " netmask=%s" % my_mask
                if dist.breed in ["ubuntu", "debian"]:
                    append_line += " netcfg/get_netmask=%s" % my_mask

            if my_gw is not None:
                if dist.breed in ["suse", "redhat"]:
                    append_line += " gateway=%s" % my_gw
                if dist.breed in ["ubuntu", "debian"]:
                    append_line += " netcfg/get_gateway=%s" % my_gw

            if exclude_dns is None or my_dns is not None:
                if dist.breed == "suse":
                    if type(my_dns) == list:
                        append_line += " nameserver=%s" % ",".join(my_dns)
                    else:
                        append_line += " nameserver=%s" % my_dns
                if dist.breed == "redhat":
                    if type(my_dns) == list:
                        append_line += " dns=%s" % ",".join(my_dns)
                    else:
                        append_line += " dns=%s" % my_dns
                if dist.breed in ["ubuntu", "debian"]:
                    if type(my_dns) == list:
                        append_line += " netcfg/get_nameservers=%s" % ",".join(my_dns)
                    else:
                        append_line += " netcfg/get_nameservers=%s" % my_dns

            # Add remaining kernel_options to append_line
            append_line += self.add_remaining_kopts(data["kernel_options"])
            cfg.write(append_line)

        cfg.write("\n")
        cfg.write("MENU END\n")
        cfg.close()

    def generate_standalone_iso(self, imagesdir, isolinuxdir, distname, filesource, airgapped, profiles):
        """
        Create bootable CD image to be used for handsoff CD installtions

        :param imagesdir: Unused Parameter.
        :param isolinuxdir: The parent directory where the file isolinux.cfg is located at.
        :param distname: The name of the Cobbler distribution.
        :param filesource: Not clear what this exactly does
        :param airgapped: Whether the repositories have to be locally available or the internet is reachable.
        :type airgapped: bool
        :param profiles: The list of profiles to include.
        """
        # Get the distro object for the requested distro and then get all of its descendants (profiles/sub-profiles/
        # systems) with sort=True for profile/system heirarchy to allow menu indenting
        distro = self.api.find_distro(distname)
        if distro is None:
            utils.die(self.logger, "distro %s was not found, aborting" % distname)
        descendants = distro.get_descendants(sort=True)
        profiles = utils.input_string_or_list(profiles)

        if filesource is None:
            # Try to determine the source from the distro kernel path
            self.logger.debug("trying to locate source for distro")
            found_source = False
            (source_head, source_tail) = os.path.split(distro.kernel)
            while source_tail != '':
                if source_head == os.path.join(self.api.settings().webdir, "distro_mirror"):
                    filesource = os.path.join(source_head, source_tail)
                    found_source = True
                    self.logger.debug("found source in %s" % filesource)
                    break
                (source_head, source_tail) = os.path.split(source_head)
            # Can't find the source, raise an error
            if not found_source:
                utils.die(self.logger, "Error, no installation source found. When building a standalone ISO, you must "
                                       "specify a --source if the distro install tree is not hosted locally")

        self.logger.info("copying kernels and initrds for standalone distro")
        self.copy_boot_files(distro, isolinuxdir, None)

        self.logger.info("generating an isolinux.cfg")
        isolinuxcfg = os.path.join(isolinuxdir, "isolinux.cfg")
        cfg = open(isolinuxcfg, "w+")
        cfg.write(self.iso_template)

        if airgapped:
            repo_names_to_copy = {}

        for descendant in descendants:
            # if a list of profiles was given, skip any others and their systems
            if profiles and ((descendant.COLLECTION_TYPE == 'profile' and descendant.name not in profiles)
                             or (descendant.COLLECTION_TYPE == 'system' and descendant.profile not in profiles)):
                continue

            menu_indent = 0
            if descendant.COLLECTION_TYPE == 'system':
                menu_indent = 4

            data = utils.blender(self.api, False, descendant)

            # SUSE is not using 'text'. Instead 'textmode' is used as kernel option.
            utils.kopts_overwrite(None, distro, data['kernel_options'], self.settings)

            cfg.write("\n")
            cfg.write("LABEL %s\n" % descendant.name)
            if menu_indent:
                cfg.write("  MENU INDENT %d\n" % menu_indent)
            cfg.write("  MENU LABEL %s\n" % descendant.name)
            cfg.write("  kernel %s\n" % os.path.basename(distro.kernel))

            append_line = "  append initrd=%s" % os.path.basename(distro.initrd)
            if distro.breed == "redhat":
                append_line += " ks=cdrom:/isolinux/%s.cfg" % descendant.name
            if distro.breed == "suse":
                append_line += " autoyast=file:///isolinux/%s.cfg install=cdrom:///" % descendant.name
                if "install" in data["kernel_options"]:
                    del data["kernel_options"]["install"]
            if distro.breed in ["ubuntu", "debian"]:
                append_line += " auto-install/enable=true preseed/file=/cdrom/isolinux/%s.cfg" % descendant.name

            # add remaining kernel_options to append_line
            append_line += self.add_remaining_kopts(data["kernel_options"])
            cfg.write(append_line)

            if descendant.COLLECTION_TYPE == 'profile':
                autoinstall_data = self.api.autoinstallgen.generate_autoinstall_for_profile(descendant.name)
            elif descendant.COLLECTION_TYPE == 'system':
                autoinstall_data = self.api.autoinstallgen.generate_autoinstall_for_system(descendant.name)

            if distro.breed == "redhat":
                cdregex = re.compile(r"^\s*url .*\n", re.IGNORECASE | re.MULTILINE)
                autoinstall_data = cdregex.sub("cdrom\n", autoinstall_data, count=1)

            if airgapped:
                descendant_repos = data['repos']
                for repo_name in descendant_repos:
                    repo_obj = self.api.find_repo(repo_name)
                    error_fmt = (descendant.COLLECTION_TYPE + " " + descendant.name + " refers to repo " + repo_name
                                 + ", which %%s; cannot build airgapped ISO")

                    if repo_obj is None:
                        utils.die(self.logger, error_fmt % "does not exist")
                    if not repo_obj.mirror_locally:
                        utils.die(self.logger, error_fmt % "is not configured for local mirroring")
                    # FIXME: don't hardcode
                    mirrordir = os.path.join(self.settings.webdir, "repo_mirror", repo_obj.name)
                    if not os.path.exists(mirrordir):
                        utils.die(self.logger, error_fmt % "has a missing local mirror directory")

                    repo_names_to_copy[repo_obj.name] = mirrordir

                    # update the baseurl in autoinstall_data to use the cdrom copy of this repo
                    reporegex = re.compile(r"^(\s*repo --name=" + repo_obj.name + " --baseurl=).*", re.MULTILINE)
                    autoinstall_data = reporegex.sub(r"\1" + "file:///mnt/source/repo_mirror/" + repo_obj.name,
                                                     autoinstall_data)

                # rewrite any split-tree repos, such as in redhat, to use cdrom
                srcreporegex = re.compile(r"^(\s*repo --name=\S+ --baseurl=).*/cobbler/distro_mirror/" + distro.name
                                          + r"/?(.*)", re.MULTILINE)
                autoinstall_data = srcreporegex.sub(r"\1" + "file:///mnt/source" + r"\2", autoinstall_data)

            autoinstall_name = os.path.join(isolinuxdir, "%s.cfg" % descendant.name)
            autoinstall_file = open(autoinstall_name, "w+")
            autoinstall_file.write(autoinstall_data)
            autoinstall_file.close()

        self.logger.info("done writing config")
        cfg.write("\n")
        cfg.write("MENU END\n")
        cfg.close()

        if airgapped:
            # copy any repos found in profiles or systems to the iso build
            repodir = os.path.abspath(os.path.join(isolinuxdir, "..", "repo_mirror"))
            if not os.path.exists(repodir):
                os.makedirs(repodir)

            for repo_name in repo_names_to_copy:
                src = repo_names_to_copy[repo_name]
                dst = os.path.join(repodir, repo_name)
                self.logger.info(" - copying repo '" + repo_name + "' for airgapped ISO")

                ok = utils.rsync_files(src, dst, "--exclude=TRANS.TBL --exclude=cache/ --no-g",
                                       logger=self.logger, quiet=True)
                if not ok:
                    utils.die(self.logger, "rsync of repo '" + repo_name + "' failed")

        # copy distro files last, since they take the most time
        cmd = "rsync -rlptgu --exclude=boot.cat --exclude=TRANS.TBL --exclude=isolinux/ %s/ %s/../"\
              % (filesource, isolinuxdir)
        self.logger.info("- copying distro %s files (%s)" % (distname, cmd))
        rc = utils.subprocess_call(self.logger, cmd, shell=True)
        if rc:
            utils.die(self.logger, "rsync of distro files failed")

    def run(self, iso=None, buildisodir=None, profiles=None, systems=None, distro=None, standalone=None, airgapped=None,
            source=None, exclude_dns=None, xorrisofs_opts=None):
        """
        A

        :param iso: The name of the iso. Defaults to "autoinst.iso".
        :param buildisodir: This overwrites the directory from the settings in which the iso is built in.
        :param profiles:
        :param systems: Don't use that when building standalone isos.
        :param distro: (For standalone only)
        :param standalone: This means that no network connection is needed to install the generated iso.
        :type standalone: bool
        :param airgapped: This option implies standalone=True.
        :type airgapped: bool
        :param source: If the iso should be offline available this is the path to the sources of the image.
        :param exclude_dns: Whether the repositories have to be locally available or the internet is reachable.
        :param xorrisofs_opts: xorrisofs options to include additionally.
        """

        if airgapped is True:
            standalone = True

        # the distro option is for stand-alone builds only
        if not standalone and distro is not None:
            utils.die(self.logger, "The --distro option should only be used when creating a standalone or airgapped ISO")
        # if building standalone, we only want --distro and --profiles (optional), systems are disallowed
        if standalone:
            if systems is not None:
                utils.die(self.logger, "When building a standalone ISO, use --distro and --profiles only, not --systems")
            elif distro is None:
                utils.die(self.logger, "When building a standalone ISO, you must specify a --distro")
            if source is not None and not os.path.exists(source):
                utils.die(self.logger, "The source specified (%s) does not exist" % source)

            # insure all profiles specified are children of the distro
            if profiles:
                which_profiles = self.filter_systems_or_profiles(profiles, 'profile')
                for profile in which_profiles:
                    if profile.distro != distro:
                        utils.die(self.logger, "When building a standalone ISO, all --profiles must be under --distro")

        # if iso is none, create it in . as "autoinst.iso"
        if iso is None:
            iso = "autoinst.iso"

        if buildisodir is None:
            buildisodir = self.settings.buildisodir
        else:
            if not os.path.isdir(buildisodir):
                utils.die(self.logger, "The --tempdir specified is not a directory")

            (buildisodir_head, buildisodir_tail) = os.path.split(os.path.normpath(buildisodir))
            if buildisodir_tail != "buildiso":
                buildisodir = os.path.join(buildisodir, "buildiso")

        self.logger.info("using/creating buildisodir: %s" % buildisodir)
        if not os.path.exists(buildisodir):
            os.makedirs(buildisodir)
        else:
            shutil.rmtree(buildisodir)
            os.makedirs(buildisodir)

        # if base of buildisodir does not exist, fail create all profiles unless filtered by "profiles"

        imagesdir = os.path.join(buildisodir, "images")
        isolinuxdir = os.path.join(buildisodir, "isolinux")

        self.logger.info("building tree for isolinux")
        if not os.path.exists(imagesdir):
            os.makedirs(imagesdir)
        if not os.path.exists(isolinuxdir):
            os.makedirs(isolinuxdir)

        self.logger.info("copying miscellaneous files")

        files_to_copy = ["isolinux.bin", "menu.c32", "chain.c32",
                         "ldlinux.c32", "libcom32.c32", "libutil.c32"]

        optional_files = ["ldlinux.c32", "libcom32.c32", "libutil.c32"]

        syslinux_folders = ["/usr/share/syslinux/",
                            "/usr/lib/syslinux/modules/bios/",
                            "/usr/lib/syslinux/",
                            "/usr/lib/ISOLINUX/"]

        # file_copy_success will be used to check for missing files
        file_copy_success = {f: False for f in files_to_copy if f not in optional_files}
        for syslinux_folder in syslinux_folders:
            if os.path.isdir(os.path.join(syslinux_folder)):
                for file_to_copy in files_to_copy:
                    source_file = os.path.join(syslinux_folder, file_to_copy)
                    if os.path.exists(source_file):
                        utils.copyfile(source_file, os.path.join(isolinuxdir, file_to_copy), self.api)
                        file_copy_success[file_to_copy] = True

        if False in file_copy_success.values():
            for k, v in file_copy_success:
                if not v:
                    self.logger.error("File not found: %s" % k)
            utils.die(self.logger, "Required file(s) not found. Please check your syslinux installation")

        if standalone or airgapped:
            self.generate_standalone_iso(imagesdir, isolinuxdir, distro, source, airgapped, profiles)
        else:
            self.generate_netboot_iso(imagesdir, isolinuxdir, profiles, systems, exclude_dns)

        if xorrisofs_opts is None:
            xorrisofs_opts = ""
        else:
            xorrisofs_opts = xorrisofs_opts.strip()

        # using xorrisofs instead of mkisofs nowadays, it is available everywhere...
        cmd = "xorrisofs -o %s %s -r -b isolinux/isolinux.bin -c isolinux/boot.cat" % (iso, xorrisofs_opts)
        cmd = cmd + " -no-emul-boot -boot-load-size 4"
        cmd = cmd + r" -boot-info-table -V Cobbler\ Install -R -J %s" % buildisodir

        rc = utils.subprocess_call(self.logger, cmd, shell=True)
        if rc != 0:
            utils.die(self.logger, "xorrisofs failed")

        self.logger.info("ISO build complete")
        self.logger.info("You may wish to delete: %s" % buildisodir)
        self.logger.info("The output file is: %s" % iso)

# EOF
   07070100000060000081A40000000000000000000000015ECE244400004AC8000000000000000000000000000000000000002700000000cobbler-3.1.2/cobbler/actions/check.py    """
Copyright 2006-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""


from builtins import object
import glob
import os
import re

from cobbler import clogger
from cobbler import utils
from cobbler.utils import _


class CobblerCheck(object):
    """
    Validates whether the system is reasonably well configured for
    serving up content. This is the code behind 'cobbler check'.
    """

    def __init__(self, collection_mgr, logger=None):
        """
        Constructor

        :param collection_mgr: The collection manager which holds all information.
        :param logger: The logger to audit all actions with.
        """
        self.collection_mgr = collection_mgr
        self.settings = collection_mgr.settings()
        if logger is None:
            logger = clogger.Logger()
        self.logger = logger

    def run(self):
        """
        The CLI usage is "cobbler check" before "cobbler sync".

        :return: None if there are no errors, otherwise returns a list of things to correct prior to running application
                 'for real'.
        """
        status = []
        self.checked_family = utils.get_family()
        self.check_name(status)
        self.check_selinux(status)
        if self.settings.manage_dhcp:
            mode = self.collection_mgr.api.get_sync().dhcp.what()
            if mode == "isc":
                self.check_dhcpd_bin(status)
                self.check_dhcpd_conf(status)
                self.check_service(status, "dhcpd")
            elif mode == "dnsmasq":
                self.check_dnsmasq_bin(status)
                self.check_service(status, "dnsmasq")

        if self.settings.manage_dns:
            mode = self.collection_mgr.api.get_sync().dns.what()
            if mode == "bind":
                self.check_bind_bin(status)
                self.check_service(status, "named")
            elif mode == "dnsmasq" and not self.settings.manage_dhcp:
                self.check_dnsmasq_bin(status)
                self.check_service(status, "dnsmasq")

        mode = self.collection_mgr.api.get_sync().tftpd.what()
        if mode == "in_tftpd":
            self.check_tftpd_dir(status)
        elif mode == "tftpd_py":
            self.check_ctftpd_dir(status)

        self.check_service(status, "cobblerd")

        self.check_bootloaders(status)
        self.check_for_wget_curl(status)
        self.check_rsync_conf(status)
        self.check_iptables(status)
        self.check_yum(status)
        self.check_debmirror(status)
        self.check_for_ksvalidator(status)
        self.check_for_default_password(status)
        self.check_for_unreferenced_repos(status)
        self.check_for_unsynced_repos(status)
        self.check_for_cman(status)

        return status

    def check_for_ksvalidator(self, status):
        """
        Check if the ``ksvalidator`` is present in ``/usr/bin``.

        :param status: The status list with possible problems. The status list with possible problems.
        """
        # ubuntu also identifies as "debian"
        if self.checked_family in ["debian", "suse"]:
            return

        if not os.path.exists("/usr/bin/ksvalidator"):
            status.append("ksvalidator was not found, install pykickstart")

    def check_for_cman(self, status):
        """
        Check if the fencing tools are available. This is done thorugh checking if the binary ``fence_ilo`` is present
        in ``/sbin`` or ``/usr/sbin``.

        :param status: The status list with possible problems. The status list with possible problems.
        """
        if self.checked_family == "suse":
            return
        # not doing rpm -q here to be cross-distro friendly
        if not os.path.exists("/sbin/fence_ilo") and not os.path.exists("/usr/sbin/fence_ilo"):
            status.append("fencing tools were not found, and are required to use the (optional) power management features. install cman or fence-agents to use them")

    def check_service(self, status, which, notes=""):
        """
        Check if the service command is available or the old init.d system has to be used.

        :param status: The status list with possible problems.
        :param which: The service to check for.
        :param notes: A manual not to attach.
        """
        # TODO: This should be improved. Removing would be hard has we need execute multiple service restarts, so this
        #       needs to work.
        if notes != "":
            notes = " (NOTE: %s)" % notes
        rc = 0
        if self.checked_family in ("redhat", "suse"):
            if os.path.exists("/etc/rc.d/init.d/%s" % which):
                rc = utils.subprocess_call(self.logger, "/sbin/service %s status > /dev/null 2>/dev/null" % which, shell=True)
            if rc != 0:
                status.append(_("service %s is not running%s") % (which, notes))
                return
        elif self.checked_family == "debian":
            # we still use /etc/init.d
            if os.path.exists("/etc/init.d/%s" % which):
                rc = utils.subprocess_call(self.logger, "/etc/init.d/%s status /dev/null 2>/dev/null" % which, shell=True)
            if rc != 0:
                status.append(_("service %s is not running%s") % (which, notes))
                return
        else:
            status.append(_("Unknown distribution type, cannot check for running service %s" % which))
            return

    def check_iptables(self, status):
        """
        Check if iptables is running. If yes print the needed ports. This is unavailable on Debian, SUSE and CentOS7 as
        a service. However this only indicates that the way of persisting the iptable rules are persisted via other
        means.

        :param status: The status list with possible problems.
        """
        if os.path.exists("/etc/rc.d/init.d/iptables"):
            rc = utils.subprocess_call(self.logger, "/sbin/service iptables status >/dev/null 2>/dev/null", shell=True)
            if rc == 0:
                status.append(_("since iptables may be running, ensure 69, 80/443, and %(xmlrpc)s are unblocked") % {"xmlrpc": self.settings.xmlrpc_port})

    def check_yum(self, status):
        """
        Check if the yum-stack is available. On Debian based distros this will always return without checking.

        :param status: The status list with possible problems.
        """
        if self.checked_family == "debian":
            return

        if not os.path.exists("/usr/bin/createrepo"):
            status.append(_("createrepo package is not installed, needed for cobbler import and cobbler reposync, install createrepo?"))

        if not os.path.exists("/usr/bin/dnf") and not os.path.exists("/usr/bin/reposync"):
            status.append(_("reposync not installed, install yum-utils"))

        if os.path.exists("/usr/bin/dnf") and not os.path.exists("/usr/bin/reposync"):
            status.append(_("reposync is not installed, install yum-utils or dnf-plugins-core"))

        if not os.path.exists("/usr/bin/dnf") and not os.path.exists("/usr/bin/yumdownloader"):
            status.append(_("yumdownloader is not installed, install yum-utils"))

        if os.path.exists("/usr/bin/dnf") and not os.path.exists("/usr/bin/yumdownloader"):
            status.append(_("yumdownloader is not installed, install yum-utils or dnf-plugins-core"))

    def check_debmirror(self, status):
        """
        Check if debmirror is available and the config file for it exists. If the distro familiy is suse then this will
        pass without checking.

        :param status: The status list with possible problems.
        """
        if self.checked_family == "suse":
            return

        if not os.path.exists("/usr/bin/debmirror"):
            status.append(_("debmirror package is not installed, it will be required to manage debian deployments and repositories"))
        if os.path.exists("/etc/debmirror.conf"):
            f = open("/etc/debmirror.conf")
            re_dists = re.compile(r'@dists=')
            re_arches = re.compile(r'@arches=')
            for line in f.readlines():
                if re_dists.search(line) and not line.strip().startswith("#"):
                    status.append(_("comment out 'dists' on /etc/debmirror.conf for proper debian support"))
                if re_arches.search(line) and not line.strip().startswith("#"):
                    status.append(_("comment out 'arches' on /etc/debmirror.conf for proper debian support"))

    def check_name(self, status):
        """
        If the server name in the config file is still set to localhost automatic installations run from koan will not
        have proper kernel line parameters.

        :param status: The status list with possible problems.
        """
        if self.settings.server == "127.0.0.1":
            status.append(_("The 'server' field in /etc/cobbler/settings must be set to something other than localhost, or automatic installation features will not work.  This should be a resolvable hostname or IP for the boot server as reachable by all machines that will use it."))
        if self.settings.next_server == "127.0.0.1":
            status.append(_("For PXE to be functional, the 'next_server' field in /etc/cobbler/settings must be set to something other than 127.0.0.1, and should match the IP of the boot server on the PXE network."))

    def check_selinux(self, status):
        """
        Suggests various SELinux rules changes to run Cobbler happily with SELinux in enforcing mode.

        :param status: The status list with possible problems.
        """
        # FIXME: this method could use some refactoring in the future.
        if self.checked_family == "debian":
            return

        enabled = self.collection_mgr.api.is_selinux_enabled()
        if enabled:
            status.append(_("SELinux is enabled. Please review the following wiki page for details on ensuring Cobbler works correctly in your SELinux environment:\n    https://github.com/cobbler/cobbler/wiki/Selinux"))

    def check_for_default_password(self, status):
        """
        Check if the default password of Cobbler was changed.

        :param status: The status list with possible problems.
        """
        default_pass = self.settings.default_password_crypted
        if default_pass == "$1$mF86/UHC$WvcIcX2t6crBz2onWxyac.":
            status.append(_("The default password used by the sample templates for newly installed machines (default_password_crypted in /etc/cobbler/settings) is still set to 'cobbler' and should be changed, try: \"openssl passwd -1 -salt 'random-phrase-here' 'your-password-here'\" to generate new one"))

    def check_for_unreferenced_repos(self, status):
        """
        Check if there are repositories which are not used and thus could be removed.

        :param status: The status list with possible problems.
        """
        repos = []
        referenced = []
        not_found = []
        for r in self.collection_mgr.api.repos():
            repos.append(r.name)
        for p in self.collection_mgr.api.profiles():
            my_repos = p.repos
            if my_repos != "<<inherit>>":
                referenced.extend(my_repos)
        for r in referenced:
            if r not in repos and r != "<<inherit>>":
                not_found.append(r)
        if len(not_found) > 0:
            status.append(_("One or more repos referenced by profile objects is no longer defined in Cobbler: %s") % ", ".join(not_found))

    def check_for_unsynced_repos(self, status):
        """
        Check if there are unsynchronized repositories which need an update.

        :param status: The status list with possible problems.
        """
        need_sync = []
        for r in self.collection_mgr.repos():
            if r.mirror_locally == 1:
                lookfor = os.path.join(self.settings.webdir, "repo_mirror", r.name)
                if not os.path.exists(lookfor):
                    need_sync.append(r.name)
        if len(need_sync) > 0:
            status.append(_("One or more repos need to be processed by cobbler reposync for the first time before automating installations using them: %s") % ", ".join(need_sync))

    def check_dhcpd_bin(self, status):
        """
        Check if dhcpd is installed.

        :param status: The status list with possible problems.
        """
        if not os.path.exists("/usr/sbin/dhcpd"):
            status.append("dhcpd is not installed")

    def check_dnsmasq_bin(self, status):
        """
        Check if dnsmasq is installed.

        :param status: The status list with possible problems.
        """
        rc = utils.subprocess_get(self.logger, "dnsmasq --help")
        if rc.find("Valid options") == -1:
            status.append("dnsmasq is not installed and/or in path")

    def check_bind_bin(self, status):
        """
        Check if bind is installed.

        :param status: The status list with possible problems.
        """
        rc = utils.subprocess_get(self.logger, "named -v")
        # it should return something like "BIND 9.6.1-P1-RedHat-9.6.1-6.P1.fc11"
        if rc.find("BIND") == -1:
            status.append("named is not installed and/or in path")

    def check_for_wget_curl(self, status):
        """
        Check to make sure wget or curl is installed

        :param status: The status list with possible problems.
        """
        rc1 = utils.subprocess_call(self.logger, "which wget")
        rc2 = utils.subprocess_call(self.logger, "which curl")
        if rc1 != 0 and rc2 != 0:
            status.append("Neither wget nor curl are installed and/or available in $PATH. Cobbler requires that one of these utilities be installed.")

    def check_bootloaders(self, status):
        """
        Check if network bootloaders are installed

        :param status: The status list with possible problems.
        """
        # FIXME: move zpxe.rexx to loaders

        bootloaders = {
            "menu.c32": ["/usr/share/syslinux/menu.c32",
                         "/usr/lib/syslinux/menu.c32",
                         "/var/lib/cobbler/loaders/menu.c32"],
            "yaboot": ["/var/lib/cobbler/loaders/yaboot*"],
            "pxelinux.0": ["/usr/share/syslinux/pxelinux.0",
                           "/usr/lib/syslinux/pxelinux.0",
                           "/var/lib/cobbler/loaders/pxelinux.0"],
            "efi": ["/var/lib/cobbler/loaders/grub-x86.efi",
                    "/var/lib/cobbler/loaders/grub-x86_64.efi"],
        }

        # look for bootloaders at the glob locations above
        found_bootloaders = []
        items = list(bootloaders.keys())
        for loader_name in items:
            patterns = bootloaders[loader_name]
            for pattern in patterns:
                matches = glob.glob(pattern)
                if len(matches) > 0:
                    found_bootloaders.append(loader_name)
        not_found = []

        # invert the list of what we've found so we can report on what we haven't found
        for loader_name in items:
            if loader_name not in found_bootloaders:
                not_found.append(loader_name)

        if len(not_found) > 0:
            status.append("some network boot-loaders are missing from /var/lib/cobbler/loaders, you may run 'cobbler get-loaders' to download them, or, if you only want to handle x86/x86_64 netbooting, you may ensure that you have installed a *recent* version of the syslinux package installed and can ignore this message entirely.  Files in this directory, should you want to support all architectures, should include pxelinux.0, menu.c32, and yaboot. The 'cobbler get-loaders' command is the easiest way to resolve these requirements.")

    def check_tftpd_dir(self, status):
        """
        Check if cobbler.conf's tftpboot directory exists

        :param status: The status list with possible problems.
        """
        if self.checked_family == "debian":
            return

        bootloc = self.settings.tftpboot_location
        if not os.path.exists(bootloc):
            status.append(_("please create directory: %(dirname)s") % {"dirname": bootloc})

    def check_ctftpd_dir(self, status):
        """
        Check if ``cobbler.conf``'s tftpboot directory exists.

        :param status: The status list with possible problems.
        """
        if self.checked_family == "debian":
            return

        bootloc = self.settings.tftpboot_location
        if not os.path.exists(bootloc):
            status.append(_("please create directory: %(dirname)s") % {"dirname": bootloc})

    def check_rsync_conf(self, status):
        """
        Check that rsync is enabled to autostart.

        :param status: The status list with possible problems.
        """
        if self.checked_family == "debian":
            return

        if os.path.exists("/usr/lib/systemd/system/rsyncd.service"):
            if not os.path.exists("/etc/systemd/system/multi-user.target.wants/rsyncd.service"):
                status.append(_("enable and start rsyncd.service with systemctl"))

    def check_dhcpd_conf(self, status):
        """
        NOTE: this code only applies if Cobbler is *NOT* set to generate a ``dhcp.conf`` file.

        Check that dhcpd *appears* to be configured for pxe booting. We can't assure file correctness. Since a Cobbler
        user might have dhcp on another server, it's okay if it's not there and/or not configured correctly according
        to automated scans.

        :param status: The status list with possible problems.
        """
        if not (self.settings.manage_dhcp == 0):
            return

        if os.path.exists(self.settings.dhcpd_conf):
            match_next = False
            match_file = False
            f = open(self.settings.dhcpd_conf)
            for line in f.readlines():
                if line.find("next-server") != -1:
                    match_next = True
                if line.find("filename") != -1:
                    match_file = True
            if not match_next:
                status.append(_("expecting next-server entry in %(file)s") % {"file": self.settings.dhcpd_conf})
            if not match_file:
                status.append(_("missing file: %(file)s") % {"file": self.settings.dhcpd_conf})
        else:
            status.append(_("missing file: %(file)s") % {"file": self.settings.dhcpd_conf})

# EOF
07070100000061000081A40000000000000000000000015ECE244400000CC6000000000000000000000000000000000000002B00000000cobbler-3.1.2/cobbler/actions/dlcontent.py    """
Downloads bootloader content for all arches for when the user doesn't want to supply their own.

Copyright 2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""

from builtins import object
import os

from cobbler import clogger
from cobbler import download_manager


class ContentDownloader(object):

    def __init__(self, collection_mgr, logger=None):
        """
        Constructor

        :param collection_mgr: The main collection manager instance which is used by the current running server.
        :param logger: The logger object which logs to the desired target.
        """
        self.collection_mgr = collection_mgr
        self.settings = collection_mgr.settings()
        if logger is None:
            logger = clogger.Logger()
        self.logger = logger

    def run(self, force=False):
        """
        Download bootloader content for all of the latest bootloaders, since the user has chosen to not supply their
        own. You may ask "why not get this from yum", we also want this to be able to work on Debian and further do not
        want folks to have to install a cross compiler. For those that don't like this approach they can still source
        their cross-arch bootloader content manually.

        :param force: If the target path should be overwritten, even if there are already files present.
        :type force: bool
        """

        content_server = "https://cobbler.github.io/loaders"
        dest = "/var/lib/cobbler/loaders"

        files = (
            ("%s/README" % content_server, "%s/README" % dest),
            ("%s/COPYING.yaboot" % content_server, "%s/COPYING.yaboot" % dest),
            ("%s/COPYING.syslinux" % content_server, "%s/COPYING.syslinux" % dest),
            ("%s/yaboot-1.3.17" % content_server, "%s/yaboot" % dest),
            ("%s/pxelinux.0-3.86" % content_server, "%s/pxelinux.0" % dest),
            ("%s/menu.c32-3.86" % content_server, "%s/menu.c32" % dest),
            ("%s/grub-0.97-x86.efi" % content_server, "%s/grub-x86.efi" % dest),
            ("%s/grub-0.97-x86_64.efi" % content_server, "%s/grub-x86_64.efi" % dest),
        )

        dlmgr = download_manager.DownloadManager(self.collection_mgr, self.logger)
        for src, dst in files:
            if os.path.exists(dst) and not force:
                self.logger.info("path %s already exists, not overwriting existing content, use --force if you wish to update" % dst)
                continue
            self.logger.info("downloading %s to %s" % (src, dst))
            dlmgr.download_file(src, dst)

# EOF
  07070100000062000081A40000000000000000000000015ECE244400000BE4000000000000000000000000000000000000002A00000000cobbler-3.1.2/cobbler/actions/hardlink.py """
Hard links Cobbler content together to save space.

Copyright 2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""

from builtins import object
import os
from cobbler import utils

from cobbler import clogger


class HardLinker(object):

    def __init__(self, collection_mgr, logger=None):
        """
        Constructor
        """
        # self.collection_mgr   = collection_mgr
        # self.api      = collection_mgr.api
        # self.settings = collection_mgr.settings()
        self.hardlink = None
        if logger is None:
            logger = clogger.Logger()
        self.logger = logger
        self.family = utils.get_family()

        # Getting the path to hardlink
        for possible_location in ["/usr/bin/hardlink", "/usr/sbin/hardlink"]:
            if os.path.exists(possible_location):
                self.hardlink = possible_location
        if not self.hardlink:
            utils.die(self.logger, "please install 'hardlink' to use this feature")

        # Setting the args for hardlink accodring to the distribution
        if self.family == "debian":
            self.hardlink_args = "-f -p -o -t -v /var/www/cobbler/distro_mirror /var/www/cobbler/repo_mirror"
        elif self.family == "suse":
            self.hardlink_args = "-f -v /var/www/cobbler/distro_mirror /var/www/cobbler/repo_mirror"
        else:
            self.hardlink_args = "-c -v /var/www/cobbler/distro_mirror /var/www/cobbler/repo_mirror"
        self.hardlink_cmd = "%s %s" % (self.hardlink, self.hardlink_args)

    def run(self):
        """
        Simply hardlinks directories that are Cobbler managed.
        This is a /very/ simple command but may grow more complex
        and intelligent over time.
        """

        # FIXME: if these directories become configurable some
        # changes will be required here.

        self.logger.info("now hardlinking to save space, this may take some time.")

        rc = utils.subprocess_call(self.logger, self.hardlink_cmd, shell=True)
        # FIXME: how about settings? (self.settings.webdir)
        webdir = "/var/www/cobbler"
        if os.path.exists("/srv/www"):
            webdir = "/srv/www/cobbler"

        rc = utils.subprocess_call(self.logger, self.hardlink + " -c -v " + webdir + "/distro_mirror /var/www/cobbler/repo_mirror", shell=True)

        return rc
07070100000063000081A40000000000000000000000015ECE2444000020BB000000000000000000000000000000000000002A00000000cobbler-3.1.2/cobbler/actions/litesync.py """
Running small pieces of Cobbler sync when certain actions are taken,
such that we don't need a time consuming sync when adding new
systems if nothing has changed for systems that have already
been created.

Copyright 2006-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""

from builtins import object
import os
import os.path

from cobbler import clogger
from cobbler import module_loader
from cobbler import utils


class CobblerLiteSync(object):
    """
    Handles conversion of internal state to the tftpboot tree layout
    """

    def __init__(self, collection_mgr, verbose=False, logger=None):
        """
        Constructor

        :param collection_mgr: The collection manager which has all information.
        :param verbose: Whether the action should be logged verbose.
        :type verbose: bool
        :param logger: The logger to audit all action with.
        """
        self.verbose = verbose
        self.collection_mgr = collection_mgr
        self.distros = collection_mgr.distros()
        self.profiles = collection_mgr.profiles()
        self.systems = collection_mgr.systems()
        self.images = collection_mgr.images()
        self.settings = collection_mgr.settings()
        self.repos = collection_mgr.repos()
        if logger is None:
            logger = clogger.Logger()
        self.logger = logger
        self.tftpd = module_loader.get_module_from_file("tftpd", "module", "in_tftpd").get_manager(collection_mgr, logger)
        self.sync = collection_mgr.api.get_sync(verbose, logger=self.logger)
        self.sync.make_tftpboot()

    def add_single_distro(self, name):
        """
        Sync adding a single distro.

        :param name: The name of the distribution.
        """
        # get the distro record
        distro = self.distros.find(name=name)
        if distro is None:
            return
        # copy image files to images/$name in webdir & tftpboot:
        self.sync.tftpgen.copy_single_distro_files(distro, self.settings.webdir, True)
        self.tftpd.add_single_distro(distro)

        # create the symlink for this distro
        src_dir = utils.find_distro_path(self.settings, distro)
        dst_dir = os.path.join(self.settings.webdir, "links", name)
        if os.path.exists(dst_dir):
            self.logger.warning("skipping symlink, destination (%s) exists" % dst_dir)
        elif utils.path_tail(os.path.join(self.settings.webdir, "distro_mirror"), src_dir) == "":
            self.logger.warning("skipping symlink, the source (%s) is not in %s" % (src_dir, os.path.join(self.settings.webdir, "distro_mirror")))
        else:
            try:
                self.logger.info("trying symlink %s -> %s" % (src_dir, dst_dir))
                os.symlink(src_dir, dst_dir)
            except (IOError, OSError):
                self.logger.error("symlink failed (%s -> %s)" % (src_dir, dst_dir))

        # generate any templates listed in the distro
        self.sync.tftpgen.write_templates(distro, write_file=True)
        # cascade sync
        kids = distro.get_children()
        for k in kids:
            self.add_single_profile(k.name, rebuild_menu=False)
        self.sync.tftpgen.make_pxe_menu()

    def add_single_image(self, name):
        """
        Sync adding a single image.

        :param name: The name of the image.
        """
        image = self.images.find(name=name)
        self.sync.tftpgen.copy_single_image_files(image)
        kids = image.get_children()
        for k in kids:
            self.add_single_system(k.name)
        self.sync.tftpgen.make_pxe_menu()

    def remove_single_distro(self, name):
        """
        Sync removing a single distro.

        :param name: The name of the distribution.
        """
        bootloc = self.settings.tftpboot_location
        # delete contents of images/$name directory in webdir
        utils.rmtree(os.path.join(self.settings.webdir, "images", name))
        # delete contents of images/$name in tftpboot
        utils.rmtree(os.path.join(bootloc, "images", name))
        # delete potential symlink to tree in webdir/links
        utils.rmfile(os.path.join(self.settings.webdir, "links", name))

    def remove_single_image(self, name):
        """
        Sync removing a single image.

        :param name: The name of the image.
        """
        bootloc = self.settings.tftpboot_location
        utils.rmfile(os.path.join(bootloc, "images2", name))

    def add_single_profile(self, name, rebuild_menu=True):
        """
        Sync adding a single profile.

        :param name: The name of the profile.
        :type name: str
        :param rebuild_menu: Whether to rebuild the grub/... menu or not.
        :type rebuild_menu: bool
        :return: ``True`` if this succeeded.
        """
        # get the profile object:
        profile = self.profiles.find(name=name)
        if profile is None:
            # Most likely a subprofile's kid has been removed already, though the object tree has not been reloaded and
            # this is just noise.
            return
        # Rebuild the yum configuration files for any attached repos generate any templates listed in the distro.
        self.sync.tftpgen.write_templates(profile)
        # Cascade sync
        kids = profile.get_children()
        for k in kids:
            if k.COLLECTION_TYPE == "profile":
                self.add_single_profile(k.name, rebuild_menu=False)
            else:
                self.add_single_system(k.name)
        if rebuild_menu:
            self.sync.tftpgen.make_pxe_menu()
        return True

    def remove_single_profile(self, name, rebuild_menu=True):
        """
        Sync removing a single profile.

        :param name: The name of the profile.
        :type name: str
        :param rebuild_menu: Whether to rebuild the grub/... menu or not.
        :type rebuild_menu: bool
        """
        # delete profiles/$name file in webdir
        utils.rmfile(os.path.join(self.settings.webdir, "profiles", name))
        # delete contents on autoinstalls/$name directory in webdir
        utils.rmtree(os.path.join(self.settings.webdir, "autoinstalls", name))
        if rebuild_menu:
            self.sync.tftpgen.make_pxe_menu()

    def update_system_netboot_status(self, name):
        """
        Update the netboot status of a system.

        :param name: The name of the system.
        :type name: str
        """
        self.tftpd.update_netboot(name)

    def add_single_system(self, name):
        """
        Sync adding a single system.

        :param name: The name of the system.
        :type name: str
        """
        # get the system object:
        system = self.systems.find(name=name)
        if system is None:
            return
        # rebuild system_list file in webdir
        if self.settings.manage_dhcp:
            self.sync.dhcp.regen_ethers()
        if self.settings.manage_dns:
            self.sync.dns.regen_hosts()
        # write the PXE files for the system
        self.tftpd.add_single_system(system)

    def remove_single_system(self, name):
        """
        Sync removing a single system.

        :param name: The name of the system.
        :type name: str
        """
        bootloc = self.settings.tftpboot_location
        # delete contents of autoinsts_sys/$name in webdir
        system_record = self.systems.find(name=name)

        for (name, interface) in list(system_record.interfaces.items()):
            filename = system_record.get_config_filename(interface=name)
            utils.rmfile(os.path.join(bootloc, "pxelinux.cfg", filename))
            utils.rmfile(os.path.join(bootloc, "grub", filename.upper()))
 07070100000064000081A40000000000000000000000015ECE244400000844000000000000000000000000000000000000002500000000cobbler-3.1.2/cobbler/actions/log.py  """

Copyright 2009, Red Hat, Inc and Others
Bill Peck <bpeck@redhat.com>

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 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
"""

from builtins import filter
from builtins import object
import glob
import os
import os.path
import logging

from cobbler import clogger


class LogTool(object):
    """
    Helpers for dealing with System logs, anamon, etc..
    """

    def __init__(self, collection_mgr, system, api, logger=None):
        """
        Log library constructor requires a Cobbler system object.
        """
        self.system = system
        self.collection_mgr = collection_mgr
        self.settings = collection_mgr.settings()
        self.api = api
        if logger is None:
            logger = clogger.Logger()
        self.logger = logger

    def clear(self):
        """
        Clears the system logs
        """
        anamon_dir = '/var/log/cobbler/anamon/%s' % self.system.name
        if os.path.isdir(anamon_dir):
            logs = list(filter(os.path.isfile, glob.glob('%s/*' % anamon_dir)))
        else:
            logs = []
            logging.info("No log-files found to delete for system: %s", self.system.name)

        for log in logs:
            try:
                with open(log, 'w') as f:
                    f.truncate()
            except IOError as e:
                self.logger.info("Failed to Truncate '%s':%s " % (log, e))
            except OSError as e:
                self.logger.info("Failed to Truncate '%s':%s " % (log, e))
07070100000065000081A40000000000000000000000015ECE244400004909000000000000000000000000000000000000002B00000000cobbler-3.1.2/cobbler/actions/replicate.py    """
Replicate from a Cobbler master.

Copyright 2007-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>
Scott Henson <shenson@redhat.com>

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 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
"""

from future import standard_library
standard_library.install_aliases()
from builtins import str
from builtins import object
import fnmatch
import os
import xmlrpc.client

from cobbler import clogger
from cobbler import utils

OBJ_TYPES = ["distro", "profile", "system", "repo", "image", "mgmtclass", "package", "file"]


class Replicate(object):

    def __init__(self, collection_mgr, logger=None):
        """
        Constructor

        :param collection_mgr: The collection manager which holds all information available in Cobbler.
        :param logger: The logger to audit all action with.
        """
        self.collection_mgr = collection_mgr
        self.settings = collection_mgr.settings()
        self.api = collection_mgr.api
        self.remote = None
        self.uri = None
        if logger is None:
            logger = clogger.Logger()
        self.logger = logger

    def rsync_it(self, from_path, to_path, type=None):
        """
        Rsync from a source to a destination with the rsync options Cobbler was configured with.

        :param from_path: The source to rsync from.
        :param to_path: The destination to rsync to.
        :param type: If set to "repo" this will take the repo rsync options instead of the global ones.
        """
        from_path = "%s::%s" % (self.master, from_path)
        if type == 'repo':
            cmd = "rsync %s %s %s" % (self.settings.replicate_repo_rsync_options, from_path, to_path)
        else:
            cmd = "rsync %s %s %s" % (self.settings.replicate_rsync_options, from_path, to_path)

        rc = utils.subprocess_call(self.logger, cmd, shell=True)
        if rc != 0:
            self.logger.info("rsync failed")

    # -------------------------------------------------------

    def remove_objects_not_on_master(self, obj_type):
        """
        Remove objects on this slave which are not on the master.

        :param obj_type: The type of object which should be synchronized.
        """
        locals = utils.lod_to_dod(self.local_data[obj_type], "uid")
        remotes = utils.lod_to_dod(self.remote_data[obj_type], "uid")

        for (luid, ldata) in list(locals.items()):
            if luid not in remotes:
                try:
                    self.logger.info("removing %s %s" % (obj_type, ldata["name"]))
                    self.api.remove_item(obj_type, ldata["name"], recursive=True, logger=self.logger)
                except Exception:
                    utils.log_exc(self.logger)

    # -------------------------------------------------------

    def add_objects_not_on_local(self, obj_type):
        """
        Add objects locally which are not present on the slave but on the master.

        :param obj_type:
        """
        locals = utils.lod_to_dod(self.local_data[obj_type], "uid")
        remotes = utils.lod_sort_by_key(self.remote_data[obj_type], "depth")

        for rdata in remotes:

            # do not add the system if it is not on the transfer list
            if not rdata["name"] in self.must_include[obj_type]:
                continue

            if not rdata["uid"] in locals:
                creator = getattr(self.api, "new_%s" % obj_type)
                newobj = creator()
                newobj.from_dict(rdata)
                try:
                    self.logger.info("adding %s %s" % (obj_type, rdata["name"]))
                    if not self.api.add_item(obj_type, newobj, logger=self.logger):
                        self.logger.error("failed to add %s %s" % (obj_type, rdata["name"]))
                except Exception:
                    utils.log_exc(self.logger)

    # -------------------------------------------------------

    def replace_objects_newer_on_remote(self, obj_type):
        """
        Replace objects which are newer on the local slave then on the remote slave

        :param obj_type: The type of object to synchronize.
        """
        locals = utils.lod_to_dod(self.local_data[obj_type], "uid")
        remotes = utils.lod_to_dod(self.remote_data[obj_type], "uid")

        for (ruid, rdata) in list(remotes.items()):
            # do not add the system if it is not on the transfer list
            if not rdata["name"] in self.must_include[obj_type]:
                continue

            if ruid in locals:
                ldata = locals[ruid]
                if ldata["mtime"] < rdata["mtime"]:

                    if ldata["name"] != rdata["name"]:
                        self.logger.info("removing %s %s" % (obj_type, ldata["name"]))
                        self.api.remove_item(obj_type, ldata["name"], recursive=True, logger=self.logger)
                    creator = getattr(self.api, "new_%s" % obj_type)
                    newobj = creator()
                    newobj.from_dict(rdata)
                    try:
                        self.logger.info("updating %s %s" % (obj_type, rdata["name"]))
                        if not self.api.add_item(obj_type, newobj):
                            self.logger.error("failed to update %s %s" % (obj_type, rdata["name"]))
                    except Exception:
                        utils.log_exc(self.logger)

    # -------------------------------------------------------

    def replicate_data(self):
        """
        Replicate the local and remote data to each another.

        """
        self.local_data = {}
        self.remote_data = {}
        self.remote_settings = self.remote.get_settings()

        self.logger.info("Querying Both Servers")
        for what in OBJ_TYPES:
            self.remote_data[what] = self.remote.get_items(what)
            self.local_data[what] = self.local.get_items(what)

        self.generate_include_map()

        if self.prune:
            self.logger.info("Removing Objects Not Stored On Master")
            obj_types = OBJ_TYPES[:]
            if len(self.system_patterns) == 0 and "system" in obj_types:
                obj_types.remove("system")
            for what in obj_types:
                self.remove_objects_not_on_master(what)
        else:
            self.logger.info("*NOT* Removing Objects Not Stored On Master")

        if not self.omit_data:
            self.logger.info("Rsyncing distros")
            for distro in list(self.must_include["distro"].keys()):
                if self.must_include["distro"][distro] == 1:
                    self.logger.info("Rsyncing distro %s" % distro)
                    target = self.remote.get_distro(distro)
                    target_webdir = os.path.join(self.remote_settings["webdir"], "distro_mirror")
                    tail = utils.path_tail(target_webdir, target["kernel"])
                    if tail != "":
                        try:
                            # path_tail(a,b) returns something that looks like
                            # an absolute path, but it's really the sub-path
                            # from a that is contained in b. That means we want
                            # the first element of the path
                            dest = os.path.join(self.settings.webdir, "distro_mirror", tail.split("/")[1])
                            self.rsync_it("distro-%s" % target["name"], dest)
                        except:
                            self.logger.error("Failed to rsync distro %s" % distro)
                            continue
                    else:
                        self.logger.warning("Skipping distro %s, as it doesn't appear to live under distro_mirror" % distro)

            self.logger.info("Rsyncing repos")
            for repo in list(self.must_include["repo"].keys()):
                if self.must_include["repo"][repo] == 1:
                    self.rsync_it("repo-%s" % repo, os.path.join(self.settings.webdir, "repo_mirror", repo), "repo")

            self.logger.info("Rsyncing distro repo configs")
            self.rsync_it("cobbler-distros/config/", os.path.join(self.settings.webdir, "distro_mirror", "config"))
            self.logger.info("Rsyncing automatic installation templates & snippets")
            self.rsync_it("cobbler-autoinstalls", "/var/lib/cobbler/autoinstall_templates")
            self.rsync_it("cobbler-snippets", "/var/lib/cobbler/autoinstall_snippets")
            self.logger.info("Rsyncing triggers")
            self.rsync_it("cobbler-triggers", "/var/lib/cobbler/triggers")
            self.logger.info("Rsyncing scripts")
            self.rsync_it("cobbler-scripts", "/var/lib/cobbler/scripts")
        else:
            self.logger.info("*NOT* Rsyncing Data")

        self.logger.info("Removing Objects Not Stored On Local")
        for what in OBJ_TYPES:
            self.add_objects_not_on_local(what)

        self.logger.info("Updating Objects Newer On Remote")
        for what in OBJ_TYPES:
            self.replace_objects_newer_on_remote(what)

    def link_distros(self):
        """
        Link a distro from its location into the web directory to make it available for usage.
        """
        for distro in self.api.distros():
            self.logger.debug("Linking Distro %s" % distro.name)
            utils.link_distro(self.settings, distro)

    def generate_include_map(self):
        """
        Not known what this exactly does.
        """
        self.remote_names = {}
        self.remote_dict = {}
        self.must_include = {
            "distro": {},
            "profile": {},
            "system": {},
            "image": {},
            "repo": {},
            "mgmtclass": {},
            "package": {},
            "file": {}
        }

        for ot in OBJ_TYPES:
            self.remote_names[ot] = list(utils.lod_to_dod(self.remote_data[ot], "name").keys())
            self.remote_dict[ot] = utils.lod_to_dod(self.remote_data[ot], "name")
            if self.sync_all:
                for names in self.remote_dict[ot]:
                    self.must_include[ot][names] = 1

        self.logger.debug("remote names struct is %s" % self.remote_names)

        if not self.sync_all:
            # include all profiles that are matched by a pattern
            for obj_type in OBJ_TYPES:
                patvar = getattr(self, "%s_patterns" % obj_type)
                self.logger.debug("* Finding Explicit %s Matches" % obj_type)
                for pat in patvar:
                    for remote in self.remote_names[obj_type]:
                        self.logger.debug("?: seeing if %s looks like %s" % (remote, pat))
                        if fnmatch.fnmatch(remote, pat):
                            self.logger.debug("Adding %s for pattern match %s." % (remote, pat))
                            self.must_include[obj_type][remote] = 1

            # include all profiles that systems require whether they are explicitly included or not
            self.logger.debug("* Adding Profiles Required By Systems")
            for sys in list(self.must_include["system"].keys()):
                pro = self.remote_dict["system"][sys].get("profile", "")
                self.logger.debug("?: system %s requires profile %s." % (sys, pro))
                if pro != "":
                    self.logger.debug("Adding profile %s for system %s." % (pro, sys))
                    self.must_include["profile"][pro] = 1

            # include all profiles that subprofiles require whether they are explicitly included or not very deep
            # nesting is possible
            self.logger.debug("* Adding Profiles Required By SubProfiles")
            while True:
                loop_exit = True
                for pro in list(self.must_include["profile"].keys()):
                    parent = self.remote_dict["profile"][pro].get("parent", "")
                    if parent != "":
                        if parent not in self.must_include["profile"]:
                            self.logger.debug("Adding parent profile %s for profile %s." % (parent, pro))
                            self.must_include["profile"][parent] = 1
                            loop_exit = False
                if loop_exit:
                    break

            # require all distros that any profiles in the generated list requires whether they are explicitly included
            # or not
            self.logger.debug("* Adding Distros Required By Profiles")
            for p in list(self.must_include["profile"].keys()):
                distro = self.remote_dict["profile"][p].get("distro", "")
                if not distro == "<<inherit>>" and not distro == "~":
                    self.logger.debug("Adding distro %s for profile %s." % (distro, p))
                    self.must_include["distro"][distro] = 1

            # require any repos that any profiles in the generated list requires whether they are explicitly included
            # or not
            self.logger.debug("* Adding Repos Required By Profiles")
            for p in list(self.must_include["profile"].keys()):
                repos = self.remote_dict["profile"][p].get("repos", [])
                if repos != "<<inherit>>":
                    for r in repos:
                        self.logger.debug("Adding repo %s for profile %s." % (r, p))
                        self.must_include["repo"][r] = 1

            # include all images that systems require whether they are explicitly included or not
            self.logger.debug("* Adding Images Required By Systems")
            for sys in list(self.must_include["system"].keys()):
                img = self.remote_dict["system"][sys].get("image", "")
                self.logger.debug("?: system %s requires image %s." % (sys, img))
                if img != "":
                    self.logger.debug("Adding image %s for system %s." % (img, sys))
                    self.must_include["image"][img] = 1

        # FIXME: remove debug
        for ot in OBJ_TYPES:
            self.logger.debug("transfer list for %s is %s" % (ot, list(self.must_include[ot].keys())))

    # -------------------------------------------------------

    def run(self, cobbler_master=None, port="80", distro_patterns=None, profile_patterns=None, system_patterns=None,
            repo_patterns=None, image_patterns=None, mgmtclass_patterns=None, package_patterns=None, file_patterns=None,
            prune=False, omit_data=False, sync_all=False, use_ssl=False):
        """
        Get remote profiles and distros and sync them locally

        :param cobbler_master: The remote url of the master server.
        :param port: The remote port of the master server.
        :param distro_patterns: The pattern of distros to sync.
        :param profile_patterns: The pattern of profiles to sync.
        :param system_patterns: The pattern of systems to sync.
        :param repo_patterns: The pattern of repositories to sync.
        :param image_patterns: The pattern of images to sync.
        :param mgmtclass_patterns: The pattern of management classes to sync.
        :param package_patterns: The pattern of packages to sync.
        :param file_patterns: The pattern of files to sync.
        :param prune: If the local server should be pruned before coping stuff.
        :param omit_data: If the data behind images etc should be omitted or not.
        :param sync_all: If everything should be synced (then the patterns are useless) or not.
        :param use_ssl: If HTTPS or HTTP should be used.
        """

        self.port = str(port)
        self.distro_patterns = distro_patterns.split()
        self.profile_patterns = profile_patterns.split()
        self.system_patterns = system_patterns.split()
        self.repo_patterns = repo_patterns.split()
        self.image_patterns = image_patterns.split()
        self.mgmtclass_patterns = mgmtclass_patterns.split()
        self.package_patterns = package_patterns.split()
        self.file_patterns = file_patterns.split()
        self.omit_data = omit_data
        self.prune = prune
        self.sync_all = sync_all
        self.use_ssl = use_ssl

        if self.use_ssl:
            protocol = 'https'
        else:
            protocol = 'http'

        if cobbler_master is not None:
            self.master = cobbler_master
        elif len(self.settings.cobbler_master) > 0:
            self.master = self.settings.cobbler_master
        else:
            utils.die(self.logger, 'No Cobbler master specified, try --master.')

        self.uri = '%s://%s:%s/cobbler_api' % (protocol, self.master, self.port)

        self.logger.info("cobbler_master      = %s" % cobbler_master)
        self.logger.info("port                = %s" % self.port)
        self.logger.info("distro_patterns     = %s" % self.distro_patterns)
        self.logger.info("profile_patterns    = %s" % self.profile_patterns)
        self.logger.info("system_patterns     = %s" % self.system_patterns)
        self.logger.info("repo_patterns       = %s" % self.repo_patterns)
        self.logger.info("image_patterns      = %s" % self.image_patterns)
        self.logger.info("mgmtclass_patterns  = %s" % self.mgmtclass_patterns)
        self.logger.info("package_patterns    = %s" % self.package_patterns)
        self.logger.info("file_patterns       = %s" % self.file_patterns)
        self.logger.info("omit_data           = %s" % self.omit_data)
        self.logger.info("sync_all            = %s" % self.sync_all)
        self.logger.info("use_ssl             = %s" % self.use_ssl)

        self.logger.info("XMLRPC endpoint: %s" % self.uri)
        self.logger.debug("test ALPHA")
        self.remote = xmlrpc.client.Server(self.uri)
        self.logger.debug("test BETA")
        self.remote.ping()
        self.local = xmlrpc.client.Server("http://127.0.0.1:%s/cobbler_api" % self.settings.http_port)
        self.local.ping()

        self.replicate_data()
        self.link_distros()
        self.logger.info("Syncing")
        self.api.sync(logger=self.logger)
        self.logger.info("Done")
   07070100000066000081A40000000000000000000000015ECE244400003C06000000000000000000000000000000000000002800000000cobbler-3.1.2/cobbler/actions/report.py   """
Report from a Cobbler master.
FIXME: reinstante functionality for 2.0

Copyright 2007-2009, Red Hat, Inc and Others
Anderson Silva <ansilva@redhat.com>
Michael DeHaan <michael.dehaan AT gmail>

This software may be freely redistributed under the terms of the GNU
general public license.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301  USA.
"""

from past.builtins import cmp
from builtins import str
from builtins import object
import re

from cobbler import clogger
from cobbler import utils


class Report(object):

    def __init__(self, collection_mgr, logger=None):
        """
        Constructor

        :param collection_mgr: The collection manager to hold all information in Cobbler available.
        :param logger: The logger to audit all action with.
        """
        self.collection_mgr = collection_mgr
        self.settings = collection_mgr.settings()
        self.api = collection_mgr.api
        self.report_type = None
        self.report_what = None
        self.report_name = None
        self.report_fields = None
        self.report_noheaders = None
        self.array_re = re.compile(r'([^[]+)\[([^]]+)\]')
        if logger is None:
            logger = clogger.Logger()
        self.logger = logger

    def fielder(self, structure, fields_list):
        """
        Return data from a subset of fields of some item

        :param structure: The item structure to report.
        :param fields_list: The list of fields which should be returned.
        :return: The same item with only the given subset of information.
        """
        item = {}

        for field in fields_list:
            internal = self.array_re.search(field)
            # check if field is primary field
            if field in list(structure.keys()):
                item[field] = structure[field]
            # check if subfield in 'interfaces' field
            elif internal and internal.group(1) in list(structure.keys()):
                outer = internal.group(1)
                inner = internal.group(2)
                if isinstance(structure[outer], dict) and inner in structure[outer]:

                    item[field] = structure[outer][inner]
            elif "interfaces" in list(structure.keys()):
                for device in list(structure['interfaces'].keys()):
                    if field in structure['interfaces'][device]:
                        item[field] = device + ': ' + structure['interfaces'][device][field]
        return item

    def reporting_csv(self, info, order, noheaders):
        """
        Formats data on 'info' for csv output

        :param info: The list of iteratable items for csv output.
        :param order: The list of fields which are available in the csv file.
        :param noheaders: Whether headers are printed to the output or not.
        :return: The string with the csv.
        """
        outputheaders = ''
        outputbody = ''
        sep = ','

        info_count = 0
        for item in info:

            item_count = 0
            for key in order:

                if info_count == 0:
                    outputheaders += str(key) + sep

                if key in list(item.keys()):
                    outputbody += str(item[key]) + sep
                else:
                    outputbody += '-' + sep

                item_count += 1

            info_count += 1
            outputbody += '\n'

        outputheaders += '\n'

        if noheaders:
            outputheaders = ''

        return outputheaders + outputbody

    def reporting_trac(self, info, order, noheaders):
        """
        Formats data on 'info' for trac wiki table output

        :param info: The list of iteratable items for table output.
        :param order: The list of fields which are available in the table file.
        :param noheaders: Whether headers are printed to the output or not.
        :return: The string with the generated table.
        """
        outputheaders = ''
        outputbody = ''
        sep = '||'

        info_count = 0
        for item in info:

            item_count = 0
            for key in order:

                if info_count == 0:
                    outputheaders += sep + str(key)

                if key in list(item.keys()):
                    outputbody += sep + str(item[key])
                else:
                    outputbody += sep + '-'

                item_count = item_count + 1

            info_count = info_count + 1
            outputbody += '||\n'

        outputheaders += '||\n'

        if noheaders:
            outputheaders = ''

        return outputheaders + outputbody

    def reporting_doku(self, info, order, noheaders):
        """
        Formats data on 'info' for doku wiki table output

        :param info: The list of iteratable items for table output.
        :param order: The list of fields which are available in the table file.
        :param noheaders: Whether headers are printed to the output or not.
        :return: The string with the generated table.
        """
        outputheaders = ''
        outputbody = ''
        sep1 = '^'
        sep2 = '|'

        info_count = 0
        for item in info:

            item_count = 0
            for key in order:

                if info_count == 0:
                    outputheaders += sep1 + key

                if key in list(item.keys()):
                    outputbody += sep2 + item[key]
                else:
                    outputbody += sep2 + '-'

                item_count = item_count + 1

            info_count = info_count + 1
            outputbody += sep2 + '\n'

        outputheaders += sep1 + '\n'

        if noheaders:
            outputheaders = ''

        return outputheaders + outputbody

    def reporting_mediawiki(self, info, order, noheaders):
        """
        Formats data on 'info' for mediawiki table output

        :param info: The list of iteratable items for table output.
        :param order: The list of fields which are available in the table file.
        :param noheaders: Whether headers are printed to the output or not.
        :return: The string with the generated table.
        """
        outputheaders = ''
        outputbody = ''
        opentable = '{| border="1"\n'
        closetable = '|}\n'
        sep1 = '||'
        sep2 = '|'
        sep3 = '|-'

        info_count = 0
        for item in info:

            item_count = 0
            for key in order:

                if info_count == 0 and item_count == 0:
                    outputheaders += sep2 + key
                elif info_count == 0:
                    outputheaders += sep1 + key

                if item_count == 0:
                    if key in list(item.keys()):
                        outputbody += sep2 + str(item[key])
                    else:
                        outputbody += sep2 + '-'
                else:
                    if key in list(item.keys()):
                        outputbody += sep1 + str(item[key])
                    else:
                        outputbody += sep1 + '-'

                item_count = item_count + 1

            info_count = info_count + 1
            outputbody += '\n' + sep3 + '\n'

        outputheaders += '\n' + sep3 + '\n'

        if noheaders:
            outputheaders = ''

        return opentable + outputheaders + outputbody + closetable

    def print_formatted_data(self, data, order, report_type, noheaders):
        """
        Used for picking the correct format to output data as

        :param data: The list of iteratable items for table output.
        :param order: The list of fields which are available in the table file.
        :param noheaders: Whether headers are printed to the output or not.
        :param report_type: The type of report which should be used.
        """
        if report_type == "csv":
            self.logger.flat(self.reporting_csv(data, order, noheaders))
        if report_type == "mediawiki":
            self.logger.flat(self.reporting_mediawiki(data, order, noheaders))
        if report_type == "trac":
            self.logger.flat(self.reporting_trac(data, order, noheaders))
        if report_type == "doku":
            self.logger.flat(self.reporting_doku(data, order, noheaders))

    def reporting_sorter(self, a, b):
        """
        Used for sorting Cobbler objects for report commands

        :param a: The first object to compare.
        :param b: The second object to compare.
        :return: Whether the first or second object is greater or smaller.
        """
        return cmp(a.name, b.name)

    def reporting_print_sorted(self, collection):
        """
        Prints all objects in a collection sorted by name

        :param collection: The collection to print.
        """
        collection = [x for x in collection]
        collection.sort(self.reporting_sorter)
        for x in collection:
            self.logger.flat(x.to_string())

    def reporting_list_names2(self, collection, name):
        """
        Prints a specific object in a collection.

        :param collection: The collections object to print a collection from.
        :param name: The name of the collection to print.
        """
        obj = collection.get(name)
        if obj is not None:
            self.logger.flat(obj.to_string())

    def reporting_print_all_fields(self, collection, report_name, report_type, report_noheaders):
        """
        Prints all fields in a collection as a table given the report type

        :param collection: The collection to report.
        :param report_name: The name of the report.
        :param report_type: The type of report to give.
        :param report_noheaders: Report without the headers. (May be useful for machine parsing)
        :return: A report with all fields included pretty printed or machine readable.
        """
        # per-item hack
        if report_name:
            collection = collection.find(name=report_name)
            if collection:
                collection = [collection]
            else:
                return

        collection = [x for x in collection]
        collection.sort(self.reporting_sorter)
        data = []
        out_order = []
        count = 0
        for x in collection:
            item = {}
            if x.ITEM_TYPE == "settings":
                structure = x.to_dict()
            else:
                structure = x.to_list()

            for (key, value) in list(structure.items()):
                # exception for systems which could have > 1 interface
                if key == "interfaces":
                    for (device, info) in list(value.items()):
                        for (info_header, info_value) in list(info.items()):
                            item[info_header] = str(device) + ': ' + str(info_value)
                            # needs to create order list for print_formatted_fields
                            if count == 0:
                                out_order.append(info_header)
                else:
                    item[key] = value
                    # needs to create order list for print_formatted_fields
                    if count == 0:
                        out_order.append(key)

            count = count + 1

            data.append(item)

        self.print_formatted_data(data=data, order=out_order, report_type=report_type, noheaders=report_noheaders)

    def reporting_print_x_fields(self, collection, report_name, report_type, report_fields, report_noheaders):
        """
        Prints specific fields in a collection as a table given the report type

        :param collection: The collection to report.
        :param report_name: The name of the report.
        :param report_type: The type of report to give.
        :param report_fields: The fields which should be included in the report.
        :param report_noheaders: Report without the headers. (May be useful for machine parsing)
        """
        # per-item hack
        if report_name:
            collection = collection.find(name=report_name)
            if collection:
                collection = [collection]
            else:
                return

        collection = [x for x in collection]
        collection.sort(self.reporting_sorter)
        data = []
        fields_list = report_fields.replace(' ', '').split(',')

        for x in collection:
            if x.ITEM_TYPE == "settings":
                structure = x.to_dict()
            else:
                structure = x.to_list()
            item = self.fielder(structure, fields_list)
            data.append(item)

        self.print_formatted_data(data=data, order=fields_list, report_type=report_type, noheaders=report_noheaders)

    # -------------------------------------------------------

    def run(self, report_what=None, report_name=None, report_type=None, report_fields=None, report_noheaders=None):
        """
        Get remote profiles and distros and sync them locally

        1. Handles original report output
        2. Handles all fields of report outputs as table given a format
        3. Handles specific fields of report outputs as table given a format

        :param report_what: What should be reported. May be "all".
        :param report_name: The name of the report.
        :param report_type: The type of report to give.
        :param report_fields: The fields which should be included in the report.
        :param report_noheaders: Report without the headers. (May be useful for machine parsing)
        """
        if report_type == 'text' and report_fields == 'all':
            for collection_name in ["distro", "profile", "system", "repo", "network", "image", "mgmtclass", "package", "file"]:
                if report_what == "all" or report_what == collection_name or report_what == "%ss" % collection_name or report_what == "%ses" % collection_name:
                    if report_name:
                        self.reporting_list_names2(self.api.get_items(collection_name), report_name)
                    else:
                        self.reporting_print_sorted(self.api.get_items(collection_name))

        elif report_type == 'text' and report_fields != 'all':
            utils.die(self.logger, "The 'text' type can only be used with field set to 'all'")

        elif report_type != 'text' and report_fields == 'all':
            for collection_name in ["distro", "profile", "system", "repo", "network", "image", "mgmtclass", "package", "file"]:
                if report_what == "all" or report_what == collection_name or report_what == "%ss" % collection_name or report_what == "%ses" % collection_name:
                    self.reporting_print_all_fields(self.api.get_items(collection_name), report_name, report_type, report_noheaders)

        else:
            for collection_name in ["distro", "profile", "system", "repo", "network", "image", "mgmtclass", "package", "file"]:
                if report_what == "all" or report_what == collection_name or report_what == "%ss" % collection_name or report_what == "%ses" % collection_name:
                    self.reporting_print_x_fields(self.api.get_items(collection_name), report_name, report_type, report_fields, report_noheaders)
  07070100000067000081A40000000000000000000000015ECE244400007499000000000000000000000000000000000000002A00000000cobbler-3.1.2/cobbler/actions/reposync.py """
Builds out and synchronizes yum repo mirrors.
Initial support for rsync, perhaps reposync coming later.

Copyright 2006-2007, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""

from builtins import range
from builtins import object
import os
import os.path
import pipes
import stat

HAS_YUM = True
try:
    import yum
except:
    HAS_YUM = False

from cobbler import clogger
from cobbler import utils
from cobbler import download_manager
from cobbler.utils import os_release


def repo_walker(top, func, arg):
    """
    Directory tree walk with callback function.

    For each directory in the directory tree rooted at top (including top itself, but excluding '.' and '..'), call
    func(arg, dirname, fnames). dirname is the name of the directory, and fnames a list of the names of the files and
    subdirectories in dirname (excluding '.' and '..').  func may modify the fnames list in-place (e.g. via del or slice
    assignment), and walk will only recurse into the subdirectories whose names remain in fnames; this can be used to
    implement a filter, or to impose a specific order of visiting.  No semantics are defined for, or required of, arg,
    beyond that arg is always passed to func. It can be used, e.g., to pass a filename pattern, or a mutable object
    designed to accumulate statistics. Passing None for arg is common.

    :param top: The directory that should be taken as root. The root dir will also be included in the processing.
    :param func: The function that should be executed.
    :param arg: The arguments for that function.
    """
    try:
        names = os.listdir(top)
    except os.error:
        return
    func(arg, top, names)
    for name in names:
        name = os.path.join(top, name)
        try:
            st = os.lstat(name)
        except os.error:
            continue
        if stat.S_ISDIR(st.st_mode):
            repo_walker(name, func, arg)


class RepoSync(object):
    """
    Handles conversion of internal state to the tftpboot tree layout.
    """

    # ==================================================================================

    def __init__(self, collection_mgr, tries=1, nofail=False, logger=None):
        """
        Constructor

        :param collection_mgr: The object which holds all information in Cobbler.
        :param tries: The number of tries before the operation fails.
        :param nofail: This sets the strictness of the reposync result handling.
        :param logger: The logger to audit all actions with.
        """
        self.verbose = True
        self.api = collection_mgr.api
        self.collection_mgr = collection_mgr
        self.distros = collection_mgr.distros()
        self.profiles = collection_mgr.profiles()
        self.systems = collection_mgr.systems()
        self.settings = collection_mgr.settings()
        self.repos = collection_mgr.repos()
        self.rflags = self.settings.reposync_flags
        self.tries = tries
        self.nofail = nofail
        self.logger = logger
        self.dlmgr = download_manager.DownloadManager(self.collection_mgr, self.logger)

        if logger is None:
            self.logger = clogger.Logger()

        self.logger.info("hello, reposync")

    # ===================================================================

    def run(self, name=None, verbose=True):
        """
        Syncs the current repo configuration file with the filesystem.

        :param name: The name of the repository to synchronize.
        :param verbose: If the action should be logged verbose or not.
        :type verbose: bool
        """

        self.logger.info("run, reposync, run!")

        try:
            self.tries = int(self.tries)
        except:
            utils.die(self.logger, "retry value must be an integer")

        self.verbose = verbose

        report_failure = False
        for repo in self.repos:
            if name is not None and repo.name != name:
                # Invoked to sync only a specific repo, this is not the one
                continue
            elif name is None and not repo.keep_updated:
                # Invoked to run against all repos, but this one is off
                self.logger.info("%s is set to not be updated" % repo.name)
                continue

            repo_mirror = os.path.join(self.settings.webdir, "repo_mirror")
            repo_path = os.path.join(repo_mirror, repo.name)

            if not os.path.isdir(repo_path) and not repo.mirror.lower().startswith("rhn://"):
                os.makedirs(repo_path)

            # Set the environment keys specified for this repo and save the old one if they modify an existing variable.

            env = repo.environment
            old_env = {}

            for k in list(env.keys()):
                self.logger.debug("setting repo environment: %s=%s" % (k, env[k]))
                if env[k] is not None:
                    if os.getenv(k):
                        old_env[k] = os.getenv(k)
                    else:
                        os.environ[k] = env[k]

            # Which may actually NOT reposync if the repo is set to not mirror locally but that's a technicality.

            for x in range(self.tries + 1, 1, -1):
                success = False
                try:
                    self.sync(repo)
                    success = True
                    break
                except:
                    utils.log_exc(self.logger)
                    self.logger.warning("reposync failed, tries left: %s" % (x - 2))

            # Cleanup/restore any environment variables that were added or changed above.

            for k in list(env.keys()):
                if env[k] is not None:
                    if k in old_env:
                        self.logger.debug("resetting repo environment: %s=%s" % (k, old_env[k]))
                        os.environ[k] = old_env[k]
                    else:
                        self.logger.debug("removing repo environment: %s=%s" % (k, env[k]))
                        del os.environ[k]

            if not success:
                report_failure = True
                if not self.nofail:
                    utils.die(self.logger, "reposync failed, retry limit reached, aborting")
                else:
                    self.logger.error("reposync failed, retry limit reached, skipping")

            self.update_permissions(repo_path)

        if report_failure:
            utils.die(self.logger, "overall reposync failed, at least one repo failed to synchronize")

    # ==================================================================================

    def sync(self, repo):

        """
        Conditionally sync a repo, based on type.

        :param repo: The repo to sync.
        """

        if repo.breed == "rhn":
            self.rhn_sync(repo)
        elif repo.breed == "yum":
            self.yum_sync(repo)
        elif repo.breed == "apt":
            self.apt_sync(repo)
        elif repo.breed == "rsync":
            self.rsync_sync(repo)
        elif repo.breed == "wget":
            self.wget_sync(repo)
        else:
            utils.die(self.logger, "unable to sync repo (%s), unknown or unsupported repo type (%s)"
                      % (repo.name, repo.breed))

    # ====================================================================================

    def createrepo_walker(self, repo, dirname, fnames):
        """
        Used to run createrepo on a copied Yum mirror.

        :param repo: The repository object to run for.
        :param dirname: The directory to run in.
        :param fnames: Not known what this is for.
        """
        if os.path.exists(dirname) or repo['breed'] == 'rsync':
            utils.remove_yum_olddata(dirname)

            # add any repo metadata we can use
            mdoptions = []
            if os.path.isfile("%s/.origin/repomd.xml" % (dirname)):
                if not HAS_YUM:
                    utils.die(self.logger, "yum is required to use this feature")

                rmd = yum.repoMDObject.RepoMD('', "%s/.origin/repomd.xml" % (dirname))
                if "group" in rmd.repoData:
                    groupmdfile = rmd.getData("group").location[1]
                    mdoptions.append("-g %s" % groupmdfile)
                if "prestodelta" in rmd.repoData:
                    # need createrepo >= 0.9.7 to add deltas
                    if utils.get_family() in ("redhat", "suse"):
                        cmd = "/usr/bin/rpmquery --queryformat=%{VERSION} createrepo"
                        createrepo_ver = utils.subprocess_get(self.logger, cmd)
                        if utils.compare_versions_gt(createrepo_ver, "0.9.7"):
                            mdoptions.append("--deltas")
                        else:
                            self.logger.error("this repo has presto metadata; you must upgrade createrepo to >= 0.9.7 first and then need to resync the repo through Cobbler.")

            blended = utils.blender(self.api, False, repo)
            flags = blended.get("createrepo_flags", "(ERROR: FLAGS)")
            try:
                cmd = "createrepo %s %s %s" % (" ".join(mdoptions), flags, pipes.quote(dirname))
                utils.subprocess_call(self.logger, cmd)
            except:
                utils.log_exc(self.logger)
                self.logger.error("createrepo failed.")
            del fnames[:]           # we're in the right place

    # ====================================================================================

    def wget_sync(self, repo):

        """
        Handle mirroring of directories using wget

        :param repo: The repo object to sync via wget.
        """

        repo_mirror = repo.mirror.strip()

        if repo.rpm_list != "" and repo.rpm_list != []:
            self.logger.warning("--rpm-list is not supported for wget'd repositories")

        # FIXME: don't hardcode
        dest_path = os.path.join(self.settings.webdir + "/repo_mirror", repo.name)

        # FIXME: wrapper for subprocess that logs to logger
        cmd = "wget -N -np -r -l inf -nd -P %s %s" % (pipes.quote(dest_path), pipes.quote(repo_mirror))
        rc = utils.subprocess_call(self.logger, cmd)

        if rc != 0:
            utils.die(self.logger, "cobbler reposync failed")
        repo_walker(dest_path, self.createrepo_walker, repo)
        self.create_local_file(dest_path, repo)

    # ====================================================================================

    def rsync_sync(self, repo):

        """
        Handle copying of rsync:// and rsync-over-ssh repos.

        :param repo: The repo to sync via rsync.
        """

        if not repo.mirror_locally:
            utils.die(self.logger, "rsync:// urls must be mirrored locally, yum cannot access them directly")

        if repo.rpm_list != "" and repo.rpm_list != []:
            self.logger.warning("--rpm-list is not supported for rsync'd repositories")

        # FIXME: don't hardcode
        dest_path = os.path.join(self.settings.webdir + "/repo_mirror", repo.name)

        spacer = ""
        if not repo.mirror.startswith("rsync://") and not repo.mirror.startswith("/"):
            spacer = "-e ssh"
        if not repo.mirror.strip().endswith("/"):
            repo.mirror = "%s/" % repo.mirror

        # FIXME: wrapper for subprocess that logs to logger
        cmd = "rsync -rltDv --copy-unsafe-links --delete-after %s --delete --exclude-from=/etc/cobbler/rsync.exclude %s %s" % (spacer, pipes.quote(repo.mirror), pipes.quote(dest_path))
        rc = utils.subprocess_call(self.logger, cmd)

        if rc != 0:
            utils.die(self.logger, "cobbler reposync failed")
        repo_walker(dest_path, self.createrepo_walker, repo)
        self.create_local_file(dest_path, repo)

    # ====================================================================================

    def reposync_cmd(self):

        """
        Determine reposync command

        :return: The path to the reposync command. If dnf exists it is used instead of reposync.
        """

        cmd = None                # reposync command
        if os.path.exists("/usr/bin/dnf"):
            cmd = "/usr/bin/dnf reposync"
        elif os.path.exists("/usr/bin/reposync"):
            cmd = "/usr/bin/reposync"
        else:
            # Warn about not having yum-utils.  We don't want to require it in the package because Fedora 22+ has moved
            # to dnf.
            utils.die(self.logger, "no /usr/bin/reposync found, please install yum-utils")
        return cmd

    # ====================================================================================

    def rhn_sync(self, repo):

        """
        Handle mirroring of RHN repos.

        :param repo: The repo object to synchronize.
        """

        # reposync command
        cmd = self.reposync_cmd()

        # flag indicating not to pull the whole repo
        has_rpm_list = False

        # detect cases that require special handling
        if repo.rpm_list != "" and repo.rpm_list != []:
            has_rpm_list = True

        # Create yum config file for use by reposync
        # FIXME: don't hardcode
        dest_path = os.path.join(self.settings.webdir + "/repo_mirror", repo.name)
        temp_path = os.path.join(dest_path, ".origin")

        if not os.path.isdir(temp_path):
            # FIXME: there's a chance this might break the RHN D/L case
            os.makedirs(temp_path)

        # how we invoke reposync depends on whether this is RHN content or not.

        # This is the somewhat more-complex RHN case.
        # NOTE: this requires that you have entitlements for the server and you give the mirror as rhn://$channelname
        if not repo.mirror_locally:
            utils.die(self.logger, "rhn:// repos do not work with --mirror-locally=1")

        if has_rpm_list:
            self.logger.warning("warning: --rpm-list is not supported for RHN content")
        rest = repo.mirror[6:]      # everything after rhn://
        cmd = "%s %s --repo=%s --download_path=%s" % (cmd, self.rflags, pipes.quote(rest), pipes.quote(self.settings.webdir + "/repo_mirror"))
        if repo.name != rest:
            args = {"name": repo.name, "rest": rest}
            utils.die(self.logger, "ERROR: repository %(name)s needs to be renamed %(rest)s as the name of the cobbler repository must match the name of the RHN channel" % args)

        if repo.arch == "i386":
            # Counter-intuitive, but we want the newish kernels too
            repo.arch = "i686"

        if repo.arch != "":
            cmd = "%s -a %s" % (cmd, repo.arch)

        # Now regardless of whether we're doing yumdownloader or reposync or whether the repo was http://, ftp://, or
        # rhn://, execute all queued commands here. Any failure at any point stops the operation.

        if repo.mirror_locally:
            utils.subprocess_call(self.logger, cmd)

        # Some more special case handling for RHN. Create the config file now, because the directory didn't exist
        # earlier.

        self.create_local_file(temp_path, repo, output=False)

        # Now run createrepo to rebuild the index

        if repo.mirror_locally:
            repo_walker(dest_path, self.createrepo_walker, repo)

        # Create the config file the hosts will use to access the repository.

        self.create_local_file(dest_path, repo)

    # ====================================================================================

    def gen_urlgrab_ssl_opts(self, yumopts):
        """
        This function translates yum repository options into the appropriate options for python-requests

        :param yumopts: The options to convert.
        :return: A tuple with the cert and a boolean if it should be verified or not.
        :rtype: (str, bool)
        """
        # use SSL options if specified in yum opts
        if 'sslclientkey' and 'sslclientcert' in yumopts:
            cert = (yumopts['sslclientcert'], yumopts['sslclientkey'])
        # Note that the default of requests is to verify the peer and host but the default here is NOT to verify them
        # unless sslverify is explicitly set to 1 in yumopts.
        if 'sslverify' in yumopts:
            if yumopts['sslverify'] == 1:
                verify = True
            else:
                verify = False

        return (cert, verify)

    # ====================================================================================

    def yum_sync(self, repo):

        """
        Handle copying of http:// and ftp:// yum repos.

        :param repo: The yum reporitory to sync.
        """

        # create the config file the hosts will use to access the repository.
        repo_mirror = repo.mirror.strip()
        dest_path = os.path.join(self.settings.webdir + "/repo_mirror", repo.name.strip())
        self.create_local_file(dest_path, repo)

        if not repo.mirror_locally:
            return

        # command to run
        cmd = self.reposync_cmd()
        # flag indicating not to pull the whole repo
        has_rpm_list = False

        # detect cases that require special handling
        if repo.rpm_list != "" and repo.rpm_list != []:
            has_rpm_list = True

        # create yum config file for use by reposync
        temp_path = os.path.join(dest_path, ".origin")

        if not os.path.isdir(temp_path):
            # FIXME: there's a chance this might break the RHN D/L case
            os.makedirs(temp_path)

        temp_file = self.create_local_file(temp_path, repo, output=False)

        if not has_rpm_list:
            # If we have not requested only certain RPMs, use reposync
            cmd = "%s %s --config=%s --repoid=%s --download_path=%s" \
                  % (cmd, self.rflags, temp_file, pipes.quote(repo.name),
                     pipes.quote(self.settings.webdir + "/repo_mirror"))
            if repo.arch != "":
                if repo.arch == "x86":
                    # Fix potential arch errors
                    repo.arch = "i386"
                if repo.arch == "i386":
                    # Counter-intuitive, but we want the newish kernels too
                    cmd = "%s -a i686" % (cmd)
                else:
                    cmd = "%s -a %s" % (cmd, repo.arch)

        else:
            # Create the output directory if it doesn't exist
            if not os.path.exists(dest_path):
                os.makedirs(dest_path)

            use_source = ""
            if repo.arch == "src":
                use_source = "--source"

            # Older yumdownloader sometimes explodes on --resolvedeps if this happens to you, upgrade yum & yum-utils
            extra_flags = self.settings.yumdownloader_flags
            cmd = ""
            if os.path.exists("/usr/bin/dnf"):
                cmd = "/usr/bin/dnf download"
            else:
                cmd = "/usr/bin/yumdownloader"
            cmd = "%s %s %s --disablerepo=* --enablerepo=%s -c %s --destdir=%s %s"\
                  % (cmd, extra_flags, use_source, pipes.quote(repo.name), temp_file, pipes.quote(dest_path),
                     " ".join(repo.rpm_list))

        # Now regardless of whether we're doing yumdownloader or reposync or whether the repo was http://, ftp://, or
        # rhn://, execute all queued commands here.  Any failure at any point stops the operation.

        rc = utils.subprocess_call(self.logger, cmd)
        if rc != 0:
            utils.die(self.logger, "cobbler reposync failed")

        repodata_path = os.path.join(dest_path, "repodata")

        # grab repomd.xml and use it to download any metadata we can use
        proxies = None
        if repo.proxy == '<<inherit>>':
            proxies = self.settings.proxy_url_ext
        elif repo.proxy != '<<None>>' and repo.proxy != '':
            proxies = {'http': repo.proxy, 'https': repo.proxy}
        src = repo_mirror + "/repodata/repomd.xml"
        dst = temp_path + "/repomd.xml"
        (cert, verify) = self.gen_urlgrab_ssl_opts(repo.yumopts)
        try:
            self.dlmgr.download_file(src, dst, proxies, cert, verify)
        except Exception as e:
            utils.die(self.logger, "failed to fetch " + src + " " + e.args)

        # Create our repodata directory now, as any extra metadata we're about to download probably lives there
        if not os.path.isdir(repodata_path):
            os.makedirs(repodata_path)
        rmd = yum.repoMDObject.RepoMD('', "%s/repomd.xml" % (temp_path))
        for mdtype in list(rmd.repoData.keys()):
            # don't download metadata files that are created by default
            if mdtype not in ["primary", "primary_db", "filelists", "filelists_db", "other", "other_db"]:
                mdfile = rmd.getData(mdtype).location[1]
                src = repo_mirror + "/" + mdfile
                dst = dest_path + "/" + mdfile
                try:
                    self.dlmgr.download_file(src, dst, proxies, cert, verify)
                except Exception as e:
                    utils.die(self.logger, "failed to fetch " + src + " " + e.args)

        # now run createrepo to rebuild the index
        if repo.mirror_locally:
            repo_walker(dest_path, self.createrepo_walker, repo)

    # ====================================================================================

    def apt_sync(self, repo):
        """
        Handle copying of http:// and ftp:// debian repos.

        :param repo: The apt repository to sync.
        """

        # Warn about not having mirror program.
        mirror_program = "/usr/bin/debmirror"
        if not os.path.exists(mirror_program):
            utils.die(self.logger, "no %s found, please install it" % (mirror_program))

        # command to run
        cmd = ""

        # detect cases that require special handling
        if repo.rpm_list != "" and repo.rpm_list != []:
            utils.die(self.logger, "has_rpm_list not yet supported on apt repos")

        if not repo.arch:
            utils.die(self.logger, "Architecture is required for apt repositories")

        # built destination path for the repo
        dest_path = os.path.join("/var/www/cobbler/repo_mirror", repo.name)

        if repo.mirror_locally:
            # NOTE: Dropping @@suite@@ replace as it is also dropped from "from manage_import_debian"_ubuntu.py due that
            # repo has no os_version attribute. If it is added again it will break the Web UI!
            # mirror = repo.mirror.replace("@@suite@@",repo.os_version)
            mirror = repo.mirror

            idx = mirror.find("://")
            method = mirror[:idx]
            mirror = mirror[idx + 3:]

            idx = mirror.find("/")
            host = mirror[:idx]
            mirror = mirror[idx:]

            dists = ",".join(repo.apt_dists)
            components = ",".join(repo.apt_components)

            mirror_data = "--method=%s --host=%s --root=%s --dist=%s --section=%s"\
                          % (pipes.quote(method), pipes.quote(host), pipes.quote(mirror), pipes.quote(dists),
                             pipes.quote(components))

            rflags = "--nocleanup"
            for x in repo.yumopts:
                if repo.yumopts[x]:
                    rflags += " %s %s" % (x, repo.yumopts[x])
                else:
                    rflags += " %s" % x
            cmd = "%s %s %s %s" % (mirror_program, rflags, mirror_data, dest_path)
            cmd = "%s %s %s %s" % (mirror_program, rflags, mirror_data, pipes.quote(dest_path))
            if repo.arch == "src":
                cmd = "%s --source" % cmd
            else:
                arch = repo.arch
                if arch == "x86":
                    arch = "i386"       # FIX potential arch errors
                if arch == "x86_64":
                    arch = "amd64"      # FIX potential arch errors
                cmd = "%s --nosource -a %s" % (cmd, arch)

            # Set's an environment variable for subprocess, otherwise debmirror will fail as it needs this variable to
            # exist.
            # FIXME: might this break anything? So far it doesn't
            os.putenv("HOME", "/var/lib/cobbler")

            rc = utils.subprocess_call(self.logger, cmd)
            if rc != 0:
                utils.die(self.logger, "cobbler reposync failed")

    def create_local_file(self, dest_path, repo, output=True):
        """
        Creates Yum config files for use by reposync

        Two uses:
        (A) output=True, Create local files that can be used with yum on provisioned clients to make use of this mirror.
        (B) output=False, Create a temporary file for yum to feed into yum for mirroring

        :param dest_path: The destination path to create the file at.
        :type dest_path: str
        :param repo: The repository object to create a file for.
        :param output: See described above.
        :type output: bool
        :return: The name of the file which was written.
        """

        # The output case will generate repo configuration files which are usable for the installed systems. They need
        # to be made compatible with --server-override which means they are actually templates, which need to be
        # rendered by a Cobbler-sync on per profile/system basis.

        if output:
            fname = os.path.join(dest_path, "config.repo")
        else:
            fname = os.path.join(dest_path, "%s.repo" % repo.name)
        self.logger.debug("creating: %s" % fname)
        if not os.path.exists(dest_path):
            utils.mkdir(dest_path)
        config_file = open(fname, "w+")
        if not output:
            config_file.write("[main]\nreposdir=/dev/null\n")
        config_file.write("[%s]\n" % repo.name)
        config_file.write("name=%s\n" % repo.name)

        optenabled = False
        optgpgcheck = False
        if output:
            if repo.mirror_locally:
                line = "baseurl=http://${http_server}/cobbler/repo_mirror/%s\n" % (repo.name)
            else:
                mstr = repo.mirror
                if mstr.startswith("/"):
                    mstr = "file://%s" % mstr
                line = "baseurl=%s\n" % mstr

            config_file.write(line)
            # User may have options specific to certain yum plugins add them to the file
            for x in repo.yumopts:
                config_file.write("%s=%s\n" % (x, repo.yumopts[x]))
                if x == "enabled":
                    optenabled = True
                if x == "gpgcheck":
                    optgpgcheck = True
        else:
            mstr = repo.mirror
            if mstr.startswith("/"):
                mstr = "file://%s" % mstr
            line = "baseurl=%s\n" % mstr
            if self.settings.http_port not in (80, '80'):
                http_server = "%s:%s" % (self.settings.server, self.settings.http_port)
            else:
                http_server = self.settings.server
            line = line.replace("@@server@@", http_server)
            config_file.write(line)

            config_proxy = None
            if repo.proxy == '<<inherit>>':
                config_proxy = self.settings.proxy_url_ext
            elif repo.proxy != '' and repo.proxy != '<<None>>':
                config_proxy = repo.proxy

            if config_proxy is not None:
                config_file.write("proxy=%s\n" % config_proxy)
            if 'exclude' in list(repo.yumopts.keys()):
                self.logger.debug("excluding: %s" % repo.yumopts['exclude'])
                config_file.write("exclude=%s\n" % repo.yumopts['exclude'])

        if not optenabled:
            config_file.write("enabled=1\n")
        config_file.write("priority=%s\n" % repo.priority)
        # FIXME: potentially might want a way to turn this on/off on a per-repo basis
        if not optgpgcheck:
            config_file.write("gpgcheck=0\n")
            # user may have options specific to certain yum plugins
            # add them to the file
            for x in repo.yumopts:
                config_file.write("%s=%s\n" % (x, repo.yumopts[x]))
                if x == "enabled":
                    optenabled = True
                if x == "gpgcheck":
                    optgpgcheck = True
        config_file.close()
        return fname

    # ==================================================================================

    def update_permissions(self, repo_path):
        """
        Verifies that permissions and contexts after an rsync are as expected.
        Sending proper rsync flags should prevent the need for this, though this is largely a safeguard.

        :param repo_path: The path to update the permissions of.
        """
        # all_path = os.path.join(repo_path, "*")
        owner = "root:apache"

        (dist, _) = os_release()
        if dist == "suse":
            owner = "root:www"
        elif dist in ("debian", "ubuntu"):
            owner = "root:www-data"

        cmd1 = "chown -R " + owner + " %s" % repo_path

        utils.subprocess_call(self.logger, cmd1)

        cmd2 = "chmod -R 755 %s" % repo_path
        utils.subprocess_call(self.logger, cmd2)
   07070100000068000081A40000000000000000000000015ECE244400001A17000000000000000000000000000000000000002800000000cobbler-3.1.2/cobbler/actions/status.py   """
Reports on automatic installation activity by examining the logs in
/var/log/cobbler.

Copyright 2007-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""

from builtins import object
from past.utils import old_div
import glob
import time
import gzip
import re

from cobbler import clogger

# ARRAY INDEXES
MOST_RECENT_START = 0
MOST_RECENT_STOP = 1
MOST_RECENT_TARGET = 2
SEEN_START = 3
SEEN_STOP = 4
STATE = 5


class CobblerStatusReport(object):

    def __init__(self, collection_mgr, mode, logger=None):
        """
        Constructor

        :param collection_mgr: The collection manager which holds all information.
        :param mode: This describes how Cobbler should report. Currently there only the option ``text`` can be set
                     explicitly.
        :param logger: The logger to audit all actions with.
        """
        self.collection_mgr = collection_mgr
        self.settings = collection_mgr.settings()
        self.ip_data = {}
        self.mode = mode
        if logger is None:
            logger = clogger.Logger()
        self.logger = logger

    # -------------------------------------------------------

    def scan_logfiles(self):
        """
        Scan the install log-files - starting with the oldest file.
        """
        unsorted_files = glob.glob("/var/log/cobbler/install.log*")
        files_dict = dict()
        log_id_re = re.compile(r'install.log.(\d+)')
        for fname in unsorted_files:
            id_match = log_id_re.search(fname)
            if id_match:
                files_dict[int(id_match.group(1))] = fname

        files = list()
        sorted_ids = sorted(files_dict, key=files_dict.get, reverse=True)
        for file_id in sorted_ids:
            files.append(files_dict[file_id])
        if '/var/log/cobbler/install.log' in unsorted_files:
            files.append('/var/log/cobbler/install.log')

        for fname in files:
            if fname.endswith('.gz'):
                fd = gzip.open(fname)
            else:
                fd = open(fname)
            data = fd.read()
            for line in data.split("\n"):
                tokens = line.split()
                if len(tokens) == 0:
                    continue
                (profile_or_system, name, ip, start_or_stop, ts) = tokens
                self.catalog(profile_or_system, name, ip, start_or_stop, ts)
            fd.close()

    # ------------------------------------------------------

    def catalog(self, profile_or_system, name, ip, start_or_stop, ts):
        """
        Add a system to ``cobbler status``.

        :param profile_or_system: This can be ``system`` or ``profile``.
        :type profile_or_system: str
        :param name: The name of the object.
        :type name: str
        :param ip: The ip of the system to watch.
        :param start_or_stop: This parameter may be ``start`` or ``stop``
        :type start_or_stop: str
        :param ts: Don't know what this does.
        """
        ip_data = self.ip_data

        if ip not in ip_data:
            ip_data[ip] = [-1, -1, "?", 0, 0, "?"]
        elem = ip_data[ip]

        ts = float(ts)

        mrstart = elem[MOST_RECENT_START]
        mrstop = elem[MOST_RECENT_STOP]
        mrtarg = elem[MOST_RECENT_TARGET]

        if start_or_stop == "start":
            if mrstart < ts:
                mrstart = ts
                mrtarg = "%s:%s" % (profile_or_system, name)
                elem[SEEN_START] += 1

        if start_or_stop == "stop":
            if mrstop < ts:
                mrstop = ts
                mrtarg = "%s:%s" % (profile_or_system, name)
                elem[SEEN_STOP] += 1

        elem[MOST_RECENT_START] = mrstart
        elem[MOST_RECENT_STOP] = mrstop
        elem[MOST_RECENT_TARGET] = mrtarg

    # -------------------------------------------------------

    def process_results(self):
        """
        Look through all systems which were collected and update the status.

        :return: Return ``ip_data`` of the object.
        """
        # FIXME: this should update the times here
        tnow = int(time.time())
        for ip in list(self.ip_data.keys()):
            elem = self.ip_data[ip]
            start = int(elem[MOST_RECENT_START])
            stop = int(elem[MOST_RECENT_STOP])
            if (stop > start):
                elem[STATE] = "finished"
            else:
                delta = tnow - start
                min = old_div(delta, 60)
                sec = delta % 60
                if min > 100:
                    elem[STATE] = "unknown/stalled"
                else:
                    elem[STATE] = "installing (%sm %ss)" % (min, sec)

        return self.ip_data

    def get_printable_results(self):
        """
        Convert the status of Cobbler from a machine readable form to human readable.

        :return: A nice formatted representation of the results of ``cobbler status``.
        """
        format = "%-15s|%-20s|%-17s|%-17s"
        ip_data = self.ip_data
        ips = list(ip_data.keys())
        ips.sort()
        line = (
            "ip",
            "target",
            "start",
            "state",
        )
        buf = format % line
        for ip in ips:
            elem = ip_data[ip]
            if elem[MOST_RECENT_START] > -1:
                start = time.ctime(elem[MOST_RECENT_START])
            else:
                start = "Unknown"
            line = (
                ip,
                elem[MOST_RECENT_TARGET],
                start,
                elem[STATE]
            )
            buf += "\n" + format % line
        return buf

    # -------------------------------------------------------

    def run(self):
        """
        Calculate and print a automatic installation status report.
        """
        self.scan_logfiles()
        results = self.process_results()
        if self.mode == "text":
            return self.get_printable_results()
        else:
            return results
 07070100000069000081A40000000000000000000000015ECE2444000028C8000000000000000000000000000000000000002600000000cobbler-3.1.2/cobbler/actions/sync.py """
Builds out filesystem trees/data based on the object tree.
This is the code behind 'cobbler sync'.

Copyright 2006-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""

from builtins import object
import glob
import os
import time

from cobbler.cexceptions import CX
from cobbler import clogger
from cobbler import templar
from cobbler import tftpgen
from cobbler import utils
from cobbler.utils import _


class CobblerSync(object):
    """
    Handles conversion of internal state to the tftpboot tree layout
    """

    def __init__(self, collection_mgr, verbose=True, dhcp=None, dns=None, logger=None, tftpd=None):
        """
        Constructor

        :param collection_mgr: The collection manager instance which holds all information about cobbler.
        :param verbose: Whether to log the actions performed in this module verbose or not.
        :param dhcp: The DHCP manager which can update the DHCP config.
        :param dns: The DNS manager which can update the DNS config.
        :param logger: The logger to audit all action with.
        :param tftpd: The TFTP manager which can update the TFTP config.
        """
        self.logger = logger
        if logger is None:
            self.logger = clogger.Logger()

        self.verbose = verbose
        self.collection_mgr = collection_mgr
        self.api = collection_mgr.api
        self.distros = collection_mgr.distros()
        self.profiles = collection_mgr.profiles()
        self.systems = collection_mgr.systems()
        self.settings = collection_mgr.settings()
        self.repos = collection_mgr.repos()
        self.templar = templar.Templar(collection_mgr, self.logger)
        self.tftpgen = tftpgen.TFTPGen(collection_mgr, self.logger)
        self.dns = dns
        self.dhcp = dhcp
        self.tftpd = tftpd
        self.bootloc = self.settings.tftpboot_location
        self.tftpgen.verbose = verbose
        self.dns.verbose = verbose
        self.dhcp.verbose = verbose

        self.pxelinux_dir = os.path.join(self.bootloc, "pxelinux.cfg")
        self.grub_dir = os.path.join(self.bootloc, "grub")
        self.images_dir = os.path.join(self.bootloc, "images")
        self.yaboot_bin_dir = os.path.join(self.bootloc, "ppc")
        self.yaboot_cfg_dir = os.path.join(self.bootloc, "etc")
        self.rendered_dir = os.path.join(self.settings.webdir, "rendered")

    def run(self):
        """
        Syncs the current configuration file with the config tree.
        Using the ``Check().run_`` functions previously is recommended
        """
        if not os.path.exists(self.bootloc):
            utils.die(self.logger, "cannot find directory: %s" % self.bootloc)

        self.logger.info("running pre-sync triggers")

        # run pre-triggers...
        utils.run_triggers(self.api, None, "/var/lib/cobbler/triggers/sync/pre/*")

        self.distros = self.collection_mgr.distros()
        self.profiles = self.collection_mgr.profiles()
        self.systems = self.collection_mgr.systems()
        self.settings = self.collection_mgr.settings()
        self.repos = self.collection_mgr.repos()

        # execute the core of the sync operation
        self.logger.info("cleaning trees")
        self.clean_trees()

        # Have the tftpd module handle copying bootloaders, distros, images, and all_system_files
        self.tftpd.sync(self.verbose)
        # Copy distros to the webdir
        # Adding in the exception handling to not blow up if files have been moved (or the path references an NFS
        # directory that's no longer mounted)
        for d in self.distros:
            try:
                self.logger.info("copying files for distro: %s" % d.name)
                self.tftpgen.copy_single_distro_files(d, self.settings.webdir, True)
                self.tftpgen.write_templates(d, write_file=True)
            except CX as e:
                self.logger.error(e.value)

        # make the default pxe menu anyway...
        self.tftpgen.make_pxe_menu()

        if self.settings.manage_dhcp:
            self.write_dhcp()
        if self.settings.manage_dns:
            self.logger.info("rendering DNS files")
            self.dns.regen_hosts()
            self.dns.write_dns_files()

        if self.settings.manage_tftpd:
            # copy in boot_files
            self.tftpd.write_boot_files()

        self.logger.info("cleaning link caches")
        self.clean_link_cache()

        if self.settings.manage_rsync:
            self.logger.info("rendering Rsync files")
            self.rsync_gen()

        # run post-triggers
        self.logger.info("running post-sync triggers")
        utils.run_triggers(self.api, None, "/var/lib/cobbler/triggers/sync/post/*", logger=self.logger)
        utils.run_triggers(self.api, None, "/var/lib/cobbler/triggers/change/*", logger=self.logger)

    def make_tftpboot(self):
        """
        Make directories for tftpboot images
        """
        if not os.path.exists(self.pxelinux_dir):
            utils.mkdir(self.pxelinux_dir, logger=self.logger)
        if not os.path.exists(self.grub_dir):
            utils.mkdir(self.grub_dir, logger=self.logger)
        grub_images_link = os.path.join(self.grub_dir, "images")
        if not os.path.exists(grub_images_link):
            os.symlink("../images", grub_images_link)
        if not os.path.exists(self.images_dir):
            utils.mkdir(self.images_dir, logger=self.logger)
        if not os.path.exists(self.rendered_dir):
            utils.mkdir(self.rendered_dir, logger=self.logger)
        if not os.path.exists(self.yaboot_bin_dir):
            utils.mkdir(self.yaboot_bin_dir, logger=self.logger)
        if not os.path.exists(self.yaboot_cfg_dir):
            utils.mkdir(self.yaboot_cfg_dir, logger=self.logger)

    def clean_trees(self):
        """
        Delete any previously built pxelinux.cfg tree and virt tree info and then create directories.

        Note: for SELinux reasons, some information goes in ``/tftpboot``, some in ``/var/www/cobbler`` and some must be
        duplicated in both. This is because PXE needs tftp, and automatic installation and Virt operations need http.
        Only the kernel and initrd images are duplicated, which is unfortunate, though SELinux won't let me give them
        two contexts, so symlinks are not a solution. *Otherwise* duplication is minimal.
        """

        # clean out parts of webdir and all of /tftpboot/images and /tftpboot/pxelinux.cfg
        for x in os.listdir(self.settings.webdir):
            path = os.path.join(self.settings.webdir, x)
            if os.path.isfile(path):
                if not x.endswith(".py"):
                    utils.rmfile(path, logger=self.logger)
            if os.path.isdir(path):
                if x not in self.settings.webdir_whitelist:
                    # delete directories that shouldn't exist
                    utils.rmtree(path, logger=self.logger)
                if x in ["autoinstall_templates", "autoinstall_templates_sys", "images", "systems", "distros", "profiles", "repo_profile", "repo_system", "rendered"]:
                    # clean out directory contents
                    utils.rmtree_contents(path, logger=self.logger)
        #
        self.make_tftpboot()
        utils.rmtree_contents(self.pxelinux_dir, logger=self.logger)
        utils.rmtree_contents(self.grub_dir, logger=self.logger)
        utils.rmtree_contents(self.images_dir, logger=self.logger)
        utils.rmtree_contents(self.yaboot_bin_dir, logger=self.logger)
        utils.rmtree_contents(self.yaboot_cfg_dir, logger=self.logger)
        utils.rmtree_contents(self.rendered_dir, logger=self.logger)

    def write_dhcp(self):
        """
        Write all files which are associated to DHCP.
        """
        self.logger.info("rendering DHCP files")
        self.dhcp.write_dhcp_file()
        self.dhcp.regen_ethers()

    def sync_dhcp(self):
        """
        This calls write_dhcp and restarts the DHCP server.
        """
        if self.settings.manage_dhcp:
            self.write_dhcp()
            self.dhcp.sync_dhcp()

    def clean_link_cache(self):
        """
        All files which are linked into the cache will be deleted so the cache can be rebuild.
        """
        for dirtree in [os.path.join(self.bootloc, 'images'), self.settings.webdir]:
            cachedir = os.path.join(dirtree, '.link_cache')
            if os.path.isdir(cachedir):
                cmd = "find %s -maxdepth 1 -type f -links 1 -exec rm -f '{}' ';'" % cachedir
                utils.subprocess_call(self.logger, cmd)

    def rsync_gen(self):
        """
        Generate rsync modules of all repositories and distributions
        """
        template_file = "/etc/cobbler/rsync.template"

        try:
            template = open(template_file, "r")
        except:
            raise CX(_("error reading template %s") % template_file)

        template_data = ""
        template_data = template.read()
        template.close()

        distros = []

        for link in glob.glob(os.path.join(self.settings.webdir, 'links', '*')):
            distro = {}
            distro["path"] = os.path.realpath(link)
            distro["name"] = os.path.basename(link)
            distros.append(distro)

        repos = [repo.name for repo in self.api.repos()
                 if os.path.isdir(os.path.join(self.settings.webdir, "repo_mirror", repo.name))]

        metadata = {
            "date": time.asctime(time.gmtime()),
            "cobbler_server": self.settings.server,
            "distros": distros,
            "repos": repos,
            "webdir": self.settings.webdir
        }

        self.templar.render(template_data, metadata, "/etc/rsyncd.conf", None)
0707010000006A000081A40000000000000000000000015ECE2444000125AA000000000000000000000000000000000000001D00000000cobbler-3.1.2/cobbler/api.py  """
Copyright 2006-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""

from past.builtins import cmp
from future import standard_library
standard_library.install_aliases()
from builtins import str
from builtins import object
from configparser import ConfigParser

import os
import random
import tempfile

from cobbler.actions import status, dlcontent, hardlink, sync, buildiso, replicate, report, log, acl, check, reposync
from cobbler import autoinstall_manager
from cobbler import clogger
from cobbler.cobbler_collections import manager
from cobbler.items import package, system, image, profile, repo, mgmtclass, distro, file
from cobbler import module_loader
from cobbler import power_manager
from cobbler import tftpgen
from cobbler import utils
from cobbler import yumgen
from cobbler import autoinstallgen
from cobbler import download_manager
from cobbler.cexceptions import CX
from cobbler.utils import _


ERROR = 100
INFO = 10
DEBUG = 5

# FIXME: add --quiet depending on if not --verbose?
RSYNC_CMD = "rsync -a %s '%s' %s --progress"

# notes on locking:
# CobblerAPI is a singleton object
# the XMLRPC variants allow 1 simultaneous request
# therefore we flock on /etc/cobbler/settings for now
# on a request by request basis.


class CobblerAPI(object):
    """
    Python API module for Cobbler.
    See source for cobbler.py, or pydoc, for example usage.
    Cli apps and daemons should import api.py, and no other Cobbler code.
    """
    __shared_state = {}
    __has_loaded = False

    def __init__(self, is_cobblerd=False):
        """
        Constructor

        :param is_cobblerd: Wether this API is run as a deamon or not.
        :type is_cobblerd: bool
        """

        # FIXME: this should be switchable through some simple system

        self.__dict__ = CobblerAPI.__shared_state
        self.perms_ok = False
        if not CobblerAPI.__has_loaded:
            # NOTE: we do not log all API actions, because a simple CLI invocation may call adds and such to load the
            # config, which would just fill up the logs, so we'll do that logging at CLI level (and remote.py web
            # service level) instead.

            random.seed()
            self.is_cobblerd = is_cobblerd

            try:
                self.logger = clogger.Logger()
            except CX:
                # return to CLI/other but perms are not valid
                # perms_ok is False
                return

            # FIXME: conslidate into 1 server instance

            self.selinux_enabled = utils.is_selinux_enabled()
            self.dist, self.os_version = utils.os_release()

            CobblerAPI.__has_loaded = True

            # load the modules first, or nothing else works...
            module_loader.load_modules()

            self._collection_mgr = manager.CollectionManager(self)
            self.deserialize()

            # import signatures
            try:
                utils.load_signatures(self.settings().signature_path)
            except Exception as e:
                self.log("Failed to load signatures from %s: %s" % (self.settings().signature_path, e))
                return

            self.log("%d breeds and %d OS versions read from the signature file" % (
                len(utils.get_valid_breeds()), len(utils.get_valid_os_versions()))
            )

            self.authn = self.get_module_from_file(
                "authentication",
                "module",
                "authn_configfile"
            )
            self.authz = self.get_module_from_file(
                "authorization",
                "module",
                "authz_allowall"
            )

            # FIXME: pass more loggers around, and also see that those using things via tasks construct their own
            #  yumgen/tftpgen versus reusing this one, which has the wrong logger (most likely) for background tasks.

            self.autoinstallgen = autoinstallgen.AutoInstallationGen(self._collection_mgr)
            self.yumgen = yumgen.YumGen(self._collection_mgr)
            self.tftpgen = tftpgen.TFTPGen(self._collection_mgr, logger=self.logger)
            self.power_mgr = power_manager.PowerManager(self, self._collection_mgr)
            self.logger.debug("API handle initialized")
            self.perms_ok = True

    # ==========================================================

    def is_selinux_enabled(self):
        """
        Returns whether selinux is enabled on the Cobbler server.
        We check this just once at Cobbler API init time, because a restart is required to change this; this does
        /not/ check enforce/permissive, nor does it need to.
        :rtype: bool
        """
        return self.selinux_enabled

    def is_selinux_supported(self):
        """
        Returns whether or not the OS is sufficient enough to run with SELinux enabled (currently EL 5 or later).

        :returns: False per default. If Distro is Redhat and Version >= 5 then it returns true.
        :rtype: bool
        """
        # FIXME: This detection is flawed. There is more than just Rhel with selinux and the original implementation was
        #        too broad.
        if ("red hat" in self.dist or "redhat" in self.dist) and self.os_version >= 5:
            return True
        # doesn't support public_content_t
        return False

    # ==========================================================

    def last_modified_time(self):
        """
        Returns the time of the last modification to Cobbler, made by any API instance, regardless of the serializer
        type.

        :returns: 0 if there is no file where the information required for this method is saved.
        :rtype: float
        """
        if not os.path.exists("/var/lib/cobbler/.mtime"):
            fd = open("/var/lib/cobbler/.mtime", 'w')
            fd.write("0")
            fd.close()
            return float(0)
        fd = open("/var/lib/cobbler/.mtime", 'r')
        data = fd.read().strip()
        return float(data)

    # ==========================================================

    def log(self, msg, args=None, debug=False):
        """
        Logs a message with the already initiated logger of this object.

        :param msg: The message to log.
        :type msg: str
        :param args: Optional message which gets appended to the main msg with a ';'.
        :param debug: Weather the logged message is a debug message (true) or info (false).
        :type debug: bool
        """
        if debug:
            logger = self.logger.debug
        else:
            logger = self.logger.info
        if args is None:
            logger("%s" % msg)
        else:
            logger("%s; %s" % (msg, str(args)))

    # ==========================================================

    def version(self, extended=False):
        """
        What version is Cobbler?

        If extended == False, returns a float for backwards compatibility
        If extended == True, returns a dict:

            gitstamp      -- the last git commit hash
            gitdate       -- the last git commit date on the builder machine
            builddate     -- the time of the build
            version       -- something like "1.3.2"
            version_tuple -- something like [ 1, 3, 2 ]

        :param extended: False returns a float, True a Dictionary.
        :type extended: bool
        """
        config = ConfigParser()
        config.read("/etc/cobbler/version")
        data = {}
        data["gitdate"] = config.get("cobbler", "gitdate")
        data["gitstamp"] = config.get("cobbler", "gitstamp")
        data["builddate"] = config.get("cobbler", "builddate")
        data["version"] = config.get("cobbler", "version")
        # dont actually read the version_tuple from the version file
        data["version_tuple"] = []
        for num in data["version"].split("."):
            data["version_tuple"].append(int(num))

        if not extended:
            # for backwards compatibility and use with koan's comparisons
            elems = data["version_tuple"]
            return int(elems[0]) + 0.1 * int(elems[1]) + 0.001 * int(elems[2])
        else:
            return data

    # ==========================================================

    def __cmp(self, a, b):
        """
        Compare two names of objects with each other.

        :param a: First object. Must have the property name.
        :param b: Second object. Must have the property name.
        :return: A bool which indicates the result of the comparison.
        """
        return cmp(a.name, b.name)

    def get_item(self, what, name):
        """
        Get a general item.

        :param what: The item type to retrieve from the internal database.
        :type what: str
        :param name: The name of the item to retrieve.
        :type name: str
        :return: An item of the desired type.
        """
        self.log("get_item", [what, name], debug=True)
        item = self._collection_mgr.get_items(what).get(name)
        self.log("done with get_item", [what, name], debug=True)
        return item

    def get_items(self, what):
        """
        Get all items of a collection.

        :param what: The collection to query.
        :type what: str
        :return: The items which were queried. May return no items.
        """
        self.log("get_items", [what], debug=True)
        items = self._collection_mgr.get_items(what)
        self.log("done with get_items", [what], debug=True)
        return items

    def distros(self):
        """
        Return the current list of distributions
        """
        return self.get_items("distro")

    def profiles(self):
        """
        Return the current list of profiles
        """
        return self.get_items("profile")

    def systems(self):
        """
        Return the current list of systems
        """
        return self.get_items("system")

    def repos(self):
        """
        Return the current list of repos
        """
        return self.get_items("repo")

    def images(self):
        """
        Return the current list of images
        """
        return self.get_items("image")

    def settings(self):
        """
        Return the application configuration
        """
        return self._collection_mgr.settings()

    def mgmtclasses(self):
        """
        Return the current list of mgmtclasses
        """
        return self.get_items("mgmtclass")

    def packages(self):
        """
        Return the current list of packages
        """
        return self.get_items("package")

    def files(self):
        """
        Return the current list of files
        """
        return self.get_items("file")

    # =======================================================================

    def copy_item(self, what, ref, newname, logger=None):
        """
        General copy method which is called by the specific methods.

        :param what: The collection type which gets copied.
        :param ref: The object itself which gets copied.
        :param newname: The new name of the newly created object.
        :param logger: The logger which is used for auditing the copy task.
        """
        self.log("copy_item(%s)" % what, [ref.name, newname])
        self.get_items(what).copy(ref, newname, logger=logger)

    def copy_distro(self, ref, newname):
        """
        This method copies a distro which is just different in the name of the object.

        :param ref: The object itself which gets copied.
        :param newname: The new name of the newly created object.
        """
        self.copy_item("distro", ref, newname, logger=None)

    def copy_profile(self, ref, newname):
        """
        This method copies a profile which is just different in the name of the object.

        :param ref: The object itself which gets copied.
        :param newname: The new name of the newly created object.
        """
        self.copy_item("profile", ref, newname, logger=None)

    def copy_system(self, ref, newname):
        """
        This method copies a system which is just different in the name of the object.

        :param ref: The object itself which gets copied.
        :param newname: The new name of the newly created object.
        """
        self.copy_item("system", ref, newname, logger=None)

    def copy_repo(self, ref, newname):
        """
        This method copies a repository which is just different in the name of the object.

        :param ref: The object itself which gets copied.
        :param newname: The new name of the newly created object.
        """
        self.copy_item("repo", ref, newname, logger=None)

    def copy_image(self, ref, newname):
        """
        This method copies an image which is just different in the name of the object.

        :param ref: The object itself which gets copied.
        :param newname: The new name of the newly created object.
        """
        self.copy_item("image", ref, newname, logger=None)

    def copy_mgmtclass(self, ref, newname):
        """
        This method copies a management class which is just different in the name of the object.

        :param ref: The object itself which gets copied.
        :param newname: The new name of the newly created object.
        """
        self.copy_item("mgmtclass", ref, newname, logger=None)

    def copy_package(self, ref, newname):
        """
        This method copies a package which is just different in the name of the object.

        :param ref: The object itself which gets copied.
        :param newname: The new name of the newly created object.
        """
        self.copy_item("package", ref, newname, logger=None)

    def copy_file(self, ref, newname):
        """
        This method copies a file which is just different in the name of the object.

        :param ref: The object itself which gets copied.
        :param newname: The new name of the newly created object.
        """
        self.copy_item("file", ref, newname, logger=None)

    # ==========================================================================

    def remove_item(self, what, ref, recursive=False, delete=True, with_triggers=True, logger=None):
        """
        Remove a general item. This method should not be used by an external api. Please use the specific
        remove_<itemtype> methods.

        :param what: The type of the item.
        :param ref: The internal unique handle for the item.
        :param recursive: If the item should recursively should delete dependencies on itself.
        :param delete: Not known what this parameter does exactly.
        :param with_triggers: Whether you would like to have the removal triggers executed or not.
        :param logger: The logger to audit the removal with.
        """
        if isinstance(what, str):
            if isinstance(ref, str):
                ref = self.get_item(what, ref)
                if ref is None:
                    return      # nothing to remove
        self.log("remove_item(%s)" % what, [ref.name])
        self.get_items(what).remove(ref.name, recursive=recursive, with_delete=delete, with_triggers=with_triggers, logger=logger)

    def remove_distro(self, ref, recursive=False, delete=True, with_triggers=True, logger=None):
        """
        Remove a distribution from Cobbler.

        :param ref: The internal unique handle for the item.
        :param recursive: If the item should recursively should delete dependencies on itself.
        :param delete: Not known what this parameter does exactly.
        :param with_triggers: Whether you would like to have the removal triggers executed or not.
        :param logger: The logger to audit the removal with.
        """
        self.remove_item("distro", ref, recursive=recursive, delete=delete, with_triggers=with_triggers, logger=logger)

    def remove_profile(self, ref, recursive=False, delete=True, with_triggers=True, logger=None):
        """
        Remove a profile from Cobbler.

        :param ref: The internal unique handle for the item.
        :param recursive: If the item should recursively should delete dependencies on itself.
        :param delete: Not known what this parameter does exactly.
        :param with_triggers: Whether you would like to have the removal triggers executed or not.
        :param logger: The logger to audit the removal with.
        """
        self.remove_item("profile", ref, recursive=recursive, delete=delete, with_triggers=with_triggers, logger=logger)

    def remove_system(self, ref, recursive=False, delete=True, with_triggers=True, logger=None):
        """
        Remove a system from Cobbler.

        :param ref: The internal unique handle for the item.
        :param recursive: If the item should recursively should delete dependencies on itself.
        :param delete: Not known what this parameter does exactly.
        :param with_triggers: Whether you would like to have the removal triggers executed or not.
        :param logger: The logger to audit the removal with.
        """
        self.remove_item("system", ref, recursive=recursive, delete=delete, with_triggers=with_triggers, logger=logger)

    def remove_repo(self, ref, recursive=False, delete=True, with_triggers=True, logger=None):
        """
        Remove a repository from Cobbler.

        :param ref: The internal unique handle for the item.
        :param recursive: If the item should recursively should delete dependencies on itself.
        :param delete: Not known what this parameter does exactly.
        :param with_triggers: Whether you would like to have the removal triggers executed or not.
        :param logger: The logger to audit the removal with.
        """
        self.remove_item("repo", ref, recursive=recursive, delete=delete, with_triggers=with_triggers, logger=logger)

    def remove_image(self, ref, recursive=False, delete=True, with_triggers=True, logger=None):
        """
        Remove a image from Cobbler.

        :param ref: The internal unique handle for the item.
        :param recursive: If the item should recursively should delete dependencies on itself.
        :param delete: Not known what this parameter does exactly.
        :param with_triggers: Whether you would like to have the removal triggers executed or not.
        :param logger: The logger to audit the removal with.
        """
        self.remove_item("image", ref, recursive=recursive, delete=delete, with_triggers=with_triggers, logger=logger)

    def remove_mgmtclass(self, ref, recursive=False, delete=True, with_triggers=True, logger=None):
        """
        Remove a management class from Cobbler.

        :param ref: The internal unique handle for the item.
        :param recursive: If the item should recursively should delete dependencies on itself.
        :param delete: Not known what this parameter does exactly.
        :param with_triggers: Whether you would like to have the removal triggers executed or not.
        :param logger: The logger to audit the removal with.
        """
        self.remove_item("mgmtclass", ref, recursive=recursive, delete=delete, with_triggers=with_triggers, logger=logger)

    def remove_package(self, ref, recursive=False, delete=True, with_triggers=True, logger=None):
        """
        Remove a package from Cobbler.

        :param ref: The internal unique handle for the item.
        :param recursive: If the item should recursively should delete dependencies on itself.
        :param delete: Not known what this parameter does exactly.
        :param with_triggers: Whether you would like to have the removal triggers executed or not.
        :param logger: The logger to audit the removal with.
        """
        self.remove_item("package", ref, recursive=recursive, delete=delete, with_triggers=with_triggers, logger=logger)

    def remove_file(self, ref, recursive=False, delete=True, with_triggers=True, logger=None):
        """
        Remove a file from Cobbler.

        :param ref: The internal unique handle for the item.
        :param recursive: If the item should recursively should delete dependencies on itself.
        :param delete: Not known what this parameter does exactly.
        :param with_triggers: Whether you would like to have the removal triggers executed or not.
        :param logger: The logger to audit the removal with.
        """
        self.remove_item("file", ref, recursive=recursive, delete=delete, with_triggers=with_triggers, logger=logger)

    # ==========================================================================

    def rename_item(self, what, ref, newname, logger=None):
        """
        Remove a general item. This method should not be used by an external api. Please use the specific
        rename_<itemtype> methods.

        :param what: The type of object which should be renamed.
        :param ref: The internal unique handle for the item.
        :param newname: The new name for the item.
        :param logger: The logger to audit the removal with.
        """
        self.log("rename_item(%s)" % what, [ref.name, newname])
        self.get_items(what).rename(ref, newname, logger=logger)

    def rename_distro(self, ref, newname, logger=None):
        """
        Rename a distro to a new name.

        :param ref: The internal unique handle for the item.
        :param newname: The new name for the item.
        :param logger: The logger to audit the removal with.
        """
        self.rename_item("distro", ref, newname, logger=logger)

    def rename_profile(self, ref, newname, logger=None):
        """
        Rename a profile to a new name.

        :param ref: The internal unique handle for the item.
        :param newname: The new name for the item.
        :param logger: The logger to audit the removal with.
        """
        self.rename_item("profile", ref, newname, logger=logger)

    def rename_system(self, ref, newname, logger=None):
        """
        Rename a system to a new name.

        :param ref: The internal unique handle for the item.
        :param newname: The new name for the item.
        :param logger: The logger to audit the removal with.
        """
        self.rename_item("system", ref, newname, logger=logger)

    def rename_repo(self, ref, newname, logger=None):
        """
        Rename a repository to a new name.

        :param ref: The internal unique handle for the item.
        :param newname: The new name for the item.
        :param logger: The logger to audit the removal with.
        """
        self.rename_item("repo", ref, newname, logger=logger)

    def rename_image(self, ref, newname, logger=None):
        """
        Rename an image to a new name.

        :param ref: The internal unique handle for the item.
        :param newname: The new name for the item.
        :param logger: The logger to audit the removal with.
        """
        self.rename_item("image", ref, newname, logger=logger)

    def rename_mgmtclass(self, ref, newname, logger=None):
        """
        Rename a management class to a new name.

        :param ref: The internal unique handle for the item.
        :param newname: The new name for the item.
        :param logger: The logger to audit the removal with.
        """
        self.rename_item("mgmtclass", ref, newname, logger=logger)

    def rename_package(self, ref, newname, logger=None):
        """
        Rename a package to a new name.

        :param ref: The internal unique handle for the item.
        :param newname: The new name for the item.
        :param logger: The logger to audit the removal with.
        """
        self.rename_item("package", ref, newname, logger=logger)

    def rename_file(self, ref, newname, logger=None):
        """
        Rename a file to a new name.

        :param ref: The internal unique handle for the item.
        :param newname: The new name for the item.
        :param logger: The logger to audit the removal with.
        """
        self.rename_item("file", ref, newname, logger=logger)

    # ==========================================================================

    # FIXME: add a new_item method

    def new_distro(self, is_subobject=False):
        """
        Returns a new empty distro object. This distro is not automatically persited. Persistance is achieved via
        ``save()``.

        :param is_subobject: If the object created is a subobject or not.
        :type is_subobject: bool
        :return: An empty Distro object.
        """
        self.log("new_distro", [is_subobject])
        return distro.Distro(self._collection_mgr, is_subobject=is_subobject)

    def new_profile(self, is_subobject=False):
        """
        Returns a new empty profile object. This profile is not automatically persisted. Persistence is achieved via
        ``save()``.

        :param is_subobject: If the object created is a subobject or not.
        :type is_subobject: bool
        :return: An empty Profile object.
        """
        self.log("new_profile", [is_subobject])
        return profile.Profile(self._collection_mgr, is_subobject=is_subobject)

    def new_system(self, is_subobject=False):
        """
        Returns a new empty system object. This system is not automatically persisted. Persistence is achieved via
        ``save()``.

        :param is_subobject: If the object created is a subobject or not.
        :type is_subobject: bool
        :return: An empty System object.
        """
        self.log("new_system", [is_subobject])
        return system.System(self._collection_mgr, is_subobject=is_subobject)

    def new_repo(self, is_subobject=False):
        """
        Returns a new empty repo object. This repository is not automatically persisted. Persistence is achieved via
        ``save()``.

        :param is_subobject: If the object created is a subobject or not.
        :type is_subobject: bool
        :return: An empty repo object.
        """
        self.log("new_repo", [is_subobject])
        return repo.Repo(self._collection_mgr, is_subobject=is_subobject)

    def new_image(self, is_subobject=False):
        """
        Returns a new empty image object. This image is not automatically persisted. Persistence is achieved via
        ``save()``.

        :param is_subobject: If the object created is a subobject or not.
        :type is_subobject: bool
        :return: An empty image object.
        """
        self.log("new_image", [is_subobject])
        return image.Image(self._collection_mgr, is_subobject=is_subobject)

    def new_mgmtclass(self, is_subobject=False):
        """
        Returns a new empty mgmtclass object. This mgmtclass is not automatically persisted. Persistence is achieved via
        ``save()``.

        :param is_subobject: If the object created is a subobject or not.
        :type is_subobject: bool
        :return: An empty mgmtclass object.
        """
        self.log("new_mgmtclass", [is_subobject])
        return mgmtclass.Mgmtclass(self._collection_mgr, is_subobject=is_subobject)

    def new_package(self, is_subobject=False):
        """
        Returns a new empty package object. This package is not automatically persisted. Persistence is achieved via
        ``save()``.

        :param is_subobject: If the object created is a subobject or not.
        :type is_subobject: bool
        :return: An empty Package object.
        """
        self.log("new_package", [is_subobject])
        return package.Package(self._collection_mgr, is_subobject=is_subobject)

    def new_file(self, is_subobject=False):
        """
        Returns a new empty file object. This file is not automatically persisted. Persistence is achieved via
        ``save()``.

        :param is_subobject: If the object created is a subobject or not.
        :type is_subobject: bool
        :return: An empty File object.
        """
        self.log("new_file", [is_subobject])
        return file.File(self._collection_mgr, is_subobject=is_subobject)

    # ==========================================================================

    def add_item(self, what, ref, check_for_duplicate_names=False, save=True, logger=None):
        """
        Add an abstract item to a collection of its specific items. This is not meant for external use. Please reefer
        to one of the specific methods ``add_<type>``.

        :param what: The item type.
        :param ref: The identifier for the object to add to a collection.
        :param check_for_duplicate_names: If the name should be unique or can be present multiple times.
        :param save: If the item should be persisted.
        :param logger: The logger to audit the removal with.
        """
        self.log("add_item(%s)" % what, [ref.name])
        self.get_items(what).add(ref, check_for_duplicate_names=check_for_duplicate_names, save=save, logger=logger)

    def add_distro(self, ref, check_for_duplicate_names=False, save=True, logger=None):
        """
        Add a distribution to Cobbler.

        :param ref: The identifier for the object to add to a collection.
        :param check_for_duplicate_names: If the name should be unique or can be present multiple times.
        :param save: If the item should be persisted.
        :param logger: The logger to audit the removal with.
        """
        self.add_item("distro", ref, check_for_duplicate_names=check_for_duplicate_names, save=save, logger=logger)

    def add_profile(self, ref, check_for_duplicate_names=False, save=True, logger=None):
        """
        Add a profile to Cobbler.

        :param ref: The identifier for the object to add to a collection.
        :param check_for_duplicate_names: If the name should be unique or can be present multiple times.
        :param save: If the item should be persisted.
        :param logger: The logger to audit the removal with.
        """
        self.add_item("profile", ref, check_for_duplicate_names=check_for_duplicate_names, save=save, logger=logger)

    def add_system(self, ref, check_for_duplicate_names=False, check_for_duplicate_netinfo=False, save=True, logger=None):
        """
        Add a system to Cobbler.

        :param ref: The identifier for the object to add to a collection.
        :param check_for_duplicate_names: If the name should be unique or can be present multiple times.
        :param check_for_duplicate_netinfo: If the name of the network interface should be unique or can be present
                                            multiple times.
        :param save: If the item should be persisted.
        :param logger: The logger to audit the removal with.
        """
        self.add_item("system", ref, check_for_duplicate_names=check_for_duplicate_names, save=save, logger=logger)

    def add_repo(self, ref, check_for_duplicate_names=False, save=True, logger=None):
        """
        Add a repository to Cobbler.

        :param ref: The identifier for the object to add to a collection.
        :param check_for_duplicate_names: If the name should be unique or can be present multiple times.
        :param save: If the item should be persisted.
        :param logger: The logger to audit the removal with.
        """
        self.add_item("repo", ref, check_for_duplicate_names=check_for_duplicate_names, save=save, logger=logger)

    def add_image(self, ref, check_for_duplicate_names=False, save=True, logger=None):
        """
        Add an image to Cobbler.

        :param ref: The identifier for the object to add to a collection.
        :param check_for_duplicate_names: If the name should be unique or can be present multiple times.
        :param save: If the item should be persisted.
        :param logger: The logger to audit the removal with.
        """
        self.add_item("image", ref, check_for_duplicate_names=check_for_duplicate_names, save=save, logger=logger)

    def add_mgmtclass(self, ref, check_for_duplicate_names=False, save=True, logger=None):
        """
        Add a management class to Cobbler.

        :param ref: The identifier for the object to add to a collection.
        :param check_for_duplicate_names: If the name should be unique or can be present multiple times.
        :param save: If the item should be persisted.
        :param logger: The logger to audit the removal with.
        """
        self.add_item("mgmtclass", ref, check_for_duplicate_names=check_for_duplicate_names, save=save, logger=logger)

    def add_package(self, ref, check_for_duplicate_names=False, save=True, logger=None):
        """
        Add a package to Cobbler.

        :param ref: The identifier for the object to add to a collection.
        :param check_for_duplicate_names: If the name should be unique or can be present multiple times.
        :param save: If the item should be persisted.
        :param logger: The logger to audit the removal with.
        """
        self.add_item("package", ref, check_for_duplicate_names=check_for_duplicate_names, save=save, logger=logger)

    def add_file(self, ref, check_for_duplicate_names=False, save=True, logger=None):
        """
        Add a file to Cobbler.

        :param ref: The identifier for the object to add to a collection.
        :param check_for_duplicate_names: If the name should be unique or can be present multiple times.
        :param save: If the item should be persisted.
        :param logger: The logger to audit the removal with.
        """
        self.add_item("file", ref, check_for_duplicate_names=check_for_duplicate_names, save=save, logger=logger)

    # ==========================================================================

    # FIXME: find_items should take all the arguments the other find methods do.

    def find_items(self, what, criteria=None):
        """
        This is the abstract base method for finding object int the api. It should not be used by external resources.
        Please reefer to the specific implementations of this method called ``find_<object type>``.

        :param what: The object type of the item to search for.
        :param criteria: The dictionary with the key-value pairs to find objects with.
        :return: The list of items witch match the search criteria.
        """
        self.log("find_items", [what])
        # defaults
        if criteria is None:
            criteria = {}
        items = self._collection_mgr.get_items(what)
        # empty criteria returns everything
        if criteria == {}:
            res = items
        else:
            res = items.find(return_list=True, no_errors=False, **criteria)
        return res

    def find_distro(self, name=None, return_list=False, no_errors=False, **kargs):
        """
        Find a distribution via a name or keys specified in the ``**kargs``.

        :param name: The name to search for.
        :param return_list: If only the first result or all results should be returned.
        :param no_errors: Silence some errors which would raise if this turned to False.
        :param kargs: Additional key-value pairs which may help in finding the desired objects.
        :return: A single object or a list of all search results.
        """
        return self._collection_mgr.distros().find(name=name, return_list=return_list, no_errors=no_errors, **kargs)

    def find_profile(self, name=None, return_list=False, no_errors=False, **kargs):
        """
        Find a profile via a name or keys specified in the ``**kargs``.

        :param name: The name to search for.
        :param return_list: If only the first result or all results should be returned.
        :param no_errors: Silence some errors which would raise if this turned to False.
        :param kargs: Additional key-value pairs which may help in finding the desired objects.
        :return: A single object or a list of all search results.
        """
        return self._collection_mgr.profiles().find(name=name, return_list=return_list, no_errors=no_errors, **kargs)

    def find_system(self, name=None, return_list=False, no_errors=False, **kargs):
        """
        Find a system via a name or keys specified in the ``**kargs``.

        :param name: The name to search for.
        :param return_list: If only the first result or all results should be returned.
        :param no_errors: Silence some errors which would raise if this turned to False.
        :param kargs: Additional key-value pairs which may help in finding the desired objects.
        :return: A single object or a list of all search results.
        """
        return self._collection_mgr.systems().find(name=name, return_list=return_list, no_errors=no_errors, **kargs)

    def find_repo(self, name=None, return_list=False, no_errors=False, **kargs):
        """
        Find a repository via a name or keys specified in the ``**kargs``.

        :param name: The name to search for.
        :param return_list: If only the first result or all results should be returned.
        :param no_errors: Silence some errors which would raise if this turned to False.
        :param kargs: Additional key-value pairs which may help in finding the desired objects.
        :return: A single object or a list of all search results.
        """
        return self._collection_mgr.repos().find(name=name, return_list=return_list, no_errors=no_errors, **kargs)

    def find_image(self, name=None, return_list=False, no_errors=False, **kargs):
        """
        Find an image via a name or keys specified in the ``**kargs``.

        :param name: The name to search for.
        :param return_list: If only the first result or all results should be returned.
        :param no_errors: Silence some errors which would raise if this turned to False.
        :param kargs: Additional key-value pairs which may help in finding the desired objects.
        :return: A single object or a list of all search results.
        """
        return self._collection_mgr.images().find(name=name, return_list=return_list, no_errors=no_errors, **kargs)

    def find_mgmtclass(self, name=None, return_list=False, no_errors=False, **kargs):
        """
        Find a management class via a name or keys specified in the ``**kargs``.

        :param name: The name to search for.
        :param return_list: If only the first result or all results should be returned.
        :param no_errors: Silence some errors which would raise if this turned to False.
        :param kargs: Additional key-value pairs which may help in finding the desired objects.
        :return: A single object or a list of all search results.
        """
        return self._collection_mgr.mgmtclasses().find(name=name, return_list=return_list, no_errors=no_errors, **kargs)

    def find_package(self, name=None, return_list=False, no_errors=False, **kargs):
        """
        Find a package via a name or keys specified in the ``**kargs``.

        :param name: The name to search for.
        :param return_list: If only the first result or all results should be returned.
        :param no_errors: Silence some errors which would raise if this turned to False.
        :param kargs: Additional key-value pairs which may help in finding the desired objects.
        :return: A single object or a list of all search results.
        """
        return self._collection_mgr.packages().find(name=name, return_list=return_list, no_errors=no_errors, **kargs)

    def find_file(self, name=None, return_list=False, no_errors=False, **kargs):
        """
        Find a file via a name or keys specified in the ``**kargs``.

        :param name: The name to search for.
        :param return_list: If only the first result or all results should be returned.
        :param no_errors: Silence some errors which would raise if this turned to False.
        :param kargs: Additional key-value pairs which may help in finding the desired objects.
        :return: A single object or a list of all search results.
        """
        return self._collection_mgr.files().find(name=name, return_list=return_list, no_errors=no_errors, **kargs)

    # ==========================================================================

    def __since(self, mtime, collector, collapse=False):
        """
        Called by get_*_since functions. This is an internal part of Cobbler.

        :param mtime: The timestamp which marks the gate if an object is included or not.
        :param collector: The list of objects to filter after mtime.
        :param collapse: Whether the object should be collapsed to a dict or not. If not the item objects are used for
                         the list.
        :type collapse: bool
        :return: The list of objects which are newer then the given timestamp.
        :rtype: list
        """
        results1 = collector()
        results2 = []
        for x in results1:
            if x.mtime == 0 or x.mtime >= mtime:
                if not collapse:
                    results2.append(x)
                else:
                    results2.append(x.to_dict())
        return results2

    def get_distros_since(self, mtime, collapse=False):
        """
        Returns distros modified since a certain time (in seconds since Epoch)

        :param mtime: The timestamp which marks the gate if an object is included or not.
        :param collapse: collapse=True specifies returning a dict instead of objects.
        :return: The list of distros which are newer then the given timestamp.
        """
        return self.__since(mtime, self.distros, collapse=collapse)

    def get_profiles_since(self, mtime, collapse=False):
        """
        Returns profiles modified since a certain time (in seconds since Epoch)

        :param mtime: The timestamp which marks the gate if an object is included or not.
        :param collapse: If True then this specifies that a list of dicts should be returned instead of a list of
                         objects.
        :return: The list of profiles which are newer then the given timestamp.
        :rtype: list
        """
        return self.__since(mtime, self.profiles, collapse=collapse)

    def get_systems_since(self, mtime, collapse=False):
        """
        Return systems modified since a certain time (in seconds since Epoch)

        :param mtime: The timestamp which marks the gate if an object is included or not.
        :param collapse: If True then this specifies that a list of dicts should be returned instead of a list of
                         objects.
        :return: The list of systems which are newer then the given timestamp.
        :rtype: list
        """
        return self.__since(mtime, self.systems, collapse=collapse)

    def get_repos_since(self, mtime, collapse=False):
        """
        Return repositories modified since a certain time (in seconds since Epoch)

        :param mtime: The timestamp which marks the gate if an object is included or not.
        :param collapse: If True then this specifies that a list of dicts should be returned instead of a list of
                         objects.
        :return: The list of repositories which are newer then the given timestamp.
        :rtype: list
        """
        return self.__since(mtime, self.repos, collapse=collapse)

    def get_images_since(self, mtime, collapse=False):
        """
        Return images modified since a certain time (in seconds since Epoch)

        :param mtime: The timestamp which marks the gate if an object is included or not.
        :param collapse: If True then this specifies that a list of dicts should be returned instead of a list of
                         objects.
        :return: The list of images which are newer then the given timestamp.
        :rtype: list
        """
        return self.__since(mtime, self.images, collapse=collapse)

    def get_mgmtclasses_since(self, mtime, collapse=False):
        """
        Return management classes modified since a certain time (in seconds since Epoch)

        :param mtime: The timestamp which marks the gate if an object is included or not.
        :param collapse: If True then this specifies that a list of dicts should be returned instead of a list of
                         objects.
        :return: The list of management classes which are newer then the given timestamp.
        :rtype: list
        """
        return self.__since(mtime, self.mgmtclasses, collapse=collapse)

    def get_packages_since(self, mtime, collapse=False):
        """
        Return packages modified since a certain time (in seconds since Epoch)

        :param mtime: The timestamp which marks the gate if an object is included or not.
        :param collapse: If True then this specifies that a list of dicts should be returned instead of a list of
                         objects.
        :return: The list of packages which are newer then the given timestamp.
        :rtype: list
        """
        return self.__since(mtime, self.packages, collapse=collapse)

    def get_files_since(self, mtime, collapse=False):
        """
        Return files modified since a certain time (in seconds since Epoch)

        :param mtime: The timestamp which marks the gate if an object is included or not.
        :param collapse: If True then this specifies that a list of dicts should be returned instead of a list of
                         objects.
        :return: The list of files which are newer then the given timestamp.
        :rtype: list
        """
        return self.__since(mtime, self.files, collapse=collapse)

    # ==========================================================================

    def get_signatures(self):
        """
        This returns the local signature cache.

        :return: The dict containing all signatures.
        """
        return utils.SIGNATURE_CACHE

    def signature_update(self, logger):
        """
        Update all signatures from the URL specified in the settings.

        :param logger: The logger to audit the removal with.
        """
        try:
            url = self.settings().signature_url
            dlmgr = download_manager.DownloadManager(self._collection_mgr, self.logger)
            # write temp json file
            tmpfile = tempfile.NamedTemporaryFile()
            sigjson = dlmgr.urlread(url)
            tmpfile.write(sigjson.text.encode())
            tmpfile.flush()
            logger.debug("Successfully got file from %s" % self.settings().signature_url)
            # test the import without caching it
            try:
                utils.load_signatures(tmpfile.name, cache=False)
            except:
                logger.error("Downloaded signatures failed test load (tempfile = %s)" % tmpfile.name)

            # rewrite the real signature file and import it for real
            f = open(self.settings().signature_path, "w")
            f.write(sigjson.text)
            f.close()

            utils.load_signatures(self.settings().signature_path)
        except:
            utils.log_exc(logger)

    # ==========================================================================

    def dump_vars(self, obj, format=False):
        """
        Dump all known variables related to that object.

        :param obj: The object for which the variables should be dumped.
        :param format: If True the values will align in one column and be pretty printed for cli example.
        :return: A dictionary with all the information which could be collected.
        """
        return obj.dump_vars(format)

    # ==========================================================================

    def auto_add_repos(self):
        """
        Import any repos this server knows about and mirror them. Run ``cobbler reposync`` to apply the changes.
        Credit: Seth Vidal.
        """
        self.log("auto_add_repos")
        try:
            import yum
        except:
            raise CX(_("yum is not installed"))

        version = yum.__version__
        (a, b, c) = version.split(".")
        version = a * 1000 + b * 100 + c
        if version < 324:
            raise CX(_("need yum > 3.2.4 to proceed"))

        base = yum.YumBase()
        base.doRepoSetup()
        repositorys = base.repos.listEnabled()
        if len(repositorys) == 0:
            raise CX(_("no repos enabled/available -- giving up."))

        for repository in repositorys:
            url = repository.urls[0]
            cobbler_repo = self.new_repo()
            auto_name = repository.name.replace(" ", "")
            # FIXME: probably doesn't work for yum-rhn-plugin ATM
            cobbler_repo.set_mirror(url)
            cobbler_repo.set_name(auto_name)
            print("auto adding: %s (%s)" % (auto_name, url))
            self._collection_mgr.repos().add(cobbler_repo, save=True)

    # ==========================================================================

    def get_repo_config_for_profile(self, obj):
        """
        Get the repository configuration for the specified profile

        :param obj: The profile to return the configuration for.
        :return: The repository configuration as a string.
        :rtype: str
        """
        return self.yumgen.get_yum_config(obj, True)

    def get_repo_config_for_system(self, obj):
        """
        Get the repository configuration for the specified system.

        :param obj: The system to return the configuration for.
        :return: The repository configuration as a string.
        :rtype: str
        """
        return self.yumgen.get_yum_config(obj, False)

    # ==========================================================================

    def get_template_file_for_profile(self, obj, path):
        """
        Get the template for the specified profile.

        :param obj: The object which is related to that template.
        :param path: The path to the template.
        :return: The template as in its string representation.
        """
        template_results = self.tftpgen.write_templates(obj, False, path)
        if path in template_results:
            return template_results[path]
        else:
            return "# template path not found for specified profile"

    def get_template_file_for_system(self, obj, path):
        """
        Get the template for the specified system.

        :param obj: The object which is related to that template.
        :param path: The path to the template.
        :return: The template as in its string representation.
        """
        template_results = self.tftpgen.write_templates(obj, False, path)
        if path in template_results:
            return template_results[path]
        else:
            return "# template path not found for specified system"

    # ==========================================================================

    def generate_gpxe(self, profile, system):
        """
        Generate the gpxe configuration files. The system wins over the profile.

        :param profile: The profile to return the configuration for.
        :param system: The system to return the configuration for.
        :return: The generated configuration file.
        """
        self.log("generate_gpxe")
        if system:
            return self.tftpgen.generate_gpxe("system", system)
        else:
            return self.tftpgen.generate_gpxe("profile", profile)

    # ==========================================================================

    def generate_bootcfg(self, profile, system):
        """
        Generate a boot configuration. The system wins over the profile.

        :param profile: The profile to return the configuration for.
        :param system: The system to return the configuration for.
        :return: The generated configuration file.
        """
        self.log("generate_bootcfg")
        if system:
            return self.tftpgen.generate_bootcfg("system", system)
        else:
            return self.tftpgen.generate_bootcfg("profile", profile)

    # ==========================================================================

    def generate_script(self, profile, system, name):
        """
        Generate an autoinstall script for the specified profile or system. The system wins over the profile.

        :param profile: The profile to generate the script for.
        :param system: The system to generate the script for.
        :param name: The name of the script which should be generated.
        :return: The generated script or an error message.
        """
        self.log("generate_script")
        if system:
            return self.tftpgen.generate_script("system", system, name)
        else:
            return self.tftpgen.generate_script("profile", profile, name)

    # ==========================================================================

    def check(self, logger=None):
        """
        See if all preqs for network booting are valid. This returns a list of strings containing instructions on things
        to correct. An empty list means there is nothing to correct, but that still doesn't mean there are configuration
        errors. This is mainly useful for human admins, who may, for instance, forget to properly set up their TFTP
        servers for PXE, etc.

        :param logger: The logger to audit the removal with.
        :return: None or a list of things to address.
        :rtype: None or list
        """
        self.log("check")
        action_check = check.CobblerCheck(self._collection_mgr, logger=logger)
        return action_check.run()

    # ==========================================================================

    def dlcontent(self, force=False, logger=None):
        """
        Downloads bootloader content that may not be avialable in packages for the given arch, ex: if installing on PPC,
        get syslinux. If installing on x86_64, get elilo, etc.

        :param force: Force the download, although the content may be already downloaded.
        :param logger: The logger to audit the removal with.
        """
        # FIXME: teach code that copies it to grab from the right place
        self.log("dlcontent")
        grabber = dlcontent.ContentDownloader(self._collection_mgr, logger=logger)
        return grabber.run(force)

    # ==========================================================================

    def validate_autoinstall_files(self, logger=None):
        """
        Validate if any of the autoinstallation files are invalid and if yes report this.

        :param logger: The logger to audit the removal with.
        """
        self.log("validate_autoinstall_files")
        autoinstall_mgr = autoinstall_manager.AutoInstallationManager(self._collection_mgr)
        autoinstall_mgr.validate_autoinstall_files(logger)

    # ==========================================================================

    def sync(self, verbose=False, logger=None):
        """
        Take the values currently written to the configuration files in /etc, and /var, and build out the information
        tree found in /tftpboot. Any operations done in the API that have not been saved with serialize() will NOT be
        synchronized with this command.

        :param verbose: If the action should be just logged as needed or (if True) as much verbose as possible.
        :param logger: The logger to audit the removal with.
        """
        self.log("sync")
        sync = self.get_sync(verbose=verbose, logger=logger)
        sync.run()

    # ==========================================================================

    def sync_dhcp(self, verbose=False, logger=None):
        """
        Only build out the DHCP configuration

        :param verbose: If the action should be just logged as needed or (if True) as much verbose as possible.
        :param logger: The logger to audit the removal with.
        """
        self.log("sync_dhcp")
        sync = self.get_sync(verbose=verbose, logger=logger)
        sync.sync_dhcp()
    # ==========================================================================

    def get_sync(self, verbose=False, logger=None):
        """
        Get a Cobbler Sync object which may be executed through the call of ``obj.run()``.

        :param verbose: If the action should be just logged as needed or (if True) as much verbose as possible.
        :param logger: The logger to audit the removal with.
        :return: An instance of the CobblerSync class to execute the sync with.
        """
        self.dhcp = self.get_module_from_file(
            "dhcp",
            "module",
            "managers.isc"
        ).get_manager(self._collection_mgr, logger)
        self.dns = self.get_module_from_file(
            "dns",
            "module",
            "managers.bind"
        ).get_manager(self._collection_mgr, logger)
        self.tftpd = self.get_module_from_file(
            "tftpd",
            "module",
            "managers.in_tftpd",
        ).get_manager(self._collection_mgr, logger)

        return sync.CobblerSync(self._collection_mgr, dhcp=self.dhcp, dns=self.dns, tftpd=self.tftpd, verbose=verbose,
                                logger=logger)

    # ==========================================================================

    def reposync(self, name=None, tries=1, nofail=False, logger=None):
        """
        Take the contents of ``/var/lib/cobbler/repos`` and update them -- or create the initial copy if no contents
        exist yet.

        :param name: The name of the repository to run reposync for.
        :param tries: How many tries should be executed before the action fails.
        :param nofail: If True then the action will fail, otherwise the action will just be skipped. This respects the
                       ``tries`` parameter.
        :param logger: The logger to audit the removal with.
        """
        self.log("reposync", [name])
        action_reposync = reposync.RepoSync(self._collection_mgr, tries=tries, nofail=nofail, logger=logger)
        action_reposync.run(name)

    # ==========================================================================

    def status(self, mode, logger=None):
        """
        Get the status of the current Cobbler instance.

        :param mode: "text" or anything else. Meaning whether the output is thought for the terminal or not.
        :param logger: The logger to audit the removal with.
        :return: The current status of Cobbler.
        """
        statusifier = status.CobblerStatusReport(self._collection_mgr, mode, logger=logger)
        return statusifier.run()

    # ==========================================================================

    def import_tree(self, mirror_url, mirror_name, network_root=None, autoinstall_file=None, rsync_flags=None,
                    arch=None, breed=None, os_version=None, logger=None):
        """
        Automatically import a directory tree full of distribution files.

        :param mirror_url: Can be a string that represents a path, a user@host syntax for SSH, or an rsync:// address.
                           If mirror_url is a filesystem path and mirroring is not desired, set network_root to
                           something like "nfs://path/to/mirror_url/root"
        :param mirror_name:
        :param network_root:
        :param autoinstall_file:
        :param rsync_flags:
        :param arch:
        :param breed:
        :param os_version:
        :param logger: The logger to audit the removal with.
        """
        self.log("import_tree", [mirror_url, mirror_name, network_root, autoinstall_file, rsync_flags])

        # Both --path and --name are required arguments.
        if mirror_url is None or not mirror_url:
            self.log("import failed.  no --path specified")
            return False
        if mirror_name is None or not mirror_name:
            self.log("import failed.  no --name specified")
            return False

        path = os.path.normpath("%s/distro_mirror/%s" % (self.settings().webdir, mirror_name))
        if arch is not None:
            arch = arch.lower()
            if arch == "x86":
                # be consistent
                arch = "i386"
            if path.split("-")[-1] != arch:
                path += ("-%s" % arch)

        # We need to mirror (copy) the files.
        self.log("importing from a network location, running rsync to fetch the files first")

        utils.mkdir(path)

        # Prevent rsync from creating the directory name twice if we are copying via rsync.

        if not mirror_url.endswith("/"):
            mirror_url = "%s/" % mirror_url

        if mirror_url.startswith("http://") or mirror_url.startswith("https://") or mirror_url.startswith("ftp://")\
                or mirror_url.startswith("nfs://"):
            # HTTP mirrors are kind of primative. rsync is better. That's why this isn't documented in the manpage and
            # we don't support them.
            # TODO: how about adding recursive FTP as an option?
            self.log("unsupported protocol")
            return False
        else:
            # Good, we're going to use rsync.. We don't use SSH for public mirrors and local files.
            # Presence of user@host syntax means use SSH
            spacer = ""
            if not mirror_url.startswith("rsync://") and not mirror_url.startswith("/"):
                spacer = ' -e "ssh" '
            rsync_cmd = RSYNC_CMD
            if rsync_flags:
                rsync_cmd += " " + rsync_flags

            # If --available-as was specified, limit the files we pull down via rsync to just those that are critical
            # to detecting what the distro is
            if network_root is not None:
                rsync_cmd += " --include-from=/etc/cobbler/import_rsync_whitelist"

            # kick off the rsync now
            utils.run_this(rsync_cmd, (spacer, mirror_url, path), self.logger)

        if network_root is not None:
            # In addition to mirroring, we're going to assume the path is available over http, ftp, and nfs, perhaps on
            # an external filer. Scanning still requires --mirror is a filesystem path, but --available-as marks the
            # network path. This allows users to point the path at a directory containing just the network boot files
            # while the rest of the distro files are available somewhere else.

            # Find the filesystem part of the path, after the server bits, as each distro URL needs to be calculated
            # relative to this.

            if not network_root.endswith("/"):
                network_root += "/"
            valid_roots = ["nfs://", "ftp://", "http://", "https://"]
            for valid_root in valid_roots:
                if network_root.startswith(valid_root):
                    break
            else:
                self.log("Network root given to --available-as must be nfs://, ftp://, http://, or https://")
                return False

            if network_root.startswith("nfs://"):
                try:
                    (a, b, rest) = network_root.split(":", 3)
                except:
                    self.log("Network root given to --available-as is missing a colon, please see the manpage example.")
                    return False

        import_module = self.get_module_by_name("managers.import_signatures")\
            .get_import_manager(self._collection_mgr, logger)
        import_module.run(path, mirror_name, network_root, autoinstall_file, arch, breed, os_version)

    # ==========================================================================

    def acl_config(self, adduser=None, addgroup=None, removeuser=None, removegroup=None, logger=None):
        """
        Configures users/groups to run the Cobbler CLI as non-root.
        Pass in only one option at a time. Powers ``cobbler aclconfig``.

        :param adduser:
        :param addgroup:
        :param removeuser:
        :param removegroup:
        :param logger: The logger to audit the removal with.
        """
        action_acl = acl.AclConfig(self._collection_mgr, logger)
        action_acl.run(
            adduser=adduser,
            addgroup=addgroup,
            removeuser=removeuser,
            removegroup=removegroup
        )

    # ==========================================================================

    def serialize(self):
        """
        Save the cobbler_collections to disk.
        Cobbler internal use only.
        """
        self._collection_mgr.serialize()

    def deserialize(self):
        """
        Load cobbler_collections from disk.
        Cobbler internal use only.
        """
        return self._collection_mgr.deserialize()

    # ==========================================================================

    def get_module_by_name(self, module_name):
        """
        Returns a loaded Cobbler module named 'name', if one exists, else None.
        Cobbler internal use only.

        :param module_name:
        :return:
        """
        return module_loader.get_module_by_name(module_name)

    def get_module_from_file(self, section, name, fallback=None):
        """
        Looks in ``/etc/cobbler/modules.conf`` for a section called 'section' and a key called 'name', and then returns
        the module that corresponds to the value of that key.
        Cobbler internal use only.

        :param section:
        :param name:
        :param fallback:
        :return:
        """
        return module_loader.get_module_from_file(section, name, fallback)

    def get_module_name_from_file(self, section, name, fallback=None):
        """
        Looks up a module the same as ``get_module_from_file`` but returns the module name rather than the module
        itself.

        :param section:
        :param name:
        :param fallback:
        :return:
        """
        return module_loader.get_module_name(section, name, fallback)

    def get_modules_in_category(self, category):
        """
        Returns all modules in a given category, for instance "serializer", or "cli".
        Cobbler internal use only.

        :param category: The category to check.
        :return: The list of modules.
        """
        return module_loader.get_modules_in_category(category)

    # ==========================================================================

    def authenticate(self, user, password):
        """
        (Remote) access control. This depends on the chosen authentication module.
        Cobbler internal use only.

        :param user: The username to check for authentication.
        :param password: The password to check for authentication.
        :return: Whether the action succeeded or not.
        """
        rc = self.authn.authenticate(self, user, password)
        self.log("authenticate", [user, rc])
        return rc

    def authorize(self, user, resource, arg1=None, arg2=None):
        """
        (Remote) access control. This depends on the chosen authorization module.
        Cobbler internal use only.

        :param user: The username to check for authorization.
        :param resource: The type of resource which should be checked for access from the supplied user.
        :param arg1: The actual resource to check for authorization.
        :param arg2: Not known what this parameter does exactly.
        :return: The return code of the action.
        """
        rc = self.authz.authorize(self, user, resource, arg1, arg2)
        self.log("authorize", [user, resource, arg1, arg2, rc], debug=True)
        return rc

    # ==========================================================================

    def build_iso(self, iso=None,
                  profiles=None, systems=None, buildisodir=None, distro=None,
                  standalone=None, airgapped=None, source=None,
                  exclude_dns=None, xorrisofs_opts=None, logger=None):
        """
        Build an iso image which may be network bootable or not.

        :param iso:
        :param profiles:
        :param systems:
        :param buildisodir:
        :param distro:
        :param standalone:
        :param airgapped:
        :param source:
        :param exclude_dns:
        :param xorrisofs_opts:
        :param logger: The logger to audit the removal with.
        """
        builder = buildiso.BuildIso(self._collection_mgr, logger=logger)
        builder.run(
            iso=iso, profiles=profiles, systems=systems, buildisodir=buildisodir, distro=distro, standalone=standalone,
            airgapped=airgapped, source=source, exclude_dns=exclude_dns, xorrisofs_opts=xorrisofs_opts
        )

    # ==========================================================================

    def hardlink(self, logger=None):
        """
        Hardlink all files where this is possible to improve performance.

        :param logger: The logger to audit the removal with.
        :return: The return code of the subprocess call which actually hardlinks the files.
        """
        linker = hardlink.HardLinker(self._collection_mgr, logger=logger)
        return linker.run()

    # ==========================================================================

    def replicate(self, cobbler_master=None, port="80", distro_patterns="", profile_patterns="", system_patterns="",
                  repo_patterns="", image_patterns="", mgmtclass_patterns=None, package_patterns=None,
                  file_patterns=None, prune=False, omit_data=False, sync_all=False, use_ssl=False, logger=None):
        """
        Pull down data/configs from a remote Cobbler server that is a master to this server.

        :param cobbler_master: The hostname/URL of the other Cobbler server
        :type cobbler_master: str
        :param port: The port to use for the replication task.
        :type port: str
        :param distro_patterns: The pattern of distros which should be synced.
        :param profile_patterns: The pattern of profiles which should be synced.
        :param system_patterns: The pattern of systems which should be synced.
        :param repo_patterns: The pattern of repositories which should be synced.
        :param image_patterns: The pattern of images which should be synced.
        :param mgmtclass_patterns: The pattern of management classes which should be synced.
        :param package_patterns: The pattern of packages which should be synced.
        :param file_patterns: The pattern of files which should be synced.
        :param prune: Whether the object not on the master should be removed or not.
        :type prune: bool
        :param omit_data: If the data downloaded by the current Cobbler server should be rsynced to the destination
                          server.
        :type omit_data: bool
        :param sync_all: This parameter behaves similarly to a dry run argument. If True then everything will executed,
                         if False then only some things are synced.
        :type sync_all: bool
        :param use_ssl: Whether SSL should be used (True) or not (False).
        :type use_ssl: bool
        :param logger: The logger to audit the removal with.
        """
        replicator = replicate.Replicate(self._collection_mgr, logger=logger)
        return replicator.run(
            cobbler_master=cobbler_master, port=port, distro_patterns=distro_patterns,
            profile_patterns=profile_patterns, system_patterns=system_patterns, repo_patterns=repo_patterns,
            image_patterns=image_patterns, mgmtclass_patterns=mgmtclass_patterns, package_patterns=package_patterns,
            file_patterns=file_patterns, prune=prune, omit_data=omit_data, sync_all=sync_all, use_ssl=use_ssl
        )

    # ==========================================================================

    def report(self, report_what=None, report_name=None, report_type=None, report_fields=None, report_noheaders=None):
        """
        Report functionality for Cobbler.

        :param report_what: The object type that should be reported.
        :param report_name: The name of the object which should be possibly reported.
        :param report_type: May be either "text", "csv", "mediawiki", "trac" or "doku".
        :param report_fields: Specify "all" or the fields you want to be reported.
        :param report_noheaders: If the column headers should be included in the output or not.
        """
        reporter = report.Report(self._collection_mgr)
        return reporter.run(report_what=report_what, report_name=report_name, report_type=report_type,
                            report_fields=report_fields, report_noheaders=report_noheaders)

    # ==========================================================================

    def power_system(self, system, power_operation, user=None, password=None, logger=None):
        """
        Power on / power off / get power status /reboot a system.

        :param system: Cobbler system
        :type system: str
        :param power_operation: power operation. Valid values: on, off, reboot, status
        :type power_operation: str
        :param user: power management user
        :type user: str
        :param password: power management password
        :type password: str
        :param logger: The logger to audit the removal with.
        :type logger: Logger
        :return: bool if operation was successful
        """

        if power_operation == "on":
            self.power_mgr.power_on(system, user=user, password=password, logger=logger)
        elif power_operation == "off":
            self.power_mgr.power_off(system, user=user, password=password, logger=logger)
        elif power_operation == "status":
            return self.power_mgr.get_power_status(system, user=user, password=password, logger=logger)
        elif power_operation == "reboot":
            self.power_mgr.reboot(system, user=user, password=password, logger=logger)
        else:
            utils.die(self.logger, "invalid power operation '%s', expected on/off/status/reboot" % power_operation)
        return None

    # ==========================================================================

    def clear_logs(self, system, logger=None):
        """
        Clears console and anamon logs for system

        :param system: The system to clear logs of.
        :param logger: The logger to audit the log clearing with.
        """
        log.LogTool(self._collection_mgr, system, self, logger=logger).clear()
  0707010000006B000081A40000000000000000000000015ECE2444000037DC000000000000000000000000000000000000002D00000000cobbler-3.1.2/cobbler/autoinstall_manager.py  from builtins import object
from builtins import str
import os

from cobbler import autoinstallgen
from cobbler import clogger
from cobbler import utils
from cobbler.cexceptions import CX

TEMPLATING_ERROR = 1
KICKSTART_ERROR = 2


class AutoInstallationManager(object):
    """
    Manage automatic installation templates, snippets and final files
    """

    def __init__(self, collection_mgr, logger=None):
        """
        Constructor for the autoinstall manager.

        :param collection_mgr: The collection manager which has all objects.
        :param logger: The logger object which logs to the desired target. If this argument is None then a default
                       Cobbler logger is created.
        """

        self.collection_mgr = collection_mgr
        self.snippets_base_dir = self.collection_mgr.settings().autoinstall_snippets_dir
        self.templates_base_dir = self.collection_mgr.settings().autoinstall_templates_dir
        self.autoinstallgen = autoinstallgen.AutoInstallationGen(self.collection_mgr)
        if logger is None:
            logger = clogger.Logger()
        self.logger = logger

    def validate_autoinstall_template_file_path(self, autoinstall, for_item=True, new_autoinstall=False):
        """
        Validate the automatic installation template's relative file path.

        :param autoinstall: automatic installation template relative file path
        :type autoinstall: str
        :param for_item: enable/disable special handling for Item objects
        :type for_item: bool
        :param new_autoinstall: when set to true new filenames are allowed
        :type new_autoinstall: bool
        :returns: automatic installation template relative file path
        :rtype: str
        """

        if not isinstance(autoinstall, str):
            raise CX("Invalid input, autoinstall must be a string")
        else:
            autoinstall = autoinstall.strip()

        if autoinstall == "":
            # empty autoinstall is allowed (interactive installations)
            return autoinstall

        if for_item is True:
            # this autoinstall value has special meaning for Items
            # other callers of this function have no use for this
            if autoinstall == "<<inherit>>":
                return autoinstall

        if autoinstall.find("..") != -1:
            raise CX("Invalid automatic installation template file location %s, it must not contain .." % autoinstall)

        autoinstall_path = "%s/%s" % (self.templates_base_dir, autoinstall)
        if not os.path.isfile(autoinstall_path) and not new_autoinstall:
            raise CX("Invalid automatic installation template file location %s, file not found" % autoinstall_path)

        return autoinstall

    def get_autoinstall_templates(self):
        """
        Get automatic OS installation templates

        :returns: A list of automatic installation templates
        :rtype: list
        """

        files = []
        for root, dirnames, filenames in os.walk(self.templates_base_dir):
            for filename in filenames:
                rel_root = root[len(self.templates_base_dir) + 1:]
                if rel_root:
                    rel_path = "%s/%s" % (rel_root, filename)
                else:
                    rel_path = filename
                files.append(rel_path)

        files.sort()
        return files

    def read_autoinstall_template(self, file_path):
        """
        Read an automatic OS installation template

        :param file_path: automatic installation template relative file path
        :type file_path: str
        :returns: automatic installation template content
        :rtype: str
        """

        file_path = self.validate_autoinstall_template_file_path(file_path, for_item=False)

        file_full_path = "%s/%s" % (self.templates_base_dir, file_path)
        fileh = open(file_full_path, "r")
        data = fileh.read()
        fileh.close()

        return data

    def write_autoinstall_template(self, file_path, data):
        """
        Write an automatic OS installation template

        :param file_path: automatic installation template relative file path
        :type file_path: str
        :param data: automatic installation template content
        :type data: str
        :rtype: bool
        """

        file_path = self.validate_autoinstall_template_file_path(file_path, for_item=False, new_autoinstall=True)

        file_full_path = "%s/%s" % (self.templates_base_dir, file_path)
        try:
            utils.mkdir(os.path.dirname(file_full_path))
        except:
            utils.die(self.logger, "unable to create directory for automatic OS installation template at %s"
                      % file_path)

        fileh = open(file_full_path, "w+")
        fileh.write(data)
        fileh.close()

        return True

    def remove_autoinstall_template(self, file_path):
        """
        Remove an automatic OS installation template

        :param file_path: automatic installation template relative file path
        :type file_path: str
        """

        file_path = self.validate_autoinstall_template_file_path(file_path, for_item=False)

        file_full_path = "%s/%s" % (self.templates_base_dir, file_path)
        if not self.is_autoinstall_in_use(file_path):
            os.remove(file_full_path)
        else:
            utils.die(self.logger, "attempt to delete in-use file")

    def validate_autoinstall_snippet_file_path(self, snippet, new_snippet=False):
        """
        Validate the snippet's relative file path.

        :param snippet: automatic installation snippet relative file path
        :type snippet: str
        :param new_snippet: when set to true new filenames are allowed
        :type new_snippet: bool
        :returns: Snippet if successful otherwise raises an exception.
        :raises CX: Raised when the arguments are invalid or the action performed raised an internal error.
        :rtype: str
        """

        if not isinstance(snippet, str):
            raise CX("Invalid input, snippet must be a string")
        else:
            snippet = snippet.strip()

        if snippet.find("..") != -1:
            raise CX("Invalid automated installation snippet file location %s, it must not contain .." % snippet)

        snippet_path = "%s/%s" % (self.snippets_base_dir, snippet)
        if not os.path.isfile(snippet_path) and not new_snippet:
            raise CX("Invalid automated installation snippet file location %s, file not found" % snippet_path)

        return snippet

    def get_autoinstall_snippets(self):
        """
        Get a list of all autoinstallation snippets.

        :return: The list of snippets
        :rtype: list
        """
        files = []
        for root, dirnames, filenames in os.walk(self.snippets_base_dir):

            for filename in filenames:
                rel_root = root[len(self.snippets_base_dir) + 1:]
                if rel_root:
                    rel_path = "%s/%s" % (rel_root, filename)
                else:
                    rel_path = filename
                files.append(rel_path)

        files.sort()
        return files

    def read_autoinstall_snippet(self, file_path):
        """
        Reads a autoinstall snippet from underneath the configured snippet base dir.

        :param file_path: The relative file path under the configured snippets base dir.
        :type file_path: str
        :return: The read snippet.
        :rtype: str
        """
        file_path = self.validate_autoinstall_snippet_file_path(file_path)

        file_full_path = "%s/%s" % (self.snippets_base_dir, file_path)
        fileh = open(file_full_path, "r")
        data = fileh.read()
        fileh.close()

        return data

    def write_autoinstall_snippet(self, file_path, data):
        """
        Writes a snippet with the given content to the relative path under the snippet root directory.

        :param file_path: The relative path under the configured snippet base dir.
        :type file_path: str
        :param data: The snippet code.
        :type data: str
        """
        file_path = self.validate_autoinstall_snippet_file_path(file_path, new_snippet=True)

        file_full_path = "%s/%s" % (self.snippets_base_dir, file_path)
        try:
            utils.mkdir(os.path.dirname(file_full_path))
        except:
            utils.die(self.logger, "unable to create directory for automatic OS installation snippet at %s" % file_path)

        fileh = open(file_full_path, "w+")
        fileh.write(data)
        fileh.close()

    def remove_autoinstall_snippet(self, file_path):
        """
        Remove the autoinstall snippet with the given path.

        :param file_path: The path relative to the configured snippet root.
        :type file_path: str
        :return: A boolean indicating the success of the task.
        :rtype: bool
        """
        file_path = self.validate_autoinstall_snippet_file_path(file_path)

        file_full_path = "%s/%s" % (self.snippets_base_dir, file_path)
        os.remove(file_full_path)

        return True

    def is_autoinstall_in_use(self, name):
        """
        Reports the status if a given system is currently being provisioned.

        :param name: The name of the system.
        :type name: str
        :return: Whether the system is in install mode or not.
        :rtype: bool
        """
        for x in self.collection_mgr.profiles():
            if x.autoinstall is not None and x.autoinstall == name:
                return True
        for x in self.collection_mgr.systems():
            if x.autoinstall is not None and x.autoinstall == name:
                return True
        return False

    def generate_autoinstall(self, profile=None, system=None):
        """
        Generates the autoinstallation for a system or a profile. You may only specifify one parameter. If you specify
        both, the system is generated and the profile argument is ignored.

        :param profile: The Cobbler profile you want an autoinstallation generated for.
        :param system: The Cobbler system you want an autoinstallation generated for.
        :return: The rendered template for the system or profile.
        :rtype: str
        """
        if system is not None:
            return self.autoinstallgen.generate_autoinstall_for_system(system)
        elif profile is not None:
            return self.autoinstallgen.generate_autoinstall_for_profile(profile)

    def log_autoinstall_validation_errors(self, errors_type, errors):
        """
        Log automatic installation file errors

        :param errors_type: validation errors type
        :type errors_type: int
        :param errors: A list with all the errors which occurred.
        :type errors: list
        """

        if errors_type == TEMPLATING_ERROR:
            self.logger.warning("Potential templating errors:")
            for error in errors:
                (line, col) = error["lineCol"]
                line -= 1   # we add some lines to the template data, so numbering is off
                self.logger.warning("Unknown variable found at line %d, column %d: '%s'"
                                    % (line, col, error["rawCode"]))
        elif errors_type == KICKSTART_ERROR:
            self.logger.warning("Kickstart validation errors: %s" % errors[0])

    def validate_autoinstall_file(self, obj, is_profile):
        """
        Validate automatic installation file used by a system/profile.

        :param obj: system/profile
        :param is_profile: if obj is a profile
        :type is_profile: bool
        :returns: [bool, int, list] list with validation result, errors type and list of errors
        :rtype: list
        """

        last_errors = []
        blended = utils.blender(self.collection_mgr.api, False, obj)

        # get automatic installation template
        autoinstall = blended["autoinstall"]
        if autoinstall is None or autoinstall == "":
            self.logger.info("%s has no automatic installation template set, skipping" % obj.name)
            return [True, 0, ()]

        # generate automatic installation file
        os_version = blended["os_version"]
        self.logger.info("----------------------------")
        self.logger.debug("osversion: %s" % os_version)
        if is_profile:
            self.generate_autoinstall(profile=obj)
        else:
            self.generate_autoinstall(system=obj)
        last_errors = self.autoinstallgen.get_last_errors()
        if len(last_errors) > 0:
            return [False, TEMPLATING_ERROR, last_errors]
        else:
            return [True, 0, ()]

    def validate_autoinstall_files(self, logger=None):
        """
        Determine if Cobbler automatic OS installation files will be accepted by corresponding Linux distribution
        installers. The presence of an error does not imply that the automatic installation file is bad, only that the
        possibility exists. Automatic installation file validators are not available for all automatic installation file
        types and on all operating systems in which Cobbler may be installed.

        :param logger: The logger which watches the validation
        :return: True if all automatic installation files are valid, otherwise false.
        :rtype: bool
        """
        overall_success = True

        for x in self.collection_mgr.profiles():
            (success, errors_type, errors) = self.validate_autoinstall_file(x, True)
            if not success:
                overall_success = False
            if len(errors) > 0:
                self.log_autoinstall_validation_errors(errors_type, errors)
        for x in self.collection_mgr.systems():
            (success, errors_type, errors) = self.validate_autoinstall_file(x, False)
            if not success:
                overall_success = False
            if len(errors) > 0:
                self.log_autoinstall_validation_errors(errors_type, errors)

        if not overall_success:
            self.logger.warning("*** potential errors detected in automatic installation files ***")
        else:
            self.logger.info("*** all automatic installation files seem to be ok ***")

        return overall_success
0707010000006C000081A40000000000000000000000015ECE244400004165000000000000000000000000000000000000002800000000cobbler-3.1.2/cobbler/autoinstallgen.py   """
Builds out filesystem trees/data based on the object tree.
This is the code behind 'cobbler sync'.

Copyright 2006-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""

from future import standard_library
standard_library.install_aliases()
from builtins import object
import urllib.parse
import xml.dom.minidom

from cobbler import templar
from cobbler import utils
from cobbler import validate
from cobbler.cexceptions import FileNotFoundException, CX
from cobbler.utils import _


class AutoInstallationGen(object):
    """
    Handles conversion of internal state to the tftpboot tree layout
    """
    def __init__(self, collection_mgr):
        """
        Constructor

        :param collection_mgr: The collection manager instance which is used for this object. Normally there is only one
                               instance of the collection manager.
        """
        self.collection_mgr = collection_mgr
        self.api = collection_mgr.api
        self.distros = collection_mgr.distros()
        self.profiles = collection_mgr.profiles()
        self.systems = collection_mgr.systems()
        self.settings = collection_mgr.settings()
        self.repos = collection_mgr.repos()
        self.templar = templar.Templar(collection_mgr)

    def createAutoYaSTScript(self, document, script, name):
        """
        This method attaches a script with a given name to an existing AutoYaST XML file.

        :param document: The existing AutoYaST XML file.
        :param script: The script to attach.
        :param name: The name of the script.
        :return: The AutoYaST file with the attached script.
        """
        newScript = document.createElement("script")
        newScriptSource = document.createElement("source")
        newScriptSourceText = document.createCDATASection(script)
        newScript.appendChild(newScriptSource)

        newScriptFile = document.createElement("filename")
        newScriptFileText = document.createTextNode(name)
        newScript.appendChild(newScriptFile)

        newScriptSource.appendChild(newScriptSourceText)
        newScriptFile.appendChild(newScriptFileText)
        return newScript

    def addAutoYaSTScript(self, document, type, source):
        """
        Add scripts to an existing AutoYaST XML.

        :param document: The existing AutoYaST XML object.
        :param type: The type of the script which should be added.
        :param source: The source of the script. This should be ideally a string.
        """
        scripts = document.getElementsByTagName("scripts")
        if scripts.length == 0:
            newScripts = document.createElement("scripts")
            document.documentElement.appendChild(newScripts)
            scripts = document.getElementsByTagName("scripts")
        added = 0
        for stype in scripts[0].childNodes:
            if stype.nodeType == stype.ELEMENT_NODE and stype.tagName == type:
                stype.appendChild(self.createAutoYaSTScript(document, source, type + "_cobbler"))
                added = 1
        if added == 0:
            newChrootScripts = document.createElement(type)
            newChrootScripts.setAttribute("config:type", "list")
            newChrootScripts.appendChild(self.createAutoYaSTScript(document, source, type + "_cobbler"))
            scripts[0].appendChild(newChrootScripts)

    def generate_autoyast(self, profile=None, system=None, raw_data=None):
        """
        Generate auto installation information for SUSE distribution (AutoYaST XML file) for a specific system or
        general profile. Only a system OR profile can be supplied, NOT both.

        :param profile: The profile to generate the AutoYaST file for.
        :param system: The system to generate the AutoYaST file for.
        :param raw_data: The raw data which should be included in the profile.
        :return: The generated AutoYaST XML file.
        :rtype: str
        """
        self.api.logger.info("AutoYaST XML file found. Checkpoint: profile=%s system=%s" % (profile, system))
        runpost = "\ncurl \"http://%s/cblr/svc/op/trig/mode/post/%s/%s\" > /dev/null"
        runpre = "\ncurl \"http://%s/cblr/svc/op/trig/mode/pre/%s/%s\" > /dev/null"

        what = "profile"
        blend_this = profile
        if system:
            what = "system"
            blend_this = system
        blended = utils.blender(self.api, False, blend_this)
        srv = blended["http_server"]

        document = xml.dom.minidom.parseString(raw_data)

        # Do we already have the #raw comment in the XML? (addComment = 0 means, don't add #raw comment)
        addComment = 1
        for node in document.childNodes[1].childNodes:
            if node.nodeType == node.ELEMENT_NODE and node.tagName == "cobbler":
                addComment = 0
                break

        # Add some cobbler information to the XML file, maybe that should be configurable.
        if addComment == 1:
            # startComment = document.createComment("\ncobbler_system_name=$system_name\ncobbler_server=$server\n#raw\n")
            # endComment = document.createComment("\n#end raw\n")
            cobblerElement = document.createElement("cobbler")
            cobblerElementSystem = xml.dom.minidom.Element("system_name")
            cobblerElementProfile = xml.dom.minidom.Element("profile_name")
            if (system is not None):
                cobblerTextSystem = document.createTextNode(system.name)
                cobblerElementSystem.appendChild(cobblerTextSystem)
            if (profile is not None):
                cobblerTextProfile = document.createTextNode(profile.name)
                cobblerElementProfile.appendChild(cobblerTextProfile)

            cobblerElementServer = document.createElement("server")
            cobblerTextServer = document.createTextNode(blended["http_server"])
            cobblerElementServer.appendChild(cobblerTextServer)

            cobblerElement.appendChild(cobblerElementServer)
            cobblerElement.appendChild(cobblerElementSystem)
            cobblerElement.appendChild(cobblerElementProfile)

            # FIXME: this is all broken and no longer works.
            #        this entire if block should probably not be
            #        hard-coded anyway
            # self.api.log(document.childNodes[2].childNodes)
            # document.childNodes[1].insertBefore( cobblerElement, document.childNodes[2].childNodes[1])
            # document.childNodes[1].insertBefore( cobblerElement, document.childNodes[1].childNodes[0])

        name = profile.name
        if system is not None:
            name = system.name

        if self.settings.run_install_triggers:
            # notify cobblerd when we start/finished the installation
            self.addAutoYaSTScript(document, "pre-scripts", runpre % (srv, what, name))
            self.addAutoYaSTScript(document, "init-scripts", runpost % (srv, what, name))

        return document.toxml()

    def generate_repo_stanza(self, obj, is_profile=True):
        """
        Automatically attaches yum repos to profiles/systems in automatic installation files (template files) that
        contain the magic $yum_repo_stanza variable. This includes repo objects as well as the yum repos that are part
        of split tree installs, whose data is stored with the distro (example: RHEL5 imports)

        :param obj: The profile or system to generate the repo stanza for.
        :param is_profile: If True then obj is a profile, otherwise obj has to be a system. Otherwise this method will
                           silently fail.
        :return: The string with the attached yum repos.
        :rtype: str
        """

        buf = ""
        blended = utils.blender(self.api, False, obj)
        repos = blended["repos"]

        # keep track of URLs and be sure to not include any duplicates
        included = {}

        for repo in repos:
            # see if this is a source_repo or not
            repo_obj = self.api.find_repo(repo)
            if repo_obj is not None:
                yumopts = ''
                for opt in repo_obj.yumopts:
                    # filter invalid values to the repo statement in automatic installation files

                    if opt in ['exclude', 'include']:
                        value = repo_obj.yumopts[opt].replace(' ', ',')
                        yumopts = yumopts + " --%spkgs=%s" % (opt, value)
                    elif not opt.lower() in validate.AUTOINSTALL_REPO_BLACKLIST:
                        yumopts += " %s=%s" % (opt, repo_obj.yumopts[opt])
                if 'enabled' not in repo_obj.yumopts or repo_obj.yumopts['enabled'] == '1':
                    if repo_obj.mirror_locally:
                        baseurl = "http://%s/cobbler/repo_mirror/%s" % (blended["http_server"], repo_obj.name)
                        if baseurl not in included:
                            buf += "repo --name=%s --baseurl=%s\n" % (repo_obj.name, baseurl)
                        included[baseurl] = 1
                    else:
                        if repo_obj.mirror not in included:
                            buf += "repo --name=%s --baseurl=%s %s\n" % (repo_obj.name, repo_obj.mirror, yumopts)
                        included[repo_obj.mirror] = 1
            else:
                # FIXME: what to do if we can't find the repo object that is listed?
                # This should be a warning at another point, probably not here so we'll just not list it so the
                # automatic installation file will still work as nothing will be here to read the output noise.
                # Logging might be useful.
                pass

        if is_profile:
            distro = obj.get_conceptual_parent()
        else:
            distro = obj.get_conceptual_parent().get_conceptual_parent()

        source_repos = distro.source_repos
        count = 0
        for x in source_repos:
            count += 1
            if not x[1] in included:
                buf += "repo --name=source-%s --baseurl=%s\n" % (count, x[1])
                included[x[1]] = 1

        return buf

    def generate_config_stanza(self, obj, is_profile=True):
        """
        Add in automatic to configure /etc/yum.repos.d on the remote system if the automatic installation file
        (template file) contains the magic $yum_config_stanza.

        :param obj: The profile or system to generate a generate a config stanza for.
        :param is_profile: If the object is a profile. If False it is assumed that the object is a system.
        :return: The curl command to execute to get the configuration for a system or profile.
        """

        if not self.settings.yum_post_install_mirror:
            return ""

        blended = utils.blender(self.api, False, obj)
        if is_profile:
            url = "http://%s/cblr/svc/op/yum/profile/%s" % (blended["http_server"], obj.name)
        else:
            url = "http://%s/cblr/svc/op/yum/system/%s" % (blended["http_server"], obj.name)

        return "curl \"%s\" --output /etc/yum.repos.d/cobbler-config.repo\n" % (url)

    def generate_autoinstall_for_system(self, sys_name):
        """
        Generate an autoinstall config or script for a system.

        :param sys_name: The system name to generate an autoinstall script for.
        :return: The generated output or an error message with a human readable description.
        :rtype: str
        """
        s = self.api.find_system(name=sys_name)
        if s is None:
            return "# system not found"

        p = s.get_conceptual_parent()
        if p is None:
            raise CX(_("system %(system)s references missing profile %(profile)s") % {"system": s.name, "profile": s.profile})

        distro = p.get_conceptual_parent()
        if distro is None:
            # this is an image parented system, no automatic installation file available
            return "# image based systems do not have automatic installation files"

        return self.generate_autoinstall(profile=p, system=s)

    def generate_autoinstall(self, profile=None, system=None):
        """
        This is an internal method for generating an autoinstall config/script. Please use the
        ``generate_autoinstall_for_*`` methods. If you insist on using this mehtod please only supply a profile or a
        system, not both.

        :param profile: The profile to use for generating the autoinstall config/script.
        :param system: The system to use for generating the autoinstall config/script. If both arguments are given,
                       this wins.
        :return: The autoinstall script or configuration file as a string.
        :rtype: str
        """
        obj = system
        obj_type = "system"
        if system is None:
            obj = profile
            obj_type = "profile"

        meta = utils.blender(self.api, False, obj)
        autoinstall_rel_path = meta["autoinstall"]

        if not autoinstall_rel_path:
            return "# automatic installation file value missing or invalid at %s %s" % (obj_type, obj.name)

        # get parent distro
        distro = profile.get_conceptual_parent()
        if system is not None:
            distro = system.get_conceptual_parent().get_conceptual_parent()

        # make autoinstall_meta metavariable available at top level
        autoinstall_meta = meta["autoinstall_meta"]
        del meta["autoinstall_meta"]
        meta.update(autoinstall_meta)

        # add package repositories metadata to autoinstall metavariables
        if distro.breed == "redhat":
            meta["yum_repo_stanza"] = self.generate_repo_stanza(obj, (system is None))
            meta["yum_config_stanza"] = self.generate_config_stanza(obj, (system is None))
        # FIXME: implement something similar to zypper (SUSE based distros) and apt (Debian based distros)

        meta["kernel_options"] = utils.dict_to_string(meta["kernel_options"])
        if "kernel_options_post" in meta:
            meta["kernel_options_post"] = utils.dict_to_string(meta["kernel_options_post"])

        # add install_source_directory metavariable to autoinstall metavariables if distro is based on Debian
        if distro.breed in ["debian", "ubuntu"] and "tree" in meta:
            urlparts = urllib.parse.urlsplit(meta["tree"])
            meta["install_source_directory"] = urlparts[2]

        try:
            autoinstall_path = "%s/%s" % (self.settings.autoinstall_templates_dir, autoinstall_rel_path)
            raw_data = utils.read_file_contents(autoinstall_path, self.api.logger)

            data = self.templar.render(raw_data, meta, None, obj)

            return data
        except FileNotFoundException:
            error_msg = "automatic installation file %s not found at %s" \
                        % (meta["autoinstall"], self.settings.autoinstall_templates_dir)
            self.api.logger.warning(error_msg)
            return "# %s" % error_msg

    def generate_autoinstall_for_profile(self, g):
        """
        Generate an autoinstall config or script for a profile.

        :param g: The Profile to generate the script/config for.
        :return: The generated output or an error message with a human readable description.
        :rtype: str
        """
        g = self.api.find_profile(name=g)
        if g is None:
            return "# profile not found"

        distro = g.get_conceptual_parent()
        if distro is None:
            raise CX(_("profile %(profile)s references missing distro %(distro)s")
                     % {"profile": g.name, "distro": g.distro})

        return self.generate_autoinstall(profile=g)

    def get_last_errors(self):
        """
        Returns the list of errors generated by the last template render action.

        :return: The list of error messages which are available. This may not only contain error messages related to
                 generating autoinstallation configuration and scripts.
        :rtype: list
        """
        return self.templar.last_errors
   0707010000006D000081A40000000000000000000000015ECE2444000009B1000000000000000000000000000000000000002500000000cobbler-3.1.2/cobbler/cexceptions.py  """
Custom exceptions for Cobbler

Copyright 2006-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""

from builtins import Exception


class CobblerException(Exception):
    """
    This is the default Cobbler exception where all other exceptions are inheriting from.
    """

    def __init__(self, value, *args):
        """
        Default constructor for the Exception.

        Bad example: ``CobblerException("Profile %s not found" % profile_name)``

        Good example: ``CobblerException("Profile %s not found", profile_name)``

        :param value: The string representation of the Exception. Do not glue strings and pass them as one. Instead pass
                      them as params and let the constructor of the Exception build the string like (same as it should
                      be done with logging calls). Example see above.
        :param args: Optional arguments which replace a ``%s`` in a Python string.
        """
        self.value = value % args
        # this is a hack to work around some odd exception handling in older pythons
        self.from_cobbler = 1

    def __str__(self):
        """
        This is the string representation of the base Cobbler Exception.
        :return: self.value as a string represented.
        """
        return repr(self.value)


class CX(CobblerException):
    """
    This is a general exception which get's thrown often inside Cobbler.
    """
    pass


class FileNotFoundException(CobblerException):
    """
    This means that the required file was not found during the process of opening it.
    """
    pass


class NotImplementedException(CobblerException):
    """
    On the command line interface not everything is always implemented. This is the exception which stated this.
    """
    pass
   0707010000006E000081A40000000000000000000000015ECE24440000949A000000000000000000000000000000000000001D00000000cobbler-3.1.2/cobbler/cli.py  """
Command line interface for Cobbler.

Copyright 2006-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""

from future import standard_library
standard_library.install_aliases()
from builtins import str
from builtins import object
import optparse
import os
import sys
import time
import traceback
import xmlrpc.client

from cobbler import field_info
from cobbler.items import package, system, image, profile, repo, mgmtclass, distro, file
from cobbler import settings
from cobbler import utils
from cobbler.cexceptions import NotImplementedException


OBJECT_ACTIONS_MAP = {
    "distro": "add copy edit find list remove rename report".split(" "),
    "profile": "add copy dumpvars edit find get-autoinstall list remove rename report".split(" "),
    "system": "add copy dumpvars edit find get-autoinstall list remove rename report poweron poweroff powerstatus "
              "reboot".split(" "),
    "image": "add copy edit find list remove rename report".split(" "),
    "repo": "add copy edit find list remove rename report".split(" "),
    "mgmtclass": "add copy edit find list remove rename report".split(" "),
    "package": "add copy edit find list remove rename report".split(" "),
    "file": "add copy edit find list remove rename report".split(" "),
    "setting": "edit report".split(" "),
    "signature": "reload report update".split(" ")
}

OBJECT_TYPES = list(OBJECT_ACTIONS_MAP.keys())
# would like to use from_iterable here, but have to support python 2.4
OBJECT_ACTIONS = []
for actions in list(OBJECT_ACTIONS_MAP.values()):
    OBJECT_ACTIONS += actions
DIRECT_ACTIONS = "aclsetup buildiso import list replicate report reposync sync validate-autoinstalls version " \
                 "signature get-loaders hardlink".split()

####################################################


def report_items(remote, otype):
    """
    Return all items for a given collection.

    :param remote: The remote to use as the query-source. The remote to use as the query-source.
    :param otype: The object type to query.
    """
    if otype == "setting":
        items = remote.get_settings()
        keys = list(items.keys())
        keys.sort()
        for key in keys:
            item = {'name': key, 'value': items[key]}
            report_item(remote, otype, item=item)
    elif otype == "signature":
        items = remote.get_signatures()
        total_breeds = 0
        total_sigs = 0
        if "breeds" in items:
            print("Currently loaded signatures:")
            bkeys = list(items["breeds"].keys())
            bkeys.sort()
            total_breeds = len(bkeys)
            for breed in bkeys:
                print("%s:" % breed)
                oskeys = list(items["breeds"][breed].keys())
                oskeys.sort()
                if len(oskeys) > 0:
                    total_sigs += len(oskeys)
                    for osversion in oskeys:
                        print("\t%s" % osversion)
                else:
                    print("\t(none)")
            print("\n%d breeds with %d total signatures loaded" % (total_breeds, total_sigs))
        else:
            print("No breeds found in the signature, a signature update is recommended")
            return 1
    else:
        items = remote.get_items(otype)
        for x in items:
            report_item(remote, otype, item=x)


def report_item(remote, otype, item=None, name=None):
    """
    Return a single item in a given collection. Either this is an item object or this method searches for a name.

    :param remote: The remote to use as the query-source.
    :param otype: The object type to query.
    :param item: The item to display
    :param name: The name to search for and display.
    """
    if item is None:
        if otype == "setting":
            cur_settings = remote.get_settings()
            try:
                item = {'name': name, 'value': cur_settings[name]}
            except:
                print("Setting not found: %s" % name)
                return 1
        elif otype == "signature":
            items = remote.get_signatures()
            total_sigs = 0
            if "breeds" in items:
                print("Currently loaded signatures:")
                if name in items["breeds"]:
                    print("%s:" % name)
                    oskeys = list(items["breeds"][name].keys())
                    oskeys.sort()
                    if len(oskeys) > 0:
                        total_sigs += len(oskeys)
                        for osversion in oskeys:
                            print("\t%s" % osversion)
                    else:
                        print("\t(none)")
                    print("\nBreed '%s' has %d total signatures" % (name, total_sigs))
                else:
                    print("No breed named '%s' found" % name)
                    return 1
            else:
                print("No breeds found in the signature, a signature update is recommended")
                return 1
            return
        else:
            item = remote.get_item(otype, name)
            if item == "~":
                print("No %s found: %s" % (otype, name))
                return 1

    if otype == "distro":
        data = utils.to_string_from_fields(item, distro.FIELDS)
    elif otype == "profile":
        data = utils.to_string_from_fields(item, profile.FIELDS)
    elif otype == "system":
        data = utils.to_string_from_fields(item, system.FIELDS, system.NETWORK_INTERFACE_FIELDS)
    elif otype == "repo":
        data = utils.to_string_from_fields(item, repo.FIELDS)
    elif otype == "image":
        data = utils.to_string_from_fields(item, image.FIELDS)
    elif otype == "mgmtclass":
        data = utils.to_string_from_fields(item, mgmtclass.FIELDS)
    elif otype == "package":
        data = utils.to_string_from_fields(item, package.FIELDS)
    elif otype == "file":
        data = utils.to_string_from_fields(item, file.FIELDS)
    elif otype == "setting":
        data = "%-40s: %s" % (item['name'], item['value'])
    print(data)


def list_items(remote, otype):
    """
    List all items of a given object type and print it to stdout.

    :param remote: The remote to use as the query-source.
    :param otype: The object type to query.
    """
    items = remote.get_item_names(otype)
    items.sort()
    for x in items:
        print("   %s" % x)


def n2s(data):
    """
    Return spaces for None

    :param data: The data to check for.
    :return: The data itself or an empty string.
    """
    if data is None:
        return ""
    return data


def opt(options, k, defval=""):
    """
    Returns an option from an Optparse values instance

    :param options: The options object to search in.
    :param k: The key which is in the optparse values instance.
    :param defval: The default value to return.
    :return: The value for the specified key.
    """
    try:
        data = getattr(options, k)
    except:
        # FIXME: debug only
        # traceback.print_exc()
        return defval
    return n2s(data)


def _add_parser_option_from_field(parser, field, settings):
    """
    Add options from a field dynamically to an optparse instance.

    :param parser: The optparse instance to add the options to.
    :param field: The field to parse.
    :param settings: Global cobbler settings as returned from ``CollectionManager.settings()``
    """
    # extract data from field dictionary
    name = field[0]
    default = field[1]
    if isinstance(default, str) and default.startswith("SETTINGS:"):
        setting_name = default.replace("SETTINGS:", "", 1)
        default = settings[setting_name]
    description = field[3]
    tooltip = field[5]
    choices = field[6]
    if choices and default not in choices:
        raise Exception("field %s default value (%s) is not listed in choices (%s)" % (name, default, str(choices)))
    if tooltip != "":
        description += " (%s)" % tooltip

    # generate option string
    option_string = "--%s" % name.replace("_", "-")

    # generate option aliases
    aliases = []
    for deprecated_field in list(field_info.DEPRECATED_FIELDS.keys()):
        if field_info.DEPRECATED_FIELDS[deprecated_field] == name:
            aliases.append("--%s" % deprecated_field)

    # add option to parser
    if isinstance(choices, list) and len(choices) != 0:
        description += " (valid options: %s)" % ",".join(choices)
        parser.add_option(option_string, dest=name, help=description, choices=choices)
        for alias in aliases:
            parser.add_option(alias, dest=name, help=description, choices=choices)
    else:
        parser.add_option(option_string, dest=name, help=description)
        for alias in aliases:
            parser.add_option(alias, dest=name, help=description)


def add_options_from_fields(object_type, parser, fields, network_interface_fields, settings, object_action):
    """
    Add options to the command line from the fields queried from the Cobbler server.

    :param object_type: The object type to add options for.
    :param parser: The optparse instance to add options to.
    :param fields: The list of fields to add options for.
    :param network_interface_fields: The list of network interface fields if the object type is a system.
    :param settings: Global cobbler settings as returned from ``CollectionManager.settings()``
    :param object_action: The object action to add options for. May be "add", "edit", "find", "copy", "rename",
                          "remove". If none of these options is given then this method does nothing.
    """
    if object_action in ["add", "edit", "find", "copy", "rename"]:
        for field in fields:
            _add_parser_option_from_field(parser, field, settings)

        # system object
        if object_type == "system":
            for field in network_interface_fields:
                _add_parser_option_from_field(parser, field, settings)

            parser.add_option("--interface", dest="interface", help="the interface to operate on (can only be "
                                                                    "specified once per command line)")
            if object_action in ["add", "edit"]:
                parser.add_option("--delete-interface", dest="delete_interface", action="store_true")
                parser.add_option("--rename-interface", dest="rename_interface")

        if object_action in ["copy", "rename"]:
            parser.add_option("--newname", help="new object name")

        if object_action not in ["find"] and object_type != "setting":
            parser.add_option("--in-place", action="store_true", default=False, dest="in_place",
                              help="edit items in kopts or autoinstall without clearing the other items")

    elif object_action == "remove":
        parser.add_option("--name", help="%s name to remove" % object_type)
        parser.add_option("--recursive", action="store_true", dest="recursive", help="also delete child objects")

    # FIXME: not supported in 2.0 ?
    # if not object_action in ["dumpvars","find","remove","report","list"]:
    #    parser.add_option("--no-sync",     action="store_true", dest="nosync", help="suppress sync for speed")


class CobblerCLI(object):

    def __init__(self, cliargs):
        """
        The constructor to create a Cobbler CLI.
        """
        # Load server ip and ports from local config
        self.url_cobbler_api = utils.local_get_cobbler_api_url()
        self.url_cobbler_xmlrpc = utils.local_get_cobbler_xmlrpc_url()

        # FIXME: allow specifying other endpoints, and user+pass
        self.parser = optparse.OptionParser()
        self.remote = xmlrpc.client.Server(self.url_cobbler_api)
        self.shared_secret = utils.get_shared_secret()
        self.args = cliargs

    def start_task(self, name, options):
        """
        Start an asynchronous task in the background.

        :param name: "background_" % name function must exist in remote.py. This function will be called in a subthread.
        :type name: str
        :param options: Dictionary of options passed to the newly started thread
        :type options: dict
        :return: Id of the newly started task
        :rtype: str
        """
        options = utils.strip_none(vars(options), omit_none=True)
        fn = getattr(self.remote, "background_%s" % name)
        return fn(options, self.token)

    def get_object_type(self, args):
        """
        If this is a CLI command about an object type, e.g. "cobbler distro add", return the type, like "distro"

        :param args: The args from the CLI.
        :return: The object type or None
        :rtype: None or str
        """
        if len(args) < 2:
            return None
        elif args[1] in OBJECT_TYPES:
            return args[1]
        return None

    def get_object_action(self, object_type, args):
        """
        If this is a CLI command about an object type, e.g. "cobbler distro add", return the action, like "add"

        :param object_type: The object type.
        :param args: The args from the CLI.
        :return: The action or None.
        :rtype: None or str
        """
        if object_type is None or len(args) < 3:
            return None
        if args[2] in OBJECT_ACTIONS_MAP[object_type]:
            return args[2]
        return None

    def get_direct_action(self, object_type, args):
        """
        If this is a general command, e.g. "cobbler hardlink", return the action, like "hardlink"

        :param object_type: Must be None or None is returned.
        :param args: The arg from the CLI.
        :return: The action key, "version" or None.
        :rtype: None or strs
        """
        if object_type is not None:
            return None
        elif len(args) < 2:
            return None
        elif args[1] == "--help":
            return None
        elif args[1] == "--version":
            return "version"
        else:
            return args[1]

    def check_setup(self):
        """
        Detect permissions and service accessibility problems and provide nicer error messages for them.
        """

        s = xmlrpc.client.Server(self.url_cobbler_xmlrpc)
        try:
            s.ping()
        except Exception as e:
            print("cobblerd does not appear to be running/accessible: %s" % repr(e), file=sys.stderr)
            return 411

        s = xmlrpc.client.Server(self.url_cobbler_api)
        try:
            s.ping()
        except:
            print("httpd does not appear to be running and proxying Cobbler, or SELinux is in the way. Original "
                  "traceback:", file=sys.stderr)
            traceback.print_exc()
            return 411

        if not os.path.exists("/var/lib/cobbler/web.ss"):
            print("Missing login credentials file.  Has cobblerd failed to start?", file=sys.stderr)
            return 411

        if not os.access("/var/lib/cobbler/web.ss", os.R_OK):
            print("User cannot run command line, need read access to /var/lib/cobbler/web.ss", file=sys.stderr)
            return 411

    def run(self, args):
        """
        Process the command line and do what the user asks.

        :param args: The args of the CLI
        """
        self.token = self.remote.login("", self.shared_secret)
        object_type = self.get_object_type(args)
        object_action = self.get_object_action(object_type, args)
        direct_action = self.get_direct_action(object_type, args)

        try:
            if object_type is not None:
                if object_action is not None:
                    self.object_command(object_type, object_action)
                else:
                    self.print_object_help(object_type)

            elif direct_action is not None:
                self.direct_command(direct_action)

            else:
                self.print_help()
        except xmlrpc.client.Fault as err:
            if err.faultString.find("cobbler.cexceptions.CX") != -1:
                print(self.cleanup_fault_string(err.faultString))
            else:
                print("### ERROR ###")
                print("Unexpected remote error, check the server side logs for further info")
                print(err.faultString)
                return 1

    def cleanup_fault_string(self, str):
        """
        Make a remote exception nicely readable by humans so it's not evident that is a remote fault. Users should not
        have to understand tracebacks.

        :param str: The stacktrace to niceify.
        :return: A nicer error messsage.
        :rtype: str
        """
        if str.find(">:") != -1:
            (first, rest) = str.split(">:", 1)
            if rest.startswith("\"") or rest.startswith("\'"):
                rest = rest[1:]
            if rest.endswith("\"") or rest.endswith("\'"):
                rest = rest[:-1]
            return rest
        else:
            return str

    def get_fields(self, object_type):
        """
        For a given name of an object type, return the FIELDS data structure.

        :param object_type: The object to return the fields of.
        :return: The fields or None
        :rtype: None or list
        """
        # FIXME: this should be in utils, or is it already?
        if object_type == "distro":
            return distro.FIELDS
        elif object_type == "profile":
            return profile.FIELDS
        elif object_type == "system":
            return system.FIELDS
        elif object_type == "repo":
            return repo.FIELDS
        elif object_type == "image":
            return image.FIELDS
        elif object_type == "mgmtclass":
            return mgmtclass.FIELDS
        elif object_type == "package":
            return package.FIELDS
        elif object_type == "file":
            return file.FIELDS
        elif object_type == "setting":
            return settings.FIELDS

    def object_command(self, object_type, object_action):
        """
        Process object-based commands such as "distro add" or "profile rename"

        :param object_type: The object type to execute an action for.
        :param object_action: The action to execute.
        :return: Depending on the object and action.
        """
        # if assigned, we must tail the logfile
        task_id = -1
        settings = self.remote.get_settings()

        fields = self.get_fields(object_type)
        network_interface_fields = None
        if object_type == "system":
            network_interface_fields = system.NETWORK_INTERFACE_FIELDS
        if object_action in ["add", "edit", "copy", "rename", "find", "remove"]:
            add_options_from_fields(object_type, self.parser, fields,
                                    network_interface_fields, settings, object_action)
        elif object_action in ["list"]:
            pass
        elif object_action not in ("reload", "update"):
            self.parser.add_option("--name", dest="name", help="name of object")
        elif object_action == "reload":
            self.parser.add_option("--filename", dest="filename", help="filename to load data from")
        (options, args) = self.parser.parse_args(self.args)

        # the first three don't require a name
        if object_action == "report":
            if options.name is not None:
                report_item(self.remote, object_type, None, options.name)
            else:
                report_items(self.remote, object_type)
        elif object_action == "list":
            list_items(self.remote, object_type)
        elif object_action == "find":
            items = self.remote.find_items(object_type, utils.strip_none(vars(options), omit_none=True), "name", False)
            for item in items:
                print(item)
        elif object_action in OBJECT_ACTIONS:
            if opt(options, "name") == "" and object_action not in ("reload", "update"):
                print("--name is required")
                return 1
            if object_action in ["add", "edit", "copy", "rename", "remove"]:
                try:
                    if object_type == "setting":
                        settings = self.remote.get_settings()
                        if options.value is None:
                            raise RuntimeError("You must specify a --value when editing a setting")
                        elif not settings.get('allow_dynamic_settings', False):
                            raise RuntimeError("Dynamic settings changes are not enabled. Change the "
                                               "allow_dynamic_settings to 1 and restart cobblerd to enable dynamic "
                                               "settings changes")
                        elif options.name == 'allow_dynamic_settings':
                            raise RuntimeError("Cannot modify that setting live")
                        elif self.remote.modify_setting(options.name, options.value, self.token):
                            raise RuntimeError("Changing the setting failed")
                    else:
                        self.remote.xapi_object_edit(object_type, options.name, object_action,
                                                     utils.strip_none(vars(options), omit_none=True), self.token)
                except xmlrpc.client.Fault as xxx_todo_changeme:
                    (err) = xxx_todo_changeme
                    (etype, emsg) = err.faultString.split(":", 1)
                    print("exception on server: %s" % emsg)
                    return 1
                except RuntimeError as xxx_todo_changeme1:
                    (err) = xxx_todo_changeme1
                    print(err.args[0])
                    return 1
            elif object_action == "get-autoinstall":
                if object_type == "profile":
                    data = self.remote.generate_profile_autoinstall(options.name)
                elif object_type == "system":
                    data = self.remote.generate_system_autoinstall(options.name)
                print(data)
            elif object_action == "dumpvars":
                if object_type == "profile":
                    data = self.remote.get_blended_data(options.name, "")
                elif object_type == "system":
                    data = self.remote.get_blended_data("", options.name)
                # FIXME: pretty-printing and sorting here
                keys = list(data.keys())
                keys.sort()
                for x in keys:
                    print("%s: %s" % (x, data[x]))
            elif object_action in ["poweron", "poweroff", "powerstatus", "reboot"]:
                power = {}
                power["power"] = object_action.replace("power", "")
                power["systems"] = [options.name]
                task_id = self.remote.background_power_system(power, self.token)
            elif object_action == "update":
                task_id = self.remote.background_signature_update(utils.strip_none(vars(options), omit_none=True),
                                                                  self.token)
            elif object_action == "reload":
                filename = opt(options, "filename", "/var/lib/cobbler/distro_signatures.json")
                try:
                    utils.load_signatures(filename, cache=True)
                except:
                    print("There was an error loading the signature data in %s." % filename)
                    print("Please check the JSON file or run 'cobbler signature update'.")
                    return
                else:
                    print("Signatures were successfully loaded")
            else:
                raise NotImplementedException()
        else:
            raise NotImplementedException()

        # FIXME: add tail/polling code here
        if task_id != -1:
            self.print_task(task_id)
            self.follow_task(task_id)

    def direct_command(self, action_name):
        """
        Process non-object based commands like "sync" and "hardlink".

        :param action_name: The action to execute.
        :return: Depending on the action.
        """
        task_id = -1        # if assigned, we must tail the logfile

        self.parser.set_usage('Usage: %%prog %s [options]' % (action_name))

        if action_name == "buildiso":

            defaultiso = os.path.join(os.getcwd(), "generated.iso")
            self.parser.add_option("--iso", dest="iso", default=defaultiso, help="(OPTIONAL) output ISO to this file")
            self.parser.add_option("--profiles", dest="profiles", help="(OPTIONAL) use these profiles only")
            self.parser.add_option("--systems", dest="systems", help="(OPTIONAL) use these systems only")
            self.parser.add_option("--tempdir", dest="buildisodir", help="(OPTIONAL) working directory")
            self.parser.add_option("--distro", dest="distro", help="(OPTIONAL) used with --standalone and --airgapped "
                                                                   "to create a distro-based ISO including all "
                                                                   "associated profiles/systems")
            self.parser.add_option("--standalone", dest="standalone", action="store_true",
                                   help="(OPTIONAL) creates a standalone ISO with all required distro files, "
                                        "but without any added repos")
            self.parser.add_option("--airgapped", dest="airgapped", action="store_true",
                                   help="(OPTIONAL) creates a standalone ISO with all distro and repo files for "
                                        "disconnected system installation")
            self.parser.add_option("--source", dest="source", help="(OPTIONAL) used with --standalone to specify a "
                                                                   "source for the distribution files")
            self.parser.add_option("--exclude-dns", dest="exclude_dns", action="store_true",
                                   help="(OPTIONAL) prevents addition of name server addresses to the kernel boot "
                                        "options")
            self.parser.add_option("--mkisofs-opts", dest="mkisofs_opts", help="(OPTIONAL) extra options for mkisofs")

            (options, args) = self.parser.parse_args(self.args)
            task_id = self.start_task("buildiso", options)

        elif action_name == "replicate":
            self.parser.add_option("--master", dest="master", help="Cobbler server to replicate from.")
            self.parser.add_option("--port", dest="port", help="Remote port.")
            self.parser.add_option("--distros", dest="distro_patterns", help="patterns of distros to replicate")
            self.parser.add_option("--profiles", dest="profile_patterns", help="patterns of profiles to replicate")
            self.parser.add_option("--systems", dest="system_patterns", help="patterns of systems to replicate")
            self.parser.add_option("--repos", dest="repo_patterns", help="patterns of repos to replicate")
            self.parser.add_option("--image", dest="image_patterns", help="patterns of images to replicate")
            self.parser.add_option("--mgmtclasses", dest="mgmtclass_patterns",
                                   help="patterns of mgmtclasses to replicate")
            self.parser.add_option("--packages", dest="package_patterns", help="patterns of packages to replicate")
            self.parser.add_option("--files", dest="file_patterns", help="patterns of files to replicate")
            self.parser.add_option("--omit-data", dest="omit_data", action="store_true", help="do not rsync data")
            self.parser.add_option("--sync-all", dest="sync_all", action="store_true", help="sync all data")
            self.parser.add_option("--prune", dest="prune", action="store_true",
                                   help="remove objects (of all types) not found on the master")
            self.parser.add_option("--use-ssl", dest="use_ssl", action="store_true",
                                   help="use ssl to access the Cobbler master server api")
            (options, args) = self.parser.parse_args(self.args)
            task_id = self.start_task("replicate", options)

        elif action_name == "aclsetup":
            self.parser.add_option("--adduser", dest="adduser", help="give acls to this user")
            self.parser.add_option("--addgroup", dest="addgroup", help="give acls to this group")
            self.parser.add_option("--removeuser", dest="removeuser", help="remove acls from this user")
            self.parser.add_option("--removegroup", dest="removegroup", help="remove acls from this group")
            (options, args) = self.parser.parse_args(self.args)
            task_id = self.start_task("aclsetup", options)

        elif action_name == "version":
            version = self.remote.extended_version()
            print("Cobbler %s" % version["version"])
            print("  source: %s, %s" % (version["gitstamp"], version["gitdate"]))
            print("  build time: %s" % version["builddate"])

        elif action_name == "hardlink":
            (options, args) = self.parser.parse_args(self.args)
            task_id = self.start_task("hardlink", options)
        elif action_name == "reserialize":
            (options, args) = self.parser.parse_args(self.args)
            task_id = self.start_task("reserialize", options)
        elif action_name == "status":
            (options, args) = self.parser.parse_args(self.args)
            print(self.remote.get_status("text", self.token))
        elif action_name == "validate-autoinstalls":
            (options, args) = self.parser.parse_args(self.args)
            task_id = self.start_task("validate_autoinstall_files", options)
        elif action_name == "get-loaders":
            self.parser.add_option("--force", dest="force", action="store_true", help="overwrite any existing content in /var/lib/cobbler/loaders")
            (options, args) = self.parser.parse_args(self.args)
            task_id = self.start_task("dlcontent", options)
        elif action_name == "import":
            self.parser.add_option("--arch", dest="arch", help="OS architecture being imported")
            self.parser.add_option("--breed", dest="breed", help="the breed being imported")
            self.parser.add_option("--os-version", dest="os_version", help="the version being imported")
            self.parser.add_option("--path", dest="path", help="local path or rsync location")
            self.parser.add_option("--name", dest="name", help="name, ex 'RHEL-5'")
            self.parser.add_option("--available-as", dest="available_as", help="tree is here, don't mirror")
            self.parser.add_option("--autoinstall", dest="autoinstall_file", help="assign this autoinstall file")
            self.parser.add_option("--rsync-flags", dest="rsync_flags", help="pass additional flags to rsync")
            (options, args) = self.parser.parse_args(self.args)
            if options.path and "rsync://" not in options.path:
                # convert relative path to absolute path
                options.path = os.path.abspath(options.path)
            task_id = self.start_task("import", options)
        elif action_name == "reposync":
            self.parser.add_option("--only", dest="only", help="update only this repository name")
            self.parser.add_option("--tries", dest="tries", help="try each repo this many times", default=1)
            self.parser.add_option("--no-fail", dest="nofail", help="don't stop reposyncing if a failure occurs", action="store_true")
            (options, args) = self.parser.parse_args(self.args)
            task_id = self.start_task("reposync", options)
        elif action_name == "check":
            results = self.remote.check(self.token)
            ct = 0
            if len(results) > 0:
                print("The following are potential configuration items that you may want to fix:\n")
                for r in results:
                    ct += 1
                    print("%s: %s" % (ct, r))
                print("\nRestart cobblerd and then run 'cobbler sync' to apply changes.")
            else:
                print("No configuration problems found.  All systems go.")

        elif action_name == "sync":
            (options, args) = self.parser.parse_args(self.args)
            self.parser.add_option("--verbose", dest="verbose", action="store_true", help="run sync with more output")
            task_id = self.start_task("sync", options)
        elif action_name == "report":
            (options, args) = self.parser.parse_args(self.args)
            print("distros:\n==========")
            report_items(self.remote, "distro")
            print("\nprofiles:\n==========")
            report_items(self.remote, "profile")
            print("\nsystems:\n==========")
            report_items(self.remote, "system")
            print("\nrepos:\n==========")
            report_items(self.remote, "repo")
            print("\nimages:\n==========")
            report_items(self.remote, "image")
            print("\nmgmtclasses:\n==========")
            report_items(self.remote, "mgmtclass")
            print("\npackages:\n==========")
            report_items(self.remote, "package")
            print("\nfiles:\n==========")
            report_items(self.remote, "file")
        elif action_name == "list":
            # no tree view like 1.6?  This is more efficient remotely
            # for large configs and prevents xfering the whole config
            # though we could consider that...
            (options, args) = self.parser.parse_args(self.args)
            print("distros:")
            list_items(self.remote, "distro")
            print("\nprofiles:")
            list_items(self.remote, "profile")
            print("\nsystems:")
            list_items(self.remote, "system")
            print("\nrepos:")
            list_items(self.remote, "repo")
            print("\nimages:")
            list_items(self.remote, "image")
            print("\nmgmtclasses:")
            list_items(self.remote, "mgmtclass")
            print("\npackages:")
            list_items(self.remote, "package")
            print("\nfiles:")
            list_items(self.remote, "file")
        else:
            print("No such command: %s" % action_name)
            return 1
            # FIXME: run here

        # FIXME: add tail/polling code here
        if task_id != -1:
            self.print_task(task_id)
            self.follow_task(task_id)

        return True

    def print_task(self, task_id):
        """
        Pretty print a task executed on the server. This prints to stdout.

        :param task_id: The id of the task to be pretty printed.
        """
        print("task started: %s" % task_id)
        events = self.remote.get_events()
        (etime, name, status, who_viewed) = events[task_id]
        atime = time.asctime(time.localtime(etime))
        print("task started (id=%s, time=%s)" % (name, atime))

    def follow_task(self, task_id):
        """
        Follow a task which is remotely executed on the Cobbler-server.

        :param task_id: The id of the task to follow.
        """
        logfile = "/var/log/cobbler/tasks/%s.log" % task_id
        # adapted from:  http://code.activestate.com/recipes/157035/
        file = open(logfile, 'r')
        # Find the size of the file and move to the end
        # st_results = os.stat(filename)
        # st_size = st_results[6]
        # file.seek(st_size)

        while 1:
            where = file.tell()
            line = file.readline()
            if line.find("### TASK COMPLETE ###") != -1:
                print("*** TASK COMPLETE ***")
                return 0
            if line.find("### TASK FAILED ###") != -1:
                print("!!! TASK FAILED !!!")
                return 1
            if not line:
                time.sleep(1)
                file.seek(where)
            else:
                if line.find(" | "):
                    line = line.split(" | ")[-1]
                print(line, end='')

    def print_object_help(self, object_type):
        """
        Prints the subcommands for a given object, e.g. "cobbler distro --help"

        :param object_type: The object type to print the help for.
        """
        commands = OBJECT_ACTIONS_MAP[object_type]
        commands.sort()
        print("usage\n=====")
        for c in commands:
            print("cobbler %s %s" % (object_type, c))
        return 2

    def print_help(self):
        """
        Prints general-top level help, e.g. "cobbler --help" or "cobbler" or "cobbler command-does-not-exist"
        """
        print("usage\n=====")
        print("cobbler <distro|profile|system|repo|image|mgmtclass|package|file> ... ")
        print("        [add|edit|copy|get-autoinstall*|list|remove|rename|report] [options|--help]")
        print("cobbler <%s> [options|--help]" % "|".join(DIRECT_ACTIONS))
        return 2


def main():
    """
    CLI entry point
    """
    cli = CobblerCLI(sys.argv)
    cli.check_setup()
    rc = cli.run(sys.argv)
    if rc is None:
        sys.exit(0)
    else:
        sys.exit(rc)


if __name__ == "__main__":
    main()
  0707010000006F000081A40000000000000000000000015ECE244400000EA5000000000000000000000000000000000000002100000000cobbler-3.1.2/cobbler/clogger.py  """
Python standard logging doesn't super-intelligent and won't expose filehandles,
which we want.  So we're not using it.

Copyright 2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""

import logging
import logging.config
import os

# Temporary hack, a clean solution seems to be tricky.
# Defining a variable in our Apache startup code seem not to work, it is still set later when this code is executed via
# Cobbler.

# This is necessary to prevent apache to try to access the file
LOG_FILE = "/var/log/cobbler/cobbler.log"
try:
    if not os.path.isfile(LOG_FILE):
        open(LOG_FILE, 'a').close()
    if os.access(LOG_FILE, os.W_OK):
        logging.config.fileConfig('/etc/cobbler/logging_config.conf')
except Exception:
    pass


class Logger(object):
    """
    Logger class for Cobbler which is wrapped around the Python3 standard logger.

    Please don't use this. Utilize the standard logger from Python3 so we can get rid of this eventually.
    """
    def __init__(self, logfile=None):
        """
        The default constructor.

        :param logfile: If this argument is passed, then the log will not be written to the default location.
        :type logfile: str
        """
        if not logfile:
            self.logger = logging.getLogger('root')
        else:
            self.logger = logging.getLogger(str(id(self)))
            self.logger.propagate = False
            self.logger.addHandler(logging.FileHandler(filename=logfile))

    def critical(self, msg):
        """
        A critical message which is related to a problem which will halt Cobbler.

        :param msg: The message to be logged.
        :type msg: str
        """
        self.logger.critical(msg)

    def error(self, msg):
        """
        An error message which means that Cobbler will not halt but the future actions may not be executed correctly.

        :param msg: The message to be logged.
        :type msg: str
        """
        self.logger.error(msg)

    def warning(self, msg):
        """
        A warning message which could possibly indicate performance or functional problems.

        :param msg: The message to be logged.
        :type msg: str
        """
        self.logger.warning(msg)

    def info(self, msg):
        """
        An informational message which should be written to the target log.

        :param msg: The message to be logged.
        :type msg: str
        """
        self.logger.info(msg)

    def debug(self, msg):
        """
        A message which is useful for finding errors or performance problems. Should not be visible in the production
        usage of Cobbler.

        :param msg: The message to be logged.
        :type msg: str
        """
        self.logger.debug(msg)

    def flat(self, msg):
        """
        This uses the print function from the std library. Avoid using this. This is only used for the report command
        in ``cobbler/actions/report.py``

        :param msg: The message to be logged.
        :type msg: str
        """
        print(msg)
   07070100000070000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000002A00000000cobbler-3.1.2/cobbler/cobbler_collections 07070100000071000081A40000000000000000000000015ECE244400000000000000000000000000000000000000000000003600000000cobbler-3.1.2/cobbler/cobbler_collections/__init__.py 07070100000072000081A40000000000000000000000015ECE244400005913000000000000000000000000000000000000003800000000cobbler-3.1.2/cobbler/cobbler_collections/collection.py   """
Copyright 2006-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""

from builtins import range
from builtins import object
from cobbler import utils
import time
import os
from threading import Lock

from cobbler.actions import litesync
from cobbler.items import package, system, item as item_base, image, profile, repo, mgmtclass, distro, file

from cobbler.utils import _
from cobbler.cexceptions import CX, NotImplementedException


class Collection(object):
    """
    Base class for any serializable list of things.
    """

    def __init__(self, collection_mgr):
        """
        Constructor.

        :param collection_mgr: The collection manager to resolve all information with.
        """
        self.collection_mgr = collection_mgr
        self.listing = {}
        self.api = self.collection_mgr.api
        self.lite_sync = None
        self.lock = Lock()

    def __iter__(self):
        """
        Iterator for the collection. Allows list comprehensions, etc.
        """
        for a in list(self.listing.values()):
            yield a

    def __len__(self):
        """
        Returns size of the collection.
        """
        return len(list(self.listing.values()))

    def factory_produce(self, collection_mgr, seed_data):
        """
        Must override in subclass. Factory_produce returns an Item object from dict.

        :param collection_mgr: The collection manager to resolve all information with.
        :param seed_data:
        """
        raise NotImplementedException()

    def remove(self, name, with_delete=True, with_sync=True, with_triggers=True, recursive=False, logger=None):
        """
        Remove an item from collection. This method must be overriden in any subclass.

        :param name: (item name)
        :type name: str
        :param with_delete: (sync and run triggers)
        :type with_delete: bool
        :param with_sync: (sync to server file system)
        :type with_sync: bool
        :param with_triggers: (run "on delete" triggers)
        :type with_triggers: bool
        :param recursive: (recursively delete children)
        :type recursive: bool
        :param logger: (logger object)
        :returns: NotImplementedException
        """
        raise NotImplementedException()

    def get(self, name):
        """
        Return object with name in the collection

        :param name: The name of the object to retrieve from the collection.
        :return: The object if it exists. Otherwise None.
        """
        return self.listing.get(name.lower(), None)

    def find(self, name=None, return_list=False, no_errors=False, **kargs):
        """
        Return first object in the collection that maches all item='value' pairs passed, else return None if no objects
        can be found. When return_list is set, can also return a list.  Empty list would be returned instead of None in
        that case.

        :param name: The object name which should be found.
        :type name: str
        :param return_list: If a list should be returned or the first match.
        :param no_errors: If errors which are possibly thrown while searching should be ignored or not.
        :param kargs: If name is present, this is optional, otherwise this dict needs to have at least a key with
                      ``name``. You may specify more keys to finetune the search.
        :type kargs: dict
        :return: The first item or a list with all matches.
        """
        matches = []

        # support the old style innovation without kwargs
        if name is not None:
            kargs["name"] = name

        kargs = self.__rekey(kargs)

        # no arguments is an error, so we don't return a false match
        if len(kargs) == 0:
            raise CX(_("calling find with no arguments"))

        # performance: if the only key is name we can skip the whole loop
        if len(kargs) == 1 and "name" in kargs and not return_list:
            try:
                return self.listing.get(kargs["name"].lower(), None)
            except:
                return self.listing.get(kargs["name"], None)

        self.lock.acquire()
        try:
            for (name, obj) in list(self.listing.items()):
                if obj.find_match(kargs, no_errors=no_errors):
                    matches.append(obj)
        finally:
            self.lock.release()

        if not return_list:
            if len(matches) == 0:
                return None
            return matches[0]
        else:
            return matches

    SEARCH_REKEY = {
        'kopts': 'kernel_options',
        'kopts_post': 'kernel_options_post',
        'inherit': 'parent',
        'ip': 'ip_address',
        'mac': 'mac_address',
        'virt-auto-boot': 'virt_auto_boot',
        'virt-file-size': 'virt_file_size',
        'virt-disk-driver': 'virt_disk_driver',
        'virt-ram': 'virt_ram',
        'virt-path': 'virt_path',
        'virt-type': 'virt_type',
        'virt-bridge': 'virt_bridge',
        'virt-cpus': 'virt_cpus',
        'virt-host': 'virt_host',
        'virt-group': 'virt_group',
        'dhcp-tag': 'dhcp_tag',
        'netboot-enabled': 'netboot_enabled',
    }

    def __rekey(self, _dict):
        """
        Find calls from the command line ("cobbler system find") don't always match with the keys from the datastructs
        and this makes them both line up without breaking compatibility with either. Thankfully we don't have a LOT to
        remap.

        :param _dict: The dict which should be remapped.
        :return: The dict which can now be understood by the cli.
        :rtype: dict
        """
        new_dict = {}
        for x in list(_dict.keys()):
            if x in self.SEARCH_REKEY:
                newkey = self.SEARCH_REKEY[x]
                new_dict[newkey] = _dict[x]
            else:
                new_dict[x] = _dict[x]
        return new_dict

    def to_list(self):
        """
        Serialize the collection

        :rtype: list
        :return: All elements of the collection as a list.
        """
        _list = [x.to_dict() for x in list(self.listing.values())]
        return _list

    def from_list(self, _list):
        """
        Create all collection object items from ``_list``.

        :param _list: The list with all item dictionaries.
        :type _list: list
        """
        if _list is None:
            return
        for item_dict in _list:
            item = self.factory_produce(self.collection_mgr, item_dict)
            self.add(item)

    def copy(self, ref, newname, logger=None):
        """
        Copy an object with a new name into the same collection.

        :param ref: The reference to the object which should be copied.
        :param newname: The new name for the copied object.
        :param logger: This parameter is unused in this implementation.
        """
        ref = ref.make_clone()
        ref.uid = self.collection_mgr.generate_uid()
        ref.ctime = 0
        ref.set_name(newname)
        if ref.COLLECTION_TYPE == "system":
            # this should only happen for systems
            for iname in list(ref.interfaces.keys()):
                # clear all these out to avoid DHCP/DNS conflicts
                ref.set_dns_name("", iname)
                ref.set_mac_address("", iname)
                ref.set_ip_address("", iname)

        self.add(
            ref, save=True, with_copy=True, with_triggers=True, with_sync=True,
            check_for_duplicate_names=True, check_for_duplicate_netinfo=False)

    def rename(self, ref, newname, with_sync=True, with_triggers=True, logger=None):
        """
        Allows an object "ref" to be given a newname without affecting the rest of the object tree.

        :param ref: The reference to the object which should be renamed.
        :param newname: The new name for the object.
        :param with_sync: If a sync should be triggered when the object is renamed.
        :param with_triggers: If triggers should be run when the object is renamed.
        :param logger: The logger to audit the action with.
        """
        # Nothing to do when it is the same name
        if newname == ref.name:
            return

        # make a copy of the object, but give it a new name.
        oldname = ref.name
        newref = ref.make_clone()
        newref.set_name(newname)

        self.add(newref, with_triggers=with_triggers, save=True)

        # for mgmt classes, update all objects that use it
        if ref.COLLECTION_TYPE == "mgmtclass":
            for what in ["distro", "profile", "system"]:
                items = self.api.find_items(what, {"mgmt_classes": oldname})
                for item in items:
                    for i in range(0, len(item.mgmt_classes)):
                        if item.mgmt_classes[i] == oldname:
                            item.mgmt_classes[i] = newname
                    self.api.add_item(what, item, save=True)

        # for a repo, rename the mirror directory
        if ref.COLLECTION_TYPE == "repo":
            path = "/var/www/cobbler/repo_mirror/%s" % ref.name
            if os.path.exists(path):
                newpath = "/var/www/cobbler/repo_mirror/%s" % newref.name
                os.renames(path, newpath)

        # for a distro, rename the mirror and references to it
        if ref.COLLECTION_TYPE == 'distro':
            path = utils.find_distro_path(self.api.settings(), ref)

            # create a symlink for the new distro name
            utils.link_distro(self.api.settings(), newref)

            # Test to see if the distro path is based directly on the name of the distro. If it is, things need to
            # updated accordingly.
            if os.path.exists(path) and path == "/var/www/cobbler/distro_mirror/%s" % ref.name:
                newpath = "/var/www/cobbler/distro_mirror/%s" % newref.name
                os.renames(path, newpath)

                # update any reference to this path ...
                distros = self.api.distros()
                for d in distros:
                    if d.kernel.find(path) == 0:
                        d.set_kernel(d.kernel.replace(path, newpath))
                        d.set_initrd(d.initrd.replace(path, newpath))
                        self.collection_mgr.serialize_item(self, d)

        # Now descend to any direct ancestors and point them at the new object allowing the original object to be
        # removed without orphanage. Direct ancestors will either be profiles or systems. Note that we do have to
        # care as set_parent is only really meaningful for subprofiles. We ideally want a more generic set_parent.
        kids = ref.get_children()
        for k in kids:
            if k.COLLECTION_TYPE == "distro":
                raise CX(_("internal error, not expected to have distro child objects"))
            elif k.COLLECTION_TYPE == "profile":
                if k.parent != "":
                    k.set_parent(newname)
                else:
                    k.set_distro(newname)
                self.api.profiles().add(k, save=True, with_sync=with_sync, with_triggers=with_triggers)
            elif k.COLLECTION_TYPE == "system":
                k.set_profile(newname)
                self.api.systems().add(k, save=True, with_sync=with_sync, with_triggers=with_triggers)
            elif k.COLLECTION_TYPE == "repo":
                raise CX(_("internal error, not expected to have repo child objects"))
            else:
                raise CX(_("internal error, unknown child type (%s), cannot finish rename" % k.COLLECTION_TYPE))

        # now delete the old version
        self.remove(oldname, with_delete=True, with_triggers=with_triggers)
        return

    def add(self, ref, save=False, with_copy=False, with_triggers=True, with_sync=True, quick_pxe_update=False,
            check_for_duplicate_names=False, check_for_duplicate_netinfo=False, logger=None):
        """
        Add an object to the collection

        :param ref: The reference to the object.
        :param save: If this is true then the objet is persited on the disk.
        :param with_copy: Is a bit of a misnomer, but lots of internal add operations can run with "with_copy" as False.
                          True means a real final commit, as if entered from the command line (or basically, by a user).
                          With with_copy as False, the particular add call might just be being run during
                          deserialization, in which case extra semantics around the add don't really apply. So, in that
                          case, don't run any triggers and don't deal with any actual files.
        :param with_sync: If a sync should be triggered when the object is renamed.
        :param with_triggers: If triggers should be run when the object is renamed.
        :param quick_pxe_update: This decides if there should be run a quick or full update after the add was done.
        :param check_for_duplicate_names: If the name of an object should be unique or not.
        :type check_for_duplicate_names: bool
        :param check_for_duplicate_netinfo: This checks for duplicate network information. This only has an effect on
                                            systems.
        :type check_for_duplicate_netinfo: bool
        :param logger: The logger to audit the action with.
        """
        item_base.Item.remove_from_cache(ref)
        if ref is None:
            raise CX("Unable to add a None object")
        if ref.name is None:
            raise CX("Unable to add an object without a name")

        ref.check_if_valid()

        if ref.uid == '':
            ref.uid = self.collection_mgr.generate_uid()

        if save is True:
            now = time.time()
            if ref.ctime == 0:
                ref.ctime = now
            ref.mtime = now

        if self.lite_sync is None:
            self.lite_sync = litesync.CobblerLiteSync(self.collection_mgr, logger=logger)

        # migration path for old API parameter that I've renamed.
        if with_copy and not save:
            save = with_copy

        if not save:
            # For people that aren't quite aware of the API if not saving the object, you can't run these features.
            with_triggers = False
            with_sync = False

        # Avoid adding objects to the collection if an object of the same/ip/mac already exists.
        self.__duplication_checks(ref, check_for_duplicate_names, check_for_duplicate_netinfo)

        if ref.COLLECTION_TYPE != self.collection_type():
            raise CX(_("API error: storing wrong data type in collection"))

        # failure of a pre trigger will prevent the object from being added
        if save and with_triggers:
            utils.run_triggers(self.api, ref, "/var/lib/cobbler/triggers/add/%s/pre/*" % self.collection_type())

        self.lock.acquire()
        try:
            self.listing[ref.name.lower()] = ref
        finally:
            self.lock.release()

        # perform filesystem operations
        if save:
            # Save just this item if possible, if not, save the whole collection
            self.collection_mgr.serialize_item(self, ref)

            if with_sync:
                if isinstance(ref, system.System):
                    # we don't need openvz containers to be network bootable
                    if ref.virt_type == "openvz":
                        ref.netboot_enabled = False
                    self.lite_sync.add_single_system(ref.name)
                elif isinstance(ref, profile.Profile):
                    # we don't need openvz containers to be network bootable
                    if ref.virt_type == "openvz":
                        ref.enable_menu = 0
                    self.lite_sync.add_single_profile(ref.name)
                elif isinstance(ref, distro.Distro):
                    self.lite_sync.add_single_distro(ref.name)
                elif isinstance(ref, image.Image):
                    self.lite_sync.add_single_image(ref.name)
                elif isinstance(ref, repo.Repo):
                    pass
                elif isinstance(ref, mgmtclass.Mgmtclass):
                    pass
                elif isinstance(ref, package.Package):
                    pass
                elif isinstance(ref, file.File):
                    pass
                else:
                    print(_("Internal error. Object type not recognized: %s") % type(ref))
            if not with_sync and quick_pxe_update:
                if isinstance(ref, system.System):
                    self.lite_sync.update_system_netboot_status(ref.name)

            # save the tree, so if neccessary, scripts can examine it.
            if with_triggers:
                utils.run_triggers(self.api, ref, "/var/lib/cobbler/triggers/change/*", [], logger)
                utils.run_triggers(self.api, ref, "/var/lib/cobbler/triggers/add/%s/post/*" % self.collection_type(), [], logger)

        # update children cache in parent object
        parent = ref.get_parent()
        if parent is not None:
            parent.children[ref.name] = ref

    def __duplication_checks(self, ref, check_for_duplicate_names, check_for_duplicate_netinfo):
        """
        Prevents adding objects with the same name. Prevents adding or editing to provide the same IP, or MAC.
        Enforcement is based on whether the API caller requests it.

        :param ref: The refernce to the object.
        :param check_for_duplicate_names: If the name of an object should be unique or not.
        :type check_for_duplicate_names: bool
        :param check_for_duplicate_netinfo: This checks for duplicate network information. This only has an effect on
                                            systems.
        :type check_for_duplicate_netinfo: bool
        :raises CX: If a duplicate is found
        """
        # ToDo: Use return bool type to indicate duplicates and only throw CX in real error case.
        # always protect against duplicate names
        if check_for_duplicate_names:
            match = None
            if isinstance(ref, system.System):
                match = self.api.find_system(ref.name)
            elif isinstance(ref, profile.Profile):
                match = self.api.find_profile(ref.name)
            elif isinstance(ref, distro.Distro):
                match = self.api.find_distro(ref.name)
            elif isinstance(ref, repo.Repo):
                match = self.api.find_repo(ref.name)
            elif isinstance(ref, image.Image):
                match = self.api.find_image(ref.name)
            elif isinstance(ref, mgmtclass.Mgmtclass):
                match = self.api.find_mgmtclass(ref.name)
            elif isinstance(ref, package.Package):
                match = self.api.find_package(ref.name)
            elif isinstance(ref, file.File):
                match = self.api.find_file(ref.name)
            else:
                raise CX("internal error, unknown object type")

            if match:
                raise CX(_("An object already exists with that name.  Try 'edit'?"))

        # the duplicate mac/ip checks can be disabled.
        if not check_for_duplicate_netinfo:
            return

        if isinstance(ref, system.System):
            for (name, intf) in list(ref.interfaces.items()):
                match_ip = []
                match_mac = []
                match_hosts = []
                input_mac = intf["mac_address"]
                input_ip = intf["ip_address"]
                input_dns = intf["dns_name"]
                if not self.api.settings().allow_duplicate_macs and input_mac is not None and input_mac != "":
                    match_mac = self.api.find_system(mac_address=input_mac, return_list=True)
                if not self.api.settings().allow_duplicate_ips and input_ip is not None and input_ip != "":
                    match_ip = self.api.find_system(ip_address=input_ip, return_list=True)
                # it's ok to conflict with your own net info.

                if not self.api.settings().allow_duplicate_hostnames and input_dns is not None and input_dns != "":
                    match_hosts = self.api.find_system(dns_name=input_dns, return_list=True)

                for x in match_mac:
                    if x.name != ref.name:
                        raise CX(_("Can't save system %s. The MAC address (%s) is already used by system %s (%s)") % (ref.name, intf["mac_address"], x.name, name))
                for x in match_ip:
                    if x.name != ref.name:
                        raise CX(_("Can't save system %s. The IP address (%s) is already used by system %s (%s)") % (ref.name, intf["ip_address"], x.name, name))
                for x in match_hosts:
                    if x.name != ref.name:
                        raise CX(_("Can't save system %s.  The dns name (%s) is already used by system %s (%s)") % (ref.name, intf["dns_name"], x.name, name))

    def to_string(self):
        """
        Creates a printable representation of the collection suitable for reading by humans or parsing from scripts.
        Actually scripts would be better off reading the JSON in the cobbler_collections files directly.

        :return: The object as a string representation.
        :rtype: str
        """
        values = list(self.listing.values())[:]   # copy the values
        values.sort()                       # sort the copy (2.3 fix)
        results = []
        for i, v in enumerate(values):
            results.append(v.to_string())
        if len(values) > 0:
            return "\n\n".join(results)
        else:
            return _("No objects found")

    @staticmethod
    def collection_type() -> str:
        """
        Returns the string key for the name of the collection (used by serializer etc)
        """
        return NotImplementedException()

    @staticmethod
    def collection_types() -> str:
        """
        Returns the string key for the plural name of the collection (used by serializer)
        """
        return NotImplementedException()

# EOF
 07070100000073000081A40000000000000000000000015ECE24440000118F000000000000000000000000000000000000003500000000cobbler-3.1.2/cobbler/cobbler_collections/distros.py  """
Copyright 2006-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""

import os.path
import glob

from cobbler.actions import litesync
from cobbler.cobbler_collections import collection
from cobbler.items import distro as distro
from cobbler import utils
from cobbler.cexceptions import CX
from cobbler.utils import _


class Distros(collection.Collection):
    """
    A distro represents a network bootable matched set of kernels and initrd files.
    """

    @staticmethod
    def collection_type() -> str:
        return "distro"

    @staticmethod
    def collection_types() -> str:
        return "distros"

    def factory_produce(self, collection_mgr, item_dict):
        """
        Return a Distro forged from item_dict
        """
        new_distro = distro.Distro(collection_mgr)
        new_distro.from_dict(item_dict)
        return new_distro

    def remove(self, name, with_delete=True, with_sync=True, with_triggers=True, recursive=False, logger=None):
        """
        Remove element named 'name' from the collection
        """
        name = name.lower()

        # first see if any Groups use this distro
        if not recursive:
            for v in self.collection_mgr.profiles():
                if v.distro and v.distro.lower() == name:
                    raise CX(_("removal would orphan profile: %s") % v.name)

        obj = self.find(name=name)

        if obj is not None:
            kernel = obj.kernel
            if recursive:
                kids = obj.get_children()
                for k in kids:
                    self.collection_mgr.api.remove_profile(k.name, recursive=recursive, delete=with_delete, with_triggers=with_triggers, logger=logger)

            if with_delete:
                if with_triggers:
                    utils.run_triggers(self.collection_mgr.api, obj, "/var/lib/cobbler/triggers/delete/distro/pre/*", [], logger)
                if with_sync:
                    lite_sync = litesync.CobblerLiteSync(self.collection_mgr, logger=logger)
                    lite_sync.remove_single_distro(name)
            self.lock.acquire()
            try:
                del self.listing[name]
            finally:
                self.lock.release()

            self.collection_mgr.serialize_delete(self, obj)

            if with_delete:
                if with_triggers:
                    utils.run_triggers(self.collection_mgr.api, obj, "/var/lib/cobbler/triggers/delete/distro/post/*", [], logger)
                    utils.run_triggers(self.collection_mgr.api, obj, "/var/lib/cobbler/triggers/change/*", [], logger)

            # look through all mirrored directories and find if any directory is holding
            # this particular distribution's kernel and initrd
            settings = self.collection_mgr.settings()
            possible_storage = glob.glob(settings.webdir + "/distro_mirror/*")
            path = None
            for storage in possible_storage:
                if os.path.dirname(obj.kernel).find(storage) != -1:
                    path = storage
                    continue

            # if we found a mirrored path above, we can delete the mirrored storage /if/
            # no other object is using the same mirrored storage.
            if with_delete and path is not None and os.path.exists(path) and kernel.find(settings.webdir) != -1:
                # this distro was originally imported so we know we can clean up the associated
                # storage as long as nothing else is also using this storage.
                found = False
                distros = self.api.distros()
                for d in distros:
                    if d.kernel.find(path) != -1:
                        found = True
                if not found:
                    utils.rmtree(path)


# EOF
 07070100000074000081A40000000000000000000000015ECE2444000009E3000000000000000000000000000000000000003300000000cobbler-3.1.2/cobbler/cobbler_collections/files.py    """
Copyright 2010, Kelsey Hightower
Kelsey Hightower <kelsey.hightower@gmail.com>

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 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
"""

from cobbler.cobbler_collections import collection
from cobbler.items import file as file
from cobbler import utils
from cobbler.cexceptions import CX
from cobbler.utils import _


class Files(collection.Collection):
    """
    Files provide a container for file resources.
    """

    @staticmethod
    def collection_type() -> str:
        return "file"

    @staticmethod
    def collection_types() -> str:
        return "files"

    def factory_produce(self, collection_mgr, item_dict):
        """
        Return a File forged from item_dict
        """
        new_file = file.File(collection_mgr)
        new_file.from_dict(item_dict)
        return new_file

    def remove(self, name, with_delete=True, with_sync=True, with_triggers=True, recursive=False, logger=None):
        """
        Remove element named 'name' from the collection
        """
        name = name.lower()
        obj = self.find(name=name)
        if obj is not None:
            if with_delete:
                if with_triggers:
                    utils.run_triggers(self.collection_mgr.api, obj, "/var/lib/cobbler/triggers/delete/file/*", [], logger)

            self.lock.acquire()
            try:
                del self.listing[name]
            finally:
                self.lock.release()
            self.collection_mgr.serialize_delete(self, obj)

            if with_delete:
                if with_triggers:
                    utils.run_triggers(self.collection_mgr.api, obj, "/var/lib/cobbler/triggers/delete/file/post/*", [], logger)
                    utils.run_triggers(self.collection_mgr.api, obj, "/var/lib/cobbler/triggers/change/*", [], logger)

            return

        raise CX(_("cannot delete an object that does not exist: %s") % name)

# EOF
 07070100000075000081A40000000000000000000000015ECE244400000C0D000000000000000000000000000000000000003400000000cobbler-3.1.2/cobbler/cobbler_collections/images.py   """
Copyright 2006-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

This software may be freely redistributed under the terms of the GNU
general public license.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301  USA.
"""

from cobbler.actions import litesync
from cobbler.cobbler_collections import collection
from cobbler.items import image as image
from cobbler import utils
from cobbler.cexceptions import CX
from cobbler.utils import _


class Images(collection.Collection):
    """
    A image instance represents a ISO or virt image we want to track
    and repeatedly install.  It differs from a answer-file based installation.
    """

    @staticmethod
    def collection_type() -> str:
        return "image"

    @staticmethod
    def collection_types() -> str:
        return "images"

    def factory_produce(self, collection_mgr, item_dict):
        """
        Return a Distro forged from item_dict
        """
        new_image = image.Image(collection_mgr)
        new_image.from_dict(item_dict)
        return new_image

    def remove(self, name, with_delete=True, with_sync=True, with_triggers=True, recursive=True, logger=None):
        """
        Remove element named 'name' from the collection
        """

        # NOTE: with_delete isn't currently meaningful for repos
        # but is left in for consistancy in the API.  Unused.

        name = name.lower()

        # first see if any Groups use this distro
        if not recursive:
            for v in self.collection_mgr.systems():
                if v.image is not None and v.image.lower() == name:
                    raise CX(_("removal would orphan system: %s") % v.name)

        obj = self.find(name=name)

        if obj is not None:

            if recursive:
                kids = obj.get_children()
                for k in kids:
                    self.collection_mgr.api.remove_system(k, recursive=True, logger=logger)

            if with_delete:
                if with_triggers:
                    utils.run_triggers(self.collection_mgr.api, obj, "/var/lib/cobbler/triggers/delete/image/pre/*", [], logger)
                if with_sync:
                    lite_sync = litesync.CobblerLiteSync(self.collection_mgr, logger=logger)
                    lite_sync.remove_single_image(name)

            self.lock.acquire()
            try:
                del self.listing[name]
            finally:
                self.lock.release()
            self.collection_mgr.serialize_delete(self, obj)

            if with_delete:
                if with_triggers:
                    utils.run_triggers(self.collection_mgr.api, obj, "/var/lib/cobbler/triggers/delete/image/post/*", [], logger)
                    utils.run_triggers(self.collection_mgr.api, obj, "/var/lib/cobbler/triggers/change/*", [], logger)

            return

        raise CX(_("cannot delete an object that does not exist: %s") % name)

# EOF
   07070100000076000081A40000000000000000000000015ECE244400001D0B000000000000000000000000000000000000003500000000cobbler-3.1.2/cobbler/cobbler_collections/manager.py  """
Repository of the Cobbler object model

Copyright 2006-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""

from past.builtins import cmp
from builtins import object
import time
import weakref
import uuid

from cobbler.cexceptions import CX
from cobbler.cobbler_collections import files as files, systems as systems, mgmtclasses as mgmtclasses, \
    distros as distros, profiles as profiles, repos as repos, packages as packages, images as images
from cobbler import settings
from cobbler import serializer


class CollectionManager(object):

    has_loaded = False
    __shared_state = {}

    def __init__(self, api):
        """
        Constructor. Manages a definitive copy of all data cobbler_collections with weakrefs
        pointing back into the class so they can understand each other's contents
        """
        self.__dict__ = CollectionManager.__shared_state
        if not CollectionManager.has_loaded:
            self.__load(api)

    def __load(self, api):
        """
        Load all collections from the disk into Cobbler.

        :param api: The api to resolve information with.
        """
        CollectionManager.has_loaded = True

        self.init_time = time.time()
        self.current_id = 0
        self.api = api
        self._distros = distros.Distros(weakref.proxy(self))
        self._repos = repos.Repos(weakref.proxy(self))
        self._profiles = profiles.Profiles(weakref.proxy(self))
        self._systems = systems.Systems(weakref.proxy(self))
        self._images = images.Images(weakref.proxy(self))
        self._mgmtclasses = mgmtclasses.Mgmtclasses(weakref.proxy(self))
        self._packages = packages.Packages(weakref.proxy(self))
        self._files = files.Files(weakref.proxy(self))
        self._settings = settings.Settings()         # not a true collection

    def generate_uid(self):
        """
        Cobbler itself does not use this GUID's though they are provided to allow for easier API linkage with other
        applications. Cobbler uses unique names in each collection as the object id aka primary key.

        :return: A version 4 UUID according to the python implementation of RFC 4122.
        """
        return uuid.uuid4().hex

    def __cmp(self, a, b):
        """
        Compare object a to object b and determine which is greater. Comparing is done via the object names.

        :param a: The first object to compare.
        :param b: The second object to compare.
        :return: Whether the first or second object is greater.
        """
        return cmp(a.name, b.name)

    def distros(self):
        """
        Return the definitive copy of the Distros collection
        """
        return self._distros

    def profiles(self):
        """
        Return the definitive copy of the Profiles collection
        """
        return self._profiles

    def systems(self):
        """
        Return the definitive copy of the Systems collection
        """
        return self._systems

    def settings(self):
        """
        Return the definitive copy of the application settings
        """
        return self._settings

    def repos(self):
        """
        Return the definitive copy of the Repos collection
        """
        return self._repos

    def images(self):
        """
        Return the definitive copy of the Images collection
        """
        return self._images

    def mgmtclasses(self):
        """
        Return the definitive copy of the Mgmtclasses collection
        """
        return self._mgmtclasses

    def packages(self):
        """
        Return the definitive copy of the Packages collection
        """
        return self._packages

    def files(self):
        """
        Return the definitive copy of the Files collection
        """
        return self._files

    def serialize(self):
        """
        Save all cobbler_collections to disk
        """

        serializer.serialize(self._distros)
        serializer.serialize(self._repos)
        serializer.serialize(self._profiles)
        serializer.serialize(self._images)
        serializer.serialize(self._systems)
        serializer.serialize(self._mgmtclasses)
        serializer.serialize(self._packages)
        serializer.serialize(self._files)

    def serialize_item(self, collection, item):
        """
        Save a collection item to disk

        :param collection: Collection
        :param item: collection item
        """

        return serializer.serialize_item(collection, item)

    def serialize_delete(self, collection, item):
        """
        Delete a collection item from disk

        :param collection: collection
        :param item: collection item
        """

        return serializer.serialize_delete(collection, item)

    def deserialize(self):
        """
        Load all cobbler_collections from disk

        :raises CX: if there is an error in deserialization
        """

        for collection in (
            self._settings,
            self._distros,
            self._repos,
            self._profiles,
            self._images,
            self._systems,
            self._mgmtclasses,
            self._packages,
            self._files,
        ):
            try:
                serializer.deserialize(collection)
            except Exception as e:
                raise CX("serializer: error loading collection %s: %s. Check /etc/cobbler/modules.conf" % (collection.collection_type(), e))

    def get_items(self, collection_type):
        """
        Get a full collection of a single type.

        Valid Values vor ``collection_type`` are: "distro", "profile", "repo", "image", "mgmtclass", "package", "file"
        and "settings".

        :param collection_type: The type of collection to return.
        :return: The collection if ``collection_type`` is valid.
        :raises CX: If the ``collection_type`` is invalid.
        """
        if collection_type == "distro":
            result = self._distros
        elif collection_type == "profile":
            result = self._profiles
        elif collection_type == "system":
            result = self._systems
        elif collection_type == "repo":
            result = self._repos
        elif collection_type == "image":
            result = self._images
        elif collection_type == "mgmtclass":
            result = self._mgmtclasses
        elif collection_type == "package":
            result = self._packages
        elif collection_type == "file":
            result = self._files
        elif collection_type == "settings":
            result = self._settings
        else:
            raise CX("internal error, collection name %s not supported" % collection_type)
        return result
 07070100000077000081A40000000000000000000000015ECE244400000A28000000000000000000000000000000000000003900000000cobbler-3.1.2/cobbler/cobbler_collections/mgmtclasses.py  """
Copyright 2010, Kelsey Hightower
Kelsey Hightower <kelsey.hightower@gmail.com>

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 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
"""

from cobbler.cobbler_collections import collection
from cobbler.items import mgmtclass as mgmtclass
from cobbler import utils
from cobbler.cexceptions import CX
from cobbler.utils import _


class Mgmtclasses(collection.Collection):
    """
    A mgmtclass provides a container for management resources.
    """

    @staticmethod
    def collection_type() -> str:
        return "mgmtclass"

    @staticmethod
    def collection_types() -> str:
        return "mgmtclasses"

    def factory_produce(self, config, item_dict):
        """
        Return a mgmtclass forged from item_dict
        """
        new_mgmtclass = mgmtclass.Mgmtclass(config)
        new_mgmtclass.from_dict(item_dict)
        return new_mgmtclass

    def remove(self, name, with_delete=True, with_sync=True, with_triggers=True, recursive=False, logger=None):
        """
        Remove element named 'name' from the collection
        """

        name = name.lower()
        obj = self.find(name=name)
        if obj is not None:
            if with_delete:
                if with_triggers:
                    utils.run_triggers(self.collection_mgr.api, obj, "/var/lib/cobbler/triggers/delete/mgmtclass/pre/*", [], logger)

            self.lock.acquire()
            try:
                del self.listing[name]
            finally:
                self.lock.release()
            self.collection_mgr.serialize_delete(self, obj)

            if with_delete:
                if with_triggers:
                    utils.run_triggers(self.collection_mgr.api, obj, "/var/lib/cobbler/triggers/delete/mgmtclass/post/*", [], logger)
                    utils.run_triggers(self.collection_mgr.api, obj, "/var/lib/cobbler/triggers/change/*", [], logger)

            return

        raise CX(_("cannot delete an object that does not exist: %s") % name)

# EOF
07070100000078000081A40000000000000000000000015ECE244400000A12000000000000000000000000000000000000003600000000cobbler-3.1.2/cobbler/cobbler_collections/packages.py """
Copyright 2010, Kelsey Hightower
Kelsey Hightower <kelsey.hightower@gmail.com>

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 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
"""

from cobbler.cobbler_collections import collection
from cobbler.items import package as package
from cobbler import utils
from cobbler.cexceptions import CX
from cobbler.utils import _


class Packages(collection.Collection):
    """
    A package provides a container for package resources.
    """

    @staticmethod
    def collection_type() -> str:
        return "package"

    @staticmethod
    def collection_types() -> str:
        return "packages"

    def factory_produce(self, collection_mgr, item_dict):
        """
        Return a Package forged from item_dict
        """
        new_package = package.Package(collection_mgr)
        new_package.from_dict(item_dict)
        return new_package

    def remove(self, name, with_delete=True, with_sync=True, with_triggers=True, recursive=False, logger=None):
        """
        Remove element named 'name' from the collection
        """
        name = name.lower()
        obj = self.find(name=name)
        if obj is not None:
            if with_delete:
                if with_triggers:
                    utils.run_triggers(self.collection_mgr.api, obj, "/var/lib/cobbler/triggers/delete/package/*", [], logger)

            self.lock.acquire()
            try:
                del self.listing[name]
            finally:
                self.lock.release()
            self.collection_mgr.serialize_delete(self, obj)

            if with_delete:
                if with_triggers:
                    utils.run_triggers(self.collection_mgr.api, obj, "/var/lib/cobbler/triggers/delete/package/post/*", [], logger)
                    utils.run_triggers(self.collection_mgr.api, obj, "/var/lib/cobbler/triggers/change/*", [], logger)

            return

        raise CX(_("cannot delete an object that does not exist: %s") % name)

# EOF
  07070100000079000081A40000000000000000000000015ECE244400000DE7000000000000000000000000000000000000003600000000cobbler-3.1.2/cobbler/cobbler_collections/profiles.py """
Copyright 2006-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""

from cobbler.actions import litesync
from cobbler.cobbler_collections import collection
from cobbler.items import profile as profile
from cobbler import utils
from cobbler.cexceptions import CX
from cobbler.utils import _


class Profiles(collection.Collection):
    """
    A profile represents a distro paired with an automatic OS installation
    template file.
    """

    @staticmethod
    def collection_type() -> str:
        return "profile"

    @staticmethod
    def collection_types() -> str:
        return "profiles"


    def factory_produce(self, collection_mgr, item_dict):
        """
        Return a Distro forged from item_dict
        """
        new_profile = profile.Profile(collection_mgr)
        new_profile.from_dict(item_dict)
        return new_profile

    def remove(self, name, with_delete=True, with_sync=True, with_triggers=True, recursive=False, logger=None):
        """
        Remove element named 'name' from the collection
        """
        name = name.lower()
        if not recursive:
            for v in self.collection_mgr.systems():
                if v.profile is not None and v.profile.lower() == name:
                    raise CX(_("removal would orphan system: %s") % v.name)

        obj = self.find(name=name)
        if obj is not None:
            if recursive:
                kids = obj.get_children()
                for k in kids:
                    if k.COLLECTION_TYPE == "profile":
                        self.collection_mgr.api.remove_profile(k.name, recursive=recursive, delete=with_delete, with_triggers=with_triggers, logger=logger)
                    else:
                        self.collection_mgr.api.remove_system(k.name, recursive=recursive, delete=with_delete, with_triggers=with_triggers, logger=logger)

            if with_delete:
                if with_triggers:
                    utils.run_triggers(self.collection_mgr.api, obj, "/var/lib/cobbler/triggers/delete/profile/pre/*", [], logger)
            self.lock.acquire()
            try:
                del self.listing[name]
            finally:
                self.lock.release()
            self.collection_mgr.serialize_delete(self, obj)
            if with_delete:
                if with_triggers:
                    utils.run_triggers(self.collection_mgr.api, obj, "/var/lib/cobbler/triggers/delete/profile/post/*", [], logger)
                    utils.run_triggers(self.collection_mgr.api, obj, "/var/lib/cobbler/triggers/change/*", [], logger)
                if with_sync:
                    lite_sync = litesync.CobblerLiteSync(self.collection_mgr, logger=logger)
                    lite_sync.remove_single_profile(name)
            return

        raise CX(_("cannot delete an object that does not exist: %s") % name)

# EOF
 0707010000007A000081A40000000000000000000000015ECE244400000C69000000000000000000000000000000000000003300000000cobbler-3.1.2/cobbler/cobbler_collections/repos.py    """
Copyright 2006-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""

import os.path

from cobbler.cobbler_collections import collection
from cobbler.items import repo as repo
from cobbler import utils
from cobbler.cexceptions import CX
from cobbler.utils import _


class Repos(collection.Collection):
    """
    Repositories in Cobbler are way to create a local mirror of a yum repository.
    When used in conjunction with a mirrored distro tree (see "cobbler import"),
    outside bandwidth needs can be reduced and/or eliminated.
    """

    @staticmethod
    def collection_type() -> str:
        return "repo"

    @staticmethod
    def collection_types() -> str:
        return "repos"

    def factory_produce(self, config, item_dict):
        """
        Return a Distro forged from item_dict
        """
        new_repo = repo.Repo(config)
        new_repo.from_dict(item_dict)
        return new_repo

    def remove(self, name, with_delete=True, with_sync=True, with_triggers=True, recursive=False, logger=None):
        """
        Remove element named 'name' from the collection
        """
        # NOTE: with_delete isn't currently meaningful for repos
        # but is left in for consistancy in the API.  Unused.
        name = name.lower()
        obj = self.find(name=name)
        if obj is not None:
            if with_delete:
                if with_triggers:
                    utils.run_triggers(self.collection_mgr.api, obj, "/var/lib/cobbler/triggers/delete/repo/pre/*", [], logger)

            self.lock.acquire()
            try:
                del self.listing[name]
            finally:
                self.lock.release()
            self.collection_mgr.serialize_delete(self, obj)

            if with_delete:
                if with_triggers:
                    utils.run_triggers(self.collection_mgr.api, obj, "/var/lib/cobbler/triggers/delete/repo/post/*", [], logger)
                    utils.run_triggers(self.collection_mgr.api, obj, "/var/lib/cobbler/triggers/change/*", [], logger)

                # FIXME: better use config.settings() webdir?
                path = "/var/www/cobbler/repo_mirror/%s" % obj.name
                if os.path.exists("/srv/www/"):
                    path = "/srv/www/cobbler/repo_mirror/%s" % obj.name
                if os.path.exists(path):
                    utils.rmtree(path)

            return

        raise CX(_("cannot delete an object that does not exist: %s") % name)

# EOF
   0707010000007B000081A40000000000000000000000015ECE244400000B06000000000000000000000000000000000000003500000000cobbler-3.1.2/cobbler/cobbler_collections/systems.py  """
Copyright 2008-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""

from cobbler.actions import litesync
from cobbler.cobbler_collections import collection
from cobbler.items import system as system
from cobbler import utils
from cobbler.cexceptions import CX
from cobbler.utils import _


class Systems(collection.Collection):
    """
    Systems are hostnames/MACs/IP names and the associated profile
    they belong to.
    """

    @staticmethod
    def collection_type() -> str:
        return "system"

    @staticmethod
    def collection_types() -> str:
        return "systems"

    def factory_produce(self, collection_mgr, item_dict):
        """
        Return a Distro forged from item_dict
        """
        new_system = system.System(collection_mgr)
        new_system.from_dict(item_dict)
        return new_system

    def remove(self, name, with_delete=True, with_sync=True, with_triggers=True, recursive=False, logger=None):
        """
        Remove element named 'name' from the collection
        """
        name = name.lower()
        obj = self.find(name=name)

        if obj is not None:

            if with_delete:
                if with_triggers:
                    utils.run_triggers(self.collection_mgr.api, obj, "/var/lib/cobbler/triggers/delete/system/pre/*", [], logger)
                if with_sync:
                    lite_sync = litesync.CobblerLiteSync(self.collection_mgr, logger=logger)
                    lite_sync.remove_single_system(name)
            self.lock.acquire()
            try:
                del self.listing[name]
            finally:
                self.lock.release()
            self.collection_mgr.serialize_delete(self, obj)
            if with_delete:
                if with_triggers:
                    utils.run_triggers(self.collection_mgr.api, obj, "/var/lib/cobbler/triggers/delete/system/post/*", [], logger)
                    utils.run_triggers(self.collection_mgr.api, obj, "/var/lib/cobbler/triggers/change/*", [], logger)

            return

        raise CX(_("cannot delete an object that does not exist: %s") % name)

# EOF
  0707010000007C000081A40000000000000000000000015ECE244400000F4B000000000000000000000000000000000000002200000000cobbler-3.1.2/cobbler/cobblerd.py """
Cobbler daemon for logging remote syslog traffic during automatic installation

Copyright 2007-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""

import binascii
import os
import pwd
import sys
import time

from cobbler import api as cobbler_api
from cobbler import remote
from cobbler import utils


def core(api):
    """
    Starts Cobbler.

    :param api: The cobbler_api instance which is used for this method.
    """
    cobbler_api = api
    settings = cobbler_api.settings()
    xmlrpc_port = settings.xmlrpc_port

    regen_ss_file()
    do_xmlrpc_tasks(cobbler_api, settings, xmlrpc_port)


def regen_ss_file():
    """
    This is only used for Kerberos auth at the moment. It identifies XMLRPC requests from Apache that have already been
    cleared by Kerberos.

    :return: 1 if this was successful.
    """
    ssfile = "/var/lib/cobbler/web.ss"
    fd = open("/dev/urandom", 'rb')
    data = fd.read(512)
    fd.close()

    fd = os.open(ssfile, os.O_CREAT | os.O_RDWR, 0o600)
    os.write(fd, binascii.hexlify(data))
    os.close(fd)

    http_user = "apache"
    family = utils.get_family()
    if family == "debian":
        http_user = "www-data"
    elif family == "suse":
        http_user = "wwwrun"
    os.lchown("/var/lib/cobbler/web.ss", pwd.getpwnam(http_user)[2], -1)

    return 1


def do_xmlrpc_tasks(cobbler_api, settings, xmlrpc_port):
    """
    This trys to bring up the Cobbler xmlrpc_api and restart it if it fails. Tailcall to ``do_xmlrpc_rw``.

    :param cobbler_api: The cobbler_api instance which is used for this method.
    :param settings: The Cobbler settings instance which is used for this method.
    :param xmlrpc_port: The port where xmlrpc should run on.
    """
    do_xmlrpc_rw(cobbler_api, settings, xmlrpc_port)


def log(logger, msg):
    """
    This logs something with the Cobbler Logger.

    :param logger: If this is not none then an info message is printed to the log target. In any other case stderr is
                   used.
    :param msg: The message to be logged.
    :type msg: str
    """
    if logger is not None:
        logger.info(msg)
    else:
        print(msg, file=sys.stderr)


def do_xmlrpc_rw(cobbler_api, settings, port):
    """
    This trys to bring up the Cobbler xmlrpc_api and restart it if it fails.

    :param cobbler_api: The cobbler_api instance which is used for this method.
    :param settings: The Cobbler settings instance which is used for this method.
    :param port: The port where the xmlrpc api should run on.
    """
    xinterface = remote.ProxiedXMLRPCInterface(cobbler_api, remote.CobblerXMLRPCInterface)
    server = remote.CobblerXMLRPCServer(('127.0.0.1', port))
    server.logRequests = 0      # don't print stuff
    xinterface.logger.debug("XMLRPC running on %s" % port)
    server.register_instance(xinterface)

    while True:
        try:
            print("SERVING!")
            server.serve_forever()
        except IOError:
            # interrupted? try to serve again
            time.sleep(0.5)


if __name__ == "__main__":
    cobbler_api = cobbler_api.CobblerAPI()
    settings = cobbler_api.settings()
    regen_ss_file()
    do_xmlrpc_rw(cobbler_api, settings, 25151)
 0707010000007D000081A40000000000000000000000015ECE244400001954000000000000000000000000000000000000002300000000cobbler-3.1.2/cobbler/configgen.py    """
configgen.py: Generate configuration data.

Copyright 2010 Kelsey Hightower
Kelsey Hightower <kelsey.hightower@gmail.com>

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 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

module for generating configuration manifest using autoinstall_meta data,
mgmtclasses, resources, and templates for a given system (hostname)
"""

from builtins import object
import simplejson as json
import string

from cobbler.cexceptions import CX
from cobbler import clogger
from cobbler import template_api
import cobbler.api as capi
import cobbler.utils
from cobbler import utils


class ConfigGen(object):
    """
    Generate configuration data for Cobbler's management resources: repos, files and packages.
    Mainly used by Koan to configure systems.
    """

    def __init__(self, hostname):
        """
        Constructor. Requires a Cobbler API handle.

        :param hostname: The hostname to run config-generation for.
        """
        self.hostname = hostname
        self.handle = capi.CobblerAPI()
        self.system = self.handle.find_system(hostname=self.hostname)
        self.host_vars = self.get_cobbler_resource('autoinstall_meta')
        self.logger = clogger.Logger()
        self.mgmtclasses = self.get_cobbler_resource('mgmt_classes')

    # ----------------------------------------------------------------------

    def resolve_resource_var(self, string_data):
        """
        Substitute variables in strings.

        :param string_data: The string with the data to substitute.
        :return: A str with the substituted data.
        :rtype: str
        """
        data = string.Template(string_data).substitute(self.host_vars)
        return data

    # ----------------------------------------------------------------------

    def resolve_resource_list(self, list_data):
        """
        Substitute variables in lists. Return new list.

        :param list_data: The list with the data to substitute.
        :type list_data: list
        :return: A list with the substituted data.
        :rtype: list
        """
        new_list = []
        for item in list_data:
            new_list.append(string.Template(item).substitute(self.host_vars))
        return new_list

    # ----------------------------------------------------------------------

    def get_cobbler_resource(self, resource):
        """
        Wrapper around Cobbler blender method

        :param resource: Not known what this actually is doing.
        :return: Not known what this actually is doing.
        """
        return cobbler.utils.blender(self.handle, False, self.system)[resource]

    # ----------------------------------------------------------------------

    def gen_config_data(self):
        """
        Generate configuration data for repos, files and packages.

        :return: A dict which has all config data in it.
        :rtype: dict
        """
        config_data = {
            'repo_data': self.handle.get_repo_config_for_system(self.system),
            'repos_enabled': self.get_cobbler_resource('repos_enabled'),
        }
        package_set = set()
        file_set = set()

        for mgmtclass in self.mgmtclasses:
            _mgmtclass = self.handle.find_mgmtclass(name=mgmtclass)
            for package in _mgmtclass.packages:
                package_set.add(package)
            for file in _mgmtclass.files:
                file_set.add(file)

        # Generate Package data
        pkg_data = {}
        for package in package_set:
            _package = self.handle.find_package(name=package)
            if _package is None:
                raise CX('%s package resource is not defined' % package)
            else:
                pkg_data[package] = {}
                pkg_data[package]['action'] = self.resolve_resource_var(_package.action)
                pkg_data[package]['installer'] = _package.installer
                pkg_data[package]['version'] = self.resolve_resource_var(_package.version)
                if pkg_data[package]['version'] != "":
                    pkg_data[package]["install_name"] = "%s-%s" % (package, pkg_data[package]['version'])
                else:
                    pkg_data[package]["install_name"] = package
        config_data['packages'] = pkg_data

        # Generate File data
        file_data = {}
        for file in file_set:
            _file = self.handle.find_file(name=file)

            if _file is None:
                raise CX('%s file resource is not defined' % file)

            file_data[file] = {}
            file_data[file]['is_dir'] = _file.is_dir
            file_data[file]['action'] = self.resolve_resource_var(_file.action)
            file_data[file]['group'] = self.resolve_resource_var(_file.group)
            file_data[file]['mode'] = self.resolve_resource_var(_file.mode)
            file_data[file]['owner'] = self.resolve_resource_var(_file.owner)
            file_data[file]['path'] = self.resolve_resource_var(_file.path)

            if not _file.is_dir:
                file_data[file]['template'] = self.resolve_resource_var(_file.template)
                try:
                    t = template_api.Template(file=file_data[file]['template'], searchList=[self.host_vars])
                    file_data[file]['content'] = t.respond()
                except:
                    utils.die(self.logger, "Missing template for this file resource %s" % (file_data[file]))

        config_data['files'] = file_data
        return config_data

    # ----------------------------------------------------------------------

    def gen_config_data_for_koan(self):
        """
        Encode configuration data. Return json object for Koan.

        :return: A json string for koan.
        """
        json_config_data = json.JSONEncoder(sort_keys=True, indent=4).encode(self.gen_config_data())
        return json_config_data
0707010000007E000081A40000000000000000000000015ECE244400000AA1000000000000000000000000000000000000002A00000000cobbler-3.1.2/cobbler/download_manager.py """
Cobbler DownloadManager

Copyright 2018, Jorgen Maas <jorgen.maas@gmail.com>

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 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
"""

import requests


class DownloadManager(object):

    def __init__(self, collection_mgr, logger=None):
        """
        Constructor

        :param collection_mgr: This is the current collection manager instance which holds the settings.
        """
        self.collection_mgr = collection_mgr
        self.settings = collection_mgr.settings()
        self.logger = logger
        self.cert = ()
        if self.settings.proxy_url_ext:
            # requests wants a dict like:  protocol: proxy_uri
            self.proxies = self.settings.proxy_url_ext
        else:
            self.proxies = {}

    def urlread(self, url, proxies=None, cert=None):
        """
        Read the content of a given URL and pass the requests. Response object to the caller.

        :param url: The URL the request.
        :param proxies: Override the default Cobbler proxies.
        :param cert: Override the default Cobbler certs.
        :returns: The Python ``requests.Response`` object.
        """
        if proxies is None:
            proxies = self.proxies
        if cert is None:
            cert = self.cert
        return requests.get(url, proxies=proxies, cert=cert)

    def download_file(self, url, dst, proxies=None, cert=None):
        """
        Donwload a file from a URL and save it to any disc location.

        :param url: The URL the request.
        :param dst: The destination file path.
        :param proxies: Override the default Cobbler proxies.
        :param cert: Override the default Cobbler certs.
        """
        if proxies is None:
            proxies = self.proxies
        if cert is None:
            cert = self.cert
        response = requests.get(url, stream=True, proxies=proxies, cert=cert)
        with open(dst, "wb") as handle:
            for chunk in response.iter_content(chunk_size=512):
                # filter out keep-alive new chunks
                if chunk:
                    handle.write(chunk)
   0707010000007F000081A40000000000000000000000015ECE2444000000BE000000000000000000000000000000000000002400000000cobbler-3.1.2/cobbler/field_info.py   """
Deprecated fields that have been renamed, but we need to account for them appearing in older datastructs that may not
have been saved since the code change.
"""

DEPRECATED_FIELDS = {
}
  07070100000080000081A40000000000000000000000015ECE24440000038C000000000000000000000000000000000000001E00000000cobbler-3.1.2/cobbler/grub.py import logging
import netaddr


def parse_grub_remote_file(file_location):
    prot = ""
    if file_location.startswith("ftp://"):
        logging.warning("ftp protocol not supported by grub. Only http and tftp [%s]" % file_location)
        return None
    elif file_location.startswith("http://"):
        (server, delim, path) = file_location[7:].partition('/')
        prot = "http"
    elif file_location.startswith("tftp://"):
        (server, delim, path) = file_location[7:].partition('/')
        prot = "tftp"
    if not prot:
        return None

    if not netaddr.valid_ipv4(server):
        if not netaddr.valid_ipv6(server):
            raise ValueError("Invalid remote file format %s\n%s is not a valid IP address" % (file_location, server))

    res = '(%s,%s)/%s' % (prot, server, path)
    logging.info("Found remote grub file. Converted [%s] to [%s]", file_location, res)
    return res
07070100000081000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000001C00000000cobbler-3.1.2/cobbler/items   07070100000082000081A40000000000000000000000015ECE244400000000000000000000000000000000000000000000002800000000cobbler-3.1.2/cobbler/items/__init__.py   07070100000083000081A40000000000000000000000015ECE244400003450000000000000000000000000000000000000002600000000cobbler-3.1.2/cobbler/items/distro.py """
Copyright 2006-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""

import os

from cobbler.items import item
from cobbler import utils
from cobbler.cexceptions import CX
from cobbler.utils import _
from cobbler import grub

# this data structure is described in item.py
FIELDS = [
    # non-editable in UI (internal)
    ["ctime", 0, 0, "", False, "", 0, "float"],
    ["depth", 0, 0, "Depth", False, "", 0, "int"],
    ["mtime", 0, 0, "", False, "", 0, "float"],
    ["source_repos", [], 0, "Source Repos", False, "", 0, "list"],
    ["tree_build_time", 0, 0, "Tree Build Time", False, "", 0, "str"],
    ["uid", "", 0, "", False, "", 0, "str"],

    # editable in UI
    ["arch", 'x86_64', 0, "Architecture", True, "", utils.get_valid_archs(), "str"],
    ["autoinstall_meta", {}, 0, "Automatic Installation Template Metadata", True, "Ex: dog=fang agent=86", 0, "dict"],
    ["boot_files", {}, 0, "TFTP Boot Files", True, "Files copied into tftpboot beyond the kernel/initrd", 0, "list"],
    ["boot_loader", "<<inherit>>", 0, "Boot loader", True, "Network installation boot loader", utils.get_supported_system_boot_loaders(), "str"],
    ["breed", 'redhat', 0, "Breed", True, "What is the type of distribution?", utils.get_valid_breeds(), "str"],
    ["comment", "", 0, "Comment", True, "Free form text description", 0, "str"],
    ["fetchable_files", {}, 0, "Fetchable Files", True, "Templates for tftp or wget/curl", 0, "list"],
    ["initrd", None, 0, "Initrd", True, "Absolute path to kernel on filesystem", 0, "str"],
    ["kernel", None, 0, "Kernel", True, "Absolute path to kernel on filesystem", 0, "str"],
    ["remote_boot_initrd", None, 0, "Remote Boot Initrd", True, "URL the bootloader directly retrieves and boots from", 0, "str"],
    ["remote_boot_kernel", None, 0, "Remote Boot Kernel", True, "URL the bootloader directly retrieves and boots from", 0, "str"],
    ["kernel_options", {}, 0, "Kernel Options", True, "Ex: selinux=permissive", 0, "dict"],
    ["kernel_options_post", {}, 0, "Kernel Options (Post Install)", True, "Ex: clocksource=pit noapic", 0, "dict"],
    ["mgmt_classes", [], 0, "Management Classes", True, "Management classes for external config management", 0, "list"],
    ["name", "", 0, "Name", True, "Ex: Fedora-11-i386", 0, "str"],
    ["os_version", "virtio26", 0, "OS Version", True, "Needed for some virtualization optimizations", utils.get_valid_os_versions(), "str"],
    ["owners", "SETTINGS:default_ownership", 0, "Owners", True, "Owners list for authz_ownership (space delimited)", 0, "list"],
    ["redhat_management_key", "", "", "Redhat Management Key", True, "Registration key for RHN, Spacewalk, or Satellite", 0, "str"],
    ["template_files", {}, 0, "Template Files", True, "File mappings for built-in config management", 0, "list"]
]


class Distro(item.Item):
    """
    A Cobbler distribution object
    """

    TYPE_NAME = _("distro")
    COLLECTION_TYPE = "distro"

    def __init__(self, *args, **kwargs):
        """
        This creates a Distro object.

        :param args: Place for extra parameters in this distro object.
        :param kwargs: Place for extra parameters in this distro object.
        """
        super(Distro, self).__init__(*args, **kwargs)
        self.kernel_options = {}
        self.kernel_options_post = {}
        self.autoinstall_meta = {}
        self.source_repos = []
        self.fetchable_files = {}
        self.boot_files = {}
        self.template_files = {}
        self.remote_grub_kernel = ""
        self.remote_grub_initrd = ""

    #
    # override some base class methods first (item.Item)
    #

    def make_clone(self):
        """
        Clone a distro object.

        :return: The cloned object. Not persisted on the disk or in a database.
        """
        _dict = self.to_dict()
        cloned = Distro(self.collection_mgr)
        cloned.from_dict(_dict)
        return cloned

    def get_fields(self):
        """
        Return the list of fields and their properties
        """
        return FIELDS

    def get_parent(self):
        """
        Distros don't have parent objects.
        """
        return None

    def check_if_valid(self):
        """
        Check if a distro object is valid. If invalid an exception is raised.
        """
        if self.name is None:
            raise CX("name is required")
        if self.kernel is None:
            raise CX("Error with distro %s - kernel is required" % (self.name))
        if self.initrd is None:
            raise CX("Error with distro %s - initrd is required" % (self.name))

        # self.remote_grub_kernel has to be set in set_remote_boot_kernel and here
        # in case the distro is read from json file (setters are not called).
        if self.remote_boot_kernel:
            self.remote_grub_kernel = grub.parse_grub_remote_file(self.remote_boot_kernel)
            if not self.remote_grub_kernel:
                raise CX("Invalid URL for remote boot kernel: %s" % self.remote_boot_kernel)
        if self.remote_boot_initrd:
            self.remote_grub_initrd = grub.parse_grub_remote_file(self.remote_boot_initrd)
            if not self.remote_grub_initrd:
                raise CX("Invalid URL for remote boot initrd: %s" % self.remote_boot_initrd)

        if utils.file_is_remote(self.kernel):
            if not utils.remote_file_exists(self.kernel):
                raise CX("Error with distro %s - kernel '%s' not found" % (self.name, self.kernel))
        elif not os.path.exists(self.kernel):
            raise CX("Error with distro %s - kernel '%s' not found" % (self.name, self.kernel))

        if utils.file_is_remote(self.initrd):
            if not utils.remote_file_exists(self.initrd):
                raise CX("Error with distro %s - initrd path '%s' not found" % (self.name, self.initrd))
        elif not os.path.exists(self.initrd):
            raise CX("Error with distro %s - initrd path '%s' not found" % (self.name, self.initrd))

    #
    # specific methods for item.Distro
    #

    def set_kernel(self, kernel):
        """
        Specifies a kernel. The kernel parameter is a full path, a filename in the configured kernel directory (set in
        /etc/cobbler.conf) or a directory path that would contain a selectable kernel. Kernel naming conventions are
        checked, see docs in the utils module for ``find_kernel``.

        :param kernel:
        :raises CX: If the kernel was not found
        """
        if kernel is None or kernel == "":
            raise CX("kernel not specified")
        if utils.find_kernel(kernel):
            self.kernel = kernel
            return
        raise CX("kernel not found: %s" % kernel)

    def set_remote_boot_kernel(self, remote_boot_kernel):
        """
        URL to a remote kernel. If the bootloader supports this feature,
        it directly tries to retrieve the kernel and boot it.
        (grub supports tftp and http protocol and server must be an IP).
        """
        if remote_boot_kernel:
            self.remote_grub_kernel = grub.parse_grub_remote_file(remote_boot_kernel)
            if not self.remote_grub_kernel:
                raise CX("Invalid URL for remote boot kernel: %s" % remote_boot_kernel)
            self.remote_boot_kernel = remote_boot_kernel
            return
        # Set to None or ""
        self.remote_grub_kernel = self.remote_boot_kernel = remote_boot_kernel

    def set_tree_build_time(self, datestamp):
        """
        Sets the import time of the distro. If not imported, this field is not meaningful.

        :param datestamp: The datestamp to save the builddate. There is an attempt to convert it to a float, so please
                          make sure it is compatible to this.
        """
        self.tree_build_time = float(datestamp)

    def set_breed(self, breed):
        """
        Set the Operating system breed.

        :param breed: The new breed to set.
        """
        return utils.set_breed(self, breed)

    def set_os_version(self, os_version):
        """
        Set the Operating System Version.

        :param os_version: The new OS Version.
        """
        return utils.set_os_version(self, os_version)

    def set_initrd(self, initrd):
        """
        Specifies an initrd image. Path search works as in set_kernel. File must be named appropriately.

        :param initrd: The new path to the ``initrd``.
        """
        if initrd is None or initrd == "":
            raise CX("initrd not specified")
        if utils.find_initrd(initrd):
            self.initrd = initrd
            return
        raise CX(_("initrd not found"))

    def set_remote_boot_initrd(self, remote_boot_initrd):
        """
        URL to a remote initrd. If the bootloader supports this feature,
        it directly tries to retrieve the initrd and boot it.
        (grub supports tftp and http protocol and server must be an IP).
        """
        if remote_boot_initrd:
            self.remote_grub_initrd = grub.parse_grub_remote_file(remote_boot_initrd)
            if not self.remote_grub_initrd:
                raise CX("Invalid URL for remote boot initrd: %s" % remote_boot_initrd)
            self.remote_boot_initrd = remote_boot_initrd
            return
        # Set to None or ""
        self.remote_grub_initrd = self.remote_boot_initrd = remote_boot_initrd

    def set_source_repos(self, repos):
        """
        A list of http:// URLs on the Cobbler server that point to yum configuration files that can be used to
        install core packages. Use by ``cobbler import`` only.

        :param repos: The list of URLs.
        """
        self.source_repos = repos

    def set_arch(self, arch):
        """
        The field is mainly relevant to PXE provisioning.

        Using an alternative distro type allows for dhcpd.conf templating to "do the right thing" with those
        systems -- this also relates to bootloader configuration files which have different syntax for different
        distro types (because of the bootloaders).

        This field is named "arch" because mainly on Linux, we only care about the architecture, though if (in the
        future) new provisioning types are added, an arch value might be something like "bsd_x86".

        :param arch: The architecture of the operating system distro.
        """
        return utils.set_arch(self, arch)

    def get_arch(self):
        """
        Return the architecture of the distribution

        :return: Return the current architecture.
        """
        return self.arch

    def set_supported_boot_loaders(self, supported_boot_loaders):
        """
        Some distributions, particularly on powerpc, can only be netbooted using specific bootloaders.

        :param supported_boot_loaders: The bootloaders which are available for being set.
        """
        if len(supported_boot_loaders) < 1:
            raise CX(_("No valid supported boot loaders specified for distro '%s'" % self.name))
        self.supported_boot_loaders = supported_boot_loaders
        self.boot_loader = supported_boot_loaders[0]

    def set_boot_loader(self, name):
        """
        Set the bootloader for the distro.

        :param name: The name of the bootloader. Must be one of the supported ones.
        """
        try:
            # If we have already loaded the supported boot loaders from
            # the signature, use that data
            supported_distro_boot_loaders = self.supported_boot_loaders
        except:
            # otherwise, refresh from the signatures / defaults
            self.supported_boot_loaders = utils.get_supported_distro_boot_loaders(self)
            supported_distro_boot_loaders = self.supported_boot_loaders
        if name not in supported_distro_boot_loaders:
            raise CX(_("Invalid boot loader name: %s. Supported boot loaders are: %s" %
                       (name, ' '.join(supported_distro_boot_loaders))))
        self.boot_loader = name

    def set_redhat_management_key(self, management_key):
        """
        Set the redhat management key. This is probably only needed if you have spacewalk, uyuni or SUSE Manager
        running.

        :param management_key: The redhat management key.
        """
        if management_key is None:
            self.redhat_management_key = ""
        self.redhat_management_key = management_key

    def get_redhat_management_key(self):
        """
        Get the redhat management key. This is probably only needed if you have spacewalk, uyuni or SUSE Manager
        running.

        :return: The key as a string.
        :rtype: str
        """
        return self.redhat_management_key

# EOF
07070100000084000081A40000000000000000000000015ECE244400000EB6000000000000000000000000000000000000002400000000cobbler-3.1.2/cobbler/items/file.py   """
Copyright 2006-2009, MadHatter
Kelsey Hightower <kelsey.hightower@gmail.com>

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 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
"""

from cobbler import resource

from cobbler import utils
from cobbler.cexceptions import CX
from cobbler.utils import _


# this data structure is described in item.py
FIELDS = [
    # non-editable in UI (internal)
    ["ctime", 0, 0, "", False, "", 0, "float"],
    ["depth", 2, 0, "", False, "", 0, "float"],
    ["mtime", 0, 0, "", False, "", 0, "float"],
    ["uid", "", 0, "", False, "", 0, "str"],

    # editable in UI
    ["action", "create", 0, "Action", True, "Create or remove file resource", 0, "str"],
    ["comment", "", 0, "Comment", True, "Free form text description", 0, "str"],
    ["group", "", 0, "Owner group in file system", True, "File owner group in file system", 0, "str"],
    ["is_dir", False, 0, "Is Directory", True, "Treat file resource as a directory", 0, "bool"],
    ["mode", "", 0, "Mode", True, "The mode of the file", 0, "str"],
    ["name", "", 0, "Name", True, "Name of file resource", 0, "str"],
    ["owner", "", 0, "Owner user in file system", True, "File owner user in file system", 0, "str"],
    ["owners", "SETTINGS:default_ownership", 0, "Owners", True, "Owners list for authz_ownership (space delimited)", [], "list"],
    ["path", "", 0, "Path", True, "The path for the file", 0, "str"],
    ["template", "", 0, "Template", True, "The template for the file", 0, "str"]
]


class File(resource.Resource):
    """
    A Cobbler file object.
    """

    TYPE_NAME = _("file")
    COLLECTION_TYPE = "file"

    #
    # override some base class methods first (item.Item)
    #

    def make_clone(self):
        """
        Clone this file object. Please manually adjust all values yourself to make the cloned object unique.

        :return: The cloned instance of this object.
        """
        _dict = self.to_dict()
        cloned = File(self.collection_mgr)
        cloned.from_dict(_dict)
        return cloned

    def get_fields(self):
        """
        Return all fields which this class has with its current values.

        :return: This is a list with lists.
        """
        return FIELDS

    def check_if_valid(self):
        """
        Insure name, path, owner, group, and mode are set.
        Templates are only required for files, is_dir = False
        """
        if not self.name:
            raise CX("name is required")
        if not self.path:
            raise CX("path is required")
        if not self.owner:
            raise CX("owner is required")
        if not self.group:
            raise CX("group is required")
        if not self.mode:
            raise CX("mode is required")
        if not self.is_dir and self.template == "":
            raise CX("Template is required when not a directory")

    #
    # specific methods for item.File
    #

    def set_is_dir(self, is_dir):
        """
        If true, treat file resource as a directory. Templates are ignored.

        :param is_dir: This is the path to check if it is a directory.
        """
        self.is_dir = utils.input_boolean(is_dir)

# EOF
  07070100000085000081A40000000000000000000000015ECE244400002930000000000000000000000000000000000000002500000000cobbler-3.1.2/cobbler/items/image.py  """
Copyright 2006-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""

import string

from cobbler import autoinstall_manager
from cobbler.items import item
from cobbler import utils
from cobbler.cexceptions import CX
from cobbler.utils import _


# this data structure is described in item.py
FIELDS = [
    # non-editable in UI (internal)
    ['ctime', 0, 0, "", False, "", 0, "float"],
    ['depth', 0, 0, "", False, "", 0, "int"],
    ['mtime', 0, 0, "", False, "", 0, "float"],
    ['parent', '', 0, "", False, "", 0, "str"],
    ['uid', "", 0, "", False, "", 0, "str"],

    # editable in UI
    ['arch', 'x86_64', 0, "Architecture", True, "", utils.get_valid_archs(), "str"],
    ['autoinstall', '', 0, "Automatic installation file", True, "Path to autoinst/answer file template", 0, "str"],
    ['breed', 'redhat', 0, "Breed", True, "", utils.get_valid_breeds(), "str"],
    ['comment', '', 0, "Comment", True, "Free form text description", 0, "str"],
    ['file', '', 0, "File", True, "Path to local file or nfs://user@host:path", 0, "str"],
    ['image_type', "iso", 0, "Image Type", True, "", ["iso", "direct", "memdisk", "virt-image"], "str"],
    ['name', '', 0, "Name", True, "", 0, "str"],
    ['network_count', 1, 0, "Virt NICs", True, "", 0, "int"],
    ['os_version', '', 0, "OS Version", True, "ex: rhel4", utils.get_valid_os_versions(), "str"],
    ['owners', "SETTINGS:default_ownership", 0, "Owners", True, "Owners list for authz_ownership (space delimited)", [], "list"],
    ['virt_auto_boot', "SETTINGS:virt_auto_boot", 0, "Virt Auto Boot", True, "Auto boot this VM?", 0, "bool"],
    ['virt_bridge', "SETTINGS:default_virt_bridge", 0, "Virt Bridge", True, "", 0, "str"],
    ['virt_cpus', 1, 0, "Virt CPUs", True, "", 0, "int"],
    ["virt_disk_driver", "SETTINGS:default_virt_disk_driver", 0, "Virt Disk Driver Type", True, "The on-disk format for the virtualization disk", "raw", "str"],
    ['virt_file_size', "SETTINGS:default_virt_file_size", 0, "Virt File Size (GB)", True, "", 0, "float"],
    ['virt_path', '', 0, "Virt Path", True, "Ex: /directory or VolGroup00", 0, "str"],
    ['virt_ram', "SETTINGS:default_virt_ram", 0, "Virt RAM (MB)", True, "", 0, "int"],
    ['virt_type', "SETTINGS:default_virt_type", 0, "Virt Type", True, "", ["xenpv", "xenfv", "qemu", "kvm", "vmware"], "str"],
]


class Image(item.Item):
    """
    A Cobbler Image.  Tracks a virtual or physical image, as opposed to a answer
    file (autoinst) led installation.
    """

    TYPE_NAME = _("image")
    COLLECTION_TYPE = "image"

    #
    # override some base class methods first (item.Item)
    #

    def make_clone(self):
        """
        Clone this image object. Please manually adjust all value yourself to make the cloned object unique.

        :return: The cloned instance of this object.
        """
        _dict = self.to_dict()
        cloned = Image(self.collection_mgr)
        cloned.from_dict(_dict)
        return cloned

    def get_fields(self):
        """
        Return all fields which this class has with its current values.

        :return: This is a list with lists.
        """
        return FIELDS

    def get_parent(self):
        """
        Images have no parent object.
        """
        return None

    #
    # specific methods for item.Image
    #

    def set_arch(self, arch):
        """
        The field is mainly relevant to PXE provisioning.
        See comments for set_arch in item_distro.py, this works the same.

        :param arch: The new architecture to set.
        """
        return utils.set_arch(self, arch)

    def set_autoinstall(self, autoinstall):
        """
        Set the automatic installation file path, this must be a local file.

        It may not make sense for images to have automatic installation templates.
        It really doesn't. However if the image type is 'iso' koan can create a virtual
        floppy and shove an answer file on it, to script an installation.  This may
        not be a automatic installation template per se, it might be a Windows answer
        file (SIF) etc.

        :param autoinstall: local automatic installation template file path
        :type autoinstall: str
        """

        autoinstall_mgr = autoinstall_manager.AutoInstallationManager(self.collection_mgr)
        self.autoinstall = autoinstall_mgr.validate_autoinstall_template_file_path(autoinstall)

    def set_file(self, filename):
        """
        Stores the image location. This should be accessible on all nodes that need to access it.

        Format: can be one of the following:
        * username:password@hostname:/path/to/the/filename.ext
        * username@hostname:/path/to/the/filename.ext
        * hostname:/path/to/the/filename.ext
        * /path/to/the/filename.ext

        :param filename: The location where the image is stored.
        """
        uri = ""
        auth = hostname = path = ""
        # validate file location format
        if filename.find("://") != -1:
            raise CX("Invalid image file path location, it should not contain a protocol")
        uri = filename

        if filename.find("@") != -1:
            auth, filename = filename.split("@")
        # extract the hostname
        # 1. if we have a colon, then everything before it is a hostname
        # 2. if we don't have a colon, there is no hostname
        if filename.find(":") != -1:
            hostname, filename = filename.split(":")
        elif filename[0] != '/':
            raise CX(_("invalid file: %s" % filename))
        # raise an exception if we don't have a valid path
        if len(filename) > 0 and filename[0] != '/':
            raise CX(_("file contains an invalid path: %s" % filename))
        if filename.find("/") != -1:
            path, filename = filename.rsplit("/", 1)

        if len(filename) == 0:
            raise CX(_("missing filename"))
        if len(auth) > 0 and len(hostname) == 0:
            raise CX(_("a hostname must be specified with authentication details"))

        self.file = uri

    def set_os_version(self, os_version):
        """
        Set the operating system version with this setter.

        :param os_version: This must be a valid OS-Version.
        """
        return utils.set_os_version(self, os_version)

    def set_breed(self, breed):
        """
        Set the operating system breed with this setter.

        :param breed: The breed of the operating system which is available in the image.
        """
        return utils.set_breed(self, breed)

    def set_image_type(self, image_type):
        """
        Indicates what type of image this is.
        direct     = something like "memdisk", physical only
        iso        = a bootable ISO that pxe's or can be used for virt installs, virtual only
        virt-clone = a cloned virtual disk (FIXME: not yet supported), virtual only
        memdisk    = hdd image (physical only)

        :param image_type: One of the four options from above.
        """
        if image_type not in self.get_valid_image_types():
            raise CX(_("image type must be on of the following: %s") % string.join(self.get_valid_image_types(), ", "))
        self.image_type = image_type

    def set_virt_cpus(self, num):
        """
        Setter for the number of virtual cpus.

        :param num: The number of virtual cpu cores.
        """
        return utils.set_virt_cpus(self, num)

    def set_network_count(self, num):
        """
        Setter for the number of networks.

        :param num: If None or emtpy will be set to one. Otherwise will be cast to int and then set.
        :type num: int
        """
        if num is None or num == "":
            num = 1
        try:
            self.network_count = int(num)
        except:
            raise CX("invalid network count (%s)" % num)

    def set_virt_auto_boot(self, num):
        """
        Setter for the virtual automatic boot option.

        :param num: May be "0" (disabled) or "1" (enabled)
        """
        return utils.set_virt_auto_boot(self, num)

    def set_virt_file_size(self, num):
        """
        Setter for the virtual file size of the image.

        :param num: Is a non-negative integer (0 means default). Can also be a comma seperated list -- for usage with
                    multiple disks
        """
        return utils.set_virt_file_size(self, num)

    def set_virt_disk_driver(self, driver):
        """
        Setter for the virtual disk driver.

        :param driver: The virtual disk driver which will be set.
        """
        return utils.set_virt_disk_driver(self, driver)

    def set_virt_ram(self, num):
        """
        Setter for the amount of virtual RAM the machine will have.

        :param num: 0 tells Koan to just choose a reasonable default.
        """
        return utils.set_virt_ram(self, num)

    def set_virt_type(self, vtype):
        """
        Setter for the virtual type

        :param vtype: May be one of "qemu", "kvm", "xenpv", "xenfv", "vmware", "vmwarew", "openvz" or "auto".
        """
        return utils.set_virt_type(self, vtype)

    def set_virt_bridge(self, vbridge):
        """
        Setter for the virtual bridge which is used.

        :param vbridge: The name of the virtual bridge to use.
        """
        return utils.set_virt_bridge(self, vbridge)

    def set_virt_path(self, path):
        """
        Setter for the virtual path which is used.

        :param path: The path to where the virtual image is stored.
        """
        return utils.set_virt_path(self, path)

    def get_valid_image_types(self):
        """
        Get all valid image types.

        :return: A list currently with the values: "direct", "iso", "memdisk", "virt-clone"
        """
        return ["direct", "iso", "memdisk", "virt-clone"]

# EOF
07070100000086000081A40000000000000000000000015ECE244400005B2A000000000000000000000000000000000000002400000000cobbler-3.1.2/cobbler/items/item.py   """
Copyright 2006-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

This software may be freely redistributed under the terms of the GNU
general public license.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301  USA.
"""

from builtins import object
from builtins import str
import fnmatch
import pprint

from cobbler import utils
from cobbler import validate
from cobbler.cexceptions import CX, NotImplementedException
from cobbler.utils import _

# the fields has controls what data elements are part of each object.  To add a new field, just add a new
# entry to the list following some conventions to be described later.  You must also add a method called
# set_$fieldname.  Do not write a method called get_$fieldname, that will not be called.
#
# name | default | subobject default | display name | editable? | tooltip | values ? | type
#
# name -- what the filed should be called.   For the command line, underscores will be replaced with
#         a hyphen programatically, so use underscores to seperate things that are seperate words
#
# default value -- when a new object is created, what is the default value for this field?
#
# subobject default -- this applies ONLY to subprofiles, and is most always set to <<inherit>>.  If this
#                      is not item_profile.py it does not matter.
#
# display name -- how the field shows up in the web application and the "cobbler report" command
#
# editable -- should the field be editable in the CLI and web app?  Almost always yes unless
#                it is an internalism.  Fields that are not editable are "hidden"
#
# tooltip -- the caption to be shown in the web app or in "commandname --help" in the CLI
#
# values -- for fields that have a limited set of valid options and those options are always fixed
#           (such as architecture type), the list of valid options goes in this field.
#
# type -- the type of the field.  Used to determine which HTML form widget is used in the web interface
#
#
# the order in which the fields appear in the web application (for all non-hidden
# fields) is defined in field_ui_info.py. The CLI sorts fields alphabetically.
#
# field_ui_info.py also contains a set of "Groups" that describe what other fields
# are associated with what other fields.  This affects color coding and other
# display hints.  If you add a field, please edit field_ui_info.py carefully to match.
#
# additional:  see field_ui_info.py for some display hints.  By default, in the
# web app, all fields are text fields unless field_ui_info.py lists the field in
# one of those dictionaries.
#
# hidden fields should not be added without just cause, explanations about these are:
#
#   ctime, mtime -- times the object was modified, used internally by Cobbler for API purposes
#   uid -- also used for some external API purposes
#   source_repos -- an artifiact of import, this is too complicated to explain on IRC so we just hide it
#                   for RHEL split repos, this is a list of each of them in the install tree, used to generate
#                   repo lines in the automatic installation file to allow installation of x>=RHEL5.  Otherwise unimportant.
#   depth -- used for "cobbler list" to print the tree, makes it easier to load objects from disk also
#   tree_build_time -- loaded from import, this is not useful to many folks so we just hide it.  Avail over API.
#
# so to add new fields
#   (A) understand the above
#   (B) add a field below
#   (C) add a set_fieldname method
#   (D) if field must be viewable/editable via web UI, add a entry in
#       corresponding *_UI_FIELDS_MAPPING dictionary in field_ui_info.py.
#       If field must not be displayed in a text field in web UI, also add
#       an entry in corresponding USES_* list in field_ui_info.py.
#
# in general the set_field_name method should raise exceptions on invalid fields, always.   There are adtl
# validation fields in is_valid to check to see that two seperate fields do not conflict, but in general
# design issues that require this should be avoided forever more, and there are few exceptions.  Cobbler
# must operate as normal with the default value for all fields and not choke on the default values.


class Item(object):
    """
    An Item is a serializable thing that can appear in a Collection
    """
    converted_cache = {}

    @classmethod
    def get_from_cache(cls, ref):
        """
        Get an object from the cache. This is may potentially contain not persisted changes.

        :param ref: The id of the object which is in the cache.
        :return: The object if present or an empty dict.
        """
        return cls.converted_cache.get(ref.COLLECTION_TYPE, {}).get(ref.name)

    @classmethod
    def set_cache(cls, ref, value):
        """
        Add an object to the cache.

        :param ref: An object to identify where to add the item to the cache.
        :param value: The object to add to the cache.
        """
        if ref.COLLECTION_TYPE not in cls.converted_cache:
            cls.converted_cache[ref.COLLECTION_TYPE] = {}
        cls.converted_cache[ref.COLLECTION_TYPE][ref.name] = value

    @classmethod
    def remove_from_cache(cls, ref):
        """
        Remove an item from the cache.

        :param ref: The object reference id to identify the object.
        """
        cls.converted_cache.get(ref.COLLECTION_TYPE, {}).pop(ref.name, None)

    TYPE_NAME = "generic"

    def __init__(self, collection_mgr, is_subobject=False):
        """
        Constructor.  Requires a back reference to the CollectionManager object.

        NOTE: is_subobject is used for objects that allow inheritance in their trees.  This
        inheritance refers to conceptual inheritance, not Python inheritance.  Objects created
        with is_subobject need to call their set_parent() method immediately after creation
        and pass in a value of an object of the same type.  Currently this is only supported
        for profiles.  Subobjects blend their data with their parent objects and only require
        a valid parent name and a name for themselves, so other required options can be
        gathered from items further up the Cobbler tree.

                           distro
                               profile
                                    profile  <-- created with is_subobject=True
                                         system   <-- created as normal

        For consistancy, there is some code supporting this in all object types, though it is only usable
        (and only should be used) for profiles at this time.  Objects that are children of
        objects of the same type (i.e. subprofiles) need to pass this in as True.  Otherwise, just
        use False for is_subobject and the parent object will (therefore) have a different type.
        """

        self.collection_mgr = collection_mgr
        self.settings = self.collection_mgr._settings
        self.clear(is_subobject)        # reset behavior differs for inheritance cases
        self.parent = ''                # all objects by default are not subobjects
        self.children = {}              # caching for performance reasons, not serialized
        self.log_func = self.collection_mgr.api.log
        self.ctime = 0                  # to be filled in by collection class
        self.mtime = 0                  # to be filled in by collection class
        self.uid = ""                   # to be filled in by collection class
        self.kernel_options = None
        self.kernel_options_post = None
        self.autoinstall_meta = None
        self.fetchable_files = None
        self.boot_files = None
        self.template_files = None
        self.name = None
        self.last_cached_mtime = 0
        self.cached_dict = ""

    def __find_compare(self, from_search, from_obj):
        """
        Only one of the two parameters shall be given in this method. If you give both ``from_obj`` will be preferred.

        :param from_search: Tries to parse this str in the format as a search result string.
        :param from_obj: Tries to parse this str in the format of an obj str.
        :return: True if the comparison succeeded, False otherwise.
        """
        if isinstance(from_obj, str):
            # FIXME: fnmatch is only used for string to string comparisions which should cover most major usage, if
            #        not, this deserves fixing
            from_obj_lower = from_obj.lower()
            from_search_lower = from_search.lower()
            # It's much faster to not use fnmatch if it's not needed
            if '?' not in from_search_lower and '*' not in from_search_lower and '[' not in from_search_lower:
                match = from_obj_lower == from_search_lower
            else:
                match = fnmatch.fnmatch(from_obj_lower, from_search_lower)
            return match
        else:
            if isinstance(from_search, str):
                if isinstance(from_obj, list):
                    from_search = utils.input_string_or_list(from_search)
                    for x in from_search:
                        if x not in from_obj:
                            return False
                    return True
                if isinstance(from_obj, dict):
                    (junk, from_search) = utils.input_string_or_dict(from_search, allow_multiples=True)
                    for x in list(from_search.keys()):
                        y = from_search[x]
                        if x not in from_obj:
                            return False
                        if not (y == from_obj[x]):
                            return False
                    return True
                if isinstance(from_obj, bool):
                    if from_search.lower() in ["true", "1", "y", "yes"]:
                        inp = True
                    else:
                        inp = False
                    if inp == from_obj:
                        return True
                    return False

            raise CX(_("find cannot compare type: %s") % type(from_obj))

    def get_fields(self):
        """
        Get serializable fields
        Must be defined in any subclass
        """
        raise NotImplementedException()

    def clear(self, is_subobject=False):
        """
        Reset this object.

        :param is_subobject: True if this is a subobject, otherwise the default is enough.
        """
        utils.clear_from_fields(self, self.get_fields(), is_subobject=is_subobject)

    def make_clone(self):
        """
        Must be defined in any subclass
        """
        raise NotImplementedException()

    def from_dict(self, _dict):
        """
        Modify this object to take on values in ``seed_data``.

        :param _dict: This should contain all values which should be updated.
        """
        utils.from_dict_from_fields(self, _dict, self.get_fields())

    def to_dict(self):
        """
        This converts everything in this object to a dictionary.

        :return: A dictionary with all values present in this object.
        """
        # return utils.to_dict_from_fields(self, self.get_fields())

        value = self.get_from_cache(self)
        if value is None:
            value = utils.to_dict_from_fields(self, self.get_fields())
        self.set_cache(self, value)
        return value

    def to_string(self):
        """
        Convert an item into a string.

        :return: The string representation of the object.
        """
        return utils.to_string_from_fields(self, self.get_fields())

    def get_setter_methods(self):
        """
        Get all setter methods which are available in the item.

        :return: A dict with all setter methods.
        """
        return utils.get_setter_methods_from_fields(self, self.get_fields())

    def set_uid(self, uid):
        """
        Setter for the uid of the item.

        :param uid: The new uid.
        """
        self.uid = uid

    def get_children(self, sorted=True):
        """
        Get direct children of this object.

        :param sorted: If the list has to be sorted or not.
        :return: The list with the children. If no childrens are present an emtpy list is returned.
        :rtype: list
        """
        keys = list(self.children.keys())
        if sorted:
            keys.sort()
        results = []
        for k in keys:
            results.append(self.children[k])
        return results

    def get_descendants(self, sort=False):
        """
        Get objects that depend on this object, i.e. those that would be affected by a cascading delete, etc.

        :param sort: If True the list will be a walk of the tree, e.g., distro -> [profile, sys, sys, profile, sys, sys]
        :return: This is a list of all descendants. May be empty if none exist.
        """
        results = []
        kids = self.get_children(sorted=sort)
        if not sort:
            results.extend(kids)
        for kid in kids:
            if sort:
                results.append(kid)
            grandkids = kid.get_descendants(sort=sort)
            results.extend(grandkids)
        return results

    def get_parent(self):
        """
        For objects with a tree relationship, what's the parent object?
        """
        return None

    def get_conceptual_parent(self):
        """
        The parent may just be a superclass for something like a subprofile. Get the first parent of a different type.

        :return: The first item which is conceptually not from the same type.
        """
        mtype = type(self)
        parent = self.get_parent()
        while parent is not None:
            ptype = type(parent)
            if mtype != ptype:
                self.conceptual_parent = parent
                return parent
            parent = parent.get_parent()
        return None

    def set_name(self, name):
        """
        Set the objects name.

        :param name: object name string
        :type name: str
        :return: True or CX
        """
        self.name = validate.object_name(name, self.parent)

    def set_comment(self, comment):
        """
        Setter for the comment of the item.

        :param comment: The new comment. If ``None`` the comment will be set to an emtpy string.
        """
        if comment is None:
            comment = ""
        self.comment = comment

    def set_owners(self, data):
        """
        The owners field is a comment unless using an authz module that pays attention to it,
        like authz_ownership, which ships with Cobbler but is off by default.

        :param data: This can be a string or a list which contains all owners.
        """
        self.owners = utils.input_string_or_list(data)

    def set_kernel_options(self, options):
        """
        Kernel options are a space delimited list, like 'a=b c=d e=f g h i=j' or a dict.

        :param options: The new kernel options as a space delimited list.
        """
        (success, value) = utils.input_string_or_dict(options, allow_multiples=True)
        if not success:
            raise CX(_("invalid kernel options"))
        else:
            self.kernel_options = value

    def set_kernel_options_post(self, options):
        """
        Post kernel options are a space delimited list, like 'a=b c=d e=f g h i=j' or a dict.

        :param options: The new kernel options as a space delimited list.
        """
        (success, value) = utils.input_string_or_dict(options, allow_multiples=True)
        if not success:
            raise CX(_("invalid post kernel options"))
        else:
            self.kernel_options_post = value

    def set_autoinstall_meta(self, options):
        """
        A comma delimited list of key value pairs, like 'a=b,c=d,e=f' or a dict.
        The meta tags are used as input to the templating system to preprocess automatic installation template files.

        :param options: The new options for the automatic installation meta options.
        :return: False if this does not succeed.
        """
        (success, value) = utils.input_string_or_dict(options, allow_multiples=True)
        if not success:
            return False
        else:
            self.autoinstall_meta = value

    def set_mgmt_classes(self, mgmt_classes):
        """
        Assigns a list of configuration management classes that can be assigned to any object, such as those used by
        Puppet's external_nodes feature.

        :param mgmt_classes: The new options for the management classes of an item.
        """
        mgmt_classes_split = utils.input_string_or_list(mgmt_classes)
        self.mgmt_classes = utils.input_string_or_list(mgmt_classes_split)

    def set_mgmt_parameters(self, mgmt_parameters):
        """
        A YAML string which can be assigned to any object, this is used by Puppet's external_nodes feature.

        :param mgmt_parameters: The management parameters for an item.
        """
        if mgmt_parameters == "<<inherit>>":
            self.mgmt_parameters = mgmt_parameters
        else:
            import yaml
            data = yaml.safe_load(mgmt_parameters)
            if type(data) is not dict:
                raise CX(_("Input YAML in Puppet Parameter field must evaluate to a dictionary."))
            self.mgmt_parameters = data

    def set_template_files(self, template_files):
        """
        A comma seperated list of source=destination templates that should be generated during a sync.

        :param template_files: The new value for the template files which are used for the item.
        :return: False if this does not succeed.
        """
        (success, value) = utils.input_string_or_dict(template_files, allow_multiples=False)
        if not success:
            return False
        else:
            self.template_files = value

    def set_boot_files(self, boot_files):
        """
        A comma seperated list of req_name=source_file_path that should be fetchable via tftp.

        :param boot_files: The new value for the boot files used by the item.
        :return: False if this does not succeed.
        """
        (success, value) = utils.input_string_or_dict(boot_files, allow_multiples=False)
        if not success:
            return False
        else:
            self.boot_files = value

    def set_fetchable_files(self, fetchable_files):
        """
        A comma seperated list of virt_name=path_to_template that should be fetchable via tftp or a webserver

        :param fetchable_files: Files which will be made available to external users.
        :return: False if this does not succeed.
        """
        (success, value) = utils.input_string_or_dict(fetchable_files, allow_multiples=False)
        if not success:
            return False
        else:
            self.fetchable_files = value

    def sort_key(self, sort_fields=[]):
        """
        Convert the item to a dict and sort the data after specific given fields.

        :param sort_fields: The fields to sort the data after.
        :return: The sorted data.
        """
        data = self.to_dict()
        return [data.get(x, "") for x in sort_fields]

    def find_match(self, kwargs, no_errors=False):
        """
        Find from a given dict if the item matches the kv-pairs.

        :param kwargs: The dict to match for in this item.
        :param no_errors: How strict this matching is.
        :return: True if matches or False if the item does not match.
        """
        # used by find() method in collection.py
        data = self.to_dict()
        for (key, value) in list(kwargs.items()):
            # Allow ~ to negate the compare
            if value is not None and value.startswith("~"):
                res = not self.find_match_single_key(data, key, value[1:], no_errors)
            else:
                res = self.find_match_single_key(data, key, value, no_errors)
            if not res:
                return False

        return True

    def find_match_single_key(self, data, key, value, no_errors=False):
        """
        Look if the data matches or not. This is an alternative for ``find_match()``.

        :param data: The data to search through.
        :param key: The key to look for int the item.
        :param value: The value for the key.
        :param no_errors: How strict this matching is.
        :return: Whether the data matches or not.
        :rtype: bool
        """
        # special case for systems
        key_found_already = False
        if "interfaces" in data:
            if key in ["mac_address", "ip_address", "netmask", "virt_bridge",
                       "dhcp_tag", "dns_name", "static_routes", "interface_type",
                       "interface_master", "bonding_opts", "bridge_opts",
                       "interface"]:
                key_found_already = True
                for (name, interface) in list(data["interfaces"].items()):
                    if value == name:
                        return True
                    if value is not None and key in interface:
                        if self.__find_compare(interface[key], value):
                            return True

        if key not in data:
            if not key_found_already:
                if not no_errors:
                    # FIXME: removed for 2.0 code, shouldn't cause any problems to not have an exception here?
                    # raise CX(_("searching for field that does not exist: %s" % key))
                    return False
            else:
                if value is not None:       # FIXME: new?
                    return False

        if value is None:
            return True
        else:
            return self.__find_compare(value, data[key])

    def dump_vars(self, data, format=True):
        """
        Dump all variables.

        :param data: Unused parameter in this method.
        :param format: Whether to format the output or not.
        :return: The raw or formatted data.
        """
        raw = utils.blender(self.collection_mgr.api, False, self)
        if format:
            return pprint.pformat(raw)
        else:
            return raw

    def set_depth(self, depth):
        """
        Setter for depth.

        :param depth: The new value for depth.
        """
        self.depth = depth

    def set_ctime(self, ctime):
        """
        Setter for the creation time of the object.

        :param ctime: The new creation time. Especially usefull for replication Cobbler.
        """
        self.ctime = ctime

    def set_mtime(self, mtime):
        """
        Setter for the modification time of the object.

        :param mtime: The new modification time.
        """
        self.mtime = mtime

    def set_parent(self, parent):
        """
        Set the parent object for this object.

        :param parent: The new parent object. This needs to be a descendant in the logical inheritance chain.
        """
        self.parent = parent

    def check_if_valid(self):
        """
        Raise exceptions if the object state is inconsistent
        """
        if not self.name:
            raise CX("Name is required")

# EOF
  07070100000087000081A40000000000000000000000015ECE244400001298000000000000000000000000000000000000002900000000cobbler-3.1.2/cobbler/items/mgmtclass.py  """
Copyright 2010, Kelsey Hightower
Kelsey Hightower <kelsey.hightower@gmail.com>

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 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
"""

from past.builtins import str as oldstr
from cobbler.items import item
from cobbler import utils
from cobbler.cexceptions import CX
from cobbler.utils import _


# this data structure is described in item.py
FIELDS = [
    # non-editable in UI (internal)
    ["ctime", 0, 0, "", False, "", 0, "int"],
    ["depth", 2, 0, "", False, "", 0, "float"],
    ["is_definition", False, 0, "Is Definition?", True, "Treat this class as a definition (puppet only)", 0, "bool"],
    ["mtime", 0, 0, "", False, "", 0, "int"],
    ["uid", "", 0, "", False, "", 0, "str"],

    # editable in UI
    ["class_name", "", 0, "Class Name", True, "Actual Class Name (leave blank to use the name field)", 0, "str"],
    ["comment", "", 0, "Comment", True, "Free form text description", 0, "str"],
    ["files", [], 0, "Files", True, "File resources", 0, "list"],
    ["name", "", 0, "Name", True, "Ex: F10-i386-webserver", 0, "str"],
    ["owners", "SETTINGS:default_ownership", "SETTINGS:default_ownership", "Owners", True, "Owners list for authz_ownership (space delimited)", 0, "list"],
    ["packages", [], 0, "Packages", True, "Package resources", 0, "list"],
    ["params", {}, 0, "Parameters/Variables", True, "List of parameters/variables", 0, "dict"],
]


class Mgmtclass(item.Item):

    TYPE_NAME = _("mgmtclass")
    COLLECTION_TYPE = "mgmtclass"

    def __init__(self, *args, **kwargs):
        super(Mgmtclass, self).__init__(*args, **kwargs)
        self.params = None

    #
    # override some base class methods first (item.Item)
    #

    def make_clone(self):
        """
        Clone this file object. Please manually adjust all value yourself to make the cloned object unique.

        :return: The cloned instance of this object.
        """

        _dict = self.to_dict()
        cloned = Mgmtclass(self.collection_mgr)
        cloned.from_dict(_dict)
        return cloned

    def get_fields(self):
        """
        Return all fields which this class has with it's current values.

        :return: This is a list with lists.
        """
        return FIELDS

    def check_if_valid(self):
        """
        Check if this object is in a valid state. This currently checks only if the name is present.
        """
        if not self.name:
            raise CX("name is required")

    #
    # specific methods for item.Mgmtclass
    #

    def set_packages(self, packages):
        """
        Setter for the packages of the managementclass.

        :param packages: A string or list which contains the new packages.
        """
        self.packages = utils.input_string_or_list(packages)

    def set_files(self, files):
        """
        Setter for the files of the object.

        :param files: A string or list which contains the new files.
        """
        self.files = utils.input_string_or_list(files)

    def set_params(self, params):
        """
        Setter for the params of the managementclass.

        :param params: The new params for the object.
        """
        (success, value) = utils.input_string_or_dict(params, allow_multiples=True)
        if not success:
            raise CX(_("invalid parameters"))
        else:
            self.params = value

    def set_is_definition(self, isdef):
        """
        Setter for property ``is_defintion``.

        :param isdef: The new value for the property.
        """
        self.is_definition = utils.input_boolean(isdef)

    def set_class_name(self, name):
        """
        Setter for the name of the managementclass.

        :param name: The new name of the class. This must not contain "_", "-", ".", ":" or "+".
        :type name: str
        """
        if not isinstance(name, str) and not isinstance(name, oldstr):
            raise CX(_("class name must be a string"))
        for x in name:
            if not x.isalnum() and x not in ["_", "-", ".", ":", "+"]:
                raise CX(_("invalid characters in class name: '%s'" % name))
        self.class_name = name

# EOF
07070100000088000081A40000000000000000000000015ECE244400000CCB000000000000000000000000000000000000002700000000cobbler-3.1.2/cobbler/items/package.py    """
Copyright 2006-2009, MadHatter
Kelsey Hightower <kelsey.hightower@gmail.com>

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 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
"""

from cobbler import resource

from cobbler.cexceptions import CX
from cobbler.utils import _


# this data structure is described in item.py
FIELDS = [
    # non-editable in UI (internal)
    ["ctime", 0, 0, "", False, "", 0, "float"],
    ["depth", 2, 0, "", False, "", 0, "float"],
    ["mtime", 0, 0, "", False, "", 0, "float"],
    ["uid", "", 0, "", False, "", 0, "str"],

    # editable in UI
    ["action", "create", 0, "Action", True, "Install or remove package resource", 0, "str"],
    ["comment", "", 0, "Comment", True, "Free form text description", 0, "str"],
    ["installer", "yum", 0, "Installer", True, "Package Manager", 0, "str"],
    ["name", "", 0, "Name", True, "Name of file resource", 0, "str"],
    ["owners", "SETTINGS:default_ownership", 0, "Owners", True, "Owners list for authz_ownership (space delimited)", [], "list"],
    ["version", "", 0, "Version", True, "Package Version", 0, "str"],
]


class Package(resource.Resource):

    TYPE_NAME = _("package")
    COLLECTION_TYPE = "package"

    #
    # override some base class methods first (item.Item)
    #

    def make_clone(self):
        """
        Clone this package object. Please manually adjust all value yourself to make the cloned object unique.

        :return: The cloned instance of this object.
        """
        _dict = self.to_dict()
        cloned = Package(self.collection_mgr)
        cloned.from_dict(_dict)
        return cloned

    def get_fields(self):
        """
        Return all fields which this class has with its current values.

        :return: This is a list with lists.
        """
        return FIELDS

    def check_if_valid(self):
        """
        Checks if the object is in a valid state. This only checks currently if the name is present.
        """
        if not self.name:
            raise CX("name is required")

    #
    # specific methods for item.Package
    #

    def set_installer(self, installer):
        """
        Setter for the installer parameter.

        :param installer: This parameter will be lowercased regardless of what string you give it.
        :type installer: str
        """
        self.installer = installer.lower()

    def set_version(self, version):
        """
        Setter for the package version.

        :param version: They may be anything which is suitable for describing the version of a package. Internally this
                        is a string.
        :type version: str
        """
        self.version = version

# EOF
 07070100000089000081A40000000000000000000000015ECE244400003C06000000000000000000000000000000000000002700000000cobbler-3.1.2/cobbler/items/profile.py    """
Copyright 2006-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""

from cobbler import autoinstall_manager
from cobbler.items import item
from cobbler import utils
from cobbler import validate
from cobbler.cexceptions import CX
from cobbler.utils import _


# this data structure is described in item.py
FIELDS = [
    # non-editable in UI (internal)
    ["ctime", 0, 0, "", False, "", 0, "int"],
    ["depth", 1, 1, "", False, "", 0, "int"],
    ["mtime", 0, 0, "", False, "", 0, "int"],
    ["uid", "", "", "", False, "", 0, "str"],

    # editable in UI
    ["autoinstall", "SETTINGS:default_autoinstall", '<<inherit>>', "Automatic Installation Template", True, "Path to automatic installation template", 0, "str"],
    ["autoinstall_meta", {}, '<<inherit>>', "Automatic Installation Metadata", True, "Ex: dog=fang agent=86", 0, "dict"],
    ["boot_files", {}, '<<inherit>>', "TFTP Boot Files", True, "Files copied into tftpboot beyond the kernel/initrd", 0, "list"],
    ["comment", "", "", "Comment", True, "Free form text description", 0, "str"],
    ["dhcp_tag", "default", '<<inherit>>', "DHCP Tag", True, "See manpage or leave blank", 0, "str"],
    ["distro", None, '<<inherit>>', "Distribution", True, "Parent distribution", [], "str"],
    ["enable_gpxe", "SETTINGS:enable_gpxe", 0, "Enable gPXE?", True, "Use gPXE instead of PXELINUX for advanced booting options", 0, "bool"],
    ["enable_menu", "SETTINGS:enable_menu", '<<inherit>>', "Enable PXE Menu?", True, "Show this profile in the PXE menu?", 0, "bool"],
    ["fetchable_files", {}, '<<inherit>>', "Fetchable Files", True, "Templates for tftp or wget/curl", 0, "dict"],
    ["kernel_options", {}, '<<inherit>>', "Kernel Options", True, "Ex: selinux=permissive", 0, "dict"],
    ["kernel_options_post", {}, '<<inherit>>', "Kernel Options (Post Install)", True, "Ex: clocksource=pit noapic", 0, "dict"],
    ["mgmt_classes", [], '<<inherit>>', "Management Classes", True, "For external configuration management", 0, "list"],
    ["mgmt_parameters", "<<inherit>>", "<<inherit>>", "Management Parameters", True, "Parameters which will be handed to your management application (Must be valid YAML dictionary)", 0, "str"],
    ["name", "", None, "Name", True, "Ex: F10-i386-webserver", 0, "str"],
    ["name_servers", "SETTINGS:default_name_servers", [], "Name Servers", True, "space delimited", 0, "list"],
    ["name_servers_search", "SETTINGS:default_name_servers_search", [], "Name Servers Search Path", True, "space delimited", 0, "list"],
    ["next_server", "<<inherit>>", '<<inherit>>', "Next Server Override", True, "See manpage or leave blank", 0, "str"],
    ["filename", "<<inherit>>", '<<inherit>>', "DHCP Filename Override", True, "Use to boot non-default bootloaders", 0, "str"],
    ["owners", "SETTINGS:default_ownership", "SETTINGS:default_ownership", "Owners", True, "Owners list for authz_ownership (space delimited)", 0, "list"],
    ["parent", '', '', "Parent Profile", True, "", [], "str"],
    ["proxy", "SETTINGS:proxy_url_int", "<<inherit>>", "Proxy", True, "Proxy URL", 0, "str"],
    ["redhat_management_key", "<<inherit>>", "<<inherit>>", "Red Hat Management Key", True, "Registration key for RHN, Spacewalk, or Satellite", 0, "str"],
    ["repos", [], '<<inherit>>', "Repos", True, "Repos to auto-assign to this profile", [], "list"],
    ["server", "<<inherit>>", '<<inherit>>', "Server Override", True, "See manpage or leave blank", 0, "str"],
    ["template_files", {}, '<<inherit>>', "Template Files", True, "File mappings for built-in config management", 0, "dict"],
    ["virt_auto_boot", "SETTINGS:virt_auto_boot", '<<inherit>>', "Virt Auto Boot", True, "Auto boot this VM?", 0, "bool"],
    ["virt_bridge", "SETTINGS:default_virt_bridge", '<<inherit>>', "Virt Bridge", True, "", 0, "str"],
    ["virt_cpus", 1, '<<inherit>>', "Virt CPUs", True, "integer", 0, "int"],
    ["virt_disk_driver", "SETTINGS:default_virt_disk_driver", '<<inherit>>', "Virt Disk Driver Type", True, "The on-disk format for the virtualization disk", validate.VIRT_DISK_DRIVERS, "str"],
    ["virt_file_size", "SETTINGS:default_virt_file_size", '<<inherit>>', "Virt File Size(GB)", True, "", 0, "int"],
    ["virt_path", "", '<<inherit>>', "Virt Path", True, "Ex: /directory OR VolGroup00", 0, "str"],
    ["virt_ram", "SETTINGS:default_virt_ram", '<<inherit>>', "Virt RAM (MB)", True, "", 0, "int"],
    ["virt_type", "SETTINGS:default_virt_type", '<<inherit>>', "Virt Type", True, "Virtualization technology to use", validate.VIRT_TYPES, "str"],
]


class Profile(item.Item):
    """
    A Cobbler profile object.
    """

    TYPE_NAME = _("profile")
    COLLECTION_TYPE = "profile"

    def __init__(self, *args, **kwargs):
        super(Profile, self).__init__(*args, **kwargs)
        self.kernel_options = {}
        self.kernel_options_post = {}
        self.autoinstall_meta = {}
        self.fetchable_files = {}
        self.boot_files = {}
        self.template_files = {}

    #
    # override some base class methods first (item.Item)
    #

    def make_clone(self):
        """
        Clone this file object. Please manually adjust all value yourself to make the cloned object unique.

        :return: The cloned instance of this object.
        """
        _dict = self.to_dict()
        cloned = Profile(self.collection_mgr)
        cloned.from_dict(_dict)
        return cloned

    def get_fields(self):
        """
        Return all fields which this class has with its current values.

        :return: This is a list with lists.
        """
        return FIELDS

    def get_parent(self):
        """
        Return object next highest up the tree.
        """
        if not self.parent:
            if self.distro is None:
                return None
            result = self.collection_mgr.distros().find(name=self.distro)
        else:
            result = self.collection_mgr.profiles().find(name=self.parent)
        return result

    def check_if_valid(self):
        """
        Check if the profile is valid. This checks for an existing name and a distro as a conceptual parent.
        """
        # name validation
        if not self.name:
            raise CX("Name is required")

        # distro validation
        distro = self.get_conceptual_parent()
        if distro is None:
            raise CX("Error with profile %s - distro is required" % (self.name))

    #
    # specific methods for item.Profile
    #

    def set_parent(self, parent_name):
        """
        Instead of a ``--distro``, set the parent of this object to another profile and use the values from the parent
        instead of this one where the values for this profile aren't filled in, and blend them together where they
        are dictionaries. Basically this enables profile inheritance. To use this, the object MUST have been
        constructed with ``is_subobject=True`` or the default values for everything will be screwed up and this will
        likely NOT work. So, API users -- make sure you pass ``is_subobject=True`` into the constructor when using this.

        :param parent_name: The name of the parent object.
        """
        old_parent = self.get_parent()
        if isinstance(old_parent, item.Item):
            old_parent.children.pop(self.name, 'pass')
        if not parent_name:
            self.parent = ''
            return
        if parent_name == self.name:
            # check must be done in two places as set_parent could be called before/after
            # set_name...
            raise CX(_("self parentage is weird"))
        found = self.collection_mgr.profiles().find(name=parent_name)
        if found is None:
            raise CX(_("profile %s not found, inheritance not possible") % parent_name)
        self.parent = parent_name
        self.depth = found.depth + 1
        parent = self.get_parent()
        if isinstance(parent, item.Item):
            parent.children[self.name] = self

    def set_distro(self, distro_name):
        """
        Sets the distro. This must be the name of an existing Distro object in the Distros collection.
        """
        d = self.collection_mgr.distros().find(name=distro_name)
        if d is not None:
            old_parent = self.get_parent()
            if isinstance(old_parent, item.Item):
                old_parent.children.pop(self.name, 'pass')
            self.distro = distro_name
            self.depth = d.depth + 1    # reset depth if previously a subprofile and now top-level
            d.children[self.name] = self
            return
        raise CX(_("distribution not found"))

    def set_name_servers(self, data):
        """
        Set the DNS servers.

        :param data: string or list of nameservers
        :returns: True or throws exception
        :raises CX: If the nameservers are not valid.
        """
        self.name_servers = validate.name_servers(data)

    def set_name_servers_search(self, data):
        """
        Set the DNS search paths.

        :param data: string or list of search domains
        :returns: True or throws exception
        :raises CX: If the search domains are not valid.
        """
        self.name_servers_search = validate.name_servers_search(data)

    def set_proxy(self, proxy):
        """
        Setter for the proxy.

        :param proxy: The new proxy for the profile.
        """
        self.proxy = proxy

    def set_enable_gpxe(self, enable_gpxe):
        """
        Sets whether or not the profile will use gPXE for booting.

        :param enable_gpxe: New boolean value for enabling gPXE.
        """
        self.enable_gpxe = utils.input_boolean(enable_gpxe)

    def set_enable_menu(self, enable_menu):
        """
        Sets whether or not the profile will be listed in the default PXE boot menu. This is pretty forgiving for
        YAML's sake.

        :param enable_menu: New boolean value for enabling the menu.
        """
        self.enable_menu = utils.input_boolean(enable_menu)

    def set_dhcp_tag(self, dhcp_tag):
        """
        Setter for the dhcp tag property.

        :param dhcp_tag:
        """
        if dhcp_tag is None:
            dhcp_tag = ""
        self.dhcp_tag = dhcp_tag

    def set_server(self, server):
        """
        Setter for the server property.

        :param server: If this is None or an emtpy string this will be reset to be inherited from the parent object.
        """
        if server in [None, ""]:
            server = "<<inherit>>"
        self.server = server

    def set_next_server(self, server):
        """
        Setter for the next server value.

        :param server: If this is None or an emtpy string this will be reset to be inherited from the parent object.
        """
        if server in [None, ""]:
            self.next_server = "<<inherit>>"
        else:
            server = server.strip()
            if server != "<<inherit>>":
                self.next_server = validate.ipv4_address(server)
            else:
                self.next_server = server

    def set_filename(self, filename):
        if not filename:
            self.filename = "<<inherit>>"
        else:
            self.filename = filename.strip()

    def set_autoinstall(self, autoinstall):
        """
        Set the automatic OS installation template file path, this must be a local file.

        :param autoinstall: local automatic installation template path
        :type autoinstall: str
        """

        autoinstall_mgr = autoinstall_manager.AutoInstallationManager(self.collection_mgr)
        self.autoinstall = autoinstall_mgr.validate_autoinstall_template_file_path(autoinstall)

    def set_virt_auto_boot(self, num):
        """
        Setter for booting a virtual machine automatically.

        :param num: The new value for whether to enable it or not.
        """
        utils.set_virt_auto_boot(self, num)

    def set_virt_cpus(self, num):
        """
        Setter for the number of virtual CPU cores to assign to the virtual machine.

        :param num: The number of cpu cores.
        """
        utils.set_virt_cpus(self, num)

    def set_virt_file_size(self, num):
        """
        Setter for the size of the virtual image size.

        :param num: The new size of the image.
        """
        utils.set_virt_file_size(self, num)

    def set_virt_disk_driver(self, driver):
        """
        Setter for the virtual disk driver that will be used.

        :param driver: The new driver.
        """
        utils.set_virt_disk_driver(self, driver)

    def set_virt_ram(self, num):
        """
        Setter for the virtual RAM used for the VM.

        :param num: The number of RAM to use for the VM.
        """
        utils.set_virt_ram(self, num)

    def set_virt_type(self, vtype):
        """
        Setter for the virtual machine type.

        :param vtype: May be on out of "qemu", "kvm", "xenpv", "xenfv", "vmware", "vmwarew", "openvz" or "auto".
        """
        utils.set_virt_type(self, vtype)

    def set_virt_bridge(self, vbridge):
        """
        Setter for the name of the virtual bridge to use.

        :param vbridge: The name of the virtual bridge to use.
        """
        utils.set_virt_bridge(self, vbridge)

    def set_virt_path(self, path):
        """
        Setter of the path to the place where the image will be stored.

        :param path: The path to where the image will be stored.
        """
        utils.set_virt_path(self, path)

    def set_repos(self, repos, bypass_check=False):
        """
        Setter of the repositories for the profile.

        :param repos: The new repositories which will be set.
        :param bypass_check: If repository checks should be checked or not.
        """
        utils.set_repos(self, repos, bypass_check)

    def set_redhat_management_key(self, management_key):
        """
        Setter of the redhat management key.

        :param management_key: The value may be reset by setting it to None.
        """
        if not management_key:
            self.redhat_management_key = "<<inherit>>"
        self.redhat_management_key = management_key

    def get_redhat_management_key(self):
        """
        Getter of the redhat management key of the profile or it's parent.

        :return: Returns the redhat_management_key of the profile.
        """
        return self.redhat_management_key

    def get_arch(self):
        """
        Getter of the architecture of the profile or the parent.

        :return: The architecture.
        """
        parent = self.get_parent()
        if parent:
            return parent.get_arch()
        return None
# EOF
  0707010000008A000081A40000000000000000000000015ECE24440000274C000000000000000000000000000000000000002400000000cobbler-3.1.2/cobbler/items/repo.py   """
Copyright 2006-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""

from builtins import str
from cobbler.items import item
from cobbler import utils
from cobbler import validate
from cobbler.cexceptions import CX
from cobbler.utils import _


# this data structure is described in item.py
FIELDS = [
    # non-editable in UI (internal)
    ["ctime", 0, 0, "", False, "", 0, "float"],
    ["depth", 2, 0, "", False, "", 0, "float"],
    ["mtime", 0, 0, "", False, "", 0, "float"],
    ["parent", None, 0, "", False, "", 0, "str"],
    ["uid", None, 0, "", False, "", 0, "str"],

    # editable in UI
    ["apt_components", "", 0, "Apt Components (apt only)", True, "ex: main restricted universe", [], "list"],
    ["apt_dists", "", 0, "Apt Dist Names (apt only)", True, "ex: precise precise-updates", [], "list"],
    ["arch", "x86_64", 0, "Arch", True, "ex: i386, x86_64", ['i386', 'x86_64', 'ia64', 'ppc', 'ppc64', 'ppc64le', 'ppc64el', 's390', 's390x', 'arm', 'aarch64', 'noarch', 'src'], "str"],
    ["breed", "rsync", 0, "Breed", True, "", validate.REPO_BREEDS, "str"],
    ["comment", "", 0, "Comment", True, "Free form text description", 0, "str"],
    ["createrepo_flags", '<<inherit>>', 0, "Createrepo Flags", True, "Flags to use with createrepo", 0, "dict"],
    ["environment", {}, 0, "Environment Variables", True, "Use these environment variables during commands (key=value, space delimited)", 0, "dict"],
    ["keep_updated", True, 0, "Keep Updated", True, "Update this repo on next 'cobbler reposync'?", 0, "bool"],
    ["mirror", None, 0, "Mirror", True, "Address of yum or rsync repo to mirror", 0, "str"],
    ["mirror_locally", True, 0, "Mirror locally", True, "Copy files or just reference the repo externally?", 0, "bool"],
    ["name", "", 0, "Name", True, "Ex: f10-i386-updates", 0, "str"],
    ["owners", "SETTINGS:default_ownership", 0, "Owners", True, "Owners list for authz_ownership (space delimited)", [], "list"],
    ["priority", 99, 0, "Priority", True, "Value for yum priorities plugin, if installed", 0, "int"],
    ["proxy", "<<inherit>>", 0, "Proxy information", True, "http://example.com:8080, or <<inherit>> to use proxy_url_ext from settings, blank or <<None>> for no proxy", [], "str"],
    ["rpm_list", [], 0, "RPM List", True, "Mirror just these RPMs (yum only)", 0, "list"],
    ["yumopts", {}, 0, "Yum Options", True, "Options to write to yum config file", 0, "dict"],
]


class Repo(item.Item):
    """
    A Cobbler repo object.
    """

    TYPE_NAME = _("repo")
    COLLECTION_TYPE = "repo"

    def __init__(self, *args, **kwargs):
        super(Repo, self).__init__(*args, **kwargs)
        self.breed = None
        self.arch = None
        self.environment = None
        self.yumopts = None

    #
    # override some base class methods first (item.Item)
    #

    def make_clone(self):
        """
        Clone this file object. Please manually adjust all value yourself to make the cloned object unique.

        :return: The cloned instance of this object.
        """
        _dict = self.to_dict()
        cloned = Repo(self.collection_mgr)
        cloned.from_dict(_dict)
        return cloned

    def get_fields(self):
        """
        Return all fields which this class has with its current values.

        :return: This is a list with lists.
        """
        return FIELDS

    def get_parent(self):
        """
        Currently the Cobbler object space does not support subobjects of this object as it is conceptually not useful.
        """
        return None

    def check_if_valid(self):
        """
        Checks if the object is valid. Currently checks for name and mirror to be present.
        """
        if self.name is None:
            raise CX("name is required")
        if self.mirror is None:
            raise CX("Error with repo %s - mirror is required" % (self.name))

    #
    # specific methods for item.File
    #

    def _guess_breed(self):
        """
        Guess the breed of a mirror.
        """
        # backwards compatibility
        if not self.breed:
            if self.mirror.startswith("http://") or self.mirror.startswith("https://") or self.mirror.startswith("ftp://"):
                self.set_breed("yum")
            elif self.mirror.startswith("rhn://"):
                self.set_breed("rhn")
            else:
                self.set_breed("rsync")

    def set_mirror(self, mirror):
        """
        A repo is (initially, as in right now) is something that can be rsynced.
        reposync/repotrack integration over HTTP might come later.

        :param mirror: The mirror URI.
        """
        self.mirror = mirror
        if not self.arch:
            if mirror.find("x86_64") != -1:
                self.set_arch("x86_64")
            elif mirror.find("x86") != -1 or mirror.find("i386") != -1:
                self.set_arch("i386")
        self._guess_breed()

    def set_keep_updated(self, keep_updated):
        """
        This allows the user to disable updates to a particular repo for whatever reason.

        :param keep_updated: This may be a bool-like value if the repository shall be keept up to date or not.
        """
        self.keep_updated = utils.input_boolean(keep_updated)

    def set_yumopts(self, options):
        """
        Kernel options are a space delimited list.

        :param options: Something like 'a=b c=d e=f g h i=j' or a dictionary.
        """
        (success, value) = utils.input_string_or_dict(options, allow_multiples=False)
        if not success:
            raise CX(_("invalid yum options"))
        else:
            self.yumopts = value

    def set_environment(self, options):
        """
        Yum can take options from the environment. This puts them there before each reposync.

        :param options: These are environment variables which are set before each reposync.
        """
        (success, value) = utils.input_string_or_dict(options, allow_multiples=False)
        if not success:
            raise CX(_("invalid environment options"))
        else:
            self.environment = value

    def set_priority(self, priority):
        """
        Set the priority of the repository. Only works if host is using priorities plugin for yum.

        :param priority: Must be a value between 1 and 99. 1 is the highest whereas 99 is the default and lowest.
        """
        try:
            priority = int(str(priority))
        except:
            raise CX(_("invalid priority level: %s") % priority)
        self.priority = priority

    def set_rpm_list(self, rpms):
        """
        Rather than mirroring the entire contents of a repository (Fedora Extras, for instance, contains games, and we
        probably don't want those), make it possible to list the packages one wants out of those repos, so only those
        packages and deps can be mirrored.

        :param rpms: The rpm to mirror. This may be a string or list.
        """
        self.rpm_list = utils.input_string_or_list(rpms)

    def set_createrepo_flags(self, createrepo_flags):
        """
        Flags passed to createrepo when it is called. Common flags to use would be ``-c cache`` or ``-g comps.xml`` to
        generate group information.

        :param createrepo_flags: The createrepo flags which are passed additionally to the default ones.
        """
        if createrepo_flags is None:
            createrepo_flags = ""
        self.createrepo_flags = createrepo_flags

    def set_breed(self, breed):
        """
        Setter for the operating system breed.

        :param breed: The new breed to set. If this argument evaluates to false then nothing will be done.
        """
        if breed:
            return utils.set_repo_breed(self, breed)

    def set_os_version(self, os_version):
        """
        Setter for the operating system version.

        :param os_version: The new operating system version. If this argument evaluates to false then nothing will be
                           done.
        """
        if os_version:
            return utils.set_repo_os_version(self, os_version)

    def set_arch(self, arch):
        """
        Override the arch used for reposync

        :param arch: The new arch which will be used.
        """
        return utils.set_arch(self, arch, repo=True)

    def set_mirror_locally(self, value):
        """
        Setter for the local mirror property.

        :param value: The new value for ``mirror_locally``.
        """
        self.mirror_locally = utils.input_boolean(value)

    def set_apt_components(self, value):
        """
        Setter for the apt command property.

        :param value: The new value for ``apt_components``.
        """
        self.apt_components = utils.input_string_or_list(value)

    def set_apt_dists(self, value):
        """
        Setter for the apt dists.

        :param value: The new value for ``apt_dists``.
        :return: ``True`` if everything went correctly.
        """
        self.apt_dists = utils.input_string_or_list(value)
        return True

    def set_proxy(self, value):
        """
        Setter for the proxy setting of the repository.

        :param value: The new proxy which will be used for the repository.
        :return: ``True`` if this succeeds.
        """
        self.proxy = value
        return True


# EOF
0707010000008B000081A40000000000000000000000015ECE244400008287000000000000000000000000000000000000002600000000cobbler-3.1.2/cobbler/items/system.py """
Copyright 2006-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""

from cobbler import autoinstall_manager
from cobbler.items import item
from cobbler import power_manager
from cobbler import utils
from cobbler import validate
from cobbler.cexceptions import CX
from cobbler.utils import _


# this data structure is described in item.py
FIELDS = [
    # non-editable in UI (internal)
    ["ctime", 0, 0, "", False, "", 0, "float"],
    ["depth", 2, 0, "", False, "", 0, "int"],
    ["ipv6_autoconfiguration", False, 0, "IPv6 Autoconfiguration", True, "", 0, "bool"],
    ["mtime", 0, 0, "", False, "", 0, "float"],
    ["repos_enabled", False, 0, "Repos Enabled", True, "(re)configure local repos on this machine at next config update?", 0, "bool"],
    ["uid", "", 0, "", False, "", 0, "str"],

    # editable in UI
    ["autoinstall", "<<inherit>>", 0, "Automatic Installation Template", True, "Path to automatic installation template", 0, "str"],
    ["autoinstall_meta", {}, 0, "Automatic Installation Template Metadata", True, "Ex: dog=fang agent=86", 0, "dict"],
    ["boot_files", {}, '<<inherit>>', "TFTP Boot Files", True, "Files copied into tftpboot beyond the kernel/initrd", 0, "list"],
    ["boot_loader", "<<inherit>>", 0, "Boot loader", True, "Linux installation boot loader", utils.get_supported_system_boot_loaders(), "str"],
    ["comment", "", 0, "Comment", True, "Free form text description", 0, "str"],
    ["enable_gpxe", "<<inherit>>", 0, "Enable gPXE?", True, "Use gPXE instead of PXELINUX for advanced booting options", 0, "bool"],
    ["fetchable_files", {}, '<<inherit>>', "Fetchable Files", True, "Templates for tftp or wget/curl", 0, "dict"],
    ["gateway", "", 0, "Gateway", True, "", 0, "str"],
    ["hostname", "", 0, "Hostname", True, "", 0, "str"],
    ["image", None, 0, "Image", True, "Parent image (if not a profile)", 0, "str"],
    ["ipv6_default_device", "", 0, "IPv6 Default Device", True, "", 0, "str"],
    ["kernel_options", {}, 0, "Kernel Options", True, "Ex: selinux=permissive", 0, "dict"],
    ["kernel_options_post", {}, 0, "Kernel Options (Post Install)", True, "Ex: clocksource=pit noapic", 0, "dict"],
    ["mgmt_classes", "<<inherit>>", 0, "Management Classes", True, "For external config management", 0, "list"],
    ["mgmt_parameters", "<<inherit>>", 0, "Management Parameters", True, "Parameters which will be handed to your management application (Must be valid YAML dictionary)", 0, "str"],
    ["name", "", 0, "Name", True, "Ex: vanhalen.example.org", 0, "str"],
    ["name_servers", [], 0, "Name Servers", True, "space delimited", 0, "list"],
    ["name_servers_search", [], 0, "Name Servers Search Path", True, "space delimited", 0, "list"],
    ["netboot_enabled", True, 0, "Netboot Enabled", True, "PXE (re)install this machine at next boot?", 0, "bool"],
    ["next_server", "<<inherit>>", 0, "Next Server Override", True, "See manpage or leave blank", 0, "str"],
    ["filename", "<<inherit>>", '<<inherit>>', "DHCP Filename Override", True, "Use to boot non-default bootloaders", 0, "str"],
    ["owners", "<<inherit>>", 0, "Owners", True, "Owners list for authz_ownership (space delimited)", 0, "list"],
    ["power_address", "", 0, "Power Management Address", True, "Ex: power-device.example.org", 0, "str"],
    ["power_id", "", 0, "Power Management ID", True, "Usually a plug number or blade name, if power type requires it", 0, "str"],
    ["power_pass", "", 0, "Power Management Password", True, "", 0, "str"],
    ["power_type", "SETTINGS:power_management_default_type", 0, "Power Management Type", True, "Power management script to use", power_manager.get_power_types(), "str"],
    ["power_user", "", 0, "Power Management Username", True, "", 0, "str"],
    ["power_options", "", 0, "Power Management Options", True, "Additional options, to be passed to the fencing agent", 0, "str"],
    ["power_identity_file", "", 0, "Power Identity File", True, "Identity file to be passed to the fencing agent (ssh key)", 0, "str"],
    ["profile", None, 0, "Profile", True, "Parent profile", [], "str"],
    ["proxy", "<<inherit>>", 0, "Internal Proxy", True, "Internal proxy URL", 0, "str"],
    ["redhat_management_key", "<<inherit>>", 0, "Redhat Management Key", True, "Registration key for RHN, Spacewalk, or Satellite", 0, "str"],
    ["server", "<<inherit>>", 0, "Server Override", True, "See manpage or leave blank", 0, "str"],
    ["status", "production", 0, "Status", True, "System status", ["", "development", "testing", "acceptance", "production"], "str"],
    ["template_files", {}, 0, "Template Files", True, "File mappings for built-in configuration management", 0, "dict"],
    ["virt_auto_boot", "<<inherit>>", 0, "Virt Auto Boot", True, "Auto boot this VM?", 0, "bool"],
    ["virt_cpus", "<<inherit>>", 0, "Virt CPUs", True, "", 0, "int"],
    ["virt_disk_driver", "<<inherit>>", 0, "Virt Disk Driver Type", True, "The on-disk format for the virtualization disk", validate.VIRT_DISK_DRIVERS, "str"],
    ["virt_file_size", "<<inherit>>", 0, "Virt File Size(GB)", True, "", 0, "float"],
    ["virt_path", "<<inherit>>", 0, "Virt Path", True, "Ex: /directory or VolGroup00", 0, "str"],
    ["virt_pxe_boot", 0, 0, "Virt PXE Boot", True, "Use PXE to build this VM?", 0, "bool"],
    ["virt_ram", "<<inherit>>", 0, "Virt RAM (MB)", True, "", 0, "int"],
    ["virt_type", "<<inherit>>", 0, "Virt Type", True, "Virtualization technology to use", validate.VIRT_TYPES, "str"],
    ["serial_device", "", 0, "Serial Device #", True, "Serial Device Number", 0, "int"],
    ["serial_baud_rate", "", 0, "Serial Baud Rate", True, "Serial Baud Rate", ["", "2400", "4800", "9600", "19200", "38400", "57600", "115200"], "int"],
]

# network interface fields are in a separate list because a system may contain
# several network interfaces and thus several values for each one of those fields
# (1-N cardinality), while it may contain only one value for other fields
# (1-1 cardinality). This difference requires special handling.
NETWORK_INTERFACE_FIELDS = [
    ["bonding_opts", "", 0, "Bonding Opts", True, "Should be used with --interface", 0, "str"],
    ["bridge_opts", "", 0, "Bridge Opts", True, "Should be used with --interface", 0, "str"],
    ["cnames", [], 0, "CNAMES", True, "Cannonical Name Records, should be used with --interface, In quotes, space delimited", 0, "list"],
    ["connected_mode", False, 0, "InfiniBand Connected Mode", True, "Should be used with --interface", 0, "bool"],
    ["dhcp_tag", "", 0, "DHCP Tag", True, "Should be used with --interface", 0, "str"],
    ["dns_name", "", 0, "DNS Name", True, "Should be used with --interface", 0, "str"],
    ["if_gateway", "", 0, "Per-Interface Gateway", True, "Should be used with --interface", 0, "str"],
    ["interface_master", "", 0, "Master Interface", True, "Should be used with --interface", 0, "str"],
    ["interface_type", "na", 0, "Interface Type", True, "Should be used with --interface", ["na", "bond", "bond_slave", "bridge", "bridge_slave", "bonded_bridge_slave", "bmc", "infiniband"], "str"],
    ["ip_address", "", 0, "IP Address", True, "Should be used with --interface", 0, "str"],
    ["ipv6_address", "", 0, "IPv6 Address", True, "Should be used with --interface", 0, "str"],
    ["ipv6_default_gateway", "", 0, "IPv6 Default Gateway", True, "Should be used with --interface", 0, "str"],
    ["ipv6_mtu", "", 0, "IPv6 MTU", True, "Should be used with --interface", 0, "str"],
    ["ipv6_prefix", "", 0, "IPv6 Prefix", True, "Should be used with --interface", 0, "str"],
    ["ipv6_secondaries", [], 0, "IPv6 Secondaries", True, "Space delimited. Should be used with --interface", 0, "list"],
    ["ipv6_static_routes", [], 0, "IPv6 Static Routes", True, "Should be used with --interface", 0, "list"],
    ["mac_address", "", 0, "MAC Address", True, "(Place \"random\" in this field for a random MAC Address.)", 0, "str"],
    ["management", False, 0, "Management Interface", True, "Is this the management interface? Should be used with --interface", 0, "bool"],
    ["mtu", "", 0, "MTU", True, "", 0, "str"],
    ["netmask", "", 0, "Subnet Mask", True, "Should be used with --interface", 0, "str"],
    ["static", False, 0, "Static", True, "Is this interface static? Should be used with --interface", 0, "bool"],
    ["static_routes", [], 0, "Static Routes", True, "Should be used with --interface", 0, "list"],
    ["virt_bridge", "", 0, "Virt Bridge", True, "Should be used with --interface", 0, "str"],
]


class System(item.Item):
    """
    A Cobbler system object.
    """

    TYPE_NAME = _("system")
    COLLECTION_TYPE = "system"

    def __init__(self, *args, **kwargs):
        super(System, self).__init__(*args, **kwargs)
        self.interfaces = dict()
        self.kernel_options = {}
        self.kernel_options_post = {}
        self.autoinstall_meta = {}
        self.fetchable_files = {}
        self.boot_files = {}
        self.template_files = {}

    #
    # override some base class methods first (item.Item)
    #

    def get_fields(self):
        return FIELDS

    def make_clone(self):
        _dict = self.to_dict()
        cloned = System(self.collection_mgr)
        cloned.from_dict(_dict)
        return cloned

    def from_dict(self, seed_data):
        # FIXME: most definitely doesn't grok interfaces yet.
        return utils.from_dict_from_fields(self, seed_data, FIELDS)

    def get_parent(self):
        """
        Return object next highest up the tree.
        """
        if (self.parent is None or self.parent == '') and self.profile:
            return self.collection_mgr.profiles().find(name=self.profile)
        elif (self.parent is None or self.parent == '') and self.image:
            return self.collection_mgr.images().find(name=self.image)
        else:
            return self.collection_mgr.systems().find(name=self.parent)

    def check_if_valid(self):
        if self.name is None or self.name == "":
            raise CX("name is required")
        if self.profile is None or self.profile == "":
            if self.image is None or self.image == "":
                raise CX("Error with system %s - profile or image is required" % (self.name))

    #
    # specific methods for item.System
    #

    def __create_interface(self, interface):

        self.interfaces[interface] = {}
        for field in NETWORK_INTERFACE_FIELDS:
            self.interfaces[interface][field[0]] = field[1]

    def __get_interface(self, name):

        if not name:
            name = "default"
        if name not in self.interfaces:
            self.__create_interface(name)

        return self.interfaces[name]

    def delete_interface(self, name):
        """
        Used to remove an interface.
        """
        if name in self.interfaces and len(self.interfaces) > 1:
            del self.interfaces[name]
        else:
            if name not in self.interfaces:
                # no interface here to delete
                pass
            else:
                raise CX(_("At least one interface needs to be defined."))

    def rename_interface(self, names):
        """
        Used to rename an interface.
        """
        (name, newname) = names
        if name not in self.interfaces:
            raise CX(_("Interface %s does not exist" % name))
        if newname in self.interfaces:
            raise CX(_("Interface %s already exists" % newname))
        else:
            self.interfaces[newname] = self.interfaces[name]
            del self.interfaces[name]

    def set_boot_loader(self, name):
        if name not in utils.get_supported_system_boot_loaders():
            raise CX(_("Invalid boot loader name: %s" % name))
        self.boot_loader = name

    def set_server(self, server):
        """
        If a system can't reach the boot server at the value configured in settings
        because it doesn't have the same name on it's subnet this is there for an override.
        """
        if server is None or server == "":
            server = "<<inherit>>"
        self.server = server

    def set_next_server(self, server):
        if server is None or server == "" or server == "<<inherit>>":
            self.next_server = "<<inherit>>"
        else:
            server = server.strip()
            self.next_server = validate.ipv4_address(server)

    def set_filename(self, filename):
        if not filename:
            self.filename = "<<inherit>>"
        else:
            self.filename = filename.strip()

    def set_proxy(self, proxy):
        if proxy is None or proxy == "":
            proxy = "<<inherit>>"
        self.proxy = proxy

    def set_redhat_management_key(self, management_key):
        if management_key is None or management_key == "":
            self.redhat_management_key = "<<inherit>>"
        self.redhat_management_key = management_key

    def get_redhat_management_key(self):
        return self.redhat_management_key

    def get_mac_address(self, interface):
        """
        Get the mac address, which may be implicit in the object name or explicit with --mac-address.
        Use the explicit location first.
        """

        intf = self.__get_interface(interface)

        if intf["mac_address"] != "":
            return intf["mac_address"].strip()
        else:
            return None

    def get_ip_address(self, interface):
        """
        Get the IP address for the given interface.
        """
        intf = self.__get_interface(interface)
        if intf["ip_address"] != "":
            return intf["ip_address"].strip()
        else:
            return ""

    def is_management_supported(self, cidr_ok=True):
        """
        Can only add system PXE records if a MAC or IP address is available, else it's a koan
        only record.
        """
        if self.name == "default":
            return True
        for (name, x) in list(self.interfaces.items()):
            mac = x.get("mac_address", None)
            ip = x.get("ip_address", None)
            if ip is not None and not cidr_ok and ip.find("/") != -1:
                # ip is in CIDR notation
                return False
            if mac is not None or ip is not None:
                # has ip and/or mac
                return True
        return False

    def set_dhcp_tag(self, dhcp_tag, interface):
        intf = self.__get_interface(interface)
        intf["dhcp_tag"] = dhcp_tag

    def set_cnames(self, cnames, interface):
        intf = self.__get_interface(interface)
        data = utils.input_string_or_list(cnames)
        intf["cnames"] = data

    def set_static_routes(self, routes, interface):
        intf = self.__get_interface(interface)
        data = utils.input_string_or_list(routes)
        intf["static_routes"] = data

    def set_status(self, status):
        self.status = status

    def set_static(self, truthiness, interface):
        intf = self.__get_interface(interface)
        intf["static"] = utils.input_boolean(truthiness)

    def set_management(self, truthiness, interface):
        intf = self.__get_interface(interface)
        intf["management"] = utils.input_boolean(truthiness)

# ---

    def set_dns_name(self, dns_name, interface):
        """
        Set DNS name for interface.

        @param: str dns_name (dns name)
        @param: str interface (interface name)
        @returns: True or CX
        """
        dns_name = validate.hostname(dns_name)
        if dns_name != "" and utils.input_boolean(self.collection_mgr._settings.allow_duplicate_hostnames) is False:
            matched = self.collection_mgr.api.find_items("system", {"dns_name": dns_name})
            for x in matched:
                if x.name != self.name:
                    raise CX("DNS name duplicated: %s" % dns_name)

        intf = self.__get_interface(interface)
        intf["dns_name"] = dns_name

    def set_hostname(self, hostname):
        """
        Set hostname.

        @param: str hostname (hostname for system)
        @returns: True or CX
        """
        self.hostname = validate.hostname(hostname)

    def set_ip_address(self, address, interface):
        """
        Set IPv4 address on interface.

        @param: str address (ip address)
        @param: str interface (interface name)
        @returns: True or CX
        """
        address = validate.ipv4_address(address)
        if address != "" and utils.input_boolean(self.collection_mgr._settings.allow_duplicate_ips) is False:
            matched = self.collection_mgr.api.find_items("system", {"ip_address": address})
            for x in matched:
                if x.name != self.name:
                    raise CX("IP address duplicated: %s" % address)

        intf = self.__get_interface(interface)
        intf["ip_address"] = address

    def set_mac_address(self, address, interface):
        """
        Set mac address on interface.

        @param: str address (mac address)
        @param: str interface (interface name)
        @returns: True or CX
        """
        address = validate.mac_address(address)
        if address == "random":
            address = utils.get_random_mac(self.collection_mgr.api)
        if address != "" and utils.input_boolean(self.collection_mgr._settings.allow_duplicate_macs) is False:
            matched = self.collection_mgr.api.find_items("system", {"mac_address": address})
            for x in matched:
                if x.name != self.name:
                    raise CX("MAC address duplicated: %s" % address)

        intf = self.__get_interface(interface)
        intf["mac_address"] = address

    def set_gateway(self, gateway):
        """
        Set a gateway IPv4 address.

        @param: str gateway (ip address)
        @returns: True or CX
        """
        self.gateway = validate.ipv4_address(gateway)

    def set_name_servers(self, data):
        """
        Set the DNS servers.

        @param: str/list data (string or list of nameservers)
        @returns: True or CX
        """
        self.name_servers = validate.name_servers(data)

    def set_name_servers_search(self, data):
        """
        Set the DNS search paths.

        @param: str/list data (string or list of search domains)
        @returns: True or CX
        """
        self.name_servers_search = validate.name_servers_search(data)

    def set_netmask(self, netmask, interface):
        """
        Set the netmask for given interface.

        @param: str netmask (netmask)
        @param: str interface (interface name)
        @returns: True or CX
        """
        intf = self.__get_interface(interface)
        intf["netmask"] = validate.ipv4_netmask(netmask)

    def set_if_gateway(self, gateway, interface):
        """
        Set the per-interface gateway.

        @param: str gateway (ipv4 address for the gateway)
        @param: str interface (interface name)
        @returns: True or CX
        """
        intf = self.__get_interface(interface)
        intf["if_gateway"] = validate.ipv4_address(gateway)

# --

    def set_virt_bridge(self, bridge, interface):
        if bridge == "":
            bridge = self.settings.default_virt_bridge
        intf = self.__get_interface(interface)
        intf["virt_bridge"] = bridge

    def set_interface_type(self, type, interface):
        interface_types = ["bridge", "bridge_slave", "bond", "bond_slave", "bonded_bridge_slave", "bmc", "na", "infiniband", ""]
        if type not in interface_types:
            raise CX(_("interface type value must be one of: %s or blank" % ",".join(interface_types)))
        if type == "na":
            type = ""
        intf = self.__get_interface(interface)
        intf["interface_type"] = type

    def set_interface_master(self, interface_master, interface):
        intf = self.__get_interface(interface)
        intf["interface_master"] = interface_master

    def set_bonding_opts(self, bonding_opts, interface):
        intf = self.__get_interface(interface)
        intf["bonding_opts"] = bonding_opts

    def set_bridge_opts(self, bridge_opts, interface):
        intf = self.__get_interface(interface)
        intf["bridge_opts"] = bridge_opts

    def set_ipv6_autoconfiguration(self, truthiness):
        self.ipv6_autoconfiguration = utils.input_boolean(truthiness)

    def set_ipv6_default_device(self, interface_name):
        if interface_name is None:
            interface_name = ""
        self.ipv6_default_device = interface_name

    def set_ipv6_address(self, address, interface):
        """
        Set IPv6 address on interface.

        @param: str address (ip address)
        @param: str interface (interface name)
        @returns: True or CX
        """
        address = validate.ipv6_address(address)
        if address != "" and utils.input_boolean(self.collection_mgr._settings.allow_duplicate_ips) is False:
            matched = self.collection_mgr.api.find_items("system", {"ipv6_address": address})
            for x in matched:
                if x.name != self.name:
                    raise CX("IP address duplicated: %s" % address)

        intf = self.__get_interface(interface)
        intf["ipv6_address"] = address

    def set_ipv6_prefix(self, prefix, interface):
        """
        Assign a IPv6 prefix
        """
        intf = self.__get_interface(interface)
        intf["ipv6_prefix"] = prefix.strip()

    def set_ipv6_secondaries(self, addresses, interface):
        intf = self.__get_interface(interface)
        data = utils.input_string_or_list(addresses)
        secondaries = []
        for address in data:
            if address == "" or utils.is_ip(address):
                secondaries.append(address)
            else:
                raise CX(_("invalid format for IPv6 IP address (%s)") % address)

        intf["ipv6_secondaries"] = secondaries

    def set_ipv6_default_gateway(self, address, interface):
        intf = self.__get_interface(interface)
        if address == "" or utils.is_ip(address):
            intf["ipv6_default_gateway"] = address.strip()
            return
        raise CX(_("invalid format for IPv6 IP address (%s)") % address)

    def set_ipv6_static_routes(self, routes, interface):
        intf = self.__get_interface(interface)
        data = utils.input_string_or_list(routes)
        intf["ipv6_static_routes"] = data

    def set_ipv6_mtu(self, mtu, interface):
        intf = self.__get_interface(interface)
        intf["ipv6_mtu"] = mtu

    def set_mtu(self, mtu, interface):
        intf = self.__get_interface(interface)
        intf["mtu"] = mtu

    def set_connected_mode(self, truthiness, interface):
        intf = self.__get_interface(interface)
        intf["connected_mode"] = utils.input_boolean(truthiness)

    def set_enable_gpxe(self, enable_gpxe):
        """
        Sets whether or not the system will use gPXE for booting.
        """
        self.enable_gpxe = utils.input_boolean(enable_gpxe)

    def set_profile(self, profile_name):
        """
        Set the system to use a certain named profile. The profile
        must have already been loaded into the Profiles collection.
        """
        old_parent = self.get_parent()
        if profile_name in ["delete", "None", "~", ""] or profile_name is None:
            self.profile = ""
            if isinstance(old_parent, item.Item):
                old_parent.children.pop(self.name, 'pass')
            return

        self.image = ""         # mutual exclusion rule

        p = self.collection_mgr.profiles().find(name=profile_name)
        if p is not None:
            self.profile = profile_name
            self.depth = p.depth + 1            # subprofiles have varying depths.
            if isinstance(old_parent, item.Item):
                old_parent.children.pop(self.name, 'pass')
            new_parent = self.get_parent()
            if isinstance(new_parent, item.Item):
                new_parent.children[self.name] = self
            return
        raise CX(_("invalid profile name: %s") % profile_name)

    def set_image(self, image_name):
        """
        Set the system to use a certain named image.  Works like set_profile
        but cannot be used at the same time.  It's one or the other.
        """
        old_parent = self.get_parent()
        if image_name in ["delete", "None", "~", ""] or image_name is None:
            self.image = ""
            if isinstance(old_parent, item.Item):
                old_parent.children.pop(self.name, 'pass')
            return

        self.profile = ""       # mutual exclusion rule

        img = self.collection_mgr.images().find(name=image_name)

        if img is not None:
            self.image = image_name
            self.depth = img.depth + 1
            if isinstance(old_parent, item.Item):
                old_parent.children.pop(self.name, 'pass')
            new_parent = self.get_parent()
            if isinstance(new_parent, item.Item):
                new_parent.children[self.name] = self
            return
        raise CX(_("invalid image name (%s)") % image_name)

    def set_virt_cpus(self, num):
        return utils.set_virt_cpus(self, num)

    def set_virt_file_size(self, num):
        return utils.set_virt_file_size(self, num)

    def set_virt_disk_driver(self, driver):
        return utils.set_virt_disk_driver(self, driver)

    def set_virt_auto_boot(self, num):
        return utils.set_virt_auto_boot(self, num)

    def set_virt_pxe_boot(self, num):
        return utils.set_virt_pxe_boot(self, num)

    def set_virt_ram(self, num):
        return utils.set_virt_ram(self, num)

    def set_virt_type(self, vtype):
        return utils.set_virt_type(self, vtype)

    def set_virt_path(self, path):
        return utils.set_virt_path(self, path, for_system=True)

    def set_netboot_enabled(self, netboot_enabled):
        """
        If true, allows per-system PXE files to be generated on sync (or add).  If false,
        these files are not generated, thus eliminating the potential for an infinite install
        loop when systems are set to PXE boot first in the boot order.  In general, users
        who are PXE booting first in the boot order won't create system definitions, so this
        feature primarily comes into play for programmatic users of the API, who want to
        initially create a system with netboot enabled and then disable it after the system installs,
        as triggered by some action in automatic installation file's  %post section.
        For this reason, this option is not urfaced in the CLI, output, or documentation (yet).

        Use of this option does not affect the ability to use PXE menus.  If an admin has machines
        set up to PXE only after local boot fails, this option isn't even relevant.
        """
        self.netboot_enabled = utils.input_boolean(netboot_enabled)

    def set_autoinstall(self, autoinstall):
        """
        Set the automatic installation template filepath, this must be a local file.

        @param str local automatic installation template file path
        """

        autoinstall_mgr = autoinstall_manager.AutoInstallationManager(self.collection_mgr)
        self.autoinstall = autoinstall_mgr.validate_autoinstall_template_file_path(autoinstall)

    def set_power_type(self, power_type):
        if power_type is None:
            power_type = ""
        power_manager.validate_power_type(power_type)
        self.power_type = power_type

    def set_power_identity_file(self, power_identity_file):
        if power_identity_file is None:
            power_identity_file = ""
        utils.safe_filter(power_identity_file)
        self.power_identity_file = power_identity_file

    def set_power_options(self, power_options):
        if power_options is None:
            power_options = ""
        utils.safe_filter(power_options)
        self.power_options = power_options

    def set_power_user(self, power_user):
        if power_user is None:
            power_user = ""
        utils.safe_filter(power_user)
        self.power_user = power_user

    def set_power_pass(self, power_pass):
        if power_pass is None:
            power_pass = ""
        utils.safe_filter(power_pass)
        self.power_pass = power_pass

    def set_power_address(self, power_address):
        if power_address is None:
            power_address = ""
        utils.safe_filter(power_address)
        self.power_address = power_address

    def set_power_id(self, power_id):
        if power_id is None:
            power_id = ""
        utils.safe_filter(power_id)
        self.power_id = power_id

    def modify_interface(self, _dict):
        """
        Used by the WUI to modify an interface more-efficiently
        """

        for (key, value) in list(_dict.items()):
            (field, interface) = key.split("-", 1)
            field = field.replace("_", "").replace("-", "")

            if field == "bondingopts":
                self.set_bonding_opts(value, interface)

            if field == "bridgeopts":
                self.set_bridge_opts(value, interface)

            if field == "connected_mode":
                self.set_connected_mode(value, interface)

            if field == "cnames":
                self.set_cnames(value, interface)

            if field == "dhcptag":
                self.set_dhcp_tag(value, interface)

            if field == "dnsname":
                self.set_dns_name(value, interface)

            if field == "ifgateway":
                self.set_if_gateway(value, interface)

            if field == "interfacetype":
                self.set_interface_type(value, interface)

            if field == "interfacemaster":
                self.set_interface_master(value, interface)

            if field == "ipaddress":
                self.set_ip_address(value, interface)

            if field == "ipv6address":
                self.set_ipv6_address(value, interface)

            if field == "ipv6defaultgateway":
                self.set_ipv6_default_gateway(value, interface)

            if field == "ipv6mtu":
                self.set_ipv6_mtu(value, interface)

            if field == "ipv6prefix":
                self.set_ipv6_prefix(value, interface)

            if field == "ipv6secondaries":
                self.set_ipv6_secondaries(value, interface)

            if field == "ipv6staticroutes":
                self.set_ipv6_static_routes(value, interface)

            if field == "macaddress":
                self.set_mac_address(value, interface)

            if field == "management":
                self.set_management(value, interface)

            if field == "mtu":
                self.set_mtu(value, interface)

            if field == "netmask":
                self.set_netmask(value, interface)

            if field == "static":
                self.set_static(value, interface)

            if field == "staticroutes":
                self.set_static_routes(value, interface)

            if field == "virtbridge":
                self.set_virt_bridge(value, interface)

    def set_repos_enabled(self, repos_enabled):
        self.repos_enabled = utils.input_boolean(repos_enabled)

    def set_serial_device(self, device_number):
        return utils.set_serial_device(self, device_number)

    def set_serial_baud_rate(self, baud_rate):
        return utils.set_serial_baud_rate(self, baud_rate)

    def get_config_filename(self, interface, loader=None):
        """
        The configuration file for each system pxe uses is either
        a form of the MAC address of the hex version of the IP.  If none
        of that is available, just use the given name, though the name
        given will be unsuitable for PXE configuration (For this, check
        system.is_management_supported()). This same file is used to store
        system config information in the Apache tree, so it's still relevant.

        :param loader: Bootloader type.
        :type loader: str
        :param interface: Name of the interface.
        :type interface: str
        """

        if loader is None:
            loader = self.boot_loader

        if interface not in self.interfaces:
            return None

        if self.name == "default":
            if loader == "grub":
                return None
            return "default"

        mac = self.get_mac_address(interface)
        ip = self.get_ip_address(interface)
        if mac is not None and mac != "":
            if loader == "grub":
                return mac.lower()
            else:
                return "01-" + "-".join(mac.split(":")).lower()
        elif ip is not None and ip != "":
            return utils.get_host_ip(ip)
        else:
            return self.name

# EOF
 0707010000008C000081A40000000000000000000000015ECE244400001726000000000000000000000000000000000000002700000000cobbler-3.1.2/cobbler/module_loader.py    """
Module loader, adapted for Cobbler usage

Copyright 2006-2009, Red Hat, Inc and Others
Adrian Likins <alikins@redhat.com>
Michael DeHaan <michael.dehaan AT gmail>

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
"""

from future import standard_library
standard_library.install_aliases()

from configparser import ConfigParser

import glob
import os

from cobbler.cexceptions import CX
from cobbler import clogger
from cobbler.utils import _, log_exc

# add cobbler/modules to python path
import cobbler
mod_path = os.path.join(os.path.abspath(os.path.dirname(cobbler.__file__)), 'modules')

MODULE_CACHE = {}
MODULES_BY_CATEGORY = {}


def load_modules(module_path=mod_path, blacklist=None):
    """
    Load the modules from the path handed to the function into Cobbler.

    :param module_path: The path which should be considered as the root module path.
    :param blacklist: Currently an unused parameter.
    :return: Two dictionary's with the dynamically loaded modules.
    """
    logger = clogger.Logger()

    filenames = glob.glob("%s/*.py" % module_path)
    filenames += glob.glob("%s/*.pyc" % module_path)
    filenames += glob.glob("%s/*.pyo" % module_path)
    # Allow recursive modules
    filenames += glob.glob("%s/**/*.py" % module_path)
    filenames += glob.glob("%s/**/*.pyc" % module_path)
    filenames += glob.glob("%s/**/*.pyo" % module_path)

    for fn in filenames:
        basename = fn.replace(mod_path, '')
        modname = ""

        if basename.__contains__("__pycache__") or basename.__contains__("__init__.py"):
            continue

        if basename[0] == "/":
            basename = basename[1:]

        basename = basename.replace("/", ".")

        if basename[-3:] == ".py":
            modname = basename[:-3]
        elif basename[-4:] in [".pyc", ".pyo"]:
            modname = basename[:-4]

        __import_module(mod_path, modname, logger)

    return MODULE_CACHE, MODULES_BY_CATEGORY


def __import_module(module_path, modname, logger):
    """
    Import a module which is not part of the core functionality of Cobbler.

    :param module_path: The path to the module.
    :param modname: The name of the module.
    :type modname: str
    :param logger: The logger to audit the action with.
    """
    try:
        blip = __import__("cobbler.modules.%s" % modname, globals(), locals(), [modname])
        if not hasattr(blip, "register"):
            if not modname.startswith("__init__"):
                errmsg = _("%(module_path)s/%(modname)s is not a proper module")
                print(errmsg % {'module_path': module_path, 'modname': modname})
            return None
        category = blip.register()
        if category:
            MODULE_CACHE[modname] = blip
        if category not in MODULES_BY_CATEGORY:
            MODULES_BY_CATEGORY[category] = {}
        MODULES_BY_CATEGORY[category][modname] = blip
    except Exception:
        logger.info('Exception raised when loading module %s' % modname)
        log_exc(logger)


def get_module_by_name(name):
    """
    Get a module by its name. The category of the module is not needed.

    :param name: The name of the module.
    :return: The module asked by the function parameter.
    """
    return MODULE_CACHE.get(name, None)


def get_module_name(category, field, fallback_module_name=None):
    """
    Get module name from configuration file

    :param category: Field category in configuration file.
    :type category: str
    :param field: Field in configuration file
    :type field: str
    :param fallback_module_name: Default value used if category/field is not found in configuration file
    :type fallback_module_name: str
    :raises CX: if unable to find configuration file
    :returns: module name
    :rtype: str
    """
    cp = ConfigParser()
    cp.read("/etc/cobbler/modules.conf")

    try:
        value = cp.get(category, field)
    except:
        if fallback_module_name is not None:
            value = fallback_module_name
        else:
            raise CX(_("Cannot find config file setting for: %s") % field)
    return value


def get_module_from_file(category, field, fallback_module_name=None):
    """
    Get Python module, based on name defined in configuration file

    :param category: field category in configuration file
    :type category: str
    :param field: field in configuration file
    :type field: str
    :param fallback_module_name: default value used if category/field is not found in configuration file
    :type fallback_module_name: str
    :raises CX: If unable to load Python module
    :returns: A Python module.
    """

    module_name = get_module_name(category, field, fallback_module_name)
    rc = MODULE_CACHE.get(module_name, None)
    if rc is None:
        raise CX(_("Failed to load module for %s/%s") % (category, field))
    return rc


def get_modules_in_category(category):
    """
    Return all modules of a module category.

    :param category: The category.
    :return: A list of all modules of that category. Returns an empty list if the Category does not exist.
    :rtype: list
    """
    if category not in MODULES_BY_CATEGORY:
        return []
    return list(MODULES_BY_CATEGORY[category].values())


if __name__ == "__main__":
    print(load_modules(mod_path))
  0707010000008D000041ED0000000000000000000000075ECE244400000000000000000000000000000000000000000000001E00000000cobbler-3.1.2/cobbler/modules 0707010000008E000081A40000000000000000000000015ECE244400000000000000000000000000000000000000000000002A00000000cobbler-3.1.2/cobbler/modules/__init__.py 0707010000008F000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000002D00000000cobbler-3.1.2/cobbler/modules/authentication  07070100000090000081A40000000000000000000000015ECE244400000000000000000000000000000000000000000000003900000000cobbler-3.1.2/cobbler/modules/authentication/__init__.py  07070100000091000081A40000000000000000000000015ECE24440000104D000000000000000000000000000000000000003B00000000cobbler-3.1.2/cobbler/modules/authentication/configfile.py    """
Authentication module that uses /etc/cobbler/auth.conf
Choice of authentication module is in /etc/cobbler/modules.conf

Copyright 2007-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""

import hashlib
import os

from cobbler.module_loader import get_module_name


def hashfun(text):
    """
    Converts a str object to a hash which was configured in modules.conf of the Cobbler settings.

    :param text: The text to hash.
    :type text: str
    :return: The hash of the text. This should output the same hash when entered the same text.
    """
    hashfunction = get_module_name("authentication", "hash_algorithm", "sha3_512")
    if hashfunction == "sha3_224":
        hashalgorithm = hashlib.sha3_224(text.encode('utf-8'))
    elif hashfunction == "sha3_384":
        hashalgorithm = hashlib.sha3_384(text.encode('utf-8'))
    elif hashfunction == "sha3_256":
        hashalgorithm = hashlib.sha3_256(text.encode('utf-8'))
    elif hashfunction == "sha3_512":
        hashalgorithm = hashlib.sha3_512(text.encode('utf-8'))
    elif hashfunction == "blake2b":
        hashalgorithm = hashlib.blake2b(text.encode('utf-8'))
    elif hashfunction == "blake2s":
        hashalgorithm = hashlib.blake2s(text.encode('utf-8'))
    elif hashfunction == "shake_128":
        hashalgorithm = hashlib.shake_128(text.encode('utf-8'))
    elif hashfunction == "shake_256":
        hashalgorithm = hashlib.shake_256(text.encode('utf-8'))
    else:
        errortext = "The hashfunction (Currently: %s) must be one of the defined in /etc/cobbler/modules.conf!" \
                    % hashfunction
        raise ValueError(errortext)
    return hashalgorithm.hexdigest()


def register():
    """
    The mandatory Cobbler module registration hook.
    """
    return "authn"


def __parse_storage():
    """
    Parse the users.digest file and return all users.

    :return: A list of all users. A user is a sublist which has three elements: username, realm and passwordhash.
    :rtype: list
    """
    if not os.path.exists("/etc/cobbler/users.digest"):
        return []
    with open("/etc/cobbler/users.digest", encoding='utf-8') as fd:
        data = fd.read()
    results = []
    lines = data.split("\n")
    for line in lines:
        try:
            line = line.strip()
            tokens = line.split(":")
            results.append([tokens[0], tokens[1], tokens[2]])
        except:
            pass
    return results


def authenticate(api_handle, username, password):
    """
    Validate a username/password combo.

    Thanks to http://trac.edgewall.org/ticket/845 for supplying the algorithm info.

    :param api_handle: Unused in this implementation.
    :param username: The username to log in with. Must be contained in /etc/cobbler/users.digest
    :type username: str
    :param password: The password to log in with. Must be contained hashed in /etc/cobbler/users.digest
    :type password: str
    :return: A boolean which contains the information if the username/password combination is correct.
    :rtype: bool
    """

    userlist = __parse_storage()
    for (user, realm, passwordhash) in userlist:
        if user == username and realm == "Cobbler":
            calculated_passwordhash = hashfun(password)
            print("Passwordhash: %s" % passwordhash)
            print("Calculated Passwordhash: %s" % calculated_passwordhash)
            if calculated_passwordhash == passwordhash:
                return True
    return False
   07070100000092000081A40000000000000000000000015ECE244400000530000000000000000000000000000000000000003800000000cobbler-3.1.2/cobbler/modules/authentication/denyall.py   """
Authentication module that denies everything.
Used to disable the WebUI by default.

Copyright 2007-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""


def register():
    """
    The mandatory Cobbler module registration hook.
    """
    return "authn"


def authenticate(api_handle, username, password):
    """
    Validate a username/password combo, returning True/False

    Thanks to http://trac.edgewall.org/ticket/845 for supplying
    the algorithm info.
    """

    # debugging only (not safe to enable)
    # api_handle.logger.debug("backend authenticate (%s,%s)" % (username,password))

    return False
07070100000093000081A40000000000000000000000015ECE244400001280000000000000000000000000000000000000003500000000cobbler-3.1.2/cobbler/modules/authentication/ldap.py  """
Authentication module that uses ldap
Settings in /etc/cobbler/authn_ldap.conf
Choice of authentication module is in /etc/cobbler/modules.conf

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
"""


from builtins import str
import traceback

# We'll import this just a bit later to keep it from being a requirement
# import ldap

import cobbler.api as cobbler_api
from cobbler.cexceptions import CX


def register():
    """
    The mandatory Cobbler module registration hook.

    :return: Always "authn"
    :rtype: str
    """

    return "authn"


def authenticate(api_handle, username, password):
    """
    Validate an LDAP bind, returning whether the authentication was successful or not.

    :param api_handle: The api instance to resolve settings.
    :param username: The username to authenticate.
    :param password: The password to authenticate.
    :return: True if the ldap server authentication was a success, otherwise false.
    """

    if not password:
        return False
    import ldap

    server = api_handle.settings().ldap_server
    basedn = api_handle.settings().ldap_base_dn
    port = str(api_handle.settings().ldap_port)
    tls = api_handle.settings().ldap_tls
    anon_bind = api_handle.settings().ldap_anonymous_bind
    prefix = api_handle.settings().ldap_search_prefix

    # Support for LDAP client certificates
    tls_cacertfile = api_handle.settings().ldap_tls_cacertfile
    tls_keyfile = api_handle.settings().ldap_tls_keyfile
    tls_certfile = api_handle.settings().ldap_tls_certfile

    # allow multiple servers split by a space
    if server.find(" "):
        servers = server.split()
    else:
        servers = [server]

    # to get ldap working with Active Directory
    ldap.set_option(ldap.OPT_REFERRALS, 0)
    
    if tls_cacertfile:
        ldap.set_option(ldap.OPT_X_TLS_CACERTFILE, tls_cacertfile)
    if tls_keyfile:
        ldap.set_option(ldap.OPT_X_TLS_KEYFILE, tls_keyfile)
    if tls_certfile:
        ldap.set_option(ldap.OPT_X_TLS_CERTFILE, tls_certfile)

    uri = ""
    for server in servers:
        # form our ldap uri based on connection port
        if port == '389':
            uri += 'ldap://' + server
        elif port == '636':
            uri += 'ldaps://' + server
        else:
            uri += 'ldap://' + "%s:%s" % (server, port)
        uri += ' '

    uri = uri.strip()

    # connect to LDAP host
    dir = ldap.initialize(uri)

    # start_tls if tls is 'on', 'true' or 'yes' and we're not already using old-SSL
    tls = str(tls).lower()
    if port != '636':
        if tls in ["on", "true", "yes", "1"]:
            try:
                dir.start_tls_s()
            except:
                traceback.print_exc()
                return False

    # if we're not allowed to search anonymously, grok the search bind settings and attempt to bind
    anon_bind = str(anon_bind).lower()
    if anon_bind not in ["on", "true", "yes", "1"]:
        searchdn = api_handle.settings().ldap_search_bind_dn
        searchpw = api_handle.settings().ldap_search_passwd

        if searchdn == '' or searchpw == '':
            raise CX("Missing search bind settings")

        try:
            dir.simple_bind_s(searchdn, searchpw)
        except:
            traceback.print_exc()
            return False

    # perform a subtree search in basedn to find the full dn of the user
    # TODO: what if username is a CN?  maybe it goes into the config file as well?
    filter = prefix + username
    result = dir.search_s(basedn, ldap.SCOPE_SUBTREE, filter, [])
    if result:
        for dn, entry in result:
            # username _should_ be unique so we should only have one result ignore entry; we don't need it
            pass
    else:
        return False

    try:
        # attempt to bind as the user
        dir.simple_bind_s(dn, password)
        dir.unbind()
        return True
    except:
        # traceback.print_exc()
        return False
    # catch-all
    return False


if __name__ == "__main__":
    api_handle = cobbler_api.CobblerAPI()
    print((authenticate(api_handle, "guest", "guest")))
07070100000094000081A40000000000000000000000015ECE24440000127D000000000000000000000000000000000000003400000000cobbler-3.1.2/cobbler/modules/authentication/pam.py   """
Authentication module that uses /etc/cobbler/auth.conf
Choice of authentication module is in /etc/cobbler/modules.conf

Copyright 2007-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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

PAM python code based on the pam_python code created by Chris AtLee:
http://atlee.ca/software/pam/

------------------------------------------------
pam_python (c) 2007 Chris AtLee <chris@atlee.ca>
Licensed under the MIT license:
http://www.opensource.org/licenses/mit-license.php

PAM module for python

Provides an authenticate function that will allow the caller to authenticate
a user against the Pluggable Authentication Modules (PAM) on the system.

Implemented using ctypes, so no compilation is necessary.
"""

from builtins import str
from builtins import range
from ctypes import CDLL, POINTER, Structure, CFUNCTYPE, cast, pointer, sizeof
from ctypes import c_void_p, c_uint, c_char_p, c_char, c_int
from ctypes.util import find_library

LIBPAM = CDLL(find_library("pam"))
LIBC = CDLL(find_library("c"))

CALLOC = LIBC.calloc
CALLOC.restype = c_void_p
CALLOC.argtypes = [c_uint, c_uint]

STRDUP = LIBC.strdup
STRDUP.argstypes = [c_char_p]
STRDUP.restype = POINTER(c_char)        # NOT c_char_p !!!!

# Various constants
PAM_PROMPT_ECHO_OFF = 1
PAM_PROMPT_ECHO_ON = 2
PAM_ERROR_MSG = 3
PAM_TEXT_INFO = 4


def register():
    """
    The mandatory Cobbler module registration hook.
    """
    return "authn"


class PamHandle(Structure):
    """wrapper class for pam_handle_t"""
    _fields_ = [("handle", c_void_p)]

    def __init__(self):
        Structure.__init__(self)
        self.handle = 0


class PamMessage(Structure):
    """wrapper class for pam_message structure"""
    _fields_ = [("msg_style", c_int), ("msg", c_char_p)]

    def __repr__(self):
        return "<PamMessage %i '%s'>" % (self.msg_style, self.msg)


class PamResponse(Structure):
    """wrapper class for pam_response structure"""
    _fields_ = [("resp", c_char_p), ("resp_retcode", c_int)]

    def __repr__(self):
        return "<PamResponse %i '%s'>" % (self.resp_retcode, self.resp)


CONV_FUNC = CFUNCTYPE(c_int, c_int, POINTER(POINTER(PamMessage)), POINTER(POINTER(PamResponse)), c_void_p)


class PamConv(Structure):
    """wrapper class for pam_conv structure"""
    _fields_ = [("conv", CONV_FUNC), ("appdata_ptr", c_void_p)]


PAM_START = LIBPAM.pam_start
PAM_START.restype = c_int
PAM_START.argtypes = [c_char_p, c_char_p, POINTER(PamConv), POINTER(PamHandle)]

PAM_AUTHENTICATE = LIBPAM.pam_authenticate
PAM_AUTHENTICATE.restype = c_int
PAM_AUTHENTICATE.argtypes = [PamHandle, c_int]


def authenticate(api_handle, username, password):
    """
    Returns True if the given username and password authenticate for the
    given service.  Returns False otherwise
    """

    @CONV_FUNC
    def my_conv(n_messages, messages, p_response, app_data):
        """Simple conversation function that responds to any
        prompt where the echo is off with the supplied password"""
        # Create an array of n_messages response objects
        addr = CALLOC(n_messages, sizeof(PamResponse))
        p_response[0] = cast(addr, POINTER(PamResponse))
        for i in range(n_messages):
            if messages[i].contents.msg_style == PAM_PROMPT_ECHO_OFF:
                pw_copy = STRDUP(str(password))
                p_response.contents[i].resp = cast(pw_copy, c_char_p)
                p_response.contents[i].resp_retcode = 0
        return 0

    try:
        service = api_handle.settings().authn_pam_service
    except:
        service = 'login'

    api_handle.logger.debug("authn_pam: PAM service is %s" % service)

    handle = PamHandle()
    conv = PamConv(my_conv, 0)
    retval = PAM_START(service, username, pointer(conv), pointer(handle))

    if retval != 0:
        # TODO: This is not an authentication error, something
        # has gone wrong starting up PAM
        api_handle.logger.error("authn_pam: error initializing PAM library")
        return False

    retval = PAM_AUTHENTICATE(handle, 0)
    return retval == 0
   07070100000095000081A40000000000000000000000015ECE244400000490000000000000000000000000000000000000003900000000cobbler-3.1.2/cobbler/modules/authentication/passthru.py  """
Authentication module that defers to Apache and trusts
what Apache trusts.

Copyright 2008-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

This software may be freely redistributed under the terms of the GNU
general public license.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301  USA.
"""

from cobbler import utils


def register():
    """
    The mandatory Cobbler module registration hook.

    :return: Always "authn"
    :rtype: str
    """
    return "authn"


def authenticate(api_handle, username, password):
    """
    Validate a username/password combo. Uses cobbler_auth_helper

    :param api_handle: This parameter is not used currently.
    :param username: This parameter is not used currently.
    :param password: This should be the internal Cobbler secret.
    :return: True if the password is the secret, otherwise false.
    :rtype: bool
    """
    ss = utils.get_shared_secret()
    if password == ss:
        rc = True
    else:
        rc = False
    return rc
07070100000096000081A40000000000000000000000015ECE2444000015B1000000000000000000000000000000000000003A00000000cobbler-3.1.2/cobbler/modules/authentication/spacewalk.py """
Authentication module that uses Spacewalk's auth system.
Any org_admin or kickstart_admin can get in.

Copyright 2007-2008, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""


from future import standard_library
standard_library.install_aliases()
import xmlrpc.client


def register():
    """
    The mandatory Cobbler module registration hook.
    """
    return "authn"


def __looks_like_a_token(password):
    """
    What spacewalk sends us could be an internal token or it could be a password if it's long and lowercase hex, it's
    /likely/ a token, and we should try to treat it as a token first, if not, we should treat it as a password.  All of
    this code is there to avoid extra XMLRPC calls, which are slow.

    :param password: The password which is possibly a token.
    :return: True if it is possibly a token or False otherwise.
    :rtype: bool
    """

    if password.lower() != password:
        # Tokens are always lowercase, this isn't a token.
        return False

    # We can't use binascii.unhexlify here as it's an "odd length string".
    # try:
    #    #data = binascii.unhexlify(password)
    #    return True # looks like a token, but we can't be sure
    # except:
    #    return False # definitely not a token

    return (len(password) > 45)


def authenticate(api_handle, username, password):
    """
    Validate a username/password combo, returning True/False

    This will pass the username and password back to Spacewalk to see if this authentication request is valid.

    See also: https://github.com/uyuni-project/uyuni/blob/bbbbbf537a1928c1922015c70322034a89b1cb9a/java/code/src/com/redhat/rhn/frontend/xmlrpc/auth/AuthHandler.java#L133

    :param api_handle: The api instance to retrieve settings of.
    :param username: The username to authenticate agains spacewalk/uyuni/SUSE Manager
    :param password: The password to authenticate agains spacewalk/uyuni/SUSE Manager
    :return: True if it succeeded, False otherwise.
    :rtype: bool
    """

    if api_handle is not None:
        server = api_handle.settings().redhat_management_server
        user_enabled = api_handle.settings().redhat_management_permissive
    else:
        server = "columbia.devel.redhat.com"
        user_enabled = True

    if server == "xmlrpc.rhn.redhat.com":
        # Emergency fail, don't bother RHN!
        return False

    spacewalk_url = "https://%s/rpc/api" % server
    client = xmlrpc.client.Server(spacewalk_url, verbose=0)

    if __looks_like_a_token(password) or username == 'taskomatic_user':
        # The tokens are lowercase hex, but a password can also be lowercase hex, so we have to try it as both a token
        # and then a password if we are unsure. We do it this way to be faster but also to avoid any login failed stuff
        # in the logs that we don't need to send.

        try:
            valid = client.auth.checkAuthToken(username, password)
        except:
            # If the token is not a token this will raise an exception rather than return an integer.
            valid = 0

        # Problem at this point, 0xdeadbeef is valid as a token but if that fails, it's also a valid password, so we
        # must try auth system #2

        if valid != 1:
            # First API code returns 1 on success the second uses exceptions for login failed.
            # So... token check failed, but maybe the username/password is just a simple username/pass!

            if user_enabled == 0:
                # this feature must be explicitly enabled.
                return False

            session = ""
            try:
                session = client.auth.login(username, password)
            except:
                # FIXME: Should log exceptions that are not excepted as we could detect spacewalk java errors here that
                #        are not login related.
                return False

            # login success by username, role must also match
            roles = client.user.listRoles(session, username)
            if not ("config_admin" in roles or "org_admin" in roles):
                return False

        return True

    else:
        # It's an older version of spacewalk, so just try the username/pass.
        # OR: We know for sure it's not a token because it's not lowercase hex.

        if user_enabled == 0:
            # this feature must be explicitly enabled.
            return False

        session = ""
        try:
            session = client.auth.login(username, password)
        except:
            return False

        # login success by username, role must also match
        roles = client.user.listRoles(session, username)
        if not ("config_admin" in roles or "org_admin" in roles):
            return False

        return True


if __name__ == "__main__":
    print((authenticate(None, "admin", "redhat")))
   07070100000097000081A40000000000000000000000015ECE244400000651000000000000000000000000000000000000003800000000cobbler-3.1.2/cobbler/modules/authentication/testing.py   """
Authentication module that denies everything.
Unsafe demo.  Allows anyone in with testing/testing.

Copyright 2007-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""


def register():
    """
    The mandatory Cobbler module registration hook.

    :return: Always "authn"
    :rtype: str
    """
    return "authn"


def authenticate(api_handle, username, password):
    """
    Validate a username/password combo, returning True/False

    Thanks to http://trac.edgewall.org/ticket/845 for supplying the algorithm info.

    :param api_handle: This parameter is not used currently.
    :param username: The username which should be checked.
    :param password: The password which should be checked.
    :return: True if username is "testing" and password is "testing". Otherwise False.
    :rtype: bool
    """

    if username == "testing" and password == "testing":
        return True
    return False
   07070100000098000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000002C00000000cobbler-3.1.2/cobbler/modules/authorization   07070100000099000081A40000000000000000000000015ECE244400000000000000000000000000000000000000000000003800000000cobbler-3.1.2/cobbler/modules/authorization/__init__.py   0707010000009A000081A40000000000000000000000015ECE244400000619000000000000000000000000000000000000003800000000cobbler-3.1.2/cobbler/modules/authorization/allowall.py   """
Authorization module that allows everything, which is the default for new Cobbler installs.

Copyright 2007-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""


def register():
    """
    The mandatory Cobbler module registration hook.

    :return: Always "authz"
    :rtype: str
    """
    return "authz"


def authorize(api_handle, user, resource, arg1=None, arg2=None):
    """
    Validate a user against a resource.
    NOTE: acls are not enforced as there is no group support in this module

    :param api_handle: This parameter is not used currently.
    :param user: This parameter is not used currently.
    :param resource: This parameter is not used currently.
    :param arg1: This parameter is not used currently.
    :param arg2: This parameter is not used currently.
    :return: Always True
    :rtype: bool
    """
    return True
   0707010000009B000081A40000000000000000000000015ECE24440000082B000000000000000000000000000000000000003A00000000cobbler-3.1.2/cobbler/modules/authorization/configfile.py """
Authorization module that allow users listed in
/etc/cobbler/users.conf to be permitted to access resources.
For instance, when using authz_ldap, you want to use authn_configfile,
not authz_allowall, which will most likely NOT do what you want.

This software may be freely redistributed under the terms of the GNU
general public license.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301  USA.
"""


from future import standard_library
standard_library.install_aliases()
from builtins import str
from configparser import SafeConfigParser

import os

CONFIG_FILE = '/etc/cobbler/users.conf'


def register():
    """
    The mandatory Cobbler module registration hook.

    :return: Always "authz".
    :rtype: str
    """
    return "authz"


def __parse_config():
    """
    Parse the the users.conf file.

    :return: The data of the config file.
    :rtype: dict
    """
    if not os.path.exists(CONFIG_FILE):
        return []
    config = SafeConfigParser()
    config.read(CONFIG_FILE)
    alldata = {}
    groups = config.sections()
    for g in groups:
        alldata[str(g)] = {}
        opts = config.options(g)
        for o in opts:
            alldata[g][o] = 1
    return alldata


def authorize(api_handle, user, resource, arg1=None, arg2=None):
    """
    Validate a user against a resource. All users in the file are permitted by this module.

    :param api_handle: This parameter is not used currently.
    :param user: The user to authorize.
    :param resource: This parameter is not used currently.
    :param arg1: This parameter is not used currently.
    :param arg2: This parameter is not used currently.
    :return: "0" if no authorized, "1" if authorized.
    """
    # FIXME: this must be modified to use the new ACL engine

    data = __parse_config()
    for g in data:
        if user.lower() in data[g]:
            return 1
    return 0


if __name__ == "__main__":
    print((__parse_config()))
 0707010000009C000081A40000000000000000000000015ECE244400002398000000000000000000000000000000000000003900000000cobbler-3.1.2/cobbler/modules/authorization/ownership.py  """
Authorization module that allow users listed in
/etc/cobbler/users.conf to be permitted to access resources, with
the further restriction that Cobbler objects can be edited to only
allow certain users/groups to access those specific objects.

Copyright 2008-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""


from future import standard_library
standard_library.install_aliases()
from builtins import str
from configparser import ConfigParser

import os

from cobbler.cexceptions import CX
from cobbler.utils import _


def register():
    """
    The mandatory Cobbler module registration hook.

    :return: Always "authz"
    :rtype: str
    """
    return "authz"


def __parse_config():
    """
    Parse the "users.conf" of Cobbler and return all data in a dictionary.

    :return: The data seperated by sections. Each section has a subdictionary with the key-value pairs.
    :rtype: dict
    """
    etcfile = '/etc/cobbler/users.conf'
    if not os.path.exists(etcfile):
        raise CX(_("/etc/cobbler/users.conf does not exist"))
    # Make users case sensitive to handle kerberos
    config.optionxform = str
    config = ConfigParser()
    config.read(etcfile)
    alldata = {}
    sections = config.sections()
    for g in sections:
        alldata[str(g)] = {}
        opts = config.options(g)
        for o in opts:
            alldata[g][o] = 1
    return alldata


def __authorize_autoinst(api_handle, groups, user, autoinst):
    """
    The authorization rules for automatic installation file editing are a bit of a special case. Non-admin users can
    edit a automatic installation file only if all objects that depend on that automatic installation file are editable
    by the user in question.

    Example:
      if Pinky owns ProfileA
      and the Brain owns ProfileB
      and both profiles use the same automatic installation template
      and neither Pinky nor the Brain is an admin
      neither is allowed to edit the automatic installation template
      because they would make unwanted changes to each other

    In the above scenario the UI will explain the problem and ask that the user asks the admin to resolve it if
    required.
    NOTE: this function is only called by authorize so admin users are cleared before this function is called.

    :param api_handle: The api to resolve required information.
    :param groups: The groups a user is in.
    :param user: The user which is asking for access.
    :param autoinst: The automatic installation in question.
    :return: ``1`` if the user is allowed and otherwise ``0``.
    """

    lst = api_handle.find_profile(autoinst=autoinst, return_list=True)
    lst.extend(api_handle.find_system(autoinst=autoinst, return_list=True))
    for obj in lst:
        if not __is_user_allowed(obj, groups, user, "write_autoinst", autoinst, None):
            return 0
    return 1


def __authorize_snippet(api_handle, groups, user, autoinst):
    """
    Only allow admins to edit snippets -- since we don't have detection to see where each snippet is in use.

    :param api_handle: Unused parameter.
    :param groups: The group which is asking for access.
    :param user: Unused parameter.
    :param autoinst: Unused parameter.
    :return: ``True`` if the group is allowed, otherwise ``False``.
    """

    for group in groups:
        if group not in ["admins", "admin"]:
            return False
    return True


def __is_user_allowed(obj, groups, user, resource, arg1, arg2):
    """
    Check if a user is allowed to access the resource in question.

    :param obj: The object which is in question.
    :param groups: The groups a user is belonging to.
    :param user: The user which is demanding access to the ``obj``.
    :param resource: Unused parameter.
    :param arg1: Unused parameter.
    :param arg2: Unused parameter.
    :return: ``True`` if user is allowed, otherwise ``0``.
    """

    if user == "<DIRECT>":
        # system user, logged in via web.ss
        return True
    for group in groups:
        if group in ["admins", "admin"]:
            return True
    if obj.owners == []:
        return True
    for allowed in obj.owners:
        if user == allowed:
            # user match
            return True
        # else look for a group match
    for group in groups:
        if group == allowed:
            return True
    return 0


def authorize(api_handle, user, resource, arg1=None, arg2=None):
    """
    Validate a user against a resource. All users in the file are permitted by this module.

    :param api_handle: The api to resolve required information.
    :param user: The user to authorize to the resource.
    :param resource: The resource the user is asking for access. This is something abstract like a remove operation.
    :param arg1: This is normally the name of the specific object in question.
    :param arg2: This parameter is pointless currently. Reserved for future code.
    :return: ``True`` or ``1`` if okay, otherwise ``False``.
    """
    if user == "<DIRECT>":
        # CLI should always be permitted
        return True

    # Everybody can get read-only access to everything if they pass authorization, they don't have to be in users.conf
    if resource is not None:
        # FIXME: /cobbler/web should not be subject to user check in any case
        for x in ["get", "read", "/cobbler/web"]:
            if resource.startswith(x):
                return 1        # read operation is always ok.

    user_groups = __parse_config()

    # classify the type of operation
    modify_operation = False
    for criteria in ["save", "copy", "rename", "remove", "modify", "edit", "xapi", "background"]:
        if resource.find(criteria) != -1:
            modify_operation = True

    # FIXME: is everyone allowed to copy?  I think so.
    # FIXME: deal with the problem of deleted parents and promotion

    found_user = False
    found_groups = []
    grouplist = list(user_groups.keys())
    for g in grouplist:
        for x in user_groups[g]:
            if x == user:
                found_groups.append(g)
                found_user = True
                # if user is in the admin group, always authorize
                # regardless of the ownership of the object.
                if g == "admins" or g == "admin":
                    return True

    if not found_user:
        # if the user isn't anywhere in the file, reject regardless
        # they can still use read-only XMLRPC
        return 0
    if not modify_operation:
        # sufficient to allow access for non save/remove ops to all
        # users for now, may want to refine later.
        return True

    # Now we have a modify_operation op, so we must check ownership of the object. Remove ops pass in arg1 as a string
    # name, saves pass in actual objects, so we must treat them differently. Automatic installaton files are even more
    # special so we call those out to another function, rather than going through the rest of the code here.

    if resource.find("write_autoinstall_template") != -1:
        return __authorize_autoinst(api_handle, found_groups, user, arg1)
    elif resource.find("read_autoinstall_template") != -1:
        return True

    # The API for editing snippets also needs to do something similar. As with automatic installation files, though
    # since they are more widely used it's more restrictive.

    if resource.find("write_autoinstall_snippet") != -1:
        return __authorize_snippet(api_handle, found_groups, user, arg1)
    elif resource.find("read_autoinstall_snipppet") != -1:
        return True

    obj = None
    if resource.find("remove") != -1:
        if resource == "remove_distro":
            obj = api_handle.find_distro(arg1)
        elif resource == "remove_profile":
            obj = api_handle.find_profile(arg1)
        elif resource == "remove_system":
            obj = api_handle.find_system(arg1)
        elif resource == "remove_repo":
            obj = api_handle.find_repo(arg1)
        elif resource == "remove_image":
            obj = api_handle.find_image(arg1)
    elif resource.find("save") != -1 or resource.find("modify") != -1:
        obj = arg1

    # if the object has no ownership data, allow access regardless
    if obj is None or obj.owners is None or obj.owners == []:
        return True

    return __is_user_allowed(obj, found_groups, user, resource, arg1, arg2)
0707010000009D000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000002B00000000cobbler-3.1.2/cobbler/modules/installation    0707010000009E000081A40000000000000000000000015ECE244400000000000000000000000000000000000000000000003700000000cobbler-3.1.2/cobbler/modules/installation/__init__.py    0707010000009F000081A40000000000000000000000015ECE2444000006C6000000000000000000000000000000000000003700000000cobbler-3.1.2/cobbler/modules/installation/post_log.py    """
(C) 2008-2009, Red Hat Inc.
Michael DeHaan <michael.dehaan AT gmail>

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
"""


import time


def register():
    """
    The mandatory Cobbler module registration hook.
    """
    # this pure python trigger acts as if it were a legacy shell-trigger, but is much faster.
    # the return of this method indicates the trigger type
    return "/var/lib/cobbler/triggers/install/post/*"


def run(api, args, logger):
    """

    :param api: This parameter is unused currently.
    :param args: An array of three elements. Type (system/profile), name and ip. If no ip is present use a ``?``.
    :param logger: This parameter is unused currently.
    :return: Always 0
    """
    # FIXME: make everything use the logger, no prints, use util.subprocess_call, etc

    objtype = args[0]   # "system" or "profile"
    name = args[1]      # name of system or profile
    ip = args[2]        # ip or "?"

    fd = open("/var/log/cobbler/install.log", "a+")
    fd.write("%s\t%s\t%s\tstop\t%s\n" % (objtype, name, ip, time.time()))
    fd.close()

    return 0
  070701000000A0000081A40000000000000000000000015ECE2444000005F4000000000000000000000000000000000000003900000000cobbler-3.1.2/cobbler/modules/installation/post_power.py  # (c) 2010
# Bill Peck <bpeck@redhat.com>
#
# License: GPLv2+

# Post install trigger for Cobbler to power cycle the guest if needed

from threading import Thread
import time


class reboot(Thread):
    def __init__(self, api, target):
        Thread.__init__(self)
        self.api = api
        self.target = target

    def run(self):
        time.sleep(30)
        self.api.reboot(self.target)


def register():
    """
    The mandatory Cobbler module registration hook.
    """
    # this pure python trigger acts as if it were a legacy shell-trigger, but is much faster.
    # the return of this method indicates the trigger type
    return "/var/lib/cobbler/triggers/install/post/*"


def run(api, args, logger):
    """
    Obligatory trigger hook.

    :param api: The api to resolve information with.
    :param args: This is an array containing two objects.
                 0: String with the content "target" or "profile".
                 1: The name of target or profile
    :param logger: Unused parameter for this hook.
    :return: ``0`` on success.
    """
    # FIXME: make everything use the logger

    objtype = args[0]
    name = args[1]
    # boot_ip = args[2] # ip or "?"

    if objtype == "system":
        target = api.find_system(name)
    else:
        return 0

    if target and 'postreboot' in target.autoinstall_meta:
        # Run this in a thread so the system has a chance to finish and umount the filesystem
        current = reboot(api, target)
        current.start()

    return 0
070701000000A1000081A40000000000000000000000015ECE244400000820000000000000000000000000000000000000003A00000000cobbler-3.1.2/cobbler/modules/installation/post_puppet.py """
This module signs newly installed client puppet certificates if the
puppet master server is running on the same machine as the Cobbler
server.

Based on:
http://www.ithiriel.com/content/2010/03/29/writing-install-triggers-cobbler
"""
from builtins import str
import re
import cobbler.utils as utils


def register():
    """
    The mandatory Cobbler module registration hook.
    """
    # this pure python trigger acts as if it were a legacy shell-trigger, but is much faster.
    # the return of this method indicates the trigger type
    return "/var/lib/cobbler/triggers/install/post/*"


def run(api, args, logger):
    """
    The obligatory Cobbler modules hook.

    :param api: The api to resolve all information with.
    :param args: This is an array with two items. The first may be ``system`` or ``profile`` and the second is the name
                 of this system or profile.
    :param logger: The logger to audit all actions with.
    :return: ``0`` or nothing.
    """
    objtype = args[0]
    name = args[1]
    # ip = args[2]          # ip or "?"

    if objtype != "system":
        return 0

    settings = api.settings()

    if not str(settings.puppet_auto_setup).lower() in ["1", "yes", "y", "true"]:
        return 0

    if not str(settings.sign_puppet_certs_automatically).lower() in ["1", "yes", "y", "true"]:
        return 0

    system = api.find_system(name)
    system = utils.blender(api, False, system)
    hostname = system["hostname"]
    if not re.match(r'[\w-]+\..+', hostname):
        search_domains = system['name_servers_search']
        if search_domains:
            hostname += '.' + search_domains[0]
    puppetca_path = settings.puppetca_path
    cmd = [puppetca_path, 'cert', 'sign', hostname]

    rc = 0

    try:
        rc = utils.subprocess_call(logger, cmd, shell=False)
    except:
        if logger is not None:
            logger.warning("failed to execute %s" % puppetca_path)

    if rc != 0:
        if logger is not None:
            logger.warning("signing of puppet cert for %s failed" % name)

    return 0
070701000000A2000081A40000000000000000000000015ECE244400000C4E000000000000000000000000000000000000003A00000000cobbler-3.1.2/cobbler/modules/installation/post_report.py # (c) 2008-2009
# Jeff Schroeder <jeffschroeder@computer.org>
# Michael DeHaan <michael.dehaan AT gmail>
#
# License: GPLv2+

# Post install trigger for Cobbler to send out a pretty email report that contains target information.

from builtins import str
import smtplib
from cobbler.cexceptions import CX
import cobbler.templar as templar
import cobbler.utils as utils


def register():
    """
    The mandatory Cobbler module registration hook.

    :return: Always ``/var/lib/cobbler/triggers/install/post/*``.
    """
    # this pure python trigger acts as if it were a legacy shell-trigger, but is much faster.
    # the return of this method indicates the trigger type
    return "/var/lib/cobbler/triggers/install/post/*"


def run(api, args, logger):
    """
    This is the mandatory Cobbler module run trigger hook.

    :param api: The api to resolve information with.
    :param args: This is an array with three elements.
                 0: "target" or "profile"
                 1: name of target or profile
                 2: ip or "?"
    :param logger: In this module not used.
    :return: ``0`` or ``1``.
    """
    # FIXME: make everything use the logger

    settings = api.settings()

    # go no further if this feature is turned off
    if not str(settings.build_reporting_enabled).lower() in ["1", "yes", "y", "true"]:
        return 0

    objtype = args[0]
    name = args[1]
    boot_ip = args[2]

    if objtype == "system":
        target = api.find_system(name)
    else:
        target = api.find_profile(name)

    # collapse the object down to a rendered datastructure
    target = utils.blender(api, False, target)

    if target == {}:
        raise CX("failure looking up target")

    to_addr = settings.build_reporting_email
    if to_addr == "":
        return 0

    # add the ability to specify an MTA for servers that don't run their own
    smtp_server = settings.build_reporting_smtp_server
    if smtp_server == "":
        smtp_server = "localhost"

    # use a custom from address or fall back to a reasonable default
    from_addr = settings.build_reporting_sender
    if from_addr == "":
        from_addr = "cobbler@%s" % settings.server

    subject = settings.build_reporting_subject
    if subject == "":
        subject = '[Cobbler] install complete '

    to_addr = ",".join(to_addr)
    metadata = {
        "from_addr": from_addr,
        "to_addr": to_addr,
        "subject": subject,
        "boot_ip": boot_ip
    }
    metadata.update(target)

    input_template = open("/etc/cobbler/reporting/build_report_email.template")
    input_data = input_template.read()
    input_template.close()

    message = templar.Templar(api._config).render(input_data, metadata, None)

    sendmail = True
    for prefix in settings.build_reporting_ignorelist:
        if prefix != '' and name.lower().startswith(prefix):
            sendmail = False

    if sendmail:
        # Send the mail
        # FIXME: on error, return non-zero
        server_handle = smtplib.SMTP(smtp_server)
        server_handle.sendmail(from_addr, to_addr.split(','), message)
        server_handle.quit()

    return 0
  070701000000A3000081A40000000000000000000000015ECE2444000008E3000000000000000000000000000000000000004400000000cobbler-3.1.2/cobbler/modules/installation/pre_clear_anamon_logs.py   """
(C) 2008-2009, Red Hat Inc.
James Laska <jlaska@redhat.com>
Bill Peck <bpeck@redhat.com>

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 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
"""

from builtins import str
import glob
import os

from cobbler.cexceptions import CX


def register():
    """
        This pure python trigger acts as if it were a legacy shell-trigger, but is much faster. The return of this method
        indicates the trigger type.

        :return: Always: "/var/lib/cobbler/triggers/install/pre/\*"
        :rtype: str
        """
    return "/var/lib/cobbler/triggers/install/pre/*"


def run(api, args, logger):
    """
    The list of args should have one element:
        - 1: the name of the system or profile

    :param api: The api to resolve metadata with.
    :param args: This should be a list as described above.
    :param logger: This parameter is unused currently.
    :return: "0" on success.
    """

    # FIXME: use the logger

    if len(args) < 3:
        raise CX("invalid invocation")

    name = args[1]

    settings = api.settings()
    anamon_enabled = str(settings.anamon_enabled)

    # Remove any files matched with the given glob pattern
    def unlink_files(globex):
        for f in glob.glob(globex):
            if os.path.isfile(f):
                try:
                    os.unlink(f)
                except OSError:
                    pass

    if str(anamon_enabled) in ["true", "1", "y", "yes"]:
        dirname = "/var/log/cobbler/anamon/%s" % name
        if os.path.isdir(dirname):
            unlink_files(os.path.join(dirname, "*"))

    # TODO - log somewhere that we cleared a systems anamon logs
    return 0
 070701000000A4000081A40000000000000000000000015ECE244400000428000000000000000000000000000000000000003600000000cobbler-3.1.2/cobbler/modules/installation/pre_log.py import time


def register():
    """
    This pure python trigger acts as if it were a legacy shell-trigger, but is much faster. The return of this method
    indicates the trigger type.

    :return: Always: "/var/lib/cobbler/triggers/install/pre/\*"
    :rtype: str
    """
    return "/var/lib/cobbler/triggers/install/pre/*"


def run(api, args, logger):
    """
    The method runs the trigger, meaning this logs that an installation has started.

    The list of args should have three elements:
        - 0: system or profile
        - 1: the name of the system or profile
        - 2: the ip or a "?"

    :param api: This parameter is currently unused.
    :param args: Already described above.
    :type args: list
    :param logger: This parameter is currently unused.
    :return: A "0" on success.
    """
    objtype = args[0]
    name = args[1]
    ip = args[2]

    # FIXME: use the logger

    fd = open("/var/log/cobbler/install.log", "a+")
    fd.write("%s\t%s\t%s\tstart\t%s\n" % (objtype, name, ip, time.time()))
    fd.close()

    return 0
070701000000A5000081A40000000000000000000000015ECE244400000963000000000000000000000000000000000000003900000000cobbler-3.1.2/cobbler/modules/installation/pre_puppet.py  """
This module removes puppet certs from the puppet master prior to
reinstalling a machine if the puppet master is running on the Cobbler
server.

Based on:
http://www.ithiriel.com/content/2010/03/29/writing-install-triggers-cobbler
"""
from builtins import str
import re

import cobbler.utils as utils


def register():
    """
    This pure python trigger acts as if it were a legacy shell-trigger, but is much faster. The return of this method
    indicates the trigger type.

    :return: Always: "/var/lib/cobbler/triggers/install/pre/\*"
    :rtype: str
    """

    return "/var/lib/cobbler/triggers/install/pre/*"


def run(api, args, logger):
    """
    This method runs the trigger, meaning in this case that old puppet certs are automatically removed via puppetca.

    The list of args should have two elements:
        - 0: system or profile
        - 1: the name of the system or profile

    :param api: The api to resolve external information with.
    :param args: Already described above.
    :param logger: The logger to audit the action with.
    :return: "0" on success. If unsuccessful this raises an exception.
    """
    objtype = args[0]
    name = args[1]

    if objtype != "system":
        return 0

    settings = api.settings()

    if not str(settings.puppet_auto_setup).lower() in ["1", "yes", "y", "true"]:
        return 0

    if not str(settings.remove_old_puppet_certs_automatically).lower() in ["1", "yes", "y", "true"]:
        return 0

    system = api.find_system(name)
    system = utils.blender(api, False, system)
    hostname = system["hostname"]
    if not re.match(r'[\w-]+\..+', hostname):
        search_domains = system['name_servers_search']
        if search_domains:
            hostname += '.' + search_domains[0]
    if not re.match(r'[\w-]+\..+', hostname):
        default_search_domains = system['default_name_servers_search']
        if default_search_domains:
            hostname += '.' + default_search_domains[0]
    puppetca_path = settings.puppetca_path
    cmd = [puppetca_path, 'cert', 'clean', hostname]

    rc = 0

    try:
        rc = utils.subprocess_call(logger, cmd, shell=False)
    except:
        if logger is not None:
            logger.warning("failed to execute %s" % puppetca_path)

    if rc != 0:
        if logger is not None:
            logger.warning("puppet cert removal for %s failed" % name)

    return 0
 070701000000A6000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000002700000000cobbler-3.1.2/cobbler/modules/managers    070701000000A7000081A40000000000000000000000015ECE244400000000000000000000000000000000000000000000003300000000cobbler-3.1.2/cobbler/modules/managers/__init__.py    070701000000A8000081A40000000000000000000000015ECE244400005E1A000000000000000000000000000000000000002F00000000cobbler-3.1.2/cobbler/modules/managers/bind.py    """
This is some of the code behind 'cobbler sync'.

Copyright 2006-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>
John Eckersberg <jeckersb@redhat.com>

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 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
"""

import re
import socket
import time
from builtins import object
from builtins import range
from builtins import str

import cobbler.clogger as clogger
import cobbler.templar as templar
import cobbler.utils as utils
from cobbler.cexceptions import CX
from cobbler.utils import _


def register():
    """
    The mandatory Cobbler module registration hook.
    """
    return "manage"


class BindManager(object):

    def what(self):
        """
        Identifies what this class is managing.

        :return: Always will return ``bind``.
        """
        return "bind"

    def __init__(self, collection_mgr, logger):
        """
        Constructor to create a default BindManager object.

        :param collection_mgr: The collection manager to resolve all information with.
        :param logger: This is used to audit all actions with.
        """
        self.logger = logger
        if self.logger is None:
            self.logger = clogger.Logger()

        self.collection_mgr = collection_mgr
        self.api = collection_mgr.api
        self.distros = collection_mgr.distros()
        self.profiles = collection_mgr.profiles()
        self.systems = collection_mgr.systems()
        self.settings = collection_mgr.settings()
        self.repos = collection_mgr.repos()
        self.templar = templar.Templar(collection_mgr)
        self.settings_file = utils.namedconf_location(self.api)
        self.zonefile_base = utils.zonefile_base(self.api)

    def regen_hosts(self):
        """
        Not used.
        """
        pass

    def __expand_IPv6(self, address):
        """
        Expands an IPv6 address to long format i.e. ``xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx``

        This function was created by Chris Miller, approved for GLP use, taken verbatim from:
        http://forrst.com/posts/Python_Expand_Abbreviated_IPv6_Addresses-1kQ

        :param address: Shortened IPv6 address.
        :return: The full IPv6 address.
        """
        fullAddress = ""            # All groups
        expandedAddress = ""        # Each group padded with leading zeroes
        validGroupCount = 8
        validGroupSize = 4
        if "::" not in address:     # All groups are already present
            fullAddress = address
        else:                       # Consecutive groups of zeroes have been collapsed with "::"
            sides = address.split("::")
            groupsPresent = 0
            for side in sides:
                if len(side) > 0:
                    groupsPresent += len(side.split(":"))
            if len(sides[0]) > 0:
                fullAddress += sides[0] + ":"
            for i in range(0, validGroupCount - groupsPresent):
                fullAddress += "0000:"
            if len(sides[1]) > 0:
                fullAddress += sides[1]
            if fullAddress[-1] == ":":
                fullAddress = fullAddress[:-1]
        groups = fullAddress.split(":")
        for group in groups:
            while (len(group) < validGroupSize):
                group = "0" + group
            expandedAddress += group + ":"
        if expandedAddress[-1] == ":":
            expandedAddress = expandedAddress[:-1]
        return expandedAddress

    def __forward_zones(self):
        """
        Returns a map of zones and the records that belong in them
        """
        zones = {}
        forward_zones = self.settings.manage_forward_zones
        if not isinstance(forward_zones, list):
            # Gracefully handle when user inputs only a single zone as a string instead of a list with only a single
            # item
            forward_zones = [forward_zones]

        for zone in forward_zones:
            zones[zone] = {}

        for system in self.systems:
            for (name, interface) in list(system.interfaces.items()):
                host = interface["dns_name"]
                ip = interface["ip_address"]
                ipv6 = interface["ipv6_address"]
                ipv6_sec_addrs = interface["ipv6_secondaries"]
                if not system.is_management_supported(cidr_ok=False):
                    continue
                if not host:
                    # gotsta have some dns_name and ip or else!
                    continue
                if host.find(".") == -1:
                    continue

                # Match the longest zone! E.g. if you have a host a.b.c.d.e
                # if manage_forward_zones has:
                # - c.d.e
                # - b.c.d.e
                # then a.b.c.d.e should go in b.c.d.e
                best_match = ''
                for zone in list(zones.keys()):
                    if re.search(r'\.%s$' % zone, host) and len(zone) > len(best_match):
                        best_match = zone

                # no match
                if best_match == '':
                    continue

                # strip the zone off the dns_name
                host = re.sub(r'\.%s$' % best_match, '', host)

                # if we are to manage ipmi hosts, add that too
                if (self.settings.bind_manage_ipmi):
                    if (system.power_address != ""):
                        power_address_is_ip = False
                        # see if the power address is an IP
                        try:
                            socket.inet_aton(system.power_address)
                            power_address_is_ip = True
                        except socket.error:
                            power_address_is_ip = False

                        # if the power address is an IP, then add it to the DNS with the host suffix of "-ipmi"
                        # TODO: Perhpas the suffix can be configurable through settings?
                        if (power_address_is_ip):
                            ipmi_host = host + "-ipmi"
                            ipmi_ips = []
                            ipmi_ips.append(system.power_address)
                            try:
                                zones[best_match][ipmi_host] = ipmi_ips + zones[best_match][ipmi_host]
                            except KeyError:
                                zones[best_match][ipmi_host] = ipmi_ips

                # Create a list of IP addresses for this host
                ips = []
                if ip:
                    ips.append(ip)

                if ipv6:
                    ips.append(ipv6)

                if ipv6_sec_addrs:
                    ips += ipv6_sec_addrs

                if ips:
                    try:
                        zones[best_match][host] = ips + zones[best_match][host]
                    except KeyError:
                        zones[best_match][host] = ips

        return zones

    def __reverse_zones(self):
        """
        Returns a map of zones and the records that belong in them

        :return: A dict with all zones.
        """
        zones = {}
        reverse_zones = self.settings.manage_reverse_zones
        if not isinstance(reverse_zones, list):
            # Gracefully handle when user inputs only a single zone as a string instead of a list with only a single
            # item
            reverse_zones = [reverse_zones]

        for zone in reverse_zones:
            # expand and IPv6 zones
            if ":" in zone:
                zone = (self.__expand_IPv6(zone + '::1'))[:19]
            zones[zone] = {}

        for system in self.systems:
            for (name, interface) in list(system.interfaces.items()):
                host = interface["dns_name"]
                ip = interface["ip_address"]
                ipv6 = interface["ipv6_address"]
                ipv6_sec_addrs = interface["ipv6_secondaries"]
                if not system.is_management_supported(cidr_ok=False):
                    continue
                if not host or ((not ip) and (not ipv6)):
                    # gotsta have some dns_name and ip or else!
                    continue

                if ip:
                    # Match the longest zone! E.g. if you have an ip 1.2.3.4
                    # if manage_reverse_zones has:
                    # - 1.2
                    # - 1.2.3
                    # then 1.2.3.4 should go in 1.2.3
                    best_match = ''
                    for zone in list(zones.keys()):
                        if re.search(r'^%s\.' % zone, ip) and len(zone) > len(best_match):
                            best_match = zone

                    if best_match != '':
                        # strip the zone off the front of the ip reverse the rest of the octets append the remainder
                        # + dns_name
                        ip = ip.replace(best_match, '', 1)
                        if ip[0] == '.':        # strip leading '.' if it's there
                            ip = ip[1:]
                        tokens = ip.split('.')
                        tokens.reverse()
                        ip = '.'.join(tokens)
                        zones[best_match][ip] = host + '.'

                if ipv6 or ipv6_sec_addrs:
                    ip6s = []
                    if ipv6:
                        ip6s.append(ipv6)
                    for each_ipv6 in ip6s + ipv6_sec_addrs:
                        # convert the IPv6 address to long format
                        long_ipv6 = self.__expand_IPv6(each_ipv6)
                        # All IPv6 zones are forced to have the format xxxx:xxxx:xxxx:xxxx
                        zone = long_ipv6[:19]
                        ipv6_host_part = long_ipv6[20:]
                        tokens = list(re.sub(':', '', ipv6_host_part))
                        tokens.reverse()
                        ip = '.'.join(tokens)
                        zones[zone][ip] = host + '.'

        return zones

    def __write_named_conf(self):
        """
        Write out the named.conf main config file from the template.
        """
        settings_file = self.settings.bind_chroot_path + self.settings_file
        template_file = "/etc/cobbler/named.template"
        # forward_zones = self.settings.manage_forward_zones
        # reverse_zones = self.settings.manage_reverse_zones

        metadata = {'forward_zones': list(self.__forward_zones().keys()),
                    'reverse_zones': [],
                    'zone_include': ''}

        for zone in metadata['forward_zones']:
            txt = """
zone "%(zone)s." {
    type master;
    file "%(zone)s";
};
""" % {'zone': zone}
            metadata['zone_include'] = metadata['zone_include'] + txt

        for zone in list(self.__reverse_zones().keys()):
            # IPv6 zones are : delimited
            if ":" in zone:
                # if IPv6, assume xxxx:xxxx:xxxx:xxxx
                #                 0123456789012345678
                long_zone = (self.__expand_IPv6(zone + '::1'))[:19]
                tokens = list(re.sub(':', '', long_zone))
                tokens.reverse()
                arpa = '.'.join(tokens) + '.ip6.arpa'
            else:
                # IPv4 address split by '.'
                tokens = zone.split('.')
                tokens.reverse()
                arpa = '.'.join(tokens) + '.in-addr.arpa'
                #
            metadata['reverse_zones'].append((zone, arpa))
            txt = """
zone "%(arpa)s." {
    type master;
    file "%(zone)s";
};
""" % {'arpa': arpa, 'zone': zone}
            metadata['zone_include'] = metadata['zone_include'] + txt

        try:
            f2 = open(template_file, "r")
        except:
            raise CX(_("error reading template from file: %s") % template_file)
        template_data = ""
        template_data = f2.read()
        f2.close()

        if self.logger is not None:
            self.logger.info("generating %s" % settings_file)
        self.templar.render(template_data, metadata, settings_file, None)

    def __write_secondary_conf(self):
        """
        Write out the secondary.conf secondary config file from the template.
        """
        settings_file = self.settings.bind_chroot_path + '/etc/secondary.conf'
        template_file = "/etc/cobbler/secondary.template"
        # forward_zones = self.settings.manage_forward_zones
        # reverse_zones = self.settings.manage_reverse_zones

        metadata = {'forward_zones': list(self.__forward_zones().keys()),
                    'reverse_zones': [],
                    'zone_include': ''}

        for zone in metadata['forward_zones']:
            txt = """
zone "%(zone)s." {
    type slave;
    masters {
        %(master)s;
    };
    file "data/%(zone)s";
};
""" % {'zone': zone, 'master': self.settings.bind_master}
            metadata['zone_include'] = metadata['zone_include'] + txt

        for zone in list(self.__reverse_zones().keys()):
            # IPv6 zones are : delimited
            if ":" in zone:
                # if IPv6, assume xxxx:xxxx:xxxx:xxxx for the zone
                #                 0123456789012345678
                long_zone = (self.__expand_IPv6(zone + '::1'))[:19]
                tokens = list(re.sub(':', '', long_zone))
                tokens.reverse()
                arpa = '.'.join(tokens) + '.ip6.arpa'
            else:
                # IPv4 zones split by '.'
                tokens = zone.split('.')
                tokens.reverse()
                arpa = '.'.join(tokens) + '.in-addr.arpa'
                #
            metadata['reverse_zones'].append((zone, arpa))
            txt = """
zone "%(arpa)s." {
    type slave;
    masters {
        %(master)s;
    };
    file "data/%(zone)s";
};
""" % {'arpa': arpa, 'zone': zone, 'master': self.settings.bind_master}
            metadata['zone_include'] = metadata['zone_include'] + txt
            metadata['bind_master'] = self.settings.bind_master

        try:
            f2 = open(template_file, "r")
        except:
            raise CX(_("error reading template from file: %s") % template_file)
        template_data = ""
        template_data = f2.read()
        f2.close()

        if self.logger is not None:
            self.logger.info("generating %s" % settings_file)
        self.templar.render(template_data, metadata, settings_file, None)

    def __ip_sort(self, ips):
        """
        Sorts IP addresses (or partial addresses) in a numerical fashion per-octet or quartet

        :param ips: A list of all IP addresses (v6 and v4 mixed possible) which shall be sorted.
        :type ips: list
        :return: The list with sorted IP addresses.
        """
        quartets = []
        octets = []
        for each_ip in ips:
            # IPv6 addresses are ':' delimited
            if ":" in each_ip:
                # IPv6
                # strings to integer quartet chunks so we can sort numerically
                quartets.append([int(i, 16) for i in each_ip.split(':')])
            else:
                # IPv4
                # strings to integer octet chunks so we can sort numerically
                octets.append([int(i) for i in each_ip.split('.')])
        quartets.sort()
        # integers back to four character hex strings
        quartets = [[format(i, '04x') for i in x] for x in quartets]
        #
        octets.sort()
        # integers back to strings
        octets = [[str(i) for i in x] for x in octets]
        #
        return ['.'.join(i) for i in octets] + [':'.join(i) for i in quartets]

    def __pretty_print_host_records(self, hosts, rectype='A', rclass='IN'):
        """
        Format host records by order and with consistent indentation

        :param hosts: The hosts to pretty print.
        :param rectype: The record type.
        :param rclass: The record class.
        :return: A string with all pretty printed hosts.
        :rtype: str
        """

        # Warns on hosts without dns_name, need to iterate over system to name the
        # particular system

        for system in self.systems:
            for (name, interface) in list(system.interfaces.items()):
                if interface["dns_name"] == "":
                    self.logger.info("Warning: dns_name unspecified in the system: %s, while writing host records"
                                     % system.name)

        names = [k for k, v in list(hosts.items())]
        if not names:
            return ''  # zones with no hosts

        if rectype == 'PTR':
            names = self.__ip_sort(names)
        else:
            names.sort()

        max_name = max([len(i) for i in names])

        s = ""
        for name in names:
            spacing = " " * (max_name - len(name))
            my_name = "%s%s" % (name, spacing)
            my_host_record = hosts[name]
            my_host_list = []
            if isinstance(my_host_record, str):
                my_host_list = [my_host_record]
            else:
                my_host_list = my_host_record
            for my_host in my_host_list:
                my_rectype = rectype[:]
                if rectype == 'A':
                    if ":" in my_host:
                        my_rectype = 'AAAA'
                    else:
                        my_rectype = 'A   '
                s += "%s  %s  %s  %s;\n" % (my_name, rclass, my_rectype, my_host)
        return s

    def __pretty_print_cname_records(self, hosts, rectype='CNAME'):
        """
        Format CNAMEs and with consistent indentation

        :param hosts: This parameter is currently unused.
        :param rectype: The type of record which shall be pretty printed.
        :return: The pretty printed version of the cname records.
        """
        s = ""

        # This loop warns and skips the host without dns_name instead of outright exiting
        # Which results in empty records without any warning to the users

        for system in self.systems:
            for (name, interface) in list(system.interfaces.items()):
                cnames = interface.get("cnames", [])

                try:
                    if interface.get("dns_name", "") != "":
                        dnsname = interface["dns_name"].split('.')[0]
                        for cname in cnames:
                            s += "%s  %s  %s;\n" % (cname.split('.')[0], rectype, dnsname)
                    else:
                        self.logger.info(("Warning: dns_name unspecified in the system: %s, Skipped!, while writing cname records") % system.name)
                        continue
                except:
                    pass

        return s

    def __write_zone_files(self):
        """
        Write out the forward and reverse zone files for all configured zones
        """
        default_template_file = "/etc/cobbler/zone.template"
        cobbler_server = self.settings.server
        # this could be a config option too
        serial_filename = "/var/lib/cobbler/bind_serial"
        # need a counter for new bind format
        serial = time.strftime("%Y%m%d00")
        try:
            serialfd = open(serial_filename, "r")
            old_serial = serialfd.readline()
            # same date
            if serial[0:8] == old_serial[0:8]:
                if int(old_serial[8:10]) < 99:
                    serial = "%s%.2i" % (serial[0:8], int(old_serial[8:10]) + 1)
            else:
                pass
            serialfd.close()
        except:
            pass

        serialfd = open(serial_filename, "w")
        serialfd.write(serial)
        serialfd.close()

        forward = self.__forward_zones()
        reverse = self.__reverse_zones()

        try:
            f2 = open(default_template_file, "r")
        except:
            raise CX(_("error reading template from file: %s") % default_template_file)
        default_template_data = ""
        default_template_data = f2.read()
        f2.close()

        zonefileprefix = self.settings.bind_chroot_path + self.zonefile_base

        for (zone, hosts) in list(forward.items()):
            metadata = {
                'cobbler_server': cobbler_server,
                'serial': serial,
                'zonename': zone,
                'zonetype': 'forward',
                'cname_record': '',
                'host_record': ''
            }

            if ":" in zone:
                long_zone = (self.__expand_IPv6(zone + '::1'))[:19]
                tokens = list(re.sub(':', '', long_zone))
                tokens.reverse()
                zone_origin = '.'.join(tokens) + '.ip6.arpa.'
            else:
                zone_origin = ''
            # grab zone-specific template if it exists
            try:
                fd = open('/etc/cobbler/zone_templates/%s' % zone)
                # If this is an IPv6 zone, set the origin to the zone for this
                # template
                if zone_origin:
                    template_data = r"\$ORIGIN " + zone_origin + "\n" + fd.read()
                else:
                    template_data = fd.read()
                fd.close()
            except:
                # If this is an IPv6 zone, set the origin to the zone for this
                # template
                if zone_origin:
                    template_data = r"\$ORIGIN " + zone_origin + "\n" + default_template_data
                else:
                    template_data = default_template_data

            metadata['cname_record'] = self.__pretty_print_cname_records(hosts)
            metadata['host_record'] = self.__pretty_print_host_records(hosts)

            zonefilename = zonefileprefix + zone
            if self.logger is not None:
                self.logger.info("generating (forward) %s" % zonefilename)
            self.templar.render(template_data, metadata, zonefilename, None)

        for (zone, hosts) in list(reverse.items()):
            metadata = {
                'cobbler_server': cobbler_server,
                'serial': serial,
                'zonename': zone,
                'zonetype': 'reverse',
                'cname_record': '',
                'host_record': ''
            }

            # grab zone-specific template if it exists
            try:
                fd = open('/etc/cobbler/zone_templates/%s' % zone)
                template_data = fd.read()
                fd.close()
            except:
                template_data = default_template_data

            metadata['cname_record'] = self.__pretty_print_cname_records(hosts)
            metadata['host_record'] = self.__pretty_print_host_records(hosts, rectype='PTR')

            zonefilename = zonefileprefix + zone
            if self.logger is not None:
                self.logger.info("generating (reverse) %s" % zonefilename)
            self.templar.render(template_data, metadata, zonefilename, None)

    def write_dns_files(self):
        """
        BIND files are written when manage_dns is set in ``/var/lib/cobbler/settings``.
        """

        self.__write_named_conf()
        self.__write_secondary_conf()
        self.__write_zone_files()


def get_manager(collection_mgr, logger):
    """
    This returns the object to manage a BIND server located locally on the Cobbler server.

    :param collection_mgr: The collection manager to resolve all information with.
    :param logger: The logger to audit all actions with.
    :return: The BindManger object to manage bind with.
    """
    return BindManager(collection_mgr, logger)
  070701000000A9000081A40000000000000000000000015ECE2444000022FD000000000000000000000000000000000000003200000000cobbler-3.1.2/cobbler/modules/managers/dnsmasq.py """
This is some of the code behind 'cobbler sync'.

Copyright 2006-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>
John Eckersberg <jeckersb@redhat.com>

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 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
"""

from builtins import str
from builtins import object
import time

import cobbler.templar as templar
import cobbler.utils as utils

from cobbler.utils import _
from cobbler.cexceptions import CX


def register():
    """
    The mandatory Cobbler modules registration hook.

    :return: Always "manage".
    """
    return "manage"


class DnsmasqManager(object):
    """
    Handles conversion of internal state to the tftpboot tree layout.
    """

    def __init__(self, collection_mgr, logger, dhcp=None):
        """
        Constructor

        :param collection_mgr: The collection manager to resolve all information with.
        :param logger: The logger to audit all actions with.
        :param dhcp: This parameter is unused currently.
        """
        self.logger = logger
        self.collection_mgr = collection_mgr
        self.api = collection_mgr.api
        self.distros = collection_mgr.distros()
        self.profiles = collection_mgr.profiles()
        self.systems = collection_mgr.systems()
        self.settings = collection_mgr.settings()
        self.repos = collection_mgr.repos()
        self.templar = templar.Templar(collection_mgr)

    def what(self):
        """
        This identifies the module.

        :return: Will always return ``dnsmasq``.
        """
        return "dnsmasq"

    def write_dhcp_lease(self, port, host, ip, mac):
        """
        Not used

        :param port: Unused in this module implementation.
        :param host: Unused in this module implementation.
        :param ip: Unused in this module implementation.
        :param mac: Unused in this module implementation.
        """
        pass

    def remove_dhcp_lease(self, port, host):
        """
        Not used

        :param port: Unused in this module implementation.
        :param host: Unused in this module implementation.
        """
        pass

    def write_dhcp_file(self):
        """
        DHCP files are written when manage_dhcp is set in ``/etc/cobbler/settings``.
        """

        settings_file = "/etc/dnsmasq.conf"
        template_file = "/etc/cobbler/dnsmasq.template"

        try:
            f2 = open(template_file, "r")
        except:
            raise CX(_("error writing template to file: %s") % template_file)
        template_data = ""
        template_data = f2.read()
        f2.close()

        system_definitions = {}
        counter = 0

        # we used to just loop through each system, but now we must loop
        # through each network interface of each system.

        for system in self.systems:

            if not system.is_management_supported(cidr_ok=False):
                continue

            profile = system.get_conceptual_parent()
            distro = profile.get_conceptual_parent()
            for (name, interface) in list(system.interfaces.items()):

                mac = interface["mac_address"]
                ip = interface["ip_address"]
                host = interface["dns_name"]
                ipv6 = interface["ipv6_address"]

                if not mac:
                    # can't write a DHCP entry for this system
                    continue

                counter += 1

                # In many reallife situations there is a need to control the IP address and hostname for a specific
                # client when only the MAC address is available. In addition to that in some scenarios there is a need
                # to explicitly label a host with the applicable architecture in order to correctly handle situations
                # where we need something other than ``pxelinux.0``. So we always write a dhcp-host entry with as much
                # info as possible to allow maximum control and flexibility within the dnsmasq config.

                systxt = "dhcp-host=net:" + distro.arch.lower() + "," + mac

                if host is not None and host != "":
                    systxt += "," + host

                if ip is not None and ip != "":
                    systxt += "," + ip
                if ipv6 is not None and ipv6 != "":
                    systxt += ",[%s]" % ipv6

                systxt += "\n"

                dhcp_tag = interface["dhcp_tag"]
                if dhcp_tag == "":
                    dhcp_tag = "default"

                if dhcp_tag not in system_definitions:
                    system_definitions[dhcp_tag] = ""
                system_definitions[dhcp_tag] = system_definitions[dhcp_tag] + systxt

        # We are now done with the looping through each interface of each system.

        metadata = {
            "insert_cobbler_system_definitions": system_definitions.get("default", ""),
            "date": time.asctime(time.gmtime()),
            "cobbler_server": self.settings.server,
            "next_server": self.settings.next_server,
        }

        # now add in other DHCP expansions that are not tagged with "default"
        for x in list(system_definitions.keys()):
            if x == "default":
                continue
            metadata["insert_cobbler_system_definitions_%s" % x] = system_definitions[x]

        self.templar.render(template_data, metadata, settings_file, None)

    def regen_ethers(self):
        """
        This function regenerates the ethers file. To get more information please read ``man ethers``, the format is
        also in there described.
        """
        # dnsmasq knows how to read this database of MACs -> IPs, so we'll keep it up to date every time we add a
        # system.
        fh = open("/etc/ethers", "w+")
        for system in self.systems:
            if not system.is_management_supported(cidr_ok=False):
                continue
            for (name, interface) in list(system.interfaces.items()):
                mac = interface["mac_address"]
                ip = interface["ip_address"]
                if not mac:
                    # can't write this w/o a MAC address
                    continue
                if ip is not None and ip != "":
                    fh.write(mac.upper() + "\t" + ip + "\n")
        fh.close()

    def regen_hosts(self):
        """
        This rewrites the hosts file and thus also rewrites the dns config.
        """
        # dnsmasq knows how to read this database for host info (other things may also make use of this later)
        fh = open("/var/lib/cobbler/cobbler_hosts", "w+")
        for system in self.systems:
            if not system.is_management_supported(cidr_ok=False):
                continue
            for (name, interface) in list(system.interfaces.items()):
                mac = interface["mac_address"]
                host = interface["dns_name"]
                ip = interface["ip_address"]
                ipv6 = interface["ipv6_address"]
                if not mac:
                    continue
                if host is not None and host != "" and ipv6 is not None and ipv6 != "":
                    fh.write(ipv6 + "\t" + host + "\n")
                elif host is not None and host != "" and ip is not None and ip != "":
                    fh.write(ip + "\t" + host + "\n")
        fh.close()

    def write_dns_files(self):
        """
        Not used
        """
        # already taken care of by the regen_hosts()
        pass

    def sync_dhcp(self):
        """
        This restarts the dhcp server and thus applied the newly written config files.
        """
        restart_dhcp = str(self.settings.restart_dhcp).lower()
        if restart_dhcp != "0":
            rc = utils.subprocess_call(self.logger, "service dnsmasq restart")
            if rc != 0:
                error_msg = "service dnsmasq restart failed"
                self.logger.error(error_msg)
                raise CX(error_msg)


def get_manager(collection_mgr, logger):
    """
    Creates a manager object to manage a dnsmasq server.

    :param collection_mgr: The collection manager to resolve all information with.
    :param logger: The logger to audit all actions with.
    :return: The object generated from the class.
    """
    return DnsmasqManager(collection_mgr, logger)
   070701000000AA000081A40000000000000000000000015ECE244400001040000000000000000000000000000000000000003200000000cobbler-3.1.2/cobbler/modules/managers/genders.py import distutils.sysconfig
import sys
import os
import time
import cobbler.templar
from cobbler.utils import _
from cobbler.cexceptions import CX

plib = distutils.sysconfig.get_python_lib()
mod_path = "%s/cobbler" % plib
sys.path.insert(0, mod_path)
template_file = "/etc/cobbler/genders.template"
settings_file = "/etc/genders"


def register():
    """
    We should run anytime something inside of Cobbler changes.

    :return: Always ``/var/lib/cobbler/triggers/change/*``
    """
    return "/var/lib/cobbler/triggers/change/*"


def write_genders_file(config, profiles_genders, distros_genders, mgmtcls_genders):
    """
    Genders file is over-written when manage_genders is set in /var/lib/cobbler/settings.

    :param config: The config file to template with the data.
    :param profiles_genders: The profiles which should be included.
    :param distros_genders: The distros which should be included.
    :param mgmtcls_genders: The management classes which should be included.
    """

    templar_inst = cobbler.templar.Templar(config)
    try:
        f2 = open(template_file, "r")
    except:
        raise CX(_("error reading template: %s") % template_file)
    template_data = ""
    template_data = f2.read()
    f2.close()

    metadata = {
        "date": time.asctime(time.gmtime()),
        "profiles_genders": profiles_genders,
        "distros_genders": distros_genders,
        "mgmtcls_genders": mgmtcls_genders
    }

    templar_inst.render(template_data, metadata, settings_file, None)


def run(api, args, logger):
    """
    Mandatory Cobbler trigger hook.

    :param api: The api to resolve information with.
    :param args: For this implementation unused.
    :param logger: The logger to audit all actions with.
    :return: ``0`` or ``1``, depending on the outcome of the operation.
    """
    # do not run if we are not enabled.
    if(not api.settings().manage_genders):
        return 0

    profiles_genders = dict()
    distros_genders = dict()
    mgmtcls_genders = dict()

    # let's populate our dicts

    # TODO: the lists that are created here are strictly comma separated.
    # /etc/genders allows for host lists that are in the notation similar to: node00[01-07,08,09,70-71] at some point,
    # need to come up with code to generate these types of lists.

    # profiles
    for prof in api.profiles():
        # create the key
        profiles_genders[prof.name] = ""
        for system in api.find_system(profile=prof.name, return_list=True):
            profiles_genders[prof.name] += system.name + ","
        # remove a trailing comma
        profiles_genders[prof.name] = profiles_genders[prof.name][:-1]
        if(profiles_genders[prof.name] == ""):
            profiles_genders.pop(prof.name, None)

    # distros
    for dist in api.distros():
        # create the key
        distros_genders[dist.name] = ""
        for system in api.find_system(distro=dist.name, return_list=True):
            distros_genders[dist.name] += system.name + ","
        # remove a trailing comma
        distros_genders[dist.name] = distros_genders[dist.name][:-1]
        if(distros_genders[dist.name] == ""):
            distros_genders.pop(dist.name, None)

    # mgmtclasses
    for mgmtcls in api.mgmtclasses():
        # create the key
        mgmtcls_genders[mgmtcls.name] = ""
        for system in api.find_system(mgmt_classes=mgmtcls.name, return_list=True):
            mgmtcls_genders[mgmtcls.name] += system.name + ","
        # remove a trailing comma
        mgmtcls_genders[mgmtcls.name] = mgmtcls_genders[mgmtcls.name][:-1]
        if(mgmtcls_genders[mgmtcls.name] == ""):
            mgmtcls_genders.pop(mgmtcls.name, None)
    # The file doesn't exist and for some reason the template engine won't create it, so spit out an error and tell the
    # user what to do.
    if(not os.path.isfile(settings_file)):
        logger.info("Error: " + settings_file + " does not exist.")
        logger.info("Please run: touch " + settings_file + " as root and try again.")
        return 1

    write_genders_file(api._collection_mgr, profiles_genders, distros_genders, mgmtcls_genders)
    return 0
070701000000AB000081A40000000000000000000000015ECE24440000843F000000000000000000000000000000000000003C00000000cobbler-3.1.2/cobbler/modules/managers/import_signatures.py   """
Copyright 2006-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>
John Eckersberg <jeckersb@redhat.com>

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 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
"""

from builtins import str
from builtins import object
import glob
import os
import os.path
import re
import shutil
import stat

# Import aptsources module if available to obtain repo mirror.
try:
    from aptsources import distro as debdistro
    from aptsources import sourceslist
    apt_available = True
except:
    apt_available = False

from cobbler.items import profile, distro
from cobbler.cexceptions import CX

import cobbler.templar as templar
import cobbler.utils as utils
import cobbler.items.repo as item_repo


def register():
    """
    The mandatory Cobbler module registration hook.
    """
    return "manage/import"


def import_walker(top, func, arg):
    """
    Directory tree walk with callback function.

    For each directory in the directory tree rooted at top (including top itself, but excluding '.' and '..'), call
    ``func(arg, dirname, fnames)``. dirname is the name of the directory, and fnames a list of the names of the files
    and subdirectories in dirname (excluding '.' and '..').  ``func`` may modify the ``fnames`` list in-place (e.g. via
    ``del`` or ``slice`` assignment), and walk will only recurse into the subdirectories whose names remain in
    ``fnames``; this can be used to implement a filter, or to impose a specific order of visiting. No semantics are
    defined for, or required of, ``arg``, beyond that arg is always passed to ``func``. It can be used, e.g., to pass
    a filename pattern, or a mutable object designed to accumulate statistics.

    :param top: The most top directory for which func should be run.
    :param func: A function which is called as described in the above description.
    :param arg: Passing ``None`` for this is common.
    """
    try:
        names = os.listdir(top)
    except os.error:
        return
    func(arg, top, names)
    for name in names:
        name = os.path.join(top, name)
        try:
            st = os.lstat(name)
        except os.error:
            continue
        if stat.S_ISDIR(st.st_mode):
            import_walker(name, func, arg)


class ImportSignatureManager(object):

    def __init__(self, collection_mgr, logger):
        """
        Constructor

        :param collection_mgr: This is the collection manager which has every information in Cobbler available.
        :param logger: This is the logger to audit all actions with.
        """
        self.logger = logger
        self.collection_mgr = collection_mgr
        self.api = collection_mgr.api
        self.distros = collection_mgr.distros()
        self.profiles = collection_mgr.profiles()
        self.systems = collection_mgr.systems()
        self.settings = collection_mgr.settings()
        self.repos = collection_mgr.repos()
        self.templar = templar.Templar(collection_mgr)

        self.signature = None
        self.found_repos = {}

    # required function for import modules
    def what(self):
        """
        Identifies what service this manages.

        :return: Always will return ``import/signatures``.
        """
        return "import/signatures"

    def get_file_lines(self, filename):
        """
        Get lines from a file, which may or may not be compressed. If compressed then it will be uncompressed using
        ``gzip`` as the algorithm.

        :param filename: The name of the file to be read.
        :return: An array with all the lines.
        """
        lines = []
        ftype = utils.subprocess_get(self.logger, "/usr/bin/file %s" % filename)
        if ftype.find("gzip") != -1:
            try:
                import gzip
                f = gzip.open(filename, 'r')
                lines = f.readlines()
                f.close()
            except:
                pass
        elif ftype.find("text") != -1:
            f = open(filename, 'r')
            lines = f.readlines()
            f.close()
        return lines

    def run(self, path, name, network_root=None, autoinstall_file=None, arch=None, breed=None, os_version=None):
        """
        This is the main entry point in a manager. It is a required function for import modules.

        :param path: the directory we are scanning for files
        :param name: the base name of the distro
        :param network_root: the remote path (nfs/http/ftp) for the distro files
        :param autoinstall_file: user-specified response file, which will override the default
        :param arch: user-specified architecture
        :param breed: user-specified breed
        :param os_version: user-specified OS version
        """
        self.name = name
        self.network_root = network_root
        self.autoinstall_file = autoinstall_file
        self.arch = arch
        self.breed = breed
        self.os_version = os_version

        self.path = path
        self.rootdir = path
        self.pkgdir = path

        # some fixups for the XMLRPC interface, which does not use "None"
        if self.arch == "":
            self.arch = None

        if self.name == "":
            self.name = None

        if self.autoinstall_file == "":
            self.autoinstall_file = None

        if self.os_version == "":
            self.os_version = None

        if self.network_root == "":
            self.network_root = None

        if self.os_version and not self.breed:
            utils.die(self.logger, "OS version can only be specified when a specific breed is selected")

        self.signature = self.scan_signatures()
        if not self.signature:
            error_msg = "No signature matched in %s" % path
            self.logger.error(error_msg)
            raise CX(error_msg)

        # now walk the filesystem looking for distributions that match certain patterns
        self.logger.info("Adding distros from path %s:" % self.path)
        distros_added = []
        import_walker(self.path, self.distro_adder, distros_added)

        if len(distros_added) == 0:
            self.logger.warning("No distros imported, bailing out")
            return

        # find out if we can auto-create any repository records from the install tree
        if self.network_root is None:
            self.logger.info("associating repos")
            # FIXME: this automagic is not possible (yet) without mirroring
            self.repo_finder(distros_added)

    def scan_signatures(self):
        """
        Loop through the signatures, looking for a match for both the signature directory and the version file.
        """
        sigdata = self.api.get_signatures()
        # self.logger.debug("signature cache: %s" % str(sigdata))
        for breed in list(sigdata["breeds"].keys()):
            if self.breed and self.breed != breed:
                continue
            for version in list(sigdata["breeds"][breed].keys()):
                if self.os_version and self.os_version != version:
                    continue
                for sig in sigdata["breeds"][breed][version]["signatures"]:
                    pkgdir = os.path.join(self.path, sig)
                    if os.path.exists(pkgdir):
                        self.logger.debug("Found a candidate signature: breed=%s, version=%s" % (breed, version))
                        f_re = re.compile(sigdata["breeds"][breed][version]["version_file"])
                        for (root, subdir, fnames) in os.walk(self.path):
                            for fname in fnames + subdir:
                                if f_re.match(fname):
                                    # if the version file regex exists, we use it
                                    # to scan the contents of the target version file
                                    # to ensure it's the right version
                                    if sigdata["breeds"][breed][version]["version_file_regex"]:
                                        vf_re = re.compile(sigdata["breeds"][breed][version]["version_file_regex"])
                                        vf_lines = self.get_file_lines(os.path.join(root, fname))
                                        for line in vf_lines:
                                            if vf_re.match(line):
                                                break
                                        else:
                                            continue
                                    self.logger.debug("Found a matching signature: breed=%s, version=%s" % (breed, version))
                                    if not self.breed:
                                        self.breed = breed
                                    if not self.os_version:
                                        self.os_version = version
                                    if not self.autoinstall_file:
                                        self.autoinstall_file = sigdata["breeds"][breed][version]["default_autoinstall"]
                                    self.pkgdir = pkgdir
                                    return sigdata["breeds"][breed][version]
        return None

    # required function for import modules
    def get_valid_arches(self):
        """
        Get all valid architectures from the signature file.

        :return: An empty list or all valid architectures.
        """
        if self.signature:
            return sorted(self.signature["supported_arches"], key=lambda s: -1 * len(s))
        return []

    def get_valid_repo_breeds(self):
        """
        Get all valid repository architectures from the signatures file.

        :return: An empty list or all valid architectures.
        """
        if self.signature:
            return self.signature["supported_repo_breeds"]
        return []

    def distro_adder(self, distros_added, dirname, fnames):
        """
        This is an import_walker routine that finds distributions in the directory to be scanned and then creates them.

        :param distros_added: Unkown what this currently does.
        :param dirname: Unkown what this currently does.
        :param fnames: Unkown what this currently does.
        """

        re_krn = re.compile(self.signature["kernel_file"])
        re_img = re.compile(self.signature["initrd_file"])

        # make sure we don't mismatch PAE and non-PAE types
        initrd = None
        kernel = None
        pae_initrd = None
        pae_kernel = None

        for x in fnames:
            adtls = []

            # Most of the time we just want to ignore isolinux directories, unless this is one of the oddball distros
            # where we do want it.
            if dirname.find("isolinux") != -1 and not self.signature["isolinux_ok"]:
                continue

            fullname = os.path.join(dirname, x)
            if os.path.islink(fullname) and os.path.isdir(fullname):
                if fullname.startswith(self.path):
                    # Prevent infinite loop with Sci Linux 5
                    # self.logger.warning("avoiding symlink loop")
                    continue
                self.logger.info("following symlink: %s" % fullname)
                import_walker(fullname, self.distro_adder, distros_added)

            if re_img.match(x):
                if x.find("PAE") == -1:
                    initrd = os.path.join(dirname, x)
                else:
                    pae_initrd = os.path.join(dirname, x)

            if re_krn.match(x):
                if x.find("PAE") == -1:
                    kernel = os.path.join(dirname, x)
                else:
                    pae_kernel = os.path.join(dirname, x)

            # if we've collected a matching kernel and initrd pair, turn them in and add them to the list
            if initrd is not None and kernel is not None:
                adtls.append(self.add_entry(dirname, kernel, initrd))
                kernel = None
                initrd = None
            elif pae_initrd is not None and pae_kernel is not None:
                adtls.append(self.add_entry(dirname, pae_kernel, pae_initrd))
                pae_kernel = None
                pae_initrd = None

            for adtl in adtls:
                distros_added.extend(adtl)

    def add_entry(self, dirname, kernel, initrd):
        """
        When we find a directory with a valid kernel/initrd in it, create the distribution objects as appropriate and
        save them. This includes creating xen and rescue distros/profiles if possible.

        :param dirname: Unkown what this currently does.
        :param kernel: Unkown what this currently does.
        :param initrd: Unkown what this currently does.
        :return: Unkown what this currently does.
        """

        # build a proposed name based on the directory structure
        proposed_name = self.get_proposed_name(dirname, kernel)

        # build a list of arches found in the packages directory
        archs = self.learn_arch_from_tree()
        if not archs and self.arch:
            archs.append(self.arch)
        else:
            if self.arch and self.arch not in archs:
                utils.die(self.logger, "Given arch (%s) not found on imported tree %s" % (self.arch, self.path))

        if len(archs) == 0:
            self.logger.error("No arch could be detected in %s, and none was specified via the --arch option" % dirname)
            return []
        elif len(archs) > 1:
            self.logger.warning("- Warning : Multiple archs found : %s" % (archs))

        distros_added = []
        for pxe_arch in archs:
            name = proposed_name + "-" + pxe_arch
            existing_distro = self.distros.find(name=name)

            if existing_distro is not None:
                self.logger.warning("skipping import, as distro name already exists: %s" % name)
                continue
            else:
                self.logger.info("creating new distro: %s" % name)
                new_distro = distro.Distro(self.collection_mgr)

            if name.find("-autoboot") != -1:
                # this is an artifact of some EL-3 imports
                continue

            new_distro.set_name(name)
            new_distro.set_kernel(kernel)
            new_distro.set_initrd(initrd)
            new_distro.set_arch(pxe_arch)
            new_distro.set_breed(self.breed)
            new_distro.set_os_version(self.os_version)
            new_distro.set_kernel_options(self.signature.get("kernel_options", ""))
            new_distro.set_kernel_options_post(self.signature.get("kernel_options_post", ""))
            new_distro.set_template_files(self.signature.get("template_files", ""))
            supported_distro_boot_loaders = utils.get_supported_distro_boot_loaders(new_distro, self.api)
            new_distro.set_supported_boot_loaders(supported_distro_boot_loaders)
            new_distro.set_boot_loader(supported_distro_boot_loaders[0])

            boot_files = ''
            for boot_file in self.signature["boot_files"]:
                boot_files += '$local_img_path/%s=%s/%s ' % (boot_file, self.path, boot_file)
            new_distro.set_boot_files(boot_files.strip())

            self.configure_tree_location(new_distro)

            self.distros.add(new_distro, save=True)
            distros_added.append(new_distro)

            # see if the profile name is already used, if so, skip it and
            # do not modify the existing profile

            existing_profile = self.profiles.find(name=name)

            if existing_profile is None:
                self.logger.info("creating new profile: %s" % name)
                new_profile = profile.Profile(self.collection_mgr)
            else:
                self.logger.info("skipping existing profile, name already exists: %s" % name)
                continue

            new_profile.set_name(name)
            new_profile.set_distro(name)
            new_profile.set_autoinstall(self.autoinstall_file)

            # depending on the name of the profile we can
            # define a good virt-type for usage with koan
            if name.find("-xen") != -1:
                new_profile.set_virt_type("xenpv")
            elif name.find("vmware") != -1:
                new_profile.set_virt_type("vmware")
            else:
                new_profile.set_virt_type("kvm")

            self.profiles.add(new_profile, save=True)

        return distros_added

    def learn_arch_from_tree(self):
        """
        If a distribution is imported from DVD, there is a good chance the path doesn't contain the arch and we should
        add it back in so that it's part of the meaningful name ... so this code helps figure out the arch name.  This
        is important for producing predictable distro names (and profile names) from differing import sources.

        :return: The guessed architecture from a distribution dvd.
        :rtype: list
        """

        result = {}

        # FIXME : this is called only once, should not be a walk
        import_walker(self.path, self.arch_walker, result)

        if result.pop("amd64", False):
            result["x86_64"] = 1
        if result.pop("i686", False):
            result["i386"] = 1
        if result.pop("i586", False):
            result["i386"] = 1
        if result.pop("x86", False):
            result["i386"] = 1

        return list(result.keys())

    def arch_walker(self, foo, dirname, fnames):
        """
        Function for recursively searching through a directory for a kernel file matching a given architecture, called
        by ``learn_arch_from_tree()``

        :param foo: Into this dict there will be put additional meta information.
        :type foo: dict
        :param dirname: The directory name where the kernel can be found.
        :param fnames: This should be a list like object which will be looped over.
        """

        re_krn = re.compile(self.signature["kernel_arch"])

        # try to find a kernel header RPM and then look at it's arch.
        for x in fnames:
            if re_krn.match(x):
                if self.signature["kernel_arch_regex"]:
                    re_krn2 = re.compile(self.signature["kernel_arch_regex"])
                    krn_lines = self.get_file_lines(os.path.join(dirname, x))
                    for line in krn_lines:
                        m = re_krn2.match(line)
                        if m:
                            for group in m.groups():
                                group = group.lower()
                                if group in self.get_valid_arches():
                                    foo[group] = 1
                else:
                    for arch in self.get_valid_arches():
                        if x.find(arch) != -1:
                            foo[arch] = 1
                            break
                    for arch in ["i686", "amd64"]:
                        if x.find(arch) != -1:
                            foo[arch] = 1
                            break

    def get_proposed_name(self, dirname, kernel=None):
        """
        Given a directory name where we have a kernel/initrd pair, try to autoname the distribution (and profile) object
        based on the contents of that path.

        :param dirname: The directory where the distribution is living in.
        :param kernel: The kernel of that distro.
        :return: The name which is recommended.
        :rtype: str
        """

        if self.network_root is not None:
            name = self.name
        else:
            # remove the part that says /var/www/cobbler/distro_mirror/name
            name = "-".join(dirname.split("/")[5:])

        if kernel is not None:
            if kernel.find("PAE") != -1 and name.find("PAE") == -1:
                name += "-PAE"
            if kernel.find("xen") != -1 and name.find("xen") == -1:
                name += "-xen"

        # Clear out some cruft from the proposed name
        name = name.replace("--", "-")
        for x in ("-netboot", "-ubuntu-installer", "-amd64", "-i386",
                  "-images", "-pxeboot", "-install", "-isolinux", "-boot", "-suseboot",
                  "-loader", "-os", "-tree", "var-www-cobbler-", "distro_mirror-"):
            name = name.replace(x, "")

        # remove any architecture name related string, as real arch will be appended later
        name = name.replace("chrp", "ppc64")
        for separator in ['-', '_', '.']:
            for arch in ["i386", "x86_64", "ia64", "ppc64le", "ppc64el", "ppc64", "ppc32", "ppc", "x86", "s390x", "s390", "386", "amd"]:
                name = name.replace("%s%s" % (separator, arch), "")

        return name

    def configure_tree_location(self, distro):
        """
        Once a distribution is identified, find the part of the distribution that has the URL in it that we want to use
        for automating the Linux distribution installation, and create a autoinstall_meta variable $tree that contains
        this.

        :param distro: The distribution object for that the tree should be configured.
        """

        base = self.rootdir

        # how we set the tree depends on whether an explicit network_root was specified
        if self.network_root is None:
            dest_link = os.path.join(self.settings.webdir, "links", distro.name)
            # create the links directory only if we are mirroring because with SELinux Apache can't symlink to NFS
            # (without some doing)
            if not os.path.exists(dest_link):
                try:
                    self.logger.info("trying symlink: %s -> %s" % (str(base), str(dest_link)))
                    os.symlink(base, dest_link)
                except:
                    # FIXME: This shouldn't happen but I've seen it ... debug ...
                    self.logger.warning("symlink creation failed: %(base)s, %(dest)s" % {"base": base, "dest": dest_link})
            tree = "http://@@http_server@@/cblr/links/%s" % (distro.name)
            self.set_install_tree(distro, tree)
        else:
            # Where we assign the automated installation file source is relative to our current directory and the input
            # start directory in the crawl. We find the path segments between and tack them on the network source
            # path to find the explicit network path to the distro that Anaconda can digest.
            tail = utils.path_tail(self.path, base)
            tree = self.network_root[:-1] + tail
            self.set_install_tree(distro, tree)

    def set_install_tree(self, distro, url):
        """
        Simple helper function to set the tree automated installation metavariable.

        :param distro: The distribution object for which the install tree should be set.
        :param url: The url for the tree.
        """
        distro.autoinstall_meta["tree"] = url

# ==========================================================================
# Repo Functions

    def repo_finder(self, distros_added):
        """
        This routine looks through all distributions and tries to find any applicable repositories in those
        distributions for post-install usage.

        :param distros_added: This is an iteratable set of distributions.
        """
        for repo_breed in self.get_valid_repo_breeds():
            self.logger.info("checking for %s repo(s)" % repo_breed)
            repo_adder = None
            if repo_breed == "yum":
                repo_adder = self.yum_repo_adder
            elif repo_breed == "rhn":
                repo_adder = self.rhn_repo_adder
            elif repo_breed == "rsync":
                repo_adder = self.rsync_repo_adder
            elif repo_breed == "apt":
                repo_adder = self.apt_repo_adder
            else:
                self.logger.warning("skipping unknown/unsupported repo breed: %s" % repo_breed)
                continue

            for distro in distros_added:
                if distro.kernel.find("distro_mirror") != -1:
                    repo_adder(distro)
                    self.distros.add(distro, save=True, with_triggers=False)
                else:
                    self.logger.info("skipping distro %s since it isn't mirrored locally" % distro.name)

    # ==========================================================================
    # yum-specific

    def yum_repo_adder(self, distro):
        """
        For yum, we recursively scan the rootdir for repos to add

        :param distro: The distribution object to scan and possibly add.
        """
        self.logger.info("starting descent into %s for %s" % (self.rootdir, distro.name))
        import_walker(self.rootdir, self.yum_repo_scanner, distro)

    def yum_repo_scanner(self, distro, dirname, fnames):
        """
        This is an import_walker routine that looks for potential yum repositories to be added to the configuration for
        post-install usage.

        :param distro: The distribution object to check for.
        :param dirname: The folder with repositories to check.
        :param fnames: Unkown what this does exactly.
        """

        matches = {}
        for x in fnames:
            if x == "base" or x == "repodata":
                self.logger.info("processing repo at : %s" % dirname)
                # only run the repo scanner on directories that contain a comps.xml
                gloob1 = glob.glob("%s/%s/*comps*.xml" % (dirname, x))
                if len(gloob1) >= 1:
                    if dirname in matches:
                        self.logger.info("looks like we've already scanned here: %s" % dirname)
                        continue
                    self.logger.info("need to process repo/comps: %s" % dirname)
                    self.yum_process_comps_file(dirname, distro)
                    matches[dirname] = 1
                else:
                    self.logger.info("directory %s is missing xml comps file, skipping" % dirname)
                    continue

    def yum_process_comps_file(self, comps_path, distro):
        """
        When importing Fedora/EL certain parts of the install tree can also be used as yum repos containing packages
        that might not yet be available via updates in yum. This code identifies those areas. Existing repodata will be
        used as-is, but repodate is created for earlier, non-yum based, installers.

        :param comps_path: Not know what this is exactly for.
        :param distro: The distributions to check.
        """

        if os.path.exists(os.path.join(comps_path, "repodata")):
            keeprepodata = True
            masterdir = "repodata"
        else:
            # older distros...
            masterdir = "base"
            keeprepodata = False

        # figure out what our comps file is ...
        self.logger.info("looking for %(p1)s/%(p2)s/*comps*.xml" % {"p1": comps_path, "p2": masterdir})
        files = glob.glob("%s/%s/*comps*.xml" % (comps_path, masterdir))
        if len(files) == 0:
            self.logger.info("no comps found here: %s" % os.path.join(comps_path, masterdir))
            return      # no comps xml file found

        # pull the filename from the longer part
        comps_file = files[0].split("/")[-1]

        try:
            # Store the yum configs on the filesystem so we can use them later. And configure them in the automated
            # installation file post section, etc.

            counter = len(distro.source_repos)

            # find path segment for yum_url (changing filesystem path to http:// trailing fragment)
            seg = comps_path.rfind("distro_mirror")
            urlseg = comps_path[(seg + len("distro_mirror") + 1):]

            fname = os.path.join(self.settings.webdir, "distro_mirror", "config", "%s-%s.repo" % (distro.name, counter))

            repo_url = "http://@@http_server@@/cobbler/distro_mirror/config/%s-%s.repo" % (distro.name, counter)
            repo_url2 = "http://@@http_server@@/cobbler/distro_mirror/%s" % (urlseg)

            distro.source_repos.append([repo_url, repo_url2])

            config_dir = os.path.dirname(fname)
            if not os.path.exists(config_dir):
                os.makedirs(config_dir)

            # NOTE: the following file is now a Cheetah template, so it can be remapped during sync, that's why we have
            # the @@http_server@@ left as templating magic.
            # repo_url2 is actually no longer used. (?)

            config_file = open(fname, "w+")
            config_file.write("[core-%s]\n" % counter)
            config_file.write("name=core-%s\n" % counter)
            config_file.write("baseurl=http://@@http_server@@/cobbler/distro_mirror/%s\n" % (urlseg))
            config_file.write("enabled=1\n")
            config_file.write("gpgcheck=0\n")
            config_file.write("priority=$yum_distro_priority\n")
            config_file.close()

            # Don't run creatrepo twice -- this can happen easily for Xen and PXE, when they'll share same repo files.
            if keeprepodata:
                self.logger.info("Keeping repodata as-is :%s/repodata" % comps_path)
                self.found_repos[comps_path] = 1

            elif comps_path not in self.found_repos:
                utils.remove_yum_olddata(comps_path)
                cmd = "createrepo %s --groupfile %s %s" % (self.settings.createrepo_flags, os.path.join(comps_path, masterdir, comps_file), comps_path)
                utils.subprocess_call(self.logger, cmd, shell=True)
                self.found_repos[comps_path] = 1
                # For older distros, if we have a "base" dir parallel with "repodata", we need to copy comps.xml up
                # one...
                p1 = os.path.join(comps_path, "repodata", "comps.xml")
                p2 = os.path.join(comps_path, "base", "comps.xml")
                if os.path.exists(p1) and os.path.exists(p2):
                    shutil.copyfile(p1, p2)

        except:
            self.logger.error("error launching createrepo (not installed?), ignoring")
            utils.log_exc(self.logger)

    # ==========================================================================
    # apt-specific

    def apt_repo_adder(self, distro):
        """
        Automatically import apt repositories when importing signatures.

        :param distro: The distribution to scan for apt repositories.
        """
        self.logger.info("adding apt repo for %s" % distro.name)
        # Obtain repo mirror from APT if available
        mirror = False
        if apt_available:
            # Example returned URL: http://us.archive.ubuntu.com/ubuntu
            mirror = self.get_repo_mirror_from_apt()
        if not mirror:
            mirror = "http://archive.ubuntu.com/ubuntu"

        repo = item_repo.Repo(self.collection_mgr)
        repo.set_breed("apt")
        repo.set_arch(distro.arch)
        repo.set_keep_updated(True)
        repo.set_apt_components("main universe")        # TODO: make a setting?
        repo.set_apt_dists("%s %s-updates %s-security" % ((distro.os_version,) * 3))
        repo.set_name(distro.name)
        repo.set_os_version(distro.os_version)

        if distro.breed == "ubuntu":
            repo.set_mirror(mirror)
        else:
            # NOTE : The location of the mirror should come from timezone
            repo.set_mirror("http://ftp.%s.debian.org/debian/dists/%s" % ('us', distro.os_version))

        self.logger.info("Added repos for %s" % distro.name)
        repos = self.collection_mgr.repos()
        repos.add(repo, save=True)
        # FIXME: Add the found/generated repos to the profiles that were created during the import process

    def get_repo_mirror_from_apt(self):
        """
        This tries to determine the apt mirror/archive to use (when processing repos) if the host machine is Debian or
        Ubuntu.

        :return: False if the try fails or otherwise the mirrors.
        """
        try:
            sources = sourceslist.SourcesList()
            release = debdistro.get_distro()
            release.get_sources(sources)
            mirrors = release.get_server_list()
            for mirror in mirrors:
                if mirror[2]:
                    mirror = mirror[1]
                    break
        except:
            return False

        return mirror

    # ==========================================================================
    # rhn-specific

    def rhn_repo_adder(self, distro):
        """
        Not currently used.

        :param distro: Not used currently.
        """
        return

    # ==========================================================================
    # rsync-specific

    def rsync_repo_adder(self, distro):
        """
        Not currently used.

        :param distro: Not used currently.
        """
        return

# ==========================================================================


def get_import_manager(config, logger):
    """
    Get an instance of the import manager which enables you to import various things.

    :param config: The configuration for the import manager.
    :param logger: The logger to audit all actions with.
    :return: The object to import data with.
    """
    return ImportSignatureManager(config, logger)
 070701000000AC000081A40000000000000000000000015ECE244400001BBE000000000000000000000000000000000000003300000000cobbler-3.1.2/cobbler/modules/managers/in_tftpd.py    """
This is some of the code behind 'cobbler sync'.

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
"""

from builtins import object
import glob
import os.path
import shutil

import cobbler.clogger as clogger
import cobbler.templar as templar
import cobbler.utils as utils
import cobbler.tftpgen as tftpgen

from cobbler.cexceptions import CX


def register():
    """
    The mandatory Cobbler module registration hook.
    """
    return "manage"


class InTftpdManager(object):

    def what(self):
        """
        Static method to identify the manager.

        :return: Always "in_tftpd".
        """
        return "in_tftpd"

    def __init__(self, collection_mgr, logger):
        """
        Constructor

        :param collection_mgr: The collection manager to resolve all information with.
        :param logger: The logger to audit all actions with.
        """
        self.logger = logger
        if self.logger is None:
            self.logger = clogger.Logger()

        self.collection_mgr = collection_mgr
        self.templar = templar.Templar(collection_mgr)
        self.tftpgen = tftpgen.TFTPGen(collection_mgr, self.logger)
        self.systems = collection_mgr.systems()
        self.bootloc = collection_mgr.settings().tftpboot_location

    def regen_hosts(self):
        """
        Not used
        """
        pass

    def write_dns_files(self):
        """
        Not used
        """
        pass

    def write_boot_files_distro(self, distro):
        # Collapse the object down to a rendered datastructure.
        # The second argument set to false means we don't collapse dicts/arrays into a flat string.
        target = utils.blender(self.collection_mgr.api, False, distro)

        # Create metadata for the templar function.
        # Right now, just using local_img_path, but adding more Cobbler variables here would probably be good.
        metadata = {}
        metadata["local_img_path"] = os.path.join(self.bootloc, "images", distro.name)
        # Create the templar instance.  Used to template the target directory
        templater = templar.Templar(self.collection_mgr)

        # Loop through the dict of boot files, executing a cp for each one
        self.logger.info("processing boot_files for distro: %s" % distro.name)
        for file in list(target["boot_files"].keys()):
            rendered_file = templater.render(file, metadata, None)
            try:
                for f in glob.glob(target["boot_files"][file]):
                    if f == target["boot_files"][file]:
                        # this wasn't really a glob, so just copy it as is
                        filedst = rendered_file
                    else:
                        # this was a glob, so figure out what the destination file path/name should be
                        tgt_path, tgt_file = os.path.split(f)
                        rnd_path, rnd_file = os.path.split(rendered_file)
                        filedst = os.path.join(rnd_path, tgt_file)
                    if not os.path.isfile(filedst):
                        shutil.copyfile(f, filedst)
                    self.collection_mgr.api.log("copied file %s to %s for %s" % (f, filedst, distro.name))
            except:
                self.logger.error("failed to copy file %s to %s for %s" % (f, filedst, distro.name))

        return 0

    def write_boot_files(self):
        """
        Copy files in ``profile["boot_files"]`` into ``/tftpboot``. Used for vmware currently.

        :return: ``0`` on success.
        """
        for distro in self.collection_mgr.distros():
            self.write_boot_files_distro(distro)

        return 0

    def update_netboot(self, name):
        """
        Write out new ``pxelinux.cfg`` files to ``/tftpboot``

        :param name: The name of the system to update.
        """
        system = self.systems.find(name=name)
        if system is None:
            utils.die(self.logger, "error in system lookup for %s" % name)
        menu_items = self.tftpgen.get_menu_items()['pxe']
        self.tftpgen.write_all_system_files(system, menu_items)
        # generate any templates listed in the system
        self.tftpgen.write_templates(system)

    def add_single_system(self, system):
        """
        Write out new ``pxelinux.cfg`` files to ``/tftpboot``

        :param system: The system to be added.
        """
        # write the PXE files for the system
        menu_items = self.tftpgen.get_menu_items()['pxe']
        self.tftpgen.write_all_system_files(system, menu_items)
        # generate any templates listed in the distro
        self.tftpgen.write_templates(system)

    def add_single_distro(self, distro):
        self.tftpgen.copy_single_distro_files(distro, self.bootloc, False)
        self.write_boot_files_distro(distro)

    def sync(self, verbose=True):
        """
        Write out all files to /tftpdboot

        :param verbose: Whether the tftp server should log this verbose or not.
        """
        self.tftpgen.verbose = verbose
        self.logger.info("copying bootloaders")
        self.tftpgen.copy_bootloaders(self.bootloc)

        self.logger.info("copying distros to tftpboot")

        # Adding in the exception handling to not blow up if files have been moved (or the path references an NFS
        # directory that's no longer mounted)
        for d in self.collection_mgr.distros():
            try:
                self.logger.info("copying files for distro: %s" % d.name)
                self.tftpgen.copy_single_distro_files(d, self.bootloc, False)
            except CX as e:
                self.logger.error(e.value)

        self.logger.info("copying images")
        self.tftpgen.copy_images()

        # the actual pxelinux.cfg files, for each interface
        self.logger.info("generating PXE configuration files")
        menu_items = self.tftpgen.get_menu_items()['pxe']
        for x in self.systems:
            self.tftpgen.write_all_system_files(x, menu_items)

        self.logger.info("generating PXE menu structure")
        self.tftpgen.make_pxe_menu()


def get_manager(collection_mgr, logger):
    """
    Creates a manager object to manage an in_tftp server.

    :param collection_mgr: The collection manager which holds all information in the current Cobbler instance.
    :param logger: The logger to audit all actions with.
    :return: The object to manage the server with.
    """
    return InTftpdManager(collection_mgr, logger)
  070701000000AD000081A40000000000000000000000015ECE244400002A1E000000000000000000000000000000000000002E00000000cobbler-3.1.2/cobbler/modules/managers/isc.py """
This is some of the code behind 'cobbler sync'.

Copyright 2006-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>
John Eckersberg <jeckersb@redhat.com>

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 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
"""

from builtins import str
from builtins import object
import time
import copy

import cobbler.templar as templar
import cobbler.utils as utils

from cobbler.cexceptions import CX
from cobbler.utils import _


def register():
    """
    The mandatory Cobbler module registration hook.
    """
    return "manage"


class IscManager(object):

    def what(self):
        """
        Static method to identify the manager.

        :return: Always "isc".
        """
        return "isc"

    def __init__(self, collection_mgr, logger):
        """
        Constructor

        :param collection_mgr: The collection manager to resolve all information with.
        :param logger: The logger to audit all actions with.
        """
        self.logger = logger
        self.collection_mgr = collection_mgr
        self.api = collection_mgr.api
        self.distros = collection_mgr.distros()
        self.profiles = collection_mgr.profiles()
        self.systems = collection_mgr.systems()
        self.settings = collection_mgr.settings()
        self.repos = collection_mgr.repos()
        self.templar = templar.Templar(collection_mgr)
        self.settings_file = utils.dhcpconf_location(self.api)

    def write_dhcp_file(self):
        """
        DHCP files are written when ``manage_dhcp`` is set in ``/etc/cobbler/settings``.
        """

        template_file = "/etc/cobbler/dhcp.template"
        blender_cache = {}

        try:
            f2 = open(template_file, "r")
        except:
            raise CX(_("error reading template: %s") % template_file)
        template_data = ""
        template_data = f2.read()
        f2.close()

        # Use a simple counter for generating generic names where a hostname is not available.
        counter = 0

        # We used to just loop through each system, but now we must loop through each network interface of each system.
        dhcp_tags = {"default": {}}
        yaboot = "/yaboot"

        # FIXME: ding should evolve into the new dhcp_tags dict
        ding = {}
        ignore_macs = []

        for system in self.systems:
            if not system.is_management_supported(cidr_ok=False):
                continue

            profile = system.get_conceptual_parent()
            distro = profile.get_conceptual_parent()

            # if distro is None then the profile is really an image record
            for (name, system_interface) in list(system.interfaces.items()):

                # We make a copy because we may modify it before adding it to the dhcp_tags and we don't want to affect
                # the master copy.
                interface = copy.deepcopy(system_interface)

                if interface["if_gateway"]:
                    interface["gateway"] = interface["if_gateway"]
                else:
                    interface["gateway"] = system.gateway

                mac = interface["mac_address"]

                if interface["interface_type"] in ("bond_slave", "bridge_slave", "bonded_bridge_slave"):

                    if interface["interface_master"] not in system.interfaces:
                        # Can't write DHCP entry; master interface does not exist
                        continue

                    # We may have multiple bonded interfaces, so we need a composite index into ding.
                    name_master = "%s-%s" % (system.name, interface["interface_master"])
                    if name_master not in ding:
                        ding[name_master] = {interface["interface_master"]: []}

                    if len(ding[name_master][interface["interface_master"]]) == 0:
                        ding[name_master][interface["interface_master"]].append(mac)
                    else:
                        ignore_macs.append(mac)

                    ip = system.interfaces[interface["interface_master"]]["ip_address"]
                    netmask = system.interfaces[interface["interface_master"]]["netmask"]
                    dhcp_tag = system.interfaces[interface["interface_master"]]["dhcp_tag"]
                    host = system.interfaces[interface["interface_master"]]["dns_name"]

                    if ip is None or ip == "":
                        for (nam2, int2) in list(system.interfaces.items()):
                            if (nam2.startswith(interface["interface_master"] + ".") and int2["ip_address"] is not None and int2["ip_address"] != ""):
                                ip = int2["ip_address"]
                                break

                    interface["ip_address"] = ip
                    interface["netmask"] = netmask
                else:
                    ip = interface["ip_address"]
                    netmask = interface["netmask"]
                    dhcp_tag = interface["dhcp_tag"]
                    host = interface["dns_name"]

                if distro is not None:
                    interface["distro"] = distro.to_dict()

                if mac is None or mac == "":
                    # can't write a DHCP entry for this system
                    continue

                counter = counter + 1

                # the label the entry after the hostname if possible
                if host is not None and host != "":
                    if name != "eth0":
                        interface["name"] = "%s-%s" % (host, name)
                    else:
                        interface["name"] = "%s" % (host)
                else:
                    interface["name"] = "generic%d" % counter

                # add references to the system, profile, and distro
                # for use in the template
                if system.name in blender_cache:
                    blended_system = blender_cache[system.name]
                else:
                    blended_system = utils.blender(self.api, False, system)
                    blender_cache[system.name] = blended_system

                interface["next_server"] = blended_system["next_server"]
                interface["filename"] = blended_system.get("filename")
                interface["netboot_enabled"] = blended_system["netboot_enabled"]
                interface["hostname"] = blended_system["hostname"]
                interface["owner"] = blended_system["name"]
                interface["enable_gpxe"] = blended_system["enable_gpxe"]
                interface["name_servers"] = blended_system["name_servers"]
                interface["mgmt_parameters"] = blended_system["mgmt_parameters"]

                # Explicitly declare filename for other (non x86) archs as in DHCP discover package mostly the
                # architecture cannot be differed due to missing bits...
                if distro is not None and not interface.get("filename"):
                    if distro.arch == "ppc" or  distro.arch == "ppc64":
                        interface["filename"] = yaboot
                    elif distro.arch == "ppc64le":
                        interface["filename"] = "grub/grub.ppc64le"
                    elif distro.arch == "aarch64":
                        interface["filename"] = "grub/grubaa64.efi"

                if not self.settings.always_write_dhcp_entries:
                    if not interface["netboot_enabled"] and interface['static']:
                        continue

                if dhcp_tag == "":
                    dhcp_tag = blended_system.get("dhcp_tag", "")
                    if dhcp_tag == "":
                        dhcp_tag = "default"

                if dhcp_tag not in dhcp_tags:
                    dhcp_tags[dhcp_tag] = {
                        mac: interface
                    }
                else:
                    dhcp_tags[dhcp_tag][mac] = interface

        # Remove macs from redundant slave interfaces from dhcp_tags otherwise you get duplicate ip's in the installer.
        for dt in list(dhcp_tags.keys()):
            for m in list(dhcp_tags[dt].keys()):
                if m in ignore_macs:
                    del dhcp_tags[dt][m]

        # we are now done with the looping through each interface of each system
        metadata = {
            "date": time.asctime(time.gmtime()),
            "cobbler_server": "%s:%s" % (self.settings.server, self.settings.http_port),
            "next_server": self.settings.next_server,
            "yaboot": yaboot,
            "dhcp_tags": dhcp_tags
        }

        if self.logger is not None:
            self.logger.info("generating %s" % self.settings_file)
        self.templar.render(template_data, metadata, self.settings_file, None)

    def regen_ethers(self):
        """
        ISC/BIND doesn't use this. It is there for compability reasons with other managers.
        """
        pass

    def sync_dhcp(self):
        """
        This syncs the dhcp server with it's new config files. Basically this restarts the service to apply the changes.
        """
        restart_dhcp = str(self.settings.restart_dhcp).lower()
        service_name = utils.dhcp_service_name(self.api)
        if restart_dhcp != "0":
            rc = utils.subprocess_call(self.logger, "dhcpd -t -q", shell=True)
            if rc != 0:
                error_msg = "dhcpd -t failed"
                self.logger.error(error_msg)
                raise CX(error_msg)
            service_restart = "service %s restart" % service_name
            rc = utils.subprocess_call(self.logger, service_restart, shell=True)
            if rc != 0:
                error_msg = "%s failed" % service_name
                self.logger.error(error_msg)
                raise CX(error_msg)


def get_manager(collection_mgr, logger):
    """
    Creates a manager object to manage an isc dhcp server.

    :param collection_mgr: The collection manager which holds all information in the current Cobbler instance.
    :param logger: The logger to audit all actions with.
    :return: The object to manage the server with.
    """
    return IscManager(collection_mgr, logger)
  070701000000AE000081A40000000000000000000000015ECE244400000CF8000000000000000000000000000000000000003200000000cobbler-3.1.2/cobbler/modules/managers/ndjbdns.py # coding=utf-8
"""
This is some of the code behind 'cobbler sync'.

Copyright 2014, Mittwald CM Service GmbH & Co. KG
Martin Helmich <m.helmich@mittwald.de>
Daniel Krämer <d.kraemer@mittwald.de>

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
"""


from builtins import object
import os
import subprocess

import cobbler.clogger as clogger
import cobbler.templar as templar


def register():
    """
    The mandatory Cobbler module registration hook.
    """
    return "manage"


def get_manager(config, logger):
    """
    Get the DNS Manger object.

    :param config: Unused parameter.
    :param logger: The logger to audit the actions with.
    :return: The manager object.
    """
    return NDjbDnsManager(config, logger)


class NDjbDnsManager(object):

    def __init__(self, config, logger):
        """
        This class can manage a New-DJBDNS server.

        :param config: Currently an usused parameter.
        :param logger: The logger to audit the actions with.
        """
        self.logger = logger
        if self.logger is None:
            self.logger = clogger.Logger()

        self.config = config
        self.systems = config.systems()
        self.templar = templar.Templar(config)

    def what(self):
        """
        Static method to identify the manager.

        :return: Always "ndjbdns".
        """
        return "ndjbdns"

    def regen_hosts(self):
        """
        Empty stub method to have compability with other dns managers who need this.
        """
        pass

    def write_dns_files(self):
        """
        This writes the new dns configuration file to the disc.
        """
        template_file = '/etc/cobbler/ndjbdns.template'
        data_file = '/etc/ndjbdns/data'
        data_dir = os.path.dirname(data_file)

        a_records = {}

        with open(template_file, 'r') as f:
            template_content = f.read()

        for system in self.systems:
            for (name, interface) in list(system.interfaces.items()):
                host = interface['dns_name']
                ip = interface['ip_address']

                if host:
                    if host in a_records:
                        raise Exception('Duplicate DNS name: %s' % host)
                    a_records[host] = ip

        template_vars = {'forward': []}
        for host, ip in list(a_records.items()):
            template_vars['forward'].append((host, ip))

        self.templar.render(template_content, template_vars, data_file)

        p = subprocess.Popen(['/usr/bin/tinydns-data'], cwd=data_dir)
        p.communicate()

        if p.returncode != 0:
            raise Exception('Could not regenerate tinydns data file.')
070701000000AF000081A40000000000000000000000015ECE244400000DC2000000000000000000000000000000000000003300000000cobbler-3.1.2/cobbler/modules/managers/tftpd_py.py    """
This is some of the code behind 'cobbler sync'.

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
"""


from builtins import object
import cobbler.clogger as clogger
import cobbler.tftpgen as tftpgen
import cobbler.templar as templar

# TODO: Deprecate and remove the Python TFTP Server which is delivered with Cobbler.

def register():
    """
    The mandatory Cobbler module registration hook.
    """
    return "manage"


class TftpdPyManager(object):

    def what(self):
        return "tftpd"

    def __init__(self, collection_mgr, logger):
        """
        Constructor

        :param collection_mgr: The instance who holds all the information from Cobbler.
        :param logger: The logger to audit all actions with.
        """
        self.logger = logger
        if self.logger is None:
            self.logger = clogger.Logger()

        self.collection_mgr = collection_mgr
        self.bootloc = collection_mgr.settings().tftpboot_location
        self.templar = templar.Templar(collection_mgr)

    def regen_hosts(self):
        """
        This function is just a stub for compliance with the other tftp server.
        """
        pass

    def write_dns_files(self):
        """
        This function is just a stub for compliance with the other tftp server.
        """
        pass

    def write_boot_files_distro(self, distro):
        """
        Copy files in profile["boot_files"] into /tftpboot.  Used for vmware currently.
        """
        pass        # not used.  Handed by tftp.py

    def write_boot_files(self):
        """
        Copy files in profile["boot_files"] into /tftpboot.  Used for vmware currently.
        """
        pass        # not used.  Handed by tftp.py

    def add_single_distro(self, distro):
        """
        This function is just a stub for compliance with the other tftp server.

        :param distro: This parameter is unused.
        """
        pass        # not used

    def sync(self, verbose=True):
        """
        Write out files to /tftpdboot.  Mostly unused for the python server

        :param verbose: This parameter is unused.
        """
        self.logger.info("copying bootloaders")
        tftpgen.TFTPGen(self.collection_mgr, self.logger).copy_bootloaders(self.bootloc)

    def update_netboot(self, name):
        """
        Write out files to /tftpdboot.  Unused for the python server
        """
        pass

    def add_single_system(self, name):
        """
        Write out files to /tftpdboot.  Unused for the python server
        """
        pass


def get_manager(collection_mgr, logger):
    """
    Get the manager object for the tftp server.

    :param collection_mgr: The instance who holds all information about Cobbler.
    :param logger: The logger to audit the actions.
    :return: The tftp manager instance.
    """
    return TftpdPyManager(collection_mgr, logger)
  070701000000B0000081A40000000000000000000000015ECE244400001430000000000000000000000000000000000000003A00000000cobbler-3.1.2/cobbler/modules/nsupdate_add_system_post.py # -*- coding: utf-8 -*-
#
# Adrian Brzezinski <adrbxx@gmail.com>
# License: GPLv2+
#
# Replace (or remove) records in DNS zone for systems created (or removed) by Cobbler
#

# DNS toolkit for Python
#   - python-dnspython (Debian)
#   - python-dns (RH/CentOS)

from builtins import str
import dns.query
import dns.tsigkeyring
import dns.update
import dns.resolver
import time

from cobbler.cexceptions import CX

logf = None


def nslog(msg):
    """
    Log a message to the logger.

    :param msg: The message to log.
    """
    if logf is not None:
        logf.write(msg)


def register():
    """
    This method is the obligatory Cobbler registration hook.

    :return: The trigger name or an empty string.
    :rtype: str
    """
    if __name__ == "cobbler.modules.nsupdate_add_system_post":
        return "/var/lib/cobbler/triggers/add/system/post/*"
    elif __name__ == "cobbler.modules.nsupdate_delete_system_pre":
        return "/var/lib/cobbler/triggers/delete/system/pre/*"
    else:
        return ''


def run(api, args, logger):
    """
    This method executes the trigger, meaning in this case that it updates the dns configuration.

    :param api: The api to read metadata from.
    :param args: Metadata to log.
    :param logger: The logger to audit the action with.
    :return: "0" on success or a skipped task. If the task failed or problems occurred then an exception is raised.
    """
    global logf

    action = None
    if __name__ == "cobbler.modules.nsupdate_add_system_post":
        action = "replace"
    elif __name__ == "cobbler.modules.nsupdate_delete_system_pre":
        action = "delete"
    else:
        return 0

    settings = api.settings()

    if not str(settings.nsupdate_enabled).lower() in ["1", "yes", "y", "true"]:
        return 0

    # read our settings
    if str(settings.nsupdate_log) is not None:
        logf = open(str(settings.nsupdate_log), "a+")
        nslog(">> starting %s %s\n" % (__name__, args))

    if str(settings.nsupdate_tsig_key) is not None:
        keyring = dns.tsigkeyring.from_text({
            str(settings.nsupdate_tsig_key[0]): str(settings.nsupdate_tsig_key[1])
        })
    else:
        keyring = None

    if str(settings.nsupdate_tsig_algorithm) is not None:
        keyring_algo = str(settings.nsupdate_tsig_algorithm)
    else:
        keyring_algo = "HMAC-MD5.SIG-ALG.REG.INT"
    # nslog( " algo %s, key %s : %s \n" % (keyring_algo,str(settings.nsupdate_tsig_key[0]),
    #                                      str(settings.nsupdate_tsig_key[1])) )

    # get information about this system
    system = api.find_system(args[0])

    # process all interfaces and perform dynamic update for those with --dns-name
    for (name, interface) in list(system.interfaces.items()):
        host = interface["dns_name"]
        host_ip = interface["ip_address"]

        if not system.is_management_supported(cidr_ok=False):
            continue
        if not host:
            continue
        if host.find(".") == -1:
            continue

        domain = ".".join(host.split(".")[1:])    # get domain from host name
        host = host.split(".")[0]                   # strip domain

        nslog("processing interface %s : %s\n" % (name, interface))
        nslog("lookup for '%s' domain master nameserver... " % domain)

        # get master nameserver ip address
        answers = dns.resolver.query(domain + '.', dns.rdatatype.SOA)
        soa_mname = answers[0].mname
        soa_mname_ip = None

        for rrset in answers.response.additional:
            if rrset.name == soa_mname:
                soa_mname_ip = str(rrset.items[0].address)

        if soa_mname_ip is None:
            ip = dns.resolver.query(soa_mname, "A")
            for answer in ip:
                soa_mname_ip = answer.to_text()

        nslog("%s [%s]\n" % (soa_mname, soa_mname_ip))
        nslog("%s dns record for %s.%s [%s] .. " % (action, host, domain, host_ip))

        # try to update zone with new record
        update = dns.update.Update(domain + '.', keyring=keyring, keyalgorithm=keyring_algo)

        if action == "replace":
            update.replace(host, 3600, dns.rdatatype.A, host_ip)
            update.replace(host, 3600, dns.rdatatype.TXT, '"cobbler (date: %s)"' % (time.strftime("%c")))
        else:
            update.delete(host, dns.rdatatype.A, host_ip)
            update.delete(host, dns.rdatatype.TXT)

        try:
            response = dns.query.tcp(update, soa_mname_ip)
            rcode_txt = dns.rcode.to_text(response.rcode())
        except dns.tsig.PeerBadKey:
            nslog("failed (refused key)\n>> done\n")
            logf.close()

            raise CX("nsupdate failed, server '%s' refusing our key" % soa_mname)

        nslog('response code: %s\n' % rcode_txt)

        # notice user about update failure
        if response.rcode() != dns.rcode.NOERROR:
            nslog('>> done\n')
            logf.close()

            raise CX("nsupdate failed (response: %s, name: %s.%s, ip %s, name server %s)"
                     % (rcode_txt, host, domain, host_ip, soa_mname))

    nslog('>> done\n')
    logf.close()
    return 0
070701000000B1000081A40000000000000000000000015ECE244400001431000000000000000000000000000000000000003C00000000cobbler-3.1.2/cobbler/modules/nsupdate_delete_system_pre.py   # -*- coding: utf-8 -*-
#
# Adrian Brzezinski <adrbxx@gmail.com>
# License: GPLv2+
#
# Replace (or remove) records in DNS zone for systems created (or removed) by Cobbler
#

# DNS toolkit for Python
#   - python-dnspython (Debian)
#   - python-dns (RH/CentOS)

from builtins import str
import dns.query
import dns.tsigkeyring
import dns.update
import dns.resolver
import time

from cobbler.cexceptions import CX

logf = None


def nslog(msg):
    """
    Log a message to the logger.

    :param msg: The message to log.
    """
    if logf is not None:
        logf.write(msg)


def register():
    """
    This method is the obligatory Cobbler registration hook.

    :return: The trigger name or an empty string.
    :rtype: str
    """
    if __name__ == "cobbler.modules.nsupdate_add_system_post":
        return "/var/lib/cobbler/triggers/add/system/post/*"
    elif __name__ == "cobbler.modules.nsupdate_delete_system_pre":
        return "/var/lib/cobbler/triggers/delete/system/pre/*"
    else:
        return ''


def run(api, args, logger):
    """
    This method executes the trigger, meaning in this case that it updates the dns configuration.

    :param api: The api to read metadata from.
    :param args: Metadata to log.
    :param logger: The logger to audit the action with.
    :return: "0" on success or a skipped task. If the task failed or problems occurred then an exception is raised.
    """
    global logf

    action = None
    if __name__ == "cobbler.modules.nsupdate_add_system_post":
        action = "replace"
    elif __name__ == "cobbler.modules.nsupdate_delete_system_pre":
        action = "delete"
    else:
        return 0

    settings = api.settings()

    if not str(settings.nsupdate_enabled).lower() in ["1", "yes", "y", "true"]:
        return 0

    # Read our settings
    if str(settings.nsupdate_log) is not None:
        logf = open(str(settings.nsupdate_log), "a+")
        nslog(">> starting %s %s\n" % (__name__, args))

    if str(settings.nsupdate_tsig_key) is not None:
        keyring = dns.tsigkeyring.from_text({
            str(settings.nsupdate_tsig_key[0]): str(settings.nsupdate_tsig_key[1])
        })
    else:
        keyring = None

    if str(settings.nsupdate_tsig_algorithm) is not None:
        keyring_algo = str(settings.nsupdate_tsig_algorithm)
    else:
        keyring_algo = "HMAC-MD5.SIG-ALG.REG.INT"
    # nslog( " algo %s, key %s : %s \n" % (keyring_algo, str(settings.nsupdate_tsig_key[0]),
    #                                      str(settings.nsupdate_tsig_key[1])) )

    # get information about this system
    system = api.find_system(args[0])

    # process all interfaces and perform dynamic update for those with --dns-name
    for (name, interface) in list(system.interfaces.items()):
        host = interface["dns_name"]
        host_ip = interface["ip_address"]

        if not system.is_management_supported(cidr_ok=False):
            continue
        if not host:
            continue
        if host.find(".") == -1:
            continue

        domain = ".".join(host.split(".")[1:])    # get domain from host name
        host = host.split(".")[0]                   # strip domain

        nslog("processing interface %s : %s\n" % (name, interface))
        nslog("lookup for '%s' domain master nameserver... " % domain)

        # get master nameserver ip address
        answers = dns.resolver.query(domain + '.', dns.rdatatype.SOA)
        soa_mname = answers[0].mname
        soa_mname_ip = None

        for rrset in answers.response.additional:
            if rrset.name == soa_mname:
                soa_mname_ip = str(rrset.items[0].address)

        if soa_mname_ip is None:
            ip = dns.resolver.query(soa_mname, "A")
            for answer in ip:
                soa_mname_ip = answer.to_text()

        nslog("%s [%s]\n" % (soa_mname, soa_mname_ip))
        nslog("%s dns record for %s.%s [%s] .. " % (action, host, domain, host_ip))

        # try to update zone with new record
        update = dns.update.Update(domain + '.', keyring=keyring, keyalgorithm=keyring_algo)

        if action == "replace":
            update.replace(host, 3600, dns.rdatatype.A, host_ip)
            update.replace(host, 3600, dns.rdatatype.TXT, '"cobbler (date: %s)"' % (time.strftime("%c")))
        else:
            update.delete(host, dns.rdatatype.A, host_ip)
            update.delete(host, dns.rdatatype.TXT)

        try:
            response = dns.query.tcp(update, soa_mname_ip)
            rcode_txt = dns.rcode.to_text(response.rcode())
        except dns.tsig.PeerBadKey:
            nslog("failed (refused key)\n>> done\n")
            logf.close()

            raise CX("nsupdate failed, server '%s' refusing our key" % soa_mname)

        nslog('response code: %s\n' % rcode_txt)

        # notice user about update failure
        if response.rcode() != dns.rcode.NOERROR:
            nslog('>> done\n')
            logf.close()

            raise CX("nsupdate failed (response: %s, name: %s.%s, ip %s, name server %s)"
                     % (rcode_txt, host, domain, host_ip, soa_mname))

    nslog('>> done\n')
    logf.close()
    return 0
   070701000000B2000081A40000000000000000000000015ECE244400000EA0000000000000000000000000000000000000002B00000000cobbler-3.1.2/cobbler/modules/scm_track.py    """
(C) 2009, Red Hat Inc.
Michael DeHaan <michael.dehaan AT gmail>

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
"""


from builtins import str
import os

import cobbler.utils as utils

from cobbler.cexceptions import CX


def register():
    """
    This pure python trigger acts as if it were a legacy shell-trigger, but is much faster. The return of this method
    indicates the trigger type
    :return: Always: ``/var/lib/cobbler/triggers/change/*``
    :rtype: str
    """

    return "/var/lib/cobbler/triggers/change/*"


def run(api, args, logger):
    """
    Runs the trigger, meaning in this case track any changed which happen to a config or data file.

    :param api: The api instance of the Cobbler server. Used to look up if scm_track_enabled is true.
    :param args: The parameter is currently unused for this trigger.
    :param logger: The logger to audit the action with.
    :return: 0 on success, otherwise an exception is risen.
    """
    settings = api.settings()
    scm_track_enabled = str(settings.scm_track_enabled).lower()

    if scm_track_enabled not in ["y", "yes", "1", "true"]:
        # feature disabled
        return 0

    mode = str(settings.scm_track_mode).lower()
    author = str(settings.scm_track_author)
    push_script = str(settings.scm_push_script)

    if mode == "git":
        old_dir = os.getcwd()
        os.chdir("/var/lib/cobbler")
        if os.getcwd() != "/var/lib/cobbler":
            raise CX("danger will robinson")

        if not os.path.exists("/var/lib/cobbler/.git"):
            utils.subprocess_call(logger, "git init", shell=True)

        # FIXME: If we know the remote user of an XMLRPC call use them as the author
        utils.subprocess_call(logger, "git add --all collections", shell=True)
        utils.subprocess_call(logger, "git add --all templates", shell=True)
        utils.subprocess_call(logger, "git add --all snippets", shell=True)
        utils.subprocess_call(logger, "git commit -m 'API update' --author '{0}'".format(author), shell=True)

        if push_script:
            utils.subprocess_call(logger, push_script, shell=True)

        os.chdir(old_dir)
        return 0

    elif mode == "hg":
        # use mercurial
        old_dir = os.getcwd()
        os.chdir("/var/lib/cobbler")
        if os.getcwd() != "/var/lib/cobbler":
            raise CX("danger will robinson")

        if not os.path.exists("/var/lib/cobbler/.hg"):
            utils.subprocess_call(logger, "hg init", shell=True)

        # FIXME: If we know the remote user of an XMLRPC call use them as the user
        utils.subprocess_call(logger, "hg add collections", shell=True)
        utils.subprocess_call(logger, "hg add templates", shell=True)
        utils.subprocess_call(logger, "hg add snippets", shell=True)
        utils.subprocess_call(logger, "hg commit -m 'API update' --user '{0}'".format(author), shell=True)

        if push_script:
            utils.subprocess_call(logger, push_script, shell=True)

        os.chdir(old_dir)
        return 0

    else:
        raise CX("currently unsupported SCM type: %s" % mode)
070701000000B3000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000002A00000000cobbler-3.1.2/cobbler/modules/serializers 070701000000B4000081A40000000000000000000000015ECE244400000000000000000000000000000000000000000000003600000000cobbler-3.1.2/cobbler/modules/serializers/__init__.py 070701000000B5000081A40000000000000000000000015ECE244400001550000000000000000000000000000000000000003200000000cobbler-3.1.2/cobbler/modules/serializers/file.py """
Cobbler's file-based object serializer.
As of 9/2014, this is Cobbler's default serializer and the most stable one.
It uses multiple JSON files in /var/lib/cobbler/collections/distros, profiles, etc

Copyright 2006-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""

from past.builtins import cmp
import os
import glob
import simplejson
import yaml

import cobbler.api as capi
from cobbler.cexceptions import CX


libpath = "/var/lib/cobbler/collections"


def register():
    """
    The mandatory Cobbler module registration hook.
    """
    return "serializer"


def what():
    """
    Module identification function
    """
    return "serializer/file"


def serialize_item(collection, item):
    """
    Save a collection item to file system

    :param collection: collection
    :param item: collection item
    """

    if not item.name:
        raise CX("name unset for item!")

    collection_types = collection.collection_types()
    filename = os.path.join(libpath, collection_types, item.name + ".json")

    _dict = item.to_dict()

    if capi.CobblerAPI().settings().serializer_pretty_json:
        sort_keys = True
        indent = 4
    else:
        sort_keys = False
        indent = None

    filename += ".json"
    _dict = item.to_dict()
    fd = open(filename, "w+")
    data = simplejson.dumps(_dict, encoding="utf-8", sort_keys=sort_keys, indent=indent)
    fd.write(data)

    fd.close()


def serialize_delete(collection, item):
    """
    Delete a collection item from file system.

    :param collection: collection
    :param item: collection item
    """

    collection_types = collection.collection_types()
    filename = os.path.join(libpath, collection_types, item.name + ".json")

    filename += ".json"
    if os.path.exists(filename):
        os.remove(filename)


def serialize(collection):
    """
    Save a collection to file system

    :param collection: collection
    """

    # do not serialize settings
    ctype = collection.collection_type()
    if ctype != "settings":
        for x in collection:
            serialize_item(collection, x)


def deserialize_raw(collection_types):
    """
    Loads a collection from the disk.

    :param collection_types: The type of collection to load.
    :return: The loaded dictionary.
    """
    # FIXME: code to load settings file should not be replicated in all serializer subclasses.
    if collection_types == "settings":
        fd = open("/etc/cobbler/settings")
        _dict = yaml.safe_load(fd.read())
        fd.close()

        # include support
        for ival in _dict.get("include", []):
            for ifile in glob.glob(ival):
                with open(ifile, 'r') as fd:
                    _dict.update(yaml.safe_load(fd.read()))

        return _dict
    else:
        results = []

        path = os.path.join(libpath, collection_types)
        all_files = glob.glob("%s/*.json" % path)

        for f in all_files:
            fd = open(f)
            json_data = fd.read()
            _dict = simplejson.loads(json_data, encoding='utf-8')
            results.append(_dict)
            fd.close()
        return results


def filter_upgrade_duplicates(file_list):
    """
    In a set of files, some ending with .json, some not, return the list of files with the .json ones taking priority
    over the ones that are not.

    :param file_list: The list of files to remove duplicates from.
    :return: The filtered list of files. Normally this should only return ``.json``-Files.
    """
    bases = {}
    for f in file_list:
        basekey = f.replace(".json", "")
        if f.endswith(".json"):
            bases[basekey] = f
        else:
            lookup = bases.get(basekey, "")
            if not lookup.endswith(".json"):
                bases[basekey] = f
    return list(bases.values())


def deserialize(collection, topological=True):
    """
    Load a collection from file system.

    :param collection: The collection type the deserialize
    :param topological: If the dict/list should be sorted or not.
    :type topological: bool
    """

    datastruct = deserialize_raw(collection.collection_types())
    if topological and type(datastruct) == list:
        # FIXME
        # datastruct.sort(key=__depth_cmp)
        pass
    if type(datastruct) == dict:
        collection.from_dict(datastruct)
    elif type(datastruct) == list:
        collection.from_list(datastruct)


def __depth_cmp(item1, item2):
    """
    The compare function to sort a dict.

    :param item1: The first item to compare.
    :param item2: The second item to compare.
    :return: Weather the first or second item is bigger!
    """
    d1 = item1.get("depth", 1)
    d2 = item2.get("depth", 1)
    return cmp(d1, d2)

# EOF
070701000000B6000081A40000000000000000000000015ECE24440000115A000000000000000000000000000000000000003500000000cobbler-3.1.2/cobbler/modules/serializers/mongodb.py  """
Cobbler's Mongo database based object serializer.
Experimental version.

Copyright 2006-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>
James Cammarata <jimi@sngx.net>

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
"""

from past.builtins import cmp
from future import standard_library
standard_library.install_aliases()
from configparser import ConfigParser

pymongo_loaded = False
try:
    from pymongo import Connection
    pymongo_loaded = True
except:
    # FIXME: log message
    pass

import yaml

from cobbler.cexceptions import CX

mongodb = None


def __connect():
    """
    Reads the config file for mongodb and then connects to the mongodb.
    """
    cp = ConfigParser()
    cp.read("/etc/cobbler/mongodb.conf")

    host = cp.get("connection", "host")
    port = int(cp.get("connection", "port"))
    # TODO: detect connection error
    global mongodb
    try:
        mongodb = Connection(host, port)['cobbler']
    except:
        # FIXME: log error
        raise CX("Unable to connect to Mongo database")


def register():
    """
    The mandatory Cobbler module registration hook.
    """
    # FIXME: only run this if enabled.
    if not pymongo_loaded:
        return ""
    return "serializer"


def what():
    """
    Module identification function
    """
    return "serializer/mongodb"


def serialize_item(collection, item):
    """
    Save a collection item to database.

    :param collection: collection
    :param item: collection item
    """

    __connect()
    collection = mongodb[collection.collection_type()]
    data = collection.find_one({'name': item.name})
    if data:
        collection.update({'name': item.name}, item.to_dict())
    else:
        collection.insert(item.to_dict())


def serialize_delete(collection, item):
    """
    Delete a collection item from database.

    :param collection: collection
    :param item: collection item
    """

    __connect()
    collection = mongodb[collection.collection_type()]
    collection.remove({'name': item.name})


def serialize(collection):
    """
    Save a collection to database

    :param collection: collection
    """

    # TODO: error detection
    ctype = collection.collection_type()
    if ctype != "settings":
        for x in collection:
            serialize_item(collection, x)


def deserialize_raw(collection_type):
    """
    Get a collection from mongodb and parse it into an object.

    :param collection_type: The collection type to fetch.
    :return: The first element of the collection requested.
    """
    # FIXME: code to load settings file should not be replicated in all serializer subclasses
    if collection_type == "settings":
        fd = open("/etc/cobbler/settings")
        _dict = yaml.safe_load(fd.read())
        fd.close()
        return _dict
    else:
        __connect()
        collection = mongodb[collection_type]
        return collection.find()


def deserialize(collection, topological=True):
    """
    Load a collection from the database.

    :param collection: The collection to deserialize.
    :param topological: This sorts the returned dict.
    :type topological: bool
    """

    datastruct = deserialize_raw(collection.collection_type())
    if topological and type(datastruct) == list:
        datastruct.sort(__depth_cmp)
    if type(datastruct) == dict:
        collection.from_dict(datastruct)
    elif type(datastruct) == list:
        collection.from_list(datastruct)


def __depth_cmp(item1, item2):
    """
    The comparison function to sort a dict.

    :param item1: The first item to compare.
    :param item2: The second item to compare.
    :return: Weather the first or second item is bigger.
    """
    d1 = item1.get("depth", 1)
    d2 = item2.get("depth", 1)
    return cmp(d1, d2)

# EOF
  070701000000B7000081A40000000000000000000000015ECE244400000BEB000000000000000000000000000000000000003C00000000cobbler-3.1.2/cobbler/modules/sync_post_restart_services.py   from builtins import str
import cobbler.module_loader as module_loader
import cobbler.utils as utils


def register():
    """
    This pure python trigger acts as if it were a legacy shell-trigger, but is much faster. The return of this method
    indicates the trigger type

    :return: Always ``/var/lib/cobbler/triggers/sync/post/*``
    :rtype: str
    """

    return "/var/lib/cobbler/triggers/sync/post/*"


def run(api, args, logger):
    """
    Run the trigger via this method, meaning in this case that depending on the settings dns and/or dhcp services are
    restarted.

    :param api: The api to resolve settings.
    :param args: This parameter is not used currently.
    :param logger: The logger to audit the action with.
    :return: The return code of the service restarts.
    :rtype: int
    """
    settings = api.settings()

    manage_dhcp = str(settings.manage_dhcp).lower()
    manage_dns = str(settings.manage_dns).lower()
    restart_dhcp = str(settings.restart_dhcp).lower()
    restart_dns = str(settings.restart_dns).lower()

    which_dhcp_module = module_loader.get_module_name("dhcp", "module").strip()
    which_dns_module = module_loader.get_module_name("dns", "module").strip()

    # special handling as we don't want to restart it twice
    has_restarted_dnsmasq = False

    rc = 0
    if manage_dhcp != "0":
        if which_dhcp_module == "managers.isc":
            if restart_dhcp != "0":
                rc = utils.subprocess_call(logger, "dhcpd -t -q", shell=True)
                if rc != 0:
                    logger.error("dhcpd -t failed")
                    return 1
                dhcp_service_name = utils.dhcp_service_name(api)
                dhcp_restart_command = "service %s restart" % dhcp_service_name
                rc = utils.subprocess_call(logger, dhcp_restart_command, shell=True)
        elif which_dhcp_module == "managers.dnsmasq":
            if restart_dhcp != "0":
                rc = utils.subprocess_call(logger, "service dnsmasq restart")
                has_restarted_dnsmasq = True
        else:
            logger.error("unknown DHCP engine: %s" % which_dhcp_module)
            rc = 411

    if manage_dns != "0" and restart_dns != "0":
        if which_dns_module == "managers.bind":
            named_service_name = utils.named_service_name(api)
            dns_restart_command = "service %s restart" % named_service_name
            rc = utils.subprocess_call(logger, dns_restart_command, shell=True)
        elif which_dns_module == "managers.dnsmasq" and not has_restarted_dnsmasq:
            rc = utils.subprocess_call(logger, "service dnsmasq restart", shell=True)
        elif which_dns_module == "managers.dnsmasq" and has_restarted_dnsmasq:
            rc = 0
        elif which_dns_module == "managers.ndjbdns":
            # N-DJBDNS picks up configuration changes automatically and does not need to be restarted.
            pass
        else:
            logger.error("unknown DNS engine: %s" % which_dns_module)
            rc = 412

    return rc
 070701000000B8000081A40000000000000000000000015ECE244400003136000000000000000000000000000000000000002700000000cobbler-3.1.2/cobbler/power_manager.py    """
Power management library.  Encapsulate the logic to run power management
commands so that the Cobbler user does not have to remember different power
management tools syntaxes.  This makes rebooting a system for OS installation
much easier.

Copyright 2008-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""

from builtins import range
from builtins import object
import glob
import os
from pathlib import Path
import stat
import re
import time

from cobbler.cexceptions import CX
from cobbler import clogger
from cobbler import utils

# Try the power command 3 times before giving up.
# Some power switches are flakey

POWER_RETRIES = 3


def get_power_types():
    """
    Get possible power management types.

    :returns: Possible power management types
    :rtype: list
    """

    power_types = []
    fence_files = glob.glob("/usr/sbin/fence_*") + glob.glob("/sbin/fence_*")
    for x in fence_files:
        fence_name = os.path.basename(x).replace("fence_", "")
        if fence_name not in power_types:
            power_types.append(fence_name)
    power_types.sort()
    return power_types


def validate_power_type(power_type):
    """
    Check if a power management type is valid.

    :param power_type: Power management type.
    :type power_type: str
    :raise CX: if power management type is invalid
    """

    power_types = get_power_types()
    if not power_types:
        raise CX("you need to have fence-agents installed")
    if power_type not in power_types:
        raise CX("power management type must be one of: %s" % ",".join(power_types))


def get_power_command(power_type):
    """
    Get power management command path

    :param power_type: power management type
    :type power_type: str
    :returns: power management command path
    :rtype: str or None
    """

    if power_type:
        # try /sbin, then /usr/sbin
        power_path1 = "/sbin/fence_%s" % power_type
        power_path2 = "/usr/sbin/fence_%s" % power_type
        for power_path in (power_path1, power_path2):
            if os.path.isfile(power_path) and os.access(power_path, os.X_OK):
                return power_path
    return None


class PowerManager(object):
    """
    Handles power management in systems
    """

    def __init__(self, api, collection_mgr, logger=None):
        """
        Constructor

        :param api: Cobbler API
        :type api: CobblerAPI
        :param collection_mgr: collection manager
        :type collection_mgr: CollectionManager
        :param logger: A logger object to audit the actions of the object instance.
        :type logger: Logger
        """

        self.collection_mgr = collection_mgr
        self.settings = collection_mgr.settings()
        self.api = api
        if logger is None:
            logger = clogger.Logger()
        self.logger = logger

    def _check_power_conf(self, system, logger, user, password):
        """
        Prints a warning for invalid power configurations.

        :param user: The username for the power command of the system. This overrules the one specified in the system.
        :param password: The password for the power command of the system. This overrules the one specified in the
                         system.
        :param system: Cobbler system
        :type system: System
        :param logger: logger
        :type logger: Logger
        """

        if (system.power_pass or password) and system.power_identity_file:
            logger.warning("Both password and identity-file are specified")
        if system.power_identity_file:
            ident_path = Path(system.power_identity_file)
            if not ident_path.exists():
                logger.warning("identity-file " + system.power_identity_file + " does not exist")
            else:
                ident_stat = stat.S_IMODE(ident_path.stat().st_mode)
                if (ident_stat & stat.S_IRWXO) or (ident_stat & stat.S_IRWXG):
                    logger.warning("identity-file " + system.power_identity_file +
                                   " must not be read/write/exec by group or others")
        if not system.power_address:
            logger.warning("power-address is missing")
        if not (system.power_user or user):
            logger.warning("power-user is missing")
        if not (system.power_pass or password) and not system.power_identity_file:
            logger.warning("neither power-identity-file nor power-password specified")

    def _get_power_input(self, system, power_operation, logger, user, password):
        """
        Creates an option string for the fence agent from the system data. This is an internal method.

        :param system: Cobbler system
        :type system: System
        :param power_operation: power operation. Valid values: on, off, status. Rebooting is implemented as a set of 2
                                operations (off and on) in a higher level method.
        :type power_operation: str
        :param logger: logger
        :type logger: Logger
        :param user: user to override system.power_user
        :type user: str
        :param password: password to override system.power_pass
        :type password: str
        :return: The option string for the fencer agent.
        :rtype: str
        """

        self._check_power_conf(system, logger, user, password)
        power_input = ""
        if power_operation is None or power_operation not in ['on', 'off', 'status']:
            raise CX("invalid power operation")
        power_input += "action=" + power_operation + "\n"
        if system.power_address:
            power_input += "ip=" + system.power_address + "\n"
        if system.power_user:
            power_input += "username=" + system.power_user + "\n"
        if system.power_id:
            power_input += "plug=" + system.power_id + "\n"
        if system.power_pass:
            power_input += "password=" + system.power_pass + "\n"
        if system.power_identity_file:
            power_input += "identity-file=" + system.power_identity_file + "\n"
        if system.power_options:
            power_input += system.power_options + "\n"
        return power_input

    def _power(self, system, power_operation, user=None, password=None, logger=None):
        """
        Performs a power operation on a system.
        Internal method

        :param system: Cobbler system
        :type system: System
        :param power_operation: power operation. Valid values: on, off, status. Rebooting is implemented as a set of 2
                                operations (off and on) in a higher level method.
        :type power_operation: str
        :param user: power management user. If user and password are not supplied, environment variables
                     COBBLER_POWER_USER and COBBLER_POWER_PASS will be used.
        :type user: str
        :param password: power management password
        :type password: str
        :param logger: logger
        :type logger: Logger
        :return: bool/None if power operation is 'status', return if system is on; otherwise, return None
        :rtype: bool or None
        :raise CX: if there are errors
        """

        if logger is None:
            logger = self.logger

        power_command = get_power_command(system.power_type)
        if not power_command:
            utils.die(logger, "no power type set for system")

        meta = utils.blender(self.api, False, system)
        meta["power_mode"] = power_operation

        logger.info("cobbler power configuration is:")
        logger.info("      type   : %s" % system.power_type)
        logger.info("      address: %s" % system.power_address)
        logger.info("      user   : %s" % system.power_user)
        logger.info("      id     : %s" % system.power_id)
        logger.info("      options: %s" % system.power_options)
        logger.info("identity_file: %s" % system.power_identity_file)

        # if no username/password data, check the environment
        if not system.power_user and not user:
            user = os.environ.get("COBBLER_POWER_USER", "")
        if not system.power_pass and not password:
            password = os.environ.get("COBBLER_POWER_PASS", "")

        power_input = self._get_power_input(system, power_operation, logger, user, password)

        logger.info("power command: %s" % power_command)
        logger.info("power command input: %s" % power_input)

        for x in range(0, POWER_RETRIES):
            output, rc = utils.subprocess_sp(logger, power_command, shell=False, input=power_input)
            # fencing agent returns 2 if the system is powered off
            if rc == 0 or (rc == 2 and power_operation == 'status'):
                # If the desired state is actually a query for the status
                # return different information than command return code
                if power_operation == 'status':
                    match = re.match(r'^(Status:|.+power\s=)\s(on|off)$', output, re.IGNORECASE | re.MULTILINE)
                    if match:
                        power_status = match.groups()[1]
                        if power_status.lower() == 'on':
                            return True
                        else:
                            return False
                    error_msg = "command succeeded (rc=%s), but output ('%s') was not understood" % (rc, output)
                    utils.die(logger, error_msg)
                    raise CX(error_msg)
                return None
            else:
                time.sleep(2)

        if not rc == 0:
            error_msg = "command failed (rc=%s), please validate the physical setup and cobbler config" % rc
            utils.die(logger, error_msg)
            raise CX(error_msg)

    def power_on(self, system, user=None, password=None, logger=None):
        """
        Powers up a system that has power management configured.

        :param system: Cobbler system
        :type system: System
        :param user: power management user
        :type user: str
        :param password: power management password
        :type password: str
        :param logger: logger
        :type logger: Logger
        """

        self._power(system, "on", user, password, logger)

    def power_off(self, system, user=None, password=None, logger=None):
        """
        Powers down a system that has power management configured.

        :param system: Cobbler system
        :type system: System
        :param user: power management user
        :type user: str
        :param password: power management password
        :type password: str
        :param logger: logger
        :type logger: Logger
        """

        self._power(system, "off", user, password, logger)

    def reboot(self, system, user=None, password=None, logger=None):
        """
        Reboot a system that has power management configured.

        :param system: Cobbler system
        :type system: System
        :param user: power management user
        :type user: str
        :param password: power management password
        :type password: str
        :param logger: logger
        :type logger: Logger
        """

        self.power_off(system, user, password, logger=logger)
        time.sleep(5)
        self.power_on(system, user, password, logger=logger)

    def get_power_status(self, system, user=None, password=None, logger=None):
        """
        Get power status for a system that has power management configured.

        :param system: Cobbler system
        :type system: System
        :param user: power management user
        :type user: str
        :param password: power management password
        :type password: str
        :param logger: logger
        :type logger: Logger
        :return: if system is powered on
        :rtype: bool
        """

        return self._power(system, "status", user, password, logger)
  070701000000B9000081A40000000000000000000000015ECE244400023B19000000000000000000000000000000000000002000000000cobbler-3.1.2/cobbler/remote.py   """
Copyright 2007-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""

from past.builtins import cmp
from future import standard_library
standard_library.install_aliases()
from builtins import str
from builtins import range
from builtins import object
from past.utils import old_div
import base64
import errno
import fcntl
import os
import random
import xmlrpc.server
from socketserver import ThreadingMixIn
import stat
from threading import Thread
import time

from cobbler import autoinstall_manager
from cobbler import clogger
from cobbler import configgen
from cobbler.items import package, system, image, profile, repo, mgmtclass, distro, file
from cobbler import tftpgen
from cobbler import utils
from cobbler.cexceptions import CX


EVENT_TIMEOUT = 7 * 24 * 60 * 60        # 1 week
CACHE_TIMEOUT = 10 * 60                 # 10 minutes

# task codes
EVENT_RUNNING = "running"
EVENT_COMPLETE = "complete"
EVENT_FAILED = "failed"

# normal events
EVENT_INFO = "notification"


class CobblerThread(Thread):
    """
    Code for Cobbler's XMLRPC API.
    """
    def __init__(self, event_id, remote, logatron, options, task_name, api):
        """
        This constructor creates a Cobbler thread which then may be run by calling ``run()``.

        :param event_id: The event-id which is associated with this thread.
        :param remote: The Cobbler remote object to execute actions with.
        :param logatron: The logger to audit all actions with.
        :param options: Additional options which can be passed into the Thread.
        :param task_name: The name of the task which will be visible in the logger.
        :param api: The Cobbler api object to resolve information with.
        """
        Thread.__init__(self)
        self.event_id = event_id
        self.remote = remote
        self.logger = logatron
        if options is None:
            options = {}
        self.options = options
        self.task_name = task_name
        self.api = api

    def on_done(self):
        """
        This stub is needed to satisfy the Python inheritance chain.
        """
        pass

    def run(self):
        """
        Run the thread.

        :return: The return code of the action. This may possibly a boolean or a Linux return code.
        """
        time.sleep(1)
        try:
            if utils.run_triggers(self.api, None, "/var/lib/cobbler/triggers/task/%s/pre/*" % self.task_name, self.options, self.logger):
                self.remote._set_task_state(self, self.event_id, EVENT_FAILED)
                return False
            rc = self._run(self)
            if rc is not None and not rc:
                self.remote._set_task_state(self, self.event_id, EVENT_FAILED)
            else:
                self.remote._set_task_state(self, self.event_id, EVENT_COMPLETE)
                self.on_done()
                utils.run_triggers(self.api, None, "/var/lib/cobbler/triggers/task/%s/post/*" % self.task_name, self.options, self.logger)
            return rc
        except:
            utils.log_exc(self.logger)
            self.remote._set_task_state(self, self.event_id, EVENT_FAILED)
            return False

# *********************************************************************


class CobblerXMLRPCInterface(object):
    """
    This is the interface used for all XMLRPC methods, for instance, as used by koan or CobblerWeb.

    Most read-write operations require a token returned from "login". Read operations do not.
    """
    def __init__(self, api):
        """
        Constructor. Requires a Cobbler API handle.

        :param api: The api to use for resolving the required information.
        """
        self.api = api
        self.logger = self.api.logger
        self.token_cache = {}
        self.object_cache = {}
        self.timestamp = self.api.last_modified_time()
        self.events = {}
        self.shared_secret = utils.get_shared_secret()
        random.seed(time.time())
        self.tftpgen = tftpgen.TFTPGen(api._collection_mgr, self.logger)
        self.autoinstall_mgr = autoinstall_manager.AutoInstallationManager(api._collection_mgr)

    def check(self, token):
        """
        Returns a list of all the messages/warnings that are things that admin may want to correct about the
        configuration of the Cobbler server. This has nothing to do with "check_access" which is an auth/authz function
        in the XMLRPC API.

        :param token: The API-token obtained via the login() method. The API-token obtained via the login() method.
        :return: None or a list of things to address.
        :rtype: None or list
        """
        self.check_access(token, "check")
        return self.api.check(logger=self.logger)

    def background_buildiso(self, options, token):
        """
        Generates an ISO in /var/www/cobbler/pub that can be used to install profiles without using PXE.

        :param options: Not known what this parameter does.
        :param token: The API-token obtained via the login() method. The API-token obtained via the login() method.
        :return: The id of the task which was started.
        :rtype: str
        """
        # FIXME: better use webdir from the settings?
        webdir = "/var/www/cobbler/"
        if os.path.exists("/srv/www"):
            webdir = "/srv/www/cobbler/"

        def runner(self):
            self.remote.api.build_iso(
                self.options.get("iso", webdir + "/pub/generated.iso"),
                self.options.get("profiles", None),
                self.options.get("systems", None),
                self.options.get("buildisodir", None),
                self.options.get("distro", None),
                self.options.get("standalone", False),
                self.options.get("airgapped", False),
                self.options.get("source", None),
                self.options.get("exclude_dns", False),
                self.options.get("xorrisofs_opts", None),
                self.logger
            )

        def on_done(self):
            if self.options.get("iso", "") == webdir + "/pub/generated.iso":
                msg = "ISO now available for <A HREF=\"/cobbler/pub/generated.iso\">download</A>"
                self.remote._new_event(msg)
        return self.__start_task(runner, token, "buildiso", "Build Iso", options, on_done)

    def background_aclsetup(self, options, token):
        """
        Get the acl configuration from the config and set the acls in the backgroud.

        :param options: Not known what this parameter does.
        :param token: The API-token obtained via the login() method. The API-token obtained via the login() method.
        :return: The id of the task which was started.
        :rtype: str
        """
        def runner(self):
            self.remote.api.acl_config(
                self.options.get("adduser", None),
                self.options.get("addgroup", None),
                self.options.get("removeuser", None),
                self.options.get("removegroup", None),
                self.logger
            )
        return self.__start_task(runner, token, "aclsetup", "(CLI) ACL Configuration", options)

    def background_dlcontent(self, options, token):
        """
        Download bootloaders and other support files.

        :param options: Unknown what this parameter is doing at the moment.
        :param token: The API-token obtained via the login() method. The API-token obtained via the login() method.
        :return: The id of the task which was started.
        :rtype: str
        """
        def runner(self):
            self.remote.api.dlcontent(self.options.get("force", False), self.logger)
        return self.__start_task(runner, token, "get_loaders", "Download Bootloader Content", options)

    def background_sync(self, options, token):
        """
        Run a full Cobbler sync in the background.

        :param options: Not known what this parameter does.
        :param token: The API-token obtained via the login() method. The API-token obtained via the login() method.
        :return: The id of the task which was started.
        :rtype: str
        """
        def runner(self):
            self.remote.api.sync(self.options.get("verbose", False), logger=self.logger)
        return self.__start_task(runner, token, "sync", "Sync", options)

    def background_hardlink(self, options, token):
        """
        Hardlink all files as a background task.

        :param options: Not known what this parameter does.
        :param token: The API-token obtained via the login() method. The API-token obtained via the login() method.
        :return: The id of the task which was started.
        :rtype: str
        """
        def runner(self):
            self.remote.api.hardlink(logger=self.logger)
        return self.__start_task(runner, token, "hardlink", "Hardlink", options)

    def background_validate_autoinstall_files(self, options, token):
        """
        Validate all autoinstall files in the background.

        :param options: Not known what this parameter does.
        :param token: The API-token obtained via the login() method. The API-token obtained via the login() method.
        :return: The id of the task which was started.
        :rtype: str
        """
        def runner(self):
            return self.remote.api.validate_autoinstall_files(logger=self.logger)
        return self.__start_task(runner, token, "validate_autoinstall_files", "Automated installation files validation", options)

    def background_replicate(self, options, token):
        """
        Replicate Cobbler in the background to another Cobbler instance.

        :param options: Not known what this parameter does.
        :param token: The API-token obtained via the login() method. The API-token obtained via the login() method.
        :return: The id of the task which was started.
        :rtype: str
        """
        def runner(self):
            # FIXME: defaults from settings here should come from views, fix in views.py
            self.remote.api.replicate(
                self.options.get("master", None),
                self.options.get("port", ""),
                self.options.get("distro_patterns", ""),
                self.options.get("profile_patterns", ""),
                self.options.get("system_patterns", ""),
                self.options.get("repo_patterns", ""),
                self.options.get("image_patterns", ""),
                self.options.get("mgmtclass_patterns", ""),
                self.options.get("package_patterns", ""),
                self.options.get("file_patterns", ""),
                self.options.get("prune", False),
                self.options.get("omit_data", False),
                self.options.get("sync_all", False),
                self.options.get("use_ssl", False),
                self.logger
            )
        return self.__start_task(runner, token, "replicate", "Replicate", options)

    def background_import(self, options, token):
        """
        Import an ISO image in the background.

        :param options: Not known what this parameter does.
        :param token: The API-token obtained via the login() method. The API-token obtained via the login() method.
        :return: The id of the task which was started.
        :rtype: str
        """
        def runner(self):
            self.remote.api.import_tree(
                self.options.get("path", None),
                self.options.get("name", None),
                self.options.get("available_as", None),
                self.options.get("autoinstall_file", None),
                self.options.get("rsync_flags", None),
                self.options.get("arch", None),
                self.options.get("breed", None),
                self.options.get("os_version", None),
                self.logger
            )
        return self.__start_task(runner, token, "import", "Media import", options)

    def background_reposync(self, options, token):
        """
        Run a reposync in the background.

        :param options: Not known what this parameter does.
        :param token: The API-token obtained via the login() method. The API-token obtained via the login() method.
        :return: The id of the task which was started.
        :rtype: str
        """
        def runner(self):
            # NOTE: WebUI passes in repos here, CLI passes only:
            repos = options.get("repos", [])
            only = options.get("only", None)
            if only is not None:
                repos = [only]
            nofail = options.get("nofail", len(repos) > 0)

            if len(repos) > 0:
                for name in repos:
                    self.remote.api.reposync(
                        tries=self.options.get("tries", 3),
                        name=name, nofail=nofail, logger=self.logger)
            else:
                self.remote.api.reposync(
                    tries=self.options.get("tries", 3),
                    name=None, nofail=nofail, logger=self.logger)
        return self.__start_task(runner, token, "reposync", "Reposync", options)

    def background_power_system(self, options, token):
        """
        Power a system asynchronously in the background.

        :param options: Not known what this parameter does.
        :param token: The API-token obtained via the login() method. The API-token obtained via the login() method.
        :return: The id of the task which was started.
        :rtype: str
        """
        def runner(self):
            for x in self.options.get("systems", []):
                try:
                    system_id = self.remote.get_system_handle(x, token)
                    system = self.remote.__get_object(system_id)
                    self.remote.api.power_system(system, self.options.get("power", ""), logger=self.logger)
                except Exception as e:
                    self.logger.warning("failed to execute power task on %s, exception: %s" % (str(x), str(e)))
        self.check_access(token, "power_system")
        return self.__start_task(runner, token, "power", "Power management (%s)" % options.get("power", ""), options)

    def power_system(self, system_id, power, token):
        """Execute power task synchronously.

        Returns true if the operation succeeded or if the system is powered on (in case of status).
        False otherwise.

        :param token: The API-token obtained via the login() method. The API-token obtained via the login() method. All
                      tasks require tokens.
        :param system_id: system handle
        :param power: power operation (on/off/status/reboot)
        :rtype: bool
        """
        system = self.__get_object(system_id)
        self.check_access(token, "power_system", system)
        result = self.api.power_system(system, power, logger=self.logger)
        return True if result is None else result

    def background_signature_update(self, options, token):
        """
        Run a signature update in the background.

        :param options: Not known what this parameter does.
        :param token: The API-token obtained via the login() method. The API-token obtained via the login() method.
        :return: The id of the task which was started.
        :rtype: str
        """
        def runner(self):
            self.remote.api.signature_update(self.logger)
        self.check_access(token, "sigupdate")
        return self.__start_task(runner, token, "sigupdate", "Updating Signatures", options)

    def get_events(self, for_user=""):
        """
        Returns a dict(key=event id) = [ statetime, name, state, [read_by_who] ]

        :param for_user: (Optional) Filter events the user has not seen yet. If left unset, it will return all events.
        :type for_user: str
        :return: A dictionary with all the events (or all filtered events).
        :rtype: dict
        """
        # return only the events the user has not seen
        self.events_filtered = {}
        for (k, x) in list(self.events.items()):
            if for_user in x[3]:
                pass
            else:
                self.events_filtered[k] = x

        # mark as read so user will not get events again
        if for_user is not None and for_user != "":
            for (k, x) in list(self.events.items()):
                if for_user in x[3]:
                    pass
                else:
                    self.events[k][3].append(for_user)

        return self.events_filtered

    def get_event_log(self, event_id):
        """
        Returns the contents of a task log. Events that are not task-based do not have logs.

        :param event_id: The event-id generated by Cobbler.
        :return: The event log or a ``?``.
        :rtype: str
        """
        event_id = str(event_id).replace("..", "").replace("/", "")
        path = "/var/log/cobbler/tasks/%s.log" % event_id
        self._log("getting log for %s" % event_id)
        if os.path.exists(path):
            fh = open(path, "r")
            data = str(fh.read())
            fh.close()
            return data
        else:
            return "?"

    def __generate_event_id(self, optype):
        """
        Generate an event id based on the current timestamp

        :param optype: Append an additional str to the event-id
        :type optype: str
        :return: An id in the format: "<4 digit year>-<2 digit month>-<two digit day>_<2 digit hour><2 digit minute>
                 <2 digit second>_<optional string>"
        :rtype: str
        """
        (year, month, day, hour, minute, second, weekday, julian, dst) = time.localtime()
        return "%04d-%02d-%02d_%02d%02d%02d_%s" % (year, month, day, hour, minute, second, optype)

    def _new_event(self, name):
        """
        Generate a new event in the in memory event list.

        :param name: The name of the event.
        :type name: str
        """
        event_id = self.__generate_event_id("event")
        event_id = str(event_id)
        self.events[event_id] = [float(time.time()), str(name), EVENT_INFO, []]

    def __start_task(self, thr_obj_fn, token, role_name, name, args, on_done=None):
        """
        Starts a new background task.

        :param thr_obj_fn: function handle to run in a background thread
        :param token: The API-token obtained via the login() method. The API-token obtained via the login() method. All
                      tasks require tokens.
        :param role_name: used to check token against authn/authz layers
        :param name: display name to show in logs/events
        :param args: usually this is a single dict, containing options
        :param on_done: an optional second function handle to run after success (and only success)
        :return: a task id.
        """
        self.check_access(token, role_name)
        event_id = self.__generate_event_id(role_name)          # use short form for logfile suffix
        event_id = str(event_id)
        self.events[event_id] = [float(time.time()), str(name), EVENT_RUNNING, []]

        self._log("start_task(%s); event_id(%s)" % (name, event_id))
        logatron = clogger.Logger("/var/log/cobbler/tasks/%s.log" % event_id)

        thr_obj = CobblerThread(event_id, self, logatron, args, role_name, self.api)
        thr_obj._run = thr_obj_fn
        if on_done is not None:
            thr_obj.on_done = on_done.__get__(thr_obj, CobblerThread)
        thr_obj.start()
        return event_id

    def _set_task_state(self, thread_obj, event_id, new_state):
        """
        Set the state of the task. (For internal use only)

        :param thread_obj: Not known what this actually does.
        :param event_id: The event id, generated by __generate_event_id()
        :param new_state: The new state of the task.
        """
        event_id = str(event_id)
        if event_id in self.events:
            self.events[event_id][2] = new_state
            self.events[event_id][3] = []           # clear the list of who has read it
        if thread_obj is not None:
            if new_state == EVENT_COMPLETE:
                thread_obj.logger.info("### TASK COMPLETE ###")
            if new_state == EVENT_FAILED:
                thread_obj.logger.error("### TASK FAILED ###")

    def get_task_status(self, event_id):
        """
        Get the current status of the task.

        :param event_id: The unique id of the task.
        :return: The event status.
        """
        event_id = str(event_id)
        if event_id in self.events:
            return self.events[event_id]
        else:
            raise CX("no event with that id")

    def last_modified_time(self, token=None):
        """
        Return the time of the last modification to any object. Used to verify from a calling application that no
        Cobbler objects have changed since last check. This method is implemented in the module api under the same name.

        :param token: The API-token obtained via the login() method. The API-token obtained via the login() method.
        :return: 0 if there is no file where the information required for this method is saved.
        :rtype: float
        """
        return self.api.last_modified_time()

    def ping(self):
        """
        Deprecated method. Now does nothing.

        :return: Always True
        :rtype: bool
        """
        return True

    def get_user_from_token(self, token):
        """
        Given a token returned from login, return the username that logged in with it.

        :param token: The API-token obtained via the login() method. The API-token obtained via the login() method.
        :return: The username if the token was valid.
        :raises CX: If the token supplied to the function is invalid.
        """
        if token not in self.token_cache:
            raise CX("invalid token: %s" % token)
        else:
            return self.token_cache[token][1]

    def _log(self, msg, user=None, token=None, name=None, object_id=None, attribute=None, debug=False, error=False):
        """
        Helper function to write data to the log file from the XMLRPC remote implementation.
        Takes various optional parameters that should be supplied when known.

        :param msg: The message to log.
        :param user: When a user is associated with the action it should be supplied.
        :param token: The API-token obtained via the login() method. The API-token obtained via the login() method.
        :param name: The name of the object should be supplied when it is known.
        :param object_id: The object id should be supplied when it is known.
        :param attribute: Additional attributes should be supplied if known.
        :param debug: If the message logged is a debug message.
        :type debug: bool
        :param error: If the message logged is an error message.
        :type error: bool
        """
        # add the user editing the object, if supplied
        m_user = "?"
        if user is not None:
            m_user = user
        if token is not None:
            try:
                m_user = self.get_user_from_token(token)
            except:
                # invalid or expired token?
                m_user = "???"
        msg = "REMOTE %s; user(%s)" % (msg, m_user)

        if name is not None:
            msg = "%s; name(%s)" % (msg, name)

        if object_id is not None:
            msg = "%s; object_id(%s)" % (msg, object_id)

        # add any attributes being modified, if any
        if attribute:
            msg = "%s; attribute(%s)" % (msg, attribute)

        # log to the correct logger
        if error:
            logger = self.logger.error
        elif debug:
            logger = self.logger.debug
        else:
            logger = self.logger.info
        logger(msg)

    def __sort(self, data, sort_field=None):
        """
        Helper function used by the various find/search functions to return object representations in order.

        :param data: The data to sort.
        :param sort_field: If the field contained in this starts with "!" then this sorts backwards.
        :return: The data sorted by the ``sort_field``.
        """
        sort_fields = ["name"]
        sort_rev = False
        if sort_field is not None:
            if sort_field.startswith("!"):
                sort_field = sort_field[1:]
                sort_rev = True
            sort_fields.insert(0, sort_field)
        sortdata = [(x.sort_key(sort_fields), x) for x in data]
        if sort_rev:
            sortdata.sort(lambda a, b: cmp(b, a))
        else:
            sortdata.sort()
        return [x for (key, x) in sortdata]

    def __paginate(self, data, page=None, items_per_page=None, token=None):
        """
        Helper function to support returning parts of a selection, for example, for use in a web app where only a part
        of the results are to be presented on each screen.

        :param data: The data to paginate.
        :param page: The page to show.
        :param items_per_page: The number of items per page.
        :param token: The API-token obtained via the login() method.
        :return: The paginated items.
        """
        default_page = 1
        default_items_per_page = 25

        try:
            page = int(page)
            if page < 1:
                page = default_page
        except:
            page = default_page
        try:
            items_per_page = int(items_per_page)
            if items_per_page <= 0:
                items_per_page = default_items_per_page
        except:
            items_per_page = default_items_per_page

        num_items = len(data)
        num_pages = (old_div((num_items - 1), items_per_page)) + 1
        if num_pages == 0:
            num_pages = 1
        if page > num_pages:
            page = num_pages
        start_item = (items_per_page * (page - 1))
        end_item = start_item + items_per_page
        if start_item > num_items:
            start_item = num_items - 1
        if end_item > num_items:
            end_item = num_items
        data = data[start_item:end_item]

        if page > 1:
            prev_page = page - 1
        else:
            prev_page = None
        if page < num_pages:
            next_page = page + 1
        else:
            next_page = None

        return (data, {
            'page': page,
            'prev_page': prev_page,
            'next_page': next_page,
            'pages': list(range(1, num_pages + 1)),
            'num_pages': num_pages,
            'num_items': num_items,
            'start_item': start_item,
            'end_item': end_item,
            'items_per_page': items_per_page,
            'items_per_page_list': [10, 20, 50, 100, 200, 500],
        })

    def __get_object(self, object_id):
        """
        Helper function. Given an object id, return the actual object.

        :param object_id: The id for the object to retrieve.
        :return: The item to the corresponding id.
        """
        if object_id.startswith("___NEW___"):
            return self.object_cache[object_id][1]
        (otype, oname) = object_id.split("::", 1)
        return self.api.get_item(otype, oname)

    def get_item(self, what, name, flatten=False):
        """
        Returns a dict describing a given object.

        :param what: "distro", "profile", "system", "image", "repo", etc
        :param name: the object name to retrieve
        :param flatten: reduce dicts to string representations (True/False)
        :return: The item or None.
        """
        self._log("get_item(%s,%s)" % (what, name))
        item = self.api.get_item(what, name)
        if item is not None:
            item = item.to_dict()
        if flatten:
            item = utils.flatten(item)
        return self.xmlrpc_hacks(item)

    def get_distro(self, name, flatten=False, token=None, **rest):
        """
        Get a distribution.

        :param name: The name of the distribution to get.
        :param flatten: If the item should be flattened.
        :param token: The API-token obtained via the login() method. The API-token obtained via the login() method.
        :param rest: Not used with this method currently.
        :return: The item or None.
        """
        return self.get_item("distro", name, flatten=flatten)

    def get_profile(self, name, flatten=False, token=None, **rest):
        """
        Get a profile.

        :param name: The name of the profile to get.
        :param flatten: If the item should be flattened.
        :param token: The API-token obtained via the login() method. The API-token obtained via the login() method.
        :param rest: Not used with this method currently.
        :return: The item or None.
        """
        return self.get_item("profile", name, flatten=flatten)

    def get_system(self, name, flatten=False, token=None, **rest):
        """
        Get a system.

        :param name: The name of the system to get.
        :param flatten: If the item should be flattened.
        :param token: The API-token obtained via the login() method. The API-token obtained via the login() method.
        :param rest: Not used with this method currently.
        :return: The item or None.
        """
        return self.get_item("system", name, flatten=flatten)

    def get_repo(self, name, flatten=False, token=None, **rest):
        """
        Get a repository.

        :param name: The name of the repository to get.
        :param flatten: If the item should be flattened.
        :param token: The API-token obtained via the login() method. The API-token obtained via the login() method.
        :param rest: Not used with this method currently.
        :return: The item or None.
        """
        return self.get_item("repo", name, flatten=flatten)

    def get_image(self, name, flatten=False, token=None, **rest):
        """
        Get an image.

        :param name: The name of the image to get.
        :param flatten: If the item should be flattened.
        :param token: The API-token obtained via the login() method. The API-token obtained via the login() method.
        :param rest: Not used with this method currently.
        :return: The item or None.
        """
        return self.get_item("image", name, flatten=flatten)

    def get_mgmtclass(self, name, flatten=False, token=None, **rest):
        """
        Get a management class.

        :param name: The name of the management class to get.
        :param flatten: If the item should be flattened.
        :param token: The API-token obtained via the login() method. The API-token obtained via the login() method.
        :param rest: Not used with this method currently.
        :return: The item or None.
        """
        return self.get_item("mgmtclass", name, flatten=flatten)

    def get_package(self, name, flatten=False, token=None, **rest):
        """
        Get a package.

        :param name: The name of the package to get.
        :param flatten: If the item should be flattened.
        :param token: The API-token obtained via the login() method. The API-token obtained via the login() method.
        :param rest: Not used with this method currently.
        :return: The item or None.
        """
        return self.get_item("package", name, flatten=flatten)

    def get_file(self, name, flatten=False, token=None, **rest):
        """
        Get a file.

        :param name: The name of the file to get.
        :param flatten: If the item should be flattened.
        :param token: The API-token obtained via the login() method. The API-token obtained via the login() method.
        :param rest: Not used with this method currently.
        :return: The item or None.
        """
        return self.get_item("file", name, flatten=flatten)

    def get_items(self, what):
        """
        Individual list elements are the same for get_item.

        :param what: is the name of a Cobbler object type, as described for get_item.
        :return: This returns a list of dicts.
        """
        items = [x.to_dict() for x in self.api.get_items(what)]

        for item in items:
            if "autoinstall" in item:
                self._log("autoinstall legacy field added as kickstart")
                kick_dict = {"kickstart": item.get("autoinstall")}
                item.update(kick_dict)
            if "autoinstall_meta" in item:
                self._log("autoinstall_meta legacy field added as ks_meta")
                kick_meta_dict = {"ks_meta": item.get("autoinstall_meta")}
                item.update(kick_meta_dict)

        return self.xmlrpc_hacks(items)

    def get_item_names(self, what):
        """
        This is just like get_items, but transmits less data.

        :param what: is the name of a Cobbler object type, as described for get_item.
        :return: Returns a list of object names (keys) for the given object type.
        """
        return [x.name for x in self.api.get_items(what)]

    def get_distros(self, page=None, results_per_page=None, token=None, **rest):
        """
        This returns all distributions.

        :param page: This parameter is not used currently.
        :param results_per_page: This parameter is not used currently.
        :param token: The API-token obtained via the login() method. The API-token obtained via the login() method.
        :param rest: This parameter is not used currently.
        :return: The list with all distros.
        """
        return self.get_items("distro")

    def get_profiles(self, page=None, results_per_page=None, token=None, **rest):
        """
        This returns all profiles.

        :param page: This parameter is not used currently.
        :param results_per_page: This parameter is not used currently.
        :param token: The API-token obtained via the login() method. The API-token obtained via the login() method.
        :param rest: This parameter is not used currently.
        :return: The list with all profiles.
        """
        return self.get_items("profile")

    def get_systems(self, page=None, results_per_page=None, token=None, **rest):
        """
        This returns all Systems.

        :param page: This parameter is not used currently.
        :param results_per_page: This parameter is not used currently.
        :param token: The API-token obtained via the login() method. The API-token obtained via the login() method.
        :param rest: This parameter is not used currently.
        :return: The list of all systems.
        """
        return self.get_items("system")

    def get_repos(self, page=None, results_per_page=None, token=None, **rest):
        """
        This returns all repositories.

        :param page: This parameter is not used currently.
        :param results_per_page: This parameter is not used currently.
        :param token: The API-token obtained via the login() method. The API-token obtained via the login() method.
        :param rest: This parameter is not used currently.
        :return: The list of all repositories.
        """
        return self.get_items("repo")

    def get_images(self, page=None, results_per_page=None, token=None, **rest):
        """
        This returns all images.

        :param page: This parameter is not used currently.
        :param results_per_page: This parameter is not used currently.
        :param token: The API-token obtained via the login() method. The API-token obtained via the login() method.
        :param rest: This parameter is not used currently.
        :return: The list of all images.
        """
        return self.get_items("image")

    def get_mgmtclasses(self, page=None, results_per_page=None, token=None, **rest):
        """
        This returns all managementclasses.

        :param page: This parameter is not used currently.
        :param results_per_page: This parameter is not used currently.
        :param token: The API-token obtained via the login() method. The API-token obtained via the login() method.
        :param rest: This parameter is not used currently.
        :return: The list of all managementclasses.
        """
        return self.get_items("mgmtclass")

    def get_packages(self, page=None, results_per_page=None, token=None, **rest):
        """
        This returns all packages.

        :param page: This parameter is not used currently.
        :param results_per_page: This parameter is not used currently.
        :param token: The API-token obtained via the login() method. The API-token obtained via the login() method.
        :param rest: This parameter is not used currently.
        :return: The list of all packages tracked in Cobbler.
        """
        return self.get_items("package")

    def get_files(self, page=None, results_per_page=None, token=None, **rest):
        """
        This returns all files.

        :param page: This parameter is not used currently.
        :param results_per_page: This parameter is not used currently.
        :param token: The API-token obtained via the login() method.
        :param rest: This parameter is not used currently.
        :return: The list of all files.
        """
        return self.get_items("file")

    def find_items(self, what, criteria=None, sort_field=None, expand=True):
        """Works like get_items but also accepts criteria as a dict to search on.

        Example: ``{ "name" : "*.example.org" }``

        Wildcards work as described by 'pydoc fnmatch'.

        :param what: The object type to find.
        :param criteria: The criteria an item needs to match.
        :param sort_field: The field to sort the results after.
        :param expand: Not only get the names but also the complete object in form of a dict.
        :type expand: bool
        :returns: A list of dicts.
        :rtype: list
        """
        self._log("find_items(%s); criteria(%s); sort(%s)" % (what, criteria, sort_field))
        items = self.api.find_items(what, criteria=criteria)
        items = self.__sort(items, sort_field)
        if not expand:
            items = [x.name for x in items]
        else:
            items = [x.to_dict() for x in items]
        return self.xmlrpc_hacks(items)

    def find_distro(self, criteria=None, expand=False, token=None, **rest):
        """
        Find a distro matching certain criteria.

        :param criteria: The criteria a distribution needs to match.
        :param expand: Not only get the names but also the complete object in form of a dict.
        :param token: The API-token obtained via the login() method.
        :param rest: This parameter is not used currently.
        :return: All distributions which have matched the criteria.
        """
        return self.find_items("distro", criteria, expand=expand)

    def find_profile(self, criteria=None, expand=False, token=None, **rest):
        """
        Find a profile matching certain criteria.

        :param criteria: The criteria a distribution needs to match.
        :param expand: Not only get the names but also the complete object in form of a dict.
        :param token: The API-token obtained via the login() method.
        :param rest: This parameter is not used currently.
        :return: All profiles which have matched the criteria.
        """
        return self.find_items("profile", criteria, expand=expand)

    def find_system(self, criteria=None, expand=False, token=None, **rest):
        """
        Find a system matching certain criteria.

        :param criteria: The criteria a distribution needs to match.
        :param expand: Not only get the names but also the complete object in form of a dict.
        :param token: The API-token obtained via the login() method.
        :param rest: This parameter is not used currently.
        :return: All systems which have matched the criteria.
        """
        return self.find_items("system", criteria, expand=expand)

    def find_repo(self, criteria=None, expand=False, token=None, **rest):
        """
        Find a repository matching certain criteria.

        :param criteria: The criteria a distribution needs to match.
        :param expand: Not only get the names but also the complete object in form of a dict.
        :param token: The API-token obtained via the login() method.
        :param rest: This parameter is not used currently.
        :return: All repositories which have matched the criteria.
        """
        return self.find_items("repo", criteria, expand=expand)

    def find_image(self, criteria=None, expand=False, token=None, **rest):
        """
        Find an image matching certain criteria.

        :param criteria: The criteria a distribution needs to match.
        :param expand: Not only get the names but also the complete object in form of a dict.
        :param token: The API-token obtained via the login() method.
        :param rest: This parameter is not used currently.
        :return: All images which have matched the criteria.
        """
        return self.find_items("image", criteria, expand=expand)

    def find_mgmtclass(self, criteria=None, expand=False, token=None, **rest):
        """
        Find a management class matching certain criteria.

        :param criteria: The criteria a distribution needs to match.
        :param expand: Not only get the names but also the complete object in form of a dict.
        :param token: The API-token obtained via the login() method.
        :param rest: This parameter is not used currently.
        :return: All management classes which have matched the criteria.
        """
        return self.find_items("mgmtclass", criteria, expand=expand)

    def find_package(self, criteria=None, expand=False, token=None, **rest):
        """
        Find a package matching certain criteria.

        :param criteria: The criteria a distribution needs to match.
        :param expand: Not only get the names but also the complete object in form of a dict.
        :param token: The API-token obtained via the login() method.
        :param rest: This parameter is not used currently.
        :return: All packages which have matched the criteria.
        """
        return self.find_items("package", criteria, expand=expand)

    def find_file(self, criteria=None, expand=False, token=None, **rest):
        """
        Find a file matching certain criteria.

        :param criteria: The criteria a distribution needs to match.
        :param expand: Not only get the names but also the complete object in form of a dict.
        :param token: The API-token obtained via the login() method.
        :param rest: This parameter is not used currently.
        :return: All files which have matched the criteria.
        """
        return self.find_items("file", criteria, expand=expand)

    def find_items_paged(self, what, criteria=None, sort_field=None, page=None, items_per_page=None, token=None):
        """
        Returns a list of dicts as with find_items but additionally supports returning just a portion of the total
        list, for instance in supporting a web app that wants to show a limited amount of items per page.

        :param what: The object type to find.
        :param criteria: The criteria a distribution needs to match.
        :param sort_field: The field to sort the results after.
        :param page: The page to return
        :param items_per_page: The number of items per page.
        :param token: The API-token obtained via the login() method.
        :return: The found items.
        """
        self._log("find_items_paged(%s); criteria(%s); sort(%s)" % (what, criteria, sort_field), token=token)
        items = self.api.find_items(what, criteria=criteria)
        items = self.__sort(items, sort_field)
        (items, pageinfo) = self.__paginate(items, page, items_per_page)
        items = [x.to_dict() for x in items]
        return self.xmlrpc_hacks({
            'items': items,
            'pageinfo': pageinfo
        })

    def has_item(self, what, name, token=None):
        """
        Returns True if a given collection has an item with a given name, otherwise returns False.

        :param what: The collection to search through.
        :param name: The name of the item.
        :param token: The API-token obtained via the login() method.
        :return: True if item was found, otherwise False.
        """
        self._log("has_item(%s)" % what, token=token, name=name)
        found = self.api.get_item(what, name)
        if found is None:
            return False
        else:
            return True

    def get_item_handle(self, what, name, token=None):
        """
        Given the name of an object (or other search parameters), return a reference (object id) that can be used with
        ``modify_*`` functions or ``save_*`` functions to manipulate that object.

        :param what: The collection where the item is living in.
        :param name: The name of the item.
        :param token: The API-token obtained via the login() method.
        :return: The handle of the desired object.
        """
        found = self.api.get_item(what, name)
        if found is None:
            raise CX("internal error, unknown %s name %s" % (what, name))
        return "%s::%s" % (what, found.name)

    def get_distro_handle(self, name, token):
        """
        Get a handle for a distribution which allows you to use the functions ``modify_*`` or ``save_*`` to manipulate
        it.

        :param name: The name of the item.
        :param token: The API-token obtained via the login() method.
        :return: The handle of the desired object.
        """
        return self.get_item_handle("distro", name, token)

    def get_profile_handle(self, name, token):
        """
        Get a handle for a profile which allows you to use the functions ``modify_*`` or ``save_*`` to manipulate it.

        :param name: The name of the item.
        :param token: The API-token obtained via the login() method.
        :return: The handle of the desired object.
        """
        return self.get_item_handle("profile", name, token)

    def get_system_handle(self, name, token):
        """
        Get a handle for a system which allows you to use the functions ``modify_*`` or ``save_*`` to manipulate it.

        :param name: The name of the item.
        :param token: The API-token obtained via the login() method.
        :return: The handle of the desired object.
        """
        return self.get_item_handle("system", name, token)

    def get_repo_handle(self, name, token):
        """
        Get a handle for a repository which allows you to use the functions ``modify_*`` or ``save_*`` to manipulate it.

        :param name: The name of the item.
        :param token: The API-token obtained via the login() method.
        :return: The handle of the desired object.
        """
        return self.get_item_handle("repo", name, token)

    def get_image_handle(self, name, token):
        """
        Get a handle for an image which allows you to use the functions ``modify_*`` or ``save_*`` to manipulate it.

        :param name: The name of the item.
        :param token: The API-token obtained via the login() method.
        :return: The handle of the desired object.
        """
        return self.get_item_handle("image", name, token)

    def get_mgmtclass_handle(self, name, token):
        """
        Get a handle for a management class which allows you to use the functions ``modify_*`` or ``save_*`` to
        manipulate it.

        :param name: The name of the item.
        :param token: The API-token obtained via the login() method.
        :return: The handle of the desired object.
        """
        return self.get_item_handle("mgmtclass", name, token)

    def get_package_handle(self, name, token):
        """
        Get a handle for a package which allows you to use the functions ``modify_*`` or ``save_*`` to manipulate it.

        :param name: The name of the item.
        :param token: The API-token obtained via the login() method.
        :return: The handle of the desired object.
        """
        return self.get_item_handle("package", name, token)

    def get_file_handle(self, name, token):
        """
        Get a handle for a file which allows you to use the functions ``modify_*`` or ``save_*`` to manipulate it.

        :param name: The name of the item.
        :param token: The API-token obtained via the login() method.
        :return: The handle of the desired object.
        """
        return self.get_item_handle("file", name, token)

    def remove_item(self, what, name, token, recursive=True):
        """
        Deletes an item from a collection.
        Note that this requires the name of the distro, not an item handle.

        :param what: The item type of the item to remove.
        :param name: The name of the item to remove.
        :param token: The API-token obtained via the login() method.
        :param recursive: If items which are depending on this one should be erased too.
        :type recursive: bool
        :return: True if the action was successful.
        """
        self._log("remove_item (%s, recursive=%s)" % (what, recursive), name=name, token=token)
        obj = self.api.get_item(what, name)
        self.check_access(token, "remove_%s" % what, obj)
        self.api.remove_item(what, name, delete=True, with_triggers=True, recursive=recursive, logger=self.logger)
        return True

    def remove_distro(self, name, token, recursive=True):
        """
        Deletes a distribution from Cobbler.

        :param name: The name of the item to remove.
        :param token: The API-token obtained via the login() method.
        :param recursive: If items which are depending on this one should be erased too.
        :type recursive: bool
        :return: True if the action was successful.
        """
        return self.remove_item("distro", name, token, recursive)

    def remove_profile(self, name, token, recursive=True):
        """
        Deletes a profile from Cobbler.

        :param name: The name of the item to remove.
        :param token: The API-token obtained via the login() method.
        :param recursive: If items which are depending on this one should be erased too.
        :type recursive: bool
        :return: True if the action was successful.
        """
        return self.remove_item("profile", name, token, recursive)

    def remove_system(self, name, token, recursive=True):
        """
        Deletes a system from Cobbler.

        :param name: The name of the item to remove.
        :param token: The API-token obtained via the login() method.
        :param recursive: If items which are depending on this one should be erased too.
        :type recursive: bool
        :return: True if the action was successful.
        """
        return self.remove_item("system", name, token, recursive)

    def remove_repo(self, name, token, recursive=True):
        """
        Deletes a repository from Cobbler.

        :param name: The name of the item to remove.
        :param token: The API-token obtained via the login() method.
        :param recursive: If items which are depending on this one should be erased too.
        :type recursive: bool
        :return: True if the action was successful.
        """
        return self.remove_item("repo", name, token, recursive)

    def remove_image(self, name, token, recursive=True):
        """
        Deletes an image from Cobbler.

        :param name: The name of the item to remove.
        :param token: The API-token obtained via the login() method.
        :param recursive: If items which are depending on this one should be erased too.
        :type recursive: bool
        :return: True if the action was successful.
        """
        return self.remove_item("image", name, token, recursive)

    def remove_mgmtclass(self, name, token, recursive=True):
        """
        Deletes a managementclass from Cobbler.

        :param name: The name of the item to remove.
        :param token: The API-token obtained via the login() method.
        :param recursive: If items which are depending on this one should be erased too.
        :type recursive: bool
        :return: True if the action was successful.
        """
        return self.remove_item("mgmtclass", name, token, recursive)

    def remove_package(self, name, token, recursive=True):
        """
        Deletes a package from Cobbler.

        :param name: The name of the item to remove.
        :param token: The API-token obtained via the login() method.
        :param recursive: If items which are depending on this one should be erased too.
        :type recursive: bool
        :return: True if the action was successful.
        """
        return self.remove_item("package", name, token, recursive)

    def remove_file(self, name, token, recursive=True):
        """
        Deletes a file from Cobbler.

        :param name: The name of the item to remove.
        :param token: The API-token obtained via the login() method.
        :param recursive: If items which are depending on this one should be erased too.
        :type recursive: bool
        :return: True if the action was successful.
        """
        return self.remove_item("file", name, token, recursive)

    def copy_item(self, what, object_id, newname, token=None):
        """
        Creates a new object that matches an existing object, as specified by an id.

        :param what: The item type which should be copied.
        :param object_id: The object id of the item in question.
        :param newname: The new name for the copied object.
        :param token: The API-token obtained via the login() method.
        :return: True if the action succeeded.
        """
        self._log("copy_item(%s)" % what, object_id=object_id, token=token)
        self.check_access(token, "copy_%s" % what)
        obj = self.__get_object(object_id)
        self.api.copy_item(what, obj, newname, logger=self.logger)
        return True

    def copy_distro(self, object_id, newname, token=None):
        """
        Copies a distribution and renames it afterwards.

        :param object_id: The object id of the item in question.
        :param newname: The new name for the copied object.
        :param token: The API-token obtained via the login() method.
        :return: True if the action succeeded.
        """
        return self.copy_item("distro", object_id, newname, token)

    def copy_profile(self, object_id, newname, token=None):
        """
        Copies a profile and renames it afterwards.

        :param object_id: The object id of the item in question.
        :param newname: The new name for the copied object.
        :param token: The API-token obtained via the login() method.
        :return: True if the action succeeded.
        """
        return self.copy_item("profile", object_id, newname, token)

    def copy_system(self, object_id, newname, token=None):
        """
        Copies a system and renames it afterwards.

        :param object_id: The object id of the item in question.
        :param newname: The new name for the copied object.
        :param token: The API-token obtained via the login() method.
        :return: True if the action succeeded.
        """
        return self.copy_item("system", object_id, newname, token)

    def copy_repo(self, object_id, newname, token=None):
        """
        Copies a repository and renames it afterwards.

        :param object_id: The object id of the item in question.
        :param newname: The new name for the copied object.
        :param token: The API-token obtained via the login() method.
        :return: True if the action succeeded.
        """
        return self.copy_item("repo", object_id, newname, token)

    def copy_image(self, object_id, newname, token=None):
        """
        Copies an image and renames it afterwards.

        :param object_id: The object id of the item in question.
        :param newname: The new name for the copied object.
        :param token: The API-token obtained via the login() method.
        :return: True if the action succeeded.
        """
        return self.copy_item("image", object_id, newname, token)

    def copy_mgmtclass(self, object_id, newname, token=None):
        """
        Copies a management class and rename it afterwards.

        :param object_id: The object id of the item in question.
        :param newname: The new name for the copied object.
        :param token: The API-token obtained via the login() method.
        :return: True if the action succeeded.
        """
        return self.copy_item("mgmtclass", object_id, newname, token)

    def copy_package(self, object_id, newname, token=None):
        """
        Copies a package and rename it afterwards.

        :param object_id: The object id of the item in question.
        :param newname: The new name for the copied object.
        :param token: The API-token obtained via the login() method.
        :return: True if the action succeeded.
        """
        return self.copy_item("package", object_id, newname, token)

    def copy_file(self, object_id, newname, token=None):
        """
        Copies a file and rename it afterwards.

        :param object_id: The object id of the item in question.
        :param newname: The new name for the copied object.
        :param token: The API-token obtained via the login() method.
        :return: True if the action succeeded.
        """
        return self.copy_item("file", object_id, newname, token)

    def rename_item(self, what, object_id, newname, token=None):
        """
        Renames an object specified by object_id to a new name.

        :param what: The type of object which shall be renamed to a new name.
        :param object_id: The id which refers to the object.
        :param newname: The new name for the object.
        :param token: The API-token obtained via the login() method.
        :return: True if the action succeeded.
        """
        self._log("rename_item(%s)" % what, object_id=object_id, token=token)
        obj = self.__get_object(object_id)
        self.api.rename_item(what, obj, newname, logger=self.logger)
        return True

    def rename_distro(self, object_id, newname, token=None):
        """
        Renames a distribution specified by object_id to a new name.

        :param object_id: The id which refers to the object.
        :param newname: The new name for the object.
        :param token: The API-token obtained via the login() method.
        :return: True if the action succeeded.
        """
        return self.rename_item("distro", object_id, newname, token)

    def rename_profile(self, object_id, newname, token=None):
        """
        Renames a profile specified by object_id to a new name.

        :param object_id: The id which refers to the object.
        :param newname: The new name for the object.
        :param token: The API-token obtained via the login() method.
        :return: True if the action succeeded.
        """
        return self.rename_item("profile", object_id, newname, token)

    def rename_system(self, object_id, newname, token=None):
        """
        Renames a system specified by object_id to a new name.

        :param object_id: The id which refers to the object.
        :param newname: The new name for the object.
        :param token: The API-token obtained via the login() method.
        :return: True if the action succeeded.
        """
        return self.rename_item("system", object_id, newname, token)

    def rename_repo(self, object_id, newname, token=None):
        """
        Renames a repository specified by object_id to a new name.

        :param object_id: The id which refers to the object.
        :param newname: The new name for the object.
        :param token: The API-token obtained via the login() method.
        :return: True if the action succeeded.
        """
        return self.rename_item("repo", object_id, newname, token)

    def rename_image(self, object_id, newname, token=None):
        """
        Renames an image specified by object_id to a new name.

        :param object_id: The id which refers to the object.
        :param newname: The new name for the object.
        :param token: The API-token obtained via the login() method.
        :return: True if the action succeeded.
        """
        return self.rename_item("image", object_id, newname, token)

    def rename_mgmtclass(self, object_id, newname, token=None):
        """
        Renames a managementclass specified by object_id to a new name.

        :param object_id: The id which refers to the object.
        :param newname: The new name for the object.
        :param token: The API-token obtained via the login() method.
        :return: True if the action succeeded.
        """
        return self.rename_item("mgmtclass", object_id, newname, token)

    def rename_package(self, object_id, newname, token=None):
        """
        Renames a package specified by object_id to a new name.

        :param object_id: The id which refers to the object.
        :param newname: The new name for the object.
        :param token: The API-token obtained via the login() method.
        :return: True if the action succeeded.
        """
        return self.rename_item("package", object_id, newname, token)

    def rename_file(self, object_id, newname, token=None):
        """
        Renames a file specified by object_id to a new name.

        :param object_id: The id which refers to the object.
        :param newname: The new name for the object.
        :param token: The API-token obtained via the login() method.
        :return: True if the action succeeded.
        """
        return self.rename_item("file", object_id, newname, token)

    def new_item(self, what, token, is_subobject=False):
        """Creates a new (unconfigured) object, returning an object handle that can be used.

        Creates a new (unconfigured) object, returning an object handle that can be used with ``modify_*`` methods and
        then finally ``save_*`` methods. The handle only exists in memory until saved.

        :param what: specifies the type of object: ``distro``, ``profile``, ``system``, ``repo``, or ``image``
        :param token: The API-token obtained via the login() method.
        :param is_subobject: If the object is a subobject of an already existing object or not.
        :return: The object id for the newly created object.
        """
        self._log("new_item(%s)" % what, token=token)
        self.check_access(token, "new_%s" % what)
        if what == "distro":
            d = distro.Distro(self.api._collection_mgr, is_subobject=is_subobject)
        elif what == "profile":
            d = profile.Profile(self.api._collection_mgr, is_subobject=is_subobject)
        elif what == "system":
            d = system.System(self.api._collection_mgr, is_subobject=is_subobject)
        elif what == "repo":
            d = repo.Repo(self.api._collection_mgr, is_subobject=is_subobject)
        elif what == "image":
            d = image.Image(self.api._collection_mgr, is_subobject=is_subobject)
        elif what == "mgmtclass":
            d = mgmtclass.Mgmtclass(self.api._collection_mgr, is_subobject=is_subobject)
        elif what == "package":
            d = package.Package(self.api._collection_mgr, is_subobject=is_subobject)
        elif what == "file":
            d = file.File(self.api._collection_mgr, is_subobject=is_subobject)
        else:
            raise CX("internal error, collection name is %s" % what)
        key = "___NEW___%s::%s" % (what, self.__get_random(25))
        self.object_cache[key] = (time.time(), d)
        return key

    def new_distro(self, token):
        """
        See ``new_item()``.

        :param token: The API-token obtained via the login() method.
        :return: The object id for the newly created object.
        """
        return self.new_item("distro", token)

    def new_profile(self, token):
        """
        See ``new_item()``.

        :param token: The API-token obtained via the login() method.
        :return: The object id for the newly created object.
        """
        return self.new_item("profile", token)

    def new_subprofile(self, token):
        """
        See ``new_item()``.

        :param token: The API-token obtained via the login() method.
        :return: The object id for the newly created object.
        """
        return self.new_item("profile", token, is_subobject=True)

    def new_system(self, token):
        """
        See ``new_item()``.

        :param token: The API-token obtained via the login() method.
        :return: The object id for the newly created object.
        """
        return self.new_item("system", token)

    def new_repo(self, token):
        """
        See ``new_item()``.

        :param token: The API-token obtained via the login() method.
        :return: The object id for the newly created object.
        """
        return self.new_item("repo", token)

    def new_image(self, token):
        """
        See ``new_item()``.

        :param token: The API-token obtained via the login() method.
        :return: The object id for the newly created object.
        """
        return self.new_item("image", token)

    def new_mgmtclass(self, token):
        """
        See ``new_item()``.

        :param token: The API-token obtained via the login() method.
        :return: The object id for the newly created object.
        """
        return self.new_item("mgmtclass", token)

    def new_package(self, token):
        """
        See ``new_item()``.

        :param token: The API-token obtained via the login() method.
        :return: The object id for the newly created object.
        """
        return self.new_item("package", token)

    def new_file(self, token):
        """
        See ``new_item()``.

        :param token: The API-token obtained via the login() method.
        :return: The object id for the newly created object.
        """
        return self.new_item("file", token)

    def modify_item(self, what, object_id, attribute, arg, token):
        """
        Adjusts the value of a given field, specified by 'what' on a given object id. Allows modification of certain
        attributes on newly created or existing distro object handle.

        :param what: The type of object to modify.1
        :param object_id: The id of the object which shall be modified.
        :param attribute: The attribute name which shall be edited.
        :param arg: The new value for the arguement.
        :param token: The API-token obtained via the login() method.
        :return: True if the action was successful. Otherwise False.
        """
        self._log("modify_item(%s)" % what, object_id=object_id, attribute=attribute, token=token)
        obj = self.__get_object(object_id)
        self.check_access(token, "modify_%s" % what, obj, attribute)
        method = obj.get_setter_methods().get(attribute, None)

        if method is None:
            # It's ok, the CLI will send over lots of junk we can't process (like newname or in-place) so just go with
            # it.
            return False
            # raise CX("object has no method: %s" % attribute)
        method(arg)
        return True

    def modify_distro(self, object_id, attribute, arg, token):
        """
        Modify a single attribute of a distribution.

        :param object_id: The id of the object which shall be modified.
        :param attribute: The attribute name which shall be edited.
        :param arg: The new value for the arguement.
        :param token: The API-token obtained via the login() method.
        :return: True if the action was successful. Otherwise False.
        """
        return self.modify_item("distro", object_id, attribute, arg, token)

    def modify_profile(self, object_id, attribute, arg, token):
        """
        Modify a single attribute of a profile.

        :param object_id: The id of the object which shall be modified.
        :param attribute: The attribute name which shall be edited.
        :param arg: The new value for the arguement.
        :param token: The API-token obtained via the login() method.
        :return: True if the action was successful. Otherwise False.
        """
        return self.modify_item("profile", object_id, attribute, arg, token)

    def modify_system(self, object_id, attribute, arg, token):
        """
        Modify a single attribute of a system.

        :param object_id: The id of the object which shall be modified.
        :param attribute: The attribute name which shall be edited.
        :param arg: The new value for the arguement.
        :param token: The API-token obtained via the login() method.
        :return: True if the action was successful. Otherwise False.
        """
        return self.modify_item("system", object_id, attribute, arg, token)

    def modify_image(self, object_id, attribute, arg, token):
        """
        Modify a single attribute of an image.

        :param object_id: The id of the object which shall be modified.
        :param attribute: The attribute name which shall be edited.
        :param arg: The new value for the arguement.
        :param token: The API-token obtained via the login() method.
        :return: True if the action was successful. Otherwise False.
        """
        return self.modify_item("image", object_id, attribute, arg, token)

    def modify_repo(self, object_id, attribute, arg, token):
        """
        Modify a single attribute of a repository.

        :param object_id: The id of the object which shall be modified.
        :param attribute: The attribute name which shall be edited.
        :param arg: The new value for the arguement.
        :param token: The API-token obtained via the login() method.
        :return: True if the action was successful. Otherwise False.
        """
        return self.modify_item("repo", object_id, attribute, arg, token)

    def modify_mgmtclass(self, object_id, attribute, arg, token):
        """
        Modify a single attribute of a managementclass.

        :param object_id: The id of the object which shall be modified.
        :param attribute: The attribute name which shall be edited.
        :param arg: The new value for the arguement.
        :param token: The API-token obtained via the login() method.
        :return: True if the action was successful. Otherwise False.
        """
        return self.modify_item("mgmtclass", object_id, attribute, arg, token)

    def modify_package(self, object_id, attribute, arg, token):
        """
        Modify a single attribute of a package.

        :param object_id: The id of the object which shall be modified.
        :param attribute: The attribute name which shall be edited.
        :param arg: The new value for the arguement.
        :param token: The API-token obtained via the login() method.
        :return: True if the action was successful. Otherwise False.
        """
        return self.modify_item("package", object_id, attribute, arg, token)

    def modify_file(self, object_id, attribute, arg, token):
        """
        Modify a single attribute of a file.

        :param object_id: The id of the object which shall be modified.
        :param attribute: The attribute name which shall be edited.
        :param arg: The new value for the arguement.
        :param token: The API-token obtained via the login() method.
        :return: True if the action was successful. Otherwise False.
        """
        return self.modify_item("file", object_id, attribute, arg, token)

    def modify_setting(self, setting_name, value, token):
        """
        Modify a single attribute of a setting.

        :param setting_name: The name of the setting which shall be adjusted.
        :param value: The new value for the setting.
        :param token: The API-token obtained via the login() method.
        :return: 0 on success, 1 on error.
        """
        self._log("modify_setting(%s)" % setting_name, token=token)
        self.check_access(token, "modify_setting")
        try:
            self.api.settings().set(setting_name, value)
            return 0
        except:
            return 1

    def __is_interface_field(self, f):
        """
        Checks if the field in ``f`` is related to a network interface.

        :param f: The fieldname to check.
        :return: True if the fields is related to a network interface, otherwise False.
        """
        if f in ("delete_interface", "rename_interface"):
            return True

        for x in system.NETWORK_INTERFACE_FIELDS:
            if f == x[0]:
                return True
        return False

    def xapi_object_edit(self, object_type, object_name, edit_type, attributes, token):
        """Extended API: New style object manipulations, 2.0 and later.

        Extended API: New style object manipulations, 2.0 and later preferred over using ``new_*``, ``modify_*```,
        ``save_*`` directly. Though we must preserve the old ways for backwards compatibility these cause much less
        XMLRPC traffic.

        Ex: xapi_object_edit("distro","el5","add",{"kernel":"/tmp/foo","initrd":"/tmp/foo"},token)

        :param object_type: The object type which corresponds to the collection type the object is in.
        :param object_name: The name of the object under question.
        :param edit_type: One of 'add', 'rename', 'copy', 'remove'
        :param attributes: The attributes which shall be edited. This should be JSON-style string.
        :param token: The API-token obtained via the login() method.
        :return: True if the action succeeded.
        """
        if object_name.strip() == "":
            raise CX("xapi_object_edit() called without an object name")

        self.check_access(token, "xedit_%s" % object_type, token)

        if edit_type == "add" or edit_type == "rename":
            handle = 0
            if edit_type == "rename":
                tmp_name = attributes["newname"]
            else:
                tmp_name = object_name
            try:
                handle = self.get_item_handle(object_type, tmp_name)
            except:
                pass
            if handle != 0:
                raise CX("it seems unwise to overwrite the object %s, try 'edit'", tmp_name)

        if edit_type == "add":
            is_subobject = object_type == "profile" and "parent" in attributes
            if is_subobject and "distro" in attributes:
                raise CX("You can't change both 'parent' and 'distro'")
            if object_type == "system":
                if "profile" not in attributes and "image" not in attributes:
                    raise CX("You must specify a 'profile' or 'image' for new systems")
            handle = self.new_item(object_type, token, is_subobject=is_subobject)
        else:
            handle = self.get_item_handle(object_type, object_name)

        if edit_type == "rename":
            self.rename_item(object_type, handle, attributes["newname"], token)
            handle = self.get_item_handle(object_type, attributes["newname"], token)

        if edit_type == "copy":
            is_subobject = object_type == "profile" and "parent" in attributes
            if is_subobject:
                if "distro" in attributes:
                    raise CX("You can't change both 'parent' and 'distro'")
                self.copy_item(object_type, handle, attributes["newname"], token)
                handle = self.get_item_handle("profile", attributes["newname"], token)
                self.modify_item("profile", handle, "parent", attributes["parent"], token)
            else:
                self.copy_item(object_type, handle, attributes["newname"], token)
                handle = self.get_item_handle(object_type, attributes["newname"], token)

        if edit_type in ["copy", "rename"]:
            del attributes["name"]
            del attributes["newname"]

        if edit_type != "remove":
            # FIXME: this doesn't know about interfaces yet!
            # if object type is system and fields add to dict and then
            # modify when done, rather than now.
            imods = {}
            # FIXME: needs to know about how to delete interfaces too!
            for (k, v) in list(attributes.items()):
                if object_type != "system" or not self.__is_interface_field(k):
                    # in place modifications allow for adding a key/value pair while keeping other k/v
                    # pairs intact.
                    if k in ["autoinstall_meta", "kernel_options", "kernel_options_post", "template_files", "boot_files", "fetchable_files", "params"] and \
                            "in_place" in attributes and attributes["in_place"]:
                        details = self.get_item(object_type, object_name)
                        v2 = details[k]
                        (ok, input) = utils.input_string_or_dict(v)
                        for (a, b) in list(input.items()):
                            if a.startswith("~") and len(a) > 1:
                                del v2[a[1:]]
                            else:
                                v2[a] = b
                        v = v2

                    self.modify_item(object_type, handle, k, v, token)

                else:
                    modkey = "%s-%s" % (k, attributes.get("interface", ""))
                    imods[modkey] = v

            if object_type == "system":
                if "delete_interface" not in attributes and "rename_interface" not in attributes:
                    self.modify_system(handle, 'modify_interface', imods, token)
                elif "delete_interface" in attributes:
                    self.modify_system(handle, 'delete_interface', attributes.get("interface", ""), token)
                elif "rename_interface" in attributes:
                    ifargs = [attributes.get("interface", ""), attributes.get("rename_interface", "")]
                    self.modify_system(handle, 'rename_interface', ifargs, token)
        else:
            # remove item
            recursive = attributes.get("recursive", False)
            if object_type == "profile" and recursive is False:
                childs = len(self.api.find_items(object_type, criteria={'parent': attributes['name']}))
                if childs > 0:
                    raise CX("Can't delete this profile there are %s subprofiles and 'recursive' is set to 'False'" % childs)

            self.remove_item(object_type, object_name, token, recursive=recursive)
            return True

        # FIXME: use the bypass flag or not?
        self.save_item(object_type, handle, token)
        return True

    def save_item(self, what, object_id, token, editmode="bypass"):
        """
        Saves a newly created or modified object to disk. Calling save is required for any changes to persist.

        :param what: The type of object which shall be saved. This corresponds to the collections.
        :param object_id: The id of the object to save.
        :param token: The API-token obtained via the login() method.
        :param editmode: The mode which shall be used to persist the changes. Currently "new" and "bypass" are
                         supported.
        :return: True if the action succeeded.
        """
        self._log("save_item(%s)" % what, object_id=object_id, token=token)
        obj = self.__get_object(object_id)
        self.check_access(token, "save_%s" % what, obj)
        if editmode == "new":
            self.api.add_item(what, obj, check_for_duplicate_names=True, logger=self.logger)
        else:
            self.api.add_item(what, obj, logger=self.logger)
        return True

    def save_distro(self, object_id, token, editmode="bypass"):
        """
        Saves a newly created or modified object to disk. Calling save is required for any changes to persist.

        :param object_id: The id of the object to save.
        :param token: The API-token obtained via the login() method.
        :param editmode: The mode which shall be used to persist the changes. Currently "new" and "bypass" are
                         supported.
        :return: True if the action succeeded.
        """
        return self.save_item("distro", object_id, token, editmode=editmode)

    def save_profile(self, object_id, token, editmode="bypass"):
        """
        Saves a newly created or modified object to disk. Calling save is required for any changes to persist.

        :param object_id: The id of the object to save.
        :param token: The API-token obtained via the login() method.
        :param editmode: The mode which shall be used to persist the changes. Currently "new" and "bypass" are
                         supported.
        :return: True if the action succeeded.
        """
        return self.save_item("profile", object_id, token, editmode=editmode)

    def save_system(self, object_id, token, editmode="bypass"):
        """
        Saves a newly created or modified object to disk. Calling save is required for any changes to persist.

        :param object_id: The id of the object to save.
        :param token: The API-token obtained via the login() method.
        :param editmode: The mode which shall be used to persist the changes. Currently "new" and "bypass" are
                         supported.
        :return: True if the action succeeded.
        """
        return self.save_item("system", object_id, token, editmode=editmode)

    def save_image(self, object_id, token, editmode="bypass"):
        """
        Saves a newly created or modified object to disk. Calling save is required for any changes to persist.

        :param object_id: The id of the object to save.
        :param token: The API-token obtained via the login() method.
        :param editmode: The mode which shall be used to persist the changes. Currently "new" and "bypass" are
                         supported.
        :return: True if the action succeeded.
        """
        return self.save_item("image", object_id, token, editmode=editmode)

    def save_repo(self, object_id, token, editmode="bypass"):
        """
        Saves a newly created or modified object to disk. Calling save is required for any changes to persist.

        :param object_id: The id of the object to save.
        :param token: The API-token obtained via the login() method.
        :param editmode: The mode which shall be used to persist the changes. Currently "new" and "bypass" are
                         supported.
        :return: True if the action succeeded.
        """
        return self.save_item("repo", object_id, token, editmode=editmode)

    def save_mgmtclass(self, object_id, token, editmode="bypass"):
        """
        Saves a newly created or modified object to disk. Calling save is required for any changes to persist.

        :param object_id: The id of the object to save.
        :param token: The API-token obtained via the login() method.
        :param editmode: The mode which shall be used to persist the changes. Currently "new" and "bypass" are
                         supported.
        :return: True if the action succeeded.
        """
        return self.save_item("mgmtclass", object_id, token, editmode=editmode)

    def save_package(self, object_id, token, editmode="bypass"):
        """
        Saves a newly created or modified object to disk. Calling save is required for any changes to persist.

        :param object_id: The id of the object to save.
        :param token: The API-token obtained via the login() method.
        :param editmode: The mode which shall be used to persist the changes. Currently "new" and "bypass" are
                         supported.
        :return: True if the action succeeded.
        """
        return self.save_item("package", object_id, token, editmode=editmode)

    def save_file(self, object_id, token, editmode="bypass"):
        """
        Saves a newly created or modified object to disk. Calling save is required for any changes to persist.

        :param object_id: The id of the object to save.
        :param token: The API-token obtained via the login() method.
        :param editmode: The mode which shall be used to persist the changes. Currently "new" and "bypass" are
                         supported.
        :return: True if the action succeeded.
        """
        return self.save_item("file", object_id, token, editmode=editmode)

    def get_autoinstall_templates(self, token=None, **rest):
        """
        Returns all of the automatic OS installation templates that are in use by the system.

        :param token: The API-token obtained via the login() method.
        :param rest: This is dropped in this method since it is not needed here.
        :return: A list with all templates.
        """
        self._log("get_autoinstall_templates", token=token)
        # self.check_access(token, "get_autoinstall_templates")
        return self.autoinstall_mgr.get_autoinstall_templates()

    def get_autoinstall_snippets(self, token=None, **rest):
        """
        Returns all the automatic OS installation templates' snippets.

        :param token: The API-token obtained via the login() method.
        :param rest: This is dropped in this method since it is not needed here.
        :return: A list with all snippets.
        """

        self._log("get_autoinstall_snippets", token=token)
        return self.autoinstall_mgr.get_autoinstall_snippets()

    def is_autoinstall_in_use(self, ai, token=None, **rest):
        """
        Check if the autoinstall for a system is in use.

        :param ai: The name of the system which could potentially be in autoinstall mode.
        :param token: The API-token obtained via the login() method.
        :param rest: This is dropped in this method since it is not needed here.
        :return: True if this is the case, otherwise False.
        """
        self._log("is_autoinstall_in_use", token=token)
        return self.autoinstall_mgr.is_autoinstall_in_use(ai)

    def generate_autoinstall(self, profile=None, system=None, REMOTE_ADDR=None, REMOTE_MAC=None, **rest):
        """
        Generate the autoinstallation file and return it.

        :param profile: The profile to generate the file for.
        :param system: The system to generate the file for.
        :param REMOTE_ADDR: This is dropped in this method since it is not needed here.
        :param REMOTE_MAC: This is dropped in this method since it is not needed here.
        :param rest: This is dropped in this method since it is not needed here.
        :return: The str representation of the file.
        """
        # ToDo: Remove unneed params: REMOTE_ADDR, REMOTE_MAC, rest
        self._log("generate_autoinstall")
        try:
            return self.autoinstall_mgr.generate_autoinstall(profile, system)
        except Exception:
            utils.log_exc(self.logger)
            return "# This automatic OS installation file had errors that prevented it from being rendered correctly.\n# The cobbler.log should have information relating to this failure."

    def generate_profile_autoinstall(self, profile):
        """
        Generate a profile autoinstallation.

        :param profile: The profile to generate the file for.
        :return: The str representation of the file.
        """
        return self.generate_autoinstall(profile=profile)

    def generate_system_autoinstall(self, system):
        """
        Generate a system autoinstallation.

        :param system: The system to generate the file for.
        :return: The str representation of the file.
        """
        return self.generate_autoinstall(system=system)

    def generate_gpxe(self, profile=None, system=None, **rest):
        """
        Generate the gpx configuration.

        Note: gPXE is deprecated and it is recommended to change to iPXE.

        :param profile: The profile to generate gPXE config for.
        :param system: The system to generate gPXE config for.
        :param rest: This is dropped in this method since it is not needed here.
        :return: The configuration as a str representation.
        """
        self._log("generate_gpxe")
        return self.api.generate_gpxe(profile, system)

    def generate_bootcfg(self, profile=None, system=None, **rest):
        """
        This generates the bootcfg for a system which is related to a certain profile.

        :param profile: The profile which is associated to the system.
        :param system: The system which the bootcfg should be generated for.
        :param rest: This is dropped in this method since it is not needed here.
        :return: The generated bootcfg.
        """
        self._log("generate_bootcfg")
        return self.api.generate_bootcfg(profile, system)

    def generate_script(self, profile=None, system=None, name=None, **rest):
        """
        Not known what this does exactly.

        :param profile: Not known for what the profile is needed.
        :param system: Not known for what the system is needed.
        :param name: Name of the generated script.
        :param rest: This is dropped in this method since it is not needed here.
        :return: Some generated script.
        """
        self._log("generate_script, name is %s" % str(name))
        return self.api.generate_script(profile, system, name)

    def get_blended_data(self, profile=None, system=None):
        """
        Combine all data which is available from a profile and system together and return it.

        :param profile: The profile of the system.
        :param system: The system for which the data should be rendered.
        :return: All values which could be blended together through the inheritance chain.
        """
        if profile is not None and profile != "":
            obj = self.api.find_profile(profile)
            if obj is None:
                raise CX("profile not found: %s" % profile)
        elif system is not None and system != "":
            obj = self.api.find_system(system)
            if obj is None:
                raise CX("system not found: %s" % system)
        else:
            raise CX("internal error, no system or profile specified")
        return self.xmlrpc_hacks(utils.blender(self.api, True, obj))

    def get_settings(self, token=None, **rest):
        """
        Return the contents of /etc/cobbler/settings, which is a dict.

        :param token: The API-token obtained via the login() method.
        :param rest: Unused parameter.
        :return: Get the settings which are currently in Cobbler present.
        """
        self._log("get_settings", token=token)
        results = self.api.settings().to_dict()
        self._log("my settings are: %s" % results, debug=True)
        return self.xmlrpc_hacks(results)

    def get_signatures(self, token=None, **rest):
        """
        Return the contents of the API signatures

        :param token: The API-token obtained via the login() method.
        :param rest: This is dropped in this method since it is not needed here.
        :return: Get the content of the currently loaded signatures file.
        """
        self._log("get_signatures", token=token)
        results = self.api.get_signatures()
        return self.xmlrpc_hacks(results)

    def get_valid_breeds(self, token=None, **rest):
        """
        Return the list of valid breeds as read in from the distro signatures data

        :param token: The API-token obtained via the login() method.
        :param rest: This is dropped in this method since it is not needed here.
        :return: All valid OS-Breeds which are present in Cobbler.
        """
        self._log("get_valid_breeds", token=token)
        results = utils.get_valid_breeds()
        results.sort()
        return self.xmlrpc_hacks(results)

    def get_valid_os_versions_for_breed(self, breed, token=None, **rest):
        """
        Return the list of valid os_versions for the given breed

        :param breed: The OS-Breed which is requested.
        :param token: The API-token obtained via the login() method.
        :param rest: This is dropped in this method since it is not needed here.
        :return: All valid OS-versions for a certain breed.
        """
        self._log("get_valid_os_versions_for_breed", token=token)
        results = utils.get_valid_os_versions_for_breed(breed)
        results.sort()
        return self.xmlrpc_hacks(results)

    def get_valid_os_versions(self, token=None, **rest):
        """
        Return the list of valid os_versions as read in from the distro signatures data

        :param token: The API-token obtained via the login() method.
        :param rest: This is dropped in this method since it is not needed here.
        :return: Get all valid OS-Versions
        """
        self._log("get_valid_os_versions", token=token)
        results = utils.get_valid_os_versions()
        results.sort()
        return self.xmlrpc_hacks(results)

    def get_valid_archs(self, token=None):
        """
        Return the list of valid architectures as read in from the distro signatures data

        :param token: The API-token obtained via the login() method.
        :return: Get a list of all valid architectures.
        """
        self._log("get_valid_archs", token=token)
        results = utils.get_valid_archs()
        results.sort()
        return self.xmlrpc_hacks(results)

    def get_repo_config_for_profile(self, profile_name, **rest):
        """
        Return the yum configuration a given profile should use to obtain all of it's Cobbler associated repos.

        :param profile_name: The name of the profile for which the repository config should be looked up.
        :param rest: This is dropped in this method since it is not needed here.
        :return: The repository configuration for the profile.
        """
        obj = self.api.find_profile(profile_name)
        if obj is None:
            return "# object not found: %s" % profile_name
        return self.api.get_repo_config_for_profile(obj)

    def get_repo_config_for_system(self, system_name, **rest):
        """
        Return the yum configuration a given profile should use to obtain all of it's Cobbler associated repos.

        :param system_name: The name of the system for which the repository config should be looked up.
        :param rest: This is dropped in this method since it is not needed here.
        :return: The repository configuration for the system.
        """
        obj = self.api.find_system(system_name)
        if obj is None:
            return "# object not found: %s" % system_name
        return self.api.get_repo_config_for_system(obj)

    def get_template_file_for_profile(self, profile_name, path, **rest):
        """
        Return the templated file requested for this profile

        :param profile_name: The name of the profile to get the template file for.
        :param path: The path to the template which is requested.
        :param rest: This is dropped in this method since it is not needed here.
        :return: The template file as a str representation.
        """
        obj = self.api.find_profile(profile_name)
        if obj is None:
            return "# object not found: %s" % profile_name
        return self.api.get_template_file_for_profile(obj, path)

    def get_template_file_for_system(self, system_name, path, **rest):
        """
        Return the templated file requested for this system

        :param system_name: The name of the system to get the template file for.
        :param path: The path to the template which is requested.
        :param rest: This is dropped in this method since it is not needed here.
        :return: The template file as a str representation.
        """
        obj = self.api.find_system(system_name)
        if obj is None:
            return "# object not found: %s" % system_name
        return self.api.get_template_file_for_system(obj, path)

    def register_new_system(self, info, token=None, **rest):
        """
        If register_new_installs is enabled in settings, this allows /usr/bin/cobbler-register (part of the koan
        package) to add new system records remotely if they don't already exist.
        There is a cobbler_register snippet that helps with doing this automatically for new installs but it can also be
        used for existing installs.

        See "AutoRegistration" on the Wiki.

        :param info: The system information which is provided by the system.
        :param token: The API-token obtained via the login() method.
        :param rest: This is dropped in this method since it is not needed here.
        :return: Return 0 if everything succeeded.
        """

        enabled = self.api.settings().register_new_installs
        if not str(enabled) in ["1", "y", "yes", "true"]:
            raise CX("registration is disabled in cobbler settings")

        # validate input
        name = info.get("name", "")
        profile = info.get("profile", "")
        hostname = info.get("hostname", "")
        interfaces = info.get("interfaces", {})
        ilen = len(list(interfaces.keys()))

        if name == "":
            raise CX("no system name submitted")
        if profile == "":
            raise CX("profile not submitted")
        if ilen == 0:
            raise CX("no interfaces submitted")
        if ilen >= 64:
            raise CX("too many interfaces submitted")

        # validate things first
        name = info.get("name", "")
        inames = list(interfaces.keys())
        if self.api.find_system(name=name):
            raise CX("system name conflicts")
        if hostname != "" and self.api.find_system(hostname=hostname):
            raise CX("hostname conflicts")

        for iname in inames:
            mac = info["interfaces"][iname].get("mac_address", "")
            ip = info["interfaces"][iname].get("ip_address", "")
            if ip.find("/") != -1:
                raise CX("no CIDR ips are allowed")
            if mac == "":
                raise CX("missing MAC address for interface %s" % iname)
            if mac != "":
                system = self.api.find_system(mac_address=mac)
                if system is not None:
                    raise CX("mac conflict: %s" % mac)
            if ip != "":
                system = self.api.find_system(ip_address=ip)
                if system is not None:
                    raise CX("ip conflict: %s" % ip)

        # looks like we can go ahead and create a system now
        obj = self.api.new_system()
        obj.set_profile(profile)
        obj.set_name(name)
        if hostname != "":
            obj.set_hostname(hostname)
        obj.set_netboot_enabled(False)
        for iname in inames:
            if info["interfaces"][iname].get("bridge", "") == 1:
                # don't add bridges
                continue
            mac = info["interfaces"][iname].get("mac_address", "")
            ip = info["interfaces"][iname].get("ip_address", "")
            netmask = info["interfaces"][iname].get("netmask", "")
            if mac == "?":
                # see koan/utils.py for explanation of network info discovery
                continue
            obj.set_mac_address(mac, iname)
            if hostname != "":
                obj.set_dns_name(hostname, iname)
            if ip != "" and ip != "?":
                obj.set_ip_address(ip, iname)
            if netmask != "" and netmask != "?":
                obj.set_netmask(netmask, iname)
        self.api.add_system(obj, logger=self.logger)
        return 0

    def disable_netboot(self, name, token=None, **rest):
        """
        This is a feature used by the pxe_just_once support, see manpage. Sets system named "name" to no-longer PXE.
        Disabled by default as this requires public API access and is technically a read-write operation.

        :param name: The name of the system to disable netboot for.
        :param token: The API-token obtained via the login() method.
        :param rest: This parameter is unused.
        :return: A boolean indicated the success of the action.
        """
        self._log("disable_netboot", token=token, name=name)
        # used by nopxe.cgi
        if not self.api.settings().pxe_just_once:
            # feature disabled!
            return False
        if str(self.api.settings().nopxe_with_triggers).upper() in ["1", "Y", "YES", "TRUE"]:
            # triggers should be enabled when calling nopxe
            triggers_enabled = True
        else:
            triggers_enabled = False
        systems = self.api.systems()
        obj = systems.find(name=name)
        if obj is None:
            # system not found!
            return False
        obj.set_netboot_enabled(0)
        # disabling triggers and sync to make this extremely fast.
        systems.add(obj, save=True, with_triggers=triggers_enabled, with_sync=False, quick_pxe_update=True)
        # re-generate dhcp configuration
        self.api.sync_dhcp(logger=self.logger)
        return True

    def upload_log_data(self, sys_name, file, size, offset, data, token=None, **rest):
        """
        This is a logger function used by the "anamon" logging system to upload all sorts of misc data from Anaconda.
        As it's a bit of a potential log-flooder, it's off by default and needs to be enabled in /etc/cobbler/settings.

        :param sys_name: The name of the system for which to upload log data.
        :param file: The file where the log data should be put.
        :param size: The size of the data which will be recieved.
        :param offset: The offset in the file where the data will be written to.
        :param data: The data that should be logged.
        :param token: The API-token obtained via the login() method.
        :param rest: This is dropped in this method since it is not needed here.
        :return: True if everything succeeded.
        """
        self._log("upload_log_data (file: '%s', size: %s, offset: %s)" % (file, size, offset), token=token, name=sys_name)

        # Check if enabled in self.api.settings()
        if not self.api.settings().anamon_enabled:
            # feature disabled!
            return False

        # Find matching system record
        systems = self.api.systems()
        obj = systems.find(name=sys_name)
        if obj is None:
            # system not found!
            self._log("upload_log_data - WARNING - system '%s' not found in Cobbler" % sys_name, token=token, name=sys_name)

        return self.__upload_file(sys_name, file, size, offset, data)

    def __upload_file(self, sys_name, file, size, offset, data):
        """
        Files can be uploaded in chunks, if so the size describes the chunk rather than the whole file. The offset
        indicates where the chunk belongs the special offset -1 is used to indicate the final chunk.

        :param sys_name: the name of the system
        :param file: the name of the file
        :param size: size of contents (bytes)
        :param offset: the offset of the chunk
        :param data: base64 encoded file contents
        :return: True if the action succeeded.
        """
        contents = base64.decodestring(data)
        del data
        if offset != -1:
            if size is not None:
                if size != len(contents):
                    return False

        # XXX - have an incoming dir and move after upload complete
        # SECURITY - ensure path remains under uploadpath
        tt = str.maketrans("/", "+")
        fn = str.translate(file, tt)
        if fn.startswith('..'):
            raise CX("invalid filename used: %s" % fn)

        # FIXME ... get the base dir from cobbler settings()
        udir = "/var/log/cobbler/anamon/%s" % sys_name
        if not os.path.isdir(udir):
            os.mkdir(udir, 0o755)

        fn = "%s/%s" % (udir, fn)
        try:
            st = os.lstat(fn)
        except OSError as e:
            if e.errno == errno.ENOENT:
                pass
            else:
                raise
        else:
            if not stat.S_ISREG(st.st_mode):
                raise CX("destination not a file: %s" % fn)

        fd = os.open(fn, os.O_RDWR | os.O_CREAT, 0o644)
        # log_error("fd=%r" %fd)
        try:
            if offset == 0 or (offset == -1 and size == len(contents)):
                # truncate file
                fcntl.lockf(fd, fcntl.LOCK_EX | fcntl.LOCK_NB)
                try:
                    os.ftruncate(fd, 0)
                    # log_error("truncating fd %r to 0" %fd)
                finally:
                    fcntl.lockf(fd, fcntl.LOCK_UN)
            if offset == -1:
                os.lseek(fd, 0, 2)
            else:
                os.lseek(fd, offset, 0)
            # write contents
            fcntl.lockf(fd, fcntl.LOCK_EX | fcntl.LOCK_NB, len(contents), 0, 2)
            try:
                os.write(fd, contents)
                # log_error("wrote contents")
            finally:
                fcntl.lockf(fd, fcntl.LOCK_UN, len(contents), 0, 2)
            if offset == -1:
                if size is not None:
                    # truncate file
                    fcntl.lockf(fd, fcntl.LOCK_EX | fcntl.LOCK_NB)
                    try:
                        os.ftruncate(fd, size)
                        # log_error("truncating fd %r to size %r" % (fd,size))
                    finally:
                        fcntl.lockf(fd, fcntl.LOCK_UN)
        finally:
            os.close(fd)
        return True

    def run_install_triggers(self, mode, objtype, name, ip, token=None, **rest):
        """
        This is a feature used to run the pre/post install triggers.
        See CobblerTriggers on Wiki for details

        :param mode: The mode of the triggers. May be "pre", "post" or "firstboot".
        :param objtype: The type of object. This should correspond to the collection type.
        :param name: The name of the object.
        :param ip: The ip of the objet.
        :param token: The API-token obtained via the login() method.
        :param rest: This is dropped in this method since it is not needed here.
        :return: True if everything worked correctly.
        """
        self._log("run_install_triggers", token=token)

        if mode != "pre" and mode != "post" and mode != "firstboot":
            return False
        if objtype != "system" and objtype != "profile":
            return False

        # The trigger script is called with name,mac, and ip as arguments 1,2, and 3 we do not do API lookups here
        # because they are rather expensive at install time if reinstalling all of a cluster all at once.
        # We can do that at "cobbler check" time.
        utils.run_triggers(self.api, None, "/var/lib/cobbler/triggers/install/%s/*" % mode,
                           additional=[objtype, name, ip], logger=self.logger)
        return True

    def version(self, token=None, **rest):
        """
        Return the Cobbler version for compatibility testing with remote applications.
        See api.py for documentation.

        :param token: The API-token obtained via the login() method.
        :param rest: This is dropped in this method since it is not needed here.
        :return: The short version of Cobbler.
        """
        self._log("version", token=token)
        return self.api.version()

    def extended_version(self, token=None, **rest):
        """
        Returns the full dictionary of version information.  See api.py for documentation.

        :param token: The API-token obtained via the login() method.
        :param rest: This is dropped in this method since it is not needed here.
        :return: The extended version of Cobbler
        """
        self._log("version", token=token)
        return self.api.version(extended=True)

    def get_distros_since(self, mtime):
        """
        Return all of the distro objects that have been modified after mtime.

        :param mtime: The time after which all items should be included. Everything before this will be excluded.
        :return: The list of items which were modified after ``mtime``.
        """
        data = self.api.get_distros_since(mtime, collapse=True)
        return self.xmlrpc_hacks(data)

    def get_profiles_since(self, mtime):
        """
        See documentation for get_distros_since

        :param mtime: The time after which all items should be included. Everything before this will be excluded.
        :return: The list of items which were modified after ``mtime``.
        """
        data = self.api.get_profiles_since(mtime, collapse=True)
        return self.xmlrpc_hacks(data)

    def get_systems_since(self, mtime):
        """
        See documentation for get_distros_since

        :param mtime: The time after which all items should be included. Everything before this will be excluded.
        :return: The list of items which were modified after ``mtime``.
        """
        data = self.api.get_systems_since(mtime, collapse=True)
        return self.xmlrpc_hacks(data)

    def get_repos_since(self, mtime):
        """
        See documentation for get_distros_since

        :param mtime: The time after which all items should be included. Everything before this will be excluded.
        :return: The list of items which were modified after ``mtime``.
        """
        data = self.api.get_repos_since(mtime, collapse=True)
        return self.xmlrpc_hacks(data)

    def get_images_since(self, mtime):
        """
        See documentation for get_distros_since

        :param mtime: The time after which all items should be included. Everything before this will be excluded.
        :return: The list of items which were modified after ``mtime``.
        """
        data = self.api.get_images_since(mtime, collapse=True)
        return self.xmlrpc_hacks(data)

    def get_mgmtclasses_since(self, mtime):
        """
        See documentation for get_distros_since

        :param mtime: The time after which all items should be included. Everything before this will be excluded.
        :return: The list of items which were modified after ``mtime``.
        """
        data = self.api.get_mgmtclasses_since(mtime, collapse=True)
        return self.xmlrpc_hacks(data)

    def get_packages_since(self, mtime):
        """
        See documentation for get_distros_since

        :param mtime: The time after which all items should be included. Everything before this will be excluded.
        :return: The list of items which were modified after ``mtime``.
        """
        data = self.api.get_packages_since(mtime, collapse=True)
        return self.xmlrpc_hacks(data)

    def get_files_since(self, mtime):
        """
        See documentation for get_distros_since

        :param mtime: The time after which all items should be included. Everything before this will be excluded.
        :return: The list of items which were modified after ``mtime``.
        """
        data = self.api.get_files_since(mtime, collapse=True)
        return self.xmlrpc_hacks(data)

    def get_repos_compatible_with_profile(self, profile=None, token=None, **rest):
        """
        Get repos that can be used with a given profile name.

        :param profile: The profile to check for compatibility.
        :param token: The API-token obtained via the login() method.
        :param rest: This is dropped in this method since it is not needed here.
        :return: The list of compatible repositories.
        :rtype: list
        """
        self._log("get_repos_compatible_with_profile", token=token)
        profile = self.api.find_profile(profile)
        if profile is None:
            return -1
        results = []
        distro = profile.get_conceptual_parent()
        repos = self.get_repos()
        for r in repos:
            # There be dragons!
            # Accept all repos that are src/noarch but otherwise filter what repos are compatible with the profile based
            # on the arch of the distro.
            if r["arch"] is None or r["arch"] in ["", "noarch", "src"]:
                results.append(r)
            else:
                # some backwards compatibility fuzz
                # repo.arch is mostly a text field
                # distro.arch is i386/x86_64
                if r["arch"] in ["i386", "x86", "i686"]:
                    if distro.arch in ["i386", "x86"]:
                        results.append(r)
                elif r["arch"] in ["x86_64"]:
                    if distro.arch in ["x86_64"]:
                        results.append(r)
                else:
                    if distro.arch == r["arch"]:
                        results.append(r)
        return results

    def find_system_by_dns_name(self, dns_name):
        """
        This is used by the puppet external nodes feature.

        :param dns_name: The dns name of the system. This should be the fqdn and not only the hostname.
        :return: All system information or an empty dict.
        """
        # FIXME: expose generic finds for other methods
        # WARNING: this function is /not/ expected to stay in Cobbler long term
        system = self.api.find_system(dns_name=dns_name)
        if system is None:
            return {}
        else:
            return self.get_system_as_rendered(system.name)

    def get_distro_as_rendered(self, name, token=None, **rest):
        """
        Get distribution after passing through Cobbler's inheritance engine.

        :param name: distro name
        :type name: str
        :param token: authentication token
        :type token: str
        :param rest: This is dropped in this method since it is not needed here.
        :return: Get a template rendered as a distribution.
        """

        self._log("get_distro_as_rendered", name=name, token=token)
        obj = self.api.find_distro(name=name)
        if obj is not None:
            return self.xmlrpc_hacks(utils.blender(self.api, True, obj))
        return self.xmlrpc_hacks({})

    def get_profile_as_rendered(self, name, token=None, **rest):
        """
        Get profile after passing through Cobbler's inheritance engine.

        :param name: profile name
        :type name: str
        :param token: authentication token
        :type token: str
        :param rest: This is dropped in this method since it is not needed here.
        :return: Get a template rendered as a profile.
        """

        self._log("get_profile_as_rendered", name=name, token=token)
        obj = self.api.find_profile(name=name)
        if obj is not None:
            return self.xmlrpc_hacks(utils.blender(self.api, True, obj))
        return self.xmlrpc_hacks({})

    def get_system_as_rendered(self, name, token=None, **rest):
        """
        Get profile after passing through Cobbler's inheritance engine.

        :param name: system name
        :type name: str
        :param token: authentication token
        :type token: str
        :param rest: This is dropped in this method since it is not needed here.
        :return: Get a template rendered as a system.
        """

        self._log("get_system_as_rendered", name=name, token=token)
        obj = self.api.find_system(name=name)
        if obj is not None:
            _dict = utils.blender(self.api, True, obj)
            # Generate a pxelinux.cfg?
            image_based = False
            profile = obj.get_conceptual_parent()
            distro = profile.get_conceptual_parent()

            # The management classes stored in the system are just a list of names, so we need to turn it into a full
            # list of dictionaries (right now we just use the params field).
            mcs = _dict["mgmt_classes"]
            _dict["mgmt_classes"] = {}
            for m in mcs:
                c = self.api.find_mgmtclass(name=m)
                if c:
                    _dict["mgmt_classes"][m] = c.to_dict()

            arch = None
            if distro is None and profile.COLLECTION_TYPE == "image":
                image_based = True
                arch = profile.arch
            else:
                arch = distro.arch

            if obj.is_management_supported():
                if not image_based:
                    _dict["pxelinux.cfg"] = self.tftpgen.write_pxe_file(
                        None, obj, profile, distro, arch)
                else:
                    _dict["pxelinux.cfg"] = self.tftpgen.write_pxe_file(
                        None, obj, None, None, arch, image=profile)

            return self.xmlrpc_hacks(_dict)
        return self.xmlrpc_hacks({})

    def get_repo_as_rendered(self, name, token=None, **rest):
        """
        Get repository after passing through Cobbler's inheritance engine.

        :param name: repository name
        :type name: str
        :param token: authentication token
        :type token: str
        :param rest: This is dropped in this method since it is not needed here.
        :return: Get a template rendered as a repository.
        """

        self._log("get_repo_as_rendered", name=name, token=token)
        obj = self.api.find_repo(name=name)
        if obj is not None:
            return self.xmlrpc_hacks(utils.blender(self.api, True, obj))
        return self.xmlrpc_hacks({})

    def get_image_as_rendered(self, name, token=None, **rest):
        """
        Get repository after passing through Cobbler's inheritance engine.

        :param name: image name
        :type name: str
        :param token: authentication token
        :type token: str
        :param rest: This is dropped in this method since it is not needed here.
        :return: Get a template rendered as an image.
        """

        self._log("get_image_as_rendered", name=name, token=token)
        obj = self.api.find_image(name=name)
        if obj is not None:
            return self.xmlrpc_hacks(utils.blender(self.api, True, obj))
        return self.xmlrpc_hacks({})

    def get_mgmtclass_as_rendered(self, name, token=None, **rest):
        """
        Get management class after passing through Cobbler's inheritance engine

        :param name: management class name
        :type name: str
        :param token: authentication token
        :type token: str
        :param rest: This is dropped in this method since it is not needed here.
        :return: Get a template rendered as a management class.
        """

        self._log("get_mgmtclass_as_rendered", name=name, token=token)
        obj = self.api.find_mgmtclass(name=name)
        if obj is not None:
            return self.xmlrpc_hacks(utils.blender(self.api, True, obj))
        return self.xmlrpc_hacks({})

    def get_package_as_rendered(self, name, token=None, **rest):
        """
        Get package after passing through Cobbler's inheritance engine

        :param name: package name
        :type name: str
        :param token: authentication token
        :type token: str
        :param rest: This is dropped in this method since it is not needed here.
        :return: Get a template rendered as a package.
        """

        self._log("get_package_as_rendered", name=name, token=token)
        obj = self.api.find_package(name=name)
        if obj is not None:
            return self.xmlrpc_hacks(utils.blender(self.api, True, obj))
        return self.xmlrpc_hacks({})

    def get_file_as_rendered(self, name, token=None, **rest):
        """
        Get file after passing through Cobbler's inheritance engine

        :param name: file name
        :type name: str
        :param token: authentication token
        :type token: str
        :param rest: This is dropped in this method since it is not needed here.
        :return: Get a template rendered as a file.
        """

        self._log("get_file_as_rendered", name=name, token=token)
        obj = self.api.find_file(name=name)
        if obj is not None:
            return self.xmlrpc_hacks(utils.blender(self.api, True, obj))
        return self.xmlrpc_hacks({})

    def get_distro_for_koan(self, name, token=None, **rest):
        """
        This is a legacy function for 2.6.6 releases.
        :param name: The name of the distro to get.
        :param token: Auth token to authenticate against the api.
        :param rest: This is dropped in this method since it is not needed here.
        :return: The desired distro or '~'.
        """
        self._log("get_distro_for_koan", name=name, token=token)
        obj = self.api.find_distro(name=name)
        if obj is not None:
            _dict = utils.blender(self.api, True, obj)
            _dict["ks_meta"] = _dict["autoinstall_meta"]
            return self.xmlrpc_hacks(_dict)
        return self.xmlrpc_hacks({})

    def get_profile_for_koan(self, name, token=None, **rest):
        """
        This is a legacy function for 2.6.6 releases.
        :param name: The name of the profile to get.
        :param token: Auth token to authenticate against the api.
        :param rest: This is dropped in this method since it is not needed here.
        :return: The desired profile or '~'.
        """
        self._log("get_profile_for_koan", name=name, token=token)
        obj = self.api.find_profile(name=name)
        if obj is not None:
            _dict = utils.blender(self.api, True, obj)
            _dict["kickstart"] = _dict["autoinstall"]
            _dict["ks_meta"] = _dict["autoinstall_meta"]
            return self.xmlrpc_hacks(_dict)
        return self.xmlrpc_hacks({})

    def get_system_for_koan(self, name, token=None, **rest):
        """
        This is a legacy function for 2.6.6 releases.
        :param name: The name of the system to get.
        :param token: Auth token to authenticate against the api.
        :param rest: This is dropped in this method since it is not needed here.
        :return: The desired system or '~'.
        """
        self._log("get_system_as_rendered", name=name, token=token)
        obj = self.api.find_system(name=name)
        if obj is not None:
            _dict = utils.blender(self.api, True, obj)

            # Generate a pxelinux.cfg?
            image_based = False
            profile = obj.get_conceptual_parent()
            distro = profile.get_conceptual_parent()

            # the management classes stored in the system are just a list
            # of names, so we need to turn it into a full list of dictionaries
            # (right now we just use the params field)
            mcs = _dict["mgmt_classes"]
            _dict["mgmt_classes"] = {}
            for m in mcs:
                c = self.api.find_mgmtclass(name=m)
                if c:
                    _dict["mgmt_classes"][m] = c.to_dict()

            arch = None
            if distro is None and profile.COLLECTION_TYPE == "image":
                image_based = True
                arch = profile.arch
            else:
                arch = distro.arch

            if obj.is_management_supported():
                if not image_based:
                    _dict["pxelinux.cfg"] = self.tftpgen.write_pxe_file(
                        None, obj, profile, distro, arch)
                else:
                    _dict["pxelinux.cfg"] = self.tftpgen.write_pxe_file(
                        None, obj, None, None, arch, image=profile)

            # Add legacy fields to the system
            _dict["kickstart"] = _dict["autoinstall"]
            _dict["ks_meta"] = _dict["autoinstall_meta"]

            return self.xmlrpc_hacks(_dict)
        return self.xmlrpc_hacks({})

    def get_repo_for_koan(self, name, token=None, **rest):
        """
        This is a legacy function for 2.6.6 releases.
        :param name: The name of the repo to get.
        :param token: Auth token to authenticate against the api.
        :param rest: This is dropped in this method since it is not needed here.
        :return: The desired repo or '~'.
        """
        self._log("get_repo_for_koan", name=name, token=token)
        obj = self.api.find_repo(name=name)
        if obj is not None:
            return self.xmlrpc_hacks(utils.blender(self.api, True, obj))
        return self.xmlrpc_hacks({})

    def get_image_for_koan(self, name, token=None, **rest):
        """
        This is a legacy function for 2.6.6 releases.
        :param name: The name of the image to get.
        :param token: Auth token to authenticate against the api.
        :param rest: This is dropped in this method since it is not needed here.
        :return: The desired image or '~'
        """
        self._log("get_image_for_koan", name=name, token=token)
        obj = self.api.find_image(name=name)
        if obj is not None:
            _dict = utils.blender(self.api, True, obj)
            _dict["kickstart"] = _dict["autoinstall"]
            return self.xmlrpc_hacks(_dict)
        return self.xmlrpc_hacks({})

    def get_mgmtclass_for_koan(self, name, token=None, **rest):
        """
        This is a legacy function for 2.6.6 releases.
        :param name: Name of the mgmtclass to get.
        :param token: Auth token to authenticate against the api.
        :param rest: This is dropped in this method since it is not needed here.
        :return: The desired mgmtclass or `~`.
        """
        self._log("get_mgmtclass_for_koan", name=name, token=token)
        obj = self.api.find_mgmtclass(name=name)
        if obj is not None:
            return self.xmlrpc_hacks(utils.blender(self.api, True, obj))
        return self.xmlrpc_hacks({})

    def get_package_for_koan(self, name, token=None, **rest):
        """
        This is a legacy function for 2.6.6 releases.
        :param name: Name of the package to get.
        :param token: Auth token to authenticate against the api.
        :param rest: This is dropped in this method since it is not needed here.
        :return: The desired package or '~'.
        """
        self._log("get_package_for_koan", name=name, token=token)
        obj = self.api.find_package(name=name)
        if obj is not None:
            return self.xmlrpc_hacks(utils.blender(self.api, True, obj))
        return self.xmlrpc_hacks({})

    def get_file_for_koan(self, name, token=None, **rest):
        """
        This is a legacy function for 2.6.6 releases.
        :param name: Name of the file to get.
        :param token: Auth token to authenticate against the api.
        :param rest: This is dropped in this method since it is not needed here.
        :return: The desired file or '~'.
        """
        self._log("get_file_for_koan", name=name, token=token)
        obj = self.api.find_file(name=name)
        if obj is not None:
            return self.xmlrpc_hacks(utils.blender(self.api, True, obj))
        return self.xmlrpc_hacks({})

    def get_random_mac(self, virt_type="xenpv", token=None, **rest):
        """
        Wrapper for ``utils.get_random_mac()``. Used in the webui.

        :param virt_type: The type of the virtual machine.
        :param token: The API-token obtained via the login() method. Auth token to authenticate against the api.
        :param rest: This is dropped in this method since it is not needed here.
        :return: The random mac address which shall be used somewhere else.
        """
        # ToDo: Remove rest param
        self._log("get_random_mac", token=None)
        return utils.get_random_mac(self.api, virt_type)

    def xmlrpc_hacks(self, data):
        """
        Convert None in XMLRPC to just '~' to make extra sure a client that can't allow_none can deal with this.

        ALSO: a weird hack ensuring that when dicts with integer keys (or other types) are transmitted with string keys.

        :param data: The data to prepare for the XMLRPC response.
        :return: The converted data.
        """
        return utils.strip_none(data)

    def get_status(self, mode="normal", token=None, **rest):
        """
        Returns the same information as `cobbler status`
        While a read-only operation, this requires a token because it's potentially a fair amount of I/O

        :param mode: How the status should be presented.
        :param token: The API-token obtained via the login() method. Auth token to authenticate against the api.
        :param rest: This parameter is currently unused for this method.
        :return: The human or machine readable status of the status of Cobbler.
        """
        self.check_access(token, "sync")
        return self.api.status(mode=mode, logger=self.logger)

    def __get_random(self, length):
        """
        Get a random string of a desired length.

        :param length: The length of the
        :return: A random string of the desired length from ``/dev/urandom``.
        :rtype: str
        """
        # FIXME: Use random class instead of /dev/urandom
        urandom = open("/dev/urandom", 'rb')
        b64 = base64.b64encode(urandom.read(length))
        urandom.close()
        return b64.decode()

    def __make_token(self, user):
        """
        Returns a new random token.

        :param user: The user for which the token should be generated.
        :return: The token which was generated.
        :rtype: str
        """
        b64 = self.__get_random(25)
        self.token_cache[b64] = (time.time(), user)
        return b64

    def __invalidate_expired_tokens(self):
        """
        Deletes any login tokens that might have expired. Also removes expired events.
        """
        timenow = time.time()
        for token in list(self.token_cache.keys()):
            (tokentime, user) = self.token_cache[token]
            if (timenow > tokentime + self.api.settings().auth_token_expiration):
                self._log("expiring token", token=token, debug=True)
                del self.token_cache[token]
        # and also expired objects
        for oid in list(self.object_cache.keys()):
            (tokentime, entry) = self.object_cache[oid]
            if (timenow > tokentime + CACHE_TIMEOUT):
                del self.object_cache[oid]
        for tid in list(self.events.keys()):
            (eventtime, name, status, who) = self.events[tid]
            if (timenow > eventtime + EVENT_TIMEOUT):
                del self.events[tid]
            # logfile cleanup should be dealt w/ by logrotate

    def __validate_user(self, input_user, input_password):
        """
        Returns whether this user/pass combo should be given access to the Cobbler read-write API.

        For the system user, this answer is always "yes", but it is only valid for the socket interface.

        FIXME: currently looks for users in /etc/cobbler/auth.conf
        Would be very nice to allow for PAM and/or just Kerberos.

        :param input_user: The user to validate.
        :param input_password: The password to validate.
        :return: The return of the operation.
        """
        return self.api.authenticate(input_user, input_password)

    def __validate_token(self, token):
        """
        Checks to see if an API method can be called when the given token is passed in. Updates the timestamp of the
        token automatically to prevent the need to repeatedly call login(). Any method that needs access control should
        call this before doing anything else.

        :param token: The token to validate.
        :return: True if access is allowed, otherwise False.
        """
        self.__invalidate_expired_tokens()

        if token in self.token_cache:
            user = self.get_user_from_token(token)
            if user == "<system>":
                # system token is only valid over Unix socket
                return False
            self.token_cache[token] = (time.time(), user)       # update to prevent timeout
            return True
        else:
            self._log("invalid token", token=token)
            return False

    def __name_to_object(self, resource, name):
        if resource.find("distro") != -1:
            return self.api.find_distro(name)
        if resource.find("profile") != -1:
            return self.api.find_profile(name)
        if resource.find("system") != -1:
            return self.api.find_system(name)
        if resource.find("repo") != -1:
            return self.api.find_repo(name)
        if resource.find("mgmtclass") != -1:
            return self.api.find_mgmtclass(name)
        if resource.find("package") != -1:
            return self.api.find_package(name)
        if resource.find("file") != -1:
            return self.api.find_file(name)
        return None

    def check_access_no_fail(self, token, resource, arg1=None, arg2=None):
        """
        This is called by the WUI to decide whether an element is editable or not. It differs form check_access in that
        it is supposed to /not/ log the access checks (TBA) and does not raise exceptions.

        :param token: The token to check access for.
        :param resource: The resource for which access shall be checked.
        :param arg1: Arguments to hand to the authorization provider.
        :param arg2: Arguments to hand to the authorization provider.
        :return: True if the object is editable or False otherwise.
        :rtype: bool
        """
        need_remap = False
        for x in ["distro", "profile", "system", "repo", "image", "mgmtclass", "package", "file"]:
            if arg1 is not None and resource.find(x) != -1:
                need_remap = True
                break

        if need_remap:
            # we're called with an object name, but need an object
            arg1 = self.__name_to_object(resource, arg1)

        try:
            self.check_access(token, resource, arg1, arg2)
            return True
        except:
            utils.log_exc(self.logger)
            return False

    def check_access(self, token, resource, arg1=None, arg2=None):
        """
        Check if the token which was provided has access.

        :param token: The token to check access for.
        :param resource: The resource for which access shall be checked.
        :param arg1: Arguments to hand to the authorization provider.
        :param arg2: Arguments to hand to the authorization provider.
        :return: Whether the authentication was successful or not.
        """
        user = self.get_user_from_token(token)
        if user == "<DIRECT>":
            self._log("CLI Authorized", debug=True)
            return True
        rc = self.api.authorize(user, resource, arg1, arg2)
        self._log("%s authorization result: %s" % (user, rc), debug=True)
        if not rc:
            raise CX("authorization failure for user %s" % user)
        return rc

    def get_authn_module_name(self, token):
        """
        Get the name of the currently used authentication module.

        :param token: The API-token obtained via the login() method. Cobbler token, obtained form login()
        :return: The name of the module.
        """
        user = self.get_user_from_token(token)
        if user != "<DIRECT>":
            raise CX("authorization failure for user %s attempting to access authn module name" % user)
        return self.api.get_module_name_from_file("authentication", "module")

    def login(self, login_user, login_password):
        """
        Takes a username and password, validates it, and if successful returns a random login token which must be used
        on subsequent method calls. The token will time out after a set interval if not used. Re-logging in permitted.

        :param login_user: The username which is used to authenticate at Cobbler.
        :param login_password:  The password which is used to authenticate at Cobbler.
        :return: The token which can be used further on.
        """
        # if shared secret access is requested, don't bother hitting the auth plugin
        if login_user == "":
            if login_password == self.shared_secret:
                return self.__make_token("<DIRECT>")
            else:
                utils.die(self.logger, "login failed")

        # This should not log to disk OR make events as we're going to call it like crazy in CobblerWeb. Just failed
        # attempts.
        if self.__validate_user(login_user, login_password):
            token = self.__make_token(login_user)
            return token
        else:
            utils.die(self.logger, "login failed (%s)" % login_user)

    def logout(self, token):
        """
        Retires a token ahead of the timeout.

        :param token: The API-token obtained via the login() method. Cobbler token, obtained form login()
        :return: if operation was successful or not
        :rtype: bool
        """
        self._log("logout", token=token)
        if token in self.token_cache:
            del self.token_cache[token]
            return True
        return False

    def token_check(self, token):
        """
        Checks to make sure a token is valid or not.

        :param token: The API-token obtained via the login() method. Cobbler token, obtained form login()
        :return: if operation was successful or not
        :rtype: bool
        """
        return self.__validate_token(token)

    def sync_dhcp(self, token):
        """
        Run sync code, which should complete before XMLRPC timeout. We can't do reposync this way. Would be nice to
        send output over AJAX/other later.

        :param token: The API-token obtained via the login() method. Cobbler token, obtained form login()
        :return:  bool if operation was successful
        """
        self._log("sync_dhcp", token=token)
        self.check_access(token, "sync")
        self.api.sync_dhcp(logger=self.logger)
        return True

    def sync(self, token):
        """
        Run sync code, which should complete before XMLRPC timeout. We can't do reposync this way. Would be nice to
        send output over AJAX/other later.

        :param token: The API-token obtained via the login() method. Cobbler token, obtained form login()
        :return: bool if operation was successful
        """
        # FIXME: performance
        self._log("sync", token=token)
        self.check_access(token, "sync")
        self.api.sync(logger=self.logger)
        return True

    def read_autoinstall_template(self, file_path, token):
        """
        Read an automatic OS installation template file

        :param file_path: automatic OS installation template file path
        :type file_path: str
        :param token: The API-token obtained via the login() method. Cobbler token, obtained form login()
        :returns: file content
        :rtype: str
        """
        what = "read_autoinstall_template"
        self._log(what, name=file_path, token=token)
        self.check_access(token, what, file_path, True)

        return self.autoinstall_mgr.read_autoinstall_template(file_path)

    def write_autoinstall_template(self, file_path, data, token):
        """
        Write an automatic OS installation template file

        :param file_path: automatic OS installation template file path
        :type file_path: str
        :param data: new file content
        :type data: str
        :param token: The API-token obtained via the login() method. Cobbler token, obtained form login()
        :returns: bool if operation was successful
        """

        what = "write_autoinstall_template"
        self._log(what, name=file_path, token=token)
        self.check_access(token, what, file_path, True)

        self.autoinstall_mgr.write_autoinstall_template(file_path, data)

        return True

    def remove_autoinstall_template(self, file_path, token):
        """
        Remove an automatic OS installation template file

        :param file_path: automatic OS installation template file path
        :type file_path: str
        :param token: The API-token obtained via the login() method. Cobbler token, obtained form login()
        :returns: bool if operation was successful
        """
        what = "write_autoinstall_template"
        self._log(what, name=file_path, token=token)
        self.check_access(token, what, file_path, True)

        self.autoinstall_mgr.remove_autoinstall_template(file_path)

        return True

    def read_autoinstall_snippet(self, file_path, token):
        """
        Read an automatic OS installation snippet file

        :param file_path: automatic OS installation snippet file path
        :type file_path: str
        :param token: The API-token obtained via the login() method. Cobbler token, obtained form login()
        :returns: file content
        :rtype: str
        """
        what = "read_autoinstall_snippet"
        self._log(what, name=file_path, token=token)
        self.check_access(token, what, file_path, True)

        return self.autoinstall_mgr.read_autoinstall_snippet(file_path)

    def write_autoinstall_snippet(self, file_path, data, token):
        """
        Write an automatic OS installation snippet file

        :param file_path: automatic OS installation snippet file path
        :type file_path: str
        :param data: new file content
        :type data: str
        :param token: Cobbler token, obtained form login()
        :return: if operation was successful
        :rtype: bool
        """

        what = "write_autoinstall_snippet"
        self._log(what, name=file_path, token=token)
        self.check_access(token, what, file_path, True)

        self.autoinstall_mgr.write_autoinstall_snippet(file_path, data)

        return True

    def remove_autoinstall_snippet(self, file_path, token):
        """
        Remove an automated OS installation snippet file

        :param file_path: automated OS installation snippet file path
        :type file_path: str
        :param token: Cobbler token, obtained form login()
        :return: bool if operation was successful
        """

        what = "remove_autoinstall_snippet"
        self._log(what, name=file_path, token=token)
        self.check_access(token, what, file_path, True)

        self.autoinstall_mgr.remove_autoinstall_snippet(file_path)

        return True

    def get_config_data(self, hostname):
        """
        Generate configuration data for the system specified by hostname.

        :param hostname: The hostname for what to get the config data of.
        :return: The config data as a json for Koan.
        :rtype: str
        """
        self._log("get_config_data for %s" % hostname)
        obj = configgen.ConfigGen(hostname)
        return obj.gen_config_data_for_koan()

    def clear_system_logs(self, object_id, token=None, logger=None):
        """
        clears console logs of a system

        :param object_id: The object id of the system to clear the logs of.
        :param token: The API-token obtained via the login() method.
        :param logger: The logger to audit all actions with.
        :return: True if the operation succeeds.
        """
        obj = self.__get_object(object_id)
        self.check_access(token, "clear_system_logs", obj)
        self.api.clear_logs(obj, logger=logger)
        return True

# *********************************************************************************


class CobblerXMLRPCServer(ThreadingMixIn, xmlrpc.server.SimpleXMLRPCServer):
    """
    This is the class for the main Cobbler XMLRPC Server. This class does not directly contain all XMLRPC methods. It
    just starts the server.
    """

    def __init__(self, args):
        """
        The constructor for the main Cobbler XMLRPC server.

        :param args: Arguments which are handed to the Python XMLRPC server.
        """
        self.allow_reuse_address = True
        xmlrpc.server.SimpleXMLRPCServer.__init__(self, args)

# *********************************************************************************


class ProxiedXMLRPCInterface(object):

    def __init__(self, api, proxy_class):
        """
        This interface allows proxying request through another class.

        :param api: The api object to resolve information with
        :param proxy_class: The class which proxies the requests.
        """
        self.proxied = proxy_class(api)
        self.logger = self.proxied.api.logger

    def _dispatch(self, method, params, **rest):
        """
        This method magically registers the methods at the XMLRPC interface.

        :param method: The method to register.
        :param params: The params for the method.
        :param rest: This gets dropped curently.
        :return: The result of the method.
        """
        # ToDo: Drop rest param
        if method.startswith('_'):
            raise CX("forbidden method")

        if not hasattr(self.proxied, method):
            raise CX("unknown remote method '%s'" % method)

        method_handle = getattr(self.proxied, method)

        # FIXME: see if this works without extra boilerplate
        try:
            return method_handle(*params)
        except Exception as e:
            utils.log_exc(self.logger)
            raise e

# EOF
   070701000000BA000081A40000000000000000000000015ECE2444000009A3000000000000000000000000000000000000002200000000cobbler-3.1.2/cobbler/resource.py """
An Resource is a serializable thing that can appear in a Collection

Copyright 2006-2009, Red Hat, Inc and Others
Kelsey Hightower <khightower@gmail.com>

This software may be freely redistributed under the terms of the GNU
general public license.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301  USA.
"""

from cobbler.cexceptions import CX
from cobbler.items import item


class Resource(item.Item):
    """
    Base Class for management resources.
    """

    def set_action(self, action):
        """
        All management resources have an action. Action determine weather a most resources should be created or removed,
        and if packages should be installed or uninstalled.

        :param action: The action which should be executed for the management resource. Must be on of "create" or
                       "remove". Parameter is case-insensitive.
        :type action: str
        """
        action = action.lower()
        valid_actions = ['create', 'remove']
        if action not in valid_actions:
            raise CX('%s is not a valid action' % action)
        self.action = action

    def set_group(self, group):
        """
        Unix group ownership of a file or directory.

        :param group: The group which the resource will belong to.
        """
        self.group = group

    def set_mode(self, mode):
        """
        Unix file permission mode ie: '0644' assigned to file and directory resources.

        :param mode: The mode which the resource will have.
        """
        self.mode = mode

    def set_owner(self, owner):
        """
        Unix owner of a file or directory.

        :param owner: The owner which the resource will belong to.
        """
        self.owner = owner

    def set_path(self, path):
        """
        File path used by file and directory resources.

        :param path: Normally a absolute path of the file or directory to create or manage.
        """
        self.path = path

    def set_template(self, template):
        """
        Path to cheetah template on Cobbler's local file system. Used to generate file data shipped to koan via json.
        All templates have access to flatten autoinstall_meta data.

        :param template: The template to use for the resource.
        """
        self.template = template
 070701000000BB000081A40000000000000000000000015ECE244400000FBC000000000000000000000000000000000000002400000000cobbler-3.1.2/cobbler/serializer.py   """
Serializer code for Cobbler
Now adapted to support different storage backends

Copyright 2006-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""

import fcntl
import os
import sys
import time
import traceback

from cobbler import module_loader

LOCK_ENABLED = True
LOCK_HANDLE = None


def handler(num, frame):
    print("Ctrl-C not allowed during writes. Please wait.", file=sys.stderr)
    return True


def __grab_lock():
    """
    Dual purpose locking:
    (A) flock to avoid multiple process access
    (B) block signal handler to avoid ctrl+c while writing YAML
    """
    try:
        if LOCK_ENABLED:
            if not os.path.exists("/var/lib/cobbler/lock"):
                fd = open("/var/lib/cobbler/lock", "w+")
                fd.close()
            LOCK_HANDLE = open("/var/lib/cobbler/lock", "r")
            fcntl.flock(LOCK_HANDLE.fileno(), fcntl.LOCK_EX)
    except:
        # this is pretty much FATAL, avoid corruption and quit now.
        traceback.print_exc()
        sys.exit(7)


def __release_lock(with_changes=False):
    if with_changes:
        # this file is used to know the time of last modification on cobbler_collections
        # was made -- allowing the API to work more smoothly without
        # a lot of unneccessary reloads.
        fd = open("/var/lib/cobbler/.mtime", 'w')
        fd.write("%f" % time.time())
        fd.close()
    if LOCK_ENABLED:
        LOCK_HANDLE = open("/var/lib/cobbler/lock", "r")
        fcntl.flock(LOCK_HANDLE.fileno(), fcntl.LOCK_UN)
        LOCK_HANDLE.close()


def serialize(collection):
    """
    Save a collection to disk

    :param collection: The collection to serialize.
    """

    __grab_lock()
    storage_module = __get_storage_module(collection.collection_type())
    storage_module.serialize(collection)
    __release_lock()


def serialize_item(collection, item):
    """
    Save a collection item to disk

    :param collection: The Cobbler collection to know the type of the item.
    :param item: The collection item to serialize.
    """

    __grab_lock()
    storage_module = __get_storage_module(collection.collection_type())
    storage_module.serialize_item(collection, item)
    __release_lock(with_changes=True)


def serialize_delete(collection, item):
    """
    Delete a collection item from disk

    :param collection: The Cobbler collection to know the type of the item.
    :param item: The collection item to delete.
    """

    __grab_lock()
    storage_module = __get_storage_module(collection.collection_type())
    storage_module.serialize_delete(collection, item)
    __release_lock(with_changes=True)


def deserialize(collection, topological=True):
    """
    Load a collection from disk.

    :param collection: The Cobbler collection to know the type of the item.
    :param topological: Unkown parameter.
    :type topological: bool
    """
    __grab_lock()
    storage_module = __get_storage_module(collection.collection_type())
    storage_module.deserialize(collection, topological)
    __release_lock()


def __get_storage_module(collection_type):
    """
    Look up serializer in /etc/cobbler/modules.conf

    :param collection_type: str
    :returns: A Python module.
    """
    return module_loader.get_module_from_file("serializers", collection_type, "serializers.file")

# EOF
070701000000BC000081A40000000000000000000000015ECE2444000042CC000000000000000000000000000000000000002200000000cobbler-3.1.2/cobbler/services.py """
Mod Python service functions for Cobbler's public interface
(aka cool stuff that works with wget/curl)

based on code copyright 2007 Albert P. Tobey <tobert@gmail.com>
additions: 2007-2009 Michael DeHaan <michael.dehaan AT gmail>

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
"""

from future import standard_library
standard_library.install_aliases()
from builtins import str
from builtins import object
import simplejson
import time
import xmlrpc.client
import yaml
from cobbler.cobbler_collections import manager
from cobbler import download_manager


class CobblerSvc(object):
    """
    Interesting mod python functions are all keyed off the parameter mode, which defaults to index. All options are
    passed as parameters into the function.
    """
    def __init__(self, server=None, req=None):
        """
        Default constructor which sets up everything to be ready.

        :param server: The domain to run at.
        :param req: This parameter is unused.
        """
        # ToDo: Remove req attribute.
        self.server = server
        self.remote = None
        self.req = req
        self.collection_mgr = manager.CollectionManager(self)
        self.logger = None
        self.dlmgr = download_manager.DownloadManager(self.collection_mgr, self.logger)

    def __xmlrpc_setup(self):
        """
        Sets up the connection to the Cobbler XMLRPC server. This is the version that does not require a login.
        """
        if self.remote is None:
            self.remote = xmlrpc.client.Server(self.server, allow_none=True)

    def index(self, **args):
        """
        Just a placeholder method as an entry point.

        :param args: This parameter is unused.
        :return: "no mode specified"
        :rtype: str
        """
        return "no mode specified"

    def debug(self, profile=None, **rest):
        # The purpose of this method could change at any time and is intented for temporary test code only, don't rely
        # on it.
        self.__xmlrpc_setup()
        return self.remote.get_repos_compatible_with_profile(profile)

    def autoinstall(self, profile=None, system=None, REMOTE_ADDR=None, REMOTE_MAC=None, **rest):
        """
        Generate automatic installation files.

        :param profile:
        :param system:
        :param REMOTE_ADDR:
        :param REMOTE_MAC:
        :param rest: This parameter is unused.
        :return:
        """
        self.__xmlrpc_setup()
        data = self.remote.generate_autoinstall(profile, system, REMOTE_ADDR, REMOTE_MAC)
        return "%s" % data

    def ks(self, profile=None, system=None, REMOTE_ADDR=None, REMOTE_MAC=None, **rest):
        """
        Generate automatic installation files. This is a legacy function for part backward compability to 2.6.6
        releases.

        :param profile:
        :param system:
        :param REMOTE_ADDR:
        :param REMOTE_MAC:
        :param rest: This parameter is unused.
        :return:
        """
        self.__xmlrpc_setup()
        data = self.remote.generate_autoinstall(profile, system, REMOTE_ADDR, REMOTE_MAC)
        return "%s" % data

    def gpxe(self, profile=None, system=None, mac=None, **rest):
        """
        Generate a gPXE config

        :param profile:
        :param system:
        :param mac:
        :param rest: This parameter is unused.
        :return:
        """
        self.__xmlrpc_setup()
        if not system and mac:
            query = {"mac_address": mac}
            if profile:
                query["profile"] = profile
            found = self.remote.find_system(query)
            if found:
                system = found[0]

        data = self.remote.generate_gpxe(profile, system)
        return "%s" % data

    def bootcfg(self, profile=None, system=None, **rest):
        """
        Generate a boot.cfg config file. Used primarily for VMware ESXi.

        :param profile:
        :param system:
        :param rest: This parameter is unused.
        :return:
        """
        self.__xmlrpc_setup()
        data = self.remote.generate_bootcfg(profile, system)
        return "%s" % data

    def script(self, profile=None, system=None, **rest):
        """
        Generate a script based on snippets. Useful for post or late-action scripts where it's difficult to embed the
        script in the response file.

        :param profile: The profile to generate the script for.
        :param system: The system to generate the script for.
        :param rest: This may contain a parameter with the key "query_string" which has a key "script" which may be an
                     array. The element from position zero is taken.
        :return: The generated script.
        :rtype: str
        """
        self.__xmlrpc_setup()
        data = self.remote.generate_script(profile, system, rest['query_string']['script'][0])
        return "%s" % data

    def events(self, user="", **rest):
        """
        If no user is given then all events are returned. Otherwise only event associated to a user are returned.

        :param user: Filter the events for a given user.
        :param rest: This parameter is unused.
        :return: A JSON object which contains all events.
        :rtype: str
        """
        self.__xmlrpc_setup()
        if user == "":
            data = self.remote.get_events("")
        else:
            data = self.remote.get_events(user)

        # sort it... it looks like { timestamp : [ array of details ] }
        keylist = list(data.keys())
        keylist.sort()
        results = []
        for k in keylist:
            etime = int(data[k][0])
            nowtime = time.time()
            if ((nowtime - etime) < 30):
                results.append([k, data[k][0], data[k][1], data[k][2]])
        return simplejson.dumps(results)

    def template(self, profile=None, system=None, path=None, **rest):
        """
        Generate a templated file for the system. Either specify a profile OR a system.

        :param profile: The profile to provide for the generation of the template.
        :param system: The system to provide for the generation of the template.
        :param path: The path to the template.
        :param rest: This parameter is unused.
        :return: The rendered template.
        :rtype: str
        """
        self.__xmlrpc_setup()
        if path is not None:
            path = path.replace("_", "/")
            path = path.replace("//", "_")
        else:
            return "# must specify a template path"

        if profile is not None:
            data = self.remote.get_template_file_for_profile(profile, path)
        elif system is not None:
            data = self.remote.get_template_file_for_system(system, path)
        else:
            data = "# must specify profile or system name"
        return data

    def yum(self, profile=None, system=None, **rest):
        """
        Generate a repo config. Either specify a profile OR a system.

        :param profile: The profile to provide for the generation of the template.
        :param system: The system to provide for the generation of the template.
        :param rest: This parameter is unused.
        :return: The generated repository config.
        :rtype: str
        """
        self.__xmlrpc_setup()
        if profile is not None:
            data = self.remote.get_repo_config_for_profile(profile)
        elif system is not None:
            data = self.remote.get_repo_config_for_system(system)
        else:
            data = "# must specify profile or system name"
        return data

    def trig(self, mode="?", profile=None, system=None, REMOTE_ADDR=None, **rest):
        """
        Hook to call install triggers. Only valid for a profile OR a system.

        :param mode: Can be "pre", "post" or "firstboot". Everything else is invalid.
        :type mode: str
        :param profile: The profile object to run triggers for.
        :param system: The system object to run triggers for.
        :param REMOTE_ADDR: The ip if the remote system/profile.
        :param rest: This parameter is unused.
        :return: The return code of the action.
        :rtype: str
        """
        self.__xmlrpc_setup()
        ip = REMOTE_ADDR
        if profile:
            rc = self.remote.run_install_triggers(mode, "profile", profile, ip)
        else:
            rc = self.remote.run_install_triggers(mode, "system", system, ip)
        return str(rc)

    def nopxe(self, system=None, **rest):
        """
        Disables the network boot for the given system.

        :param system: The system to disable netboot for.
        :param rest: This parameter is unused.
        :return: A boolean status if the action succeed or not.
        :rtype: str
        """
        self.__xmlrpc_setup()
        return str(self.remote.disable_netboot(system))

    def list(self, what="systems", **rest):
        """
        Return a list of objects of a desired category. Defaults to "systems".

        :param what: May be "systems", "profiles", "distros", "images", "repos", "mgmtclasses", "packages" or "files"
        :param rest: This parameter is unused.
        :return: The list of object names.
        :rtype: str
        """
        self.__xmlrpc_setup()
        buf = ""
        if what == "systems":
            listing = self.remote.get_systems()
        elif what == "profiles":
            listing = self.remote.get_profiles()
        elif what == "distros":
            listing = self.remote.get_distros()
        elif what == "images":
            listing = self.remote.get_images()
        elif what == "repos":
            listing = self.remote.get_repos()
        elif what == "mgmtclasses":
            listing = self.remote.get_mgmtclasses()
        elif what == "packages":
            listing = self.remote.get_packages()
        elif what == "files":
            listing = self.remote.get_files()
        else:
            return "?"
        for x in listing:
            buf += "%s\n" % x["name"]
        return buf

    def autodetect(self, **rest):
        """
        This tries to autodect the system with the given information. If more than one candidate is found an error
        message is returned.

        :param rest: The keys "REMOTE_MACS", "REMOTE_ADDR" or "interfaces".
        :return: The name of the possible object or an error message.
        :rtype: str
        """
        self.__xmlrpc_setup()
        systems = self.remote.get_systems()

        # If kssendmac was in the kernel options line, see if a system can be found matching the MAC address. This is
        # more specific than an IP match.

        macinput = [mac.split(' ').lower() for mac in rest["REMOTE_MACS"]]

        ip = rest["REMOTE_ADDR"]

        candidates = []

        for x in systems:
            for y in x["interfaces"]:
                if x["interfaces"][y]["mac_address"].lower() in macinput:
                    candidates.append(x)

        if len(candidates) == 0:
            for x in systems:
                for y in x["interfaces"]:
                    if x["interfaces"][y]["ip_address"] == ip:
                        candidates.append(x)

        if len(candidates) == 0:
            return "FAILED: no match (%s,%s)" % (ip, macinput)
        elif len(candidates) > 1:
            return "FAILED: multiple matches"
        elif len(candidates) == 1:
            return candidates[0]["name"]

    def look(self, **rest):
        """
        Debug only: Show the handed dict via repr to the requester.
        :param rest: The dict to represent.
        :return: The dict reformated with repr()
        :rtype; str
        """

        return repr(rest)

    def find_autoinstall(self, system=None, profile=None, **rest):
        """
        Find an autoinstallation for a system or a profile. If this is not known different parameters can be passed to
        rest to find it automatically. See "autodetect".

        :param system: The system to find the autoinstallation for,
        :param profile: The profile to find the autoinstallation for.
        :param rest: The metadata to find the autoinstallation automatically.
        :return: The autoinstall script or error message.
        """
        self.__xmlrpc_setup()

        serverseg = "http://%s" % self.collection_mgr._settings.server

        name = "?"
        if system is not None:
            url = "%s/cblr/svc/op/autoinstall/system/%s" % (serverseg, name)
        elif profile is not None:
            url = "%s/cblr/svc/op/autoinstall/profile/%s" % (serverseg, name)
        else:
            name = self.autodetect(**rest)
            if name.startswith("FAILED"):
                return "# autodetection %s" % name
            url = "%s/cblr/svc/op/autoinstall/system/%s" % (serverseg, name)

        try:
            return self.dlmgr.urlread(url)
        except:
            return "# automatic installation file retrieval failed (%s)" % url

    def findks(self, system=None, profile=None, **rest):
        """
        This is a legacy function which enabled Cobbler partly to be backward compatible to 2.6.6 releases.

        It should be only be used if you must. Please use find_autoinstall if possible!
        :param system: If you wish to find a system please set this parameter to not null. Hand over the name of it.
        :param profile: If you wish to find a system please set this parameter to not null. Hand over the name of it.
        :param rest: If you wish you can try to let Cobbler autodetect the system with the MAC address.
        :return: Returns the autoinstall/kickstart profile.
        """
        self.__xmlrpc_setup()

        serverseg = "http://%s" % self.collection_mgr._settings.server

        name = "?"
        if system is not None:
            url = "%s/cblr/svc/op/ks/system/%s" % (serverseg, name)
        elif profile is not None:
            url = "%s/cblr/svc/op/ks/profile/%s" % (serverseg, name)
        else:
            name = self.autodetect(**rest)
            if name.startswith("FAILED"):
                return "# autodetection %s" % name
            url = "%s/cblr/svc/op/ks/system/%s" % (serverseg, name)

        try:
            return self.dlmgr.urlread(url)
        except:
            return "# kickstart retrieval failed (%s)" % url

    def puppet(self, hostname=None, **rest):
        """
        Dump the puppet data which is available for Cobbler.

        :param hostname: The hostname for the system which should the puppet data be dumped for.
        :param rest: This parameter is unused.
        :return: The yaml for the host.
        :rtype: str
        """
        self.__xmlrpc_setup()

        if hostname is None:
            return "hostname is required"

        settings = self.remote.get_settings()
        results = self.remote.find_system_by_dns_name(hostname)

        classes = results.get("mgmt_classes", {})
        params = results.get("mgmt_parameters", {})
        environ = results.get("status", "")

        data = {
            "classes": classes,
            "parameters": params,
            "environment": environ,
        }

        if environ == "":
            data.pop("environment", None)

        if settings.get("puppet_parameterized_classes", False):
            for ckey in list(classes.keys()):
                tmp = {}
                class_name = classes[ckey].get("class_name", "")
                if class_name in (None, ""):
                    class_name = ckey
                if classes[ckey].get("is_definition", False):
                    def_tmp = {}
                    def_name = classes[ckey]["params"].get("name", "")
                    del classes[ckey]["params"]["name"]
                    if def_name != "":
                        for pkey in list(classes[ckey]["params"].keys()):
                            def_tmp[pkey] = classes[ckey]["params"][pkey]
                        tmp["instances"] = {def_name: def_tmp}
                    else:
                        # FIXME: log an error here?
                        # skip silently...
                        continue
                else:
                    for pkey in list(classes[ckey]["params"].keys()):
                        tmp[pkey] = classes[ckey]["params"][pkey]
                del classes[ckey]
                classes[class_name] = tmp
        else:
            classes = list(classes.keys())

        return yaml.dump(data, default_flow_style=False)
070701000000BD000081A40000000000000000000000015ECE24440000300E000000000000000000000000000000000000002200000000cobbler-3.1.2/cobbler/settings.py """
Cobbler app-wide settings

Copyright 2006-2008, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""
import sys
from builtins import str
from builtins import object
import glob
import os.path
import re

from cobbler import utils
from cobbler.utils import _

TESTMODE = False

# defaults is to be used if the config file doesn't contain the value we need
DEFAULTS = {
    "allow_duplicate_hostnames": [0, "bool"],
    "allow_duplicate_ips": [0, "bool"],
    "allow_duplicate_macs": [0, "bool"],
    "allow_dynamic_settings": [0, "bool"],
    "always_write_dhcp_entries": [0, "bool"],
    "anamon_enabled": [0, "bool"],
    "auth_token_expiration": [3600, "int"],
    "authn_pam_service": ["login", "str"],
    "autoinstall_snippets_dir": ["/var/lib/cobbler/snippets", "str"],
    "autoinstall_templates_dir": ["/var/lib/cobbler/templates", "str"],
    "bind_chroot_path": ["", "str"],
    "bind_master": ["127.0.0.1", "str"],
    "boot_loader_conf_template_dir": ["/etc/cobbler/boot_loader_conf", "str"],
    "bootloaders_dir": ["/var/lib/cobbler/loaders", "str"],
    "grubconfig_dir": ["/var/lib/cobbler/grub_config", "str"],
    "build_reporting_enabled": [0, "bool"],
    "build_reporting_ignorelist": ["", "str"],
    "build_reporting_sender": ["", "str"],
    "build_reporting_smtp_server": ["localhost", "str"],
    "build_reporting_subject": ["", "str"],
    "buildisodir": ["/var/cache/cobbler/buildiso", "str"],
    "cheetah_import_whitelist": [["re", "random", "time"], "list"],
    "client_use_https": [0, "bool"],
    "client_use_localhost": [0, "bool"],
    "cobbler_master": ["", "str"],
    "createrepo_flags": ["-c cache -s sha", "str"],
    "default_autoinstall": ["/var/lib/cobbler/templates/default.ks", "str"],
    "default_name_servers": [[], "list"],
    "default_name_servers_search": [[], "list"],
    "default_ownership": [["admin"], "list"],
    "default_password_crypted": [r"\$1\$mF86/UHC\$WvcIcX2t6crBz2onWxyac.", "str"],
    "default_template_type": ["cheetah", "str"],
    "default_virt_bridge": ["xenbr0", "str"],
    "default_virt_disk_driver": ["raw", "str"],
    "default_virt_file_size": [5, "int"],
    "default_virt_ram": [512, "int"],
    "default_virt_type": ["auto", "str"],
    "enable_gpxe": [0, "bool"],
    "enable_menu": [1, "bool"],
    "http_port": [80, "int"],
    "include": [["/etc/cobbler/settings.d/*.settings"], "list"],
    "iso_template_dir": ["/etc/cobbler/iso", "str"],
    "kernel_options": [{}, "dict"],
    "ldap_anonymous_bind": [1, "bool"],
    "ldap_base_dn": ["DC=devel,DC=redhat,DC=com", "str"],
    "ldap_port": [389, "int"],
    "ldap_search_bind_dn": ["", "str"],
    "ldap_search_passwd": ["", "str"],
    "ldap_search_prefix": ['uid=', "str"],
    "ldap_server": ["grimlock.devel.redhat.com", "str"],
    "ldap_tls": ["on", "str"],
    "ldap_tls_cacertfile": ["", "str"],
    "ldap_tls_certfile": ["", "str"],
    "ldap_tls_keyfile": ["", "str"],
    "bind_manage_ipmi": [0, "bool"],
    "manage_dhcp": [0, "bool"],
    "manage_dns": [0, "bool"],
    "manage_forward_zones": [[], "list"],
    "manage_reverse_zones": [[], "list"],
    "manage_genders": [0, "bool"],
    "manage_rsync": [0, "bool"],
    "manage_tftp": [1, "bool"],
    "manage_tftpd": [1, "bool"],
    "mgmt_classes": [[], "list"],
    "mgmt_parameters": [{}, "dict"],
    "next_server": ["127.0.0.1", "str"],
    "nsupdate_enabled": [0, "bool"],
    "power_management_default_type": ["ipmitool", "str"],
    "proxy_url_ext": ["", "str"],
    "proxy_url_int": ["", "str"],
    "puppet_auto_setup": [0, "bool"],
    "puppet_parameterized_classes": [1, "bool"],
    "puppet_server": ["puppet", "str"],
    "puppet_version": [2, "int"],
    "puppetca_path": ["/usr/bin/puppet", "str"],
    "pxe_just_once": [1, "bool"],
    "nopxe_with_triggers": [1, "bool"],
    "redhat_management_permissive": [0, "bool"],
    "redhat_management_server": ["xmlrpc.rhn.redhat.com", "str"],
    "redhat_management_key": ["", "str"],
    "register_new_installs": [0, "bool"],
    "remove_old_puppet_certs_automatically": [0, "bool"],
    "replicate_repo_rsync_options": ["-avzH", "str"],
    "replicate_rsync_options": ["-avzH", "str"],
    "reposync_flags": ["-l -m -d", "str"],
    "restart_dhcp": [1, "bool"],
    "restart_dns": [1, "bool"],
    "run_install_triggers": [1, "bool"],
    "scm_track_enabled": [0, "bool"],
    "scm_track_mode": ["git", "str"],
    "scm_track_author": ["cobbler <cobbler@localhost>", "str"],
    "scm_push_script": ["/bin/true", "str"],
    "serializer_pretty_json": [0, "bool"],
    "server": ["127.0.0.1", "str"],
    "sign_puppet_certs_automatically": [0, "bool"],
    "signature_path": ["/var/lib/cobbler/distro_signatures.json", "str"],
    "signature_url": ["https://cobbler.github.io/signatures/3.0.x/latest.json", "str"],
    "tftpboot_location": ["/var/lib/tftpboot", "str"],
    "virt_auto_boot": [0, "bool"],
    "webdir": ["/var/www/cobbler", "str"],
    "webdir_whitelist": [".link_cache", "misc", "distro_mirror", "images", "links", "localmirror", "pub", "rendered", "repo_mirror", "repo_profile", "repo_system", "svc", "web", "webui"],
    "xmlrpc_port": [25151, "int"],
    "yum_distro_priority": [1, "int"],
    "yum_post_install_mirror": [1, "bool"],
    "yumdownloader_flags": ["--resolve", "str"],
}

FIELDS = [
    ["name", "", "", "Name", True, "Ex: server", 0, "str"],
    ["value", "", "", "Value", True, "Ex: 127.0.0.1", 0, "str"],
]

if os.path.exists("/srv/www/"):
    DEFAULTS["webdir"] = "/srv/www/cobbler"

# Autodetect bind chroot configuration
# RHEL/Fedora
if os.path.exists("/etc/sysconfig/named"):
    bind_config_filename = "/etc/sysconfig/named"
# Debian
else:
    bind_config_filename = None
    bind_config_files = glob.glob("/etc/default/bind*")
    for filename in bind_config_files:
        if os.path.exists(filename):
            bind_config_filename = filename
# Parse the config file
if bind_config_filename:
    bind_config = {}
    # When running as a webapp we can't access this, but don't need it
    try:
        bind_config_file = open(bind_config_filename, "r")
    except (IOError, OSError):
        pass
    else:
        for line in bind_config_file:
            if re.match(r"[a-zA-Z]+=", line):
                (name, value) = line.rstrip().split("=")
                bind_config[name] = value.strip('"')
        # RHEL, SysV Fedora
        if "ROOTDIR" in bind_config:
            DEFAULTS["bind_chroot_path"] = bind_config["ROOTDIR"]
        # Debian, Systemd Fedora
        if "OPTIONS" in bind_config:
            rootdirmatch = re.search(r"-t ([/\w]+)", bind_config["OPTIONS"])
            if rootdirmatch is not None:
                DEFAULTS["bind_chroot_path"] = rootdirmatch.group(1)


class Settings(object):

    @staticmethod
    def collection_type():
        """
        This is a hardcoded string which represents the collection type.

        :return: "setting"
        :rtype: str
        """
        return "setting"

    @staticmethod
    def collection_types() -> str:
        """
        return the collection plural name
        """
        return "settings"

    def __init__(self):
        """
        Constructor.
        """
        self._clear()
        if (self.manage_tftp or self.manage_tftpd) and not os.path.isdir(self.tftpboot_location):
            print("TFTP directory '{}' not found".format(self.tftpboot_location), file=sys.stderr)
            sys.exit(1)

    def _clear(self):
        """
        This resets all settings to the defaults which are built into Cobbler.
        """
        self.__dict__ = {}
        for key in list(DEFAULTS.keys()):
            self.__dict__[key] = DEFAULTS[key][0]

    def set(self, name, value):
        """
        Alias for setting an option "name" to the new value "value". (See __settattr__)

        :param name: The name of the setting to set.
        :param value: The value of the setting to set.
        :return: 0 if the action was completed successfully. No return if there is an error.
        """
        return self.__setattr__(name, value)

    def to_string(self):
        """
        Returns the kernel options as a string.

        :return: The multiline string with the kernel options.
        :rtype: str
        """
        buf = ""
        buf += _("defaults\n")
        buf += _("kernel options  : %s\n") % self.__dict__['kernel_options']
        return buf

    def to_dict(self):
        """
        Return an easily serializable representation of the config.

        :return: The dict with all user settings combined with settings which are left to the default.
        :rtype: dict
        """
        return self.__dict__

    def from_dict(self, _dict):
        """
        Modify this object to load values in dictionary.

        WARNING: If the dict from the args has not all settings included Cobbler may behave unexpectedly.

        :param _dict: The dictionary with settings to replace.
        :return: Returns the settings instance this method was called from.
        """
        if _dict is None:
            print(_("warning: not loading empty structure for %s") % self.filename())
            return

        self._clear()
        self.__dict__.update(_dict)

        return self

    def __setattr__(self, name, value):
        """
        This sets the value of the settings named in the args.

        :param name: The setting to set its value.
        :param value: The value of the setting "name". Must be the correct the type.
        :return: 0 if the action was completed successfully. No return if there is an error.
        :raises AttributeError: Raised if the setting with "name" has the wrong type.
        """
        if name in DEFAULTS:
            try:
                if DEFAULTS[name][1] == "str":
                    value = str(value)
                elif DEFAULTS[name][1] == "int":
                    value = int(value)
                elif DEFAULTS[name][1] == "bool":
                    if utils.input_boolean(value):
                        value = 1
                    else:
                        value = 0
                elif DEFAULTS[name][1] == "float":
                    value = float(value)
                elif DEFAULTS[name][1] == "list":
                    value = utils.input_string_or_list(value)
                elif DEFAULTS[name][1] == "dict":
                    value = utils.input_string_or_dict(value)[1]
            except:
                raise AttributeError

            self.__dict__[name] = value
            if not utils.update_settings_file(self.to_dict()):
                raise AttributeError

            return 0
        else:
            # FIXME. Not sure why __dict__ is part of name
            # workaround applied, ignore exception
            # raise AttributeError
            pass

    def __getattr__(self, name):
        """
        This returns the current value of the setting named in the args.

        :param name: The setting to return the value of.
        :return: The value of the setting "name".
        """
        try:
            if name == "kernel_options":
                # backwards compatibility -- convert possible string value to dict
                (success, result) = utils.input_string_or_dict(self.__dict__[name], allow_multiples=False)
                self.__dict__[name] = result
                return result
            return self.__dict__[name]
        except:
            if name in DEFAULTS:
                lookup = DEFAULTS[name][0]
                self.__dict__[name] = lookup
                return lookup
            else:
                raise AttributeError
  070701000000BE000081A40000000000000000000000015ECE244400002728000000000000000000000000000000000000002100000000cobbler-3.1.2/cobbler/templar.py  """
Cobbler uses Cheetah templates for lots of stuff, but there's
some additional magic around that to deal with snippets/etc.
(And it's not spelled wrong!)

Copyright 2008-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""

from builtins import str
from builtins import object
import Cheetah
import functools
import os
import os.path
import pprint

jinja2_available = False
try:
    import jinja2
    jinja2_available = True
except:
    """ FIXME: log a message here """
    pass

from .cexceptions import CX
from . import clogger
from .template_api import Template
from . import utils

major, minor, release = Cheetah.Version.split('.')[0:3]
fix_cheetah_class = (int(major), int(minor), int(release)) >= (2, 4, 2)


class Templar(object):

    def __init__(self, collection_mgr, logger=None):
        """
        Constructor

        :param collection_mgr: The main collection manager instance which is used by the current running server.
        :param logger: The logger which audits the actions of the object instance.
        """

        self.collection_mgr = None
        self.settings = None
        if collection_mgr:
            self.collection_mgr = collection_mgr
            self.settings = collection_mgr.settings()

        self.last_errors = []

        if logger is None:
            logger = clogger.Logger()
        self.logger = logger

    def check_for_invalid_imports(self, data):
        """
        Ensure that Cheetah code is not importing Python modules that may allow for advanced privileges by ensuring we
        whitelist the imports that we allow.

        :param data: The Cheetah code to check.
        """
        lines = data.split("\n")
        for line in lines:
            if line.find("#import") != -1:
                rest = line.replace("#import", "").replace(" ", "").strip()
                if self.settings and rest not in self.settings.cheetah_import_whitelist:
                    raise CX("potentially insecure import in template: %s" % rest)

    def render(self, data_input, search_table, out_path, subject=None, template_type=None):
        """
        Render data_input back into a file.

        :param data_input: is either a string or a filename
        :param search_table: is a dict of metadata keys and values out_path if not-none writes the results to a file
                             (though results are always returned)
        :param out_path: Optional parameter which (if present), represents the target path to write the result into.
        :param subject: is a profile or system object, if available (for snippet eval)
        :param template_type: May currently be "cheetah" or "jinja2".
        :type template_type: str
        :return: The rendered template.
        :rtype: str
        """

        if not isinstance(data_input, str):
            raw_data = data_input.read()
        else:
            raw_data = data_input
        lines = raw_data.split('\n')

        if not template_type:
            # Assume we're using the default template type, if set in the settinigs file or use cheetah as the last
            # resort
            if self.settings and self.settings.default_template_type:
                template_type = self.settings.default_template_type
            else:
                template_type = "cheetah"

        if len(lines) > 0 and lines[0].find("#template=") == 0:
            # Pull the template type out of the first line and then drop it and rejoin them to pass to the template
            # language
            template_type = lines[0].split("=")[1].strip().lower()
            del lines[0]
            raw_data = "\n".join(lines)

        if template_type == "cheetah":
            data_out = self.render_cheetah(raw_data, search_table, subject)
        elif template_type == "jinja2":
            if jinja2_available:
                data_out = self.render_jinja2(raw_data, search_table, subject)
            else:
                return "# ERROR: JINJA2 NOT AVAILABLE. Maybe you need to install python-jinja2?\n"
        else:
            return "# ERROR: UNSUPPORTED TEMPLATE TYPE (%s)" % str(template_type)

        # Now apply some magic post-filtering that is used by "cobbler import" and some other places. Forcing folks to
        # double escape things would be very unwelcome.
        hp = search_table.get("http_port", "80")
        server = search_table.get("server", "server.example.org")
        if hp not in (80, '80'):
            repstr = "%s:%s" % (server, hp)
        else:
            repstr = server
        search_table["http_server"] = repstr

        for x in list(search_table.keys()):
            if type(x) == str:
                data_out = data_out.replace("@@%s@@" % str(x), str(search_table[str(x)]))

        # remove leading newlines which apparently breaks AutoYAST ?
        if data_out.startswith("\n"):
            data_out = data_out.lstrip()

        # if requested, write the data out to a file
        if out_path is not None:
            utils.mkdir(os.path.dirname(out_path))
            fd = open(out_path, "w+")
            fd.write(data_out)
            fd.close()

        return data_out

    def render_cheetah(self, raw_data, search_table, subject=None):
        """
        Render data_input back into a file.

        :param raw_data: Is the template code which is not rendered into the result.
        :param search_table: is a dict of metadata keys and values (though results are always returned)
        :param subject: is a profile or system object, if available (for snippet eval)
        :return: The rendered Cheetah Template.
        """

        self.check_for_invalid_imports(raw_data)

        # Backward support for Cobbler's legacy (and slightly more readable) template syntax.
        raw_data = raw_data.replace("TEMPLATE::", "$")

        # HACK: the autoinstall_meta field may contain nfs://server:/mount in which case this is likely WRONG for
        # automated installation files, which needs the NFS directive instead. Do this to make the templates work.
        newdata = ""
        if "tree" in search_table and search_table["tree"].startswith("nfs://"):
            for line in raw_data.split("\n"):
                if line.find("--url") != -1 and line.find("url ") != -1:
                    rest = search_table["tree"][6:]        # strip off "nfs://" part
                    try:
                        (server, dir) = rest.split(":", 2)
                    except:
                        raise CX("Invalid syntax for NFS path given during import: %s" % search_table["tree"])
                    line = "nfs --server %s --dir %s" % (server, dir)
                    # But put the URL part back in so koan can still see what the original value was
                    line += "\n" + "#url --url=%s" % search_table["tree"]
                newdata += line + "\n"
            raw_data = newdata

        # Tell Cheetah not to blow up if it can't find a symbol for something.
        raw_data = "#errorCatcher ListErrors\n" + raw_data

        table_copy = search_table.copy()

        # For various reasons we may want to call a module inside a template and pass it all of the template variables.
        # The variable "template_universe" serves this purpose to make it easier to iterate through all of the variables
        # without using internal Cheetah variables

        search_table.update({
            "template_universe": table_copy
        })

        # Now do full templating scan, where we will also templatify the snippet insertions
        t = Template(source=raw_data, searchList=[search_table], compilerSettings={'useStackFrame': False})

        if fix_cheetah_class:
            t.SNIPPET = functools.partial(t.SNIPPET, t)
            t.read_snippet = functools.partial(t.read_snippet, t)

        try:
            data_out = t.respond()
            self.last_errors = t.errorCatcher().listErrors()
            if self.last_errors:
                self.logger.warning("errors were encountered rendering the template")
                self.logger.warning("\n" + pprint.pformat(self.last_errors))
        except Exception as e:
            self.logger.error(utils.cheetah_exc(e))
            raise CX("Error templating file, check cobbler.log for more details")

        return data_out

    def render_jinja2(self, raw_data, search_table, subject=None):
        """
        Render data_input back into a file.

        :param raw_data: Is the template code which is not rendered into the result.
        :param search_table: is a dict of metadata keys and values
        :param subject: is a profile or system object, if available (for snippet eval)
        :return: The rendered Jinja2 Template.
        """

        try:
            if self.settings and self.settings.jinja2_includedir:
                template = jinja2.Environment(loader=jinja2.FileSystemLoader(self.settings.jinja2_includedir)).from_string(raw_data)
            else:
                template = jinja2.Template(raw_data)
            data_out = template.render(search_table)
        except Exception as exc:
            self.logger.warning("errors were encountered rendering the template")
            self.logger.warning(exc.__str__())
            data_out = "# EXCEPTION OCCURRED DURING JINJA2 TEMPLATE PROCESSING\n"

        return data_out
070701000000BF000081A40000000000000000000000015ECE2444000024F4000000000000000000000000000000000000002600000000cobbler-3.1.2/cobbler/template_api.py """
Cobbler provides builtin methods for use in Cheetah templates. $SNIPPET is one
such function and is now used to implement Cobbler's SNIPPET:: syntax.

Written by Daniel Guernsey <danpg102@gmail.com>
Contributions by Michael DeHaan <michael.dehaan AT gmail>
US Government work; No explicit copyright attached to this file.

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
"""

import Cheetah.Template as cheetah_template
import os.path
import re

from cobbler.cexceptions import FileNotFoundException
from cobbler import utils

CHEETAH_MACROS_FILE = '/etc/cobbler/cheetah_macros'

# This class is defined using the Cheetah language. Using the 'compile' function
# we can compile the source directly into a python class. This class will allow
# us to define the cheetah builtins.


class Template(cheetah_template.Template):
    """
    This class will allow us to include any pure python builtin functions.
    It derives from the cheetah-compiled class above. This way, we can include both types (cheetah and pure python) of
    builtins in the same base template. We don't need to override __init__
    """

    def __init__(self, **kwargs):
        """
        Constructor for this derived class. We include two additional default templates.

        :param kwargs: These arguments get passed to the super constructor of this class.
        """
        self.MacrosTemplate = Template.compile(file=CHEETAH_MACROS_FILE)
        self.BuiltinTemplate = Template.compile(source="\n".join([

            # This part (see 'Template' below
            # for the other part) handles the actual inclusion of the file contents. We
            # still need to make the snippet's namespace (searchList) available to the
            # template calling SNIPPET (done in the other part).

            # Moved the other functions into /etc/cobbler/cheetah_macros
            # Left SNIPPET here since it is very important.

            # This function can be used in two ways:
            # Cheetah syntax:
            #
            # $SNIPPET('my_snippet')
            #
            # SNIPPET syntax:
            #
            # SNIPPET::my_snippet
            #
            # This follows all of the rules of snippets and advanced snippets. First it
            # searches for a per-system snippet, then a per-profile snippet, then a
            # general snippet. If none is found, a comment explaining the error is
            # substituted.
            "#def SNIPPET($file)",
            "#set $snippet = $read_snippet($file)",
            "#if $snippet",
            "#include source=$snippet",
            "#else",
            "# Error: no snippet data for $file",
            "#end if",
            "#end def",
        ]) + "\n")
        super(Template, self).__init__(**kwargs)

    # OK, so this function gets called by Cheetah.Template.Template.__init__ to compile the template into a class. This
    # is probably a kludge, but it add a baseclass argument to the standard compile (see Cheetah's compile docstring)
    # and returns the resulting class. This argument, of course, points to this class. Now any methods entered here (or
    # in the base class above) will be accessible to all cheetah templates compiled by Cobbler.

    @classmethod
    def compile(cls, *args, **kwargs):
        """
        Compile a cheetah template with Cobbler modifications. Modifications include SNIPPET:: syntax replacement and
        inclusion of Cobbler builtin methods.

        :param args: These just get passed right to Cheetah.
        :param kwargs: We just execute our own preprocessors and remove them and let afterwards handle Cheetah the rest.
        :return: The compiled template.
        :rtype: bytes
        """
        def replacer(match):
            return "$SNIPPET('%s')" % match.group(1)

        def preprocess(source, file):
            # Normally, the cheetah compiler worries about this, but we need to preprocess the actual source.
            if source is None:
                if hasattr(file, 'read'):
                    source = file.read()
                else:
                    if os.path.exists(file):
                        with open(file, "r") as f:
                            source = "#errorCatcher Echo\n" + f.read()
                    else:
                        source = "# Unable to read %s\n" % file
                file = None     # Stop Cheetah from throwing a fit.

            rx = re.compile(r'SNIPPET::([A-Za-z0-9_\-\/\.]+)')
            results = rx.sub(replacer, source)
            return results, file
        preprocessors = [preprocess]
        if 'preprocessors' in kwargs:
            preprocessors.extend(kwargs['preprocessors'])
        kwargs['preprocessors'] = preprocessors

        # Instruct Cheetah to use this class as the base for all cheetah templates
        if 'baseclass' not in kwargs:
            kwargs['baseclass'] = Template

        # Now let Cheetah do the actual compilation
        return super(Template, cls).compile(*args, **kwargs)

    def read_snippet(self, file):
        """
        Locate the appropriate snippet for the current system and profile and read it's contents.

        This file could be located in a remote location.

        This will first check for a per-system snippet, a per-profile snippet, a distro snippet, and a general snippet.
        If no snippet is located, it returns None.

        :param file: The file to read-
        :return: None (if the snippet file was not found) or the string with the read snippet.
        :rtype: str
        """
        for snipclass in ('system', 'profile', 'distro'):
            if self.varExists('%s_name' % snipclass):
                fullpath = '%s/per_%s/%s/%s' % (self.getVar('autoinstall_snippets_dir'),
                                                snipclass, file,
                                                self.getVar('%s_name' % snipclass))
                try:
                    contents = utils.read_file_contents(fullpath, fetch_if_remote=True)
                    return contents
                except FileNotFoundException:
                    pass

        try:
            return "#errorCatcher ListErrors\n" + utils.read_file_contents('%s/%s' % (self.getVar('autoinstall_snippets_dir'), file), fetch_if_remote=True)
        except FileNotFoundException:
            return None

    def SNIPPET(self, file):
        """
        Include the contents of the named snippet here. This is equivalent to the #include directive in Cheetah, except
        that it searches for system and profile specific snippets, and it includes the snippet's namespace.

        This may be a little frobby, but it's really cool. This is a pure python portion of SNIPPET that appends the
        snippet's searchList to the caller's searchList. This makes any #defs within a given snippet available to the
        template that included the snippet.

        :param file: The snippet file to read and include in the template.
        :return: The updated template.
        """
        # First, do the actual inclusion. Cheetah (when processing #include) will track the inclusion in
        # self._CHEETAH__cheetahIncludes
        result = self.BuiltinTemplate.SNIPPET(self, file)

        # Now do our dirty work: locate the new include, and append its searchList to ours. We have to compute the full
        # path again? Eww.

        # This weird method is getting even weirder, the cheetah includes keys are no longer filenames but actual
        # contents of snippets. Regardless this seems to work and hopefully it will be ok.

        snippet_contents = self.read_snippet(file)
        if snippet_contents:
            # Only include what we don't already have. Because Cheetah passes our searchList into included templates,
            # the snippet's searchList will include this templates searchList. We need to avoid duplicating entries.
            childList = self._CHEETAH__cheetahIncludes[snippet_contents].searchList()
            myList = self.searchList()
            for childElem in childList:
                if childElem not in myList:
                    myList.append(childElem)

        return result

    # This function is used by several cheetah methods in cheetah_macros. It can be used by the end user as well.
    # Ex: Replace all instances of '/etc/banner' with a value stored in
    # $new_banner
    #
    # sed 's/$sedesc("/etc/banner")/$sedesc($new_banner)/'
    #
    def sedesc(self, value):
        """
        Escape a string for use in sed.

        :param value: The phrase to escape.
        :return: The escaped phrase.
        """

        def escchar(c):
            if c in '/^.[]$()|*+?{}\\':
                return '\\' + c
            else:
                return c
        return ''.join([escchar(c) for c in value])
070701000000C0000081A40000000000000000000000015ECE24440000CBF2000000000000000000000000000000000000002100000000cobbler-3.1.2/cobbler/tftpgen.py  """
Generate files provided by TFTP server based on Cobbler object tree.
This is the code behind 'cobbler sync'.

Copyright 2006-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""

import os
import os.path
import re
import socket

from cobbler import templar
from cobbler import utils
from cobbler.cexceptions import CX


class TFTPGen(object):
    """
    Generate files provided by TFTP server
    """
    def __init__(self, collection_mgr, logger):
        """
        Constructor
        """
        self.collection_mgr = collection_mgr
        self.logger = logger
        self.api = collection_mgr.api
        self.distros = collection_mgr.distros()
        self.profiles = collection_mgr.profiles()
        self.systems = collection_mgr.systems()
        self.settings = collection_mgr.settings()
        self.repos = collection_mgr.repos()
        self.images = collection_mgr.images()
        self.templar = templar.Templar(collection_mgr)
        self.bootloc = self.settings.tftpboot_location

    def copy_bootloaders(self, dest):
        """
        Copy bootloaders to the configured tftpboot directory
        NOTE: we support different arch's if defined in /etc/cobbler/settings.
        """
        src = self.settings.bootloaders_dir
        dest = self.bootloc
        # unfortunately using shutils copy_tree the dest directory must not exist,
        # but we must not delete an already partly synced /srv/tftp dir here.
        # rsync is very convenient here, being very fast on an already copied folder
        utils.subprocess_call(self.logger, ["rsync", "-rpt", "--copy-links", "--exclude=.cobbler_postun_cleanup", "{src}/".format(src=src), dest], shell=False)
        src = self.settings.grubconfig_dir
        utils.subprocess_call(self.logger, ["rsync", "-rpt", "--copy-links", "--exclude=README.grubconfig", "{src}/".format(src=src), dest], shell=False)

    def copy_images(self):
        """
        Like copy_distros except for images.
        """
        errors = list()
        for i in self.images:
            try:
                self.copy_single_image_files(i)
            except CX as e:
                errors.append(e)
                self.logger.error(e.value)

    def copy_single_distro_file(self, d_file, distro_dir, symlink_ok):
        """
        Copy a single file (kernel/initrd) to distro's images directory

        :param  d_file:     distro's kernel/initrd absolut or remote file path value
        :type   d_file:     str
        :param  distro_dir: directory (typically in {www,tftp}/images) where to copy the file
        :type   distro_dir: str
        :param  symlink_ok: whethere it is ok to symlink the file. Typically false in case the file
                            is used by daemons run in chroot environments (tftpd,..)
        :type   symlink_ok: bool

        :raises CX:         Cobbler Exception is raised in case file IO errors or of the remote file
                            could not be retrieved
        :return:            None
        """
        full_path = utils.find_kernel(d_file)

        if full_path is None:
            raise CX("File not found: %s, tried to copy to: %s" % (full_path, distro_dir))

        # Koan manages remote kernel/initrd itself, but for consistent PXE
        # configurations the synchronization is still necessary
        if not utils.file_is_remote(full_path):
            b_file = os.path.basename(full_path)
            dst = os.path.join(distro_dir, b_file)
            utils.linkfile(full_path, dst, symlink_ok=symlink_ok, api=self.api, logger=self.logger)
        else:
            b_file = os.path.basename(full_path)
            dst = os.path.join(distro_dir, b_file)
            utils.copyremotefile(full_path, dst, api=None, logger=self.logger)

    def copy_single_distro_files(self, d, dirtree, symlink_ok):
        """
        Copy the files needed for a single distro.

        :param d: The distro to copy.
        :param dirtree: This is the root where the images are located. The folder "images" gets automatically appended.
        :param symlink_ok: If it is okay to use a symlink to link the destination to the source.
        :type symlink_ok: bool
        """

        distros = os.path.join(dirtree, "images")
        distro_dir = os.path.join(distros, d.name)
        utils.mkdir(distro_dir)
        self.copy_single_distro_file(d.kernel, distro_dir, symlink_ok)
        self.copy_single_distro_file(d.initrd, distro_dir, symlink_ok)

    def copy_single_image_files(self, img):
        """
        Copies an image to the images directory of Cobbler.

        :param img: The image to copy.
        """
        images_dir = os.path.join(self.bootloc, "images2")
        filename = img.file
        if not os.path.exists(filename):
            # likely for virtual usage, cannot use
            return
        if not os.path.exists(images_dir):
            os.makedirs(images_dir)
        newfile = os.path.join(images_dir, img.name)
        utils.linkfile(filename, newfile, api=self.api, logger=self.logger)

    def write_all_system_files(self, system, menu_items):
        """
        Writes all files for tftp for a given system with the menu items handed to this method. The system must have a
        profile attached. Otherwise this method throws an error.

        :param system: The system to generate files for.
        :param menu_items:
        """
        profile = system.get_conceptual_parent()
        if profile is None:
            raise CX("system %(system)s references a missing profile %(profile)s" % {"system": system.name, "profile": system.profile})

        distro = profile.get_conceptual_parent()
        image_based = False
        image = None
        if distro is None:
            if profile.COLLECTION_TYPE == "profile":
                raise CX("profile %(profile)s references a missing distro %(distro)s" % {"profile": system.profile, "distro": profile.distro})
            else:
                image_based = True
                image = profile

        pxe_metadata = {'pxe_menu_items': menu_items}

        # hack: s390 generates files per system not per interface
        if not image_based and distro.arch.startswith("s390"):
            short_name = system.name.split('.')[0]
            s390_name = 'linux' + short_name[7:10]
            self.logger.info("Writing s390x pxe config for %s" % short_name)
            # Always write a system specific _conf and _parm file
            pxe_f = os.path.join(self.bootloc, "s390x", "s_%s" % s390_name)
            conf_f = "%s_conf" % pxe_f
            parm_f = "%s_parm" % pxe_f

            self.logger.info("Files: (conf,param) - (%s,%s)" % (conf_f, parm_f))
            blended = utils.blender(self.api, True, system)
            # FIXME: profiles also need this data!
            # gather default kernel_options and default kernel_options_s390x
            kernel_options = self.build_kernel_options(system, profile, distro,
                                                       image, "s390x", blended.get("autoinstall", ""))
            kopts_aligned = ""
            column = 0
            for option in kernel_options.split():
                opt_len = len(option)
                if opt_len > 78:
                    kopts_aligned += '\n' + option + ' '
                    column = opt_len + 1
                    self.logger.error("Kernel paramer [%s] too long %s" % (option, opt_len))
                    continue
                if column + opt_len > 78:
                    kopts_aligned += '\n' + option + ' '
                    column = opt_len + 1
                else:
                    kopts_aligned += option + ' '
                    column += opt_len + 1

            # Write system specific zPXE file
            if system.is_management_supported():
                if system.netboot_enabled:
                    self.logger.info("S390x: netboot_enabled")
                    kernel_path = os.path.join("/images", distro.name, os.path.basename(distro.kernel))
                    initrd_path = os.path.join("/images", distro.name, os.path.basename(distro.initrd))
                    with open(pxe_f, 'w') as out:
                        out.write(kernel_path + '\n' + initrd_path + '\n')
                    with open(parm_f, 'w') as out:
                        out.write(kopts_aligned)
                    # Write conf file with one newline in it if netboot is enabled
                    with open(conf_f, 'w') as out:
                        out.write('\n')
                else:
                    self.logger.info("S390x: netboot_disabled")
                    # Write empty conf file if netboot is disabled
                    open(conf_f, 'w').close()
            else:
                # ensure the files do exist
                self.logger.info("S390x: management not supported")
                utils.rmfile(pxe_f)
                utils.rmfile(conf_f)
                utils.rmfile(parm_f)
            self.logger.info("S390x: pxe: [%s], conf: [%s], parm: [%s]" % (pxe_f, conf_f, parm_f))

            return

        # generate one record for each described NIC ..
        for (name, interface) in list(system.interfaces.items()):

            pxe_name = system.get_config_filename(interface=name)
            grub_name = system.get_config_filename(interface=name, loader="grub")

            if pxe_name is not None:
                pxe_path = os.path.join(self.bootloc, "pxelinux.cfg", pxe_name)

            if grub_name is not None:
                grub_path = os.path.join(self.bootloc, "grub", "system", grub_name)

            if grub_path is None and pxe_path is None:
                self.logger.warning("invalid interface recorded for system (%s,%s)" % (system.name, name))
                continue

            if image_based:
                working_arch = image.arch
            else:
                working_arch = distro.arch

            if working_arch is None:
                raise CX("internal error, invalid arch supplied")

            # for tftp only ...
            if working_arch in ["i386", "x86", "x86_64", "arm", "aarch64", "ppc64le", "ppc64el", "standard"]:
                # ToDo: This is old, move this logic into item_system.get_config_filename()
                pass

            elif working_arch == "ppc" or working_arch == "ppc64":
                # Determine filename for system-specific bootloader config
                filename = "%s" % system.get_config_filename(interface=name).lower()
                # to inherit the distro and system's boot_loader values correctly
                blended_system = utils.blender(self.api, False, system)
                if blended_system["boot_loader"] == "pxelinux":
                    pass
                else:
                    pxe_path = os.path.join(self.bootloc, "etc", filename)
                    # Link to the yaboot binary
                    f3 = os.path.join(self.bootloc, "ppc", filename)
                    if os.path.lexists(f3):
                        utils.rmfile(f3)
                    os.symlink("../yaboot", f3)
            else:
                continue

            if system.is_management_supported():
                if not image_based:
                    if pxe_path:
                        self.write_pxe_file(pxe_path, system, profile, distro, working_arch, metadata=pxe_metadata)
                    if grub_path:
                        self.write_pxe_file(grub_path, system, profile, distro, working_arch, format="grub")
                        # Generate a link named after system to the mac file for easier lookup
                        link_path = os.path.join(self.bootloc, "grub", "system_link", system.name)
                        if os.path.exists(link_path):
                            utils.rmfile(link_path)
                        os.symlink(os.path.join("..", "system", grub_name), link_path)
                else:
                    self.write_pxe_file(pxe_path, system, None, None, working_arch, image=profile, metadata=pxe_metadata)
            else:
                # ensure the file doesn't exist
                utils.rmfile(pxe_path)
                if grub_path:
                    utils.rmfile(grub_path)

    def make_pxe_menu(self):
        """
        Generates both pxe and grub boot menus.
        """
        # only do this if there is NOT a system named default.
        default = self.systems.find(name="default")

        if default is None:
            timeout_action = "local"
        else:
            timeout_action = default.profile

        menu_items = self.get_menu_items()

        # Write the PXE menu:
        metadata = {"pxe_menu_items": menu_items['pxe'], "pxe_timeout_profile": timeout_action}
        outfile = os.path.join(self.bootloc, "pxelinux.cfg", "default")
        template_src = open(os.path.join(self.settings.boot_loader_conf_template_dir, "pxedefault.template"))
        template_data = template_src.read()
        self.templar.render(template_data, metadata, outfile, None)
        template_src.close()

        # Write the grub menu:
        for arch in utils.get_valid_archs():
            arch_menu_items = self.get_menu_items(arch)
            if(arch_menu_items['grub']):
                outfile = os.path.join(self.bootloc, "grub", "{0}_menu_items.cfg".format(arch))
                fd = open(outfile, "w+")
                fd.write(arch_menu_items['grub'])
                fd.close()

    def get_menu_items(self, arch=None):
        """
        Generates menu items for pxe and grub. Grub menu items are grouped into submenus by profile.

        :param arch: The processor architecture to generate the menu items for. (Optional)
        :type arch: str
        :returns: A dictionary with the pxe and grub menu items. It has the keys "pxe" and "grub".
        :rtype: dict
        """
        # sort the profiles
        profile_list = [profile for profile in self.profiles]
        profile_list = sorted(profile_list, key=lambda profile: profile.name)
        if arch:
            profile_list = [profile for profile in profile_list if profile.get_arch() == arch]

        # sort the images
        image_list = [image for image in self.images]
        image_list = sorted(image_list, key=lambda image: image.name)

        # Build out menu items and append each to this master list, used for
        # the default menus:
        pxe_menu_items = ""
        grub_menu_items = ""

        # create a dict of menuentries : submenuentries for grub during the creation of the pxe menu
        submenus = {}
        for profile in profile_list:
            if not profile.enable_menu:
                # This profile has been excluded from the menu
                continue
            distro = profile.get_conceptual_parent()
            if distro not in submenus:
                submenus[distro] = []
            submenus[distro].append(profile)

            contents = self.write_pxe_file(
                filename=None,
                system=None, profile=profile, distro=distro, arch=distro.arch,
                include_header=False)
            if contents is not None:
                pxe_menu_items += contents + "\n"

        for distro in submenus:
            grub_menu_items += "submenu '{0}' --class gnu-linux --class gnu --class os {{\n".format(distro.name)
            for profile in submenus[distro]:
                grub_contents = self.write_pxe_file(
                    filename=None,
                    system=None, profile=profile, distro=distro, arch=distro.arch,
                    include_header=False, format="grub")
                if grub_contents is not None:
                    grub_menu_items += grub_contents + "\n"
            grub_menu_items += "}\n"

        # image names towards the bottom
        for image in image_list:
            if os.path.exists(image.file):
                contents = self.write_pxe_file(
                    filename=None,
                    system=None, profile=None, distro=None, arch=image.arch,
                    image=image)
                if contents is not None:
                    pxe_menu_items += contents + "\n"

        return {'pxe': pxe_menu_items, 'grub': grub_menu_items}

    def write_pxe_file(self, filename, system, profile, distro, arch,
                       image=None, include_header=True, metadata=None, format="pxe"):
        """
        Write a configuration file for the boot loader(s).

        More system-specific configuration may come in later, if so that would appear inside the system object in api.py
        Can be used for different formats, "pxe" (default) and "grub".

        :param filename: If present this writes the output into the giving filename. If not present this method just
                         returns the generated configuration.
        :param system: If you supply a system there are other templates used then when using only a profile/image/
                       distro.
        :param profile: The profile to generate the pxe-file for.
        :param distro: If you don't ship an image, this is needed. Otherwise this just supplies information needed for
                       the templates.
        :param arch: The processor architecture to generate the pxefile for.
        :type arch: str
        :param image: If you want to be able to deploy an image, supply this parameter.
        :param include_header: Not used parameter currently.
        :type include_header: bool
        :param metadata: Pass additional parameters to the ones being collected during the method.
        :param format: May be "grub" or "pxe".
        :type format: str
        :return: The generated filecontent for the required item.
        :rtype: str
        """

        if arch is None:
            raise CX("missing arch")

        if image and not os.path.exists(image.file):
            return None     # nfs:// URLs or something, can't use for TFTP

        if metadata is None:
            metadata = {}

        (rval, settings) = utils.input_string_or_dict(self.settings.to_dict())
        if rval:
            for key in list(settings.keys()):
                metadata[key] = settings[key]
        # ---
        # just some random variables
        template = None
        buffer = ""

        # ---
        autoinstall_path = None
        kernel_path = None
        initrd_path = None
        img_path = None

        if image is None:
            # not image based, it's something normalish
            img_path = os.path.join("/images", distro.name)
            if format == "grub":
                if distro.remote_grub_kernel:
                    kernel_path = distro.remote_grub_kernel
                if distro.remote_grub_initrd:
                    initrd_path = distro.remote_grub_initrd

            if 'http' in distro.kernel and 'http' in distro.initrd:
                if not kernel_path:
                    kernel_path = distro.kernel
                if not initrd_path:
                    initrd_path = distro.initrd

            if not kernel_path:
                kernel_path = os.path.join("/images", distro.name, os.path.basename(distro.kernel))
            if not initrd_path:
                initrd_path = os.path.join("/images", distro.name, os.path.basename(distro.initrd))

            # Find the automatic installation file if we inherit from another profile
            if system:
                blended = utils.blender(self.api, True, system)
            else:
                blended = utils.blender(self.api, True, profile)
            autoinstall_path = blended.get("autoinstall", "")

            # update metadata with all known information this allows for more powerful templating
            metadata.update(blended)

        else:
            # this is an image we are making available, not kernel+initrd
            if image.image_type == "direct":
                kernel_path = os.path.join("/images2", image.name)
            elif image.image_type == "memdisk":
                kernel_path = "/memdisk"
                initrd_path = os.path.join("/images2", image.name)
            else:
                # CD-ROM ISO or virt-clone image? We can't PXE boot it.
                kernel_path = None
                initrd_path = None

        if img_path is not None and "img_path" not in metadata:
            metadata["img_path"] = img_path
        if kernel_path is not None and "kernel_path" not in metadata:
            metadata["kernel_path"] = kernel_path
        if initrd_path is not None and "initrd_path" not in metadata:
            metadata["initrd_path"] = initrd_path

        # ---
        # choose a template
        if system:
            if format == "grub":
                if system.netboot_enabled:
                    template = os.path.join(self.settings.boot_loader_conf_template_dir, "grubsystem.template")
                    buffer += 'set system="{system}"\n'.format(system=system.name)
                else:
                    local = os.path.join(self.settings.boot_loader_conf_template_dir, "grublocal.template")
                    if os.path.exists(local):
                        template = local
            else:   # pxe
                if system.netboot_enabled:
                    template = os.path.join(self.settings.boot_loader_conf_template_dir, "pxesystem.template")

                    if arch == "ppc" or arch == "ppc64":
                        # to inherit the distro and system's boot_loader values correctly
                        blended_system = utils.blender(self.api, False, system)
                        if blended_system["boot_loader"] == "pxelinux":
                            template = os.path.join(self.settings.boot_loader_conf_template_dir, "pxesystem_ppc.template")
                        else:
                            template = os.path.join(self.settings.boot_loader_conf_template_dir, "yaboot_ppc.template")
                    elif arch.startswith("arm"):
                        template = os.path.join(self.settings.boot_loader_conf_template_dir, "pxesystem_arm.template")
                    elif distro and distro.os_version.startswith("esxi"):
                        # ESXi uses a very different pxe method, using more files than a standard automatic installation
                        # file and different options - so giving it a dedicated PXE template makes more sense than
                        # shoe-horning it into the existing templates
                        template = os.path.join(self.settings.boot_loader_conf_template_dir, "pxesystem_esxi.template")
                else:
                    # local booting on ppc requires removing the system-specific dhcpd.conf filename
                    if arch is not None and (arch == "ppc" or arch == "ppc64"):
                        # Disable yaboot network booting for all interfaces on the system
                        for (name, interface) in list(system.interfaces.items()):

                            filename = "%s" % system.get_config_filename(interface=name).lower()

                            # Remove symlink to the yaboot binary
                            f3 = os.path.join(self.bootloc, "ppc", filename)
                            if os.path.lexists(f3):
                                utils.rmfile(f3)
                            f3 = os.path.join(self.bootloc, "etc", filename)
                            if os.path.lexists(f3):
                                utils.rmfile(f3)

                        # Yaboot/OF doesn't support booting locally once you've booted off the network, so nothing left
                        # to do
                        return None
                    else:
                        template = os.path.join(self.settings.boot_loader_conf_template_dir, "pxelocal.template")
        else:
            # not a system record, so this is a profile record or an image
            if arch.startswith("arm"):
                template = os.path.join(self.settings.boot_loader_conf_template_dir, "pxeprofile_arm.template")
            elif format == "grub":
                template = os.path.join(self.settings.boot_loader_conf_template_dir, "grubprofile.template")
            elif distro and distro.os_version.startswith("esxi"):
                # ESXi uses a very different pxe method, see comment above in the system section
                template = os.path.join(self.settings.boot_loader_conf_template_dir, "pxeprofile_esxi.template")
            else:
                template = os.path.join(self.settings.boot_loader_conf_template_dir, "pxeprofile.template")

        if kernel_path is not None:
            metadata["kernel_path"] = kernel_path
        if initrd_path is not None:
            metadata["initrd_path"] = initrd_path

        # generate the kernel options and append line:
        kernel_options = self.build_kernel_options(system, profile, distro,
                                                   image, arch, autoinstall_path)
        metadata["kernel_options"] = kernel_options

        if distro and distro.os_version.startswith("esxi") and filename is not None:
            append_line = "BOOTIF=%s" % (os.path.basename(filename))
        elif "initrd_path" in metadata and (not arch or arch not in ["ppc", "ppc64", "arm"]):
            append_line = "append initrd=%s" % (metadata["initrd_path"])
        else:
            append_line = "append "
        append_line = "%s%s" % (append_line, kernel_options)
        if arch == "ppc" or arch == "ppc64":
            # remove the prefix "append"
            # TODO: this looks like it's removing more than append, really not sure what's up here...
            append_line = append_line[7:]
        if distro and distro.os_version.startswith("xenserver620"):
            append_line = "%s" % (kernel_options)
        metadata["append_line"] = append_line

        # store variables for templating
        metadata["menu_label"] = ""
        if profile:
            if arch not in ["ppc", "ppc64"]:
                metadata["menu_label"] = "MENU LABEL %s" % profile.name
                metadata["profile_name"] = profile.name
        elif image:
            metadata["menu_label"] = "MENU LABEL %s" % image.name
            metadata["profile_name"] = image.name

        if system:
            if system.serial_device or system.serial_baud_rate:
                if system.serial_device:
                    serial_device = system.serial_device
                else:
                    serial_device = 0
                if system.serial_baud_rate:
                    serial_baud_rate = system.serial_baud_rate
                else:
                    serial_baud_rate = 115200

                if format == "pxe":
                    buffer += "serial %d %d\n" % (serial_device, serial_baud_rate)
                elif format == "grub":
                    buffer += "set serial_console=true\nset serial_baud={baud}\nset serial_line={device}\n".format(baud=serial_baud_rate, device=serial_device)

        # get the template
        if kernel_path is not None:
            template_fh = open(template)
            template_data = template_fh.read()
            template_fh.close()
        else:
            # this is something we can't PXE boot
            template_data = "\n"

        # save file and/or return results, depending on how called.
        buffer += self.templar.render(template_data, metadata, None)

        if filename is not None:
            self.logger.info("generating: %s" % filename)
            fd = open(filename, "w")
            fd.write(buffer)
            fd.close()
        return buffer

    def build_kernel_options(self, system, profile, distro, image, arch, autoinstall_path):
        """
        Builds the full kernel options line.

        :param system: The system to generate the kernel options for.
        :param profile: Although the system contains the profile please specify it explicitly here.
        :param distro: Although the profile contains the distribution please specify it explicitly here.
        :param image: The image to generate the kernel options for.
        :param arch: The processor architecture to generate the kernel options for.
        :type arch: str
        :param autoinstall_path: The autoinstallation path. Normally this will be a URL because you want to pass a link
                                 to an autoyast, preseed or kickstart file.
        :return: The generated kernal line options.
        :rtype: str
        """

        management_interface = None
        management_mac = None
        if system is not None:
            blended = utils.blender(self.api, False, system)
            # find the first management interface
            try:
                for intf in list(system.interfaces.keys()):
                    if system.interfaces[intf]["management"]:
                        management_interface = intf
                        if system.interfaces[intf]["mac_address"]:
                            management_mac = system.interfaces[intf]["mac_address"]
                        break
            except:
                # just skip this then
                pass
        elif profile is not None:
            blended = utils.blender(self.api, False, profile)
        else:
            blended = utils.blender(self.api, False, image)

        append_line = ""
        kopts = blended.get("kernel_options", dict())
        kopts = utils.revert_strip_none(kopts)

        # SUSE and other distro specific kernel additions or modificatins
        utils.kopts_overwrite(system, distro, kopts, self.settings)

        # since network needs to be configured again (it was already in netboot) when kernel boots
        # and we choose to do it dinamically, we need to set 'ksdevice' to one of
        # the interfaces' MAC addresses in ppc systems.
        # ksdevice=bootif is not useful in yaboot, as the "ipappend" line is a pxe feature.
        if system and arch and (arch == "ppc" or arch == "ppc64"):
            for intf in list(system.interfaces.keys()):
                # use first interface with defined IP and MAC, since these are required
                # fields in a DHCP entry
                mac_address = system.interfaces[intf]['mac_address']
                ip_address = system.interfaces[intf]['ip_address']
                if mac_address and ip_address:
                    kopts['BOOTIF'] = '01-' + mac_address
                    kopts['ksdevice'] = mac_address
                    break

        # support additional initrd= entries in kernel options.
        if "initrd" in kopts:
            append_line = ",%s" % kopts.pop("initrd")
        hkopts = utils.dict_to_string(kopts)
        append_line = "%s %s" % (append_line, hkopts)

        # automatic installation file path rewriting (get URLs for local files)
        if autoinstall_path:

            # FIXME: need to make shorter rewrite rules for these URLs

            try:
                ipaddress = socket.gethostbyname_ex(blended["http_server"])[2][0]
            except socket.gaierror:
                ipaddress = blended["http_server"]
            URL_REGEX = "[a-zA-Z]*://.*"
            local_autoinstall_file = not re.match(URL_REGEX, autoinstall_path)
            if local_autoinstall_file:
                if system is not None:
                    autoinstall_path = "http://%s/cblr/svc/op/autoinstall/system/%s" % (ipaddress, system.name)
                else:
                    autoinstall_path = "http://%s/cblr/svc/op/autoinstall/profile/%s" % (ipaddress, profile.name)

            if distro.breed is None or distro.breed == "redhat":

                append_line += " kssendmac"
                append_line = "%s ks=%s" % (append_line, autoinstall_path)
                gpxe = blended["enable_gpxe"]
                if gpxe:
                    append_line = append_line.replace('ksdevice=bootif', 'ksdevice=${net0/mac}')
            elif distro.breed == "suse":
                append_line = "%s autoyast=%s" % (append_line, autoinstall_path)
                if management_mac and not distro.arch.startswith("s390"):
                    append_line += " netdevice=%s" % management_mac
            elif distro.breed == "debian" or distro.breed == "ubuntu":
                append_line = "%s auto-install/enable=true priority=critical netcfg/choose_interface=auto url=%s" % (append_line, autoinstall_path)
                if management_interface:
                    append_line += " netcfg/choose_interface=%s" % management_interface
            elif distro.breed == "freebsd":
                append_line = "%s ks=%s" % (append_line, autoinstall_path)

                # rework kernel options for debian distros
                translations = {'ksdevice': "interface", 'lang': "locale"}
                for k, v in list(translations.items()):
                    append_line = append_line.replace("%s=" % k, "%s=" % v)

                # interface=bootif causes a failure
                append_line = append_line.replace("interface=bootif", "")
            elif distro.breed == "vmware":
                if distro.os_version.find("esxi") != -1:
                    # ESXi is very picky, it's easier just to redo the
                    # entire append line here since
                    append_line = " ks=%s %s" % (autoinstall_path, hkopts)
                    # ESXi likes even fewer options, so we remove them too
                    append_line = append_line.replace("kssendmac", "")
                else:
                    append_line = "%s vmkopts=debugLogToSerial:1 mem=512M ks=%s" % \
                        (append_line, autoinstall_path)
                # interface=bootif causes a failure
                append_line = append_line.replace("ksdevice=bootif", "")
            elif distro.breed == "xen":
                if distro.os_version.find("xenserver620") != -1:
                    img_path = os.path.join("/images", distro.name)
                    append_line = "append %s/xen.gz dom0_max_vcpus=2 dom0_mem=752M com1=115200,8n1 console=com1,vga --- %s/vmlinuz xencons=hvc console=hvc0 console=tty0 install answerfile=%s --- %s/install.img" % (img_path, img_path, autoinstall_path, img_path)
                    return append_line
            elif distro.breed == "powerkvm":
                append_line += " kssendmac"
                append_line = "%s kvmp.inst.auto=%s" % (append_line, autoinstall_path)

        if distro is not None and (distro.breed in ["debian", "ubuntu"]):
            # Hostname is required as a parameter, the one in the preseed is
            # not respected, so calculate if we have one here.
            # We're trying: first part of FQDN in hostname field, then system
            # name, then profile name.
            # In Ubuntu, this is at least used for the volume group name when
            # using LVM.
            domain = "local.lan"
            if system is not None:
                if system.hostname is not None and system.hostname != "":
                    # If this is a FQDN, grab the first bit
                    hostname = system.hostname.split(".")[0]
                    _domain = system.hostname.split(".")[1:]
                    if _domain:
                        domain = ".".join(_domain)
                else:
                    hostname = system.name
            else:
                # ubuntu at the very least does not like having underscores
                # in the hostname.
                # FIXME: Really this should remove all characters that are
                # forbidden in hostnames
                hostname = profile.name.replace("_", "")

            # At least for debian deployments configured for DHCP networking
            # this values are not used, but specifying here avoids questions
            append_line = "%s hostname=%s" % (append_line, hostname)
            append_line = "%s domain=%s" % (append_line, domain)

            # A similar issue exists with suite name, as installer requires
            # the existence of "stable" in the dists directory
            append_line = "%s suite=%s" % (append_line, distro.os_version)

        # append necessary kernel args for arm architectures
        if arch is not None and arch.startswith("arm"):
            append_line = "%s fixrtc vram=48M omapfb.vram=0:24M" % append_line

        # do variable substitution on the append line
        # promote all of the autoinstall_meta variables
        if "autoinstall_meta" in blended:
            blended.update(blended["autoinstall_meta"])
        append_line = self.templar.render(append_line, utils.flatten(blended), None)

        # For now console=ttySx,BAUDRATE are only set for systems
        # This could get enhanced for profile/distro via utils.blender (inheritance)
        # This also is architecture specific. E.g: Some ARM consoles need: console=ttyAMAx,BAUDRATE
        # I guess we need a serial_kernel_dev = param, that can be set to "ttyAMA" if needed.
        if system and arch == "x86_64":
            if system.serial_device or system.serial_baud_rate:
                if system.serial_device:
                    serial_device = system.serial_device
                else:
                    serial_device = 0
                if system.serial_baud_rate:
                    serial_baud_rate = system.serial_baud_rate
                else:
                    serial_baud_rate = 115200

                append_line = "%s console=ttyS%s,%s" % (append_line, serial_device, serial_baud_rate)

        # FIXME - the append_line length limit is architecture specific
        if len(append_line) >= 1023:
            self.logger.warning("warning: kernel option length exceeds 1023")

        return append_line

    def write_templates(self, obj, write_file=False, path=None):
        """
        A semi-generic function that will take an object with a template_files dict {source:destiation}, and generate a
        rendered file. The write_file option allows for generating of the rendered output without actually creating any
        files.

        :param obj: The object to write the template files for.
        :param write_file: If the generated template should be written to the disk.
        :type write_file: bool
        :param path: TODO: A useless parameter?
        :return: A dict of the destination file names (after variable substitution is done) and the data in the file.
        """
        self.logger.info("Writing template files for %s" % obj.name)

        results = {}

        try:
            templates = obj.template_files
        except:
            return results

        blended = utils.blender(self.api, False, obj)

        if obj.COLLECTION_TYPE == "distro":
            if re.search("esxi[56]", obj.os_version) is not None:
                realbootcfg = open(os.path.join(os.path.dirname(obj.kernel), 'boot.cfg')).read()
                bootmodules = re.findall(r'modules=(.*)', realbootcfg)
                for modules in bootmodules:
                    blended['esx_modules'] = modules.replace('/', '')

        autoinstall_meta = blended.get("autoinstall_meta", {})
        try:
            del blended["autoinstall_meta"]
        except:
            pass
        blended.update(autoinstall_meta)          # make available at top level

        templates = blended.get("template_files", {})
        try:
            del blended["template_files"]
        except:
            pass
        blended.update(templates)       # make available at top level

        (success, templates) = utils.input_string_or_dict(templates)

        if not success:
            return results

        # FIXME: img_path and local_img_path should probably be moved up into the blender function to ensure they're
        #  consistently available to templates across the board.
        if blended["distro_name"]:
            blended['img_path'] = os.path.join("/images", blended["distro_name"])
            blended['local_img_path'] = os.path.join(self.bootloc, "images", blended["distro_name"])

        for template in list(templates.keys()):
            dest = templates[template]
            if dest is None:
                continue

            # Run the source and destination files through templar first to allow for variables in the path
            template = self.templar.render(template, blended, None).strip()
            dest = os.path.normpath(self.templar.render(dest, blended, None).strip())
            # Get the path for the destination output
            dest_dir = os.path.normpath(os.path.dirname(dest))

            # If we're looking for a single template, skip if this ones destination is not it.
            if path is not None and path != dest:
                continue

            # If we are writing output to a file, we allow files tobe written into the tftpboot directory, otherwise
            # force all templated configs into the rendered directory to ensure that a user granted cobbler privileges
            # via sudo can't overwrite arbitrary system files (This also makes cleanup easier).
            if os.path.isabs(dest_dir) and write_file:
                if dest_dir.find(self.bootloc) != 0:
                    raise CX(" warning: template destination (%s) is outside %s, skipping." % (dest_dir, self.bootloc))
            elif write_file:
                dest_dir = os.path.join(self.settings.webdir, "rendered", dest_dir)
                dest = os.path.join(dest_dir, os.path.basename(dest))
                if not os.path.exists(dest_dir):
                    utils.mkdir(dest_dir)

            # Check for problems
            if not os.path.exists(template):
                raise CX("template source %s does not exist" % template)
            elif write_file and not os.path.isdir(dest_dir):
                raise CX("template destination (%s) is invalid" % dest_dir)
            elif write_file and os.path.exists(dest):
                raise CX("template destination (%s) already exists" % dest)
            elif write_file and os.path.isdir(dest):
                raise CX("template destination (%s) is a directory" % dest)
            elif template == "" or dest == "":
                raise CX("either the template source or destination was blank (unknown variable used?)" % dest)

            template_fh = open(template)
            template_data = template_fh.read()
            template_fh.close()

            buffer = self.templar.render(template_data, blended, None)
            results[dest] = buffer

            if write_file:
                self.logger.info("generating: %s" % dest)
                fd = open(dest, "w")
                fd.write(buffer)
                fd.close()

        return results

    def generate_gpxe(self, what, name):
        """
        Generate the gpxe files.

        :param what: either "profile" or "system". All other item types not valdi.
        :type what: str
        :param name: The name of the profile or system.
        :type name: str
        :return: The rendered template.
        :rtype: str
        """
        if what.lower() not in ("profile", "system"):
            return "# gpxe is only valid for profiles and systems"

        distro = None
        if what == "profile":
            obj = self.api.find_profile(name=name)
            distro = obj.get_conceptual_parent()
        else:
            obj = self.api.find_system(name=name)
            distro = obj.get_conceptual_parent().get_conceptual_parent()
            netboot_enabled = obj.netboot_enabled

        # For multi-arch distros, the distro name in distro_mirror may not contain the arch string, so we need to figure
        # out the path based on where the kernel is stored. We do this because some distros base future downloads on the
        # initial URL passed in, so all of the files need to be at this location (which is why we can't use the images
        # link, which just contains the kernel and initrd).
        distro_mirror_name = str.join(distro.kernel.split('/')[-2:-1], '')

        blended = utils.blender(self.api, False, obj)

        autoinstall_meta = blended.get("autoinstall_meta", {})
        try:
            del blended["autoinstall_meta"]
        except:
            pass
        blended.update(autoinstall_meta)      # make available at top level

        blended['distro'] = distro.name
        blended['distro_mirror_name'] = distro_mirror_name
        blended['kernel_name'] = os.path.basename(distro.kernel)
        blended['initrd_name'] = os.path.basename(distro.initrd)

        if what == "profile":
            blended['append_line'] = self.build_kernel_options(None, obj, distro, None, None, blended['autoinstall'])
        else:
            blended['append_line'] = self.build_kernel_options(obj, None, distro, None, None, blended['autoinstall'])

        template = None
        if distro.breed in ['redhat', 'debian', 'ubuntu', 'suse']:
            # all of these use a standard kernel/initrd setup so they all use the same gPXE template
            template = os.path.join(self.settings.boot_loader_conf_template_dir, "gpxe_%s_linux.template" % what.lower())
        elif distro.breed == 'vmware':
            if distro.os_version == 'esx4':
                # older ESX is pretty much RHEL, so it uses the standard kernel/initrd setup
                template = os.path.join(self.settings.boot_loader_conf_template_dir, "gpxe_%s_linux.template" % what.lower())
            elif distro.os_version == 'esxi4':
                template = os.path.join(self.settings.boot_loader_conf_template_dir, "gpxe_%s_esxi4.template" % what.lower())
            elif distro.os_version.startswith('esxi5'):
                template = os.path.join(self.settings.boot_loader_conf_template_dir, "gpxe_%s_esxi5.template" % what.lower())
            elif distro.os_version.startswith('esxi6'):
                template = os.path.join(self.settings.boot_loader_conf_template_dir, "gpxe_%s_esxi6.template" % what.lower())
        elif distro.breed == 'freebsd':
            template = os.path.join(self.settings.boot_loader_conf_template_dir, "gpxe_%s_freebsd.template" % what.lower())
        elif distro.breed == 'windows':
            template = os.path.join(self.settings.boot_loader_conf_template_dir, "gpxe_%s_windows.template" % what.lower())

        if what == "system":
            if not netboot_enabled:
                template = os.path.join(self.settings.boot_loader_conf_template_dir, "gpxe_%s_local.template" % what.lower())

        if not template:
            return "# unsupported breed/os version"

        if not os.path.exists(template):
            return "# gpxe template not found for the %s named %s (filename=%s)" % (what, name, template)

        template_fh = open(template)
        template_data = template_fh.read()
        template_fh.close()

        return self.templar.render(template_data, blended, None)

    def generate_bootcfg(self, what, name):
        """
        Generate a bootcfg for a system of profile.

        :param what: The type for what the bootcfg is generated for. Must be "profile" or "system".
        :type what: str
        :param name: The name of the item which the bootcfg should be generated for.
        :type name: str
        :return: The fully rendered bootcfg as a string.
        :rtype: str
        """
        if what.lower() not in ("profile", "system"):
            return "# bootcfg is only valid for profiles and systems"

        distro = None
        if what == "profile":
            obj = self.api.find_profile(name=name)
            distro = obj.get_conceptual_parent()
        else:
            obj = self.api.find_system(name=name)
            distro = obj.get_conceptual_parent().get_conceptual_parent()

        # For multi-arch distros, the distro name in distro_mirror may not contain the arch string, so we need to figure
        # out the path based on where the kernel is stored. We do this because some distros base future downloads on the
        # initial URL passed in, so all of the files need to be at this location (which is why we can't use the images
        # link, which just contains the kernel and initrd).
        distro_mirror_name = str.join('', distro.kernel.split('/')[-2:-1])

        blended = utils.blender(self.api, False, obj)

        autoinstall_meta = blended.get("autoinstall_meta", {})
        try:
            del blended["autoinstall_meta"]
        except:
            pass
        blended.update(autoinstall_meta)          # make available at top level

        blended['distro'] = distro_mirror_name

        # FIXME: img_path should probably be moved up into the blender function to ensure they're consistently
        #        available to templates across the board
        if obj.enable_gpxe:
            blended['img_path'] = 'http://%s:%s/cobbler/links/%s' % (self.settings.server, self.settings.http_port, distro.name)
        else:
            blended['img_path'] = os.path.join("/images", distro.name)

        template = os.path.join(self.settings.boot_loader_conf_template_dir, "bootcfg_%s_%s.template" % (what.lower(), distro.os_version))
        if not os.path.exists(template):
            return "# boot.cfg template not found for the %s named %s (filename=%s)" % (what, name, template)

        template_fh = open(template)
        template_data = template_fh.read()
        template_fh.close()

        return self.templar.render(template_data, blended, None)

    def generate_script(self, what, objname, script_name):
        """
        Generate a script from a autoinstall script template for a given profile or system.

        :param what: The type for what the bootcfg is generated for. Must be "profile" or "system".
        :type what: str
        :param objname: The name of the item which the bootcfg should be generated for.
        :type objname: str
        :param script_name: The name of the template which should be rendered for the system or profile.
        :return: The fully rendered script as a string.
        :rtype: str
        """
        if what == "profile":
            obj = self.api.find_profile(name=objname)
        else:
            obj = self.api.find_system(name=objname)

        if not obj:
            return "# %s named %s not found" % (what, objname)

        distro = obj.get_conceptual_parent()
        while distro.get_conceptual_parent():
            distro = distro.get_conceptual_parent()

        blended = utils.blender(self.api, False, obj)

        autoinstall_meta = blended.get("autoinstall_meta", {})
        try:
            del blended["autoinstall_meta"]
        except:
            pass
        blended.update(autoinstall_meta)      # make available at top level

        # FIXME: img_path should probably be moved up into the blender function to ensure they're consistently
        #        available to templates across the board
        if obj.enable_gpxe:
            blended['img_path'] = 'http://%s:%s/cobbler/links/%s' % (self.settings.server, self.settings.http_port, distro.name)
        else:
            blended['img_path'] = os.path.join("/images", distro.name)

        template = os.path.normpath(os.path.join("/var/lib/cobbler/autoinstall_scripts", script_name))
        if not os.path.exists(template):
            return "# script template %s not found" % script_name

        template_fh = open(template)
        template_data = template_fh.read()
        template_fh.close()

        return self.templar.render(template_data, blended, None, obj)
  070701000000C1000081A40000000000000000000000015ECE244400015683000000000000000000000000000000000000001F00000000cobbler-3.1.2/cobbler/utils.py    """
Misc heavy lifting functions for Cobbler

Copyright 2006-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""

from past.builtins import cmp
from future import standard_library
from functools import reduce
standard_library.install_aliases()
from builtins import map
from builtins import str
from past.utils import old_div
from builtins import object
import copy
import errno
import glob
import netaddr
import os
import random
import re
import shlex
import shutil
import simplejson
import subprocess
import sys
import traceback
import urllib.request
import urllib.error
import urllib.parse
import yaml
import distro

from cobbler.cexceptions import FileNotFoundException, CX
from cobbler import clogger
from cobbler import field_info
from cobbler import validate


CHEETAH_ERROR_DISCLAIMER = """
# *** ERROR ***
#
# There is a templating error preventing this file from rendering correctly.
#
# This is most likely not due to a bug in Cobbler and is something you can fix.
#
# Look at the message below to see what things are causing problems.
#
# (1) Does the template file reference a $variable that is not defined?
# (2) is there a formatting error in a Cheetah directive?
# (3) Should dollar signs ($) be escaped that are not being escaped?
#
# Try fixing the problem and then investigate to see if this message goes
# away or changes.
#
"""


# placeholder for translation
def _(foo):
    return foo


MODULE_CACHE = {}
SIGNATURE_CACHE = {}

_re_kernel = re.compile(r'(vmlinu[xz]|kernel.img)')
_re_initrd = re.compile(r'(initrd(.*).img|ramdisk.image.gz)')
_re_is_mac = re.compile(':'.join(('[0-9A-Fa-f][0-9A-Fa-f]',) * 6) + '$')
_re_is_ibmac = re.compile(':'.join(('[0-9A-Fa-f][0-9A-Fa-f]',) * 20) + '$')

# all logging from utils.die goes to the main log even if there
# is another log.
main_logger = None  # the logger will be lazy loaded later


def die(logger, msg):
    """
    This method let's Cobbler crash with an exception. Log the exception once in the per-task log or the main log if
    this is not a background op.

    :param logger:
    :param msg:
    """
    global main_logger
    if main_logger is None:
        main_logger = clogger.Logger()

    # log the exception once in the per-task log or the main log if this is not a background op.
    try:
        raise CX(msg)
    except:
        if logger is not None:
            log_exc(logger)
        else:
            log_exc(main_logger)

    # now re-raise it so the error can fail the operation
    raise CX(msg)


def log_exc(logger):
    """
    Log an exception.

    :param logger: The logger to audit all action.
    """
    (t, v, tb) = sys.exc_info()
    logger.info("Exception occured: %s" % t)
    logger.info("Exception value: %s" % v)
    logger.info("Exception Info:\n%s" % "\n".join(traceback.format_list(traceback.extract_tb(tb))))


def get_exc(exc, full=True):
    """
    This tries to analyze if an exception comes from Cobbler and potentially enriches or shortens the exception.

    :param exc: The exception which should be analyzed.
    :param full: If the full exception should be returned or only the most important information.
    :return: The exception which has been converted into a string which then can be logged easily.
    """
    (t, v, tb) = sys.exc_info()
    buf = ""
    try:
        getattr(exc, "from_cobbler")
        buf = str(exc)[1:-1] + "\n"
    except:
        if not full:
            buf += str(t)
        buf = "%s\n%s" % (buf, v)
        if full:
            buf += "\n" + "\n".join(traceback.format_list(traceback.extract_tb(tb)))
    return buf


def cheetah_exc(exc, full=False):
    """
    Converts an exception thrown by Cheetah3 into a custom error message.

    :param exc: The exception to convert.
    :param full: Unused parameter. May be removed in the future.
    :return: The string representation of the Cheetah3 exception.
    :rtype: str
    """
    lines = get_exc(exc).split("\n")
    buf = ""
    for line in lines:
        buf += "# %s\n" % line
    return CHEETAH_ERROR_DISCLAIMER + buf


def pretty_hex(ip, length=8):
    """
    Pads an IP object with leading zeroes so that the result is _length_ hex digits.  Also do an upper().

    :param ip: The IP address to pretty print.
    :param length: The length of the resulting hexstring. If the number is smaller than the resulting hex-string
                   then no front-padding is done.
    :rtype: str
    """
    hexval = "%x" % ip.value
    if len(hexval) < length:
        hexval = '0' * (length - len(hexval)) + hexval
    return hexval.upper()


def get_host_ip(ip, shorten=True):
    """
    Return the IP encoding needed for the TFTP boot tree.

    :param ip: The IP address to pretty print.
    :param shorten: Whether the IP-Address should be shortened or not.
    :rtype: str
    """

    ip = netaddr.ip.IPAddress(ip)
    cidr = netaddr.ip.IPNetwork(ip)

    if len(cidr) == 1:  # Just an IP, e.g. a /32
        return pretty_hex(ip)
    else:
        pretty = pretty_hex(cidr[0])
        if not shorten or len(cidr) <= 8:
            # not enough to make the last nibble insignificant
            return pretty
        else:
            cutoff = old_div((32 - cidr.prefixlen), 4)
            return pretty[0:-cutoff]


def _IP(ip):
    """
    Returns a netaddr.IP object representing an ip.
    If ip is already an netaddr.IP instance just return it.
    Else return a new instance
    """
    ip_class = netaddr.ip.IPAddress
    if isinstance(ip, ip_class) or ip == "":
        return ip
    else:
        return ip_class(ip)


def is_ip(strdata):
    """
    Return whether the argument is an IP address.

    :param strdata: The IP in a string format. This get's passed to the IP object of Python.
    :type strdata: str
    :rtype: bool
    """
    try:
        _IP(strdata)
    except:
        return False
    return True


def is_mac(strdata):
    """
    Return whether the argument is a mac address.

    :rtype: bool
    """
    if strdata is None:
        return False
    return bool(_re_is_mac.match(strdata) or _re_is_ibmac.match(strdata))


def is_systemd():
    """
    Return whether or not this system uses systemd.

    This method currently checks if the path /usr/lib/systemd/systemd exists.

    :rtype: bool
    """
    if os.path.exists("/usr/lib/systemd/systemd"):
        return True
    return False


def get_random_mac(api_handle, virt_type="xenpv"):
    """
    Generate a random MAC address.

    The code of this method was taken from xend/server/netif.py

    :param api_handle: The main Cobbler api instance.
    :param virt_type: The virtualization provider. Currently possible is 'vmware', 'xen', 'qemu', 'kvm'.
    :returns: MAC address string
    :rtype: str
    """
    if virt_type.startswith("vmware"):
        mac = [
            0x00, 0x50, 0x56,
            random.randint(0x00, 0x3f),
            random.randint(0x00, 0xff),
            random.randint(0x00, 0xff)
        ]
    elif virt_type.startswith("xen") or virt_type.startswith("qemu") or virt_type.startswith("kvm"):
        mac = [
            0x00, 0x16, 0x3e,
            random.randint(0x00, 0x7f),
            random.randint(0x00, 0xff),
            random.randint(0x00, 0xff)
        ]
    else:
        raise CX("virt mac assignment not yet supported")

    mac = ':'.join(["%02x" % x for x in mac])
    systems = api_handle.systems()
    while (systems.find(mac_address=mac)):
        mac = get_random_mac(api_handle)

    return mac


def find_matching_files(directory, regex):
    """
    Find all files in a given directory that match a given regex. Can't use glob directly as glob doesn't take regexen.
    The search does not include subdirectories.

    :param directory: The directory to search in.
    :param regex: The regex to apply to the found files.
    :return: An array of files which apply to the regex.
    :rtype: list
    """
    files = glob.glob(os.path.join(directory, "*"))
    results = []
    for f in files:
        if regex.match(os.path.basename(f)):
            results.append(f)
    return results


def find_highest_files(directory, unversioned, regex):
    """
    Find the highest numbered file (kernel or initrd numbering scheme) in a given directory that matches a given
    pattern. Used for auto-booting the latest kernel in a directory.

    :param directory: The directory to search in.
    :param unversioned: The base filename which also acts as a last resort if no numbered files are found.
    :param regex: The regex to search for.
    :return: None or the file with the highest number.
    """
    files = find_matching_files(directory, regex)
    get_numbers = re.compile(r'(\d+).(\d+).(\d+)')

    def max2(a, b):
        """Returns the larger of the two values"""
        av = get_numbers.search(os.path.basename(a)).groups()
        bv = get_numbers.search(os.path.basename(b)).groups()

        ret = cmp(av[0], bv[0]) or cmp(av[1], bv[1]) or cmp(av[2], bv[2])
        if ret < 0:
            return b
        return a

    if len(files) > 0:
        return reduce(max2, files)

    # Couldn't find a highest numbered file, but maybe there is just a 'vmlinuz' or an 'initrd.img' in this directory?
    last_chance = os.path.join(directory, unversioned)
    if os.path.exists(last_chance):
        return last_chance
    return None


def find_kernel(path):
    """
    Given a directory or a filename, find if the path can be made to resolve into a kernel, and return that full path if
    possible.

    :param path: The path to check for a kernel.
    :return: None or the path with the kernel.
    """
    if path is None:
        return None

    if os.path.isfile(path):
        # filename = os.path.basename(path)
        # if _re_kernel.match(filename):
        #   return path
        # elif filename == "vmlinuz":
        #   return path
        return path

    elif os.path.isdir(path):
        return find_highest_files(path, "vmlinuz", _re_kernel)

    # For remote URLs we expect an absolute path, and will not do any searching for the latest:
    elif file_is_remote(path) and remote_file_exists(path):
        return path

    return None


def remove_yum_olddata(path, logger=None):
    """
    Delete .olddata files that might be present from a failed run of createrepo.
    # FIXME: verify this is still being used

    :param path: The path to check for .olddata files.
    :param logger: The logger to audit this action with.
    """
    trythese = [
        ".olddata",
        ".repodata/.olddata",
        "repodata/.oldata",
        "repodata/repodata"
    ]
    for pathseg in trythese:
        olddata = os.path.join(path, pathseg)
        if os.path.exists(olddata):
            if logger is not None:
                logger.info("removing: %s" % olddata)
            shutil.rmtree(olddata, ignore_errors=False, onerror=None)


def find_initrd(path):
    """
    Given a directory or a filename, see if the path can be made to resolve into an intird, return that full path if
    possible.

    :param path: The path to check for initrd files.
    :return: None or the path to the found initrd.
    """
    # FUTURE: try to match kernel/initrd pairs?
    if path is None:
        return None

    if os.path.isfile(path):
        # filename = os.path.basename(path)
        # if _re_initrd.match(filename):
        #   return path
        # if filename == "initrd.img" or filename == "initrd":
        #   return path
        return path

    elif os.path.isdir(path):
        return find_highest_files(path, "initrd.img", _re_initrd)

    # For remote URLs we expect an absolute path, and will not
    # do any searching for the latest:
    elif file_is_remote(path) and remote_file_exists(path):
        return path

    return None


def read_file_contents(file_location, logger=None, fetch_if_remote=False):
    """
    Reads the contents of a file, which could be referenced locally or as a URI.

    :param file_location: The location of the file to read.
    :param logger: The logger to autdit this action with.
    :param fetch_if_remote: If True a remote file will be tried to read, otherwise remote files are skipped and None is
                            returned.
    :return: Returns None if file is remote and templating of remote files is disabled.
    :rtype: str or None
    :raises FileNotFoundException: if the file does not exist at the specified location.
    """

    # Local files:
    if file_location.startswith("/"):

        if not os.path.exists(file_location):
            if logger:
                logger.warning("File does not exist: %s" % file_location)
            raise FileNotFoundException("%s: %s" % (_("File not found"), file_location))

        try:
            f = open(file_location)
            data = f.read()
            f.close()
            return data
        except:
            if logger:
                log_exc(logger)
            raise

    # Remote files:
    if not fetch_if_remote:
        return None

    if file_is_remote(file_location):
        try:
            handler = urllib.request.urlopen(file_location)
            data = handler.read()
            handler.close()
            return data
        except urllib.error.HTTPError:
            # File likely doesn't exist
            if logger:
                logger.warning("File does not exist: %s" % file_location)
            raise FileNotFoundException("%s: %s" % (_("File not found"), file_location))


def remote_file_exists(file_url):
    """
    Return True if the remote file exists.

    :param file_url: The URL to check.
    :return: True if Cobbler can reach the specified URL, otherwise false.
    :rtype: bool
    """
    try:
        handler = urllib.request.urlopen(file_url)
        handler.close()
        return True
    except urllib.error.HTTPError:
        # File likely doesn't exist
        return False


def file_is_remote(file_location):
    """
    Returns true if the file is remote and referenced via a protocol we support.

    :param file_location: The URI to check.
    :return: True if the URI is http, https or ftp. Otherwise false.
    :rtype: bool
    """
    file_loc_lc = file_location.lower()
    # Check for urllib2 supported protocols
    for prefix in ["http://", "https://", "ftp://"]:
        if file_loc_lc.startswith(prefix):
            return True
    return False


def input_string_or_list(options):
    """
    Accepts a delimited list of stuff or a list, but always returns a list.

    :param options: The object to split into a list.
    :return: str when this functions get's passed <<inherit>>. if option is delete then an empty list is returned.
             Otherwise this function tries to return the arg option or tries to split it into a list.
    :rtype: list or str
    """
    if options == "<<inherit>>":
        return "<<inherit>>"
    if not options or options == "delete":
        return []
    elif isinstance(options, list):
        return options
    elif isinstance(options, str):
        tokens = shlex.split(options)
        return tokens
    else:
        raise CX(_("invalid input type"))


def input_string_or_dict(options, allow_multiples=True):
    """
    Older Cobbler files stored configurations in a flat way, such that all values for strings. Newer versions of Cobbler
    allow dictionaries. This function is used to allow loading of older value formats so new users of Cobbler aren't
    broken in an upgrade.

    :param options: The str or dict to convert.
    :param allow_multiples: True (default) to allow multiple identical keys, otherwise set this false explicitly.
    :return: A tuple of True and a dict.
    """

    if options == "<<inherit>>":
        options = {}

    if options is None or options == "delete":
        return (True, {})
    elif isinstance(options, list):
        raise CX(_("No idea what to do with list: %s") % options)
    elif isinstance(options, str):
        new_dict = {}
        tokens = shlex.split(options)
        for t in tokens:
            tokens2 = t.split("=", 1)
            if len(tokens2) == 1:
                # this is a singleton option, no value
                key = tokens2[0]
                value = None
            else:
                key = tokens2[0]
                value = tokens2[1]

            # If we're allowing multiple values for the same key, check to see if this token has already been inserted
            # into the dictionary of values already.

            if key in list(new_dict.keys()) and allow_multiples:
                # If so, check to see if there is already a list of values otherwise convert the dictionary value to an
                # array, and add the new value to the end of the list.
                if isinstance(new_dict[key], list):
                    new_dict[key].append(value)
                else:
                    new_dict[key] = [new_dict[key], value]
            else:
                new_dict[key] = value
        # make sure we have no empty entries
        new_dict.pop('', None)
        return (True, new_dict)
    elif isinstance(options, dict):
        options.pop('', None)
        return (True, options)
    else:
        raise CX(_("invalid input type"))


def input_boolean(value):
    """
    Convert a str to a boolean. If this is not possible or the value is false return false.

    :param value: The value to convert to boolean.
    :type value: str
    :return: True if the value is in the following list, otherwise false: "true", "1", "on", "yes", "y" .
    :rtype: bool
    """
    value = str(value)
    if value.lower() in ["true", "1", "on", "yes", "y"]:
        return True
    else:
        return False


def update_settings_file(data):
    """
    Write data handed to this function into the settings file of Cobbler. This function overwrites the existing content.

    :param data: The data to put into the settings file.
    :return: True if the action succeeded. Otherwise return nothing.
    :rtype: bool
    """
    if 1:
        # clogger.Logger().debug("in update_settings_file(): value is: %s" % str(value))
        settings_file = open("/etc/cobbler/settings", "w")
        yaml.safe_dump(data, settings_file)
        settings_file.close()
        return True
    # except:
    #    return False


def grab_tree(api_handle, item):
    """
    Climb the tree and get every node.

    :param api_handle: The api to use for checking the tree.
    :param item: The item to check for parents
    :return: The list of items with all parents from that object upwards the tree. Contains at least the item itself.
    :rtype: list
    """
    settings = api_handle.settings()
    results = [item]
    parent = item.get_parent()
    while parent is not None:
        results.append(parent)
        parent = parent.get_parent()
    results.append(settings)
    return results


def blender(api_handle, remove_dicts, root_obj):
    """
    Combine all of the data in an object tree from the perspective of that point on the tree, and produce a merged
    dictionary containing consolidated data.

    :param api_handle: The api to use for collecting the information to blender the item.
    :param remove_dicts: Boolean to decide whether dicts should be converted.
    :param root_obj: The object which should act as the root-node object.
    :return: A dictionary with all the information from the root node downwards.
    """

    tree = grab_tree(api_handle, root_obj)
    tree.reverse()  # start with top of tree, override going down
    results = {}
    for node in tree:
        __consolidate(node, results)

    # Make interfaces accessible without Cheetah-voodoo in the templates
    # EXAMPLE: $ip == $ip0, $ip1, $ip2 and so on.

    if root_obj.COLLECTION_TYPE == "system":
        for (name, interface) in list(root_obj.interfaces.items()):
            for key in list(interface.keys()):
                results["%s_%s" % (key, name)] = interface[key]

    # If the root object is a profile or system, add in all repo data for repos that belong to the object chain
    if root_obj.COLLECTION_TYPE in ("profile", "system"):
        repo_data = []
        for r in results.get("repos", []):
            repo = api_handle.find_repo(name=r)
            if repo:
                repo_data.append(repo.to_dict())
        # FIXME: sort the repos in the array based on the repo priority field so that lower priority repos come first in
        #  the array
        results["repo_data"] = repo_data

    http_port = results.get("http_port", 80)
    if http_port not in (80, "80"):
        results["http_server"] = "%s:%s" % (results["server"], http_port)
    else:
        results["http_server"] = results["server"]

    mgmt_parameters = results.get("mgmt_parameters", {})
    mgmt_parameters.update(results.get("autoinstall_meta", {}))
    results["mgmt_parameters"] = mgmt_parameters

    # sanitize output for koan and kernel option lines, etc
    if remove_dicts:
        results = flatten(results)

    # Add in some variables for easier templating as these variables change based on object type.
    if "interfaces" in results:
        # is a system object
        results["system_name"] = results["name"]
        results["profile_name"] = results["profile"]
        if "distro" in results:
            results["distro_name"] = results["distro"]
        elif "image" in results:
            results["distro_name"] = "N/A"
            results["image_name"] = results["image"]
    elif "distro" in results:
        # is a profile or subprofile object
        results["profile_name"] = results["name"]
        results["distro_name"] = results["distro"]
    elif "kernel" in results:
        # is a distro object
        results["distro_name"] = results["name"]
    elif "file" in results:
        # is an image object
        results["distro_name"] = "N/A"
        results["image_name"] = results["name"]

    return results


def flatten(data):
    """
    Convert certain nested dicts to strings. This is only really done for the ones koan needs as strings this should
    not be done for everything

    :param data: The dictionary in which various keys should be converted into a string.
    :rtype: dict
    :return: None (if data is None) or the flattened string.
    :rtype: None or dict
    """

    if data is None:
        return None
    if "environment" in data:
        data["environment"] = dict_to_string(data["environment"])
    if "kernel_options" in data:
        data["kernel_options"] = dict_to_string(data["kernel_options"])
    if "kernel_options_post" in data:
        data["kernel_options_post"] = dict_to_string(data["kernel_options_post"])
    if "yumopts" in data:
        data["yumopts"] = dict_to_string(data["yumopts"])
    if "autoinstall_meta" in data:
        data["autoinstall_meta"] = dict_to_string(data["autoinstall_meta"])
    if "template_files" in data:
        data["template_files"] = dict_to_string(data["template_files"])
    if "boot_files" in data:
        data["boot_files"] = dict_to_string(data["boot_files"])
    if "fetchable_files" in data:
        data["fetchable_files"] = dict_to_string(data["fetchable_files"])
    if "repos" in data and isinstance(data["repos"], list):
        data["repos"] = " ".join(data["repos"])
    if "rpm_list" in data and isinstance(data["rpm_list"], list):
        data["rpm_list"] = " ".join(data["rpm_list"])

    # Note -- we do not need to flatten "interfaces" as koan does not expect it to be a string, nor do we use it on a
    # kernel options line, etc...
    return data


def uniquify(seq):
    """
    Remove duplicates from the sequence handed over in the args.

    :param seq: The sequence to check for duplicates.
    :return: The list without duplicates.
    :rtype: list
    """

    # Credit: http://www.peterbe.com/plog/uniqifiers-benchmark
    # FIXME: if this is actually slower than some other way, overhaul it
    seen = {}
    result = []
    for item in seq:
        if item in seen:
            continue
        seen[item] = 1
        result.append(item)
    return result


def __consolidate(node, results):
    """
    Merge data from a given node with the aggregate of all data from past scanned nodes. Dictionaries and arrays are
    treated specially.

    :param node: The object to merge data into. The data from the node always wins.
    :param results: Merged data as dictionary
    """
    node_data = node.to_dict()

    # If the node has any data items labelled <<inherit>> we need to expunge them. So that they do not override the
    # supernodes.
    node_data_copy = {}
    for key in node_data:
        value = node_data[key]
        if value != "<<inherit>>":
            if isinstance(value, dict):
                node_data_copy[key] = value.copy()
            elif isinstance(value, list):
                node_data_copy[key] = value[:]
            else:
                node_data_copy[key] = value

    for field in node_data_copy:

        data_item = node_data_copy[field]
        if field in results:
            # Now merge data types seperately depending on whether they are dict, list, or scalar.
            fielddata = results[field]

            if isinstance(fielddata, dict):
                # interweave dict results
                results[field].update(data_item.copy())
            elif isinstance(fielddata, list) or isinstance(fielddata, tuple):
                # add to lists (Cobbler doesn't have many lists)
                # FIXME: should probably uniqueify list after doing this
                results[field].extend(data_item)
                results[field] = uniquify(results[field])
            else:
                # distro field gets special handling, since we don't want to overwrite it ever.
                # FIXME: should the parent's field too? It will be overwritten if there are multiple sub-profiles in
                #        the chain of inheritance
                if field != "distro":
                    results[field] = data_item
        else:
            results[field] = data_item

    # Now if we have any "!foo" results in the list, delete corresponding key entry "foo", and also the entry "!foo",
    # allowing for removal of kernel options set in a distro later in a profile, etc.

    dict_removals(results, "kernel_options")
    dict_removals(results, "kernel_options_post")
    dict_removals(results, "autoinstall_meta")
    dict_removals(results, "template_files")
    dict_removals(results, "boot_files")
    dict_removals(results, "fetchable_files")


def dict_removals(results, subkey):
    """
    Remove entrys from a dictionary starting with a "!".

    :param results: The dictionary to search in
    :param subkey: The subkey to search through.
    """
    if subkey not in results:
        return
    scan = list(results[subkey].keys())
    for k in scan:
        if str(k).startswith("!") and k != "!":
            remove_me = k[1:]
            if remove_me in results[subkey]:
                del results[subkey][remove_me]
            del results[subkey][k]


def dict_to_string(_dict):
    """
    Convert a dictionary to a printable string. Used primarily in the kernel options string and for some legacy stuff
    where koan expects strings (though this last part should be changed to dictionaries)

    A KV-Pair is joined with a "=". Values are enclosed in single quotes.

    :param _dict: The dictionary to convert to a string.
    :return: The string which was previously a dictionary.
    :rtype: str
    """

    buffer = ""
    if not isinstance(_dict, dict):
        return _dict
    for key in _dict:
        value = _dict[key]
        if not value:
            buffer += str(key) + " "
        elif isinstance(value, list):
            # this value is an array, so we print out every
            # key=value
            for item in value:
                # strip possible leading and trailing whitespaces
                _item = str(item).strip()
                if ' ' in _item:
                    buffer += str(key) + "='" + _item + "' "
                else:
                    buffer += str(key) + "=" + _item + " "
        else:
            _value = str(value).strip()
            if ' ' in _value:
                buffer += str(key) + "='" + _value + "' "
            else:
                buffer += str(key) + "=" + _value + " "
    return buffer


def rsync_files(src, dst, args, logger=None, quiet=True):
    """
    Sync files from src to dst. The extra arguments specified by args are appended to the command.

    :param src: The source for the copy process.
    :param dst: The destination for the copy process.
    :param args: The extra arguments are appended to our standard arguements.
    :param logger: The logger to audit the action with.
    :param quiet: If "True" no progress is reported. If "False" then progress will be reported by rsync.
    :type quiet: bool
    :return: ``True`` on success, otherwise ``False``.
    """

    if args is None:
        args = ''

    RSYNC_CMD = "rsync -a %%s '%%s' %%s %s --exclude-from=/etc/cobbler/rsync.exclude" % args
    if quiet:
        RSYNC_CMD += " --quiet"
    else:
        RSYNC_CMD += " --progress"

    # Make sure we put a "/" on the end of the source and destination to make sure we don't cause any rsync weirdness.
    if not dst.endswith("/"):
        dst = "%s/" % dst
    if not src.endswith("/"):
        src = "%s/" % src

    spacer = ""
    if not src.startswith("rsync://") and not src.startswith("/"):
        spacer = ' -e "ssh" '

    rsync_cmd = RSYNC_CMD % (spacer, src, dst)
    try:
        res = subprocess_call(logger, rsync_cmd)
        if res != 0:
            die(logger, "Failed to run the rsync command: '%s'" % rsync_cmd)
    except:
        return False

    return True


def run_this(cmd, args, logger):
    """
    A simple wrapper around subprocess calls.

    :param cmd: The command to run in a shell process.
    :param args: The arguments to attach to the command.
    :param logger: The logger to audit the shell call with.
    """

    my_cmd = cmd % args
    rc = subprocess_call(logger, my_cmd, shell=True)
    if rc != 0:
        die(logger, "Command failed")


def run_triggers(api, ref, globber, additional=[], logger=None):
    """Runs all the trigger scripts in a given directory.
    Example: ``/var/lib/cobbler/triggers/blah/*``

    As of Cobbler 1.5.X, this also runs Cobbler modules that match the globbing paths.

    Python triggers are always run before shell triggers.

    :param api: The api object to use for resolving the actions.
    :param ref: Can be a Cobbler object, if not None, the name will be passed to the script. If ref is None, the script
                will be called with no argumenets.
    :param globber: is a wildcard expression indicating which triggers to run.
    :param additional: Additional arguments to run the triggers with.
    :type additional: list
    :param logger: The logger to audit the action with.
    """

    if logger is not None:
        logger.debug("running python triggers from %s" % globber)
    modules = api.get_modules_in_category(globber)
    for m in modules:
        arglist = []
        if ref:
            arglist.append(ref.name)
        for x in additional:

            arglist.append(x)
        if logger is not None:
            logger.debug("running python trigger %s" % m.__name__)
        rc = m.run(api, arglist, logger)
        if rc != 0:
            raise CX("Cobbler trigger failed: %s" % m.__name__)

    # Now do the old shell triggers, which are usually going to be slower, but are easier to write and support any
    # language.

    if logger is not None:
        logger.debug("running shell triggers from %s" % globber)
    triggers = glob.glob(globber)
    triggers.sort()
    for file in triggers:
        try:
            if file.startswith(".") or file.find(".rpm") != -1:
                # skip dotfiles or .rpmnew files that may have been installed
                # in the triggers directory
                continue
            arglist = [file]
            if ref:
                arglist.append(ref.name)
            for x in additional:
                if x:
                    arglist.append(x)
            if logger is not None:
                logger.debug("running shell trigger %s" % file)
            rc = subprocess_call(logger, arglist, shell=False)  # close_fds=True)
        except:
            if logger is not None:
                logger.warning("failed to execute trigger: %s" % file)
            continue

        if rc != 0:
            raise CX(_("Cobbler trigger failed: %(file)s returns %(code)d") % {"file": file, "code": rc})

        if logger is not None:
            logger.debug("shell trigger %s finished successfully" % file)

    if logger is not None:
        logger.debug("shell triggers finished successfully")


def get_family():
    """
    Get family of running operating system.

    Family is the base Linux distribution of a Linux distribution, with a set of common parents.

    :return: May be "redhat", "debian" or "suse" currently. If none of these are detected then just the distro name is
             returned.
    :rtype: str
    """

    redhat_list = ("red hat", "redhat", "scientific linux", "fedora", "centos", "virtuozzo")

    distro_name = distro.name().lower()
    for item in redhat_list:
        if item in distro_name:
            return "redhat"
    if "debian" in distro_name or "ubuntu" in distro_name:
        return "debian"
    if "suse" in distro.like():
        return "suse"
    return distro_name


def os_release():
    """
    Get the os version of the linux distro. If the get_family() method succeeds then the result is normalized.

    :return: The os-name and os version.
    """
    family = get_family()
    distro_name = distro.name().lower()
    distro_version = distro.version()
    if family == "redhat":
        if "fedora" in distro_name:
            make = "fedora"
        elif "centos" in distro_name:
            make = "centos"
        elif "virtuozzo" in distro_name:
            make = "virtuozzo"
        else:
            make = "redhat"
        return make, float(distro_version)

    elif family == "debian":
        if "debian" in distro_name:
            return "debian", float(distro_version)
        elif "ubuntu" in distro_name:
            return "ubuntu", float(distro_version)

    elif family == "suse":
        make = "suse"
        if "suse" not in distro.like():
            make = "unknown"
        return make, float(distro_version)


def is_safe_to_hardlink(src, dst, api):
    """
    Determine if it is safe to hardlink a file to the destination path.

    :param src: The hardlink source path.
    :param dst: The hardlink target path.
    :param api: The api-instance to resolve needed information with.
    :return: True if selinux is disabled, the file is on the same device, the source in not a link, and it is not a
             remote path. If selinux is enabled the functions still may return true if the object is a kernel or initrd.
             Otherwise returns False.
    :rtype: bool
    """
    (dev1, path1) = get_file_device_path(src)
    (dev2, path2) = get_file_device_path(dst)
    if dev1 != dev2:
        return False
    # do not hardlink to a symbolic link; chances are high the new link will be dangling
    if os.path.islink(src):
        return False
    if dev1.find(":") != -1:
        # is remoted
        return False
    # note: this is very Cobbler implementation specific!
    if not api.is_selinux_enabled():
        return True
    if _re_initrd.match(os.path.basename(path1)):
        return True
    if _re_kernel.match(os.path.basename(path1)):
        return True
    # we're dealing with SELinux and files that are not safe to chcon
    return False


def hashfile(fn, lcache=None, logger=None):
    """
    Returns the sha1sum of the file

    :param fn: The file to get the sha1sum of.
    :param lcache: Not known what this is exactly for.
    :param logger: The logger to audit the action with.
    :return: The sha1 sum or None if the file doesn't exist.
    """
    db = {}
    try:
        dbfile = os.path.join(lcache, 'link_cache.json')
        if os.path.exists(dbfile):
            db = simplejson.load(open(dbfile, 'r'))
    except:
        pass

    mtime = os.stat(fn).st_mtime
    if fn in db:
        if db[fn][0] >= mtime:
            return db[fn][1]

    if os.path.exists(fn):
        cmd = '/usr/bin/sha1sum %s' % fn
        key = subprocess_get(logger, cmd).split(' ')[0]
        if lcache is not None:
            db[fn] = (mtime, key)
            simplejson.dump(db, open(dbfile, 'w'))
        return key
    else:
        return None


def cachefile(src, dst, api=None, logger=None):
    """
    Copy a file into a cache and link it into place. Use this with caution, otherwise you could end up copying data
    twice if the cache is not on the same device as the destination.

    :param src: The sourcefile for the copy action.
    :param dst: The destination for the copy action.
    :param api: The api to resolve basic information with.
    :param logger: The logger to audit the action with.
    """
    lcache = os.path.join(os.path.dirname(os.path.dirname(dst)), '.link_cache')
    if not os.path.isdir(lcache):
        os.mkdir(lcache)
    key = hashfile(src, lcache=lcache, logger=logger)
    cachefile = os.path.join(lcache, key)
    if not os.path.exists(cachefile):
        logger.info("trying to create cache file %s" % cachefile)
        copyfile(src, cachefile, api=api, logger=logger)

    logger.debug("trying cachelink %s -> %s -> %s" % (src, cachefile, dst))
    os.link(cachefile, dst)


def linkfile(src, dst, symlink_ok=False, cache=True, api=None, logger=None):
    """
    Attempt to create a link dst that points to src. Because file systems suck we attempt several different methods or
    bail to just copying the file.

    :param src: The source file.
    :param dst: The destination for the link.
    :param symlink_ok: If it is okay to just use a symbolic link.
    :type symlink_ok: bool
    :param cache: If it is okay to use a cached file instead of the real one.
    :type cache: bool
    :param api: This parameter is needed to check if a file can be hardlinked. This method fails if this parameter is
                not present.
    :param logger: If a logger instance is present, then it is used to audit what this method is doing to the
                   filesystem.
    """

    if api is None:
        # FIXME: this really should not be a keyword arg
        raise CX("Internal error: API handle is required")

    if os.path.exists(dst):
        # if the destination exists, is it right in terms of accuracy and context?
        if os.path.samefile(src, dst):
            if not is_safe_to_hardlink(src, dst, api):
                # may have to remove old hardlinks for SELinux reasons
                # as previous implementations were not complete
                if logger is not None:
                    logger.info("removing: %s" % dst)
                os.remove(dst)
            else:
                return
        elif os.path.islink(dst):
            # existing path exists and is a symlink, update the symlink
            if logger is not None:
                logger.info("removing: %s" % dst)
            os.remove(dst)

    if is_safe_to_hardlink(src, dst, api):
        # we can try a hardlink if the destination isn't to NFS or Samba this will help save space and sync time.
        try:
            if logger is not None:
                logger.info("trying hardlink %s -> %s" % (src, dst))
            os.link(src, dst)
            return
        except (IOError, OSError):
            # hardlink across devices, or link already exists we'll just symlink it if we can or otherwise copy it
            pass

    if symlink_ok:
        # we can symlink anywhere except for /tftpboot because that is run chroot, so if we can symlink now, try it.
        try:
            if logger is not None:
                logger.info("trying symlink %s -> %s" % (src, dst))
            os.symlink(src, dst)
            return
        except (IOError, OSError):
            pass

    if cache:
        try:
            cachefile(src, dst, api=api, logger=logger)
            return
        except (IOError, OSError):
            pass

    # we couldn't hardlink and we couldn't symlink so we must copy
    copyfile(src, dst, api=api, logger=logger)


def copyfile(src, dst, api=None, logger=None):
    """
    Copy a file from source to the destination.

    :param src: The source file. This may also be a folder.
    :param dst: The destination for the file or folder.
    :param api: This parameter is not used currently.
    :param logger: The logger to audit the action with.
    """
    try:
        if logger is not None:
            logger.info("copying: %s -> %s" % (src, dst))
        if os.path.isdir(src):
            shutil.copytree(src, dst)
        else:
            shutil.copyfile(src, dst)
    except:
        if not os.access(src, os.R_OK):
            raise CX(_("Cannot read: %s") % src)
        if os.path.samefile(src, dst):
            # accomodate for the possibility that we already copied
            # the file as a symlink/hardlink
            raise
            # traceback.print_exc()
            # raise CX(_("Error copying %(src)s to %(dst)s") % { "src" : src, "dst" : dst})


def copyremotefile(src, dst1, api=None, logger=None):
    """
    Copys a file from a remote place to the local destionation.

    :param src: The remote file URI.
    :param dst1: The copy destination on the local filesystem.
    :param api: This parameter is not used currently.
    :param logger: The logger to audit the action with.
    """
    try:
        if logger is not None:
            logger.info("copying: %s -> %s" % (src, dst1))
        srcfile = urllib.request.urlopen(src)
        output = open(dst1, 'wb')
        output.write(srcfile.read())
        output.close()
    except Exception as e:
        raise CX(_("Error while getting remote file (%s -> %s):\n%s" % (src, dst1, e)))


def copyfile_pattern(pattern, dst, require_match=True, symlink_ok=False, cache=True, api=None, logger=None):
    """
    Copy 1 or more files with a pattern into a destination.

    :param pattern: The pattern for finding the required files.
    :param dst: The destination for the file(s) found.
    :param require_match: If the glob pattern does not find files should an error message be thrown or not.
    :type require_match: bool
    :param symlink_ok: If it is okay to just use a symlink to link the file to the destination.
    :type symlink_ok: bool
    :param cache: If it is okay to use a file from the cache (which could be possibly newer) or not.
    :type cache: bool
    :param api:
    :param logger: The logger to audit the action with.
    """
    files = glob.glob(pattern)
    if require_match and not len(files) > 0:
        raise CX(_("Could not find files matching %s") % pattern)
    for file in files:
        dst1 = os.path.join(dst, os.path.basename(file))
        linkfile(file, dst1, symlink_ok=symlink_ok, cache=cache, api=api, logger=logger)


def rmfile(path, logger=None):
    """
    Delete a single file.

    :param path: The file to delete.
    :param logger: The logger to audit the action with.
    :return: True if the action succeeded.
    :rtype: bool
    """
    try:
        if logger is not None:
            logger.info("removing: %s" % path)
        os.unlink(path)
        return True
    except OSError as ioe:
        # doesn't exist
        if not ioe.errno == errno.ENOENT:
            if logger is not None:
                log_exc(logger)
            raise CX(_("Error deleting %s") % path)
        return True


def rmtree_contents(path, logger=None):
    """
    Delete the content of a folder with a glob pattern.

    :param path: This parameter presents the glob pattern of what should be deleted.
    :param logger: The logger to audit the action with.
    """
    what_to_delete = glob.glob("%s/*" % path)
    for x in what_to_delete:
        rmtree(x, logger=logger)


def rmtree(path, logger=None):
    """
    Delete a complete directory or just a single file.

    :param path: The directory or folder to delete.
    :param logger: The logger to audit the action with.
    :return: May possibly return true on success or may return None on success.
    """
    try:
        if os.path.isfile(path):
            return rmfile(path, logger=logger)
        else:
            if logger is not None:
                logger.info("removing: %s" % path)
            return shutil.rmtree(path, ignore_errors=True)
    except OSError as ioe:
        if logger is not None:
            log_exc(logger)
        if not ioe.errno == errno.ENOENT:   # doesn't exist
            raise CX(_("Error deleting %s") % path)
        return True


def mkdir(path, mode=0o755, logger=None):
    """
    Create directory with a given mode.

    :param path: The path to create the directory at.
    :param mode: The mode to create the directory with.
    :param logger: The logger to audit the action with.
    """
    try:
        if logger is not None:
            logger.info("mkdir: %s" % path)
        return os.makedirs(path, mode)
    except OSError as oe:
        # already exists (no constant for 17?)
        if not oe.errno == 17:
            if logger is not None:
                log_exc(logger)
            raise CX(_("Error creating %s") % path)


def path_tail(apath, bpath):
    """
    Given two paths (B is longer than A), find the part in B not in A

    :param apath: The first path.
    :param bpath: The second path.
    :return: If the paths are not starting at the same location this function returns an empty string.
    :rtype: str
    """
    position = bpath.find(apath)
    if position != 0:
        return ""
    rposition = position + len(apath)
    result = bpath[rposition:]
    if not result.startswith("/"):
        result = "/" + result
    return result


def set_arch(self, arch, repo=False):
    """
    This is a setter for system architectures. If the arch is not valid then an exception is raised.

    :param self: The object where the arch will be set.
    :param arch: The desired architecture to set for the object.
    :param repo: If the object where the arch will be set is a repo or not.
    :type repo: bool
    """
    if not arch or arch == "standard" or arch == "x86":
        arch = "i386"

    if repo:
        valids = ["i386", "x86_64", "ia64", "ppc", "ppc64", "ppc64le", "ppc64el", "s390", "s390x", "noarch", "src",
                  "arm", "aarch64"]
    else:
        valids = ["i386", "x86_64", "ia64", "ppc", "ppc64", "ppc64le", "ppc64el", "s390", "s390x", "arm", "aarch64"]

    if arch in valids:
        self.arch = arch
        return

    raise CX("arch choices include: %s" % ", ".join(valids))


def set_os_version(self, os_version):
    """
    This is a setter for the operating system version of an object.

    :param self: The object to set the os-version for.
    :param os_version: The version which shall be set.
    """
    if not os_version:
        self.os_version = ""
        return
    self.os_version = os_version.lower()
    if not self.breed:
        raise CX(_("cannot set --os-version without setting --breed first"))
    if self.breed not in get_valid_breeds():
        raise CX(_("fix --breed first before applying this setting"))
    matched = SIGNATURE_CACHE["breeds"][self.breed]
    if os_version not in matched:
        nicer = ", ".join(matched)
        raise CX(_("--os-version for breed %s must be one of %s, given was %s") % (self.breed, nicer, os_version))
    self.os_version = os_version


def set_breed(self, breed):
    """
    This is a setter for the operating system breed.

    :param self: The object to set the os-breed for.
    :param breed: The os-breed which shall be set.
    """
    valid_breeds = get_valid_breeds()
    if breed is not None and breed.lower() in valid_breeds:
        self.breed = breed.lower()
        return
    nicer = ", ".join(valid_breeds)
    raise CX(_("invalid value for --breed (%s), must be one of %s, different breeds have different levels of support")
             % (breed, nicer))


def set_repo_os_version(self, os_version):
    """
    This is a setter for the os-version of a repository.

    :param self: The repo to set the os-version for.
    :param os_version: The os-version which should be set.
    """
    if not os_version:
        self.os_version = ""
        return
    self.os_version = os_version.lower()
    if not self.breed:
        raise CX(_("cannot set --os-version without setting --breed first"))
    if self.breed not in validate.REPO_BREEDS:
        raise CX(_("fix --breed first before applying this setting"))
    self.os_version = os_version
    return


def set_repo_breed(self, breed):
    """
    This is a setter for the repository breed.

    :param self: The object to set the breed of.
    :param breed: The new value for breed.
    """
    valid_breeds = validate.REPO_BREEDS
    if breed is not None and breed.lower() in valid_breeds:
        self.breed = breed.lower()
        return
    nicer = ", ".join(valid_breeds)
    raise CX(_("invalid value for --breed (%s), must be one of %s, different breeds have different levels of support")
             % (breed, nicer))


def set_repos(self, repos, bypass_check=False):
    """
    This is a setter for the repository.

    :param self: The object to set the repositories of.
    :param repos: The repositories to set for the object.
    :param bypass_check: If the newly set repos should be checked for existence.
    :type bypass_check: bool
    """
    # allow the magic inherit string to persist
    if repos == "<<inherit>>":
        self.repos = "<<inherit>>"
        return

    # store as an array regardless of input type
    if repos is None:
        self.repos = []
    else:
        self.repos = input_string_or_list(repos)
    if bypass_check:
        return

    for r in self.repos:
        if self.collection_mgr.repos().find(name=r) is None:
            raise CX(_("repo %s is not defined") % r)


def set_virt_file_size(self, num):
    """
    For Virt only: Specifies the size of the virt image in gigabytes. Older versions of koan (x<0.6.3) interpret 0 as
    "don't care". Newer versions (x>=0.6.4) interpret 0 as "no disks"

    :param self: The object where the virt file size should be set for.
    :param num: is a non-negative integer (0 means default). Can also be a comma seperated list -- for usage with
                multiple disks
    """

    if num is None or num == "":
        self.virt_file_size = 0
        return

    if num == "<<inherit>>":
        self.virt_file_size = "<<inherit>>"
        return

    if isinstance(num, str) and num.find(",") != -1:
        tokens = num.split(",")
        for t in tokens:
            # hack to run validation on each
            self.set_virt_file_size(t)
        # if no exceptions raised, good enough
        self.virt_file_size = num
        return

    try:
        inum = int(num)
        if inum != float(num):
            raise CX(_("invalid virt file size (%s)" % num))
        if inum >= 0:
            self.virt_file_size = inum
            return
        raise CX(_("invalid virt file size (%s)" % num))
    except:
        raise CX(_("invalid virt file size (%s)" % num))


def set_virt_disk_driver(self, driver):
    """
    For Virt only. Specifies the on-disk format for the virtualized disk

    :param self: The object where the virt disk driver should be set for.
    :param driver: The virt driver to set.
    """
    if driver in validate.VIRT_DISK_DRIVERS:
        self.virt_disk_driver = driver
    else:
        raise CX(_("invalid virt disk driver type (%s)" % driver))


def set_virt_auto_boot(self, num):
    """
    For Virt only.
    Specifies whether the VM should automatically boot upon host reboot 0 tells Koan not to auto_boot virtuals.

    :param self: The object where the virt auto boot should be set for.
    :param num: May be "0" (disabled) or "1" (enabled)
    :type num: int
    """

    if num == "<<inherit>>":
        self.virt_auto_boot = "<<inherit>>"
        return

    # num is a non-negative integer (0 means default)
    try:
        inum = int(num)
        if (inum == 0) or (inum == 1):
            self.virt_auto_boot = inum
            return
        raise CX(_("invalid virt_auto_boot value (%s): value must be either '0' (disabled) or '1' (enabled)" % inum))
    except:
        raise CX(_("invalid virt_auto_boot value (%s): value must be either '0' (disabled) or '1' (enabled)" % num))


def set_virt_pxe_boot(self, num):
    """
    For Virt only.
    Specifies whether the VM should use PXE for booting 0 tells Koan not to PXE boot virtuals

    :param self: The object where the virt pxe boot should be set for.
    :param num: May be "0" (disabled) or "1" (enabled)
    :type num: int
    """

    # num is a non-negative integer (0 means default)
    try:
        inum = int(num)
        if (inum == 0) or (inum == 1):
            self.virt_pxe_boot = inum
            return
        raise CX(_("invalid virt_pxe_boot value (%s): value must be either '0' (disabled) or '1' (enabled)" % inum))
    except:
        raise CX(_("invalid virt_pxe_boot value (%s): value must be either '0' (disabled) or '1' (enabled)" % num))


def set_virt_ram(self, num):
    """
    For Virt only.
    Specifies the size of the Virt RAM in MB.

    :param self: The object where the virtual RAM should be set for.
    :param num: 0 tells Koan to just choose a reasonable default.
    :type num: int
    """

    if num == "<<inherit>>":
        self.virt_ram = "<<inherit>>"
        return

    # num is a non-negative integer (0 means default)
    try:
        inum = int(num)
        if inum != float(num):
            raise CX(_("invalid virt ram size (%s)" % num))
        if inum >= 0:
            self.virt_ram = inum
            return
        raise CX(_("invalid virt ram size (%s)" % num))
    except:
        raise CX(_("invalid virt ram size (%s)" % num))


def set_virt_type(self, vtype):
    """
    Virtualization preference, can be overridden by koan.

    :param self: The object where the virtual machine type should be set for.
    :param vtype: May be one of "qemu", "kvm", "xenpv", "xenfv", "vmware", "vmwarew", "openvz" or "auto"
    """

    if vtype == "<<inherit>>":
        self.virt_type = "<<inherit>>"
        return

    if vtype.lower() not in ["qemu", "kvm", "xenpv", "xenfv", "vmware", "vmwarew", "openvz", "auto"]:
        raise CX(_("invalid virt type (%s)" % vtype))
    self.virt_type = vtype


def set_virt_bridge(self, vbridge):
    """
    The default bridge for all virtual interfaces under this profile.

    :param self: The object to adjust the virtual interfaces of.
    :param vbridge: The bridgename to set for the object.
    """
    if not vbridge:
        vbridge = self.settings.default_virt_bridge
    self.virt_bridge = vbridge


def set_virt_path(self, path, for_system=False):
    """
    Virtual storage location suggestion, can be overriden by koan.

    :param self: The object to adjust the virtual storage location.
    :param path: The path to the storage.
    :param for_system: If this is set to True then the value is inherited from a profile.
    :type for_system: bool
    """
    if path is None:
        path = ""
    if for_system:
        if path == "":
            path = "<<inherit>>"
    self.virt_path = path


def set_virt_cpus(self, num):
    """
    For Virt only. Set the number of virtual CPUs to give to the virtual machine. This is fed to virtinst RAW, so
    Cobbler will not yelp if you try to feed it 9999 CPUs. No formatting like 9,999 please :)

    :param self: The object to adjust the virtual cpu cores.
    :param num: The number of cpu cores.
    """
    if num == "" or num is None:
        self.virt_cpus = 1
        return

    if num == "<<inherit>>":
        self.virt_cpus = "<<inherit>>"
        return

    try:
        num = int(str(num))
    except:
        raise CX(_("invalid number of virtual CPUs (%s)" % num))

    self.virt_cpus = num


def safe_filter(var):
    """
    Not know what this function exactly does.

    :param var: This parameter shall not be None or have ".."/";" at the end.
    """
    if var is None:
        return
    if var.find("..") != -1 or var.find(";") != -1:
        raise CX("Invalid characters found in input")


def is_selinux_enabled():
    """
    This check is achieved via a subprocess call to ``selinuxenabled``. Default return is false.

    :return: Whether selinux is enabled or not.
    :rtype: bool
    """
    if not os.path.exists("/usr/sbin/selinuxenabled"):
        return False
    cmd = "/usr/sbin/selinuxenabled"
    selinuxenabled = subprocess_call(None, cmd)
    if selinuxenabled == 0:
        return True
    else:
        return False


# We cache the contents of /etc/mtab ... the following variables are used to keep our cache in sync.
mtab_mtime = None
mtab_map = []


class MntEntObj(object):
    mnt_fsname = None   # name of mounted file system
    mnt_dir = None      # file system path prefix
    mnt_type = None     # mount type (see mntent.h)
    mnt_opts = None     # mount options (see mntent.h)
    mnt_freq = 0        # dump frequency in days
    mnt_passno = 0      # pass number on parallel fsck

    def __init__(self, input=None):
        """
        This is an object which contains information about a mounted filesystem.

        :param input: This is a string which is seperated internally by whitespace. If present it represents the
                      arguments: "mnt_fsname", "mnt_dir", "mnt_type", "mnt_opts", "mnt_freq" and "mnt_passno". The order
                      must be preserved, as well as the separation by whitespace.
        :type input: str
        """
        if input and isinstance(input, str):
            (self.mnt_fsname, self.mnt_dir, self.mnt_type, self.mnt_opts,
             self.mnt_freq, self.mnt_passno) = input.split()

    def __dict__(self):
        """
        This maps all variables available in this class to a dictionary. The name of the keys is identical to the names
        of the variables.

        :return: The dictionary representation of an instance of this class.
        :rtype: dict
        """
        return {"mnt_fsname": self.mnt_fsname, "mnt_dir": self.mnt_dir, "mnt_type": self.mnt_type,
                "mnt_opts": self.mnt_opts, "mnt_freq": self.mnt_freq, "mnt_passno": self.mnt_passno}

    def __str__(self):
        """
        This is the object representation of a mounted filesystem as a string. It can be fed to the constructor of this
        class.

        :return: The space separated list of values of this object.
        """
        return "%s %s %s %s %s %s" % (self.mnt_fsname, self.mnt_dir, self.mnt_type,
                                      self.mnt_opts, self.mnt_freq, self.mnt_passno)


def get_mtab(mtab="/etc/mtab", vfstype=None):
    """
    Get the list of mtab entries. If a custum mtab should be read then the location can be overriden via a parameter.

    :param mtab: The location of the mtab. Argument can be ommited if the mtab is at its default location.
    :param vfstype: If this is True, then all filesystems which are nfs are returned. Otherwise this returns all mtab
                    entries.
    :type vfstype: bool
    :return: The list of requested mtab entries.
    :rtype: list
    """
    global mtab_mtime, mtab_map

    mtab_stat = os.stat(mtab)
    if mtab_stat.st_mtime != mtab_mtime:
        '''cache is stale ... refresh'''
        mtab_mtime = mtab_stat.st_mtime
        mtab_map = __cache_mtab__(mtab)

    # was a specific fstype requested?
    if vfstype:
        mtab_type_map = []
        for ent in mtab_map:
            if ent.mnt_type == "nfs":
                mtab_type_map.append(ent)
        return mtab_type_map

    return mtab_map


def set_serial_device(self, device_number):
    """
    Set the serial device for an object.

    :param self: The object to set the device number for.
    :param device_number: The number of the serial device.
    :type device_number: int
    :return: True if the action succeeded.
    :rtype: bool
    """
    if device_number == "" or device_number is None:
        device_number = None
    else:
        try:
            device_number = int(str(device_number))
        except:
            raise CX(_("invalid value for serial device (%s)" % device_number))

    self.serial_device = device_number
    return True


def set_serial_baud_rate(self, baud_rate):
    """
    The baud rate is very import that the communication between the two devices can be established correctly. This is
    the setter for this parameter. This effectively is the speed of the connection.

    :param self: The object to set the serial baud rate for.
    :param baud_rate: The baud rate to set.
    :type baud_rate: int
    :return: True if the action succeeded.
    :rtype: bool
    """
    if baud_rate == "" or baud_rate is None:
        baud_rate = None
    else:
        try:
            baud_rate = int(str(baud_rate))
        except:
            raise CX(_("invalid value for serial baud (%s)" % baud_rate))

    self.serial_baud_rate = baud_rate
    return True


def __cache_mtab__(mtab="/etc/mtab"):
    """
    Open the mtab and cache it inside Cobbler. If it is guessed that the mtab hasn't changed the cache data is used.

    :param mtab: The location of the mtab. Argument can be ommited if the mtab is at its default location.
    :return: The mtab content stripped from empty lines (if any are present).
    """
    f = open(mtab)
    mtab = [MntEntObj(line) for line in f.read().split('\n') if len(line) > 0]
    f.close()

    return mtab


def get_file_device_path(fname):
    """
    What this function attempts to do is take a file and return:
        - the device the file is on
        - the path of the file relative to the device.
    For example:
         /boot/vmlinuz -> (/dev/sda3, /vmlinuz)
         /boot/efi/efi/redhat/elilo.conf -> (/dev/cciss0, /elilo.conf)
         /etc/fstab -> (/dev/sda4, /etc/fstab)

    :param fname: The filename to split up.
    :return: A tuple containing the device and relative filename.
    """

    # resolve any symlinks
    fname = os.path.realpath(fname)

    # convert mtab to a dict
    mtab_dict = {}
    try:
        for ent in get_mtab():
            mtab_dict[ent.mnt_dir] = ent.mnt_fsname
    except:
        pass

    # find a best match
    fdir = os.path.dirname(fname)
    if fdir in mtab_dict:
        match = True
    else:
        match = False
    chrootfs = False
    while not match:
        if fdir == os.path.sep:
            chrootfs = True
            break
        fdir = os.path.realpath(os.path.join(fdir, os.path.pardir))
        if fdir in mtab_dict:
            match = True
        else:
            match = False

    # construct file path relative to device
    if fdir != os.path.sep:
        fname = fname[len(fdir):]

    if chrootfs:
        return (":", fname)
    else:
        return (mtab_dict[fdir], fname)


def is_remote_file(file):
    """
    This function is trying to detect if the file in the argument is remote or not.

    :param file: The filepath to check.
    :return: If remote True, otherwise False.
    :rtype: bool
    """
    (dev, path) = get_file_device_path(file)
    if dev.find(":") != -1:
        return True
    else:
        return False


def subprocess_sp(logger, cmd, shell=True, input=None):
    """
    Call a shell process and redirect the output for internal usage.

    :param logger: The logger to audit the action with.
    :param cmd: The command to execute in a subprocess call.
    :param shell: Whether to use a shell or not for the execution of the commmand.
    :type shell: bool
    :param input: If there is any input needed for that command to stdin.
    :return: A tuple of the output and the return code.
    """
    if logger is not None:
        logger.info("running: %s" % cmd)

    stdin = None
    if input:
        stdin = subprocess.PIPE

    try:
        sp = subprocess.Popen(cmd, shell=shell, stdin=stdin, stdout=subprocess.PIPE, stderr=subprocess.PIPE, encoding="utf-8",
                              close_fds=True)
    except OSError:
        if logger is not None:
            log_exc(logger)
        die(logger, "OS Error, command not found?  While running: %s" % cmd)

    (out, err) = sp.communicate(input)
    rc = sp.returncode
    if logger is not None:
        logger.info("received on stdout: %s" % out)
        logger.debug("received on stderr: %s" % err)
    return out, rc


def subprocess_call(logger, cmd, shell=True, input=None):
    """
    A simple subprocess call with no output capturing.

    :param logger: The logger to audit the action with.
    :param cmd: The command to execute.
    :param shell: Whether to use a shell or not for the execution of the commmand.
    :type shell: bool
    :param input: If there is any input needed for that command to stdin.
    :return: The return code of the process
    """
    data, rc = subprocess_sp(logger, cmd, shell=shell, input=input)
    return rc


def subprocess_get(logger, cmd, shell=True, input=None):
    """
    A simple subprocess call with no return code capturing.

    :param logger: The logger to audit the action with.
    :param cmd: The command to execute.
    :param shell: Whether to use a shell or not for the execution of the commmand.
    :type shell: bool
    :param input: If there is any input needed for that command to stdin.
    :return: The data which the subprocess returns.
    """
    data, rc = subprocess_sp(logger, cmd, shell=shell, input=input)
    return data


def get_supported_system_boot_loaders():
    """
    Return the list of currently supported bootloaders.

    :return: The list of currently supported bootloaders.
    :rtype: list
    """
    return ["<<inherit>>", "grub", "pxelinux", "yaboot", "ipxe"]


def get_supported_distro_boot_loaders(distro, api_handle=None):
    """
    This is trying to return you the list of known bootloaders if all resorts fail. Otherwise this returns a list which
    contains only the subset of bootloaders which are available by the distro in the argument.

    :param distro: The distro to check for.
    :param api_handle: The api instance to resolve metadata and settings from.
    :return: The list of bootloaders or a dict of well known bootloaders.
    """
    try:
        # Try to read from the signature
        return api_handle.get_signatures()["breeds"][distro.breed][distro.os_version]["boot_loaders"][distro.arch]
    except:
        try:
            # Try to read directly from the cache
            return SIGNATURE_CACHE["breeds"][distro.breed][distro.os_version]["boot_loaders"][distro.arch]
        except:
            try:
                # Else use some well-known defaults
                return {"ppc64": ["grub", "pxelinux", "yaboot"],
                        "ppc64le": ["grub"],
                        "ppc64el": ["grub"],
                        "aarch64": ["grub"],
                        "i386": ["grub", "pxelinux"],
                        "x86_64": ["grub", "pxelinux"]}[distro.arch]
            except:
                # Else return the globally known list
                return get_supported_system_boot_loaders()


def clear_from_fields(item, fields, is_subobject=False):
    """
    Used by various item_*.py classes for automating datastructure boilerplate.

    :param item: The item to clear the fields of.
    :param fields: Not known what magic this actually does.
    :param is_subobject: If in the Cobbler inheritance tree the item is considered a subobject (True) or not (False).
    :type is_subobject: bool
    """
    for elems in fields:
        # if elems startswith * it's an interface field and we do not operate on it.
        if elems[0].startswith("*"):
            continue
        if is_subobject:
            val = elems[2]
        else:
            val = elems[1]
        if isinstance(val, str):
            if val.startswith("SETTINGS:"):
                setkey = val.split(":")[-1]
                val = getattr(item.settings, setkey)
        setattr(item, elems[0], val)

    if item.COLLECTION_TYPE == "system":
        item.interfaces = {}


def from_dict_from_fields(item, item_dict, fields):
    """
    Not known what this method does exactly.

    :param item: Not known what this is needed for exactly.
    :param item_dict: Not known what this is needed for exactly.
    :param fields: Not known what this is needed for exactly.
    """
    int_fields = []
    for elems in fields:
        # we don't have to load interface fields here
        if elems[0].startswith("*"):
            if elems[0].startswith("*"):
                int_fields.append(elems)
            continue
        src_k = dst_k = elems[0]
        # deprecated field switcheroo
        if src_k in field_info.DEPRECATED_FIELDS:
            dst_k = field_info.DEPRECATED_FIELDS[src_k]
        if src_k in item_dict:
            setattr(item, dst_k, item_dict[src_k])

    if item.uid == '':
        item.uid = item.config.generate_uid()

    # special handling for interfaces
    if item.COLLECTION_TYPE == "system":
        item.interfaces = copy.deepcopy(item_dict["interfaces"])
        # deprecated field switcheroo for interfaces
        for interface in list(item.interfaces.keys()):
            for k in list(item.interfaces[interface].keys()):
                if k in field_info.DEPRECATED_FIELDS:
                    if not field_info.DEPRECATED_FIELDS[k] in item.interfaces[interface] or \
                            item.interfaces[interface][field_info.DEPRECATED_FIELDS[k]] == "":
                        item.interfaces[interface][field_info.DEPRECATED_FIELDS[k]] = item.interfaces[interface][k]
            # populate fields that might be missing
            for int_field in int_fields:
                if not int_field[0][1:] in item.interfaces[interface]:
                    item.interfaces[interface][int_field[0][1:]] = int_field[1]


def to_dict_from_fields(item, fields):
    """
    Not known what this method does exactly.

    :param item: Not known what this is needed for exactly.
    :param fields: Not known what this is needed for exactly.
    :return: Returns a dictionary of the fields of an item (distro, profile,..).
    :rtype: dict
    """
    _dict = {}
    for elem in fields:
        k = elem[0]
        if k.startswith("*"):
            continue
        data = getattr(item, k)
        _dict[k] = data
    # Interfaces on systems require somewhat special handling they are the only exception in Cobbler.
    if item.COLLECTION_TYPE == "system":
        _dict["interfaces"] = copy.deepcopy(item.interfaces)
        # for interface in _dict["interfaces"].keys():
        #    for k in _dict["interfaces"][interface].keys():
        #        if field_info.DEPRECATED_FIELDS.has_key(k):
        #            _dict["interfaces"][interface][field_info.DEPRECATED_FIELDS[k]] = _dict["interfaces"][interface][k]

    return _dict


def to_string_from_fields(item_dict, fields, interface_fields=None):
    """
    item_dict is a dictionary, fields is something like item_distro.FIELDS

    :param item_dict: Not known what this is needed for exactly.
    :param fields: Not known what this is needed for exactly.
    :param interface_fields: Not known what this is needed for exactly.
    :return: Not known what this is returning exactly.
    :rtype: str
    """
    buf = ""
    keys = []
    for elem in fields:
        keys.append((elem[0], elem[3], elem[4]))
    keys.sort()
    buf += "%-30s : %s\n" % ("Name", item_dict["name"])
    for (k, nicename, editable) in keys:
        # FIXME: supress fields users don't need to see?
        # FIXME: interfaces should be sorted
        # FIXME: print ctime, mtime nicely
        if not editable:
            continue

        if k != "name":
            # FIXME: move examples one field over, use description here.
            buf += "%-30s : %s\n" % (nicename, item_dict[k])

    # somewhat brain-melting special handling to print the dicts
    # inside of the interfaces more neatly.
    if "interfaces" in item_dict and interface_fields is not None:
        keys = []
        for elem in interface_fields:
            keys.append((elem[0], elem[3], elem[4]))
        keys.sort()
        for iname in list(item_dict["interfaces"].keys()):
            # FIXME: inames possibly not sorted
            buf += "%-30s : %s\n" % ("Interface ===== ", iname)
            for (k, nicename, editable) in keys:
                if editable:
                    buf += "%-30s : %s\n" % (nicename, item_dict["interfaces"][iname].get(k, ""))

    return buf


def get_setter_methods_from_fields(item, fields):
    """
    Return the name of set functions for all fields, keyed by the field name.

    :param item: The item to search for setters.
    :param fields: The fields to search for setters.
    :return: The dictionary with the setter methods.
    """
    setters = {}
    for elem in fields:
        name = elem[0].replace("*", "")
        setters[name] = getattr(item, "set_%s" % name)
    if item.COLLECTION_TYPE == "system":
        setters["modify_interface"] = getattr(item, "modify_interface")
        setters["delete_interface"] = getattr(item, "delete_interface")
        setters["rename_interface"] = getattr(item, "rename_interface")
    return setters


def load_signatures(filename, cache=True):
    """
    Loads the import signatures for distros.

    :param filename: Loads the file with the given name.
    :param cache: If the cache should be set with the newly read data.
    :type cache: bool
    """
    global SIGNATURE_CACHE

    f = open(filename, "r")
    sigjson = f.read()
    f.close()
    sigdata = simplejson.loads(sigjson)
    if cache:
        SIGNATURE_CACHE = sigdata


def get_valid_breeds():
    """
    Return a list of valid breeds found in the import signatures

    :rtype: list
    """
    if "breeds" in SIGNATURE_CACHE:
        return list(SIGNATURE_CACHE["breeds"].keys())
    else:
        return []


def get_valid_os_versions_for_breed(breed):
    """
    Return a list of valid os-versions for the given breed

    :param breed: The operating system breed to check for.
    :return: All operating system version which are known to Cobbler according to the signature cache filtered by a
             os-breed.
    :rtype: list
    """
    os_versions = []
    if breed in get_valid_breeds():
        os_versions = list(SIGNATURE_CACHE["breeds"][breed].keys())
    return os_versions


def get_valid_os_versions():
    """
    Return a list of valid os-versions found in the import signatures

    :return: All operating system versions which are known to Cobbler according to the signature cache.
    :rtype: list
    """
    os_versions = []
    try:
        for breed in get_valid_breeds():
            os_versions += list(SIGNATURE_CACHE["breeds"][breed].keys())
    except:
        pass
    return uniquify(os_versions)


def get_valid_archs():
    """
    Return a list of valid architectures found in the import signatures

    :return: All architectures which are known to Cobbler according to the signature cache.
    """
    archs = []
    try:
        for breed in get_valid_breeds():
            for operating_system in list(SIGNATURE_CACHE["breeds"][breed].keys()):
                archs += SIGNATURE_CACHE["breeds"][breed][operating_system]["supported_arches"]
    except:
        pass
    return uniquify(archs)


def get_shared_secret():
    """
    The 'web.ss' file is regenerated each time cobblerd restarts and is used to agree on shared secret interchange
    between the web server and cobblerd, and also the CLI and cobblerd, when username/password access is not required.
    For the CLI, this enables root users to avoid entering username/pass if on the Cobbler server.

    :return: The Cobbler secret which enables full access to Cobbler.
    :rtype: str
    """

    try:
        fd = open("/var/lib/cobbler/web.ss", 'rb', encoding='utf-8')
        data = fd.read()
    except:
        return -1
    return str(data).strip()


def local_get_cobbler_api_url():
    """
    Get the URL of the Cobbler HTTP API from the Cobbler settings file.

    :return: The api entry point. This does not respect modifications from Loadbalancers or API-Gateways.
    :rtype: str
    """
    # Load server and http port
    try:
        fh = open("/etc/cobbler/settings")
        data = yaml.safe_load(fh.read())
        fh.close()
    except:
        traceback.print_exc()
        raise CX("/etc/cobbler/settings is not a valid YAML file")

    ip = data.get("server", "127.0.0.1")
    if data.get("client_use_localhost", False):
        # this overrides the server setting
        ip = "127.0.0.1"
    port = data.get("http_port", "80")
    protocol = "http"
    if data.get("client_use_https", False):
        protocol = "https"

    return "%s://%s:%s/cobbler_api" % (protocol, ip, port)


def local_get_cobbler_xmlrpc_url():
    """
    Get the URL of the Cobbler XMLRPC API from the Cobbler settings file.

    :return: The api entry point.
    :rtype: str
    """
    # Load xmlrpc port
    try:
        fh = open("/etc/cobbler/settings")
        data = yaml.safe_load(fh.read())
        fh.close()
    except:
        traceback.print_exc()
        raise CX("/etc/cobbler/settings is not a valid YAML file")
    return "http://%s:%s" % ("127.0.0.1", data.get("xmlrpc_port", "25151"))


def strip_none(data, omit_none=False):
    """
    Remove "None" entries from datastructures. Used prior to communicating with XMLRPC.

    :param data: The data to strip None away.
    :param omit_none: If the datastructure is not a single item then None items will be skipped instead of replaced if
                      set to "True".
    :type omit_none: bool
    :return: The modified data structure without any occurrence of None.
    """
    if data is None:
        data = '~'

    elif isinstance(data, list):
        data2 = []
        for x in data:
            if omit_none and x is None:
                pass
            else:
                data2.append(strip_none(x))
        return data2

    elif isinstance(data, dict):
        data2 = {}
        for key in list(data.keys()):
            if omit_none and data[key] is None:
                pass
            else:
                data2[str(key)] = strip_none(data[key])
        return data2

    return data

# -------------------------------------------------------


def revert_strip_none(data):
    """
    Does the opposite to strip_none. If a value which represents None is detected, it replaces it with None.

    :param data: The data to check.
    :return: The data without None.
    """
    if isinstance(data, str) and data.strip() == '~':
        return None

    if isinstance(data, list):
        data2 = []
        for x in data:
            data2.append(revert_strip_none(x))
        return data2

    if isinstance(data, dict):
        data2 = {}
        for key in list(data.keys()):
            data2[key] = revert_strip_none(data[key])
        return data2

    return data

# -------------------------------------------------------


def lod_to_dod(_list, indexkey):
    """
    things like get_distros() returns a list of a dictionaries
    convert this to a dict of dicts keyed off of an arbitrary field

    EX:  [  { "a" : 2 }, { "a : 3 } ]  ->  { "2" : { "a" : 2 }, "3" : { "a" : "3" }

    :param _list: The list of dictionaries to use for the conversion.
    :type _list: list
    :param indexkey: The position to use as dictionary keys.
    :type indexkey: int
    :return: The converted dictionary. It is not guaranteed that the same key is not used multiple times.
    :rtype: dict
    """
    results = {}
    for item in _list:
        results[item[indexkey]] = item
    return results

# -------------------------------------------------------


from functools import cmp_to_key


def mycmp(x, y):
    """
    Compares if x is smaller than y.

    :param x: The first parameter.
    :param y: The second parameter.
    :return: The bool of the action.
    :rtype: bool
    """
    return (x < y)


def lod_sort_by_key(_list, indexkey):
    """
    Sorts a list of dictionaries by a given key in the dictionaries.

    Note: This is a destructive operation and does not sort the dictionaries.

    :param _list: The list of dictionaries to sort.
    :type _list: list
    :param indexkey: The key to index to dicts in the list.
    :return: The sorted list.
    :rtype: list
    """
    _list.sort(key=cmp_to_key(lambda a, b: mycmp(a[indexkey], b[indexkey])))
    return _list


def dhcpconf_location(api):
    """
    This method returns the location of the dhcpd.conf file.

    :param api: This parameter is currently unused.
    :return: The path possibly used for the dhcpd.conf file.
    """
    (dist, version) = os_release()
    if dist in ("redhat", "centos") and version < 6:
        return "/etc/dhcpd.conf"
    elif dist == "fedora" and version < 11:
        return "/etc/dhcpd.conf"
    elif dist == "suse":
        return "/etc/dhcpd.conf"
    elif dist == "debian" and int(version) < 6:
        return "/etc/dhcp3/dhcpd.conf"
    elif dist == "ubuntu" and version < 11.10:
        return "/etc/dhcp3/dhcpd.conf"
    else:
        return "/etc/dhcp/dhcpd.conf"


def namedconf_location(api):
    """
    This returns the location of the named.conf file.

    :param api: This parameter is currently unused.
    :return: If the distro is Debian/Ubuntu then this returns "/etc/bind/named.conf". Otherwise "/etc/named.conf"
    """
    (dist, _) = os_release()
    if dist == "debian" or dist == "ubuntu":
        return "/etc/bind/named.conf"
    else:
        return "/etc/named.conf"


def zonefile_base(api):
    """
    This determines the base directory for the zone files which are important for the named service which Cobbler tries
    to configure.

    :param api: This parameter is currently unused.
    :return: One of "/etc/bind/db.", "/var/lib/named/", "/var/named/". The result depends on the distro used.
    """
    (dist, _) = os_release()
    if dist == "debian" or dist == "ubuntu":
        return "/etc/bind/db."
    if dist == "suse":
        return "/var/lib/named/"
    else:
        return "/var/named/"


def dhcp_service_name(api):
    """
    Determine the dhcp service which is different on various distros. This is currently a hardcoded detection.

    :param api: This parameter is currently unused.
    :return: This will return one of the following names: "dhcp3-server", "isc-dhcp-server", "dhcpd"
    """
    (dist, version) = os_release()
    if dist == "debian" and int(version) < 6:
        return "dhcp3-server"
    elif dist == "debian" and int(version) >= 6:
        return "isc-dhcp-server"
    elif dist == "ubuntu" and version < 11.10:
        return "dhcp3-server"
    elif dist == "ubuntu" and version >= 11.10:
        return "isc-dhcp-server"
    else:
        return "dhcpd"


def named_service_name(api, logger=None):
    """
    Determine the named service which is normally different on various distros.

    :param api: This parameter is currently unused.
    :param logger: The logger to audit the action with.
    :return: This will return for debian/ubuntu bind9 and on other distros named-chroot or named.
    :rtype: str
    """
    (dist, _) = os_release()
    if dist == "debian" or dist == "ubuntu":
        return "bind9"
    else:
        if is_systemd():
            rc = subprocess_call(logger, ["/usr/bin/systemctl", "is-active", "named-chroot"], shell=False)
            if rc == 0:
                return "named-chroot"
        return "named"


def link_distro(settings, distro):
    """
    Link a Cobbler distro from its source into the web directory to make it reachable from the outside.

    :param settings: The settings to resolve user configurable actions with.
    :param distro: The distro to link into the Cobbler web directory.
    """
    # find the tree location
    base = find_distro_path(settings, distro)
    if not base:
        return

    dest_link = os.path.join(settings.webdir, "links", distro.name)

    # create the links directory only if we are mirroring because with SELinux Apache can't symlink to NFS (without some
    # doing)

    if not os.path.lexists(dest_link):
        try:
            os.symlink(base, dest_link)
        except:
            # this shouldn't happen but I've seen it ... debug ...
            print(_("- symlink creation failed: %(base)s, %(dest)s") % {"base": base, "dest": dest_link})


def find_distro_path(settings, distro):
    """
    This returns the absolute path to the distro under the ``distro_mirror`` directory. If that directory doesn't
    contain the kernel, the directory of the kernel in the distro is returned.

    :param settings: The settings to resolve user configurable actions with.
    :param distro: The distribution to find the path of.
    :return: The path to the distribution files.
    """
    possible_dirs = glob.glob(settings.webdir + "/distro_mirror/*")
    for dir in possible_dirs:
        if os.path.dirname(distro.kernel).find(dir) != -1:
            return os.path.join(settings.webdir, "distro_mirror", dir)
    # non-standard directory, assume it's the same as the directory in which the given distro's kernel is
    return os.path.dirname(distro.kernel)


def compare_versions_gt(ver1, ver2):
    """
    Compares versions like "0.9.3" with each other and decides if ver1 is greater than ver2.

    :param ver1: The first version.
    :param ver2: The second version.
    :return: True if ver1 is greater, otherwise False.
    :rtype: bool
    """
    def versiontuple(v):
        return tuple(map(int, (v.split("."))))
    return versiontuple(ver1) > versiontuple(ver2)


def kopts_overwrite(system, distro, kopts, settings):
    """
    SUSE is not using 'text'. Instead 'textmode' is used as kernel option.

    :param system: The system to overwrite the kopts for.
    :param distro: The distro for the system to change to kopts for.
    :param kopts: The kopts of the system.
    :param settings: The settings instance of Cobbler.
    """
    if distro and distro.breed == "suse":
        if 'textmode' in list(kopts.keys()):
            kopts.pop('text', None)
        elif 'text' in list(kopts.keys()):
            kopts.pop('text', None)
            kopts['textmode'] = ['1']
        if system and settings:
            # only works if pxe_just_once is enabled in global settings
            kopts['info'] = 'http://%s/cblr/svc/op/nopxe/system/%s' % (settings.server, system.name)


if __name__ == "__main__":
    print(os_release())  # returns 2, not 3
 070701000000C2000081A40000000000000000000000015ECE244400001A7E000000000000000000000000000000000000002200000000cobbler-3.1.2/cobbler/validate.py """
Copyright 2014-2015. Jorgen Maas <jorgen.maas@gmail.com>

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 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
"""

import netaddr
import re
import shlex

from cobbler.cexceptions import CX


RE_OBJECT_NAME = re.compile(r'[a-zA-Z0-9_\-.:]*$')
RE_HOSTNAME = re.compile(r'^([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\-]{0,61}[a-zA-Z0-9])(\.([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\-]{0,61}[a-zA-Z0-9]))*$')

REPO_BREEDS = ["rsync", "rhn", "yum", "apt", "wget"]

VIRT_TYPES = ["<<inherit>>", "xenpv", "xenfv", "qemu", "kvm", "vmware", "openvz"]
VIRT_DISK_DRIVERS = ["<<inherit>>", "raw", "qcow2", "qed", "vdi", "vmdk"]

# blacklist invalid values to the repo statement in autoinsts
AUTOINSTALL_REPO_BLACKLIST = ['enabled', 'gpgcheck', 'gpgkey']


def object_name(name, parent):
    """
    Validate the object name.

    :param name: object name
    :type name: str
    :param parent: Parent object name
    :type parent: str
    :returns: name or CX
    :rtype: str
    """
    if not isinstance(name, str) or not isinstance(parent, str):
        raise CX("Invalid input, name and parent must be strings")
    else:
        name = name.strip()
        parent = parent.strip()

    if name != "" and parent != "" and name == parent:
        raise CX("Self parentage is not allowed")

    if not RE_OBJECT_NAME.match(name):
        raise CX("Invalid characters in name: '%s'" % name)

    return name


def hostname(dnsname):
    """
    Validate the dns name.

    :param dnsname: Hostname or FQDN
    :type dnsname: str
    :returns: dnsname
    :raises CX: If the Hostname/FQDN is not a string or in an invalid format.
    :rtype: str
    """
    if not isinstance(dnsname, str):
        raise CX("Invalid input, dnsname must be a string")
    else:
        dnsname = dnsname.strip()

    if dnsname == "":
        # hostname is not required
        return dnsname

    if not RE_HOSTNAME.match(dnsname):
        raise CX("Invalid hostname format (%s)" % dnsname)

    return dnsname


def mac_address(mac, for_item=True):
    """
    Validate as an Eternet mac address.

    :param mac: mac address
    :type mac: str
    :returns: str mac or CX
    """
    if not isinstance(mac, str):
        raise CX("Invalid input, mac must be a string")
    else:
        mac = mac.lower().strip()

    if for_item is True:
        # this value has special meaning for items
        if mac == "random":
            return mac

    if not netaddr.valid_mac(mac):
        raise CX("Invalid mac address format (%s)" % mac)

    return mac


def ipv4_address(addr):
    """
    Validate an IPv4 address.

    :param addr: (ipv4 address)
    :type addr: str
    :returns: str addr or CX
    """
    if not isinstance(addr, str):
        raise CX("Invalid input, addr must be a string")
    else:
        addr = addr.strip()

    if addr == "":
        return addr

    if not netaddr.valid_ipv4(addr):
        raise CX("Invalid IPv4 address format (%s)" % addr)

    if netaddr.IPAddress(addr).is_netmask():
        raise CX("Invalid IPv4 host address (%s)" % addr)

    return addr


def ipv4_netmask(addr):
    """
    Validate an IPv4 netmask.

    :param addr: ipv4 netmask
    :type addr: str
    :returns: str addr or CX
    """
    if not isinstance(addr, str):
        raise CX("Invalid input, addr must be a string")
    else:
        addr = addr.strip()

    if addr == "":
        return addr

    if not netaddr.valid_ipv4(addr):
        raise CX("Invalid IPv4 address format (%s)" % addr)

    if not netaddr.IPAddress(addr).is_netmask():
        raise CX("Invalid IPv4 netmask (%s)" % addr)

    return addr


def ipv6_address(addr):
    """
    Validate an IPv6 address.

    :param addr: ipv6 address
    :type addr: str
    :returns: The ipv6 address.
    :rtype: str
    """
    if not isinstance(addr, str):
        raise CX("Invalid input, addr must be a string")
    else:
        addr = addr.strip()

    if addr == "":
        return addr

    if not netaddr.valid_ipv6(addr):
        raise CX("Invalid IPv6 address format (%s)" % addr)

    return addr


def name_servers(nameservers, for_item=True):
    """
    Validate nameservers IP addresses, works for IPv4 and IPv6

    :param nameservers: (string or list of nameserver addresses)
    :type nameservers: str or list
    :param for_item: (enable/disable special handling for Item objects)
    :return: The list of valid nameservers.
    :type for_item: bool
    """
    if isinstance(nameservers, str):
        nameservers = nameservers.strip()
        if for_item is True:
            # special handling for Items
            if nameservers in ["<<inherit>>", ""]:
                return nameservers

        # convert string to a list; do the real validation
        # in the isinstance(list) code block below
        nameservers = shlex.split(nameservers)

    if isinstance(nameservers, list):
        for ns in nameservers:
            ip_version = netaddr.IPAddress(ns).version
            if ip_version == 4:
                ipv4_address(ns)
            elif ip_version == 6:
                ipv6_address(ns)
            else:
                raise CX("Invalid IP address format")
    else:
        raise CX("Invalid input type %s, expected str or list" % type(nameservers))

    return nameservers


def name_servers_search(search, for_item=True):
    """
    Validate nameservers search domains.

    :param search: One or more search domains to validate.
    :type search: str or list
    :param for_item: (enable/disable special handling for Item objects)
    :return: The list of valid nameservers.
    :type for_item: bool
    """
    if isinstance(search, str):
        search = search.strip()
        if for_item is True:
            # special handling for Items
            if search in ["<<inherit>>", ""]:
                return search

        # convert string to a list; do the real validation
        # in the isinstance(list) code block below
        search = shlex.split(search)

    if isinstance(search, list):
        for sl in search:
            hostname(sl)
    else:
        raise CX("Invalid input type %s, expected str or list" % type(search))

    return search

# EOF
  070701000000C3000041ED0000000000000000000000035ECE244400000000000000000000000000000000000000000000001A00000000cobbler-3.1.2/cobbler/web 070701000000C4000081A40000000000000000000000015ECE244400000000000000000000000000000000000000000000002600000000cobbler-3.1.2/cobbler/web/__init__.py 070701000000C5000081A40000000000000000000000015ECE244400001701000000000000000000000000000000000000002B00000000cobbler-3.1.2/cobbler/web/field_ui_info.py    """
Describes additional web UI properties of Cobbler fields defined in item_*.py.

Copyright 2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""

# fields that display as a text area in the web app
# note: not the same as a text field, this is the big one.

USES_TEXTAREA = [
    "boot_files",
    "comment",
    "fetchable_files",
    "mgmt_parameters",
    "template_files",
]

# fields that use a multi select in the web app

USES_MULTI_SELECT = [
    "files",
    "mgmt_classes",
    "packages",
    "repos",
]

# fields that use a select in the web app

USES_SELECT = [
    "arch",
    "autoinstall",
    "boot_loader",
    "breed",
    "distro",
    "image",
    "image_type",
    "os_version",
    "parent",
    "power_type",
    "profile",
    "status",
    "virt_type",

    # network interface specific
    "interface_type",
]

# fields that should use the checkbox in the web app

USES_CHECKBOX = [
    "enable_gpxe",
    "enable_menu",
    "ipv6_autoconfiguration",
    "is_definition",
    "keep_updated",
    "management",
    "mirror_locally",
    "netboot_enabled",
    "repos_enabled",
    "virt_auto_boot",
    "virt_pxe_boot",

    # network interface specific
    "management",
    "netboot_enabled",
    "repos_enabled",
    "static",
]

# select killed the radio button
# we should not make anything use a radio button, we hate radio buttons.

USES_RADIO = [
]

# UI fields grouped by section
DISTRO_UI_FIELDS_MAPPING = [
    {"General": ["name", "owners", "kernel", "initrd", "kernel_options",
                 "kernel_options_post", "autoinstall_meta", "arch", "breed",
                 "os_version", "boot_loader", "comment"]},
    {"Management": ["mgmt_classes", "boot_files", "fetchable_files",
                    "template_files"]},
]

FILE_UI_FIELDS_MAPPING = [
    {"General": ["name", "owners", "is_dir", "action", "group", "mode",
                 "owner", "path", "template", "comment"]}
]

IMAGE_UI_FIELDS_MAPPING = [
    {"General": ["name", "owners", "arch", "breed", "file", "image_type",
                 "network_count", "os_version", "autoinstall", "comment"]},
    {"Virtualization": ["virt_auto_boot", "virt_bridge", "virt_cpus",
                        "virt_file_size", "virt_disk_driver", "virt_path",
                        "virt_ram", "virt_type"]}
]

MGMTCLASS_UI_FIELDS_MAPPING = [
    {"General": ["name", "owners", "class_name", "is_definition", "params",
                 "comment"]},
    {"Resources": ["packages", "files"]}
]

PACKAGE_UI_FIELDS_MAPPING = [
    {"General": ["name", "owners", "action", "installer", "version",
                 "comment"]}
]

PROFILE_UI_FIELDS_MAPPING = [
    {"General": ["name", "owners", "distro", "parent", "enable_menu",
                 "autoinstall", "kernel_options", "kernel_options_post",
                 "autoinstall_meta", "proxy", "repos", "comment"]},
    {"Advanced": ["enable_gpxe", "dhcp_tag", "server", "next_server", "filename"]},
    {"Networking Global": ["name_servers", "name_servers_search"]},
    {"Management": ["mgmt_classes", "mgmt_parameters", "boot_files",
                    "fetchable_files", "template_files"]},
    {"Virtualization": ["virt_auto_boot", "virt_cpus", "virt_file_size",
                        "virt_disk_driver", "virt_ram", "virt_type",
                        "virt_path", "virt_bridge"]}
]

REPO_UI_FIELDS_MAPPING = [
    {"General": ["name", "owners", "arch", "breed", "keep_updated",
                 "mirror", "rpm_list", "comment"]},
    {"Advanced": ["apt_components", "apt_dists", "createrepo_flags",
                  "environment", "mirror_locally", "priority", "yumopts"]}
]

SYSTEM_UI_FIELDS_MAPPING = [
    {"General": ["name", "owners", "profile", "image", "status",
                 "kernel_options", "kernel_options_post",
                 "autoinstall_meta", "boot_loader", "proxy",
                 "netboot_enabled", "autoinstall", "comment"]},
    {"Advanced": ["enable_gpxe", "server", "next_server", "filename"]},
    {"Networking (Global)": ["hostname", "gateway", "name_servers",
                             "name_servers_search", "ipv6_default_device",
                             "ipv6_autoconfiguration"]},
    {"Networking": ["mac_address", "mtu", "ip_address", "interface_type",
                    "interface_master", "bonding_opts", "bridge_opts",
                    "management", "static", "netmask", "if_gateway",
                    "dhcp_tag", "dns_name", "static_routes", "virt_bridge",
                    "ipv6_address", "ipv6_prefix", "ipv6_secondaries",
                    "ipv6_mtu", "ipv6_static_routes", "ipv6_default_gateway",
                    "cnames"]},
    {"Management": ["mgmt_classes", "mgmt_parameters", "boot_files",
                    "fetchable_files", "template_files", "repos_enabled"]},
    {"Virtualization": ["virt_path", "virt_type", "virt_cpus",
                        "virt_file_size", "virt_disk_driver", "virt_ram",
                        "virt_auto_boot", "virt_pxe_boot"]},
    {"Power management": ["power_type", "power_address", "power_user",
                          "power_pass", "power_id"]}
]

SETTING_UI_FIELDS_MAPPING = [
    {"General": ["name", "value"]}
]
   070701000000C6000081ED0000000000000000000000015ECE2444000000EF000000000000000000000000000000000000002400000000cobbler-3.1.2/cobbler/web/manage.py   #!/usr/bin/python3
import os
import sys

if __name__ == "__main__":
    os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings")

    from django.core.management import execute_from_command_line

    execute_from_command_line(sys.argv)
 070701000000C7000081A40000000000000000000000015ECE2444000006F5000000000000000000000000000000000000002600000000cobbler-3.1.2/cobbler/web/settings.py # Django settings for cobbler-web project.

# This is the list of http server request names the site is allowed to serve for
# Added for CVE-2016-9014
ALLOWED_HOSTS = ['*']

DEBUG = True

ADMINS = (
    # ('Your Name', 'your_email@domain.com'),
)

MANAGERS = ADMINS

DATABASE_ENGINE = ''     # cobbler-web does not use a database
DATABASE_NAME = ''
DATABASE_USER = ''
DATABASE_PASSWORD = ''
DATABASE_HOST = ''
DATABASE_PORT = ''

# Force Django to use a specific timezone and TZ
TIME_ZONE = 'UTC'
USE_TZ = True

# Language section
# TBD.
LANGUAGE_CODE = 'en-us'
USE_I18N = False

SITE_ID = 1

# not used
MEDIA_ROOT = ''
MEDIA_URL = ''

STATIC_URL = '/media/'

SECRET_KEY = ''

# code config

TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [
            '/usr/share/cobbler/web/templates',
        ],
        'APP_DIRS': True,
        'OPTIONS': {
            'context_processors': [
                'django.template.context_processors.debug',
                'django.template.context_processors.request',
                'django.contrib.auth.context_processors.auth',
                'django.contrib.messages.context_processors.messages',
            ],
        },
    },
]

MIDDLEWARE = (
    'django.middleware.common.CommonMiddleware',
    'django.middleware.csrf.CsrfViewMiddleware',
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
)

ROOT_URLCONF = 'cobbler.web.urls'

INSTALLED_APPS = (
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.sites',
    'cobbler.web',
)

SESSION_ENGINE = 'django.contrib.sessions.backends.file'
SESSION_FILE_PATH = '/var/lib/cobbler/webui_sessions'
   070701000000C8000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000002700000000cobbler-3.1.2/cobbler/web/templatetags    070701000000C9000081A40000000000000000000000015ECE244400000000000000000000000000000000000000000000003300000000cobbler-3.1.2/cobbler/web/templatetags/__init__.py    070701000000CA000081A40000000000000000000000015ECE244400002DD7000000000000000000000000000000000000002F00000000cobbler-3.1.2/cobbler/web/templatetags/site.py    from builtins import object
from django import template
from collections import OrderedDict

register = template.Library()

# ==========================

# -*- coding: utf-8 -*-
'''
A smarter {% if %} tag for django templates.

While retaining current Django functionality, it also handles equality,
greater than and less than operators. Some common case examples::

    {% if articles|length >= 5 %}...{% endif %}
    {% if "ifnotequal tag" != "beautiful" %}...{% endif %}
'''
import unittest
from django import template


register = template.Library()


# ===============================================================================
# Calculation objects
# ===============================================================================

class BaseCalc(object):
    def __init__(self, var1, var2=None, negate=False):
        self.var1 = var1
        self.var2 = var2
        self.negate = negate

    def resolve(self, context):
        try:
            var1, var2 = self.resolve_vars(context)
            outcome = self.calculate(var1, var2)
        except:
            outcome = False
        if self.negate:
            return not outcome
        return outcome

    def resolve_vars(self, context):
        var2 = self.var2 and self.var2.resolve(context)
        return self.var1.resolve(context), var2

    def calculate(self, var1, var2):
        raise NotImplementedError()


class Or(BaseCalc):
    def calculate(self, var1, var2):
        return var1 or var2


class And(BaseCalc):
    def calculate(self, var1, var2):
        return var1 and var2


class Equals(BaseCalc):
    def calculate(self, var1, var2):
        return var1 == var2


class Greater(BaseCalc):
    def calculate(self, var1, var2):
        return var1 > var2


class GreaterOrEqual(BaseCalc):
    def calculate(self, var1, var2):
        return var1 >= var2


class In(BaseCalc):
    def calculate(self, var1, var2):
        return var1 in var2


# ===============================================================================
# Tests
# ===============================================================================

class TestVar(object):
    """
    A basic self-resolvable object similar to a Django template variable. Used
    to assist with tests.
    """
    def __init__(self, value):
        self.value = value

    def resolve(self, context):
        return self.value


class SmartIfTests(unittest.TestCase):
    def setUp(self):
        self.true = TestVar(True)
        self.false = TestVar(False)
        self.high = TestVar(9000)
        self.low = TestVar(1)

    def assertCalc(self, calc, context=None):
        """
        Test a calculation is True, also checking the inverse "negate" case.
        """
        context = context or {}
        self.assertTrue(calc.resolve(context))
        calc.negate = not calc.negate
        self.assertFalse(calc.resolve(context))

    def assertCalcFalse(self, calc, context=None):
        """
        Test a calculation is False, also checking the inverse "negate" case.
        """
        context = context or {}
        self.assertFalse(calc.resolve(context))
        calc.negate = not calc.negate
        self.assertTrue(calc.resolve(context))

    def test_or(self):
        self.assertCalc(Or(self.true))
        self.assertCalcFalse(Or(self.false))
        self.assertCalc(Or(self.true, self.true))
        self.assertCalc(Or(self.true, self.false))
        self.assertCalc(Or(self.false, self.true))
        self.assertCalcFalse(Or(self.false, self.false))

    def test_and(self):
        self.assertCalc(And(self.true, self.true))
        self.assertCalcFalse(And(self.true, self.false))
        self.assertCalcFalse(And(self.false, self.true))
        self.assertCalcFalse(And(self.false, self.false))

    def test_equals(self):
        self.assertCalc(Equals(self.low, self.low))
        self.assertCalcFalse(Equals(self.low, self.high))

    def test_greater(self):
        self.assertCalc(Greater(self.high, self.low))
        self.assertCalcFalse(Greater(self.low, self.low))
        self.assertCalcFalse(Greater(self.low, self.high))

    def test_greater_or_equal(self):
        self.assertCalc(GreaterOrEqual(self.high, self.low))
        self.assertCalc(GreaterOrEqual(self.low, self.low))
        self.assertCalcFalse(GreaterOrEqual(self.low, self.high))

    def test_in(self):
        list_ = TestVar([1, 2, 3])
        invalid_list = TestVar(None)
        self.assertCalc(In(self.low, list_))
        self.assertCalcFalse(In(self.low, invalid_list))

    def test_parse_bits(self):
        var = IfParser([True]).parse()
        self.assertTrue(var.resolve({}))
        var = IfParser([False]).parse()
        self.assertFalse(var.resolve({}))

        var = IfParser([False, 'or', True]).parse()
        self.assertTrue(var.resolve({}))

        var = IfParser([False, 'and', True]).parse()
        self.assertFalse(var.resolve({}))

        var = IfParser(['not', False, 'and', 'not', False]).parse()
        self.assertTrue(var.resolve({}))

        var = IfParser([1, '=', 1]).parse()
        self.assertTrue(var.resolve({}))

        var = IfParser([1, '!=', 1]).parse()
        self.assertFalse(var.resolve({}))

        var = IfParser([3, '>', 2]).parse()
        self.assertTrue(var.resolve({}))

        var = IfParser([1, '<', 2]).parse()
        self.assertTrue(var.resolve({}))

        var = IfParser([2, 'not', 'in', [2, 3]]).parse()
        self.assertFalse(var.resolve({}))

    def test_boolean(self):
        var = IfParser([True, 'and', True, 'and', True]).parse()
        self.assertTrue(var.resolve({}))
        var = IfParser([False, 'or', False, 'or', True]).parse()
        self.assertTrue(var.resolve({}))
        var = IfParser([True, 'and', False, 'or', True]).parse()
        self.assertTrue(var.resolve({}))
        var = IfParser([False, 'or', True, 'and', True]).parse()
        self.assertTrue(var.resolve({}))

        var = IfParser([True, 'and', True, 'and', False]).parse()
        self.assertFalse(var.resolve({}))
        var = IfParser([False, 'or', False, 'or', False]).parse()
        self.assertFalse(var.resolve({}))
        var = IfParser([False, 'or', True, 'and', False]).parse()
        self.assertFalse(var.resolve({}))
        var = IfParser([False, 'and', True, 'or', False]).parse()
        self.assertFalse(var.resolve({}))


OPERATORS = {
    '=': (Equals, True),
    '==': (Equals, True),
    '!=': (Equals, False),
    '>': (Greater, True),
    '>=': (GreaterOrEqual, True),
    '<=': (Greater, False),
    '<': (GreaterOrEqual, False),
    'or': (Or, True),
    'and': (And, True),
    'in': (In, True),
}


class IfParser(object):
    error_class = ValueError

    def __init__(self, tokens):
        self.tokens = tokens

    def _get_tokens(self):
        return self._tokens

    def _set_tokens(self, tokens):
        self._tokens = tokens
        self.len = len(tokens)
        self.pos = 0

    tokens = property(_get_tokens, _set_tokens)

    def parse(self):
        if self.at_end():
            raise self.error_class('No variables provided.')
        var1 = self.get_var()
        while not self.at_end():
            token = self.get_token()
            if token == 'not':
                if self.at_end():
                    raise self.error_class('No variable provided after "not".')
                token = self.get_token()
                negate = True
            else:
                negate = False
            if token not in OPERATORS:
                raise self.error_class('%s is not a valid operator.' % token)
            if self.at_end():
                raise self.error_class('No variable provided after "%s"' % token)
            op, true = OPERATORS[token]
            if not true:
                negate = not negate
            var2 = self.get_var()
            var1 = op(var1, var2, negate=negate)
        return var1

    def get_token(self):
        token = self.tokens[self.pos]
        self.pos += 1
        return token

    def at_end(self):
        return self.pos >= self.len

    def create_var(self, value):
        return TestVar(value)

    def get_var(self):
        token = self.get_token()
        if token == 'not':
            if self.at_end():
                raise self.error_class('No variable provided after "not".')
            token = self.get_token()
            return Or(self.create_var(token), negate=True)
        return self.create_var(token)


# ===============================================================================
# Actual templatetag code.
# ===============================================================================

class TemplateIfParser(IfParser):
    error_class = template.TemplateSyntaxError

    def __init__(self, parser, *args, **kwargs):
        self.template_parser = parser
        super(TemplateIfParser, self).__init__(*args, **kwargs)

    def create_var(self, value):
        return self.template_parser.compile_filter(value)


class SmartIfNode(template.Node):
    def __init__(self, var, nodelist_true, nodelist_false=None):
        self.nodelist_true, self.nodelist_false = nodelist_true, nodelist_false
        self.var = var

    def render(self, context):
        if self.var.resolve(context):
            return self.nodelist_true.render(context)
        if self.nodelist_false:
            return self.nodelist_false.render(context)
        return ''

    def __repr__(self):
        return "<Smart If node>"

    def __iter__(self):
        for node in self.nodelist_true:
            yield node
        if self.nodelist_false:
            for node in self.nodelist_false:
                yield node

    def get_nodes_by_type(self, nodetype):
        nodes = []
        if isinstance(self, nodetype):
            nodes.append(self)
        nodes.extend(self.nodelist_true.get_nodes_by_type(nodetype))
        if self.nodelist_false:
            nodes.extend(self.nodelist_false.get_nodes_by_type(nodetype))
        return nodes


# @register.tag('if')
def smart_if(parser, token):
    '''
    A smarter {% if %} tag for django templates.

    While retaining current Django functionality, it also handles equality,
    greater than and less than operators. Some common case examples::

        {% if articles|length >= 5 %}...{% endif %}
        {% if "ifnotequal tag" != "beautiful" %}...{% endif %}

    Arguments and operators _must_ have a space between them, so
    ``{% if 1>2 %}`` is not a valid smart if tag.

    All supported operators are: ``or``, ``and``, ``in``, ``=`` (or ``==``),
    ``!=``, ``>``, ``>=``, ``<`` and ``<=``.
    '''
    bits = token.split_contents()[1:]
    var = TemplateIfParser(parser, bits).parse()
    nodelist_true = parser.parse(('else', 'endsmart_if'))
    token = parser.next_token()
    if token.contents == 'else':
        nodelist_false = parser.parse(('endsmart_if',))
        parser.delete_first_token()
    else:
        nodelist_false = None
    return SmartIfNode(var, nodelist_true, nodelist_false)


# ==========================

ifinlist = register.tag(smart_if)

# ==========================

# Based on code found here:
# http://stackoverflow.com/questions/2024660/django-sort-dict-in-template
#
# Required since dict.items|dictsort doesn't seem to work
# when iterating over the keys with a for loop


@register.filter(name='sort')
def listsort(value):
    if isinstance(value, dict):
        new_dict = OrderedDict()
        key_list = list(value.keys())
        key_list.sort()
        for key in key_list:
            new_dict[key] = value[key]
        return new_dict
    elif isinstance(value, list):
        new_list = list(value)
        new_list.sort()
        return new_list
    else:
        return value
    listsort.is_safe = True
 070701000000CB000081A40000000000000000000000015ECE24440000094B000000000000000000000000000000000000002200000000cobbler-3.1.2/cobbler/web/urls.py 
from django.conf.urls import url

from cobbler.web import views

# Uncomment the next two lines to enable the admin:
# from cobbler_web.contrib import admin
# admin.autodiscover()

urlpatterns = [
    url(r'^$', views.index),

    url(r'^setting/list$', views.setting_list),
    url(r'^setting/edit/(?P<setting_name>.+)$', views.setting_edit),
    url(r'^setting/save$', views.setting_save),

    url(r'^aifile/list(/(?P<page>\d+))?$', views.aifile_list),
    url(r'^aifile/edit$', views.aifile_edit, {'editmode': 'new'}),
    url(r'^aifile/edit/file:(?P<aifile_name>.+)$', views.aifile_edit, {'editmode': 'edit'}),
    url(r'^aifile/save$', views.aifile_save),

    url(r'^snippet/list(/(?P<page>\d+))?$', views.snippet_list),
    url(r'^snippet/edit$', views.snippet_edit, {'editmode': 'new'}),
    url(r'^snippet/edit/file:(?P<snippet_name>.+)$', views.snippet_edit, {'editmode': 'edit'}),
    url(r'^snippet/save$', views.snippet_save),

    url(r'^(?P<what>\w+)/list(/(?P<page>\d+))?', views.genlist),
    url(r'^(?P<what>\w+)/modifylist/(?P<pref>[!\w]+)/(?P<value>.+)$', views.modify_list),
    url(r'^(?P<what>\w+)/edit/(?P<obj_name>.+)$', views.generic_edit, {'editmode': 'edit'}),
    url(r'^(?P<what>\w+)/edit$', views.generic_edit, {'editmode': 'new'}),

    url(r'^(?P<what>\w+)/rename/(?P<obj_name>.+)/(?P<obj_newname>.+)$', views.generic_rename),
    url(r'^(?P<what>\w+)/copy/(?P<obj_name>.+)/(?P<obj_newname>.+)$', views.generic_copy),
    url(r'^(?P<what>\w+)/delete/(?P<obj_name>.+)$', views.generic_delete),

    url(r'^(?P<what>\w+)/multi/(?P<multi_mode>.+)/(?P<multi_arg>.+)$', views.generic_domulti),
    url(r'^utils/random_mac$', views.random_mac),
    url(r'^utils/random_mac/virttype/(?P<virttype>.+)$', views.random_mac),
    url(r'^events$', views.events),
    url(r'^eventlog/(?P<event>.+)$', views.eventlog),
    url(r'^task_created$', views.task_created),
    url(r'^sync$', views.sync),
    url(r'^reposync$', views.reposync),
    url(r'^replicate$', views.replicate),
    url(r'^hardlink', views.hardlink),
    url(r'^(?P<what>\w+)/save$', views.generic_save),
    url(r'^import/prompt$', views.import_prompt),
    url(r'^import/run$', views.import_run),
    url(r'^buildiso$', views.buildiso),
    url(r'^check$', views.check),

    url(r'^login$', views.login),
    url(r'^do_login$', views.do_login),
    url(r'^logout$', views.do_logout),
]
 070701000000CC000081A40000000000000000000000015ECE24440000CA31000000000000000000000000000000000000002300000000cobbler-3.1.2/cobbler/web/views.py    
from future import standard_library
standard_library.install_aliases()
from builtins import str
from django.http import HttpResponse
from django.http import HttpResponseRedirect
from django.shortcuts import render
from django.views.decorators.csrf import csrf_protect
from django.views.decorators.http import require_POST

import simplejson
import time
import xmlrpc.client

import cobbler.items.distro as item_distro
import cobbler.items.file as item_file
import cobbler.items.image as item_image
import cobbler.items.mgmtclass as item_mgmtclass
import cobbler.items.package as item_package
import cobbler.items.profile as item_profile
import cobbler.items.repo as item_repo
import cobbler.items.system as item_system
import cobbler.settings as item_settings
import cobbler.utils as utils
from cobbler.web import field_ui_info

url_cobbler_api = None
remote = None
username = None

# ==================================================================================


def index(request):
    """
    This is the main greeting page for Cobbler web.
    """
    if not test_user_authenticated(request):
        return login(request, next="/cobbler_web", expired=True)

    html = render(request, 'index.tmpl', {
        'version': remote.extended_version(request.session['token'])['version'],
        'username': username,
    })
    return HttpResponse(html)

# ========================================================================


def task_created(request):
    """
    Let's the user know what to expect for event updates.
    """
    if not test_user_authenticated(request):
        return login(request, next="/cobbler_web/task_created", expired=True)

    html = render(request, "task_created.tmpl", {
        'version': remote.extended_version(request.session['token'])['version'],
        'username': username
    })
    return HttpResponse(html)

# ========================================================================


def error_page(request, message):
    """
    This page is used to explain error messages to the user.
    """
    if not test_user_authenticated(request):
        return login(request, expired=True)

    # FIXME: test and make sure we use this rather than throwing lots of tracebacks for
    # field errors
    message = message.replace("<Fault 1: \"<class 'cobbler.cexceptions.CX'>:'", "Remote exception: ")
    message = message.replace("'\">", "")

    html = render(request, 'error_page.tmpl', {
        'version': remote.extended_version(request.session['token'])['version'],
        'message': message,
        'username': username
    })
    return HttpResponse(html)

# ==================================================================================


def _get_field_html_element(field_name):

    if field_name in field_ui_info.USES_SELECT:
        return "select"
    elif field_name in field_ui_info.USES_MULTI_SELECT:
        return "multiselect"
    elif field_name in field_ui_info.USES_RADIO:
        return "radio"
    elif field_name in field_ui_info.USES_CHECKBOX:
        return "checkbox"
    elif field_name in field_ui_info.USES_TEXTAREA:
        return "textarea"
    else:
        return "text"


def get_fields(what, is_subobject, seed_item=None):

    """
    Helper function.  Retrieves the field table from the Cobbler objects
    and formats it in a way to make it useful for Django templating.
    The field structure indicates what fields to display and what the default
    values are, etc.
    """

    if what == "distro":
        fields = item_distro.FIELDS
    if what == "profile":
        fields = item_profile.FIELDS
    if what == "system":
        fields = item_system.FIELDS
    if what == "repo":
        fields = item_repo.FIELDS
    if what == "image":
        fields = item_image.FIELDS
    if what == "mgmtclass":
        fields = item_mgmtclass.FIELDS
    if what == "package":
        fields = item_package.FIELDS
    if what == "file":
        fields = item_file.FIELDS
    if what == "setting":
        fields = item_settings.FIELDS

    settings = remote.get_settings()

    ui_fields = []
    for field in fields:

        ui_field = {
            "name": field[0],
            "dname": field[0],
            "value": "?",
            "caption": field[3],
            "editable": field[4],
            "tooltip": field[5],
            "choices": field[6],
            "css_class": "generic",
            "html_ui_fieldent": "generic",
        }

        if not ui_field["editable"]:
            continue

        name = field[0]
        if seed_item is not None:
            ui_field["value"] = seed_item[name]
        elif is_subobject:
            ui_field["value"] = field[2]
        else:
            ui_field["value"] = field[1]

        if ui_field["value"] is None:
            ui_field["value"] = ""

        # we'll process this for display but still need to present the original to some
        # template logic
        ui_field["value_raw"] = ui_field["value"]

        if isinstance(ui_field["value"], str) and ui_field["value"].startswith("SETTINGS:"):
            key = ui_field["value"].replace("SETTINGS:", "", 1)
            ui_field["value"] = settings[key]

        # flatten dicts of all types, they can only be edited as text
        # as we have no HTML dict widget (yet)
        if isinstance(ui_field["value"], dict):
            if ui_field["name"] == "mgmt_parameters":
                # Render dictionary as YAML for Management Parameters field
                tokens = []
                for (x, y) in list(ui_field["value"].items()):
                    if y is not None:
                        tokens.append("%s: %s" % (x, y))
                    else:
                        tokens.append("%s: " % x)
                ui_field["value"] = "{ %s }" % ", ".join(tokens)
            else:
                tokens = []
                for (x, y) in list(ui_field["value"].items()):
                    if isinstance(y, str) and y.strip() != "~":
                        y = y.replace(" ", "\\ ")
                        tokens.append("%s=%s" % (x, y))
                    elif isinstance(y, list):
                        for item in y:
                            item = item.replace(" ", "\\ ")
                            tokens.append("%s=%s" % (x, item))
                    elif y is not None:
                        tokens.append("%s" % x)
                ui_field["value"] = " ".join(tokens)

        name = field[0]
        ui_field["html_element"] = _get_field_html_element(name)

        # flatten lists for those that aren't using select boxes
        if isinstance(ui_field["value"], list):
            if ui_field["html_element"] != "select":
                ui_field["value"] = " ".join(ui_field["value"])

        ui_fields.append(ui_field)

    return ui_fields


def get_network_interface_fields():
    """
    Create network interface fields UI metadata based on network interface
    fields metadata

    @return list network interface fields UI metadata
    """

    fields = item_system.NETWORK_INTERFACE_FIELDS

    fields_ui = []
    for field in fields:

        field_ui = {
            "name": field[0],
            "dname": field[0],
            "value": "?",
            "caption": field[3],
            "editable": field[4],
            "tooltip": field[5],
            "choices": field[6],
            "css_class": "generic",
            "html_element": "generic",
        }

        if not field_ui["editable"]:
            continue

        # system's network interfaces are loaded later by javascript,
        # initial value on web UI is always empty string
        field_ui["value"] = ""

        # we'll process this for display but still need to present the original
        # to some template logic
        field_ui["value_raw"] = field_ui["value"]

        name = field[0]
        field_ui["html_element"] = _get_field_html_element(name)

        fields_ui.append(field_ui)

    return fields_ui


def _create_sections_metadata(what, sections_data, fields):

    sections = {}
    section_index = 0
    for section_data in sections_data:
        for section_name, section_fields in list(section_data.items()):
            skey = "%d_%s" % (section_index, section_name)
            sections[skey] = {}
            sections[skey]['name'] = section_name
            sections[skey]['fields'] = []

            for section_field in section_fields:
                found = False
                for field in fields:
                    if field["name"] == section_field:
                        sections[skey]['fields'].append(field)
                        found = True
                        break
                if not found:
                    raise Exception("%s field %s referenced in UI section definition does not exist in UI fields definition" % (what, section_field))

            section_index += 1

    return sections

# ==================================================================================


def __tweak_field(fields, field_name, attribute, value):
    """
    Helper function to insert extra data into the field list.
    """
    # FIXME: eliminate this function.
    for x in fields:
        if x["name"] == field_name:
            x[attribute] = value

# ==================================================================================


def __format_columns(column_names, sort_field):
    """
    Format items retrieved from XMLRPC for rendering by the generic_edit template
    """
    dataset = []

    # Default is sorting on name
    if sort_field is not None:
        sort_name = sort_field
    else:
        sort_name = "name"

    if sort_name.startswith("!"):
        sort_name = sort_name[1:]
        sort_order = "desc"
    else:
        sort_order = "asc"

    for fieldname in column_names:
        fieldorder = "none"
        if fieldname == sort_name:
            fieldorder = sort_order
        dataset.append([fieldname, fieldorder])
    return dataset


# ==================================================================================


def __format_items(items, column_names):
    """
    Format items retrieved from XMLRPC for rendering by the generic_edit template
    """
    dataset = []
    for item_dict in items:
        row = []
        for fieldname in column_names:
            if fieldname == "name":
                html_element = "name"
            elif fieldname in ["system", "repo", "distro", "profile", "image", "mgmtclass", "package", "file"]:
                html_element = "editlink"
            elif fieldname in field_ui_info.USES_CHECKBOX:
                html_element = "checkbox"
            else:
                html_element = "text"
            row.append([fieldname, item_dict[fieldname], html_element])
        dataset.append(row)
    return dataset

# ==================================================================================


def genlist(request, what, page=None):
    """
    Lists all object types, complete with links to actions
    on those objects.
    """
    if not test_user_authenticated(request):
        return login(request, next="/cobbler_web/%s/list" % what, expired=True)

    # get details from the session
    if page is None:
        page = int(request.session.get("%s_page" % what, 1))
    limit = int(request.session.get("%s_limit" % what, 50))
    sort_field = request.session.get("%s_sort_field" % what, "name")
    filters = simplejson.loads(request.session.get("%s_filters" % what, "{}"))
    pageditems = remote.find_items_paged(what, utils.strip_none(filters), sort_field, page, limit)

    # what columns to show for each page?
    # we also setup the batch actions here since they're dependent
    # on what we're looking at

    profiles = []

    # everythng gets batch delete
    batchactions = [
        ["Delete", "delete", "delete"],
    ]

    if what == "distro":
        columns = ["name"]
        batchactions += [
            ["Build ISO", "buildiso", "enable"],
        ]
    if what == "profile":
        columns = ["name", "distro"]
        batchactions += [
            ["Build ISO", "buildiso", "enable"],
        ]
    if what == "system":
        # FIXME: also list network, once working
        columns = ["name", "profile", "status", "netboot_enabled"]
        profiles = sorted(remote.get_profiles(), key=lambda x: x['name'])
        batchactions += [
            ["Power on", "power", "on"],
            ["Power off", "power", "off"],
            ["Reboot", "power", "reboot"],
            ["Change profile", "profile", ""],
            ["Netboot enable", "netboot", "enable"],
            ["Netboot disable", "netboot", "disable"],
            ["Build ISO", "buildiso", "enable"],
        ]
    if what == "repo":
        columns = ["name", "mirror"]
        batchactions += [
            ["Reposync", "reposync", "go"],
        ]
    if what == "image":
        columns = ["name", "file"]
    if what == "network":
        columns = ["name"]
    if what == "mgmtclass":
        columns = ["name"]
    if what == "package":
        columns = ["name", "installer"]
    if what == "file":
        columns = ["name"]

    # render the list
    html = render(request, 'generic_list.tmpl', {
        'what': what,
        'columns': __format_columns(columns, sort_field),
        'items': __format_items(pageditems["items"], columns),
        'pageinfo': pageditems["pageinfo"],
        'filters': filters,
        'version': remote.extended_version(request.session['token'])['version'],
        'username': username,
        'limit': limit,
        'batchactions': batchactions,
        'profiles': profiles,
    })
    return HttpResponse(html)


@require_POST
@csrf_protect
def modify_list(request, what, pref, value=None):
    """
    This function is used in the generic list view
    to modify the page/column sort/number of items
    shown per page, and also modify the filters.

    This function modifies the session object to
    store these preferences persistently.
    """
    if not test_user_authenticated(request):
        return login(request, next="/cobbler_web/%s/modifylist/%s/%s" % (what, pref, str(value)), expired=True)

    # what preference are we tweaking?

    if pref == "sort":

        # FIXME: this isn't exposed in the UI.

        # sorting list on columns
        old_sort = request.session.get("%s_sort_field" % what, "name")
        if old_sort.startswith("!"):
            old_sort = old_sort[1:]
            old_revsort = True
        else:
            old_revsort = False
        # User clicked on the column already sorted on,
        # so reverse the sorting list
        if old_sort == value and not old_revsort:
            value = "!" + value
        request.session["%s_sort_field" % what] = value
        request.session["%s_page" % what] = 1

    elif pref == "limit":
        # number of items to show per page
        request.session["%s_limit" % what] = int(value)
        request.session["%s_page" % what] = 1

    elif pref == "page":
        # what page are we currently on
        request.session["%s_page" % what] = int(value)

    elif pref in ("addfilter", "removefilter"):
        # filters limit what we show in the lists
        # they are stored in json format for marshalling
        filters = simplejson.loads(request.session.get("%s_filters" % what, "{}"))
        if pref == "addfilter":
            (field_name, field_value) = value.split(":", 1)
            # add this filter
            filters[field_name] = field_value
        else:
            # remove this filter, if it exists
            if value in filters:
                del filters[value]
        # save session variable
        request.session["%s_filters" % what] = simplejson.dumps(filters)
        # since we changed what is viewed, reset the page
        request.session["%s_page" % what] = 1

    else:
        return error_page(request, "Invalid preference change request")

    # redirect to the list page
    return HttpResponseRedirect("/cobbler_web/%s/list" % what)

# ======================================================================


@require_POST
@csrf_protect
def generic_rename(request, what, obj_name=None, obj_newname=None):
    """
    Renames an object.
    """
    if not test_user_authenticated(request):
        return login(request, next="/cobbler_web/%s/rename/%s/%s" % (what, obj_name, obj_newname), expired=True)

    if obj_name is None:
        return error_page(request, "You must specify a %s to rename" % what)
    if not remote.has_item(what, obj_name):
        return error_page(request, "Unknown %s specified" % what)
    elif not remote.check_access_no_fail(request.session['token'], "modify_%s" % what, obj_name):
        return error_page(request, "You do not have permission to rename this %s" % what)
    else:
        obj_id = remote.get_item_handle(what, obj_name, request.session['token'])
        remote.rename_item(what, obj_id, obj_newname, request.session['token'])
        return HttpResponseRedirect("/cobbler_web/%s/list" % what)

# ======================================================================


@require_POST
@csrf_protect
def generic_copy(request, what, obj_name=None, obj_newname=None):
    """
    Copies an object.
    """
    if not test_user_authenticated(request):
        return login(request, next="/cobbler_web/%s/copy/%s/%s" % (what, obj_name, obj_newname), expired=True)
    # FIXME: shares all but one line with rename, merge it.
    if obj_name is None:
        return error_page(request, "You must specify a %s to rename" % what)
    if not remote.has_item(what, obj_name):
        return error_page(request, "Unknown %s specified" % what)
    elif not remote.check_access_no_fail(request.session['token'], "modify_%s" % what, obj_name):
        return error_page(request, "You do not have permission to copy this %s" % what)
    else:
        obj_id = remote.get_item_handle(what, obj_name, request.session['token'])
        remote.copy_item(what, obj_id, obj_newname, request.session['token'])
        return HttpResponseRedirect("/cobbler_web/%s/list" % what)

# ======================================================================


@require_POST
@csrf_protect
def generic_delete(request, what, obj_name=None):
    """
    Deletes an object.
    """
    if not test_user_authenticated(request):
        return login(request, next="/cobbler_web/%s/delete/%s" % (what, obj_name), expired=True)
    # FIXME: consolidate code with above functions.
    if obj_name is None:
        return error_page(request, "You must specify a %s to delete" % what)
    if not remote.has_item(what, obj_name):
        return error_page(request, "Unknown %s specified" % what)
    elif not remote.check_access_no_fail(request.session['token'], "remove_%s" % what, obj_name):
        return error_page(request, "You do not have permission to delete this %s" % what)
    else:
        # check whether object is to be deleted recursively
        recursive = simplejson.loads(request.POST.get("recursive", "false"))
        try:
            remote.xapi_object_edit(what, obj_name, "remove", {'name': obj_name, 'recursive': recursive}, request.session['token'])
        except Exception as e:
            return error_page(request, str(e))
        return HttpResponseRedirect("/cobbler_web/%s/list" % what)


# ======================================================================


@require_POST
@csrf_protect
def generic_domulti(request, what, multi_mode=None, multi_arg=None):
    """
    Process operations like profile reassignment, netboot toggling, and deletion
    which occur on all items that are checked on the list page.
    """
    if not test_user_authenticated(request):
        return login(request, next="/cobbler_web/%s/multi/%s/%s" % (what, multi_mode, multi_arg), expired=True)

    names = request.POST.get('names', '').strip().split()
    if names == "":
        return error_page(request, "Need to select some '%s' objects first" % what)

    if multi_mode == "delete":
        # check whether the objects are to be deleted recursively
        recursive = simplejson.loads(request.POST.get("recursive_batch", "false"))
        for obj_name in names:
            try:
                remote.xapi_object_edit(what, obj_name, "remove", {'name': obj_name, 'recursive': recursive}, request.session['token'])
            except Exception as e:
                return error_page(request, str(e))

    elif what == "system" and multi_mode == "netboot":
        netboot_enabled = multi_arg  # values: enable or disable
        if netboot_enabled is None:
            return error_page(request, "Cannot modify systems without specifying netboot_enabled")
        if netboot_enabled == "enable":
            netboot_enabled = True
        elif netboot_enabled == "disable":
            netboot_enabled = False
        else:
            return error_page(request, "Invalid netboot option, expect enable or disable")
        for obj_name in names:
            obj_id = remote.get_system_handle(obj_name, request.session['token'])
            remote.modify_system(obj_id, "netboot_enabled", netboot_enabled, request.session['token'])
            remote.save_system(obj_id, request.session['token'], "edit")

    elif what == "system" and multi_mode == "profile":
        profile = multi_arg
        if profile is None:
            return error_page(request, "Cannot modify systems without specifying profile")
        for obj_name in names:
            obj_id = remote.get_system_handle(obj_name, request.session['token'])
            remote.modify_system(obj_id, "profile", profile, request.session['token'])
            remote.save_system(obj_id, request.session['token'], "edit")

    elif what == "system" and multi_mode == "power":
        power = multi_arg
        if power is None:
            return error_page(request, "Cannot modify systems without specifying power option")
        options = {"systems": names, "power": power}
        remote.background_power_system(options, request.session['token'])

    elif what == "system" and multi_mode == "buildiso":
        options = {"systems": names, "profiles": []}
        remote.background_buildiso(options, request.session['token'])

    elif what == "profile" and multi_mode == "buildiso":
        options = {"profiles": names, "systems": []}
        remote.background_buildiso(options, request.session['token'])

    elif what == "distro" and multi_mode == "buildiso":
        if len(names) > 1:
            return error_page(request, "You can only select one distro at a time to build an ISO for")
        options = {"standalone": True, "distro": str(names[0])}
        remote.background_buildiso(options, request.session['token'])

    elif what == "repo" and multi_mode == "reposync":
        options = {"repos": names, "tries": 3}
        remote.background_reposync(options, request.session['token'])

    else:
        return error_page(request, "Unknown batch operation on %ss: %s" % (what, str(multi_mode)))

    # FIXME: "operation complete" would make a lot more sense here than a redirect
    return HttpResponseRedirect("/cobbler_web/%s/list" % what)

# ======================================================================


def import_prompt(request):
    if not test_user_authenticated(request):
        return login(request, next="/cobbler_web/import/prompt", expired=True)

    html = render(request, 'import.tmpl', {
        'version': remote.extended_version(request.session['token'])['version'],
        'username': username,
    })
    return HttpResponse(html)

# ======================================================================


def check(request):
    """
    Shows a page with the results of 'cobbler check'
    """
    if not test_user_authenticated(request):
        return login(request, next="/cobbler_web/check", expired=True)

    results = remote.check(request.session['token'])

    html = render(request, 'check.tmpl', {
        'version': remote.extended_version(request.session['token'])['version'],
        'username': username,
        'results': results
    })
    return HttpResponse(html)

# ======================================================================


@require_POST
@csrf_protect
def buildiso(request):
    if not test_user_authenticated(request):
        return login(request, next="/cobbler_web/buildiso", expired=True)
    remote.background_buildiso({}, request.session['token'])
    return HttpResponseRedirect('/cobbler_web/task_created')

# ======================================================================


@require_POST
@csrf_protect
def import_run(request):
    if not test_user_authenticated(request):
        return login(request, next="/cobbler_web/import/prompt", expired=True)
    options = {
        "name": request.POST.get("name", ""),
        "path": request.POST.get("path", ""),
        "breed": request.POST.get("breed", ""),
        "arch": request.POST.get("arch", "")
    }
    remote.background_import(options, request.session['token'])
    return HttpResponseRedirect('/cobbler_web/task_created')

# ======================================================================


def aifile_list(request, page=None):
    """
    List all automatic OS installation templates and link to their edit pages.
    """
    if not test_user_authenticated(request):
        return login(request, next="/cobbler_web/aifile/list", expired=True)

    aifiles = remote.get_autoinstall_templates(request.session['token'])

    aifile_list = []
    for aifile in aifiles:
        aifile_list.append((aifile, 'editable'))

    html = render(request, 'aifile_list.tmpl', {
        'what': 'aifile',
        'ai_files': aifile_list,
        'version': remote.extended_version(request.session['token'])['version'],
        'username': username,
        'item_count': len(aifile_list[0]),
    })
    return HttpResponse(html)

# ======================================================================


@csrf_protect
def aifile_edit(request, aifile_name=None, editmode='edit'):
    """
    This is the page where an automatic OS installation file is edited.
    """
    if not test_user_authenticated(request):
        return login(request, next="/cobbler_web/aifile/edit/file:%s" % aifile_name, expired=True)
    if editmode == 'edit':
        editable = False
    else:
        editable = True
    deleteable = False
    aidata = ""
    if aifile_name is not None:
        editable = remote.check_access_no_fail(request.session['token'], "modify_autoinst", aifile_name)
        deleteable = not remote.is_autoinstall_in_use(aifile_name, request.session['token'])
        aidata = remote.read_autoinstall_template(aifile_name, request.session['token'])

    html = render(request, 'aifile_edit.tmpl', {
        'aifile_name': aifile_name,
        'deleteable': deleteable,
        'aidata': aidata,
        'editable': editable,
        'editmode': editmode,
        'version': remote.extended_version(request.session['token'])['version'],
        'username': username
    })
    return HttpResponse(html)

# ======================================================================


@require_POST
@csrf_protect
def aifile_save(request):
    """
    This page processes and saves edits to an automatic OS installation file.
    """
    if not test_user_authenticated(request):
        return login(request, next="/cobbler_web/aifile/list", expired=True)
    # FIXME: error checking

    aifile_name = request.POST.get('aifile_name', None)
    aidata = request.POST.get('aidata', "").replace('\r\n', '\n')

    if aifile_name is None:
        return HttpResponse("NO AUTOMATIC INSTALLATION FILE NAME SPECIFIED")

    delete1 = request.POST.get('delete1', None)
    delete2 = request.POST.get('delete2', None)

    if delete1 and delete2:
        remote.remove_autoinstall_template(aifile_name, request.session['token'])
        return HttpResponseRedirect('/cobbler_web/aifile/list')
    else:
        remote.write_autoinstall_template(aifile_name, aidata, request.session['token'])
        return HttpResponseRedirect('/cobbler_web/aifile/list')

# ======================================================================


def snippet_list(request, page=None):
    """
    This page lists all available snippets and has links to edit them.
    """
    if not test_user_authenticated(request):
        return login(request, next="/cobbler_web/snippet/list", expired=True)

    snippets = remote.get_autoinstall_snippets(request.session['token'])
    snippet_list = []
    for snippet in snippets:
        snippet_list.append((snippet, 'editable'))

    html = render(request, 'snippet_list.tmpl', {
        'what': 'snippet',
        'snippets': snippet_list,
        'version': remote.extended_version(request.session['token'])['version'],
        'username': username
    })
    return HttpResponse(html)

# ======================================================================


@csrf_protect
def snippet_edit(request, snippet_name=None, editmode='edit'):
    """
    This page edits a specific snippet.
    """
    if not test_user_authenticated(request):
        return login(request, next="/cobbler_web/edit/file:%s" % snippet_name, expired=True)
    if editmode == 'edit':
        editable = False
    else:
        editable = True
    deleteable = False
    snippetdata = ""
    if snippet_name is not None:
        editable = remote.check_access_no_fail(request.session['token'], "modify_snippet", snippet_name)
        deleteable = True
        snippetdata = remote.read_autoinstall_snippet(snippet_name, request.session['token'])

    html = render(request, 'snippet_edit.tmpl', {
        'snippet_name': snippet_name,
        'deleteable': deleteable,
        'snippetdata': snippetdata,
        'editable': editable,
        'editmode': editmode,
        'version': remote.extended_version(request.session['token'])['version'],
        'username': username
    })
    return HttpResponse(html)

# ======================================================================


@require_POST
@csrf_protect
def snippet_save(request):
    """
    This snippet saves a snippet once edited.
    """
    if not test_user_authenticated(request):
        return login(request, next="/cobbler_web/snippet/list", expired=True)
    # FIXME: error checking

    editmode = request.POST.get('editmode', 'edit')
    snippet_name = request.POST.get('snippet_name', None)
    snippetdata = request.POST.get('snippetdata', "").replace('\r\n', '\n')

    if snippet_name is None:
        return HttpResponse("NO SNIPPET NAME SPECIFIED")

    if editmode != 'edit':
        if snippet_name.find("/var/lib/cobbler/snippets/") != 0:
            snippet_name = "/var/lib/cobbler/snippets/" + snippet_name

    delete1 = request.POST.get('delete1', None)
    delete2 = request.POST.get('delete2', None)

    if delete1 and delete2:
        remote.remove_autoinstall_snippet(snippet_name, request.session['token'])
        return HttpResponseRedirect('/cobbler_web/snippet/list')
    else:
        remote.write_autoinstall_snippet(snippet_name, snippetdata, request.session['token'])
        return HttpResponseRedirect('/cobbler_web/snippet/list')

# ======================================================================


def setting_list(request):
    """
    This page presents a list of all the settings to the user.  They are not editable.
    """
    if not test_user_authenticated(request):
        return login(request, next="/cobbler_web/setting/list", expired=True)
    settings = remote.get_settings()
    skeys = list(settings.keys())
    skeys.sort()

    results = []
    for k in skeys:
        results.append([k, settings[k]])

    html = render(request, 'settings.tmpl', {
        'settings': results,
        'version': remote.extended_version(request.session['token'])['version'],
        'username': username,
    })
    return HttpResponse(html)


@csrf_protect
def setting_edit(request, setting_name=None):
    if not setting_name:
        return HttpResponseRedirect('/cobbler_web/setting/list')
    if not test_user_authenticated(request):
        return login(request, next="/cobbler_web/setting/edit/%s" % setting_name, expired=True)

    settings = remote.get_settings()
    if setting_name not in settings:
        return error_page(request, "Unknown setting: %s" % setting_name)

    cur_setting = {
        'name': setting_name,
        'value': settings[setting_name],
    }

    fields = get_fields('setting', False, seed_item=cur_setting)

    # build UI tabs metadata
    sections_data = field_ui_info.SETTING_UI_FIELDS_MAPPING
    sections = _create_sections_metadata('setting', sections_data, fields)

    html = render(request, 'generic_edit.tmpl', {
        'what': 'setting',
        'sections': sections,
        'subobject': False,
        'editmode': 'edit',
        'editable': True,
        'version': remote.extended_version(request.session['token'])['version'],
        'username': username,
        'name': setting_name,
    })
    return HttpResponse(html)


@csrf_protect
def setting_save(request):
    if not test_user_authenticated(request):
        return login(request, next="/cobbler_web/setting/list", expired=True)

    # load request fields and see if they are valid
    setting_name = request.POST.get('name', "")
    setting_value = request.POST.get('value', None)

    if setting_name == "":
        return error_page(request, "The setting name was not specified")

    settings = remote.get_settings()
    if setting_name not in settings:
        return error_page(request, "Unknown setting: %s" % setting_name)

    if remote.modify_setting(setting_name, setting_value, request.session['token']):
        return error_page(request, "There was an error saving the setting")

    return HttpResponseRedirect("/cobbler_web/setting/list")

# ======================================================================


def events(request):
    """
    This page presents a list of all the events and links to the event log viewer.
    """
    if not test_user_authenticated(request):
        return login(request, next="/cobbler_web/events", expired=True)
    events = remote.get_events()

    events2 = []
    for id in list(events.keys()):
        (ttime, name, state, read_by) = events[id]
        events2.append([id, time.asctime(time.localtime(ttime)), name, state])

    events2 = sorted(events2)

    html = render(request, 'events.tmpl', {
        'results': events2,
        'version': remote.extended_version(request.session['token'])['version'],
        'username': username
    })
    return HttpResponse(html)

# ======================================================================


def eventlog(request, event=0):
    """
    Shows the log for a given event.
    """
    if not test_user_authenticated(request):
        return login(request, next="/cobbler_web/eventlog/%s" % str(event), expired=True)
    event_info = remote.get_events()
    if event not in event_info:
        return HttpResponse("event not found")

    data = event_info[event]
    eventname = data[0]
    eventtime = data[1]
    eventstate = data[2]
    eventlog = remote.get_event_log(event)

    html = render(request, 'eventlog.tmpl', {
        'eventlog': eventlog,
        'eventname': eventname,
        'eventstate': eventstate,
        'eventid': event,
        'eventtime': eventtime,
        'version': remote.extended_version(request.session['token'])['version'],
        'username': username
    })
    return HttpResponse(html)

# ======================================================================


def random_mac(request, virttype="xenpv"):
    """
    Used in an ajax call to fill in a field with a mac address.
    """
    # FIXME: not exposed in UI currently
    if not test_user_authenticated(request):
        return login(request, expired=True)
    random_mac = remote.get_random_mac(virttype, request.session['token'])
    return HttpResponse(random_mac)

# ======================================================================


@require_POST
@csrf_protect
def sync(request):
    """
    Runs 'cobbler sync' from the API when the user presses the sync button.
    """
    if not test_user_authenticated(request):
        return login(request, next="/cobbler_web/sync", expired=True)
    remote.background_sync({"verbose": "True"}, request.session['token'])
    return HttpResponseRedirect("/cobbler_web/task_created")

# ======================================================================


@require_POST
@csrf_protect
def reposync(request):
    """
    Syncs all repos that are configured to be synced.
    """
    if not test_user_authenticated(request):
        return login(request, next="/cobbler_web/reposync", expired=True)
    remote.background_reposync({"names": "", "tries": 3}, request.session['token'])
    return HttpResponseRedirect("/cobbler_web/task_created")

# ======================================================================


@require_POST
@csrf_protect
def hardlink(request):
    """
    Hardlinks files between repos and install trees to save space.
    """
    if not test_user_authenticated(request):
        return login(request, next="/cobbler_web/hardlink", expired=True)
    remote.background_hardlink({}, request.session['token'])
    return HttpResponseRedirect("/cobbler_web/task_created")

# ======================================================================


@require_POST
@csrf_protect
def replicate(request):
    """
    Replicate configuration from the central Cobbler server, configured
    in /etc/cobbler/settings (note: this is uni-directional!)

    FIXME: this is disabled because we really need a web page to provide options for
    this command.

    """
    # settings = remote.get_settings()
    # options = settings # just load settings from file until we decide to ask user (later?)
    # remote.background_replicate(options, request.session['token'])
    if not test_user_authenticated(request):
        return login(request, next="/cobbler_web/replicate", expired=True)
    return HttpResponseRedirect("/cobbler_web/task_created")

# ======================================================================


def __names_from_dicts(lod, optional=True):
    """
    Tiny helper function.
    Get the names out of an array of dictionaries that the remote interface
    returns.
    """
    results = []
    if optional:
        results.append("<<None>>")
    for x in lod:
        results.append(x["name"])
    results.sort()
    return results

# ======================================================================


@csrf_protect
def generic_edit(request, what=None, obj_name=None, editmode="new"):
    """
    Presents an editor page for any type of object.
    While this is generally standardized, systems are a little bit special.
    """
    target = ""
    if obj_name is not None:
        target = "/%s" % obj_name
    if not test_user_authenticated(request):
        return login(request, next="/cobbler_web/%s/edit%s" % (what, target), expired=True)

    obj = None

    child = False
    if what == "subprofile":
        what = "profile"
        child = True

    if obj_name is not None:
        editable = remote.check_access_no_fail(request.session['token'], "modify_%s" % what, obj_name)
        obj = remote.get_item(what, obj_name, False)
    else:
        editable = remote.check_access_no_fail(request.session['token'], "new_%s" % what, None)
        obj = None

    interfaces = {}
    if what == "system":
        if obj:
            interfaces = obj.get("interfaces", {})
        else:
            interfaces = {}

    fields = get_fields(what, child, obj)
    if what == "system":
        fields += get_network_interface_fields()

    # create the autoinstall pulldown list
    autoinstalls = remote.get_autoinstall_templates()
    autoinstall_list = ["", "<<inherit>>"]
    for autoinstall in autoinstalls:
        autoinstall_list.append(autoinstall)

    # populate some select boxes
    if what == "profile":
        if (obj and obj["parent"] not in (None, "")) or child:
            __tweak_field(fields, "parent", "choices", __names_from_dicts(remote.get_profiles()))
        else:
            __tweak_field(fields, "distro", "choices", __names_from_dicts(remote.get_distros()))
        __tweak_field(fields, "autoinstall", "choices", autoinstall_list)
        __tweak_field(fields, "repos", "choices", __names_from_dicts(remote.get_repos()))
        __tweak_field(fields, "mgmt_classes", "choices", __names_from_dicts(remote.get_mgmtclasses(), optional=False))

    elif what == "system":
        __tweak_field(fields, "profile", "choices", __names_from_dicts(remote.get_profiles()))
        __tweak_field(fields, "image", "choices", __names_from_dicts(remote.get_images(), optional=True))
        __tweak_field(fields, "autoinstall", "choices", autoinstall_list)
        __tweak_field(fields, "mgmt_classes", "choices", __names_from_dicts(remote.get_mgmtclasses(), optional=False))

    elif what == "mgmtclass":
        __tweak_field(fields, "packages", "choices", __names_from_dicts(remote.get_packages()))
        __tweak_field(fields, "files", "choices", __names_from_dicts(remote.get_files()))

    elif what == "distro":
        __tweak_field(fields, "arch", "choices", remote.get_valid_archs())
        __tweak_field(fields, "os_version", "choices", remote.get_valid_os_versions())
        __tweak_field(fields, "breed", "choices", remote.get_valid_breeds())
        __tweak_field(fields, "mgmt_classes", "choices", __names_from_dicts(remote.get_mgmtclasses(), optional=False))

    elif what == "image":
        __tweak_field(fields, "arch", "choices", remote.get_valid_archs())
        __tweak_field(fields, "breed", "choices", remote.get_valid_breeds())
        __tweak_field(fields, "os_version", "choices", remote.get_valid_os_versions())
        __tweak_field(fields, "autoinst", "choices", autoinstall_list)

    # if editing save the fields in the session for comparison later
    if editmode == "edit":
        request.session['%s_%s' % (what, obj_name)] = fields

    # build UI tabs metadata
    if what == "distro":
        sections_data = field_ui_info.DISTRO_UI_FIELDS_MAPPING
    elif what == "file":
        sections_data = field_ui_info.FILE_UI_FIELDS_MAPPING
    elif what == "image":
        sections_data = field_ui_info.IMAGE_UI_FIELDS_MAPPING
    elif what == "mgmtclass":
        sections_data = field_ui_info.MGMTCLASS_UI_FIELDS_MAPPING
    elif what == "package":
        sections_data = field_ui_info.PACKAGE_UI_FIELDS_MAPPING
    elif what == "profile":
        sections_data = field_ui_info.PROFILE_UI_FIELDS_MAPPING
    elif what == "repo":
        sections_data = field_ui_info.REPO_UI_FIELDS_MAPPING
    elif what == "system":
        sections_data = field_ui_info.SYSTEM_UI_FIELDS_MAPPING
    sections = _create_sections_metadata(what, sections_data, fields)

    inames = list(interfaces.keys())
    inames.sort()

    html = render(request, 'generic_edit.tmpl', {
        'what': what,
        'sections': sections,
        'subobject': child,
        'editmode': editmode,
        'editable': editable,
        'interfaces': interfaces,
        'interface_names': inames,
        'interface_length': len(inames),
        'version': remote.extended_version(request.session['token'])['version'],
        'username': username,
        'name': obj_name
    })
    return HttpResponse(html)

# ======================================================================


@require_POST
@csrf_protect
def generic_save(request, what):
    """
    Saves an object back using the Cobbler API after clearing any 'generic_edit' page.
    """
    if not test_user_authenticated(request):
        return login(request, next="/cobbler_web/%s/list" % what, expired=True)

    # load request fields and see if they are valid
    editmode = request.POST.get('editmode', 'edit')
    obj_name = request.POST.get('name', "")
    subobject = request.POST.get('subobject', "False")

    if subobject == "False":
        subobject = False
    else:
        subobject = True

    if obj_name == "":
        return error_page(request, "Required field name is missing")

    prev_fields = []
    if "%s_%s" % (what, obj_name) in request.session and editmode == "edit":
        prev_fields = request.session["%s_%s" % (what, obj_name)]

    # grab the remote object handle
    # for edits, fail in the object cannot be found to be edited
    # for new objects, fail if the object already exists
    if editmode == "edit":
        if not remote.has_item(what, obj_name):
            return error_page(request, "Failure trying to access item %s, it may have been deleted." % (obj_name))
        obj_id = remote.get_item_handle(what, obj_name, request.session['token'])
    else:
        if remote.has_item(what, obj_name):
            return error_page(request, "Could not create a new item %s, it already exists." % (obj_name))
        obj_id = remote.new_item(what, request.session['token'])

    # system needs either profile or image to be set
    # fail if both are not set
    if what == "system":
        profile = request.POST.getlist('profile')
        image = request.POST.getlist('image')
        if "<<None>>" in profile and "<<None>>" in image:
            return error_page(request, "Please provide either a valid profile or image for the system")

    # walk through our fields list saving things we know how to save
    fields = get_fields(what, subobject)

    for field in fields:

        if field['name'] == 'name' and editmode == 'edit':
            # do not attempt renames here
            continue
        else:
            # check and see if the value exists in the fields stored in the session
            prev_value = None
            for prev_field in prev_fields:
                if prev_field['name'] == field['name']:
                    prev_value = prev_field['value']
                    break

            value = request.POST.get(field['name'], None)
            # Checkboxes return the value of the field if checked, otherwise None
            # convert to True/False
            if field["html_element"] == "checkbox":
                if value == field['name']:
                    value = True
                else:
                    value = False

            # Multiselect fields are handled differently
            if field["html_element"] == "multiselect":
                values = request.POST.getlist(field['name'])
                value = []
                if '<<inherit>>' in values:
                    value = '<<inherit>>'
                else:
                    for single_value in values:
                        if single_value != "<<None>>":
                            value.insert(0, single_value)

            if value is not None:
                if value == "<<None>>":
                    value = ""
                if value is not None and (not subobject or field['name'] != 'distro') and value != prev_value:
                    try:
                        remote.modify_item(what, obj_id, field['name'], value, request.session['token'])
                    except Exception as e:
                        return error_page(request, str(e))

    # special handling for system interface fields
    # which are the only objects in Cobbler that will ever work this way
    if what == "system":
        network_interface_fields = get_network_interface_fields()
        interfaces = request.POST.get('interface_list', "").split(",")
        for interface in interfaces:
            if interface == "":
                continue
            ifdata = {}
            for field in network_interface_fields:
                ifdata["%s-%s" % (field["name"], interface)] = request.POST.get("%s-%s" % (field["name"], interface), "")
            ifdata = utils.strip_none(ifdata)
            # FIXME: I think this button is missing.
            present = request.POST.get("present-%s" % interface, "")
            original = request.POST.get("original-%s" % interface, "")
            try:
                if present == "0" and original == "1":
                    remote.modify_system(obj_id, 'delete_interface', interface, request.session['token'])
                elif present == "1":
                    remote.modify_system(obj_id, 'modify_interface', ifdata, request.session['token'])
            except Exception as e:
                return error_page(request, str(e))

    try:
        remote.save_item(what, obj_id, request.session['token'], editmode)
    except Exception as e:
        return error_page(request, str(e))

    return HttpResponseRedirect('/cobbler_web/%s/list' % what)


# ======================================================================
# Login/Logout views

def test_user_authenticated(request):
    global remote
    global username
    global url_cobbler_api

    if url_cobbler_api is None:
        url_cobbler_api = utils.local_get_cobbler_api_url()

    remote = xmlrpc.client.Server(url_cobbler_api, allow_none=True)

    # if we have a token, get the associated username from
    # the remote server via XMLRPC. We then compare that to
    # the value stored in the session.  If everything matches up,
    # the user is considered successfully authenticated
    if 'token' in request.session and request.session['token'] != '':
        try:
            if remote.token_check(request.session['token']):
                token_user = remote.get_user_from_token(request.session['token'])
                if 'username' in request.session and request.session['username'] == token_user:
                    username = request.session['username']
                    return True
        except:
            # just let it fall through to the 'return False' below
            pass
    return False


use_passthru = -1


@csrf_protect
def login(request, next=None, message=None, expired=False):
    global use_passthru
    if use_passthru < 0:
        token = remote.login("", utils.get_shared_secret())
        auth_module = remote.get_authn_module_name(token)
        use_passthru = auth_module == 'authentication.passthru'

    if use_passthru:
        return accept_remote_user(request, next)

    if expired and not message:
        message = "Sorry, either you need to login or your session expired."
    return render(request, 'login.tmpl', {'next': next, 'message': message})


def accept_remote_user(request, nextsite):
    global username

    username = request.META['REMOTE_USER']
    token = remote.login(username, utils.get_shared_secret())

    request.session['username'] = username
    request.session['token'] = token
    if nextsite:
        return HttpResponseRedirect(nextsite)
    else:
        return HttpResponseRedirect("/cobbler_web")


@require_POST
@csrf_protect
def do_login(request):
    global remote
    global username
    global url_cobbler_api

    username = request.POST.get('username', '').strip()
    password = request.POST.get('password', '')
    nextsite = request.POST.get('next', None)

    if url_cobbler_api is None:
        url_cobbler_api = utils.local_get_cobbler_api_url()

    remote = xmlrpc.client.Server(url_cobbler_api, allow_none=True)

    try:
        token = remote.login(username, password)
    except:
        token = None

    if token:
        request.session['username'] = username
        request.session['token'] = token
        if nextsite:
            return HttpResponseRedirect(nextsite)
        else:
            return HttpResponseRedirect("/cobbler_web")
    else:
        return login(request, nextsite, message="Login failed, please try again")


@require_POST
@csrf_protect
def do_logout(request):
    request.session['username'] = ""
    request.session['token'] = ""
    return HttpResponseRedirect("/cobbler_web")
   070701000000CD000081A40000000000000000000000015ECE244400000D8F000000000000000000000000000000000000002000000000cobbler-3.1.2/cobbler/yumgen.py   """
Builds out filesystem trees/data based on the object tree.
This is the code behind 'cobbler sync'.

Copyright 2006-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""


from builtins import object
import os
import os.path

from cobbler import templar
from cobbler import utils


class YumGen(object):

    def __init__(self, collection_mgr):
        """
        Constructor

        :param collection_mgr: The main collection manager instance which is used by the current running server.
        """
        self.collection_mgr = collection_mgr
        self.api = collection_mgr.api
        self.distros = collection_mgr.distros()
        self.profiles = collection_mgr.profiles()
        self.systems = collection_mgr.systems()
        self.settings = collection_mgr.settings()
        self.repos = collection_mgr.repos()
        self.templar = templar.Templar(collection_mgr)

    def get_yum_config(self, obj, is_profile):
        """
        Return one large yum repo config blob suitable for use by any target system that requests it.

        :param obj: The object to generate the yumconfig for.
        :param is_profile: If the requested object is a profile. (Parameter not used currently)
        :type is_profile: bool
        :return: The generated yumconfig or the errors.
        :rtype: str
        """

        totalbuf = ""

        blended = utils.blender(self.api, False, obj)

        input_files = []

        # Tack on all the install source repos IF there is more than one. This is basically to support things like
        # RHEL5 split trees if there is only one, then there is no need to do this.

        included = {}
        for r in blended["source_repos"]:
            filename = self.settings.webdir + "/" + "/".join(r[0].split("/")[4:])
            if filename not in included:
                input_files.append(filename)
            included[filename] = 1

        for repo in blended["repos"]:
            path = os.path.join(self.settings.webdir, "repo_mirror", repo, "config.repo")
            if path not in included:
                input_files.append(path)
            included[path] = 1

        for infile in input_files:
            try:
                infile_h = open(infile)
            except:
                # File does not exist and the user needs to run reposync before we will use this, Cobbler check will
                # mention this problem
                totalbuf += "\n# error: could not read repo source: %s\n\n" % infile
                continue

            infile_data = infile_h.read()
            infile_h.close()
            outfile = None  # disk output only
            totalbuf += self.templar.render(infile_data, blended, outfile, None)
            totalbuf += "\n\n"

        return totalbuf
 070701000000CE000041ED00000000000000000000000A5ECE244400000000000000000000000000000000000000000000001500000000cobbler-3.1.2/config  070701000000CF000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000001C00000000cobbler-3.1.2/config/apache   070701000000D0000081A40000000000000000000000015ECE2444000004F2000000000000000000000000000000000000002900000000cobbler-3.1.2/config/apache/cobbler.conf  # This configuration file allows cobbler data
# to be accessed over HTTP.

AliasMatch ^/cblr(?!/svc/)(.*)?$ "@@webroot@@/cobbler$1"
AliasMatch ^/cobbler_track(.*)?$ "@@webroot@@/cobbler$1"
#AliasMatch ^/cobbler(.*)?$ "@@webroot@@/cobbler$1"
Alias /cobbler @@webroot@@/cobbler

Alias /httpboot /srv/tftpboot/grub
Alias /images /srv/tftpboot/grub/images

WSGIScriptAliasMatch ^/cblr/svc/([^/]*) @@webroot@@/cobbler/svc/services.py

<VirtualHost *:80>

<Directory "@@webroot@@/cobbler">
    SetEnv VIRTUALENV @@virtualenv@@
    Options Indexes FollowSymLinks
    Require all granted
</Directory>

<Directory /srv/tftpboot/grub>
        Options Indexes FollowSymLinks
        AllowOverride None
        AuthType None
        Require all granted
</Directory>

ProxyRequests off

ProxyPass /cobbler_api http://127.0.0.1:25151/
ProxyPassReverse /cobbler_api http://127.0.0.1:25151/

BrowserMatch "MSIE" AuthDigestEnableQueryStringHack=On

# the webui is now part of the "cobbler-web" package
# and is visited at http://.../cobbler_web not this URL.
# this is only a pointer to the new page.

<Directory "@@webroot@@/cobbler/web/">
    Options Indexes FollowSymLinks
    Require all granted
</Directory>

<Location /cblr>
    Require all granted
</Location>

</VirtualHost>
  070701000000D1000081A40000000000000000000000015ECE2444000004AB000000000000000000000000000000000000002D00000000cobbler-3.1.2/config/apache/cobbler_web.conf  # This configuration file enables the cobbler web
# interface (django version)

Alias /cobbler_webui_content @@webroot@@/cobbler_webui_content

# Let mod_wsgi know about the location block,
# so it can access /cobbler_web
<Location /cobbler_web>
    Require all granted
</Location>

# Use separate process group for wsgi
WSGISocketPrefix /var/run/wsgi
WSGIScriptAlias /cobbler_web /usr/share/cobbler/web/cobbler.wsgi
WSGIDaemonProcess cobbler_web display-name=%{GROUP}
WSGIProcessGroup cobbler_web
WSGIPassAuthorization On

<VirtualHost *:443>

<Directory "/usr/share/cobbler/web/">
        <IfModule mod_ssl.c>
            SSLRequireSSL
        </IfModule>
        <IfModule mod_nss.c>
            NSSRequireSSL
        </IfModule>
        SetEnv VIRTUALENV @@virtualenv@@
        Options Indexes MultiViews
        AllowOverride None
	Require all granted
</Directory>

<Directory "@@webroot@@/cobbler_webui_content/">
        <IfModule mod_ssl.c>
            SSLRequireSSL
        </IfModule>
        <IfModule mod_nss.c>
            NSSRequireSSL
        </IfModule>
        Options +Indexes +FollowSymLinks
        AllowOverride None
        Require all granted
</Directory>

</VirtualHost>
 070701000000D2000041ED0000000000000000000000035ECE244400000000000000000000000000000000000000000000001A00000000cobbler-3.1.2/config/bash 070701000000D3000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000002500000000cobbler-3.1.2/config/bash/completion  070701000000D4000081ED0000000000000000000000015ECE2444000016B6000000000000000000000000000000000000002D00000000cobbler-3.1.2/config/bash/completion/cobbler  #!/bin/bash

_cobbler_completions()
{
    local cur prev cobbler_type
    declare -A opts

    cur="${COMP_WORDS[COMP_CWORD]}"
    prev="${COMP_WORDS[COMP_CWORD-1]}"
    cobbler_type=${COMP_WORDS[1]}
    COMPREPLY=()
    TYPE="distro profile system repo image mgmtclass package file aclsetup buildiso import list replicate report reposync sync validateks version signature get-loaders hardlink"
    ACTION="add edit copy list remove rename report"
    opts=(
        [distro]="--ctime --depth --mtime --source-repos --tree-build-time --uid --arch --autoinstall-meta --boot-files --boot-loader --breed --comment --fetchable-files --initrd --kernel --kernel-options --kernel-options-post --mgmt-classes --name --os-version --owners --redhat-management-key --template-files --in-place --help"
        [profile]="--ctime --depth --mtime --uid --autoinstall --autoinstall-meta --boot-files --comment --dhcp-tag --distro --enable-gpxe --enable-menu --fetchable-files --kernel-options --kernel-options-post --mgmt-classes --mgmt-parameters --name --name-servers --name-servers-search --next-server --owners --parent --proxy --redhat-management-key --repos --server --template-files --virt-auto-boot --virt-bridge --virt-cpus --virt-disk-driver --virt-file-size --virt-path --virt-ram --virt-type --in-place --help"
        [system]="--ctime --depth --ipv6-autoconfiguration --mtime --repos-enabled --uid --autoinstall --autoinstall-meta --boot-files --boot-loader --comment --enable-gpxe --fetchable-files --gateway --hostname --image --ipv6-default-device --kernel-options --kernel-options-post --mgmt-classes --mgmt-parameters --name --name-servers --name-servers-search --netboot-enabled --next-server --owners --power-address --power-id --power-pass --power-type --power-user --power-options --power-identity-file --profile --proxy --redhat-management-key --server --status --template-files --virt-auto-boot --virt-cpus --virt-disk-driver --virt-file-size --virt-path --virt-pxe-boot --virt-ram --virt-type --serial-device --serial-baud-rate --bonding-opts --bridge-opts --cnames --interface, --connected-mode --interface) --dhcp-tag --dns-name --if-gateway --interface) --interface-master --interface-type --ip-address --ipv6-address --ipv6-default-gateway --ipv6-mtu --ipv6-prefix --ipv6-secondaries --interface) --ipv6-static-routes --mac-address --management --mtu --netmask --static --interface) --static-routes --virt-bridge --interface --delete-interface --rename-interface --in-place --help"
        [repo]="--ctime --depth --mtime --parent --uid --apt-components --apt-dists --arch --breed --comment --createrepo-flags --environment --keep-updated --mirror --mirror-locally --name --owners --priority --proxy --rpm-list --yumopts --in-place --help"
        [image]="--ctime --depth --mtime --parent --uid --arch --autoinstall --breed --comment --file --image-type --name --network-count --os-version --owners --virt-auto-boot --virt-bridge --virt-cpus --virt-disk-driver --virt-file-size --virt-path --virt-ram --virt-type --in-place --help"
        [mgmtclass]="--ctime --depth --is-definition --mtime --uid --class-name --comment --files --name --owners --packages --params --in-place --help"
        [package]="--ctime --depth --mtime --uid --action --comment --installer --name --owners --version --in-place --help"
        [file]="--ctime --depth --mtime --uid --action --comment --group --is-dir --mode --name --owner --owners --path --template --in-place --help"
        [import]="--arch --breed --os-version --path --name --available-as --autoinstall --rsync-flags --help"
        [buildiso]="--iso --profiles --systems --tempdir --distro --standalone --source --exclude-dns --mkisofs-opts --help"
    )

    while :; do
        case "${prev}" in
            cobbler)
                COMPREPLY=($(compgen -W "${TYPE}" -- ${cur}))
                return 0
                ;;
            distro|repo|image|mgmtclass|package|file)
                COMPREPLY=($(compgen -W "${ACTION}" -- ${cur}))
                return 0
                ;;
            profile|system)
                COMPREPLY=($(compgen -W "${ACTION} getks" -- ${cur}))
                return 0
                ;;
            import|buildiso)
                COMPREPLY=($(compgen -W "${opts[${cobbler_type}]}" -- ${cur}))
                return 0
                ;;
            add|edit)
                COMPREPLY=($(compgen -W "${opts[${cobbler_type}]}" -- ${cur}))
                return 0
                ;;
            list)
                return 0
                ;;
            copy|rename)
                COMPREPLY=($(compgen -W "${opts[${cobbler_type}]} --newname" -- ${cur}))
                return 0
                ;;
            getks|remove|report)
                COMPREPLY=($(compgen -W "--name" -- ${cur}))
                return 0
                ;;
            --name)
                if [ -d "/var/lib/cobbler/config/${cobbler_type}s.d" ]; then
                    conf="$(ls /var/lib/cobbler/config/${cobbler_type}s.d)"
                    : "${conf//.json/}"
                    COMPREPLY=( $(compgen -W "$(echo $_)" -- ${cur}) )
                fi
                return 0
                : "${conf//.json/}"
                COMPREPLY=( $(compgen -W "$(echo $_)" -- ${cur}) )
                return 0
                ;;
            --profile)
                conf="$(ls /var/lib/cobbler/config/profiles.d)"
                : "${conf//.json/}"
                COMPREPLY=( $(compgen -W "$(echo $_)" -- ${cur}) )
                return 0
                ;;
            *)
               if [[ ${COMP_CWORD} -gt 2 ]]; then
                   prev="${COMP_WORDS[2]}"
               else
                   return 0
               fi
               ;;
        esac
    done
}

complete -F _cobbler_completions cobbler
  070701000000D5000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000001D00000000cobbler-3.1.2/config/cheetah  070701000000D6000081A40000000000000000000000015ECE24440000004B000000000000000000000000000000000000002C00000000cobbler-3.1.2/config/cheetah/cheetah_macros   ## define Cheetah functions here and reuse them throughout your templates

 070701000000D7000041ED0000000000000000000000035ECE244400000000000000000000000000000000000000000000001D00000000cobbler-3.1.2/config/cobbler  070701000000D8000081A40000000000000000000000015ECE244400000028000000000000000000000000000000000000002700000000cobbler-3.1.2/config/cobbler/auth.conf    [xmlrpc_service_users]
admin = DISABLED
070701000000D9000081A40000000000000000000000015ECE244400012A1B000000000000000000000000000000000000003400000000cobbler-3.1.2/config/cobbler/distro_signatures.json   {
  "breeds": {
    "redhat": {
      "rhel4": {
        "signatures": [
          "RedHat/RPMS",
          "CentOS/RPMS"
        ],
        "version_file": "(redhat|sl|centos)-release-4(AS|WS|ES)[\\.-]+(.*)\\.rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*).rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "x86_64",
          "ppc",
          "ppc64"
        ],
        "supported_repo_breeds": [
          "rsync",
          "rhn",
          "yum"
        ],
        "kernel_file": "vmlinuz(.*)",
        "initrd_file": "initrd(.*)\\.img",
        "isolinux_ok": false,
        "default_autoinstall": "sample_legacy.ks",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "rhel5": {
        "signatures": [
          "RedHat",
          "Server",
          "CentOS",
          "Client"
        ],
        "version_file": "(redhat|sl|centos)-release-5([^\\.][\\w]*)?[\\.-]+(.*)\\.rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*).rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "x86_64",
          "ppc",
          "ppc64"
        ],
        "supported_repo_breeds": [
          "rsync",
          "rhn",
          "yum"
        ],
        "kernel_file": "vmlinuz(.*)",
        "initrd_file": "initrd(.*)\\.img",
        "isolinux_ok": false,
        "default_autoinstall": "sample_legacy.ks",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "rhel6": {
        "signatures": [
          "Packages"
        ],
        "version_file": "(redhat|sl|slf|centos|oraclelinux)-release-(?!notes)([\\w]*-)*6(Server)*[\\.-]+(.*)\\.rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*).rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "x86_64",
          "ppc64"
        ],
        "supported_repo_breeds": [
          "rsync",
          "rhn",
          "yum"
        ],
        "kernel_file": "vmlinuz(.*)",
        "initrd_file": "initrd(.*)\\.img",
        "isolinux_ok": false,
        "default_autoinstall": "sample.ks",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "rhel7": {
        "signatures": [
          "Packages"
        ],
        "version_file": "(redhat|sl|slf|centos|oraclelinux|vzlinux)-release-(?!notes)([\\w]*-)*7(Server)*[\\.-]+(.*)\\.rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*).rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "x86_64",
          "ppc64",
          "ppc64le"
        ],
        "supported_repo_breeds": [
          "rsync",
          "rhn",
          "yum"
        ],
        "kernel_file": "vmlinuz(.*)",
        "initrd_file": "initrd(.*)\\.img",
        "isolinux_ok": false,
        "default_autoinstall": "sample.ks",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": [],
        "boot_loaders": {
          "ppc64": [
            "grub"
          ],
          "ppc64le": [
            "grub"
          ]
        }
      },
      "rhel8": {
        "signatures": [
          "BaseOS"
        ],
        "version_file": "(redhat|sl|slf|centos|oraclelinux|vzlinux)-release-(?!notes)([\\w]*-)*8[\\.-]+(.*)\\.rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*).rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "x86_64",
          "ppc",
          "ppc64",
          "ppc64le"
        ],
        "supported_repo_breeds": [
          "rsync",
          "rhn",
          "yum"
        ],
        "kernel_file": "vmlinuz(.*)",
        "initrd_file": "initrd(.*)\\.img",
        "isolinux_ok": false,
        "default_autoinstall": "sample.ks",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "ovz7": {
        "signatures": [
          "Packages"
        ],
        "version_file": "(openvz)-release-7(.*)\\.rpm",
        "version_file_regex": null,
        "kernel_arch": "vzkernel-(.*).rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "x86_64"
        ],
        "supported_repo_breeds": [
          "rsync",
          "yum"
        ],
        "kernel_file": "vmlinuz(.*)",
        "initrd_file": "initrd(.*)\\.img",
        "isolinux_ok": false,
        "default_autoinstall": "sample.ks",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "fedora16": {
        "signatures": [
          "Packages"
        ],
        "version_file": "(fedora)-release-16-(.*)\\.noarch\\.rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "x86_64",
          "ppc",
          "ppc64"
        ],
        "supported_repo_breeds": [
          "rsync",
          "rhn",
          "yum"
        ],
        "kernel_file": "vmlinuz(.*)",
        "initrd_file": "initrd(.*)\\.img",
        "isolinux_ok": false,
        "default_autoinstall": "sample.ks",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "fedora17": {
        "signatures": [
          "Packages"
        ],
        "version_file": "(fedora)-release-17-(.*)\\.noarch\\.rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "x86_64",
          "ppc",
          "ppc64"
        ],
        "supported_repo_breeds": [
          "rsync",
          "rhn",
          "yum"
        ],
        "kernel_file": "vmlinuz(.*)",
        "initrd_file": "initrd(.*)\\.img",
        "isolinux_ok": false,
        "default_autoinstall": "sample.ks",
        "kernel_options": "repo=$tree",
        "kernel_options_post": "",
        "boot_files": []
      },
      "fedora18": {
        "signatures": [
          "Packages"
        ],
        "version_file": "(fedora)-release-18-(.*)\\.noarch\\.rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "x86_64",
          "ppc",
          "ppc64"
        ],
        "supported_repo_breeds": [
          "rsync",
          "rhn",
          "yum"
        ],
        "kernel_file": "vmlinuz(.*)",
        "initrd_file": "initrd(.*)\\.img",
        "isolinux_ok": false,
        "default_autoinstall": "sample.ks",
        "kernel_options": "repo=$tree",
        "kernel_options_post": "",
        "boot_files": []
      },
      "fedora19": {
        "signatures": [
          "Packages"
        ],
        "version_file": "(fedora)-release-19-(.*)\\.noarch\\.rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "x86_64",
          "ppc",
          "ppc64"
        ],
        "supported_repo_breeds": [
          "rsync",
          "rhn",
          "yum"
        ],
        "kernel_file": "vmlinuz(.*)",
        "initrd_file": "initrd(.*)\\.img",
        "isolinux_ok": false,
        "default_autoinstall": "sample.ks",
        "kernel_options": "repo=$tree",
        "kernel_options_post": "",
        "boot_files": []
      },
      "fedora20": {
        "signatures": [
          "Packages"
        ],
        "version_file": "(fedora)-release-20-(.*)\\.noarch\\.rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "x86_64",
          "ppc",
          "ppc64"
        ],
        "supported_repo_breeds": [
          "rsync",
          "rhn",
          "yum"
        ],
        "kernel_file": "vmlinuz(.*)",
        "initrd_file": "initrd(.*)\\.img",
        "isolinux_ok": false,
        "default_autoinstall": "sample.ks",
        "kernel_options": "repo=$tree",
        "kernel_options_post": "",
        "boot_files": [],
        "boot_loaders": {
          "ppc64": [
            "grub"
          ]
        }
      },
      "fedora21": {
        "signatures": [
          "Packages"
        ],
        "version_file": "(fedora)-release-21-(.*)\\.noarch\\.rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "x86_64",
          "ppc",
          "ppc64",
          "ppc64le"
        ],
        "supported_repo_breeds": [
          "rsync",
          "rhn",
          "yum"
        ],
        "kernel_file": "vmlinuz(.*)",
        "initrd_file": "initrd(.*)\\.img",
        "isolinux_ok": false,
        "default_autoinstall": "sample.ks",
        "kernel_options": "repo=$tree",
        "kernel_options_post": "",
        "boot_files": [],
        "boot_loaders": {
          "ppc64": [
            "grub"
          ]
        }
      },
      "fedora22": {
        "signatures": [
          "Packages"
        ],
        "version_file": "(fedora)-release-22-(.*)\\.noarch\\.rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "x86_64",
          "ppc",
          "ppc64",
          "ppc64le"
        ],
        "supported_repo_breeds": [
          "rsync",
          "rhn",
          "yum"
        ],
        "kernel_file": "vmlinuz(.*)",
        "initrd_file": "initrd(.*)\\.img",
        "isolinux_ok": false,
        "default_autoinstall": "sample.ks",
        "kernel_options": "repo=$tree",
        "kernel_options_post": "",
        "boot_files": [],
        "boot_loaders": {
          "ppc64": [
            "grub"
          ]
        }
      },
      "fedora23": {
        "signatures": [
          "Packages"
        ],
        "version_file": "(fedora)-release-23-(.*)\\.noarch\\.rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "x86_64",
          "ppc",
          "ppc64",
          "ppc64le"
        ],
        "supported_repo_breeds": [
          "rsync",
          "rhn",
          "yum"
        ],
        "kernel_file": "vmlinuz(.*)",
        "initrd_file": "initrd(.*)\\.img",
        "isolinux_ok": false,
        "default_autoinstall": "sample.ks",
        "kernel_options": "repo=$tree",
        "kernel_options_post": "",
        "boot_files": [],
        "boot_loaders": {
          "ppc64": [
            "grub"
          ]
        }
      },
      "fedora24": {
        "signatures": [
          "Packages"
        ],
        "version_file": "(fedora)-release-24-(.*)\\.noarch\\.rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "x86_64",
          "ppc",
          "ppc64",
          "ppc64le"
        ],
        "supported_repo_breeds": [
          "rsync",
          "rhn",
          "yum"
        ],
        "kernel_file": "vmlinuz(.*)",
        "initrd_file": "initrd(.*)\\.img",
        "isolinux_ok": false,
        "default_autoinstall": "sample.ks",
        "kernel_options": "repo=$tree",
        "kernel_options_post": "",
        "boot_files": [],
        "boot_loaders": {
          "ppc64": [
            "grub"
          ]
        }
      },
      "fedora25": {
        "signatures": [
          "Packages"
        ],
        "version_file": "(fedora)-release-25-(.*)\\.noarch\\.rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "x86_64",
          "ppc",
          "ppc64",
          "ppc64le"
        ],
        "supported_repo_breeds": [
          "rsync",
          "rhn",
          "yum"
        ],
        "kernel_file": "vmlinuz(.*)",
        "initrd_file": "initrd(.*)\\.img",
        "isolinux_ok": false,
        "default_autoinstall": "sample.ks",
        "kernel_options": "repo=$tree",
        "kernel_options_post": "",
        "boot_files": [],
        "boot_loaders": {
          "ppc64": [
            "grub"
          ]
        }
      },
      "fedora26": {
        "signatures": [
          "Packages"
        ],
        "version_file": "(fedora)-release-26-(.*)\\.noarch\\.rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "aarch64",
          "i386",
          "x86_64",
          "ppc64",
          "ppc64le"
        ],
        "supported_repo_breeds": [
          "rsync",
          "rhn",
          "yum"
        ],
        "kernel_file": "vmlinuz(.*)",
        "initrd_file": "initrd(.*)\\.img",
        "isolinux_ok": false,
        "default_autoinstall": "sample.ks",
        "kernel_options": "repo=$tree",
        "kernel_options_post": "",
        "boot_files": [],
        "boot_loaders": {
          "ppc64": [
            "grub"
          ]
        }
      },
      "fedora27": {
        "signatures": [
          "Packages"
        ],
        "version_file": "(fedora)-release-27-(.*)\\.noarch\\.rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "aarch64",
          "i386",
          "x86_64",
          "ppc64",
          "ppc64le"
        ],
        "supported_repo_breeds": [
          "rsync",
          "rhn",
          "yum"
        ],
        "kernel_file": "vmlinuz(.*)",
        "initrd_file": "initrd(.*)\\.img",
        "isolinux_ok": false,
        "default_autoinstall": "sample.ks",
        "kernel_options": "repo=$tree",
        "kernel_options_post": "",
        "boot_files": [],
        "boot_loaders": {
          "ppc64": [
            "grub"
          ]
        }
      },
      "fedora28": {
        "signatures": [
          "Packages"
        ],
        "version_file": "(fedora)-release-28-(.*)\\.noarch\\.rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "aarch64",
          "i386",
          "x86_64",
          "ppc64",
          "ppc64le"
        ],
        "supported_repo_breeds": [
          "rsync",
          "rhn",
          "yum"
        ],
        "kernel_file": "vmlinuz(.*)",
        "initrd_file": "initrd(.*)\\.img",
        "isolinux_ok": false,
        "default_autoinstall": "sample.ks",
        "kernel_options": "repo=$tree",
        "kernel_options_post": "",
        "boot_files": [],
        "boot_loaders": {
          "ppc64": [
            "grub"
          ]
        }
      },
      "fedora29": {
        "signatures": [
          "Packages"
        ],
        "version_file": "(fedora)-release-29-(.*)\\.noarch\\.rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "aarch64",
          "i386",
          "x86_64",
          "ppc64",
          "ppc64le"
        ],
        "supported_repo_breeds": [
          "rsync",
          "rhn",
          "yum"
        ],
        "kernel_file": "vmlinuz(.*)",
        "initrd_file": "initrd(.*)\\.img",
        "isolinux_ok": false,
        "default_autoinstall": "sample.ks",
        "kernel_options": "repo=$tree",
        "kernel_options_post": "",
        "boot_files": [],
        "boot_loaders": {
          "ppc64": [
            "grub"
          ]
        }
      },
      "fedora30": {
        "signatures": [
          "Packages"
        ],
        "version_file": "(fedora)-release-30-(.*)\\.noarch\\.rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "aarch64",
          "i386",
          "x86_64",
          "ppc64le"
        ],
        "supported_repo_breeds": [
          "rsync",
          "rhn",
          "yum"
        ],
        "kernel_file": "vmlinuz(.*)",
        "initrd_file": "initrd(.*)\\.img",
        "isolinux_ok": false,
        "default_autoinstall": "sample.ks",
        "kernel_options": "repo=$tree",
        "kernel_options_post": "",
        "boot_files": [],
        "boot_loaders": {
          "ppc64": [
            "grub"
          ]
        }
      },
      "fedora31": {
        "signatures": [
          "Packages"
        ],
        "version_file": "(fedora)-release-31-(.*)\\.noarch\\.rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "aarch64",
          "i386",
          "x86_64",
          "ppc64le"
        ],
        "supported_repo_breeds": [
          "rsync",
          "rhn",
          "yum"
        ],
        "kernel_file": "vmlinuz(.*)",
        "initrd_file": "initrd(.*)\\.img",
        "isolinux_ok": false,
        "default_autoinstall": "sample.ks",
        "kernel_options": "repo=$tree",
        "kernel_options_post": "",
        "boot_files": [],
        "boot_loaders": {
          "ppc64": [
            "grub"
          ]
        }
      },

      "cloudlinux6": {
        "signatures": [
          "Packages"
        ],
        "version_file": "(cloudlinux)-release-(.*)\\.rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*).rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "x86_64",
          "ppc",
          "ppc64"
        ],
        "supported_repo_breeds": [
          "rsync",
          "rhn",
          "yum"
        ],
        "kernel_file": "vmlinuz(.*)",
        "initrd_file": "initrd(.*)\\.img",
        "isolinux_ok": false,
        "default_autoinstall": "sample.ks",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      }
    },
    "debian": {
      "squeeze": {
        "signatures": [
          "dists"
        ],
        "version_file": "Release",
        "version_file_regex": "Codename: squeeze",
        "kernel_arch": "linux-headers-(.*)\\.deb",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "amd64"
        ],
        "supported_repo_breeds": [
          "apt"
        ],
        "kernel_file": "vmlinuz(.*)",
        "initrd_file": "initrd(.*)\\.gz",
        "isolinux_ok": false,
        "default_autoinstall": "sample.seed",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "wheezy": {
        "signatures": [
          "dists"
        ],
        "version_file": "Release",
        "version_file_regex": "Codename: wheezy",
        "kernel_arch": "linux-headers-(.*)\\.deb",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "amd64"
        ],
        "supported_repo_breeds": [
          "apt"
        ],
        "kernel_file": "vmlinuz(.*)",
        "initrd_file": "initrd(.*)\\.gz",
        "isolinux_ok": false,
        "default_autoinstall": "sample.seed",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "jessie": {
        "signatures": [
          "dists"
        ],
        "version_file": "Release",
        "version_file_regex": "Codename: jessie",
        "kernel_arch": "linux-headers-(.*)\\.deb",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "amd64"
        ],
        "supported_repo_breeds": [
          "apt"
        ],
        "kernel_file": "vmlinuz(.*)",
        "initrd_file": "initrd(.*)\\.gz",
        "isolinux_ok": false,
        "default_autoinstall": "sample.seed",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "stretch": {
        "signatures": [
          "dists"
        ],
        "version_file": "Release",
        "version_file_regex": "Codename: stretch",
        "kernel_arch": "linux-headers-(.*)\\.deb",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "amd64"
        ],
        "supported_repo_breeds": [
          "apt"
        ],
        "kernel_file": "vmlinuz(.*)",
        "initrd_file": "initrd(.*)\\.gz",
        "isolinux_ok": false,
        "default_autoinstall": "sample.seed",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "buster": {
        "signatures": [
          "dists"
        ],
        "version_file": "Release",
        "version_file_regex": "Codename: buster",
        "kernel_arch": "linux-headers-(.*)\\.deb",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "amd64"
        ],
        "supported_repo_breeds": [
          "apt"
        ],
        "kernel_file": "vmlinuz(.*)",
        "initrd_file": "initrd(.*)\\.gz",
        "isolinux_ok": false,
        "default_autoinstall": "sample.seed",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      }
    },
    "ubuntu": {
      "artful": {
        "signatures": [
          "dists",
          ".disk"
        ],
        "version_file": "Release|mini-info",
        "version_file_regex": "Codename: artful|Ubuntu 17.10",
        "kernel_arch": "linux-headers-(.*)\\.deb",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "amd64",
          "ppc64el"
        ],
        "supported_repo_breeds": [
          "apt"
        ],
        "kernel_file": "(vm)?linux(.*)",
        "initrd_file": "initrd(.*)\\.gz",
        "isolinux_ok": false,
        "default_autoinstall": "sample.seed",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": [],
        "boot_loaders": {
          "ppc64el": [
            "grub"
          ]
        }
      },
      "lucid": {
        "signatures": [
          "dists",
          ".disk"
        ],
        "version_file": "Release|mini-info",
        "version_file_regex": "Codename: lucid|Ubuntu 10.04",
        "kernel_arch": "linux-headers-(.*)\\.deb",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "amd64"
        ],
        "supported_repo_breeds": [
          "apt"
        ],
        "kernel_file": "linux(.*)",
        "initrd_file": "initrd(.*)\\.gz",
        "isolinux_ok": false,
        "default_autoinstall": "sample.seed",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "oneiric": {
        "signatures": [
          "dists",
          ".disk"
        ],
        "version_file": "Release|mini-info",
        "version_file_regex": "Codename: oneiric|Ubuntu 11.10",
        "kernel_arch": "linux-headers-(.*)\\.deb",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "amd64"
        ],
        "supported_repo_breeds": [
          "apt"
        ],
        "kernel_file": "linux(.*)",
        "initrd_file": "initrd(.*)\\.gz",
        "isolinux_ok": false,
        "default_autoinstall": "sample.seed",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "precise": {
        "signatures": [
          "dists",
          ".disk"
        ],
        "version_file": "Release|mini-info",
        "version_file_regex": "Codename: precise|Ubuntu 12.04",
        "kernel_arch": "linux-headers-(.*)\\.deb",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "amd64"
        ],
        "supported_repo_breeds": [
          "apt"
        ],
        "kernel_file": "linux(.*)",
        "initrd_file": "initrd(.*)\\.gz",
        "isolinux_ok": false,
        "default_autoinstall": "sample.seed",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "quantal": {
        "signatures": [
          "dists",
          ".disk"
        ],
        "version_file": "Release|mini-info",
        "version_file_regex": "Codename: quantal|Ubuntu 12.10",
        "kernel_arch": "linux-headers-(.*)\\.deb",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "amd64"
        ],
        "supported_repo_breeds": [
          "apt"
        ],
        "kernel_file": "linux(.*)",
        "initrd_file": "initrd(.*)\\.gz",
        "isolinux_ok": false,
        "default_autoinstall": "sample.seed",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "raring": {
        "signatures": [
          "dists",
          ".disk"
        ],
        "version_file": "Release|mini-info",
        "version_file_regex": "Codename: raring|Ubuntu 13.04",
        "kernel_arch": "linux-headers-(.*)\\.deb",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "amd64"
        ],
        "supported_repo_breeds": [
          "apt"
        ],
        "kernel_file": "linux(.*)",
        "initrd_file": "initrd(.*)\\.gz",
        "isolinux_ok": false,
        "default_autoinstall": "sample.seed",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "saucy": {
        "signatures": [
          "dists",
          ".disk"
        ],
        "version_file": "Release|mini-info",
        "version_file_regex": "Codename: saucy|Ubuntu 13.10",
        "kernel_arch": "linux-headers-(.*)\\.deb",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "amd64"
        ],
        "supported_repo_breeds": [
          "apt"
        ],
        "kernel_file": "linux(.*)",
        "initrd_file": "initrd(.*)\\.gz",
        "isolinux_ok": false,
        "default_autoinstall": "sample.seed",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "trusty": {
        "signatures": [
          "dists",
          ".disk"
        ],
        "version_file": "Release|mini-info",
        "version_file_regex": "Codename: trusty|Ubuntu 14.04",
        "kernel_arch": "linux-headers-(.*)\\.deb",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "amd64",
          "ppc64el"
        ],
        "supported_repo_breeds": [
          "apt"
        ],
        "kernel_file": "(vm)?linux(.*)",
        "initrd_file": "initrd(.*)\\.gz",
        "isolinux_ok": false,
        "default_autoinstall": "sample.seed",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": [],
        "boot_loaders": {
          "ppc64el": [
            "grub"
          ]
        }
      },
      "utopic": {
        "signatures": [
          "dists",
          ".disk"
        ],
        "version_file": "Release|mini-info",
        "version_file_regex": "Codename: utopic|Ubuntu 14.10",
        "kernel_arch": "linux-headers-(.*)\\.deb",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "amd64",
          "ppc64el"
        ],
        "supported_repo_breeds": [
          "apt"
        ],
        "kernel_file": "(vm)?linux(.*)",
        "initrd_file": "initrd(.*)\\.gz",
        "isolinux_ok": false,
        "default_autoinstall": "sample.seed",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": [],
        "boot_loaders": {
          "ppc64el": [
            "grub"
          ]
        }
      },
      "vivid": {
        "signatures": [
          "dists",
          ".disk"
        ],
        "version_file": "Release|mini-info",
        "version_file_regex": "Codename: vivid|Ubuntu 15.04",
        "kernel_arch": "linux-headers-(.*)\\.deb",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "amd64",
          "ppc64el"
        ],
        "supported_repo_breeds": [
          "apt"
        ],
        "kernel_file": "(vm)?linux(.*)",
        "initrd_file": "initrd(.*)\\.gz",
        "isolinux_ok": false,
        "default_autoinstall": "sample.seed",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": [],
        "boot_loaders": {
          "ppc64el": [
            "grub"
          ]
        }
      },
      "wily": {
        "signatures": [
          "dists",
          ".disk"
        ],
        "version_file": "Release|mini-info",
        "version_file_regex": "Codename: wily|Ubuntu 15.10",
        "kernel_arch": "linux-headers-(.*)\\.deb",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "amd64",
          "ppc64el"
        ],
        "supported_repo_breeds": [
          "apt"
        ],
        "kernel_file": "(vm)?linux(.*)",
        "initrd_file": "initrd(.*)\\.gz",
        "isolinux_ok": false,
        "default_autoinstall": "sample.seed",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": [],
        "boot_loaders": {
          "ppc64el": [
            "grub"
          ]
        }
      },
      "xenial": {
        "signatures": [
          "dists",
          ".disk"
        ],
        "version_file": "Release|mini-info",
        "version_file_regex": "Codename: xenial|Ubuntu 16.04",
        "kernel_arch": "linux-headers-(.*)\\.deb",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "amd64",
          "ppc64el"
        ],
        "supported_repo_breeds": [
          "apt"
        ],
        "kernel_file": "(vm)?linux(.*)",
        "initrd_file": "initrd(.*)\\.gz",
        "isolinux_ok": false,
        "default_autoinstall": "sample.seed",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": [],
        "boot_loaders": {
          "ppc64el": [
            "grub"
          ]
        }
      },
      "yakkety": {
        "signatures": [
          "dists",
          ".disk"
        ],
        "version_file": "Release|mini-info",
        "version_file_regex": "Codename: yakkety|Ubuntu 16.10",
        "kernel_arch": "linux-headers-(.*)\\.deb",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "amd64",
          "ppc64el"
        ],
        "supported_repo_breeds": [
          "apt"
        ],
        "kernel_file": "(vm)?linux(.*)",
        "initrd_file": "initrd(.*)\\.gz",
        "isolinux_ok": false,
        "default_autoinstall": "sample.seed",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": [],
        "boot_loaders": {
          "ppc64el": [
            "grub"
          ]
        }
      },
      "zesty": {
        "signatures": [
          "dists",
          ".disk"
        ],
        "version_file": "Release|mini-info",
        "version_file_regex": "Codename: zesty|Ubuntu 17.04",
        "kernel_arch": "linux-headers-(.*)\\.deb",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "amd64",
          "ppc64el"
        ],
        "supported_repo_breeds": [
          "apt"
        ],
        "kernel_file": "(vm)?linux(.*)",
        "initrd_file": "initrd(.*)\\.gz",
        "isolinux_ok": false,
        "default_autoinstall": "sample.seed",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": [],
        "boot_loaders": {
          "ppc64el": [
            "grub"
          ]
        }
      },
      "bionic": {
        "signatures": [
          "dists",
          ".disk"
        ],
        "version_file": "Release|mini-info",
        "version_file_regex": "Codename: bionic|Ubuntu 18.04",
        "kernel_arch": "linux-headers-(.*)\\.deb",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "amd64",
          "ppc64el"
        ],
        "supported_repo_breeds": [
          "apt"
        ],
        "kernel_file": "(linux|vmlinuz(.*))",
        "initrd_file": "initrd($|.gz$|.lz$)",
        "isolinux_ok": false,
        "default_autoinstall": "sample.seed",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": [],
        "boot_loaders": {
          "ppc64el": [
            "grub"
          ]
        }
      },
      "cosmic": {
        "signatures": [
          "dists",
          ".disk"
        ],
        "version_file": "Release|mini-info",
        "version_file_regex": "Codename: cosmic|Ubuntu 18.10",
        "kernel_arch": "linux-headers-(.*)\\.deb",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "amd64"
        ],
        "supported_repo_breeds": [
          "apt"
        ],
        "kernel_file": "linux(.*)",
        "initrd_file": "initrd(.*)\\.gz",
        "isolinux_ok": false,
        "default_autoinstall": "sample.seed",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "disco": {
        "signatures": [
          "dists",
          ".disk"
        ],
        "version_file": "Release|mini-info",
        "version_file_regex": "Codename: disco|Ubuntu 19.04",
        "kernel_arch": "linux-headers-(.*)\\.deb",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "amd64"
        ],
        "supported_repo_breeds": [
          "apt"
        ],
        "kernel_file": "(linux|vmlinuz(.*))",
        "initrd_file": "initrd($|.gz$|.lz$)",
        "isolinux_ok": false,
        "default_autoinstall": "sample.seed",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "eoan": {
        "signatures": [
          "dists",
          ".disk"
        ],
        "version_file": "Release|mini-info",
        "version_file_regex": "Codename: eoan|Ubuntu 19.10",
        "kernel_arch": "linux-headers-(.*)\\.deb",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "amd64"
        ],
        "supported_repo_breeds": [
          "apt"
        ],
        "kernel_file": "(linux|vmlinuz(.*))",
        "initrd_file": "initrd($|.gz$|.lz$)",
        "isolinux_ok": false,
        "default_autoinstall": "sample.seed",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      }
    },
    "suse": {
      "suse": {
        "signatures": [],
        "version_file": "",
        "version_file_regex": "",
        "kernel_arch": "",
        "kernel_arch_regex": "",
        "supported_arches": [
          "i386",
          "x86_64",
          "ia64",
          "ppc",
          "ppc64",
          "s390",
          "s390x"
        ],
        "supported_repo_breeds": [],
        "kernel_file": "",
        "initrd_file": "",
        "isolinux_ok": false,
        "default_autoinstall": "",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "opensuse11.2": {
        "signatures": [
          "suse"
        ],
        "version_file": "openSUSE-release-11.2-(.*).rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "i586",
          "x86_64"
        ],
        "supported_repo_breeds": [
          "yum"
        ],
        "kernel_file": "(linux|vmlinuz(.*))",
        "initrd_file": "initrd(.*)",
        "isolinux_ok": false,
        "default_autoinstall": "sample_autoyast.xml",
        "kernel_options": "install=$tree",
        "kernel_options_post": "",
        "boot_files": []
      },
      "opensuse11.3": {
        "signatures": [
          "suse"
        ],
        "version_file": "openSUSE-release-11.3-(.*).rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "i586",
          "x86_64"
        ],
        "supported_repo_breeds": [
          "yum"
        ],
        "kernel_file": "(linux|vmlinuz(.*))",
        "initrd_file": "initrd(.*)",
        "isolinux_ok": false,
        "default_autoinstall": "sample_autoyast.xml",
        "kernel_options": "install=$tree",
        "kernel_options_post": "",
        "boot_files": []
      },
      "opensuse11.4": {
        "signatures": [
          "suse"
        ],
        "version_file": "openSUSE-release-11.4-(.*).rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "i586",
          "x86_64"
        ],
        "supported_repo_breeds": [
          "yum"
        ],
        "kernel_file": "(linux|vmlinuz(.*))",
        "initrd_file": "initrd(.*)",
        "isolinux_ok": false,
        "default_autoinstall": "sample_autoyast.xml",
        "kernel_options": "install=$tree",
        "kernel_options_post": "",
        "boot_files": []
      },
      "opensuse12.1": {
        "signatures": [
          "suse"
        ],
        "version_file": "openSUSE-release-12.1-(.*).rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "i586",
          "x86_64"
        ],
        "supported_repo_breeds": [
          "yum"
        ],
        "kernel_file": "(linux|vmlinuz(.*))",
        "initrd_file": "initrd(.*)",
        "isolinux_ok": false,
        "default_autoinstall": "sample_autoyast.xml",
        "kernel_options": "install=$tree",
        "kernel_options_post": "",
        "boot_files": []
      },
      "opensuse12.2": {
        "signatures": [
          "suse"
        ],
        "version_file": "openSUSE-release-12.2-(.*).rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "i586",
          "x86_64"
        ],
        "supported_repo_breeds": [
          "yum"
        ],
        "kernel_file": "(linux|vmlinuz(.*))",
        "initrd_file": "initrd(.*)",
        "isolinux_ok": false,
        "default_autoinstall": "sample_autoyast.xml",
        "kernel_options": "install=$tree",
        "kernel_options_post": "",
        "boot_files": []
      },
      "opensuse12.3": {
        "signatures": [
          "suse"
        ],
        "version_file": "openSUSE-release-12.3-(.*).rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "i586",
          "x86_64"
        ],
        "supported_repo_breeds": [
          "yum"
        ],
        "kernel_file": "(linux|vmlinuz(.*))",
        "initrd_file": "initrd(.*)",
        "isolinux_ok": false,
        "default_autoinstall": "sample_autoyast.xml",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "opensuse13.1": {
        "signatures": [
          "suse"
        ],
        "version_file": "openSUSE-release-13.1-(.*).rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "i586",
          "x86_64"
        ],
        "supported_repo_breeds": [
          "yum"
        ],
        "kernel_file": "(linux|vmlinuz(.*))",
        "initrd_file": "initrd(.*)",
        "isolinux_ok": false,
        "default_autoinstall": "sample_autoyast.xml",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "opensuse13.2": {
        "signatures": [
          "suse"
        ],
        "version_file": "openSUSE-release-13.2-(.*).rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "i586",
          "x86_64"
        ],
        "supported_repo_breeds": [
          "yum"
        ],
        "kernel_file": "(linux|vmlinuz(.*))",
        "initrd_file": "initrd(.*)",
        "isolinux_ok": false,
        "default_autoinstall": "sample_autoyast.xml",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "opensuse15.0": {
        "signatures": [
          ""
        ],
        "version_file": "openSUSE-release-15.0-(.*).rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "aarch64",
          "x86_64",
          "ppc64le"
        ],
        "supported_repo_breeds": [
          "yum"
        ],
        "kernel_file": "(linux|vmlinuz(.*))",
        "initrd_file": "initrd(.*)",
        "isolinux_ok": false,
        "default_autoinstall": "sample_autoyast.xml",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "opensuse15.1": {
        "signatures": [
          ""
        ],
        "version_file": "openSUSE-release-15.1-(.*).rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "aarch64",
          "x86_64",
          "ppc64le"
        ],
        "supported_repo_breeds": [
          "yum"
        ],
        "kernel_file": "(linux|vmlinuz(.*))",
        "initrd_file": "initrd(.*)",
        "isolinux_ok": false,
        "default_autoinstall": "sample_autoyast.xml",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "sles10generic": {
        "signatures": [
          "suse"
        ],
        "version_file": "sles-release-10(.*).rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "i586",
          "x86_64",
          "ppc64"
        ],
        "supported_repo_breeds": [
          "yum"
        ],
        "kernel_file": "linux[64.gz]?",
        "initrd_file": "initrd[64]?",
        "isolinux_ok": false,
        "default_autoinstall": "sample_autoyast.xml",
        "kernel_options": "install=$tree",
        "kernel_options_post": "",
        "boot_files": []
      },
      "sles11": {
        "signatures": [
          "suse"
        ],
        "version_file": "sles-release-11-(.*).rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "i586",
          "x86_64",
          "ppc64",
          "s390x"
        ],
        "supported_repo_breeds": [
          "yum"
        ],
        "kernel_file": "linux[64.gz]?",
        "initrd_file": "initrd[64]?",
        "isolinux_ok": false,
        "default_autoinstall": "sample_autoyast.xml",
        "kernel_options": "install=$tree",
        "kernel_options_post": "",
        "boot_files": []
      },
      "sles11sp1": {
        "signatures": [
          "suse"
        ],
        "version_file": "sles-release-11.1-(.*).rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "i586",
          "x86_64",
          "ppc64",
          "s390x"
        ],
        "supported_repo_breeds": [
          "yum"
        ],
        "kernel_file": "linux[64.gz]?",
        "initrd_file": "initrd[64]?",
        "isolinux_ok": false,
        "default_autoinstall": "sample_autoyast.xml",
        "kernel_options": "install=$tree",
        "kernel_options_post": "",
        "boot_files": []
      },
      "sles11sp2": {
        "signatures": [
          "suse"
        ],
        "version_file": "sles-release-11.2-(.*).rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "i586",
          "x86_64",
          "ppc64",
          "s390x"
        ],
        "supported_repo_breeds": [
          "yum"
        ],
        "kernel_file": "linux[64.gz]?",
        "initrd_file": "initrd[64]?",
        "isolinux_ok": false,
        "default_autoinstall": "sample_autoyast.xml",
        "kernel_options": "install=$tree",
        "kernel_options_post": "",
        "boot_files": []
      },
      "sles11sp3": {
        "signatures": [
          "suse"
        ],
        "version_file": "sles-release-11.3-(.*).rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "i586",
          "x86_64",
          "ppc64",
          "s390x"
        ],
        "supported_repo_breeds": [
          "yum"
        ],
        "kernel_file": "linux[64.gz]?",
        "initrd_file": "initrd[64]?",
        "isolinux_ok": false,
        "default_autoinstall": "sample_autoyast.xml",
        "kernel_options": "install=$tree",
        "kernel_options_post": "",
        "boot_files": []
      },
      "sles11sp4": {
        "signatures": [
          "suse"
        ],
        "version_file": "sles-release-11.4-(.*).rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "i586",
          "x86_64",
          "ppc64"
        ],
        "supported_repo_breeds": [
          "yum"
        ],
        "kernel_file": "linux[64.gz]?",
        "initrd_file": "initrd[64]?",
        "isolinux_ok": false,
        "default_autoinstall": "sample_autoyast.xml",
        "kernel_options": "install=$tree",
        "kernel_options_post": "",
        "boot_files": []
      },
      "sles11generic": {
        "signatures": [
          "suse"
        ],
        "version_file": "sles-release-11(.*).rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "i586",
          "x86_64",
          "ppc64",
          "s390x"
        ],
        "supported_repo_breeds": [
          "yum"
        ],
        "kernel_file": "linux[64.gz]?",
        "initrd_file": "initrd[64]?",
        "isolinux_ok": false,
        "default_autoinstall": "sample_autoyast.xml",
        "kernel_options": "install=$tree",
        "kernel_options_post": "",
        "boot_files": []
      },
      "sles12": {
        "signatures": [
          "suse"
        ],
        "version_file": "(sles|SLES-for-VMware)-release-12-(.*).rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "x86_64",
          "s390x",
          "ppc64le"
        ],
        "supported_repo_breeds": [
          "yum"
        ],
        "kernel_file": "linux[64.gz]?",
        "initrd_file": "initrd[64]?",
        "isolinux_ok": false,
        "default_autoinstall": "sample_autoyast.xml",
        "kernel_options": "install=$tree",
        "kernel_options_post": "",
        "boot_files": []
      },
      "sles12generic": {
        "signatures": [
          "suse"
        ],
        "version_file": "(sles|SLES-for-VMware)-release-12(.*).rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "x86_64",
          "s390x",
          "ppc64le"
        ],
        "supported_repo_breeds": [
          "yum"
        ],
        "kernel_file": "linux[64.gz]?",
        "initrd_file": "initrd[64]?",
        "isolinux_ok": false,
        "default_autoinstall": "sample_autoyast.xml",
        "kernel_options": "install=$tree",
        "kernel_options_post": "",
        "boot_files": [],
        "boot_loaders": {
          "ppc64le": [
            "grub"
          ]
        }
      },
      "sles12sp1": {
        "signatures": [
          "suse"
        ],
        "version_file": "(sles|SLES-for-VMware)-release-12.1-(.*).rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "i586",
          "x86_64",
          "ppc64le"
        ],
        "supported_repo_breeds": [
          "yum"
        ],
        "kernel_file": "linux[64.gz]?",
        "initrd_file": "initrd[64]?",
        "isolinux_ok": false,
        "default_autoinstall": "sample_autoyast.xml",
        "kernel_options": "install=$tree",
        "kernel_options_post": "",
        "boot_files": [],
        "boot_loaders": {
          "ppc64le": [
            "grub"
          ]
        }
      },
      "sles12sp2": {
        "signatures": [
          "suse"
        ],
        "version_file": "(sles|SLES-for-VMware)-release-12.2-(.*).rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "i586",
          "x86_64",
          "ppc64le"
        ],
        "supported_repo_breeds": [
          "yum"
        ],
        "kernel_file": "linux[64.gz]?",
        "initrd_file": "initrd[64]?",
        "isolinux_ok": false,
        "default_autoinstall": "sample_autoyast.xml",
        "kernel_options": "install=$tree",
        "kernel_options_post": "",
        "boot_files": [],
        "boot_loaders": {
          "ppc64le": [
            "grub"
          ]
        }
      },
      "sles12sp3": {
        "signatures": [
          "suse"
        ],
        "version_file": "(sles|SLES-for-VMware)-release-12.3-(.*).rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "i586",
          "x86_64",
          "ppc64le"
        ],
        "supported_repo_breeds": [
          "yum"
        ],
        "kernel_file": "linux[64.gz]?",
        "initrd_file": "initrd[64]?",
        "isolinux_ok": false,
        "default_autoinstall": "sample_autoyast.xml",
        "kernel_options": "install=$tree",
        "kernel_options_post": "",
        "boot_files": [],
        "boot_loaders": {
          "ppc64le": [
            "grub"
          ]
        }
      },
      "sles12sp4": {
        "signatures": [
          "suse"
        ],
        "version_file": "(sles|SLES-for-VMware|SLES_SAP)-release-12.4-(.*).rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "i586",
          "x86_64",
          "ppc64le"
        ],
        "supported_repo_breeds": [
          "yum"
        ],
        "kernel_file": "linux[64.gz]?",
        "initrd_file": "initrd[64]?",
        "isolinux_ok": false,
        "default_autoinstall": "sample_autoyast.xml",
        "kernel_options": "dhcptimeout=120, net.ifnames=1, install=$tree",
        "kernel_options_post": "",
        "boot_files": [],
        "boot_loaders": {
          "ppc64le": [
            "grub"
          ]
        }
      },
      "sles12sp5": {
        "signatures": [
          "suse"
        ],
        "version_file": "(sles|SLES-for-VMware|SLES_SAP)-release-12.5-(.*).rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "i586",
          "x86_64",
          "ppc64le"
        ],
        "supported_repo_breeds": [
          "yum"
        ],
        "kernel_file": "linux[64.gz]?",
        "initrd_file": "initrd[64]?",
        "isolinux_ok": false,
        "default_autoinstall": "sample_autoyast.xml",
        "kernel_options": "dhcptimeout=120, net.ifnames=1, install=$tree",
        "kernel_options_post": "",
        "boot_files": [],
        "boot_loaders": {
          "ppc64le": [
            "grub"
          ]
        }
      },
      "sles15generic": {
        "signatures": [
          "."
        ],
        "version_file": "sles-release-15(.*).rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "x86_64",
          "s390x",
          "ppc64le"
        ],
        "supported_repo_breeds": [
          "yum"
        ],
        "kernel_file": "linux[64.gz]?",
        "initrd_file": "initrd[64]?",
        "isolinux_ok": false,
        "default_autoinstall": "sample_autoyast.xml",
        "kernel_options": "install=$tree",
        "kernel_options_post": "",
        "boot_files": []
      }
    },
    "vmware": {
      "esx4": {
        "signatures": [
          "VMware/RPMS"
        ],
        "version_file": "vmware-esx-vmware-release-(.*)\\.rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*)\\.x86_64\\.rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "x86_64"
        ],
        "supported_repo_breeds": [
          "yum"
        ],
        "kernel_file": "vmlinuz",
        "initrd_file": "initrd\\.img",
        "isolinux_ok": true,
        "default_autoinstall": "sample_esx4.ks",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "esxi4": {
        "signatures": [
          "imagedd.bz2"
        ],
        "version_file": "vmkernel\\.gz",
        "version_file_regex": "^.*ESXi 4.1\\.(\\d)+ \\[Releasebuild-([\\d]+)\\].*$",
        "kernel_arch": "vmkernel\\.gz",
        "kernel_arch_regex": "^.*SystemVsiCpuArch.*(X86_64).*$",
        "supported_arches": [
          "x86_64"
        ],
        "supported_repo_breeds": [],
        "kernel_file": "mboot\\.c32",
        "initrd_file": "vmkboot\\.gz",
        "isolinux_ok": false,
        "default_autoinstall": "sample_esxi4.ks",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": [
          "vmkernel.gz",
          "sys.vgz",
          "cim.vgz",
          "ienviron.vgz",
          "install.vgz"
        ]
      },
      "esxi5": {
        "signatures": [
          "tboot.b00"
        ],
        "version_file": "s\\.v00",
        "version_file_regex": "^.*ESXi 5\\.0\\.(.*)build-([\\d]+).*$",
        "kernel_arch": "tools\\.t00",
        "kernel_arch_regex": "^.*(x86_64).*$",
        "supported_arches": [
          "x86_64"
        ],
        "supported_repo_breeds": [],
        "kernel_file": "mboot\\.c32",
        "initrd_file": "imgpayld\\.tgz",
        "isolinux_ok": false,
        "default_autoinstall": "sample_esxi5.ks",
        "kernel_options": "",
        "kernel_options_post": "",
        "template_files": "/etc/cobbler/boot_loader_conf/bootcfg_esxi5.template=$local_img_path/cobbler-boot.cfg",
        "boot_files": [
          "*.*"
        ]
      },
      "esxi51": {
        "signatures": [
          "tboot.b00"
        ],
        "version_file": "s\\.v00",
        "version_file_regex": "^.*ESXi 5\\.1\\.(.*)build-([\\d]+).*$",
        "kernel_arch": "tools\\.t00",
        "kernel_arch_regex": "^.*(x86_64).*$",
        "supported_arches": [
          "x86_64"
        ],
        "supported_repo_breeds": [],
        "kernel_file": "mboot\\.c32",
        "initrd_file": "imgpayld\\.tgz",
        "isolinux_ok": false,
        "default_autoinstall": "sample_esxi5.ks",
        "kernel_options": "",
        "kernel_options_post": "",
        "template_files": "/etc/cobbler/boot_loader_conf/bootcfg_esxi51.template=$local_img_path/cobbler-boot.cfg",
        "boot_files": [
          "*.*"
        ]
      },
      "esxi55": {
        "signatures": [
          "tboot.b00"
        ],
        "version_file": "s\\.v00",
        "version_file_regex": "^.*ESXi 5\\.5\\.(.*)build-([\\d]+).*$",
        "kernel_arch": "tools\\.t00",
        "kernel_arch_regex": "^.*(x86_64).*$",
        "supported_arches": [
          "x86_64"
        ],
        "supported_repo_breeds": [],
        "kernel_file": "mboot\\.c32",
        "initrd_file": "imgpayld\\.tgz",
        "isolinux_ok": false,
        "default_autoinstall": "sample_esxi5.ks",
        "kernel_options": "",
        "kernel_options_post": "",
        "template_files": "/etc/cobbler/boot_loader_conf/bootcfg_esxi55.template=$local_img_path/cobbler-boot.cfg",
        "boot_files": [
          "*.*"
        ]
      },
      "esxi60": {
        "signatures": [
          "tboot.b00"
        ],
        "version_file": "s\\.v00",
        "version_file_regex": "^.*ESXi 6\\.0\\.(.*)build-([\\d]+).*$",
        "kernel_arch": "tools\\.t00",
        "kernel_arch_regex": "^.*(x86_64).*$",
        "supported_arches": [
          "x86_64"
        ],
        "supported_repo_breeds": [],
        "kernel_file": "mboot\\.c32",
        "initrd_file": "imgpayld\\.tgz",
        "isolinux_ok": false,
        "default_autoinstall": "sample_esxi5.ks",
        "kernel_options": "",
        "kernel_options_post": "",
        "template_files": "/etc/cobbler/boot_loader_conf/bootcfg_esxi60.template=$local_img_path/cobbler-boot.cfg",
        "boot_files": [
          "*.*"
        ]
      },
      "esxi65": {
        "signatures": [
          "tboot.b00"
        ],
        "version_file": "vmware-esx-base-osl\\.txt",
        "version_file_regex": "^(VMware )?ESXi (v)?6\\.5.*$",
        "kernel_arch": "tools\\.t00",
        "kernel_arch_regex": "^.*(x86_64).*$",
        "supported_arches": [
          "x86_64"
        ],
        "supported_repo_breeds": [],
        "kernel_file": "mboot\\.c32",
        "initrd_file": "imgpayld\\.tgz",
        "isolinux_ok": false,
        "default_autoinstall": "sample_esxi6.ks",
        "kernel_options": "",
        "kernel_options_post": "",
        "template_files": "/etc/cobbler/boot_loader_conf/bootcfg_esxi65.template=$local_img_path/cobbler-boot.cfg",
        "boot_files": [
          "*.*"
        ]
      },
      "esxi67": {
        "signatures": [
          "b.b00"
        ],
        "version_file": "vmware-esx-base-osl\\.txt",
        "version_file_regex": "^(VMware )?ESXi (v)?6\\.7.*$",
        "kernel_arch": "tools\\.t00",
        "kernel_arch_regex": "^.*(x86_64).*$",
        "supported_arches": [
          "x86_64"
        ],
        "supported_repo_breeds": [],
        "kernel_file": "mboot\\.c32",
        "initrd_file": "imgpayld\\.tgz",
        "isolinux_ok": false,
        "default_autoinstall": "sample_esxi6.ks",
        "kernel_options": "",
        "kernel_options_post": "",
        "template_files": "/etc/cobbler/boot_loader_conf/bootcfg_esxi67.template=$local_img_path/cobbler-boot.cfg",
        "boot_files": [
          "*.*"
        ]
      }
    },
    "freebsd": {
      "freebsd8.2": {
        "signatures": [
          "boot"
        ],
        "version_file": "8\\.2-RELEASE",
        "version_file_regex": null,
        "kernel_arch": "device\\.hints",
        "kernel_arch_regex": "^.*FreeBSD: src/sys/(.*)/conf/GENERIC\\.hints.*$",
        "supported_arches": [
          "i386",
          "amd64"
        ],
        "supported_repo_breeds": [],
        "kernel_file": "pxeboot(.*)",
        "initrd_file": "mfsroot\\.gz",
        "isolinux_ok": false,
        "default_autoinstall": "",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "freebsd8.3": {
        "signatures": [
          "boot"
        ],
        "version_file": "8\\.3-RELEASE",
        "version_file_regex": null,
        "kernel_arch": "device\\.hints",
        "kernel_arch_regex": "^.*FreeBSD: src/sys/(.*)/conf/GENERIC\\.hints.*$",
        "supported_arches": [
          "i386",
          "amd64"
        ],
        "supported_repo_breeds": [],
        "kernel_file": "pxeboot(.*)",
        "initrd_file": "mfsroot\\.gz",
        "isolinux_ok": false,
        "default_autoinstall": "",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "freebsd8.4": {
        "signatures": [
          "boot"
        ],
        "version_file": "8\\.4-RELEASE",
        "version_file_regex": null,
        "kernel_arch": "device\\.hints",
        "kernel_arch_regex": "^.*FreeBSD: src/sys/(.*)/conf/GENERIC\\.hints.*$",
        "supported_arches": [
          "i386",
          "amd64"
        ],
        "supported_repo_breeds": [],
        "kernel_file": "pxeboot(.*)",
        "initrd_file": "mfsroot\\.gz",
        "isolinux_ok": false,
        "default_autoinstall": "",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "freebsd9.0": {
        "signatures": [
          "boot"
        ],
        "version_file": "device\\.hints",
        "version_file_regex": "^.*FreeBSD: release/9.0(.*)/sys/(.*)/conf/GENERIC.hints.*$",
        "kernel_arch": "device\\.hints",
        "kernel_arch_regex": "^.*FreeBSD: release/9.0(.*)/sys/(.*)/conf/GENERIC.hints.*$",
        "supported_arches": [
          "i386",
          "amd64"
        ],
        "supported_repo_breeds": [],
        "kernel_file": "pxeboot(.*)",
        "initrd_file": "mbr",
        "isolinux_ok": false,
        "default_autoinstall": "",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "freebsd9.1": {
        "signatures": [
          "boot"
        ],
        "version_file": "device\\.hints",
        "version_file_regex": "^.*FreeBSD: release/9.1(.*)/sys/(.*)/conf/GENERIC.hints.*$",
        "kernel_arch": "device\\.hints",
        "kernel_arch_regex": "^.*FreeBSD: release/9.1(.*)/sys/(.*)/conf/GENERIC.hints.*$",
        "supported_arches": [
          "i386",
          "amd64"
        ],
        "supported_repo_breeds": [],
        "kernel_file": "pxeboot(.*)",
        "initrd_file": "mbr",
        "isolinux_ok": false,
        "default_autoinstall": "",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "freebsd9.2": {
        "signatures": [
          "boot"
        ],
        "version_file": "device\\.hints",
        "version_file_regex": "^.*FreeBSD: release/9.2(.*)/sys/(.*)/conf/GENERIC.hints.*$",
        "kernel_arch": "device\\.hints",
        "kernel_arch_regex": "^.*FreeBSD: release/9.2(.*)/sys/(.*)/conf/GENERIC.hints.*$",
        "supported_arches": [
          "i386",
          "amd64"
        ],
        "supported_repo_breeds": [],
        "kernel_file": "pxeboot(.*)",
        "initrd_file": "mbr",
        "isolinux_ok": false,
        "default_autoinstall": "",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "freebsd9.3": {
        "signatures": [
          "boot"
        ],
        "version_file": "device\\.hints",
        "version_file_regex": "^.*FreeBSD: release/9.3(.*)/sys/(.*)/conf/GENERIC.hints.*$",
        "kernel_arch": "device\\.hints",
        "kernel_arch_regex": "^.*FreeBSD: release/9.3(.*)/sys/(.*)/conf/GENERIC.hints.*$",
        "supported_arches": [
          "i386",
          "amd64"
        ],
        "supported_repo_breeds": [],
        "kernel_file": "pxeboot(.*)",
        "initrd_file": "mbr",
        "isolinux_ok": false,
        "default_autoinstall": "",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "freebsd10.0": {
        "signatures": [
          "boot"
        ],
        "version_file": "freebsd-version",
        "version_file_regex": "USERLAND_VERSION=\"10.0-RELEASE\"",
        "kernel_arch": "device\\.hints",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "amd64"
        ],
        "supported_repo_breeds": [],
        "kernel_file": "base.txz",
        "initrd_file": "base.txz",
        "isolinux_ok": false,
        "default_autoinstall": "",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "freebsd10.1": {
        "signatures": [
          "boot"
        ],
        "version_file": "freebsd-version",
        "version_file_regex": "USERLAND_VERSION=\"10.1-RELEASE\"",
        "kernel_arch": "device\\.hints",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "amd64"
        ],
        "supported_repo_breeds": [],
        "kernel_file": "base.txz",
        "initrd_file": "base.txz",
        "isolinux_ok": false,
        "default_autoinstall": "",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "freebsd10.2": {
        "signatures": [
          "boot"
        ],
        "version_file": "freebsd-version",
        "version_file_regex": "USERLAND_VERSION=\"10.2-RELEASE\"",
        "kernel_arch": "device\\.hints",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "amd64"
        ],
        "supported_repo_breeds": [],
        "kernel_file": "base.txz",
        "initrd_file": "base.txz",
        "isolinux_ok": false,
        "default_autoinstall": "",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "freebsd10.3": {
        "signatures": [
          "boot"
        ],
        "version_file": "freebsd-version",
        "version_file_regex": "USERLAND_VERSION=\"10.3-RELEASE\"",
        "kernel_arch": "device\\.hints",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "amd64"
        ],
        "supported_repo_breeds": [],
        "kernel_file": "base.txz",
        "initrd_file": "base.txz",
        "isolinux_ok": false,
        "default_autoinstall": "",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "freebsd10.4": {
        "signatures": [
          "boot"
        ],
        "version_file": "freebsd-version",
        "version_file_regex": "USERLAND_VERSION=\"10.4-RELEASE\"",
        "kernel_arch": "device\\.hints",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "amd64"
        ],
        "supported_repo_breeds": [],
        "kernel_file": "base.txz",
        "initrd_file": "base.txz",
        "isolinux_ok": false,
        "default_autoinstall": "",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "freebsd11.0": {
        "signatures": [
          "boot"
        ],
        "version_file": "freebsd-version",
        "version_file_regex": "USERLAND_VERSION=\"11.0-RELEASE.*\"",
        "kernel_arch": "device\\.hints",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "amd64"
        ],
        "supported_repo_breeds": [],
        "kernel_file": "base.txz",
        "initrd_file": "base.txz",
        "isolinux_ok": false,
        "default_autoinstall": "",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "freebsd11.1": {
        "signatures": [
          "boot"
        ],
        "version_file": "freebsd-version",
        "version_file_regex": "USERLAND_VERSION=\"11.1-RELEASE.*\"",
        "kernel_arch": "device\\.hints",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "amd64"
        ],
        "supported_repo_breeds": [],
        "kernel_file": "base.txz",
        "initrd_file": "base.txz",
        "isolinux_ok": false,
        "default_autoinstall": "",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "freebsd11.2": {
        "signatures": [
          "boot"
        ],
        "version_file": "freebsd-version",
        "version_file_regex": "USERLAND_VERSION=\"11.2-RELEASE.*\"",
        "kernel_arch": "device\\.hints",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "amd64"
        ],
        "supported_repo_breeds": [],
        "kernel_file": "base.txz",
        "initrd_file": "base.txz",
        "isolinux_ok": false,
        "default_autoinstall": "",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "freebsd11.3": {
        "signatures": [
          "boot"
        ],
        "version_file": "freebsd-version",
        "version_file_regex": "USERLAND_VERSION=\"11.3-RELEASE.*\"",
        "kernel_arch": "device\\.hints",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "amd64"
        ],
        "supported_repo_breeds": [],
        "kernel_file": "base.txz",
        "initrd_file": "base.txz",
        "isolinux_ok": false,
        "default_autoinstall": "",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "freebsd12.0": {
        "signatures": [
          "boot"
        ],
        "version_file": "freebsd-version",
        "version_file_regex": "USERLAND_VERSION=\"12.0-RELEASE.*\"",
        "kernel_arch": "device\\.hints",
        "kernel_arch_regex": null,
        "supported_arches": [
          "i386",
          "amd64"
        ],
        "supported_repo_breeds": [],
        "kernel_file": "base.txz",
        "initrd_file": "base.txz",
        "isolinux_ok": false,
        "default_autoinstall": "",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      }
    },
    "xen": {
      "xcp16": {
        "signatures": [
          "packages.main"
        ],
        "version_file": "^XS-REPOSITORY$",
        "version_file_regex": "^.*product=\"XCP\" version=\"1\\.6\\.([0-9]+)\".*$",
        "kernel_arch": "xen\\.gz",
        "kernel_arch_regex": "^.*(x86_64).*$",
        "supported_arches": [
          "x86_64"
        ],
        "supported_repo_breeds": [],
        "kernel_file": "vmlinuz",
        "initrd_file": "xen\\.gz",
        "isolinux_ok": false,
        "default_autoinstall": "",
        "kernel_options": "dom0_max_vcpus=1-2 dom0_mem=max:752M,752M",
        "kernel_options_post": "",
        "boot_files": [
          "install.img"
        ]
      },
      "xenserver620": {
        "signatures": [
          "packages.xenserver"
        ],
        "version_file": "^XS-REPOSITORY$",
        "version_file_regex": "^.*product=\"XenServer\" version=\"6\\.2\\.([0-9]+)\".*$",
        "kernel_arch": "xen\\.gz",
        "kernel_arch_regex": "^.*(x86_64).*$",
        "supported_arches": [
          "x86_64"
        ],
        "supported_repo_breeds": [],
        "kernel_file": "mboot\\.c32",
        "initrd_file": "xen\\.gz",
        "isolinux_ok": false,
        "default_autoinstall": "",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": [
          "install.img"
        ]
      },
      "xenserver650": {
        "signatures": [
          "packages.xenserver"
        ],
        "version_file": "^XS-REPOSITORY$",
        "version_file_regex": "^.*product=\"XenServer\" version=\"6\\.5\\.([0-9]+)\".*$",
        "kernel_arch": "xen\\.gz",
        "kernel_arch_regex": "^.*(x86_64).*$",
        "supported_arches": [
          "x86_64"
        ],
        "supported_repo_breeds": [],
        "kernel_file": "mboot\\.c32",
        "initrd_file": "xen\\.gz",
        "isolinux_ok": false,
        "default_autoinstall": "",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": [
          "install.img"
        ]
      },
      "xenserver700": {
        "signatures": [
          "packages.xenserver"
        ],
        "version_file": "^XS-REPOSITORY$",
        "version_file_regex": "^.*product=\"XenServer\" version=\"7\\.0\\.([0-9]+)\".*$",
        "kernel_arch": "xen\\.gz",
        "kernel_arch_regex": "^.*(x86_64).*$",
        "supported_arches": [
          "x86_64"
        ],
        "supported_repo_breeds": [],
        "kernel_file": "mboot\\.c32",
        "initrd_file": "xen\\.gz",
        "isolinux_ok": false,
        "default_autoinstall": "",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": [
          "install.img"
        ]
      },
      "xenserver710": {
        "signatures": [
          "packages.xenserver"
        ],
        "version_file": "^XS-REPOSITORY$",
        "version_file_regex": "^.*product=\"XenServer\" version=\"7\\.1\\.([0-9]+)\".*$",
        "kernel_arch": "xen\\.gz",
        "kernel_arch_regex": "^.*(x86_64).*$",
        "supported_arches": [
          "x86_64"
        ],
        "supported_repo_breeds": [],
        "kernel_file": "mboot\\.c32",
        "initrd_file": "xen\\.gz",
        "isolinux_ok": false,
        "default_autoinstall": "",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": [
          "install.img"
        ]
      },
      "xenserver720": {
        "signatures": [
          "packages.xenserver"
        ],
        "version_file": "^XS-REPOSITORY$",
        "version_file_regex": "^.*product=\"XenServer\" version=\"7\\.2\\.([0-9]+)\".*$",
        "kernel_arch": "xen\\.gz",
        "kernel_arch_regex": "^.*(x86_64).*$",
        "supported_arches": [
          "x86_64"
        ],
        "supported_repo_breeds": [],
        "kernel_file": "mboot\\.c32",
        "initrd_file": "xen\\.gz",
        "isolinux_ok": false,
        "default_autoinstall": "",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": [
          "install.img"
        ]
      }
    },
    "unix": {
    },
    "windows": {
    },
    "powerkvm": {
      "2.1": {
        "signatures": [
          "packages"
        ],
        "version_file": "ibm-powerkvm-layer-(.*).pkvm.*rpm",
        "version_file_regex": null,
        "kernel_arch": "kernel-(.*).rpm",
        "kernel_arch_regex": null,
        "supported_arches": [
          "ppc64"
        ],
        "supported_repo_breeds": [
          "rsync",
          "rhn",
          "yum"
        ],
        "kernel_file": "vmlinuz(.*)",
        "initrd_file": "initrd(.*)\\.img",
        "isolinux_ok": false,
        "default_autoinstall": "powerkvm.ks",
        "kernel_options": "ip=dhcp root=live:$tree/LiveOS/squashfs.img repo=$tree/packages",
        "kernel_options_post": "",
        "boot_files": [],
        "boot_loaders": {
          "ppc64": [
            "pxelinux"
          ]
        }
      }
    },
    "generic": {
      "generic26": {
        "signatures": [],
        "version_file": "",
        "version_file_regex": "",
        "kernel_arch": "",
        "kernel_arch_regex": "",
        "supported_arches": [
          "i386",
          "x86_64"
        ],
        "supported_repo_breeds": [],
        "kernel_file": "",
        "initrd_file": "",
        "isolinux_ok": false,
        "default_autoinstall": "",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      },
      "virtio26": {
        "signatures": [],
        "version_file": "",
        "version_file_regex": "",
        "kernel_arch": "",
        "kernel_arch_regex": "",
        "supported_arches": [
          "i386",
          "x86_64"
        ],
        "supported_repo_breeds": [],
        "kernel_file": "",
        "initrd_file": "",
        "isolinux_ok": false,
        "default_autoinstall": "",
        "kernel_options": "",
        "kernel_options_post": "",
        "boot_files": []
      }
    }
  }
}
 070701000000DA000081A40000000000000000000000015ECE2444000001C2000000000000000000000000000000000000003100000000cobbler-3.1.2/config/cobbler/logging_config.conf  [loggers]
keys=root

[handlers]
keys=FileLogger

[formatters]
keys=formatter

[logger_root]
level=DEBUG
handlers=FileLogger

[logger_parser]
level=DEBUG
handlers=FileLogger
propagate=1
qualname=compiler.parser


[handler_FileLogger]
class=FileHandler
level=DEBUG
formatter=formatter
args=('/var/log/cobbler/cobbler.log', 'a')


[formatter_formatter]
format=%(asctime)s - %(levelname)s | %(message)s
datefmt=%Y-%m-%dT%H:%M:%S
class=logging.Formatter

  070701000000DB000081A40000000000000000000000015ECE244400000E2A000000000000000000000000000000000000002A00000000cobbler-3.1.2/config/cobbler/modules.conf # cobbler module configuration file
# =================================

# authentication: 
# Decides what users can log into the WebUI and call Read-Write XMLRPC methods.
# Choices:
#    authentication.denyall    -- No one (default)
#    authentication.configfile -- Use /etc/cobbler/users.digest (for basic setups)
#    authentication.passthru   -- Ask Apache to handle it (used for kerberos)
#    authentication.ldap       -- Authenticate against LDAP
#    authentication.spacewalk  -- Ask Spacewalk/Satellite (experimental)
#    authentication.pam        -- Use PAM facilities
#    authentication.testing    -- Username/password is always testing/testing (debug)
#    (user supplied)  -- You may write your own module
# WARNING: This is a security setting, do not choose an option blindly.
# For more information:
#    - https://cobbler.readthedocs.io/en/latest/user-guide/web-interface.html
#    - https://cobbler.readthedocs.io/en/release28/5_web-interface/web_authentication.html
#
# hash_algorithm: This parameter has currently only a meaning when the option authentication.configfile is used.
#                 The parameter decides what hashfun algorithm is used for checking the passwords.
#                 Currently available are: sha3_384, sha3_512, blake2b, sha3_224, blake2s, shake_128, shake_256,
#                                          sha3_256

[authentication]
module = authentication.configfile
hash_algorithm = sha3_512

# authorization: 
# once a user has been cleared by the WebUI/XMLRPC, what can they do?
# choices:
#    authorization.allowall   -- full access for all authneticated users (default)
#    authorization.ownership  -- use users.conf, but add object ownership semantics
#    (user supplied)  -- you may write your own module
# WARNING: this is a security setting, do not choose an option blindly.
# If you want to further restrict cobbler with ACLs for various groups,
# pick authorization.ownership. authorization.ownership does not support ACLs.  configfile
# does but does not support object ownership which is useful as an additional
# layer of control.

# for more information:
# https://cobbler.readthedocs.io/en/latest/user-guide/web-interface.html
# https://github.com/cobbler/cobbler/wiki/Security-overview
# https://github.com/cobbler/cobbler/wiki/Web-authorization

[authorization]
module = authorization.allowall

# dns:
# chooses the DNS management engine if manage_dns is enabled
# in /etc/cobbler/settings, which is off by default.
# choices:
#    managers.bind    -- default, uses BIND/named
#    managers.dnsmasq -- uses dnsmasq, also must select dnsmasq for dhcp below
#    managers.ndjbdns -- uses ndjbdns
# NOTE: more configuration is still required in /etc/cobbler
# for more information:
# https://github.com/cobbler/cobbler/wiki/Dns-management

[dns]
module = managers.bind

# dhcp:
# chooses the DHCP management engine if manage_dhcp is enabled
# in /etc/cobbler/settings, which is off by default.
# choices:
#    managers.isc     -- default, uses ISC dhcpd
#    managers.dnsmasq -- uses dnsmasq, also must select dnsmasq for dns above
# NOTE: more configuration is still required in /etc/cobbler
# for more information:
# https://github.com/cobbler/cobbler/wiki/Dhcp-management
  
[dhcp]
module = managers.isc

# tftpd:
# chooses the TFTP management engine if manage_tftp is enabled
# in /etc/cobbler/settings, which is ON by default.
#
# choices:
#    managers.in_tftpd -- default, uses the system's tftp server
#    managers.tftpd_py -- uses cobbler's tftp server
#
  
[tftpd]
module = managers.in_tftpd

#--------------------------------------------------
  070701000000DC000081A40000000000000000000000015ECE24440000002B000000000000000000000000000000000000002A00000000cobbler-3.1.2/config/cobbler/mongodb.conf [connection]
host = localhost
port = 27017
 070701000000DD000081A40000000000000000000000015ECE244400004934000000000000000000000000000000000000002600000000cobbler-3.1.2/config/cobbler/settings ---
# cobbler settings file
# restart cobblerd and run "cobbler sync" after making changes
# This config file is in YAML 1.0 format
# see http://yaml.org
# ==========================================================
# if 1, cobbler will allow insertions of system records that duplicate
# the --dns-name information of other system records.  In general,
# this is undesirable and should be left 0.
allow_duplicate_hostnames: 0

# if 1, cobbler will allow insertions of system records that duplicate
# the ip address information of other system records.  In general,
# this is undesirable and should be left 0.
allow_duplicate_ips: 0

# if 1, cobbler will allow insertions of system records that duplicate
# the mac address information of other system records.  In general,
# this is undesirable.
allow_duplicate_macs: 0

# if 1, cobbler will allow settings to be changed dynamically without
# a restart of the cobblerd daemon. You can only change this variable
# by manually editing the settings file, and you MUST restart cobblerd
# after changing it.
allow_dynamic_settings: 0

# by default, installs are *not* set to send installation logs to the cobbler
# server.  With 'anamon_enabled', automatic installation templates may use
# the pre_anamon snippet to allow remote live monitoring of their installations
# from the cobbler server.  Installation logs will be stored under
# /var/log/cobbler/anamon/.  NOTE: This does allow an xmlrpc call to send logs
# to this directory, without authentication, so enable only if you are
# ok with this limitation.
anamon_enabled: 0

# If using authn_pam in the modules.conf, this can be configured
# to change the PAM service authentication will be tested against.
# The default value is "login".
authn_pam_service: "login"

# How long the authentication token is valid for, in seconds
auth_token_expiration: 3600

# this is a directory of files that cobbler uses to make
# templating easier.  See the Wiki for more information.  Changing
# this directory should not be required.
autoinstall_snippets_dir: /var/lib/cobbler/snippets
autoinstall_templates_dir: /var/lib/cobbler/templates

# location of templates used for boot loader config generation
boot_loader_conf_template_dir: "/etc/cobbler/boot_loader_conf"

# Email out a report when cobbler finishes installing a system.
# enabled: set to 1 to turn this feature on
# sender: optional
# email: which addresses to email
# smtp_server: used to specify another server for an MTA
# subject: use the default subject unless overridden
build_reporting_enabled: 0
build_reporting_sender: ""
build_reporting_email: [ 'root@localhost' ]
build_reporting_smtp_server: "localhost"
build_reporting_subject: ""
build_reporting_ignorelist: [ "" ]

# Cheetah-language autoinstall templates can import Python modules.
# while this is a useful feature, it is not safe to allow them to
# import anything they want. This whitelists which modules can be
# imported through Cheetah.  Users can expand this as needed but
# should never allow modules such as subprocess or those that
# allow access to the filesystem as Cheetah templates are evaluated
# by cobblerd as code.
cheetah_import_whitelist:
 - "random"
 - "re"
 - "time"
 - "netaddr"

# Default createrepo_flags to use for new repositories. If you have
# createrepo >= 0.4.10, consider "-c cache --update -C", which can
# dramatically improve your "cobbler reposync" time.  "-s sha"
# enables working with Fedora repos from F11/F12 from EL-4 or
# EL-5 without python-hashlib installed (which is not available
# on EL-4)
createrepo_flags: "-c cache -s sha"

# if no autoinstall template is specified to profile add, use this template
default_autoinstall: /var/lib/cobbler/autoinstall_templates/default.ks

# configure all installed systems to use these nameservers by default
# unless defined differently in the profile.  For DHCP configurations
# you probably do /not/ want to supply this.
default_name_servers: []
default_name_servers_search: []

# if using the authz_ownership module (see the Wiki), objects
# created without specifying an owner are assigned to this
# owner and/or group.  Can be a comma seperated list.
default_ownership:
 - "admin"

# cobbler has various sample automatic installation templates stored
# in /var/lib/cobbler/autoinstall_templates/.  This controls
# what install (root) password is set up for those
# systems that reference this variable.  The factory
# default is "cobbler" and cobbler check will warn if
# this is not changed.
# The simplest way to change the password is to run
# openssl passwd -1
# and put the output between the "" below.
default_password_crypted: "$1$mF86/UHC$WvcIcX2t6crBz2onWxyac."

# the default template type to use in the absence of any
# other detected template. If you do not specify the template
# with '#template=<template_type>' on the first line of your
# templates/snippets, cobbler will assume try to use the
# following template engine to parse the templates.
#
# Current valid values are: cheetah, jinja2
default_template_type: "cheetah"

# for libvirt based installs in koan, if no virt bridge
# is specified, which bridge do we try?  For EL 4/5 hosts
# this should be xenbr0, for all versions of Fedora, try
# "virbr0".  This can be overriden on a per-profile
# basis or at the koan command line though this saves
# typing to just set it here to the most common option.
default_virt_bridge: xenbr0

# use this as the default disk size for virt guests (GB)
default_virt_file_size: 5

# use this as the default memory size for virt guests (MB)
default_virt_ram: 512

# if koan is invoked without --virt-type and no virt-type
# is set on the profile/system, what virtualization type
# should be assumed?  Values: xenpv, xenfv, qemu, vmware
# (NOTE: this does not change what virt_type is chosen by import)
default_virt_type: xenpv

# enable gPXE booting? Enabling this option will cause cobbler
# to copy the undionly.kpxe file to the tftp root directory,
# and if a profile/system is configured to boot via gpxe it will
# chain load off pxelinux.0.
# Default: 0
enable_gpxe: 0

# controls whether cobbler will add each new profile entry to the default
# PXE boot menu.  This can be over-ridden on a per-profile
# basis when adding/editing profiles with --enable-menu=0/1.  Users
# should ordinarily leave this setting enabled unless they are concerned
# with accidental reinstalls from users who select an entry at the PXE
# boot menu.  Adding a password to the boot menus templates
# may also be a good solution to prevent unwanted reinstallations
enable_menu: 1

# change this port if Apache is not running plaintext on port
# 80.  Most people can leave this alone.
http_port: 80

# kernel options that should be present in every cobbler installation.
# kernel options can also be applied at the distro/profile/system
# level.
kernel_options: {}

# configuration options if using the authn_ldap module. See the
# the Wiki for details.  This can be ignored if you are not using
# LDAP for WebUI/XMLRPC authentication.
ldap_server: "ldap.example.com"
ldap_base_dn: "DC=example,DC=com"
ldap_port: 389
ldap_tls: 1
ldap_anonymous_bind: 1
ldap_search_bind_dn: ''
ldap_search_passwd: ''
ldap_search_prefix: 'uid='
ldap_tls_cacertfile: ''
ldap_tls_keyfile: ''
ldap_tls_certfile: ''

# cobbler has a feature that allows for integration with config management
# systems such as Puppet.  The following parameters work in conjunction with
# --mgmt-classes  and are described in furhter detail at:
# https://github.com/cobbler/cobbler/wiki/Using-cobbler-with-a-configuration-management-system
mgmt_classes: []
mgmt_parameters:
 from_cobbler: 1

# if enabled, this setting ensures that puppet is installed during
# machine provision, a client certificate is generated and a
# certificate signing request is made with the puppet master server
puppet_auto_setup: 0

# when puppet starts on a system after installation it needs to have
# its certificate signed by the puppet master server. Enabling the
# following feature will ensure that the puppet server signs the
# certificate after installation if the puppet master server is
# running on the same machine as cobbler. This requires
# puppet_auto_setup above to be enabled
sign_puppet_certs_automatically: 0

# location of the puppet executable, used for revoking certificates
puppetca_path: "/usr/bin/puppet"

# when a puppet managed machine is reinstalled it is necessary to
# remove the puppet certificate from the puppet master server before a
# new certificate is signed (see above). Enabling the following
# feature will ensure that the certificate for the machine to be
# installed is removed from the puppet master server if the puppet
# master server is running on the same machine as cobbler. This
# requires puppet_auto_setup above to be enabled
remove_old_puppet_certs_automatically: 0

# choose a --server argument when running puppetd/puppet agent during autoinstall
#puppet_server: 'puppet'

# let cobbler know that you're using a newer version of puppet
# choose version 3 to use: 'puppet agent'; version 2 uses status quo: 'puppetd'
#puppet_version: 2

# choose whether to enable puppet parameterized classes or not.
# puppet versions prior to 2.6.5 do not support parameters
#puppet_parameterized_classes: 1

# set to 1 to enable Cobbler's DHCP management features.
# the choice of DHCP management engine is in /etc/cobbler/modules.conf
manage_dhcp: 0

# set to 1 to enable Cobbler's DNS management features.
# the choice of DNS mangement engine is in /etc/cobbler/modules.conf
manage_dns: 0

# set to path of bind chroot to create bind-chroot compatible bind
# configuration files.  This should be automatically detected.
bind_chroot_path: ""

# set to the ip address of the master bind DNS server for creating secondary
# bind configuration files
bind_master: 127.0.0.1

# set to 1 to enable Cobbler's TFTP management features.
# the choice of TFTP mangement engine is in /etc/cobbler/modules.conf
manage_tftpd: 1

# This variable contains the location of the tftpboot directory. If this directory is not present cobbler does not
# start.
# Default: /var/lib/tftpboot
tftpboot_location: "/var/lib/tftpboot"

# set to 1 to enable Cobbler's RSYNC management features.
manage_rsync: 0

# if using BIND (named) for DNS management in /etc/cobbler/modules.conf
# and manage_dns is enabled (above), this lists which zones are managed
# See the Wiki (https://github.com/cobbler/cobbler/wiki/Dns-management) for more info
manage_forward_zones: []
manage_reverse_zones: []

# if using cobbler with manage_dhcp, put the IP address
# of the cobbler server here so that PXE booting guests can find it
# if you do not set this correctly, this will be manifested in TFTP open timeouts.
next_server: 127.0.0.1

# settings for power management features.  optional.
# see https://github.com/cobbler/cobbler/wiki/Power-management to learn more
# choices (refer to codes.py):
#    apc_snmp bladecenter bullpap drac ether_wake ilo integrity
#    ipmilan ipmitool lpar rsa virsh wti
power_management_default_type: 'ipmitool'

# if this setting is set to 1, cobbler systems that pxe boot
# will request at the end of their installation to toggle the
# --netboot-enabled record in the cobbler system record.  This eliminates
# the potential for a PXE boot loop if the system is set to PXE
# first in it's BIOS order.  Enable this if PXE is first in your BIOS
# boot order, otherwise leave this disabled.   See the manpage
# for --netboot-enabled.
pxe_just_once: 1

# if this setting is set to one, triggers will be executed when systems
# will request to toggle the --netboot-enabled record at the end of their installation.
nopxe_with_triggers: 1

# This setting is only used by the code that supports using Spacewalk/Satellite
# authentication within Cobbler Web and Cobbler XMLRPC.
redhat_management_server: "xmlrpc.rhn.redhat.com"

# if using authn_spacewalk in modules.conf to let cobbler authenticate
# against Satellite/Spacewalk's auth system, by default it will not allow per user
# access into Cobbler Web and Cobbler XMLRPC.
# in order to permit this, the following setting must be enabled HOWEVER
# doing so will permit all Spacewalk/Satellite users of certain types to edit all
# of cobbler's configuration.
# these roles are:  config_admin and org_admin
# users should turn this on only if they want this behavior and
# do not have a cross-multi-org seperation concern.  If you have
# a single org in your satellite, it's probably safe to turn this
# on and then you can use CobblerWeb alongside a Satellite install.
redhat_management_permissive: 0

# specify the default Red Hat authorization key to use to register
# system.  If left blank, no registration will be attempted.  Similarly
# you can set the --redhat-management-key to blank on any system to
# keep it from trying to register.
redhat_management_key: ""

# if set to 1, allows /usr/bin/cobbler-register (part of the koan package)
# to be used to remotely add new cobbler system records to cobbler.
# this effectively allows for registration of new hardware from system
# records.
register_new_installs: 0

# Flags to use for yum's reposync.  If your version of yum reposync
# does not support -l, you may need to remove that option.
reposync_flags: "-l -n -d"

# when DHCP and DNS management are enabled, cobbler sync can automatically
# restart those services to apply changes.  The exception for this is
# if using ISC for DHCP, then omapi eliminates the need for a restart.
# omapi, however, is experimental and not recommended for most configurations.
# If DHCP and DNS are going to be managed, but hosted on a box that
# is not on this server, disable restarts here and write some other
# script to ensure that the config files get copied/rsynced to the destination
# box.  This can be done by modifying the restart services trigger.
# Note that if manage_dhcp and manage_dns are disabled, the respective
# parameter will have no effect.  Most users should not need to change
# this.
restart_dns: 1
restart_dhcp: 1

# install triggers are scripts in /var/lib/cobbler/triggers/install
# that are triggered in autoinstall pre and post sections.  Any
# executable script in those directories is run.  They can be used
# to send email or perform other actions.  They are currently
# run as root so if you do not need this functionality you can
# disable it, though this will also disable "cobbler status" which
# uses a logging trigger to audit install progress.
run_install_triggers: 1

# enables a trigger which version controls all changes to /var/lib/cobbler
# when add, edit, or sync events are performed.  This can be used
# to revert to previous database versions, generate RSS feeds, or for
# other auditing or backup purposes. "git" and "hg" are currently suported,
# but git is the recommend SCM for use with this feature.
scm_track_enabled: 0
scm_track_mode: "git"
scm_track_author: "cobbler <cobbler@localhost>"
scm_push_script: "/bin/true"

# this is the address of the cobbler server -- as it is used
# by systems during the install process, it must be the address
# or hostname of the system as those systems can see the server.
# if you have a server that appears differently to different subnets
# (dual homed, etc), you need to read the --server-override section
# of the manpage for how that works.
server: 127.0.0.1

# If set to 1, all commands will be forced to use the localhost address
# instead of using the above value which can force commands like
# cobbler sync to open a connection to a remote address if one is in the
# configuration and would traceback.
client_use_localhost: 0

# If set to 1, all commands to the API (not directly to the XMLRPC
# server) will go over HTTPS instead of plaintext. Be sure to change
# the http_port setting to the correct value for the web server
client_use_https: 0

# should new profiles for virtual machines default to auto booting with
# the physical host when the physical host reboots?
# this can be overridden on each profile or system object.
virt_auto_boot: 1

# cobbler's web directory.  Don't change this setting -- see the
# Wiki on "relocating your cobbler install" if your /var partition
# is not large enough.
webdir: @@webroot@@/cobbler

# directories that will not get wiped and recreated on a 'cobbler sync'
webdir_whitelist:
  - misc
  - web
  - webui
  - localmirror
  - repo_mirror
  - distro_mirror
  - images
  - links
  - pub
  - repo_profile
  - repo_system
  - svc
  - rendered
  - .link_cache

# cobbler's public XMLRPC listens on this port.  Change this only
# if absolutely needed, as you'll have to start supplying a new
# port option to koan if it is not the default.
xmlrpc_port: 25151

# "cobbler repo add" commands set cobbler up with repository
# information that can be used during autoinstall and is automatically
# set up in the cobbler autoinstall templates.  By default, these
# are only available at install time.  To make these repositories
# usable on installed systems (since cobbler makes a very convenient
# mirror) set this to 1.  Most users can safely set this to 1.  Users
# who have a dual homed cobbler server, or are installing laptops that
# will not always have access to the cobbler server may wish to leave
# this as 0.  In that case, the cobbler mirrored yum repos are still
# accessable at http://cobbler.example.org/cblr/repo_mirror and yum
# configuration can still be done manually.  This is just a shortcut.
yum_post_install_mirror: 1

# the default yum priority for all the distros.  This is only used
# if yum-priorities plugin is used.  1=maximum.  Tweak with caution.
yum_distro_priority: 1

# Flags to use for yumdownloader.  Not all versions may support
# --resolve.
yumdownloader_flags: "--resolve"

# sort and indent JSON output to make it more human-readable
serializer_pretty_json: 0

# replication rsync options for distros, autoinstalls, snippets set to override default value of "-avzH"
replicate_rsync_options: "-avzH"

# replication rsync options for repos set to override default value of "-avzH"
replicate_repo_rsync_options: "-avzH"

# always write DHCP entries, regardless if netboot is enabled
always_write_dhcp_entries: 0

# external proxy - used by: get-loaders, reposync, signature update
# eg: proxy_url_ext: "http://192.168.1.1:8080" (HTTP)
# or: proxy_url_ext: "https://192.168.1.1:8443" (HTTPS)
proxy_url_ext: ""

# internal proxy - used by systems to reach cobbler for templates
# eg: proxy_url_int: "http://10.0.0.1:8080"
proxy_url_int: ""

# this is a directory of files that cobbler uses to include
# files into Jinja2 templates
#jinja2_includedir: /var/lib/cobbler/jinja2

# include other configuration snippets
include: [ "/etc/cobbler/settings.d/*.settings" ]
070701000000DE000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000002800000000cobbler-3.1.2/config/cobbler/settings.d   070701000000DF000081A40000000000000000000000015ECE244400000094000000000000000000000000000000000000004200000000cobbler-3.1.2/config/cobbler/settings.d/bind_manage_ipmi.settings # bind_manage_ipmi - used to let bind manage IPMI addresses if the power management address is an IP and if manage_bind is set.
bind_manage_ipmi: 1
070701000000E0000081A40000000000000000000000015ECE244400000078000000000000000000000000000000000000004000000000cobbler-3.1.2/config/cobbler/settings.d/manage_genders.settings   # manage_genders - Bool to enable/disable managing an /etc/genders file for use with pdsh and others.
manage_genders: 0
070701000000E1000081A40000000000000000000000015ECE2444000001DE000000000000000000000000000000000000003A00000000cobbler-3.1.2/config/cobbler/settings.d/nsupdate.settings 
# set to 1 to enable Cobbler's dynamic DNS updates.
nsupdate_enabled: 0

# define tsig key
# please don't use this one, instead generate your own:
#   dnssec-keygen -a HMAC-SHA512 -b 512 -n USER cobbler_update_key
nsupdate_tsig_algorithm: "hmac-sha512"
nsupdate_tsig_key: [ "cobbler_update_key.", "hvnK54HFJXFasHjzjEn09ASIkCOGYSnofRq4ejsiBHz3udVyGiuebFGAswSjKUxNuhmllPrkI0HRSSmM2qvZug==" ]

# if set, enables logging to that file
nsupdate_log: "/var/log/cobbler/nsupdate.log"

  070701000000E2000081A40000000000000000000000015ECE244400000350000000000000000000000000000000000000002800000000cobbler-3.1.2/config/cobbler/users.conf   # Cobbler WebUI / Web Services authorization config file
#
# NOTICE:
# this file is only used when /etc/cobbler/modules.conf
# specifies an authorization mode of either:
#
#   (A) authz_configfile
#   (B) authz_ownership
#
# For (A), any user in this file, in any group, are allowed
# full access to any object in cobbler configuration.
#
# For (B), users in the "admins" group are allowed full access
# to any object, otherwise users can only edit an object if
# their username/group is listed as an owner of that object. If a
# user is not listed in this file they will have no access.
#
#     cobbler command line example:
#
#     cobbler system edit --name=server1 --owner=dbas,mac,pete,jack
#
# NOTE:  yes, you do need the equal sign after the names.
# don't remove that part.  It's reserved for future use.

[admins]
admin = ""
cobbler = ""

070701000000E3000081A40000000000000000000000015ECE244400000091000000000000000000000000000000000000002A00000000cobbler-3.1.2/config/cobbler/users.digest cobbler:Cobbler:0ad5ec003edfa7edf519ebcd12e459a322f20495ebbdd40f7e8a93bc2f5067fd6c4d676b109432a9eeea9b6d6fb4c0a31e0717526c0b2c9b197bd6fd207cc889
   070701000000E4000041ED0000000000000000000000035ECE244400000000000000000000000000000000000000000000001A00000000cobbler-3.1.2/config/grub 070701000000E5000081A40000000000000000000000015ECE2444000014F7000000000000000000000000000000000000002C00000000cobbler-3.1.2/config/grub/README.grubconfig   # This README and grub configuration files are released under the
# the terms of the GPL (GNU GENERAL PUBLIC LICENSE) version 2
# See COPYING file for more details.

# Author: Thomas Renninger <trenn@suse.de>
# Copyright (C) 2019 Thomas Renninger <trenn@suse.de>

This directory contains grub boot loader (version 2.02)
configuration files.
The directory structure is exactly synced (e.g. via cobbler sync)
to the tftp (or http/www for http network boot) directory and must
be kept as is.



IMPORTANT FILES
===============

config/grub
-----------

grub.cfg
-> This file in the main tftp directory is a fallback for
   broken firmware. Normally grub should already set the
   prefix to the directory where it has been loaded from
   (grub subdirectory in our case).
   It is known for (specific versions?) KVM and ppc64le
   that grub may end up loading this as first grub.cfg.
   We simply set prefix="grub" and manually load the
   main config file grub/grub.cfg


grub/grub.cfg
-> This is the main entry point for all architectures.
   We always load this config file.

grub/grub/local_*.cfg
-> This are the architecture specific config files providing
   local (hard disk) boot entries.
   These may need adjusting over the time, depending how
   distributions name their *.efi executable for local boot

grub/grub/system/*
-> Empty directory where cobbler will sync machine specific
   configuration (typically setting local boot or an (auto-)install
   menu entry).
   These are named after the mac address of a machine, e.g.:
   grub/system/52:54:00:42:07:04
   This config file is tried to be loaded from the main grub.cfg

grub/grub/system_link.*
-> Empty directory where cobbler will create symlinks, named after
   the cobbler name of the machine and it links to above described
   mac address file in ../system/${mac}
   This is only for easier reading and debugging of machine specific
   grub settings.


/var/lib/cobbler/loaders
------------------------

This directory holds network bootloaders (or links to them) and is also
synced to /srv/tftp root directory 1 to 1.
Its contents is created in the post (removed in postun) section of the
cobbler.spec file.
This is done via scripts/mkgrub.sh shell script.
It creates grub executables for each installed grub2-$arch via:
grub2-mkimage and links in the corresponding grub2 modules and other
supported bootloaders (pxelinux.0,...)

If you have installed e.g. a new grub or syslinux version, you should
re-run mkgrub.sh to build new grub executables.
For other, static or already compiled/linked bootloaders like, shim,
pxelinux.0 or a precompiled, signed grub.efi executable, it is enough
to call "cobbler sync" now (we store links to these now).

The grub specific files generated/linked via mkgrub.sh are also described
here:

.cobbler_postun_cleanup
-> Filled up with generated grub2-mkimage binaries and created links
   This is need in postun cobbler.spec section to remove things again.
   This is the only, not synced file.

grub/grub.0
-> 32 bit PXE (x86 legacy) grub executable.
  grub2-mkimage generated.
  This can/should be used instead of pxelinux.0. You then get the full
  grub boot process.
  The bootloader is named grub.0, because pxelinux.0 can chain boot
  this grub exectuble via network. But it (or specific versions?) wants
  boot loaders with a filename ending on .0

grub/{grubaa64.efi,grub.ppc64le,grubx64.efi}
-> Also grub2-mkimage generated, architecture specific grub executables
   These, can directly be network booted on the corresponding/matching
   architecture. Please have a look at the dhcpd.conf template for
   getting an idea how architecture differing (via dhcp request network
   packets) works.
   On grub-${arch} package updates, please call scripts/mkgrub.sh to get
   up-to-date exectubles.
   The names of these executables are derived from grub2 sources.
   These are the default names as they should get generated on all
   distributions by default. These map to ${grub-cpu}-${grub-platform} as seen
   below the modules directory structure. Unfortunately this does not map 1 to
   1.

grub/{arm64-efi,i386-pc,powerpc-ieee1275,x86_64-efi}
-> links to architecture specific grub modules. From these grub2-mkimage
   generates above executables.

   These directories (where the links point to) have to be named exactly like
   this. grub may download missing/needed modules from
   /srv/tftp/${prefix}/${grub-cpu}-${grub-platform} on the fly as needed.
   E.g. using the grub.cfg command: hello, will end up in downloading
   hello.mod
   then doing automatically an "insmod hello"...

grub/{grub.efi,shim.efi}
-> links to precompiled from distribution provided and signed shim and grub
   efi executables.
   By default shim.efi is used in UEFI (x86 at least) case.
   shim.efi automatically tries to load grub.efi.
   Module loading via network using a signed grub.efi loader, does not work.
   All grub modules needed grub.cfg and later sourced config files must be
   present in the signed grub.efi executable.
   For example the "tr" grub module was not part of SLES 12 and therefore the
   reforming of the ${mac} address to the previous pxelinux.0 style, e.g.:
   52:54:00:42:56:58 -> 01-52-54-00-42-56-58
   does not work. But this is overhead anyway, so we now use the plain MAC
   address as filenames for system specific grub configuration.

 070701000000E6000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000001F00000000cobbler-3.1.2/config/grub/grub    070701000000E7000081A40000000000000000000000015ECE2444000001AD000000000000000000000000000000000000002300000000cobbler-3.1.2/config/grub/grub.cfg    # jloeser: workaround for all machines requesting grub.cfg from tftpboot root
#          directory (e.g. firmware bug in p8 LPAR and (some?) OVMF)
if [ -r "${prefix}grub/grub.cfg" ]; then
  echo "grub missing from prefix='${prefix}'. Please fix firmware..."
  set prefix="${prefix}grub"
  configfile "${prefix}/grub.cfg"
else
  echo "Unexpected prefix='${prefix}'. Please fix firmware or grub binary..."
  echo "Giving up..."
fi
   070701000000E8000081A40000000000000000000000015ECE244400000F35000000000000000000000000000000000000002800000000cobbler-3.1.2/config/grub/grub/grub.cfg   #-------------------------------------------------------------------------------
# Set defaults (is re-set by machine specific configuration file)
#-------------------------------------------------------------------------------
set arch='x86_64'
set hostname='dummy'
set system='dummy'
set lang=en
set serial_console=false
set serial_baud=115200
set serial_line=0
set local_boot_file=""
set kernel_options=""
set timeout=80
set default='local'
set gfxpayload=text

export serial_console
export serial_baud
export serial_line
export timeout
export default
export lang
export hostname
export system
export local_boot_file

# preset architecture, so it will never be empty
if [ "$grub_cpu" == "i386" ]; then
  set arch='x86_64'
elif [ "$grub_cpu" == "x86_64" ]; then
  set arch='x86_64'
elif [ "$grub_cpu" == "powerpc" ]; then
  set arch='ppc64le'
elif [ "$grub_cpu" == "arm64" ]; then
  set arch='aarch64'
else
  echo "Warning: No architecture found for ${grub_cpu}"
  set arch='unknown'
fi

echo "Running on $arch CPU architecture"

#-------------------------------------------------------------------------------
# MAC address
#-------------------------------------------------------------------------------
set mac=${net_default_mac}
export mac

if [ -s "$prefix/system/$mac" ]; then
  source "$prefix/system/$mac"
  echo "Machine specific grub config file $prefix/system/$mac for $system loaded"
else
  echo "Could not find machine specific grub config file $prefix/system/$mac"
fi

#-------------------------------------------------------------------------------
# Serial console
#-------------------------------------------------------------------------------
if [ $serial_console == true -a "$grub_platform" != "efi" ]; then
  # Do not fiddle with console on EFI, this should already be set
  serial --speed=$serial_baud --unit=$serial_line --word=8 --parity=no --stop=1
  terminal_input --append serial
  terminal_output --append serial
else
  terminal_input console
  terminal_output console
fi

#-------------------------------------------------------------------------------
# EFI support (in fact shim support!)
#
# grub should not offer linuxefi/initrdefi commands but instead handle this
# internally.
# But it does not and this allows us clean grub.cfg implementations without
# the need of checking for efi/nonefi in possibly sourced subconfigfiles.
#
# From our grub expert (Raymund Will): linuxefi/initrdefi is for shim
# support/protocol only.
# A possible enhancement here would be, if we can differ secure_boot_enabled.
# grubXY.efi can load kernels via linux or linuxefi, it is only shim
# case where this has to be differed.
#
#-------------------------------------------------------------------------------
function clinux {
  if [ "$grub_cpu" == "x86_64" ]; then
    linuxefi "$@"
  else
    linux "$@"
  fi
}
function cinitrd {
  if [ "$grub_cpu" == "x86_64" ]; then
    initrdefi "$@"
  else
    initrd "$@"
  fi
}

# After sourcing local_*.cfg we have a "local" menuentry
if [ "$grub_platform" == "efi" ]; then
  source "$prefix/local_efi.cfg"
elif [ "${arch}" == "x86_64" ]; then
  # Try to catch all non efi x86 cases here
  source "$prefix/local_legacy.cfg"
elif [ "${grub_cpu}-${grub_platform}" == "powerpc-ieee1275" ]; then
  source "$prefix/local_powerpc-ieee1275.cfg"
else
  echo "Unknown grub cpu ${grub_cpu} or platform ${grub_platform}"
  source "$prefix/local_legacy.cfg"
fi

if [ !"{$arch}" == "unknown" ]; then
  echo "Warning: architecture is unknown, skipping menu items";
  else
  source "$prefix/${arch}_menu_items.cfg"
fi

# Trigger local boot setting (may alter grub.cfg) at the very end to avoid races
if [ "$local_boot_file" != "" ];then
   if [ -s  "$local_boot_file" ];then
      echo "Set $system to local boot by requesting file $local_boot_file"
   else
      echo "Set $system to local boot failed. File $local_boot_file not found"
  fi
fi
   070701000000E9000081A40000000000000000000000015ECE244400000484000000000000000000000000000000000000002D00000000cobbler-3.1.2/config/grub/grub/local_efi.cfg  menuentry "local" --class gnu-linux --class gnu --class os {
  if search --no-floppy --file /efi/boot/fallback.efi --set ; then
    if [ -f /efi/opensuse/shim.efi ] ; then
      chainloader /efi/opensuse/grub.efi
    elif [ -f /efi/sles/shim.efi ] ; then
      chainloader /efi/sles/grub.efi
      elif [ -f /EFI/redhat/grub.efi ]; then
      chainloader /EFI/redhat/grub.efi
    elif [ -f /EFI/redhat/grubx64.efi ]; then
      chainloader /EFI/redhat/grubx64.efi
    elif [ -f /EFI/centos/grub.efi ]; then
      chainloader /EFI/centos/grub.efi
    elif [ -f /EFI/centos/grubx64.efi ]; then
      chainloader /EFI/centos/grubx64.efi
    fi
    boot
  else
    # ToDo: We have to know all possible local default grub.efi loaders
    search -s root -n -f /efi/boot/bootx64.efi
    set prefix=(${root})/efi/opensuse
    chainloader ${prefix}/grub.efi
    boot # if it doesn't exist, go on
    set prefix=(${root})/efi/sles
    chainloader ${prefix}/grub.efi
    boot
    set prefix=(${root})/efi/grub
    chainloader ${prefix}/grub.efi
    boot
    chainloader ${prefix}/bootx64.efi
    boot # if it doesn't exist, leave grub and enter shell
    exit
  fi
}
070701000000EA000081A40000000000000000000000015ECE244400000098000000000000000000000000000000000000003000000000cobbler-3.1.2/config/grub/grub/local_legacy.cfg   menuentry "local" --class gnu-linux --class gnu --class os {
  # grub.pxe: we do need to chainload here
  set root=hd0
  chainloader ($root)+1
  boot
}
070701000000EB000081A40000000000000000000000015ECE244400000167000000000000000000000000000000000000003A00000000cobbler-3.1.2/config/grub/grub/local_powerpc-ieee1275.cfg menuentry "local" --class gnu-linux --class gnu --class os {
  set btrfs_relative_path="y"
  export btrfs_relative_path
  echo "powerpc-ieee1275: search for local grub.cfg..."
  for c in /boot/grub2/grub.cfg /boot/grub/grub.cfg; do
     if search -s root -f "$c"; then
        echo "powerpc-ieee1275: found ($root)$c"
        configfile "$c"
     fi
  done
}
 070701000000EC000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000001C00000000cobbler-3.1.2/config/rotate   070701000000ED000081A40000000000000000000000015ECE2444000001C6000000000000000000000000000000000000002C00000000cobbler-3.1.2/config/rotate/cobblerd_rotate   /var/log/cobbler/cobbler.log {
   compress
   dateext
   maxage 14
   rotate 99
   size=+4096k
   missingok
   notifempty
   rotate 4
   weekly
   create 644 root root
   postrotate
      /sbin/service cobblerd condrestart > /dev/null 2>&1
   endscript
}

/var/log/cobbler/tasks/*.log {
   weekly
   rotate 0
   missingok
   ifempty
   nocompress
   nocreate
   nomail
}

/var/log/cobbler/install.log {
   missingok
   notifempty
   rotate 4
   weekly
}
  070701000000EE000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000001B00000000cobbler-3.1.2/config/rsync    070701000000EF000081A40000000000000000000000015ECE2444000007FB000000000000000000000000000000000000003200000000cobbler-3.1.2/config/rsync/import_rsync_whitelist #-----------------------------------------------
# RHEL/CentOS/SciLinux
# Ex: cobbler import \
#     --name=fedora-16-remote \
#     --path=rsync://mirrors.kernel.org/mirrors/fedora/releases/16/Fedora/x86_64/os/ \
#     --available-as=http://mirrors.kernel.org/fedora/releases/16/Fedora/x86_64/os/
#-----------------------------------------------
+ RedHat/
+ RedHat/RPMS/
+ RedHat/rpms/
+ RedHat/Base/
+ Fedora/
+ Fedora/RPMS/
+ Fedora/rpms/
+ CentOS/
+ CentOS/RPMS/
+ CentOS/rpms/
+ CentOS/
+ Packages/
+ Packages/*/
+ Server/
+ Client/
+ SL/
+ FermiPackages/
+ SITERPMS/
+ images/
+ images/pxeboot/
+ images/pxeboot/*
+ isolinux/
+ isolinux/*
+ */*-release*
- */kernel-debug*.rpm
- */kernel-devel*.rpm
- */kernel-doc*.rpm
- */kernel-headers*.rpm
+ */kernel-*.rpm

#-----------------------------------------------
# Debian/Ubuntu
#-----------------------------------------------
+ pool/
+ dists/
+ dists/*/
+ dists/*/Release
+ main/
+ install/
+ install/netboot/ubuntu-installer/*/linux
+ install/netboot/ubuntu-installer/*/initrd.gz
+ main/debian-installer/
+ main/installer*/
+ main/installer*/current/
+ main/installer*/current/images/
# all of these should be under the current/images directory...
+ netboot/
+ netboot/ubuntu-installer/
+ netboot/ubuntu-installer/amd64/
+ netboot/ubuntu-installer/i386/
+ netboot/ubuntu-installer/*/initrd*
+ netboot/ubuntu-installer/*/linu*

#-----------------------------------------------
# SuSE
# Ex: cobbler import \
#     --name=suse-11.4-remote \
#     --path=rsync://mirrors.kernel.org/mirrors/opensuse/distribution/11.4/repo/oss/ \
#     --available-as=http://mirrors.kernel.org/opensuse/distribution/11.4/repo/oss/
#-----------------------------------------------
+ boot/
+ boot/i386/
+ boot/i386/loader/
+ boot/i386/loader/initrd
+ boot/i386/loader/linux
+ boot/x86_64/
+ boot/x86_64/loader/
+ boot/x86_64/loader/initrd
+ boot/x86_64/loader/linux
+ suse/
+ suse/*

#-----------------------------------------------
# Exclude everything else
#-----------------------------------------------
- *
 070701000000F0000081A40000000000000000000000015ECE244400000170000000000000000000000000000000000000002900000000cobbler-3.1.2/config/rsync/rsync.exclude  ### files to exclude from "cobbler import" commands that use
### rsync mirrors.  by default ISOs, PPC code, and debug
### RPM's are not transferred.  Some users may want to
### re-enable debug RPM's.
**/debug/**
**/alpha/**
**/source/**
**/SRPMS/**
**/*.iso
**/kde-i18n**
pool/**/*.dsc
pool/**/*.gz
### Avoid deleting the local cache created by createrepo
**/cache/**
070701000000F1000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000001D00000000cobbler-3.1.2/config/service  070701000000F2000081A40000000000000000000000015ECE244400000117000000000000000000000000000000000000002E00000000cobbler-3.1.2/config/service/cobblerd.service [Unit]
Description=Cobbler Helper Daemon
After=syslog.target network.target
Wants=@@httpd_service@@

[Service]
ExecStart=/usr/bin/cobblerd -F
ExecStartPost=-/usr/bin/touch /usr/share/cobbler/web/cobbler.wsgi
PrivateTmp=yes
KillMode=process

[Install]
WantedBy=multi-user.target

 070701000000F3000041ED0000000000000000000000055ECE244400000000000000000000000000000000000000000000001600000000cobbler-3.1.2/contrib 070701000000F4000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000002300000000cobbler-3.1.2/contrib/api-examples    070701000000F5000081A40000000000000000000000015ECE2444000000F1000000000000000000000000000000000000002F00000000cobbler-3.1.2/contrib/api-examples/API_test.py    #!/usr/bin/python3

import xmlrpc.client
server = xmlrpc.client.Server("http://127.0.0.1/cobbler_api")
print(server.get_distros())
print(server.get_profiles())
print(server.get_systems())
print(server.get_images())
print(server.get_repos())
   070701000000F6000081A40000000000000000000000015ECE2444000001A2000000000000000000000000000000000000003500000000cobbler-3.1.2/contrib/api-examples/create_snippet.py  #!/usr/bin/python3

from xmlrpc.client import ServerProxy
import optparse

p = optparse.OptionParser()
p.add_option("-u","--user",dest="user",default="test")
p.add_option("-p","--pass",dest="password",default="test")

sp =  ServerProxy("http://127.0.0.1/cobbler_api")
(options, args) = p.parse_args()
token = sp.login(options.user,options.password)

sp.write_autoinstall_snippet("some-snippet","some content\n",token)
  070701000000F7000081A40000000000000000000000015ECE2444000005FC000000000000000000000000000000000000003300000000cobbler-3.1.2/contrib/api-examples/demo_connect.py    #!/usr/bin/python3

"""
Copyright 2007-2009, Red Hat, Inc and Others
Michael DeHaan <michael.dehaan AT gmail>

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
"""

from xmlrpc.client import ServerProxy
import optparse

if __name__ == "__main__":
    p = optparse.OptionParser()
    p.add_option("-u","--user",dest="user",default="test")
    p.add_option("-p","--pass",dest="password",default="test")

    # NOTE: if you've changed your xmlrpc_rw port or
    # disabled xmlrpc_rw this test probably won't work

    sp = ServerProxy("http://127.0.0.1:25151")
    (options, args) = p.parse_args()
    print("- trying to login with user=%s" % options.user)
    token = sp.login(options.user,options.password)
    print("- token: %s" % token)
    print("- authenticated ok, now seeing if user is authorized")
    check = sp.check_access(token,"imaginary_method_name")
    print("- access ok? %s" % check)
070701000000F8000081A40000000000000000000000015ECE244400000190000000000000000000000000000000000000003300000000cobbler-3.1.2/contrib/api-examples/read_snippet.py    #!/usr/bin/python3

from xmlrpc.client import ServerProxy
import optparse

p = optparse.OptionParser()
p.add_option("-u","--user",dest="user",default="test")
p.add_option("-p","--pass",dest="password",default="test")

sp =  ServerProxy("http://127.0.0.1/cobbler_api")
(options, args) = p.parse_args()
token = sp.login(options.user,options.password)

sp.read_autoinstall_snippet("some-snippet",token)
070701000000F9000081A40000000000000000000000015ECE244400000192000000000000000000000000000000000000003500000000cobbler-3.1.2/contrib/api-examples/remove_snippet.py  #!/usr/bin/python3

from xmlrpc.client import ServerProxy
import optparse

p = optparse.OptionParser()
p.add_option("-u","--user",dest="user",default="test")
p.add_option("-p","--pass",dest="password",default="test")

sp =  ServerProxy("http://127.0.0.1/cobbler_api")
(options, args) = p.parse_args()
token = sp.login(options.user,options.password)

sp.remove_autoinstall_snippet("some-snippet",token)
  070701000000FA000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000001B00000000cobbler-3.1.2/contrib/func    070701000000FB000081A40000000000000000000000015ECE244400000343000000000000000000000000000000000000002200000000cobbler-3.1.2/contrib/func/README To enable this Func integration:

- copy func.settings to /etc/cobbler/settings.d/
- copy func_install_if_enabled to /var/lib/cobbler/snippets/
- copy func_register_if_enabled to /var/lib/cobbler/snippets/

Enable the snippets in your automated installation file, eg:

%packages
$SNIPPET('func_install_if_enabled')

%post
$SNIPPET('func_install_if_enabled')


Notes about Func Autosigning

This may work better for you if you are using Func autosigning,
otherwise the administrator will need to use certmaster-ca --sign
hostname (see also certmaster-ca --list) to deal with machines.

Not using autosigning is good if you don't trust all the hosts you
are provisioning and don't want to enslave unwanted machines.

Either choice is ok, just be aware of the manual steps required if
you don't enable it, or the implications if you do.

 070701000000FC000081A40000000000000000000000015ECE244400000114000000000000000000000000000000000000002900000000cobbler-3.1.2/contrib/func/func.settings  # enable Func-integration? This makes sure each installed machine is set up
# to use func out of the box, which is a powerful way to script and control
# remote machines.  
#
# Func lives at http://fedorahosted.org/func
#
func_auto_setup: 0
func_master: overlord.example.org

070701000000FD000081A40000000000000000000000015ECE24440000003D000000000000000000000000000000000000003300000000cobbler-3.1.2/contrib/func/func_install_if_enabled    #if $str($getVar('func_auto_setup','')) == "1"
func
#end if

   070701000000FE000081A40000000000000000000000015ECE2444000001C0000000000000000000000000000000000000003400000000cobbler-3.1.2/contrib/func/func_register_if_enabled   
#if $str($getVar('func_auto_setup','')) == "1"
# Start func registration section

/sbin/chkconfig --level 345 funcd on

cat <<EOFM > /etc/func/minion.conf
[main]
log_level = INFO
acl_dir = /etc/func/minion-acl.d

listen_addr =
listen_port = 51234
EOFM

cat <<EOCM > /etc/certmaster/minion.conf
[main]
certmaster = $func_master
certmaster_port = 51235
log_level = DEBUG
cert_dir = /etc/pki/certmaster
EOCM

# End func registration section
#end if

070701000000FF000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000002100000000cobbler-3.1.2/contrib/templating  07070100000100000081A40000000000000000000000015ECE2444000020B7000000000000000000000000000000000000003000000000cobbler-3.1.2/contrib/templating/cheetah_macros   
## Comment every line containing the $pattern given
## Ex: preserve a record of an old value before changing it.
## 
## $comment_lines('/etc/resolv.conf', 'nameserver')
## echo "nameserver 192.168.0.1" >> /etc/resolv.conf
## 
#def comment_lines($filename, $pattern, $commentchar='#')
perl -npe 's/^(.*${pattern}.*)$/${commentchar}\${1}/' -i '$filename'
#end def

## Comments every line which contains only the exact pattern.
## This one works like comment_lines(), except that a line cannot contain any
## additional text.
#def comment_lines_exact($filename, $pattern, $commentchar='#')
perl -npe 's/^(${pattern})$/${commentchar}\${1}/' -f '$filename'
#end def

## Uncomments every (commented) line containing the pattern
## Patterns should not contain the #
## Ex: enable all the suggested values in the Samba configuration
## (This isn't the greatest example, but it makes a point)
## 
## $uncomment_lines('/etc/samba/smb.conf', ';')
## 
#def uncomment_lines($filename, $pattern, $commentchar='#')
perl -npe 's/^[ \t]*${commentchar}(.*${pattern}.*)$/\${1}/' -i '$filename'
#end def

## Nullify (by changing to 'true') all instances of a given sh command. This
## does understand lines with multiple commands (separated by ';') and also
## knows to ignore comments. Consider other options before using this
## method.
## Ex: remove 'exit 0' commands from a shell script, so that we can append the
## script and be relatively certain that the new parts will be executed.
## 
## $delete_command('etc/cron.daily/some_script.sh', 'exit[ \t]*0')
## echo '# More scipt' >> /etc/cron.daily/some_script.sh
## 
#def delete_command($filename, $pattern)
sed -nr '
    h
    s/^([^#]*)(#?.*)$/\1/
    s/((^|;)[ \t]*)${pattern}([ \t]*($|;))/\1true\3/g
    s/((^|;)[ \t]*)${pattern}([ \t]*($|;))/\1true\3/g
    x
    s/^([^#]*)(#?.*)$/\2/
    H
    x
    s/\n//
    p
' -i '$filename'
#end def

## Replace a configuration parameter value, or add it if it doesn't exist.
## Assumes format is [param_name] [value]
## Ex: Change the maximum password age to 30 days
## 
## $set_config_value('/etc/login.defs', 'PASS_MAX_DAYS', '30')
## 
#def set_config_value($filename, $param_name, $value)
if [ -n \"\$(grep -Ee '^[ \t]*${param_name}[ \t]+' '$filename')\" ]
then
    perl -npe 's/^([ \t]*${param_name}[ \t]+)[\x21-\x7E]*([ \t]*(#.*)?)$/\${1}${sedesc($value)}\${2}/' -i '$filename'
else
    echo '$param_name $value' >> '$filename'
fi
#end def

## Replace a configuration parameter value, or add it if it doesn't exist.
## Assues format is [param_name] [delimiter] [value], where [delimiter] is
## usually '='.
## This works the same way as set_config_value(), except that this version
## is used if a character separates a parameter from its value.
#def set_config_value_delim($filename, $param_name, $delim, $value)
if [ -n \"\$(grep -Ee '^[ \t]*${param_name}[ \t]*${delim}[ \t]*' '$filename')\" ]
then
    perl -npe 's/^([ \t]*${param_name}[ \t]*${delim}[ \t]*)[\x21-\x7E]*([ \t]*(#.*)?)$/${1}${sedesc($value)}${2}/' -i '$filename'
else
    echo '$param_name$delim$value' >> '$filename'
fi
#end def

## Copy a file from the server to the client.
## Ex: Copy a template for samba configuration
## 
## (once at the top of the automatic installation template)
## #set files = $snippetsdir + '/files/'
## (when you need to copy a file)
## $copy_over_file('etc/samba/smb.conf', '/etc/samba/smb.conf')
## 
## Additionally, copied files can be templated:
## ---------etc/samba/smb.conf-------------
## ...
## [global]
##     server string = $profile_name
## ...
## ----------------------------------------
#def copy_over_file($serverfile, $clientfile)
cat << 'EOF' > '$clientfile'
#include $files + $serverfile
EOF
#end def

## Copy a file from the server and append the contents to a file on the
## client.
## This works the same as copy_over_file(), except it appends the file rather
## than replacing the file.
#def copy_append_file($serverfile, $clientfile)
cat << 'EOF' >> '$clientfile'
#include $files + $serverfile
EOF
#end def

## Convenience function: Copy/append several files at once. This accepts a
## list of tuples. The first element indicates whether to overwrite ('w') or
## append ('a'). The second element is the file name on both the server and
## the client (a '/' is prepended on the client side).
## Ex: copy a template for samba and audit configuration
## 
## $copy_files([
##     ('w', 'etc/samba/smb.conf'),
##     ('w', 'etc/audit.rules'),
## ])
## 
#def copy_files($filelist)
#for $thisfile in $filelist
#if $thisfile[0] == 'a'
$copy_append_file($thisfile[1], '/' + $thisfile[1])
#else
$copy_over_file($thisfile[1], '/' + $thisfile[1])
#end if
#end for
#end def

## Append some content to the todo file. NOTE: $todofile must be defined
## before using this (unless you want unexpected results). Be sure to end
## the content with 'EOF'
## Ex: Instruct the admin to set an appropriate nameserver.
## 
## (once at the top of the automatic installation template)
## #set global $todofile = '/root/kstodo'
## (as needed)
## $TODO()
## Edit /etc/resolv.conf to configure your local nameserver
## EOF
## 
## This will prevent inconsistency and accidents. You should avoid using:
## 
## echo "Edit /etc/resolv.conf..." >> /root/kstodo
## 
## It's easy to forget to use >> to append instead of >, which will clobber all
## previous todo notices. It's also easy to forget the filename, was it kstodo
## or ks-todo?
#def TODO()
cat << 'EOF' >> '$todofile'
#end def

## Set the owner, group, and permissions for several files. Assignment can
## be plain ('p') or recursive. If recursive you can assign everything ('r')
## or just files ('f'). This method takes a list of tuples. The first element
## of each indicates which style. The remaining elements are owner, group,
## and mode respectively. If 'f' is used, an additional element is a find
## pattern that can further restrict assignments (use '*' if no additional
## restrict is desired).
## NOTE: I used the word 'plain' instead of 'single', because wildcards can
##       still be used in 'plain' mode.
## Ex: correct the permissions of serveral important files and directories:
## 
## $set_permissions([
##     ('p', 'root', 'root', '700', '/root'),
##     ('f', 'root', 'root', '600', '/root', '*'),
##     ('r', 'root', 'root', '/etc/cron.*'),
##     ('p', 'root', 'root', '644', '/etc/samba/smb.conf'),
## ])
## 
#def set_permissions($filelist)
#for $file in $filelist
#if $file[0] == 'p'
#if $file[1] != '' and $file[2] != ''
chown '$file[1]:$file[2]' '$file[4]'
#else
#if $file[1] != ''
chown '$file[1]' '$file[4]'
#end if
#if $file[2] != ''
chgrp '$file[2]' '$file[4]'
#end if
#end if
#if $file[3] != ''
chmod '$file[3]' '$file[4]'
#end if
#elif $file[0] == 'r'
#if $file[1] != '' and $file[2] != ''
chown -R '$file[1]:$file[2]' '$file[4]'
#else
#if $file[1] != ''
chown -R '$file[1]' '$file[4]'
#end if
#if $file[2] != ''
chgrp -R '$file[2]' '$file[4]'
#end if
#end if
#if $file[3] != ''
chmod -R '$file[3]' '$file[4]'
#end if
#elif $file[0] == 'f'
#if $file[1] != '' and $file[2] != ''
find $file[4] -name '$file[5]' -type f -exec chown -R '$file[1]:$file[2]' {} \;
#else
#if $file[1] != ''
find $file[4] -name '$file[5]' -type f -exec chown -R '$file[1]' {} \;
#end if
#if $file[2] != ''
find $file[4] -name '$file[5]' -type f -exec chgrp -R '$file[2]' {} \;
#end if
#end if
#if $file[3] != ''
find $file[4] -name '$file[5]' -type f -exec chmod -R '$file[3]' {} \;
#end if
#end if
#end for
#end def

## Cheeseball an entire directory.
## This will include (in sequence) all file in a given directory into a
## automatic installation template.
## Ex: include a 'misc' directory of templates
## 
## $includeall('misc')
## 
## Now in cobbler/snippets/misc:
## ---------------avinstall-----------------
## wget http://some.server.com/some-av-package.tar.gz
## tar -xzf some-av-package.tar.gz
## ./some-av-package/install.sh
## rm some-av-package.tar.gz
## rm -rf some-av-package
## -----------------------------------------
## ---------------fwinstall-----------------
## wget http://some.server.com/fw-linux-installer.sh
## chmod +x fw-linux-installer.sh
## ./fw-linux-installer.sh
## rm fw-linux-installer.sh
## -----------------------------------------
## 
#def includeall($dir)
#import os
#for $file in $os.listdir($snippetsdir + '/' + $dir)
#include $snippetsdir + '/' + $dir + '/' + $file
#end for
#end def

 07070100000101000081A40000000000000000000000015ECE2444000002D0000000000000000000000000000000000000002100000000cobbler-3.1.2/docker-compose.yml  version: '3.7'

services:

  centos7-build:
    image: local/cobbler-centos7
    container_name: cobbler-centos7
    build:
      context: .
      dockerfile: ./dockerfiles/CentOS7.dockerfile
    volumes:
      - ./rpm-build/el7:/usr/src/cobbler/rpm-build

  centos8-build:
    image: local/cobbler-centos8
    container_name: cobbler-centos8
    build:
      context: .
      dockerfile: ./dockerfiles/CentOS8.dockerfile
    volumes:
      - ./rpm-build/el8:/usr/src/cobbler/rpm-build

  fedora31-build:
    image: local/cobbler-fedora31
    container_name: cobbler-fedora31
    build:
      context: .
      dockerfile: ./dockerfiles/Fedora31.dockerfile
    volumes:
      - ./rpm-build/f31:/usr/src/cobbler/rpm-build
07070100000102000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000001A00000000cobbler-3.1.2/dockerfiles 07070100000103000081A40000000000000000000000015ECE244400000671000000000000000000000000000000000000002D00000000cobbler-3.1.2/dockerfiles/CentOS7.dockerfile  # vim: ft=dockerfile

FROM centos:7

RUN yum makecache fast && \
    yum install -y epel-release && \
    yum install -y https://repo.ius.io/ius-release-el7.rpm \
                   https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm && \
    yum makecache fast

RUN yum install -y          \
# Dev dependencies
    git                     \
    rsync                   \
    make                    \
    dnf-plugins-core        \
    epel-rpm-macros         \
    openssl                 \
    mod_ssl                 \
    python-sphinx           \
    python36-coverage       \
    python36-devel          \
    python36-wheel          \
    python36-distro         \
    python36-future         \
    python36-pyflakes       \
    python36-pycodestyle    \
    python36-setuptools     \
    python36-requests       \
    python36-sphinx         \
    rpm-build

RUN yum install -y          \
# Runtime dependencies
    httpd                   \
    python36-mod_wsgi       \
    python36-pymongo        \
    python36-PyYAML         \
    python36-netaddr        \
    python36-simplejson     \
    python36-tornado        \
    python36-django         \
    python36-dns            \
    python36-ldap3          \
    python36-cheetah        \
    createrepo_c            \
    xorriso                 \
    grub2-efi-ia32-modules  \
    grub2-efi-x64-modules   \
    logrotate               \
    syslinux                \
    systemd-sysv            \
    tftp-server             \
    fence-agents

COPY . /usr/src/cobbler
WORKDIR /usr/src/cobbler

VOLUME /usr/src/cobbler/rpm-build

CMD ["/bin/bash", "-c", "make rpms"]
   07070100000104000081A40000000000000000000000015ECE2444000007C2000000000000000000000000000000000000002D00000000cobbler-3.1.2/dockerfiles/CentOS8.dockerfile  # vim: ft=dockerfile

FROM centos:8

RUN dnf makecache && \
    dnf install -y epel-release dnf-utils && \
    dnf config-manager --set-enabled PowerTools && \
    dnf makecache

# overlay2 bug with yum/dnf
#
# OverlayFS only implements a subset of POSIX standards. This can cause RPM db corruption.
# See bottom of https://docs.docker.com/storage/storagedriver/overlayfs-driver/
# Since there is no dnf-plugin-ovl for CentOS 8 yet, we need to touch /var/lib/rpm/* before
# 'dnf install' to avoid the issue.

# Dev dependencies
RUN touch /var/lib/rpm/* &&   \
    dnf install -y            \
    git                       \
    rsync                     \
    make                      \
    openssl                   \
    mod_ssl                   \
    initscripts               \
    python3-sphinx            \
    platform-python-coverage  \
    python3-devel             \
    python3-wheel             \
    python3-distro            \
    python3-future            \
    python3-pyflakes          \
    python3-pycodestyle       \
    python3-setuptools        \
    python3-sphinx            \
    epel-rpm-macros           \
    rpm-build

# Runtime dependencies
RUN touch /var/lib/rpm/* &&   \
    dnf install -y            \
    httpd                     \
    python3-mod_wsgi          \
    python3-pyyaml            \
    python3-netaddr           \
    python3-simplejson        \
    python3-cheetah           \
    python3-tornado           \
    python3-django            \
    python3-dns               \
    python3-ldap3             \
    python3-pymongo           \
    createrepo_c              \
    dnf-plugins-core          \
    xorriso                   \
    grub2-efi-ia32-modules    \
    grub2-efi-x64-modules     \
    logrotate                 \
    syslinux                  \
    tftp-server               \
    fence-agents

COPY . /usr/src/cobbler
WORKDIR /usr/src/cobbler

VOLUME /usr/src/cobbler/rpm-build

CMD ["/bin/bash", "-c", "make rpms"]
  07070100000105000081A40000000000000000000000015ECE244400000791000000000000000000000000000000000000002E00000000cobbler-3.1.2/dockerfiles/Debian10.dockerfile # vim: ft=dockerfile

FROM debian:10

ENV DEBIAN_FRONTEND noninteractive

# TERM=screen is fairly neutral and works with xterm for example, for others
# you might need to pass -e TERM=<terminal>, like rxvt-unicode.
ENV TERM screen
ENV OSCODENAME buster

# Add repo for debbuild and install all packages required
# hadolint ignore=DL3008,DL3015,DL4006
RUN apt-get update -qq && \
    apt-get install -qqy gnupg curl && \
    /bin/sh -c "echo 'deb http://download.opensuse.org/repositories/Debian:/debbuild/Debian_10/ /' > /etc/apt/sources.list.d/debbuild.list" && \
    curl -sL http://download.opensuse.org/repositories/Debian:/debbuild/Debian_10/Release.key | apt-key add - && \
    apt-get update -qq && \
    apt-get install -qqy \
    debbuild \
    debbuild-macros \
    wget \
    pycodestyle \
    pyflakes3 \
    python-django-common \
    python3-cheetah  \
    python3-coverage \
    python3-wheel   \
    python3-distro \
    python3-distutils \
    python3-django \
    python3-dnspython \
    python3-dns  \
    python3-dnsq  \
    python3-future \
    python3-ldap3 \
    python3-netaddr \
    python3-pip \
    python3-pycodestyle \
    python3-pytest \
    python3-setuptools \
    python3-simplejson  \
    python3-sphinx \
    python3-tornado \
    python3-tz \
    python3-yaml \
    liblocale-gettext-perl \
    lsb-release \
    xz-utils \
    bzip2 \
    dpkg-dev \
    tftpd-hpa \
    createrepo \
    rsync \
    xorriso\
    fakeroot \
    patch \
    pax \
    git \
    hardlink \
    apache2 \
    libapache2-mod-wsgi-py3 \
    systemd && \
    apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

# Make /bin/sh point to bash, not dash
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
RUN echo "dash dash/sh boolean false" | debconf-set-selections && \
    dpkg-reconfigure dash

COPY . /usr/src/cobbler
WORKDIR /usr/src/cobbler

VOLUME /usr/src/cobbler/deb-build

CMD ["/bin/bash", "-c", "make debs"]
   07070100000106000081A40000000000000000000000015ECE244400000590000000000000000000000000000000000000002E00000000cobbler-3.1.2/dockerfiles/Fedora31.dockerfile # vim: ft=dockerfile

FROM fedora:31

RUN dnf makecache

# Dev dependencies
RUN dnf install -y          \
    git                     \
    rsync                   \
    make                    \
    openssl                 \
    mod_ssl                 \
    initscripts             \
    python-sphinx           \
    python3-coverage        \
    python3-devel           \
    python3-wheel           \
    python3-distro          \
    python3-future          \
    python3-pep8            \
    python3-pyflakes        \
    python3-pycodestyle     \
    python3-setuptools      \
    python3-sphinx          \
    python3-pip             \
    rpm-build

# Runtime dependencies
RUN yum install -y          \
    httpd                   \
    python3-mod_wsgi        \
    python3-PyYAML          \
    python3-cheetah         \
    python3-netaddr         \
    python3-simplejson      \
    python3-tornado         \
    python3-django          \
    python3-dns             \
    python3-ldap3           \
    python3-pymongo         \
    createrepo_c            \
    dnf-plugins-core        \
    xorriso                 \
    grub2-efi-ia32-modules  \
    grub2-efi-x64-modules   \
    logrotate               \
    syslinux                \
    tftp-server             \
    fence-agents

COPY . /usr/src/cobbler
WORKDIR /usr/src/cobbler

VOLUME /usr/src/cobbler/rpm-build

CMD ["/bin/bash", "-c", "make rpms"]
07070100000107000081A40000000000000000000000015ECE244400000580000000000000000000000000000000000000002D00000000cobbler-3.1.2/dockerfiles/release.dockerfile  # This dockerfile is thought to create a release so you don't need to install every dependeny on your host.

FROM opensuse/leap:15.2

WORKDIR /build

ENV container docker

# Update the repositories and update any system packages
RUN ["zypper", "-n", "update"]
# Install webserver and system tools needed for Cobbler
RUN ["zypper", "-n", "in", "apache2", "apache2-devel", "acl", "apache2-mod_wsgi-python3", "ipmitool", "rsync"]
RUN ["zypper", "-n", "in", "fence-agents", "genders", "xorriso", "tftp", "hardlink"]
# Install Python dependencies for Cobbler
RUN ["zypper", "-n", "in", "python3", "python3-devel", "python3-pip", "python3-setuptools", "python3-future"]
RUN ["zypper", "-n", "in", "python3-distro", "python3-ldap", "python3-netaddr", "python3-Django", "python3-pykickstart"]
RUN ["zypper", "-n", "in", "python3-simplejson", "python3-dnspython", "python3-Cheetah3", "python3-PyYAML"]
# Packages for building & installing Cobbler from source
RUN ["zypper", "-n", "in", "make", "gzip", "sed", "git", "hg", "python3-wheel", "python3-Sphinx"]
# Packages for linting
RUN ["zypper", "-n", "in", "python3-pyflakes", "python3-pycodestyle"]
# Packages for testing
RUN ["zypper", "-n", "in", "python3-pytest", "python3-pytest-cov", "python3-codecov", "python3-coverage"]

# Install and upgrade pip
RUN ["pip3", "install", "--upgrade", "pip"]

VOLUME [ "/build" ]

# Set this as an entrypoint
CMD make release
07070100000108000041ED0000000000000000000000045ECE244400000000000000000000000000000000000000000000001300000000cobbler-3.1.2/docs    07070100000109000081A40000000000000000000000015ECE244400000254000000000000000000000000000000000000001C00000000cobbler-3.1.2/docs/Makefile   # Makefile for Sphinx documentation
#

# You can set these variables from the command line.
SPHINXOPTS    =
SPHINXBUILD   = sphinx-build
SPHINXPROJ    = Cobbler
SOURCEDIR     = .
BUILDDIR      = _build

# Put it first so that "make" without argument is like "make help".
help:
	@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

.PHONY: help Makefile

# Catch-all target: route all unknown targets to Sphinx using the new
# "make mode" option.  $(O) is meant as a shortcut for $(SPHINXOPTS).
%: Makefile
	@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)0707010000010A000081A40000000000000000000000015ECE24440000600D000000000000000000000000000000000000002400000000cobbler-3.1.2/docs/cobbler-conf.rst   ***********************************
Cobbler Configuration
***********************************

There are two main settings files: settings and modules.conf. Both files can be found under ``/etc/cobbler/`` and both are
written in YAML.

settings
##################

allow_duplicate_hostnames
=========================
if 1, cobbler will allow insertions of system records that duplicate the ``--dns-name`` information of other system records.
In general, this is undesirable and should be left 0.

default: ``0``

allow_duplicate_ips
===================
if 1, cobbler will allow insertions of system records that duplicate the ip address information of other system records.
In general, this is undesirable and should be left 0.

default: ``0``

allow_duplicate_macs
====================
If 1, cobbler will allow insertions of system records that duplicate the mac address information of other system
records. In general, this is undesirable.

default: ``0``

allow_dynamic_settings
======================
If 1, cobbler will allow settings to be changed dynamically without a restart of the cobblerd daemon. You can only
change this variable by manually editing the settings file, and you MUST restart cobblerd after changing it.

default: ``0``

anamon_enabled
==============
By default, installs are *not* set to send installation logs to the cobbler server. With ``anamon_enabled``, automatic
installation templates may use the ``pre_anamon`` snippet to allow remote live monitoring of their installations from
the cobbler server. Installation logs will be stored under ``/var/log/cobbler/anamon/``.

**Note**: This does allow an xmlrpc call to send logs to this directory, without authentication, so enable only if you
are ok with this limitation.

default: ``0``

authn_pam_service
=================
If using authn_pam in the ``modules.conf``, this can be configured to change the PAM service authentication will be
tested against.

default: ``"login"``

auth_token_expiration
=====================
How long the authentication token is valid for, in seconds.

default: ``3600``

autoinstall_snippets_dir
========================
This is a directory of files that cobbler uses to make templating easier. See the Wiki for more information. Changing
this directory should not be required.

default: ``/var/lib/cobbler/snippets``

autoinstall_templates_dir
=========================
This is a directory of files that cobbler uses to make templating easier. See the Wiki for more information. Changing
this directory should not be required.

default: ``/var/lib/cobbler/templates``

boot_loader_conf_template_dir
=============================
Location of templates used for boot loader config generation.

default: ``"/etc/cobbler/boot_loader_conf"``

build_reporting_*
=================
Email out a report when cobbler finishes installing a system.

- enabled: set to 1 to turn this feature on
- sender: optional
- email: which addresses to email
- smtp_server: used to specify another server for an MTA
- subject: use the default subject unless overridden

defaults:

.. code-block:: none

    build_reporting_enabled: 0
    build_reporting_sender: ""
    build_reporting_email: [ 'root@localhost' ]
    build_reporting_smtp_server: "localhost"
    build_reporting_subject: ""
    build_reporting_ignorelist: [ "" ]

cheetah_import_whitelist
========================
Cheetah-language autoinstall templates can import Python modules. while this is a useful feature, it is not safe to
allow them to import anything they want. This whitelists which modules can be imported through Cheetah. Users can expand
this as needed but should never allow modules such as subprocess or those that allow access to the filesystem as Cheetah
templates are evaluated by cobblerd as code.

default:
 - "random"
 - "re"
 - "time"
 - "netaddr"

createrepo_flags
================
Default createrepo_flags to use for new repositories. If you have ``createrepo >= 0.4.10``, consider
``-c cache --update -C``, which can dramatically improve your ``cobbler reposync`` time. ``-s sha`` enables working with
Fedora repos from F11/F12 from EL-4 or EL-5 without python-hashlib installed (which is not available on EL-4)

default: ``"-c cache -s sha"``

default_autoinstall
===================
If no autoinstall template is specified to profile add, use this template.

default: ``/var/lib/cobbler/autoinstall_templates/default.ks``

default_name_*
==============
Configure all installed systems to use these nameservers by default unless defined differently in the profile. For DHCP
configurations you probably do /not/ want to supply this.

defaults:

.. code-block:: none

    default_name_servers: []
    default_name_servers_search: []

default_ownership
=================
if using the ``authz_ownership`` module (see the Wiki), objects created without specifying an owner are assigned to this
owner and/or group. Can be a comma seperated list.

default:
 - "admin"

default_password_crypted
========================
Cobbler has various sample automatic installation templates stored in ``/var/lib/cobbler/autoinstall_templates/``. This
controls what install (root) password is set up for those systems that reference this variable. The factory default is
"cobbler" and cobbler check will warn if this is not changed. The simplest way to change the password is to run
``openssl passwd -1`` and put the output between the ``""``.

default: ``"$1$mF86/UHC$WvcIcX2t6crBz2onWxyac."``

default_template_type
=====================
The default template type to use in the absence of any other detected template. If you do not specify the template
with ``#template=<template_type>`` on the first line of your templates/snippets, cobbler will assume try to use the
following template engine to parse the templates.

Current valid values are: cheetah, jinja2

default: ``"cheetah"``

default_virt_bridge
===================
For libvirt based installs in koan, if no virt-bridge is specified, which bridge do we try? For EL 4/5 hosts this should
be ``xenbr0``, for all versions of Fedora, try ``virbr0``. This can be overriden on a per-profile basis or at the koan
command line though this saves typing to just set it here to the most common option.

default: ``xenbr0``

default_virt_file_size
======================
Use this as the default disk size for virt guests (GB).

default: ``5``

default_virt_ram
================
Use this as the default memory size for virt guests (MB).

default: ``512``

default_virt_type
=================
If koan is invoked without ``--virt-type`` and no virt-type is set on the profile/system, what virtualization type
should be assumed?

Current valid values are: xenpv, xenfv, qemu, vmware

**NOTE**: this does not change what ``virt_type`` is chosen by import.

default: ``xenpv``

enable_gpxe
===========
Enable gPXE booting? Enabling this option will cause cobbler to copy the ``undionly.kpxe`` file to the tftp root
directory, and if a profile/system is configured to boot via gpxe it will chain load off ``pxelinux.0``.

default: ``0``

enable_menu
===========
Controls whether cobbler will add each new profile entry to the default PXE boot menu. This can be over-ridden on a
per-profile basis when adding/editing profiles with ``--enable-menu=0/1``. Users should ordinarily leave this setting
enabled unless they are concerned with accidental reinstalls from users who select an entry at the PXE boot menu. Adding
a password to the boot menus templates may also be a good solution to prevent unwanted reinstallations

default: ``1``

http_port
=========
Change this port if Apache is not running plaintext on port 80. Most people can leave this alone.

default: ``80``

kernel_options
==============
Kernel options that should be present in every cobbler installation. Kernel options can also be applied at the
distro/profile/system level.

default: ``{}``

ldap_*
======
Configuration options if using the authn_ldap module. See the the Wiki for details. This can be ignored if you are not
using LDAP for WebUI/XMLRPC authentication.

defaults:

.. code-block:: none

    ldap_server: "ldap.example.com"
    ldap_base_dn: "DC=example,DC=com"
    ldap_port: 389
    ldap_tls: 1
    ldap_anonymous_bind: 1
    ldap_search_bind_dn: ''
    ldap_search_passwd: ''
    ldap_search_prefix: 'uid='
    ldap_tls_cacertfile: ''
    ldap_tls_keyfile: ''
    ldap_tls_certfile: ''

mgmt_*
======
Cobbler has a feature that allows for integration with config management systems such as Puppet. The following
parameters work in conjunction with ``--mgmt-classes`` and are described in further detail at:
https://github.com/cobbler/cobbler/wiki/Using-cobbler-with-a-configuration-management-system

.. code-block:: Yaml

    mgmt_classes: []
    mgmt_parameters:
        from_cobbler: 1

puppet_auto_setup
=================
If enabled, this setting ensures that puppet is installed during machine provision, a client certificate is generated
and a certificate signing request is made with the puppet master server.

default: ``0``

sign_puppet_certs_automatically
===============================
When puppet starts on a system after installation it needs to have its certificate signed by the puppet master server.
Enabling the following feature will ensure that the puppet server signs the certificate after installation if the puppet
master server is running on the same machine as cobbler. This requires ``puppet_auto_setup`` above to be enabled.

default: ``0``

puppetca_path
=============
Location of the puppet executable, used for revoking certificates.

default: ``"/usr/bin/puppet"``

remove_old_puppet_certs_automatically
=====================================
When a puppet managed machine is reinstalled it is necessary to remove the puppet certificate from the puppet master
server before a new certificate is signed (see above). Enabling the following feature will ensure that the certificate
for the machine to be installed is removed from the puppet master server if the puppet master server is running on the
same machine as cobbler. This requires ``puppet_auto_setup`` above to be enabled

default: ``0``

puppet_server
=============
Choose a ``--server`` argument when running puppetd/puppet agent during autoinstall. This one is commented out by
default.

default: ``'puppet'``

puppet_version
==============
Let cobbler know that you're using a newer version of puppet. Choose version 3 to use: 'puppet agent'; version 2 uses
status quo: 'puppetd'. This one is commented out by default.

default: ``2``

puppet_parameterized_classes
============================
Choose whether to enable puppet parameterized classes or not. Puppet versions prior to 2.6.5 do not support parameters.
This one is commented out by default.

default: 1

manage_dhcp
===========
Set to 1 to enable Cobbler's DHCP management features. The choice of DHCP management engine is in
``/etc/cobbler/modules.conf``

default: ``0``

manage_dns
==========
Set to 1 to enable Cobbler's DNS management features. The choice of DNS mangement engine is in
``/etc/cobbler/modules.conf``

default: ``0``

bind_chroot_path
================
Set to path of bind chroot to create bind-chroot compatible bind configuration files. This should be automatically
detected.

default: ``""``

bind_master
===========
Set to the ip address of the master bind DNS server for creating secondary bind configuration files.

default: ``127.0.0.1``

manage_tftpd
==============
Set to 1 to enable Cobbler's TFTP management features. the choice of TFTP mangement engine is in
``/etc/cobbler/modules.conf``

default: ``1``

tftpboot_location
=================
This variable contains the location of the tftpboot directory. If this directory is not present cobbler does not start.

Default: ``/srv/tftpboot``

manage_rsync
============
Set to 1 to enable Cobbler's RSYNC management features.

default: ``0``

manage_*
========
If using BIND (named) for DNS management in ``/etc/cobbler/modules.conf`` and manage_dns is enabled (above), this lists
which zones are managed. See the Wiki (https://github.com/cobbler/cobbler/wiki/Dns-management) for more info

defaults:

.. code-block:: none

    manage_forward_zones: []
    manage_reverse_zones: []

next_server
===========
If using cobbler with ``manage_dhcp``, put the IP address of the cobbler server here so that PXE booting guests can find
it. If you do not set this correctly, this will be manifested in TFTP open timeouts.

default: ``127.0.0.1``

power_management_default_type
=============================
Settings for power management features. These settings are optional. See
https://github.com/cobbler/cobbler/wiki/Power-management to learn more.

Choices (refer to codes.py):

- apc_snmp
- bladecenter
- bullpap
- drac
- ether_wake
- ilo
- integrity
- ipmilan
- ipmitool
- lpar
- rsa
- virsh
- wti

default: ``ipmitool``

pxe_just_once
=============
If this setting is set to 1, cobbler systems that pxe boot will request at the end of their installation to toggle the
``--netboot-enabled`` record in the cobbler system record. This eliminates the potential for a PXE boot loop if the
system is set to PXE first in it's BIOS order. Enable this if PXE is first in your BIOS boot order, otherwise leave this
disabled. See the manpage for ``--netboot-enabled``.

default: ``1``

nopxe_with_triggers
===================
If this setting is set to one, triggers will be executed when systems will request to toggle the ``--netboot-enabled``
record at the end of their installation.

default: ``1``

redhat_management_server
========================
This setting is only used by the code that supports using Spacewalk/Satellite authentication within Cobbler Web and
Cobbler XMLRPC.

default: ``"xmlrpc.rhn.redhat.com"``

redhat_management_permissive
============================
If using ``authn_spacewalk`` in ``modules.conf`` to let cobbler authenticate against Satellite/Spacewalk's auth system,
by default it will not allow per user access into Cobbler Web and Cobbler XMLRPC. In order to permit this, the following
setting must be enabled HOWEVER doing so will permit all Spacewalk/Satellite users of certain types to edit all of
cobbler's configuration. these roles are: ``config_admin`` and ``org_admin``. Users should turn this on only if they
want this behavior and do not have a cross-multi-org seperation concern. If you have a single org in your satellite,
it's probably safe to turn this on and then you can use CobblerWeb alongside a Satellite install.

default: ``0``

redhat_management_key
=====================
Specify the default Red Hat authorization key to use to register system. If left blank, no registration will be
attempted. Similarly you can set the ``--redhat-management-key`` to blank on any system to keep it from trying to
register.

default: ``""``

register_new_installs
=====================
If set to ``1``, allows ``/usr/bin/cobbler-register`` (part of the koan package) to be used to remotely add new cobbler
system records to cobbler. This effectively allows for registration of new hardware from system records.

default: ``0``

reposync_flags
==============
Flags to use for yum's reposync. If your version of yum reposync does not support ``-l``, you may need to remove that
option.

default: ``"-l -n -d"``

restart_*
=========
When DHCP and DNS management are enabled, ``cobbler sync`` can automatically restart those services to apply changes.
The exception for this is if using ISC for DHCP, then omapi eliminates the need for a restart. ``omapi``, however, is
experimental and not recommended for most configurations. If DHCP and DNS are going to be managed, but hosted on a box
that is not on this server, disable restarts here and write some other script to ensure that the config files get
copied/rsynced to the destination box. This can be done by modifying the restart services trigger. Note that if
``manage_dhcp`` and ``manage_dns`` are disabled, the respective parameter will have no effect. Most users should not
need to change this.

defaults:

.. code-block:: none

    restart_dns: 1
    restart_dhcp: 1

run_install_triggers
====================
Install triggers are scripts in ``/var/lib/cobbler/triggers/install`` that are triggered in autoinstall pre and post
sections. Any executable script in those directories is run. They can be used to send email or perform other actions.
They are currently run as root so if you do not need this functionality you can disable it, though this will also
disable ``cobbler status`` which uses a logging trigger to audit install progress.

default: ``1``

scm_track_*
===========
enables a trigger which version controls all changes to ``/var/lib/cobbler`` when add, edit, or sync events are
performed. This can be used to revert to previous database versions, generate RSS feeds, or for other auditing or backup
purposes. Git and Mercurial are currently supported, but Git is the recommend SCM for use with this feature.

default:

.. code-block:: none

    scm_track_enabled: 0
    scm_track_mode: "git"
    scm_track_author: "cobbler <cobbler@localhost>"
    scm_push_script: "/bin/true"

server
======
This is the address of the cobbler server -- as it is used by systems during the install process, it must be the address
or hostname of the system as those systems can see the server. if you have a server that appears differently to
different subnets (dual homed, etc), you need to read the ``--server-override`` section of the manpage for how that
works.

default: ``127.0.0.1``

client_use_localhost
====================
If set to 1, all commands will be forced to use the localhost address instead of using the above value which can force
commands like cobbler sync to open a connection to a remote address if one is in the configuration and would traceback.

default: ``0``

client_use_https
================
If set to 1, all commands to the API (not directly to the XMLRPC server) will go over HTTPS instead of plaintext. Be
sure to change the ``http_port`` setting to the correct value for the web server.

default: ``0``

virt_auto_boot
==============
Should new profiles for virtual machines default to auto booting with the physical host when the physical host reboots?
This can be overridden on each profile or system object.

default: ``1``

webdir
======
Cobbler's web directory.  Don't change this setting -- see the Wiki on "relocating your cobbler install" if your /var partition
is not large enough.

default: ``@@webroot@@/cobbler``

webdir_whitelist
================
Directories that will not get wiped and recreated on a ``cobbler sync``.

default:

.. code-block:: none

    webdir_whitelist:
      - misc
      - web
      - webui
      - localmirror
      - repo_mirror
      - distro_mirror
      - images
      - links
      - pub
      - repo_profile
      - repo_system
      - svc
      - rendered
      - .link_cache

xmlrpc_port
===========
Cobbler's public XMLRPC listens on this port. Change this only if absolutely needed, as you'll have to start supplying
a new port option to koan if it is not the default.

default: ``25151``

yum_post_install_mirror
=======================
``cobbler repo add`` commands set cobbler up with repository information that can be used during autoinstall and is
automatically set up in the cobbler autoinstall templates. By default, these are only available at install time. To
make these repositories usable on installed systems (since cobbler makes a very convenient mirror) set this to 1. Most
users can safely set this to 1. Users who have a dual homed cobbler server, or are installing laptops that will not
always have access to the cobbler server may wish to leave this as 0. In that case, the cobbler mirrored yum repos are
still accessible at ``http://cobbler.example.org/cblr/repo_mirror`` and yum configuration can still be done manually.
This is just a shortcut.

default: ``1``

yum_distro_priority
===================
The default yum priority for all the distros. This is only used if yum-priorities plugin is used. 1 is the maximum
value. Tweak with caution.

default: ``1``

yumdownloader_flags
===================
Flags to use for yumdownloader. Not all versions may support ``--resolve``.

default: ``"--resolve"``

serializer_pretty_json
======================
Sort and indent JSON output to make it more human-readable.

default: ``0``

replicate_rsync_options
=======================
replication rsync options for distros, autoinstalls, snippets set to override default value of ``-avzH``

default: ``"-avzH"``

replicate_repo_rsync_options
============================
Replication rsync options for repos set to override default value of ``-avzH``

default: ``"-avzH"``

always_write_dhcp_entries
=========================
Always write DHCP entries, regardless if netboot is enabled.

default: ``0``

proxy_url_ext:
==============
External proxy - used by: get-loaders, reposync, signature update. Per default commented out.

defaults:

.. code-block:: none

  http: http://192.168.1.1:8080
  https: https://192.168.1.1:8443

proxy_url_int
=============
Internal proxy - used by systems to reach cobbler for kickstarts.

E.g.: proxy_url_int: ``http://10.0.0.1:8080``

default: ``""``

jinja2_includedir
=================
This is a directory of files that cobbler uses to include files into Jinja2 templates. Per default this settings is
commented out.

default: ``/var/lib/cobbler/jinja2``

include
=======
Include other configuration snippets with this regular expresion.

default: ``[ "/etc/cobbler/settings.d/*.settings" ]``

modules.conf
############

If you have own custom modules which are not shipped with Cobbler directly you may have additional sections here.

authentication
==============
What users can log into the WebUI and Read-Write XMLRPC?

Choices:

- authn_denyall    -- no one (default)
- authn_configfile -- use /etc/cobbler/users.digest (for basic setups)
- authn_passthru   -- ask Apache to handle it (used for kerberos)
- authn_ldap       -- authenticate against LDAP
- authn_spacewalk  -- ask Spacewalk/Satellite (experimental)
- authn_pam        -- use PAM facilities
- authn_testing    -- username/password is always testing/testing (debug)
- (user supplied)  -- you may write your own module

WARNING: this is a security setting, do not choose an option blindly.

For more information:

- https://github.com/cobbler/cobbler/wiki/Cobbler-web-interface
- https://github.com/cobbler/cobbler/wiki/Security-overview
- https://github.com/cobbler/cobbler/wiki/Kerberos
- https://github.com/cobbler/cobbler/wiki/Ldap

default: ``authn_configfile``

authorization
=============
Once a user has been cleared by the WebUI/XMLRPC, what can they do?

Choices:

- authz_allowall   -- full access for all authneticated users (default)
- authz_ownership  -- use users.conf, but add object ownership semantics
- (user supplied)  -- you may write your own module

**WARNING**: this is a security setting, do not choose an option blindly.
If you want to further restrict cobbler with ACLs for various groups,
pick authz_ownership.  authz_allowall does not support ACLs.  configfile
does but does not support object ownership which is useful as an additional
layer of control.

For more information:

- https://github.com/cobbler/cobbler/wiki/Cobbler-web-interface
- https://github.com/cobbler/cobbler/wiki/Security-overview
- https://github.com/cobbler/cobbler/wiki/Web-authorization

default: ``authz_allowall``

dns
===
Chooses the DNS management engine if manage_dns is enabled in ``/etc/cobbler/settings``, which is off by default.

Choices:

- manage_bind    -- default, uses BIND/named
- manage_dnsmasq -- uses dnsmasq, also must select dnsmasq for dhcp below
- manage_ndjbdns -- uses ndjbdns

**NOTE**: More configuration is still required in ``/etc/cobbler``

For more information: https://github.com/cobbler/cobbler/wiki/Dns-management

default: ``manage_bind``

dhcp
====
Chooses the DHCP management engine if ``manage_dhcp`` is enabled in ``/etc/cobbler/settings``, which is off by default.

Choices:

- manage_isc     -- default, uses ISC dhcpd
- manage_dnsmasq -- uses dnsmasq, also must select dnsmasq for dns above

**NOTE**: More configuration is still required in ``/etc/cobbler``

For more information: https://github.com/cobbler/cobbler/wiki/Dhcp-management

default: ``manage_isc``

tftpd
=====
Chooses the TFTP management engine if manage_tftp is enabled in ``/etc/cobbler/settings``, which is ON by default.

Choices:

- manage_in_tftpd -- default, uses the system's tftp server
- manage_tftpd_py -- uses cobbler's tftp server

default: ``manage_in_tftpd``
   0707010000010B000081A40000000000000000000000015ECE244400022035000000000000000000000000000000000000001F00000000cobbler-3.1.2/docs/cobbler.rst    ***********************************
Cobbler CLI
***********************************

This page contains a description for commands which can be used from the CLI.

.. Go Client: https://github.com/jtopjian/cobblerclient

General Principles
##################

This should just be a brief overview. For the detailed expanations please reefer to
`Readthedocs <https://cobbler.readthedocs.io/>`_.

Distros, Profiles and Systems
=============================

Cobbler has a system of inheritance when it comes to managing the information you want to apply to a certain system.

Images
======

Repositorys
===========

Management Classes
==================

Deleting configuration entries
==============================

If you want to remove a specific object, use the remove command with the name that was used to add it.

.. code-block:: none

    cobbler distro|profile|system|repo|image|mgmtclass|package|file remove --name=string

Editing
=======

If you want to change a particular setting without doing an ``add`` again, use the ``edit`` command, using the same name
you gave when you added the item. Anything supplied in the parameter list will overwrite the settings in the existing
object, preserving settings not mentioned.

.. code-block:: none

    cobbler distro|profile|system|repo|image|mgmtclass|package|file edit --name=string [parameterlist]

Copying
=======

Objects can also be copied:

.. code-block:: none

    cobbler distro|profile|system|repo|image|mgmtclass|package|file copy --name=oldname --newname=newname

Renaming
========

Objects can also be renamed, as long as other objects don't reference them.

.. code-block:: none

    cobbler distro|profile|system|repo|image|mgmtclass|package|file rename --name=oldname --newname=newname

CLI-Commands
############

Short Usage: ``cobbler command [subcommand] [--arg1=value1] [--arg2=value2]``

Long Usage:

.. code-block:: shell

    cobbler <distro|profile|system|repo|image|mgmtclass|package|file> ... [add|edit|copy|get-autoinstall*|list|remove|rename|report] [options|--help]
    cobbler <aclsetup|buildiso|import|list|replicate|report|reposync|sync|validate-autoinstalls|version|signature|get-loaders|hardlink> [options|--help]

cobbler distro
==============

This first step towards configuring what you want to install is to add a distribution record to cobbler's configuration.

If there is an rsync mirror, DVD, NFS, or filesystem tree available that you would rather ``import`` instead, skip down
to the documentation about the ``import`` command. It's really a lot easier to follow the import workflow -- it only
requires waiting for the mirror content to be copied and/or scanned. Imported mirrors also save time during install
since they don't have to hit external install sources.

If you want to be explicit with distribution definition, however, here's how it works:

.. code-block:: shell

    $ cobbler distro add --name=string --kernel=path --initrd=path [--kopts=string] [--kopts-post=string] [--ksmeta=string] [--arch=i386|x86_64|ppc|ppc64] [--breed=redhat|debian|suse] [--template-files=string]

+----------------+-----------------------------------------------------------------------------------------------------+
| Name           | Description                                                                                         |
+================+=====================================================================================================+
| name           | a string identifying the distribution, this should be something like ``rhel6``.                     |
+----------------+-----------------------------------------------------------------------------------------------------+
| kernel         | An absolute filesystem path to a kernel image.                                                      |
+----------------+-----------------------------------------------------------------------------------------------------+
| initrd         | An absolute filesystem path to a initrd image.                                                      |
+----------------+-----------------------------------------------------------------------------------------------------+
| remote-boot-   | A URL pointing to the installation initrd of a distribution. If the bootloader has this support,    |
| kernel         | it will directly download the kernel from this URL, instead of the directory of the tftp client.    |
|                | Note: The kernel (or initrd below) will still be copied into the image directory of the tftp server.|
|                | The above kernel parameter is still needed (e.g. to build iso images, etc.).                        |
|                | The advantage of letting the boot loader retrieve the kernel/initrd directly is the support of      |
|                | changing/updated distibutions. E.g. openSUSE Tumbleweed is updated on the fly and if cobbler would  |
|                | copy/cache the kernel/initrd in the tftp directory, you would get a "kernel does not match          |
|                | distribution" (or similar) error when trying to install.                                            |
+----------------+-----------------------------------------------------------------------------------------------------+
| remote-boot-   | See remote-boot-kernel above.                                                                       |
| initrd         |                                                                                                     |
+----------------+-----------------------------------------------------------------------------------------------------+
| kopts          | Sets kernel command-line arguments that the distro, and profiles/systems depending on it, will use. |
|                | To remove a kernel argument that may be added by a higher cobbler object (or in the global          |
|                | settings), you can prefix it with a ``!``.                                                          |
+----------------+-----------------------------------------------------------------------------------------------------+
|                | Example: ``--kopts="foo=bar baz=3 asdf !gulp"``                                                     |
+----------------+-----------------------------------------------------------------------------------------------------+
|                | This example passes the arguments ``foo=bar baz=3 asdf`` but will make sure ``gulp`` is not passed  |
|                | even if it was requested at a level higher up in the cobbler configuration.                         |
+----------------+-----------------------------------------------------------------------------------------------------+
| kopts-post     | This is just like ``--kopts``, though it governs kernel options on the installed OS, as opposed to  |
|                | kernel options fed to the installer. The syntax is exactly the same. This requires some special     |
|                | snippets to be found in your automatic installation template in order for this to work. Automatic   |
|                | installation templating is described later on in this document.                                     |
+----------------+-----------------------------------------------------------------------------------------------------+
|                | Example: ``noapic``                                                                                 |
+----------------+-----------------------------------------------------------------------------------------------------+
| arch           | Sets the architecture for the PXE bootloader and also controls how koan's ``--replace-self`` option |
|                | will operate.                                                                                       |
+----------------+-----------------------------------------------------------------------------------------------------+
|                | The default setting (``standard``) will use ``pxelinux``. Set to ``ppc`` and ``ppc64`` to use       |
|                | ``yaboot``.                                                                                         |
+----------------+-----------------------------------------------------------------------------------------------------+
|                | ``x86`` and ``x86_64`` effectively do the same thing as standard.                                   |
+----------------+-----------------------------------------------------------------------------------------------------+
|                | If you perform a ``cobbler import``, the arch field will be auto-assigned.                          |
+----------------+-----------------------------------------------------------------------------------------------------+
| ksmeta         | This is an advanced feature that sets automatic installation template variables to substitute, thus |
|                | enabling those files to be treated as templates. Templates are powered using Cheetah and are        |
|                | described further along in this manpage as well as on the Cobbler Wiki.                             |
+----------------+-----------------------------------------------------------------------------------------------------+
|                | Example: ``--ksmeta="foo=bar baz=3 asdf"``                                                          |
+----------------+-----------------------------------------------------------------------------------------------------+
|                | See the section on "Kickstart Templating" for further information.                                  |
+----------------+-----------------------------------------------------------------------------------------------------+
| breed          | Controls how various physical and virtual parameters, including kernel arguments for automatic      |
|                | installation, are to be treated. Defaults to ``redhat``, which is a suitable value for Fedora and   |
|                | CentOS as well. It means anything redhat based.                                                     |
+----------------+-----------------------------------------------------------------------------------------------------+
|                | There is limited experimental support for specifying "debian", "ubuntu", or "suse", which treats the|
|                | automatic installation template file as a preseed/autoyast file format and changes the kernel       |
|                | arguments appropriately. Support for other types of distributions is possible in the future. See the|
|                | Wiki for the latest information about support for these distributions.                              |
+----------------+-----------------------------------------------------------------------------------------------------+
|                | The file used for the answer file, regardless of the breed setting, is the value used for           |
|                | ``--autoinst`` when creating the profile.                                                           |
+----------------+-----------------------------------------------------------------------------------------------------+
| os-version     | Generally this field can be ignored. It is intended to alter some hardware setup for virtualized    |
|                | instances when provisioning guests with koan. The valid options for ``--os-version`` vary depending |
|                | on what is specified for ``--breed``. If you specify an invalid option, the error message will      |
|                | contain a list of valid os versions that can be used. If you don't know the os version or it does   |
|                | not appear in the list, omitting this argument or using ``other`` should be perfectly fine. If you  |
|                | don't encounter any problems with virtualized instances, this option can be safely ignored.         |
+----------------+-----------------------------------------------------------------------------------------------------+
| owners         | Users with small sites and a limited number of admins can probably ignore this option.  All cobbler |
|                | objects (distros, profiles, systems, and repos) can take a --owners parameter to specify what       |
|                | cobbler users can edit particular objects.This only applies to the Cobbler WebUI and XMLRPC         |
|                | interface, not the "cobbler" command line tool run from the shell. Furthermore, this is only        |
|                | respected by the ``authz_ownership`` module which must be enabled in ``/etc/cobbler/modules.conf``. |
|                | The value for ``--owners`` is a space separated list of users and groups as specified in            |
|                | ``/etc/cobbler/users.conf``. For more information see the users.conf file as well as the Cobbler    |
|                | Wiki. In the default Cobbler configuration, this value is completely ignored, as is ``users.conf``. |
+----------------+-----------------------------------------------------------------------------------------------------+
| template-files | This feature allows cobbler to be used as a configuration management system. The argument is a space|
|                | delimited string of ``key=value`` pairs. Each key is the path to a template file, each value is the |
|                | path to install the file on the system. This is described in further detail on the Cobbler Wiki and |
|                | is implemented using special code in the post install. Koan alsocan retrieve these files from a     |
|                | cobbler server on demand, effectively allowing cobbler to function as a lightweight templated       |
|                | configuration management system.                                                                    |
+----------------+-----------------------------------------------------------------------------------------------------+

cobbler profile
===============

A profile associates a distribution to additional specialized options, such as a installation automation file. Profiles
are the core unit of provisioning and at least one profile must exist for every distribution to be provisioned. A
profile might represent, for instance, a web server or desktop configuration. In this way, profiles define a role to be
performed.

.. code-block:: shell

    $ cobbler profile add --name=string --distro=string [--autoinst=path] [--kopts=string] [--ksmeta=string] [--name-servers=string] [--name-servers-search=string] [--virt-file-size=gigabytes] [--virt-ram=megabytes] [--virt-type=string] [--virt-cpus=integer] [--virt-path=string] [--virt-bridge=string] [--server] [--parent=profile] [--filename=string]

Arguments are the same as listed for distributions, save for the removal of "arch" and "breed", and with the additions
listed below:

+---------------------+------------------------------------------------------------------------------------------------+
| Name                | Description                                                                                    |
+=====================+================================================================================================+
| name                | A descriptive name. This could be something like ``rhel5webservers`` or ``f9desktops``.        |
+---------------------+------------------------------------------------------------------------------------------------+
| distro              | The name of a previously defined cobbler distribution. This value is required.                 |
+---------------------+------------------------------------------------------------------------------------------------+
| autoinst            | Local filesystem path to a automatic installation file, the file must reside under             |
|                     | ``/var/lib/cobbler/autoinstall_templates``                                                     |
+---------------------+------------------------------------------------------------------------------------------------+
| name-servers        | If your nameservers are not provided by DHCP, you can specify a space separated list of        |
|                     | addresses here to configure each of the installed nodes to use them (provided the automatic    |
|                     | installation files used are installed on a per-system basis). Users with DHCP setups should not|
|                     | need to use this option. This is available to set in profiles to avoid having to set it        |
|                     | repeatedly for each system record.                                                             |
+---------------------+------------------------------------------------------------------------------------------------+
| name-servers-search | You can specify a space separated list of domain names to configure each of the installed nodes|
|                     | to use them as domain search path.  This is available to set in profiles to avoid having to set|
|                     | it repeatedly for each system record.                                                          |
+---------------------+------------------------------------------------------------------------------------------------+
| virt-file-size      | (Virt-only) How large the disk image should be in Gigabytes. The default is 5. This can be a   |
|                     | comma separated list (ex: ``5,6,7``) to allow for multiple disks of different sizes depending  |
|                     | on what is given to ``--virt-path``. This should be input as a integer or decimal value without|
|                     | units.                                                                                         |
+---------------------+------------------------------------------------------------------------------------------------+
| virt-ram            | (Virt-only) How many megabytes of RAM to consume. The default is 512 MB. This should be input  |
|                     | as an integer without units.                                                                   |
+---------------------+------------------------------------------------------------------------------------------------+
| virt-type           | (Virt-only) Koan can install images using either Xen paravirt (``xenpv``) or QEMU/KVM          |
|                     | (``qemu``). Choose one or the other strings to specify, or values will default to attempting to|
|                     | find a compatible installation type on the client system("auto"). See the "koan" manpage for   |
|                     | more documentation. The default ``--virt-type`` can be configured in the cobbler settings file |
|                     | such that this parameter does not have to be provided. Other virtualization types are          |
|                     | supported, for information on those options (such as VMware), see the Cobbler Wiki.            |
+---------------------+------------------------------------------------------------------------------------------------+
| virt-cpus           | (Virt-only) How many virtual CPUs should koan give the virtual machine? The default is 1. This |
|                     | is an integer.                                                                                 |
+---------------------+------------------------------------------------------------------------------------------------+
| virt-path           | (Virt-only) Where to store the virtual image on the host system. Except for advanced cases,    |
|                     | this parameter can usually be omitted. For disk images, the value is usually an absolute path  |
|                     | to an existing directory with an optional filename component. There is support for specifying  |
|                     | partitions ``/dev/sda4`` or volume groups ``VolGroup00``, etc.                                 |
+---------------------+------------------------------------------------------------------------------------------------+
|                     | For multiple disks, separate the values with commas such as ``VolGroup00,VolGroup00`` or       |
|                     | ``/dev/sda4,/dev/sda5``. Both those examples would create two disks for the VM.                |
+---------------------+------------------------------------------------------------------------------------------------+
| virt-bridge         | (Virt-only) This specifies the default bridge to use for all systems defined under this        |
|                     | profile. If not specified, itwill assume the default value in the cobbler settings file, which |
|                     | as shipped in the RPM is ``xenbr0``. If using KVM, this is most likely not correct. You may    |
|                     | want to override this setting in the system object. Bridge settings are important as they      |
|                     | define how outside networking will reach the guest. For more information on bridge setup, see  |
|                     | the Cobbler Wiki, where there is a section describing koan usage.                              |
+---------------------+------------------------------------------------------------------------------------------------+
| repos               | This is a space delimited list of all the repos (created with ``cobbler repo add`` and updated |
|                     | with ``cobbler reposync``)that this profile can make use of during automated installation. For |
|                     | example, an example might be ``--repos="fc6i386updates fc6i386extras"`` if the profile wants to|
|                     | access these two mirrors that are already mirrored on the cobbler server. Repo management is   |
|                     | described in greater depth later in the manpage.                                               |
+---------------------+------------------------------------------------------------------------------------------------+
| parent              | This is an advanced feature.                                                                   |
+---------------------+------------------------------------------------------------------------------------------------+
|                     | Profiles may inherit from other profiles in lieu of specifying ``--distro``. Inherited profiles|
|                     | will override any settings specified in their parent, with the exception of ``--ksmeta``       |
|                     | (templating) and ``--kopts`` (kernel options), which will be blended together.                 |
+---------------------+------------------------------------------------------------------------------------------------+
|                     | Example: If profile A has ``--kopts="x=7 y=2"``, B inherits from A, and B has                  |
|                     | ``--kopts="x=9 z=2"``, the actual kernel options that will be used for B are ``x=9 y=2 z=2``.  |
+---------------------+------------------------------------------------------------------------------------------------+
|                     | Example: If profile B has ``--virt-ram=256`` and A has ``--virt-ram=512``, profile B will use  |
|                     | the value 256.                                                                                 |
+---------------------+------------------------------------------------------------------------------------------------+
|                     | Example: If profile A has a ``--virt-file-size=5`` and B does not specify a size, B will use   |
|                     | the value from A.                                                                              |
+---------------------+------------------------------------------------------------------------------------------------+
| server              | This parameter should be useful only in select circumstances. If machines are on a subnet that |
|                     | cannot access the cobbler server using the name/IP as configured in the cobbler settings file, |
|                     | use this parameter to override that servername. See also ``--dhcp-tag`` for configuring the    |
|                     | next server and DHCP information of the system if you are also usingCobbler to help manage your|
|                     | DHCP configuration.                                                                            |
+---------------------+------------------------------------------------------------------------------------------------+
| filename            | This parameter can be used to select the bootloader for network boot. If specified, this must  |
|                     | be a path relative to the tftp servers root directory. (e. g. grub/grubx64.efi)                |
|                     | For most use cases the default bootloader is correct and this can be omitted                   |
+----------------------------------------------------------------------------------------------------------------------+

cobbler system
==============

System records map a piece of hardware (or a virtual machine) with the cobbler profile to be assigned to run on it. This
may be thought of as choosing a role for a specific system.

Note that if provisioning via koan and PXE menus alone, it is not required to create system records in cobbler, though
they are useful when system specific customizations are required. One such customization would be defining the MAC
address. If there is a specific role intended for a given machine, system records should be created for it.

System commands have a wider variety of control offered over network details. In order to use these to the fullest
possible extent, the automatic installation template used by cobbler must contain certain automatic installation
snippets (sections of code specifically written for Cobbler to make these values become reality). Compare your automatic
installation templates with the stock ones in /var/lib/cobbler/autoinstall_templates if you have upgraded, to make sure
you can take advantage of all options to their fullest potential. If you are a new cobbler user, base your automatic
installation templates off of these templates.

Read more about networking setup at: https://github.com/cobbler/cobbler/wiki/Advanced-networking

Example:

.. code-block:: bash

    $ cobbler system add --name=string --profile=string [--mac=macaddress] [--ip-address=ipaddress] [--hostname=hostname] [--kopts=string] [--ksmeta=string] [--autoinst=path] [--netboot-enabled=Y/N] [--server=string] [--gateway=string] [--dns-name=string] [--static-routes=string] [--power-address=string] [--power-type=string] [--power-user=string] [--power-pass=string] [--power-id=string]

Adds a cobbler System to the configuration. Arguments are specified as per "profile add" with the following changes:

+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Name                                                          | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
+===============================================================+======================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================+
| name                                                          | The system name works like the name option for other commands.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|                                                               | If the name looks like a MAC address or an IP, the name will implicitly be used for either --mac or --ip of the firstinterface, respectively. However, it's usually better to give a descriptive name -- don't rely on this behavior.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|                                                               | A system created with name "default" has special semantics. If a default system object exists, it sets all undefinedsystems to PXE to a specific profile.  Without a "default" system name created, PXE will fall through to local boot forunconfigured systems.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|                                                               | When using "default" name, don't specify any other arguments than --profile ... they won't be used.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| mac                                                           | Specifying a mac address via --mac allows the system object to boot directly to a specific profile via PXE, bypassingcobbler's PXE menu.  If the name of the cobbler system already looks like a mac address, this is inferred from thesystem name and does not need to be specified.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|                                                               | MAC addresses have the format AA:BB:CC:DD:EE:FF. It's highly recommended to register your MAC-addresses in Cobbler ifyou're using static addressing with multiple interfaces, or if you are using any of the advanced networking featureslike bonding, bridges or VLANs.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|                                                               | Cobbler does contain a feature (enabled in /etc/cobbler/settings) that can automatically add new system records when itfinds profiles being provisioned on hardware it has seen before.  This may help if you do not have a report of all theMAC addresses in your datacenter/lab configuration.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| ip-address                                                    | If cobbler is configured to generate a DHCP configuration (see advanced section), use this setting to define a specificIP for this system in DHCP.  Leaving off this parameter will result in no DHCP management for this particular system.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|                                                               | Example: --ip-address=192.168.1.50                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|                                                               | If DHCP management is disabled and the interface is labelled --static=1, this setting will be used for static IPconfiguration.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|                                                               | Special feature: To control the default PXE behavior for an entire subnet, this field can also be passed in using CIDRnotation.  If --ip is CIDR, do not specify any other arguments other than --name and --profile.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|                                                               | When using the CIDR notation trick, don't specify any arguments other than --name and --profile... they won't be used.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| dns-name                                                      | If using the DNS management feature (see advanced section -- cobbler supports auto-setup of BIND and dnsmasq), use thisto define a hostname for the system to receive from DNS.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|                                                               | Example: --dns-name=mycomputer.example.com                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|                                                               | This is a per-interface parameter.  If you have multiple interfaces, it may be different for each interface, forexample, assume a DMZ / dual-homed setup.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| gateway and netmask                                           | If you are using static IP configurations and the interface is flagged --static=1, these will be applied.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|                                                               | Netmask is a per-interface parameter. Because of the way gateway is stored on the installed OS, gateway is a globalparameter. You may use --static-routes for per-interface customizations if required.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| if-gateway                                                    | If you are using static IP configurations and have multiple interfaces, use this to define different gateway for eachinterface.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|                                                               | This is a per-interface setting.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| hostname                                                      | This field corresponds to the hostname set in a systems /etc/sysconfig/network file.  This has no bearing on DNS, evenwhen manage_dns is enabled.  Use --dns-name instead for that feature.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|                                                               | This parameter is assigned once per system, it is not a per-interface setting.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| power-address, power-type, power-user, power-pass, power-id   | Cobbler contains features that enable integration with power management for easier installation, reinstallation, andmanagement of machines in a datacenter environment.  These parameters are described online athttps://github.com/cobbler/cobbler/wiki/Power-management. If you have a power-managed datacenter/lab setup, usage ofthese features may be something you are interested in.                                                                                                                                                                                                                                                                                                                                                                                                                          |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| static                                                        | Indicates that this interface is statically configured.  Many fields (such as gateway/netmask) will not be used unlessthis field is enabled.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|                                                               | This is a per-interface setting.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| static-routes                                                 | This is a space delimited list of ip/mask:gateway routing information in that format. Most systems will not need thisinformation.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|                                                               | This is a per-interface setting.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| virt-bridge                                                   | (Virt-only) While --virt-bridge is present in the profile object (see above), here it works on an interface by interfacebasis. For instance it would be possible to have --virt-bridge0=xenbr0 and --virt-bridge1=xenbr1. If not specified incobbler for each interface, koan will use the value as specified in the profile for each interface, which may not alwaysbe what is intended, but will be sufficient in most cases.                                                                                                                                                                                                                                                                                                                                                                                      |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|                                                               | This is a per-interface setting.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| autoinst                                                      | While it is recommended that the --autoinst parameter is only used within for the "profile add" command, there arelimited scenarios when an install base switching to cobbler may have legacy automatic installation files created on aper-system basis (one automatic installation file for each system, nothing shared) and may not want to immediately makeuse of the cobbler templating system. This allows specifying a automatic installation file for use on a per-systembasis. Creation of a parent profile is still required.  If the automatic installation file is a filesystem location, itwill still be treated as a cobbler template.                                                                                                                                                                  |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| netboot-enabled                                               | If set false, the system will be provisionable through koan but not through standard PXE. This will allow the system tofall back to default PXE boot behavior without deleting the cobbler system object. The default value allows PXE. Cobblercontains a PXE boot loop prevention feature (pxe_just_once, can be enabled in /etc/cobbler/settings) that canautomatically trip off this value after a system gets done installing. This can prevent installs from appearing in anendless loop when the system is set to PXE first in the BIOS order.                                                                                                                                                                                                                                                                 |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| repos-enabled                                                 | If set true, koan can reconfigure repositories after installation. This is described further on the Cobbler Wiki,https://github.com/cobbler/cobbler/wiki/Manage-yum-repos.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| dhcp-tag                                                      | If you are setting up a PXE environment with multiple subnets/gateways, and are using cobbler to manage a DHCPconfiguration, you will probably want to use this option. If not, it can be ignored.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|                                                               | By default, the dhcp tag for all systems is "default" and means that in the DHCP template files the systems will expandout where $insert_cobbler_systems_definitions is found in the DHCP template. However, you may want certain systems toexpand out in other places in the DHCP config file.  Setting --dhcp-tag=subnet2 for instance, will cause that system toexpand out where $insert_cobbler_system_definitions_subnet2 is found, allowing you to insert directives to specifydifferent subnets (or other parameters) before the DHCP configuration entries for those particular systems.                                                                                                                                                                                                                     |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|                                                               | This is described further on the Cobbler Wiki.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| interface                                                     | By default flags like --ip, --mac, --dhcp-tag, --dns-name, --netmask, --virt-bridge, and --static-routes operate on thefirst network interface defined for a system (eth0). However, cobbler supports an arbitrary number of interfaces. Using--interface=eth1 for instance, will allow creating and editing of a second interface.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|                                                               | Interface naming notes:                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|                                                               | Additional interfaces can be specified (for example: eth1, or any name you like, as long as it does not conflict withany reserved names such as kernel module names) for use with the edit command. Defining VLANs this way is alsosupported, of you want to add VLAN 5 on interface eth0, simply name your interface eth0.5.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|                                                               | Example:                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|                                                               | cobbler system edit --name=foo --ip-address=192.168.1.50 --mac=AA:BB:CC:DD:EE:A0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|                                                               | cobbler system edit --name=foo --interface=eth0 --ip-address=192.168.1.51 --mac=AA:BB:CC:DD:EE:A1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|                                                               | cobbler system report foo                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|                                                               | Interfaces can be deleted using the --delete-interface option.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|                                                               | Example:                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|                                                               | cobbler system edit --name=foo --interface=eth2 --delete-interface                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| interface-type, interface-master and bonding-opts/bridge-opts | One of the other advanced networking features supported by Cobbler is NIC bonding, bridging, and BMC. You can use thisto bond multiple physical network interfaces to one single logical interface to reduce single points of failure in yournetwork, to create bridged interfaces for things like tunnels and virtual machine networks, or to manage BMC interfaceby DHCP. Supported values for the --interface-type parameter are "bond", "bond_slave", "bridge", "bridge_slave","bonded_bridge_slave" and "bmc".  If one of the "_slave" options is specified, you also need to define themaster-interface for this bond using --interface-master=INTERFACE. Bonding and bridge options for the master-interfacemay be specified using --bonding-opts="foo=1 bar=2" or --bridge-opts="foo=1 bar=2", respectively. |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|                                                               | Example:                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|                                                               | cobbler system edit --name=foo --interface=eth0 --mac=AA:BB:CC:DD:EE:00 --interface-type=bond_slave --interface-master=bond0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|                                                               | cobbler system edit --name=foo --interface=eth1 --mac=AA:BB:CC:DD:EE:01 --interface-type=bond_slave --interface-master=bond0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|                                                               | cobbler system edit --name=foo --interface=bond0 --interface-type=bond --bonding-opts="mode=active-backup miimon=100" --ip-address=192.168.0.63 --netmask=255.255.255.0 --gateway=192.168.0.1 --static=1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|                                                               | More information about networking setup is available at https://github.com/cobbler/cobbler/wiki/Advanced-networking                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|                                                               | To review what networking configuration you have for any object, run "cobbler system report" at any time:                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|                                                               | Example:                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|                                                               | cobbler system report --name=foo                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
+---------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

cobbler repo
============

Repository mirroring allows cobbler to mirror not only install trees ("cobbler import" does this for you) but also
optional packages, 3rd party content, and even updates. Mirroring all of this content locally on your network will
result in faster, more up-to-date installations and faster updates. If you are only provisioning a home setup, this will
probably be overkill, though it can be very useful for larger setups (labs, datacenters, etc).

.. code-block:: shell

    $ cobbler repo add --mirror=url --name=string [--rpmlist=list] [--creatrepo-flags=string] [--keep-updated=Y/N] [--priority=number] [--arch=string] [--mirror-locally=Y/N] [--breed=yum|rsync|rhn]

+------------------+---------------------------------------------------------------------------------------------------+
| Name             | Description                                                                                       |
+==================+===================================================================================================+
| mirror           | The address of the yum mirror. This can be an ``rsync://``-URL, an ssh location, or a ``http://`` |
|                  | or ``ftp://`` mirror location. Filesystem paths also work.                                        |
+------------------+---------------------------------------------------------------------------------------------------+
|                  | The mirror address should specify an exact repository to mirror -- just one architecture and just |
|                  | one distribution. If you have a separate repo to mirror for a different arch, add that repo       |
|                  | separately.                                                                                       |
+------------------+---------------------------------------------------------------------------------------------------+
|                  | Here's an example of what looks like a good URL:                                                  |
+------------------+---------------------------------------------------------------------------------------------------+
|                  | - ``rsync://yourmirror.example.com/fedora-linux-core/updates/6/i386`` (for rsync protocol)        |
|                  | - ``http://mirrors.kernel.org/fedora/extras/6/i386/`` (for http)                                  |
|                  | - ``user@yourmirror.example.com/fedora-linux-core/updates/6/i386``  (for SSH)                     |
+------------------+---------------------------------------------------------------------------------------------------+
|                  | Experimental support is also provided for mirroring RHN content when you need a fast local mirror.|
|                  | The mirror syntax for this is ``--mirror=rhn://channel-name`` and you must have entitlements for  |
|                  | this to work. This requires the cobbler server to be installed on RHEL5 or later. You will also   |
|                  | need a version of ``yum-utils`` equal or greater to 1.0.4.                                        |
+------------------+---------------------------------------------------------------------------------------------------+
| name             | This name is used as the save location for the mirror. If the mirror represented, say, Fedora     |
|                  | Core 6 i386 updates, a good name would be ``fc6i386updates``. Again, be specific.                 |
+------------------+---------------------------------------------------------------------------------------------------+
|                  | This name corresponds with values given to the ``--repos`` parameter of ``cobbler profile add``.  |
|                  | If a profile has a ``--repos``-value that matches the name given here, that repo can be           |
|                  | automatically set up during provisioning (when supported) and installed systems will also use the |
|                  | boot server as a mirror (unless ``yum_post_install_mirror`` is disabled in the settings file). By |
|                  | default the provisioning server will act as a mirror to systems it installs, which may not be     |
|                  | desirable for laptop configurations, etc.                                                         |
+------------------+---------------------------------------------------------------------------------------------------+
|                  | Distros that can make use of yum repositories during automatic installation include FC6 and later,|
|                  | RHEL 5 and later, and derivative distributions.                                                   |
+------------------+---------------------------------------------------------------------------------------------------+
|                  | See the documentation on ``cobbler profile add`` for more information.                            |
+------------------+---------------------------------------------------------------------------------------------------+
| rpm-list         | By specifying a space-delimited list of package names for ``--rpm-list``, one can decide to mirror|
|                  | only a part of a repo (the list of packages given, plus dependencies). This may be helpful in     |
|                  | conserving time/space/bandwidth. For instance, when mirroring FC6 Extras, it may be desired to    |
|                  | mirror just cobbler and koan, and skip all of the game packages. To do this, use                  |
|                  | ``--rpm-list="cobbler koan"``.                                                                    |
+------------------+---------------------------------------------------------------------------------------------------+
|                  | This option only works for ``http://`` and ``ftp://`` repositories (as it is powered by           |
|                  | yumdownloader). It will be ignored for other mirror types, such as local paths and ``rsync://``   |
|                  | mirrors.                                                                                          |
+------------------+---------------------------------------------------------------------------------------------------+
| createrepo-flags | Specifies optional flags to feed into the createrepo tool, which is called when                   |
|                  | ``cobbler reposync`` is run for the given repository. The defaults are ``-c cache``.              |
+------------------+---------------------------------------------------------------------------------------------------+
| keep-updated     | Specifies that the named repository should not be updated during a normal "cobbler reposync". The |
|                  | repo may still beupdated by name. The repo should be synced at least once before disabling this   |
|                  | feature. See "cobbler reposync" below.                                                            |
+------------------+---------------------------------------------------------------------------------------------------+
| mirror-locally   | When set to ``N``, specifies that this yum repo is to be referenced directly via automatic        |
|                  | installation files and not mirrored locally on the cobbler server. Only ``http://`` and ``ftp://``|
|                  | mirror urls are supported when using ``--mirror-locally=N``, you cannot use filesystem URLs.      |
+------------------+---------------------------------------------------------------------------------------------------+
| priority         | Specifies the priority of the repository (the lower the number, the higher the priority), which   |
|                  | applies to installed machines using the repositories that also have the yum priorities plugin     |
|                  | installed. The default priority for the plugins 99, as is that of all cobbler mirrored            |
|                  | repositories.                                                                                     |
+------------------+---------------------------------------------------------------------------------------------------+
| arch             | Specifies what architecture the repository should use. By default the current system arch (of the |
|                  | server) is used,which may not be desirable. Using this to override the default arch allows        |
|                  | mirroring of source repositories(using ``--arch=src``).                                           |
+------------------+---------------------------------------------------------------------------------------------------+
| yumopts          | Sets values for additional yum options that the repo should use on installed systems. For instance|
|                  | if a yum plugin takes a certain parameter "alpha" and "beta", use something like                  |
|                  | ``--yumopts="alpha=2 beta=3"``.                                                                   |
+------------------+---------------------------------------------------------------------------------------------------+
| breed            | Ordinarily cobbler's repo system will understand what you mean without supplying this parameter,  |
|                  | though you can set it explicitly if needed.                                                       |
+------------------+---------------------------------------------------------------------------------------------------+

cobbler image
=============

Example:

.. code-block:: shell

    $ cobbler image

cobbler mgmtclass
=================

Management classes allows cobbler to function as an configuration management system. Cobbler currently supports the
following resource types:

1. Packages
2. Files

Resources are executed in the order listed above.

.. code-block:: shell

    $ cobbler mgmtclass add --name=string --comment=string [--packages=list] [--files=list]

+----------+-----------------------------------------------------------------------------------------------------------+
| Name     | Description                                                                                               |
+==========+===========================================================================================================+
| name     | The name of the mgmtclass. Use this name when adding a management class to a system, profile, or distro.  |
|          | To add amgmtclass to an existing system use something like                                                |
|          | (``cobbler system edit --name="madhatter" --mgmt-classes="http mysql"``).                                 |
+----------+-----------------------------------------------------------------------------------------------------------+
| comment  | A comment that describes the functions of the management class.                                           |
+----------+-----------------------------------------------------------------------------------------------------------+
| packages | Specifies a list of package resources required by the management class.                                   |
+----------+-----------------------------------------------------------------------------------------------------------+
| files    | Specifies a list of file resources required by the management class.                                      |
+----------+-----------------------------------------------------------------------------------------------------------+


cobbler package
===============

Package resources are managed using ``cobbler package add``

Actions:

+-----------+--------------------------------+
| Name      | Description                    |
+===========+================================+
| install   | Install the package. [Default] |
+-----------+--------------------------------+
| uninstall | Uninstall the package.         |
+-----------+--------------------------------+

Attributes:

+-----------+--------------------------------------------------------+
| Name      | Description                                            |
+===========+========================================================+
| installer | Which package manager to use, vaild options [rpm|yum]. |
+-----------+--------------------------------------------------------+
| version   | Which version of the package to install.               |
+-----------+--------------------------------------------------------+

Example:

.. code-block:: shell

    $ cobbler package add --name=string --comment=string [--action=install|uninstall] --installer=string [--version=string]

cobbler file
============

Actions:

+--------+----------------------------+
| Name   | Description                |
+========+============================+
| create | Create the file. [Default] |
+--------+----------------------------+
| remove | Remove the file.           |
+--------+----------------------------+

Attributes:

+----------+--------------------------------+
| Name     | Description                    |
+==========+================================+
| mode     | Permission mode (as in chmod). |
+----------+--------------------------------+
| group    | The group owner of the file.   |
+----------+--------------------------------+
| user     | The user for the file.         |
+----------+--------------------------------+
| path     | The path for the file.         |
+----------+--------------------------------+
| template | The template for the file.     |
+----------+--------------------------------+

Example:

.. code-block:: shell

    $ cobbler file add --name=string --comment=string [--action=string] --mode=string --group=string --owner=string --path=string [--template=string]

cobbler aclsetup
================

Example:

.. code-block:: shell

    $ cobbler aclsetup

cobbler buildiso
================

Example:

.. code-block:: shell

    $ cobbler buildiso

cobbler import
==============

Example:

.. code-block:: shell

    $ cobbler import

cobbler list
============

This list all the names grouped by type. Identically to ``cobbler report`` there are subcommands for most of the other
cobbler commands. (Currently: distro, profile, system, repo, image, mgmtclass, package, file)

.. code-block:: shell

    $ cobbler list

cobbler replicate
=================

Cobbler can replicate configurations from a master cobbler server. Each cobbler server is still expected to have a
locally relevant ``/etc/cobbler/cobbler.conf`` and ``modules.conf``, as these files are not synced.

This feature is intended for load-balancing, disaster-recovery, backup, or multiple geography support.

Cobbler can replicate data from a central server.

Objects that need to be replicated should be specified with a pattern, such as ``--profiles="webservers* dbservers*"``
or ``--systems="*.example.org"``. All objects matched by the pattern, and all dependencies of those objects matched by
the pattern (recursively) will be transferred from the remote server to the central server. This is to say if you intend
to transfer ``*.example.org`` and the definition of the systems have not changed, but a profile above them has changed,
the changes to that profile will also be transferred.

In the case where objects are more recent on the local server, those changes will not be overridden locally.

Common data locations will be rsync'ed from the master server unless ``--omit-data`` is specified.

To delete objects that are no longer present on the master server, use ``--prune``.

**Warning**: This will delete all object types not present on the remote server from the local server, and is recursive.
If you use prune, it is best to manage cobbler centrally and not expect changes made on the slave servers to be
preserved. It is not currently possible to just prune objects of a specific type.

Example:

.. code-block:: shell

    $ cobbler replicate --master=cobbler.example.org [--distros=pattern] [--profiles=pattern] [--systems=pattern] [--repos-pattern] [--images=pattern] [--prune] [--omit-data]

cobbler report
=================

This lists all configuration which cobbler can obtain from the saved data. There are also ``report`` subcommands for
most of the other cobbler commands. (Currently: distro, profile, system, repo, image, mgmtclass, package, file)

.. code-block:: shell

    $ cobbler report --name=[object-name]

--name=[object-name]

Optional parameter which filters for object with the given name.

cobbler reposync
================

Example:

.. code-block:: shell

    $ cobbler reposync

cobbler sync
============

The sync command is very important, though very often unnecessary for most situations. It's primary purpose is to force
a rewrite of all configuration files, distribution files in the TFTP root, and to restart managed services. So why is it
unnecessary? Because in most common situations (after an object is edited, for example), Cobbler executes what is known
as a "lite sync" which rewrites most critical files.

When is a full sync required? When you are using ``manage_dhcpd`` (Managing DHCP) with systems that use static leases.
In that case, a full sync is required to rewrite the ``dhcpd.conf`` file and to restart the dhcpd service.

Cobbler sync is used to repair or rebuild the contents ``/tftpboot`` or ``/var/www/cobbler`` when something has changed
behind the scenes. It brings the filesystem up to date with the configuration as understood by cobbler.

Sync should be run whenever files in ``/var/lib/cobbler`` are manually edited (which is not recommended except for the
settings file) or when making changes to automatic installation files. In practice, this should not happen often, though
running sync too many times does not cause any adverse effects.

If using cobbler to manage a DHCP and/or DNS server (see the advanced section of this manpage), sync does need to be run
after systems are added to regenerate and reload the DHCP/DNS configurations.

The sync process can also be kicked off from the web interface.

Example:

.. code-block:: shell

    $ cobbler sync

cobbler validate-autoinstalls
=============================

Example:

.. code-block:: shell

    $ cobbler validate-autoinstalls

cobbler version
===============

Example:

.. code-block:: shell

    $ cobbler version

cobbler signature
=================

Example:

.. code-block:: shell

    $ cobbler signature

cobbler get-loaders
===================

Example:

.. code-block:: shell

    $ cobbler get-loaders

cobbler hardlink
================

Example:

.. code-block:: shell

    $ cobbler hardlink

EXIT_STATUS
###########

cobbler's command line returns a zero for success and non-zero for failure.

Additional Help
###############

We have a Gitter Channel and you also can ask questions as Github-Issues. The IRC Channel on Freenode (#cobbler) is not
that active but sometimes there are people who can help you.

The way we would prefer are Github-Issues as they are easily searchable.

   0707010000010C000081A40000000000000000000000015ECE244400001386000000000000000000000000000000000000002000000000cobbler-3.1.2/docs/cobblerd.rst   ***********************************
Cobblerd
***********************************

cobbler - a provisioning and update server

Preamble
########

We will reefer to cobblerd here as "cobbler" because cobblerd is short for cobbler-daemon which is basically the server.
The CLI will be referred to as Cobbler-CLI and Koan as Koan.

Description
###########

Cobbler manages provisioning using a tiered concept of Distributions, Profiles, Systems, and (optionally) Images and
Repositories.

Distributions contain information about what kernel and initrd are used, plus metadata (required kernel parameters,
etc).

Profiles associate a Distribution with an automated installation template file and optionally customize the metadata
further.

Systems associate a MAC, IP, and other networking details with a profile and optionally customize the metadata further.

Repositories contain yum mirror information. Using cobbler to mirror repositories is an optional feature, though
provisioning and package management share a lot in common.

Images are a catch-all concept for things that do not play nicely in the "distribution" category.  Most users will not
need these records initially and these are described later in the document.

The main advantage of cobbler is that it glues together many disjoint technologies and concepts and abstracts the user
from the need to understand them. It allows the systems administrator to concentrate on what he needs to do, and not
how it is done.

This manpage will focus on the cobbler command line tool for use in configuring cobbler. There is also mention of the
Cobbler WebUI which is usable for day-to-day operation of Cobbler once installed/configured. Docs on the API and XMLRPC
components are available online at `https://cobbler.github.io <https://cobbler.github.io>`_ or
`https://cobbler.readthedocs.io <https://cobbler.readthedocs.io>`_

Most users will be interested in the Web UI and should set it up, though the command line is needed for initial
configuration -- in particular ``cobbler check`` and ``cobbler import``, as well as the repo mirroring features. All of
these are described later in the documentation.

Setup
#####

After installing, run ``cobbler check`` to verify that cobbler's ecosystem is configured correctly. Cobbler check will
direct you on how to modify it's config files using a text editor.

Any problems detected should be corrected, with the potential exception of DHCP related warnings where you will need to
use your judgement as to whether they apply to your environment. Run ``cobbler sync`` after making any changes to the
configuration files to ensure those changes are applied to the environment.

It is especially important that the server name field be accurate in ``/etc/cobbler/settings``, without this field being
correct, automatic installation trees will not be found, and automated installations will fail.

For PXE, if DHCP is to be run from the cobbler server, the dhcp configuration file should be changed as suggested by
``cobbler check``. If DHCP is not run locally, the ``next-server`` field on the DHCP server should at minimum point to
the cobbler server's IP and the filename should be set to ``pxelinux.0``. Alternatively, cobbler can also generate your
dhcp configuration file if you want to run dhcp locally -- this is covered in a later section. If you don't already have
a DHCP setup managed by some other tool, allowing cobbler to manage your DHCP environment will prove to be useful as it
can manage DHCP reservations and other data. If you already have a DHCP setup, moving an existing setup to be managed
from within cobbler is relatively painless -- though usage of the DHCP management feature is entirely optional. If you
are not interested in network booting via PXE and just want to use koan to install virtual systems or replace existing
ones, DHCP configuration can be totally ignored. Koan also has a live CD (see koan's manpage) capability that can be
used to simulate PXE environments.

Autoinstallation (Autoyast/Kickstart)
#####################################

For help in building kickstarts, try using the ``system-config-kickstart`` tool, or install a new system and look at the
``/root/anaconda-ks.cfg`` file left over from the installer. General kickstart questions can also be asked at
kickstart-list@redhat.com. Cobbler ships some autoinstall templates in /etc/cobbler that may also be helpful.

For autoyast guides and help please reefer to `the opensuse project <https://doc.opensuse.org/projects/autoyast/>`_

Also see the website or documentation for additional documentation, user contributed tips, and so on.

Options
#######

-B --daemonize
    If you pass no options this is the default one. The Cobbler-Server runs in the background.

-F --no-daemonize
    The Cobbler-Server runs in the foreground.

-f --log-file
    Choose a destination for the logfile (currently has no effect).

-l --log-level
    Choose a loglevel for the application (currently has no effect).  0707010000010D000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000002000000000cobbler-3.1.2/docs/code-autodoc   0707010000010E000081A40000000000000000000000015ECE24440000083A000000000000000000000000000000000000003400000000cobbler-3.1.2/docs/code-autodoc/cobbler.actions.rst   cobbler.actions package
=======================

Submodules
----------

cobbler.actions.acl module
--------------------------

.. automodule:: cobbler.actions.acl
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.actions.buildiso module
-------------------------------

.. automodule:: cobbler.actions.buildiso
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.actions.check module
----------------------------

.. automodule:: cobbler.actions.check
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.actions.dlcontent module
--------------------------------

.. automodule:: cobbler.actions.dlcontent
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.actions.hardlink module
-------------------------------

.. automodule:: cobbler.actions.hardlink
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.actions.litesync module
-------------------------------

.. automodule:: cobbler.actions.litesync
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.actions.log module
--------------------------

.. automodule:: cobbler.actions.log
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.actions.replicate module
--------------------------------

.. automodule:: cobbler.actions.replicate
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.actions.report module
-----------------------------

.. automodule:: cobbler.actions.report
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.actions.reposync module
-------------------------------

.. automodule:: cobbler.actions.reposync
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.actions.status module
-----------------------------

.. automodule:: cobbler.actions.status
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.actions.sync module
---------------------------

.. automodule:: cobbler.actions.sync
    :members:
    :undoc-members:
    :show-inheritance:


Module contents
---------------

.. automodule:: cobbler.actions
    :members:
    :undoc-members:
    :show-inheritance:
  0707010000010F000081A40000000000000000000000015ECE2444000008BB000000000000000000000000000000000000004000000000cobbler-3.1.2/docs/code-autodoc/cobbler.cobbler_collections.rst   cobbler.cobbler\_collections package
====================================

Submodules
----------

cobbler.cobbler\_collections.collection module
----------------------------------------------

.. automodule:: cobbler.cobbler_collections.collection
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.cobbler\_collections.distros module
-------------------------------------------

.. automodule:: cobbler.cobbler_collections.distros
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.cobbler\_collections.files module
-----------------------------------------

.. automodule:: cobbler.cobbler_collections.files
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.cobbler\_collections.images module
------------------------------------------

.. automodule:: cobbler.cobbler_collections.images
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.cobbler\_collections.manager module
-------------------------------------------

.. automodule:: cobbler.cobbler_collections.manager
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.cobbler\_collections.mgmtclasses module
-----------------------------------------------

.. automodule:: cobbler.cobbler_collections.mgmtclasses
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.cobbler\_collections.packages module
--------------------------------------------

.. automodule:: cobbler.cobbler_collections.packages
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.cobbler\_collections.profiles module
--------------------------------------------

.. automodule:: cobbler.cobbler_collections.profiles
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.cobbler\_collections.repos module
-----------------------------------------

.. automodule:: cobbler.cobbler_collections.repos
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.cobbler\_collections.systems module
-------------------------------------------

.. automodule:: cobbler.cobbler_collections.systems
    :members:
    :undoc-members:
    :show-inheritance:


Module contents
---------------

.. automodule:: cobbler.cobbler_collections
    :members:
    :undoc-members:
    :show-inheritance:
 07070100000110000081A40000000000000000000000015ECE24440000060F000000000000000000000000000000000000003200000000cobbler-3.1.2/docs/code-autodoc/cobbler.items.rst cobbler.items package
=====================

Submodules
----------

cobbler.items.distro module
---------------------------

.. automodule:: cobbler.items.distro
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.items.file module
-------------------------

.. automodule:: cobbler.items.file
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.items.image module
--------------------------

.. automodule:: cobbler.items.image
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.items.item module
-------------------------

.. automodule:: cobbler.items.item
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.items.mgmtclass module
------------------------------

.. automodule:: cobbler.items.mgmtclass
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.items.package module
----------------------------

.. automodule:: cobbler.items.package
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.items.profile module
----------------------------

.. automodule:: cobbler.items.profile
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.items.repo module
-------------------------

.. automodule:: cobbler.items.repo
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.items.system module
---------------------------

.. automodule:: cobbler.items.system
    :members:
    :undoc-members:
    :show-inheritance:


Module contents
---------------

.. automodule:: cobbler.items
    :members:
    :undoc-members:
    :show-inheritance:
 07070100000111000081A40000000000000000000000015ECE24440000068F000000000000000000000000000000000000004300000000cobbler-3.1.2/docs/code-autodoc/cobbler.modules.authentication.rst    cobbler.modules.authentication package
======================================

Submodules
----------

cobbler.modules.authentication.configfile module
------------------------------------------------

.. automodule:: cobbler.modules.authentication.configfile
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.modules.authentication.denyall module
---------------------------------------------

.. automodule:: cobbler.modules.authentication.denyall
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.modules.authentication.ldap module
------------------------------------------

.. automodule:: cobbler.modules.authentication.ldap
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.modules.authentication.pam module
-----------------------------------------

.. automodule:: cobbler.modules.authentication.pam
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.modules.authentication.passthru module
----------------------------------------------

.. automodule:: cobbler.modules.authentication.passthru
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.modules.authentication.spacewalk module
-----------------------------------------------

.. automodule:: cobbler.modules.authentication.spacewalk
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.modules.authentication.testing module
---------------------------------------------

.. automodule:: cobbler.modules.authentication.testing
    :members:
    :undoc-members:
    :show-inheritance:


Module contents
---------------

.. automodule:: cobbler.modules.authentication
    :members:
    :undoc-members:
    :show-inheritance:
 07070100000112000081A40000000000000000000000015ECE244400000360000000000000000000000000000000000000004200000000cobbler-3.1.2/docs/code-autodoc/cobbler.modules.authorization.rst cobbler.modules.authorization package
=====================================

Submodules
----------

cobbler.modules.authorization.allowall module
---------------------------------------------

.. automodule:: cobbler.modules.authorization.allowall
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.modules.authorization.configfile module
-----------------------------------------------

.. automodule:: cobbler.modules.authorization.configfile
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.modules.authorization.ownership module
----------------------------------------------

.. automodule:: cobbler.modules.authorization.ownership
    :members:
    :undoc-members:
    :show-inheritance:


Module contents
---------------

.. automodule:: cobbler.modules.authorization
    :members:
    :undoc-members:
    :show-inheritance:
07070100000113000081A40000000000000000000000015ECE2444000006CB000000000000000000000000000000000000004100000000cobbler-3.1.2/docs/code-autodoc/cobbler.modules.installation.rst  cobbler.modules.installation package
====================================

Submodules
----------

cobbler.modules.installation.post\_log module
---------------------------------------------

.. automodule:: cobbler.modules.installation.post_log
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.modules.installation.post\_power module
-----------------------------------------------

.. automodule:: cobbler.modules.installation.post_power
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.modules.installation.post\_puppet module
------------------------------------------------

.. automodule:: cobbler.modules.installation.post_puppet
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.modules.installation.post\_report module
------------------------------------------------

.. automodule:: cobbler.modules.installation.post_report
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.modules.installation.pre\_clear\_anamon\_logs module
------------------------------------------------------------

.. automodule:: cobbler.modules.installation.pre_clear_anamon_logs
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.modules.installation.pre\_log module
--------------------------------------------

.. automodule:: cobbler.modules.installation.pre_log
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.modules.installation.pre\_puppet module
-----------------------------------------------

.. automodule:: cobbler.modules.installation.pre_puppet
    :members:
    :undoc-members:
    :show-inheritance:


Module contents
---------------

.. automodule:: cobbler.modules.installation
    :members:
    :undoc-members:
    :show-inheritance:
 07070100000114000081A40000000000000000000000015ECE2444000006D3000000000000000000000000000000000000003D00000000cobbler-3.1.2/docs/code-autodoc/cobbler.modules.managers.rst  cobbler.modules.managers package
================================

Submodules
----------

cobbler.modules.managers.bind module
------------------------------------

.. automodule:: cobbler.modules.managers.bind
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.modules.managers.dnsmasq module
---------------------------------------

.. automodule:: cobbler.modules.managers.dnsmasq
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.modules.managers.genders module
---------------------------------------

.. automodule:: cobbler.modules.managers.genders
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.modules.managers.import\_signatures module
--------------------------------------------------

.. automodule:: cobbler.modules.managers.import_signatures
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.modules.managers.in\_tftpd module
-----------------------------------------

.. automodule:: cobbler.modules.managers.in_tftpd
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.modules.managers.isc module
-----------------------------------

.. automodule:: cobbler.modules.managers.isc
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.modules.managers.ndjbdns module
---------------------------------------

.. automodule:: cobbler.modules.managers.ndjbdns
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.modules.managers.tftpd\_py module
-----------------------------------------

.. automodule:: cobbler.modules.managers.tftpd_py
    :members:
    :undoc-members:
    :show-inheritance:


Module contents
---------------

.. automodule:: cobbler.modules.managers
    :members:
    :undoc-members:
    :show-inheritance:
 07070100000115000081A40000000000000000000000015ECE2444000004D1000000000000000000000000000000000000003400000000cobbler-3.1.2/docs/code-autodoc/cobbler.modules.rst   cobbler.modules package
=======================

Subpackages
-----------

.. toctree::

    cobbler.modules.authentication
    cobbler.modules.authorization
    cobbler.modules.installation
    cobbler.modules.managers
    cobbler.modules.serializers

Submodules
----------

cobbler.modules.nsupdate\_add\_system\_post module
--------------------------------------------------

.. automodule:: cobbler.modules.nsupdate_add_system_post
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.modules.nsupdate\_delete\_system\_pre module
----------------------------------------------------

.. automodule:: cobbler.modules.nsupdate_delete_system_pre
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.modules.scm\_track module
---------------------------------

.. automodule:: cobbler.modules.scm_track
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.modules.sync\_post\_restart\_services module
----------------------------------------------------

.. automodule:: cobbler.modules.sync_post_restart_services
    :members:
    :undoc-members:
    :show-inheritance:


Module contents
---------------

.. automodule:: cobbler.modules
    :members:
    :undoc-members:
    :show-inheritance:
   07070100000116000081A40000000000000000000000015ECE244400000268000000000000000000000000000000000000004000000000cobbler-3.1.2/docs/code-autodoc/cobbler.modules.serializers.rst   cobbler.modules.serializers package
===================================

Submodules
----------

cobbler.modules.serializers.file module
---------------------------------------

.. automodule:: cobbler.modules.serializers.file
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.modules.serializers.mongodb module
------------------------------------------

.. automodule:: cobbler.modules.serializers.mongodb
    :members:
    :undoc-members:
    :show-inheritance:


Module contents
---------------

.. automodule:: cobbler.modules.serializers
    :members:
    :undoc-members:
    :show-inheritance:
07070100000117000081A40000000000000000000000015ECE244400000E3E000000000000000000000000000000000000002C00000000cobbler-3.1.2/docs/code-autodoc/cobbler.rst   cobbler package
===============

Subpackages
-----------

.. toctree::
    :maxdepth: 1

    cobbler.actions
    cobbler.cobbler_collections
    cobbler.items
    cobbler.modules
    cobbler.web

Submodules
----------

cobbler.api module
------------------

.. automodule:: cobbler.api
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.autoinstall\_manager module
-----------------------------------

.. automodule:: cobbler.autoinstall_manager
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.autoinstallgen module
-----------------------------

.. automodule:: cobbler.autoinstallgen
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.cexceptions module
--------------------------

.. automodule:: cobbler.cexceptions
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.cli module
------------------

.. automodule:: cobbler.cli
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.clogger module
----------------------

.. automodule:: cobbler.clogger
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.cobblerd module
-----------------------

.. automodule:: cobbler.cobblerd
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.configgen module
------------------------

.. automodule:: cobbler.configgen
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.download\_manager module
--------------------------------

.. automodule:: cobbler.download_manager
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.field\_info module
--------------------------

.. automodule:: cobbler.field_info
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.module\_loader module
-----------------------------

.. automodule:: cobbler.module_loader
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.power\_manager module
-----------------------------

.. automodule:: cobbler.power_manager
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.remote module
---------------------

.. automodule:: cobbler.remote
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.resource module
-----------------------

.. automodule:: cobbler.resource
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.serializer module
-------------------------

.. automodule:: cobbler.serializer
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.services module
-----------------------

.. automodule:: cobbler.services
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.settings module
-----------------------

.. automodule:: cobbler.settings
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.templar module
----------------------

.. automodule:: cobbler.templar
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.template\_api module
----------------------------

.. automodule:: cobbler.template_api
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.tftpgen module
----------------------

.. automodule:: cobbler.tftpgen
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.utils module
--------------------

.. automodule:: cobbler.utils
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.validate module
-----------------------

.. automodule:: cobbler.validate
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.yumgen module
---------------------

.. automodule:: cobbler.yumgen
    :members:
    :undoc-members:
    :show-inheritance:


Module contents
---------------

.. automodule:: cobbler
    :members:
    :undoc-members:
    :show-inheritance:  07070100000118000081A40000000000000000000000015ECE2444000003EC000000000000000000000000000000000000003000000000cobbler-3.1.2/docs/code-autodoc/cobbler.web.rst   cobbler.web package
===================

Subpackages
-----------

.. toctree::

    cobbler.web.templatetags

Submodules
----------

cobbler.web.field\_ui\_info module
----------------------------------

.. automodule:: cobbler.web.field_ui_info
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.web.manage module
-------------------------

.. automodule:: cobbler.web.manage
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.web.settings module
---------------------------

.. automodule:: cobbler.web.settings
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.web.urls module
-----------------------

.. automodule:: cobbler.web.urls
    :members:
    :undoc-members:
    :show-inheritance:

cobbler.web.views module
------------------------

.. automodule:: cobbler.web.views
    :members:
    :undoc-members:
    :show-inheritance:


Module contents
---------------

.. automodule:: cobbler.web
    :members:
    :undoc-members:
    :show-inheritance:
07070100000119000081A40000000000000000000000015ECE244400000191000000000000000000000000000000000000003D00000000cobbler-3.1.2/docs/code-autodoc/cobbler.web.templatetags.rst  cobbler.web.templatetags package
================================

Submodules
----------

cobbler.web.templatetags.site module
------------------------------------

.. automodule:: cobbler.web.templatetags.site
    :members:
    :undoc-members:
    :show-inheritance:


Module contents
---------------

.. automodule:: cobbler.web.templatetags
    :members:
    :undoc-members:
    :show-inheritance:
   0707010000011A000081A40000000000000000000000015ECE2444000018CB000000000000000000000000000000000000001B00000000cobbler-3.1.2/docs/conf.py    # -*- coding: utf-8 -*-
#
# Configuration file for the Sphinx documentation builder.
#
# This file does only contain a selection of the most common options. For a
# full list see the documentation:
# http://www.sphinx-doc.org/en/master/config

# -- Path setup --------------------------------------------------------------

# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#
import os
import sys
sys.path.insert(0, os.path.abspath('..'))


# -- Project information -----------------------------------------------------

project = 'Cobbler'
copyright = '2019, Enno Gotthold'
author = 'Enno Gotthold'

# The short X.Y version
version = '3.0'
# The full version, including alpha/beta/rc tags
release = '3.0.1'


# -- General configuration ---------------------------------------------------

# If your documentation needs a minimal Sphinx version, state it here.
#
# needs_sphinx = '1.0'

# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
    'sphinx.ext.autodoc',
    'sphinx.ext.doctest',
    'sphinx.ext.intersphinx',
    'sphinx.ext.todo',
    'sphinx.ext.coverage',
    'sphinx.ext.mathjax',
    'sphinx.ext.ifconfig',
    'sphinx.ext.viewcode',
]

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']

# The suffix(es) of source filenames.
# You can specify multiple suffix as a list of string:
#
# source_suffix = ['.rst', '.md']
source_suffix = '.rst'

# The master toctree document.
master_doc = 'index'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
#
# This is also used if you do content translation via gettext catalogs.
# Usually you set "language" from the command line for these cases.
language = "en"

# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path .
exclude_patterns = ["_build"]

# The name of the Pygments (syntax highlighting) style to use.
pygments_style = 'sphinx'


# -- Options for HTML output -------------------------------------------------

# The theme to use for HTML and HTML Help pages.  See the documentation for
# a list of builtin themes.
#
html_theme = 'sphinx_rtd_theme'

# Theme options are theme-specific and customize the look and feel of a theme
# further.  For a list of options available for each theme, see the
# documentation.
#
html_theme_options = {
    'canonical_url': '',
    # 'analytics_id': '',  #  Provided by Google in your dashboard
    'logo_only': False,
    'display_version': True,
    'prev_next_buttons_location': 'bottom',
    # Toc options
    'collapse_navigation': True,
    'sticky_navigation': True,
    'navigation_depth': 4,
}

# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']

# Custom sidebar templates, must be a dictionary that maps document names
# to template names.
#
# The default sidebars (for documents that don't match any pattern) are
# defined by theme itself.  Builtin themes are using these templates by
# default: ``['localtoc.html', 'relations.html', 'sourcelink.html',
# 'searchbox.html']``.
#
# html_sidebars = {}


# -- Options for HTMLHelp output ---------------------------------------------

# Output file base name for HTML help builder.
htmlhelp_basename = 'Cobblerdoc'


# -- Options for LaTeX output ------------------------------------------------

latex_elements = {
    # The paper size ('letterpaper' or 'a4paper').
    'papersize': 'a4paper',

    # The font size ('10pt', '11pt' or '12pt').
    # 'pointsize': '10pt',

    # Additional stuff for the LaTeX preamble.
    # 'preamble': '',

    # Latex figure (float) alignment
    # 'figure_align': 'htbp',
}

# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title,
#  author, documentclass [howto, manual, or own class]).
latex_documents = [
    (master_doc, 'Cobbler.tex', 'Cobbler Documentation',
     'Enno Gotthold', 'manual'),
]


# -- Options for manual page output ------------------------------------------

# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
    ('cobbler', 'cobbler', u'Cobbler CLI Documentation', [u'Jörgen Maas'], 1),
    ('cobblerd', 'cobblerd', u'Cobblerd Documentation', [u'Enno Gotthold'], 8),
    ('cobbler-conf', 'cobbler.conf', u'Cobbler Configuration File Documentation', [u'Enno Gotthold'], 5)
]


# -- Options for Texinfo output ----------------------------------------------

# Grouping the document tree into Texinfo files. List of tuples
# (source start file, target name, title, author,
#  dir menu entry, description, category)
texinfo_documents = [
    (master_doc, 'Cobbler', 'Cobbler Documentation',
     author, 'Cobbler', 'One line description of project.',
     'Miscellaneous'),
]


# -- Options for Epub output -------------------------------------------------

# Bibliographic Dublin Core info.
epub_title = project
epub_author = author
epub_publisher = author
epub_copyright = copyright

# The unique identifier of the text. This can be a ISBN number
# or the project homepage.
#
# epub_identifier = ''

# A unique identification for the text.
#
# epub_uid = ''

# A list of files that should not be packed into the epub file.
epub_exclude_files = ['search.html']


# -- Extension configuration -------------------------------------------------

# -- Options for intersphinx extension ---------------------------------------

# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {'https://docs.python.org/': None}

# -- Options for todo extension ----------------------------------------------

# If true, `todo` and `todoList` produce output, else they produce nothing.
todo_include_todos = True
 0707010000011B000081A40000000000000000000000015ECE2444000012E9000000000000000000000000000000000000002700000000cobbler-3.1.2/docs/developer-guide.rst    ***********************************
Developer Guide
***********************************


Patch process
#############

You'd like to contribute features or fixes to Cobbler? Great! We'd love to have them.

It is highly recommended that you have a github.com account if you would like to contribute code. Create an account, log
in, and then go to github.com/cobbler/cobbler to "fork" the project.

Create a new branch named after the feature you are working on. Do the work on your local machine, please make sure your
work passes Cobbler's coding standards by using ``make qa``. Only then push to your personal Github branch
(e.g. github.com/yourname/cobbler).

Then use the "submit pull request" feature of Github to request that the official repo pull in your changes. Be sure to
include a full description of what your change does in the comments, including what you have tested (and other things
that you may have not been able to test well and need help with).

If the patch needs more work, we'll let you know in the comments.

Do not mix work on different features in different pull requests/branches if at all possible as this makes it difficult
to take only some of the work at one time, and to quickly slurp in some changes why others get hammered out.

Once we merge in your pull request, you can remove the branch from your repo if you like. The AUTHORS file is created
automatically when we release.

Setup
#####

The preferred development platform is the latest openSUSE Leap or Tumbleweed. You'll also have to disable SELinux to
get Cobbler up and running.

For CentOS you will need the EPEL repository:
``http://download.fedoraproject.org/pub/epel/7/x86_64/repoview/epel-release.html``

Install development dependencies:

.. code-block:: none

    # yum install git make openssl python-sphinx python36-coverage python36-devel python36-distro python36-future python36-pyflakes python36-pycodestyle python36-setuptools rpm-build

Install runtime dependencies:

.. code-block:: none

    # yum install httpd mod_wsgi python36-PyYAML python36-netaddr python36-simplejso m
    # pip3 install Cheetah3

Initially, to run Cobbler without using packages:

.. code-block:: none

    # git clone https://github.com/<your username>/cobbler.git
    # cd cobbler
    # make install

For each successive run, do not run make install again. To avoid blowing away your configuration, run:

.. code-block:: none

    # make webtest

This will install Cobbler and restart apache/cobblerd, but move your configuration files and settings aside and restore
them, rather than blindly overwriting them.

You can now run Cobbler commands and access the web interface.


Branches
########

Cobbler has a development branch called "master" (where the action is), and branches for all releases that are in
maintaince mode. All work on new features should be done against the master branch. If you want to address bugs then
please target the latest release branch, the maintainers will then cherry-pick those changes into the master branch.

.. code-block:: none

    # git branch -r
    # git checkout <branch>
    # git checkout -b <new branch name>


Standards
#########

We're not overly picky, but please follow the python PEP8 standards we want to adhere to (see Makefile).

- Always use under_scores, not camelCase.
- Always four (4) spaces, not tabs.
- Avoid one line if statements.
- Validate your code by using ``make qa``.
- Keep things simple, keep in mind that this is a tool for sysadmins and not python developers.
- Use modules that are easily available (eg. EPEL) but preferrably in the base OS, otherwise they have to be packaged
  with the app, which usually runs afoul of distribution packaging guidelines.
- Cobbler is since the 3.x.x release Python3 only.
- Koan has no new release currently but starting with the next we will also only support Pyhton3.
- Older releases will of course stay with Python2.

You're also welcome to hang out in #cobbler and #cobbler-devel on irc.freenode.net, as there are folks around to answer
questions, etc. But it isn't that active anymore please drop also in our Cobbler Gitter channel there we will probably
answer faster.

Contributing to the website
###########################

The github-based git repository for the https://cobbler.github.io website itself is at
https://github.com/cobbler/cobbler.github.io.

If you want to contribute changes to the website, you will need jekyll (http://jekyllrb.com).

You will probably want to:

- edit the files as markdown
- run the docker container
- check if your changes didn't break anything

Debugging
#########

If you need to debug a remote process, rpdb provides some very nice capabilities beyond the standard python debugger,
just insert a `import rpdb; rpdb.set_trace()` on the desired line run cobbler and then do a `nc 127.0.0.1 4444`.

   0707010000011C000081A40000000000000000000000015ECE2444000005EC000000000000000000000000000000000000001D00000000cobbler-3.1.2/docs/index.rst  .. Cobbler documentation master file, created by
   sphinx-quickstart on Sat Aug 23 06:59:22 2014.
   You can adapt this file completely to your liking, but it should at least
   contain the root `toctree` directive.

***********************************
Welcome to Cobbler's documentation!
***********************************

cobbler is a provisioning (installation) and update server.  It supports deployments via PXE (network booting),
virtualization (Xen, QEMU/KVM, or VMware), and re-installs of existing Linux systems. The latter two features are
enabled by usage of 'koan' on the remote system. Update server features include yum mirroring and integration of those
mirrors with automated installation files.  Cobbler has a command line interface, Web UI, and extensive Python and
XMLRPC APIs for integration with external scripts and applications.

If you want to explore tools or scripts which are using cobbler please use the Github-Topic:
https://github.com/topics/cobbler

Here you should find a comprehensive overview about the usage of cobbler.

.. toctree::
   :maxdepth: 2
   :numbered:

   Quickstart Guide <quickstart-guide>
   Install Guide <installation-guide>
   Cobbler CLI <cobbler>
   Cobbler Server <cobblerd>
   Cobbler Configuration <cobbler-conf>
   User Guide <user-guide>
   Developer Guide <developer-guide>
   Cobbler-Code Documentation<code-autodoc/cobbler>
   Release Notes <release-notes>

Indices and tables
##################

* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`

0707010000011D000081A40000000000000000000000015ECE244400001D26000000000000000000000000000000000000002A00000000cobbler-3.1.2/docs/installation-guide.rst ***********************************
Install Guide
***********************************

Setting up and running cobblerd is not a easy task. Knowledge in apache configuration (setting up ssl, virtual hosts,
apache module and wsgi) is needed. Certificates and some server administration knowledge is required too.

Cobbler is available for installation in several different ways, through packaging systems for each distribution or
directly from source.

Cobbler has both definite and optional prerequisites, based on the features you'd like to use. This section documents
the definite prerequisites for both a basic installation and when building/installing from source.


Prerequisites
#############

Packages
========

Please note that installing any of the packages here via a package manager (such as dnf/yum or apt) can and will require
a large number of ancilary packages, which we do not document here. The package definition should automatically pull
these packages in and install them along with Cobbler, however it is always best to verify these requirements have been
met prior to installing cobbler or any of its components.

First and foremost, Cobbler requires Python. Any 2.x version should work for 2.8.x releases. Since 3.0.0 you will need
Python 3. Cobbler also requires the installation of the following packages:

- createrepo
- httpd / apache2
- xorriso
- mod_wsgi / libapache2-mod-wsgi
- mod_ssl / libapache2-mod-ssl
- python-cheetah
- python-netaddr
- python-simplejson
- PyYAML / python-yaml
- rsync
- syslinux
- tftp-server / atftpd
- yum-utils

Cobbler-web only has one other requirement besides Cobbler itself:

- Django / python-django

Koan can be installed apart from Cobbler, and has only the following requirement (besides python itself of course):

- python-simplejson

Source
======

Installation from source requires the following additional software:

- git
- make
- python-devel
- python-cheetah
- openssl


Installation
############

Cobbler is available for installation for many Linux variants through their native packaging systems. However, the
Cobbler project also provides packages for all supported distributions which is the preferred method of installation.

Packages
========

We leave packaging to downstream; this means you have to check the repositories provided by your distribution vendor.
However we provide docker files for

- CentOS 7
- CentOS 8
- Debian 10 Buster

which will give you packages which will work better then building from source yourself.

Packages from source
====================

For some platforms it's also possible to build packages directly from the source tree.

RPM
###

.. code-block:: bash

    $ make rpms
    ... (lots of output) ...
    Wrote: /path/to/cobbler/rpm-build/cobbler-3.0.0-1.fc20.src.rpm
    Wrote: /path/to/cobbler/rpm-build/cobbler-3.0.0-1.fc20.noarch.rpm
    Wrote: /path/to/cobbler/rpm-build/koan-3.0.0-1.fc20.noarch.rpm
    Wrote: /path/to/cobbler/rpm-build/cobbler-web-3.0.0-1.fc20.noarch.rpm

As you can see, an RPM is output for each component of Cobbler, as well as a source RPM. This command was run on a
system running Fedora 20, hence the fc20 in the RPM name - this will be different based on the distribution you're
running.

DEB
###

To install Cobbler from source on a Debian-Based system, the following steps need to be made (tested on Debian Buster):

.. code-block:: bash

    $ apt-get -y install make git
    $ apt-get -y install python3-yaml python3-cheetah python3-netaddr python3-simplejson
    $ apt-get -y install python3-future python3-distro python3-setuptools python3-sphinx python3-coverage
    $ apt-get -y install pyflakes3 python3-pycodestyle
    $ apt-get -y install apache2 libapache2-mod-wsgi-py3
    $ apt-get -y install atftpd
    # In case you want cobbler-web
    $ apt-get -y install python3-django

    $ a2enmod proxy
    $ a2enmod proxy_http
    $ a2enmod rewrite

    $ ln -s /srv/tftp /var/lib/tftpboot

    $ systemctl restart apache2

Change all ``/var/www/cobbler`` in ``/etc/apache2/conf.d/cobbler.conf`` to ``/usr/share/cobbler/webroot/``
Init script:
- add Required-Stop line
- path needs to be ``/usr/local/...`` or fix the install location


Source
======

The latest source code is available through git:

.. code-block:: bash

    $ git clone https://github.com/cobbler/cobbler.git
    $ cd cobbler

The release30 branch corresponds to the official release version for the 3.0.x series. The master branch is the
development series, and always uses an odd number for the minor version (for example, 3.1.0).

When building from source, make sure you have the correct prerequisites. Once they are, you can install Cobbler with the
following command:

.. code-block:: bash

    $ make install

This command will rewrite all configuration files on your system if you have an existing installation of Cobbler
(whether it was installed via packages or from an older source tree). To preserve your existing configuration files,
snippets and automatic installation files, run this command:

.. code-block:: bash

    $ make devinstall

To install the Cobbler web GUI, use this command:

.. code-block:: bash

    $ make webtest

This will do a full install, not just the web GUI. ``make webtest`` is a wrapper around ``make devinstall``, so your
configuration files will also be saved when running this command. Be adviced that we don't copy the service file into
the correct directory and that the path to the binary may be wrong depending on the location of the binary on your
system. Do this manually and then you should be good to go. The same is valid for the Apache2 webserver config.

Also note that this is not enough to run Cobbler-Web. Cobbler web needs the directories ``/usr/share/cobbler/web``
with the file ``cobbler.wsgi`` in it. This is currently a manual step. Also remember to manually enter a value for
``SECRET_KEY`` in ``settings.py`` and copy that to above mentioned directory as well as the templates directory.

.. _relocating-your-installation:

Relocating your installation
############################

Often folks don't have a very large ``/var`` partition, which is what Cobbler uses by default for mirroring install
trees and the like.

You'll notice you can reconfigure the webdir location just by going into ``/etc/cobbler/settings``, but it's not the
best way to do things -- especially as the packaging process does include some files and directories in the stock path.
This means that, for upgrades and the like, you'll be breaking things somewhat. Rather than attempting to reconfigure
Cobbler, your Apache configuration, your file permissions, and your SELinux rules, the recommended course of action is
very simple.

1. Copy everything you have already in ``/var/www/cobbler`` to another location -- for instance, ``/opt/cobbler_data``
2. Now just create a symlink or bind mount at ``/var/www/cobbler`` that points to ``/opt/cobbler_data``.

Done. You're up and running.

If you decided to access Cobbler's data store over NFS (not recommended) you really want to mount NFS on
``/var/www/cobbler`` with SELinux context passed in as a parameter to mount versus the symlink. You may also have to
deal with problems related to rootsquash. However if you are making a mirror of a Cobbler server for a multi-site setup,
mounting read only is ok there.

Also Note: ``/var/lib/cobbler`` can not live on NFS, as this interferes with locking ("flock") Cobbler does around it's
storage files.
  0707010000011E000081A40000000000000000000000015ECE244400003B93000000000000000000000000000000000000002800000000cobbler-3.1.2/docs/quickstart-guide.rst   ***********************************
Quickstart
***********************************

Cobbler can be a somewhat complex system to get started with, due to the wide variety of technologies it is designed to
manage, but it does support a great deal of functionality immediately after installation with little to no customization
needed. Before getting started with Cobbler, you should have a good working knowledge of PXE as well as the automated
installation methodology of your chosen distribution(s).

We will assume you have successfully installed Cobbler, please refer to the
:doc:`Installation Guide </installation-guide>` for instructions for your specific operating system. Finally, this part
guide will focus only on the CLI application.


Preparing your OS
##################

SELinux
=======

Before getting started with Cobbler, it may be convenient to either disable SELinux or set it to "permissive" mode,
especially if you are unfamiliar with SELinux troubleshooting or modifying SELinux policy. Cobbler constantly evolves to
assist in managing new system technologies, and the policy that ships with your OS can sometimes lag behind the
feature-set we provide, resulting in AVC denials that break Cobbler's functionality.

Firewall
========
TBD


Changing settings
##################

Before starting the cobblerd service, there are a few things you should modify.

Settings are stored in ``/etc/cobbler/settings``. This file is a YAML formatted data file, so be sure to take care when
editing this file as an incorrectly formatted file will prevent cobblerd from running.


Default encrypted password 
==========================

This setting controls the root password that is set for new systems during the handsoff installation. 

.. code-block:: none

    default_password_crypted: "$1$bfI7WLZz$PxXetL97LkScqJFxnW7KS1"

You should modify this by running the following command and inserting the output into the above string (be sure to save
the quote marks):

.. code-block:: none

    $ openssl passwd -1


Server and next_server
======================

The ``server`` option sets the IP that will be used for the address of the cobbler server. **DO NOT** use 0.0.0.0, as it
is not the listening address. This should be set to the IP you want hosts that are being built to contact the Cobbler
server on for such protocols as HTTP and TFTP.

.. code-block:: none

    server: 127.0.0.1

The ``next_server`` option is used for DHCP/PXE as the IP of the TFTP server from which network boot files are
downloaded. Usually, this will be the same IP as the server setting.

.. code-block:: none

    next_server: 127.0.0.1


DHCP management and DHCP server template
########################################

In order to PXE boot, you need a DHCP server to hand out addresses and direct the booting system to the TFTP server
where it can download the network boot files. Cobbler can manage this for you, via the ``manage_dhcp`` setting:

.. code-block:: none

    manage_dhcp: 0

Change that setting to 1 so Cobbler will generate the ``dhcpd.conf`` file based on the ``dhcp.template`` that is
included with Cobbler. This template will most likely need to be modified as well, based on your network settings:

.. code-block:: none

    $ vi /etc/cobbler/dhcp.template

For most uses, you'll only need to modify this block:

.. code-block:: none

    subnet 192.168.1.0 netmask 255.255.255.0 {
        option routers             192.168.1.1;
        option domain-name-servers 192.168.1.210,192.168.1.211;
        option subnet-mask         255.255.255.0;
        filename                   "/pxelinux.0";
        default-lease-time         21600;
        max-lease-time             43200;
        next-server                $next_server;
    }

No matter what, make sure you do not modify the ``next-server $next_server;`` line, as that is how the next_server
setting is pulled into the configuration. This file is a cheetah template, so be sure not to modify anything starting
after this line:

.. code-block:: none

    #for dhcp_tag in $dhcp_tags.keys():

Completely going through the ``dhcpd.conf`` configuration syntax is beyond the scope of this document, but for more
information see the man page for more details:

.. code-block:: none

    $ man dhcpd.conf


Notes on files and directories
##############################

Cobbler makes heavy use of the ``/var`` directory. The ``/var/www/cobbler/distro_mirror`` directory is where all of the
distrubtion and repository files are copied, so you will need 5-10GB of free space per distribution you wish to import.

If you have installed Cobbler onto a system that has very little free space in the partition containing ``/var``, please
read the :ref:`relocating-your-installation` section of the Installation Guide to learn how you can relocate your
installation properly.


Starting and enabling the Cobbler service
#########################################

Once you have updated your settings, you're ready to start the service:

.. code-block:: shell

    $ systemctl start cobblerd.service
    $ systemctl enable cobblerd.service
    $ systemctl status cobblerd.service

If everything has gone well, you should see output from the status command like this:

.. code-block:: shell

    cobblerd.service - Cobbler Helper Daemon
        Loaded: loaded (/lib/systemd/system/cobblerd.service; enabled)
          Active: active (running) since Sun, 17 Jun 2012 13:01:28 -0500; 1min 44s ago
        Main PID: 1234 (cobblerd)
          CGroup: name=systemd:/system/cobblerd.service
                  └ 1234 /usr/bin/python /usr/bin/cobblerd -F


Checking for problems and your first sync
#########################################

Now that the cobblerd service is up and running, it's time to check for problems. Cobbler's check command will make some
suggestions, but it is important to remember that these are mainly only suggestions and probably aren't critical for
basic functionality. If you are running iptables or SELinux, it is important to review any messages concering those that
check may report.

.. code-block:: none

    $ cobbler check
    The following are potential configuration items that you may want to fix:

    1. ....
    2. ....

Restart cobblerd and then run ``cobbler sync`` to apply changes.

If you decide to follow any of the suggestions, such as installing extra packages, making configuration changes, etc.,
be sure to restart the cobblerd service as it suggests so the changes are applied.

Once you are done reviewing the output of ``cobbler check``, it is time to synchronize things for the first time. This
is not critical, but a failure to properly sync at this point can reveal a configuration problem.

.. code-block:: none

    $ cobbler sync
    task started: 2012-06-24_224243_sync
    task started (id=Sync, time=Sun Jun 24 22:42:43 2012)
    running pre-sync triggers
    ...
    rendering DHCP files
    generating /etc/dhcp/dhcpd.conf
    cleaning link caches
    running: find /var/lib/tftpboot/images/.link_cache -maxdepth 1 -type f -links 1 -exec rm -f '{}' ';'
    received on stdout: 
    received on stderr: 
    running post-sync triggers
    running python triggers from /var/lib/cobbler/triggers/sync/post/*
    running python trigger cobbler.modules.sync_post_restart_services
    running: dhcpd -t -q
    received on stdout: 
    received on stderr: 
    running: service dhcpd restart
    received on stdout: 
    received on stderr: 
    running shell triggers from /var/lib/cobbler/triggers/sync/post/*
    running python triggers from /var/lib/cobbler/triggers/change/*
    running python trigger cobbler.modules.scm_track
    running shell triggers from /var/lib/cobbler/triggers/change/*
    *** TASK COMPLETE ***

Assuming all went well and no errors were reported, you are ready to move on to the next step.


Importing your first distribution
#################################

Cobbler automates adding distributions and profiles via the ``cobbler import`` command. This command can (usually)
automatically detect the type and version of the distribution your importing and create (one or more) profiles with the
correct settings for you.


Download an ISO image
=====================

In order to import a distribution, you will need a DVD ISO for your distribution.

**NOTE:** You must use a full DVD, and not a "Live CD" ISO. For this example, we'll be using the Fedora 17 x86_64 ISO.

Once this file is downloaded, mount it somewhere:

.. code-block:: none

    $ mount -t iso9660 -o loop,ro /path/to/isos/Fedora-17-x86_64-DVD.iso /mnt


Run the import 
==============

You are now ready to import the distribution. The name and path arguments are the only required options for import:

.. code-block:: none

    $ cobbler import --name=fedora17 --arch=x86_64 --path=/mnt

The ``--arch`` option need not be specified, as it will normally be auto-detected. We're doing so in this example in
order to prevent multiple architectures from being found.


Listing objects
+++++++++++++++

If no errors were reported during the import, you can view details about the distros and profiles that were created
during the import.

.. code-block:: none

    $ cobbler distro list
    $ cobbler profile list

The import command will typically create at least one distro/profile pair, which will have the same name as shown above.
In some cases (for instance when a xen-based kernel is found), more than one distro/profile pair will be created.


Object details
++++++++++++++

The report command shows the details of objects in cobbler:

.. code-block:: none

    $ cobbler distro report --name=fedora17-x86_64
    Name                            : fedora17-x86_64
    Architecture                    : x86_64
    TFTP Boot Files                 : {}
    Breed                           : redhat
    Comment                         : 
    Fetchable Files                 : {}
    Initrd                          : /var/www/cobbler/distro_mirror/fedora17-x86_64/images/pxeboot/initrd.img
    Kernel                          : /var/www/cobbler/distro_mirror/fedora17-x86_64/images/pxeboot/vmlinuz
    Kernel Options                  : {}
    Kernel Options (Post Install)   : {}
    Automatic Installation Template Metadata : {'tree': 'http://@@http_server@@/cblr/links/fedora17-x86_64'}
    Management Classes              : []
    OS Version                      : fedora17
    Owners                          : ['admin']
    Red Hat Management Key          : <<inherit>>
    Red Hat Management Server       : <<inherit>>
    Template Files                  : {}

As you can see above, the import command filled out quite a few fields automatically, such as the breed, OS version, and
initrd/kernel file locations. The "Automatic Installation Template Metadata" field (``--autoinstall_meta`` internally)
is used for miscellaneous variables, and contains the critical "tree" variable. This is used in the automated
installation templates to specify the URL where the installation files can be found.

Something else to note: some fields are set to ``<<inherit>>``. This means they will use either the default setting
(found in the settings file), or (in the case of profiles, sub-profiles, and systems) will use whatever is set in the
parent object.


Creating a system
+++++++++++++++++

Now that you have a distro and profile, you can create a system. Profiles can be used to PXE boot, but most of the
features in cobbler revolve around system objects. The more information you give about a system, the more cobbler will
do automatically for you.

First, we'll create a system object based on the profile that was created during the import. When creating a system, the
name and profile are the only two required fields:

.. code-block:: none

    $ cobbler system add --name=test --profile=fedora17-x86_64
    $ cobbler system list
    test
    $ cobbler system report --name=test
    Name                           : test
    TFTP Boot Files                : {}
    Comment                        : 
    Enable gPXE?                   : 0
    Fetchable Files                : {}
    Gateway                        : 
    Hostname                       : 
    Image                          : 
    IPv6 Autoconfiguration         : False
    IPv6 Default Device            : 
    Kernel Options                 : {}
    Kernel Options (Post Install)  : {}
    Automatic Installation Template: <<inherit>>
    Automatic Installation Template Metadata: {}
    Management Classes             : []
    Management Parameters          : <<inherit>>
    Name Servers                   : []
    Name Servers Search Path       : []
    Netboot Enabled                : True
    Owners                         : ['admin']
    Power Management Address       : 
    Power Management ID            : 
    Power Management Password      : 
    Power Management Type          : ipmitool
    Power Management Username      : 
    Profile                        : fedora17-x86_64
    Proxy                          : <<inherit>>
    Red Hat Management Key         : <<inherit>>
    Red Hat Management Server      : <<inherit>>
    Repos Enabled                  : False
    Server Override                : <<inherit>>
    Status                         : production
    Template Files                 : {}
    Virt Auto Boot                 : <<inherit>>
    Virt CPUs                      : <<inherit>>
    Virt Disk Driver Type          : <<inherit>>
    Virt File Size(GB)             : <<inherit>>
    Virt Path                      : <<inherit>>
    Virt RAM (MB)                  : <<inherit>>
    Virt Type                      : <<inherit>>

The primary reason for creating a system object is network configuration. When using profiles, you're limited to DHCP
interfaces, but with systems you can specify many more network configuration options.

So now we'll setup a single, simple interface in the ``192.168.1/24`` network:

.. code-block:: none

    $ cobbler system edit --name=test --interface=eth0 --mac=00:11:22:AA:BB:CC --ip-address=192.168.1.100 --netmask=255.255.255.0 --static=1 --dns-name=test.mydomain.com 

The default gateway isn't specified per-NIC, so just add that separately (along with the hostname):

.. code-block:: none

    $ cobbler system edit --name=test --gateway=192.168.1.1 --hostname=test.mydomain.com

The ``--hostname`` field corresponds to the local system name and is returned by the ``hostname`` command. The
``--dns-name`` (which can be set per-NIC) should correspond to a DNS A-record tied to the IP of that interface.
Neither are required, but it is a good practice to specify both. Some advanced features (like configuration management)
rely on the ``--dns-name`` field for system record look-ups.

Whenever a system is edited, cobbler executes what is known as a "lite sync", which regenerates critical files like the
PXE boot file in the TFTP root directory. One thing it will **NOT** do is execute service management actions, like
regenerating the ``dhcpd.conf`` and restarting the DHCP service. After adding a system with a static interface it is a
good idea to execute a full ``cobbler sync`` to ensure the dhcpd.conf file is rewritten with the correct static lease
and the service is bounced.
 0707010000011F000081A40000000000000000000000015ECE2444000011C7000000000000000000000000000000000000002500000000cobbler-3.1.2/docs/release-notes.rst  ***********************************
Release Notes for Cobbler 3.0.0
***********************************

Enhancements
++++++++++++

* Use new dracut ip option for configuring static interfaces (koan).
* Add a whitelist of directories in order to persist a ``cobbler sync``.
* Add proxy support for get-loaders, signature update and reposync.
* Add initial support for DJBDNS.
* Enable external YUM repo mirroring through a proxy server. 
* DHCP configuration now also supports the per interface gateway setting.
* A new interface_type ``BMC`` was added which also can be managed with DHCP.
* Yaboot was updated to 1.3.17.
* Add ability to have per-profile/per-system ``next_server`` values (#1196).
* Add ``--graphics`` option to Koan.
* Improved input validation and error handling.
* Support ``virtio26`` for generic QEMU fallback in Koan.
* Debian network config: add support for tagged vlan only bonding interfaces.
* Documentation has been converted into rST and is now included with the source tree.
* Integrated pyflakes into the build system and resolved hundreds of issues.
* Integrated pep8 (coding style) into the build system and resolved thousands of issues.
* Add a new field to the system type ``ipv6_prefix`` (#203).
* Minor update to CSS; make better use of screen (tables) (cobbler-web).
* Add support for an empty system status.
* If ``dns-name`` is specified, set it as DHCP hostname in preference to the ``hostname`` field.
* Allow user to choose whether or not to delete item(s) recursively (cobbler-web).
* Set ksdevice kernel option to MAC address for ppc systems as bootif is not used by yaboot.
* Return to list of snippets/kickstarts when snippet/kickstart is saved (cobbler-web).
* Layout in snippet/kickstart edit form has been improved (cobbler-web).
* Better handling of copy/remove actions for subprofiles (API and cobbler-web).
* Make kickstart selectable from a pulldown list in cobbler-web (#991).

Bugfixes
++++++++

* Changed Apache configuration directory in Ubuntu 14.04 (#1208).
* build_reporting no longer fails with an empty string in ignorelist (#1248).
* Kickstart repo statement, filter invalid values: ``gpgcheck``, ``gpgkey`` and ``enabled`` (#323).
* Several improvements to Debian/Ubuntu packaging.
* Some class/method names have been changed to make the code more intuitive for developers.
* Remove ``root=`` argument in Koan when using grubby and replace-self to avoid booting the current OS.
* Exit with an error if the cobblerd executable can't be found (#1108, #1135).
* Fix cobbler sync bug by xmlrpclib returning NoneType object.
* Dont send the Puppet environment when system status is empty (#560).
* Cobbler-web kept only the most recent interface change (#687).
* Fix broken gitdate, gitstamp values in ``/etc/cobbler/version``.
* Prevent disappearing profiles after cobblerd restart (#1030).
* Add missing icons to cobbler_web/content (#679).
* cobbler-ext-nodes was broken with ``mgmt_classes`` defined at the profile level (#790).
* Properly name the VLAN interface in the manual page.
* Fix wrong address of the Free Software Foundation.
* Remove legacy (EL5/6) cruft from the RPM specfile.
* Koan: use the print function instead of the print statement.
* Minor improvement to LDAP configuration (#217).
* Improvements to the unittest framework.
* Removed several unused functions from utils.
* List of authors is now automagically generated.

Upgrade notes
+++++++++++++

* Support for LDAP configuration through Koan has been removed.
* Support for redhat_management (Spacewalk/Satelite) has been moved to contrib. Users of this functionality should
  checkout contrib/redhat-management/README.
* Monit support has been removed; you really need to use a CMS to manage your services.
* Support for remote kickstart templates and files been removed (eg. kickstart=http://).
* All object names are now validated like that of the system object.
* The use of ``parent`` and ``distro`` on subprofiles are now mutually exclusive.
* Support for s390/s390x has been removed.
* Support for ia64 (Itanium) has been removed.
* Support for the MySQL backend has been removed.
* Support for deprecated fieldnames (``subnet``, ``bonding_master``, ``bonding``) has been removed.
* Cobbler now requires python 2.7 and Koan now requires python 2.6.
* Red Hat specific default kernel options have been removed from the settings file.
* Support for Func integration has been moved to contrib. Users of this functionality should checkout
  contrib/func/README.
* Deprecated Koan LiveCD: moved to contrib.

 07070100000120000081A40000000000000000000000015ECE24440000004B000000000000000000000000000000000000002800000000cobbler-3.1.2/docs/requirements.rtd.txt   netaddr
Cheetah3
django
simplejson
dnspython
pyyaml
distro
sphinx_rtd_theme 07070100000121000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000001E00000000cobbler-3.1.2/docs/user-guide 07070100000122000081A40000000000000000000000015ECE244400005239000000000000000000000000000000000000002200000000cobbler-3.1.2/docs/user-guide.rst ***********************************
User Guide
***********************************

.. toctree::
   :maxdepth: 2

   Web User Interface <user-guide/web-interface>
   Configuration Management Integrations <user-guide/configuration-management-integrations>


API
###
Cobbler also makes itself available as an XMLRPC API for use by higher level management software. Learn more at
https://cobbler.github.io

Triggers
########

Triggers provide a way to integrate cobbler with arbitrary 3rd party software without modifying cobbler's code. When
adding a distro, profile, system, or repo, all scripts in ``/var/lib/cobbler/triggers/add`` are executed for the
particular object type. Each particular file must be executable and it is executed with the name of the item being added
as a parameter. Deletions work similarly -- delete triggers live in ``/var/lib/cobbler/triggers/delete``. Order of
execution is arbitrary, and cobbler does not ship with any triggers by default. There are also other kinds of triggers
-- these are described on the Cobbler Wiki. For larger configurations, triggers should be written in Python -- in which
case they are installed differently. This is also documented on the Wiki.

Images
######

Cobbler can help with booting images physically and virtually, though the usage of these commands varies substantially
by the type of image. Non-image based deployments are generally easier to work with and lead to more sustaintable
infrastructure. Some manual use of other commands beyond of what is typically required of cobbler may be needed to
prepare images for use with this feature.

Power Management
################

Cobbler contains a power management feature that allows the user to associate system records in cobbler with the power
management configuration attached to them.  This can ease installation by making it easy to reassign systems to new
operating systems and then reboot those systems. Read more about this feature at
https://github.com/cobbler/cobbler/wiki/Power-management

Non-import (manual) workflow
############################

The following example uses a local kernel and initrd file (already downloaded), and shows how profiles would be created
using two different automatic installation files -- one for a web server configuration and one for a database server.
Then, a machine is assigned to each profile.

.. code-block:: none

    cobbler check
    cobbler distro add --name=rhel4u3 --kernel=/dir1/vmlinuz --initrd=/dir1/initrd.img
    cobbler distro add --name=fc5 --kernel=/dir2/vmlinuz --initrd=/dir2/initrd.img
    cobbler profile add --name=fc5webservers --distro=fc5-i386 --autoinst=/dir4/kick.ks --kopts="something_to_make_my_gfx_card_work=42 some_other_parameter=foo"
    cobbler profile add --name=rhel4u3dbservers --distro=rhel4u3 --autoinst=/dir5/kick.ks
    cobbler system add --name=AA:BB:CC:DD:EE:FF --profile=fc5-webservers
    cobbler system add --name=AA:BB:CC:DD:EE:FE --profile=rhel4u3-dbservers
    cobbler report

Repository Management
#####################

REPO MANAGEMENT
===============

This has already been covered a good bit in the command reference section.

Yum repository management is an optional feature, and is not required to provision through cobbler. However, if cobbler
is configured to mirror certain repositories, it can then be used to associate profiles with those repositories. Systems
installed under those profiles will then be autoconfigured to use these repository mirrors in ``/etc/yum.repos.d``, and
if supported (Fedora Core 6 and later) these repositories can be leveraged even within Anaconda.  This can be useful if
(A) you have a large install base, (B) you want fast installation and upgrades for your systems, or (C) have some extra
software not in a standard repository but want provisioned systems to know about that repository.

Make sure there is plenty of space in cobbler's webdir, which defaults to ``/var/www/cobbler``.

.. code-block:: none

    cobbler reposync [--tries=N] [--no-fail]

Cobbler reposync is the command to use to update repos as configured with "cobbler repo add".  Mirroring
can take a long time, and usage of cobbler reposync prior to usage is needed to ensure provisioned systems have the
files they need to actually use the mirrored repositories.  If you just add repos and never run "cobbler reposync", the
repos will never be mirrored.  This is probably a command you would want to put on a crontab, though the frequency of
that crontab and where the output goes is left up to the systems administrator.

For those familiar with yum's reposync, cobbler's reposync is (in most uses) a wrapper around the yum command.  Please
use "cobbler reposync" to update cobbler mirrors, as yum's reposync does not perform all required steps. Also cobbler
adds support for rsync and SSH locations, where as yum's reposync only supports what yum supports (http/ftp).

If you ever want to update a certain repository you can run:

.. code-block:: none

    cobbler reposync --only="reponame1" ...

When updating repos by name, a repo will be updated even if it is set to be not updated during a regular reposync
operation (ex: cobbler repo edit --name=reponame1 --keep-updated=0).

Note that if a cobbler import provides enough information to use the boot server as a yum mirror for core packages,
cobbler can set up automatic installation files to use the cobbler server as a mirror instead of the outside world. If
this feature is desirable, it can be turned on by setting yum_post_install_mirror to 1 in /etc/settings (and running
"cobbler sync").  You should not use this feature if machines are provisioned on a different VLAN/network than
production, or if you are provisioning laptops that will want to acquire updates on multiple networks.

The flags ``--tries=N`` (for example, ``--tries=3``) and ``--no-fail`` should likely be used when putting reposync on a
crontab. They ensure network glitches in one repo can be retried and also that a failure to synchronize one repo does
not stop other repositories from being synchronized.

Importing trees
===============

Cobbler can auto-add distributions and profiles from remote sources, whether this is a filesystem path or an rsync
mirror. This can save a lot of time when setting up a new provisioning environment. Import is a feature that many users
will want to take advantage of, and is very simple to use.

After an import is run, cobbler will try to detect the distribution type and automatically assign automatic installation
files. By default, it will provision the system by erasing the hard drive, setting up eth0 for dhcp, and using a default
password of "cobbler".  If this is undesirable, edit the automatic installation files in ``/etc/cobbler`` to do
something else or change the automatic installation setting after cobbler creates the profile.

Mirrored content is saved automatically in ``/var/www/cobbler/distro_mirror``.

Example 1: ``cobbler import --path=rsync://mirrorserver.example.com/path/ --name=fedora --arch=x86``

Example 2: ``cobbler import --path=root@192.168.1.10:/stuff --name=bar``

Example 3: ``cobbler import --path=/mnt/dvd --name=baz --arch=x86_64``

Example 4: ``cobbler import --path=/path/to/stuff --name=glorp``

Example 5: ``cobbler import --path=/path/where/filer/is/mounted --name=anyname --available-as=nfs://nfs.example.org:/where/mounted/``

Once imported, run a ``cobbler list`` or ``cobbler report`` to see what you've added.

By default, the rsync operations will exclude content of certain architectures, debug RPMs, and ISO images -- to change
what is excluded during an import, see ``/etc/cobbler/rsync.exclude``.

Note that all of the import commands will mirror install tree content into ``/var/www/cobbler`` unless a network
accessible location is given with ``--available-as``.  --available-as will be primarily used when importing distros
stored on an external NAS box, or potentially on another partition on the same machine that is already accessible via
``http://`` or ``ftp://``.

For import methods using rsync, additional flags can be passed to rsync with the option ``--rsync-flags``.

Should you want to force the usage of a specific cobbler automatic installation template for all profiles created by an
import, you can feed the option ``--autoinst`` to import, to bypass the built-in automatic installation file
auto-detection.

Repository mirroring workflow
=============================

The following example shows how to set up a repo mirror for two repositories, and create a profile that will auto
install those repository configurations on provisioned systems using that profile.

.. code-block:: none

    cobbler check
    # set up your cobbler distros here.
    cobbler repo add --mirror=http://mirrors.kernel.org/fedora/core/updates/6/i386/ --name=fc6i386updates
    cobbler repo add --mirror=http://mirrors.kernel.org/fedora/extras/6/i386/ --name=fc6i386extras
    cobbler reposync
    cobbler profile add --name=p1 --distro=existing_distro_name --autoinst=/etc/cobbler/kickstart_fc6.ks --repos="fc6i386updates fc6i386extras"

Import Workflow
===============

Import is a very useful command that makes starting out with cobbler very quick and easy.

This example shows how to create a provisioning infrastructure from a distribution mirror or DVD ISO. Then a default PXE
configuration is created, so that by default systems will PXE boot into a fully automated install process for that
distribution.

You can use a network rsync mirror, a mounted DVD location, or a tree you have available via a network filesystem.

Import knows how to autodetect the architecture of what is being imported, though to make sure things are named
correctly, it's always a good idea to specify ``--arch``. For instance, if you import a distribution named "fedora8"
from an ISO, and it's an x86_64 ISO, specify ``--arch=x86_64`` and the distro will be named "fedora8-x86_64"
automatically, and the right architecture field will also be set on the distribution object. If you are batch importing
an entire mirror (containing multiple distributions and arches), you don't have to do this, as cobbler will set the
names for things based on the paths it finds.

.. code-block:: none

    cobbler check
    cobbler import --path=rsync://yourfavoritemirror.com/rhel/5/os/x86_64 --name=rhel5 --arch=x86_64
    # OR
    cobbler import --path=/mnt/dvd --name=rhel5 --arch=x86_64
    # OR (using an external NAS box without mirroring)
    cobbler import --path=/path/where/filer/is/mounted --name=anyname --available-as=nfs://nfs.example.org:/where/mounted/
    # wait for mirror to rsync...
    cobbler report
    cobbler system add --name=default --profile=name_of_a_profile1
    cobbler system add --name=AA:BB:CC:DD:EE:FF --profile=name_of_a_profile2
    cobbler sync

Virtualization
##############

For Virt, be sure the distro uses the correct kernel (if paravirt) and follow similar steps as above, adding additional
parameters as desired:

.. code-block:: none

    cobbler distro add --name=fc7virt [options...]

Specify reasonable values for the Virt image size (in GB) and RAM requirements (in MB):

.. code-block:: none

    cobbler profile add --name=virtwebservers --distro=fc7virt --autoinst=path --virt-file-size=10 --virt-ram=512 [...]

Define systems if desired.  koan can also provision based on the profile name.

.. code-block:: none

    cobbler system add --name=AA:BB:CC:DD:EE:FE --profile=virtwebservers [...]

If you have just installed cobbler, be sure that the "cobblerd" service is running and that port 25151 is unblocked.

See the manpage for koan for the client side steps.

Autoinstallation
################

Automatic installation templating
=================================

The ``--autoinstall_meta`` options above require more explanation.

If and only if ``--autoinst`` options reference filesystem URLs, ``--ksmeta`` allows for templating of the automatic
installation files to achieve advanced functions.  If the ``--ksmeta`` option for a profile read
``--ksmeta="foo=7 bar=llama"``, anywhere in the automatic installation file where the string ``$bar`` appeared would be
replaced with the string "llama".

To apply these changes, ``cobbler sync`` must be run to generate custom automatic installation files for each
profile/system.

For NFS and HTTP automatic installation file URLs, the ``--autoinstall_meta`` options will have no effect. This is a
good reason to let cobbler manage your automatic installation files, though the URL functionality is provided for
integration with legacy infrastructure, possibly including web apps that already generate automatic installation files.

Templated automatic files are processed by the templating program/package Cheetah, so anything you can do in a Cheetah
template can be done to an automatic installation template.  Learn more at http://www.cheetahtemplate.org/learn.html

When working with Cheetah, be sure to escape any shell macros that look like ``$(this)`` with something like
``\$(this)`` or errors may show up during the sync process.

The Cobbler Wiki also contains numerous Cheetah examples that should prove useful in using this feature.

Also usefull ist the following repo: https://github.com/FlossWare/cobbler

Automatic installation snippets
===============================

Anywhere a automatic installation template mentions ``SNIPPET::snippet_name``, the file named
``/var/lib/cobbler/snippets/snippet_name`` (if present) will be included automatically in the automatic installation
template. This serves as a way to recycle frequently used automatic installation snippets without duplication. Snippets
can contain templating variables, and the variables will be evaluated according to the profile and/or system as one
would expect.

Snippets can also be overridden for specific profile names or system names. This is described on the Cobbler Wiki.

Kickstart validation
====================

To check for potential errors in kickstarts, prior to installation, use ``cobbler validateks``. This function will check
all profile and system kickstarts for detectable errors. Since pykickstart is not future-Anaconda-version aware, there
may be some false positives. It should be noted that ``cobbler validateks`` runs on the rendered kickstart output, not
kickstart templates themselves.

Network Topics
##############

.. Z-PXE: https://github.com/beaker-project/zpxe

PXE Menus
=========

Cobbler will automatically generate PXE menus for all profiles it has defined. Running ``cobbler sync`` is required to
generate and update these menus.

To access the menus, type ``menu`` at the ``boot:`` prompt while a system is PXE booting. If nothing is typed, the
network boot will default to a local boot. If "menu" is typed, the user can then choose and provision any cobbler
profile the system knows about.

If the association between a system (MAC address) and a profile is already known, it may be more useful to just use
``system add`` commands and declare that relationship in cobbler; however many use cases will prefer having a PXE
system, especially when provisioning is done at the same time as installing new physical machines.

If this behavior is not desired, run ``cobbler system add --name=default --profile=plugh`` to default all PXE booting
machines to get a new copy of the profile ``plugh``. To go back to the menu system, run
``cobbler system remove --name=default`` and then ``cobbler sync`` to regenerate the menus.

When using PXE menu deployment exclusively, it is not necessary to make cobbler system records, although the two can
easily be mixed.

Additionally, note that all files generated for the pxe menu configurations are templatable, so if you wish to change
the color scheme or equivalent, see the files in ``/etc/cobbler``.

Default PXE Boot behavior
=========================

What happens when PXE booting a system when cobbler has no record of the system being booted?

By default, cobbler will configure PXE to boot to the contents of ``/etc/cobbler/default.pxe``, which (if unmodified)
will just fall through to the local boot process. Administrators can modify this file if they like to change that
behavior.

An easy way to specify a default cobbler profile to PXE boot is to create a system named ``default``. This will cause
``/etc/cobbler/default.pxe`` to be ignored. To restore the previous behavior do a ``cobbler system remove`` on the
``default`` system.

.. code-block:: none

    cobbler system add --name=default --profile=boot_this
    cobbler system remove --name=default

As mentioned in earlier sections, it is also possible to control the default behavior for a specific network:

.. code-block:: none

    cobbler system add --name=network1 --ip-address=192.168.0.0/24 --profile=boot_this

PXE boot loop prevention
========================

If you have your machines set to PXE first in the boot order (ahead of hard drives), change the ``pxe_just_once`` flag
in ``/etc/cobbler/settings`` to 1. This will set the machines to not PXE on successive boots once they complete one
install. To re-enable PXE for a specific system, run the following command:

.. code-block:: none

    cobbler system edit --name=name --netboot-enabled=1

Automatic installation tracking
===============================

Cobbler knows how to keep track of the status of automatic installation of machines.

.. code-block:: none

    cobbler status

Using the status command will show when cobbler thinks a machine started automatic installation and when it finished,
provided the proper snippets are found in the automatic installation template. This is a good way to track machines that
may have gone interactive (or stalled/crashed) during automatic installation.

Boot CD
#######

Cobbler can build all of it's profiles into a bootable CD image using the ``cobbler buildiso`` command. This allows for
PXE-menu like bringup of bare metal in environments where PXE is not possible. Another more advanced method is described
in the koan manpage, though this method is easier and sufficient for most applications.

DHCP Management
===============

Cobbler can optionally help you manage DHCP server. This feature is off by default.

Choose either ``management = isc_and_bind`` in ``/etc/cobbler/dhcp.template`` or ``management = "dnsmasq"`` in
``/etc/cobbler/modules.conf``.  Then set ``manage_dhcp=1`` in ``/etc/cobbler/settings``.

This allows DHCP to be managed via "cobbler system add" commands, when you specify the mac address and IP address for
systems you add into cobbler.

Depending on your choice, cobbler will use ``/etc/cobbler/dhcpd.template`` or ``/etc/cobbler/dnsmasq.template`` as a
starting point. This file must be user edited for the user's particular networking environment. Read the file and
understand how the particular app (ISC dhcpd or dnsmasq) work before proceeding.

If you already have DHCP configuration data that you would like to preserve (say DHCP was manually configured earlier),
insert the relevant portions of it into the template file, as running ``cobbler sync`` will overwrite your previous
configuration.

By default, the DHCP configuration file will be updated each time ``cobbler sync`` is run, and not until then, so it is
important to remember to use ``cobbler sync`` when using this feature.

If omapi_enabled is set to 1 in ``/etc/cobbler/settings``, the need to sync when adding new system records can be
eliminated. However, the omapi feature is experimental and is not recommended for most users.

DNS configuration management
============================

Cobbler can optionally manage DNS configuration using BIND and dnsmasq.

Choose either ``management = isc_and_bind`` or ``management = dnsmasq`` in ``/etc/cobbler/modules.conf`` and then enable
``manage_dns`` in ``/etc/cobbler/settings``.

This feature is off by default. If using BIND, you must define the zones to be managed with the options
``manage_forward_zones`` and ``manage_reverse_zones``.  (See the Wiki for more information on this).

If using BIND, Cobbler will use ``/etc/cobbler/named.template`` and ``/etc/cobbler/zone.template`` as a starting point
for the ``named.conf`` and individual zone files, respectively. You may drop zone-specific template files in
``/etc/cobbler/zone_templates/name-of-zone`` which will override the default. These files must be user edited for the
user's particular networking environment.  Read the file and understand how BIND works before proceeding.

If using dnsmasq, the template is ``/etc/cobbler/dnsmasq.template``. Read this file and understand how dnsmasq works
before proceeding.

All managed files (whether zone files and ``named.conf`` for BIND, or ``dnsmasq.conf`` for dnsmasq) will be updated each
time ``cobbler sync`` is run, and not until then, so it is important to remember to use ``cobbler sync`` when using this
feature.

Containerization
################

We have a test-image which you can find in the cobbler repository and an old image made by the community:
https://github.com/osism/docker-cobbler
   07070100000123000081A40000000000000000000000015ECE244400003A39000000000000000000000000000000000000004800000000cobbler-3.1.2/docs/user-guide/configuration-management-integrations.rst   **************************************
Configuration Management Integrations
**************************************

Cobbler contains features for integrating an installation environment with a configuration management system, which
handles the configuration of the system after it is installed by allowing changes to configuration files and settings.

Resources are the lego blocks of configuration management. Resources are grouped together via Management Classes, which
are then linked to a system. Cobbler supports two (2) resource types. Resources are configured in the order listed
below.

The initial provisioning of client systems with cobbler is just one component of their management. We also need to
consider how to continue to manage them using a configuration management system (CMS). Cobbler can help you provision
and introduce a CMS onto your client systems.

One option is cobbler's own lightweight CMS. For that, see the document `Built-In Configuration Management`_.

Here we discuss the other option: deploying a CMS such as `cfengine3 <http://cfengine.com/>`_,
`puppet <http://puppetlabs.com/>`_, `bcfg2 <http://bcfg2.org>`_, `Chef <http://wiki.opscode.com/display/chef/Home>`_,
etc.

Cobbler doesn't force you to chose a particular CMS (or to use one at all), though it helps if you do some things to
link cobbler's profiles with the "profiles" of the CMS. This, in general, makes management of both a lot easier.

Note that there are two independent "variables" here: the possible client operating systems and the possible CMSes. We
don't attempt to cover all details of all combinations; rather we illustrate the principles and give a small number of
illustrative examples of particular OS/CMS combinations. Currently cobbler has better support for Redhat-based OSes and
for Puppet so the current examples tend to deal with this combination.

Background considerations
#########################

Machine lifecycle
=================

A typical computer has a lifecycle something like:

* installation
* initial configuration
* ongoing configuration and maintenance
* decommissioning

Typically installation happens once. Likewise, the initial configuration happens once, usually shortly after
installation. By contrast ongoing configuration evolves over an extended period, perhaps of several years. Sometimes
part of that ongoing configuration may involve re-installing an OS from scratch. We can regard this as repeating the
earlier phase.

We need not consider decommissioning here.

Installation clearly belongs (in our context) to Cobbler. In a complementary manner, ongoing configuration clearly
belongs to the CMS. But what about initial configuration?

Some sites consider their initial configuration as the final phase of installation: in our context, that would put it at
the back end of Cobbler, and potentially add significant configuration-based complication to the installation-based
Cobbler set-up.

But it is worth considering initial configuration as the first step of ongoing configuration: in our context that would
put it as part of the CMS, and keep the Cobbler set-up simple and uncluttered.

Local package repositories
==========================

Give consideration to:

* local mirrors of OS repositories
* local repository of local packages
* local repository of pick-and-choose external packages

In particular consider having the packages for your chosen CMS in one of the latter.

Package management
==================

Some sites set up Cobbler always to deploy just a minimal subset of packages, then use the CMS to install many others in
a large-scale fashion. Other sites may set up Cobbler to deploy tailored sets of packages to different types of
machines, then use the CMS to do relatively small-scale fine-tuning of that.

General scheme
##############

We need to consider getting Cobbler to install and automatically invoke the CMS software.

Set up Cobbler to include a package repository that contains your chosen CMS:

.. code-block:: none

    cobbler repo add ...

Then (illustrating a Redhat/Puppet combination) set up the kickstart file to say something like:

.. code-block:: none

    %packages
    puppet

    %post
    /sbin/chkconfig --add puppet

The detail may need to be more substantial, requiring some other associated local packages, files and configuration. You
may wish to manage this through [Kickstart snippets](Kickstart Snippets).

David Lutterkort has a `walkthrough for kickstart <http://watzmann.net/blog/2006/12/kickstarting-into-puppet.html>`_.
While his example is written for Redhat (Fedora) and Puppet, the principles are useful for other OS/CMS combinations.

Built-In Configuration Management
#################################

Cobbler is not just an installation server, it can also enable two different types of ongoing configuration management
system (CMS):

* integration with an established external CMS such as `cfengine3 <http://cfengine.com/>`_, `bcfg2 <http://bcfg2.org>`_,
  `Chef <http://wiki.opscode.com/display/chef/Home>`_, or `puppet <http://puppetlabs.com/>`_, discussed
  [elsewhere](Using cobbler with a configuration management system);
* its own, much simpler, lighter-weight, internal CMS, discussed here.

Setting up
==========

Cobbler's internal CMS is focused around packages and templated configuration files, and installing these on client
systems.

This all works using the same `Cheetah-powered <http://cheetahtemplate.org>`_ templating engine used in
[Kickstart Templating](Kickstart Templating), so once you learn about the power of treating your distribution answer
files as templates, you can use the same templating to drive your CMS configuration files.

For example:

.. code-block:: none

    cobbler profile edit --name=webserver --template-files=/srv/cobbler/x.template=/etc/foo.conf

A client system installed via the above profile will gain a file ``/etc/foo.conf`` which is the result of rendering the
template given by ``/srv/cobbler/x.template``. Multiple files may be specified; each ``template=destination`` pair
should be placed in a space-separated list enclosed in quotes:

.. code-block:: none

    --template-files="srv/cobbler/x.template=/etc/xfile.conf srv/cobbler/y.template=/etc/yfile.conf"

Template files
==============

Because the template files will be parsed by the Cheetah parser, they must conform to the guidelines described in
[Kickstart Templating](Kickstart Templating). This is particularly important when the file is generated outside a
Cheetah environment. Look for, and act on, Cheetah 'ParseError' errors in the Cobbler logs.

Template files follows general Cheetah syntax, so can include Cheetah variables. Any variables you define anywhere in
the cobbler object hierarchy (distros, profiles, and systems) are available to your templates. To see all the variables
available, use the command:

.. code-block:: none

    cobbler profile dumpvars --name=webserver

Cobbler snippets and other advanced features can also be employed.

Ongoing maintenance
===================

Koan can pull down files to keep a system updated with the latest templates and variables:

.. code-block:: none

    koan --server=cobbler.example.org --profile=foo --update-files

You could also use ``--server=bar`` to retrieve a more specific set of templating. Koan can also autodetect the server
if the MAC address is registered.

Further uses
============

This Cobbler/Cheetah templating system can serve up templates via the magic URLs (see "Leveraging Mod Python" below).
To do this ensure that the destination path given to any ``--template-files`` element is relative, not absolute; then
Cobbler and koan won't download those files.

For example, in:

.. code-block:: none

    cobbler profile edit --name=foo --template-files="/srv/templates/a.src=/etc/foo/a.conf /srv/templates/b.src=1"

Cobbler and koan would automatically download the rendered ``a.src`` to replace the file ``/etc/foo/a.conf``, but the
``b.src`` file would not be downloaded to anything because the destination pathname ``1`` is not absolute.

This technique enables using the Cobbler/Cheetah templating system to build things that other systems can fetch and use,
for instance, BIOS config files for usage from a live environment.

Leveraging Mod Python
=====================

All template files are generated dynamically at run-time. If a change is made to a template, a ``--ks-meta`` variable or
some other variable in cobbler, the result of template rendering will be different on subsequent runs. This is covered
in more depth in the [Developer documentation](Developer documentation).

Possible future developments
============================

* Serving and running scripts via ``--update-files`` (probably staging them through ``/var/spool/koan``).
* Auto-detection of the server name if ``--ip`` is registered.

Terraform Provider
##################

This is developed and maintained by the Terraform community. You will find more information in the docs under
https://www.terraform.io/docs/providers/cobbler/index.html

The code for the Terraform-Provider can be found at: https://github.com/terraform-providers/terraform-provider-cobbler

Ansible
#######

Although we currently can not provide something official we can indeed link some community work here:

- https://github.com/ac427/my_cm
- https://github.com/AnKosteck/ansible-cluster
- https://github.com/osism/ansible-cobbler
- https://github.com/hakoerber/ansible-roles

Saltstack
#########

Although we currently can not provide something official we can indeed link some community work here:

- https://github.com/hakoerber/salt-states/tree/master/cobbler

Vagrant
#######

Although we currently can not provide something official we can indeed link some community work here:

- https://github.com/davegermiquet/vmwarevagrantcobblercentos
- https://github.com/dratushnyy/tools
- https://github.com/mkusanagi/cobbler-kickstart-playground

Puppet
######

There is also an example of Puppet deploying Cobbler: https://github.com/gothicfann/puppet-cobbler

This example is relatively advanced, involving Cobbler "mgmt-classes" to control different types of initial
configuration. But if instead you opt to put most of the initial configuration into the Puppet CMS rather than here,
then things could be simpler.

Keeping Class Mappings In Cobbler
=================================

First, we assign management classes to distro, profile, or system
objects.

.. code-block:: none

    cobbler distro edit --name=distro1 --mgmt-classes="distro1"
    cobbler profile add --name=webserver --distro=distro1 --mgmt-classes="webserver likes_llamas" --kickstart=/etc/cobbler/my.ks
    cobbler system edit --name=system --profile=webserver --mgmt-classes="orange" --dns-name=system.example.org

For Puppet, the ``--dns-name`` (shown above) must be set because this is what puppet will be sending to cobbler and is
how we find the system. Puppet doesn't know about the name of the system object in cobbler. To play it safe you probably
want to use the FQDN here (which is also what you want if you were using Cobbler to manage your DNS, which you don't
have to be doing).

External Nodes
==============

For more documentation on Puppet's external nodes feature, see https://docs.puppetlabs.com

Cobbler provides one, so configure puppet to use ``/usr/bin/cobbler-ext-nodes``:

.. code-block:: none

    [main]
    external_nodes = /usr/bin/cobbler-ext-nodes

Note: if you are using puppet 0.24 or later then you will want to also add the following to your configuration file.

.. code-block:: none

    node_terminus = exec

You may wonder what this does. This is just a very simple script that grabs the data at the following URL, which is a
URL that always returns a YAML document in the way that Puppet expects it to be returned. This file contains all the
parameters and classes that are to be assigned to the node in question. The magic URL being visited is powered by
Cobbler.

.. code-block:: none

    http://cobbler/cblr/svc/op/puppet/hostname/foo

(for developer information about this magic URL, visit https://fedorahosted.org/cobbler/wiki/ModPythonDetails)

And this will return data such as:

.. code-block:: none

    ---
    classes:
        - distro1
        - webserver
        - likes_llamas
        - orange
    parameters:
        tree: 'http://.../x86_64/tree'

Where do the parameters come from? Everything that cobbler tracks in ``--ks-meta`` is also a parameter. This way you can
easily add parameters as easily as you can add classes, and keep things all organized in one place.

What if you have global parameters or classes to add? No problem. You can also add more classes by editing the following
fields in ``/etc/cobbler/settings``:

.. code-block:: none

    # cobbler has a feature that allows for integration with config management
    # systems such as Puppet.  The following parameters work in conjunction with

    # --mgmt-classes  and are described in furhter detail at:
    # https://fedorahosted.org/cobbler/wiki/UsingCobblerWithConfigManagementSystem
    mgmt_classes: []
    mgmt_parameters:
       from_cobbler: 1

Alternate External Nodes Script
===============================

Attached at ``puppet_node.py`` is an alternate external node script that fills in the nodes with items from a manifests
repository (at ``/etc/puppet/manifests/``) and networking information from cobbler. It is configured like the above from
the puppet side, and then looks for ``/etc/puppet/external_node.yaml`` for cobbler side configuration.
The configuration is as follows.

.. code-block:: none

    base: /etc/puppet/manifests/nodes
    cobbler: <%= cobbler_host %>
    no_yaml: puppet::noyaml
    no_cobbler: network::nocobbler
    bad_yaml: puppet::badyaml
    unmanaged: network::unmanaged

The output for network information will be in the form of a pseudo data structure that allows puppet to split it apart
and create the network interfaces on the node being managed.

cfengine support
################

Documentation to be added

bcfg2 support
#############

Documentation to be added

Chef
####

Documentation to be added.

There is some integration information on bootstrapping chef clients with cobbler in
[this blog article](http://blog.milford.io/2012/03/getting-a-basic-cobbler-server-going-on-centos/)

Conclusion
##########

Hopefully this should get you started in linking up your provisioning configuration with your CMS implementation. The
examples provided are for Puppet, but we can (in the future) presumably extend ``--mgmt-classes`` to work with other
tools... Just let us know what you are interested in, or perhaps take a shot at creating a patch for it.

Attachments
###########

-   [puppet\_node.py](/cobbler/attachment/wiki/UsingCobblerWithConfigManagementSystem/puppet_node.py)
    (2.5 kB) -Alternate External Nodes Script, added by shenson on
    12/09/10 20:33:36.
   07070100000124000081A40000000000000000000000015ECE244400001C00000000000000000000000000000000000000003000000000cobbler-3.1.2/docs/user-guide/web-interface.rst   ***********************************
Web-Interface
***********************************

.. Community Web-UI: https://github.com/vanishcode/cobbler-ui-part
.. Community Dashboard: https://github.com/zhangchenchen/supervisors

Please be patient until we have time to rework this section or please file a PR for this section.

The standard login for the Web-UI can be read below. We would recommend to change this as soon as possible!

Username: ``cobbler``
Password: ``cobbler``

Old Release 2.8.x
#################

https://cobbler.readthedocs.io/en/release28/web-interface.html

Old Github-Wiki Entry
#####################

Most of the day-to-day actions in cobbler's command line can be performed in Cobbler's Web UI.

With the web user interface (WebUI), you can:

  * View all of the cobbler objects and the settings
  * Add and delete a system, distro, profile, or system
  * Run the equivalent of a ``cobbler sync``
  * Edit kickstart files (which must be in ``/etc/cobbler`` and ``/var/lib/cobbler/kickstarts``)

You cannnot (yet):

  * Auto-Import media
  * Auto-Import a rsync mirror of install trees
  * Do a ``cobbler reposync`` to mirror or update yum content
  * Do a ``cobbler validateks``

The WebUI can be very good for day-to-day configuring activities, but the CLI is still required for basic bootstrapping
and certain other activities.

The WebUI is intended to be self-explanatory and contains tips and explanations for nearly every field you can edit. It
also contains links to additional documentation, including the Cobbler manpage documentation in HTML format.

Who logs in and what they can access is controlled by [Web Authentication](Web Authentication) and
[Web Authorization](Web Authorization). The default options are mostly good for getting started, but for safety reasons
the default authentication is "denyall" so you will at least need to address that.

Basic Setup
===========

1.  You must have installed the cobbler-web package

2.  Your ``/etc/httpd/conf.d/cobbler_web.conf`` should look something like this:

.. code-block:: none

        # This configuration file enables the cobbler web interface (django version)
        # Force everything to go to https
        RewriteEngine on
        RewriteCond %{HTTPS} off
        RewriteCond %{REQUEST_URI} ^/cobbler_web
        RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

        WSGIScriptAlias /cobbler_web /usr/share/cobbler/web/cobbler.wsgi

        # The following Directory Entry in Apache Configs solves 403 Forbidden errors.
        <Directory "/usr/share/cobbler/web">
          Order allow,deny
          Allow from all
        </Directory>

        # Display Cobbler Themes + Logo graphics.
        <Directory "/var/www/cobbler_webui_content">
        Order allow,deny
        Allow from all
        </Directory>

3.  Your ``/etc/cobbler/modules.conf`` should look something like this:

.. code-block:: none

    [authentication]
    module = authn_configfile

    [authorization]
    module = authz_allowall

4. Change the password for the 'cobbler' username:

.. code-block:: none

      htdigest /etc/cobbler/users.digest "Cobbler" cobbler

5.  If this is not a new install, your Apache configuration for Cobbler might not be current.

.. code-block:: none

    cp /etc/httpd/conf.d/cobbler.conf.rpmnew /etc/httpd/conf.d/cobbler.conf

6.  Now restart Apache and Cobblerd

.. code-block:: none

    /sbin/service cobblerd restart
    /sbin/service httpd restart

7.  If you use SELinux, you may also need to set the following, so that the WebUI can connect with the [XMLRPC](XMLRPC):

.. code-block:: none

    setsebool -P httpd_can_network_connect true


Basic setup (2.2.x and higher)
==============================

In addition to the steps above, cobbler 2.2.x has a requirement for ``mod_wsgi`` which, when installed via EPEL, will be
disabled by default. Attempting to start httpd will result in:

.. code-block:: none

    Invalid command 'WSGIScriptAliasMatch', perhaps misspelled \
      or defined by a module not included in the server configuration

You can enable this module by editing ``/etc/httpd/conf.d/wsgi.conf`` and un-commenting the
"LoadModule wsgi_module modules/mod_wsgi.so" line.

Next steps
==========

It should be ready to go. From your web browser visit the URL on your bootserver that resembles:

.. code-block:: none

    https://bootserver.example.com/cobbler_web

and log in with the username (usually cobbler) and password that you set earlier.

Should you ever need to debug things, see the following log files:

.. code-block:: none

    /var/log/httpd/error_log
    /var/log/cobbler/cobbler.log

Further setup
=============

Cobbler authenticates all WebUI logins through ``cobblerd``, which uses a configurable authentication mechanism. You may
wish to adjust that for your environment. For instance, if in ``modules.conf`` above you choose to stay with the
``authentication.configfile`` module, you may want to add your system administrator usernames to the digest file. To do
this it is recommended to use either ``openssl`` or Python directly.

Example using ``openssl 1.1.1`` or later:

.. code-block:: none

    printf "foobar" | openssl dgst -sha3-512

It is possible with ``openssl`` to generate hashes for the following hash algorithms which are configurable: blake2b512,
blake2s256, shake128, shake256, sha3-224m sha3-256, sha3-384, sha3-512

Example using Python (using the python interactive shell):

.. code-block:: python

    import hashlib
    hashlib.sha3_512("<PASSWORD>".encode('utf-8')).hexdigest()

Python of course will always have all possible hash algorithms available which are valid in the context of Cobbler.

Both examples return the same result when executed with the same password. The file itself is structured according to
the following: ``<USERNAME>:<REALM>:<PASSWORDHASH>``. Normally ``<REALM>`` will be ``Cobbler``. Other values are
currently not valid. Please add the user, realm and passwordhash with your preferred editor. Normally there should be
no need to restart cobbler when a new user is added, removed or the password is changed. The authentication process
reads the file every time a user is authenticated.

You may also want to refine for authorization settings.

Before Cobbler 3.1.2 it was recommended to do edit the file ``users.digest`` with the following command. Since ``md5``
is not FIPS compatible from Cobbler 3.1.3 and onwards this is not possible anymore. The file was also just read once per
Cobbler start and thus a change of the data requires that Cobbler is restarted that it picks up these changes.

.. code-block:: none

    htdigest /etc/cobbler/users.digest "Cobbler" <username>

Rewrite Rule for secure-http
============================

To redirect access to the WebUI via https on an Apache webserver, you can use the following rewrite rule, probably at
the end of Apache's ``ssl.conf``:

.. code-block:: none

    ### Force SSL only on the WebUI
    <VirtualHost *:80>
        <LocationMatch "^/cobbler_web/*">
           RewriteEngine on
           RewriteRule ^(.*) https://%{SERVER_NAME}/%{REQUEST_URI} [R,L]
       </LocationMatch>
    </VirtualHost>
07070100000125000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000001600000000cobbler-3.1.2/loaders 07070100000126000081A40000000000000000000000015ECE244400000242000000000000000000000000000000000000001F00000000cobbler-3.1.2/loaders/Makefile    installdep:
	yum install -y grub2-efi-ia32-modules grub2-efi-x64-modules

buildloaders:
	grub2-mkstandalone -d /usr/lib/grub2/i386-efi/ --compress=xz -O i386-efi --modules="tftp net efinet linux part_gpt efifwsetup http" --locales= -o grub2-x86.efi
	grub2-mkstandalone -d /usr/lib/grub2/x86_64-efi/ --compress=xz -O x86_64-efi --modules="tftp net efinet linux part_gpt efifwsetup http" --locales= -o grubx64.efi
copyloaders:
	cp grub2-x86.efi /var/lib/cobbler/loaders/
	cp grub2-x86_64.efi /var/lib/cobbler/loaders/grub2-x86_64.efi

install: installdep buildloaders copyloaders
  07070100000127000081A40000000000000000000000015ECE2444007C3A00000000000000000000000000000000000000002400000000cobbler-3.1.2/loaders/grub2-x86.efi   MZ                @                                       	!L!This program cannot be run in DOS mode.
$       PE  L @?\               {                                         :|        
                                                               0|  
                                                                                  .text                              `.data                           @  mods     {  $  {  $             @  .reloc   
   0|  
   0|             @  B                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        D$  D$  Yb  U8  2  UEt];   ]UEU?w@   L!ʉUE]2  U]U5  UE]UE]UEU	ЋU   	E]UWVS,E    E    1ۋEЍuܹ   j ]E܋EԉE    utCuEԃ} uM   uuPU u=uj   u7     EЁ}   Ge[^_]UWVS4EE1   EMtu۹   Su  Ã  <?vA   Pu    <t:EtC1؍e[^_]Ut
t@J!]UE0h  h  h  h  *r   USRtXPR3  ]U@  <  8  h  @      <      8      -A  UWVS(EuPh  h  h  h  Eq   <ft<ht<cu+Exdu"Wj
j Pk  ="  uySSh  jU  " #  Efthtcu"8  @  <  uEɉ  E   e[^_].U  	߉~PEzwwwwWh؉  h  h  h  p  W0EJt	QRh  .O_F    N^WJuuPRh/  jT  EF       N;_sANF(uhF  h  h  h  p   1e[^_]UWVS,EPj h  j     E    EPU   3<  tgPA  EtTPjh  3  Et;jt0  M̅uV0  2x}ԉHEԉUЉxPmVu0  E1e[^_]UWVSÃr  tHP   @f@ t9tPPVs  t[V0  1e[^_]UWVSÃ; tBw3  YƋp&  ZYVP  uRRwp  t4~)jR/  tPjWVh`  F3뉍e[^_]UWV1SӃt6PPWsMI  MuVh\  jQn     [F1e[^_]UWVSӃz<  th.@  xtf8  `tc   [^_]UW1V1S]؅tpx@ E@EEHЋ@R	 t19u=9u9EP@ t19Su9CuSMt  }   1e[^_]UWVS,E]utH  @  1ɍ}   <  1ɍ}؅   Qh`  jWUЉMIm  <$he  h  h  h  kl  VWӃ   UЋMԋRAQhs  jWUЉMl  <$he  h  h  h  l  VWӃMԋUЅueRAu8  1ɍ}؅tJQhx  jWUЉMl  <$he  h  h  h  k  VWӃuUЋMԋRA1   e[^_]UWVSU؋P(M܋ZSRuHB}#EEt(VVWR*  th} tQWuPh]  	} utCCRRVWuu؋K1SЃ } t)} uPWVu$]  V2,  	  e[^_]UWVS]}uE3UEWVPh}  h  hS  h  Uj  UEjRPt%u}E  EE   e[^_]N  e1[^_]UWVS]}uE3UEWVPhՊ  h  h>  h  Uj  UEj RPgt%u}E	  EE   e[^_]&N  e1[^_]UWVS,  {  ǉE7  Gteu[@<t1<tL   EЉSt7ECu"{ tڸ<  u8  C    G    uEЉEԋEԋX   <uB{u<      }f{u&PjEPCP[  uUԋEuLEԋ@P<u{uC=Atb=A t[=AtTz tDz   v;UԸ8  Eԋ@EJEGh  7  e[^_]ËUԸ<  ËUԸ@  UWVS,]Cx-  C(E <ft<ht
<c  { u
E   Eԉƅ   v
     Pj
   @f@ XEZpW  <$E(  E؃   ~<uxurCE    E    EtPHUM܋@ CWHG t19Uu*9Eu%GW t1M9Qu	9Au
v1ۋE1e[^_]UWVSHuj	     Pk	      <Q  GH<E  Sx	  E    tXV#	  u&PJwuE    @f@ č]ۉsuVz'  1   SJ6  4$]'  tߋGGE    }u<CwH t1S<  9u9u3Z  REVPh  Sl  EЃuSB5  } aEPDRP3h1  f  YuЉ&  S5   uۉ؉V;Z  e[^_]UWV1SSI   z}f:t^ $  wE   
3 $  X?ˀXӃ?ʀ?ˀXP ?@U1ww@  w?ʀXPK (  v; $  w ?@)ڃP??ˀʀXPދU	Z[^_]UWV1SӃzWRRSRSRSRSRSRSRSRS
RSRsPh7  c  @f{whx  c  e[^_]9sPPD3FPhz  sc  UWV1Sƃ1ۉEM,  } "  M1})E@ۉEt8   Kщ?	ʃuun      x[u         u»      MMu\»   du`tgw
  vFX  v<  
f%f fFf%f fFEEE?   EfO1ۋEE+E[^_]U  U@<Ruu   uE1UWVS(j E    #  te  }X<VWuuuSd =  u/V#  Xu"  t$PWuuuSd tV"  1EMe[^_]U   U@<uj 5  Ruu    uE1USj h8  u   3j j EPS1҅u1} 9EtRRPSS1҃Ћ]á  U]@<   Ujh(  uAUS}jR  Ӂ  @<j j S5  PxU  @8uuuuP(tE  E   D  1UWVS(Eu}EEVEU  D U܉$!  U܉á" t[R[fC    @8<$ujuSP8S!  1tuE  E   e[^_]D  e[^_]UWVS8}EE         WiT  ƍD $w      V}fC    p8$    Wj uSV0 =  uEtP!   uS6PWj uESV0S;   UuEMR   1e[^_]UWVS(5  u1Ux 1      f;   sPPh  SUaQ  Uuf;   uF(̋B C8mimgue[^_]UW1VS]؊Pt puuL6 |Ӆu1   W  tK<t-<u!u/KBSC F
t&/t\u@/
/uB\tBH@@ e[^_]Ujh  uUEuxt"P
t
Jzu1]UWVS1ۃuHˀuxtS  tPSVWO  e[^_]UWVS]f{Cf}  wtL     t  .    <t<uhċ  6hЋ  ,RRPhڋ  "Pwh$  PCPCPh  [  N  WWCPh  VVsssssh  &  ڸ  .  QQsh   RRPh*  <t	<t   Pssh9  덃hF  [  { suPPshM  PPVhQ  ^[  VjP  | uWWshM  VKP  ZYDPhQ  "[  V.P  4$$P  ߍD$P  |8 uWWshU  VO  4$O  D$O  Y^DPhY  RRPh]  Pg  $$  CPCPCPhn  tPCPCPh  _ssssh    Pssh  5PCPCPh   PPC
PC	PCPCPCPh  W  PPsh׌  C$PC	PCPCPCPCPCPh    CPCPCPCPCPC
PC	PCPCPCPCPCPh  yY  @f}u8CPCPCPCPCPCPCPCPh5  :Y  0hN  'C*PC(PC&PC$PCPCPCPCPCPCPCPCPCPC
PC	PCPCPCPCPCPhP  X  `f}<DWWC3PC2PC1PC0PC/PC.PC-PC,PC+Ph  s,s(s$s ssCPhލ  b  VVCPCPCPssh  A  CPCPCPh  ڸ"  0  QQCPh,  { tYsKS	CffWVVQQRRPh5  W  CPCPCPCPhc     RRPhu  #P'  $  C)PC(PCPCPCPCPCPCPCPCPsssssh  V  @  PPssssshĎ  V      ڸ֎     }D?P  tS\  
"     PPVh܎  DV  4$  9CPCPCPCPCPCPCPCPC
PCPsh  U  0KWWPh"  <uCPCPCPh4  VVPhD  QPRhU  U  <u{tEe[^_]UWVS]ut^tZ8tCV8u{Vf9t).PWVS!H  u<u{t릸   1e[^_]Uuu6  1UWV   E}  #      @<j j j j j       EuPEPhj  E    E    Et } tPhF#  j V2  Zu  e^_]UWVSu5  }tKpaXs> u  tQWVs҃RRj/P{G  t  e[^_]U  UWVSf}   j   u  uqj   utT   Pu  |Éffǉʉf؉fe1[^_]á  U]H<A$UWVS,uM] Muv1[  UMЉUԋx<RSjjW uۋEEUԋMtE'RSjjMuW Sj j |t롍e[^_]UWVSEU] UEv1v	о   uEf E      UU܋x<RSjVW uċEEUtE.RSjVEE    W Sj j t농e[^_]UWVSE=D   ]}utgMT  	9sRQ5X  PC  1QR5X  PC     T  ۋMtP  tL  tEH  <u]uu  R<VWSPuR(    t1=  ڍe[^_]U
   WVȈ  S0]Eލ}j
P  pC  ƃhH  hL  hP  5X  hT   ySS}} tT  9sQQh  j5  B  5T    X  u
"   hH  hL  hP  PhT  o 5X    XZhs  뒡  WW@<5P  5     t@=  t5X  h  Y[h  N5X  N  $Ϗ  O  D     tT  } tR5T  5X  uA  } t
P  U} t
L  U} t
H  M1uEPPj h$  Eԃe[^_]UWVSpjj j Eu
h  j uVj u]E 0  S  uNPE1jRPEEE  Pj j HEtj Vj PS yh  ?P  uEUEUE;u   >   VF EU   N^ȉEU w=      	   PuVuv@  VF w1= w* 1)Ӊȉ)FVF   F    }GW   O_ w v} 1)ӉO_}GGtEEu E1ҋME1;MsAQM w=   E   E    v" EUw	} @ vE @ E    E]؉E;]sSE؉;Msy9xprw;qsM9t#]
   }4߉ױ
Ǎu
먋EEE9E   Ex;}HXpr w;uvEU)PVSQMu]MuSVQh$  ]RRSP  )u}UE	t$EEhUE	thY  mPE1jRPe[^_]UWVS\E=D   ?    Z,   ~fE?    %  tsw.!  tbw%  !  M!  %  tY!  6%  tBw%  %  t8%  %  %  t!%  t%   %  %  fMfx1fM   };urfDM  u~=Oy}w  %f@t}vxx1<f|MMFf@uRRVSSPPVSSte[^_]ÉUfu%Bfw9Jfv0ft*`    fw  J1f_w]U  =D   @,tEP   E   URURP$rPPuUE	U=D   Uu  @,QQRPPU   WV؈  S]=D   }u { uPjEP  p 3Ce1[^_]UWVS1ۃ=D      EU܋@t\VVRPPulE܉utYyS   t@_v   0   t   t(      @$QQRPPu
EBÍe[^_]1=D   Uu  @,@$P@	]Ã=D   u1  UVSX,C$pPPj SS$SZYVSSe[^]Ã=D   UUu:  @,tru&(  E   )  UE@]]Ã=D   UUu  ҋ@,UE@ ]]Uj u$    1UjXZju1UjuPPhk  j,  x=#  tPPhH  h# T  uQQhH  h# 4  hH  Ѓtك=#  tRRh  h#   uPPh  h# 4  h  ЃtUh  4  $  |4  $H  p4  $H  d4  U9s\u
t@@]UVuS]wRRh  j+  -Pjh  Va9  u؃j  t0X1e[^]US]3  ]]  UWVS1ۃ(}u+;  UƊt<
t<\uCBGȉEH#t
t1   @EFE܋E܍<;}sHPVuMQ8  M؅u"<1=u17;Ms<
tj<\uFU뭋E]+E9}P]Vuލ~S7  =Et
t\u\GG@O
   LU+U)979}$PE))PQPZ7  Vuj#V9  뙋ER)PQS97  뇍e[^_]UWVS(}u9  7^wx;9vlPQuMS7  Mu<=u;9sG <
t<\uG؉MMG;R))RPS6  Wj#V8  e[^_]UWVSEZPU;]   ;#   ހ>=tF;uu   ;u   ~;U   <
t<\uB)ڃBR  tx))щMQVSRU5  UM2 q<
u5F PuUQRUU$  u%U:<\u	CCFFCF뱍e[^_]UEfxufxtPPh  j'  1UWVSEu}E܋VFEU;Esy9OsEݐ  E   [^_]K'  ]܋POUSS]tuZ)ˉ$R]E   E   [^_]&  F$낃1[^_]U1WVS1   +`  d  1҉EUEUEU[^_]UX5    PX1VStv   tj11`    d  @<h     1+`  d  $    SQj7j T7  h5       e[^]Ãh'  +C  UVS  tRRPh4  2s9w[u#s9wH
@=(<-uVVQhI  B  RRPh|  =mt
SPQh[  e[^]UWVS\E@=   E  EEuE   EE    E    uEȡ  E    E܋E؍XE؉]E}   E܋8m}p  }P1#U҉tM])Ή߅u
h  P(<-tQRPh  A  Mȋ]̋PE    9]ԉU   w9   ]ME    ]])+M!ˉ]u}	u;Uu}   }tMȋ]9]u9Mu+UPa	u-u}0B(<-H+M9ǉJ
u8EU.]}3A(<-P)+UQp؉u@m  pvu9u}܋u7tG;Et
E E܋@Ec} uP  E   ,PPhƑ  jb#  1e[^_]Uuj UVuSRRVj tPVj S;3  e[^]UVSE   MUEUymuB(<-   9whX(<-tRSPh  ?  9wD9v<B(<-UuS9u+rB    sUU9r9s봋UUZ9uX@    Z9uщȋUe[^]UWVS]E      9v )؋5    t`N9uM   CCt-KKCC CmPUUeVv뜍SJ)ރ9rI)֍D0
JщB)ىBá  J  B(<-t9XwH@Be[^_]UVS]uuVcuSOU؍MUF@9Bs5Vvt!PE@PSV.  $1ۍe[^]Uh  ]UE]h  UVSÉ) w;Er[^]UWVS(j$   ECECEuԑ  CE  5  1C    CECt:PPvsUz.  Ux uF9K|F   63t^҉؉{uK   1e[^_]USP]CttH   S(  ]]WUב  UtՑ  RPuhؑ  :  1Uuhޑ  :  1UWVS}} %QQj h=    $  $  G     72   ="     P     P4&  EXZj)7-  UHu9 uDuQQh  j  R=" u
"     tB  RPVh  9  "t!j hj=  QSR$  $  F  S  V" e[^_]U} EuE  E      (t+uP  	P  tP7  1U} EE  E     0!  1U} VES-z  Åte3  P3h.  8  [ڋ0RRj=V,  uE5  E   e[^]	    PPCPVs  =e1[^]Uj hG  hd  ha?  hs  q tH   j hw  h  h-?  h  Ej h  h  h=  h  'j hĒ  hՒ  h>  hܒ  	 UWVS}jtSu;?  t%PEV0h  ,9  C4${ uSG1_   e[^_]UVuSu4h  A  t8 uP1h  h  j  ^jBtK@    VO  څu>l  t=" uV"     ЃC{ uS(1ҍe[^]USR]tP`  Ct0XsS" ]UWVS$]usV   Vu"        8 tjC    RShv@  00=  4$Qs"     1t3>uPPsvvE44$*EɉP   e[^_]UWVS1ۃEE    }܉E܋EE5  tFtRSWhA  ЃuvCu1   e[^_]UWV  SM]UȉiU{' i 1k9  u-u9   u"9(  u9$  uǂ0     ,  1ZY[^_]UWV  SM]UȉiU{' i 1k9  u%u9   u9(  u9$  u
ǂ0      XZ[^_]UщWVS(EUUi{'   E؉Ui 1k  sC   m$   C    C    Cu" ,Rh   uP&  E  U܉CE؉SC1e[^_]UWVSÃ<EU؋UM܉EȋCŰS@QV;YZt'QuEPu%  XCZS@WVM  h   `E  SCUBEu}t0{E؋uЋU܍O}ԃ@  t19wwr9sqS   s   u)PE؍JU t1RPSV u2}ERuPu$  CS@Wuu&t  uuȋ}"     E    		EU܁  }{O t1!!MЊK+EЉ}U		EEEUċUU11 EEEUU1EEUEUUUE t1҉E$Uu
"    {PUuCHE t1RPSW t>  3h  h  h  h  X1   <  V" !PEuPuQ#  <$cu8K t/uȃs$u}̉%  P		EURPу 1e[^_]US  PCt{ uPC    ! uՋ]U  EP  ]á    Ut;Eu@P@]UVS]3h'  h  h'  h  ;0  C t@t	SЃp  t  Ctp P@s3.]e[^]UWVS(uh6  h  h   h  /  j,b  }@	   @    Ot[<\u,u	O<,t+EE@P[   PuuVj!  E 4$*$  u$  u1҉; ty=     PPSVUWU   =" uJ"     ȅ҉{   ǡp  ыt     9   =p  t  ;uttV="       uh  h  h  h  Q.   5  S1qPuh  j}  덋KAC   WPhG  jQBQRS3  C$RRhu  w95MM%e[^_]UWVS,EUE    ]Ɖ׋U	K	u}%  EE  E؃ EU1EU܋U܋E		E؉U܅t@QAUԋQEЋA9rw9r	PPh  l);Urw;EruЋI }뼋SCUBEu}t}CUԍHE t19rw9v)9UrPw9EvIP3hߓ  j  t3:  Ph! WVh  h  h  h  ,   r    UE	u?   )ЉUЋU	E   )U)E؋U;UvUUu 1uEURUPSH  E1E )EEU		~E9EsY} CwP9EsKEUEPPCu؉U܋S}܋@uuQEu_EU E9ErvE    UE	um} O  }  v  EE    E    E    EZERh   uE PX  SYXC@uu1뇋KCu Mȹ   )E؋E t1PE؉H t1ҋMRPSQ    E    E    PCM؋U؉EȋCM @QMQRUEEU 9EuE9EuC tUs$Rj WVЃ EUƋE)EE C ts$h   j WVЃ @ E    m   }} u" u uj j tݍe[^_]UMAtP@+QAutI	 t1]UVSx  tPP3VH  t	[(1؍e[^]UW1VSÃK.@2s ދL0ىMC09s$PPERUP  tC.GU1e[^_]USR]]tP3h5  j   1]UWVSuj}á" trt&V  CuS" HsE{CEC1ti?  F¹  1|  1|  e[^_]UVS]t"stv6C@C1e[^]UVS]t"stv6CHC1e[^]U1WVS]{    CtСx  x  t9uC(P(@(|  7t39^u&vUE4$EUɃp  ust>v_4$Ks ;X33$+   e[^_]UWVS4]uSVhL  hf  hb  hn  &   3w	RRhx  >ELFu~u~tPPh  j
  	V!  f~tPPh  jF.V0F 9sPPh  j
    j,6  @   Ph  hf  hz  hn  %     uPPh  j%
  tP  PPh4  CP  t2PPhB  CP{  tQQhQ  CPb  u`   uRRhi  j	  ?HQ@  t#~     XHىMa" B  ΀; taS  tDPE$   Ut"PWGS  \;]r"   F    1E    EF0E܋E9Es(EP ؍\!ËEX9sV.EUPPSQE؉G    _$^ E    oCE   K E؍DىE!MKEEEusPuCUPu  UԃEBCBE܉BGWF.EF09EsMCtjk"   !uPuUj u  B    덋F 1N09sxuD9  XE    _P$WV.H$PV @M܋L1uMԉE'^.B멋BCz tECE]܋E9E  SMԈU<Me  $H  t_f{ uXM1ti?  A¹  1|  &  PPurUE  U̅M֋SKGt9Hu@ } S6Wj Ru[:SKGt9Hu@ } StWjRut
"    PPh  u  uCGPPh  u{  CGSGt9Pu@ CrC    fSPh  	Puh  j  ui^ 1F09sgCt	u/Gt(K9Ht  tPSVWUUuF.BQQh  j)  tG    WtRRw w$hܕ  hf  h4  hn     7h  hf  h  hn     wh	  hf  h  hn  c   WltW1ҍe[^_]USuuNt"@t	SЃx  x  C(1]UWVS.-     u  tvx4WuS  !QWPS  9tS  4$0SEs  XZURV44$tK1e[^_]UWVSuh2    ǉuiuVh2  h9  jNQVWhQ  g   u1<P<$%tRRV3  tPPhd  j  e[^_]USPx  tSu[(]U1VStAй   1񡴤  tPPV3-  t	[1؍e[^]UWVS}ut:x@tRRVS	V  C{ u{!W${j u
"    W  tPV  Ct=  13tF1Ҿ   C҉StKJ1#3Xs$" e[^_]UEtPtQQpP҃@1UVuSntWx ux tRRhu  V9@SCtSP3Xs]e[^]e[^]UWV1SE      t2E}tRR30?  
x@C[FuEe[^_]USR]u"PPhu  St" tUPUP1]USR]RuPPhu  Su3@   1]UVS]uu"   VPh   h!   e[^]á  	BU" i  h   h!     Pf    "          "     á  ~=UH  i  h       Ph! "       "     1U="  t$hv    ZYh! Pb  " uuʃ=   th  :        UW1VS];(uXQQj)S  uRj)h  j3)؃PtPCFPSRU*  UD2 ׍e[^_]UWVS,uV8^F4NU9ӉEr w;MvRRh  j   1҃}    E1҉U܋UE؋E)9U܉EЉUrwE9EvE)ȉE} ym    tI~DVHu" vHN^FDPNuuUVQU~DVH~F^e[^_]USP]C@t	SЃCtP3$" ]UWVS(]SJ="  .  ;(t]VVj)S  t@EW<$   jLb   p> tE8/t	G  V  Gt|QQGuWPui1S  1ɉ"     wt" tRRSWЉF܅uQPjh" h" 	  4VWjh" h" 	  11؍e[^_]UMVuS];Y8rw;q4vPPh  jAQqYe[^]U   ]UWVS1ۃ,EM]p4x8P@M)9]rw9Mv)ǉ}%  EE	E    	E    @@E܋E܋@E   }    Eԃ E    E   9   EMU   1ȋMڋ]		)9rw9vU)	+UUPE܉uURuuXESQ@0G uBUU)U1EUE    		)%  E+u}̃EE؍e[^_]UWVS1ۃ<EuEF EQQj,uCE  u	E    @E} t]σkSa  EF4    F8    E    EE9E   E8+t1Rj URPj  S="  tQuh  yE8+uERj U@RPEX  ]ĉC="  uǅtËE <,ttP1  tC1҃MĉEQM9Qw+r9As$PPh  jW" E1	F4V8EE~@1e[^_]UVuS>   ܿ     sh7  hH  j8hK     j hda  hU  VS="     UshW  hH  jNhK     " 	   "     n=ؿ   ty=   up     ؿ  tFܿ  j hda  hU  VS" u  E	t  9"       Ft@$uPPhm  jH1e[^]USR]tPPus  t1؋]UEUBtQ
]UEPt
tHJ     @    ]US]S=  ;(u|)uC]]Ef  ]]#    Ut8mimgu@1]UWVS1ۃ,蘝  t(8mimgu XP9s[;t{WӅuECP  u#RKQRSRP  C  D     1ۅt(8mimgu XB9sV; tCÅۋ  u:PPCPCPuPPh! h    ="  tF1E    E    t:mimguB1u-Shf  j h  _XEPEP;Eu SJ9sʃ8upxO뱋Ut.QRPh    tPPSh  6$tT>(  WWj)V    )SHSPFPY  Gt1> tV  ǅu1]uEUt2t<,u(Њ  \ux,u,q  @ڃREtWuSP  ƃv;EN:/u v!Qjh  D0P)  uED0 }PtIu  RPSh    tPPVh  4$VPPSh  S:<$2*$  $  =   t
      !  tP   h  K^_"     h  5  tSj j PP  15Q)QPRy  SPh  E  Uԉ$nPSRh    ƃuO$ECUE]Ë   9tURUWVSQE1ɋuU9s9t*A֍ى]Jt}ψZ[^_]U1҉EMBu]U$u  fE
 $$  E$$     U1҉;UtEMBL8t)1]UMUStt8uAB[])U1VUS]ut$NAtt9tA8uB)[^]UE;Mt@u1]U1US
;]uBu[]UE;Mt@u]U   Ut 		]USPZu,t;t|&	   ]UWVSQ]tC; tZ}tUuU:u CGt+yt nuCuZtC   Z[^_]UUWVuSwM1F}11ۉ	Ã uMt	AAJu1)v9Ӄ9tC[E^_]UUЀ8 t@)]UVS]SQQpVtRVSP1e[^]UWVS}uWZ9vCPtPSWV e[^_]UWVS$UE։EE UUEUw2}w,} w&}w }    E1uE@    ~EA   1111MtV҃} yǃΉ߉uЋuu}ԋ}};Urw;EruЋ}ԉ}Љ]Ѓ+EU륃} tuVȉ
E1u1҃$[^_]UWVS,u}]PUZUtF0u,F<xuu#   u0<ۃ
u
1E    E    ]؉EtBw BЃ	v.B	v9r"   PPhۗ  j
611   9sQj uu؉EEuԉEuE    #9Urw9EvRRhƗ  j?ME؋UȋEEeʹ   EUFEU0t7EUe[^_]UWVSǂ      AP   %ty-uAʃ0	w@$1Ҁ8-Њʃ0	w@.Њʃ0	w@ltHPHluPHdc}$CtXstput	xG  <   w   3P;   u"        ǃ      Q  Pj    nE    GP  %tMA-MuG0	wA$uRj
j PMM܃AHE19-Ѓ0	wA<.Ѓ0	wA<lty1A<lt
y   Ay   M;  sc<dt/<Xt<ctE<CuQ?<st)<pt#C<ut<xu;      M"   U      U    EE1;  sA   9w0$\  QA    VQG뷍e[^_]Uuuu vPPhƗ  jUW1VS1ۃlUMEPU   <%t;}s>G]  CEEE 8-u@EEUȃ0	w$<0HQ0j
EEPRKEE E    E8.u@EEE0	wRj
MQP
EE8$Pu]UKbUluPUPlu	PUP%u;}  >%  E;       d؋\t]XtVc  C    s6  
pt  ut%xt   ;}s>0G;EsD>xx߉E1XEMeE}duu]]ȉMȉ؃ ډE]ɉUE-}]uGMEȃ0	v}xILWEUHEщE	ЉMu:EPj j
uur EEEUUH0EHM	uƋE  SD9sHCHKP]E1);]sU)ڀ} u:9t;}s]>GM)t;Es@} -  <9"  ;Es]@;}
  >  v$  v"  v& w*      '11!            	11ɻ?   ;}s		Ј>G   ;}s?Ȁɉu  1;UuE)9!} u!9< tB;}sM>G9u)9t;Es@} t<
9t;UsEB;}s>G];}s> E e[^_]UWVS    MEMV     =   vU@Pu-"         .  .  .   MV)ǉmS$    tSe[^_]UEPu!USu  ]ZYSP]USh  tMPPh  SuPPuSt'Puuh   zEZYPu  ]U1WVS  ]t9MKE1MEVǉ^9߉v؍e[^_]UEPuuuUWVS   ,  MECPu1<MW9wV뤍e[^_]UEPufUSu  ]ZYSPj$  +=#  th  s  jyPU	]UWVS]uu    =QQj
P6tRRG)RP13;e1[^_]UWVS˃P  Vc3t8 t@JH
e[^_]UWVS  ,MEuE   ʉE܃0t;EuJC8u
; uB]=PMЉUUԋMЅtЃ߃A<v
	v_uĀ{ t릃{ t Ce[^_]UWV   S  ]E     t8 u}   QujPU        RQPVǉt"u [ttsH`uBt=Pat&9t1x t+P  tHt:+t 9tx tP  )Pơ" ttP)PWV   $߻}uV" 31;}%}: Ru@1e[^_]US]} t/PEPj SPEPhfz  u  Zu莻ˡ" ]UWVS,E@ǉE̋EE܋E܀8 E   ]܊u$Qj EPS5# HEȉ+EԉE-߃A<wC];]t*Puuvt6urFMЀ< uEME    xFMMRQhA  uЋE="  tu諺1UM̉Ju4=" u"     놅t_ Wt1U܉x t:,uBǉUe[^_]UVSE# uE    EEEt(PVh  uSt
"     } uԋEe[^]UW1VS<]ۉuh*  }   F$pSv |8uGPU   8Eĉ  }͋M@Ph+  jW<$MP)WQM4C$ZpU)PC$UpRUB,[ JuPE)PRV1e[^_]UWVS@tXJ֋ZJZ;XrEw;Hv>PP7@PF$ph.  h`  j1hj  [$S蔸1   e[^_]UVuS]9t14Ejtj,FtRj,SP%   e[^]U   WVS<]U}؉ut|CC    RE܋EpVSPtE       LEEuE܉CE 7s5# tPuh  SVt
"     E8 u6ҍe[^_]US ]EPEPuuSM uUy
"           Ju9QQj=S7t(ESSj=0"  XZCPE0=gE; t`QQS5  tMRQMRQRPP3RRSh{  bY[h  5  th  (E0菶Xu膶" ]U  WVS} t  1Ph   j h  pu%  
tktfP^w)   OV{  EE $  .u)t%KVEE EE ƃ   $    닃h  $  z  $  \Ue1[^_]US h  ]y"     Pj j SEt܀8 tRj hH  PYuAU   WVS1}ԃ,% 	EEu*B t#f RЃ)Ɖڸ    NuPPEPSS
uڸ   e[^_]UWVSut'v?   # tډRFӃ[^_]USP  t
j Ѓ  tЋ# tSSu1]USP# tC4t	SЃ]UtU   WVx  S@}}W]Sh٘  }uu"h  1h  j)h  h1    Ph  h  j,h  AWSh%  芒}uuh/  h  j1h  1- PhF  h  j4h   1> t; VE$Eče[^_]US,  Ptj ssP]                                                                                                                                                                                                                                                                             +ةI7  T  b  }              L  !  !      {   [       A   '  !  !  b   !  !  !  !  !     !  !  !  !  !  !     :!  !  !  !  "      j7˾B(A p p l e       4ubwF%    H  P  M  K  G  O  R  S  I  Q  ;  <  =  >  ?  @  A  B  C  D  D  W     U  U  qV  V  W  r  r  r  r  r  r      aʓ +closing %s
 efidisk disk/efi/efidisk.c opening %s
 not a efidisk no such device m = %p, last block = %llx, block size = %x, io align = %x
 invalid buffer alignment %d invalid sector size %d opening %s succeeded
 d%d hd%d iterating %s
 fd%d cd%d writing 0x%lx sectors at the sector 0x%llx to %s
 failure writing sector 0x%llx to `%s' reading 0x%lx sectors at the sector 0x%llx from %s
 failure reading sector 0x%llx from `%s' %s,%s /%sVendor(%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x)[%x:  ] %02x  set_virtual_address_map failed could not set EFI variable `%s' mods /EndEntire
 /EndThis
 /EndUnknown(%x)
 /PCI(%x,%x) /PCCARD(%x) /MMap(%x,%llx,%llx) Hardware /Ctrl(%x) /UnknownHW(%x) /ACPI(%x,%x) /ACPI( %x, %s, %x) %s) /UnknownACPI(%x) /ATAPI(%x,%x,%x) /SCSI(%x,%x) /FibreChannel(%llx,%llx) /1394(%llx) /USB(%x,%x) /USBClass(%x,%x,%x,%x,%x) /I2O(%x) /MacAddr(%02x:%02x:%02x:%02x:%02x:%02x,%x) /IPv4(%u.%u.%u.%u,%u.%u.%u.%u,%u,%u,%x,%x ,%u.%u.%u.%u,%u.%u.%u.%u ) /IPv6(%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x,%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x,%u,%u,%x,%x ,%u,%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x /InfiniBand(%x,%llx,%llx,%llx) /UART(%llu,%u,%x,%x) /Sata(%x,%x,%x) Messaging /URI(%s) /DNS(%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x) /DNS(%d.%d.%d.%d) /UnknownMessaging(%x) /HD(%u,%llx,%llx,%02x%02x%02x%02x%02x%02x%02x%02x,%x,%x) /CD(%u,%llx,%llx) Media /File(%s) /Protocol(%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x) /UnknownMedia(%x) /BIOS(%x,%x,%s) /UnknownBIOS(%x) /UnknownType(%x,%x)
 GRUB_ENV couldn't retrieve memory map memory map buffer is too small couldn't terminate EFI services Trying to terminate EFI services again
 cannot allocate memory cannot get memory map cannot allocate conventional memory %p with %u pages too little memory cannot set text mode console invalid environment block # GRUB Environment Block
 invalid arch-dependent ELF magic reloc offset is out of the segment relocation 0x%x is not implemented yet no TSC found unaligned pointer %p double free at %p alloc magic is broken at %p: %lx out of range pointer %p null in the ring free magic is broken at %p: 0x%x out of memory  /  %s%s  (%s)  unknown 
 invalid argument (%s): Filesystem is %s.
 one argument expected %s=%s
 not an assignment Set an environment variable. [ENVVAR=VALUE] set Remove an environment variable. ENVVAR unset List devices or files. [ARG] ls Insert a module. MODULE insmod %s,%s root variable `%s' isn't set %s read failed
 disk kern/disk.c Closing `%s'.
 Opening `%s'...
 sector sizes of %d bytes aren't supported yet no such partition Opening `%s' failed.
 disk `%s' not found attempt to read or write outside of partition attempt to read or write outside of disk `%s' Read out of range: sector 0x%llx (%s).
 `%s' is already loaded module at %p, size 0x%lx
 modules kern/dl.c ELF header smaller than expected invalid arch-independent ELF magic this ELF file is not of the right type ELF sections outside core relocating to %p
 .module_license incompatible license LICENSE=GPLv3 LICENSE=GPLv3+ LICENSE=GPLv2+ .modname no module name found .moddeps grub_mod_init grub_mod_fini unknown symbol type `%d' relocation without symbol table flushing 0x%lx bytes at %p
 module name: %s
 init function: %p
 symbol `%s' not found prefix variable `%s' isn't set %s/i386-efi/%s.mod mismatched names  error: %s.
 assert: error stack overflow detected!
 missing `%c' symbol attempt to read past the end of file attempt to seek outside of the file invalid file name `%s' beyond the total sectors Detecting %s...
 fs kern/fs.c / %s detection failed.
 unknown filesystem blocklist  %s root (%s)/%s fw_path i386-efi (%s)%s prefix normal %s%s overflow is detected unrecognized number (null) debug all %s:%d:  
Aborted.  Press any key to exit.  %d sub-partition %s%d of (%s,%s) ends after parent.
 partition kern/partition.c Unknown command `%s'.
 help Try `help' for usage
 >  grub rescue>  
 Entering rescue mode...
 SecureBoot No SecureBoot variable
 secureboot kern/efi/sb.c SecureBoot: %d
 SetupMode No SetupMode variable
 SetupMode: %d
 grub_command_list grub_current_context grub_device_close grub_device_iterate grub_device_open grub_disk_cache_table grub_disk_close grub_disk_dev_list grub_disk_dev_register grub_disk_dev_unregister grub_disk_firmware_fini grub_disk_firmware_is_tainted grub_disk_get_size grub_disk_open grub_disk_read grub_disk_write_weak grub_divmod64 grub_dl_head grub_dl_load grub_dl_load_core_noinit grub_dl_ref grub_dl_unload grub_dl_unref grub_dma_free grub_dma_get_phys grub_dma_get_virt grub_efi_allocate_pages grub_efi_allocate_pages_max grub_efi_compare_device_paths grub_efi_duplicate_device_path grub_efi_find_last_device_path grub_efi_finish_boot_services grub_efi_free_pages grub_efi_get_device_path grub_efi_get_filename grub_efi_get_loaded_image grub_efi_get_memory_map grub_efi_get_variable grub_efi_image_handle grub_efi_is_finished grub_efi_locate_handle grub_efi_locate_protocol grub_efi_net_config grub_efi_open_protocol grub_efi_print_device_path grub_efi_secure_boot grub_efi_set_text_mode grub_efi_set_variable grub_efi_set_virtual_address_map grub_efi_stall grub_efi_system_table grub_efidisk_get_device_handle grub_efidisk_get_device_name grub_env_export grub_env_get grub_env_set grub_env_unset grub_env_update_get_sorted grub_err_printed_errors grub_errmsg grub_errno grub_error grub_error_pop grub_error_push grub_exit grub_fatal grub_file_close grub_file_filters_all grub_file_filters_enabled grub_file_get_device_name grub_file_open grub_file_progress_hook grub_file_read grub_file_seek grub_free grub_fs_autoload_hook grub_fs_list grub_fs_probe grub_get_time_ms grub_getkey grub_getkey_noblock grub_gettext grub_isspace grub_list_push grub_list_remove grub_machine_fini grub_malloc grub_memalign grub_memalign_dma32 grub_memcmp grub_memmove grub_memset grub_millisleep grub_mm_base grub_modbase grub_named_list_find grub_net_open grub_net_poll_cards_idle grub_parser_cmdline_state grub_parser_split_cmdline grub_partition_get_name grub_partition_iterate grub_partition_map_list grub_partition_probe grub_pci_find_capability grub_pci_iterate grub_pci_make_address grub_print_error grub_printf grub_printf_ grub_puts_ grub_real_dprintf grub_realloc grub_refresh grub_register_command_prio grub_register_variable_hook grub_snprintf grub_strchr grub_strchrnul grub_strcmp grub_strcpy grub_strdup grub_strlen grub_strncmp grub_strndup grub_strrchr grub_strtoul grub_strtoull grub_strword grub_term_highlight_color grub_term_inputs grub_term_inputs_disabled grub_term_normal_color grub_term_outputs grub_term_outputs_disabled grub_term_poll_usb grub_tsc_rate grub_unregister_command grub_vprintf grub_vsnprintf grub_xasprintf grub_xputs grub_xvasprintf grub_zalloc memcmp memcpy memmove memset             1  -        ![NYd9 ir;nW	?m9 ir;1[b? ir;w/.LVIC!          0  `0  `,      .  /  c.  /  /  80                                    .      .          p                b  na                  j        '             "             $             \                          '             "             $             {                                       	            }          
   {          	          	      "       	             	      	      
      }                         p  U        g        |  A       B       @             ə  H     ٙ          G       G             4        R  N     e  H     t  J               m       x        4Y       Q     ٚ  ]P       P       P       c       t     "  l     4  %     L  O%     h  "       Z            ě  ='       >%              0     %       ?  r&     W       m          D        d       6     Ȝ        ܜ                ƅ     #  ;     :  1     P       q                 <            ҝ  \       L[       LZ       {[       [     &  "     >  !     J  "     U  \     `  k]     o  
]              y       y_       "       "     Ԟ  ^       _       "       ^     $  a     3  9     =  ؿ      S  ܿ      `  Rd     n  =<              B               l       e     ȟ  e     ٟ  )       ~9       >7       :       :k     %  j     2  l     >  U<     N        [        h  e     }  l                {       {     ؠ         ~       #       B~     4  p     M       ^  |     t  ]       Jx       ^x       	k       x       ;     ȡ       ա  z<       O\       Ay       k     &  k     5  `k     A  j     M  vm     Y  bm     e  k     r  m       k       
s       n       nl       (      ΢  #     ߢ  #       )        #     "  #     =        P         ^  7=     v  }w       x       y       $        [y       9     ȣ  :k     ϣ  j     ֣  j     ޣ  l                 LICENSE=GPLv3+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          mimg   0{     l  ELF                            4     ( 
 	 UWVS8p19t4@[^_]UEx t@1]US]s]]UVuS    Pt:juSU0@   @    PX1e[^]UWVS]C;Cu$WWPsu    fcCCPSVRuCPCxt$wCQQQPS1؉ōe[^_]U1҉W1VS]CHwK?r;s   CURRQPSUR~;SsU,;Ss`CQQUQPSU9CQQUQPSU։؉]e[^_] LICENSE=GPLv3+ priority_queue                                                                                            l                  2              ?              L              W   G   !     s                 h   d                      2         grub_priority_queue_pop grub_priority_queue_push grub_realloc grub_memmove grub_errno grub_priority_queue_destroy grub_malloc grub_priority_queue_new grub_free grub_priority_queue_top    U     d     |                       
    	   .symtab .strtab .shstrtab .rel.text .data .module_license .bss .modname                                                         4   7                    	   @       H  @               %             k                     +             l                    ;             {                     @              {                                                   	                                                  I                      D  ELF                            4     (  
 U   ]UWVS}u]uu1cjt   8pXt)9ZvRPJHBPtB      @       P֍e[^_]UEHPtQ   HPtQ   E]U=    t   tЋE         E   E   U=    t   t                     Ã=    UVSuPPh    jh5      t%5   t[t0S[      ƅtCuЉЋ[e[^]U]gUj h"   j h  h<        U5    you need to load the kernel first Boot an operating system. boot LICENSE=GPLv3+  boot                                                                   (                                                                
     3              E   
  :     W              r                    9                      D                                      
             >      grub_mod_init grub_mod_fini grub_loader_is_loaded grub_machine_fini grub_loader_unset grub_register_command_prio grub_unregister_command grub_loader_unregister_preboot_hook grub_malloc grub_loader_boot grub_error grub_free grub_loader_register_preboot_hook grub_loader_set        .     ;     n     v                                                              &    0    :    F    U    \    j    o  
  u                                             .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .modname                                                      4                       	   @                        %      2       O  A                 4                                  :                                 J                                 O                                                  P  	   	         	                                               ,  X                        ELF                            4     (  
 US    U]@8j RPtPPh    j&EfECECECECEC1]UVS    u]@8j VPt	RRh    FffECECECECECE    @8VP1tPPh   je[^]can't get datetime using efi can't set datetime using efi    LICENSE=GPLv3+ datetime                                                                                                                          `     )   `        ;               grub_efi_system_table grub_get_datetime grub_set_datetime grub_error        %     ,   
  i                       
   .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .modname                                                      4                        	   @       d  @               %      2         :                 4             Q                     :             T                    J             c                     O              c  	                                l     	            	                F                                  X                        ELF                            4     (   UVS]s@64$    C    e[^]UWVS,u~8~@u~4uP8@4V8F4V_FOU9ډErWw9MrPG1҉E9Uw?r9Es8E]));]]v]]]RDSPu)]]E    } uE  1ҋMj GR1҉UPEEFV1RPO]щUMЉE؋ẺU܋VE܋FӃ ;]   r	;M   UE)PSQ7Uuu7y   ~8u~4uJ4Z8N4^8EE;Eu)EJWG9vWG1ۋVE؋FM؋u)ȋM1ȉGEډWQV)PWE|Ruu7wGP7ZU؋M܉GWO~8u~4uP8@4V8F4G]9vPESF+E؍DPuE؃e[^_]UWVSujL}            x;V8rw;~4v~8 ~4u   v   GPuS+0xVSV4N8C@C    S4K8F<C<1    넿   ze[^_]UVSut"PPuVuV1ۍe[^]bufio                     0                   LICENSE=GPLv3+ bufio                                                                                                                                                  +              6              E              Q              a              p   D  F                      {        grub_memmove grub_divmod64 grub_file_seek grub_errno grub_file_read grub_zalloc grub_file_close grub_file_open grub_buffile_open grub_free grub_bufio_open              
       
    ]  	  m          	      g                    P    d    v                    .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .modname                                                      4                       	   @            	            %      2                          8               (                  4   	   @       P     	            >                                 N                                  S                                                     
            	              $                                  h  \                      Q ELF                      O     4     (      Uu    ]U   PuppR1U1]US]5   $]]   UWVS           SPtBǋtQQPh   tPV    SPtBǋtRRPh   tPV[<Be1[^_]UVS    t3    StPVs4h   4$[<ɍe1[^]UWVS5    tn^8tbCsEtHCsPUtPR3h   URtW[뚋v<뎍e1[^_]UWVS}5    t7^8t+PPW3u}    e[^_][ыv<ōe1[^_]UQRPUWVS0]}WRPEԉU   EMU     </u[PAj WQUЃ=            M9        )   EBUXq   B   UE7hPWVutdEU    </u8Qj WzW=     u9<w5U: u-FF t   uFF t    1Puh   j e[^_]US h8   t:RRPhN   tP1SEE1]US h8   t:RRPhY   tP1SEE1]UWVS}5       ^8   PP3hY   XY7URUuCSU@;RXZ3hN   YX7URUuCSU e[^_]R[kv<Xe1[^_]UWVSP]jhh   S       uCQQhm   Su   Ec   E   7RRj,St@)ىMESE   Eރ} uPPhq   j    PPj EPEM֍UE    }tw} }t7Uֹ   G    tUPP    WRUPUu>R<ލU       tPP    WRUPUuR<1   u!       uPSh   j   }u*PjVh   uh   @    @   _}uMWjVh   u   @    !PjVhc   u   @    @    QSh   e   RRPpp$0   t-uuSC$   1e[^_]UWVSujLá       UL   CxVGC@x uSK   PpVSppR PPh   Su#C@p$    EL   V1e[^_]UEx uE   E&   ]1]UjRPE    u	PPh   QQURPUtRPh   j1҉UWV1SӃ(h (  EǅtI    (  ڋHv (  RWuppQ WEE)볃We[^_]UVS]CsSHAI 9rw9v)I9rwJ9sF   RPSppR   YPpKIqSppRS Ct   PuuSppRe[^]UWVSÃ,U܉MWWj:S  Sz  Pjh/  Sux߃)GPEue[^_]EESU8 PPj/RUԅEu(Vh3  h^  jghd     CA})׃v4{[u.|;]Gu$Pt-OS\D> 0GPUUԅu
.)> uuVYuGPPj/St_  }RVWhr  M܉$M؉5   <$$$Vhx  h^  j^hd    럍e[^_]UWVS}u_8t9Ctl[jZu{CG8C    > u    C_8WCuVsPu/Q1Qh  j&3Xu뼍e[^_]UVS@u}E        E    t SSh  "QQvs4t[<uRRh  jbPPFURURM΍UouCEEt
   U   UƍE4EuP6S1u    e[^]UWVSHuVUЉE̡    @<RURh   Ph,  EЋ    M  }   M9tI<ME;puEċXE;puX    V1}ЃÊfKCfM   <uMCUl<u-uˍS   E+S   EE    '<u7uS   EE@E E   EjWp4PƊ<u
{  EI{8    E         E     fzf
fG9rPftKf;u?GPUULMU> 4$)uS8   Eԍ]ЃjSE@E E        `  PGPGPGPh  Ph  MXZh   WMtWWj/PuE   C8   5   uЍPEnS8   E؃$[jVE    Ep4P   SS0h8   5    tt^8thPP3hY   j h{  P<$<$ZY3hN   j h{  P<$<$[딋v<눍e[^_]US5       pHfXu[uVXSh  h  h/  hd  jh   S   t,Pjh	  S1҃ut1҉Ћ]US5    t@pHfXuux$ut1]UWVS<EPj h   j|  1E܍PU  4  Pjh   4Ei  Vjh   4   Eȋ/        EtQjh   PEE    h           EtRjhX   PEE    H           tPjh8   RUU1Ƀj@MUUMu-S    7  X<P    ܋V,N0ẺFEȉFEĉFEԉFEF$EЉF(    F<PPWh  F8    5    F4GLEPj hx   jƉE   EPU   6   P$E    8u0Pu @f@ u @f@ E       tS2UZYPWU̅tR<Pjhx   6UU̅t}    JB WuS    u}   CVjjPE    t"s4h  hW  h  hd   Ct8WjjPE    t"s4h`  hW  h  hd   [<vJB1Ph8   h    h      _      ?  $  h8   h    h  $  h  j h8   $8   j h"  h  $  j h  h  $  ZYh  h  h1   j h  $  e   [^_]UWVSh  5    tn^8tbRR3hY   j j P<$<$Y_3hN   j j P<$<$[뚋v<Pj j h  $  j j h8   $8   j j h  $  j j h  $  j j h  $  $                   e[^_]U   ]U   ]USP]C@tPCC@    C    C    C4    C8    @@    @     1]UWVS}uW@t^} tXtTG@HX G4M]1M];_8rw9v+EtUPVRuG1ҋHqQ 1e[^_]UW  VS   d    }\E
  @<UE  E  tE  E%  u  ESPEPVtE8 u\VWh6  \VWhB  p    p   pV`ÍD $ǉXth11yp      ` ta1Ƀ`)`ҍNl   ˃  JÉȃ?	؃   x  lh uXu)fC  p1} 4$j EEEEЉEEEth  jh   ]E   E    E    E    E      P4      uc>xVȃ<uȃ      ȃ<uȺ   ȋl<upȺ   u|hw=  vP=  vD  
ff fWff fWhll?   hfG1i   _dQQVPPt&tuPDZuVhr     =    udPPEuVj h  jh   EtE    E    E    E    E    E    P4 t#tuPDXuWhL  VEEPPdVE    P    Pt3tuPDXuPDXuVh  j   =    udPPE0t}EątPtP0tuPDXuPDXu    uh  Ѓ\Pjh  ЃVPj)   } t\E1     @    ;u}EEč<    SSh  4u"EQj
j t8MA    F붋EątPtP0tuPDXuPDZu1e[^_]UWVS`uE]PEPF@0Ft%U: u@ۋ  t  WRPh  @ۋ  t  QRPh  tMh  XZWh  <$FPEJ@j jSZ  
    N  F}PEQJ@Wj S%  u}EEX    @<EuRRh#  j&   EURj h  jh   UP4E EEE    E    E    EEԉEPPu}E  S    St$EEuPDURhF  j/=    uSSEE)wEuPDEUF<    F4EV8F@F@@    @     1e[^_]UWVS`}u]֋Gjj VE} E   E  tbGMSQjPEE   P=  uhX  tPPWhy  bPjS}WfE  }Wjj SE EfE  ]EQQVPP=  ttRPh  je[^_]USP]CC    C    C4    C8    @@    @     C@tPC@    1]UWVS<Eut^ ^K89 Mu!RRPSSth  EĀx tjVjE   U   U}PWjRR   PEjPV   QjVWj WsVjE   UtzU}PWjRRuYERjPVtNPjUVRUjFPWUăWRSS0th  Ve[^_]UW1VS<8[UĉEu@f EԋEԀ8:ux:t1   @Eԃ1ۍMԋEԀ8:u	@ډEKHURjQPMM=     Ut           ufD]؋EԀ8:u
@EC~tt=E؍P))ڍD PQDUPM   M)؃Pj QPjEPutEԀ8]u@EԅtEԉ   e[^_]UWVSLE} ]E    E    tp pF8x Ct0@}ȍM tIE8 uAPjWEP/@1Uȋ EQj
RuȉUUEȈD=GuRRj j uEPj EPj j jVV0tPPh  j0EUC<    C@    C4CS8@@    @     1e[^_]UWVSLE} ]tp p1ҋEUUċS@EECt0Qu@PRuCM]@HX Ef  @P PtPPh     V8z t- }ȍM@tFE8 u>PjWEP, 1UȉEPj
RuȉUUEȈD=GuWWj j C@pEPj EPj ujVVK809MċUu;S4tVVh	  j&n=  uXRuSSh+  jJQQj j C@pEPj EPj WjVV0uPPuWu 1tRRh?  j1,CUM@PH t{@EW뺍e[^_]UE@ujjPɅUE@ujjPɅUWVS(h   E   tDP}Wj VV=  uSXuPWj VV tS1ۍe[^_]UVSjE   t PEPjVVڅtS1ҍe[^]UWVSE@+t]PpU1;U}Dk}Ht1I?	t+!9u%]s8t~ uPvB뷃P1e[^_]UWVS]} u{uAFt#PjBPSUU$CC	C
C FWjjPe[^_]UWVS(ku~Wt;1;U})EUMPhS  WQMUBD3 1e[^_]UEVS@tPPCHPsD$1e[^]UVS]jt$PCPCPCPPhY  jV e[^]UWVS,E@K  @p   PEt1E       V  x uMԋ@uGEЍGPE؋<$EEGEȋG1t1Ƀ9       )σu} Euq}    }    uXuZuE܋E;Fp   Ek}~tE    @8+A hu} uEԅtMPEWuSp4Uhe  TfMu؋UCEWuq4hw  )EMu؋UCEWuq4h   ]}    V1e[^_]UEVS@tP$1e[^]UWVS1ۃEu}E    ERj Wu=     t        M9.t	uE* t1MU	Ut9.uCAMuEEPjEPutEH   e[^_]UWVSE@X2  h   1E!   E܉M   FۉEffEt] $=  wE   
 $  J?ɀJ?Ȁ?ɀJB?Bu1|wEA  wEJ?ȀBN (  v> $  w?B,΃BE?ɀJ?ȀBˋu WE1e[^_]UE@ujjPɅUE@ujjPɅUWVS(h   }E   PWj VV =  uSXuPWj VV tS1e[^_]UVSjE   t PEPjVVڅtS1ҍe[^]UWVS]} u{u$FtPSPC@FWjjPe[^_]UWVS<E@   XpE    ]]9]   kM!HtQ    }@qu]ԋ_]Ћ_@]̋_Dy]ȋY}ċy}   @   )щ t1E    E    #}#u9uD;uu?Űu؋}܋M!!;Mu*;Uu%UZ8t{ tPH[E,P1+   )։ t1u؃}܉oe[^_]UEVS@tPPCHPsD$1e[^]UWVS8j(   11}u   EfpftDt:CPh  jWMЉUXZWS<$UԃMÃuu:Cu
:C0Fu 1e[^_]UWVS<E@  @p   PEt1E    lW  x tU܋@uEE4  EE(  EE   E	   uXuE؋E;Gpe  kM!OtQMMM܉EԍA$M܃E    YEEċAEAEAEAEЋAE̋AEȋE@89} bUЋĔ  	u1E	u*y @u$Eu܍^4Ej@up4h     Eu܍^4A PEup4h  iEEuE	t$Euԍ^4A PEup4h  6EEuEEEuԍ^4A PEup4h   u]    W1e[^_]UEVS@tP$1e[^]UW1VS<E8[Eu@f EԋEԀ8:ux:t1   @Eԃ1ۍuԋEԀ8:u	@ډEKBURjVPUă=     t           ufD]؋EԀ8:u
@EC~tt8E؍4))QD PVDUP   )Pj VPjEPutEԀ8]u@Eԃ} tEԋM   e[^_]UWVSE@
2  h   1E!   E܉M   FۉEffEt] $=  wE   
 $  J?ɀJ?Ȁ?ɀJB?Bu1|wEA  wEJ?ȀBN (  v> $  w?B,΃BE?ɀJ?ȀBˋu WE1e[^_]UWVS       $$   }    Pj$j dP$   E   4 74@4@4@4@4E$ZYd@(QPP^4t/WWSh  hPPE0$p4  H$@(VVj PPt
SSPh  !$U@(QQRPtRRPh#    $X8t{ t[PjEPPPjEPTPۍLu8$PPs4h>  jVǅL    PSWPCjVsPQjEP<V_XC8VsP$Eq(j WPV ǅ8    V  =     8P   PW VV ur89tf9uYIuQtMj  uR RjPW $@떃R18tPPC8RsP$@<	e1[^_]UWVS       ǅt          } @<p   j	f  f@ f@ ;f@ ||EЋtZYUĉE؍EEC0RE   PE   E    E<   E    E    E   fE E    E E P4$t)PPWhF  VPPE0s4  2C0PPt
VVPhb  C0UQj RPtRRPh#  ]  s8t~tvPEj}PEPE@E E   u2PPs4h>  jWPSllRPFjWvPUC0}j WrE    PP =     E   PMC0RWqlPP  lu}1trRd@9t5f9 ulRjQ}WYXFWvPltRpuP0XuP0[<tc1҅ke1[^_]USBHz t[]UPJ<P
tHJ@         ]U1]U1]á    Uuz  ]U1]USP    t${@ tC@t	SЃC@    1]U1]UQRPUPJHuHPuHQPUS]5    $]]    UW1VS1ۃ,UԉEPj EPu=     t        FM.tt' u1	t.uCAMt뤋UԅtEH1   e[^_]UW1VS<8[UĉEu@f EԋEԀ8:ux:t1   @Eԃ1ۍMԋEԀ8:u	@ډEKHURjQPMM=     Ut           ufD]؋EԀ8:u
@EC~tt=E؍P))ڍD PQDUPM   M)؃Pj QEĹ   UtEԀ8]u@EԅtEԉ   e[^_]USh{  t0RRPh  tPPuSS1]US h{  t:RRPh  tP1SEE1]USh{  t0RRPh  tPPuSS1]US h{  t:RRPh  tP1SEE1]UWVS˃tsh  h  hO  h  st)Ph  h  hW  h   1H=    u
        N39s   sS) Ze[^_]USR]C@PtrC@@Ջ@SPXC@p1]UWVSujLtHUL   JC@@    C@@    CxVGC@x u
       QQ@VSPtHC@PtrC@@Ճp$   RRh   SuVC@PtrC@@~Ջ@SPXC@p$    EL   /V1e[^_]Uj uQRPUEx uE  E&   ]1]UWVSÃx<    x@ u-@@tSЃt           C@   1
~	t? ugCSPuCHSLIQFQSP    t.RRh    Ph  h  h_  h           due[^_]e[^_]UVS5    t>^LNH]M9rw;ErND1M]9rw9r	1҉6뾃[^]UWVS}}tE  E   e[^_]        t8PP7s us $> t6če1[^_]U}VuS    tE   PP6stuE&  E   e[^]CPtE  E   ߉3s$1e[^]UWVS jh=  uuEpRRhB  uu5    E   E8  =PPj,ut+MpMu5    EEEu	PPhF  pPPj:VEo  PPj[Vt]PPj]Vu	PPh]  )1x:u-Wj
j @P=  ~QQhu  j   )RFRVS   E܍xPPj:WtTVǍ@$   [@:D;]D; 1   PtGu?-t1G   Pj
j Wt( w=   vP   Ph  j3" w=vPPh  j=  PPE)PV1VÅ   1ҋ5    toPuuvUU܅uOFM< uCj0u	S   px@$0  @    @     @(       6덅ub}u\Qjuh  u
h  Pjuh8  u$h8             !Ruh  j$1e[^_]á    UVS]t019Xutօu1{@ tC@t	SЃC@    ]e[^]UWVS]uME    {TtE܀8 u   nM܉tE܀8 u   NRRjEPEPj j V u3} uPVh  j E   ߃P1e[^_]UWVS]Eu{tJU   </u.PBj VR=     CuE8 tt        u	C    [EutLU   </u.QBj VR=     CuE8 t        uC   1Puh  j e[^_]U   WVS`U$} uUU}}1UUuUUU    t@E    EE9E  Uԋ]ء    U1҉]q  } t
x$ Z  }9xN  t
t:?  H1ۅt )ˉكHuff1   X@/@   )ٻ t1ۉ]uE    E    -   )ٻ t1ۉ]uEEHp]}ffff11#M#u	uhHp]}ffff11#M#u	u*t$};zrwtuZ9Xz9x~ uE  E"   Nz( tT} u}r,   B,r,   }EEB8EB<EE  E!   `[^_]B,U`1[^_]UWVS,]}  r*7  C0   SEU}E  e[^_]UE t%  E    u܉Euh#  jWWǃuCS0   EUUكE t%  E    uԉEuh#  jWWǃuE1RPh)  j'CRRRRPh.  j(W Ph:  j(We[^_]UWVSL    u  PPs hR  {tPr6u|S   EE   .WW}WVsWhj  ]h      Y_PhV  ECRRsRRRPhZ   hq      ZYWP{( t'h  }ZYC,WP<$    PPC,ph  h  e1[^_]UWVS]S v*E  sh      VSPR1h  UU}҉C9s'D3FMPEh  )PWMэe[^_]UWVS       u`t.PPVC(PCZYWPWVsh   ΍e1[^_]UVS`    ut$PPVCPVsh  ؍e1[^]UWVS   jdM&  U@   x{(EU(   EsuCT    CX    CPQQVW_Xsh     t:u _@RRVWh<  j W<$<$Y_VuXZsh  t^t:u _@PPVWh<  j W<$<$C@<    C    tX    1e[^_]UVSut,PMPUuu{uS1e[^]UWVSUM2;1rI   wEB:Ar:w;< vh      WVPPWQRÃe[^_]UEUVS0;2rH   wHtr?uSjVjRPh      ZYVP1ۍe[^]UWVS1ۃ: u1-ڃ:uPPWRuD D  ͍e[^_]UWVS]E}uS\Ettre[^(   _]{\ uh D  C\ksXD(   s\   FUF   CX@=   tCXCX    e[^_]UE8uxtUR\   UWVSM}]uy   +t'   A  Qu6Q   Qu(G@CG@CQPjS   =         G@C3C3CqyffffCqyffffCAQǉ։C	AC
#GMP\Mtp
   E       tr.u9PPQWMRRQWMMEuh-E  E&   JEE	  E&   e[^_]Wȃ\tp
   E#	  E   e[^_]Ee[^_]UWVSHu]vf$E  K1C{
E   	C   E  E    		C	1	ъS	f	цf}=    M܅t29wu)PPSG(PuPPEPGPto?ʋVEQQSFPt$O	  RRPS<$ǺQ	  MЉPPEj S(1e[^_]U   UEEUf 9uU踀   JuJu1rBHuUWVSu}~   uFPtxjDá    tbRRvhW	  C uS    6V   C   CR{C(    s,PPSh    1e[^_]U1WVSU}z   Zu)ۿ   y    @t             jDu    pERRphW	  F uV    A    )!؆F   ~F(    FEF,PPVh    1e[^_]UWVS,u}    tPPh`	  !WWvstuRRh	  jTPP}Wvu?C8tSShy	  jσPCPWS6 tQQjP    e[^_]UWVSjDá    tTuC uS    ,E${   uC(    C,PPSh    1e[^_]UWVSjDá    tXuC uS    0{   u{,C(   u$PPSh    1e[^_]UWVS<u]QQh`	     WWEPsXZh	  su>t9QQuVsuu$   u3@Q5    tRRsvt6Psh	  jV   u3 e[^_]UWVS}uuh	  u    }:u _@uGPuS    FU\> PPVSh<  j S$$4$e[^_]UWVS}uEU+EU w$9s u    tމ؉> t[^_]UWVS1ۃ,E@UԉM܉U؋pE    F,EЋF   xM܋G+G9vËE1)]]@H    YQ tuSj j j Ѓ } tWًE0]؋WG)9uWF Ӊ_} t1eF@t`uЃSF@tuЃ~( u8CkRRu  P(Pvh	  jEe[^_]UWVS,EuEԋE^NEЋFPBE܋B 9u	;M  9ËzrRw;MvK}t0zU܉EUtW?B+BEU9]rw9Mr+M   PESQVGtWSQVЃ   FM]@Pt$rF@@M]ɋ@VPF@@    F@@    F@@    @     F@@(    FZY@PpVRMu&1҉}    uMЉUԍe[^_]`e[^_]UWVS,    E    t%} EEQQ0st׋E܃    S$ǉEEtt    E    ?u[u      } ~!EVV0stu  ERR4    E<0CPSEtuuЋsTQQu؍FP   6uj8   sg$F4SXEZPPt&O	  PPWu<$Ǻ	  U؍F(   qCTsT1EЅ0E   ȸ   1;}t"Mz0 uE41Gمt11?QQj SNuEz0 uER@ph 
  jC;]uЃuXue[^_]UWVSxEEPƋE0-E    D0E  sH!)ĉsh
  QRUU$u)PPh,
  uXEZPC(PE/QQPu1Ҹ   Mlu  :u -@u1Ҹ   MB   CtB      S   EE   UPPREUPUSCRRRRPh0
  j(u    M   uU\:u -@uRh  j(u1Ҹ   Mxu'QQh  RPh	  j&R1E0    e[^_]Ã=       U          z  hO
  A
  P    z  $p
  8   c
  /    z  $
  4   
      
  $
  0   
      
  $
  H   
      
  $
  $      (            Ph=  h<  h+  $+  h=  h<  h>  $>  h@  hg@  hQ  $Q  hp?  h?  h`  $`  
  Y  
  $
  p  -`  $  H       E  $  ,       [  $  D       D  $?  @   1  ez  N  $O
  <   A
  Ez  P  $p
  8   c
  %z  P  $
  4   
  0   h,  h<=  h=      E  ZY    8D  hW  h\  L   h<  j h\  $\  (      á(   /  UuT58   Y54   X50   X5H   X5$   X5       Pj j h+  j j h>  Z5H   Y5D   X5@   X5<   X58   X54   X50   X5,   $0  $            FZ5L       8D  (       U1ɉWV   St11CiƧ    )  u׉1ҹ  Ȼ  1[^_]UWVr  S1ۃ<;d   sxkh   D8t rt#u1h  hs  h}  h      =h   CPPEPWVEPh  뀍e1[^_]UWVSÃ,}MMU؅t    E+E؋uE    @E;]r12  E9E|u8t	tH;ut
<t    1?    tS9UvS?]E	늅uE׉EЍCU܉(MQPWCPM܅tV: MB;Ur;Us:.7B   ft}t.tUBUtu1"RMRPVMtp .t?\e[^_]UWVSLE]@xEEP9   EKf9   @yxxutAufq1f)C   V9sRc  t|9r@9|܋Esf@kPC8 u        u  EE    E    E    Ef@9E  EH9r8   C0  PEPj j sUMIM;usu
ttFV9Uvy~    u1҅F~ Et   ~FEt   E    1ɋEEEAEЋE	EЃuN	Fv
E	;uv 8 C0~  E9EvEȊE<tq<t'`  fV  Sk     Pjf7  Sk     PjuċSk P C      MHuuCEsEUE@RQj MQj EЋEĉUt=E@Pt'MPUEVj j uV1suC             Vh  h  hy  h  suoC   K  Ea} -  8 "  {   uh  h  h  h  C kEl   ^t   Ǉl       XsǇt       l    p   k$t   iM  E    MEŨt    x   |   t	l    u5kul   Yt   ǆl       ǆt       Rk PC0kEt   uXuGe1[^_]UWVS`   ;d   uw6ۃ   PPkP5h   u    -`   h   d      Pkh   d   1e[^_]US$}tRRh  j!PPE]SpuS]UVS E]PvPPh     HuE      PPh  su	E    dPPh  su	E   EVVh  stQQh  su	E   RRh"  jPPuV3uVe[^]UW}V1;5d   sPPkh   PWu,d   9s&h   kkHd   ʍt1׹   F밍e^_]UWVS\fX  M]EE    M̍J} ]ȉEfX  E    fUԋUE    Uuh   d   MU} uQQh3           E$kl   l      RRuPuo;Wwer;Gs^hM  kh  h  h  kp   $}tCp   kWPEt   01  EPEEu
    ]  uEuu1u   $Euu[u      }SSh   W^uZYPW_uCE.EUHPRVQMUM?E> tMQQj.VuV<)?~uXuXZhc  jB  EE    E    E    @  @ @ ECC fC fEfC  fC  fC
  1ۋ@EEM9j  kEEEtZu`R  u   EPhQk  j5Mă0uEEE| u            EE;Er뜋Eȃ8    1;u   Eă<    Ek1ۋMHED8t#ut   !uu   E@   E@PPEu@Ph  h  hI  h  Eău4t        EEȃ8 u/aF7SS   EPh   E1uYu;]tEă4CuUȃ1: u0} tRRh  j+Et    PPh  je[^_]UVSPE]E    E    PvSSh  j   uQQuVsuz5h   d   RRj URURPV31ۍu ;]s"kCRERVPYXVh  كu1} uPPh  j+e[^]Uj h  h  hv  h  j h  h$  hp  h.  \   j h:  h$  hp  hN  X   j hZ  j h<i  hk  T    P   U5\   X5X   Z5T   Y5P   UPJ<P
tHJ@         ]U   WV    SÃ8f }}о   UfE±f-mf=    S1J   ύA-  ki1Ki30 HtEiQ uvǀQ S:Tv1ttf{ul1tfKMw[K;wS[<wJNiQ }i  k<f}¼vyf}§wE   18[^_]U1]UWVSÃ   wRhv  h  h  HzfSf9sRRPVh  h  h  fu%Ph  h  h  h   "tPPuMSыM)\3ee[^_]USR tPCtPCtPC(tPC0tPC4tPC8tPS]UQRPUWVS }RPh+  Mttt:u _@GPu]=U> PPVShy  j S$$ue[^_]e[^_]UWVSփMM             QQj:SttSvcPjh5  SuHE܉؃)E@PU܅uUU?  MM Cy> u"Wh9  h  jAh      RRj/SEuWhc  h  jJh  e})߃v;;[u6|;]Gu,PMt/OSE D8 ;GPMu6NE 8 uM   u+]3X6        1ҍe[^_]UWVS}uff_f   wft:ft{  f1  f;  N4V08ue[G^_]> ufuQh  h  hc     QMMWf^   ~ ufuQh  h  ho  EQMMWFf^   ~ ufw(Sh  h  h~  h      GFGFGfF   ueӍGo  [^_]ftth  h  h  h  Rfkf^,PWF(ft-    2zKpxrz@   px΍e[^_]UWVS˃<MEċEEEECtjQJQPRW    E   E    E    E@   CUpxRuԍuЉ}؉uE tU1{( u&C8t=PPs8h,  u f;s,sƃkFC(P} t:C4t3P    XZuh6  E6  e[^_]e[^_]USÃPC(tC,tS]USR<P  t1t؉Ӆu1<P      X[]UWVS|    E    t%} EERR0st׃} uPPhL  j$  kEd1PE    Eu(    M  } ~!PPE0stu   Ukd~}TdYt
}DAPPsMhb  MAC<y u.19tkdMCtu  A    A((   Su]EMT        tPEE   E       @      PPh  S  PPh,  S  {Ph,  j WGV,!ЈGE$m          E    U҆GF\Of	fGV-GQQjS{f DfG CfG  C+CE   Љf	fGEPURVEU6  UFRPjSUfGE$   SPRVS      EdM9Mt>E    ~ th  mj        tIuRRj VuMt1u1E    똃SkUE ]11s{ t$PCphn  jFd;uuue[^_]UWVSwPPh  j0j<t}  GSVv1e[^_]UVuS]f> fF   fw&RRPjh  h  hG  h   T{ uNjC    FVKAQFVKAQFC FC$e[^]UW1VS\5       } SSFPVEu!  EQQ0v   Ƀj0GEE    ÍE$t        E    UEtދE{C$CU%    	ЉC   fC fC CESP-C C(    C,    RRSh<P  }6E   }E   5<P     )h   ua    &  61  PEPWE   E  E    E    E  v$tH  PPh   S   PPjS   Cf  f@ f@  PPjSuiCV
   f  f@ 
PPjSu:Sf fB FB    B    BPPjStE~S   SF% BJBQQjSSf"fB#fB  C+CUȉf	fBWF$PjSUfBEjSPWv$SEE@EEYuRRj uEEM<P  1t$PC$@phn  joe[^_]UWVSl}}5    PPh  #PPwvt6uPwh  jQ  ~T u	PPh  ~X   wPPh  jPj j w      FT   cuʀ   u   Su   cu   FX9ssuu	WQh  덍s9[utVVh+  wuECP   UW 8-ux uQQV.  RRVP:  PPh6  w   1E    1҉uM9M}.É֋Muu]]E41u	ىȉʋ9-uy uWRPh=     RPhC  j@]SS7   VVhI  w   6E@Pt17    xM	YWwY0MP	YWwY0\PB9|̋U :-uz uSSPh2  1QQPRRwhM  e[^_]UWVS|E}  ]E   @Et	E      }$ t	E$     uh  h  hK  h  uCPEPSu E}  }   E  E   c          S     c        EE-   E+E;E  Fu  FEFQWEPPh  h  h   h     w0   w	tyY  tYK  Wuh
  \  <n  w X     Wuh;  1  =N  a[    E1]E   }  E       }ƋM)  E} u  }  U   EE   uE    E    E   PPuh  t!$   uP@SJ9}&EE   E   FSE]E4Wuh  u   Wuh  Wuh#  ڋMJ  EẀ}   Fj%E1҉E1M <}	qWwq0uC<}	qWwq0t
t	u}B-@uMS  Ej$@Euu$Ph#  uh+  É$$.  WWh^  V  EURMlUk  uPuh,  u } t.u[^u    h6  $6  }  t&E 8 uQuuhi  U }$   uU$E$    RRj/PuE$   E$0   E$ D0E  }t*t#ˍyw zw 9uE@̍Sw  Pw 9uF	u   ho  PPE$^S0SPh  uPuPuVXuFTtMUEFX
        uXuXu  }lvEh   lPh,  u} thE        x t7@PE@PE@PE@Phq       PPuh6  $6  }  tHE 8 u@Ex t7@PE@PE@PE@Ph}  U  },vlEx, tcj@X,Sh  u} t=     uS    }  t"E 8 uWWSh  u }$ tH}lvBEVVh   lP}$E$ tSSj/PuE$   R}RuWYuGTtMUEGX        E1e[^_]UWVSUE} u$u1   PUٍEPEuut%C0tS4tQRPhi  t6C8t/PtQQj/Pu  EtRRjPEe[^_]UWVSu}vh  ue[^_]Wj j j G)PRj VSS=     uƋ    tZvPvsu5{vj	h  Wue[^_]뢍e[^_]UWVS\EpP)   8 tx tx =<P  uB\PPh  j  VFO	F 	9t?u   Pj
GP3uC9Gu   G$_(VEEPEPQE   E  E    E    E  t  h   uY    T  h  h  h  h  n1*  <  ( Zh  h  h  RRh   P   PPCPVu~Ff  SfPKPPCPVuHFf  SfPKSVPPjVu{ t(PPjVtVEEA  Nf fA { tfA (CACACA{ tDfA fA CP@QACP@Q AC A$C$A(PPjV   Ff  f@ f@ ;f@ PPjV   ^f fC j j j
+GWRP  w=  v  fCSSjVu0VG% BJBQQjVt]^}f"fC#fC  F+FЉf	fCEWPjVfCE$   VPWuVy<ui( uh  h  h  _,RRG$@ph  t"PG$O,Pj j jx$?e[^_]Uj h'  hI  h9  hP  j hZ  h  h  h  4P  j h  hI  h  h  8P   0P  U58P  X54P  Z50P  UE @f@E   @f@¸     9|]USQst0ZsփsXs$]UWVS,EM̋MUԋ]VEEMMEЉM  fBf="   fzftHfB  SuUjVUf9t$fRRWPh
  h5  h      fBSSjV   QQuV    f= D   fzftUfB  SuUjVUf9t1fRRWPh
  h5  h&  h9  3  fBPPjVtV(  ~    W  E9CuJ{ uDG9C\u<{(u6PGUPRC-PUuWWsV4$   t뢋=    |  E9GtE9G   -QQSGPuRRuG(Pu      ;   C5  C   W Gр9Kus{   ujM9ubI0Ɂ 33uUE܋EU؋UHE%   9u'EM܋U@	9uEU@
9t?1}tkw(}   E}uEẺEe[^_]EЃt!:u^PEPSuuWuV dE}uEe[^_]E}uEe[^_];uC5  CtV1C5   CuCe[^_]U1҉1VMuS)Ӄvf=  v-  ۉʃրt=  w=  v-  [^]UWVS\EMu]EEME t5    ES+S@@P9  
   E}eE\  tE    ESC9G  )E9Љ~׃uEu
    j  uPPj`VR  PPjV=  G\  vMEF fFf	ЋUfFC+CF9Hf%  EfFEF	E@FBfF
  FEPPjqZYfF
Wu  PWsVXZWS  
   h   (uuu@O  1H  RRjS{MEG C+CfG  GЉf	fG\  P\  ҉f	fGEG	E@GAfG
  GYXjsfG
$      MC+CQ;BPvEB  E*      PPj(S{`   C+CG(fGEGEjPGPEjPW$݆  (
   Su@EQ  E&   e[^_]e[^_]UWVSl]s<  ]tRh[  h5  h  (Pho  h5  h  h9  u  {)9}Wh  h5  h  fV9vPP)PSUUuA9sPPRWh  h5  h  fFf?uqPPPutu  E   FE   MUEFEFPEPEPF	PEu  @P  E@P    F9CuF9CufFf9CuF	8Ct']C    C     C$    C(E@P  F8C(vC(@P  CSщ¡@P  pt)9Hwr9PsMUUMǋQQEPs  fN uMU  B+BȉC )ЉC PCuM    '  {   s  0s~XZPVtEV  fW  9S$   F+K ЉC$fG      9sFFEEFEE)Ek;MvMQuC@PfG tV!VCK SsEC(MM{C    EUMXZQVUt	Vl  EUME   UE   PEPEPE}Pu  <  C)'Ph  h5  h     PPj(StSZ  fV{+{9v1PP)PSUUtESE  9sQQRWh  h5  h  xPjFPEP}E   E   jFPEPUЉUFUM$RUWFPu    Ph[  h5  h  h9  S1kj,#FCFCfFfCF	C@P  WWh  j@P  CS    e[^_]US]S]]UWVSlE EEHvQQh  j&   E   P]Su    ERPSuuoj`t\E{   uCEC\`  {4uP`  
CE$C    CE(CPPShDP  1e[^_]UWVS$uj]Vu{S~f	fSfG  f	fGF+FЉf	ЍSfGRC\UPjVUfGC4$   VPRs\ e[^_]UWVS}uu   VFDP  )Ѓ'Ph  h  h      f;Ct@tfB;Cu;{\uPKPQuUMMUuƃ{ ufzftafB  C\UPQjVUf9t9fSSWPh  h  h   h  V1EfB{ ufC   CQQjVuCRsVSЃe[^_]UE @HE @P   9r]UWVSÃ@LtRRsTSЃs@t>v4$C@    CD    e[^_]US ]jt,UfXEPUPUPRRPhHP  E]U]UWVST}EuOEG)PQËta   PEjUUPRjVEPjj EPG+GZUYj(REEE9EE @EFEċG+GVVЉf	fEʊEjEɍEP1=  v-  e[^_]UWVSӃPC0UBfBN+NǃfkKf{0f	fKfB  f	fBCXPE䋃   PjVUfBFEtKju    i     p@   EM܉AQCDuKDK@jVCpPu    uEFuVe[^_]UEVuSt!FH    FL    FP    uF$   ~    F   h      RRh   PtSh-  hC  h  rPPjStSh-  hC  h!  GF8SfBPfB  fB  Bt/Sh-  hC  h/  hG           e[^]UWVSh     RRh   PtSh-  hC  hC  )PPjSt4Sh-  hC  hL  hG              KtA    fAPfA  $G8fAPA1( uG<fAfA  Wf	fWf	ЉfAt&hQ  hC  hd  hG          e[^_]UWVS,5LP  EpUԃEU   ^@FpE؍FXE܅   E9Cr   E9C   C(~i   @UԉCEЉSCCxGt3F89Gt$fG  u܋   PjsfGjsuu   K yt.h    hf  hC  h  hG            6e[^_]UWVS]ECHECLECPECTh   ơ       QQh   VuRRjVtVLC8VfBPBC<fB  fBC   PPShLP  ډuC0e[^_]UWVS   EEEPu  EHvRRh  j&  E   P]Su   PEPSu  h     E{X   uCE   d  {puPfd  
CECHECLECPECTh   ƅCXE  PPh   Vu,PPjVuPPh6  j   u	V  ~Pjj WfC< C,PS0G    fG`GC<fG  fGSf	fSfG  GGf	fGGu   PjVfG(   ShLP  FECp|CxEFjV|u    u?S$4$   tPPxj2tHt{ tك{ tV   OpS{  tQQh  j'	RRh  j#V   t0X   Ѓ   $1e[^_]UWVS]EuE  {XEu   @@P(EE   E܋F+F;E   uu
      PPh   W   PPjW   C8WfBPB1{( uC<fBfB  PPuUW   RUuvRYXuVumډ<*ZPPjVuIC8V}Bf% fPfB1{( uC<fBfB  e[^_]e[^_]UWVS,}u  MQfBffwPh  hC  h	  %ILP  )9}5Qh  hC  h  hG  F  fB;Ctu-  f;Cu;   uPKXPQVUMMUufrftQfB     UPQjuUf9t$fRRVPh  hC  h*  KfBfBfu{ uBC   C4@C8fBtC    R     zs@fft{UԉEF@M܉@UfRfUQfEM+UfkыUȋMf9w!u܉U4$uU끅s@uCD    B;C8s1҉  {$ t)fBMQ+Qf9t   WWEP   tAuA  B@;C8s2R^      u  u   1E    Ed1҉!  G+GC8C8fIt@   C   C8E   G+G   j            8OAM܆;C8      MZfAYfPWM܅>WEE  x}     @    x    t      @         /u!tX1҉MSH@҉EtLWsTPSҋ   PJHuHPuHQP   uP뱋CP"  }   VVsTS  fB   HP  E}    fBMf;AuA9ttE ҃h   UUá       f   CfB   {XCBC4@C8fC<  C,C0QQh6  j   uu    .PEpSPPZuu1e[^_]UEx( u@(   1]"]UEx( t@(    1]]UWVS]}    sC)   f~fF  KPPC)PQf~f9   PPjS   >   ~    C+CPuS    zSPC)PRFP~ G fG  NZXF)PQfG$   VuuuS4$S1e[^_]UQRPUWVS\E uEEx@)  f_fG  Vuj:uf9t=Vuj:uZYPPh  hG  h   hK  f_  f_PPju  PPGPPhW  hG  h   hK   <  w	<t,  <   <    }      Eu@+F   P  EUWW@+B   PSS  EVVu@+FPS3  EPHC)lQQjS  sEF fF  uPj:SfF$:   Suuu   )  }  ExRRjP|  EuXEP9sZC  ȍ9  ;u3u/ES@EEHEňMj VuuC뜋5      E9Fu~uPjWFPt6҃h   uu      PPh   S   PPjS   CV-   PPjSu~C @PPjSucC    `   WWjSu:{FG fG  uPj:SfG$:   SuuV uE$E   9  }/  QQju   EuXEP9  C  ȍ9  ;u3u/ES@EEHEňMj VuuC똀   RRjutu  E@EEP9UY  uFK  ȍ9=  >u6u2EV@EEHEňMEj PuuE8  x  Ǌ@@Mt)Gf=tWG9w@tg}1ɋWG_@9VP1fP1} Phs  hG  h  hK   >  E@TE} +  Ex  }uE   GWEU^1FN	F   		F1	ӊV		ӆE   M]WG    E    UȉEE    E@   t"E9CuPPEPCPtMh  hG  h  hK  }G0PW0Pw4h  u5        E UBu1@Ej uPEPuS    PSS땍e[^_]UWVS`EuE   E  @E    E   EEPVu  h   á    i  PPh   SXZjS7  E   P-CPPjS  C @PPjS   CM     Q   PPjS   {EG fG  VPj:SfGC$:   SEEPVu uqEE  EPPuuuPPPj uZYuuu0ECj:SuVu uE}  uǃSe[^_]UWVS`}WuVuE   E  E    E    E      h   á       PPh   S   PPjS   E   P-CQQjSutC @RRjSuYC     PPjSu?SEB fB  VPj:SUUfB$:   SWVu SEEe[^_]UWVS(]Cph  T6UUtURjj PU1PPRu   EPEQVPRUUVC-PRUUօtff~U8f	fCx@ u%PRuC@@   P҃uCRRPuPRe[^_]UWVSpu]NCT?UFWREEPMMUEMFWREEPMĉUEU8f   ufyfQQRS     w3C׃u$xuxuRRjSuQCx  t݆  t   u$PPVS$EPEPVSS1e[^_]UQRPUWVS   E8tVVh  j&  h0E艅<0PXZ0h   PEY[@PڍDP0P$$  }4OqPW-f@ @f	ff@ 4pE   PWSj VE   PSh   EP4@$  (މ
    0Pu@0ǅ$  VVuut1   ETP      @PP  PPhTP  $ZYuuu 
   h  (牅4Su@$$  ape[^_]UWVS<  EUxJRft1  ɉf6f9fuًO8шuƀu@ىމ\6)9Ј|_ڈڹ   ǅ   jWVu   ǅ    PP  9u
TP         WW PCP@  fx .  hE艅PXZh   PY^P   f@ f8PS-@f@ p      z@@EDI
   h  (󥍅PS@e[^_]UUBE;BBvE  E&   ]1]UUB+E;BsE  E&   ]1]UUB+E;BsE  E&   ]1]UUBE;BBvE)  E&   ]1]UEMPHPH@9w9vEG  E&   ]1]USR]?w@      PPCPh   tBBЉR1]UEt E]]UWVSu   Wt2RRWPtSPPVSu1e[^_]UEPP1]UWVSÃv1ɍz%1   <%uAEAEE9Er
A9r#E4F<	v߃A<   Eu|%   |%   މ)؍z9E   >%urFVHЀ	w0 HwhWt]EFHЀ	w0 Hw;Wt0EP+EPFPRFq<%t	@9u1e[^_]UWVSt't y΃wq {w 9u@B҉ȍIw Jw [)^_]UWVS<u]t"t} t} t} t} t}  uPPhl  jC  E      E     E     E     E CPǉE  PSVW <$h}  h  h  h   1MԊt\uM/|\@BڋEԉEЋEЊ 3  <:u#EЍX   t  8uC@EǋEЅ  uԺ    Xa  ER      E E   PPj/S  PPj;Vjh  Pu0PPWh  RUU̅tVRh  j    SUMỦ4$M tM9 p  PE[)  EԺ  r   uQQhl  j,    E      E     E     E PPj/SXZj?S9vPPj@S9ẺEw  E]ȉEčXE    E    E    ;[uWWj]S9-  xQQj:S9w}	E    E9sdt`8:   @)   tFE    M URj
QPU=            9ut   }%k  PMEȅt+8 t&UQQ)BRPUMtbUD )څtR PPRSMĉU]Mĉt+Uȃ V] tE̅tc @^EE̅t @E0E_0XE 0Vuh  jEЃ :   E :   u]E :;    E uE u :PE ySPE x7E  tPE  kxu1^E0EZ0EY0E [0=     uPuh  j ue[^_]   ; Z x     0N %s
 %s %s
 %s %s %s
 unrecognised network address `%s' net_default_interface net_%s_mac net_%s_ip tftp pxe: pxe no server is specified disk `%s' no route found https http disk `%s' not found invalid net device couldn't open efi service binding protocol Failed to create child device of http service %x :// url: %s is not valid, host/path not found
 bootp net/efi/net.c %s,%s url: %s is not valid, protocol not found
 Set Address Failed three arguments expected card not found %d.%d.%d.%d tftp,%s url:%s
 efinet https:// http:// efinet%d could not set GRUB_EFI_IP4_CONFIG2_POLICY_STATIC on dev `%s' efinetfs could not set GRUB_EFI_IP6_CONFIG_POLICY_MANUAL on dev `%s' net_default_server pxe_default_server net_default_ip net_default_mac efi grub_netfs_type efi netfs https http Host Accept */* User-Agent UefiHttpBoot/1.0 %s://[%s]%s %s://%s%s Fail to create an event! status=0x%x
 Fail to send a request! status=0x%x
 Fail to receive a response! status=%d
 file `%s' not found unsupported uefi http status code 0x%x Content-Length %s://[%s] %s://%s root_url Invalid arguments to EFI HTTP Read Error! status=%d
 The MANUAL ADDRESS is not found
 ??? %d
 couldn't configure http protocol, reason: %d Couldn't start PXE
 Couldn't set station ip
 Couldn't get file size No Offet Read Possible Short read should not happen here ERROR OUT OF MEMORY Failed to Read File %02x: %u.%u.%u.%u %s:local %s/%d %s %s:gw %s/%d gw %s %s:default %s/%d gw %s %x %s:link %s/%d %s %s:local %s/%d %s %s:gw %s/%d gw %s %s:default %s/%d gw %s dhcp4 configure failed, %d
 dhcp4 start failed, %d
 dhcp4 get mode failed, %d
 %s:dhcp dhcp6 configure failed, %d
 dhcp6 start failed, %d
  net_default_interface net_%s_mac net_%s_ip probe %s
 net net/net.c found!
 invalid net device error receiving: %d: %s
 one argument expected you can't delete this address address not found tftp pxe: pxe no server is specified mismatched [ in address bad port number overflow is detected http disk `%s' not found unresolvable address %s unrecognised network address `%s' destination unreachable route loop detected temporary %llx: %llx %d.%d.%d.%d Unknown address type %d %s  %s
 %d.%d.%d.%d/%d  %s/%d  Unknown address type %d
 gw  %s 
 Unsupported hw address type %d len %d
 XX: %02x: %s %s %s
 %s %s
 Unsupported address type %d
 shouldn't reach here unsupported address type %d timeout: could not resolve hardware address : :link %s:local three arguments expected this card doesn't support address addition card not found gw unrecognised network interface `%s' net_%s_%s timeout reading `%s' :slaac couldn't autoconfigure %s net_%s_clientuuid 01- %02X%02X%02X%02X net_ls_routes list network routes net_ls_cards list network cards net_ls_addr list network addresses SHORTNAME CARD ADDRESS [HWADDRESS] net_add_addr Add a network address. [CARD] net_bootp perform a bootp autoconfiguration net_bootp6 net_default_server pxe_default_server net_default_ip net_default_mac [CARD [HWADDRESS]] net_ipv6_autoconf Perform an IPV6 autoconfiguration SHORTNAME net_del_addr Delete a network address. SHORTNAME NET [INTERFACE| gw GATEWAY] net_add_route Add a network route. net_del_route Delete a network route. grub grub_netfs_type netfs  only ipv4 only ipv6 prefer ipv4 prefer ipv6 %s (%s)
 CNAME %s
 dns net/dns.c caching for %d seconds
 one argument expected --only-ipv4 --only-ipv6 --prefer-ipv4 --prefer-ipv6 invalid argument no DNS servers configured retrieved from cache
 domain name component is too long QTYPE: %u QNAME: %s
 no DNS record found no DNS reply received two arguments expected %s
 Perform a DNS lookup ADDRESS DNSSERVER net_nslookup Add a DNS server DNSSERVER net_add_dns Remove a DNS server net_del_dns List DNS servers net_ls_dns DHCPv6: Options stopped with remaining size %x
 bootp net/bootp.c DHCPv6: Options stopped at out of bound length %u for option %u
 DHCPv6: Options stopped at zero length option %u
 net_%s_%s :// url: %s is not valid, protocol not found
 url: %s is not valid, host/path not found
 Skipped DHCPv6 CLIENTID with length %u
 Skipped DHCPv6 SERVERID with length %u
 Skipped DHCPv6 IA_NA with length %u
 Skip invalid length DHCPv6 DNS_SERVERS 
 boot_file net_default_interface no network card found %s:dhcp_tmp couldn't autoconfigure %s DHCPv6 packet size too small DHCPv6: code %u with insufficient length %u
 four arguments expected no DHCP info found no DHCP options found no DHCP option %d found string %s
 number %llu
 %lld
 hex unrecognised DHCP option format specification `%s' unrecognised network interface `%s' /efi/boot configuring dhcp for %s
 dhcp DHCP option %u (0x%02x) found with length %u.
 net %s:default hostname domain rootpath vendor_class_identifier extensionspath clientid clientuuid HTTPClient %s,%s / %d.%d.%d.%d tftp,%d.%d.%d.%d dhcp_server_name tftp,%s %s:dhcp :dhcp_tmp Bad DHCPv6 Packet Skipped DHCPv6 Advertised .. 
 Skipped DHCPv6 Reply .. 
 %s:dhcp6 DHCPv6 session not found
 perform a bootp autoconfiguration [CARD] net_bootp retrieve DHCP option and save it into VAR. If VAR is - then print the value. VAR INTERFACE NUMBER DESCRIPTION net_get_dhcp_option perform a DHCPv6 autoconfiguration net_bootp6 Invalid UDP checksum. Expected %x, got %x
 net net/ip.c packet too big not an IP Bad IP version: %d
 IP header too short: %d
 IP packet too short: %d
 Cut IP packet actual: %u, expected %u
 not an IP address UDP packet too short: %u
 net net/udp.c Invalid UDP checksum. Expected %x, got %x
 error closing socket
 net net/tcp.c error acking socket
 TCP retransmit failed: %s
 not an IP address connection refused connection timeout TCP header too short: %u
 TCP packet too short: %u
 Invalid TCP checksum. Expected %x, got %x
 invalid ICMPv6 checksum: %04x instead of %04x
 net net/icmp6.c ICMPv6 message: %02x, %02x
 discarded prefix: %d, %d, %d, %d
 creating slaac
 %s:%d vlan-tag unsupported address family put out of the packet range. unput out of the packet range. push out of the packet range. pull out of the packet range. reserve out of the packet range. :// Invalid argument dhcpv6 boot-file-url: `%s'
 net net/url.c https tftp ;mode= octet TFTP mode `%s' is not implemented. http Unimplemented URL scheme `%s' Invalid boot-file-url `%s'     @  i             x    n	                 ׺ȇS@9_][J/Cz!NaGKڞV9BsJՎK(- '?MYzqABZ[[ȽyC*]!M)H
nD[O6T`[   2  1    !  $$  )%  K!     `)  +  )  (  (  &  "'    0  4  1  /  3/  3.  V.  9  6          l  ?C  A  ^  }A                  $  b  .T  LICENSE=GPLv3+  LICENSE=GPLv3+  priority_queue bufio datetime boot net                                                                                           d         g  =       h                                    	              
 "              .   f       @           a              z   R  k          -                     \P                                      z\         j                    .  A      A             Y  b      t                                                 \  +                    C                   	                      ,             <  X  O     S             l             {                                                               bX         u  &      V  X      (       .          F  XP       R             `  ͵  y    y  `P                        c                 x  H                j         R  P       O       1  NM  u    F  ?4      e               w                      0r                                                       T  3                  4          M             i  P  q     y                                                                .                           '    +     9         O             g  dP       x  ƫ  I       [5  Z      Y                   M                  ,  Z    #             G    N     Z          a             x                                                                                             4p  z                      .       H  e     /             >    ,     P             ]  ű       q  H                                   V  $      F          m    	             	    H    /	             G	  }  ]     ]	  z      r	         	    b    	  @x  :     	    E    	  :S  i     	  (  d     
             
  S       ,
           B
             S
             ]
             j
             
  Z  z     
         
        
  ~  `     
               I       (  BI       A  J  u    X             h  :       }  &,                     ;                   1         W  *              +    	     D  +]  Z     X  )  H     w  q  a                    K         ![  ~       0  ,       T        ,       
                          $             0             H             U    :     j             w                       grub_mod_init grub_mod_fini .LC0 grub_strlen grub_netbuff_free grub_net_network_level_protocols grub_net_poll_cards_idle grub_net_hwaddr_cmp grub_net_recv_ethernet_packet grub_file_progress_hook grub_net_default_server grub_errmsg grub_strncmp grub_env_set_net_property extract_url_info grub_strtoull grub_net_tcp_close grub_priority_queue_pop grub_net_search_configfile grub_efi_system_table grub_strcpy send_ethernet_packet grub_strrchr grub_netbuff_unput grub_dl_load grub_net_configure_by_dhcp_ack grub_get_datetime grub_env_export grub_netbuff_clear grub_error_push grub_ipv6_get_masksize grub_priority_queue_push grub_xasprintf grub_realloc grub_memmove grub_strdup grub_divmod64 grub_efi_net_create_interface grub_net_add_ipv6_local grub_net_send_ip_packet grub_net_ipv6_get_link_local grub_efi_net_bootp6 grub_efi_net_list_addrs net_devices grub_snprintf grub_net_send_tcp_packet grub_net_app_level_list grub_xputs grub_net_ip_chksum grub_net_network_level_interfaces grub_efi_net_fs_fini grub_net_routes grub_net_udp_open grub_net_add_addr grub_net_hwaddr_to_str grub_net_addr_to_str grub_efi_string_to_ip6_address grub_efi_get_loaded_image grub_dns_init grub_errno grub_net_dns_lookup grub_strchrnul grub_memset grub_net_recv_ip_packets grub_register_variable_hook grub_net_link_layer_resolve_check grub_efi_image_handle grub_efi_net_list_routes grub_priority_queue_destroy grub_bootp_init grub_net_open grub_register_command_prio grub_efi_find_last_device_path grub_efi_compare_device_paths grub_net_icmp6_send_request grub_net_tcp_retransmit io_http grub_printf grub_netbuff_push grub_net_process_dhcp grub_unregister_command grub_net_sockets grub_net_tcp_listen grub_efi_ip6_interface_name grub_net_add_ipv4_local grub_net_cards grub_net_send_udp_packet grub_net_ip_transport_checksum grub_efi_ip4_interface_name grub_loader_unregister_preboot_hook grub_netbuff_alloc io_pxe grub_efi_locate_handle grub_efi_net_config grub_print_error grub_zalloc grub_strcmp grub_strchr grub_malloc grub_get_time_ms grub_net_add_dns_server grub_file_close grub_bootp_fini grub_net_card_unregister grub_file_open grub_netbuff_pull grub_isspace grub_net_tcp_accept grub_net_configure_by_dhcpv6_reply grub_efi_open_protocol grub_real_dprintf grub_net_arp_send_request grub_net_recv_tcp_packet grub_net_process_dhcp6 grub_env_unset grub_net_recv_udp_packet grub_priority_queue_new grub_netbuff_make_pkt grub_net_arp_receive efi_net_ip6_config grub_net_recv_icmp6_packet grub_dns_fini grub_net_icmp6_send_router_solicit grub_net_addr_cmp grub_efi_hw_address_to_string grub_error grub_net_link_layer_add_address grub_efi_net_add_addr grub_list_remove grub_free grub_strndup grub_loader_register_preboot_hook grub_net_add_route grub_efi_net_boot_from_https grub_efi_net_fs_init grub_efi_net_boot_from_opa grub_efi_duplicate_device_path grub_net_resolve_net_address grub_net_resolve_address grub_net_route_address grub_bufio_open grub_net_tcp_unstall grub_efi_string_to_ip4_address efi_net_ip4_config grub_net_tcp_open grub_efi_get_device_path grub_efi_ip6_address_to_string grub_net_recv_icmp_packet grub_efi_net_list_cards grub_net_tcp_stop_listen grub_net_poll_cards grub_efi_ip4_address_to_string grub_net_remove_dns_server grub_list_push grub_net_udp_close grub_net_add_route_gw grub_netbuff_put grub_net_link_layer_resolve grub_efi_net_bootp grub_env_set grub_gettext grub_memcmp grub_priority_queue_top grub_env_get grub_netbuff_reserve grub_strtoul grub_net_tcp_stall grub_memalign                D     I     Q   ,  _     e   ,  t   4               V                         V      '    G  4  P    i    n  V  v      4        V          $  4  9  i  I    U  ,  w  +            D  ?  A  e    n  D                        )          *    /    >    C  )  U    h      4        )    i            )    i      N    U    ^    q    w  i            j                g  (  4  3    _  4  j                                      U                U               '  d  7    A    Z  h  n  ,            k    D    ,        g  #    =    E    J  D  g              v              	  k  	    F	    ]	    	    	    	    !
  j  7
    K
    Q
    h
  k  ~
  g  
  j  
    
    
    
  w  
  k  #  k  4  g  O  ,  ]  g  f    v          )    ,                            w    k     ,  8    B    f    m    |      ,    4        i          D  .  T  D  m    {          4        .    k  6          )        )              $  .  <    A    G  4  ^    c  )  m    u  I  }  $            )        I    $        K    B              &    +  w  5    ;    O    U      K    B            e       3    ;  v  Q    Y  v  ^    r  D        v        D        v        D        v    k  7    <  4  S    Y  4    4        )    4        e      	      Q  X  4  i    r  R        v                4          $    )  w  T    Y    c    h  w                f        O        I        $                I        $            I        $           
  I        $       %    *  I  1    6  $  =    B    G    O    V    [  I  b    g  $        {    4        )    I    {            )    I    {            I        {  )    .  I  5    :  {  F    K  I  R    W  {  c    h  I  o    t  {        I        {        f    O                    +                              	      A  4    C    H  )  V  D  r      k        D  F    w                        {                        B    M    W    o    }          i      !    R  A  p    w                      )        {                D  5  k  K    Z    r                    y   G          V          V     +  !  G  0!    7!    <!  g  !    !    !  V  "  k  ="    R"  +  q"  k  "    "  +  "  +  "    "  V  "    ^#    j#  D  v#  D  #  +  #  G  #  +  $  +  $    $    $    p%  +  %    %  +  %    D&    X&  k  h&    &  +  &    &    &  g  &    ]'  k  '    '  k  '    '  k  '    \(    t(    (  +  (    )  k  3)    :)  5  )    )    )  k  )    )  5  *  k  4*    `*    p*    *    *    *    *    ]+    +    +    +  )  +    ,    ,    L,    U,  D  ^,  D  ,  +  -  k  .    .  k  .    .  k  .    .  k  !/    b/    r0    0    0    0    1  k  V1    d1  5  m1    u1    1  k  
2    ^2    g2    2    2    ;3    b3    3    3    3  )  3    !4    +4    4    4  D  4  D  5  +  5  G  )5  +  5  k  6    6  4  6  G  7  k  a7    p7    7  i  7    7    7  V  8  +  $8  +  A8    F8  )  \8  .  g8    8  +  8  k  ;9  k  e9  +  s9    9    9  4  9    	:  k  :    :    :  i  :    ;    	;  V  6;  +  V;    [;  )  k;  .  |;    ;  k  <    ,<  +  N<    <    <    	=  ^  M=  +  =    =    =    =  ,  =    =  ,  =    =  D  =  D  >    >  D  >  D  ?  +  3?  G  x?    }?    ?    ?  )  ?    ?    ?    ?    ?    ?  )  ?    @     @    %@    4@    9@  )  M@    Y@    o@    t@    @    @  )  @    @    @    @    @    @  w  @  q  	A  n  A    A    A    "A  w  /A  D  8A  D  GA    `A    A    A    A  k  B  ,  5B  D  eB    B    B    B    B    B    B    B  D  C    9C  P  NC    [C    C  D  C  l  C    C  D  C    C    C    	D    D  w  D  D  ,D  g  BD  ^  KD  l  D  T  D    D    D  <  D  <  D  i  D    D    E  :  'E    5E  i  IE    [E    hE    E    E    E    E    E    E  i  E    E    E  j  F    F    2F    >F  j  VF  j  iF  j  yF    F    F    F    F  j  F    F  k  G  s  HG    gG    nG    G    G    G    G  ,  G  7  G    H  h  0H    cH    hH    wH    H    H    H    H  !  H  D  H    H    H    H  :  >I    I  E  I    I    I    +J    4J  D  HJ  D  J    J  D  J  D  J    J    K  <  IK  <  L    %M    8M    M    M    M    M  5  M    EN    MN  5  VN    pN    N    N  5  N    N  5  N  <  N    N  V  O  @  )O    3O    9O    AO    lO    qO  V  ~O    O    O  V  O    O  V  O  @  O  8  O    O  V  O    O  V  P    !P    ,P  V  ;P    CP    nP    yP  5  P  :  P  ?  P  @  P    P  V  P  ^  Q  ?  Q    Q  V  >Q  h  Q  ?  Q    Q  )  Q    Q    Q  I  Q  $  Q    Q  @  R    R  )  )R    1R    9R  I  AR  $  IR    WR  :  ^R  :  mR  :  R  ,  R     S    S    S  V  "S    oS    {S    S    S  V  S    =T  h  1U  G  )V  S  7V  x  MV    `V    sV    V    V    V    V  k  aW  :  yW    W    W    W    W  ?  W    W    X  '  X  h  X  D  X    X  )  X    X  D  Y  <  Y    qY  h  Y  D  Y    Y  )  Y    Y  D  Y  <  Y    Z  ^  Z    'Z  i  ;Z    BZ    UZ    jZ    Z  >  Z  ]  Z  D  Z  h  Z  D  Z  ,  Z    Z  D  [  <  [    -[  h  7[  D  F[  ,  Y[    ^[  D  [  <  [    [    [    [    [  i  [    \    #\  :  4\  i  H\    O\    k\    \    \  )  \  D  \  k  \    \  D  \    \    ]  I  
]  $  ]    ]    ;]  l  F]  l  _]  ^  ]  T  ]    '^    ^    ^    ^    _    	`  D  8`  ^  ]`  i  {`  h  `  h  `  ^  `    `    `  D  `  i  a  1  .a    Ia  h  aa    la  k  a    a    a  ?  a    a    b    :b    `b    gb    }b    b    b    b  :  b    b    b  5  c    c    c    .c  ?  Ac    c  @  c    c  5  +d    5d  5  Td    ]d    dd    d  O  d    d    d  L  d    d    d    d    d    d    d    d    d  3  e    	e    e    e    e    #e    *e    /e    4e    ?e    De    Ke    Pe    Ue    `e  2  ee    le    qe    ve    e    e    e    e    e    e    e  I  e    e  $  e    e    e    e  I  e    e  $  e    e    e    e  I  e    f  $  f    f    f    f  I  !f    &f  $  +f    0f    5f    <f    Ff    Kf    Rf    Wf    \f    ff    kf    rf    wf    |f    f    f    f    f    f    f    f    f    f    f    f    f    f    f    f    f    f    f    f    f    g    g    g    g    g    &g    +g  N  0g  C  =g    Bg    Hg  O  Lg    Qg    Yg    ]g    bg    gg    lg    qg    yg    g    g  I  g    g  $  g    g    g    g  Y  g    g  Y  g    g  Y  g    g  Y  g    g  Y  g    h  Y  h  ;  h    h  I  'h    ,h  I  1h  o  6h    =h    Bh  Y  Ih    Nh  Y  Uh    Zh  Y  ah    fh  Y  mh    rh  Y  yh    ~h  Y  h    h  Y  h    h  Y  h    h    h  O  h    h  b  h    h    h    Bi    Ni    Xi    ui    i    i    i    i    i    i  @  i    i  V  j    k  +  k  k  k  D  l    :m    m  +  m    m    4n  k  an    zn  D  n    n    n    n  w  n  i  n    n    	o    o  w  (o    -o    4o    :o    Co    Mo    Vo  ,  \o    fo    qo  k  wo    |o  l  o    o    o    o    o    o    o    o    o    o    o    p  +  p    p    ?p    Ep    bp    gp  *  sp  D  {p    p    p    p    p    p    p    p    p  m  q    (q    0q  i  Gq    Oq  i  fq    nq  i  |q    q  i  q    q    q    q  m  q    q    q    q    r    r    <r    er    r    r    r    r    r    r  i  r  l  r    s    s    s  w  s     s  k  2s    Bs    Is  +  es  k  ts  D  s  ,  s    s  c  s    s    s  D  s    s    s    #t  +  It  j  [t    ut    ~t    t    u    ,u  =  Nu  D  Tu  D  u    u    u     v  w  v  _  v  D  Qv    iv    rv    v    v    v    v  D  v    v    	w    #w    4w    9w    Sw  E  kw  @  sw    xw  V  w    w    w    w    w    w    w    w  P  w    w    w    w    w    w  P  w    w    x    x    x    x  P  x    #x    (x    -x    2x  P  :x    Hx    Mx  Y  Tx    Yx  Y  `x    ex  Y  lx    qx  Y  x    x    y    y    z    #z    ;z    @z    Jz    Oz  w  z    z    z    z    z    z    {    {    ({  +  ={    E{  )  k{  k  {    {    {  I  {  $  {    {    {  j  |    |    %|    @|  k  T|  g  |    |    |    |  w  |  j  |    |    |    |  w  |  k  %}  k  6}  g  @}    _}  ,  u}  g  }    }    !~    &~    <~  k  i~    n~    ~  k  ~    ~    ~    ~  w      &    +    5    :  w  V  h    >      A    J    R    p  m    ,                    $  ̀            -    D  ^  i  i            h    ^    D  ΁  i        )  D    T      :    :    :    :  Ă    ނ  W    G    #  /  D  w  W  Ń      `    0      =  c  T    Y  D  r            ΄  &              %    ,    =  h  N                  w  Å  k    ^  9  1  W  i  {  k    #    D  Ն  l          9    M  c  `  D      ć    ه  W    W  1  W  k  W        W    `    0      B    Z    e  &  t    {      :        i  ׉    މ                   D  v          i    k        i  [    j    u  5        i    k    D        V  $    2                  w    >  b    g    q    v  w      ڍ          )      ̎      m          )    4    A    f  k                )      $    6    <  i  u    ~          ,                    $  א    ܐ  )    g    ,    g  "    >    ]      g  ő    ʑ  )  ߑ              ]    k  .  D  =    F    O    n    v              )  Ē    ɒ  g  Ӓ    ؒ    ߒ      $  #    (  )  5  g  O    W    f    r  ,  w    |  g        )    g  Ɠ    Г  g        ]    k  1  D  i  g        )    g  Ȕ  ,  ϔ  g        /  +    0  )  E  g  ^  "  g    p  D  y  :                          )    0    t    Ŗ    ݖ  c    D              	  w  3    8    L    g  W    W  Η  W    W        W  ɘ  W    l    -  #  W  S  W    `    0  ę    ڙ    ߙ          )  )    Y    ^    c    h    m  P  w    |                  P                        P      ɚ    Κ  Y  ՚    ښ  Y        Y  ?    P    Y    i    r  M  z      `          #  r  ;  z  K  g  x  `                w    r  Ԝ      :  !    6  X  N  :  x        y          |  Ҟ  y      ޟ      c     D  2    G    ^    Ҡ  9        +    r  0    Q  W          ǡ  9        W  B  +  T  +  p    |        ΢    Ӣ                  w      $    H     a    f      r              H    X  l  ]    h  l  q      (    c    D  -    E    Y  r    +      
    I            ɦ  r  ۦ             6    ;    c  +  {  +              ħ  w  ͧ    ާ  k  
               }  7    <  D  W    f                ɨ    ڨ  h           3    8    `  W  é  `  ߩ  0      !    &    j      `      Ī    Ϊ    Ӫ  w  ު    	  r          ӫ  k               8  9  j  +  y  +    G    9    `    k  ȭ  D    l    0  0      c                  Ю                )    .    3    =    B  w  K  D  m  c                      ¯    ǯ    ̯    ֯    ۯ  w    D  j    o    y    ~  w    D    l      P  `  p  0                    w    D    c    D      !    3    n    s        ǲ    β               h  R    d      c          ̳    ӳ  }    G    l  }  `          ϴ  0                  .    H    X    c    j    v                  M      "  c  0  D  B    W          +  ƶ  r    W  {                          w      2  `  R    W    4    <      (  ƹ            
      k      Һ      r      g    Ȼ            U  h  b  D    l        }  ټ    ޼  D            9    r  ߽  ~        D    +  3  9  M  0  X    `    p      +  ˾  `    `                w     r  =    B    L    Q  w    c  ӿ      W    W  H  `    r        :  ,    D  c  X    ]  D  r      W    W    W    W    `  .  0  ?    G    r  r        r          ,    1    ;    @  w    :  (    8    =    G    L  w  d    i  )  x  D        >          /    G  c  Q  D  f    p  W    W    W    W    `  :  0  ]  J  p    }  J    0            c  (  D  =    R  W  z  W    W    W    `    0      '    3    N    h  W    +    +  P  +  t  +    r    r      '  H  5    P  +  m    t      %        W  S  G  {  G        J                    J  O    h              :        %  &    :  W      G    T    r                                B    w      c            W    +            k    +              #  w  r              j    F      
        $  i  5    <    U  ,  g  ,                    F    F    F  Y  F  s  F        D  &    V    y  ,                        ,  .    L    q                          D                                                   $     (                                                                                                                 $    (    ,    8    <    @    D    H     .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                        	   @        (B              %             4  $                  -      2       X                   @             x  f                 <   	   @       M @              F                                 V                hP                 [                 #                  d              #                                  (                	              8                                 8O m                        ELF                            4     (   UWVS8  SE艍ZYh   SXZjSu4f  fHPPS$  u~Ve[^_]UUB@RRz1w%z( uB,    H9HPwr9Ps]51]USÃh   h    @P    ]        USR3t0X3؃3]UVS  EX@$      VEXZh   VYXjVt7f  f@  Rjh    PYXV$  u$  (  Se1[^]UWVSH  E@@@h,  u
    z  SE艅Y^h  S_Xh  Sh  Xf  EH؊Qt/u9/t@A  S$\XZh   S$   $   Y\Xh   S$   $   \XZh   S$   $   Y\Xh   S$   $   ZYh    DP$    $    XD7Zǋ)PPt   E@<   y@PPh  j(  uV  E@@0h"   h<   h  hA   EV@@0tmPhL   h<   h  hA    1ҋGRPw7hk   h<   h  hA    (  W  h   h<   h  hA   E    t   uh
  P0$  u3h   h<   h  hA   (  r<$    xPPV$  t>$  (  4$   QQWSx t Rh   $Ph    F       TPuh   j=     t2$  (  b4$    MP Q8A41e[^_]UEU @Rf@fR)¸   f ]UWVSEX@EpH)h   h<   h      ffZ  ftfl     C   C   pE;psrPjh    VuPj j FPC    Pjh   VuWj j FPCEP9֍Fs	> t놃C    C    P11ɉC 12  h   h<   h   hA   VVEP(    (  t0FfPE+CfxIEfP+Cft^vC   PZYVjIPC1ɉVX(  `(  E@@x1wS؋K t  @,   QQjV   SK~+~ ;{SKsN9Kwr9SsyE@@@(   E@@@,   $  ǃ$      C9wF+FoR)RWVtlE@xjWUUp     @    P tWG@GGGIV8e[^_]Uh    h    Uh    tsize  blksize  closed octet blksize 1024 tsize 0 resolving address for %s
 tftp net/tftp.c Address resolution failed: %d
 file_size is %llu, block_size is %llu
 opening connection
 connection failed
 time out opening `%s' TFTP packet too small
           <             E     LICENSE=GPLv3+ net priority_queue tftp                                                                             ]
          w
                                                	              
               )              ;              G              _              k              ~                                                                                                                            3             D             P             \             n                                                                                                                                               1             F              grub_mod_init grub_mod_fini grub_strlen grub_netbuff_free grub_errmsg grub_priority_queue_pop grub_strcpy grub_netbuff_unput grub_netbuff_clear grub_priority_queue_push grub_memmove grub_net_app_level_list grub_net_udp_open grub_errno grub_priority_queue_destroy grub_netbuff_push grub_net_send_udp_packet grub_print_error grub_zalloc grub_malloc grub_netbuff_pull grub_real_dprintf grub_priority_queue_new grub_error grub_list_remove grub_free grub_net_resolve_address grub_net_poll_cards grub_list_push grub_net_udp_close grub_memcmp grub_priority_queue_top grub_netbuff_reserve grub_strtoul  3     @   )  J     r                           (  "    *    9          )                        &    "  5    G    p    }  )                                                  "    )    4    ?    E    L    Q    X    c    n    t    {                                            )    0    d    i    s    x      #                                    "                  C    P    h    m    w    |          &    "  $  $  D    I    Q    k    r     {      &    "      *    /          '    *        '    *      )    .    8    =    P    i  (                       		    H	    	  &  	    	    I
    d
    i
    n
  %  ~
    
  !                       .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   
                    	   @                       %             
                    -      2       
                   @                                  <   	   @                         F                                 V                                  [                                  d                                                                 	                S                               ,  m                        ELF                            4     (   US]CtPPCt$P    @<sx5    hP   st   ] UQRPUWVS   }GhwtEd uwhGdGd   Qj j j PEPj VV8 =  u5GhM9vD	~GhwdKGd    t[덅uUEPt=RRjPu WdMC(PPuStS1ۍe[^_]UWVS,]st{p    1   }EЉUPWj VME    V0M̅   } t	Cp    AuPj j j s`s|j VV4 ug9Urw9Er   SSh    jME}SP@+G9ЉC|vS|EK|PC`3Qj j j s`s|j VV4 tRRh    j,PEPj VE    V0   u	1҃} Sp1e[^_]UVuSPj hP   vx   @@8 uSStPvh   0C@ uSvh2   Hu%Qj j SStRvhC   j$QC@@t u	PPj j j j RSS     @<vx5    hP   vt   ^t1e[^]UWVSHu=    }ЅE(  }   EЁx      px  ]̃SXZVSu Qjh@   u   :  <  GPv<t<  uo  uP @f@ SxuS @f@ S @f@ XZVS$  !u$EEȊ <  y  Ef@f  fEċE @f@ uǊ <u#uGfG uǊ<3  G<%  h     @Eu  PPh   V  f}Ā   ]UMĉ؃lع   Wvع   Wdƃ   cƃ   ƃ   Sƃ   c^PPjV  W   CC^PPjVu  W   CC^PPjVF  
   v   <CC
E̍UE   Eء    QM@<QRh0   Ph   E   Rjh0   PE   u   UPEPjRR=  u,SXutdUPEPjRRuCMtEVPPAPVUĉMMȋUąB  BJS^RRjV  GfG 1ux.  MP$AQPA   S  PPjV  E ^PPjV  f fC (PPjVo  ^PPjVW  f fC ^PPjV4  W   ]ċ~PPCPV  Eĉډf ;f	ЋUfGG}iEE   E    Q@<W}Wh    Ph   E   Rjh    P   u   PEPjWW=  u-SXu   PEPjWWudEtf~PPAPVMMȅtu4$  щf	ЉfGGf SS   u^E)1@81  x  Mԅ   h   h   hH  h   EẼt<x	 ub   s   
]   ^   QQRPh   h   hL  h    uuEjSuj Pp =     t} t.} t(PPE0E0h   h   hV  h    =     tc\h   h   h\  h   EuujSuj PpE(0E0h   h   hb  h    t.V uEЋ Ee[^_]U1Utz    uBx]Ã=       UWVS,EPj hP   jǉE  E    EPU  7  11ɊtXщxut*<u!B<wt<u
yM  PjhP   71  @@x $  8 tF@   VV   Ht h   u    Pj j VV   ʋF@@CP?   ClPC`uu$   CPCp    ?   ChERRPh   HMC    C8    CF@  CF@@CV@CJ(  stCxY^Sh    7u    I  e[^_]USP    t#1x    uPt؉Ӆu1        ]couldn't send network packet %s: net start failed %s: card stopped %s: net initialize failed  yes  cannot continue no HTTPClient using ipv6 and dhcpv6
 efinet net/drivers/efi/efinet.c dhcp_ack_received: %s%s
 device: `%s' path: `%s'
 using ipv4 and dhcp
 efinet%d               o      C  Q       !M)H
nD[O6T`(- '?M2%- '?MLICENSE=GPLv3+ net efinet                                                                  (         N                                                            	               /              E              d              s                                                                                                                        5             I             Z             f             r                                                                                                                     5             D             U              grub_mod_init grub_mod_fini grub_netbuff_free grub_efi_system_table grub_net_configure_by_dhcp_ack grub_xasprintf grub_memmove grub_efinet_get_device_handle grub_errno grub_efi_image_handle grub_efi_find_last_device_path grub_efi_compare_device_paths grub_net_cards grub_netbuff_alloc grub_efi_locate_handle grub_efi_net_config grub_print_error grub_zalloc grub_malloc grub_get_time_ms grub_net_card_unregister grub_net_configure_by_dhcpv6_reply grub_efi_open_protocol grub_real_dprintf grub_error grub_free grub_efi_duplicate_device_path grub_efi_get_device_path grub_list_push grub_netbuff_put grub_netbuff_reserve        '     ,     K     x        !          &     %  0  
  S            +    2     {                             (    -    V  #  \          #                    "  (    A    S    l          !    "          0    ]      %    %  1  %  `  %  u                          !      ^  %    !    %        %    %  7  %  O  %  r  %    %          	    	    3	    ^	  !  g	    	  %  	  !  	  
  	  !  
  !  ;
    @
    J
    R
    g
    l
    s
    x
    
    
    
    
    
    
    
    
    
    
    
    
                         :    L    Q    [    `    p  
    !                        #  r    y                #    .  !  Y    d    k          $    !                      $                              .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   1                    	   @         8  
            %      2       e                  8             p  `                  4   	   @          (   
            >                                 N                                  S                                  \                                                  p     
         	              \  j                               (  e                        ELF                            4     (   UWVS8}E]PuVEPj EPE    E    E    E     xuEu
    &  EPVuԍEPEVP >u       }    QQSjRPvvu EE9   FV6EȋFŰVEURPuuh    h%   jBh*   0wOFV$    QQSjx} t
QQSjhQQSj^QQSjTQQSjJQQSj@PPQh:   ZYSjFV#1e[^_]Uj uuUWVSHEUM]jEȉỦMЉ]   Mȋ]̡    ϋMЉځ ]]ԋ@<  MЋMȃ ]ԋ]M])}Uԋ]ԋMЉEċEĉ}MЉ]ԉQuRWP$=  tu1EċP EH   w
E>   MQSPj҃tV/    ^5        MP    UFNV1e[^_]Ë    UVE1S    R<t:9Cu/QsssR$t    S1ދRPhh   j&e[^]UWVS8uj}ti       }EP<E    O   B w
}>   MQVWjUЉMЃMԋUЅtS1mEEt7        s    KAU    ESCEC.QVWjEE    R Vj j t돍e[^_]U]U}SM]EUu	uMQ1[]U}SEUM]u, w'=   w ڃ w=   vM  Q1[]U}SEUM]u, w'=   w ڃ w=   vM   Q1[]U EPhH  E    E    } w	}   vE   E    EUU EPho  E    E    EUU EPh  E    E    EUUE 1]UWVSpM܋xXU!!]1ۉMى tЃt	E    "C@uى tЃtC@u:MU܋E tЃt11 	U	EE뾋EU[^_]UVSM]EUMM]]u/jh|   h   jRh   EUE U   ks3Vks3F    ks3Nks3F    sFsk3EUVkC@   kCHkC@    1Ce[^]UWVSUEM։]u]uq9w
r9s؉y]qM9r
w9v9rw9v)jSQRP e1[^_]UWVS<u]UEVSRPh   h   h|  h   EU]uE E    P@M؉։ tكuE11ۉ׉ t A@uE11f;Uwr;EsE    E    l11M11 EЋEUԋU+]EUĉEU   vǋEЋUEȉщỦE;Urvuȋ}̉+EUԃ w;EsEȋỦEЉU܋E;UsduuЉE؉URPh   h   h  h   UjEuuRP  ى t1҉	tw;Ere1[^_]Uj URPM1҃	Kt&Gu/&MtTu¸    

UWVSTEPh  E    kE($$   EËE̅tuP$      VVEPh`  E    11E    EȍD 9E}rE̍ru<0Љ}7}8}x9}r w;ur9}u8;uu3u~ u*xu$u}Թ   }Ʊuԋ}̱EU낅oEE    0x@u}ĉEE9E/  kEEẼx PtQkڃz    p9rut   ׉B    qti9puPRkڃz uB   Pk@T6jŰuJ@   HkRUkT2{ ts;uuuXE̋MT9Uċu9Et+}vQQu+EUWRPuuU uE̋MuTUĉEEu1e[^_]UVSu}tRRh   j?    ۉEUu+F    ۉEUuPPEPh(  e[^]UWVS,}tQQh
  j   h   h   h  h   E]ԋ ERjSuE؋EԉU܀8,u@EPjSuMԃEU9,uAMԃ=    
u        1ER% Puu؉EUh2  h   h  h   EPh  be[^_]Uj hD  ho  h  h   j h  h  hS  h         U5   X5    =  G  G     7     =  G  -  Q  [  =  =  =  e  	
EFI memory region 0x%llx-0x%llx: %d
 mmap mmap/efi/mmap.c Unknown memory type %d, considering reserved
 handle %d not found Unknown memory type %d. Assuming unusable
 mmap mmap/mmap.c hook %llx+%llx
 badram %llx (size %llx) is a badram range
 two arguments expected one argument expected executing badram
 badram %llx:%llx
 Declare memory regions as faulty (badram). ADDR1,MASK1[,ADDR2,MASK2[,...]] Remove any memory regions in specified range. FROM[K|M|G] TO[K|M|G] cutmem       LICENSE=GPLv3+  mmap                                                                                               N          "                                	               +              A   ?  	     _          y   	                                       J        G  *                                      $                              (             @  >      ^             p  q  *         o                                                                    grub_mod_init grub_mod_fini grub_strtoull grub_efi_system_table grub_mmap_free_and_unregister grub_machine_mmap_iterate grub_mmap_iterate grub_errno grub_register_command_prio grub_mmap_get_lower grub_mmap_get_upper grub_printf grub_unregister_command grub_mmap_register grub_zalloc grub_malloc grub_efi_get_memory_map grub_mmap_malign_and_register grub_real_dprintf grub_mmap_get_post64 grub_mmap_unregister grub_error grub_free grub_efi_mmap_iterate grub_efi_free_pages grub_strtoul   >     P     _     }                               )    s    x                s                                        )    0    P    d                            *             R    e    |                                            	    	    !	    &	    >	    	  !  	    	    	    
    
    '
    ,
    ?
    K
    j        B    g    n                                              
  6  
  Q    Z    z                                                                        	                                                               $     (     ,     0     4     8      .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .modname                                                      4   #                    	   @         `  
            )             X  S                  %   	   @         x   
            1      2                         @                                 F                                 V                                 [                                                        
         	                                                 d                      HF  ELF                      D      4     (               U$EPEPEPj EPE    E    E    E1uɍD UWVS8MQ}WuVj ]SME    E    E    u   MԃEQWVPSUԃ EE    ЉEЋE܉E;Us]JZrz v1ɻ   9r1w9v+:u&k]EE    pE\   KU랋E1e[^_]UE=     E    E   u%    U@<RURjjP Ã=     u#U1҉    H<EPERPQ$f    Ǹ    ƹ    σ    Ǹ    ƹ    fff	   fj  l  X   P   P  B   @   P   (     v '              ؎ %" "    ؎Љf   x       f"     uUȎЍ&~  $ t=$5d 1H1 ƃǊ&Έ4&5(4tø  ظ        и  ff    ff    f    f                                         	   H   @      2   0   @   f      v '              ؎ %" "     ĸ    Ÿ    Ƹ    Ǹ                     t& '                            	    %" 0"    "ع  2   0    "         r   p          '          v '           H        HH        HH        H        H        H        %            &                        U 	 -    WVS        uu0jjSPh   EPV    Eu    E    E    E     E$    E    E    E(    E,    Sh    PXuUj RPV uUe[^_]U   -    VS]j j jP 	 -    Ph  EPS    Eu       f    fEf      f    fEf    Ef    fEf    Ef    fEf    Ef    E(    E    E     E$    E,f            Rh    PXuUj RPS uUe[^]U    -    WV    S    ]j j ELjVPuHEPS    EUu    E   U     E$   U(    E,   U0    E4   U8    E   U    E<   U@    ED       Vh    PXuUj RPS uUe[^_]ø    -            U-        ]UEU P@@]UE    EE        E        -    E]UE    EE        E        -    E]UWVS    Xt7}9{vs;1s;ps1s{;}w{;2v;xs2[^_]UWVS,EU}MEEUUEȉU#  A1҉׉ރ ߉u]E܃E}U!ËE!Љǋ w9s}܉D!1ƋA1҉UԋUEЋEEỦEEЉUU;U   r	;E   ]܋A!Ã E   9wAEu+EU+EUԉÃ w;]v]1#]ދ]!É߃y t}uA @w9vApy tyuA @w
9sApA   ,1[^_]USR1|u-@=   uPPh   sCtSP]UWVSÃ t,    P  S    C    DЉ+Ct9t~v[   E
HZJX)ˉZ0IJZB(<-r0u܉pu1;ut;Mu;Mu6M)qru	9ƉJuOމ؋9t=9)п    ZBt9AwyIJHJ
JB(<-B      H9,  @SЉSуʉP @mP   s  s  9sQ)QPWKtMC-   )   ؉U  RPh   D9PM   SD:C{ tU{{P)      Ph   CUPS+u   NLCpCP sKB    JH]u69tu2u;MtE@R뫍e[^_]UWVSӁ   uuEQRh    h<   h  hF   E +uDEE!E!MhEEM9         ȅt>8p}9sPRh  hV   x9s{;Utԃ@뾃} }  UtE t    t tI5   Åt711T1Ƀ9@=   t׃6kV$  E4$ǉEEt
} tu%Sht   h<   h  hF   N  1ۀ} t2EU t&
   HB   0JԋHHJ k    Ut*   +H0B   JԋHLJ@k    Et#    J@   0HԋJHkEP؉E   tu11ۉ߉t89tkuu҃	PEFډVT8C   utkUUE	   pB   J 뇋    u        Mą   zm   }kE}y}z(<-tWRh\  hF   h     ;Uu-    +yHpxPX@   Z\!     PPXH@   ZӉX]0:;t]ӉkqI2}]kE؉u1ۉu;Et>ukU   C
tkUU   uFu1Ph  j uE}ǉ};EtPكuD1u@T=   uE;Et-PًuҍrkU1ƹ   ΃ u)Eǅ`    H} u`ǅp      EuEu<}   E}   ]9]  1ۅ  kMM9  E    >  ڃUc  Ut} w  ;EEs]]]];]z;YqE   ǅt    ǅl    ǅx    )   HSEǅ|    E    E    EEEE    E    E    \E9EG  }   }   uVN9  ;Us};\v\9n            QQ)PW$  } t]u]`11]+]E    E1E    E    ]#+];]]v]]]9]   M}} M0M 1ۅ$    EMGOEMFNEM} E   UUE    1҅U} AtUD#h+E#hEq];YEă    u^u_u  ktEPxpdBEATǉ)ωщXr)Lz)9މHXz   Ή;}u߉xsC(<-X;]RtًLHPxTp1x9   SSuVRQPh   }    #0} | u} x tҸ   t]{    m  ;}6/9uE1!։Ud~9xuNHB;Uu#  ktuXƋFV^EAdBЉ19dXwA(<-J)H)׃vJt-}9u"
tȋ}9u9uCE1;Uty~9xuNHBklu%    \u   S LR)Rj DP    D3pE w{$0   uE@E;EvEEEtK} tM@M;E6M1|)|!ExlxEMEEEu    [up$}]ǅx    ǅ|    E    E    GǋEsE    E    EEEE    E    E    tE9E  } u9}    u.0ۃ} u&| u} u} t	   u}   EP@9  uuxMq;UsUtE9vM9U  EV)ЃFwMkEDMF+AFugCwdjUUuQf j VEPU4MP@    H        tA    F       Eׁ E      Ee 9th  ppEE19Eth  ppÃ} u9uuUE9EtM   u$1j VEP    $    E       Ety)xpRWh   Pp   MHD9  )Pj D9P   M   A   tHE   1ttE}-   )ǉCQPj CPM   +KȃڈT  )Rj DP   C   tX1   E^FukEEPV@FuxEȿ   	E wi$`   uE@E;EvEEEE<E7M2|*|"EMEME    E    EE0tT1;xtuCFkEph   h<   h  hF   uE}uw}xuXZuVh  h<   h  hF       1e[^_]UE]@UE]@Ujt3    @EPRh3  h<   jshF   E UWVS,E}]E    9v	WWhH  >VVWWMUSM9v, t,P9wp9sSSh`  j&  9sjơ      Q1ҋEQRWU1R1PER}Phq  h<   h  hF   0 w!Sjj VujK uaMj jVuj+ u}Uj j Vuj u]Sjj Vuj tF9Cv4C/h  h<   h  hF   4$XZh  ju1uЋFRPh  h<   h  hF   E 9CsCUV9SsSK9Ns9CsCEF9CsCsh  h<   h  hF    9~s    C9~v    Csh  h<   h  hF   E~F36Vh  h<   h  hF   F FE01e[^_]U1   WVS}̃LUE}u]EԋE9׉ủE؋E UE    Ev׃3h  h<   hk  hF   jEu
    ]  1҃} jRPuu ttE1ҋ@RPRPh  h<   hw  hF   3h  h<   hx  hF   EuPPEpEuEPPE  PPWVMȍUuuWVh  h<   h  hF   $MjUĉjuuu5 u>Sjj uuj tE@9CvCQQh  j,Ru$EPh&	  }߃} }uKPPh>  j   9v8 t;PN9wx9s} t@MD#UVuM9s؃sh  h<   h  hF   E p9ps	    Sp9pv    Csh  h<   h  hF   EupEE0Ph  h<   h  hF   EMPPE 1e[^_]UWVS}tHt31;ssFC3s$ɉ}e[^_]e[^_]UWVSX  u]vhc  h<   h  hF   FjjRP5    1҉ uPPh  j   ۉtFh  h<   h  hF   h  j Pǅ    t;Psssh  h<   h  hF   C kPǉ<$t
ۍu"S_      P}9ut)Hrkƹ   ډ ǅ   Vh  j P1;tk@T܍P}9u񋵴؍<3;t8Pҋqk    t؋:1S;thQsssh  h<   h:  hF   C 9CssPsW=    C9CvsPsW=    FPPuWE8Z1e[^_]UWVSM    tYxmtGr9sPQuh  z9sx(<-tWPQuh   9؋8t뼋R룍e[^_]                           J  s  J  s                                          trying to allocate in 0x%lx-0x%lx aligned 0x%lx size 0x%lx
 relocator lib/relocator.c %d: out of range pointer: %p
 events or counter allocation failed %d
 %s:%d free magic broken at %p (0x%x)
 Failed to adjust memory region: %p, %p, %p, %p, %p allocation failed with out-of-memory
 allocated: 0x%lx+0x%lx
 relocators_size=%lu
 address is out of range overlap detected min_addr = 0x%llx, max_addr = 0x%llx, target = 0x%llx
 not allocated
 out of memory allocated 0x%llx/0x%llx
 relocators_size=%ld
 cur = %p, next = %p
 chunks = %p
 Adjusted limits from %lx-%lx to %lx-%lx
 couldn't find suitable memory target Preparing relocs (size=%ld)
 Relocs allocated at %p
 chunk %p->%p, 0x%lx
 sorted chunk %p->%p, 0x%lx
 %s:%d: out of range pointer: %p
         LICENSE=GPLv3+  mmap relocator                                                                                                                   	              
               N        +           @           [           w                                                   `                                0       -          B          W         s                                                     -  H               #         D          Y    5     t                         	                    &$  0      #  `       0                                    P       6          J          h          }  X                    &          0                              i  5     ,          A          d             p             |               !                   0                               	                    3  .        G    Q     Z             g             r                                                                       ^                            +          G      @     n  -  #       @          u  -                 ,                    V'  w               4         P          k  G       grub_relocator_align grub_relocator64_cr3 grub_relocator64_rbx grub_relocator_forward_src grub_relocator_backward_src grub_relocator16_ebx grub_efi_system_table grub_relocator32_eax grub_relocator_forward_start grub_relocator32_start grub_relocator64_rax grub_relocator16_start grub_relocator32_boot grub_relocator32_ecx grub_relocator64_rip get_virtual_current_address grub_relocator16_ds grub_memmove grub_relocator_forward_chunk_size grub_relocator16_boot grub_relocator16_edx grub_relocator_firmware_alloc_region grub_relocator_backward_dest grub_relocator_alloc_chunk_align grub_relocator32_edx grub_cpu_relocator_forward grub_relocator16_es grub_fatal grub_relocator16_sp grub_relocator32_ebx grub_relocator_prepare_relocs grub_relocator_unload grub_relocator32_end grub_errno grub_memset grub_cpu_relocator_jumper grub_relocator16_gs grub_relocator_backward_start grub_relocator32_esp grub_relocator16_idt grub_relocator_backward_end grub_relocator16_ebp grub_relocator64_start grub_relocator16_keep_a20_enabled grub_relocator16_ss grub_cpu_relocator_backward grub_relocator64_rdx grub_relocator_backward_chunk_size grub_zalloc grub_malloc grub_efi_get_memory_map grub_relocator64_boot grub_relocator_jumper_size grub_relocator64_end grub_real_dprintf grub_relocator_backward_size grub_relocator32_ebp grub_relocator16_esi grub_relocator16_cs grub_relocator_new grub_mm_base grub_error grub_relocator16_fs grub_efi_is_finished grub_relocator32_eip grub_free grub_relocator64_rcx grub_efi_mmap_iterate grub_relocator16_end grub_relocator32_esi grub_relocator_forward_dest grub_relocator_forward_size grub_relocator_firmware_get_max_events grub_cpu_relocator_init grub_relocator_firmware_fill_events grub_relocator_firmware_free_region grub_relocator64_rsp grub_relocator16_ip grub_relocator64_rsi grub_mm_check_real grub_relocator32_edi get_physical_target_address grub_relocator_forward_end grub_relocator_alloc_chunk_addr  .   ;  t   ;     :     ;  8  H  O    w  H      2    9  )  A  )  J    e           &        !    I    /    A    N    Y                Z    '    M      "    '  M  7     S  0  ]  C  h  0  p  V  z      #    G    -    5    %    2            B    4        M                Z    '  #  3  *  >  1  >  8  3  V     t    }              K    K    7    7            U    U    W    W    
        3        Z    '  .  [  3    8  P  =  1  C  .  J  @  p    z  .        8    1    .        O                [          
  T  
  E  
  E    E    E  ^  T    +    +  %  J                ?    E        $  ^    z  Q        :    :    :                ?  `  E        S      _  E  h  E            +           l  E  t  J  }  J  U    Z  $    +  F      E    J    J    :  I  :  d    y                  :    :  C  J  M  J  \    a    l    q  J    +    +                   (  +  Z  +  _    i    z        d  J  i    n    x    }  ?    J    J                ?    R    9    =  *    /    6    ;  ?  i          F    :    *                ?                ?    J                    ?  C     H     R     W   ?  d   @  q   P                    ?                    ?  +!    0!    :!    ?!  ?  I!  :  X!  *  !    !    !    !  ?  !    !    !    !  ?  "    "    &"    +"  ?  "    "    "  L  "    "  F  #    #    %#    *#  ?  >#  @  N#  P  \#    a#    k#    p#  ?  #    #    #    #  ?  #  J  $  J  $  J  <$    A$    K$    P$  ?  l$  	  $    $  F  $    $    $    $  ?  $  +  %    	%    %    %  ?  H%  :  R%  :  r%  J  ~%  J  %  *  %  +  &  J  &    &    &    &  ?  &  6  &  @  '  "  '  P  .'  ,  E'  J  d'  E  '    '  $  '    '  $                                                 $     (     ,     0     4     8     <     @     D     H     L     P     T     X     \     `     d     h     l     p     t     x     |                          .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         @   '                    	   @       9  p	              )             (                    %   	   @       B                 1      2       (                  @             +                    F             +                    V             +                    [              +                    d              +  
                                +       	         	              1                                 C  m                        ELF                            4     (  
     tUP    u        1U    UuPPh    ju        1	U@ á    Ut@1]U    UMuE    E   QRP$u
        UUJ ulz$  B(u%z,  z0   z4         z,   z0   z4   z8      uNz$   B(uz,   z0   z4u~Euxz,urz0ulz4ufz8IuHz$uSB(uz,uEz0u?z4u9z8 u-z,u'z0u!z4uz8t#
   tvz<   ]á    UUMS]u[E    E   ]]MU@([]    UUMS]u[E    E   ]]MU@,[]    UVUMSu]u[E    E   ^]u]MU@0[^]    UVUMSu]u[E    E   ^]u]MU@4[^]    UVUMSu]u[E    E   ^]u]MU@8[^]    UVUMSu]u[E    E   ^]u]MU@<[^]U    t@@PPh    jU    t@DPPh    já    Ut@H]1]á    UUMS]t҉]MU@L[]1[]á    UWMV}Su]t%҉u]MU@P[^_][1^_]á    UWUVMSu]}u[E    ^E   _]}u]MU@T[^_]    UWUVMSu]}u[E    ^E   _]}u]MU@X[^_]UWVSEUM]EEu }$EEEܡ    uE    E   [^_]]]MMUU܉}$u ]UM@\[^_]UWVSEUM]EEu }$EEEܡ    uE    E   [^_]]]MMUU܉}$u ]UM@`[^_]    UUMS]u[E    E   ]]MU@d[]    t@hUh    jUUVMSu]        u[E    E   ^]u]MU@l[^]UUt%    uPPh    jU@p1U    t@tPPh    jU    t@xPPh    jU1M1B   utRPh   j        1UEVMS]xt[E1   E   ^]@tfx6 t݊P:p8   	P=@;   	9 tt[1^]UWVS       t
x  Eu#EEǡ      QjhM   Wu=     u0pRjhR   WtPjhX   WuaPjLj ]S$   t        0ҋE#E;Eut   E@   E@ w-      t P=     t
                EM@E1@|t	1} {E%   t   PPh{   V  PjLj EP|            W  PCPjxSP  EPj j SU=     EF  Pj j BP=     9  x  t S  U   9:  }   ut;t,t@E      @EPF} PPh   V  PPjxVu$SVh   jEE   Qj j V=     ERVh   jEqPj j S=     Et[PVh   jDPVh   jWEE   E]EuыE]E5    QjLj EPVuRuSuuVu;EPV u*]E0	Ê{@uE!;EtV        6뀉5    zWXZh^   j1E    E    3e[^_]no video mode activated invalid EDID checksum %d no preferred mode available keep keep, keep; no suitable video mode found text auto invalid video mode specification `%s'    LICENSE=GPLv3+  video                                                                                                             =              1     6     Q   F  D     g     ;     y     Z         (          z        k  M                        D       $  G         M     *  Y  J     J          d             o             {             )  A         D       n          ?  ;         (         ;     &             2             >  4  %     V      ,     i             v    (         4                       D                    ,   B       j  n         z     0  z  D     H    (     c             o              grub_video_get_blit_format grub_video_map_color grub_video_delete_render_target grub_video_get_region grub_video_scroll grub_video_set_mode grub_video_get_active_render_target grub_video_blit_bitmap grub_video_unmap_color grub_strdup grub_video_set_region grub_video_map_rgba grub_video_fill_rect grub_video_create_render_target grub_video_adapter_active grub_errno grub_memset grub_video_adapter_list grub_video_edid_checksum grub_video_get_viewport grub_video_get_driver_id grub_video_get_palette grub_video_set_area_status grub_video_set_palette grub_strcmp grub_strchr grub_video_swap_buffers grub_video_restore grub_isspace grub_video_set_active_render_target grub_video_map_rgb grub_error grub_video_get_info_and_fini grub_free grub_video_get_info grub_video_edid_preferred_mode grub_video_blit_render_target grub_video_set_viewport grub_video_get_area_status grub_memcmp grub_strtoul                3     A     H   &  W     o                  &               +  &  @    Y    f  &  {          &            &           .  &  G    d    r  &            &            &          %    l          &            &  0    ;    N  &            &             &  5    I    P  &  q    }      &            &            &             &  L    S  &  ^          &              !    '  .  4    A    G  .  X    ^  .  u    }  )                      4	    :	    S	    i	    v	  (  	     	  /  	    	  /  	    E
  #  d
    j
    
     
    
  &  
  /  
    
    
  &  
  /  
          &        &  6  (  h    ~              (      
  &   .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .modname                                                      4   2                    	   @                       %      2       f                   4                                  :                                 J             $                    O              $                                  ,     	            	              ,  |                                 X                      0  ELF                       /      4     (   UE 1]UWVS$MEU}YqEEU  ډE]~Dk\CSE؉US;UEЉUu!9}uE9CuEUEU܉CS#EkuUFE>VFEFA$1[^_]U1   WVSU}}܅u	WWh    =0   uVVh   j#  SWuR  W7  Á f=  v@  7v74  t9v¡  )(     9sQQh4   jfjjh   QVPEP5      uZuأ$  5$  uW   u9PPSVhJ   hh   ho  hn       0  f   ,  EP    e[^_]U58  X5   0      1       U5        $      ,             (      UWVSu}}M]         	    ڃ EUw1}      w  wM   ]  1ȉ w=  	 v  	 1)U   E    B9]EwAr9w;RPQVh   hh   h  hn   U +B+   ø   1e[^_]U1   WVS   }h   t=8 t8SSPh     Qj j@P$EERj j@h   th           h      PPEPEPt           E]Uf&   Ef8   f*   Uf(   ؋E,   :   Eā  f1ۅ0   ;   EȢ<   E̢=   EТ>   EԢ?   Eآ@   EܢA   t
<yt6<1t2wR     uut70   #   #%#   p#            "    =#          t{PPh   su5SS $      S$   S"   LPPh   stPPh   st           P"   PPEPh    E    k]      ƉE  	9s  Ee   }  % E              u    PEtYj Vj PEPWEEyPPh  ju E9    s           1    ?  %        g  WWSuh  hh   h:  hn   jEPh  } uVj EPh  S5   uuh;  hh   hF  hn   U uQQhw  j     EPREP5       uËE$h  hh   hW  hn        ]uUE(  5  5   PEZ  h  hh   ha  hn   EPh   E    t
       EU  EPEPj 5  h         EU)f  fwfv&]  ]         +fv$]  ]         E    u	   UU  E    E    EPj $5  0e[^_]UWVS  58  } u*PPh    jǅt    ǅp    '  E0p  X4StuPPh  j   WStp9t=       EV0h  mShh  tPf~Ut	QQh  >q<@v	RRh
  *}HdrSufUfw	PPh!  EuPPhA  j&  fv}O  
     =  w
     u   hph	@4lh)ll-   f`vfut$N1ۅu   uC u}11f	v4E   dEl  %   t8U311l   d  % @  `ll    tl\  I \  u
       tljjjVRR|WP ҉\t[K;d   jٸ   KjPV\        h   W5   VR|RPuM|,  X|VP5,  (  hd  hh   h   hn    dGd  Ph  j h   jwqPh  (  Eh  -   (     D  t      h  Ph|  f  %  $  rf=f4   ?f6    ,      0      f8   f         f     f     f$    wf=v      EL32  f=v      EFIL  P   Plh|h  hh   hy  hn    4      ;]   PEjh  4   EWj VlP|=     4  t        A|Jw ktmt1Ƀgu
   1Ƀ
1Ƀ
9v4      *4  !EQjh  4u%   C   @P      Rjh  P  P   Puuth`8   P5,  =     u+Pj h9  h  0     
ǅt    tptP=     t58  0          e[^_]UuKj h  j h	  hh   j h  j h   h         E8  Uu5   X5   U   VS	sWws0@u[^]USRt%@C3$]UWVSÃ Ejh  SEC1rUCgC1]C1SC&   FC.1<UC61C>1'CF1CN1CV1	C^Cf1VSnWRUU)Sj Ve[^_]UWVSÃ,EME    ;/uCtC</u   6)хt.PQR6MԉUU؋Mԅt<    v΃jUU؅tzFQ)QPR} t@PPSuh  h  h   h  UEj j hA  )DE+E7qE܃E1e[^_]UE]@UWVS]{ tA1;3}&CFt8XC48փsC    e[^_]UWVS8E]E        C    P=    C  C    1E    E;E  MUԋEЋCCWjh.  4   EUԋE̍x?/uGQQj:WE   u)                     KRRPWMMЃACD0   {P1ɍUqǋC{D0   RǋẺ{@EtCx1EE    }ԃ                     CuEŨC8 uS=    ?EԋQ4I8PHCD8Cm1tCxCE|e[^_]U11W1VS,u]E    ;>  ؉PQj SUȉMMԉUȉEˉFDtVٍUËEFPHpUȉMVMԋT
ủuȉh     2t.Q4  j 
   j j ËE1E    EFUȋHRQS0MMԃU9t2=     uER4h?  jV    EGt/؉ƃPVj S
   j 4  j j 34E1e[^_]ÍPU	v߃A<   ]UW1VS1ۃt_\u:~xu4FUMMUtFMUt뻀\t
't"uC
 u   CF뛅tt:ZY[^_]UW}V1S1;u}1FY\u[^_]UWV1SM;u   EUM<M@9E   )EEEt"Aˊtg\uFxu@GUU܅t-GU܅t\GCGCGC므\t
't"u\CCGC듃} tC "KF ? [^_]filename expected you need to load the kernel first the initrd is too big Initrd, addr=0x%x, size=0x%x
 linux loader/i386/linux.c addr = %lx, size = %x, need_size = %x
 gfxpayload %s;auto auto Booting in blind mode gfxpayloadforcelfb vga_text console ofconsole cannot get memory map real_size = %x, mmap_size = %x
 real_mode_target = %lx, real_size = %x, efi_mmap_size = %x
 cannot allocate real mode pages real_mode_mem = %p
 code32_start = %x
 cannot allocate kernel buffer premature end of file %s invalid magic number too many setup sectors version too old for 32-bit boot zImage doesn't support 32-bit boot prot_mode_mem = %p, prot_mode_target = %lx, prot_size = %x
 bzImage, setup=0x%x, size=0x%x
 mem= quiet BOOT_IMAGE= Load Linux. Load initrd. initrd 070701 Creating directory %s, %s
 linux loader/linux.c newc: TRAILER!!! premature end of file %s LICENSE=GPLv3+  video boot relocator mmap linux                                                              y  \          .                                                                           )              G              R              h              ~     0                                                                                                     "  "       =             S             ^             j                                                                                        N                    #             /             ;             G             S             k             {                 
                                                                                                            /             =  Y  [     O             [             k             x                                        grub_mod_init grub_mod_fini grub_strlen grub_efi_finish_boot_services grub_puts_ grub_efi_system_table grub_relocator32_boot grub_loader_cmdline_size grub_xasprintf get_virtual_current_address grub_video_set_mode grub_memmove grub_relocator_alloc_chunk_align grub_dl_ref grub_mmap_iterate grub_create_loader_cmdline grub_relocator_unload grub_errno grub_memset grub_register_command_prio grub_video_get_driver_id grub_initrd_load grub_efi_secure_boot grub_unregister_command grub_file_read grub_term_outputs grub_get_initrd_size grub_print_error grub_zalloc grub_strcmp grub_strchr grub_malloc grub_efi_get_memory_map grub_file_close grub_file_open grub_initrd_init grub_real_dprintf grub_relocator_new grub_file_filters_enabled grub_error grub_video_get_info_and_fini grub_free grub_strndup grub_efi_mmap_iterate grub_dl_unref grub_initrd_close grub_memcmp grub_loader_set grub_env_get grub_strtoul get_physical_target_address grub_relocator_alloc_chunk_addr                      /    +    "  2    <    N    ]    e    |                      :                            ,                  %  5  *    A    F  4  M    S    \  1  d    v    {                        R    u    z          ,            8                1      $    0  #  8    =    F    R    W  8  ^    z  0                                                  	            N    T    ]    f    m    t    {          !        %                        %        %          "    )    5    A    f                      '    (    1        /              )    8    ?    P    U    _    d  ,  r    w  3        3                    ,        /            ;              "    .    3    8  ,  ^    d    j    y    ~          ,                              -	    T	    	    	    	    	    	    	  /  
  *   
  '  4
    N
     [
    m
    
    
    
    
    
    
  /  
                        ,  -  9    @    _                  ;            :                        ,  >    C    T    Y    ^    u                                                                	            *    0    9    F    L    U    s    x          ,            6    9              >    K    X    `  6  m    y      $                                                7  
    +  1  A  )  J    V    [  4  d    m                                                                        Q  1  Y  1  z            1      6    $    2                ,    1    )    1    $      ,    4  6  `  &  y  .    .    .    2    
     .  *  .  4  .  K  *  f  5  l        >  
  u                   /    5          !     .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                       	   @       D$  X
  	            %      2       8  X                4                                  :                                 J               <                 O                                  X                                                    
   
         	                                                .  a                      D	  ELF                      4      4     (   UWVS@  Ph   j j j j u (  f}UtPPh      EU8t9uRRhF      ǅ    P   Sj\j j RPu    Wjh   S   uPPha      QjhPh       `   u f1;\  hVPh   RSu y    b  jS  hu   h4   jZh8   TX t11ۉǅ    N t1 + t1MIWV Ph   h4   jrh8   ǅ    ,uPuU31e[^_]Uh    h    Uh                          no signature GPT entry %d: start=%lld, length=%lld
 gpt partmap/gpt.c no GPT partition map found no valid GPT header Read a valid GPT header
           4       EFI PARTLICENSE=GPLv3+ part_gpt                                                                                                                                      	               5              D              O           n                                                                       grub_mod_init grub_mod_fini grub_partition_map_list grub_disk_read grub_errno grub_gpt_partition_map_iterate grub_real_dprintf grub_error grub_list_remove grub_list_push grub_memcmp  $     >     \                                   L    \    h    u    z            w    |                      
                         .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .modname                                                      4                       	   @            
            %             8                    -      2       H                   @                                 <   	   @            
            F                                 V                                  [                	                                  0     
         	              8                                    d                        ELF                            4     (               UWVS<uj     j     jVh   h   EPS tuVh    PXu  fE  fE  E    1fMfMfMƉfMȍufMfMι	   S0fffr1 UUj h    j h   h        U5    Reboot the computer. reboot    LICENSE=GPLv3+  relocator reboot                                                                    (                                                                                      9              F              \            l            x                                                                                   grub_mod_init grub_mod_fini get_virtual_current_address grub_memmove grub_relocator16_boot grub_reboot_end grub_reboot grub_relocator_alloc_chunk_align grub_register_command_prio grub_unregister_command grub_reboot_start grub_relocator_new get_physical_target_address    
          !     8     L   
  U     [     d                                                 .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         @                       	   @            	            %      2       U                   4             q                     :             t                    J                                 O                
                  X                                                  P  
   
         	                                                 a                      0  ELF                             4     (   U   WV    $E܍}uPVh    E   E    t}u	U@	EjEPVh    ue^_]U   WV    $E}PEPh   E    t( t#j h%   j h    hF        e^_]á    tUP aʓ +OsIndications OsIndicationsSupported Reboot into firmware setup menu. fwsetup   LICENSE=GPLv3+  reboot efifwsetup                                                                              s   f                                                                       	               )              ?              Z              p               grub_mod_init grub_mod_fini grub_reboot grub_efi_get_variable grub_register_command_prio grub_efi_set_variable grub_unregister_command            3     W     \     h     ~                                                   .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                        	   @       4     
            %             (                    -      2       8  N                 <                                  B                                 R                                 W                                  `                                                                 	                                                  i                        ELF                            4     (   U]UUE	Ru	   P1U} Eu
E    ]1]US]h    utE   ]E          C  C    		C1S]UEU	   	RPu1á    UVS1ۅt8mimguXKQӅ   P9   ;uۃsVh   h    jah1   C       P    h@   h    jfh1      5    V5   E    e[^]e[^]á       t!U5   $    memdisk not a memdisk Found memdisk image at %p
 disk/memdisk.c Copying memdisk image to dynamic memory
        +   E                 LICENSE=GPLv3+      memdisk                                                                                         /                                               *              A              N              Z              f              x                                           grub_mod_init grub_mod_fini grub_memmove grub_disk_dev_register grub_modbase grub_strcmp grub_malloc grub_real_dprintf grub_error grub_free grub_disk_dev_unregister        #   	  :     P     X     f     v     |                  	               %    *    6    C    H    M    R    Y    ^    c    l    s    x  	        
                                                          .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .modname                                                      4                       	   @       h    	            %      2         i                 8             d                     4   	   @         0   	            >                                 N                                 S                                                     
   	         	                                                  \                      <  ELF                      |
      4     (  
 UVS: tf/uB.uDZt/uۀ.u.Zt/u"9tÃ9sA빀9/tItABY/uۉtAB [^]UWVSӃ(uQMEMPQ6\  ϊ/t	tC  tGE}
?/-  O9s1ut:8 
  PEÉEX6D$M܅u
       8PPQRU܉MM؉$U܃:/uDߊBOz tEWEEx t PPS6h    h   jq:tPW6SD;/PP}uWZYS6h    h   h   h%   6E    1)σe[^_]UWVSHE@PEu
    N  ]̃SDU9s1RE    y8/u  HPPj/Wt     ?    U1E    Mȁ      1  uȉEE  } 5  EPEPEPEuc  }Y  EPVuu,  }t</t  ?/)GPPuȉMSM(,Pjj EPMM   uE%   = @  M؃	} MxEЃM؉EPuEPWUtu_S]bUz WWEPEPERPuEă}uPPh2   j!EuPuu$    e[^_]UWVS(E]@PEu
      .1}؍EPj Wu   }uPuhO   jqEEME    %   =   u/{ t)PPEPEPES>tu&} t%FuSuBQQh2   jBRRuuuuXu1&uu    e[^_]symlink redirected %s to %s
 archelp fs/archelp.c too deep nesting of symlinks file `%s' not found LICENSE=GPLv3+ archelp                                                                                                                                                &              2              =              I              U              a              m     6                                                 &  }                   grub_strlen grub_strcpy grub_memmove grub_strdup grub_errno grub_memset grub_strcmp grub_strchr grub_malloc grub_archelp_open grub_real_dprintf grub_error grub_free grub_archelp_dir grub_memcmp                    $    5    L    W              	                          5  
  D    Z    s            8    t                 :    O    V    z                  
          K    l    s                             .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .modname                                                      4                       	   @         x              %      2         c                 4             p                     :             p                    J                                  O                                                  `  	            	                                                $
  X                      T  ELF                      D      4     (   UWV1SE1U1;ut>]3FYЀw/Éωu܉փ]}uu܉}	߉뽃[^_]UE@    @    ]USEX@s$$    ]UWVSEux@HDJ HHJ$uVHXO_SQj j 7 uB     e[^_]UE@$E]USÁ  Ph  j j j j S u0Rjh    Puj,tPPh   j	1]UWVS]C uơ    tCPuh(   Vtv$4$s@FV C41S8e[^_]UEVS á    t1uuuh(   Ss$$e[^]UWVS  }ǅ   ǅ    ǅ    GWGWVPh  wwj j 7    uM uE !  Sjh    PtQQh   j	  <L      pƍ@PMy  RPVO_    SQj j 7M 2     1%    GWǅ   ^  <K      p_p9w(s6V  w$w(G$Vw$SGW    RPj j 7   G$1ǅ          _W  1ۃ uxM t	C   uCfPM2  M tQSMRPE /CuRjdPPE Dd    p1O_    G  W  O _Ӄ} O_t   |M} tK   Xu21}0u!M̀5uu@U̠ uT(dw2jeu    Ew$_$G(e   PjdPw$G$@d 1te[^_]Uh    h    Uh    ustar not a tarfs filesystem invalid tar archive tarfs           1          v               @     `   LICENSE=GPLv3+ archelp tar                                                                                                                                       	               *              6              E              P              ]              i              u                                                                                                   grub_mod_init grub_mod_fini grub_memmove grub_strdup grub_disk_read grub_errno grub_fs_list grub_zalloc grub_malloc grub_archelp_open grub_error grub_list_remove grub_free grub_archelp_dir grub_list_push grub_memcmp                        	    /    >    J    [    m    t                                     (    0                            J                b      
    
                
                  "                             (     ,     0      .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   +                    	   @       D	  X  
            %      2       _  7                 8               4                  4   	   @       
  @   
            >                                 N                                  S                                  \                                                       
         	              h                                  
  e                     x boot/grub/i386-efi/gcry_sha256.mod                                                                  0000600 0001750 0001750 00000010364 13417732100 0015421 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UE g	j@g@rn<@:O@RQ@h@ك@[@     @d    ]UE ؞@|6@p0@9Y@1@Xh@d@O@     @d    ]U   S˱1ڱ1[]U   S˱1ڱ1[]UWVS  xpXxXxX@|xtXZXZXZX9u1@u썅,   8ϋX1xpȋPαʋH
1H1}ˋH1ӉX9utǅ    x|    1!1ʍ44!	#	2 Ƌ4   1!ً1Ή!򉕤	#	ƋƋ4   1!1OƋ	!!	@󋵨Ƌ4    1#1Ɖ؋	!#	։   Ƌ1!1yƋ!	!	։_   Ƌ1#1󉝤Ƌ	!ڋ!	։   41#1ڋ򋝨Ƌ!	!	򉕔t   1!1򋵔׉ډ򋵜	#!	׃@lp؉A9Aq|AxqtAqĄ  [^_]UE]$UWVS}u]d@u$W$vhH  G Gd       d u!ىE/Gd?PFWdVKT$uPj j WubU)ʃ?vMMGd    G @ڃ؃?hH  މE1;Et_d?SWd@T$e[^_]UWVS]j j S{ Cd 4    	׃7PSdD$Cd7@PSdD$ Cd?PSdD$ Pj j Sj8j C$PC^C_C`CaCbS$CcC\ C] hH  S$S%C'CS&S(S)C+CS*S,S-C/CS.S0S1C3CS2S4S5C7CS6S8S9C;CS:S<S=S>C?CS@SASBCCe[^_]Uh    E    Uh    $      /BD7q۵[V9Y?^[1$}Ut]rހܛtiGƝ̡$o,-tJܩ\ڈvRQ>m1'YGQcg))
'8!.m,M8STs
e
jv.,r迢KfpK£Ql$օ5pjl7LwH'49JNOʜ[o.htocxxȄǌlPxqSHA256 SHA224 2.16.840.1.101.3.4.2.1 1.2.840.113549.1.1.11 2.16.840.1.101.3.4.2.4       l      `           B  /  7  h   @                      M   B  /  7  h   @          %       010	`He   ;       0-0	`He  LICENSE=GPLv3+ crypto gcry_sha256                                                                              	           %	  !                                              	              
        0     6              G              N   0   0     g              z               grub_mod_init grub_mod_fini _gcry_digest_spec_sha256 _gcry_burn_stack memset _gcry_digest_spec_sha224 grub_md_unregister grub_md_register  E        +            j        [    m                	    	    	    !	    ,	    1	    8	    =	                                         0     4     <     D     H     L     P     `     d           .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   F	                    	   @       ,                 %             |	                    -      2       |
  R                 @             
                    <   	   @                        F             l                    V             {                     [              {                    d                                                                	                                                T  m                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/acpi.mod                                                                         0000600 0001750 0001750 00000023150 13417732100 0014276 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      8$      4     (   UVS1ۡ    ;X@s.Rjh   PDkRu    @DD0C1e[^]UVS1ۡ    ;X@s.Rjh    PDkRu    @DD0C1e[^]UVS1ۊ҈tC9u[^]UVSEU}ME]UuuPӃ w   v   1ۋEUEU9r%w9v+M]ʃ9^wr9VsVF1[^]UQRPá   UVStP   t3s$              e[^]U1UM9sB]Ë$   U҉u=(    u]]Ë(   U҉u=$    u]]U1   WVS}܃<  Et1!1ۍC
RRE܍EPh   }YuXWVh    h   h   h   E EuPPh*   y  E܃jR1PRV Eu
      ۉuȉutUй   rPh   j VECfEtx(  ]10]+PjhO   S  E+G   9rE    }    hn   h   h   h   Eԃ  9scPjhO   SuIPPjSu8Uй   Sh   h   h   h    E    1ۋEԅ   t~h   h   h  h   WE)Ѝ   9sP19}<   @VhX   h   h  h   O G1uHp} tsh   h   h  h   Eԃ  9sJ1<   @uVh   h   h  h   UЃ    hE    } uu}ԍ  9uY[h   j#  RjhO   Wt	9rPPjWu9t;}t h   h   h4  h   Ef  h   h   h6  h    1   h  h   h   h   ]oPPjSW{ MO9KANShX   h   h   h   G ]1HXYe[^_]UWVSLEL      H             x                      ux  1? t+wttJw @ E    t,wEttJw @C1ңH   CL   E$EE@9E  E1E Jw T@uPPh%  EP   S
   @   S   8   CS   4   0   S(C ң,   ttu} u8PPh*  VUUtLQQh*  uUUt0B#v(PU   U   tcJC$   u} u.RREPV   PPEPut|{#vvjuVXuR  CUBPUJ   M        JMAE*VXuGu t' L   tH   uH   
H         tW$   @   ?( tW,   8   '0 tPj j w44   8 tW<   0   @ tPj j wD,   ]E       QMEMUuRF      PQVRMUMU9ȉE   RjhH  V   5   E5      EE;E   3u    4  H4##P3h/  j0Rc=     uQ3h/  j똃jtM   0   HP   >   1t@R      T\D$Rj jURRPj j           uPPhM  j/      5      5               N   F6   Fjhu  S   uN      {S(C$v    ǃ          ǃ       C	 PPsS؈C	v`   1t@R   $      Ez  أ   ؉   s$zE   @   CCC
^   8   CL4      0   CC2,   C    tV@C	 PPsS؃=L    C	t}      P   O   (   (      @   	(      C CC VVjS؈Ch  h   h  h   =H    ^     1҉tBI   4$   3   S$tB    J@        @   sC
C   8   C4      0   CC,   C	 C PPsS   ؈C	   P$   O   $   $      @   	x5$   H   F F   FPPjVZYF$   ^F    ؈FF  j$V؈F h  h   h  h      tXPH        u1t&u(       $       R}Ⱦ           }ؾ   @<XlRRPEPӡ    @<XlY^PEPӃ1e[^_]Uh    h  h  j h(  h        U5       0-- '?Mqh" <?  x       G           n                  1                   2                   o                A  t       J         r  r       ~           c                  d                &  e       .                                  creating ebda @%llx
 acpi commands/acpi.c couldn't find space for the new EBDA RSD PTR  Copying rsdpv2 to %p
 Scanning EBDA for old rsdpv1
 Copying rsdpv1 to %p
 Scanning EBDA for block of zeros
 couldn't find suitable spot in EBDA Switching EBDA
 EBDA switched
 Scanning EBDA for old rsdpv2
 facp dsdt premature end of file %s DSDT couldn't allocate space for ACPI tables FACP RSDT Generated ACPIv1 tables
 XSDT Generated ACPIv2 tables
 Load host ACPI tables and tables specified by arguments. [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] exclude Don't load host tables specified by comma-separated list. load-only Load only tables specified by comma-separated list. v1 Export version 1 tables to the OS. v2 Export version 2 and version 3 tables to the OS. oemid Set OEMID of RSDP, XSDT and RSDT. oemtable Set OEMTABLE ID of RSDP, XSDT and RSDT. oemtablerev Set OEMTABLE revision of RSDP, XSDT and RSDT. oemtablecreator Set creator field of RSDP, XSDT and RSDT. oemtablecreatorrev Set creator revision of RSDP, XSDT and RSDT. no-ebda Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB.    qh" <0-- '?MLICENSE=GPLv3+  extcmd mmap acpi                                                                                               0                                          	              
           0              F           [              h                                                                                           H                                                           )             G             W             f             x    =                                                                                 H   H                                grub_mod_init grub_mod_fini grub_byte_checksum grub_efi_system_table grub_acpi_get_rsdpv1 grub_memmove grub_mmap_free_and_unregister grub_strdup grub_unregister_extcmd grub_mmap_iterate grub_errno grub_memset grub_machine_acpi_get_rsdpv1 grub_file_read grub_mmap_register grub_strcmp grub_malloc grub_mmap_malign_and_register grub_file_close grub_file_open grub_real_dprintf grub_acpi_create_ebda grub_strword grub_mmap_unregister grub_error grub_acpi_get_rsdpv2 grub_free grub_register_extcmd grub_machine_acpi_get_rsdpv2 grub_memcmp grub_strtoul              #   &  /     P     ]     k   &  w     2    9    K  #  T    b  #  m  #  z                  %              2    7    F    K    U    Z    l                      "        &  6    ;    E    J    b    h  &  y                                            %    *    U    Z    d    i                               !        &  !    ;    @    J    O    `    e    o    t                                        6    @    J    W    a    k    t  %                      P    Y    q                                    	            -    E    `    w      #    #                    #    #  	    	    )	    1	    H	    `	    x	  '  	    	    	  '  	    	    	    	    

    '
    1
    7
  &  K
    P
  #  \
    a
    }
    
    
    
    
  !  
    
    
    
  !  
                )    ;    A    a    f    p    u                      #                            #              
  &          W    m                                                *    5    C    H    M    W    a    o    t                                                2    ?    I    Y    k    }                                                                -  #  >    I    [    e    n    }              "                                $                    ,     8     D     P     \     h     t                                                                 .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                       	   @                       )             P  (                 %   	   @       (#                 1      2       x                  @             $                     F             D                    V             T  P                  [              T                    d              `                                  h                	                %                               #  m                                                                                                                                                                                                                                                                                                                                                                                                                                          boot/grub/i386-efi/gcry_sha512.mod                                                                  0000600 0001750 0001750 00000021110 13417732100 0015403 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                             4     (   UE ɼ@g	j@;ʄ@g@+@rn<@6_@:O@ т@$RQ@(l>+@,h@0kA@4ك@8y!~@<[@@    @D    ǀ       ]UE ؞@]@|6@*)b@p0@ZY@9Y@/@ 1@$g&3g@(Xh@,J@0d@4.@8O@<HG@@    @D    ǀ       ]UWVS	ΉM]ˉMM1	M3}Ѓ1	1[^_]UWVSωM	މ]ˉMM1	M3uЃ	1	1[^_]UWVS  pXpXpXp X p$X(p,X0p4X8p<pXZXZXZXZXZXZXZX9uǍddqYQlqhYPT\΋I؉X^܉X\TËP	֋T1֋T	P1ˉ1HH1щLLXh\lh	֋l1h	Ӌl1މ1É@@1XdXDD\\dFE9dVǅd    04@D8<( ,X\HLPThl(,؉fd      p$   $t@ $ҋ(!ʋ8<#D!΋,1!1ȉ $0 hl4$8P\T#l0h4XTP! $XPX\H1ًLʋL3Tȋh#l!ʋH!΋T!ى1Ë\1ˋX04 ؋$04d @    $D$    $x| $ʉ(ы\ȋ8#<!ʋX!΋,!ى141ȉ0 $؉nى΋l!ً0@h\LDH! $#PHLXڋ4#T1`1щ3\TL1ËH@ D$@D<Ӊ d$8 $       ŀ$ń ڋL$L#\Ӊ؋(#,!ڋH#Xމ1DË1ˉ@ $؉D#4<08P!֋TXދ@ $#hPTڋD#l3X؋`11Ӊ\$1Ë8P< 8T<X, d$( $       ň$Ō P$XӉڋT!ʋT#LӉ؋P#H#\((1ӉË1ˉ $8<8<#D\(@,l!h $hl8#0`ڋ<#41ʋ$؋X3\1ӉË1lh(, (, d$    $    Ő$Ŕ $X \$ى΋h։ދH։P#L!ڋl!΋T!ى11Ή(, $dى΋4X8\0!ƉX<!ދ( $#@04ڋ,#D3X؋`11Ӊ\1X \$X\04d (   $,    ͘$͜ $HL 0$PӉڋ4!ʋ4#lӉ؋0#h#THH1ӉË1ˋX \$XL(H@!ӋD`\#, $ى@DX#8\ڋ\#<3`؋X11ӉË1D@ HL$HLDd 0    ͠$4   $ͤ $P T$ى΋@։ދh։0#l!ڋD!΋4!ى11ΉxH|Lx |؉$ى΋<PXT8!ƉX\!ދH $#(8<ڋL#,3X؋`11Ӊp\p1Ë8P ttTP<$T d$8   <    Ũ$Ŭ hl$ 8<$ʉҋ4щȋ0!!ʋ8#@ˋ<#D1ډhËhP1 Tll$`HLh(l, $(\,X1؋T1ʋP!!13X``h$d dlhlddPhlPWTGHWLGXW\ G(W,G 8W$<G(@W,DG00W44G8W<Ĥ  [^_]UE]HUWVS}u]      u,WHIh   G@WD Ǉ              u'ىE5   PF   VKTHuPj j WoupU)ʃv$MMG@WD Ǉ       ҃؃h   މE1;Et   S   @THݍe[^_]UWVS uj j VVDF@   Ӊ1EUڃ9ډM؉]wr;EsEU M؋M]܋]	ȃoEG   ]D>H   oIP   DH 勆   P   DH Pj j Vjpj FHPEUƆ    Ɔ    ]܈      MƆ    ؉            ӈ   ӈ      VH   Ɔ    Ɔ    Ɔ    h   VщNHNINJӈNLӈVKVNMNNщFOFNPNQNRӈNTӈVSVNUNVщFWFNXNYNZӈN\ӈV[VN]N^щF_FN`NaNbӈNdӈVcV$NeNfщFgF NhNiNjӈNlVkӋV,NmNnщFoF(NpNqNrӈNtVsӋV4NuNvщFwF0NxNyNzӈN|ӈV{N}V<N~FF8щ         ӈ   ӈ            e[^_]Uh    E    Uh    $     "(ט/Be#D7q/;Mۉ۵8H[V9YO?m^BؾopE[N1$}Uo{t]r;ހ5%ܛ&itJi%O8GՌƝew̡$u+Yo,-ntJAܩ\SڈvfRQ>2-m1?!'Y=%
GoQcpn
g))/F
'&&\8!.*Zm,M߳8ScTs
ew<
jvG.;5,rdL迢0BKfpK0TQlReU$* qW5ѻ2pjҸSAQl7LwH'Hᵼ4cZų9ˊAJNscwOʜ[o.h]t`/CocxrxȄ9dǌ(c#齂lPyƲ+SrxqƜa&>'!Ǹ}xnO}orgȢ}c
?G5q}#w($@{2
<LgCB>˾L*~e)Y:o_XGJDlSHA384 2.16.840.1.101.3.4.2.2 1.2.840.113549.1.1.12 SHA512 2.16.840.1.101.3.4.2.3 1.2.840.113549.1.1.13     <      0   0      w    l                      0A0	`He 0 4            @       w    l            ;   R       0Q0	`He @ LICENSE=GPLv3+ crypto gcry_sha512                                                                              z             !                                              	              
               .              5              H       0     a              r   P   0      grub_mod_init grub_mod_fini _gcry_burn_stack memset grub_md_unregister _gcry_digest_spec_sha384 grub_md_register _gcry_digest_spec_sha512  ,    F                    X
    _
                    N    h                U    q    ,                                                                         0     4     P     T     \     d     h     l     p                .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                       	   @       8                 %                                -      2       p  h                 @                                 <   	   @                        F             x                    V                                  [                                  d                                                                	                                                  m                                                                                                                                                                                                                                                                                                                                                                                                                                                                          boot/grub/i386-efi/adler32.mod                                                                      0000600 0001750 0001750 00000002444 13417732100 0014621 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UEf  f@  ]U]UEfvffPfvfPPH	ʆ]U1҉MWVS;UtGEǁ  vD3fYf  4vtfqB[^_]UE    ]Uh    ADLER32                           X            @       LICENSE=GPLv3+ crypto adler32                                                                                                                                          	               0               grub_mod_init grub_mod_fini grub_md_unregister grub_md_register                      
                              .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                        	   @       l      
            %      2                          8               0                  4   	   @         (   
            >             H                    N             W                     S              W                    \              ^                                  h        
         	              (  A                                  e                                                                                                                                                                                                                                              boot/grub/i386-efi/gcry_tiger.mod                                                                   0000600 0001750 0001750 00000030554 13417732100 0015526 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      </      4     (   UE ͫ@gE#@2Tv@@@@\    @X    @`   ]UWVS]UQE3E1Ӊ]}Eu؋}4    %      34   3  E34   3  34   3  }uڋ]WE؉؉U܋U%   4     E   34   3  U3  34   ׁ   3   34    ڋ])3ESu؋}܋]ߋ}؉Éueڋ]Wq[^_]UWVS0 ŰW]uE؋ẺU܉MȋP UQEMVs3EE؉UUtVssM؍UE\VssMU؍EDVssMUE,Vs$s M؍UEVs,s(MU؍EVs4s0MUEVs<s8]ڍEME؃U܉EW}̋UEW}ȋUWe[^_]UWVSHX80߁x<]uЁx)MЉ}ԋx]ԋ]Ћu1߉}xU1}MX׉]ȉUȉω׉p1ʋHủ֋U1ڋXM)uu]UċP }3x$1Uup(}}x,uu}}҉ыU׉}1ʋH0֋UM1ڋX4)u]UUM1׉}؋x<]ЋU؋u1ω}܋MӉΉމӉ]ЉˋMӉ]ԋ]ԉx1ʋM1UЋU+MЉ]ԋ]]1ʉ֋ỦHMĉXp1ډ׉PUU׉P҉MHыU1ʋM֋U1ڋ])H ӋUX$1ʉ֋Up(1ډu}P,p0u؉x4gE#ͫ})։p8߉x<H[^_]UE]UWVS   j@R]SFV>tEFыVMMMEEF|U}xEXZEUjSjUYXMEjSPtXZj	S]ٍ]ڍ]0EUx|+EUM]3}FV>t3}N^~e[^_]UWVS}u]X@u$Wh   G\GX       X u!ىE/GX?PFWXVKTuPj j WubU)ʃ?vMMGX    G\@ڃ؃?h   މE1;Et_X?SWX@Te[^_]UWVS u~`j j V~\KFXC     	σ7HNX\FX7FHNXD FX?HNXD Pj j VUj8j FPUFQFRFTVPVSVFUFV FW Mh   N^~` MN]^VM؉]   щNNNӈNӈN]FNMV؉F F!F"^#ӈN$ӈN%]܈F'N&M؉؉F(F)F*^+ӈN,ӈN-N.   ӉӈNN]F׈NMFFVڈFȈN ӈN!ӈN"]N#M؈F%F&V$ڈF'ȈN(ӈN)ӈN*F-F.ЈN+V,F/e[^_]UE ͫ@gE#@2Tv@@@@\    @X    @`   ]UE ͫ@gE#@2Tv@@@@\    @X    @`    ]Uh    $    E    Uh    $    $          U<2&`[YFL|EU)YQe¯5v
E=~
R{YSVHCo\z^N5o>֜"i t
F@ln:$IpX=$ac2D}٫[KZIm-O5ԓ@eKڿ* |$|2šn	f6fi}!å}':Ք"dۉaļ3=jL꛹\BTKqjj{"̨1+G8$_FXHy(Asw!E\ pkz8Pd o`v
b]0ZT_"2[GhO- +ٹyC-SH~;/Gxs	
Ba 9.*+e9"`%n&0qv>e&p61ɱtP\YpBJyl%YNthlqg0sw
a/Zۻajg>Q郞Krd	\7uӱ4]%354BЯ~P*5DėЙ I{ADŷ;&lj/u,@rٕT*=r/UBxN31,b|O	]f/US]'?A@lFYߒ7?^.7 Ἥ)1\D>AxҠxLɥ(w(.A9,ɯ^&%jw¼m:7[gJЙTҿ4R}do[at>'ܬ@aW7ZwibRV=F:dnC?Ȟ~0w'LH3,/CoݧGf`ǲd7%rvpN-=CCO#"m9<6i"6^Lxк8FR8z38ǊtHJgͭlǟ43	N_#Y)_&J4n*:8EW,k /xuoybZS) {Bt#tv+`St£vKcj<ɼEm>!GM'}Q)?Pskkhc;=ۡUVK\n5QNh>hKOR?6Fn^PqЙq<NeZ.hV^]zy#q{᝹.#E3!RפYr|V8u=c髍59r޷-IbAUk[M.m~īW?5ΐViWs9BJ#
(PzM4Q1X{"<w3VE6$hLx-e4;'Lk bv}͚Cwg[y 6u@m9z1o!8J%0b4f;$| rӶJǾMċIfGu*|sXa,	Uu}ݯmƭ;)Tq$MXO'b[Q:&.	F I2cπlSW$kQGϜ~(A\DN^%G0+]*!)	굏ZW!{gXJLgӉ;Kߤ-)H2R,X]ʃ`Bڥk_?q7g.R1IXSTH*fi-ܢ+<,{#7O|TMpW~쭐T::'<+ 0~ m2Ɔ@i}(z0_zyyDhsWnxנͺ/djf^!<ciHD>d;1ջ_ܠEce&(Q?`]IP@Mvpl+UA6ZpD`OuM(CVeP_Sב%
r#2cso9Û/̟oH?gcK,»K?fpe/ԓyq^w;9rP^
@8	#y5ūƖrZ7cAf'qܫt!ArJ<f03IJ(
^1薏G]v"ݐa{PMXHuIaSO5ҁ}$閅u0r'5-ks&CcTX;Z2R\#F\2SgН4QM$Q O~.
"dH99ηp,#Zh/dyp]THݹ[	uQ:gRP|N]ɢlL]}gS4*Ix넧ftТ;dQ"|VRčh&w8E;ʹ8wi.F18m@؏O<ɘ/ګJ>Zds;_uU%~N t/SqX0Nvbn= oY&YŨ=)eLMn3_'G?3@k9,4%CRb~ZaUfo	,Ӓ-ZEtGI򺞣3cbTn@&T;jV+--n	k	R:˜BYE1b6sHk
zW jDgFux)hO">q";.W0/?|ìFϟ`.3:HajnBب\stJRsIgӛ$~D6	elyC}ɹ(toVaG{_[zox0cjzЛJK+N>Vj4Y7(L05q9zhzi5B-(vyzݥ7]	<CSO١|Swl? G|@B}X{8Ove1#9sD"*KPץ\.6L+<X{m[p2vݵ)r+6 wNjW'iCq2c$206B1,18qv
\6m0?M fxuF{?mX;4+4_	%Ez$wtM.J
浽Cyp~*@'-"LcQ
3R:~5d}Wxiw2LN x  jAAl((kO҃nDl_&AMVG=濭D`_m >9XF:rTǜ&=2|,#dvBG$U8VvG-g^(M1+De|Ǒ+6,UFN{_\ECaS [^Ԩ!b*WAӼC%ƤDbee3!HT!cm^>įwr:r {N>U!ʦ`Pö~h^Ǳl7<=*.ծx`.b㣆=Q9&5*n}3WؗbY簍!)~)  UE:pl+B%kY̔VT"s
`<=Ė[Ŝ4U!8xj$Ph)#ly|Sܰ(᪮)K=I:וhA,kߵ7-%]Xp*7\?QMR[%Q<4)@<]o[t>BY/yP'7`}Z^#ӐmHV{2Pn!5η6JK$z*'iUL7%K]ەK/iӒfJFishI_fdD}'u\ak̕뼹 OgYeu#1oE>qZWTa@`ĺoLEidIAp[&;ӞW`m8!Z|"i`<V]9.FL4ۭ2 pG>geי'~uĒn-;e.oJQ=7*
O)\>S^PE Ϡ4ʇQ~6Qĳ84̉WY?ŕ"=T3*fv{A6SA%w".F_lHnTܯƿ1ٷ*'ק@ż
mVmxty*x%5ӛ	]8Apq
\bOХkT+bY}E575r^ 2`+/g,y,d$ѭ	&jPKjxZCLc6"fJG{ªsjXzf&ʑvVguH\?[ mtn(QDG4^.a箠,@eQd3Knrb) ;p01FlK~Ód}w!{sk.1cwoHRScLR\ jd]hj,Q:`V8b~6ױwYntslRKsZsU?IEA0SY
GX2F_-6+ e}O`n$,x⊚ȶ*{r'GM!~GpVCouIhZaBԭzNUPߡ*V/:&֏M:Ju=ʙ<{G-qSph^(\7
ŀe7C(PMo@v;0,7iCfεN!fsۋaMWֺ)}[%>a?-	yW;5axԫ&}r>kc0JJ	 շj?&WB-=r`yI3ABrƜ6 |
%45IN)N$PF̊cc/xEz]|5FcNd[ -szB&%!PQlH9ע˴], u|al[ؕ+i`2A_hBVݹHҤoI/ 1X#,Ҧ۪jWk]'Ky+[;D19Y2-K ktǁ0uÔ	{Ìg9)/B|vK$g=fWXgzɢWl{կOkbLߔ:H[7<Blc@onRNmo1#|$(Eɂ#Y[W@hrE>/;˨#)}uD͟&ѽ(9fJ!|z)<beDh#񛫎X#@X=_hp#}0OdepRt3	^(?=S	ȹTYm0@;iS?U˩^+5'!)zN7v("O'P9^:qȿ#."hgҰԣqӵU:i_3խH\ʡI;tĘ4w%T<y3(j"'`_mu_Iqw`S蛿=DǭsaE	^2fzX:gU*wɶ9A5ڟm!{d'U\V6ē9xwFbi$>ZvtR΃DR?[ZZC3 <$Fn/a7ZeLkJCkyboMT̺l>%O%.8ދֆTvJ]E+0Mp< 1m>GߟÍ~R8B@KD~<C Hx:Ov$r86tiLN|+2M/L&C3˼X~L4ٓ2Q_DTUd]
}1APYi8
U4-qqIMyq.*\"^|CKB[r:mx)pɡsuÃ*k2dpX>Fq\SiA|ލTL
MojZ#/W!aroH KAR&GYyŅOKov}RB6c07'hinŴ=vv}BƜ\dB3$x8}.<4k_`Tr_lOۤ"YqigEeR`yNH-;SvlS{5mW7zzfPq5JBt
j$%/9w*윴s/8Q?V(CXE\=i_׶3Dɱ&<"+;1TY e@ϣ&N5# +Nuc5՝F@@L:z.j>j?k`(Fn=e*"bGU]*逸ĆQÄ|mXS(v^,&Ґ˔u*d>߯X#(ѧ0Qo,FN*q|3{>9enmty)3q]8[duH|g{|1=K#lMIXq&8cMGbsFE`U4ΏٔʺHhow0$cdn+}3%(pKBk,m	ˁ7=ofCUQǀ1+/ߺ2h\V=Uk_夿κ
A2]Ds4Z𖦼l(e$JR.QZUםNy%3>[) TsG~A4$)mS}598`}Ggvݪ닓bzy)'a1bM\E΄^!b3䓂,,, ZGϣYDRv $ը&]>9jUKcGl:zݞfƞQ#IѢWqE}"LA2_.n:\^au{)6ë/@L]ߥHً>~?WӠEt%.Ѣ^RfIzhΐ.;_t	  ֳw7Bn~fϪM5x+J(-gO
]sQ&"aV/8Z0UNb'6%1Fp{eO9޲CT0?#<u4OUpTVOJtj䲪LpM)od1@h*WkaZZi/pӛZ?l@IM,T	\ͅ!ŴAbDܷ5?ӎ4@[![)Y	r;ڜ]:ͬ-s qԄ r
C!9	~^<^DW~Oԃ`GÇ><oWLF27e| ~YhDYa[Դ/vwЮ[P=L^uhߴ"N!.S*		92P47Mr B #iĈF[xi$L{5!{@ξXf+.'ް%A&6wK{d91X$6-܋hV<`Q6ҊY'_
g˩	CJˡ6pKVxR?JywPP8c:xgzbP?wIDJy;k D-T,C<\fg7+a#'y'V%ჾI~!e|HmkE4Sݚj"
 "VnP]7X<±Oju}ns%l:E0ir-JC81gx;2r;t'6cRN
3_P̢ͥ0-tISmW-(AHfַ2wI:ltac~ؕ=d;+ H0zx`TIGER2 TIGER 1.3.6.1.4.1.11591.12.2 TIGER192                       9	        d   @          h      `                d   @              0)0	+G  $                  	        d   @       LICENSE=GPLv3+ crypto gcry_tiger                                                                               	  ,        	  -                                              	              
        0     6              =   |   0     U              f              m                               0   0      grub_mod_init grub_mod_fini _gcry_digest_spec_tiger2 memcpy _gcry_digest_spec_tiger _gcry_burn_stack memset grub_md_unregister grub_md_register _gcry_digest_spec_tiger1                                                     	            !    3    :            X         k    	    	    	    	    	    	    	    	    
    	
    
    
                               0     4     <     D     H     L     P     `     |                          .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   
                    	   @       4-                %             X
                     -      2       X*  -                 @             *                    <   	   @       <.                 F             4+                    V             C+                     [              C+                    d              J+                                  X+  0              	              ,                                  .  m                                                                                                                                                                      boot/grub/i386-efi/affs.mod                                                                         0000600 0001750 0001750 00000013224 13417732100 0014302 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UщS9t%x@X?ˀXB[]US]C@   Xs@Z5    1]USP@iɀQ k< ?2   1[]UWVS   ]E    3uMC1҃   O	      P     Sǃ          1҉ǉ       x@    ;     RPh   j h8     1҃  t1RP    =     t1   E   
   GWP1ۋPj    11)1SQ    t1RP    =     [1e[^_]UWVSH  E h   uǅ     uǹ7   uPjh    UuʋEx t:h   tE7   ߋpuSjh   Uu   P^V1P   PEj j   @ t1RP    =     
  ǅ    ;     4  ff   1QPh   j  h8      t1RP    =     c  E h      sECMv   UV{2         s   =   t*w   =   =t   =               CR1Vh    j h8      t1RP    VOt6S8uSRPUu1ۋu?
SXe[^_]U1҉S]K@A$j j    RPh   uusssHsDAPA   ]UWVS(uE      eMU܉ȃEǉȃP   UPSW1j j   v t1WV    =     u!ED ED PuSBM  Vh   h   h7  h   S>:u/1e[^_]UWVS uj]}j WE؃}	ЃE؍FxVEsWue[^_]UWVS8h   E  E    1E    PSjj j uuu =     k  Pjh#   S7  C-  uh    *  E    s1ҊMPWfE   eufj j  t1RPu     u              ?          M|   uq11F9ruXE䉃   Eԉ   G[C       CCCRh   WP<$]E}EU؃U M܉Ѓ	o    tuPPh'   j	S<$1e[^_]UWVS8EE     5    u5    spU1PRjfj h     Uf  t1WV    Uԃ=     t 5    $    '}5    $1e[^_]UWVS   Eu5       @R R1҆h   j h8       t1RP        uW}v   D?PtU      5    $    e[^_]UWVS85    E    E@    QQjh4  Ph  EPRuU E=     UuFH׃uF8    N4ƹ7   PEX@@    @    1-9tPSX5        e[^_]UVSE5    E    EEEE tRQQjh4  h  pEPVu =     uERPh1  uE9tPSX5        e[^]Uh    h    E    Uh    . .. Symlink: `%s'
 affs fs/affs.c DOS not an AFFS filesystem             J  g    2   |
      	  LICENSE=GPLv3+  fshelp affs                                                                              "                                                        	               3              @              M              \              h              s                                                                                                                                                           grub_mod_init grub_mod_fini grub_fshelp_find_file grub_strncmp grub_memmove grub_disk_read grub_dl_ref grub_errno grub_memset grub_fshelp_read_file grub_fs_list grub_zalloc grub_malloc grub_real_dprintf grub_error grub_list_remove grub_free grub_dl_unref grub_list_push  F     O     V     [                  d    m                +    M            D    M    l    [    |                +    i                                        I    u                            j    o    }    	    	    R	    b	    i	    u	    }	    	    	    	    	    
    &
    2
    7
    ?
    D
    ^
    c
    k
    
    
    
    
        F    K    S    X    r    ~              
              *    1    6    ;    W    l              
                                                  $                                  $      .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   -                    	   @         H  
            %      2       a  >                 8               (                  4   	   @         8   
            >                                 N                                 S                                  \                                                       
         	                                               $  e                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/gcry_twofish.mod                                                                 0000600 0001750 0001750 00000110770 13417732100 0016076 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      ȏ      4     (   UWVS]EKSsM  e1U1USue1U1MK1MK1MK1M䋰  1uK	s
{U1s1s1s3  1s[11ߋ   343   ӋU3  3   U3   U3   U3       1ωu1M؋U؉   33   3   3   3   3     4u܋U1U܋U  M܉]1Uuы   3ՋM3   ҉3   3   3   3     1}  ʉ]1}؉׋M   343   3   3   3   3     <3}M1MM  Mu1M܋]܉   343   ً]3   3   3   3   x  |  1ыU؉}1U؋]؉   343   3   3   3   3   <2t  4:uup  ]1]M}1u܋]܉ߋ   34ދU3   3   3   3   3   <3ul  1ˋh  M1u؋U؉   343   3   3   3   3   d  <1}}܋U1UM`  u1}܋}܉ы   34ՋM3   3   3   3   X  3   }M1}؋M\  1ڋ   343   3   3   3   3   <3T  4;uu܋M1MMP  }1u܋]܉   343   ً]3   3   3   3   <1uL  1ыH  U1u؋]؉   343   3   3   3   3   D  <2}]1]}M@  u1}܋}܉ڋ   34ދU3   3   3   3   3   }<  1ˋ8  M1}؋U؉   343   3   3   3   3   <14  9UUu1U0  M}1uU׋   ҉343   3   U׋3   3   3   1(  ,  1ً]1މҋ   3<3   Ӊ3   ڋ3   3   3   ]$  3U]   3   ʉ}}___3  O_u_O  1M1uu_O	O
_3  GЈWGWE$   [^_]UWVS UEzZ}   e1]1]Z1]1}zZ}e1]Z1]Z1]܋  1}z	Z
M}䋸  e1]Z1]Z   1]343   ˋM3   1}3   3   3   $  ߋ   1]MZrM}؋(  1rR113  1]؉   33   ʋM3   3   3   3   u,  3}ω]܉1uu܉ىӋ   33   3   3   3   3   0  4  ىMM1MMu؉M؋M1u؉ы   33   ʋM3   3   3   3   48  <  1}ˉU1}܋   34׋M3   3   3   3   3   D  ׋@  UM1MMM؋Uu1M؉֋}ʋ   343   ʉ3   щ3   3   3   <L  ΋H  1ً]ɉu܉1]U܋   343   3   3   3   3   T  ߋP  ]U1UMU؋]u1U؉ދ}Ӌ   343   Ӊ3   ډ3   3   3   \  ׋X  1ʋMu܉   1Mʋ]343   3   3   3   3   d  ϋ`  M]1]M]؋Mu1]؉΋}ً   343   ى3   ˉ3   3   3   l  ߋh  1ӋUˉu܉   1UӋM343   3   3   3   3   t  ׋p  UM1MMM؋Uu1M֋}ʋ   343   ʉ3   щ3   3   3   |  ϋx  1ً]ɉu܉   1]ًU343   3   3   3   U3       3}މuω   1U҉u41u䋴   1u]ҋ   1u3   3   ]3       މuu1MM]M1u܋u܉   33   3   Ӊ3   3     3     u1ʍ<ʉ}1u]   343   3   3   3   ]3   3  <u  }  ^^]V3  MԋMV1^}VɈ^3  V	ʈNV
NM3  M1ωFFFVE$    [^_]UWVS   ,MuUA=  =    u              =        o=  t$     ]䊘-    ]EE E E B]]t.  -  0]䊘D  0]]2    0E]Bt+    0]䊘  0]犘    0]0EBt+    0]䊘  0]犘=    0]0EBt+    0]䊘F  0]犘f    0]0EBt+    0]䊘<  0]犘[    0]0EBt+    0]䊘7  0]犘O    0]0EBt+    0]䊘  0]犘    0]0EBt$     ]⊘-    ]EE E E B	]]t.  -  0]⊘D  0]]2    0E]B
t+    0]⊘  0]折    0]0EBt+    0]⊘  0]折=    0]0EBt+    0]⊘F  0]折f    0]0EBt+    0]⊘<  0]折[    0]0EBt+    0]⊘7  0]折O    0]0EBt+    0]⊘  0]折    0]0E߃ X&  Bt$     Mފ-    MEE E E BMMt.  -  0MފD  0M݊M2    0EMBt+    0Mފ  0M劈    0M0EBt+    0Mފ  0M劈=    0M0EBt+    0MފF  0M劈f    0M0EBt+    0Mފ<  0M劈[    0M0EBt+    0Mފ7  0M劈O    0M0EBt+    0Mފ  0M劈    0M0EBt!     E܊-    M
E 1E JEلt*  -  0]܊D  0]ۈ2  2  ]Jt(    0]2      0]0MJt(    0]2  =    0]0MJt(    0]2F  f    0]0MJt(    0]2<  [    0]0MJt(    0]27  O    0]0MJt(    0]2      0]0Mى1ɉUԊU2U2  U2  U2  U<  2{U2  U  1׉  1ǉU<  2  U2  U2  U2  U<  2  U2  U2  U2  <       UB  2B  2B	  2BȊB  u  2B  2B  23  B  2B  2B
  2B3  Bu  2B  2B  2B3  Bg  2B  2B  B2Z  2B  2B  2B  Z3  gۊ  2Zۊ  2Zۊ  2Z3  Zۊ  2Zۊ  2Zۊ  2Z3       B  2B  2B	  2BȊB    2B  2B  23  B  2B  2B
  2B3  B  2B  2B  2B3  B  2B  2B  B2Z  2B  2B  2B  Z3  ۊ  2Zۊ  2Zۊ  2Z3  Zۊ  2Zۊ  2Zۊ  2Z3      B  2B  2B	  2BȊB    2B  2B  23  B  2B  2B
  2B3  B  2B  2B  2B3  B  2B  2B  B2Z{  2B  2B  2B  Z3  ۊ  2Zۊ  2Zۊ  2Z3  Z{ۊ  2Zۊ  2Zۊ  2Z3      B  2B  2B	  2BȊB    2B  2B  23  B  2B  2B
  2B3  B  2B  2B  2B3  Bv  2B  2B  B2Z  2B  2B  2B  Z3  vۊ  2Zۊ  2Zۊ  2Z3  Zۊ  2Zۊ  2Zۊ  2Z3      B  2B  2B	  2BȊB  J  2B  2B  23  B  2B  2B
  2B3  BJ  2B  2B  2B3  B  2B  2B  B2Z  2B  2B  2B  Z3  ۊ  2Zۊ  2Zۊ  2Z3  Zۊ  2Zۊ  2Zۊ  2Z3     $  B  2B  2B	  2BȊB    2B  2B  23  B  2B  2B
  2B3  B  2B  2B  2B3  Bx  2B  2B  B2Zk  2B  2B  2B  Z3  xۊ  2Zۊ  2Zۊ  2Z3  Zkۊ  2Zۊ  2Zۊ  2Z3  (  ,  B  2B  2B	  2BȊB  E  2B  2B  23  B  2B  2B
  2B3  BE  2B  2B  2B3  B  2B  2B  B2Z}  2B  2B  2B  Z3  ۊ  2Zۊ  2Zۊ  2Z3  Z}ۊ  2Zۊ  2Zۊ  2Z3  0  4  B  2B  2B	  2BȊB    2B  2B  23  B  2B  2B
  2B3  B  2B  2B  2B3  B8  2B  2B  B2ZK  2B  2B  2B  Z3  8ۊ  2Zۊ  2Zۊ  2Z3  ZKۊ  2Zۊ  2Zۊ  2Z3  8  <  B  2B  2B	  2BȊB    2B  2B  23  B  2B  2B
  2B3  B  2B  2B  2B3  B  2B  2B  B2Z2  2B  2B  2B  Z3  ۊ  2Zۊ  2Zۊ  2Z3  Z2ۊ  2Zۊ  2Zۊ  2Z3  @  D  B5  2B  2B	  2BȊB    2B  2B  23  B5  2B  2B
  2B3  B  2B  2B  2B3  B  2B  2B  B2Z  2B  2B  2B  Z3  ۊ  2Zۊ  2Zۊ  2Z3  Zۊ  2Zۊ  2Zۊ  2Z3  H  L  B  2B  2B	  2BȊB  7  2B  2B  23  B  2B  2B
  2B3  B7  2B  2B  2B3  B  2B  2B  B2Zq  2B  2B  2B  Z3  ۊ  2Zۊ  2Zۊ  2Z3  Zqۊ  2Zۊ  2Zۊ  2Z3  P  T  B  2B  2B	  2BȊB    2B  2B  23  B  2B  2B
  2B3  B  2B  2B  2B3  Bl  2B  2B  B2Z  2B  2B  2B  Z3  lۊ  2Zۊ  2Zۊ  2Z3  Zۊ  2Zۊ  2Zۊ  2Z3  X  \  BC  2B  2B	  2BȊB  0  2B  2B  23  BC  2B  2B
  2B3  B0  2B  2B  2B3  Bu  2B  2B  B2Z  2B  2B  2B  Z3  uۊ  2Zۊ  2Zۊ  2Z3  Zۊ  2Zۊ  2Zۊ  2Z3  `  d  B7  2B  2B	  2BȊB    2B  2B  23  B7  2B  2B
  2B3  B  2B  2B  2B3  B&  2B  2B  B2Z  2B  2B  2B  Z3  &ۊ  2Zۊ  2Zۊ  2Z3  Zۊ  2Zۊ  2Zۊ  2Z3  h  l  B  2B  2B	  2BȊB    2B  2B  23  B  2B  2B
  2B3  B  2B  2B  2B3  B  2B  2B  B2Z  2B  2B  2B  Z3  ۊ  2Zۊ  2Zۊ  2Z3  Zۊ  2Zۊ  2Zۊ  2Z3  p  t  B  2B  2B	  2BȊB    2B  2B  23  B  2B  2B
  2B3  B  2B  2B  2B3  BH  2B  2B  B2Z?  2B  2B  2B  Z3  Hۊ  2Zۊ  2Zۊ  2Z3  Z?ۊ  2Zۊ  2Zۊ  2Z3  x  |  B  2B  2B	  2BȊB  ^  2B  2B  23  B  2B  2B
  2B3  B^  2B  2B  2B3  B  2B  2B  B2Z  2B  2B  2B  Z3  ۊ  2Zۊ  2Zۊ  2Z3  Zۊ  2Zۊ  2Zۊ  2Z3      B  2B  2B	  2BȊB    2B  2B  23  B  2B  2B
  2B3  B  2B  2B  2B3  B0  2B  2B  B2Z[  2B  2B  2B  Z3  0ۊ  2Zۊ  2Zۊ  2Z3  Z[ۊ  2Zۊ  2Zۊ  2Z3      B  2B  2B	  2BȊB    2B  2B  23  B  2B  2B
  2B3  B  2B  2B  2B3  B  2B  2B  B2Z  2B  2B  2B  Z3  Tۊ  2Zۊ  2Zۊ  2Z3  ZTۊ  2Zۊ  2Zۊ  2Z3      B  2B  2B	  2BȊB    2B  2B  23  B  2B  2B
  2B3  B  2B  2B  2B3  B#  2B  2B  B2Z  2B  2B  2B  Z3  #ۊ  2Zۊ  2Zۊ  2Z3  Zۊ  2Zۊ  2Zۊ  2Z3      1Ɋ]2E2  ؊E  _]22  ؊E    ]22  ؊Eߋ    ]22  ؋       ]B	Ju񩊀  2B؊  2  J3  B
gɃ  2B3  Bu  2B3  B  2B  2Bȋ  3  JgɊ  2J3  JɊ  2J3       B	J񳊀  2B؊  2  J3  B
  2B3  BɃ  2B3  B  2B  2Bȋ  3  JɊ  2J3  JɊ  2J3      B	J  2B؊  2  J3  B
Ƀ  2B3  B  2B3  B{  2B  2Bȋ  3  JɊ  2J3  J{Ɋ  2J3      B	J񣊀  2B؊  2  J3  B
vɃ  2B3  B  2B3  B  2B  2Bȋ  3  JvɊ  2J3  JɊ  2J3      B	JJ񚊀  2B؊  2  J3  B
Ƀ  2B3  BJ  2B3  B  2B  2Bȋ  3  JɊ  2J3  JɊ  2J3     $  B	  2BȊB  J  x23  B
  2B3  B  2B3  Bk  2B  2Bȋ  3  JxɊ  2J3  JkɊ  2J3  (  ,  B	JE䊀  2B؊  2  J3  B
  2B3  BE  2B3  B}  2B  2Bȋ  3  JɊ  2J3  J}Ɋ  2J3  0  4  B	Jъ  2B؊  2  J3  B
8Ƀ  2B3  B  2B3  BK  2B  2Bȋ  3  J8Ɋ  2J3  JKɊ  2J3  8  <  B	J  2B؊  2  J3  B
Ƀ  2B3  B  2B3  B2  2B  2Bȋ  3  JɊ  2J3  J2Ɋ  2J3  @  D  B	J5  2B؊  2  J3  B
Ƀ5  2B3  B  2B3  B  2B  2Bȋ  3  JɊ  2J3  JɊ  2J3  H  L  B	J7  2B؊  2  J3  B
Ƀ  2B3  B7  2B3  Bq  2B  2Bȋ  3  JɊ  2J3  JqɊ  2J3  P  T  B	J슀  2B؊  2  J3  B
  2B3  B  2B3  BlɊ  2B  2Bȋ  3  JlɊ  2J3  JɊ  2J3  X  \  B	J0C  2B؊  2  J3  B
uɃC  2B3  B0  2B3  B  2B  2Bȋ  3  JuɊ  2J3  JɊ  2J3  `  d  B	J7  2B؊  2  J3  B
&Ƀ7  2B3  B  2B3  B  2B  2Bȋ  3  J&Ɋ  2J3  JɊ  2J3  h  l  B	J  2B؊  2  J3  B
Ƀ  2B3  B  2B3  B  2B  2Bȋ  3  JɊ  2J3  JɊ  2J3  p  t  B	J񔊀  2B؊  2  J3  B
  2BH3  B  2B3  B?  2B  2Bȋ  3  JHɊ  2J3  J?Ɋ  2J3  x  |  B	J^  2B؊  2  J3  B
  2B3  B^  2B3  B  2B  2Bȋ  3  JɊ  2J3  JɊ  2J3      B	J񋊀  2B؊  2  J3  B
0Ƀ  2B3  B  2B3  B[  2B  2Bȋ  3  J0Ɋ  2J3  J[Ɋ  2J3      B	J񄊀  2B؊  2  3  B
  2B3  B  2B3  B  2BB  2Bȋ  3  JTɊ  2J3  JTɊ  2J3      B	Jߊ  2B؊  2  J3  B
#Ƀ  2B3  B  2B3  B  2B  2Bȋ  3  J#Ɋ  2J3  JɊ  2J3  É  1ۉ  j/e[^_]Uh    E    Uh    $       ug{vȚJӀxkE}8K25ؘ7qlC0u7&H?^к0[T ߼#m[=Y]҂c.ٵQ,|sLTt6aQ8:Zs,`%blNBkS|j('敽E$F;fpʕV׸Ã wúwo93@b+qyy	$A:عŚMD~چzf=pҳA{r1'S> 3`&_\v*IR!_ē
ّŅ9I-O1;G#mFN>-idH*Oe/x\Xz՘WKgZd(c?)<L<hDUMC}iW).tYĨ
r~nG"4X5j4n"Phe+@Rܻ2/a!P] o%6BVJU^	 @My>|7n0`[!BEY)R
(P4hc{<x.\=z8pW"D]9rGQ	$Hm3fKa6l#FU2d,X-Z%Je+V*T:two&L}?~'Nu/^5jCAIisOq_1b;vgkS @My>|7n0`[!BEY)R
(P4hc{<x.\=z8pW"D]9rGQ	$Hm3fKa6l#FU2d,X-Z%Je+V*T:two&L}?~'Nu/^5jCAIisOq_1b .Sj/4TE\k0K5UF$]l1+Ls6͂VbGO%^'fm֜y2h,Z)"M`{;t7oWcܬH
PBx&e_(!Ygnz:	Aî3Di-RJ[*#Nar=|<}u>8?vp~X dw@9IQCqȡ u2!C  ɳ{+J	kkE}8ҦK&&W<<2RR7{{q7[[GG0<$$QQƺJJHp?uu^Һ }}1ff[::YY    ͝m,++]R;;պdd؄__,,,'11e*sssL_yyTAkkKKtiSS6Q86**Ľ""Zý`xHHbLLlwAAB$|c]]("66'ggDD$-??F;rrplTTL))5O䌌Yʦ;hhM (88.VwXXo
~@Ppp0+nnny=		4aaWWA:d%%ݯEEߗ\~X55zCCf77@=h̴]22qVVr`:ѿccS44>B3||&_==סv*Ia!s?ٵmmŮxx9mřͤvv>>1gˋG[#``ݰjjMMN-|UUHZ~~O!!ze&^^xfZZ\KeeXNbbE@@W33g^d}OOjc/ttu

\\t<3--00I..IIhrFFDUwwبMC((i))y.JY
BBnG//49##5bj녅"ɡqq𐐛SዋNNo>ooTRۻ{/ii99a#PDllF''%vІPPVU	Q%zz99٩gqRRevEEKKࠀZZfxjjcc**68T  Cb5$AAwl((C2u{{7&pDD~~ZHzжG$$<0祄kkAT``#E::[h=Y!ff1oo>WWc[M.mmكQS]]c|hh;?00֥zz%		5㧧#a鯌:\\s11',v%VV{Nk44SjÙ[[GGk""ȽEnⳳtt/fXXV+^^,,µIIϕ~}} dwm9j||3qqb7q=yQ	>>ܭ??-$vvUU@@xx%%͹MwwUD
PP077ӡ@aa4NNTTlpss*;;RҟA{؈Og1''Fgg'88( HHx`.LLeeK\++ǱoBBRJJ==_Y
:Ia|-!!OBrr;//GH,mF<<W֚>)iOO}d*..Iii/\^zчddե&&K`Z66"(uu?y)--3<yy_Lʖ55XĜCCUMMYY8}33WSSittĭVr~J"bbNX__##94nllDP22]FFrh&e͓ۺւnn+ppP@

u2ߍ))Ls!	ӊ]QQ    o6BJ^2u!C  ɳڋ{+ȞJ	kkE8}Ҧ覷&K&W<<2؂RR{7{7q[[GG<$0$QQƺJJHpu?u^ }}1ff:[:YY    ͼ,m++]R;;ddؠإ__,,'1,1e*sss_yLyAkTkKKiStS6Q6*8*İ""ZýxH`HbLLwAlAB$c]|]"6(6g'gDD-?$?Fr;rlTpTL))5OЌYʸ;hhM(8 8.Vw̙XXo
~Pp@p0n+nn=y		4aaWWA:d%%ݯEEߤ\~X55zCCf77@h=̴]22qVVr`:cc4S4>B|3|&=_=סv䔁*Ias!ė?mmxxm9vv>>g1G[`#`jjMMN|-ޝUUZ~H~!O!z&e^^fZxZKe\eNbXbE@@3W3g^}OdOjc/ttu

\\t3-<-00I..IIrFhFUwDwبM(C()iy)ّ.ѬJYּ֨
BBn/G/9#4#b5j܅"qqSԋNNo>ooTR{i/i99#aôDlPlF''v%PPVUQ	%zz٩9ِgqqReevEKfxZfݰjc68*6TTC Cb5b$$wlAwC(2u27{ԛ&ppDZH~ZzzЌGG<0$<ATkA#`EE[:h=hY!!1f1>o>Wc[[MM.mQSSc|]c;h;??֥0%z%	55#a#鯀:\s',1'v%vV{{NkS4jęÙ[GkkȽ"Enn/t/f̙XVԋ++^µ,I~~ } ddwm9mjj3|ѡqb7q7=y=Q	Qܭ>-$?-vU؂@x͹%MUDwU

P00ӡ7@@4a4NlpTl*s*R;RA{؈OOg1gF'F'g( 8(x`Hx..LK\eKǱ+ooBRJ_=YY
::Iaa|-|O!BB;r۸G/HH,m,FW<W>)i)}dO}*I.I/i\\^^zЇчdK&``Z"(6"?uy)y3<-3_Ly_ʖX5XĜCUMY8}8W3itSittėVVr~JJ"NXbN_94#9nDPlD]2]rhFr&e&͓Ȟւ+nP@pP܅u
u2ߍL)Ls!s		]Q    o6BJ^u{JkE}K27q0?^[ m]ՠ,sLTt6Q8Z`blB|('$F;pГ wo@+yA:䚤~zf=޳rS>3&_v*I!9ͭ1#N-HOex\XWgdc<hDMCi).Y
nG45j"R/aP%VU	gvx85lCu7&HЋ0T#[=Y󮢂c.Q|륾a:s,%NkSjEf̕VÎϿw93bqy	$ŹMDpA{1' `\R_
I-O;GmF>id*/zKZ(?)<LڰU}WǍtğr~"X4nPheȨ+@2!] o6BJ^TWOFISH128 TWOFISH                      X  	                                     X  	                  LICENSE=GPLv3+  crypto gcry_twofish                                                                            0Q           PQ  !                                              	              
               4              E              Z   0   0     t       0      grub_mod_init grub_mod_fini grub_cipher_unregister _gcry_burn_stack grub_cipher_register _gcry_cipher_spec_twofish _gcry_cipher_spec_twofish128    	    T                                                        +    1    :    C    I    ^    d    m    v    |                                                                *    0    9    B    H    ]    c    l    r                                                
            "    7    =    F    O    U    j    p    y                                                                !    J    P    Y    e    k                                                                        (    1    7    L    R    [    d    j                                                                     )    /    5    J    P    Y    _    e    z                                                            
                %    >    M    Y    e    r    x                                                         *    N    Z    f    v                                                        )    5    J    V    b    o    y                                                +    7    C    O    [    j    v                                                    $    .    :    F    R    _    n    z                                                +    7    D    S    _    k    x                                                      #     /     ;     H     m     y                                                       !    !     !    -!    <!    H!    T!    i!    u!    !    !    !    !    !    !    !    !    !    !    !    ""    ."    :"    J"    V"    b"    n"    z"    "    "    "    "    "    "    "    "    "    "    	#    #    *#    6#    C#    M#    Y#    e#    q#    ~#    #    #    #    #    #    #    #    #    $    $    #$    /$    >$    J$    V$    c$    r$    ~$    $    $    $    $    $    $    $    $    $    %    %    %    &%    3%    B%    N%    Z%    g%    %    %    %    %    %    %    %    %    %    %    &    &    '&    3&    ?&    L&    [&    g&    s&    &    &    &    &    &    &    &    &    &    &    '    '    '    A'    M'    Y'    i'    u'    '    '    '    '    '    '    '    '    '    '    (    (    (    ((    =(    I(    U(    b(    l(    x(    (    (    (    (    (    (    (    (    )    )    )    *)    6)    B)    N)    ])    i)    u)    )    )    )    )    )    )    )    )    )    )    
*    *    !*    -*    9*    E*    R*    a*    m*    y*    *    *    *    *    *    *    *    *    +    +    +    *+    7+    F+    R+    ^+    k+    z+    +    +    +    +    +    +    +    +    +    +    ,    ,    ",    .,    ;,    `,    l,    x,    ,    ,    ,    ,    ,    ,    ,    ,    ,    ,    -    -     -    /-    ;-    G-    \-    h-    t-    -    -    -    -    -    -    -    -    -    -    .    !.    -.    =.    I.    U.    a.    m.    |.    .    .    .    .    .    .    .    .    .    .    /    /    )/    6/    @/    L/    X/    d/    q/    /    /    /    /    /    /    /    /    /    
0    0    "0    10    =0    I0    V0    e0    q0    }0    0    0    0    0    0    0    0    0    0    1    1    1    &1    51    A1    M1    Z1    1    1    1    1    1    1    1    1    1    1    1    2    2    &2    22    ?2    N2    Z2    f2    {2    2    2    2    2    2    2    2    2    2    2    3    3    43    @3    L3    \3    h3    t3    3    3    3    3    3    3    3    3    3    3    4    4    4    04    <4    H4    U4    _4    k4    w4    4    4    4    4    4    4    4    4    5    5    5    )5    55    A5    P5    \5    h5    u5    5    5    5    5    5    5    5    5    5    5    
6    6     6    ,6    86    E6    T6    `6    l6    y6    6    6    6    6    6    6    6    6    7    7    7    *7    97    E7    Q7    ^7    m7    y7    7    7    7    7    7    7    7    7    7    7    	8    8    !8    .8    S8    _8    k8    {8    8    8    8    8    8    8    8    8    8    8    9    9    "9    .9    :9    O9    [9    g9    t9    ~9    9    9    9    9    9    9    9    9    :    :     :    0:    <:    H:    T:    `:    o:    {:    :    :    :    :    :    :    :    :    :    :    ;    ;    ;    );    5;    A;    M;    Z;    i;    u;    ;    ;    ;    ;    ;    ;    ;    ;    ;    <    <    &<    2<    ?<    N<    Z<    f<    s<    <    <    <    <    <    <    <    <    <    <    =    =    =    *=    6=    C=    h=    t=    =    =    =    =    =    =    =    =    =    =    >     >    )>    6>    K>    X>    g>    t>    >    >    >    >    >    >    >    >    ?    ?    ?    +?    :?    G?    \?    i?    x?    ?    ?    ?    ?    ?    ?    ?    ?    
@    @     @    5@    B@    Q@    ^@    m@    y@    @    @    @    @    @    @    @    @    A    A    *A    7A    FA    SA    bA    nA    {A    A    A    A    A    A    A    A    A    
B    B    ,B    ;B    HB    WB    cB    pB    wB    B    B    B    B    B    B    B    C    C    !C    0C    =C    LC    XC    eC    lC    {C    C    C    C    C    C    C    C    D    D    D    2D    AD    MD    ZD    aD    pD    }D    D    D    D    D    D    D    D    E    E    'E    6E    BE    OE    VE    eE    rE    E    E    E    E    E    E    E     F    F    F    +F    7F    DF    KF    ZF    gF    vF    F    F    F    F    F    F    F    G    G     G    ,G    9G    @G    OG    \G    kG    xG    G    G    G    G    G    G    G    H    H    !H    .H    5H    DH    QH    `H    mH    H    H    H    H    H    H    H    H    
I    I    #I    *I    9I    FI    UI    bI    I    I    I    I    I    I    I    I    I    J    J    J    .J    ;J    JJ    WJ    J    J    J    J    J    J    J    J    J     K    K    K    #K    0K    ?K    LK    wK    K    K    K    K    K    K    K    K    K    L    	L    L    %L    4L    AL    lL    {L    L    L    L    L    L    L    L    L    L    L    M    M    )M    6M    aM    pM    yM    M    M    M    M    M    M    M    M    M    N    N    N    +N    VN    eN    nN    {N    N    N    N    N    N    N    N    N    N    O    O     O    KO    ZO    cO    mO    |O    O    O    O    O    O    O    O    O    O    O    P    6P    EP    NP    [P    pP    }P    P    P    P    P    P    P    P    P    P     Q    "Q    7Q    <Q    FQ    LQ    WQ    \Q    cQ    hQ                          0     H     L     P      .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   qQ                    	   @       j  X$              %             Q                   -      2       h                   @             h  `                  <   	   @         @               F             i                    V             i                    [              i                    d              i                                  ,i                 	              ,j                                  X  m                          boot/grub/i386-efi/afs.mod                                                                          0000600 0001750 0001750 00000015260 13417732100 0014136 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UWVS])߉tt
8t @BKu11Ʌt
[)^_]UEp@1US  ]EQUh   j j K8	 t1RP0 t	1dj j h@B 84s  %   = @  	ЈPuS]UVSRSj|j j j jP uPPh    j	9u5{ 1SFAu{D1uׁ{pu΋s(tǋK,   9uve[^]UWVS   ]El     euPPj Ve[^_]UWVSӃ uuuuzL1҉EvO1K,	 t1RPue[^_]UWVS|}E؋EU܋UMԅÉEE։U}ЉEEEEE  1;   rw;   vE   E     E܋H,Eԋ       t19U   r	9E   E1E    LE1}1O}܉ˋO, t1uȋuEȉ}U9urmwu9uvc]+];]v]ЋM؋}uy })Ɖy$}SMu׋UW}VpG       1]U])]  EE}tEȋUDE܋H,Eԋ       t19UEȉUwrE9EsE;     Eԋ       t19UE  r	9E:  Eԃ   EeE    SE~  Eԋ}SU܍   EWj j l}E    E9E   E1@ƋE܋H, t1u};}   w;uv{+];]v]ЋE؋UMP UH$ESMu+EURUPEU؃B     tE  1]U])]uu$  EEuȉ}2uE܋H,Eԋ       t19Uwr9EsES   #  Eԃ1    t1    SEUEu
      E܃@,H   PEuu    I  ESUuȍ   Ej j (  E    EE}ԋEU+      }܋,w   I!!։uw}   M]MuƉ} t1K!]#}M}}L? t1҃ ƋE   9   ;Uu;utz    MEȉ@ t1ME   9vEEEًUPEuj j ~t$uYu   u}} Ew9Ev1uZuEm   E	   e[^_]Eܻ   @,H+];]ЉEv]ЋE؋UMP UP$USuuʋUuU؃B     tuȉEXuE1]U])]tu}1e[^_]UVuS]S@PPCsHsDJ|Vuss  ue[^]UWVSÃD}EċEuUM     E     E     E     Ej j j PWV:    EkU
#RUUá    t\PMPEj j RUSWV tS+E}C E#ËEEËE1e[^_]UWVSÁl  h   uItj j   ǅ    ǅ     </u싽u"1  t </uPh   uPE@%   = @  tPPh   j  PMPj j j Pj j  h  +M@PPPPPPWV   {  1ɉtAAǅ          9spT6fLSf9w)-	u|4ja    C9wȃ	u0xS    ~tG0xJt6v1px3 t@9s4|{sutSSh   j11  Puh   j j @,H t1WV e  E@%   =   mu[^h   j;E   D$uj        ZYMj j VSj j  tS   3 ;/u<h   uj j vt(SWPh   PuS؋P t  e[^_]UWVS  E@ #   E@WEp   %   =   tRRh   j^hh  u    Cǹ   Ph   PB|PtEtMP@EЋUԉA4Q8e[^_]U1"   WVSt  ]EtxE|X  PEo3  %   = @  tVVh   j  SSj j j 4Pj j    @8<H    QQj j j TPWV: Z  RpRl1j j j(PC#1ۃȋRP   (,V$Cֈ8 ;Xr_xpP   PPTP(P$P PWV u11떋(@f4Y9wƋ$  tPT$t4R5, 	C    e[^_]Uh    h    Uh    not an AFS filesystem attempt to read past the end of file incorrect direct blocks incorrect indirect blocks incorrect double-indirect block not a directory file `%s' not found too deep nesting of symlinks not a regular file afs                 R  =             LICENSE=GPLv3+ afs                                                               W          q                                                               )              6              D              S              ^              k              |                                                                                                   grub_mod_init grub_mod_fini grub_strlen grub_memmove grub_divmod64 grub_disk_read grub_errno grub_fs_list grub_print_error grub_zalloc grub_malloc grub_error grub_list_remove grub_free grub_strndup grub_list_push   J                    "    1    8            ~        ,        =    v                        Y    b                        !    	    	    B	    
    B
  
  ^
    e
    ^                    M                  	                      _    {  
    	  2    9    J    Y      
  1    8    }    8    K    ^    c    h    x    }                                   .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .modname                                                      4                       	   @       $     	            %      2                          8               (                  4   	   @       D  0   	            >                                 N                                  S                                                  p  
   	         	              L                                  t  \                                                                                                                                                                                                                                                                                                                                                                  boot/grub/i386-efi/gcry_whirlpool.mod                                                               0000600 0001750 0001750 00000060064 13417732100 0016432 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      ^      4     (   U1ɉWVSӁ  41D	DD	D	D		1D		1D	Ac0ɋϋT04Au0ɋϋTptAu1p1p1t@uǅ    84      38  38  nT30  30  d3(  3(  \%   3   3   PL%   3  3  HD%   3  3  @@%   3  3  3@  3@  ?]   M   \38  38  630  30  l3(  3(  d3   3   XT%   3  3  PL%   3  3  H%   3  ]H3  D   M   d38  38  <%   30  30  43(  3(  l%   3   3   `\%   3  3  XT%   3  3  PP%   3  3  L]   Mċ   l38  38  D%   30  30  <3(  3(  4%   3   3   hd%   3  3  `\%   3  3  X%   3  ]X3  T   M̋   438  38  L%   30  30  D3(  3(  <%   3   3   0l%   3  3  hd%   3  3  ``%   3  3  \]Ћ   Mԋ   <38  38  T%   30  30  L3(  3(  D%   3   3   84%   3  3  0l%   3  3  h%   3  ]h3  d   M܋   D38  38  \%   30  30  T3(  3(  L%   3   3   @<%   3  3  84%   3  3  00%   3  3  l]   M   L38  38  d%   30  30  \3(  3(  T%   3   3   HD%   3  3  @<%   3  3  8%   3  ]3  M1ɋDͰTʹ04Au䋕tx8  8  3   3   E3034U30  30  E3(  3(  E%   3   3   EU%   3  3  EU%   3  3  E|%   3  3  E]8  M8  U3   3   t383<%   30  30  E3(  3(  E%   3   3   EU%   3  3  EU%   3  3  E%   3  ]U3  E8  M8  3   3   |3@3DU%   30  30  t3(  3(  E%   3   3   EU%   3  3  EU%   3  3  EU%   3  3  E]8  Mċ8  U3   3   E3H3L%   30  30  |3(  3(  t%   3   3   EU%   3  3  EU%   3  3  E%   3  ]ȋU3  E8  M̋8  3   3   E3P3Tt%   30  30  E3(  3(  |%   3   3   pU%   3  3  EU%   3  3  EU%   3  3  E]Ћ8  Mԋ8  |3   3   E3X3\%   30  30  E3(  3(  E%   3   3   xt%   3  3  pU%   3  3  E%   3  ]؋U3  E8  M܋8  3   3   E3`3dU%   30  30  E3(  3(  E%   3   3   E|%   3  3  xt%   3  3  pU%   3  3  p]8  M8  U3   3   E3h3l%   30  30  E3(  3(  E%   3   3   EU%   3  3  E|%   3  3  x%   3  ]3  M1ɋDͰTʹΉTAu
11ǋ1T@u01ǋT1T@u  [^_]UE]@UWVS   @MuP@.Ǉ             ]t6   ?wPF   VKT@u11҉   ىEU)ʃ?vMMǇ       @ډك?19t   ?wZ   @\@ދE1һ    1u	t)   uu   Ku111Ҁu	th    hG  h    h&   e[^_]U1҉1WVS]   B    D@v&   ?wP   D@ 11҉`   wP   D@ Rj 1   RD@P11҃    VGFщN8N9N:ӈN<ӈN=V;N>F?ue[^_]UMUE]Uh   j uUE    ]Uh        whirlpool_add   0x`#&F##Ƹ~?oL&mbڸ	OnBO!O6l66QYoyyyo0_oom?~RRUR`G'``5evʼ7+ͬV[ql<`0{{{5j55:itGS!{^/.C\m..K)zbK1K]!WծWAW*ATwww7n77V{#ٌF#J jJ5JDOX%X}XϏ)|RU))
Z"P
(
PO]ikkk\.<gsν]4]i] P@݋>|>>-
(gxggSs'N%''AsX2AA,SQ}}}I7ܕnVGp0q#|||fqff{S.K\GEFGG!܄Bԉ-XZu--.cyƿ?8G#Z/ZuZl63f33c\?cc
I89q⨯qqƍ2}dI;prI9I_C1HK[*[q[4>)ȤR&L-&&2d22Y}Jjw3x<3sՀt:'a|¾&4h44H2uzH=HT$zzzd=z_>_a_ =@  hghh4rhA,}u^ɴTΨTMT;v"/D""dcdd*s梿ss$ZH@z]:@@H(@ ÕV+{3MKۡ_a=z==[3̗f        6+nVE++v쳗vvd2(6wltw[C)jwjjPP]PEWLE	E80`00t+?~??UǪUIUYyeejeeihҺ/J^e//N'`_8lpF.MdRM)Mv9ru꼏uu60	$Ky@Yc~6p8>c|bU7bb:wԨM2)R1Ėbb:ţf3%J5%%Y YyYT*r䧷rr9r99LaZL-L^;^e^xxx8p88
cѥWAMCaN/aaB{E!4B!!%֔J<fxCaR"CCǱv;O+$ QQYQ%/Ǽ^m"Omme9h4y5i[~~~$H=$$;v;;K=1>"UDNkJN%NfsQѷ`<x<<|>@5Ԕjog޹&_L,QX},,k\kn9WnnĪn7VܬVEVD^IDDO7!*gTM**
kmֻF#SSQSrWS'X,'ӜNl+Gll1b11t蹇tt	FLC
FFE&	<(DPB[,NX:t::ioii	A-H	$	p୧ppoqTٶg~;.BhW*BB,-´ZUI(uP]((\1\m\k?D"0x`##&F#Ƹ~?o臇L&mb	OOnBO!66l6ئQYoyyyoo0_om?~RRRU``G'`5evʛ7+ͬV[ql<`0{{{55j5:itGS!{^/..C\m.KK)zbK1]!WWծWA*ATwww77n7V{峟#ٌF#JJ jJ5DOXX%X}Ϗ))|RU)

Z"P
(PO]ikkk\.<gs]]4]i P@݋>>|>-
(ggxgSs''N%'AAsX2A,SQ}}}镕I7ܕnVGp0q#|||ffqf{S.K\GGEFG!܄Bԉ--XZu-.cy?8G#ZZ/Zul633f3cc\?c
I89qq⨯qƍ2}dII;prI9_C1HK[[*[q4>)ȤR&&L-&22d2ȰY}Jjw3x<3st:'a|&44h4HH2uzH=T$zzzd=z__>_a  =@ hhgh4rhA,}u^ɴTTΨTM;v""/D"ddcd*ss梿s$ZH@@z]:@H(@ ÕV+{3MK_a==z=[3̗f        6++nVE+vv쳗vłd2(6wltw[C)jjwjPPP]EEWLE	800`0t+??~?UUǪUIYyeeejeih//J^e/N'`_8lpF.MMdRM)v9ruu꼏u60	$Ky@Yc~6p8>c|bbU7b:wM2)R1Ėbb:ţf3%%J5%YY YyT*rr䧷r99r9LLaZL-^^;^exxx88p8
cWAMCaaN/aB{E!!4B!%֔J<fxCCaR"CǱv;O+$ QQQY%/Ǽ^mm"Ome9h4y5i[~~~$$H=$;;v;쫫K=1>"UDNNkJN%fsQѷ`<<x<|>@5Ԕjog&_L,,QX},k\knn9WnĪn7VVܬVEDD^IDᩩO7!**gTM*
kmF#SSSQrWS'X,'ӜNll+Gl11b1tt蹇t	FFLC
FE&	<(DPB[,NX::t:iioi		A-H	$pp୧pݶoqTٶg~;.BBhW*B,-´ZUI((uP](\\1\mk?ǆD"`0x##&F#?Ƹ~Ƈo&Lڸmb	!OOnBO66l6QYoyyyoo0_o~m?URRR``G'`ʼ5evV7+ͬ[q0l<`{{{55j5t:iGS{!/^¸..C\m.1KK)zbK]!AWWծWT*Awww77n7V{F#ٌ#5JJ jJOD}XX%XϏɤ))|RU)(

Z"P
POᱺ]ikkk.\ν<gsi]]4]@ P݋>>|>-
(ggxgSs''N%'AAsX2A,SQ}}}nI7ܕGVp0q#|||ffqfS{\.KGGEFGB!܄ԉʴ--XZu-ƿ.cy?8G#uZZ/Z6l33f3cc\?c
I89qq⨯qƍd2}9II;prIC_1HKq[[*[4R>)Ȥ&&L-&22d2Y}J鰃j<w3xs3:t¾'a|&44h4=HH2uzHT$zzzzd=a__>_  =@ hhghh4rA,괴}u^ɴMTTΨTv;쓈""/D"ddcd*ss梿sH$Z@@z]:@ H(@+ÕV×{3KM۾_a==z=f[3̗        6Ϭ++nVE+vv쳗v2d(l6wtw[C)jjwj]PPP	EEWLE800`0t+??~?IUUǪUYyeeejeҺih//J^e/'N_`p8lF.)MMdRMrv9uu꼏u60	$Ky@Yc8~6p|>cbbU7bw:ԚM2)bR1Ėb:3ţfŔ%%J5%yYY Y*Trr䧷r99r9-LLaZLe^^;^xxx88p8
cѮWAMCaaN/aB{E!!4B!J%֔x<fCCaR"C;ǱvO+$ YQQQ^%/Ǽmm"Om4e9hy5[i~~~$$H=$;;v;K=1>D"U%NNkJN混fsQѷ`<<x<>|j@5Ԕ޹ogL&_,,QX},kӻ\knn9Wn7ĪnEVVܬVDD^IDO7!**gTM*ֻ
km#FQSSSWr,S'XN'Ӝll+Gl11b1tt蹇t	FFLC
FE&	<P(DB[X,N::t:iioi$		A-H	pp୧pⶶoqTٶgГ~;.BBhW*BZ,-´UI((uP](m\\1\k?"D`0x###&F?Ƹ~o&Lڸmb	O!OOnB666lQYoyyyooo0_~m?RURR```G'ʼ5evV7+ͬ[q0l<`{{{555jt:iGS{!/^...C\mK1KK)zb]!WAWWծT*Awww777nV{F#ٌ#J5JJ jODX}XX%Ϗ)))|RU
(

Z"PPOᠺ]ikkk.\ν<gs]i]]4@ P݋>>>|-
(gggxSs'''N%AAAsX2,SQ}}}ϕnI7GVp0q#|||fffqS{\.KGGGEFB!܄ԉ---XZuƿ.cy?8G#ZuZZ/6l333fccc\?
I89qqq⨯ƍd2}I9II;prC_1HK[q[[*4R>)Ȥ&&&L-222dY}Jj<w3xs3:t¾'a|&444hH=HH2uzT$zzzzd=_a__>   =@hhhgh4rЮA,괴}u^TMTTΨv;"""/Ddddc*sss梿H$Z@@@z]: H(@+ÕV{3KM_a===zf[3        6+++nVEvvv쳗2d(l6wصtw[C)jjjwP]PPE	EEWL8000`t+???~UIUUǪYyeeeejҺih///J^e'N_`p8lF.M)MMdRrv9uuu꼏60	$Ky@Yc8~6p|>cbbbU7w:M2)bR1b:3ţf%%%J5YyYY *Trrr䧷999rL-LLaZ^e^^;xxx888p݌
cƥWAMCaaaN/B{E!!!4BJ%֔x<fCCCaR";ǱvO+$ QYQQ^%/Ǽmmm"O4e9hy5[i~~~$$$H=;;;vūK=1>D"UN%NNkJ混fsQ`<<<x>|j@5޹ogL&_,,,QX}k\knnn9W7ĪnVEVVܬDDD^IߩO7!***gTMֻ
km#FSQSSWr,S'XN'Ӝlll+G111bttt蹇	FFFLC
E&	<P(DB[X,N:::tiiio	$		A-Hppp୧ⶶoqTg~;.BBBhW*Z,-´UI(((uP]\m\\1k?"D`0x###&F~?ƸoL&ڸmb	BO!OOn666lYQoyyy_ooo0~m?RURR'```Gʼ5evV7+q[`0l<{{{555jt:iSG{!^/m...C\bK1KK)z]!WAWWծT*Awww777n{VF##jJ5JJ ODX}XX%ϏU)))|RP
(

Z"POi]kkk\.ν<gs]i]]4@ P݋>>>|(-
gggxsS%'''N2AAAsX,QS}}}ܕnI7GVp0#q|||fffqS{\.KGGGEFB!ԉu---XZƿ.cy8?G#ZuZZ/l6333f?ccc\
9I8qqqƍd2}rI9II;pC_1KH[q[[*4R>)-&&&L222dY}Jjx<w3s3t:¾'a|&޽444hzH=HH2uT$zzzzd=_a__>   =@ghhhh4rA,ɴ괴}u^TMTTΨv;"""/Ddddc*sss梐H$Z:@@@z]@ H(V+Õ3{KMa_===z̗f[3        6E+++nVvvvd2(l6wtw[C)wjjjߺP]PPE	EEWL8000`+t???~ÒUIUUǪyYeeeej칺Һihe///J^N'_`p8lF.RM)MMdrv9uuu06$	Ky@cYp8~6|>c7bbbUw:)M2ĖbR1b:f3ţ5%%%JYyYY T*rrr999rZL-LLa^e^^;xxx888p
cAWCM/aaaNB{E!!!4BJ%x<f"CCCaRv;ǱO+ $QYQQ^%/Ommm"h4e9y5[i~~~=$$$H;;;v1K=>шD"UJN%NNkѷ混fsQ`<<<x|>Ԕj@5޹ogL&_},,,QXkk\Wnnn9n7ĪVEVVܬDDD^I!O7M***gTֻ
kmF#SQSSWrX,S'N'Glll+111bttt	
FFFLC	E&<P(D[BX,N:::toiiiH	$		A-pppٶⶶoqTg;~.*BBBhWZ,-IU](((uP\m\\1k?D"x`0###&F~?Ƹo͡L&bڸm	nBO!OO666lYQoyyy_ooo0~m?RURR'```Gvʼ5eͬV7+q[<`0l{{{555jit:GSݬ{!^/m...C\zbK1KK)!]WAWWծAT*www777nV{ٌF##jJ5JJ OD%X}XXϏU)))|R"P
(

ZOPi]kkk֫\.sν<g4]i]]P@ ݋>>>|(-
gggxSsջ%'''NX2AAAs,QS}}}ܕnI7GV0pq#|||fffq̎S{K\.FGGGE܄B!ԉu---XZyƿ.c8?#G/ZuZZl6333f?ccc\
89Iqqqƍ}d2prI9II;C_1HK*[q[[4ȤR>)-&&&L222dJY}j3x<ws3t:|¾'a&444huzH=HH2$Tzzzzd=>_a__   =@ghhhrh4,A^ɴ괴}uTMTTΨv;"""/Ddddc*sssZH$]:@@@z(@ HV+Õ{3ŐKMa_===z̗f[3        6E+++nVvvvd2(wl6[tw)CwjjjP]PPLE	EEW8000`t+???~UIUUǪyYeeeejhҺie///J^N'_`lp8.FdRM)MMrv9uuu06$	@KyYc6p8~c|>7bbbUģw:2)MĖbR1:bf3ţ5%%%J YyYYT*rrr999raZL-LL;^e^^xxx888p
cAWMC/aaaNEB{!!!4B֔J%fx<R"CCCav;Ǳ+O $QYQQǼ^%/Ommm"9h4e5y鄶[i~~~=$$$H;;;v=1K>UD"kJN%NNQѷ混fs`<<<x|>Ԕj@5g޹o_L&},,,QXk\kWnnn9n7ĪVEVVܬIDDD^7!OM***gTmֻ
kF#SQSS񦋮Wr'X,SӜN'Glll+111bttt	C
FFFL&	E<DP(B[NX,:::toiii-H	$		ApppTٶⶶoqg~;.W*BBBh´Z,-IU](((uP1\m\\?kD"0x`F###&~?ƸoL&mbڸ	nBO!OOl666QYoyyy_ooo0?~mRURR'```Gevʼ5+ͬV7[q<`0l{{{j555:itGSೳ{!^/\m...CzbK1KK)!]WAWW*ATwwwn777V{#ٌF#jJ5JJ OD%X}XXRU)))|"P
(

ZOP]ikkk\.gsν<4]i]] P@|>>>
(-gggxSsN%'''X2AAAs,SQ}}}7ܕnIGV0pq#|||fffqS{.K\FGGGE!܄BZu---Xcyƿ.8?G#/ZuZZl6f333?ccc\
I89⨯qqqލ2}dђprI9II;C_1HK㨶*[q[[4)ȤR>L-&&&d222}JYj3x<ws3t:a|¾'&h444uzH=HH2$Tzzz=zd>_a__@   =ghhh4rhA,u^ɴ괴}TMTT;vD"""/dddc*梿sss$ZH]:@@@z(@ HV+Õ{3߫KM_az===3̗f[        6VE+++n쳗vvvd2汩(6wlw[tC)wjjjP]PPLE	EEW8`000t+~???ڪUIUUYyeeeejihҺ^e///JN'_`8lp.FdRM)MM9rv꼏uuu06	$y@KYc6p8~>c|7bbbUw:M2)1ĖbR:bf3ţJ5%%% YyYYT*䧷rrrr999aZL-LL;^e^^xxxp888
cWAMC/aaaN{EBB!!!4%֔J<fxR"CCCav;Ǳ+O $QYQQ/Ǽ^%Ommm"9h4e5y[i~~~H=$$$v;;;K=1>"UDkJN%NNsQѷ混f`x<<<|>5Ԕj@og޹&_LX},,,Qk\kWnnn9n7ĪVEVV܈IDDD^O7!TM***gkmֻ
F#SQSS񥋮Wr'X,S'ӜNGlll+b111蹇ttt	C
FFFLE&	<(DPB[,NXt:::oiii-H	$		A୧pppqTٶⶶog~;օ.W*BBBh-´Z,UIP](((u1\m\\?kD"0x`&F###~?oL&mbڸ	nBO!OOl666QYoyyy0_ooom?~RURRG'```5evʼ7+ͬV[ql<`0{{{j555:itGS!{ל^/C\m...)zbK1KK]!ծWAWW*ATwwwn777V{#ٌF# jJ5JJDOڢ%X}XXϏ|RU)))Z"P
(

PO]ikkk\.<gsν4]i]] P@݋|>>>-
(xgggSsN%'''sX2AAA,SQ}}}I7ܕnVGp0q#|||qfff{Sݯ.K\EFGGG!܄BԉXZu---.cyƿ?8G#/ZuZZl6f333\?ccc
I89⨯qqqƍ2}d;prI9II_C1HK㹶*[q[[4>)ȤRL-&&&d222Y}Jjw3x<3st:'a|¾&͉h4442uzH=HHT$zzzd=z>_a__=@   ghhh4rhA,}u^ɴ괴ΨTMTT;v/D"""cddd*梿sss$ZHz]:@@@H(@ V+{3MK_az===[3̗f        6nVE+++쳗vvvd2(6wltw[C)wjjjP]PPWLE	EE8`000t+~???ǪUIUUYyejeeeihҺJ^e///N'`_8lpF.dRM)MMv9r꼏uuu60	$Ky@򲲅Yc~6p8>c|U7bbb:wԁM2)R1Ėbb:f3J5%%% YyYYT*䧷rrrr999aZL-LL;^e^^xxxp888
cWAMCN/aaaB{E4B!!!%֔J<fxaR"CCCv;O+$ QYQQ%/Ǽ^"Ommme9h4y5i[ߩ~~~H=$$$v;;;K=1>Ι"UDkJN%NNfsQѷ混`x<<<|>@5Ԕjog޹&_LQX},,,kӌ\k9Wnnnn7ܬVEVV^IDDDO7!gTM***
kmֻF#SQSSrWS'X,'ӜN+Glllb111蹇ttt	LC
FFFE&	<(DPB[,NXt:::oiiiA-H	$		୧pppoqTٶⶶg~;.hW*BBB,-´ZUIuP](((1\m\\k?D"O#RoyҦ65{`WK.J7wk
)Xg>]ؕ}A'Gf|3Z-lib/libgcrypt-grub/cipher/whirlpool.c ! (buffer_size || carry) WHIRLPOOL    ?               @              @       LICENSE=GPLv3+ crypto gcry_whirlpool                                                                           +                                                              	              
        0     9              @              T              [              n               grub_mod_init grub_mod_fini _gcry_digest_spec_whirlpool memcpy _gcry_assert_failed memset grub_md_unregister grub_md_register  -    7    >    E    Y    `    p    w                                                )    6    =    K    R    b    i    w    ~                                            .    5    E    L    ^    e                                                     ,    3    E    L    h    o                                                    ,    3    O    V    r    y                                                    6    =    Y    `    v                                                    $    @    G    d    k    {                                                '    .    D    N                                                	    	     	    9	    @	    Q	    [	    e	    l	    	    	    	    	    	    	    	    	    	    	    
    
    &
    0
    7
    >
    b
    i
    y
    
    
    
    
    
    
    
    
    
    
                7    >    N    U    g    n                                                    &    -    ?    F    _    f    |                                                        :    A    Z    a    t                                                        5    <    U    \    p    z                                                    -    7                            !    '    2    7                                .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   @                    	   @       U  `              %             x  `@                 -      2       R  I                 @             $S  0                  <   	   @       l]  (               F             TS                    V             cS                     [              cS                    d              jS                                  |S                	              T                                  ]  m                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/ahci.mod                                                                         0000600 0001750 0001750 00000037120 13417732100 0014270 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                       <      4     (   UWVS     CC    Ɖׁ   CC  @t+9rw9vh    h   h  h   CC    Ɖׁ   CC  Āt+9rw9vh#   h   h  h   sXsZs$C    C    C$    e1[^_]UWVS,E   E܋|  PPj h   ?  PPh   h   Eu	V  PPssh5   h   h  h   C C    EE  UU CC    @t";Urw;Evh    h   h  SEE  UU ;Ew CC  t-;Urvh#   h   h  h   
  ǀ@     QQh   h   C$$h   j PC{EXs$1}ԉGWC{4$E1}ԉWCC    CC    @uG;Urw;EvhT   h   h  h   CC    CC    Āuu;Urw;Evhg   h   h  h   CC    CC    EE  UU M%  sVu؉sC4$C [4$1҉CSk;UsCC  @uw;Evh    h   h  VXuZs$M܃PE܃ Ewe1[^_]U1SR   } u$tPusjUu1   ]U}VESu   tEz   9CtuE   E   e[^]Ph   h   hL  h    ^((F   CF     ^$Fe1[^]UWVS˃8E@MB   Ph   h   h  h    u
E1  uFF   Ph   h   h  h   FFǀ       FFǀ8      FF   Ph   h   h  h   F F0  0  GR1PGRPh   h   h  h   G tt	SSh   G=    vQQh  j&  tRRPPPh   h   ]ECC   VVsPh(  h   h  h   Kf1ҁ  Ѓ 	Ѓ҃@	1ҀJ   	ЉCC   Ph   h   h  h   C@    ss1҉FVjj CPh   j s CC   $h   h   h  h   G tRPEw@ @PuFF   Ph   h   h  h   F   'F @1UJ     @uEp NVFÊFE܊FE؊FEԊFEЊQREPEPEPEPEPEPh>  h   h  h   E0p NVFÊFE܊FE؊F
EԊF	EЊFQREPEPEPEPEPEPh>  h   h  h   ]$s u1҉ى      C ǀ       C _S   A             $   VQRPhm  h   h  h   0 t%WwuUU܃RVPh  h   h  h   ]CC   $h   h   h  h   CC  Ph  h   h  h   CC  Ph  h   h  h   CCǀ  CCǀ  CC  Ph  h   h  h   CC   Ph   h   h  h   CCǀ4     CCǀ8     CC$  Ph  h   h  h   CC   Ph   h   h  h    Éց N   MAA8     9rw9v׋]CC     4  8  VQRPh  h   h	  h   CCǀ8      h  j} EuE   '  E    uv$@`Xv$VuV0  M؋Nquԋ     8  S0uuVQRh  h   h  h   u$v$Z@<v$Y@8v$EH4Xv$MH0Xv$MuP,Xv$Up(XEup$p$XEp$MSUuuQRuVp h8  h   h"  h   u4v$@\Xv$Z@Xv$EHTMYv$HPXv$MuPLXv$UpHXEup$pDXEp$MSUuuQRuVp@hn  h   h,  h   @ u_uSPwuE܃e[^_]U1ɉEU]@(UWVSÃ<@Cҋ0  0  KSu&ȋ8  u   1     ʋ    CCǀ8      C     C ǀ       C ǀ       C ǀ       ǀ       Ɖׁ   CC    Āt-9rw9vh  h   hh  h      CC    tI9rw9vh  h   ho  h   CC    [^h  d9wCC  uL9rvh  h   hx  h   CC    ZYh  j,0  uĉ0  Pj$j V   Ee[^_]U   WVS  ju    =   j$   u    j   u  ƉÃffډfuuuh  h   h   h      Ph  h   h   h     Ph  h   h   h   (  Ph  h   h   h   0  Ph
  h   h   h     Ph  h   h   h     Ph"  h   h   h     Ph.  h   h   h     Ph9  h   h   h         Ph9  h   h   h   C(PhE  h   h   h   C(    hL  h   h   h   C(C(hg  h   h   h    Ɖׁ   C(u2C(t<h  h   h   h   C(   C(C(;9wr9sh  h   h   h  h   h   h   CPh  h   h   h     Ph9  h   h   h   C xh  h   h  h	  h   h  h        Ph9  h   h  h   CPh  h   h	  h   CPh  h   h  h     Ph9  h   h  h    C   CjCxNuhO  h   h%     C   Ph  h   h)  h     Ph9  h   h,  h     Ph9  h   h/  h   CPh  h   h1  h    C   CjCx&NuhO  h   h<  h   1I    hPh9  h   hA  h   CPh  h   hC  h   CPj ho  h   hH  h    1    @ u1CrǄ    ;j0     Xx@(   J   PG u;T  GG0  0  GG0  Ph   h   hg  h   h   h   Gu       PPh   h   Guw       wGXwG h   j wh   j w OXw1҉AQXwXwRPwwh)  h   h  h   G0G    9Ɖׁ   9w-r9s'1ҋtAA  @uB u1ۋtFFF  @t2Sho  h   h  h    hǄ    C u1ҋtAA    B uƉׁ   9w-r9s'1ҋtAA  ĀuB u1ۋtFFF  Āt2Sh  h   h  h    hǄ    C u1-  FFǀ      FFǀ  FF0  Ph   h   h  h   h   h   F$$h   j PXvj j PZvh   j PFY^v$1CSF^Xv1SFFǀ8      FF    G Ɖׁ   9w-r9s'1ҋtAA  @tB u1ۋtFFF  @u2Sh  h   h  h    hǄ    C u11   CC0  Ph   h   h  h      	ƋCC    CC    CC       CC0  Ph   h   h  h    G 6d ;w4r;s*1ҋtAA(  uB u1ۋtIGG(  t2Sh  h   h  h    hǄ    C u11  CC0  Ph   h   h  h   CC    CC    CC0  Ph   h   h  h   CCǀ0  CC0  Ph   h   h  h   CS        QRPh  h   h  h   CC0  Ph   h   h  h    G f1   CS        QRPh  h   h%  h   CC0  Ph   h   h(  h   C C      G \'   ;w0r;s&1ҋtAA   uB u1ۋtEGG   t2Sh  h   hA  h    hǄ    C u1ҋtAA    B u   ;w1r;s'1ҋtAA  ĀtB u1ۋtFGG  Āu2Sh  h   hX  h    hǄ    C uh6  h   h]  h   1ɋht tBB    A u   ;w>r;s41ɻ   httBB  @uA u1ۋht vYv_v$C u1ҋt AA$  =  uA,   B uj   u  ƉÃffډf1ۃtRRPh   C u   e[^_]U           t        PPj h  $    h,  h/  h        Uj oX5    $                                 	   
   couldn't stop FR
 ahci disk/ahci.c couldn't stop CR
 found device ahci%d (port %d)
 couldn't start FR
 couldn't start CR
 not an AHCI device no such AHCI device opening AHCI dev `ahci%d'
 AHCI tfd = %x
 grub_ahci_read (size=%llu, cmdsize = %llu)
 incorrect ATAPI command size too big data buffer AHCI tfd = %x, CL=%p
 cfis: %02x %02x %02x %02x %02x %02x %02x %02x
 PRDT = %llx, %x, %x (%u)
 AHCI command schedulded
 AHCI inten = %x
 AHCI intstatus = %x
 AHCI sig = %x
 AHCI status <%x %x %x %x>
 AHCI transfer timed out AHCI command completed <%x %x %x %x %x, %x %x>
 last PIO FIS %08x %08x %08x %08x %08x %08x %08x %08x
 last REG FIS %08x %08x %08x %08x %08x %08x %08x %08x
 couldn't stop CR couldn't set CLO
 couldn't set CLO dev: %x:%x.%x
 tfd[0]: %x
 cmd[0]: %x
 st[0]: %x
 err[0]: %x
 tfd[1]: %x
 cmd[1]: %x
 st[1]: %x
 err[1]: %x
 BH:%x
 Requesting AHCI ownership
 Waiting for BIOS to give up ownership
 Forcibly taking ownership
 AHCI ownership obtained
 AHCI is already in OS mode
 GLC:%x
 AHCI is in compat mode. Switching
 AHCI is in AHCI mode.
 err: %x
 found device ahci%d (port %d), command_table = %p, command_list = %p
 couldn't stop FR on port %d
 couldn't stop CR on port %d
 couldn't start FR on port %d
 couldn't detect device on port %d
 offset: %x, tfd:%x, CMD: %x
 port %d is busy
 couldn't start CR on port %d
 cleaning up failed devs
 Couldn't put AHCI in AHCI mode
 %d AHCI ports, PI = 0x%x
            v      LICENSE=GPLv3+  ata boot ahci                                                                                            $"  `        "  *                                	              
               -              ?              L              j              x                                                                                                  	                          &             7             A             c             w                                        grub_mod_init grub_mod_fini grub_millisleep grub_dma_get_virt grub_memmove grub_disk_firmware_is_tainted grub_dma_free grub_memset grub_disk_firmware_fini grub_ata_dev_register grub_pci_make_address grub_loader_unregister_preboot_hook grub_zalloc grub_get_time_ms grub_real_dprintf grub_error grub_pci_iterate grub_free grub_loader_register_preboot_hook grub_memalign_dma32 grub_list_push grub_ata_dev_unregister grub_dma_get_phys      0     V     e     j     t     y                                                 ;    V    t                            	        !    R    ^    c    m    r                        .    ?    D    N    S                                 1    ?    N    u    z                            (    <    N    W    \    f    k                                    P    U    _    d                                    !    &    0    5                                                /    M    R    \    a                        L	    Q	    [	    `	    q	    	    	    	    	    	    
    
    
    
    #
    =
    B
    L
    Q
    i
    n
    x
    }
    
    
    
    
    
    
    
    
            "    '    e    j    t    y                                        $    ?    F    v                                        %    7    I    X    s    x                                                #    -    2    I    V    d    <    h    w    |                                        *    /    9    >    ]    d                )    k    p    z                                                                                )    .    =    B    L    Q    `    e    o    t                                                                        #    -    2    :    Z    _    i    n                                                                        !    &    0    :    L    Q    [    `    l    q    {                                                                !    0    5    ?    D    S    X    b    g    s    x                                                    	            &    +    5    :    m                                -    B    [    g    |                                        *                            Q    V    `    e                                     &    /    ?    W                :    ?    I    N                            %    *    <    [                        !    +    0    x    }                                                #    -    2    x    }                                    n    s    }                R     W     a     f                                   W!    `!    i!    !     "    "    +"    1"    A"    N"    S"    Z"    _"    l"    q"    v"    ~"    "    "    "    "                     .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   "                    	   @       ,                %             "  ,                  -      2       #                  @             (                    <   	   @       ;                 F             (                    V             (                    [              (  	                  d              (                                  (                 	              *                                 ;  m                                                                                                                                                                                                                                                                                                                                                                                                                                                                  boot/grub/i386-efi/exfctest.mod                                                                     0000600 0001750 0001750 00000002714 13417732100 0015212 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   Uh    h   jh    h   jh:   hM   j!h    h   jjhT   ha   j"h    h   j Uh    hh   Uhh      example_test 1 equal 1 expected 1 == 1 tests/example_functional_test.c 2 equal 2 expected 2 == 2 2 matches %d 2 != 3 exfctest   LICENSE=GPLv3+ functional_test exfctest                                                              j                                                                                        	               0              E               grub_mod_init grub_mod_fini grub_test_register grub_test_unregister grub_test_assert_helper                             '     ,     3     8     ?     I     N     U     Z     a     q     v     {                .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                        	   @            
            %                                  -      2          q                 <             N                     B             P                    R             _                     W              _                    `              o  	                                x                 	              X  ]                                X  i                                                                      boot/grub/i386-efi/all_video.mod                                                                    0000600 0001750 0001750 00000000764 13417732100 0015326 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                             4     (   LICENSE=GPLv3+ efi_gop efi_uga video_bochs video_cirrus all_video  .shstrtab .text .data .module_license .bss .moddeps .modname                                                      4                                   4                                   4                     '             C                      ,              C   )                  5              l   
                                v   >                              boot/grub/i386-efi/gdb.mod                                                                          0000600 0001750 0001750 00000061360 13417732100 0014123 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      `      4     (   US1fȺ    1ɋ    AfBB BfZfZ u       f            []U   ]U]ã             -   5   =   [    [(   [$   %   10   f2       14   f6       1%8   f:       1-<   f>       1,   f.               ,   %   -   5   =   0   4   %8   -<   $   P(   P    P             ϣ             -   5   =   [    [(   [$   %   10   f2       14   f6       1%8   f:       1-<   f>       1,   f.              ,   %   -   5   =   0   4   %8   -<   $   P(   P    P             ϣ             -   5   =   [    [(   [$   %   10   f2       14   f6       1%8   f:       1-<   f>       1,   f.              ,   %   -   5   =   0   4   %8   -<   $   P(   P    P             ϣ             -   5   =   [    [(   [$   %   10   f2       14   f6       1%8   f:       1-<   f>       1,   f.              ,   %   -   5   =   0   4   %8   -<   $   P(   P    P             ϣ             -   5   =   [    [(   [$   %   10   f2       14   f6       1%8   f:       1-<   f>       1,   f.              ,   %   -   5   =   0   4   %8   -<   $   P(   P    P             ϣ             -   5   =   [    [(   [$   %   10   f2       14   f6       1%8   f:       1-<   f>       1,   f.              ,   %   -   5   =   0   4   %8   -<   $   P(   P    P             ϣ             -   5   =   [    [(   [$   %   10   f2       14   f6       1%8   f:       1-<   f>       1,   f.              ,   %   -   5   =   0   4   %8   -<   $   P(   P    P             ϣ             -   5   =   [    [(   [$   %   10   f2       14   f6       1%8   f:       1-<   f>       1,   f.              ,   %   -   5   =   0   4   %8   -<   $   P(   P    P             σ             -   5   =   [    [(   [$   %   10   f2       14   f6       1%8   f:       1-<   f>       1,   f.              ,   %   -   5   =   0   4   %8   -<   $   P(   P    P             ϣ             -   5   =   [    [(   [$   %   10   f2       14   f6       1%8   f:       1-<   f>       1,   f.           	   ,   %   -   5   =   0   4   %8   -<   $   P(   P    P             σ             -   5   =   [    [(   [$   %   10   f2       14   f6       1%8   f:       1-<   f>       1,   f.           
   ,   %   -   5   =   0   4   %8   -<   $   P(   P    P             σ             -   5   =   [    [(   [$   %   10   f2       14   f6       1%8   f:       1-<   f>       1,   f.              ,   %   -   5   =   0   4   %8   -<   $   P(   P    P             σ             -   5   =   [    [(   [$   %   10   f2       14   f6       1%8   f:       1-<   f>       1,   f.              ,   %   -   5   =   0   4   %8   -<   $   P(   P    P             σ             -   5   =   [    [(   [$   %   10   f2       14   f6       1%8   f:       1-<   f>       1,   f.              ,   %   -   5   =   0   4   %8   -<   $   P(   P    P             σ             -   5   =   [    [(   [$   %   10   f2       14   f6       1%8   f:       1-<   f>       1,   f.              ,   %   -   5   =   0   4   %8   -<   $   P(   P    P             ϣ             -   5   =   [    [(   [$   %   10   f2       14   f6       1%8   f:       1-<   f>       1,   f.              ,   %   -   5   =   0   4   %8   -<   $   P(   P    P             ϣ             -   5   =   [    [(   [$   %   10   f2       14   f6       1%8   f:       1-<   f>       1,   f.              ,   %   -   5   =   0   4   %8   -<   $   P(   P    P             ϣ             -   5   =   [    [(   [$   %   10   f2       14   f6       1%8   f:       1-<   f>       1,   f.              ,   %   -   5   =   0   4   %8   -<   $   P(   P    P             ϣ             -   5   =   [    [(   [$   %   10   f2       14   f6       1%8   f:       1-<   f>       1,   f.              ,   %   -   5   =   0   4   %8   -<   $   P(   P    P             ϣ             -   5   =   [    [(   [$   %   10   f2       14   f6       1%8   f:       1-<   f>       1,   f.              ,   %   -   5   =   0   4   %8   -<   $   P(   P    P             ϣ             -   5   =   [    [(   [$   %   10   f2       14   f6       1%8   f:       1-<   f>       1,   f.              ,   %   -   5   =   0   4   %8   -<   $   P(   P    P             ϣ             -   5   =   [    [(   [$   %   10   f2       14   f6       1%8   f:       1-<   f>       1,   f.              ,   %   -   5   =   0   4   %8   -<   $   P(   P    P             ϣ             -   5   =   [    [(   [$   %   10   f2       14   f6       1%8   f:       1-<   f>       1,   f.              ,   %   -   5   =   0   4   %8   -<   $   P(   P    P             ϣ             -   5   =   [    [(   [$   %   10   f2       14   f6       1%8   f:       1-<   f>       1,   f.              ,   %   -   5   =   0   4   %8   -<   $   P(   P    P             ϣ             -   5   =   [    [(   [$   %   10   f2       14   f6       1%8   f:       1-<   f>       1,   f.              ,   %   -   5   =   0   4   %8   -<   $   P(   P    P             ϣ             -   5   =   [    [(   [$   %   10   f2       14   f6       1%8   f:       1-<   f>       1,   f.              ,   %   -   5   =   0   4   %8   -<   $   P(   P    P             ϣ             -   5   =   [    [(   [$   %   10   f2       14   f6       1%8   f:       1-<   f>       1,   f.              ,   %   -   5   =   0   4   %8   -<   $   P(   P    P             ϣ             -   5   =   [    [(   [$   %   10   f2       14   f6       1%8   f:       1-<   f>       1,   f.              ,   %   -   5   =   0   4   %8   -<   $   P(   P    P             ϣ             -   5   =   [    [(   [$   %   10   f2       14   f6       1%8   f:       1-<   f>       1,   f.              ,   %   -   5   =   0   4   %8   -<   $   P(   P    P             ϣ             -   5   =   [    [(   [$   %   10   f2       14   f6       1%8   f:       1-<   f>       1,   f.              ,   %   -   5   =   0   4   %8   -<   $   P(   P    P             ϣ             -   5   =   [    [(   [$   %   10   f2       14   f6       1%8   f:       1-<   f>       1,   f.              ,   %   -   5   =   0   4   %8   -<   $   P(   P    P             ϣ             -   5   =   [    [(   [$   %   10   f2       14   f6       1%8   f:       1-<   f>       1,   f.              ,   %   -   5   =   0   4   %8   -<   $   P(   P    P             U   WV    PE}~   DP^_]UPPRUHRPQÍPUwW#PЀ	w0Pw7]UWVS1ۃM;]t*CMH   }NH   Nۍ  [^_]UWV1SÃ9}-MUWCIUM2Fω!ZY[^_]UWVS    B    1ҋ t7UUx(ËB]^E	ȉE	؉F[^_]UVS    $   `  1t    F^    #   o؃H       SH       B    )+u[^]UWVS<=     u=VVPh    _5    $   X5   $   P   `  Tc  4Ee  d  :ƊH   H   e  b     ]ǈa     PU ;E̍PU 5E̍PU :U̸      PU ;E̍PU 8E̍PU :U̸    hPU ;E  Y`       $u11ۡ    x$t#t  GÁ  ~׃#Ƈ   u    x    x8t    -   qm    +   ]  =  :u'      >      -  BÈc   MG   /?  E`  Sc   a  H   b    M   Pt]  k  "g  @   `      w  mtnsi     -  1&  @       7UEOt-U̍BÈ:=u} Uuw       SSh3      UЍEt4E̍PÙ8,u&U؍EtMغ`  EE    0}    QQh6   mUЍEtQE̍PÙ8,uCU؍Et4U̍BÈ::u&UЋM'RRh3   h`  E    } tHPPh:   h`  2UЍE5tEУ    $   ۣ$   t$   
oe[^_]U1        ]U=     uE>   E   1U} EEU   E   0u    hc       1Uj h   h   h()  h   j h   j h(  h     j h   j h(  h        U5  X5                                                          0123456789abcdef Unhandled exception 0x%x at  
 Unhandled exception OK E01 E02 No GDB stub is running port required Now connect the remote debugger, please. Start GDB stub on given port PORT gdbstub Break into GDB gdbstub_break Stop GDB stub gdbstub_stop m                   
  $  9  N  c  x                    /  A  S  e  w       !   LICENSE=GPLv3+          serial backtrace gdb                                                                               )  s        )  &                                              	              
               (   g        <   $      J              V             g       [     x                 `                                         @                                                                         /  [        C             N  Ԡ       \  "  /      grub_mod_init grub_mod_fini grub_puts_ grub_gdb_breakpoint grub_gdb_trap grub_strcpy grub_gdb_trapvec grub_gdb_idtinit grub_backtrace_pointer grub_gdb_stack grub_fatal grub_errno grub_gdb_regs grub_serial_find grub_backtrace_print_address grub_register_command_prio grub_printf grub_unregister_command grub_gdb_idtrestore grub_error grub_gdb_port grub_gdb_trap2sig   
          9     =     D     M     T     a     n     t     z                                                                                                                             !    '    -    3    9    ?    E    K    Q    V    \    b    i    o    u    z                                                                                                             #    -    3    9    ?    E    K    Q    W    ]    c    h    n    t    {                                                                                            
                %    +    0    5    ?    E    K    Q    W    ]    c    i    o    u    z                                                                                            	                $    *    /    7    =    B    G    Q    W    ]    c    i    o    u    {                                                                                                            #    )    .    6    <    A    I    O    T    Y    c    i    o    u    {                                                                                                            "    (    -    5    ;    @    H    N    S    [    a    f    k    u    {                                                                                                            !    '    ,    4    :    ?    G    M    R    Z    `    e    m    s    x    }                                                                                            
                %    +    3    9    >    F    L    Q    Y    _    d    l    r    w                                                                                        	    	    	    	    	    	    %	    ,	    3	    :	    @	    H	    N	    S	    [	    a	    f	    n	    t	    y	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    
    
    
    
    
    
    %
    +
    1
    7
    >
    E
    L
    R
    Z
    `
    e
    m
    s
    x
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
                            (    .    4    :    @    F    L    S    Z    a    g    o    u    z                                                                                                            #    )    /    4    =    C    I    O    U    [    a    h    o    v    |                                                                                                             %    +    1    8    >    D    I    R    X    ^    d    j    p    v    }                                                                                                        #    )    /    5    :    @    F    M    S    Y    ^    g    m    s    y                                                                                             
                 &    ,    2    8    >    D    J    O    U    [    b    h    n    s    |                                                                                                            )    /    5    ;    A    G    M    S    Y    _    d    j    p    w    }                                                                                                        !    '    ,    1    ;    A    G    M    S    Y    _    e    k    q    v    |                                                                                                              &    +    3    9    >    C    M    S    Y    _    e    k    q    w    }                                                                                                            %    *    2    8    =    E    K    P    U    _    e    k    q    w    }                                                                                                            $    )    1    7    <    D    J    O    W    ]    b    g    q    w    }                                                                                                            #    (    0    6    ;    C    I    N    V    \    a    i    o    t    y                                                                                                             !    '    /    5    :    B    H    M    U    [    `    h    n    s    {                                                                                                                 %    ,    3    9    A    G    L    T    Z    _    g    m    r    z                                                                                                                $    *    0    7    >    E    K    S    Y    ^    f    l    q    y                                                                                                                 $    *    0    6    <    B    I    P    W    ]    e    k    p    x    ~                                                                                                            %    *    0    6    <    B    H    N    T    [    b    i    o    w    }                                                                                                            $    +    1    7    <    B    H    N    T    Z    `    f    m    t    {                                                                                                            %    *    0    6    =    C    I    N    T    Z    `    f    l    r    x                                                                                                            %    +    1    7    <    B    H    O    U    [    `    f    l    r    x    ~                                                                                        	                %    +    1    7    =    C    I    N    T    Z    a    g    m    r    x    ~                                                                                                        %    +    1    7    =    C    I    O    U    [    `    f    l    s    y                                                                                             
                    #     (     -     7     =     C     I     O     U     [     a     g     m     r     x     ~                                                                                                         !    	!    !    !    !    "!    '!    /!    5!    :!    ?!    I!    O!    U!    [!    a!    g!    m!    s!    y!    !    !    !    !    !    !    !    !    !    !    !    !    !    !    !    !    !    !    !    !    !     "    "    "    "    "    !"    &"    ."    4"    9"    A"    G"    L"    Q"    ["    a"    g"    m"    s"    y"    "    "    "    "    "    "    "    "    "    "    "    "    o#    ~#    S$    ]$    p$    $    $    $    $    $    $    $    $    $    $    $    $    %    %    %    %    %    "%    -%    4%    <%    B%    S%    Y%    ^%    c%    h%    q%    %    %    %    %    &    +&    ?&    G&    b&    ~&    &    &    &    &    &    &    &    &    '    '    '    '    '    O'    T'    '    '    '    (    %(    s(    x(    }(    (    (    (    (    (    (    (    (    )    )    )     )    :)    G)    Q)    ])    g)    l)    q)    v)    )    )    )    )    )    )    )    )    )    )    )    )    )    )    )    )    )    )    *    *    *    *                                                   $     (     ,     0     4     8     <     @     D     H     L     P     T     X     \     `     d     h     l     p     t     x     |      .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   *                    	   @       /  /              %             P*  Y                  -      2       *                   @             +                    <   	   @       P_                 F             ,                    V             0,  ؠ                 [              0,                    d              A,                                  H,                	              8.  n                               P`  m                                                                                                                                                                                                                                                                                                  boot/grub/i386-efi/aout.mod                                                                         0000600 0001750 0001750 00000002014 13417732100 0014326 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      |      4     ( 
 	 UE v=  t=   t-     ]UWVSE}]uRPWBu@u=    6u_4+]RSuW=    ut]PVj Se[^_] LICENSE=GPLv3+ aout                                                                                              8                   #              .              :              I   8   o      grub_aout_get_type grub_file_seek grub_errno grub_memset grub_file_read grub_aout_load R     a     x   
  ~        	   .symtab .strtab .shstrtab .rel.text .data .module_license .bss .modname                                                         4                        	   @         (               %                                   +                                  ;                                   @                                                                   	                X                                0  I                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/i386-efi/ext2.mod                                                                         0000600 0001750 0001750 00000013054 13417732100 0014246 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      $      4     (   UEp@X5    1UWVSÃ`EPz1j@s(MP  R1PCsR@NPT          C   H
E   KLtsX11҉Ɖs(11uP  E~}Ѕɸ   tCXQMu1h   R1PEA t1RPT   1҅t    e[^_]UWVSh    WPhP  j j j jV =        f{8Su{v	QQh    {L tfC`9tRRh   j	   tBf   ft6ЍJu,ft&ǃP         P  9tAP  ǃP     `     T  ؉\  ǃ     ǃ     X  =     u(=    uPPh    j	S1e[^_]UEVuS5    u    @05    $    e[^]UWVSLuEUF&EЋUԉEċx  }ЍF,1ۉEEȋEf8
P   fx    @E1;E}kM;|1sHu   @kЅۋP@UEu%Eă@H
Eȸ   PtJuċVP   SJ
PEJUj j  t1RPT   u]7S[^hH   j	  Ep19}k} 
w9MsHuA@ku1ۋ}
B)߉ w69s2rB1҉    QQhW   j	11]E9  Pt  } w}wMЃDU  O
Uи   MEȃ E    UЉMw9Es
F\1ۉEvU)UЋMM9Uwr9EsF`   EOMȋ])EUԃ 9Uwr9EsFd   ERRhs   j	1҃   GOE   HEẺ؉EuUԉPEVj t1ҋM!ẺMM!ЉEEUR1PE t1RPET   t    K}uE1e[^_]UWVS(E5    tfxvptfHr@pffSjffEfCnfEfEClfEfEChWVQMfEQMQMQRPh   U0	E     5    $    e[^_]UEVuS5     tPPjCxP    5    $    e[^]UWVSj j {wVxppWVh  uuuuQRPT  e[^_]USP]C@KHSDuu\  ss]UWVS  ]    t17   KB=     tEf t; u9;{s$1P1jR1W=     t1   t1Q1PR1ҍGP=     uȃh   t   Ƅ t$<ǆ       u   Z<u   OENM=     tVAFǆ      f% f= @tf= tf= uVPPU   e[^_]U1   W} E5    E    EEEE EtAQ\  Qjh	  h  URPu =     uERPh
  uME荑\  9tPuX5        }UVS]    tC@Pu]   K=     tBC<wRPC,PV-V1P1j j =     tV1	C e[^]UWVS ]juj }W    u.   KFO=     u
ǃ                  t
CME܊E؀}	SEvWue[^_]UWVS8u5    E    F Å\  Eu=       WWjh	  h  EPuu u{E䃸    tYERh   PX  YuX  1҃@V8F4X  RlF41^@F    V8F    D   HtE;EtPSX5    e[^_]Uh    h    E    Uh    not an ext2 filesystem filesystem has unsupported incompatible features invalid extent something wrong with extent ext2fs doesn't support quadruple indirect blocks %04x%04x-%04x-%04x-%04x-%04x%04x%04x ext2              <	  1            f  LICENSE=GPLv3+  fshelp ext2                                                                            M  "        o                                                	               3              B              O              ^              j              u                                                                                                                                             grub_mod_init grub_mod_fini grub_fshelp_find_file grub_xasprintf grub_memmove grub_disk_read grub_dl_ref grub_errno grub_memset grub_fshelp_read_file grub_fs_list grub_malloc grub_error grub_list_remove grub_free grub_strndup grub_dl_unref grub_list_push                a     g              .    P    Y    u            +    8    B    I    U    x    }                    j                    T    [    {    @    G                                                        %    *    2    7    a    {        (    `    p            T	    i	    	    	    	  
  	    	    	    	    	    	    	    
    :
    S
    r
    ~
    
    
    
        ?    K    m    {          
          $    0    7    <    T    Y    ^    i    v    {                                        $      .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                       	   @       l    
            %      2                          8               (                  4   	   @       |  @   
            >                                 N                                 S                                  \                                                       
         	              l                                    e                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/i386-efi/appleldr.mod                                                                     0000600 0001750 0001750 00000006074 13417732100 0015173 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      4
      4     (   UWVS    (5              p<CtWWh   j j P5    j Vp u{ uQQh    Aǃ3h   h   h   h&   5   uRRh?   j   }    11ۋE4C;]t0u6PE   tauMMMfJtEfY;uf  tf  GE܉GPj hu  h  15       e[^_]U    @<5   P|X5   Z5          1U    @<j j 5   Pt    Uu.j hY   hq   h    hx        E   Uu5    can't find model Model: %s
 appleload loader/efi/appleloader.c no loaded image available Boot BIOS-based system. [OPTS] appleloader Core Duo/Solo Mac Pro MBP MBA MB NV MB NV2 MBP2011 MBP2012            h     8                      x      H                          +ةI               +ةI      @         +ةI      @         +ةI                +ةI                +ةI                +ةI                +ةI LICENSE=GPLv3+  boot appleldr                                                                                ?          "                                              	               )              ?              K              e              p                                                               H                                                                                        grub_mod_init grub_mod_fini grub_strlen grub_efi_system_table grub_dl_ref grub_efi_get_loaded_image grub_errno grub_efi_image_handle grub_register_command_prio grub_efi_secure_boot grub_unregister_command devs grub_malloc grub_real_dprintf grub_error grub_free grub_dl_unref grub_loader_set                     #     8     C     \     m     r     |                                 
            B    G    L    \    a    f    |                                                                
            ,    1                                                   $     (     ,     0     4     8     <      .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   :                    	   @         p  
            %      2       n                   8             0                   4   	   @       L	     
            >                                 N                                 S                                  \                	                                       
         	                $                               	  e                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/i386-efi/archelp.mod                                                                      0000600 0001750 0001750 00000006064 13417732100 0015005 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      |
      4     (  
 UVS: tf/uB.uDZt/uۀ.u.Zt/u"9tÃ9sA빀9/tItABY/uۉtAB [^]UWVSӃ(uQMEMPQ6\  ϊ/t	tC  tGE}
?/-  O9s1ut:8 
  PEÉEX6D$M܅u
       8PPQRU܉MM؉$U܃:/uDߊBOz tEWEEx t PPS6h    h   jq:tPW6SD;/PP}uWZYS6h    h   h   h%   6E    1)σe[^_]UWVSHE@PEu
    N  ]̃SDU9s1RE    y8/u  HPPj/Wt     ?    U1E    Mȁ      1  uȉEE  } 5  EPEPEPEuc  }Y  EPVuu,  }t</t  ?/)GPPuȉMSM(,Pjj EPMM   uE%   = @  M؃	} MxEЃM؉EPuEPWUtu_S]bUz WWEPEPERPuEă}uPPh2   j!EuPuu$    e[^_]UWVS(E]@PEu
      .1}؍EPj Wu   }uPuhO   jqEEME    %   =   u/{ t)PPEPEPES>tu&} t%FuSuBQQh2   jBRRuuuuXu1&uu    e[^_]symlink redirected %s to %s
 archelp fs/archelp.c too deep nesting of symlinks file `%s' not found LICENSE=GPLv3+ archelp                                                                                                                                                &              2              =              I              U              a              m     6                                                 &  }                   grub_strlen grub_strcpy grub_memmove grub_strdup grub_errno grub_memset grub_strcmp grub_strchr grub_malloc grub_archelp_open grub_real_dprintf grub_error grub_free grub_archelp_dir grub_memcmp                    $    5    L    W              	                          5  
  D    Z    s            8    t                 :    O    V    z                  
          K    l    s                             .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .modname                                                      4                       	   @         x              %      2         c                 4             p                     :             p                    J                                  O                                                  `  	            	                                                $
  X                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/extcmd.mod                                                                       0000600 0001750 0001750 00000011044 13417732100 0014645 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UWVS<E}UE    X E]܉E{ uQRWEPSdQRWSUXZEԋUPEPVRWS t+PuuԍE܉uPSZu؉4$V    e[^_]Uj uuuUSjtSu uuh   u uS%UX PEC    CEC1]UjuuuuuuUS]3]]Utx t9Htuht1u%       ]UWVSÃ{   SB߃]w;Q,PRh    4    uu h      uu
h   h   t]RRPh   Y3Cu	   )(RRPh   MYsM   ))      Uh       UJus    ZYPh!   e[^_]UWVSÃ{ t#tRVWPu<0 t	1؍e[^_]UWVSÃ$UH   P3UuR    |    1e[^_]UVSË p    ƋX$%       VSPh,    e[^]UW1V1S]p    ZYPh6   CÅut/${ tShtuu      ɍe[^    _]mU    VS]uP   u
D+pi𫪪Bt Xr0@    1   Je[^]UWVS,E    E    E    E;Eh  Eԋ}}     M̋<tE @  ?-  WH  -   E_ @ttE@]  CwE@uE-E EPEP}  F> t+Eu1  =     t  x I  EԍH;M:  EUCT2u
2M   VỦMMЋŨvـ>-u   Wu=]C;]}EUEtE  Uܾ   EUEj  PPj=Wt)FEWEЍGEȋE@uMи    UMЋU
tۅu$EM̋Dt8-tt{ t%EԉuE @   PWh;   x1CtdusuqW3hQ   j   u2Qj EPVEu	RWhs   '9t8 u=     uu!tPWh   j1;1uEu=     UEQuEe[^_]UWVSEuxtF11ۍH1`@tCx uRt؉4   y t     B    AtZڍe[^_]                       	                                            -%c%c  -h,  -u,       --%s =%s   %s
 Usage: %s %s %s
 %s

 unknown argument `%s' missing mandatory option for `%s' the argument `%s' requires an integer a value was assigned to the argument `%s' while it doesn't require an argument help Display this help and exit. usage Display the usage of this command and exit.  LICENSE=GPLv3+ extcmd                                                                                                                    	                                           (            ?              L          [          n   P                            q                                                                                                                ,             7             A  /  !     V              grub_strlen grub_strncmp grub_strtoull grub_extcmd_dispatcher grub_realloc grub_arg_parse grub_arg_show_help grub_unregister_extcmd grub_xputs grub_register_extcmd_prio grub_errno grub_register_command_prio grub_printf grub_unregister_command grub_zalloc grub_arg_list_alloc grub_strchr grub_malloc grub_error grub_free grub_register_extcmd grub_gettext  ?     W     z                                             J    ]    l                            
            *    /    7    T    \    e                          	  :    O    T                                    3    A    S    ^                    k                '    .    H  
  Y    j                "                    $      .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .modname                                                      4   k                    	   @           
            )               H                  %   	   @             
            1      2         ;                @             #
                     F             $
                    V             3
                     [              3
                                  <
                	                c                                 d                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/at_keyboard.mod                                                                  0000600 0001750 0001750 00000010174 13417732100 0015650 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      $      4     (   Udu]US`؃`[]UWVSƉ׃ `Ã<t9wr9r[^_]UVS1d<uCt	1u1[^]UVS1T`K`Bf<uCt	1u1[^]Ã=    t4USQ	   t
   `   S`1Z[]1UE    ]변=	    u+Uh    h   h`  h          Ã=    t/Udt	t`   j11Ã=          =        d   `<U   Uf           dt	`    S`
   1x1҅t:`<t<t<Ct<t<At<t<?u      	   1҈	         d1Ҩud       UWVSH  d.  `<$  <u           Qw<u         <   5          t
tF   up  f1҃}T  ;}u
U  EBuA          uT   188   u
9   BuuMtSSQPh3   h   h  RRQPhX   h   h  h     f   1	  ۍ uD   $    f   f    f   f   f    뫃w$   f%   f%   f%   f%   sf%   ff%   XGu"   f5      U1Su   f5    ׃9u   f5   @PP   PRe[^_]U=     tQQh    h       uRRh    h    h    ЃtPh   hm  h$  Uj l$    $           6    "    ,  a  M      l  W  y  JTZXiMkPlJpIqLrQtOuRzN}K B ><:;E CA?=+5        !   ,	"  
#   $%  6'&  783-  4 /.  9(0 2   d    *  Y\_  cbZ]^`)SDW[VUaG    @                                                                                                                            X5T8GJHRIKKPMOOMPQQNRISL ) !"#$%&'-.*+/0(	
3452678U,9:;<=>?@ABCSG_`aV\]^WYZ[cc  dDE            RQPO                    No sets support assumed
 atkeyb term/at_keyboard.c Unknown key 0xe0+0x%02x from set %d
 Unknown key 0x%02x from set %d
 at_keyboard         x                    LICENSE=GPLv3+  keylayouts boot at_keyboard                                                                                      	      g        k  *                                
                         7              I              Z              t                                                                       grub_mod_init grub_mod_fini grub_at_keyboard_is_alive grub_term_map_key grub_term_inputs grub_term_inputs_disabled grub_get_time_ms grub_real_dprintf grub_list_remove grub_loader_register_preboot_hook grub_list_push    3     M                   3    A    F    P    U    ^    g    o                            g    s                        
        6    J    W    i    o                                            	            %    /    9    I    P    Z    d    o    |                                                        "    -    2    7    D    X    ]    b    {                                                               $     (     ,     0     4                     .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                       	   @       
                )                                %   	   @       (  p               1      2                          D             @                     @   	   @                        J             `                    Z             p                    _              p                    h                                                  @              	              	                                    q                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/i386-efi/geli.mod                                                                         0000600 0001750 0001750 00000013360 13417732100 0014304 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   U
   VSPuM]EeV4EkEeEyz@M]wXR  SQh    h   h   h   ]SjEPj@  Pv4 uP  SVe[^]á   D G  UWVS  ur	  QSh  j j RPu   Pj
h+   Su	HvPh5   h   h  a  PuuPhG   h   h  8  tha   h   h  } t"uh{   h   h$  h   E     T #   GwoWWVjh   j@(Ph     uEk   9sFPh   jWۃ}     uk4P   t&ˍyw zw 9u	F@uӍSw  Pw 9t*VVukPh   h   h1  h    Dfw4    u	SPh   VuQVh   j1H  Pt1fuStf= vRPh   j멃h  t@    @    fp$x(@    @D    u@<   @@   @<   @@      C,    C0    C4    C8    ǃ|      |  9s	A|  都	vǃ      ǃ     ǃx     uCkSjHPCTP؍e[^_]1U1?   WVS  u]ǅ    F$ xv	WWh   F4x@vVVh   j&  Srv	SSh  QQh  j j RPS   ff$Pjj )P$  CtP1NTu   { t      QRP3h@  W_Xh   SuVVhc  j   $tZS9  j@WRj@(RPSv40  SSyPj@Wj j v4 UQj j v4u
j"[  Pj@(PW$PSWXZyPW  F49SSQjh{  pyWP    F4QQRjh    pWP    $1fWh}  h   h  h   h $9 #u  Sh  h   h  h   W v$u7)Ph   $9Qv$ tP  F4RRRh   QpQP uPF4pRP   PPSh     u'fuSWyPVtD^fuQj@9P  P  ǆ  ǆ  ǆ   @   9ư   Rj@PV1%C$   gPPh  je[^_]Uh    h    Uh      rekeying %llu keysize=%d
 geli disk/geli.c GEOM::ELI wrong magic %02x
 incorrect sector size %d
 skipping one-time volume
 not a boot volume
 uuid %02x %s != %s
 Cipher 0x%x unknown Cipher %s isn't available invalid keysize %d  , cipher block is too long mdlen is too long not a geli Attempting to decrypt master key... Enter passphrase for %s%s%s (%s):  Passphrase not supplied  keylen = %u
 Trying keyslot %d
 Slot %d opened
 access denied des 3des blowfish cast5 aes camellia128              E                                                                                LICENSE=GPLv3+ cryptodisk crypto gcry_sha512 pbkdf2 gcry_sha256 geli                                                                                                                                         	              
               )              @              S              ^              q                                                                                                                                        (             ?     \     J             _             q             }                                                                                                                     ,             ;             G             b              grub_mod_init grub_mod_fini grub_strlen grub_cryptodisk_setkey grub_disk_get_size grub_puts_ grub_crypto_pbkdf2 grub_partition_get_name _gcry_digest_spec_sha256 grub_memmove grub_crypto_hmac_fini grub_crypto_hmac_init grub_snprintf grub_disk_read grub_crypto_cipher_open geli_crypto grub_memset grub_crypto_gcry_error algorithms grub_cryptodisk_list grub_password_get grub_zalloc grub_crypto_cbc_decrypt grub_real_dprintf grub_crypto_lookup_cipher_by_name grub_error grub_crypto_hmac_write grub_list_remove grub_free grub_printf_ _gcry_digest_spec_sha512 grub_list_push grub_memcmp grub_crypto_cipher_set_key grub_crypto_hmac_buffer   ?     D     N     S      q   +                             )  $    )    M    R    k    p                                   +              *                               !        "          2    C      '                  1    ~                                    5    @    G    Z    _  &  h  %  u                  +        #  &    1  #  @    ^    n  +        +                                    '  *  X    n      +    )        &      )    f          "            (        $                                 <     d     h      .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                       	   @         0              %             	                    -      2       	                  @             
  l                  <   	   @         H               F             T                    V             c                     [              c  1                  d                                                                	              \  z                               P  m                                                                                                                                                                                                                                                                                                  boot/grub/i386-efi/ata.mod                                                                          0000600 0001750 0001750 00000013120 13417732100 0014123 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      H      4     (   UVS19tf4Zff4XCfX  [^]ËP,RtUP҃UVSE    uEEEttRuVh  Ѓu	[1   e[^]UE]@(UVSE    uEEEttRuVh  Ѓu	[1   e[^]UE]@$/UE    E   ]U   WVS]<RSh   h(   j0h,       W.Sh7   h(   j2h,    (   W6{ShE   h(   j4h,    ~ ua6hP   h(   j8h,   vvh`   h(   j9h,   N   Pho   h(   j:h,    e[^_]U1҉WVSDE]}ċp$RSh   h(   h  h,   j$j W؃EȋEE E E E܋E]Eʠ]ԉEEEЋF,j WVPu9]tPPh   je[^_]UWVSÃHh   ơ       Rj$j }WS$C,EEʡE   u2WSPtS$    C}   tC$     PPh   j؉C   V1e[^_]UWVSXj0        PSWVURUt        RՃ{ S,   h   ơ    r  Wj$j }WS$C,uE   EE2WSPu	}   tkEʃVEE        uEtY   uC$        C$     VVh   j   C        Fctf   f% f;tFxC    C      CS   t9   Pu v   C       K9QSrC	   fFfCfFfCfFfCVGtC=     uQQh   jSSXZh   j1؍e[^_]UWVSUE]u        1)puHsjuuÉ0ރe[^_]UWV    S}]E    VPWVtE}u V0	w x tME   E   e[^_]Vj j WEEu    Gx      p{sx {+H9vSPuC(1SU	Se[^_]UWVS<uE]Hu        x t	15kEVu    Ph   j(VsVÉ؍e[^_]UWVSӃp 1uUEERPh   h(   h  h,   E E}Uu,	t҃5%0E   E   Ҁf   $X   } tE   } UuEE    E;E  E+E9EvEE1RUPVSuEh"  h(   hK  h,   ,j$j EPE   rO   MEǉEȉEˉẺEEMň]ƈE   O1҉MOBUU1UU;UwW9w9MvVShB  jRUEUɊUU8E1=   tEɉEǉ؈M]ƈEȊEOEʋEEЋEEԋE EtE   RG,Mj QWPu6OE9EtPPhu  jEE]uE<1e[^_]UES]UM@(]]E   ][]MUES]UM@(]]E    ][]#USSUE]u    (x uE  E   Y[]C$1C   Z[]U    EP    ]á        Ut;Eu@P@]Uh   E    Uh    $   ATAPI write not implemented Serial: %s
 ata disk/ata.c Firmware: %s
 Model: %s
 Addressing: %d
 Sectors: %lld
 Sector size: %u
 grub_atapi_read (size=%llu)
 incomplete ATAPI read device cannot be identified no such ATA device not an ATA harddisk %s%d grub_ata_readwrite (size=%llu, rw=%d)
 rw=%d, sector=%llu, batch=%llu
 sector %d cannot be addressed using CHS addressing incomplete read no such ATAPI device ATA     Y
                   >        /
  
      LICENSE=GPLv3+  scsi ata                                                                               
              !                                              	               )              6              D              [              f              r                 
                                                                                                         	                
  '     8              grub_mod_init grub_mod_fini grub_strlen grub_strncmp grub_snprintf grub_disk_dev_register grub_errno grub_memset grub_scsi_names grub_ata_dev_register grub_zalloc grub_malloc grub_real_dprintf grub_error grub_free grub_disk_dev_unregister grub_scsi_dev_unregister grub_scsi_dev_register grub_ata_dev_unregister grub_strtoul    K     k                    
    2    7    >    C    ^    c    j    o                                                                    +    0    :    ?    L                        0    7    U    v                        /    ;    |        M    \    f    m    y                        %  
  0    N  
  l          
          &    K    Q    Y                    g    l    v    {        &	    -	    	    	    q
    
    
    
    
    
    
    
    
    
    
                                                         $     (     ,     0      .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   !                    	   @       P  8  
            %      2       U                  8               8                  4   	   @         X   
            >             ,                    N             <                    S              <                    \              A                                  H       
         	                E                                 e                                                                                                                                                                                                                                                                                                                                                                                                                                                                  boot/grub/i386-efi/fat.mod                                                                          0000600 0001750 0001750 00000013204 13417732100 0014133 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UEp@X5        USÃ@(h  C $  K ɉC$t1҅uQXs$    Ћ]UWVSӃ<EUMEȋC8ỦE@u9s	+u;uvuP1uVuuȋCRPW     C U̍H	E tЉE11u !ƋE#U;C<uЉUsEC<    C@E   E    e  CU,  u	  UVVuPh    h   h$  h"   E ;C$     ;C,   C<C@E;C<C@vHS       QMQR1R1PCRPW R   K u+uC(;uvuMO MO$R1uVuuRPW =     G     u)uuuEE    E    } <@VKC@tUe  QPh+   j	Euȍe[^_]USEXHDP@uupppH]UWVS   tm  jHV  EVPjZj j j j W 8  Et1uFHtFv3  Mt1uBItvK   <x{ }}e}{  UfuU҉|S  UfuU҉US~  Us  UM|}TE⊍xS{)S(C,(  f} uOfEUC    C$StU9   |ECf}    f} t1   =  CwC   C$  C   C$  C9E   UQR1jj j RPt uySE u% E!u%     E%     Ef} tEEщCDEU	9uCC<C0C81ۃSXZh>   j	1e[^_]UEVuS5    /t8@DRRPhS   t
tAw 
B    5    $    e[^]UWVS,E܍AEԍAUEEЋF(1Ƀ F(Vj RUPEj     v  Vu~@t^?ЉU9t׃렅tF9uzkRj
uԉEF$PMjuЋF$D
PMjFPF$DPC<;2<u0  '  11Au9  kE0ɋ^$EF M}   f3ɍ{t] $  wE   

 $  H?ɀHу?ʀ?ɀHP ?@1ww@  wP?ʀPK (  v; $  w ?@)Ӄ?ʀP?ʀXPщ     F t%1Ҋt
B@Hu)ЅҍtuJ< tl1tY@w BHu)ЅҍuQ   .J< tYBw @Jtu)tH< t 1    u	,Je[^_]UWVSHE0E     5    tn@0uRRh]   j1q}uEډuEǃ߃uuUuXu5    $    e[^_]UWVSlB0EUuPPh]   j   >/uFPPj/VÉEt*)CP  PSVW Vǃ} ]1Ƀ} !Ɖu]GW1h  Pjj EPEǃEE	ЃEtMUEMt   ? utSuEPuU   ŋE܉}EEEt/Et%ˍAw Bw 9uEEǍSw E Pw 9\M   EUA<A0E؉A4E	ЅA8tQuEPuU1ۃuZu=     u	uPuhm   j1ۃW؃#Ee[^_]UWVSu5    F tSEQ~j j u=     u.uC0tRRh   j^@C4F41V8SX5        e[^_]UWVS(E 5    ǉEu1kuƍ@$tQVuPU3|2/t /@  REuuut	=     tڃS<$X5        e[^_]Uh    h    E    Uh    fat_size=%d, next_cluster=%u
 fat fs/fat.c invalid cluster %u not a FAT filesystem %04x-%04x not a directory file `%s' not found not a regular file                
        	        LICENSE=GPLv3+  fat                                                                            s  "                                                         )              8              E              Q              `              l              w                                                                                                                                             grub_mod_init grub_mod_fini grub_strlen grub_xasprintf grub_memmove grub_strdup grub_disk_read grub_dl_ref grub_errno grub_memset grub_fs_list grub_strchr grub_malloc grub_real_dprintf grub_error grub_list_remove grub_free grub_dl_unref grub_list_push                        :     I     e     n     t          o    t    ~            7    @                3                                  
                              	    3	    8	    U	    \	    	    	    	    	    	    	    	    	    
    
    2
    H
    W
    
    
                                    R    f    m                              	          B    N    V    ]    b    g    z                                                             .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .modname                                                      4                       	   @       P    	            %      2                          8             t  (                  4   	   @         8   	            >                                 N                                 S                                                    
   	         	              P                                  H  \                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/backtrace.mod                                                                    0000600 0001750 0001750 00000003154 13417732100 0015303 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (  
 USQ]QQSh    Xs$   XZsh   YXsh   XZsh   9sRPSh   ]É)ځ@ 9tމU]U1U    MVSt/Bt#X9wp9s)Qp2h1    ًR(PPQh:   e[^]Uj h=   j h   hN        U5    %p:   ( %p, %p)
 Invalid stack frame at %p (%p)
 %s.%x+%x %p Print backtrace. backtrace  LICENSE=GPLv3+  backtrace                                                                   (        !                                                            ,            C      X     `              {                                           grub_mod_init grub_mod_fini grub_backtrace grub_backtrace_pointer grub_backtrace_print_address grub_register_command_prio grub_printf grub_unregister_command grub_dl_head                !     &     0     5     ?     D     N     S     d     i        
     	                          	                )    .     .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .modname                                                      4   7                    	   @                        %      2       k  X                 4                                  :                                 J                                 O                
                                     	   	         	                                                \  X                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/i386-efi/gettext.mod                                                                      0000600 0001750 0001750 00000011430 13417732100 0015044 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      `      4     (  
 UWVSÃxtQ@    1;ss4FWtPPj j S    e[^_]UWVS˃ɋEUu1AQRPVBu@t*RSWV9tڃ=     uPPh    j    e[^_]UWVSÃHRơ       P   Pj j U`tVEUă   }tVWh   } tVWh7   j\EC    C    C    CECE܉CKtAKPCuV    3    =  tD         1e[^_]UWVSÃuQRhZ      EMQEEu1   u        WVhe   tGE_MQEEtu        WVhs   u    V؍e[^_]UWVSӃ}E1   ;    t> u   E   E   1>    MESEtSSt5PPj_Wt$  ME܉W        gEW;eEu{nuS_tu        1e[^_]UVS]h   $   ډ4$$   $   $       ]e[^]US]h   $    ى¸   |]]UVS]h   $   ى4$¸$   9]e[^]UW1VSÃ4EЋEϹ   WVUuDE1uE@Pt&PMԉPEWV YtS1	E ؍e[^_]UWVSÃ@<Ѓ? uS؋KVJCe[^_]UWVSÃ{Ѝ4     uSKPGCD0e[^_]UWVSÃx U   8           @1    KxE   	;ss4؉M"Mt\MQQuPM u0I뷅uO{ tI1҉t!RRuPu*1҉u                1e[^_]USQ]; t"ڸ$   uڸ   uZ[]U}EtE   E   0ZYPh   1UVuSh   $   ىue[^]¸$   wUVSh   $   $   ډ4$$   8$   $       hh  j h   h0  j h   $   h   h   h  h  h  j h   $   $   E   e[^]U$      D       premature end of file mo: invalid mo magic in file: %s mo: invalid mo version in file: %s %s%s/%s.mo %s%s/%s.mo.gz %s%s/%s.gmo /locale  prefix locale_dir secondary_locale_dir lang one argument expected %s
 Translates the string with the current settings. STRING gettext  LICENSE=GPLv3+  gettext                                                              ^          G  &                                                             -   !  =     H              X              g              s                                                                                                                                                                     +             :             E             O             ^             k              grub_mod_init grub_mod_fini grub_env_export grub_gettext_reread_prefix grub_error_push grub_xasprintf grub_strdup grub_file_seek grub_errno grub_memset grub_register_variable_hook grub_register_command_prio grub_printf grub_file_read grub_zalloc grub_strcmp grub_strchr grub_malloc grub_file_close grub_file_open grub_error grub_free grub_error_pop grub_gettext grub_env_get (     6     H     \                                                 9    B    S    \    c                                            1    K    V    [    }                                N    a    }                                            ,    ;    @    P    d    t    y                                        )    a    }                                            -    2    9    @    U    g    l    s    z                                                                        
                "  	  )    .  	  8    C  	  I    X    b    g     .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .modname                                                      4   m                    	   @       @                %      2                         4             	                     :             	                    J             	  H                  O              	                                  	     	   	         	                x                                 X                                                                                                                                                                                                                                                          boot/grub/i386-efi/bfs.mod                                                                          0000600 0001750 0001750 00000016454 13417732100 0014145 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      L      4     (   UWVS])߉tt
8t @BKu11Ʌt
[)^_]UEp@1US  ]EQUh   j j K8	 t1RP0 t	1Q48 $%   = @  	Ps  PuS]UVSRSj|j j j jP uPPh    j	9u5{ 1SFBu{D1uׁ{pu΋s(tǋK,   9uve[^]UWVS   ]El     euPPj Ve[^_]UWVQuuuuJL7O1΋J,	 t1WVPe^_]UWVS|uEЋEM܉U؋UuuEEӉUuEEE  1;   rw;   vE   E     E܋U;      rU;      E1E    HE1}]O1΋K, t1uȋ]Eȉ}U9]rmw]9]vc]+];]v]ԋMЋ}uy })Ɖy$}SMu׋UW}VG       1]U])]  EE}tEȋUHE܋      9UUĉEwrE9EsE:     E܋U;   i  rU;   X  E܃   EE؋@,HeEȋE    SE  E܋}SU؍   EWj j }E    E9E   E1ҋ}@O, t1EȋEŰUEŰE9E   wE9Evz]+];]v]ԋEЋ}uUMx ǉp$ESu+EURUPG     tE&  1]U])]uu4  EȋUEEEUuE܋U;   wrU;   sER   <  }1ҋE܋w,   N t1    SEUEu
      E؃@,HE   PEuu    ^  ESUuȍ   Ej j 2  E    EEu܋}؋EU+      w,~u   I}!   !։uNMMuƉ} t1K!u]#}ĉML6 }t1҃ EEU   9E   E9EuE9EtyE]ȋMÉ@ t1MǉE   9vEEEUPEuj j t*uYu   EEEEă} Ew9Ev1uZuEl   E	   e[^_]Eػ   @,H+];]ԉEv]ԋEЋUu}P Up$Suu׋U؉uG     tuȉEXuE#1]U])]tEUĉEU1e[^_]UWVSÃD}EċEuUM     E     E     E     Ej j jPWV    UEk
#RUUá    t]PMPEj j RUSWV; tS,E}CE}#ËEEC1e[^_]UWVStj j j EEPj j UM   EЋu؋}܃EEMU@EPPEPEPEPEPEWV   ]CffE^  1ɉtAA1EEEEEEE}tiM   	;usSEL6fLfUfSf9vEuU)EU	uEċTHyM둅   }fCf9vuUEu	u#EċP }WS1   }  xt;Eċ0xAt-f}v&Eċpx+} tEG9sEċ4|{sutSMZSuh   je[^_]UVuS]S@PPCsHsDJ|Vuss  ue[^]UWVS   Eul     x  uá      uMlSj j tS  E>   ؉TF;T   fVft~ʉPLʉLNL
RPHPh   u7F    u*vs   WVLXP   Hjf{:    uK4lSj j    h   ٍ`RlPh   .   EQdSuH`j  j t1RPW    v   RRj j VXPj j l u$uP\Xh   }S1e[^_]UWVSÁ  }h   qtWj j   ǅ    ǅ    ފ</uFu1p  tF</uPh   W PGǅ    ǅ    %   = @  tPPh   joPP)PSuGPWh   j j @,H t1RP   G%   =   u![^h   j   G@tu   VÉD$thZYj j Sj j z     `V   $uj        h   GHPSƃ    ;/uBh   Wj j t0SDPh    PWS؊FP~ t  ge[^_]U1"   WVSx  ]Ex|E-\   PE7  %   = @  tVVh   j   SSj j j $XPj j    `hlH       QQj j j<P$WV7 ^  RT1R1j j jɍ0PV#ȋRP$    04T,C8(J9r]zrR   PP<P0P,P(P$WV u u1땋0fRf4Yf9v֋, <, xRt4PS *(	C    e[^_]UWVS  E@    E @WE   %   =   tRRh   j^hd  u    Cǹ   Ph    PB|PtEtMP@EЋUԉA4Q8e[^_]Uh    h    Uh    not a BFS filesystem attempt to read past the end of file incorrect direct blocks incorrect indirect blocks incorrect double-indirect block file `%s' not found be:volume_id %016llx not a directory too deep nesting of symlinks not a regular file bfs              9    =   n  ]      LICENSE=GPLv3+ bfs                                                                         6                                                               )              8              E              T              _              l              }                                                                                                                 grub_mod_init grub_mod_fini grub_strlen grub_xasprintf grub_memmove grub_disk_read grub_errno grub_fs_list grub_print_error grub_zalloc grub_malloc grub_error grub_list_remove grub_free grub_strndup grub_list_push grub_memcmp  J                       %            Y                    !    _    n                         O    X    b    u                        x
    
    
                        2    7    H    m          	          h    m  
  ~        ,    Y    `                    5  	  A    X      	                      /    M    Y  	          _        -                        #    (    -    =    B                                         .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .modname                                                      4   K                    	   @           	            %      2                          8             x  (                  4   	   @         8   	            >                                 N                                  S                                                    
   	         	              4                                    \                                                                                                                                                                                                                                      boot/grub/i386-efi/gfxmenu.mod                                                                      0000600 0001750 0001750 00000121340 13417732100 0015033 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      8      4     (   U]UWVShh    uSh    h   j   jơ    x  EPa  <(t'</t#h   WPh%   1ۡ    u5    ۋUEt73tQQRpduš    M9HuM9HuQRPW    S    uV       Eǃ   %   ClECpE   E   uuj j {l tuuj j S^F    F    F    F    4$1e[^_]á        t#tP8tU       Ë        U5            UWVS   pXtTj    p pVVV   Ux4$V E   X4$VU+}W)SV҃e[^_]UV2S9w	@9v19w1r9w*Yr9wA؉   9v19w
r19[^]UVuS]PPh2   SPtC$u] e[^]e[^]UVuS]PPh2   SPtC$u]@e[^]e[^]UWVS    tj QWVsMS Me[^_]USP]       tP    s@XsDCXt
PP,s0Xs\Zs`YsdChtP]]]UWVSuh         tP    E
   1҉s    C    CkC   C$   1҉ǉC)}kEs   )ǉC Ch7   Ch    C(C,$J   C4 C5 C6 C7C8C0C9C:C;C< C= C> C?C@    CD    CH    CL   CP   CTCUCVCWXZj j CX$S       $K1C`    Cd    ǃ   2   C\    )C|CtCC-   CxY^uStS1ۍe[^_]UWVS<]uCtj E$}uvvv6CDV>tvv+KQ+QRWj P<FNỦECWMPCVPCUPCTPMЋỦ$uRWPCh tWWVPRC\tOQQPs(S)C(UxC7(PC6PC5PC4PUԃWRPs(s\ Ctw   Ct{`sx   EԋC|uЉUȉE   C;s,PC:PC9PC8PUȋM̉EčBUЉ$AMPBPAPuC? PC>PC=PC<PZuuuuPWV4$   EFM+MEẺ$)EPuVW }uje[^_]UWVS    u؅t(CRRVPR$   YXVWԍe[^_]USQ]M   u      ٸ   {l t
Z[]nX[]U   1SQ]1M{l t
Z[]8X[]UVS]h2   SPt&PPuVSP$   ZYVue[^]UWVSX]s0EuQQhb   j  {   s0ǋECECEԋCEЋCECECEC EC$EXZjMWt	pkP  WMkЃEvC;u}E9E|6PPjMWt	pkP  GE   kE9uԉu~
E9EЉ-ukE)ωM̋M)u)   ƋE)DU;U~U9|};}~};}|uEUEԿ   )uƋE+EșE}̍>;U~u)}Ѝ9~)ȉCẺsK C    CEĉC$s$usls sss   j      1  {D uESHEujs@ssPsLsPRjs@ssPE tCDKS{3Pj j j MЉUMЋUԉ$RWVP {l t2KS{3Pj j j MЉUMЋUԉ$RWVP QSh.  shSh  sh$    ^_SS{l tj XZSSe[^_]US]Sh  shSh  sh{l tPSh  sh]UEUPpE]UWVS j EPuxwRRj j j j j j j URPu$uxF]k uuuPVUucu>9s>PPSuu¡    ;fFf<vvffU:9rӃR1e[^_]UWVS@j EPuy        1y]Ѝ    E}E    EЋM9sF)RW)RSYXWuEfEf<vu뭃PEăe[^_]UWVS8RMMЉ$E$    UԍTЉ$MЅÉEu1   CFP~ t9]t{/t/ÊAsy t    Asy t PPuԍEPZuE        {jPwwEPuEe[^_]Ujt)     @    @    @    @    @    UWVSu^t%{3Xs$F    e[^_]US]SX3]]UVuS]8tSRRVPu3tV1e[^]UWVS]}u;{u;stS{se[^_]UWVSEx1    EEXt VVu3uC   [܋E    PZYhq   PEtME)V1ۃuu'hx   t2MEtjuS1%u^E@FEpFe[^_]ËP;P})USZX
u@@   @[]ÃUP;P} ]USÉ
t@u[]U<	t< t<
   t
1<   ]USËC9C}t	J[]UVSsdt(߃AvPЃ	v
_t-u	̋C)~RPV31e[^]UWVSÃ]"u0{s;s|	y"tڃ({u)t@usH;{}$s;s};u(P܃sssh   j 1PVW3e[^_]UWVSӃ,        EE8    1U
-+utBUuPj EPR    uPt؋}?%u;E    My	E   21ҹd   } tEЉGkg1e[^_]UWVSÃ, EA  RRh   Pu
   PPh   uu
   PPh   uu
   PPh   uurPPh   uuUPPh   uu8PPh   uuVVh   uuuI  QQusssh      Psh  VP$sh  VP$ZE    UYE    EERVPXG$ZVW`{uF E̍FEAPPusssh(  ssshd  j   #u2C9Co  }uՉNP  +u)=PPhZ  VPt  usssh  i=tPPWsssh  jOEuW   PPh  WuNVPPh  WuNVEJFQQh  WuNVRRh  WuM̋UPuWVP$u<$=     u    e[^_]UWVSUuEu"t
PP,SSj j    uE  E   e[^_]QQRPá       PPj*SEuPSh)  jc})ߍGPtIPWSRUUE: Y@_UPRU$tt
PP,>S    e[^_]UWVShEuEEXuEu  E@4PEME    E   E   M܅EuE  WuPu;E   E@htPMAhVVQPRE9E  E5#Eu@zE+EuEPhErW  zǅEu
?  5E:tSSWuuuhP    E
E"  Euuuuh    EQ]QWh  EEԉEE܉EEEuVC(   RRWh  uVC,   PPWh  us04$C0   PPWh  u
P4P  PPWh  u
P8Po  PPWh  u
Q<QQ  RRWh  u\PPVu  PPREPUUtRa  RXs@EĉC@PPWh     PPVh  uCH      PPVh&  uCH     QQVh+  uCH     RRVh3  uCH     PPVh<  uCH     PVhF     PPWhc  uiPPVh  uCL    O  PPVhy  uCL   /  PPVh  uCL     SVh  {QQWh  usRRVh  uCP      PPVhy  uCP     PPVh  uCP     PVh  jPPWh  uPTPSVPPWh  uQXuVSRRWh  uPj
j VC$PPWh  u SMĉ   EĉC   PPWh*  u SMĉ   EĉC   PPWh7  uSMĉuEĉCwPPWhF  uSMĉuREĉC JPPWhV  us\4$C\SSWuuuha  j Vuuuh  j W=     LEpdYuMAdE@htPE@h    uZuXu    e[^_]Ut@1]Ut 1]UEVSXCƋC[^]UEWVSpFǋ9}F9}É[^_]UEWVSpFpǋg9}FW9}É[^_]UEWVSpFFǋF<9}F,9}É[^_]UEWVSpFǋF9}F9}É[^_]UV1S]C0tPC0    C0tPC0    $usC    XsC    ]e[^]UWVS˃H@u<tOuuwt!9u9pt1PMM    ttjWVSQ     e[^_]U   WVS]u}؉3{j_   j   A   W   #   W      j1҉uij   uNj   u3j   u}eغ   [^_]ye[^_]ËtUp0j j uQjP UWVSE]EEsEEtE؋FiU9Љ}׋FV9}ǋEXE܋FMM9ȉ}ʋFU7U9}uUU܉Ѻ   DK   }u܋C$'   C<$C   M<$ M1XCuZ   CuSCu3$   SCM$   C}M܍e[   ^_]UWVS(j0x       @    j$C$$   C1S    $u0S    $uE    }    }    uEE   4$ZuUT:Љ$   E}@MAx tMFE@~ tE1uuM@| uPPEWCP<$        E}$+C.#  C!  C  C	   C C   C$}   C(   C,   S1e[^_]UE]@<UUEP(]UE]@(U   EWVux,^_]U   EW}Vp,^_]USREXDtPPu3U[]UWVSu^Dt{P$ue[^_]UEMP@@Dt9uHJE]@]UVuS]PPh  uu*s<tVC<C<        e[^]UWVShEPURURUREPE p8p4@0EPE@,EPE@DE}   E   Es@4CECEE@8C ƋE@4CECEE@8CECE@ t#}QW}WSЋEă9E}EE9}ƃ} E        E@49EE| EEH89M|AEEϋM!!ȋM;M|})׉}<09|)ƉE܋E}؉URREuWSPEU؋ 9ЉEwuN9vE9wZM9wQ}u܋O9w	9v9w7}9w.}u}9vHPPuSP}ujE@EPuuuue[^_]ËEUx9r9wEuH9rj UVuS]jtVDPFDu]@e[^]e[^]US]h  S   tPPh  S1҃Ћ]UjHt@$        UE]@<UUEP(]UE]@(U   EWVux,^_]U   EW}Vp,^_]UEUP@UPDUPLUPH]Uh  uɅË        t 9BuURÉыUSP]]Z[]tRtNUSRPu1.PPSEP        $        E]1UWVSL]M{@ U  S,9w	q9v9;  S490  AS09w	y9v9  S89
  {` t6CltPSdC\ShClC\C`    Cp{l   {p   URURUREPs8s4C0EPC,EPC4 KlEЋC8ɉEt9A11Spt2uԋruE    E    uPWj )Ɖ   j PE)PjQuȃ }Љ9~   }M9ωƉ}ȹ   KH1SD)9эFE~CL9~))CP11{X t{PEй   EEșEEԙEȋE]șE]E9slE1ҹ @  FsPCTuuE     Ej j EEE     EęEEPEEPjsp E   uuuue[^_]UWVS4}h  ]uWuPj
j VCP  PPh  WE  u	>-t1PtFF   Pj
EPVt( w=   v<VV   h  j$ w	=vQQh  j=     uqE PtERRh(  uu	x1"PPh,  utu޹   1ҿZ   F-t؉EԋEԉCT  PPh/  Wu PPh?  VCXW  PPhE  Wu1C`   sdtV1Cd  PPhS  Wu1C`   shtV1Ch   PPh_  Wu1C`   s\tV1C\   QQhi  Wutfs<tVC<C<    C<t<RRhl  Pu(jt    @*  X        e[^_]Ujtt"@$8    <   @@   @P@   @TUщS1ۅyٳy؃1t[]UE]@<UWV1S1ۃ<E}E    E    @DL};Et]8E    E    R tEEQPMQWҋEW;U~UċU9UsUċWMw9t)M@랁   E   1ɅM!E} t.     )uEE]9s} tEuĉ0}    E1pD;u   EE    }E    EE    @ tMRQMQSЃC} EEuE   @4CEEE9EsEPPURSPv}se[^_]UWV1S1ۃ<E}E    E    @DL};Et]8E    E    R tEEQPMQWҋEW;U~UċU9UsUċWMw 9t)M@랁   E   1ɅM!E} t.     )kuEE]9s} tEuĉ0}    E1pD;u   EE    E    }܉EE    @ tMRQMQSЃC} EEuE   @8C EEE9EsEPPURSPv}se[^_]UUEP(]UE]@(U   EWVux,j j jPPXe^_]U   EW}Vp,^_]UuuEj PPXUVS]sDL9tPPu6Uve[^]USÃj\tPLPDP@@$h    t   PTXX]UWVSu^DFLE;]t{
R$߉ue[^_]UUMBDL9t$9uPHJPHJE]@]UVuS]PPhx  uu*s<tVC<C<        e[^]UWVSXuEċ]PURURUREP v8v4F0EPF,EPFDEFLEE9E   E}؋ QQE WRPU9w	K9v9wUM9wLKu9w	{9v9w5}9w,}u9vI}PPSWP}ujE@Ebuuuue[^_]CU9r9wKu9rj UVuS]jt*0STPBSLPCTPPSVPj j jSSX e[^]US]h{  S   tPPh  S1҃Ћ]Ui1  ]#U2  ]UE]@8UUEP$]UE]@$U   EWVux(^_]U   EW}Vp(^_]Uh  uɅË        t 9BuURÉыUSP]s@ZsD]]USE]؉CPEC<s@CDSPu  QQRPC@]US]s@sHUSHZ$UÉ]UWVS]M{<   S(9w	q9v9   S09   AS,9w	y9v9   S49   CT1tBus0RRs@sH)$   s0PPs@sH)y1;s0URURUREPs4s0C,EPC(EPCH xCOPCNPCMPCLP<$VPsHs@ uuuue[^_]UWVS}h  ]uW   s@XsDuCD    h  zPPh  Vu
h  :WWh5  Vu
hE  QQh  Vuh      ƃVCDXZsPVC@@  PPh  WuVCHPPh  WuWLWSVQQh  Wu,1,      RRVPu{T   GPPh  Wu WWh  VC<   QQh  Wut;s8tVC8C8    C8t<RRh  Pu(jt    @8  X    e1[^_]USjXtF    @<   h  C@$  CL CM CN COCT    CH؋]UWVSÃ8@PKL   E܋CXMVEV 4$EV(      <$EW <$EW(4$EV 4$V(US8k]M+U+U;}}})9}ȋM)MЍe1[^_]UE]@<UUEP(]UE]@(U   EWVux,^_]U   EW}Vp,^_]UE    tEǀ       ]USR    t\P         P         P         Pǃ           t    t1    1]UVSӍBPBPBPRvvFCPP e[^]Uppp0US]   Z   Y   X      t
PP,   t
PP,   t
PP,   tP   t
PP,   t
PP,   Xs|]]UVuS]PPvd      e[^]US]h8  S   tPPhB  S1҃Ћ]UWVSL]u  CP   E܋CXE؋CLVEV4$EV 4$EV$4$EV(   4$EV 4$EV(4$EV4$EV$   4$EV 4$EV(4$EV4$V$MU9}9Љ}֋M;M}MEUE9}UPPhG  s\MMZYhG  sdM9MsUE܉EEǋEsTsD00   tru)               E0}kEЋUEEEʉE     E     e[^_]UVSu	;-t1PtCC   Qj
j St( w=   v<RRhR  j   $ w	=vPPhR  je[^]UWVS$}hg  ]uWu!V{` C\]  CdU  PPhq  WuBuC\C`   Cd+  PPh  VtڃVC`    Cd   PPh  Wu/PPEPV  E{l Ch  Cp  PPh  WuSuChCl   Cp  PPh  VtWWEPVg  ECl    CpU  QQh  Wu"	CDRsHP     PPh  WuCHVPsDQQh  WuCL  RRh  WuCP  PPh  WuhCT  PPh  WuECXn  PPh  Wu PPh   VC@:  PPh  Wu:ǃ         tV1     PPh  Wurǃ         tV1            tV1   f  QQh*  W   u)      tWPIRRh  VtÃǃ         4$ǃ             ǃ        PPhE  Wu1Cx   s|tV1C|~  PPhU  Wu7Cx      tV1   3  PPhe  Wu#PPh}  V     PPh  Wu     PPh  WumQQh  Vuǃ         RRh  Vuǃ      |  PPh  Vd  ǃ      U  PPh  Wu	   /  PPh  Wu   	  PPh  Wu      PPh  Wu      PPh	  Wu QQh   VCt   RRh	  Wu7ǃ         tV1   >PPh	  Wu*s<tVC<C<        e[^_]UWVS   ]M{@ 
  S,9w	q9v9u
  S49j
  AS09w	y9v9O
  S89D
  z    0
      #
      
  UC,   VV4$lV 4$EV$4$dV(t{t ǅp    xr     x   ;8X  {x t;W   s|   P         PCx             ɉh      WpW<$EW$<$EEW <$|W(p||      $R |$R(h    uMQp|Q|$Q$|$}Q |$Q(pE;   ;S8ǅp   ~Ct    ǅp       MS8l|C4M)+t)+dQRPVEU}Vj j VV   tru1   &   Ep t|      )EUEw                  CPPCTLCX<C\xPtHCdx$XDCLT   ppx,:   9}   T9~)ƍF      ƉE   VVƋE$P$@E8$P <$EW<$`hW$h`$40Q 9\h}\hu9}URURUREP,PEkPEPEPEPTu+8WPEPP+0WP`PPHt)ȹ      Mt8DX)ЙX0LCD\)ƉECkPCjPCiPChP CsPCrPCqPCpP,ǅt    +h+E(,   +@+4+CH$M4ǅ@    <h    @x9        ;2  ;ppuZPt(P`j PPCdL4PǋhX0DRt,WPEj PPC\L$P ǋEX8DQQVH      t9RRP   t$sHsDtj j R\jP QQV      Uȋ0XtE܋PEE_Dj HLVEȃ T<@tIuuuuEp      E   )E|E   tDruZdC4)EE|9l~l+|$E    lC4+d+|+   EEUE   U         X t   WpW <$EW(<$ElW<$EW$M4$dV 4$EV(M4$MV4$`V$<$\W X;lE    h~	+lU|Ru+dPW|W    tEVEV )hp    l1Ƀt ~2l uE1ptE1xtP;UsHl u:x9t~,E9Ev$E1+Etp+xUU1htWxWt    Eu`\)|tVVt)E+UPR|VVj j WWxuVVEEe[^_]USh     @$       @@   h	  CD    CH    CL*   CP   CT   C\CdCX   C`   Ch Ci Cj CkCl   Cp Cq Cr CsCt   Cx   ǃ       ǃ       C|    ǃ       ǃ       ǃ      ǃ      ǃ      ǃ       ǃ       ǃ       ǃ       ǃ       ǃ       ǃ       ǃ       ǃ      ǃ       YXj j    XZj j    YXj j       uSRsHsDP1]UE]@8UUEP$]UE]@$U   EW}Vp(^_]UMSUEY@tQ@tR1҉         []Uh+	  uɅUSP]CDt;C@tPC@tP]]UWVSÃP@@DutlPCD    Ws0{4t90u9xtD9tPC@CD    t19utP19uCD~    DjPWVS     e[^_]UWVS4}h5	  ]uWus<4$C<   PPh?	  W   C<uSShD	  j&   QQVP   RRPEPt    8CDt;C@tPC@tPEC@wVEECPPhZ	  Wu*s8tVC8C8        e[^_]U   EWVux(^_]UVS]M{D    S(9w	q9v9   S09   AS,9w	q9v9wsS49wlURURUREPs4s0C,EPC(EPCD tH11QRj j j j jP uuuue[^]UjHt    UE]@<UUEP(]UE]@(U   EWVux,^_]U   EW}Vp,^_]UEUP@UPDUPLUPH]Uh]	  uɅË        t 9BuURÉыUS]shXsPZs<]]USRxl t/PshstC|Pshsx   PCl    {| t1    1]UWVS}hg	  ]uWu|sP_Xhl	  Vu
h	  :QQh	  Vu
h	  RRh	  Vuh
      ƃVCP PPh
  WuVCT  PPh
  WuPXPPPh#
  WuP\PSVPPh0
  WuQ`QRRh9
  WuPdPPPhB
  Wu8Cl   Cp   sttV1CtP  PPhL
  Wu8Cl   Cp   sxtV1Cx  PPh\
  Wu#PPhn
  V      PPhs
  Wu1Cl   shtV1Ch   QQh}
  Wuts<tVC<C<    C<t<RRh
  Pu(jt    @Y  X        e[^_]UWVSLu]~@ "  V,9w	K9v9  V49  CV09w	K9v9  V89  FD9FH  URURUREPv8v4F0EPF,EP ~p     F4~|   EԋF8WEW<$EW$<$EW <$EW(MM̉$EȉMES$ES$$ES $ES(M)MԋUUEE)EuuԉUWWj j WWE    UtEEԋE)E)U)UЋ~L1ND9~VH9~E))ʉ1;E   Wu+EPSSuuSS   V8^4BEF_{UPF^PF]PF\PUЉ$Sj j PVD FL^H))1)FcPFbPFaPF`PZuԍSWjRPFg PFfPFePFdPYuSjjP ~P    F[^TPFZPFYPFXP~8ZVLYE̋F4EԋFL1)PvPu        NPPVS$E   )ǉC$E+EЙPuSVVuuuue[^_]UWVS]CPt;RRPsTY_h
  sTEXsTSTRЉEE    E    {p t{tp{|   WW<$EW$<$EEEW <$EW(}܃}    u:VV4$V$4$]V 4$V(E}Eu   s   E0s   E8e[^_]USh   tq@$,   0  @@   h
  CX CY CZ C[C\ CTC] C^ C_C`CaCbCcCdCeCfCgǃ       ؋]UVuS]RRvSYXh
  SPtPC$Vhb  SPe[^]UVuS]SPtRR6PuQQvSVRRh
  SPtPC$Vhc  SPe[^]U EEEEEEEPuxU EEEEEPuUSBHz t[]UWVS}u9r.)FPt}PVWS3 1e[^_]UWVSE   t/@UEP1t      @;E|1tY;u}TPPj/WuWP)Pj WUUu1   1: tzF룋EE    p    QQ<h
  7Eu2RRh
  7u,t(N7E    |X7    7MDENw}GW<     1tu
  MM1G;}|14G;}|Se[^_]UWVS}u<(t</ue[^_]V<$D$tMSt|/t/F \tS1؍e[^_]US]SHx	</tHE
  ]@RPj S]UWVSӃMU  uE   ÙE![^_]   .png                      &  +  2      theme variable `%s' isn't set prefix %s/themes/%s list Unknown Regular 16 Fixed 10 GRUB Boot Menu no font loaded icons/ icondir %s:%d:%d expression expected in theme file label image vbox hbox canvas progress_bar circular_progress boot_menu %s:%d:%d unknown object type `%s' theme_dir theme_path %s:%d:%d expected `{' after object type name `%s' container %s:%d:%d attempted to add object to non-container %s:%d:%d identifier expected in theme file %s:%d:%d expected `=' after property name `%s' left top width height styled box missing theme directory missing `*' in box pixmap pattern `%s' %s:%d:%d missing separator after property name `%s' %s:%d:%d missing property value title-font message-font terminal-font title-color message-color message-bg-color desktop-image desktop-image-scale-method stretch crop padding fitwidth fitheight Unsupported scale method: %s desktop-image-h-align center right Unsupported horizontal align method: %s desktop-image-v-align bottom Unsupported vertical align method: %s desktop-color terminal-box terminal-border terminal-left terminal-top terminal-width terminal-height title-text %s:%d:%d unknown property `%s' %s:%d:%d property value invalid; enclose literal values in quotes (") nw ne se sw n e s w c id component container component num_ticks start_angle overflow is detected deg ° ticks_disappear false center_bitmap tick_bitmap theme_dir id __timeout__ id component container component %d text  @KEYMAP_LONG@ Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. @KEYMAP_MIDDLE@ Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. @KEYMAP_SHORT@ enter: boot, `e': options, `c': cmd-line font color align visible false id __timeout__ Unknown Regular 16 left center right component list Typical OS overflow is detected item_font selected_item_font inherit item_color selected_item_color icon_width icon_height item_height item_padding item_icon_space item_spacing visible false menu_pixmap_style item_pixmap_style selected_item_pixmap_style scrollbar_frame scrollbar_thumb scrollbar_thumb_overlay true scrollbar_width scrollbar_slice west center east scrollbar_left_pad scrollbar_right_pad scrollbar_top_pad scrollbar_bottom_pad scrollbar theme_dir id Unknown Regular 16 component theme_dir file unspecified theme_dir id component text @TIMEOUT_NOTIFICATION_LONG@ The highlighted entry will be executed automatically in %ds. @TIMEOUT_NOTIFICATION_MIDDLE@ %ds remaining. @TIMEOUT_NOTIFICATION_SHORT@ %ds font text_color border_color bg_color fg_color bar_style highlight_style highlight_overlay true theme_dir id __timeout__ XXXXXXXXXX Unknown Regular 16 container . .. /  )  &  u&  &  &  )  _'  *&  8&  C&  \&      '      *  +  M*  *  +  X*  f*  q*  *      -      t7  5  5  i5  ^1  7  >6  4  4  4  4  4  5      8  8  r8  r9  '8  58  @8  Y8  :9  :      	@  %>  -?  =  4@  [I  =  =  =  >  s@  B      mV  U  MV  X  U  U  X  U  V  YW      Y  aZ  Y  Z  ]  Y  Y  Y  Y  a  Z      LICENSE=GPLv3+  video_colors trig bitmap_scale gfxterm font normal bitmap video gfxmenu                                                                                                          =                             
                                           )     c     R     6    k              y                 **  #        $                                     E  ?                  !             8  f  D     I             X   8       j               1b                      0  8                               	               R  N     .             ?             U             i             ~                                           '                                     9             G             c             n                                             c  #       Y                        G     @  U  6     h             }  E                                  e           /                                      4             @             L  I	  	    c             o             {  <  d                                                                               
                          B  8       T             g             r    6       c  K       {  N                                                                       0             K             X  T      j             w                                     fc  )      grub_mod_init grub_mod_fini grub_strlen grub_gfxmenu_icon_manager_set_theme_path grub_gfxmenu_view_redraw grub_strtoull grub_gfxterm_decorator_hook grub_gui_canvas_new grub_gfxmenu_create_box grub_utf8_to_ucs4_alloc grub_font_get_descent grub_gfxmenu_icon_manager_new grub_font_get_glyph grub_video_bitmap_load grub_get_dirname grub_xasprintf grub_gui_hbox_new grub_video_blit_bitmap grub_gui_progress_bar_new grub_memmove grub_gui_circular_progress_new grub_unicode_aglomerate_comb grub_video_bitmap_scale_proportional grub_strdup grub_gfxmenu_redraw_menu grub_trig_sintab grub_video_set_region grub_video_map_rgba grub_video_fill_rect grub_font_construct_glyph grub_trig_costab grub_gfxmenu_try_hook grub_gfxmenu_icon_manager_destroy grub_gfxmenu_timeout_notifications grub_font_get_string_width grub_video_bitmap_destroy grub_font_get grub_bidi_logical_to_visual grub_errno grub_gfxmenu_view_load_theme grub_menu_register_viewer grub_font_draw_string grub_video_parse_color grub_gui_iterate_recursively grub_gui_image_new grub_video_get_viewport grub_gfxmenu_icon_manager_clear_cache grub_gfxmenu_icon_manager_set_icon_size grub_font_draw_glyph grub_gfxmenu_view_new grub_video_set_area_status grub_file_read grub_resolve_relative_path grub_gfxmenu_icon_manager_get_icon grub_term_outputs grub_print_error grub_gui_recreate_box grub_zalloc grub_strcmp grub_gfxmenu_view_draw grub_strchr grub_malloc grub_gui_label_new grub_file_close grub_video_swap_buffers grub_file_open grub_isspace grub_gfxterm_schedule_repaint grub_gfxmenu_view_destroy grub_menu_get_entry grub_video_set_active_render_target grub_gui_vbox_new grub_video_map_rgb grub_error grub_gfxmenu_clear_timeout grub_new_substring grub_gfxmenu_print_timeout grub_free grub_video_get_info grub_font_get_constructed_device_width grub_video_set_viewport grub_gfxterm_set_window grub_video_get_area_status grub_gettext grub_gui_list_new grub_env_get grub_video_bitmap_create_scaled grub_strtoul grub_gfxmenu_set_chosen_entry grub_gui_find_by_id           _  #     (     /   S  >   C  H   0  \   X  y     ~   _                         N     D          ;        W      !  W  &  0  s  Z    J    Z    E    b        V    T    2    @    )    )        )            N  '  )  ;    L  <  Q    f    z        >    w  +    +    +    W    -    -     W  	  W    W    W  <  W  W  G  i  +  y  +  ~  W        .        !  r    |      ]    !    1    N    M  %  P  0  \  I  $  s      %    &    ,    %    3  q  %    &    %    &    ,        3  $  <  @  +  _  <  h      J    J  	    0	  <  ;	    Y	  .  j	    q	  S  	  .  	    
        &  [  /    3    W  `  q       R    &    J    R    &        5        5    <  "    '  J  :  <  C    ^    f  5  o    w  5  |  J        5        /    W    :  :  '  H  0  a  W    W        0        Y     W  .  W  R    `    g    n      G            W    0  (  `  3  -  N  G    W    -    W    8    W    W    8     D  1  W  A  !  v  8    D            >    W  0  W  ?    D  _  h  G  z  -    !    U  y      S    U    a    0        D    H        D    6        D    Q        D            D          #  D  /    8    @  D  L    U    ]  D  i  ^                  '    .  S                S    W      !  D  7    =  D  [    a  D  w    }  D    W    W    0    W    0          +  S  4  >  >  0  P  F  a    h  S  ~  G            W    W    0         K  0  G  j  =      -    j    }      D    .        D    .        D    W    !        D  )    .  D  G    L  D  e    j  D  |  >        W    W    -        D        D        D  -    2  D  M    R  D  m    r  D            D        D        D        D            D  *    /  D  J    O  D  j    o  D        S        D    4        D    B        D     a        D  )    D    I  D  ]    x    }  D            D            D    W    !  
      S    W  3    :  S  F  W  O  0  f  W  o  !    W    I    W    0  !  -  ,!  -  L!  W  \!  W  t!  W  !  -  !  `  !  0  %#    $  G  $  G  $  G  %    %    '%    2%    C%  G  %    %  W  %  0  %    %    %    %    %    %    %    &    &  W  &  W  &  W  '    '  D  0'  W  @'  !  T'  0  m'  \  '  7  '  Z  O)  <  q)  Z  )  <  )  G  )    )  D  *    *  D  3*  C  A*    G*    *    *  D  *  +  *  +  +  W  )+  W  ?+  >  Y+  0  b+    k+  0  t+  W  +  -  K,  7  d,  Z  ,    -  (  -  #  -    -  Z  	.    .  D  '.  a  9.    ?.  D  f.  L  .    .    .  S  .    .  S  .  0  .  L  /    	/  D   /    (/  D  b/    h/  D  v/    |/  D  /    /  D  /  W  /  !  /    /  D  /  W  
0  !   0    &0  D  ?0  W  O0  !  e0    k0  D  0  W  0  !  0    0  D  0  G  0  +  0    0  +  0  0   1  C  1    1    =5  C  T5    Z5    5  W  5  W  5  W  5    5  D  6  W  6  !  36  0  R6  \  g6  7  6  Z  7  <  A7  Z  k7  <  7  G  7    7  D  7    7  D  8    8    y8    8  D  8  +  8  +  8  W  8  W  8  W  8  W  9  W  "9    +9    K9  ,  _9    9  ,  :  ,  7:  7  P:  Z  s:  %  :  3  :  Z  :    :  D  :  W  :  W  :    :  !  ;    ;  D  ;     ;    &;  D  5;    >;    D;  D  S;    Y;  ]  g;  !  u;    ;    ;  D  ;  .  ;    ;  D  ;  4  ;    ;  D  ;    ;  D  <    <  D  <    %<  D  ?<    E<  D  ^<  W  n<  !  <    <  D  <  G  <  +  <    <  +  <  C  <    <    <  !  =    
=  .  h>  B  >  B  >  B  >  7  ?  Z  $?  Z  >?  W  J?  W  V?  W  b?  W  ?  *  ?  W  ?  W  @  W   @    ?@    E@  D  X@    ^@  D  PA    [A  ,  gA    oA  ,  9B  L  TB    rB    yB  S  B    B  S  B    B  D  B  .  B    C  D  &C    ,C  D  <C  .  RC    XC  D  kC  4  C    C  D  C    C  D  C  4  C    D  D  #D  9  2D    8D  D  WD    ]D  D  zD    D  D  D    D  D  D    D  D  D    D  D  D    D  D  E    E  D  <E  W  LE  !  eE    kE  D  E  W  E  !  E  W  E  !  E    E  D  F  W  $F  !  0F    6F  D  UF  W  ]F  !  F    F  D  F  W  F  !  F    F  D  F  W  G  !  G    $G  D  2G    8G  D  UG    [G  D  {G    G  D  G    G  D  G    G  D  G    G  D  G    H  D  "H    (H  D  HH    NH  D  nH    tH  D  H    H  D  H    H  D  H    H  D  H  W  H  !  I    I  D  +I  W  ;I  !  OI  0  J  B  J  B  L    L    M  7  M  Z  N  %  N  %  UP  O  jP  ?  P    P  O  P  3  "Q  Z  T  C  2T    8T    DT    IT  .  qU    U    U    U    U  9  TV    \V  D  V  -  V  -  V  W  V  -  V  -  2W  0  EW  `  JW  0  fW    rW  D  W  W  W  !  W    W  D  W    W  S  W  >  W    W  0  X  -  !X  -  =X  W  LX    RX  D  dX  W  tX  !  X  0  Y  7  6Y  Z  ]Y    qY  Z  Y  C  Y    Z     Z  D  3Z  +  8Z  +  QZ  W  oZ  W  xZ  W  Z  W  Z  W  Z  B  Z  B  Z    [  D  [  W  $[    *[  D  9[    B[    H[  D  W[    `[    f[  D  u[    {[  ]  [  !  [    [  D  [  .  [    [  D  [    [  D  [  4  [     \  D  \    \  D  0\    6\  D  V\  W  f\  !  |\    \  D  \  W  \  !  \    \  D  \    \  D  \    ]  D  ]  W  .]  !  D]    J]  D  c]  W  s]  !  ]    ]  D  ]  G  ]  +  ]    ]  +  ]  0  W^  7  p^  Z  _  %  _  &  `  %  `  &  5`  %  D`  &  m`  %  `    `  A  `  0  `  ,  `    `  3  `  W  
a  Z  3a  ,  :a    Da  ,  Ra    >b  C  Qb    Wb    cb    hb  .  b    b    #c  D  ?c    Tc    c  G  c    Hd  G  yd  F  d    d  U  d    d  D  d    e  D  e  W  0e  W  Be    fe  G  e    e  W  e  W  f    f    f  G  4f    hf  W  f    f    f  !  f  U                                           $     (     ,     0     4                                                    $     (     0     8     <     @     D     H     L     P     T     X     `     h     l     p     t     x     |                                                                                                                                                                                            $    ,    0    4    8    <    @    D    H    L    P    T     .symtab .strtab .shstrtab .rel.text .rel.text.unlikely .rel.rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                      4   f                    	   @                       )             f  D                  %   	   @       ܜ                 <             @g  <                  8   	   @         `               D      2       |g  
                W             8r  \                 S   	   @       D  p              ]             s                    m             s                    r              s  @                  {              s                                  s  @              	              ,z                                                                                                                                                                                                                                                                                                                                                     boot/grub/i386-efi/bitmap.mod                                                                       0000600 0001750 0001750 00000004460 13417732100 0014641 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      x      4     (  
 U    EP    ]á        Ut;Eu@P@]UWVS]U}ut    tuE    E&   X  jPUUu
    }  xp ti   N   @!   @    @   @   @$   @(    @,   @0   @4   @8   @<   @@      @   @   @   @   @$   @(    @,   @0   @4   @8   F@   @   @   @   @$    @(    @,    @0    @4    @8    @<    @@    -3    E   E   e[^_]PP׋3RFL1zL uR        e[^_]USP]tsL$1]UWVSE}    EuE    E&   e[^_]E        3W4$EUtt{9w)EE Et-t'UBw Hw 9uEFUBw Hw 9uE܉}ECe[^_][QPWh+   je[^_]UWVut
}   ^_]UEt@L1]invalid argument unsupported bitmap format bitmap file `%s' is of unsupported format    LICENSE=GPLv3+  bitmap                                                                                                                       H      $            F   =       _   O            )                                                  i                           '                   grub_strlen grub_video_bitmap_load grub_video_bitmap_reader_register grub_video_bitmap_create grub_video_bitmap_get_mode_info grub_video_bitmap_destroy grub_errno grub_zalloc grub_malloc grub_video_bitmap_get_data grub_error grub_video_bitmap_reader_unregister grub_free                     g                                       2    :    Y    g    z            9    @     .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .modname                                                      4   |                    	   @       p                 %      2         U                 4                                  :                                 J                                 O                                                   @  	            	              `                                    X                                                                                                                                                                                                                                  boot/grub/i386-efi/file.mod                                                                         0000600 0001750 0001750 00000040104 13417732100 0014277 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      >      4     (   UWVS  }} u	WWh    1EP1< tFt	VVh   @uuSSh+   jP	  7'	    $    @4C8  Qj h  S	  RjPS  fUk  Pj@PS1҃@j  ELFZ  M  @  f1  f2  Pj@PS1҃@  ELF      f   +   Pj4PS1҃4  ELF    v  i  ffU  f= &  Pj4PS1҃4%  ELF            PP3Sfx  x	  P<$	  u	y  u	l  1҅tWR  W?  Pj4PS1҃44  ELF$    
  f    	  ffu11f>u	t11   1	  u	  ɺ     `  Wj4PS1҃4\  ELFL  ?  2      VjPS         Qj j$S	  RjlPS  l(o  Pj j8S	  PjPSy  ARMdO  Pu1DPPPWut$u
       1GJ    TTTԠRTPP  PRQSPP~*1҃   )ȉP    L!QG  T98tL;PvP1Puxu1   QTT  Phh  PS1=h    f~U  q@  }HdrS  fEf=  tf=  U{     q  PjVS1҃S  WjVh=      5  QjVhB      1RRP7B    Ph  PS1=    emis  PjhWS  hM  iZ  Pj j<S@|  PjdPS`  Pd1RPS@E  PjWS/  hP"  iE  j   k    WjlPS   uflLufld   0ufl ufld؃uflȍFw*Qh   PS1=   udf2tuMRh   PS1=   u0fu%f
1҃WT1҃STTu    tuPPhG   j    Pe[^_]Uhx   hM   hq   j h    h~        U5    UWVS<]C2{4Etu1   }ăWtPC$1RP3Bu@tPWV39uC61EĉUDE>E};usQjj W1EURP3Bu
@u    <RjW3t    tPjh  Wuu뎍e[^_]UWVS<]C>{@Etu1   }ăWtPs0s,3Bu@tPWV39uCBEċTDUE>E};usQjj W1EURP3Bu
@u    <RjW3t    tPjh  Wuu뎍e[^_]UWVS  ]3S  Wj j S        Bu@   Vhh  PS=h     f~Uu}HdrSuf}wSSh     ũwQQh"     q1@W1Vu		RPh4  hY  j:h]  Ẽ1R1҃PqR@	EPS tRR3PuVPPht  j1e[^_]UVuS]PjDj V$t%f{>u{	uF@   u]e[^]St%f{u{	uF@   u]e[^]E  E   e[^]UWVSHE}@4fEƋEf@2G    G    fEċEG@G    GuEpD~  EM@0AD9f  >t>P    ^1PFRPE0Bu@tSEu
      PESu09uUȉ]h      EQ 0h  }&  QQh  jv  BZEЋى]ԍX]كMwU+E;E|URPh  uUuG4   BP  $`  G    G똋G$    G0   G 냋G    GrG,    G(aSh  h  h     Sh  h  h   l  Sh  h  h   T  1}RPh  SPuw@Sh  h  h   h  G@ H}   1}QPh(  SuG<   G@   EԃvmRPh,  SuG<   G@   Eԃ
vAQPh4  S  G<   G@     }1}RPh@  SG@   PhC  h  h  h   g  N1;Wwr;sWN1;Wrw;OvGW z14 #  EuƅEtuQQhY     uԃV   ER1ҋ@$RPE0Bu@   PEVS09u"E1҉U@6EԋDEȍ3EЍuO      PE 0h  ji  PEjV0tP    F  ];]$  Pjj V1EURPE0Bu@u      Pjhe  Vus1PCRPE0Bu@tÃVtQVPE09EG8   u؉]E    E؅u(0 R  G W$GWG W$4  );U}Rjhq  PuG@H  G@     Pjhy  uuG@H  G@     Pjh  uuG@H  G@   pPjh  utePjh  ut.Pjh  ut7Qjh  uu9G@H  G@   G<      G@H   G@      Rj
h  uuPEjV
PGWcPjh  uuPEjVPGW4Pjh	  uu.PEjVPG0   G W$    tE   Pjh	  uu)EQjVPG(    W,u[E   RRj,uuE    @E1} u$O_O(_,PPh*	     Ce[^_]UWVSHE}@@fEƋEf@>G    G    fEċEGP @WGuEpDw  EM@<k8AD9_  >t>I    ^ PEvv0Bu@tSEu
      PESu09uUȉ]h      EQ 0h<	  }"  QQh	  jr  BZEЋى]ԍX]كMwU+E;E|URPhU	  uUuG4   BP  $  SGW뙋SG0   G W$녋SGWuSG(W,eShY	  hl	  h     Sh	  hl	  h   l  Sh	  hl	  h   T  1}RPh	  SPuw@Sh	  hl	  h   hp	  G@ H}   1}QPh	  SuG<   G@   EԃvmRPh	  SuG<   G@   Eԃ
vAQPh	  S  G<   G@     }1}RPh	  SG@   Ph	  hl	  h  hp	   b  V;WFwr;sWF(V,;Wrw;GvGW814    EuƅEtuQQh
     uԃV   ERp0p,0Bu@   PEVS09u$E@BEԋTDỦEȍ3EЍuO      PE 0h<	  jh  PEjV0tP    E  ];]#  Pjj V1EURPE0Bu@u      Pjh
  Vus PEss0Bu@tăVtQVPE09EG8   u؉]E    E؅u(0 R  G W$GWG W$4  );U}Rjh
  PuG@H  G@     Pjh"
  uuG@H  G@     Pjh+
  uuG@H  G@   pPjhB
  utePjhO
  ut.Pjhj
  ut7Qjh{
  uu9G@H  G@   G<      G@H   G@      Rj
h
  uuPEjV
PGWcPjh
  uuPEjVPGW4Pjh
  uu.PEjVPG0   G W$    tE   Pjh
  uu)EQjVPG(    W,u[E   RRj,uuE    @E1} u$O_O(_,PPh
     He[^_]      \  \  >           =    r  r                          D  D  f                                                 5          E                                                  
                    2          A          ^          l                                                                                !          @          M          h          w                                                                      ?          N          k          {                                                                      %          1          P          ]          }                                                            +          7          c          o                                                      z                0                  D  filename expected multiple types specified no type specified hibr HIBR false Check if FILE is of specified type. OPTIONS FILE file is-i386-xen-pae-domu Check if FILE can be booted as i386 PAE Xen unprivileged guest kernel is-x86_64-xen-domu Check if FILE can be booted as x86_64 Xen unprivileged guest kernel is-x86-xen-dom0 Check if FILE can be used as Xen x86 privileged guest kernel is-x86-multiboot Check if FILE can be used as x86 multiboot kernel is-x86-multiboot2 Check if FILE can be used as x86 multiboot2 kernel is-arm-linux Check if FILE is ARM Linux is-arm64-linux Check if FILE is ARM64 Linux is-ia64-linux Check if FILE is IA64 Linux is-mips-linux Check if FILE is MIPS Linux is-mipsel-linux Check if FILE is MIPSEL Linux is-sparc64-linux Check if FILE is SPARC64 Linux is-powerpc-linux Check if FILE is POWERPC Linux is-x86-linux Check if FILE is x86 Linux is-x86-linux32 Check if FILE is x86 Linux supporting 32-bit protocol is-x86-kfreebsd Check if FILE is x86 kFreeBSD is-i386-kfreebsd Check if FILE is i386 kFreeBSD is-x86_64-kfreebsd Check if FILE is x86_64 kFreeBSD is-x86-knetbsd Check if FILE is x86 kNetBSD is-i386-knetbsd Check if FILE is i386 kNetBSD is-x86_64-knetbsd Check if FILE is x86_64 kNetBSD is-i386-efi Check if FILE is i386 EFI file is-x86_64-efi Check if FILE is x86_64 EFI file is-ia64-efi Check if FILE is IA64 EFI file is-arm64-efi Check if FILE is ARM64 EFI file is-arm-efi Check if FILE is ARM EFI file is-hibernated-hiberfil Check if FILE is hiberfil.sys in hibernated state is-x86_64-xnu Check if FILE is x86_64 XNU (Mac OS X kernel) is-i386-xnu Check if FILE is i386 XNU (Mac OS X kernel) is-xnu-hibr Check if FILE is XNU (Mac OS X kernel) hibernated image is-x86-bios-bootsector Check if FILE is BIOS bootsector .note.netbsd.ident .note.netbsd.ident version too old for xen boot payload too short found bzimage payload 0x%llx-0x%llx
 xen loader/i386/xen_file.c not xen image unknown ELF type premature end of file %s Xen xenversion = `%s'
 xen loader/i386/xen_file32.c name = `%s'
 version = `%s'
 invalid loader generic pae = `%s', %d, %d
 yes bimodal yes,bimodal no unknown note type %d
 no XEN note __xen_guest PAE=no, PAE=yes, PAE=yes[extended-cr3], PAE=bimodal, PAE=bimodal[extended-cr3], PAE=yes,bimodal, PAE=yes[extended-cr3],bimodal, VIRT_BASE= VIRT_ENTRY= HYPERCALL_PAGE= ELF_PADDR_OFFSET= no XEN note found premature end of file %s Xen xenversion = `%s'
 xen loader/i386/xen_file64.c name = `%s'
 version = `%s'
 invalid loader generic pae = `%s', %d, %d
 yes bimodal yes,bimodal no unknown note type %d
 no XEN note __xen_guest PAE=no, PAE=yes, PAE=yes[extended-cr3], PAE=bimodal, PAE=bimodal[extended-cr3], PAE=yes,bimodal, PAE=yes[extended-cr3],bimodal, VIRT_BASE= VIRT_ENTRY= HYPERCALL_PAGE= ELF_PADDR_OFFSET= no XEN note found    LICENSE=GPLv3+  elf macho extcmd offsetio file                                                                             	  0        	                                                	              
               .              ;              I   7       [              m                               	                          B                                                                                      .             =             L             X             d        x                                                                                                                               
        grub_mod_init grub_mod_fini grub_macho_close grub_strncmp grub_strtoull grub_xen_get_info grub_elf_is_elf32 grub_elf32_load_phdrs grub_elf_file grub_file_check_netbsd32 grub_macho_open grub_xen_file grub_unregister_extcmd grub_file_seek grub_errno grub_memset grub_file_offset_close grub_elf_is_elf64 grub_file_read grub_elf_close grub_strchr grub_malloc grub_xen_get_info64 grub_file_close grub_file_open grub_real_dprintf grub_elf64_load_phdrs grub_error grub_free grub_xen_get_info32 grub_register_extcmd grub_file_offset_open grub_memcmp grub_file_check_netbsd64      5     K     R   $  d   !                      I        *                  *              J    v                                  %  `  %                )  1    6  )  R    u                         p        !	    Y	    l	     ~	    	    	  $  	    	    	    	    	    	    	    	  '  	    	    	    +
    C
    V
    
    
    
    
    
    
    
  )  '    >    Q                              )          (    H    y                      "    (              &  $  I    Q    }          &        $      p                              $  G    O  )  v                                  )  9    >    H    M  "  z      )        )        )  '    -  )  M    R    \    a  "              "    P    e    l  $                            )          ,                                !    0    8    G    O    ^    f                                    +    =    Q    Y    p    {            8  #                                $  _    g  )                              *    0  )  M    R    \    a  "        )        )         )  ;    A  )  a    f    p    u  "              0    `    u    |  $                            )      %    ;                            (    0    ?    G    V    ^    m    u                                #    :    L    `    h                                                                   $     (     ,     0     4     8     <     @     D     H     L     P     T     X     \     `     d     h     l     p     t     x                                                                         ,    8    D    P    \    h    t                                                            (    4    @    L    X    d    p    |                                                         $    0    <    `    d    h    l    p    t    x    |                                             .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                       	   @       1  p              )             ,                   %   	   @       D:  `              1      2       !  
                @             ,                     F             ,                    V             ,                    [              ,                    d              ,                                  ,                	              /  8                               =  m                                                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/bitmap_scale.mod                                                                 0000600 0001750 0001750 00000007064 13417732100 0016013 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      T      4     (   UWVStuWWh       x(   u!H0MuX8]up@u܃tVVh      r(   uZ0uJ8M؀uJ@t	SSh7   q9u2z$9x$u*9]u%z,9x,u]9]uz49x4u9Mur<9p<t	QQhP   2z9xtRRhP   j!8 tx t: t1z uPPhk   j&e[^_]UVSˋM9r     15tr	u)     )1PPh   j&e[^]UVSˋM9r     15tr	u)     )1PPh   j&e[^]Uu	PPh   M@(u@0u@8u@@t	QQh   ,8 tx u	RRh	  @    1;JtPPh,  j&UWVSÃl   rtY     T  FLKLE    E    E̋ECE܋EȋFEċCEFECEE9E  1E    ;]t;E1ҋ}u1Eu1E};Ut	BECEuEEME뛉  FLK~E    EMN}E    ECM؋KE܋MKLEHEGMEE9E2  EE    E    EEE̋E9E   E1ҋ}u1҉ƋEu܋U։ËE;ur1   ;]sE1u1҉E)   )uܺ   )؉)ȉuuu؉]M1ɉU;M}SEU]EЍ
U]ػ   ]̈A;E}M̈@EE̋EEEEEEEE1PPhY  j&e[^_]UWVSE]}MEu    Mub~MEt  E&   e[^_]w QVSu+Mt3    ƍe[^_]UWVSLu]}    >  } ~RRht  j&  s WuV  EK}E    EЋE    }E    E    EĉEMt9w}t   }tU}tt   UċE9   BE}9sT1҃uu UԉErE}9s؃1uu UEԋUċE9s1u$UЉE1҃u$UEPPh  j&   {ECL}EċxHL@}}USMKU܉;}{}}UĉSL:}MẺzBLڋMMUMǋEĉKMCL]XHL1t6    e[^_]null bitmap in scale function dst format not supported src format not supported dst and src not compatible bitmap has a zero dimension Invalid v_align value Invalid h_align value null src bitmap in grub_video_bitmap_create_scaled src format not supported for scale source bitmap has a zero dimension bitmap to scale has inconsistent Bpp and bpp Invalid scale_method value requested to scale to a size w/ a zero dimension Invalid selection_method value   LICENSE=GPLv3+ bitmap bitmap_scale                                                                                                                                     ^  @    ?              Y              d           grub_video_bitmap_create grub_video_bitmap_scale_proportional grub_video_bitmap_destroy grub_error grub_video_bitmap_create_scaled      L     ~                         J    Q                                                     C  
                        
   .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                       	   @            	            %      2                         4             	                     :             	                    J             	                     O              	                    X              	                                  	     
            	              
                                    a                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/gcry_crc.mod                                                                     0000600 0001750 0001750 00000005630 13417732100 0015160 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      h	      4     (   UE ]UUW}VSt$]9t2B1Ɖ3    [^_]UE]UUЉJJJB]UE     ]UEHHHP]UE  ]UEVUSt1u9t(@H1
      tLIu[^]UEHHP]Uh    $    E    Uh    $    $          0w,aQ	mjp5c飕d2yҗ+L	|~-d jHqA}mQǅӃVlkdzbeO\lcc= n;^iLA`rqg<GKk
5lBɻ@l2u\EY=ѫ0&: QQaп!#ĳV(_$|o/LhXa=-fAvq Ҙ*q俟3Ըx4 	j-=mld\cQkkbal0eN bl{WٰeP긾|bI-|ӌeLXaMQ:t 0AJו=mѤjiCn4Fgи`s-D3_L
|<qPA' %hWo 	fa^)"а=Y.;\l ұt9Gwҝ&sc;d>jmZjz	' 
}Dңhi]Wbgeq6lknv+ӉZzJgo߹ﾎCՎ`~ѡ8ROggW?K6H+L
J6`zA`Ugn1yiFafo%6hRwG"/&U;(Z+j\1е,[d&c윣ju
m	?6grW Jz+{8Ғ|!ӆBhn[&wowGZpj;f\eibkaElx
TN³9a&g`MGiIwn>JjѮZf@;7SŞϲG0򽽊º0S$6к)WTg#.zfJah]+o*7Z-CRC24RFC2440 CRC32RFC1510 CRC32                             G      @                         {         G      @                                R   G      @       LICENSE=GPLv3+ crypto gcry_crc                                                                 ,        I  -                                                            	              
        0     =   0   0     ]              p                 `   0      grub_mod_init grub_mod_fini _gcry_digest_spec_crc24_rfc2440 _gcry_digest_spec_crc32_rfc1510 grub_md_unregister grub_md_register _gcry_digest_spec_crc32    :     $    )    0    5    ?    E    P    U    \    a    h    m                               0     D     H     L     P     `     t     x     |           .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   v                    	   @         h               %                                 -      2                           @                                 <   	   @         x               F             \                    V             k                     [              k                    d              r  	                                |                 	              |                                    m                                                                                                                          boot/grub/i386-efi/blocklist.mod                                                                    0000600 0001750 0001750 00000004304 13417732100 0015350 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (  
 UWVSuE؋EU܋UEBHJth    UU]QM+JZSQh   tPPWh   E	tEE   ƉuEe[^_]e[^_]U1   WVS,  } 󫍵SSh   jOE                     0á       C uQQh%   jtH11tAQI CD  sHRh   WS싍tP1Vj j xS    e[^_]UWVS,UuE}U]VE   E    EԋE9E܉MuE;Mu@  v,u(	ʉVU؉MMUE    M  U؋M܉UM   E1QNVj j F    t1;1ɉE؋Ee  RU)}VuW+]؃EU t[߁  tF	t UPEVj j T1M]E1ɉuU}E    e[^_]&E	^e[^_]Uj hU   hi   h   hn        U5    , %llu +%u [%u-%u] filename expected this command is available only for disk devices Print a block list. FILE blocklist   LICENSE=GPLv3+  blocklist                                                                  +                                                                       (              C              O              g              v                                                         grub_mod_init grub_mod_fini grub_errno grub_register_command_prio grub_printf grub_unregister_command grub_file_read grub_file_close grub_file_open grub_file_filters_enabled grub_error   .     6     P     U     d     i     }                                      	          P    `          	                   
  
           %     .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .modname                                                      4   .                    	   @                        %      2       b  x                 4                                  :                                 J                                 O                
                                     	   	         	                                                  X                                                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/gfxterm.mod                                                                      0000600 0001750 0001750 00000023644 13417732100 0015046 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      %      4     (   U                   ]<   8   U	]D   @   U	]USRf@f<vsfc]USQ=`    h       t41ۡ<   8   9skC`   ߃5`   PjLj h    Z5   ]       USÃ EPX5   ؃$T   uj j j j SuX   ]UEtru    P       Q   Q   ][Uu5L   ¸   t0   D
1UV1S<   8   9s*k`   FS`   fd`   $  [1^        ]Ã=   Ut =   t=   t1=      ]UWVSSË}MMtD   D>   5   9;   }   ;5   }5   D;   ~   D>;   ~   X[^_]UɉWVSSˋuEtOtK=    t*5x   1t   1MX             uEeى[^_]"e[^_]U(       5$   ,   wXUWVS,8   EUk`       VVS5L   u           L   V=0   f@ffEtD1ȋS4   ωU}EMЋK5   ]d   MMXuUԉMQSWRE PWuVZ5   ,   Y=(   uMډle[^_]Ëd   D   ;<      UWVS(L   0   5@   4   T   @5   M<M$   SWVQ5   (   =,   $   e[^_]UWVS,  5         =   )@)߃=    EԍGEt    tЃ}5   }URURUREP 5x   5t   5p   5l          W}WSVSVj P\   7     Mȋ9r3@9s,})9r)؉EЃ9uЉRSsPu E̍    @9r1)9RusRVuuuSV5\    =    tủu+,   P+(   PSVjủu+,   P+(   PSVj 5    uuuuX5   e[^_]USRmQjj S%   T   CX   C]UVS1ۋ8   `   9skC5<   kQNQRP<   X8   k<   8   9s`   CSd   e[^]ËD   d   U@   ;<   s]]UWVS]=h    u  % 	  =H    t t u8% 
  &    @     H@     WWVSJE@   ;8      8   D   @   k`   QjVSfFf<   PCtRfNfRvPT   }        CX   C   =@   ;=8   =@      @       <   D   Q9      @       |<   D   Q9r
@D   PjVCJ   9g8   <   k`   9JF#  @D   =H    te[^_]e[^_]USR]H   9tt
|YH   X[]U8   EVS9ȉrq<   9rX=H    t2=H    ۉ5@   D   t[^][^]UWVS,=d      =     t75   4   d   Pj 5X   b  5   u؍}\   =|   ҃WEPEPVU5x   5t   5p   5l   d   4   P5    5,   5(   S5   4   d   Pj SuuuuUԃ Jt   S&5   4   d   Pj 5X   X5   d   <   d       9v);<   s(1;58   sd   ;<   s	ډFCЃ=H    t
9=|    tme[^_]UVuS1ۡ<   8   9skC`   *߃5   D       @       X5$   5    j j 5X   5   @ue[^]|U      ]UWVS]$} HEk   8UE(   ,   1    =L       $   RRVWt
@9sFuuL   1҃0   H    @       D       4   1H      d       ã8   $   <   kP=     `     j"5$   5    h   =        15      P   Q   X5      P
   P	   P   P \   <   8   9sk`   Cfd`   ҃=     uAEh      l   Ep   Et   Ex   E|             e[^_]UVS\EP   1j E%      P
   P	   P   PZuuj j P tuuj j V h   u    PuPPh   j"j
PSuu        j j j  e[^]US h   t8 uQj j@h%   7RRPh*   á    t2Pj j@S$EEut؋]U$EPX5      P
   P	   P   PuX      P
   P	   P   P \   Ut   EEx   ]U=     tRRh    h       uPPh    h    h    ЃtUh    $     gfxterm_font no font loaded gfxmode auto %s;auto gfxterm          2   4        7   O   =
    z  
  
  <                 LICENSE=GPLv3+  font video gfxterm                                                                             Q  O          !                                              	            5            Q              f                                                                                                           *             7             K             `             z                                         6                                                           (             =             T             f             r                            (                                                                                     7             ^             v               7                    grub_mod_init grub_mod_fini grub_gfxterm_background grub_gfxterm_decorator_hook grub_video_map_color grub_video_delete_render_target grub_gfxterm_video_update_color grub_font_get_glyph grub_xasprintf grub_video_scroll grub_video_set_mode grub_video_get_active_render_target grub_video_blit_bitmap grub_memmove grub_video_map_rgba grub_video_fill_rect grub_font_construct_glyph grub_video_create_render_target grub_term_highlight_color grub_font_get grub_gfxterm_get_dimensions grub_errno grub_memset grub_term_outputs_disabled grub_video_get_viewport grub_font_draw_glyph grub_term_normal_color grub_term_outputs grub_malloc grub_video_swap_buffers grub_video_restore grub_gfxterm_schedule_repaint grub_video_set_active_render_target grub_error grub_list_remove grub_free grub_video_get_info grub_video_blit_render_target grub_font_get_constructed_device_width grub_video_set_viewport grub_list_push grub_gfxterm_set_window grub_env_get                  #     -     :     A     R     Y        +                                   +                              !    &  (  3    >    M    [    i    n  (            "                .        &                  !    4    @    L    U    `                                                            '    1    Y    a    g    m                                             +  (  A    U  !  \    a  (  g    n                                          (             (          D    I    O    U    `    q          (                         /    
            
  +    9  
  i    n    w  
                        -    /        (              2    7    N    b    g    t    |                                        G    U    q    y                          $          	    	    #	    )	    /	    ;	    E	    J	    e	    q	    v	    	    	    	    	    	    	    
    5
    @
    _
    l
    z
    
    
    
    
  
  
    
  (  
    
    
    
          (          6     <    B    H    N    S  /  X    b    i    o    u    {          (                /    %        (                  
      (          #    5    ?    F    N    e    |  %                                (                   	      (  -    R    c    i    z                                                        	      $      $    2    8    =    B    K    ]    b  (  m    t          (    
    
    
    
                                                      '    0    I  ,  `  (  u  
    
    
    
            %            2                )      &  1  <    A  2  W    \    i    n    x          +    &            (    
    
    
    
            (  
  
    
    
  "  
  (    0    9    I    Y  #  c    h    o    z      #    0            *        *                                      $     (     ,     0     4     8      .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                       	   @       |  P  
            %      2         :                 8             0  L                  4   	   @       $  h   
            >             |                    N                                 S                                  \                                                  0     
         	                                               4%  e                                                                                                              boot/grub/i386-efi/blscfg.mod                                                                       0000600 0001750 0001750 00000006034 13417732100 0014624 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      <
      4     (   UWVS<uE    E    >.l  VW  RRh   DP;  PPVh   $EE  x8   x4     1E    E    E    u   Pjh<   SuuC$E^PjhC   SuuC$E.PjhL   Su uC$Ẽ0PjhS   Su!WC$ǅ   SEЅtƅuu   މى]    E   
   } u	   UԸ   uVSQRPuh    h[   $j Pj j h   j j EPj011E    E    E    1ۃuXuZuYu<$$EȃtPe1[^_]USh   uE   ]E   E   Pá    tESu        j h    h   SP    S    ]Uj h   j j h  h
      U5   ($boot) 
 initrdefi     .conf /EFI/fedora/loader/entries/%s title  options  linux  initrd  load_video
set gfx_payload=keep
insmod gzio
linuxefi %s%s%s%s
%s%s%s%s bls root variable `%s' isn't set /EFI/fedora/loader/entries/ Import Boot Loader Specification snippets. bls_import    LICENSE=GPLv3+  extcmd normal blscfg                                                                 0  *        Z                                                                             )              6              E              `              q              }                                                                                                                                                        &              grub_mod_init grub_mod_fini grub_strlen grub_strncmp grub_xasprintf grub_normal_add_menu_entry grub_device_open grub_strdup grub_unregister_extcmd grub_errno grub_strcmp grub_file_close grub_file_open grub_device_close grub_fs_probe grub_file_getline grub_error grub_free grub_register_extcmd grub_env_get  (   
  ;     E     X     ]     h                                                $    *    <    G    Y    _    o    z                                                    J    S    \    e    m    u                                                    
            $    9    B    G    L    T    b    g     .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4   p                    	   @            	            %      2                         4                                  :                                 J                                 O                                  X                                                    
   
         	                3                               	  a                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/i386-efi/gfxterm_menu.mod                                                                 0000600 0001750 0001750 00000011730 13417732100 0016063 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   US]hH   ]EH   UWVShh    $   $   $           $     RRh   0r  P1Ph    h    E    EPEUph    P    t.h    Pha   hJ   h   h8   hL   j  -         }EWWjPX          tVV   PQj jh}      tP׉+u}RWVPEp0    h    EL}     h    /h   vPh    h/   hJ   jwe[^_]Uh)   h   Uh     P  e   M  x         gfxterm_menu    menuentry "test" {
	true
}
menuentry "s̛ ơ t o̒ s̒ u o̕̚ 8.04 m̂ñåh̊z̆x̣ a̡ b̢g̢ u᷎ô᷎ ô᷎ O̷ a̖̣ ȃ̐" --class ubuntu --class linux --class os {
	true
}
menuentry " הַרמלל(טוֹבָ) לֶךְ" --class opensuse --class linux --class os {
	true
}
menuentry "الرملل جِداً لِكَ" --class gentoo --class linux --class os {
	true
}
menuentry "ὑπόγυͅον" --class kubuntu --class linux --class os {
	true
}
menuentry "سَّ نِّ نَّ نٌّ نّْ" --class linuxmint --class linux --class os {
	true
}
menuentry "从硬盘的第一主分区启动" --class "windows xp" --class windows --class os {
	true
}
timeout=3
 png gettext gfxterm gfxmenu Unknown Regular 16 unicode font not found: %s 0 tests/gfxterm_menu.c can't start capture: %d: %s (proc)/test.cfg %s %dx%dx%s done %lld ms
 unicode gfxterm_menu theme starfield/theme.txt gfxterm_ar lang en@arabic gfxterm_cyr en@cyrillic gfxterm_heb en@hebrew gfxterm_gre en@greek gfxterm_ru ru gfxterm_fr fr gfxterm_quot en@quot gfxterm_piglatin en@piglatin gfxterm_ch de_CH gfxterm_red menu_color_normal red/blue gfxterm_high menu_color_highlight blue/red test.cfg                                                    *  3     >  A     L  O     \  d     u                                   LICENSE=GPLv3+ font functional_test procfs normal video_fb gfxterm_menu                                                              C          ]                                                              	              
               )              ?              K              q                                                                                                                                                    A             Z             p             |                                                                                                                                1             B             Z             n             }                           grub_mod_init grub_mod_fini grub_strlen grub_test_use_gfxterm grub_errmsg grub_terminal_input_fake_sequence_end grub_procfs_entries test_cfg grub_env_context_close grub_dl_load grub_video_checksum_get_modename grub_strdup grub_font_load grub_video_checksum_end grub_font_get grub_errno grub_terminal_input_fake_sequence grub_video_capture_start grub_env_context_open grub_printf grub_video_capture_end grub_test_video_modes grub_normal_execute grub_strcmp tests grub_get_time_ms grub_test_register grub_env_unset grub_test_use_gfxterm_end grub_test_unregister grub_list_remove grub_video_fbstd_colors grub_video_checksum grub_list_push grub_env_set grub_test_assert_helper                  %     3     8     ?     D     K     P     W     ]     f     m     r                             *          "     (                                       ,      &    -  !  2  )  7    G    M  !  Y  !  _  +  l    q    v    {  %                !    $    "        !                    '          &    +    0    J    O    T  #  d    i  &                                       $     (     ,     0     4     8     <     @     D     H     L     P     T     X     \     `     d     h     l     p     t     x     |                                                   .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   r                    	   @                       %                                -      2                         @                                 <   	   @          8              F             ,                    V             ;                     [              ;  ,                  d              g                                  t                	              D                                 8  m                                                          boot/grub/i386-efi/boot.mod                                                                         0000600 0001750 0001750 00000004074 13417732100 0014331 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (  
 U   ]UWVS}u]uu1cjt   8pXt)9ZvRPJHBPtB      @       P֍e[^_]UEHPtQ   HPtQ   E]U=    t   tЋE         E   E   U=    t   t                     Ã=    UVSuPPh    jh5      t%5   t[t0S[      ƅtCuЉЋ[e[^]U]gUj h"   j h  h<        U5    you need to load the kernel first Boot an operating system. boot LICENSE=GPLv3+  boot                                                                   (                                                                
     3              E   
  :     W              r                    9                      D                                      
             >      grub_mod_init grub_mod_fini grub_loader_is_loaded grub_machine_fini grub_loader_unset grub_register_command_prio grub_unregister_command grub_loader_unregister_preboot_hook grub_malloc grub_loader_boot grub_error grub_free grub_loader_register_preboot_hook grub_loader_set        .     ;     n     v                                                              &    0    :    F    U    \    j    o  
  u                                             .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .modname                                                      4                       	   @                        %      2       O  A                 4                                  :                                 J                                 O                                                  P  	   	         	                                               ,  X                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/i386-efi/bsd.mod                                                                          0000600 0001750 0001750 00000073214 13417732100 0014140 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      \t      4     (   UVS1ۊ҈tC9u[^]UWVSEu}MÉE܋Eu}E؋EX	ӉP p$x(uu8 H,PtG;HuBHXΉpx9}؉u}u'}9}uM]҉HXt5z   p&ҍXtJ׉H޹   x    =      xp     w~HX w   vg  H$HX(1@   P@     H,   )xXXHt   ދx@   ׉ 1[^_]U1ɉVS1ۋ4t< t	A[^]UWVS(APUUá    td=   C{s    u/  D   u"x  t 1; u#@   @   tD   @   1e[^_]UWVSh        $       $
       $       <$VSPh   D    tCCt%wr0QQCPh,   uPPsh?   
RRsh4   빍e[^_]USRD   tP5|   D       @              X5T   1]T       UWVSÃx5|   jj hH   uWWhK   j.7  T   uS  VV7S
  V`      El       p     FV%x   ~Dp   u=     p     <V09sދSw P9vP;l   vl    뫋p   l   )PREP5T   #  uZYj j jh   +p   PuV   =     hH   5h   5p   u6  V  =     \      uWWh]     =   FuV x   t   %x   t       V~Dp   }EuE=     p   *  mF<k8E9sۋHwOGE    %EE9EsEEG(MW,]El   UӃ w9vEEl   8xSS5l   5p   h   h   h  h   p    l   )PREP5T   uluZYj j jh   +p   PuV u==   u4hH   5h   5p   u6 PPh   jVm          ?Pj j S`       Bu@6  Vj<uVS<t=       QWh   jVHtRRh   j   U% f}x   tй   %   E    	1E   = w	PPh  묋Up   Uul      5l   }1t$=l   t   =l   5l   )֋l   )RPEP5T   u'uUU4$RPuh   S Sl     % l   =     t5|       e[^_]UWVS}}tEK   E   )=   t	E)  =H    uE<  E   e[^_]7tjp4;5H   v!PV5H   hb  j |QV5L   P9t.S=     uR7h   j    7PH   U)PL   j PUP      01e[^_]UWVSu}u	E  "=   t	E  =`    uE  E   e[^_]u	.1}7á    teC8C4uS    J=\    thl   WVS5T   hl   WVS5T    ƃSe[^_]UWVS,=   t	SSh  =`    uQQh  j  } u}h        $       $
       $       <$VSPh*  <    tsXs\sTCPh?  11  ERRh_  pEԋE8<$   @4K8   P5l   EP5T      us4PS=        C4EСl   EPPj/Wtxj`u=     u\@@O   ẺF\1} FTEЉFX8   t05<   58   l   C4  % l   S    e[^_]UWVSu]u	E  =   tEr  E   e[^_]uPPhK   j3  3  x41ۉF8  GP   PWSV9    PPj
RUUt7@E9Uv$E t	ȃ<	uM")MEG@ :#tyPPj=RUteU  : tZx"tHHMQQRh  t@MPPQRUUtRRt	'1ۃStV    e[^_]UVS]EUEutPSuue[^]U1   WVS}TEPh   }   kuuSơ       =   u>V1   }PPEPh   UU}=   UuPjj DPWh  h   h  h       uQSVj	uRSVj PSVh  V    e[^_]UWVSLh  D   \   tۋJt	DD0Ph EP5T     uD   x$ÉtCBNUMBFPrBPQUMJ) F΋F    F    Rj j h  $    j j j j  uzx   )E E܉d   C   C    CX   C
C	   suC    
CPj $E 5T   0e[^_]UWVS   Ok  h  tH8 tCQQPh  á       Rj j S$ddPj j h        PPhPEPuwEǅt    ǅp    xE|EEEfEhlEEEĈEEȈEËEEЈEEԈEPj0lPjth          <   1tF k\Pdá    tG3l   ډC<   tz   p\ PdSj$  Pjh    j  D   11\   tҋHt	ttC =l   DPEWP5T   D  uƉӉ`5D   dtC+dNHVJHPvF\PQF\6j j jjh  	 h   uV5T       uZu$    j j j j \ \ulx   UUEd   C    C    C`+dǉ{
C	   
CPj $5T   0e[^_]UH   WVS  u      ]Fڣd   Efu  =`    uWWj/3xuV;R3>  =\    thl   3P5T   hl   3P5T   t  SjPj SO   jPSj Fx` t-Qjj SF   PdJjSjFxh    Wjj SXZh  S$    ǅ%  F@luV   Qjh  Pu&Rj VP$Wj V      8,uQ@j VP    \  Pjj SXZh  SjSj=   @vPPh  j&F  j `.  8  w  Gǅd   tx u
GdF ǅX    ǅ\    tJZX\R VGPPh   j j vvW   wtQj4j Pd1҉t1AQI u|XxFVh   ىPWh    ǅ    ǅ   ǅ    jWtPXXj4Rj
j j WF$tpRRh  pu;Sjfpf PP)~  uQQh   F$ptǅdRj Wj`Pj h  h!      e[^_]U  WVS<}      _{( d      C,1E؋    tPSPSuu3E؃SEMăj
EPS]U؃uFuPPhy  i  SvPPh
  R  a   		1ۋGu؃x0    Pjj VG@4trWjh  PEu Eԍ}Vj WPEvQQh\     EԺ%  8,u(R@j WPE¡    t   %  1VU܉EjEEPjd       0Qjj VjVjE   E%d   UEuRj h  h  X       
je[^_]UWVS1ہ   jTj EP0   E   ET   EƅtCPj	h  6u(x	 t 	PXv\;Ëv빅tl       )Ã=`    tfF  Pj j j t  D   5\   tJt	DDl     Á )Ӄ=\    t 0  S5l   XP5T     X=l   l   TTƅtYPj	h  6u>x	 t6R	RPS$ =XYXvS$\v;Tt  C}=`       5D   ؅   VHVPV  t  t  u(Ud   l   =\    Pt&@    PvFPPQPF)؃=\    t؋6cT))]䍜   )ӡl   XEPj j h  =\    f  j j jj`h  	 h   V5T    7  XPXX$    j j j j L   P+Th 0  j S       HHT1ƋT·       D       Ǆ         @=   uMLXt   ǅ\    Xx   MPEEAl   AQQ   h   @j <5T   P   j j jjxh  	 h   V5T       XZX$    j j j j     PjTEPG$Px   X,   \(   pd   OW   G4   G	ȹ	   $ЃG_EGl   G j $5T   0e[^_]UWVS$uj/]}VtpPPh  Su  V@PVj   =\    t\ESE    E؋EE    E@PSj   PjEPj   VjE8S@PSjueSjEPjuPQjEPju;} tk11;u}4F\tIٸ   Ut    1u1;]}"PP4VZ4Cp   1e[^_]UWVS,u=   t	SSh  =`    uQQh  j  } u1   6   @4{8   P5l   EP5T      us4PS=     uvUN  Jt2URjh  vMUԋMЅuFNxEPPPs45l   QRW6 ul   C4  % l   S    e[^_]U  WVS,E      u@d   Es?  l     % =`    l      p   ~=\   E    E    )ЃEԋE=\    H  t  uRWQP6   6  =\    thl   6P5T   hl   6P5T     PjuVh  s  PSVh  [  PSVh  C  j 0      t3  R   J t1F   s            =\    (       ,       uj tnPEtYx  tSPPh  wUԅu:PPEPRW u)Et"Rjj PYu(   ,   F3  4   Pj h  h            Pe[^_]UO  h  XZh  h  h  j h#  h
  h  h  h  j ho  h+      h|   h4  h  j h  hK     j hS  j h  he     j hv  j h["  h     j h  j h
  h     j h  j h
  h_     j h  j h	  h     j h#  j h  h:          E|   Uuw5    X5   Z5   Y5   X5   X5   X5   X5   X5    UWVS ]uuMPMBu
@u    8PSQW9t&    uuEH  E   e[^_]1e[^_]UWVSÃj j PBu@t|Pj4WS4   ?ELFuutVVha     t	SSh  xG0W.PMtQG 1RPSBu
@u    HRW.G0PE0SW0O.9t    uPVhH  j1e[^_]UWVS   UEPE]E      Pj4Sh    ]MUى9s
xtSSh  j  Hpx$ʉupB}EBE\E SxWEEPu`  u1҉}]E0ERPuBu@t9EXPVSu9uME<31҉PERPuBu@u
       PuWu;Eu
+U<       PuhH  PPh  UPtU]9r?C1QQRPh  h  hx  h  EjEPh  uDWjEPh  u,VjEPh  uMu   e[^_]UWVShEPEME    E)  EM] ˍ  E U1;Espt@t	p9s3w4   E]RWEPu  u]EEUE9   C   CtQs PVh  h  h   h  E {K t+R)s1ҋCMRPEE+t  R)sMj QCC9sEOES+Ej4j j EMG49sPEU]+E1PERPEEU)EEUƋE+E1PERPEEYU)EEƋE0E)ZYVWPEHPEh	  0E u0uue[^_]UWVS   UEPEME    K  EMU֍9s
~t1  N~щ}MI}e}QM|4}EPE߃WPu]r  uj4}}E   ÍEPS4}EUC    fC  4fC  fC  C4   EEME9sUPQRSUU9uEM4;UuEMECC    CCEPF1RPuBu@t1uPVSu9u;E1V@RPuBu
@u    \u]QVSu9t    u;RuhH  j&PjEPjuu   e[^_]UWVShUEPEME    "  ]MUى9s
xtR1  pHup$ыyupARE$   1PRVuBu@tXuPVSu9t1S    ^  PuhH  jF  WuS    PE1RPuBu@u
      QWVu9u11S4$cGt});ErXtURRh	  PMMUuMQQh)	  UPMUutttQtMztS4$XZh6	  A}A% +EEGB% +EEGS4$e[^_]UWVSÃj j PBu@t{Pj@WS@   ?ELFuutVVho	     t	SSh	  wG<W:PMtQw,w(SBu
@u    HRW:G<PE0SW<O:9t    uPVhV	  j1e[^_]UWVSxEPEME    E  EuUEu  Ɓ quЉE1;Us*r Z$utZ0r4tE!)EUPWEPu  u]EEUE9   S C$   C0K4tt!ƉsC    Ps0RVh	  h	  h   h	   {t{C EE EE EPssuBu
@u    =Pu+EEPu;EtB       PuhV	  jt   MPs j +EPs EM  % EQQ)QWPEHPEh	  0 u5Rj@EPh  uUPEPuh	  e[^_]UWVS   UEPE]E    ^  Pj@Sh  E  ]MUى9s
xtSSh
  j  H(xp8X<ʉtx Bpu}lB |\E SpVxEPu  1u1҉u}EEU1A    xtRPuxBu@tI}YPWSu9uZE1ҍ4|F    PlRPuBu@u
       |PWVu9u1<       PuhV	  ;EsvPPh
  Pt]GpEʃ wEȋSCQQRPh
  h	  hx  h	  EUjEPh  uDWjEPh  u,VjEPh  uu  u e[^_]UWVS   UEPEME      EMU֍9s
~t1  N(~ ыY }MS]\@U؉EPEӃSPuU  uj@]E   EU؉EEEPRUEB     Z@B$    fB8  fB6  fB>  B(@   B,    EEME9EsdPQuS9uuEM@E9EuEMD@CC    C    CSCSEEPvvuBu@t0uPVSu9u9EVppuBu
@u    ^uQVSu9t    u>RuhV	  j)PjEPjuM}   e[^_]UWVSxUEPEME      ]MUى9s
xtR1  p H(up8ыy upARE$   1PRVuBu@tXuPVSu9t1S    c  PuhV	  jK  WuS    PE1RPuBu@u
      QWVu9u11S4$cGt});ErXtURRh-
  PMMUuMQQh;
  UPMUutttVtRBBtS4$XZhH
  A}A% +EEGB% +EEGS4$e[^_]   K      N      Q      T                              W          [                  @                         ^  1       e          r  2       z            a                   b                   c                   d                   m                   q                 D  s       K          b  v       j            x                   z                   r                h                                                 @         a                   b                   c                 D  s       K            d                   r         &       h        +                                              @                                 ;  D       @            h                   a                 `  C       f            c       z            d                   g                   m                   n                   p                   q                 "  r       +          D  s       K          b  v       j                                  size addr type name   %-18s  %-18s%14s%14s
   %-18s     0x%08x     0x%08x
 filename expected your CPU does not implement AMD64 architecture kern_start = %lx, kern_end = %lx
 bsd loader/i386/bsd.c invalid arch-dependent ELF magic premature end of file %s invalid a.out header load address below 1M no kOpenBSD loaded your kOpenBSD doesn't support ramdisk your kOpenBSD supports ramdisk only up to %u bytes, however you supplied a %u bytes one you need to load the kernel first only FreeBSD supports module only ELF kernel supports module no NetBSD loaded   %-18s%14s%14s%14s
   %-18s  0x%08x  0x%08x  0x%08x knetbsd_module_elf only FreeBSD supports environment kFreeBSD.%s %u entries in smap
 text gfxpayload %s;800x600 800x600 Booting in blind mode com pc mdlen too long netbsd only device specifications of form <type><number><lowercase letter> are supported only com0-com3 are supported unknown disk type name kFreeBSD. /boot/zfs/zpool.cache raw no FreeBSD loaded type= elf64 kernel elf kernel zfs gzio Load kernel of FreeBSD. FILE kfreebsd Load kernel of OpenBSD. kopenbsd Load kernel of NetBSD. knetbsd Load FreeBSD env. kfreebsd_loadenv Load FreeBSD kernel module. kfreebsd_module Load NetBSD kernel module. knetbsd_module Load NetBSD kernel module (ELF). Load FreeBSD kernel module (ELF). kfreebsd_module_elf Load kOpenBSD ramdisk. kopenbsd_ramdisk wd fd sd cd vnd rd no-smp Disable SMP. no-acpi Disable ACPI. askname Ask for file name to reboot from. halt Don't reboot, just halt. config Change configured devices. kdb Enter in KDB on boot. miniroot  quiet Don't display boot diagnostic messages. single Boot into single mode. verbose Boot with verbose messages. debug Boot with debug messages. silent Suppress normal output (warnings remain). root Set root device. DEVICE serial Use serial console. [ADDR|comUNIT][,SPEED] wdXY comUNIT[,SPEED] dual Display output on all consoles. cdrom Use CD-ROM as root. Invoke user configuration routing. gdb Use GDB remote debugger instead of DDB. mute Disable all boot output. nointr pause Wait for keypress after every line of output. dfltroot Use compiled-in root device. premature end of file %s invalid arch-independent ELF magic invalid arch-dependent ELF magic _DYNAMIC no symbol table dynamic = %llx
 bsd loader/i386/bsd32.c loading section to %x, size %d, align %d
 elf module rd_root_image rd_root_size unexpected size of rd_root_size premature end of file %s invalid arch-independent ELF magic invalid arch-dependent ELF magic loading section to %x, size %d, align %d
 bsd loader/i386/bsd64.c elf obj module _DYNAMIC no symbol table dynamic = %llx
 rd_root_image rd_root_size unexpected size of rd_root_size LICENSE=GPLv3+  elf serial crypto gcry_md5 extcmd aout video boot cpuid relocator mmap bsd                                                                             I&  d       '                                                	              
               )   t8  H    E              c              v                                                                                                                                          &             3             I             _  +  `    }                                                                                                                     .             E             W             c             u                                                      c0  H                                                        '             ;  3  =    ]             i             ~                                                                                                                              "             8             H             W             i  )  ;      5        7.  ,                                :  M                              $             5             @             ]             u                                                                                                                                    F  ;                  #             ?              grub_mod_init grub_mod_fini grub_strlen grub_netbsd_load_elf_meta64 grub_efi_finish_boot_services grub_aout_get_type grub_puts_ grub_strncmp grub_strtoull grub_efi_system_table grub_env_update_get_sorted grub_strcpy grub_elf_is_elf32 grub_loader_is_loaded grub_strrchr grub_ns8250_hw_get_port grub_dl_load grub_elf32_load_phdrs grub_relocator32_boot grub_freebsd_load_elfmodule32 grub_elf_file grub_xasprintf get_virtual_current_address grub_video_set_mode _gcry_digest_spec_md5 grub_memmove grub_device_open grub_relocator_alloc_chunk_align grub_disk_read grub_unregister_extcmd grub_loader_unset grub_dl_ref grub_mmap_iterate grub_file_seek grub_relocator_unload grub_errno grub_memset grub_openbsd_find_ramdisk32 grub_register_command_prio grub_elf_is_elf64 grub_video_get_driver_id grub_mmap_get_lower grub_mmap_get_upper grub_freebsd_load_elfmodule_obj64 grub_printf grub_efi_secure_boot grub_unregister_command grub_file_read grub_freebsd_add_meta_module grub_elf_close grub_print_error grub_zalloc grub_strcmp grub_strchr grub_elf64_load grub_malloc grub_relocator64_boot grub_file_close grub_file_open grub_real_dprintf grub_freebsd_load_elf_meta32 grub_freebsd_load_elf_meta64 grub_netbsd_load_elf_meta32 grub_device_close grub_elf64_load_phdrs grub_openbsd_find_ramdisk64 grub_fs_probe grub_relocator_new grub_crypto_hash grub_error grub_video_get_info_and_fini grub_cpuid_has_longmode grub_free grub_dl_unref grub_register_extcmd grub_env_set grub_gettext grub_memcmp grub_loader_set grub_elf32_load grub_env_get grub_strtoul grub_bsd_add_meta grub_aout_load get_physical_target_address grub_relocator_alloc_chunk_addr         @    ,                  %    +    C    I  U  P    X  U  _    g  U  n    v  U        5                    5        Q              !    *  R  1    6  +  A    Z    _  (  d  '  p    u  -        N    C    L        B                      !    &    2    >  ,  E    |                      ^                X                     .    0  /  P  6    C    N    \    b    n    t      I        ,              "    (    -    2    <    A  D  G    O    ]    b  ^  t              ?                    J        N    :    ,        *    8  ,  ,  :    G    T    [  N  x                                          ^  +    >    D  \  P  B  U    g    m  ,  y    ~  R    ,                        N    C  	    	  B  	    	    	  N  ,	    2	  8  D	  B  M	  ,  X	    _	  N  g	  ,  o	    }	    	  -  	    	    	    	    	    	    	    	  N  
  C  
  ,  4
  B  9
  ,  D
    O
    X
    ]
  4  g
    p
    u
    
  B  
    
    
    
    
  N  
    
  U  
    
  U  
    
  U        U        5  !    =    B  5  W    _  =  o  C            ^        8    ,            <    ,  ?    M    S    Y    m    v  B  ~  ,                    N        N    C    @  -  8  K  >    >            T    Q  	  Q  "  Q  2  B  :  ,  q  "        )        @    ,            )      .  -  :    ?    I    N  D  S    {  [    Q    ,                ^          ?  "  {                           3    2          >    C  Y  W    \    f  ,  y       Q             1    O  F  [  R  ;  Z    _    h  ,  q      @    ,            [    Q        [          =    M    R  ^  h    |      "        $        ]  (    :    J    q  3  }  2                                C  &    .    7    <    C    L    Q  G  n  -    [    -    [    -              !    3  V  S  Z  [    o  Z  z  ,    Z    ,    -            [    !        N  
  #    %    -  %  !  T  M  r  "    [    -        =    "        =  5  [  F  H  Q    V    [  W  c  ,  q                              Z      &    ]  -  r    {  V    Z        Z    ,        [      $  -  ?  [  E    c    h    m  W  v    {  ,    N    -                V              /    K  [  \    b                      ^                  	      V  +    3    F    N    q    ~                  "      B    U    Z     c          $        ]        -  w                  A        $          ]  +     F   "  K     Z     f     s                                   !  =  !    !    %!  [  6!    \!    i!  [  !  [  !    !  [  !  [  !  [  !    "  ,  3"    ="    i"    s"    {"    "    "  N  "  C  "    "    "  ^  "    #  8  #  ,  #    )#    4#  V  [#    e#  9  r#    #    #  B  #  ,  #    #    #    #    #    #    $    $    1$    :$    A$    R$  9  g$  C  x$    $    $    $  F  $    $    $  E  $  [  $  [  $  [  %    %  #  X%    _%    i%    y%  #  %  K  %    %  =  %    %    %    %  Q  %  ;  &    &    &    &  W   &  ,  5&  H  P&  6  `&    e&    l&    q&    v&    }&    &    &  S  &    &    &    &    &    &    &  S  &    &    &    &    &    &    &  S  &    &    &    &    &  /  '    '    '    '    '  /  !'    ('    -'    2'    7'  /  A'    H'    M'    R'    W'  /  a'    h'    m'    r'    w'  /  '    '    '    '    '  /  '    '    '  6  '    '  &  '    '  &  '    '  &  '    '  7  '    '  7  '    (  7  	(    (  7  (    (  7  !(    &(  7  P(  *  a(  ,  l(  8  x(  ,  (    (  N  (  *  (  8  (    )    )  @  8)  *  F)  ,  `)  8  w)  ,  )    )  N  )  [  
*    *  N  `*  ^  x*    *  *  *  8  *  *  *  ,  *  8  +  ,  +    %+    2+  =  V+    [+    e+    m+  D  +  [  +  [  +  [  o,  ^  ,    ,    ,    ,    ,  D  %-  -  .    .  9  (.  E  .  ^  .    /  "  a/  "  /  *  /  8  /  *  /  ,  0  8  0  ,  %0    ,0  N  ?0  [  0  Q  0  Q  0  @  
1  *  !1  8  11  Q  61  ,  J1    Q1  N  b1  @  t1  Q  y1  ,  1  *  1  ,  1  8  1  Q  1    1  =  2    "2  =  P2  Q  X2  Q  _2    2  Q  2  *  2  8  2    3    "3  @  ;3  *  I3  ,  c3  8  z3  ,  3    3  N  64  ^  N4    4    4    4    4  D  4  *  4  ,  	5  8  5  ,  '5    .5  N  P5  -  5    5  9  5  [  5  [  6  [  J6    Q6  N  6  ^  6    7  *  -7  8  \7  *  j7  ,  7  8  7  ,  7    7    7  =  7    7    7    
8  D  8  [  58  [  M8  [  9  ^  &9    O9  "  9  "  :  *  ):  8  B:  *  P:  ,  b:  8  n:  ,  {:    :  N  :  [  ;  Q  A;  Q  I;  @  c;  *  z;  8  ;  Q  ;  ,  ;    ;  N  ;  @  ;  Q  ;  ,  ;  *  ;  ,  <  8  <  Q  L<    U<  =  n<    {<  =  <  Q  <  Q  <    <  Q                       8     D     |                                                                    $    0    <    H    T    `    l    x                                                     ,    8    D    P    \    h    t                                        (    4    @    L    X    d    p    |                                                         $    0    <     .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4   	=                    	   @       X                )             @=  `                 %   	   @       lq                1      2       A  h
                @             L                     F             L                    V             L                    [              L  G                  d              _L                                  dL                	              TR  _                               s  m                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/i386-efi/gptsync.mod                                                                      0000600 0001750 0001750 00000007334 13417732100 0015057 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UWV1S>  E=  EvE 0E?   1ҋ]   B	ڊ]1҈   EXZ[^_]UWVS,  } PPh      }~WWh   w  E;(uOS|)u<ESD E @$ƋE$)E0ƃ    f  uV[^h<      QRh   j j j j P    f}UtVXZhG      EU8   9uVY[h      9    x   Rj Bj R+H+C"    VXZh   jV    jD  ǅ   ǅ    P@E;E  PPEj+4u)PPEj-4ƅ t PPE46ɉtuV^_hT   jO_ȉGW kVY[hf   jw9RAxV=    u            PPh   stMRRh  st5PPh  stQQh   s҃,}@    ǅ   SGSKCGRGKGSH$GC
<$XW  jj P׃ ǅǅ    wEPMUE EE   EE E Sh   j j j j EfEU6 EVV0h   1e[^_]Uj h  h  hf   h       U5    device name required only 3 partitions can be in hybrid MBR not a disk no signature no such partition only partitions residing in the first 2TB can be present in hybrid MBR ntfs hfs only one partition can be active New MBR is written to `%s'
 no GPT partition map found fat hfsplus Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. DEVICE [PARTITION[+/-[TYPE]]] ... gptsync   LICENSE=GPLv3+  disk gptsync                                                                 |  +                                                                                     )              >              O              ^              i              u                                                                                                                                                         grub_mod_init grub_mod_fini grub_strlen grub_partition_probe grub_device_open grub_disk_read grub_errno grub_memset grub_register_command_prio grub_unregister_command grub_strcmp grub_strchr grub_disk_write grub_device_close grub_fs_probe grub_error grub_free grub_printf_ grub_strtoul  {             
     
          
                    @    \    c                    	            $                        1    8    l    u                                        c        F    ]    b                                     .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                       	   @       
    	            %      2                         4                                  :                                 J                                 O                                  X                                                (    
   
         	              	                                   a                                                                                                                                                                                                                                                                                                                      boot/grub/i386-efi/btrfs.mod                                                                        0000600 0001750 0001750 00000034710 13417732100 0014506 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      7      4     (   UV   S;@  sk<  F0߃<  Xl  $e[^]UE@@1UVSÃ pC39s0CkURRPsMUMu    5CkCPUHkCPUkCPUkCP1e[^]UWVSxr
9rMwD9rG9r9w8Z8Xr7   w3pX	B	R9r w9r9ֹ   wr9w1
   [^_]UWVSÃ<}u;}ԍxu  } v;)؉    uxߋ=C  T  E U뿁}  wE    } &  )؉    E   uxߋ7C     }  vEЋUԉ	   Eh   E   )E   j EPQVWM MątQ   EU9v;UvUPERUPuMMЋU)UUU$(j EPuVW u&E)EEEE    E    Ee[^_]UW1VSL  SPh+  j j 4   4        Qjh    Pust^L9	r)w;FHv"Rh+  PVGt/		;   r;;    .tɉt+uPPh	   j	t        1Ѝe[^_]UVS8 uPPh    j	Php  tgu$ǃD     h   <  uS(ǃ@     0<        PH1e[^]UWVSE     ED   fx.p,fH*@(ffS"ffEfC&fEfEC$fEfEC WVQMfEQMQMQRPh*   U0~    e[^_]UVuES    á    t$PPh   +  P4    e[^]UVS<  uu    tk	uS        OtS;PjP PuN9u;FtS
^   1e[^]UWVS   ]rr	B$M4Pr20hO   hh   h  hn   E0ǅ @P0E4 jeP    e } (,u	11Q  P1j!1j bW;]   W1Ak!(j!P,    QIQNJPEA hy   hh   h  hn   0A u;} uRV_R4j 0uES)tl  ~u i!   CA   } usw04fP0Kj 4uESt  E     E     @    Pjj $} tPj   1  P1Ak(jP,    PPINJPEA h   hh   h  hn   0A` t&y   CbA   ;]KUPjAP$V1ҋ}}R(,} WWjuS   tUVjbP$w1ҋu}s(,} WQjuCP>E     E     @    Rjj $} ^Pjuj04Ee[^_]UWVS     UM<} R  PPuuh   hh   ht  hn   +   |<9|   |{uvssss	h   hh   h  hn   S ;UC	w'r;Ew |FV9U   w	9E   |F=DA|lEU}
E   EGXUW\E    E~PPh   j	!VVuMj QMQRPMƍU *  }uE9ErwE9EvSS   uu
      QUuuMPZt(V  |ǅ\    pEǅ\   ||UH	XE)ډd`ptV;dhlw7rp9hw'h&  hh   h  hn   XZh  j	#  vvF.PF,PlhSQh0  hh   h  hn   F0V	1         	c  	j  hy  1hh   h  hn   E$vvtpMQN,SQRPN^щpЉhphppEU+MEU]   	f  @	  EPvvtpӍE1PfF,fv.1RPSQ^.ыUhNӉpepphEFU؋^fʋNEU+ME] UE  hj  hh   h  hn   1$    F,RPv6щEPQRtplhEU `hddl`ȋ`h+ptQhr  hh   h  hn   ptE    E    EU^ǅp   )ӃB ǅp   3h  hh   h  hn   vvh  j   	uPPh  j&  1҃ Ehlw9hvhl^01ǅx    @ǅ`    p9`5  `]@ڋBXRRPuuvvF.M]PF,PTP|v6pp	h  hh   h  hn   @uuTPh  hh   h!  hn   X Z1҉}E    XE@  ]D;Dt#k<  ;XuX;Hu   BՃx tPPEPh  } uQQh*  j	[@  @;D  @  vKD <  D  kRRPQD<  uuD<  3k@  X<  PXUk@  <  PMu    QPPuhTÁ  ǅL    L	H	HRP1 t3        `xxt    8hl)EEEU\ V1e[^_]UWVSӁ   TtkSDKkt9ts1; uux   HR1kP!eHj j!bPu{sPwj jeVu[1s} QwPuj lkSDx tR1kPueHj jVt=UEMTkCP@e 1ȹ   ډ   W}e[^_]UWVS|EUUMEEU|EEE} L  l  td]9L  wYr]9H  wL}9\  uA]9X  u6}9d  u+M9`  u ]9T    r}9P    PEM׋U}ElEƋEUӉ}ʉEXZEUj j PEPuu    9}uE9Eu}lt	SShm  MQQh~  j	U  EU䉎h  H  L  Q]}MX  ]\  l  `  d  u
      RMj UuP  l  H  L  O_P  T  u#Ml  O59rG-W1P  T  wwuuh  hh   h&  hn   E 9T  wE9P  MP  ]+H  L  );}EUv}l  x tPPh  j  X]v	WSh  fx t	VVh  Pt     }uASSWuuuh  QRP 9x  =     uQQh  jn}u%h  WuuuS9#  RUWDPuHP	uPWj u   }    @PÉEEPl  PHj Sutul  Ju$PMP]WuJ%Z)SQuu (u WMu]J%Z)EUSQuEESP%H)j WuUMt!PRh+  1}}U)}E+|e[^_]US]C@4  8  uuss0  ,  4]UWVS$  j j PPwTwPǅ   ǅ    ǅ     ǅ$    ƅ    
9u2;u*8u9$ u;tRRhH  j	cPj h   (Pwu8   EF    UFTF	    F    EV Íe[^_]UWVSd]j uj M׉EEPEPEuuUƉ]ƉuEE    E     u:;uu;]u}tRRhP  j	UPMEj h   We[^_]UWVS8  Rt*ǅ    ǅ    ǅ    ǅ    Y    u  V@P8VPX?/  </uG  PPj/WuW)E8t$$[^h`  j}  u?.   k   ?.   .   BB	BQQj j PPEp0 k  @8J  9y3  ;'  E$    FTPWjF    ЉF	XZj j PPEp0   W  ;vSƉ@$u#$      Pj   +;}0F9u1PFWPu;|  VFt럊F<P  u0^$_Xh  j  E(p0v6t,Y$  8D$uZsPPN8EWj j p0 ;8X$<$#Mun
  MV"    PPj j PPpTpPS t6X$  9N   ;   8F   Pj h   (Pt_sU܋M@T@	    @        @    E؉Q9 tBu>YShp  jƉ$      E8E@T6$ZFPh  j	 $X1e[^_]UWVS   E@5       ,  >4?W u"RRUW4?tz   >tePPh  jb?C4  8  0  ,  RP؍Pt؉EMdX@`Q8A4e[^_]UWVS  E5    S  W.   PUPWS.   t SPPh`  j  h@  ǅ   ǅ    u5    7PPj PP PWV?.Z ƅtH  GTu29C?u;.t5VV?PP   11ǅ    GT  29C?  ;.  ;v4WÉ@$u5    H  S j Wzt	؉  );   s3P
jj Pt        E؀ CTD {	QuPCPUu]CTSC\'RR?PP M11WXle[^_]Uh    h    Uh    U=    WVSt	E1i1һ   ֹ   1   t	Iu   4 %Ao1Iu   1t	Iu4    B   u;U}]2B3    [^_]                                  _BHRfS_M not a Btrfs filesystem not BtrFS %04x%04x-%04x-%04x-%04x-%04x%04x%04x retrieving %llx %x %llx
 btrfs fs/btrfs.c internal node (depth %d) %llx %x %llx
 leaf (depth %d) %llx %x %llx
 searching for laddr %llx
 %llx %llx 
 too deep btrfs virtual nesting couldn't find the chunk descriptor no chunk
 chunk 0x%llx+0x%llx (%d stripes (%d substripes) of %llx)
 single
 RAID1
 RAID0
 unsupported RAID
 unsupported RAID flags %llx chunk 0x%llx+0x%llx (%d stripes (%d substripes) of %llx) stripe %llx maps to 0x%llx
 reading paddr 0x%llx for laddr 0x%llx
 couldn't find a necessary member device of multi-device filesystem extent not found extent descriptor is too short regular extent 0x%llx+0x%llx
 encryption not supported compression type 0x%x not supported encoding not supported premature end of compressed unsupported extent type 0x%x no root inode not found not a directory file `%s' not found too deep nesting of symlinks unrecognised object type 0x%x not a regular file           h   #  "    Y           LICENSE=GPLv3+  lzopio gzio btrfs                                                                                            &          &                                  	              
               )              ?              N              [              h              y                                                                         &                                                                             
                          .             9             J             T             a             u                                        grub_mod_init grub_mod_fini grub_strlen lzo1x_decompress_safe grub_xasprintf grub_realloc grub_memmove grub_device_open grub_strdup grub_divmod64 grub_disk_read grub_errno grub_memset grub_getcrc32c grub_fs_list grub_print_error grub_zalloc grub_strchr grub_malloc grub_real_dprintf grub_device_close grub_error grub_list_remove grub_free grub_strndup grub_device_iterate grub_zlib_decompress grub_list_push grub_memcmp    $     7      C      K                :    [    n                  7    >    I    _    q  %                      "    G    N    ]             j    o              !                  2    7    N  %  t                    o                        c	    h	    r	    w	    	    $
    
    
    
            J    O    Y    ^            ?    M    y                     "    L    Q    [    `                            m                        *    T                                #    .    5    J    Q            '    ,    F    K    U    Z          "               8                    5     /                                              !    1    n  #                      G     y  #               !            J                         	    8     @     G    =                           i  %                               #     A    M    d                    T      `      h                  B!     N!     W!    ^!    h!     !     !     !     !    !    !     !     !     !"    "    "    2#    #    #    #    #    %     %    %    %    %    y&     &     &    &    &  $  &    &    &    B'    h'                                         .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   w'                    	   @       /                %             '                     -      2       '                  @             +  (                  <   	   @       6  8               F             +                    V             +                    [              +                    d              +                                  +  `              	              P.                                 (7  m                                                                          boot/grub/i386-efi/gzio.mod                                                                         0000600 0001750 0001750 00000020134 13417732100 0014331 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      T      4     (   USRtC[P1]UWVSӃ}ExۍCt} tPjWVt   e[^_]UVSHx ǀP      XǀT      t! @w9vRRh    jNPSQ6@  ǆ8       ǆ4       F     F    D  ǆ@      ǆD      e[^]UWVS  ujDj P\1@;u9uE         1      uAu9sǅ    uu苅9vʉ   ;s+  B拕þ   +X  11ǅ(    @;t(1t$^$h@;r؋1ҋǅ$    ǅ    h؉TPhh1tǅ    ǅ9  hǅ`   Hӥ`p)ÉLp   )Ɖl9d0  l   ;pvEdhL++p<F;v9s9v)މ      Pu"        ]PX@    ]tIÊx$ȍN||P|TldP+9tlcsUt;\s   Ѓfxt(+\uEɋxtfx   +抍9s)||lʉ|x\Ӌ`t
11   ËI#;$t)p`hX 1ۃÉ!   e[^_]U1҉SÁ  Ǆx   B   uǄx	   B   uǄx   B  uǄx   B   u썃H    ǃH     P@  Phx   h   xst#=        RRh$   j   1Ǆx   @uL  1ǃL        PD  Ph    h<   xH~1=     uPPh$   j@  ǃ@      
CC$    ]UVuS^@3@  |D  q$        F    e[^]USQHtP1;Ss_BCS t9K9HPu;St0       uǃ0       Rh    S0RP0   P0   D0]UWVSÁ,  4   8   w^	  w1	@w؉ 	݃w*  wЃB16QQhL     $   G;swщz	t$   GǄ    捃H     ǃH     @  PQj    j   1ǅ    H       ;  ;H  s"؉	֋@  #ȉD  H@ӭ)wB눃   w"؉<	ًL:;wG1RRhZ     <@;uubw"؉	ًL:;w1    @9udw"؉T	ًL:;*1    @9uǅ    "@  6  ǃD      ǃ@      8   4   ǃH  	   hx   h   uXL  1ǃL     RD  Rh    h<   t(@  ǃ@      PPh$   j
CC$    e[^_]UWVSЃ<ʉE    9T  Mrw9P  vE    } u=       E  =     uދE;T  P  5  ǆ<      <  =  v1P  T    =     u~   ~  uԋ8   4   u2	ø   ډ߃V Xwك	F4   8            ى߃wUU	FӃw	9FtQQho   j4   _8   F~RPh   j=       ~ <  u6~ u<  {  =     uC;   NʋF,8   ]܉E؋F(E4   E䋆H       EċL       E~$   ;H  s	EU䋆@  #Učv[cuWWh   j  Jm)9sU%Uȃ	E    Z#EÉ띊Jm)ǃu$]܋BK   <     M/  uF    M  9sUU	EM)    R}!ЉEȈE؋E;L  sfME	EU؋D  #U;vGcKm)E9}sME	EK?    #E؍뱊KUUȋU)9sUUу	EC)MF$)?    M؋M!)E؉ȉE~$ M܋Eػ   %  9ȉEv))ˋE]9vE؋]؉1+U)]9r/RS]܉M܍<   P<   PE؃M؉E,U܍Uȉڋ]Ȋ<   <   @;EuE܉E؁   t} [} u!N$   tME    2E    E؃~ <  8   F,EF(E䉆4   @  D  ǆ@      ǆD      <   r	9]<   |+];]v]PES%  <   Pu1])]]]Uԃ8E̍e[^_]USE]PH@@Su=     u9tPPh   j]UWVS8}jLs  hX  uVL  8G^@F   F<   FPPtRj j PQj
EP3
t2S        4$j j W   Ef=tf=u}uEߨuuEt>*RjEP3uU֋t|jEtRAQCSPA4Q8RPQjEP3EF8    F41e[^_]UWVS(EUhX  EU   EC    CECE܉U܉ЃtRRh   j$X   1ù uȉC   C    -UMPPuuJ$e[^_]UVSUMhX  UMt@EC    CECUMPPuu$e[^]U          ]U              ]        ?   ?                     	      
                                 attempt to seek outside of the file failed in building a Huffman code table too much data too many codes found the length of a stored block does not match unknown block type %d an unused code found premature end of compressed unsupported gzip format gzio                          	 	 
 
             	    ! 1 A a    0@`                                      c c         	 
         # + 3 ; C S c s                                d              LICENSE=GPLv3+ gzio                                                                                                                                      	               *              9              D              P              f              u                                                                                   |  q      grub_mod_init grub_mod_fini grub_memmove grub_file_seek grub_errno grub_memset grub_file_filters_all grub_file_read grub_zalloc grub_file_close grub_file_filters_enabled grub_error grub_free grub_zlib_decompress grub_deflate_decompress         U                    I                            
        &    0    7    u                    	    M	    	    
            T    Y                    P    >    E    {                         \    c                    p  
    
                  +    =    T    s                            ]    m                    f                                                   .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .modname                                                      4                       	   @       X    
            %             T  p                  -      2                          @                                 <   	   @            
            F                                 V                                  [                                                  p     
         	              h                                    d                                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/i386-efi/bufio.mod                                                                        0000600 0001750 0001750 00000004244 13417732100 0014471 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UVS]s@64$    C    e[^]UWVS,u~8~@u~4uP8@4V8F4V_FOU9ډErWw9MrPG1҉E9Uw?r9Es8E]));]]v]]]RDSPu)]]E    } uE  1ҋMj GR1҉UPEEFV1RPO]щUMЉE؋ẺU܋VE܋FӃ ;]   r	;M   UE)PSQ7Uuu7y   ~8u~4uJ4Z8N4^8EE;Eu)EJWG9vWG1ۋVE؋FM؋u)ȋM1ȉGEډWQV)PWE|Ruu7wGP7ZU؋M܉GWO~8u~4uP8@4V8F4G]9vPESF+E؍DPuE؃e[^_]UWVSujL}            x;V8rw;~4v~8 ~4u   v   GPuS+0xVSV4N8C@C    S4K8F<C<1    넿   ze[^_]UVSut"PPuVuV1ۍe[^]bufio                     0                   LICENSE=GPLv3+ bufio                                                                                                                                                  +              6              E              Q              a              p   D  F                      {        grub_memmove grub_divmod64 grub_file_seek grub_errno grub_file_read grub_zalloc grub_file_close grub_file_open grub_buffile_open grub_free grub_bufio_open              
       
    ]  	  m          	      g                    P    d    v                    .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .modname                                                      4                       	   @            	            %      2                          8               (                  4   	   @       P     	            >                                 N                                  S                                                     
            	              $                                  h  \                                                                                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/halt.mod                                                                         0000600 0001750 0001750 00000007504 13417732100 0014317 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      d      4     (   ?wt    UWVStN
1҃|   B	9|[^_]US9r.t/tuA\uA܃	QL)[]US EUQh    h   jih   E tMUw
         wIwsXt(3u.   ^@1XQ   J; tC9r9t3)C7Yv\tYw	]PPQh+   1   ؋]UWVSӃ,҉EuX$E9  9  Ph@   h   h   h   ؃+EPhM   h   h   h    <[t<w<  <E  <  H  <@  <   <   +  CECPhV   h   h   h   C <t<w<t$<u`{f<wN{1҉T{DD{|t!ǉuRRPhm   1+EЋ}ǅ~  t  {ǅ^  [  } {uPjh   Wu6Puh   ut   Pjh   W   h   h   h   h   tVVRh      GUb}Wt$r
uG   1   SSRh            lǅtp{UMMǉȉ8t>QQMPEQ=t'3{1҉RRPh+   ؉e[^_]UWVSuPh   h   hY  h    6  C1Ep$E@9   Pjh   6uWx@P(Wh   h   hm  h   Ujh   uuiyeE1QQHj j IRjh  6u=y9Sh
  h   h|  h   Kj 1j Ã*PPWSh  h   h  h    tw
 fh  $0  e[^_]Uj    @8j j j jP@ UUj hE  j h  h       U5    data type = 0x%x
 acpi commands/acpihalt.c Unknown opcode 0x%x
 Opcode 0x%x
 Tell %x
 Extended opcode: 0x%x
 Unexpected extended opcode: 0x%x
 _S5_ \ S5 found
 \_S5_ Unknown opcode in _S5: 0x%x
 Unknown data type in _S5: 0x%x
 rsdp1=%p
 FACP PM1a port=%x
 DSDT SSDT SSDT = %p
 SLP_TYP = %d, port = 0x%x
 ACPI shutdown failed Halts the computer.  This command does not work on all firmware implementations. halt  LICENSE=GPLv3+  acpi halt                                                                &  (        N                                                                             (              8              N              c   r      r                                                             *                                                grub_mod_init grub_mod_fini grub_puts_ grub_millisleep grub_efi_system_table grub_acpi_get_rsdpv1 grub_acpi_halt grub_machine_fini grub_register_command_prio grub_printf grub_unregister_command grub_halt grub_real_dprintf grub_acpi_get_rsdpv2 grub_memcmp                     N    S                                    +    0    :    ?                    &    .    B    H    X    ]    g    l            K    P    |                                            	            @    G    ]    b    l    q                              
              "    /    6    ;    @    H    V    [     .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4   d                    	   @       
  @  	            %      2                         4             3                     :             4                    J             D                    O              D                    X              I                                  P  p  
   
         	              	                                     a                                                                                                                                                                                                              boot/grub/i386-efi/cat.mod                                                                          0000600 0001750 0001750 00000005574 13417732100 0014143 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      L	      4     (   UVS    tS,t	PPVS҃e[^]UVStCÃu/?	؉Xu:
ur:wp        1`xPu   w8        /u   u      [^]UWVS,  Eǅ    ǅ    }@ tPPh    j  E0t111t      Kǅ    ǅ    <     1   e1 2  F;up  Ph   P/     QQjh   1  t̍Ct&<
t"   PPjh   11x;PP=GPh   QQPh   1ǅ    ǅ    &U=   v.tBRRPh   ǅ    ǅ    P^vʃPuq t$uǅ       ǅ    F   1PP=GPh   9|1mǅ    ǅ    11   169}5FRRPh   1h       X1e[^_]Uh    h   h9   j h   h>        U5      B       F                                   filename expected <%x> %C 
 Show the contents of a file. FILE cat dos Accept DOS-style CR/NL line endings.  LICENSE=GPLv3+  extcmd cat                                                                               0        L                                                	              
               4              ?              J              V              e              w                                                                                                   grub_mod_init grub_mod_fini grub_unregister_extcmd grub_xputs grub_errno grub_printf grub_file_read grub_term_outputs grub_refresh grub_file_close grub_file_open grub_isspace grub_error grub_register_extcmd grub_getkey_noblock 	              5    O                    P    U                            $    |                                #    (    -    4    9    >    F    T    Y                .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4   b                    	   @                       )               0                  %   	   @                        1      2         k                 @             3                     F             4                    V             D                    [              D                    d              K                                  P                	                                                  m                                                                                                                                                      boot/grub/i386-efi/hashsum.mod                                                                      0000600 0001750 0001750 00000012364 13417732100 0015037 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   U                     ]ÍPU	w0#PwWPw7]UWVS(h   EMǡ       v$tePVQh   WuxEt	RPWSV܃SVV$UV URPu<$$1W$    e[^_]UW1V1S   UZC\C TPP4    d pdu<   Fu˃; t{u	PPh    WduWWh   j  dx@vVVh   j&  { ǅH    t	CH{ u	11  } t	SSh1   먃sX  ǅL    ǅP    ǅ`    `[XÉ`  PtC1d;psACzutQQhX   j  	5hF봊<	t< uيC<	t< u΋Ht=RSPhj   	  T uW<$T uSƃu$XX`      dMVtWPPShp   \ u$XX`          PSPdpEPhPtLPPSh   \ u(X_`Sh     LVVSh   P1L   LPh      dMW1``tX\    C        F;ussT uE4u\ u    Ud;xsD/GQQPh   ݋ERR4h   닉1tPSh   je[^_]Uh(   h  h2  j h"  hd  h(   h  hl  j h"  h     h(   h  hl  j h"  h     h(   h  hl  j h"  h     h(   h  hl  j h"  h     h(   h  hl  j h"  h          U5   X5   Z5   Y5   X5   X5                           h                c         *     /  p       6  T     X  k       c            u                                         no hash specified unknown hash mdlen is too long --check is incompatible with file list invalid hash list %s/%s %s: READ ERROR
 %s: HASH MISMATCH
 hash of '%s' mismatches %s: OK
 %d files couldn't be read and hash of %d files mismatches %02x   %s
 %d files couldn't be read Compute or check hash checksum. -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] hashsum [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] md5sum sha1sum sha256sum sha512sum crc sha256 sha512 sha1 md5 crc32 hash Specify hash to use. HASH check Check hashes of files with hash list FILE. FILE prefix Base directory for hash list. DIR keep-going Don't stop after first error. uncompress Uncompress file before checksumming.    LICENSE=GPLv3+  crypto extcmd normal hashsum                                                                               }          u  R                                              	              
               ;              J              W              n              y                                                                                                                                                         "             4             ?             I             V              grub_mod_init grub_mod_fini grub_crypto_lookup_md_by_name grub_xasprintf grub_memmove grub_unregister_extcmd grub_errno grub_printf grub_crypto_memcmp grub_file_read grub_print_error grub_zalloc grub_strcmp grub_malloc grub_file_close grub_file_open grub_isspace grub_file_filters_enabled grub_file_getline grub_error grub_free grub_printf_ grub_register_extcmd                 r     |                                          O    a    u                            M    Y    x                #    -    F    ]    i    n                                            4    @    I    a    f                            5    :    L    Q    g    n                                                                                                                    $    )    0    5    :    ?    G    L    Q    X    ]    b    g    o    }                                                                                               $     (     4     8     @     L     P     X     d     h     p     |                .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                       	   @                       )                                 %   	   @                        1      2                         @             e
                     F             h
                    V             x
                    [              x
                    d              
                                  
                 	                k                               T  m                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/cbfs.mod                                                                         0000600 0001750 0001750 00000007514 13417732100 0014305 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      D      4     (   UMA$Q(AQ]U]UEp@    UWVSEux@HDJ HHJ$uVHXO_SQj j 7 uB     e[^_]UWVS<uVF;V0VFrw;F,rE G  }SWjRPj j 6 usQjh    EPuE؋}F     ff} Ft	E   v_   CPUu
      RPSFV RPj j 6 tE0       E 8 uPE     U F41ۉV8N^FV NEEUăUMN4]ċE^^8ك !ȉFE!؉F1RF41ۉV8N^FV NEEUăUMN4]ċE^^8ك !ȉFE!؉F=e[^_]UWV1>ORBCSuZV1112t
11111uE~1N9s)^9s9sVtJu1[^_]UWVShPMQjj h  RPV   VM}Wj 		RPj j V X  I  j<2  V}ЋME    f		f)ω}+EUC$S(4$ME    {(C8    		M+EUC,E؉S0C4C$4$E		9   r	9E   C,{0VE		9r w9EvV		C,S0C$}S(CSQWjRPj j V uRjh    Wu3PPh	   j	1e[^_]UWVS]C ơ    t9PuhH   VtVs@FV C41S8e[^_]UE   E   ]UEVS á    t'uuuhH   SSe[^]UEU	   	RPu1U} Eu
EB   ]1]US]hB   utEK   ]E          C  C    		C1S]USR1t:Ch(            %     أ   PPh    h    ]Uh           th(   LARCHIVE not a cbfs filesystem rom flashing isn't implemented yet cbfsdisk not a cbfsdisk cbfs            Z   9    1                  B               "                 LICENSE=GPLv3+  archelp cbfs                                                                               #  i          2                                              	               0              =              T              c              n              {                                                                                                                                                         grub_mod_init grub_mod_fini grub_disk_get_size grub_memmove grub_disk_dev_register grub_disk_read grub_errno grub_fs_list grub_zalloc grub_strcmp grub_malloc grub_archelp_open grub_error grub_list_remove grub_free grub_disk_dev_unregister grub_archelp_dir grub_list_push grub_memcmp &     +     l                    ?    P    q                  
        
  >    b    x  
    
    
  2  
  P  
                                      (    5    K    `    f    q                                        @    F    `    g    l    v    {                                                         (     0     4     8     <     @     H     P      .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                       	   @       
    
            %      2         _                 8             T  T                  4   	   @       t  h   
            >                                 N                                 S                                  \                                                       
         	              x	                                   e                                                                                                                                                                                                      boot/grub/i386-efi/hdparm.mod                                                                       0000600 0001750 0001750 00000016170 13417732100 0014641 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      H      4     (   UVS19tf4Zff4XCfX  [^]Ã8 tUj j pÃUWVSÃP}j$j uVUMUEŋEMEUʉEЋEMĉEԋC,j VSPt    1e[^_]UWVSÃE=    }EEEu't#; tx
PRSh   PPSh   UQEj j P3=    u"t   u    RRPh)   e[^_]UVSÃ=    utPPSh-   MMPj 1j j =    u"t   u    RRPh)   e[^]UWVSӃ@j$j }WF,j WVEʰ]EOEEPu1u/UǀOu1}u1},D e[^_]UWVSl  E}]ptRRh   j  9(uQD8)u  AǋFFFF bF(TËF0F8F@FHFP&FXQ   ơ      F@t	t!F(FHwF(@$҉yDPPh   j  tB      P   Qh   x;   tȸ   
   1ɃWQP  h      =       WWSh!  u
h=  f      t@   I   t.   <   <   k1	1ҹ   1RQPhA  hP  hk  ۃQ    Sj h    xo=    u# 3   t0   RRPhm  ҁ   =    u    t   WWRh)    t     M  S1h      Pj th       (   =QQPh     [_Ph     ZYPh  f$  ffff t%tRRPh  hD  hN  h]  f t tPPPhy  hD  hN  h  t:   t7   WWPh  hN  h  tRL   t>   e   t^   {   tp      t   WQRPh   hN   tSh   Pj     h  j$j SƅƅG,j SWPu   u"h  ,   tҸ   u         QRPh  1ۃ tc=    uh     ==    u'x   u      PPRh)   ۃ t     j t   &  LV        e[^_]Uh    h=  hZ  j hE  hi       U5    UWVSl}}   uEh  jPPËEE~E   17PP   h  )PEPÉuD CF;u|ȋE6   /PP   h  )PEPÉuD CFủS)D|E    B\K^v.EM9M\}D|PPEPh  D }?   Vj_SWupQjG PWu\RjG0PWuHh  E)EE߃m}/4~PjC PSt߉uEE)EZe[^_]   p  B       t           C                   F                   H                 +  M       /         t  S                   y                   Y                   i                 0  I       7          a      g           q                                          : not supported Set %s to %d Disable %s %s
 %s En Dis en dis COUNT EXPIRED count not expired frozen NOT FROZEN **LOCKED** not locked ENABLED disabled idle active/idle unknown standby *BAD* OK one argument expected not an ATA device Automatic Acoustic Management Advanced Power Management Set standby timeout to %d ( off %02d:%02d:%02d invalid or vendor-specific ) %sable SMART operations Freeze security settings Cannot read ATA IDENTIFY data
 Model:    "%.40s"
 Firmware: "%.8s"
 Serial:   "%.20s"
 Automatic Acoustic Management:  %u (128=quiet, ..., 254=fast, recommended=%u)
 disabled
 not supported
 Advanced Power Management:  %u (1=low, ..., 254=high)
 SMART Feature Set:  %sabled
 ATA Security:  %s, %s, %s, %s
 Disk power mode is:  unknown
 %s (0x%02x)
 SMART status is:  Set disk to standby mode Set disk to sleep mode Get/set ATA disk parameters. [OPTIONS] DISK hdparm apm Set Advanced Power Management
(1=low, ..., 254=high, 255=off). power Display power mode. security-freeze Freeze ATA security settings until reset. health Display SMART health status. aam Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). standby-timeout Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set drive to standby mode. sleep Set drive to sleep mode. identify Print drive identity and settings. dumpid Show raw contents of ATA IDENTIFY sector. smart Disable/enable SMART (0/1). quiet Do not print messages. %08lx   %02x      %s
 *
    LICENSE=GPLv3+  extcmd hdparm                                                                              !	  0        Q	                                                	              
               )              8   g	      @              N              e              p              |                                                                                     grub_mod_init grub_mod_fini grub_strlen grub_disk_open hexdump grub_snprintf grub_unregister_extcmd grub_errno grub_memset grub_disk_close grub_printf grub_error grub_register_extcmd grub_memcmp grub_strtoul    9     c                                  (    /    7    <    [    j    r                            c    z            )    k    r                    	        v                                                    "    *    /    K                                    &    F    i    s    }                                                     
             %    5    <    D    K    S    Z    b    i    u    z                                .    5    <    C    K    P    d    o    t                                    	    	    (	    -	    2	    9	    >	    C	    K	    Y	    ^	    	    	    	    	    	    
    h
    r
    
    
    
    
    
    
                    $     0     <     H     T     `     l     x                                                                     .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4   !                    	   @         X              )             X  8                 %   	   @                        1      2                         @             I                     F             L                    V             \                    [              \                    d              c                                  l                	                                                  m                                                                                                                                                                                                                                                                                                                                                                                                                          boot/grub/i386-efi/cbls.mod                                                                         0000600 0001750 0001750 00000007020 13417732100 0014303 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   Uj h   1USQ]=   w@   tRsPh    
RsPh      $    PC#PC!PCPCPC$PC"PC PCPsssCPssh)   @cPS	CTRSDPh`   >PPSh   1QQCPh   Cfwt  tRRPh   h   1]Uj h   j h    h        U5                                                e                                   -  6  =      G  N      V  b      g  l                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        	    !  %  +  >  C  N  tag=%02x size=%02x %s tag=%02x size=%02x : %dx%dx%d pitch=%d lfb=0x%llx %d/%d/%d/%d %d/%d/%d/%d : vendor=`%s' part_number=`%s' : `%s' : id=%d  %s 
 List coreboot tables. lscoreboot memory map (`lsmmap' to list) mainboard version extra version build compile time compile by compile host compile domain compiler linker assembler serial console framebuffer GPIO VDAT timestamps (`coreboot_boottime' to list) CBMEM console (`cbmemc' to list) MRC cache VBNV CMOS option table CMOS option CMOS option enum CMOS option defaults CMOS checksum 8250 UART VGA BTEXT log buffer console SROM EHCI debug memory-mapped 8250 UART   LICENSE=GPLv3+  cbtable cbls                                                                               (  (        P                                                	              
               8              D              \               grub_mod_init grub_mod_fini grub_register_command_prio grub_printf grub_unregister_command grub_linuxbios_table_iterate    	          *     8     D     I     a                                                        1    8    =    B    J    X    ]                                                   $     (     ,     0     4     8     <     D     L     P     T     X     \     `     d     h     l     p     t     |                                             `    d    h    l    p    t    x    |                     .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4   f                    	   @        	                 )                                %   	   @       	                1      2       ,  f                @                                  F                                 V                                 [                                  d                                                                 	                y                                p  m                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  boot/grub/i386-efi/hello.mod                                                                        0000600 0001750 0001750 00000002300 13417732100 0014457 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   Uh        ZYPh   1Uj h   j j h    h#        U5    Hello World %s
 Say `Hello World'. hello  LICENSE=GPLv3+  extcmd hello                                                                 "   *        L                                                                              4              @              U               grub_mod_init grub_mod_fini grub_unregister_extcmd grub_printf grub_register_extcmd grub_gettext                       +     4     9     >     F     T     Y   
   .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4   b                     	   @       $  X   	            %      2          )                 4                                   :                                  J                                  O                                   X                                                       
   
         	                b                                |  a                                                                                                                                                                                                                                                                                                                                                  boot/grub/i386-efi/cbmemc.mod                                                                       0000600 0001750 0001750 00000004604 13417732100 0014613 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      |      4     (      tP;sUMLBP]BPU1U:uB      ]USR   uE    ]E   SPP       9vPCP1   ]Uj h%   =    tG=     tRRh    h       uPPh    h    h    Ѓtكj h   j hA   h3        Uh    $    X5    no CBMEM console found Show CBMEM console content. cbmemc            3                                                                                                   P          LICENSE=GPLv3+  cbtable normal terminfo cbmemc                                                                                        "  -                                              	               2              H              T              f                                                                                                    L   0     2             O             c             u                                        grub_mod_init grub_mod_fini grub_terminfo_gotoxy grub_terminfo_putchar grub_xnputs grub_terminfo_cls grub_terminfo_setcolorstate grub_terminfo_output_init grub_terminfo_setcursor grub_terminfo_getwh grub_term_outputs_disabled grub_register_command_prio grub_unregister_command grub_cbmemc_terminfo_output grub_linuxbios_table_iterate grub_terminfo_getxy grub_term_outputs grub_error grub_list_remove grub_list_push      6     H     S     c     p                                                                          
                )    .    5    :    A    F                              $   
  (     ,     0     H     x      .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   O                    	   @            
            %      2         :                 8               |                  4   	   @         X   
            >             <                    N             L                    S              L                    \              d                                  l       
         	              ,                                   e                                                                                                                                              boot/grub/i386-efi/help.mod                                                                         0000600 0001750 0001750 00000005124 13417732100 0014313 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      t      4     (   UWVS<} tE    1  5    E    x  Fg  v    Pvh    EC  MSQMQPEă    E   }E    ;}r2Sj j Wu }    SS+}   SS9EsEQPE)PWUԃ 	<   t=CtRRMQS(C<0t8¸    uEPE@OxQQSj Eth   uEZu6E  h   
  EUċ=    EtuEċE;E|   1G   uPuw   G tWuyFEth   G0uw Aw    EXw    $       M$VWPh    ut1߉e1[^_]Uj h   h4   j h    hB        U5    %s %s 
 

 Usage: %s %s %s
%s
 Show a help message. [PATTERN ...] help  LICENSE=GPLv3+  extcmd normal help                                                                 -        
                                                                             )              6              N              j              y                                                                                                                            "             ,             A             Q              grub_mod_init grub_mod_fini grub_strlen grub_strncmp grub_utf8_to_ucs4_alloc grub_unicode_estimate_width grub_xasprintf grub_unicode_aglomerate_comb grub_command_list grub_arg_show_help grub_unregister_extcmd grub_printf grub_term_outputs grub_print_error grub_putcode grub_dyncmd_get_cmd grub_free grub_register_extcmd grub_print_ucs4 grub_gettext        D     P     U     r     ~               K    f    }                            
  
      3    A    U    Z    s                                                             .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                        	   @         0  	            %      2       T  G                 4                                  :                                 J                                 O                                  X                                                    
   
         	                ^                                 a                                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/cbtable.mod                                                                      0000600 0001750 0001750 00000001724 13417732100 0014761 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (  
 Ujh    PɅUVS   u]  u   uB  u1?PPuVUu*vCC9s݃>u܋FutЋ^sٸ   e[^]LBIO   LICENSE=GPLv3+ cbtable                                                                                                                                 grub_linuxbios_table_iterate grub_memcmp   	           .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .modname                                                      4                        	   @                        %      2                           4                                   :                                  J                                   O                                                       	            	                *                                  X                                                              boot/grub/i386-efi/hexdump.mod                                                                      0000600 0001750 0001750 00000006224 13417732100 0015037 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      d
      4     (   UWVS  E}uxtPPh    j$  6? ǅ    ǅ    tPj j w    tPj j wWWh   6uQSPP   8(   T:)    @P   %  ;PQP1)˃ 1t<   v   RR1QRPWV t1   Pt狅GWPh   VW~P9~ tRPV1 t)uWZ1늍e[^_]Uh    h   h?   j h    hX        U5    UWVSl}}   uEh   jPPËEE~E   17PP   h   )PEPÉuD CF;u|ȋE6   /PP   h   )PEPÉuD CFủS)D|E    B\K^v.EM9M\}D|PPEPh   D }?   Vj_SWupQjG PWu\RjG0PWuHh   E)EE߃m}/4~PjC PSt߉uEE)EZe[^_]   `   s       e             n                                         filename expected (mem) Show raw contents of a file or memory. [OPTIONS] FILE_OR_DEVICE hexdump skip Skip offset bytes from the beginning of file. length Read only LENGTH bytes. %08lx   %02x      %s
 *
  LICENSE=GPLv3+  extcmd hexdump                                                                             ]  0                                                        	              
               )              7              F         N              \              k                                                                                                                                                          grub_mod_init grub_mod_fini grub_strlen grub_strtoull grub_disk_open hexdump grub_snprintf grub_disk_read grub_unregister_extcmd grub_disk_close grub_printf grub_file_read grub_strcmp grub_file_close grub_file_open grub_error grub_register_extcmd grub_memcmp grub_strtoul         %     7     f                              8                        H    d    i    n    u    z                                    4    B                                1                    $      .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4   ]                    	   @         8              )               H                  %   	   @       	                  1      2                          @                                  F                                 V                                 [                                  d                                                                	                                               	  m                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/cbtime.mod                                                                       0000600 0001750 0001750 00000005024 13417732100 0014625 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   U EPh8   E    } uh    1U1WVSU:   E111    BE܉ƋE;x   FVEU%    ЋU    EU؋U)ȹ&   ډ%        ЋVcw    u&   SGQ  R1R1PERPh'    M]e   e[^_]Uj hD   j h    hh        U5        z                                                                                                                                                                                                                                                                       (                  4                  ?                                      N                              ^  h  No boot time statistics is available
  %3d.%03ds %2d.%03ds %02d %s
 Show coreboot boot time statistics. coreboot_boottime romstage before RAM init after RAM init end of romstage start of RAM copy end of RAM copy start of ramstage device enumerate device configure device enable device initialize device done CBMEM POST writing tables loading payload wake jump selfboot jump   LICENSE=GPLv3+  cbtable cbtime                                                                               (        6                                                	              
               (              6              Q              ]              u               grub_mod_init grub_mod_fini grub_puts_ grub_tsc_rate grub_register_command_prio grub_printf grub_unregister_command grub_linuxbios_table_iterate             (     -                                                          #    (    0    >    C                              $     (     x                        ,    @    h             .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4   L                    	   @       L                 )                                %   	   @                        1      2         v                @                                  F                                 V                                 [                                  d                                                                	                                                t  m                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/hfs.mod                                                                          0000600 0001750 0001750 00000016324 13417732100 0014147 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UWVS<9r  [^_]Êt/pu} t	 :x   Cp{ tBUWVSQxNZEPff)u>18ډv߉9}$E|    |    )u
A)Z[^_]UEp@X5   1UWVS   Eu]xj^j Vtjj xPZtJv   jxxu-xG-%||GE71uHȋW
xG0U-%||PsxE    PVe[^_]UUES
9YuHU[M@]   []U   WVSLEu}͋]E EE E    E1EUUčUF CExu<My t3EC   } C9yuCuECL[^_]L1[^_]UWVS]u{ Su	y8>
)u,GJ)ufGfR)Ѕ   NVUzt13C   uC   PSF9vPvs   e[^_]UWVS˃@jR}WM؃1E } Et=E9   u2   9]~%Qjh    f	WfE11}܉]1fL;]~R\܆t'} t!ERjWh       Eģ   F   ]+]Ć	KBt]Ӊf	fEڍUP   jWj  =     u
   O1e[^_]UWVS<҉Uu      Eԃ}wE   uá    F  }       MuEȋEԃ؉EЋ   1u1҉}уRRUj P-1҃   u1҉Eĉuă=     tS       RSuj j RP    u1fC
9}dkEfD؍PU؉UUUBUUĉUU fT
EԆ)ЉEPuEPSUuG돋;fft
} S1e[^_]UWVS,E]}E    E    EE]؉U܉EPWh  j EuM̃t} tҋE1e[^_]UWVS   h     PVh   j j j jW   f>BDu
F t	SSh    f~|H+uQQh   j	]  f   N   ɉ   	RpRjxj j SQW4 4   ENɉ   E   f   SRjxj j    	SQ       EǅL      E   F$QQPF%PQP   9jPj KuRRh/   =     u?   (V=    uPPhR   j	1e[^_]USPE] tPꀰ%|    P    ]UWVSE} t9p$v   v@Ptj NS%    S    e[^_]UWVSu5   E !t2Pt@x	t&PSQhg       5   <$    e[^_]UWVS      :/XTEtPRho   j1  Rǅ\      ?/u(G=       ]db  WN  }tPPh   j0  PPj/Wdtd8/udd@ nsu>       M9s<:u	/F  xF  %      =   1``P`LPVQL   PB   uls)ySW8XuQmr   jVVj R\h   j%TtPjVEPV} tE\    `ʀCe[^_]UVSlu5   F XUM$    tS}t-SY[h   jZ5       SPjEP   PUEF8    V4   1   F    F    ^@e[^]UVS   E5   EEEE y   U|P؍M   }tPPh   jw|E   uE    E    E   EUP1Vh  j Eu&Mt} tҋMR1Vh  jSX5       e[^]UWVS\EE    }E    PHp@X@DUU   ]܉EڍBU11@EȋE񍖨   UỦEEȃEUċE9E+     RRU   juE؉=     E    EEt   E9EuE9EtM"   1E    ÉEE҉UuىMЉ]ԋE1   } u9EuE1u؉Ӊ)M]ԉUE    } tU   UM؉P U   P$PWuSQuu       =     @     $+}   EU wE9EEe[^_]Uh    h    E   Uh       	
 !"'()*+./0123456789:;<=>?@ABCDEFGQRTUZ[\]bcdefhqrstvw|}~MGQRTUZ[\]bcdefhqrstvw|}~IKSVgixNHOIJKSVWXY^_`agmnoijyz{xuLkPpLk%& HJjll#$,-Ä  Å  Ç  É  Ñ  Ö  Ü  á  à  â  ä  ã  å  ç  é  è  ê  ë  í  ì  î  ï  ñ  ó  ò  ô  ö  õ  ú  ù  û  ü  † °  ¢  £  §  • ¶  ß  ®  ©  ™ ´  ¨  ≠ Æ  Ø  ∞ ±  ≤ ≥ ¥  µ  ∂ ∑ ∏ π  ∫ ª  º  Ω  æ  ø  ¿  ¡  ¬  √ ƒ  ≈ ∆ «  »  …    À  Ã  Õ  Œ  œ  – — “ ” ‘ ’ ÷  ◊ ÿ  Ÿ  ⁄ € ‹ › ﬁ ﬂ ‡ ·  ‚ „ ‰ Â  Ê  Á  Ë  È  Í  Î  Ï  Ì  Ó  Ô   Ò  Ú  Û  Ù  ı  ˆ  ˜  ¯  ˘  ˙  ˚  ¸  ˝  ˛  ˇ  not an HFS filesystem embedded HFS+ filesystem cannot find the HFS root directory not a HFS filesystem %016llx invalid file name `%s' not a directory file `%s' not found not a regular file hfs                 @       	  v	    LICENSE=GPLv3+  hfs                                                                                            "                                          	               )              5              D              Q              ]              l              x                                                                                                                                                           grub_mod_init grub_mod_fini grub_strlen grub_strcpy grub_xasprintf grub_memmove grub_strdup grub_disk_read grub_dl_ref grub_errno grub_memset grub_fs_list grub_strchr grub_malloc grub_error grub_list_remove grub_free grub_dl_unref grub_list_push grub_memcmp  >                                  &    c                        #    (    0    5                h    w    |        9                    "    )            :    i    t                            8	    e	    j	    	    	    	    	    	    	    	    	    %
    ,
    ?
    Q
    e
    
  
  
    
    3    g                        M    R                                    #    1    w    ~                    
                                                                                    $      .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .modname                                                      4                       	   @           
            %             L                    -      2       L                   @               (                  <   	   @       (  @   
            F             8                    V             H                    [              H                                  L       
         	                                               h  d                                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/chain.mod                                                                        0000600 0001750 0001750 00000027770 13417732100 0014460 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      -      4     (   US    X<5   S|5    5,   5(   S$X5   Z5   Y50                        1]U    @<5    5,   5(   P$X5   Z5   Y50                        1UWVS0    E    @<ƉE̍EPEP5   VtW  } <  E   P-  E1ۉEЋEMЃ}   xۉ}f8t^ $  wE   
 $  J?ɀJ?Ȁ?ɀJB?BE1uw>  w?ȀJBI (=  v: $=  w?B)ȃB??ɀȀJBˋE RRVj4$PPh    jEtPEP0    e[^_]U    R<h   5   P5   5    j Rp t=	  uQQh   j'RRh   5   uPPh1   j!   P   tP   P1UWVS1ۃ~ @1ɉUE}E} u+EЍL?  } tUM@ۉEt8   Kʉ?	уuui      xVu      u      ]]ue   wun3}u  vJ   v=  
f%f fGf%f fGmEEE?   EMfO1   EE]f;/uf\ E9MrD fDV  fF[^_]UWVSlu} uQQhK   j  50   E    }(       ,       @<                     E             =   4C;]D   uP        V<
fpt	Af^9f   tf   }WE  WÉ$ۉEtSEU   tPYE@tW tQRRuVP  E   PEP   Ep      uWWh]   j  PtVVj)utpuSSj/V1҅EuQQhu   j   {tˊK<uVUUDB$   taRU)RWP}   )FC4$ȉCá   CfC 1     E@4        h(   Pjj     EP t15    h   h   h  h   h   j   (   P5   Su;   t=       ^~v;unsuKPPh   @k|t@9u֋FV9vPPh  ;   vPuh   j   4   WW5   5(   $h5  h   h  h     ~uj hy   h	  #u0kuj h    h   1   u[uuu5   ,   (   	tQ5    RPEP$   tP50       e[^_]U   WV   S  (   p   ǅD    0    @<j pPu hS  h   h   h   1mRURS0Pu#hi  h   h  h      4=  t=  uPPhz  WWh  VVh  juh  h   h
    uh  h   h  h   	  h  h   h  h   ũuf UEQSRPh  h   h,  h   <DPWjP,tVVh   j  DڍD0!4tSu0RM9MEwr;Ew41Ph<  h   hC  h       =    uQQhM  ^  ERRp0ha  h   hM  h   ]1ҋ}ԃ M9ڋ7wr9w4 
ǅ     w1N9wr9w4(
ǅ(    PP( h  h   hU  h   uЃ ǅ$    ǅ    ǅ    E9  E1ҋ~M9wr9w481~1O;wr9w411҈pt@	uWSpPƅx h  h   hf  h    9s*PPWSh  h   hk  h   h    UFǅ    M9wFr9w@F1H;r,w9v"h  h   hv  h   Pjh    V   $ tQQh#  -  ~ m  ~ c  [  S  9 G  9(u$hJ  h   h  h   $[  (   hj  h   h  h   j(VHP()PH$v$h  h   h  h   vh  h   h  h   vh  h   h  h   F$    t!h  h   h  h     tu%h  h   h  h   XZh    t$~ t<h2  h   h  h   E9FsPhY  }  9FrFt6WWSPh|  h   h  h   0vFPSFV9s;Q)QQRh  h   h  h   VF)Pj RpPh  h   h  h    (.} w$}wh  h   h  h     Eԃx G  $ :  E EEfx/  4@4    X0$1;Hwr; w0<1$1H;wr; w041PPVWh  h   hs  h    u	t	  tWWh"     4(E,U)(,,(	8  0 ǅ$    GE;XwN;Gw];0rU1ҋ?;sW4tY9r_$9   _uS$h?  jPPh     V$hb  w; vS$h  ċf%  ff
w7$    (f.($(,HR$h  ]& u	QQh  2t	RPh  5    uVPPh1   j5    hS  h   h  h   D    PP0   Pj8VpS4UF EV(F$   F   F   Ptut
P1   FVuPPh  j7h   h   h  h   _X5    5       $h9  h   h  h   j8SVXDP0   (      ho  h   h  h   ZYvvh  h   h  h   WSh  h   h  h   ( h  h   h  h    4X4    e[^_]Uj h  j h  h
       E0   U5     .reloc          P]`F C=݋#        
  
  
  
  
  
    unknown error out of resources cannot load image no loaded image available filename expected not a valid root device invalid EFI file path premature end of file %s Failed to allocate %u pages
 chain loader/efi/chainloader.c out of memory MACHO binaries are forbidden with Secure Boot no compatible arch found linuxefi_secure_validate: %d
 no shim lock protocol context success
 context error unsupported context error invalid parameter context error code Failed to read header
 Secure Boot is not enabled
 Header read without error
 image size is %08lx, datasize is %08x
 entry_point: %p
 invalid entry point reloc_dir: %p reloc_size: 0x%08x
 reloc_base: %p reloc_base_end: %p
 Section %d "%s" at %p..%p
  base is %p but end is %p... bad.
 Image has invalid negative size  section contains entry point
 Image has multiple relocation sections  section is relocation section
  section is (overlong) relocation section
  Section characteristics are %08x
  Section virtual size: %08x
  Section raw_data size: %08x
  Discarding section
  section is invalid
 Invalid section size  UNINITIALIZED_DATA section has data?
 Section %d is inside image headers  copying 0x%08x bytes to %p
  padding with 0x%08x bytes at %p
  finished section %s
 image has no relocation entry
 relocate_coff(): reloc_base %p reloc_base_end %p
 Reloc table overflows binary Reloc %d block size %d is invalid
 Reloc entry %d overflows binary Reloc %d Invalid fixupbase Reloc %d unknown relocation type %d entry point is not within sections %d sections contain entry point no matching file path found booting via entry point
 entry_point returned %ld
 error_exit: grub_errno: %d
  section is not reloc section?
  rds: 0x%08x, vs: %08x
  base: %p end: %p
  reloc_base: %p reloc_base_end: %p
 relocation failed Load another boot loader. chainloader   LICENSE=GPLv3+      net linuxefi efinet boot chain                                                                             ]  0                                                        	              
               )              ?              X              e              r                                                                                                                
                           ;             P             h                                                                                                                                               $             2             K             b             {                           grub_mod_init grub_mod_fini grub_strlen grub_efi_system_table grub_efi_locate_protocol grub_strrchr grub_memmove grub_device_open grub_file_get_device_name grub_efinet_get_device_handle grub_loader_unset grub_dl_ref grub_efi_get_loaded_image grub_errno grub_memset grub_efi_image_handle grub_register_command_prio grub_efi_secure_boot grub_unregister_command grub_efidisk_get_device_handle grub_file_read grub_strchr grub_malloc grub_file_close grub_file_open grub_real_dprintf grub_device_close grub_linuxefi_secure_validate grub_error grub_free grub_dl_unref grub_net_resolve_address grub_net_route_address grub_efi_get_device_path grub_memcmp grub_loader_set                 #     )     3     8   &  ?     D   &  K     Q     [     e     n   '                              &          &                         '       	    4    S  %  [  &  d    k  %                                                    %          )          %                  #    0    :    D    W    i    r                      !            &  1    O  (  s  )                    *                %  +    :    D    T    _    ~                                     
      "      $    +    6    ?    G    b    u                  %                $                "  	     	    	    4	     >	    C	    H	  ,  ]	     f	  #  t	  #  	     	    	  &  	    	    	    	    	  &  	    	  '  	    	    
    
    (
    A
    M
    R
    \
    a
  "  
    
    
    
  "  
    
    
    
  %  
    
    
    
          "          $    )  "  F    K    U    ]  "                            "                  '    ,  "                "  Z    _    i    n  "  ~              "                  	  "        +  5    w    |          "                "                    "           *    /  "  :    ?    I    N  "  `    e    o    t  "                "                    "                    "  )    D    I    S    X  "  n                  "                "  w    |          "      t    {  %                      3    G    R    W    g    n  %  z                  "                      +    7    <    F    K  "  S    Y    _    g    l    v    {  "                        "                "              	  "      "    ,    1  "  L    Q    f    m    r    w                          $     (     ,     0     4     8     <     @     D     H      .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                       	   @       "  (
              )               L                  %   	   @        -  X               1      2       $                  @             :                     F             <                    V             P  4                  [              P                    d              i                                  p                	              @                                  X-  m                          boot/grub/i386-efi/gcry_cast5.mod                                                                   0000600 0001750 0001750 00000040420 13417732100 0015424 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      >      4     (   UWVSMH4   34   X3034   34   34    2X}3    3   3    3   3   ZH
u   3H3   3    3   3   ˉۋ   J]XE   3X3   ͋E3    3   M1ÉZ]   3   3    3   1ErZ    3   3   3   3   Hz   
3   3   3    J
3   X:J    3   3    3   3   XJى   3   23Z3   ͉E3   3    
<   E3    }Ή34   34    1}34   wJ؉   3J3   3    3   3   O   3Z3   3    3   }3   M3   3   މXE3   ۋu3    HN>ى    3   E3   3   u3   X~N   3   u63   3   3    X}O_4    34   34    ɋ}34   34   pOى   3   w33   ͉3   3    O<   E3    }Ή34   34    1}34   rO
؉   3O3   3    3   3   J_E   3_3   3    }3   3   M3   Z3   3   3    H J:ى    3   E3   3   3   X$zJ   3   3   
3    3   X(rJB    3   ܉E3   3   3    H,JE4   34   3r34   34   34    0ȉω}3    3   E3    3   3   XJu   3J3   3    3   3   ۉH4      3Z3   U3    3   M1ZU   3   3    }3   E1W0PHE    3   3   3   3   _4X   3   p3   3   3    W8EPڋ    3   3   3   3    G<[^_]UMWEVSQqx<	Q	Q	Q	qI		HOǉ4   34   +4   HN4   x81)ǉ      3   HM+   x411ǉ      +   HL3   x01ǉ4   34   +4   HK4   x,1)ǉ      3   HJ+   x(11ǉ      +   HI3   x$1ǉ4   34   +4   HH4   x 1)ǉ      3   HG+   x11ǉ      +   HF3   x1ǉ4   34   +4   HE4   x1)ǉ      3   HD+   x11ǉ      +   HC3   x1ǉ4   34   +4   HB4   x1)ǉ      3   HA+   x11ǉ      +   H@3   10Ɖ   3   +      u1؉NFFFNFVE$   [^_]UMWEVS1QY8	Q	Q	Q	YI		H@ǉ   3   +   HA   1p1Ɖ3   ׉      HB+   p1)Ɖ      3   HC+   1ڋXÉ4   34   +4   4   HD1x1ǉ      +   HE3   x1)ǉ      3   HF+   x1ǉ4   34   +4   HG4   x11ǉ      +   HH3   x 1)ǉ      3   HI+   x$1ǉ4   34   +4   HJ4   x(11ǉ      +   HK3   x,1)ǉ      3   HL+   x01ǉ4   34   +4   HM4   x411ǉ      +   HN3   x81)ǉ      3   HO+   1p<Ɖ   3   +      1؋]KCCCKCSE$   [^_]UWVSlU=    u              =          }   ]Ju	J	J	JEB	J	J	J	EB	J	J
	JEB	JR	ȉ	ЉEE1}@u}ى1MT@@uPjj Wjj Vj@j S1j|e[^_]UE    ]Uh     0ݻ맕d5w $,ϩ/
tцB*v:-7ޚ,
)p@	:$7ѴyN]h1HZ޻Bf1畏?r3uQB}\cmd!@
WS1zݨ]3CoFq"8ԚέiGb[UgfNG[oLĎnrWxzdD]Ջ` l_9 ]c2֋~pIPӻߘ)*mS~H~X.t;/RG'~[!<8zvOB9`55'{ɸ6g	{pqT3^-ZId,=4pBwbO&Ҹ$d%FN`7>͕xE_{۫v"{.1ן%$r_m
L=mPO%os#(ĴyI%4aĘnzn|l6AT޾'VAJ<mgB`u{ $;g9?T0q;Bd2̤E}JpB
}z[WZ?ՌM (ԤΤ0y43S;w7x泀hN~Ţ|9O*C}/6"+7$Wx4oagH^RA^e$.@{脠X[ݔVH۲8rWs1d[O~/<PodJ#uwz!![zM:&)Q|ceY{nr 0@wm aJF[`d힨"Π6砹dU	27-WQ+	liEzH:OvL+wVg58Y9B{6=	a>J{`,8I%vK$%GvXY f
0NndQ&#Phꃢ@g+3-fVo*ɛ`( ')dM P˲,\26K_A!PNhذy\CPIMAC8<?fϾ `&euz$dHfÆ`(m5w鲳5*kiHuM:{NgC_7IfB3ATЈl:)(G7%G+jz\7DbB
ngtr9ѱE7XXVþ0n$!)E1^ŎF8JXFNPF_C)x;$mN,dJTO 팦xoɚnn<VU;6]򡳅<a3bt(L<tmlŪy<QZ&)+/8OxW2{>wn\e0Rԋ@+>`xT7}02m-yyS"wuXȃoxkcZ\3 ]ùzv٣Byqj3ƚ`'PC=+mvN%ύHf6AN(
aϩI=߹_d:	}+p?PO+Zbbyj.H@,Z@"ғ-ES4n)olIIBr~V>olbfLTq*+9)XLVRf.S9v.i硦>iFt+LVvuOx39]O#2]2=&K/~~<O^?vf)o=E4ӷ+4grN=U"g`k8=ü0}8QcÐӝXyTGָaYwSW-XVcNx.F~eyUڑ0@5㶼P?!@=LXI6QpӱڍyKoqKl,gHL|3ەCh\SU2`	ߝWc9^28aI37~^b<#NygCHKJf-ۄoH	Ja )Yfc(`<x.2r ~AkӾt<-7HDL@Եm9ISgN=\Adjc,}sobۚ5L\SfL(#S4!:;KC9n͐m"@	~^|["/iTho):SU6%b."Ho%e۽Soxgc5+4tI}ș䍠uy&ZO(34xmE_%";ɾV-bO^W
"nҕ[N$]B'n{ܨEs/##5&攰33~t+7s%iHةb:8⇧vSH6tc ivEP*Y#56nLΤ}-l]ū/!	߉x_3ODFu+չHAܛ	Ȇ}s3 ABQ	jr v (g2u[[ SX
"rJ<f1Ɉb`zGRȶ<vi?RNM1dp8YTf	!0Qh[l/>0qt&@3/C~A^l(	ؒ0~ofos*`ژ46K-%#=%IH 6Jo 8C@TzWOpA:ZTU|5YŗZ:G:%Sj~=eI&TwQ[P]vlDȨ!帊iX`[ŗY)L;]J5ULkD$5鰽bעT/I18T(q)9H[/u~tn,fy3jXDD1  Zs"*ˁc8:$zi HIĀ@8HުL
H_%A@N$A
UeQr%
9jyMc@hV틕Z	Vqק)N-fc qw*75Wa"ɠBր[t!h!<S(= \8N$O/viOǐtU¢'-cBj ef	UU)su2hUGR<D6&t:+سIt~-dڱIh&B¥7gcPfG6ʎn7z}c0މA)f&dVTXTH˺UI0е[Z.ׇnjf:"+G>hl iwW~@PճMװx
QV$AVʔUWnྵa$
XK'aU{whkldMDfd~i/IO70j5,s@IvM;B(HDLns)	_ɋ}oaOw.+rץ<}+FYYEEهTNoHm|	ǥcs_DVj͈prͳ]ny` E`1©\1BN"r\,rN@%/N2g@#x\n܃"ukMxnXO	DH?{vw#Vu*F_(	+8=6JRft;QZylu eX&hJpFS(l\v0k)h76*g$ k%ֿh,DUueI40"	WIbuU~bڨv^FESGm {s{OJWdCQz(~c5_	 yCdcdJ$_(͸O@ C "0O7 -{$MgQLq_-_d! S^>'_aB%rqK=;&o ~~TLmDl߫I&Ǡ36~?Pa w8Pr.PwWFgO T3ɏ1 i5M\=fȦ[]oڑo/"F}F9mOCCN!и ?X(>nH&p׋wt|%
-	y#;(8itb߷@!{7 Ȋ@	YVvO@/{U MVi35'#WȯVeka^u˅nwU2?-ɿ[%;з$;mc fÀ(82
Tɪס2Zb,gTzuw11&o6FHjyZVLj~CRv/t,t* M|k	.TA5B=!&|,aRe1i% &!\1cr
^Iyp1d>>̶Ոî0rlqn/kءDVÈ9/ű1(x⤣2}o~X $Ū{ s0a !-!)۳*)e\,0?Б\,ԩT
_w:^VxV޾\!uQųåҶw#)Ei/z毲p[vF98/gs D)k)/Ifingӛ/~p%Q^$Slj>!DYܷ)eyCy9A+MWN)zkS< ~U3rŅ?~
@]%=`GK6DήPQH<p}}d^(O= &g.yr?U+HԼ?^![U@WNFRWs3NɷdW1O	g_?@k{C=K۵cUȗn-J(JqoCCl<	_P/~׿PZG.Q>pX.0_|r
*,]I鎸P'WIoyR}}Yr@EEt]>uOiVA#.'`vteyvvwHNma}/4H<0(OwVܒ M"7)}V'|@|硴f^aÝ <є`AFv\; x,WGl"}NC~8<=Q8d{h'فI]j~vh]9K9;#Im<Eub'z\aBΒ~Brrp}ȡ[(Ob<51)BSjO[}m(Ki\j#MŌ?,-ҖXRg[HJI\EkӉ7`: SRqDIK
@sg4|~q6UO/Т`?mPьGn U?墼38Wg} =3{r3O̫]ňv { {u WBdBc+ri/n+_mazgaq%9̸L!gуb>ܷν8\
=Dmn`I:T`H'W+8$ ږ%Eh;}E`P/(b4 ٠m+1+d Z0RXBA\1>26F3S75 [~iC?9zaz UQry吝5rNcZպ60ę_}֡{/6Y	 DYD̃Aѱ*	;{B[A%zzӤ0XޘN?wiy{$[ Ĭ%5P_aT1bcKU!h]Yfsc=4·~!+g\ab906;Wd/`:5F-'zy㠌l0^7%oo;j tE'4:NiOM> dY58EfCr3c%N?
(Υ'R¦սTUdpfMw&ۄgC!`X0TroSUGڿ]bVhkʃ;n-Ӧ\=	wL3{9+^S_aodC x^c"&gI{ڷ"%-U^7rRyLH[k0cq/޹SE!5(T<)c)A|-nRPf4,0P1`sY&D\dwR3A+ٺ|o!PaH?ek«dv&4{^% ;MM1$~I,;jx`]sVz\/1Co0TyXR^/2zj0>՚1B°I#ڸ(0q_`ɣaM/Ǚ."płNؼ40y;'ƸaiH ?;(ZC/v7ܱӧßn>ƼB7Q(heRwj-K'5.n\	)^XOX{iT̨g&H`K`8#~8lI
`s5GƱVL>#8d^BFzk
Od^AE#\;]>rC|m~ll9`qpsv#E@0/kz%?/?!M @`Iɟ'Կ@uИcnaf"o;h(Yy#P_w@CV/|-ҢɡHl4ma/T"2*kT:V"AӢ@f/9/M ҹ-?JDvR7,YQoz	Zh{.T"5Y/mKdPIf-徐"3;䎴]4K@E?1.eUʱծ-mԢP@"8On׿r[O/LVSTIiFXEŅc]ՊSW9j7=T*_}x:vbj Bz)^'rgP8ƌǄZ*'JkѢ*V`Cu\B&Ʉq- ls<y7bTEd2?w΢Y. xP	?_2?8ciZvtՂ8\Ê5БGAAb61;W]J T<*2 dW+7uAӯPu2ZTk&+L͜DeŅU$Ԫ?-M %ȳUꘞղ1l*)C(EiqQkx?Q"QD*AZ{|A2ôh"
`m~8lkxpj9cd6G(ZGuQ5Ojϋ
Jſ

W9/D?Sa.z9y'WA뜍֬|*u	e[@ywDGt2$ݽT~D$uU7'|M_QuVX,7۪J>5&5	M{n0f&%HVV^cϲc|EpPr(pH#yM;-ABG&LjMG\^|Y#јr8S#/nqFnEV 9q +A|iCHy}B{BIZ ݿe\CAST5                     P   |    ^              LICENSE=GPLv3+  crypto gcry_cast5                                                                                                                                        	              
        0     5              L              ]              r               grub_mod_init grub_mod_fini _gcry_cipher_spec_cast5 grub_cipher_unregister _gcry_burn_stack grub_cipher_register memset         !     .     @     G     ^     j     y                                                              (    /    6    =    Y    c    j    y                                            
        &    5    L    S    a    s                                                    #    -    4    I    V    j    y                                        
        $    +    @    G    T    h    o    ~                                            $    3    =    D    N    X    j    q                                                     5    <    C    [    b    q                                                    &    7    G    Q    X    j    q    x                                            
    $    .    A    H    O                    	    		    	    %	    ?	    F	    U	    e	    	    	    	    	    	    	    	    	    	    
    
    %
    B
    I
    U
    e
    
    
    
    
    
    
    
    
        	        %    B    I    U    e                                        	        %    ?    F    U    e                        Q    X    d    t                                            '    .    L    S    b    r                                            "    2    O    V    b    r                                            "    2    O    V    b    r                                            "    .    x                                                                           .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                       	   @        5  P	              %             (                     -      2       (3                   @             03  0                  <   	   @       P>                  F             `3                    V             p3                    [              p3                    d              w3                                  3                 	              4  y                                p>  m                                                                                                                                                                                                                                                                  boot/grub/i386-efi/cmdline_cat_test.mod                                                             0000600 0001750 0001750 00000006014 13417732100 0016663 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      	      4     (   US]hp   ]Ep   UWVSxh    $              WWh   0   SS    h    h    P    s}h    S   EZYjP$Q   ujL  uh    >h]   NVh    h   h6   jYh\   h8   j  e[^_]Uh)   he   Uhe      c   a   t       (   p   r   o   c   )   /   t   e   s   t   .   t   x   t   
              cmdline_cat_test    从硬盘的第一主分区启动
The quick brown fox jumped over the lazy dog.
Unicode test: happy☺ £ 5.00 ¡τäu!  ℤ⊆ℝ
HelloHelloHello
 gfxterm Unknown Regular 16 unicode font not found: %s 0 tests/cmdline_cat_test.c cmdline_cat unicode cmdline_cat_test test.txt          v       LICENSE=GPLv3+ font functional_test normal procfs video_fb cmdline_cat_test                                                              V          p                                                              	              
               )              ?              P              \                                                                                                                                           *             A             W             c             v                                                                                                       grub_mod_init grub_mod_fini grub_strlen grub_test_use_gfxterm grub_cmdline_run grub_errmsg grub_terminal_input_fake_sequence_end grub_procfs_entries grub_dl_load grub_strdup grub_font_load grub_video_checksum_end grub_font_get grub_errno grub_terminal_input_fake_sequence grub_video_capture_start grub_video_capture_end grub_test_video_modes grub_strcmp grub_test_register test_txt grub_test_use_gfxterm_end grub_test_unregister grub_list_remove grub_video_fbstd_colors grub_video_checksum grub_list_push grub_test_assert_helper                  %     3     8     ?     E     N     `     g     y     ~             #          !                    "                                                      *    /    4    ;    @    G  $  ]    b    g    w    |               .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                       	   @         X              %                                -      2                          @             D                    <   	   @       \	                 F             T                    V             c                     [              c  ,                  d                                                  P              	                                               l	  m                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/i386-efi/hfsplus.mod                                                                      0000600 0001750 0001750 00000017260 13417732100 0015053 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UWV1SSI   z}f:t^ $  wE   
3 $  X?ˀXӃ?ʀ?ˀXP ?@U1ww@  w?ʀXPK (  v; $  w ?@)ڃP??ˀʀXPދU	Z[^_]UEMP   ;w]USEX@  X  $Z5    1]UWVS uj]j }WE؀}   E    	Ћ   
MU܋U4$	ЈEsWue[^_]UɉSX)f[]ɍ
U   S]MS;w"rQ8SwrS;Qw[]U   VuS]V;w<r7fFSQ9vPsFPufF+Ce[^]UWVS]}COf;   t
     ʃtff tf t6f     fF*%   =     =         h   tWǀ       ǀ       ǀ       V򉐔   wPjh    WG  fTCf/  fTCf|C *  @9|ًESE  fC19`  G    uM   h   G ǃ       ǃ       ǃ       Pj@FhPCPj@   PCDPF-%|   FXV\򉃈                  Fu   wSuVWVw1sE   E   E   fC   PEtfK1fDC: nf|C:ufDC/ fDC@}e[^_]UU      	Q      h  u uuuuuR   UWVSh  h       PPh   j j j jW =       fBDǆ      ǆ      t fXH   f+H   fdH+tPPh   j	b  fff1f		1Ӊ     PPh   j j SQW =     7  OPD=  2Ph   PVF(ǆ           9s	A  鉶  ǆ     ǆ      Pj@   P  P      ǆ         p  j@P  P`  d  ǆ$        ǆ`     ǆh             j@P  P      T    P  Wj*j jj j P 3      1fXHu1    PWj*j jj j S      QPjj j j j S          RWj*j jj j P          ǆ      ǆ      $    <  ǆ     (=    uPPh   j	V1e[^_]UEVuS5    u    Pꀰ%|5    $    e[^]UWVSEu5    .t,Ph@lPSQh       5    <$    e[^_]UWVS(5    E    E@    RRjh7  h  <  EPVu =     uc    uKE-   U      r4Ɖz8  PEX@@    @    1?uЃtE9tPSX5        e[^_]UWVSE=    u]P@    t   tVSppQRVSpppHpDQ e[^_]UVuS   @Pt7PS   j j j j V ;   tS 1e[^]UWVSLEu}EEEEEFu      Pá      1҉UE    E    EEȍFỦEE9EuE9EuSE!   zEЋUԃ#E#U	uEUEȉŰFMRSEPU eRPj j u ~E    E    E    MSE1   E	   e[^_]9Es1M؉ډ	{t;{ t_EU fC
} vʃ}     SkQQuEPEЃUuE؋}U܉WAPPEuURЃUfE    E   DE`1e[^_]UWVSLuEUE        EFUtFDUM׉M]1҉}]ċH1ۆ} w&9Ms! UE    EEEU()M]BuEUEEǉUu}E       }      uPPhF   j   E܋E)    E؈EEPEPh  EP  P uU̅u uu   hu   j M  uEUe[^_]UWVS<Eu     u     EPEPh  EPSE   E    E     uU̅uVqMЉ1LfHǆ9}fD_ffD_tMC   PMUMąu    #W  u4$1e[^_]UWVShE]h   EEE    ]܉Eu
     ǹ-   uPjh   Uuԋ   E    E    E̍EPEPh;  EP  P 1  EE#  E11UEE  E  UEEEf@
} w49Es/UMEMRRQP   EU 뺋E   	t} u;MuSSh!   j	iUUE!!	u
ME    ʋ   QuPRPj j u ~E    E     uu؃e[^_]UVSE5    E    EEEE tUQQjh7  h  <  EPVu =     uERPhe  uE9tPSX5        e[^]Uh    h    E    Uh    .. not a HFS+ filesystem %016llx HFS+ btree loop couldn't read i-node extra extents found in an extend overflow file no block found for the file id 0x%x and the block offset 0x%x . hfsplus               
    &    U
  	  LICENSE=GPLv3+  fshelp hfsplus                                                                               "                                                        	          7              M              \              i                                                                      T  R                                                             	                          $             2          O             ^              grub_mod_init grub_mod_fini grub_hfsplus_btree_search grub_fshelp_find_file grub_xasprintf grub_memmove grub_hfsplus_read_compressed grub_disk_read grub_dl_ref grub_errno grub_memset grub_hfsplus_read_file grub_fshelp_read_file grub_fs_list grub_malloc grub_error grub_list_remove grub_free grub_dl_unref grub_hfsplus_open_compressed grub_list_push grub_memcmp   :    F    N    U    Z    }        y    4    {        1    F                                I    P            #            <    |        	    [	    h	    	    	    	    	     
    
    8
    =
    E
    J
    h
    m
    
    
    
    
    
    
    
    
            (    1    9    m                            (    K    j    ~            %    /    z                    6    f    m          
               M    l  
                  /    V          
  P    W                    "    '    :    C    P    k    w    ~                                                                        $      .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                       	   @       P    
            %      2                          8               (                  4   	   @          @   
            >                                 N                                 S                                  \                                                       
         	                j                               @  e                                                                                                                                                                                                                                                                                                                                                                  boot/grub/i386-efi/cmp.mod                                                                          0000600 0001750 0001750 00000003754 13417732100 0014151 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      4      4     (  
 UWVS,u}tE    E   e[^_]Pv6h   X6EXvE  }    E]P8K4[8@49u9tWvSQ6RPh5       h   $         E    E    Ph   Wuh   SuE9Eu_1;E}18t"vQ6REURPha    *@ʁE   U } uh   11W$EtPEtP    e[^_]Uj h   h   h    h        U5    two arguments expected Compare file `%s' with `%s':
 Files differ in size: %llu [%s], %llu [%s]
 Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 The files are identical.
 Compare two files. FILE1 FILE2 cmp  LICENSE=GPLv3+  cmp                                                                +                                                                       (              C              [              j              v                                                                       grub_mod_init grub_mod_fini grub_errno grub_register_command_prio grub_unregister_command grub_file_read grub_malloc grub_file_close grub_file_open grub_error grub_free grub_printf_       (     3     8     @     L                                   .    3    T    Y    k    s              	                    
               .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .modname                                                      4                       	   @                        %      2       "                   4                                  :                                 J                                 O                                                  0  	   	         	              <                                    X                                      boot/grub/i386-efi/hfspluscomp.mod                                                                  0000600 0001750 0001750 00000006144 13417732100 0015731 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      \
      4     (   U"   WV    SL]}1           E   EEƉEEPEPh  EP  P uEu        5  M  Ƀ)f<fǀ3uW<W8uP  @fpmck  WHǃ          ODG  ǃ      EQPjj h  j j S t$ǃ       u           E   P   uǃ       u   RP   Pj h  j j S        9t3ǃ       u_              ǃ   h      ^1u       ǃ          5       tPR   tIW<PQQ   Pj j RW ;   t"=     uPPh    j5    ǃ      1e[^_]U   VuS]V;w<r7fFSQ9vPsFPufF+Ce[^]UWVS<uEU   E؉UtE1E   EWu   Pu    t   tRuj j j Ѓ E  M؋]E   ȉE)EE9EMvEM9   uD]PES   Pu    %  ]1]]U)]} u,     DEuh     S]WUS   1R  Pj j V 9      M؋]܋   EȉȋM%]ĉŰ]̉E+M]ă w  wUEȁ)Љ   QQR   Uj j uWUȃ 9t(=     uRRh    jWBEԉ      RSj j j Ѓ WEe[^_]U            %  ]U                ]   c o m . a p p l e . d e c m p f spremature end of compressed   LICENSE=GPLv3+ gzio hfsplus hfspluscomp                                                              \          u                                                                            	               5              O              \              y                                                                                                                 grub_mod_init grub_mod_fini grub_file_progress_hook grub_hfsplus_btree_search grub_memmove grub_hfsplus_read_compressed grub_errno grub_hfsplus_read_file grub_malloc grub_error grub_free grub_hfsplus_open_compressed grub_zlib_decompress grub_memcmp        Q     b     v              +    1    O                            %    +    A    L    }                        e    j            .    `                        E    a    e    k    o    z         .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                       	   @         X  
            %               "                  -      2                          <                                  B                                 R                                  W                                  `                                                 ,  p              	                                                	  i                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/http.mod                                                                         0000600 0001750 0001750 00000014074 13417732100 0014346 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      4      4     (   UEP@@@xw$x( u@,    tBtP1USQEX@t<CtRRjPtPs$1]UVSÃju    /p     @    X; tSC@CC1e[^]UQRPUWVS8p@E܋@MԉUЋ@@vωME<$   $á      QQh   S{XZjS          _{vYZPS   vV&{XZjS         {uZYPSuYE܃@@0M܋QR} tuh   js{PPjStSEE~        ^} u.{uuh;   j'WWZYPS{PPjS   R   MɉuP   WPuvhU   h}   h  h    P   } tEQQuj hM  h  Pu FuS       RjSPue~+PPjvsKtPPWh,  ~ t=PPjvFt+^ QSh   P$FF     1Rvh   je[^_]UWVSuUMF@E@tURRjPMU؃M܋E@    F@Xt`sU؉MFU؋M܋@@XKxux8Xux_PU؉MU؋M@,    FU؉M܋@PH j0U؋M܉á       EC   @CuS    F@    RuU؉MU؉M܉^@$    1ts$F@    e[^_]UVuSj0á    tsF4F8uCuS    =1F<    1ɉ^@j1ts$e[^]UVSHAQ qt^6K+K[^]UWVSӃEM9w  S,u*xuHt(U9   {$ C     C,     P*   jj u=   C(          u4G@@(   G@@,   8u4uGG4W8C,    9  {    Wj	h   Rt%h       $C   C    EUVj
R	PE5       =   t[=  t+=   tMUC)   h   U    UR{C   h       ZYWPC lC   aQjh   Ru.{ u(ERj
URPEG4W8C   Pjh  uuC$   1e[^_]UVS]s@FtRRjPF    tP    C@@(   C@@,   {8u{4uCSC4S8e[^]UWVSEuX@{   { Vt
{,       NUM9s:
tB11tz}   RRU+USRPt]MVC)E+FCC   PEY3    C       U%VXZjs      WF9sO{ uC)Љ׍9rFPUUtN)щKV1  {, u)ЅO߀?
tG뮅t)ЉPEtEPPjs4$E4  WW+VRVtQQjs4$  {$ tC(V+V9|`E@@E@@xv@,   E@@xcvs1{$    V+VS(   t~PtRRs(Pt    _K(VGE@@xv@,   sE@@	PPs(VC,   ?e[^_]Uh    h    Uh    GET   HTTP/1.1
Host:  :%d 
User-Agent: GRUB 2.02~beta2
 Range: bytes=%llu-

 
 opening path %s on host %s TCP port %d
 http net/http.c %s time out opening `%s' HTTP/1.1  unsupported HTTP response file `%s' not found unsupported HTTP error %d: %s Content-Length:  Transfer-Encoding: chunked           }       r     @       LICENSE=GPLv3+ net http                                                                                                                                      	               )              ;              I              \              k              x                                                                                                                                                       0             B             M             ^             h             }                                                                                                                      grub_mod_init grub_mod_fini grub_strlen grub_netbuff_free grub_strtoull grub_net_tcp_close grub_xasprintf grub_realloc grub_memmove grub_strdup grub_snprintf grub_net_send_tcp_packet grub_net_app_level_list grub_errno grub_net_tcp_retransmit grub_netbuff_alloc grub_zalloc grub_malloc grub_netbuff_pull grub_real_dprintf grub_error grub_list_remove grub_free grub_net_tcp_unstall grub_net_tcp_open grub_net_poll_cards grub_list_push grub_netbuff_put grub_gettext grub_memcmp grub_netbuff_reserve grub_strtoul grub_net_tcp_stall    5     \     n     |                         %  
  /  
  >    H    ]  &  j  #        
    #    
    #        
    #    
  >    H    X  #  k                  
    #    #                      )    .    7     J    O    ^    z          !                          +    \                        %    R    Z                                  '            %  +    1  $  9    ^  '  d          $        $            %      '    /  %  e    ~    7	    ~	    	    	    	    	    
    X
    `
    w
    
    
    
  (      2  #  >    o  (                "                                    .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                       	   @           
            %      2         (                8             8                     4   	   @         (   
            >             X                    N             g                     S              g                    \              k                                  p       
         	                                                  e                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/i386-efi/gcry_des.mod                                                                     0000600 0001750 0001750 00000045674 13417732100 0015200 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      I      4     (   UWVSUPXE    	P	P	P	X@		1ˁ11Ӊ1%11ÉȉP   ȃP   P   4P   	4P   	4P   	4P   P   			Љ%         4   		4   	4   	4      			ʁ}       )߉ى}M	%	׉ÉƁ
щ]]   $M      		Ɓ   	ˉƁ  	ˉƁ   		ˉƁ    	ˉƁ   	ˋM
   	ˍ       	ˉց   	ˉց    	ˉց   	ˉց   	ˉց   	ˋM   	ˉփ 
	ˉփ	ˋM	ˉ	   փ	ˉu܃	ˋMΉ   M    	ً]	   	ىǁ   	ىǁ   	ٍ    	ىǁ    	ىǁ   	ٍ       	ى}   	ف   	ׁ   	ىׁ    	ىׁ   	ً]	  	ىׁ   	ىׁ   	ى} 	ً]E	ٍ    	ى	ك}LN[^_]UWVS} trz	r	r	r	zR		։111ډ111։13333    111  111㪪11ދU1Ӊڋ]U?   3X߃?3  }1?3  ?3  }?3  ?3  ?3  ?p3  1։?3<   ?3  ??3  3  3p?3  ?3  ??3  3  p1މ?3   ?3  ?3  ?3  3p?3  ?3  ??3  3  p1։?3   ?3  ??3  3  3p?3  ?3  ??3  3  p 1މ?3   ?3  ??3  3  3p$?3  ?3  ??3  3  p(1։?3   ?3  ??3  3  3p,?3  ?3  ??3  3  p01މ?3   ?3  ?3  ?3  3p4?3  ?3  ??3  3  p81։?3   ?3  ??3  3  3p<?3  ?3  ??3  3  p@1މ?3   ?3  ??3  3  3pD?3  ?3  ??3  3  pH1։?3   ?3  ??3  3  3pL?3  ?3  ??3  3  pP1މ?3   ?3  ??3  3  3pT?3  ?3  ??3  3  pX1։?3   ?3  ??3  3  3p\?3  ?3  ??3  3  p`1މ?3   ?3  ??3  3  3pd?3  ?3  ?3  ?3  ph1։?3   ?3  ??3  3  3pl?3  ?3  ??3  3  pp1މ?3   ?3  ??3  3  3pt?3  ?3  ??3  3  px1։?3   ?3  ??3  3  3p|?3  ?3  ??3  3  ˉ1%11ʉ1%  11։1%33331Í    1111މ1%11YÈAAAA1YQZY[^_]UWVS} t  
Zr}	Z	Z	Z	rR		Ӊ1ځ11ʉ111։13333    11ً1  111᪪11Ή13HUڃ?ϋ   ?3  1?3  ??3  3  u?3  ??3  3  H1щ˃?34   ?3  ??3  3  3H΃?3  ?3  ?3  ?p3  1މ?3   щ?3  ?3  ?3P3  փ?3  ?3  ??3  3  P1ʉփ?3   ?3  ??3  3  3Pփ?3  ?3  ??3  3  P 1ډփ?3   ?3  ??3  3  3P$փ?3  ?3  ??3  3  P(1ʉփ?3   ?3  ??3  3  3P,փ?3  ?3  ??3  3  P01ډփ?3   ?3  ?3  ?3  3P4փ?3  ?3  ??3  3  P81ʉփ?3   ?3  ??3  3  3P<փ?3  ?3  ??3  3  P@1ډփ?3   ?3  ??3  3  3PDփ?3  ?3  ??3  3  PH1ʉփ?3   ?3  ??3  3  3PLփ?3  ?3  ??3  3  PP1ډփ?3   ?3  ??3  3  3PTփ?3  ?3  ??3  3  PX1ʉփ?3   ?3  ??3  3  3P\փ?3  ?3  ??3  3  P`1ډփ?3   ?3  ??3  3  3Pdփ?3  ?3  ?3  ?3  Ph1ʉփ?3   ?3  ??3  3  3Plփ?3  ?3  ??3  3  Pp1ډփ?3   ?3  ??3  3  3Ptփ?3  ?3  ?3  ?px3  1Ήʉp|1։u   3   U1΃?u   ?3   1ډ?3  ?}3  ?3  u?3  ?3  ?3  }?3  ?3  ?3  ?3     ?3  ?3  ?3  ?3  1։?3   ˉ?3  ?3  3   ?3  ΃?3  ?3  ??3  3     1ى΃?3   ?3  ??3  3  3   ΃?3  ?3  ??3  3     1щ΃?3   ?3  ??3  3  3   ΃?3  ?3  ?3  ?   3  1މ?3   щ?3  ?3  3   ?3  փ?3  ?3  ?3  ?3     1ʉփ?3   ?3  ??3  3  3   փ?3  ?3  ??3  3     1ډփ?3   ?3  ??3  3  3   փ?3  ?3  ??3  3     1ʉփ?3   ?3  ??3  3  3   փ?3  ?3  ??3  3     1ډփ?3   ?3  ??3  3  3   փ?3  ?3  ?3  ?3     1ʉփ?3   ?3  ??3  3  3   փ?3  ?3  ??3  3     1ډփ?3   ?3  ??3  3  3   փ?3  ?3  ??3  3     1ʉփ?3   ?3  ??3  3  3   փ?3  ?3  ??3  3     1ډփ?3   ?3  ??3  3  3   փ?3  ?3  ??3  3     1ʉփ?3   ?3  ??3  3  3   փ?3  ?3  ??3  3     1ډփ?3   ?3  ??3  3  3   փ?3  ?3  ?3  ?   3  1Ήʉ   1։u   3  U1΃?u   ?3   1ډ?3  }??3  3  u?3  ?3  ?3  }?3  ?3  ?3  ?3  ?3  ?3  ?3  }?3    1Ӊރ?3   ?3  ??3  3  3  ރ?3  ?3  ??3  3    1ˉރ?3   ?3  ??3  3  3  ރ?3  ?3  ??3  3    1Ӊރ?3   ?3  ??3  3  3  ރ?3  ?3  ??3  3     1ˉރ?3   ?3  ??3  3  3$  ރ?3  ?3  ??3  3  (  1Ӊރ?3   ?3  ??3  3  3,  ރ?3  ?3  ??3  3  0  1ˉރ?3   ?3  ??3  3  34  ރ?3  ?3  ??3  3  8  1Ӊރ?3   ?3  ?3  ?3  3<  ރ?3  ?3  ??3  3  @  1ˉރ?3   ?3  ??3  3  3D  ރ?3  ?3  ??3  3  H  1Ӊރ?3   ?3  ??3  3  3L  ރ?3  ?3  ??3  3  P  1ˉރ?3   ?3  ??3  3  3T  ރ?3  ?3  ??3  3  X  1Ӊރ?3   ?3  ?3  ?3  3\  ރ?3  ?3  ??3  3  `  1ˉރ?3   ?3  ??3  3  3d  ރ?3  ?3  ??3  3  h  1Ӊރ?3   ?3  ??3  3  3l  ރ?3  ?3  ??3  3  p  1ˉރ?3   ?3  ??3  3  3t  ރ?3  ?3  ??3  3  x  1Ӊރ?3   ?3  ?3  ?3  3|  ؃?3  ?3  ??3  3  ɉ1%11ʉ1%  11Ӊ1%33331    1ډ111ˉ1%11؉OGGGG1OW[^_]UUMEj`ZE    UUMEj <ZE    UUMEj/ZE    UUMEj ZE    U1҉WVS,MB\
u?   17Pj݀   PQM tM~{s9~1e[^_]USP   ]}   =    u             =    t EUtSj@   NEj ؃1ɋPx          u롃j@1]U   WVS]}}  =    GEwu              =     t          ډ   E䍓   j ؃E   x  x    |    Qx  Q|   x     |  Mu`tj@   &uEuՃj@1e[^_]Uh    E    Uh    $                                                                     @       @   @ @      @    @   @    @     @    @    @  @  @          @ @    @    @        @   @    @   @   @    @       @     @@  @      @     @    @  @  @                                                                                                                                                                           @  @  @@   @    @@   @  @  @@   @     @  @      @       @ @   @   @@ @      @  @     @@  @@ @   @@  @@      @      @  @@ @@   @ @       @  @      @     @@  @@   @ @@  @@      @     @    @ @@  @   @ @       @@      @ @          B         @   @      @  B  B     @     @  @      @ B B    B  @       B       B       B         @    B @     @  B  @        B B     B B        @   B      @         @   @                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                3DES 1.2.840.113549.3.7 1.3.36.3.1.3.2.1 1.2.840.113549.1.12.1.3 DES            0           (  N'  *'                          )              A              @      '  '  &                                                                                                                                              LICENSE=GPLv3+  crypto gcry_des                                                                                          )           )  !                                	              
    P   0     3              J              [              b       0     ~               grub_mod_init grub_mod_fini _gcry_cipher_spec_des grub_cipher_unregister _gcry_burn_stack memcmp _gcry_cipher_spec_tripledes grub_cipher_register  ~                                                2    @    T    h    ~            #    5    I    X    j    y                                            #    2    A    N    b    q                                                (    =    D    X    g    |                                                -    :    N    ]    r    y                                    	    	    )	    0	    D	    S	    h	    o	    	    	    	    	    	    	    	    	    	    

    
    &
    :
    I
    ^
    e
    v
    
    
    
    
    
    
    
    
                 0    ?    Q    [    l    {                                            &    5    J    Q    b    q                            @    J    ^    s    z                                    	        (    6    G    V    k    w                                                .    =    R    Y    m    |                                            $    3    B    O    c    r                                        	        )    >    E    Y    h    }                                                4    ;    O    ^    s    z                                            *    1    E    T    f    p                                                 '    ;    J    \    i                                        #    2    A    V    e    t                                             #    8    ?    V    e    z                                            '    6    N    Z    i    x                                            )    >    E    \    k                                                +    @    G    ^    m    |                                    
        -    B    I    `    o                                                 /    D    K    b    q                                            "    1    F    M    d    s                                     %    4    F    R    a    p                                            )    0    D    S    h    o                                              +     2     F     U     j     q                                             	!    !    -!    4!    H!    W!    l!    s!    !    !    !    !    !    !    !    !    "    "    /"    6"    J"    Y"    n"    u"    "    "    "    "    "    "    "    "    #    #    1#    8#    L#    [#    p#    w#    #    #    #    #    #    #    #    #    $    $    3$    :$    N$    ]$    r$    y$    $    $    $    $    $    $    $    $    %     %    5%    <%    P%    _%    t%    {%    %    %    %    %    %    %    %    %    &    "&    7&    >&    '    &'    J'    n'    '    '    '    '    (    (    '(    E(    z(    (    (    (    (    )    )    )    )    )    )    )    )    )    )    )                               0     8     @     P     h     l     p      .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   *                    	   @       T7  h              %             8*                   -      2       2  E                 @             3                   <   	   @       H  `               F             5                    V             5                    [              5                    d              5  	                                5                	              6                                  I  m                                                                                      boot/grub/i386-efi/configfile.mod                                                                   0000600 0001750 0001750 00000004414 13417732100 0015471 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      ,      4     (   UWVSE}}tE    E   e[^_]H9e؃<cuUUЃ ؈Ett؃PPSj7} ttSe1[^_]Uj h   h,   h    h1   j h<   h,   h    ho      j hv   h,   h    h      j h   h,   h    h     j h<   h,   h    h+          U5   X5   Z5    Y5   X5   filename expected Load another config file. FILE configfile Load another config file without changing context. source Load another config file without changing context but take only menu entries. extract_entries_source Load another config file but take only menu entries. extract_entries_configfile .   LICENSE=GPLv3+  normal configfile                                                                           s  F                                                                           5              L              e              {                                                                       grub_mod_init grub_mod_fini grub_env_extractor_open grub_env_context_close grub_env_extractor_close grub_env_context_open grub_register_command_prio grub_unregister_command grub_normal_execute grub_error grub_cls        +     O     c     z   
                                                                                                )    .    3    8    =    B    L    Q    V    [    `    e    m    {                                         .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                       	   @       H    	            %      2         -                4                                  :                                 J             ,                    O              ,                    X              3                                  @  0  
   
         	              p                                    a                                                                                                                                                                                                                                                                      boot/grub/i386-efi/iorw.mod                                                                         0000600 0001750 0001750 00000005620 13417732100 0014344 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      `	      4     (   UWVSUu}BvE    E   e[^_]URj j 7j j wUEuPj j wF}@!<lt
<wt<buI0t	!	1ft
f!	ft	!	e1[^_]UVS]}tPPh   jxPEj j 0 @Hltwt1bufS: t!Ph-   j	uVYXVCpRRPh0   1e[^]U   PPh    h6   hR   j h   hW   h    h[   hR   j h   hx      h    h|   hR   j h   h      j h   h   h    h      j h   h   h    h      j h   h  h    h          UuM5   X5   Z5   Y5   X5   X5          v       #  J                             two arguments expected one argument expected %x 0x%x
 Read 8-bit value from PORT. PORT inb Read 16-bit value from PORT. inw Read 32-bit value from PORT. inl Write 8-bit VALUE to PORT. PORT VALUE [MASK] outb Write 16-bit VALUE to PORT. outw Write 32-bit VALUE to PORT. ADDR VALUE [MASK] outl Save read value into variable VARNAME. VARNAME   LICENSE=GPLv3+  extcmd iorw                                                                                      |  ^                                              	              
               +              B              ]              i              ~                                                                       grub_mod_init grub_mod_fini grub_snprintf grub_unregister_extcmd grub_register_command_prio grub_printf grub_efi_secure_boot grub_unregister_command grub_error grub_register_extcmd grub_env_set grub_strtoul      0     ?     P     n                   L    W    e    o    t                                                                                                         #    (    2    7    <    A    F    K    U    Z    _    d    i    n    v                                                                   .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                       	   @                       )               0                  %   	   @                        1      2       @  R                @                                  F                                 V                                 [                                  d                                                  P              	                                                   m                                                                                                                                  boot/grub/i386-efi/cpio.mod                                                                         0000600 0001750 0001750 00000005300 13417732100 0014311 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UE@    @    ]UEp@    UWVSEux@HDJ HHJ$uVHXO_SQj j 7 uB     e[^_]UVS]CS uE    e[^]@Pt6PVsssj j 3 tVC 1e[^]UVSÃ$uVjj j j j P u*Rjh   Vuj$tPPh   j	1e[^]UWVS]C ơ    t9Puh(   VtVs@FV C41S8e[^_]UEVS &á    t'uuuh(   SSe[^]UWVS@u]΋}FVFVSjRPj j 6    Pjh   Su3E1M	} NV t$EU	ЋUQQh   j	gEԃ} ]EtUCPu
       RPSFV RPj j 6 t7        F Fu9} u3u.Pjh1   7uE 77NC1ҋ^ FVσ FV}]EUĉFV1e[^_]Uh    h    Uh     q not a cpiofs filesystem invalid cpio archive TRAILER!!! cpiofs          <     k  .                           LICENSE=GPLv3+ archelp cpio                                                                                                                                      	               )              8              C              P              \              h              z                                                                                     grub_mod_init grub_mod_fini grub_strdup grub_disk_read grub_errno grub_fs_list grub_zalloc grub_malloc grub_archelp_open grub_error grub_list_remove grub_free grub_archelp_dir grub_list_push grub_memcmp #     (     i             
                     +    1    B    T    [                                    ?    R    X                            	    2    9    S                                                 (     ,     0      .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                       	   @         @  
            %      2          C                 8             D  4                  4   	   @         @   
            >             x                    N                                  S                                  \                                                  p     
         	                                                P  e                                                                                                                                                                                                                                                                                                                                                  boot/grub/i386-efi/iso9660.mod                                                                      0000600 0001750 0001750 00000021214 13417732100 0014500 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      \       4     (   U   WV    SÃ8f }}о   UfE±f-mf=    S1J   ύA-  ki1Ki30 HtEiQ uvǀQ S:Tv1ttf{ul1tfKMw[K;wS[<wJNiQ }i  k<f}¼vyf}§wE   18[^_]USEX@`  $X5    1]Ujh    u1҅uEǀT     UWVSӁ(     PA  19}fNfMA닕1   f>Fۉta $  wE   
 $  Z?ˀZ˃?ɀ?ˀZJ
?B1yw
@  wJ?ɀJM (  v= $  w?B+΃?ɀJ?ɀBJˋ 1e[^_]UWVS0]juj }WE؃}	ЈEC"UflfEЊC#EҊC$EӊC%EԊC&EՊC'E֍EtC(i|Eܸ   U؃S	UvWue[^_]UWVSÃ,EE    E܋EE؃}    C9Er9Eu8E   E   e[^_]ku!1 t3v	)E9skE!}܋D}9vEP1uukE!UЉMQRtWVP   uE1UЋM)EEL1e[^_]UEVuSX@HDP  J P  HHJ$RRPH`  uVP  =     @     ue[^]UWVS8uU؉M܉EVU؋M܅   PPESVtK   RPEVuuuuЋ P      PPuSU   CÍD79ss{ tmPjh   StXQjh   SuC1ҋsUE    E؋CWE4$F    W1e[^_]U1ɉWVS\  Eǅ    ǅ    X9tk!}1ҋDAǅ    ǅ    9  PPPEj!ǅ    ǅ    6  uQ   uǅ    6y!ǅ    ǅ    T   X  u,PPPPE9t?m     ")Ѕ~VڍVh  PE?t3  h    @   @   E C     u<@ uu u
ǅ    uuu
ǅ   E \   uu ulWWj;VƄ t     tJw @鍕9t
x.u@ E \   t^ uUVVj;Pt   tPǅ   {!   #C9C   C!   Pk!SDǍ󤀽    1QQPEj!t tS1B  Ck!RRPStJ   C+CRk!@9s,ks!Y_DPS_C   PPkC!DPZǅ    ǅ    uSUt!    tdQ t1N9He[^_]UEx tkP!DEE    ]UWVSÃ UtP1ҍ4:QQFP3UtRUWuR0 e[^_]UWVS }j]Wh!      Gt      t      G<   P{ UMHt&uMM܉XZQ31Qu
EM  C   QuOQPE3 RRjh$   WuVGW%   =   t=   t$= @  u&C   f1   C   1   C   C    PjWh'   uҍC   EGV9   D7<tWwtm<tW<ue   *   Q{ t{ uE   *   ET7L7D7C   ,   
   /   ED7tc    e[^_]UWVS  hd  H%  P  ǅL   PPLhO  j j RPH tPPh3   j	   WjhL   Puϊ<   T   tLv  <u‽%uـ/uЊ<@t<Ct<Euǃ\     WЃt _)PtPTut    nS1w  PhO  PS1ҍ_ǃT      Pj!j j    RPP   YVVLQ1TPD@R1V   RPP   t!T^_h3   j	   QjhR   T   T!      ǅ   ǅ   ǅ    @X  P~ADR@Sh[  PtT    Te[^_]UVSEu5    u5    5      >     ?      @      A   uxB   uoC   ufD   u]E   uTF   uKG   uBH   u9I   u0J   u'K   uL   uM   uRRhU      0A  fiC  D?  0kd@  0k
в
fEB  0LD  ME  0LF  MG  0LH  MI  0LJ  MK  0LЍEMuPPh`   j
N  i|15    $e[^]UEVuS5       f>   uA@   u8D   u/H   u&fL   uPPho   j
       M  PL  PK  PJ  PI  PH  PG  PF  PE  PD  PC  PB  PA  P@  P?  P>  Ph   P    5    $    e[^]UEVS] tV\   @(t   RRj PuV: tBJ;r: uJB         e[^]UWVSH  5    E@ S      !   PPjhA  h  PPuǅ    ǅ   ǅ     un1ɋEǅ    ǅ    `  X@~9tk!1ҋDAE@    P4H8@    15    $    e[^_]UWVSH  E5    EE       !   󤍵ǅ    ǅ   ǅ    QQjhA  h  PVu u1RPh  9tPSX5        e[^_]Uh    h    E    Uh       ; Z x     0NER read out of range ST CE . ..  NM PX SL / ./ ../ not a ISO9660 filesystem CD001 SP empty date incorrect date no creation date in filesystem to generate UUID %c%c%c%c-%c%c-%c%c-%c%c-%c%c-%c%c-%c%c iso9660                ]    (        LICENSE=GPLv3+  fshelp iso9660                                                                                           y  "                                          	              
               )              ?              L              X              e              t                                                                                                                                                                                                  $             2              grub_mod_init grub_mod_fini grub_strlen grub_fshelp_find_file grub_strncmp grub_strcpy grub_strrchr grub_xasprintf grub_realloc grub_memmove grub_strdup grub_disk_read grub_dl_ref grub_errno grub_memset grub_fs_list grub_zalloc grub_malloc grub_error grub_list_remove grub_free grub_strndup grub_dl_unref grub_list_push         !     <    D    K    P    d    l                        [            Q                                            3    X        	    :	    	    	    
    3
    M
    Z
    
    
    
    
    ]    c                                >    O    a                        Z    u                    3    A    H    X    d                :    l                            Z    {                                    b    i                                                            )    R    k    p                c    h    p    u                        /    P    \    c    h    m                                                                 $      .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                       	   @       t  8              %               $                  -      2                          @               (                  <   	   @         @               F                                  V                                 [                                  d                                                                 	              0  A                                 m                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/i386-efi/cpio_be.mod                                                                      0000600 0001750 0001750 00000005440 13417732100 0014764 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      	      4     (   U1ɉWVSE1U1;Mt ]ƉfKA	ۃ[^_]UE@    @    ]UEp@    UWVSEux@HDJ HHJ$uVHXO_SQj j 7 uB     e[^_]UWVS@]u΋}CSCSVjRPj j 3    Pjh    VtQQh   j	      E} CS t   EM   EM   E} tUEFPu
       RPVCS RPj j 3 t7       0 C Cu9} u3u.Pjh   7uE 77Fs1ҋ{ CS CSM}EUĉCS1e[^_]UVS]CS uE#   e[^]@Pt6PVsssj j 3 tVC 1e[^]UVSÃ$uVjj j j j P u*Rjh    Vuj$tPPh$   j	1e[^]UWVS]C ơ    t9Puh(   VtVs@FV C41S8e[^_]UEVS &á    t'uuuh(   SSe[^]Uh    h    Uh    q invalid cpio archive TRAILER!!!  not a cpiofs_be filesystem cpiofs_be          ?     I  p   X                  j  B   LICENSE=GPLv3+ archelp cpio_be                                                                                                                                       	               )              8              C              P              \              h              z                                                                                     grub_mod_init grub_mod_fini grub_strdup grub_disk_read grub_errno grub_fs_list grub_zalloc grub_malloc grub_archelp_open grub_error grub_list_remove grub_free grub_archelp_dir grub_list_push grub_memcmp e     j                           &                                           
                  	             2    9    b    o    u                                                                     (     ,     0      .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   "                    	   @       0  @  
            %      2       V  I                 8               4                  4   	   @       p  @   
            >                                 N                                  S                                  \                                                  p     
         	              d                                    e                                                                                                                                                                                                                                                  boot/grub/i386-efi/jfs.mod                                                                          0000600 0001750 0001750 00000014134 13417732100 0014146 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      |      4     (   UEp@X5    1USRtp$]UVSh    PSh   j j j j@V    Pjh    StQQh   j	   StfK   9ufvΉ      ǃ      ǃ      RPh   j j j jhV u=S$%       @  tǃ     
ǃ      (S=    uPPh   j	1e[^]UEVuS5          P   P   P   P   P   P   P   P   P   P   P   P   P   P   P   Ph   P    5    $    e[^]UEVuS t;   @oSe9s	)Q@QPR8 uHPPj   P    S    e[^]UWVSӃ,}UPuM؉}zډu}E    ]9]}k@JtL}E    9}ԉMwHr;MwAZ
z1;]r+w;}v$B1EU+EU   } w9MruE܃덃u
   h   tR1PEh   j j D0uN	 t1RP    ɉuPMPuuS SEUEUe[^_]UW1VSÃ\sEUUMKƉE؋E׉U1 t1U܋E t1҉E  EUEU9}>  E؉ىEȋCRRUuuEЍ  =     EUt  E9Eu E9EuCHEԋEE!tMEЉEKU܋E t19UEUuE9EuME    I#M)MԉME    E       EUA E   A$PEuuuuK	 t1RP       =     @     CEE)EEU w	9uEe[^_]USP]KHSDC@uuss]UWVSÃB4   %   = @  tRRh_   j   h%     Xp   txx   B      sEUBuR[   Kt	1 t1PrsUj j WV    UtrU$CB1H4Kt0	@tBBHJ@B1e[^_]UWVS1ہ$  ASQ񍐬    6       SQh   j h   N	 t1RP    uYN1%  	 t1Q1h   j j SQ    1҅t
    ʍe[^_]UWVSÁ,  @9   S        Sz2  CQRpj j H	 t1WV    t
    P  CCCPS@    CCCPuA؉$  {  9~x1;tf4OfMA鋽ы  9~8!  @  <   )C~
ǅ   <	p1;tfFfG@ t	 1҃    f1ҍyt] $  wE   
 $  S?ʀS?Ȁ?ʀSC?C1vw?=  wC?ȀCK (  v; $  w?C)?ȀC?ȀKC 1e[^_]UWV֍  S<UȉʉE܉     uEE </uEuu2  M/t	tE<.u1M@9Ety.u;Eu  Mt"U܉/tE+EEHE               1ۃ} tlF E1MЍŰUۈ]t,t$;EtM׍Yw Zw @9t]׍Cw E Pw )ÅuFfrSuho   j  Qu؍F Pu볋E؀|  u  !  E#M܉ډ]l  %   =   V    @  ~RRh   jjFPtX   wPVuSP1V1j j x3 ;/uE   MډS    1e[^_]UVS]5    C QtTU   :=     u>  %   =   tPPh   js@    C41S85    4$    e[^]UWVS(  5    E u1   U   u荓  Ttω{tmQjj W!  ju[%   = @  	ЃRu0WF PUt=    u
        SX5        e[^_]Uh    h    E    Uh    JFS1 not a JFS filesystem %02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x not a directory file `%s' not found too deep nesting of symlinks not a regular file jfs              x          b  w      LICENSE=GPLv3+  jfs                                                                              "                                                         *              9              F              U              a              l              x                                                                                                                               grub_mod_init grub_mod_fini grub_strncmp grub_xasprintf grub_memmove grub_disk_read grub_dl_ref grub_errno grub_memset grub_fs_list grub_zalloc grub_malloc grub_error grub_list_remove grub_free grub_strndup grub_dl_unref grub_list_push                   3     ;     W     y             	                 M    V    `    g            *    /  
  E    J    R    W                                        @    G    Y                            4    C                          	  C    J    X    t                        *    1    X    ]    e    j                N    W    k    r    w    |                                                                 .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .modname                                                      4                       	   @       h    	            %      2                          8               (                  4   	   @         8   	            >                                 N                                 S                                                    
   	         	              x                                     \                                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/i386-efi/cpuid.mod                                                                        0000600 0001750 0001750 00000003314 13417732100 0014466 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UE@x t	        uE    E   ]1]USRX5    PX1Щ    t91t1          y      PPh    h   h   j h    h#    ]   U5     )   l       3           g   p       k                                   false Check for CPU features. [-l] cpuid long-mode Check if CPU supports 64-bit (long) mode (default). pae Check if CPU supports Physical Address Extension.    LICENSE=GPLv3+  extcmd cpuid                                                                               ;                                                            	              
               4            G              R           j               grub_mod_init grub_mod_fini grub_unregister_extcmd grub_cpuid_has_pae grub_error grub_cpuid_has_longmode grub_register_extcmd            &     3     t                                                                       $      .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                        	   @         x               )               H                  %   	   @                         1      2       T                   @                                  F                                 V                                 [                                  d                                                                 	                                                ,  m                                                                                                                                                                                                                                                                                                                                      boot/grub/i386-efi/jpeg.mod                                                                         0000600 0001750 0001750 00000014210 13417732100 0014304 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      X      4     (   UjURPE EUSR u]PPh    j1]UVS  Åu? =     utPPh   j%ǃ       1҅  ։  e[^]UWV1S1ǉۉUMgMU;$  }D\\FuPPh6   j1e[^_]UWVS   U;]}ECEuM   )Ѓ[^_]UjURPfE  fEɆUWVSÃ@h   j QMk4؋    }  ؉}܋  t	1}  u$     U܉uEX ]9t؉MM>$  FM?v뼋X    ߉]X@M܋   ډ]̋X`	މ]؋   	0]ԋ   UU܉]		u+0            p`p@p    ]̋Uԍ<i   i   i'+uߍ:)}]ԍ)΋MЉUċU܉uu؉]Mi   <i-  i  kdi  ]))k]Li}  u+]+}iu  ))iM  +u+M))ыUʉU)ʋM   9P ʋM)}ĉ   1)P@ډ   P`)ډ   ;EE䍘   ]XxHډ]̋X	M܋H}މ]؋X	0]ԋXUU܉]		u0ppppppp  ]̋Uԍ<i   i   i'+uߍ:)}]ԍ)΋MЉUċU܉uu؉]Mi   <i-  i  kdi  ]))k]Li}  u+]+}iu  ))iM  +u+M))ыUU)ʋMP9PʋM)}P1)ΉPpP)P ;E1},!ʁ   ~   ]@@uԍe[^_]UWVS   j uEu
    6  h    EEF&<u  E  EbWWhQ   j  QjEP6u610L(@˃u?}ȃS=     D   =     +  =       Rhi   hz   h  h   EEЃ <w6<  <  <  XE    ؉ẺEl<  w<  e  <   <M  P  RSP69;111T(щ)ʉ$  ɉT$@u>GWӃ  w*;Mw%~ǃEHSSh   ;Uu	;EPPh   j  XE    ؉ẺEЋ>GWAӃ  wM;MwH ~	WWh   뤃~	SSh   Qj@$  P6@t.;Uu	;E RRh  ZX]fE̋<u	F~ FtuPPhF  RȃȉMtPPh_  E1ۉ  ;]Ћ}l"OvPPh  u(    wvPPh  ukC>  UUȃx u	9PPPh  NftPPh  5   X]fE̋SȃȉMt	WWh_  wE1ۉ  ;]Ћ}>&Ov	SSh  NkC	Ѓ    hUUȃx u9PtQQh  j+jvvvt    F @LF  1҉E  Eȋ      F<[]}D1҉EFDEÉEE9  r-ǆ      ǆ      ǆ      ǆ      o   S  E    E    EċUM)9     t  1;  s+1E;  sE1ҍGM8C̓  ~!M        	=     (]  MȍS9ЉMuVU)EE]H9Eĉ]uFEЋE)EЋFE    EkEEUM9$  ȋ]EȃEE    E9E       EẺEE     L   E11҉ǋEuǍ  W  ig  ǀx=   ~	   1iҷ   kX)x=   ~	   1i  Cx   ~   	1KKEFU+EUE@ЉEEFEEEEF+E  @UFh} d=     u(>RO_1SQW1ۃtCuV=     tE0E     u    e[^_]Uh   E    Uh    $    	
 !(0)"#*1892+$%,3:;4-&'.5<=6/7>?jpeg: invalid maker jpeg: invalid 0xFF in data stream jpeg: huffman decode fails jpeg: invalid jpeg file jpeg marker: %x
 jpeg video/readers/jpeg.c jpeg: too many huffman tables jpeg: extra byte in huffman table jpeg: only 8-bit precision is supported jpeg: too many quantization tables jpeg: extra byte in quantization table jpeg: invalid image size jpeg: component count must be 1 or 3 jpeg: invalid index jpeg: sampling method not supported jpeg: extra byte in sof jpeg: DRI marker length must be 4 jpeg: extra byte in sos .jpeg .jpg                    LICENSE=GPLv3+ bufio bitmap jpeg                                                                                          '  !                                              	              
               ?              X              g                                                                                                                                                          "              grub_mod_init grub_mod_fini grub_video_bitmap_reader_register grub_video_bitmap_create grub_file_seek grub_video_bitmap_destroy grub_errno grub_memset grub_file_read grub_zalloc grub_malloc grub_file_close grub_real_dprintf grub_buffile_open grub_error grub_video_bitmap_reader_unregister grub_free      8     ?                   !            e                        -    W    `    q                        %                        0    R                 	    ^	    w	    	    	    6
    =
    R
    ^
        x                                            #    .    3    :    ?                          .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   H                    	   @                       %             |  @                  -      2                         @                                 <   	   @                         F                                 V                                  [                                  d                                                                	                ,                                 m                                                                                                                                                                                                                                                                                                                                                                                                          boot/grub/i386-efi/crc64.mod                                                                        0000600 0001750 0001750 00000003164 13417732100 0014306 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      l      4     (   UWVS]}}ЉECЉE9}tBUEщEE0E1ƉЉʋ    1   M1ЉE빋UMЉЉC[^_]UE]U]UWVS      tE     @    [^_]E    E    E    E   1ۋUƃt	Iu1ھ   %6ꩁB11NEUtEUϹ?   11ۋEt11 		ƋUIEEUuɋE܋UE0XE 	EU UE    ]Uh    CRC64                                      @       LICENSE=GPLv3+      crypto crc64                                                                                                                                         	        0     5              H               grub_mod_init grub_mod_fini _gcry_digest_spec_crc64 grub_md_unregister grub_md_register    Q     Z                      
        
                                  .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                       	   @         H   
            %      2                          8               0                  4   	   @         (   
            >             D                    N             X                    S              X                    \              _                                  h        
         	              8  Y                                  e                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/crypto.mod                                                                       0000600 0001750 0001750 00000011700 13417732100 0014700 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (  
 UWVS} u]׉EM tBA2Z@MX։	΃uщ)փv13rpq3rpۋEU]E9t
GB2O@H[^_]UWVSt't y΃wq {w 9u@B҉ȍIw Jw [)^_]ULj@j EP}@vE@PU]Uuuuuh    USh#   tMPPh)   St%h-   EZYPuPPh<   Suǋ]U   EP,   ]á      Ut;Eu@,P,@,]U   EP,   ]á      Ut;Eu@,P,@,]UWVS  ]{$   vhC   VSuuVS4$S{4$S WPue[^_]UW   VSu   tt[,    tt1VЃʉ1e[^_]UW   VS   t1Et?sttE|t&[,ˡ    tt1uЃ멉1e[^_]US]CPt]UEE]BUWVSu]y  t?E1q
   u3E~؉E;]sPSuWP @E1   e[^_]UWVSu]y t?E1q
   u3E~؉E;]sPSuWP@E1   e[^_]UWVSu]>  thE1w
   u\E~EMEE9Es*RUpcSSWPك @ERpQu1   e[^_]UWVS,]ux     H1ҋE
   uswnE}EԍCE;usOPpVWVuuP ZUMppWu@E1   e[^_]UWVS]C(9CK  s$E  C(9Ev7s   uuEPSCMEM1Ƀs(MM   s(M   QuuVuuWM1;C(s464\@QZuSs(VuSs(j V4$$   tUxP31111ɃQXu4$<$1e[^_]UE@EB]UWVS]p$Ƹ"      sPXsP ZsP ǋ4$Pr(sVRrWVR4$Pp(j sYsp$j s_sx4$P WPup$j V4$jj S$1e[^_]UWVS Uuuu}Uut!UPRWSu]e[^_]e"   [^_]U1} tPPhX   jU1҉WEVMS]É9t8@A1[^_]UWVS1ۃut0
t+t$tuKލG^w֍C;EsΉC1PE)Pj S$f       1e[^_]assertion %s at %s:%d (%s) failed
 debug all gcrypt error:  gcrypt Too large md context access denied 
  LICENSE=GPLv3+  crypto                                                                                                           c          U     7              D          Z     m    p              {                 P  $        <  l                                       0        N                        Y  !         '     )         :             F  z  5     Y          m                                                                                 '                      s     -  "  f     >             I         `         q             {    c                      Z       t        grub_crypto_ecb_encrypt grub_crypto_lookup_md_by_name grub_memmove grub_crypto_hmac_fini grub_crypto_hmac_init grub_xputs grub_fatal grub_crypto_cipher_open _gcry_log_error grub_memset grub_getkey grub_burn_stack grub_crypto_cbc_encrypt grub_vprintf grub_crypto_gcry_error grub_cipher_unregister _gcry_burn_stack grub_printf grub_crypto_memcmp _gcry_assert_failed grub_password_get grub_cipher_register grub_zalloc grub_crypto_cbc_decrypt grub_refresh grub_malloc grub_crypto_autoload_hook grub_md_unregister grub_strword grub_crypto_lookup_cipher_by_name grub_crypto_hash grub_error grub_crypto_hmac_write grub_md_register grub_free grub_crypto_ecb_decrypt grub_env_get grub_crypto_hmac_buffer grub_crypto_cipher_set_key           3    8    D    I  +  Y    _  #  n    s                  #                                  >    C    y  	        !      '  !  b       	  ,  	  _  	              %          7  	  F  	  g  )        )         )    )    )    )             )        )    	        )        )      3  '  j    q  &      	    	    	    	     .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .modname                                                      4   /	                    	   @                       %      2       c	  h                 4             	                     :             	                    J             	                    O              	                                  	    	            	                                                 X                                                                                  boot/grub/i386-efi/gcry_dsa.mod                                                                     0000600 0001750 0001750 00000004410 13417732100 0015153 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                             4     (   UE E]UWVSLUE:  JɉMu  } k  ҉U^  XS  puE  @E7  PPj W)  PPSW  uPPj V   PPSV   sEXsZsEUYrESuuĉSuuu SuWuEMuEЋEMԋME    E    E܍EPEPVMSVV[1XWVZuąYu_u4$1t	      e[^_]UWVSE҉Ut]x tWxtPptIHɉMt?vUMRQWPVS$Ѓ   e[^_]U        ]U        ]DSA pqgy pqgyx  rs dsa openpgp-dsa        <      	                                                  LICENSE=GPLv3+ verify mpi gcry_dsa                                                               @          O                                                              	               -              @              R              a       <     w                                                                                                   grub_mod_init grub_mod_fini gcry_mpi_cmp_ui gcry_mpi_get_nbits _gcry_mpi_mulpowm _gcry_mpi_free _gcry_pubkey_spec_dsa _gcry_mpi_fdiv_r gcry_mpi_powm gcry_mpi_mulm grub_crypto_pk_dsa gcry_mpi_cmp gcry_mpi_invm _gcry_mpi_alloc        |   
          
                           
        )    `    k    v                                     E    I    T                                        $     4     8     <     @      .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   ^                    	   @       h     
            %      2         #                 8               H                  4   	   @       8  `   
            >                                  N                                  S                                  \                	                                $  `     
         	                                                  e                                                                                                                                                                                                                                                                          boot/grub/i386-efi/cryptodisk.mod                                                                   0000600 0001750 0001750 00000023570 13417732100 0015563 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                       %      4     (   UWVS} u]׉EM tBA2Z@MX։	΃uщ)փv13rpq3rpۋEU]E9t
GB2O@H[^_]USBHz t[]UWVS˃0jj P}؉UjS1W}ԋ}Љ)ǉWsMԃjM1QI	Q}9ttuC   ue[^_]USPEX(h    h   h  h   C HC usC    ]UWV1SÃMC!9sERj?YXRK    PE"{  Y^tVs!CE|  uEMRjYXC!R[    ESY[e[^_]U1VS } u:5   ]څt+vHh+   jSXZuSUt   61e[^]UWVSt't y΃wq {w 9u@B҉ȍIw Jw [)^_]UWVS ]juh5   SueRjhK   Su#=   CEt@EWTWtK?Pj j CP=   =     ut	9GHt?E<   E   e[^_]|  F u9ShW   h   h  h   wGu    !~(GWF  FVGHF1G e[^_]UWV1SE        taQQhj   x  uDCTPZǋC$|>B 0ǋC0t0ǋt  뛃FV|     ƅ^  PPhj   x  :  o   ST  pssh{   jV > tFC$ tHFw FB{<w4C<$                   @ƃ{@w@C@$                  S0ƍV E    E;t  sAE䊌   	qWwq0E
r   	AWwA0FE봍r
E )01e[^_]UWVS   EUU|EG$Uz  < u        E    t|9E  G$ @E  tG  u] t1;  u;  tRVSWЃ      Pjj EPG@H`  $(   G8p$u
"   J  |  EU t1EG8SUPG8   tSPG8jURSPG8$PG8$P jPEP$   EEE5]    u+|  ؉ tЊ|  E t1Er]ODEU t1EEEUU UDT&EEG$ pEPPw,  <  G<$@   Eu} |  0t   uVRPPw$   uVRPPw$ N    _$} |  p     x    E   1eE\  EuuE;u  PpEVPMXpVVSRPXUpEp몃  x     E   1eE  EuuECx;uU  RpEVPVVxP YMpXUpEp머   X  G$ pEPPw(8  1|    EMG$] pG$} trSSPrSSP  G$ڍM p1ME@	وHM9ttuG$ pNP   jEP]S|  HP"E"ME!@Eፇ   MىEEp} t:|  HMuUEЈMM@Eu uH9u܋]E]   |  } tPSSw$PSSw$   ىE9E   u} |  0tRPPw$RPPw$|     EU ED   814} t|uVVP|uVVP
   e[^_]UWVS(U]}uE]܋Z(UEssWVPh   h   hJ  h   U,EJu	Pj  j t1CSRPs u.PEU܋HEj WVEe[^_]Ph   h   hR  h   EE e[^_]UWVS(uEU}NE؋F(U܋UEPUUá       QNPRSXEppuuWh   h   h|  h   ,NjEuuщ t!SEEEe[^_]    t8NRuS	W}j j  t1UrzWVrЃ PPhY  j&SEEe[^_]UVuS]EUM]u[E    ^]cUWVS\]uC<u   u
C$ +xPWus$*  QVu   P{@t  uFK0
   Q@   VuEUEPQUERPs,   {<t{<   ERVPs(t         C$} pWV|     $   u"EP1jj URU|  uUE   1e[^_]UVuS]uCuS    1   CHPF   CLF@CP      1e[^]UWVS5    Et{P5   5   WVá    u^u6PPSWVt,s$Zs(Ys,$PWuS      1e[^_]US   tUCT=t1[]U   UtJ9HLuJI9HPt ]UWVSUEuҋX{ u{ uEm     ;           6Vt'pHh  h   h  h       CRRj hU     5   1=             E  E   e[^_]{ Cuu0t,   PPj hU                             ;(u)S|?)uC S)SÃۡ    tZSt/pHh  h   h  h   S1gSEEe[^_]UWVSuVu	1I1PuډǃSt1=    t1=    e[^_]Uh   XZhT   h  h  j h  h  h    h        Uh   $       ,  3  :  A  H  f  m  t    {      5          o    
  
    u                   a                    b       %                                  Closing disk
 cryptodisk disk/cryptodisk.c crypto%lu crypto No such device cryptouuid/ Opening device %s
 luks luks_mount  %llu  -ecb -cbc -pcbc -xts -lrw -null -plain -plain64 -benbi -essiv: Reading %u sectors from sector 0x%llx with offset of %llu
 grub_disk_read failed with error %d
 Writing %u sectors to sector 0x%llx with offset of %llu
 disk.mod not loaded device name required already mounted as crypto%lu
 no such cryptodisk found Mount a crypto device. SOURCE|-u UUID|-a|-b cryptomount luks_script uuid Mount by UUID. all Mount all. boot Mount all volumes with `boot' flag set.                   
   D    D  u  Y      LICENSE=GPLv3+  crypto extcmd procfs cryptodisk                                                                                      	      N          !                                
                             5              A         X              l              {                 7  k                        )                                                                                       #             ;  ?  *     W             n             ~         	                                                                                                                                   )             B  i  (     e             z                                                                                          grub_mod_init grub_mod_fini grub_crypto_ecb_encrypt grub_strlen grub_cryptodisk_setkey grub_procfs_entries grub_disk_open grub_memmove grub_cryptodisk_insert grub_strdup grub_cryptodisk_decrypt grub_snprintf grub_disk_dev_register grub_disk_write_weak grub_disk_read grub_errno grub_memset grub_crypto_cbc_encrypt grub_cryptodisk_get_by_uuid grub_crypto_gcry_error grub_disk_close grub_cryptodisk_list grub_print_error grub_zalloc grub_strcmp grub_crypto_cbc_decrypt grub_malloc grub_real_dprintf grub_crypto_hash grub_error grub_list_remove grub_free grub_disk_dev_unregister grub_cryptodisk_get_by_source_disk grub_register_extcmd grub_device_iterate grub_list_push grub_crypto_ecb_decrypt grub_memcmp luks_script grub_strtoul grub_crypto_cipher_set_key              P    U    _    d  $  }    V    e    m          /        /  %    P  1  Y    _    v      &                $                  *  !  =    P    f      #            !              (    -    4    ;    B    I    b    g    n    u    |                           (  L    k          "  /	    	    &
    ~
    
  .  
          .      
  .  L    _  .                $      '    0    5    ?    G  $    #                        $  	  (      #    f    m  &  |  (    2      I  %  \  2    2    (        #      I    \  (  a    m    |                              (    (  
  (    (  $    -    E    k                              $          !    &  ,  1    8    I    \  &  r    {          ,                                *  
              $  '    C    c    q      *                                                +     0      
      -      $  )  +  0  0  '                                                 $     (     ,     0     4     8     <     @     D     H     L     P     T     `     l     x                                              $     (      .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   9                    	   @                       )             p                    %   	   @       #                 1      2       $  M                D             t  0                  @   	   @       l$  @               J                                 Z                                 _                                  h                                                  0              	                                               $  q                                                                                                                                                          boot/grub/i386-efi/cs5536.mod                                                                       0000600 0001750 0001750 00000007450 13417732100 0014317 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      p      4     (  
 U1}" WUVu:   uB   ^_]U EE    EEPh    EU   WVSh   u    Eh      u      h   Eu  Ee[^_]U   WVSEh   ]Eu  Eh      u      h   u  Ee[^_]UWVS]CƉ׃( @u< t	QQh    #t	RRh   9wr9vPPh   j1e[^_]UWVS(]E}SEfUV   ?VuxfUEVuWfUVu<D?Vu#fUVuUe[^_]U   WVSEh  ]EuuE&   E   EffwEB   E   e[^_]q1QQfQDe1[^_]UWVS,]uEPj SVuIEuPPhR   j/Mп   UԈ;}sEPWSVuG1e[^_]U   WV   h  h`  h  uu   h  h   h  u   h  h@  h  u   h  h  h  u   j h  h$  u   j h  h%  u   j h   hN  u   jh @h  @u   h   h 0h	  @u   jh  h
  @u   jh  h  @󥍽\u   󥍵\h  @hh   󥍽hu   󥍵hh  @h/h!  󥍽tu   󥍵th  @hOh%  }u   uh  @h?h&  u     j h  h  `u   j jh  `u   jh  h  `u   jh  h  `u   h@  Djj}u   uh@9h 9j }u   uhh  j!}u   uh3h 0j"}u   uh7h 6j#}u   uh/h (j$}ȍu   uh5h 4j%}ԍu   uh   `hh  }u   uh  h h  }u   uh  `h8h   e^_]SM bus error NACK received SM stalled SMB controller not enabled
 invalid divisor no SPD found    LICENSE=GPLv3+ cs5536                                                                                                          j  i        ,   &     )          C              Y          p                 =  v                                                        R         grub_cs5536_smbus_wait grub_cs5536_find grub_cs5536_read_spd_byte grub_pci_make_address grub_cs5536_init_smbus grub_get_time_ms grub_cs5536_read_spd grub_cs5536_init_geode grub_error grub_pci_iterate grub_cs5536_write_msr grub_cs5536_read_msr D     I     p   
     
     
    
  (  
  O  
  w                                6    Q    j                        W  	  l    s      	          ,    R    u                    '    P                    O    o                    2    _                    F    p     .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .modname                                                      4   ~                    	   @       P                %      2         _                 4             	                     :             	                    J             #	                     O              #	                                  ,	  0  	            	              \
                                    X                                                                                                                                                                                                                                          boot/grub/i386-efi/keylayouts.mod                                                                   0000600 0001750 0001750 00000011654 13417732100 0015601 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UWVS} 	SSh    1E<(tS<+tLh   uQh   h$   j0  RU2Ph<     S   Pj}WVu3Pjhg   Wt	PPhp   4PjEPVt=     uuWShN   }
tQQh~   jSh 
  t=Rh 
  PV= 
  t=     uPShN   j=    161E;tSWtV    e[^_]UWVSEuP
w    t   t=   G       t!   t	     ۿ   u   t	  111uRRPh   @   tCw Cw    u   t
u     t   e[^_]Uj h   j h    h        U5    file or layout name required prefix variable `%s' isn't set %s/layouts/%s.gkb premature end of file %s GRUBLAYO invalid magic invalid version Unknown key 0x%x detected
 Load a keyboard layout. keymap                       a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z   1   2   3   4   5   6   7   8   9   0   
         	       -   =   [   ]       \   ;   '   `   ,   .   /       ;  <  =  >  ?  @  A  B  C  D  W  X              R  G  I  S  O  Q  M  K  P  H      /   *   -   +   
   O  P  Q  K  L  M  G  H  I  R  S  \                                                                                                                                                                                                                                                               A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W   X   Y   Z   !   @   #   $   %   ^   &   *   (   )   
      	     _   +   {   }       |   :   "   ~   <   >   ?       ; < = > ? @ A B C D W X             R G I S O Q M K P H     /   *   -   +   
  1   2   3   4   5   6   7   8   9   0   .   |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               LICENSE=GPLv3+  keylayouts                                                                             {  (                                                     /              >              I              d              p                                                                                                                               grub_mod_init grub_mod_fini grub_term_map_key grub_xasprintf grub_errno grub_register_command_prio grub_printf grub_unregister_command grub_file_read grub_malloc grub_file_close grub_file_open grub_error grub_free grub_memcmp grub_env_get      .     3     @     E     L     `     e   
  {                                                          .    8    ?    J    `    l    |                "                                       .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .modname                                                      4                       	   @       8  0  	            %      2                          8               
                 4   	   @       h     	            >                                 N                                 S                                                  p  
   	         	              H                                  p  \                                                                                                      boot/grub/i386-efi/date.mod                                                                         0000600 0001750 0001750 00000004170 13417732100 0014300 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      p      4     (   U   WV    Sl} }uS]Sd  SPEPEPEPEPEPEPh    01~  S1jj EPE} Qj
WPEU-Ut:      1E   e}VDE   Mt9:EU   RAj
EPQUEщD   B	ǃ}uE8 uT}uuEf EEET1t;
|';J"@9EukEE!	MPPh    jfuVt    OtEfEtEEtEEtEEtEE tEEVe[^_]Uj h1   hO   h    hy        U5    ü                           ;       ;   %d-%02d-%02d %02d:%02d:%02d %s
 invalid datetime Display/set current datetime. [[year-]month-day] [hour:minute[:second]] date   LICENSE=GPLv3+  datetime normal date                                                                                 +        "                                                              	               /              A              L              X              n                                                                       grub_mod_init grub_mod_fini grub_get_datetime grub_set_datetime grub_errno grub_memset grub_get_weekday_name grub_register_command_prio grub_printf grub_unregister_command grub_error grub_strtoul         &     :     ^     c     }               y                             
                *    /     .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4   8                    	   @       \     
            %             l  0                  -      2         ~                 <                                  B                                 R             ,                    W              ,                    `              <                                  D  P              	                                                  i                                                                                                                                                                                                                                                                                                                                                                                                                          boot/grub/i386-efi/gcry_idea.mod                                                                    0000600 0001750 0001750 00000005650 13417732100 0015315 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      x	      4     (   fv]U1҉WV   Sø  fǉu).1fǉft1fƉfu؉)[^_]UWVS@jREčEPMMuf]fEffMfMԍO`fuf]M   )fMft.   )ffMt։։)f9fUf_WMfOf]һ   )ffMf]t/   )ff]tЉЉ)f9ҍfEfEֹ   W3E)ft&   )ft)f9эWEԻ   f3E҉r)ft&   )ftƉÉ)f9fuًE113]f3M;Ut	fM}fuf]fMW`fEft.ft)f9   )fu   )fU}WffObf_dffMf]t.ftƉ)f9   )fE   )fU}ĆPjEPWfEfEfMf]jEPPjEPPjEPPe[^_]UMUEME$   UWVSÁ    p{fSfsډtމCltlfuufUfMfEfGfWfFGfV\fWfOftGhl4hlfVfNfFtfFE9ufC\fS^fEC`fUfsbf{d߉Cft]tf}fufUfEPjhSpjhj Se[^_]UWVSE]u    xhuǀ      E$   [^_]UWVSE=    uu              =           }th    h   h    h!   ǀ       1V\VfPBu1E,   {KfJu4rf		MfLZz]uˍPh1j/e[^_]UE    ]Uh    do_setkey lib/libgcrypt-grub/cipher/idea.c keylen == 16 IDEA    .                        k              LICENSE=GPLv3+  crypto gcry_idea                                                                                                                                         	              
               $       0     ;              R              c              w                             grub_mod_init grub_mod_fini memcpy _gcry_cipher_spec_idea grub_cipher_unregister _gcry_burn_stack _gcry_assert_failed grub_cipher_register memset  }                          O    \                                                                                   .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                       	   @       8                 %               
                  -      2         3                 @             0  0                  <   	   @                         F             `                    V             p                    [              p                    d              w  
                                                 	                                                	  m                                                                                                          boot/grub/i386-efi/datehook.mod                                                                     0000600 0001750 0001750 00000003434 13417732100 0015163 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UVS1ۃuV     umPPE4   0uZw+$    E,E&E EEEV$Ph    jh        Cue[^]UVS1ۋ4   CPj h    V4$uڍe[^]UVS1ۋ4   CPj j V4$uݍe[^]   G   M   S   Y   _   e                     %   %d YEAR MONTH DAY HOUR MINUTE SECOND WEEKDAY    LICENSE=GPLv3+  datetime normal datehook                                                                                  4           1                                              	              
               /              ?              M              c                                           grub_mod_init grub_mod_fini grub_get_datetime grub_env_export grub_snprintf grub_get_weekday_name grub_register_variable_hook grub_strcmp grub_env_unset             )     0     C     p     {                                                                                                      $     (     ,     0      .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4   	                    	   @                        )             @  4                  %   	   @         h               1      2       t  -                 @                                  F                                 V                                 [                                  d                	                                                 	                                                |  m                                                                                                                                                                                                                                                      boot/grub/i386-efi/gcry_md4.mod                                                                     0000600 0001750 0001750 00000006164 13417732100 0015100 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      l
      4     (   UE #Eg@@ܺ@vT2@    @T    ]UE]UWVS`HXp8j@REEPMM}1Љ!1ȹ   ǉ1U!   11u!й   1]Ɖ1!   1ȉ}1!1Ϲ   ǉU1!1ʹ   u1!1ι   ƉE1!1ȉ}1!1Ϲ   ǉU1!1ʹ   u1!1ι   ƉE1!1ȉ}1!1Ϲ   ǉU1!1ʹ   u1!1ι   ƉE1!1ȉً]	э;yZ!!	}˹   ÉyZ	!!	ʹ   ׋Uǉ!2yZ	!	ʹ	   ֋UƉ	ٍyZȉ!!	ȹ   MyZ	ȉ!!	ȹ   ËM9yZ	ȉ!!	ȹ   ǉǋM	!1yZ!	ȹ	   M܍yZ	ډ!!	ʹ   ֋UƉ!yZ	!	ʹ   ӋUÍ:yZ	!!	}ʹ   	yZȉ!!	ȹ	   ǋM1yZ	ىȉ!!	ȹ   ƋMyZ	Ӊ؉!!	؋]ȹ   yZ	!!	ڋ]ʹ   	;yZ!!	}˹	   É	7yZ!!	}ι   Ɖ1эn1   ǋMȍn1ىȹ	   1Mn1ȹ   1ÉËM11؍1n   ȉM9n11Ϲ   ǋMЍn11ʹ	   Mn11˹   ËMn11ȉM9n11Ϲ   ǋM̍n11ʹ	   Mn11˹   ËM܍n11ȉM9n11Ϲ   ǋMԍn11ʹ	   Mčn11˹   ËM䍌n11ȉu>F^Ve[^_]UWVS]}u{T@u!SjhCCT       {T t/tCT?PGSTWNTPj j Stcjh7EU)ʃ?v؉MQMCT    C@ډ?19tsT?VST@T3e[^_]UWVS]j j S	sCT <    	փ7PSTDCT7@PSTD CT?PSTD Pj j Sj8j CPCLCMCNCOCPCQSCR CS @jhCCCCCCC e[^_]UE    ]Uh    MD4 1.2.840.113549.2.4     8      0          L  -  1   X   @              0 0*H   LICENSE=GPLv3+ crypto gcry_md4                                                               (          8                                                              	               $       0     :              K              R              e               grub_mod_init grub_mod_fini memcpy _gcry_digest_spec_md4 _gcry_burn_stack memset grub_md_unregister grub_md_register   ^   
  t                .    4    ?    D                                         0      .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   M                    	   @       |	  H   
            %      2                          8               J                  4   	   @       	  @   
            >                                 N                                  S                                  \                	                                        
         	              	  v                                
  e                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/datetime.mod                                                                     0000600 0001750 0001750 00000002264 13417732100 0015161 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (  
 US    U]@8j RPtPPh    j&EfECECECECEC1]UVS    u]@8j VPt	RRh    FffECECECECECE    @8VP1tPPh   je[^]can't get datetime using efi can't set datetime using efi    LICENSE=GPLv3+ datetime                                                                                                                          `     )   `        ;               grub_efi_system_table grub_get_datetime grub_set_datetime grub_error        %     ,   
  i                       
   .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .modname                                                      4                        	   @       d  @               %      2         :                 4             Q                     :             T                    J             c                     O              c  	                                l     	            	                F                                  X                                                                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/keystatus.mod                                                                    0000600 0001750 0001750 00000003674 13417732100 0015427 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UWVSE@8Ӄx t  x t  Sh    h   jHh    u    1҅tx tcB X    t
j Ѓ=    1tGtWЃ	Ƌ?Vh6   h   j\h    xuE0   E   e[^_]e1[^_]Uh    h@   h[   j h    h        U5    v   s       |              c                     a                                          expect_mods: %d
 keystatus commands/keystatus.c false mods: %d
 Check key modifier status. [--shift] [--ctrl] [--alt] shift Check Shift key. ctrl Check Control key. alt Check Alt key. LICENSE=GPLv3+  extcmd keystatus                                                                                  0                                                        	              
               4              E              W              j              u               grub_mod_init grub_mod_fini grub_unregister_extcmd grub_term_inputs grub_real_dprintf grub_term_poll_usb grub_error grub_register_extcmd   6     ;     B     G     S     m                                                                       "    '                    $     0     <      .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4   0                    	   @       <                 )             d  `                  %   	   @         0               1      2                          @             |                     F             |                    V                                 [                                  d                
                                                	                                                  m                                                                                      boot/grub/i386-efi/disk.mod                                                                         0000600 0001750 0001750 00000004634 13417732100 0014322 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (  
 UWVSEUi ]iE{' ЉډƉ1  k9        uL}9   uA9   u99   u1   t'@   REE@    @    e[^_]UWVS8]EU3EEUUh    h   j=h   E؉UE؋UE    KƉ׋U		u}%  E؋E  E EU1EU UE		EUtCQAUԋQEЋA9rw9rPPh!      );Urw;EruЋI }빋SCUBEu=}u7CH t1!!}؉E)	MZ  CUԍHE t19rw9v)9Urw9EvP3hO   j  sC     R  SC    P   VKUPj j uuSU؃ S   K   E)}؋E;EvEERuu >PCYS_@uu2{4$UjKE	 t1RPSW uNVC1ҍH   EEUE )E1}    uuuV   S   u)#}9v֋SHEu U؋UV t1RUPSR u@t1PPCS@uu)C1ҍH   EUN} )}*    e[^_]U        ]U        ]Writing `%s'...
 disk lib/disk.c attempt to read or write outside of partition attempt to read or write outside of disk `%s' LICENSE=GPLv3+ disk                                                                                                                                       *              ?              N              Y              e              w      k                                               grub_mod_init grub_mod_fini grub_memmove grub_disk_write_weak grub_disk_read grub_errno grub_malloc grub_real_dprintf grub_disk_write grub_error grub_free grub_disk_cache_table   B     H     S     [     c     k                              _            >    u      	      P          
      !  
   .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .modname                                                      4   +                    	   @                        %      2       _  }                 4                                  :                                 J                                  O                                                  0  	   	         	                                                   X                                                                                                                      boot/grub/i386-efi/gcry_md5.mod                                                                     0000600 0001750 0001750 00000007344 13417732100 0015102 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UE #Eg@@ܺ@vT2@    @T    ]UE]UWVS`HXx0j@REEPMMUxj׉1Љ!1ȹ   ƋMލ
V1ىȹ   !1ЋUp $}1!1ʹ   1!1;ν   ˉËMӍ|1!1ι   ƋMލ*ƇG1!1ȹ   M
F01!1ʹ   MF1!1ˉËMӍؘi1!1ι   ƋMލD1!1ȹ   M
[1!1ʹ   M\1!1ˉËMӍ"k1!1ι   ƋMލq1!1ȹ   M
Cy1!1ʹ   M!I1!1ˉ}Ӊٍ7b%1ы}!1ι   ލ@@1߉}!1ȹ	   QZ^&}1!1ʹ   1!Ƕ}1˹   Ӊ1э7]/֋}!1ι   ލSD1߉}!1ȹ	   ؉}1!1ʹ   1!}1˹   Ӊ1э7!}!1ι   ލ7É1߉}!1ȹ	   }1!1ʹ   1!ZE}1˹   Ӊ1э7㩋u!1Ϲ   ߍ1މu!1ȹ	   og1!1ƋMƉ1L*!1˹   ËM1ڍ9B9}ʹ   ڍq1}1ȹ   1ٍ7"am}1ι   Ɖ118   ˉËMD꾤11ʹ   MڍK11ȹ   MЍ1`K11ι   ƋMƍp11ˉËM~(11ʹ   Mڍ'11ȹ   MЍ10ԉ11ι   ƋMƍ11ˉËM9ى11ʹ   Mڍ11ȹ   MЍ1|11ι   ƋMƍeVĉ11ˉ}D")}	1ʹ   э*C	й
   1ǋM׍1#щȹ   	1ƉƋM	19   ȉMY[e	1ʹ   M9	1Ϲ
   ǋM׍1}	1ι   ƋM]	1ȉMO~o	1ʹ   M9,	1Ϲ
   ǋM׍1C	1ι   ƋMN	1ȉM~S	1ʹ   M95:	1Ϲ
   ǋM׍1*	1ι   ƋMӆ	1ȉً]Cs{e[^_]UWVS]}u{T@u!SjhCCT       {T t/tCT?PGSTWNTPj j Stcjh7EU)ʃ?v؉MMCT    C@ډ?19tsT?VST@T3e[^_]UWVS]j j S	sCT <    	փ7PSTDCT7@PSTD CT?PSTD Pj j Sj8j CPCLCMCNCOCPCQSCR CS jhCCCCCCC e[^_]UE    ]Uh    MD5 1.2.840.113549.1.1.4 1.2.840.113549.2.5        <      0            y  1   X   @                 0 0*H   LICENSE=GPLv3+ crypto gcry_md5                                                               t	          	                                                              	               $       0     :              K              R              e               grub_mod_init grub_mod_fini memcpy _gcry_digest_spec_md5 _gcry_burn_stack memset grub_md_unregister grub_md_register   ^   
          	    N	    z	    	    	    	                                         0     4      .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   	                    	   @         H   
            %      2       	  ,                 8             	  N                  4   	   @       ,  H   
            >             L
                    N             [
                     S              [
                    \              b
  	                                l
        
         	              l  v                                t  e                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/diskfilter.mod                                                                   0000600 0001750 0001750 00000023604 13417732100 0015526 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      T%      4     (   UWVS,U   @E    EԋE9E   ku0q,F~ H	w5$    } u(_} uKVuƍ_)   E    E    9}t?kEF(Pt1z @tU؉MIMЃ]9]}
E9]|EK   1,[^_]U]UE    E   ]UWVS5   tO^tCu	Cu$QQWPu1҉u [4RRWPtv1؍e[^_]USÃjh$   Pu   CQjh'   StRjh,   StPjh3   S]UWVSH}uh8   hd   h   ho   E    G   YtvCtjW9PubPG@9BuTC1ҋwEԋCE1tFVv 9Uu-9Eu(CsWMЉEM9Uu9"  [(놋Is    Eԃ}   uPEPEPWE    E    VE  v1ۋM܋@UWMȉuĉỦEw1ɅtN^v VuuRPSQ7h   hd   h#  ho   EЃ0X  E;CutRPu3E9   { u7Cu6"W;S   r;C   ȃ=           C)C SS$1O1҅tAQI CSW}CSu}tẺC EȉC$CC EЋSS$Xt3{  u ; t1҉t   @   C [4ы[(} tFu6} tu=    tE         e1[^_]U҉VSt    datT@S    u            *PSj VSh  V4$    e1[^]U1҉E]sUWV1S    tA{t6Ct/RVj hE  Ѓ   tm   ^uo[Fue   OtK5   1҅t9^t-{$ u"t{  t      C$   [4ϋvÅuPPh   je[^_]UVuS]Ht5u==     t        uPVh   jPC(SP@C  SC1e[^]UWVS1ۃ}u   X1E=   t19~( uv4utwt9^ |RRuPUtҸ   e[^_]UWVSEMU]EuAUtxuV@E   E4yt EUQu]e[^_]RAE  EE   e[^_]RVu	S]j j X p$؉QRPW e[^_]UWVS   dUM  PPh  j     11E    EƍEPG,RPSQ]SO 1+M]SQRP EG U    (  MQRPuuO uG 1H+EU܉E؉U܀EU  EUEUĉEUU1ۋEO    9  G,1ҋuU]EUE֋uEEUMEEЋO,]U)9vˋ    u
        EUVSRPkEG(P J  	)]  Eu)E}u}	E}   ds0{,j vvuu[ E    ]]9]uPPh#  jI  _9   r9   O_9   w9   W^NEUGW]EE։UUӋ]]+EU1u9rw9EvEUEUċ]EE؉ËEM)]GӃ
q  $(   0E uuuSQw( O  1ҍEPG,RPSQ EGUu'G 11UE   E   EE       
u}GЉUUĉu]u0Mj G,1RPww E   Euu1E   O,EщUEEUE3E   1E   E    E   E    E    E    UăM]]Ee1ʍMQO S1QRPO, MEEUډUMe]U]uEE]EEEUMxE||G,+E]9vEǅp    1pMĉ19Ήhl  u1ǅt    t1ɉM]]9       u
        M]UEM]UExuЉ`Ee`SkQG(P      F1;w !tSw]9]^t[U؋M܃ ɉU؉M܋_ u9u]u]uE    E    pwu9hS  ]	x)|E    EE    _ UEU1+hl]u;Uv]]uu+EUr;EsE؉UM܋]؉MLw 9r);UrT9L w9KA1ӉM]9)ډEUF+EUĉE؉U5s          u(    tUPEEUSRPVu$Ph5  -    tPUPEEUSRPVuWу QhW  h>  j,  EUE    E     EUGt.ҋO u9uE    E    U1ɋE3U3E	.;Uu;EuEUĉEU1ҋG    9Uw	r9Es1ɅLG,1EU#  OE؋Ut_ Ku9t 1
	uG H1E؋M؉U܋]t+ȉEU1ۉE UO w9)   EUEG U1҉UUEE+EUE9ډUEUrw9MrEU9Ur)w9Er"9]r-w9Mr&EU9Uwr9EsȉEUĉEUU;UE0w	;E%+EUEUE    E    RPh`  jI1e[^_]UES]UM@(]]][]UVuS   t9suPVu3t	[1؍e[^]UWVS8Ephz  hd   hL  ho   E X     PC      P=   E    E    @E̅tpwtdtYQR3UPUȅuB< t3E0	w,Rj
MQPMUȀ9 u9E}EE   v4똋댃} t1PE@P3h  u    M331;Csk0S,zuB,@   @EC0[4   }G1=   e[^_]UWVS,E},
E܋EE؋E E  E,$T   u(uE(E]܋}}щej WVRP EU5E,   1ҋ}U)׉e܉UEME܉EE؉EVVuutpPt.E9Bw&rE9BsM]JZVR,tJZVR,tE9BrwE9BvE܉BE؉BuM  j a  E} EFt@SSj:ut@EQQPh  uv  FF   F    j<Ft@   F@(   FVPFVE~D PEGF@tR1jh  P;}FtO@?DEԋE8؃	P0~PWEԈF@LE8؃	P0~PWG멋@}ЋM]D8 FHX~j0G,F@,}̃](Mx,F@,XF]@,     @    F@,HM,XF]܋@,HFM@,H F@,X]؉XFX,kPC(F1ۋ@,x,;]}9j0@@    VP(VFJ,kCQ(BV)FtX(P^V1e[^_]UE    ]UWVSh          C   stqF(CvFtP~ t6v,4$맃v,Zv84$stKF4C9FtPF;CtP1;~sk0F,Gp(3Xs$e[^_] t   y   y   V   V   K   y   y   y   _   
  
                  
  \        \  \  \          diskfilter writes are not supported md lvm/ lvmid/ ldm/ Scanning for DISKFILTER devices on disk %s
 diskfilter disk/diskfilter.c Inserting %s (+%lld,%lld) into %s (%s)
 DISKFILTER scan depth exceeded unknown DISKFILTER device %s physical volume %s not found unknown node '%s' unknown volume incorrect segment raid6rec module `%s' isn't loaded raid5rec unsupported RAID level %d Found array %s
 %s_%d md/%s mduuid/   d                      LICENSE=GPLv3+  diskfilter                                                                                       	                                               
               )              <              I              X   ;  <     w                                                                                              	                                         $             5             A             M             Y             e             w                 	          	                                                   w  m    "             .              grub_mod_init grub_mod_fini grub_strlen grub_disk_get_size grub_strncmp grub_disk_open grub_diskfilter_get_vg_by_uuid grub_xasprintf grub_memmove grub_divmod64 grub_partition_iterate grub_disk_dev_register grub_disk_read grub_raid5_recover_func grub_errno grub_disk_close grub_disk_dev_list grub_print_error grub_zalloc grub_strcmp grub_strchr grub_malloc grub_real_dprintf grub_diskfilter_make_raid grub_diskfilter_list grub_raid6_recover_func grub_error grub_free grub_disk_dev_unregister grub_diskfilter_read_node grub_diskfilter_vg_register grub_memcmp grub_strtoul  G            "      5    W          '        '        '        '                                   -    2    <    A    j  '                  V    \    }  #    #                                  !    '    /    8    b    |              "  G    O    U    k    r  "          F    |      "              7    f    
	    	    6	  %  	    	    	  "  
    
  %  
    F                  %        !                  
  "        "  E    Z  '                            
          :  (  v    {          #              M          #      G    \    a    s  #                  v            U  &  z  #    #                $            #        #    #  %  #  5  #  >  #  F  #  f  #  z  #    #    #    #    #                                                 $     (     ,     0     4     8     <     @     D     H     L     P     T     X     \     `     d     h     l     p     t     x     |                                     .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .rel.data .module_license .bss .modname                                                      4                       	   @       $                )                                 %   	   @       #                 1      2       |                  D                                  @   	   @       $  0               J             <                    Z             L                    _              L                                  X       
         	                ;                               $  h                                                                                                                                              boot/grub/i386-efi/gcry_rfc2268.mod                                                                 0000600 0001750 0001750 00000004654 13417732100 0015512 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      |      4     (   UWVS]M}E    CsMfUSf	EC	C	s[	M!fuf1fu!ufufQfufEufu!fu!fUfEfUfAf#u!fEfEEfY!މf#]f}
t}u@U?MfBȃ?fMfUfAˋMЃ?fCȋMÃ?f4YEE}fuWfGf_ffOWG_[^_]UWVS}E   GOw_	G	O	w	uuu!ff~~)!)!f~|f)!f)f+Fz!)!f)f+Vx!)!)}t}u'uσ?f+~ǃ?f+~׃?f+~߃?f+~Mm}auFfF؈fNffVN^FXZ[^_]Ã=    UVUSuMu              =           v|0@9u։)΃w\ۊ    @          )Ӎ4    Ht2Ɋ    1@@u0[^]UE    ]Uh     xݵ(yJ؝~7+vSbLdDYOaEm	}2@놷{!"\kNTe`sVu;B=0<&oFiW'C>/fހRr5Mj*qZItK^AnQ$Pp9|:#z6[%U1-]㊒)gl ឨ,c?X≩843H_.G奜w
 hRFC2268_40 1.2.840.113549.1.12.1.6          0      (            p                            LICENSE=GPLv3+  crypto gcry_rfc2268                                                                                          R          b                                  	              
        0     :              Q               grub_mod_init grub_mod_fini _gcry_cipher_spec_rfc2268_40 grub_cipher_unregister grub_cipher_register                           '    ;    X    ^    i    n                               0      .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   w                    	   @       |  `               %                                 -      2         #                 @               @                  <   	   @         0               F                                 V                                  [                                   d              '                                  4                 	                f                                  m                                                                                                      boot/grub/i386-efi/div_test.mod                                                                     0000600 0001750 0001750 00000007430 13417732100 0015206 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UWVSH}uEЍEPWVRQU] MS9QWVuuЉEȸ   Uh    h=   j@h   hC   rw9r1P(Muԋ]ȋEuuuWVuىuΉEMu]}ĉ1ϋMhT   h   jB1	h   hC   Q}ă8u]WVuԉu}h   h   	jEh   hC   Q(W1Vuuuh   h   jHh   hC   Uă} EQE(MW]Vuԉuи    EȉUh   h   jLh   hC   QEȉU(EWVuuЉѺ    ЉUȉh   h  9UjOh   hC   M̹   r	w9Ev1QEȹ   EUUă(EȋEWVuuЉUh   h  ÉE9EjSh   hC   Ur	w9]v1QEȋUEUă(W]VMuuӉU9]h   h  jVh   hC   Eȸ   r	w9Mv1P(]WEVuԋUEUVS1h"  1hS  	jYh   hC   P0e[^_]UW1VS1ۃHEEPSRWVUĉUЉ]    ŰUEȋER PuuWVh    h=   j'h    hC   w;Er1Q](MWUVESQuuRUPEhT   h   j)h    hC   UeUȋM1	P8]u1uЅWVh   h[  j,h    hC   P(1uuЃ} WVh   hj  j.h    hC   PE1҃(uuuWVhy  h  j4h    hC   3E	PU(Uu1uWVuh  h  j61uh    hC   P0e[^_]UWVS1ۃ          P   PWVM&MPuE@     1  1kkEظ   EE؉UME   ڋ]kkEظ   EE؉UuE   }׉	u   1	u   1PPWVM]rMdMM܋]We[^_]Uh  h  Uh   test32  test64                                            remainder is larger than dividend: 0x%llx %% 0x%llx = 0x%llx r < b tests/div_test.c division doesn't satisfy base property: 0x%llx * 0x%llx + 0x%llx != 0x%llx q * b + r == a division overflow in 0x%llx, 0x%llx (q >> 32) * (b >> 32) == 0 x1 < (1LL << 32) x2 < (1LL << 32) x1 <= ~x2 x1 <= ~r division overflow test failure in 0x%llx, 0x%llx a == x1 (q >> 32) == 0 (r >> 32) == 0 C compiler division failure in 0x%llx, 0x%llx q == (a / b) C compiler modulo failure in 0x%llx, 0x%llx r == (a % b) div_test   LICENSE=GPLv3+ functional_test div_test                                                                                                                                                    	               +              >              S               grub_mod_init grub_mod_fini grub_divmod64 grub_test_register grub_test_unregister grub_test_assert_helper        E     J     Q     V     f                                                    .    3    :    ?    R    |                                        !    &    ;    @    T                                            "    H    M    T    Y    h                                                            #    ;    @    G    L    `    x    }                                                     .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                       	   @       	    
            %               `                  -      2       x                  <             n                     B             p                    R                                  W                                  `                	                                                 	              	  k                                  i                                                                                                                                                                                                                                                          boot/grub/i386-efi/ldm.mod                                                                          0000600 0001750 0001750 00000015074 13417732100 0014144 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   Uщ1WVS1];us>F	ωY[[^_]U   U:0z(BuE       ]UWVS   ]uhdC ~FQh   CRPssV 1ҋd~u6Pjh    Q1҅uCCSSMQ   e[^_]UWVS  Ph:   uǅ    t        11ۍtt>   Cuy  tEx uPut҃_PPhb   uǅ    ǅ    t        11	t   1QWh;  j j RPu   Pjh    W2f #ffjAuw  Qj@RPE @@ E[]0uFuF1< t@@uRRSP   j ǉ  @   @    j!G$A   t uPXp|  Vj@SPj PwG@  @@ X7G    G    Gffffʉ؉Ӄ 9e  SPh   j j u 
  Qjh	   V   fFf   ~4   j0
  @    F~   T9<  PC,"  RVBRWPFS,D FD|;  B9  GSPsWPC AC(YE9 w99  VPh   j j u :	  Sjh	   V  fFf  ~Q  j<  C   C   C(   C0j0C,       @    C,@   C,@     C,@$   {,kG$PG(C,x( f  F~   L9  PC8  QNAQWPFK8D F|@9  PCL  RQOQPK s0h   t@DD;s*D;sP;s@D;r$s8Xs$@  H;sPL9vK,CSAQGC4_E9 bQ  9\:  WWBRVPGS8D GDD;  D;  P;p  @t;  F~hD9  xF  G8N9  Q@RPx  GWpCS  C   C    h  C,  G,P$;P 	  W,kB B(@    W,kB B(     @    G,P H(rkp \AC4YE9u\x| 9|  PPh   j j |xu   Pjh	   tf@f^x2Nj<{  @(    @         Aq选T9E  PC8jSC   C   j0C,       @    C,WOpPHC,@      C,@    FhtN@  ;~  s82x|F4L   9x8{&  9  VPh   j j u    Sjh	   Wt+E9uჅ 9rrfGfwɀ3uG   D9  \9}  s9΍Co     DxC|   +tSpt;,  ChlD9  XFC89uQ@RPt[4t;  ǅ    PFt7J,:u(dARPQduR(ŋCu_DL97  @S,;B @kx|B(X@    p@    ;Cu!Ck0VVPs,   C,kC0ptC,hHlkC0C,PHkC0C,@    kC0C,@    kC0C,@$   ks0s,jF(kC0C,@(tLx|@    Hp@    C7V  ptU1;^sk0F,Cp(^4v,Xv8ZvY64$맋pt^(64$7<$   s8$p-C,@   C,@   UVhD9hC,pFpA,hFDL9-@s,F C,P P$s,kF$PF(G,x( ҉P$G,RRkP$Rp(fW,B(E01ҍe[^_]á        Ut                ]Uh          X~B4ϳPRIVHEAD VBLK ldm/%s/%s ldm               LICENSE=GPLv3+ part_gpt diskfilter part_msdos ldm                                                                                /                                                        	              
               )              <              [              j              w                                                                                                                                          "             >              grub_mod_init grub_mod_fini grub_strlen grub_disk_get_size grub_diskfilter_get_vg_by_uuid grub_xasprintf grub_realloc grub_memmove grub_disk_read grub_errno grub_partition_msdos_iterate grub_gpt_partition_map_iterate grub_zalloc grub_malloc grub_diskfilter_list grub_list_remove grub_free grub_diskfilter_vg_register grub_memcmp                          &    o                            K    k                	        0    I    c    x    5    N    T                *    9                &    [                1    N    k    p                p    0	    o	    0
    O
    Z
    
    
            +    1    N        C            C    V    _    h    p    z                                                                               .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   &                    	   @                       %             `                    -      2       p                   @                                 <   	   @                        F                                 V                                  [                                  d                                                                	                J                                 m                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/i386-efi/dm_nv.mod                                                                        0000600 0001750 0001750 00000003454 13417732100 0014472 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      $      4     (   U1WVS   ]{ ;  Su	   tQVjtj j RPS    Wjh    VurEfdt	VPh   UE=   t!=   t&=   u6M11E18u1   ,M11E   ISPh   j1ojtPjEPRdEU@    EE     @    EZYMċdS1j SQWVj PRj0e[^_]Uh    h    Uh    NVIDIA unknown version: %d.%d unsupported RAID level: %d dmraid_nv         9       LICENSE=GPLv3+ diskfilter dm_nv                                                              ^          x                                                              	               0              =              L              X              r                                                                       grub_mod_init grub_mod_fini grub_disk_get_size grub_memmove grub_disk_read grub_malloc grub_diskfilter_make_raid grub_diskfilter_list grub_error grub_list_remove grub_list_push grub_memcmp       
  M     `     f     ~                    	    O    e    j    o                       .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                       	   @       4  x   
            %      2         C                 8                                 4   	   @            
            >                                 N             #                     S              #                    \              .                                  4  @     
         	              t                                    e                                                                                                                                                                                                                                      boot/grub/i386-efi/legacycfg.mod                                                                    0000600 0001750 0001750 00000074370 13417732100 0015320 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      v      4     (   UE     1]UE    E   ]UP5    U<.t9</t9PЀ	w..Pw5Pw;	1   ]UWVSӃ0jh   2t1   NtsvCQQj$EPƉEtăjtv11E    FFUԉM$   M؋U	EuԃtG   MGBLMBBut<Ft.	=   w"C}E)CRRPWڅuS1ҍe[^_]UEUuE   E   
9-uy-tME*   ztEE  E    E   E*   $   UVuS]u1   u9E1   u<P   uEP   [E8   E   ^]u]E@[^][EW   E   ^]UWV   SL]} ~SPPhy   3t8PPhL  3tPPh   3  $      MNu}WWh   j  EH4    VEǉEFPECPP=$   w9   t!VuuPPu$                $   u7   XtQSuPPu$                h   tRj j P        1j       Bx    B   zE)u   PPh   G$pu7 u7gPPh   G$ptPPh   G$ptÃPPh   G$puE$   t   }thtt1PPFaPRuh   tRuh   jEP uEh   jPPPEPh   h     t!WuuPPu$                }}tpEfE-rE @EEPǋEPSWMEƃDEɉDtac   VuEh  jP $   u4%  tQWuPPu$      t        $   tu4-  tRWuPPu$      2        ;}tWP3h6  j   1   WWhY  3u$      QQhj  3u$      RRhy  3u$      PPh  3$      e[^_]UWVS<}tPPh   j  EP:eÃE|cEEt} tu} tE˃PEE    h  Et-SEtu(ju      P1ut#=       *  PtCuEEPEPEPS4$}    uXuZYDPuu>u<$$Xu$          uM4$MEUԃMBRQPXuE    uԋE;EtStOj  Eăj Wj j h*   j j Vj$V Xu}} u#Vj h    S$TuIW$ZYDPWuW$[uS4$GWSP$u} tLjuuhEj Wj j j j j Sj$Su1Qj h    V4$<$} t@t8 tRj jP} tE˃P} u܍e[^_]UWVS$   ]u$  uuQh  pRuSPP   u|}޾  
   {    Sơ    t]SPRuFPEމP   uQhP   h8   RVWPP4$PPhW   je[^_]UWVS8PE[5$   ǉE  P   WuS   NAPAPS   WuЉ}S   $    $   jW}W$   uuS   v6S   EԃvQjRSEȉU   EȃŨRPWS   }ԃt#EEQjPS   ݃S    $E   ẼRjPEP$   Et	PuuPjEPS   1ҹ   tPFPPS   1ҹ   tPuuS   } t	PjEPQuuSG   S    $E     E3RjVP$1e[^_]USPUE]uE    ]E   S1]UWVS  ]u8-ux-tHRh   j W1Ҋt	B   uPh   WV-E9t
S1e[^_]UVS   ]uPPh   jFh  Y^h   VtRVuS1uPPh    je[^]Uj h  h  h  h  j h  h  h  h      j h'  h  h  hd     j h  h  h  h     j h  h  h  h5     j hC  hi  h7  hx     j h  hi  h  h     j h  h  h  h     j h  h  hx  hR          U5    X5   Z5   Y5   X5   X5   X5   X5   X5    USBHz t[]UWVSӃR9uRPSV1e[^_]U1ɉWVS]u9r$)؃DPtcK @tր'u@<'u4PPhh  SMU$h  UMAAuC 1e[^_]UWVSL  E]     u<#ttutPtC׃uǍ@$WuPt|;
u; 	;
D;   Pu>=tFuǅ    )k0PWSd   Qu<9 uE8    t @t)6uPPuh"  R  >=uFPuk0   %   t?V9wP)PSVM
  CPtKЀ     11ǅ    ǅ    ǅ    ǅ   ǅ    >   Pjhx  Vu
ǅ   Pjh  Vu6Pj j FP=     u        ǅ   Pjh  Vu
ǅ   Qjh  Vu   Rjh  Vu
ǅ   Pjh  Vu   PuFuPFu		uh     t    t
  	t
    t
   t
  r t
  _t
%  Q.  Gۉ  t< r  tm  PE)h1  PVVPPhO  V$R	  P1jj Pǅ    ǅ    t   H9s, tPtG? t"k0t     PuFu苅9u   t)8WÅt&CDPt֋>x     $         ǅ    
ǅ   ?(  G1ɉ9r <)   % t<)t<,t<\t<'uA뻋)   n   d   B;rЃ)DPut<\t<'uAB1  Q  ;s\t'u \@@AP  \  <,tPPSWG  Pj P@Pǅ8,uPZwZ;r*)D(P+t<\t<'uAB;w<\tC<'t?CBC;rߋ@t$BRPhX  j#S \CPh^  j#S; tC;s<\t<'u\CCBCዅ E  PtFuu>> uPu>'uF)Sɉ  ʉ>    u
9t1 B+PtFčZ'u'S>렃Pu֊<'u'C\C'C'CF "  PPSW  H   $4   ٺa  ٺs  ٺ|        ٺ  uvٺ  udٺ  uRٺ  u@ٺ  tu.ٺ  buٺ  tv?-u-uQQS   h  ǅ   $  ?0uxuG   
      u9   R)RP3;suZȀvڃ0	vũ߃Aw@W   Pj j W=     t        1-   swk        fu
h  9JQRRPh  'u?ounu
h  h  ǅ    - u-@t'I00 Vuuk0x   v9rK     uut؃h  h  h  k0      WWj/V4$uSh  j13  @Pt)QHPGPR))D/WVP
 k0l   uik0h   ^_X2p   QQPure[^_]              	          .          j                  D  N                                ^  c                                                                                 L  P                                ^  Z                                       0	  6	                                      =	  O	  S	                              b	  n	  	  	                                	  
  	  	                                                                          ^                                              '  /                                       #                                                                                                                                                                                                    V  _                                 {                                          B      M                                                                                          
               "  1                          
                                                       $                                      <                                                        
               "                      
               "                                                                                                       	                       >                      %                                     )             x                          E                                         I                          
                   (  6  g  m             
                   (  v                 	                                                                                   	              ;  M    !                                         !                  	               ;  !  !  !                                         #  #                                  =#  P#    $             
                   $  w$  G&                                     P&  &  d)  m)                                ^  |)  1*  9*                                U*  Z*  *  *             	                   *  *  +                                     +  &+  +  +                                  +  ,  ,                                 4,  9,  K,  T,                               p,  w,  K,  ,                                         access denied --md5 one argument expected legacy initrd can't find command `%s' module you need to load the kernel first --no-mem-option --type=biglinux filename expected linux multiboot legacy_hdbias netbsd openbsd bsd msdos ad%ds%d%c ad%ds%d ad%d kFreeBSD.vfs.root.mountfrom kfreebsd wd%d%c knetbsd kopenbsd couldn't load file %s --type=linux --type=multiboot --type=freebsd --type=openbsd --type=netbsd  initrd16 --nounzip Enter password:  Parse legacy config in same context FILE legacy_source Parse legacy config in new context legacy_configfile Parse legacy config in same context taking only menu entries extract_legacy_entries_source Parse legacy config in new context taking only menu entries extract_legacy_entries_configfile Simulate grub-legacy `kernel' command [--no-mem-option] [--type=TYPE] FILE [ARG ...] legacy_kernel Simulate grub-legacy `initrd' command FILE [ARG ...] legacy_initrd Simulate grub-legacy `modulenounzip' command legacy_initrd_nounzip Simulate grub-legacy `password' command [--md5] PASSWD [FILE] legacy_password Simulate grub-legacy `password' command in menu entry mode legacy_check_password '\'' dumb vt100 --dumb --lines= console serial hercules graphics terminal_input; terminal_output; terminfo
 insmod all_video;  terminal_input  serial  console  ; terminal_output  mda_text  gfxterm  ;  terminfo serial -g 80x%d %s;  
 (tftp) %d,%d %d --with-configfile --no-apm --force --type=netbsd --type=freebsd --type=openbsd --type=linux --type=biglinux --type=multiboot --no-mem-option  0 auto %ux%ux%u 1 invalid color specification `%s' # Unsupported legacy command: %s
 blocklist blocklist '%s'
 FILE Print the blocklist notation of the file FILE. boot boot
 Boot the OS/chain-loader which has been loaded. bootp net_bootp; net_ls_addr; echo $"Default server is ${net_default_server}"; if [ x%s = x--with-configfile ]; then if net_get_dhcp_option configfile_name pxe 150 string; then configfile $configfile_name; fi; fi
 [--with-configfile] Initialize a network device via BOOTP. If the option `--with-configfile' is given, try to load a configuration file specified by the 150 vendor tag. cat cat '%s'
 Print the contents of the file FILE. chainloader chainloader %s '%s'
 [--force] FILE Load the chain-loader FILE. If --force is specified, then load it forcibly, whether the boot loader signature is present or not. clear clear
 Clear the screen. cmp cmp '%s' '%s'
 FILE1 FILE2 Compare the file FILE1 with the FILE2 and inform the different values if any. color set color_normal='%s'; set color_highlight='%s'
 NORMAL [HIGHLIGHT] Change the menu colors. The color NORMAL is used for most lines in the menu, and the color HIGHLIGHT is used to highlight the line where the cursor points. If you omit HIGHLIGHT, then the inverted color of NORMAL is used for the highlighted line. The format of a color is "FG/BG". FG and BG are symbolic color names. A symbolic color name must be one of these: black, blue, green, cyan, red, magenta, brown, light-gray, dark-gray, light-blue, light-green, light-cyan, light-red, light-magenta, yellow and white. But only the first eight names can be used for BG. You can prefix "blink-" to FG if you want a blinking foreground color. configfile legacy_configfile '%s'
 Load FILE as the configuration file. debug if [ -z "$debug" ]; then set debug=all; else set debug=; fi
 Turn on/off the debug mode. default set default='%s'; if [ x"$default" = xsaved ]; then load_env; set default="$saved_entry"; fi
 [NUM | `saved'] Set the default entry to entry number NUM (if not specified, it is 0, the first entry) or the entry number saved by savedefault. dhcp net_bootp; net_ls_addr; if [ x%s = x--with-configfile ]; then if net_get_dhcp_option configfile_name pxe 150 string; then configfile $configfile_name; fi; fi
 displayapm lsapm
 Display APM BIOS information. displaymem lsmmap
 Display what GRUB thinks the system address space map of the machine is, including all regions of physical RAM installed. fallback set fallback='%s'
 NUM... Go into unattended boot mode: if the default boot entry has any errors, instead of waiting for the user to do anything, it immediately starts over using the NUM entry (same numbering as the `default' command). This obviously won't help if the machine was rebooted by a kernel that GRUB loaded. find search -f '%s'
 FILENAME Search for the filename FILENAME in all of partitions and print the list of the devices which contain the file. geometry insmod regexp; ls -l (%s*)
 DRIVE Print the information for a drive DRIVE.  halt halt %s
 [--no-apm] Halt your system. If APM is available on it, turn off the power using the APM BIOS, unless you specify the option `--no-apm'. hiddenmenu if sleep -i $timeout; then timeout=0; else timeout=-1; fi
 Hide the menu. hide parttool '%s' hidden+
 PARTITION Hide PARTITION by setting the "hidden" bit in its partition type code. initrd legacy_initrd '%s' %s
 FILE [ARG ...] Load an initial ramdisk FILE for a Linux format boot image and set the appropriate parameters in the Linux setup area in memory. kernel legacy_kernel %s %s '%s' %s
 [--no-mem-option] [--type=TYPE] FILE [ARG ...] Attempt to load the primary boot image from FILE. The rest of the line is passed verbatim as the "kernel command line".  Any modules must be reloaded after using this command. The option --type is used to suggest what type of kernel to be loaded. TYPE must be either of "netbsd", "freebsd", "openbsd", "linux", "biglinux" and "multiboot". The option --no-mem-option tells GRUB not to pass a Linux's mem option automatically. lock if ! authenticate legacy; then return; fi Break a command execution unless the user is authenticated. makeactive parttool "$root" boot+
 Set the active partition on the root disk to GRUB's root device. This command is limited to _primary_ PC partitions on a hard disk. map drivemap '%s' '%s'
 TO_DRIVE FROM_DRIVE Map the drive FROM_DRIVE to the drive TO_DRIVE. This is necessary when you chain-load some operating systems, such as DOS, if such an OS resides at a non-first drive. module Load a boot module FILE for a Multiboot format boot image (no interpretation of the file contents is made, so users of this command must know what the kernel in question expects). The rest of the line is passed as the "module command line", like the `kernel' command. modulenounzip legacy_initrd_nounzip '%s' %s
 The same as `module', except that automatic decompression is disabled. pager set pager=%s; if [ "$pager" = 0 ]; then  echo Internal pager is now off; else echo Internal pager is now on; fi
 [FLAG] Toggle pager mode with no argument. If FLAG is given and its value is `on', turn on the mode. If FLAG is `off', turn off the mode. if [ "$pager" = 1 ]; then pager=0; echo Internal pager is now off;else pager=1; echo Internal pager is now on; fi
 parttype parttool '%s' type=%s
 PART TYPE Change the type of the partition PART to TYPE. password if [ "$superusers" =  ]; then superusers=legacy; fi;
legacy_password %s '%s'
 menuentry "Superuser menu" --users "legacy" { configfile '%s'; }
 [--md5] PASSWD [FILE] If used in the first section of a menu file, disable all interactive editing control (menu entry editor and command line). If the password PASSWD is entered, it loads the FILE as a new config file and restarts the GRUB Stage 2. If you omit the argument FILE, then GRUB just unlocks privileged instructions.  You can also use it in the script section, in which case it will ask for the password, before continuing. The option --md5 tells GRUB that PASSWD is encrypted with md5crypt. if legacy_check_password %s '%s'; then configfile '%s'; else return; fi
 if ! legacy_check_password %s '%s'; then return fi;
 pause echo %s; if ! sleep -i 60; then return; fi
 [MESSAGE ...] Print MESSAGE, then wait until a key is pressed. print echo %s
 Print MESSAGE. read read_dword %s
 ADDR Read a 32-bit value from memory at address ADDR and display it in hex format. reboot reboot
 Reboot your system. root set root='%s'; set legacy_hdbias='%s'
 [DEVICE [HDBIAS]] Set the current "root device" to the device DEVICE, then attempt to mount it to get the partition size (for passing the partition descriptor in `ES:ESI', used by some chain-loaded bootloaders), the BSD drive-type (for booting BSD kernels using their native boot format), and correctly determine  the PC partition where a BSD sub-partition is located. The optional HDBIAS parameter is a number to tell a BSD kernel how many BIOS drive numbers are on controllers before the current one. For example, if there is an IDE disk and a SCSI disk, and your FreeBSD root partition is on the SCSI disk, then use a `1' for HDBIAS. echo "$root"
 rootnoverify Similar to `root', but don't attempt to mount the partition. This is useful for when an OS is outside of the area of the disk that GRUB can read, but setting the correct root device is still desired. Note that the items mentioned in `root' which derived from attempting the mount will NOT work correctly. savedefault saved_entry=${chosen}; save_env saved_entry
 [NUM | `fallback'] Save the current entry as the default boot entry if no argument is specified. If a number is specified, this number is saved. If `fallback' is used, next fallback entry is saved. serial %s
 [--unit=UNIT] [--port=PORT] [--speed=SPEED] [--word=WORD] [--parity=PARITY] [--stop=STOP] [--device=DEV] Initialize a serial device. UNIT is a digit that specifies which serial device is used (e.g. 0 == COM1). If you need to specify the port number, set it by --port. SPEED is the DTE-DTE speed. WORD is the word length, PARITY is the type of parity, which is one of `no', `odd' and `even'. STOP is the length of stop bit(s). The option --device can be used only in the grub shell, which specifies the file name of a tty device. The default values are COM1, 9600, 8N1. terminal [--dumb] [--no-echo] [--no-edit] [--timeout=SECS] [--lines=LINES] [--silent] [console] [serial] [hercules] [graphics] Select a terminal. When multiple terminals are specified, wait until you push any key to continue. If both console and serial are specified, the terminal to which you input a key first will be selected. If no argument is specified, print current setting. The option --dumb specifies that your terminal is dumb, otherwise, vt100-compatibility is assumed. If you specify --no-echo, input characters won't be echoed. If you specify --no-edit, the BASH-like editing feature will be disabled. If --timeout is present, this command will wait at most for SECS seconds. The option --lines specifies the maximum number of lines. The option --silent is used to suppress messages. testload testload '%s'
 Read the entire contents of FILE in several different ways and compares them, to test the filesystem code.  If this test succeeds, then a good next step is to try loading a kernel. testvbe insmod vbe; videotest '%s'
 MODE Test the VBE mode MODE. Hit any key to return. timeout set timeout=%s
 SEC Set a timeout, in SEC seconds, before automatically booting the default entry (normally the first entry defined). title NAME ... Start a new boot entry, and set its name to the contents of the rest of the line, starting with the first non-space character. unhide parttool '%s' hidden-
 Unhide PARTITION by clearing the "hidden" bit in its partition type code. uuid search --set=root --fs-uuid '%s'
 UUID Find root by UUID vbeprobe insmod vbe; videoinfo '%s'
 [MODE] Probe VBE information. If the mode number MODE is specified, show only the information about only the mode. insmod vbe; videoinfo
      X  X                                           @  @  @      X  X  X                   @ @ @ @                                                                                                                                                              @                                                                                                                                                                                                                  LICENSE=GPLv3+  crypto password gcry_md5 normal legacycfg                                                                                C       -  v                                              	              
               )          <              G              T              b              z                                                                                                                                     ,             8             J             c             q                                                                                                                     *             =          R             d             u                                                                                                                                                        &             3             H             j             y                                                                  grub_mod_init grub_mod_fini grub_strlen grub_legacy_escape grub_puts_ grub_strncmp grub_strtoull grub_env_extractor_open grub_strcpy grub_env_context_close grub_env_get_menu grub_legacy_parse grub_xasprintf grub_realloc grub_normal_add_menu_entry _gcry_digest_spec_md5 grub_memmove grub_device_open grub_strdup grub_command_list grub_env_extractor_close grub_snprintf grub_auth_authenticate grub_errno grub_memset grub_env_set_menu grub_normal_set_password grub_env_context_open grub_register_command_prio grub_normal_parse_line grub_unregister_command grub_crypto_memcmp grub_vesa_mode_table grub_password_get grub_print_error grub_zalloc grub_strcmp grub_strchr grub_malloc grub_file_close grub_file_open grub_isspace grub_env_unset grub_file_getline grub_error grub_legacy_check_md5_password grub_free grub_strndup grub_named_list_find grub_auth_register_authentication grub_show_menu grub_env_set grub_memcmp grub_env_get grub_strtoul grub_cls         #   5  0     5   9          =          .     /    8    7        5        #      &    -    3  :  8    M    ]    i    y          5        5        -        -        -      0    N  /  l    w                                         >    ?        4    }      -        -        -        -  	    :    L    W    g    o    }      <        3                 /  	    ;    C    L    W    v                            7        5        -      "    )  -  6    F    M  -  Z    j    q  -            5    @    $      +    0    C  1  R    `  ,  m     {  "    4         2        7      	    	    '	  7  /	  7  7	  7  @	  7  L	  7  R	     e	    v	    	    	  7  	  /  	    	    	  7  	  7  
    
  &  
  +  $
  7  @
    J
    W
    i
  7  q
  7  
    
    
    
  7  
  0  
  /  
  0      
  7         &  %  +  -  7  5  7  C    W  ;  r    |                      /               *    /    B  7  P    W  5  v    }      ,                                           =    U    y                                <    I    U    t  (    7        5        !  2  (  c  7                *    6        5                    %                   %    *  %  4    9    >    C    H    M  %  W    \    a    f    k    p  %  z                      %                        %                        %                        %                        %  '    5    :  '  A    F  '  M    R  '  Y    ^  '  e    j  '  q    v  '  }      '        '        '            /  M    Y    `    e      2        /      '  2  Y    k                  2            8  )  2        =        =    ?                   =        =  3    9  =  R    X  =  o  2    2                              (    ;    I    S    m    t                              !      -  2  L    Z  2            2            /      (    M      /      %    6    >      2    2    /  -  2  m  2                                  +    =    O    a            %  8  5  ?  >     G     `  )  g  )  t                        &    [    e    o    t          .            5    /      Q    x              7    7    7    7                                                         $     (     ,     0     4     8     <     @     D     H     L     P     T     X     \     `     d     h                                                                     $    (    L    P    T    X                                                        <    @    D    H    p    t    x                                                 0    4    8    \    `    d    h                                                             $    (    L    P    T    X    |                                                        <    @    D    H    l    p    t    x                                            ,    0    4    8    <    \    `    d    h                                     $    (    L    P    T    X    |                                                    <    @    D    H    t    x                                     	    	    	    ,	    0	    4	    8	    \	    `	    d	    h	    	    	    	    	    	    	    	    	    	    	    	    
     
    $
    (
    L
    P
    T
    X
     .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                        	   @       b                )             T   
                 %   	   @       o                1      2       *  ,                @             W                   F             Z                    V             Z  (                  [              Z                     d              Z  
                                Z                	              ^                                 Xv  m                                                                                                                                                                                                                                                                                          boot/grub/i386-efi/echo.mod                                                                         0000600 0001750 0001750 00000003704 13417732100 0014303 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UWVSE@8 E1EEHE;]   E4V@$tD       \   Ex    Nt#ftrKatfctu\u\Bu W    <$;]tUh    Crt%
nu
부ttvu	E    니
FBC} th   1e[^_]Uh    h   h   h  h    h+        U5           n       0               e       T                                     
 Display a line of text. [-e|-n] STRING echo Do not output the trailing newline. Enable interpretation of backslash escapes. LICENSE=GPLv3+  extcmd echo                                                                            <  3        o                                                	              
               )              @              K              V              b              o              {                             grub_mod_init grub_mod_fini grub_strlen grub_unregister_extcmd grub_xputs grub_errno grub_printf grub_refresh grub_malloc grub_free grub_register_extcmd   ;     D     V                         !    &    .    C    H    M    W    \    a    i    w    |         $      .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                       	   @       |                 )               H                  %   	   @                        1      2                          @                                  F                                 V                                 [                                  d                                                  @              	                                                $  m                                                                              boot/grub/i386-efi/linux.mod                                                                        0000600 0001750 0001750 00000030340 13417732100 0014520 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                       /      4     (   UE 1]UWVS$MEU}YqEEU  ډE]~Dk\CSE؉US;UEЉUu!9}uE9CuEUEU܉CS#EkuUFE>VFEFA$1[^_]U1   WVSU}}܅u	WWh    =0   uVVh   j#  SWuR  W7  Á f=  v@  7v74  t9v¡  )(     9sQQh4   jfjjh   QVPEP5      uZuأ$  5$  uW   u9PPSVhJ   hh   ho  hn       0  f   ,  EP    e[^_]U58  X5   0      1       U5        $      ,             (      UWVSu}}M]         	    ڃ EUw1}      w  wM   ]  1ȉ w=  	 v  	 1)U   E    B9]EwAr9w;RPQVh   hh   h  hn   U +B+   ø   1e[^_]U1   WVS   }h   t=8 t8SSPh     Qj j@P$EERj j@h   th           h      PPEPEPt           E]Uf&   Ef8   f*   Uf(   ؋E,   :   Eā  f1ۅ0   ;   EȢ<   E̢=   EТ>   EԢ?   Eآ@   EܢA   t
<yt6<1t2wR     uut70   #   #%#   p#            "    =#          t{PPh   su5SS $      S$   S"   LPPh   stPPh   st           P"   PPEPh    E    k]      ƉE  	9s  Ee   }  % E              u    PEtYj Vj PEPWEEyPPh  ju E9    s           1    ?  %        g  WWSuh  hh   h:  hn   jEPh  } uVj EPh  S5   uuh;  hh   hF  hn   U uQQhw  j     EPREP5       uËE$h  hh   hW  hn        ]uUE(  5  5   PEZ  h  hh   ha  hn   EPh   E    t
       EU  EPEPj 5  h         EU)f  fwfv&]  ]         +fv$]  ]         E    u	   UU  E    E    EPj $5  0e[^_]UWVS  58  } u*PPh    jǅt    ǅp    '  E0p  X4StuPPh  j   WStp9t=       EV0h  mShh  tPf~Ut	QQh  >q<@v	RRh
  *}HdrSufUfw	PPh!  EuPPhA  j&  fv}O  
     =  w
     u   hph	@4lh)ll-   f`vfut$N1ۅu   uC u}11f	v4E   dEl  %   t8U311l   d  % @  `ll    tl\  I \  u
       tljjjVRR|WP ҉\t[K;d   jٸ   KjPV\        h   W5   VR|RPuM|,  X|VP5,  (  hd  hh   h   hn    dGd  Ph  j h   jwqPh  (  Eh  -   (     D  t      h  Ph|  f  %  $  rf=f4   ?f6    ,      0      f8   f         f     f     f$    wf=v      EL32  f=v      EFIL  P   Plh|h  hh   hy  hn    4      ;]   PEjh  4   EWj VlP|=     4  t        A|Jw ktmt1Ƀgu
   1Ƀ
1Ƀ
9v4      *4  !EQjh  4u%   C   @P      Rjh  P  P   Puuth`8   P5,  =     u+Pj h9  h  0     
ǅt    tptP=     t58  0          e[^_]UuKj h  j h	  hh   j h  j h   h         E8  Uu5   X5   U   VS	sWws0@u[^]USRt%@C3$]UWVSÃ Ejh  SEC1rUCgC1]C1SC&   FC.1<UC61C>1'CF1CN1CV1	C^Cf1VSnWRUU)Sj Ve[^_]UWVSÃ,EME    ;/uCtC</u   6)хt.PQR6MԉUU؋Mԅt<    v΃jUU؅tzFQ)QPR} t@PPSuh  h  h   h  UEj j hA  )DE+E7qE܃E1e[^_]UE]@UWVS]{ tA1;3}&CFt8XC48փsC    e[^_]UWVS8E]E        C    P=    C  C    1E    E;E  MUԋEЋCCWjh.  4   EUԋE̍x?/uGQQj:WE   u)                     KRRPWMMЃACD0   {P1ɍUqǋC{D0   RǋẺ{@EtCx1EE    }ԃ                     CuEŨC8 uS=    ?EԋQ4I8PHCD8Cm1tCxCE|e[^_]U11W1VS,u]E    ;>  ؉PQj SUȉMMԉUȉEˉFDtVٍUËEFPHpUȉMVMԋT
ủuȉh     2t.Q4  j 
   j j ËE1E    EFUȋHRQS0MMԃU9t2=     uER4h?  jV    EGt/؉ƃPVj S
   j 4  j j 34E1e[^_]ÍPU	v߃A<   ]UW1VS1ۃt_\u:~xu4FUMMUtFMUt뻀\t
't"uC
 u   CF뛅tt:ZY[^_]UW}V1S1;u}1FY\u[^_]UWV1SM;u   EUM<M@9E   )EEEt"Aˊtg\uFxu@GUU܅t-GU܅t\GCGCGC므\t
't"u\CCGC듃} tC "KF ? [^_]filename expected you need to load the kernel first the initrd is too big Initrd, addr=0x%x, size=0x%x
 linux loader/i386/linux.c addr = %lx, size = %x, need_size = %x
 gfxpayload %s;auto auto Booting in blind mode gfxpayloadforcelfb vga_text console ofconsole cannot get memory map real_size = %x, mmap_size = %x
 real_mode_target = %lx, real_size = %x, efi_mmap_size = %x
 cannot allocate real mode pages real_mode_mem = %p
 code32_start = %x
 cannot allocate kernel buffer premature end of file %s invalid magic number too many setup sectors version too old for 32-bit boot zImage doesn't support 32-bit boot prot_mode_mem = %p, prot_mode_target = %lx, prot_size = %x
 bzImage, setup=0x%x, size=0x%x
 mem= quiet BOOT_IMAGE= Load Linux. Load initrd. initrd 070701 Creating directory %s, %s
 linux loader/linux.c newc: TRAILER!!! premature end of file %s LICENSE=GPLv3+  video boot relocator mmap linux                                                              y  \          .                                                                           )              G              R              h              ~     0                                                                                                     "  "       =             S             ^             j                                                                                        N                    #             /             ;             G             S             k             {                 
                                                                                                            /             =  Y  [     O             [             k             x                                        grub_mod_init grub_mod_fini grub_strlen grub_efi_finish_boot_services grub_puts_ grub_efi_system_table grub_relocator32_boot grub_loader_cmdline_size grub_xasprintf get_virtual_current_address grub_video_set_mode grub_memmove grub_relocator_alloc_chunk_align grub_dl_ref grub_mmap_iterate grub_create_loader_cmdline grub_relocator_unload grub_errno grub_memset grub_register_command_prio grub_video_get_driver_id grub_initrd_load grub_efi_secure_boot grub_unregister_command grub_file_read grub_term_outputs grub_get_initrd_size grub_print_error grub_zalloc grub_strcmp grub_strchr grub_malloc grub_efi_get_memory_map grub_file_close grub_file_open grub_initrd_init grub_real_dprintf grub_relocator_new grub_file_filters_enabled grub_error grub_video_get_info_and_fini grub_free grub_strndup grub_efi_mmap_iterate grub_dl_unref grub_initrd_close grub_memcmp grub_loader_set grub_env_get grub_strtoul get_physical_target_address grub_relocator_alloc_chunk_addr                      /    +    "  2    <    N    ]    e    |                      :                            ,                  %  5  *    A    F  4  M    S    \  1  d    v    {                        R    u    z          ,            8                1      $    0  #  8    =    F    R    W  8  ^    z  0                                                  	            N    T    ]    f    m    t    {          !        %                        %        %          "    )    5    A    f                      '    (    1        /              )    8    ?    P    U    _    d  ,  r    w  3        3                    ,        /            ;              "    .    3    8  ,  ^    d    j    y    ~          ,                              -	    T	    	    	    	    	    	    	  /  
  *   
  '  4
    N
     [
    m
    
    
    
    
    
    
  /  
                        ,  -  9    @    _                  ;            :                        ,  >    C    T    Y    ^    u                                                                	            *    0    9    F    L    U    s    x          ,            6    9              >    K    X    `  6  m    y      $                                                7  
    +  1  A  )  J    V    [  4  d    m                                                                        Q  1  Y  1  z            1      6    $    2                ,    1    )    1    $      ,    4  6  `  &  y  .    .    .    2    
     .  *  .  4  .  K  *  f  5  l        >  
  u                   /    5          !     .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                       	   @       D$  X
  	            %      2       8  X                4                                  :                                 J               <                 O                                  X                                                    
   
         	                                                .  a                                                                                                                                                                                                                                                                                                                  boot/grub/i386-efi/efi_gop.mod                                                                      0000600 0001750 0001750 00000017704 13417732100 0015002 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UE       ]ËPtr1Ƀu    UWVSQp1ɋP!uFX	щM}!u3@!u*	މхu"	ù   ]   tAIu1Z[^_]UW   VS   EEuKu        $]   EtKuEC@)؉XZ[^_]ËT   t:US    d       S5   Qj j j j jRPP01]1UEuL   E]U=\    tRd   R5`   PP\       5T   T       UjXj h    UVSd   ]@p@C   CFFC   CCS   V SFt<rto   C$   C(    C,   C0   C4   C8   *C$   C(   C,   C0   C4   C8    C<   C@   sFK(S$FK0S,FK8S4FK@S<9PPh    jEt0h   h5   h0  h;   E<SC P   E5T   1T       e[^]UWVS0]h   j Sjh   5X   t8 uGPjh   5X   u-}־j      PEPh   EPu
5t@EЃv%=   Wv   PFPS4$+SShK   j   Qv   RpS1e[^_]UW1VSl]ud   P;:   SVWPE       E}E   PUPE   E   E    U@E   E   E   EPPuEE   E   PE    E   E   E   E   Ut   G;1e[^_]UWVS   Eǅ\    ǅ`    ǅd    ĉTEEDuxhSu(SudQP`PSu`  wd  vǅ`   ǅdX          d   p^^  *O  K9Mu{9}tD 2  T9t   vh|   h5   h  h;   d    @pd   PR9t#=\    u`   \      RRVPPd   SBR      \   PH                      @$      (      ,         0      4      8       <      @             C          @RP   ãT      hB  h5   h  h;   d   \P           RR         P    P                      @$      (      ,         0      4      8       <      @                   5   5   5    5P   ha  h5   h  h;   Sh    hL   th  h5   h  O5L   th  h5   h  'Ph    jj t#h  h5   h	  h;     h  h5   h  h;   1  161h  h5   h  h;    ǅP    ǅL    ǅH    d   P;f  \QhWSPtǅ\    8  \RppSh   h5   h  h;   ` \t(9Pwd9HvSh   h5   h     uSh   h5   h  cPPWSh   h5   h  h;   \ B;EuM9Jt	D u;Tt+T t"Sh   h5   h  h;    Db9Lrw9PrPLމPLǅH   CH Gh  h5   h  h;   Y[h+  je[^_]UWVSEPj h   jE       }    1ۍ};]sRRjh   PX   Yd   XWh    } tV           "Cd       X       .9Hv u               t@    e[^_]U=\    tRd   R5`   PP\       =d    th    unsupported video mode GOP: couldn't fill mode info
 video video/efi_gop.c EDID information not available agp-internal-edid GOP: keeping mode %d
 GOP: mode %d: %dx%d
 GOP: mode %d: too large
 GOP: mode %d: incompatible pixel mode
 GOP: mode %d: depth %d
 GOP: mode %d: rejected
 GOP: no mode found
 no matching mode found GOP: couldn't allocate shadow
 GOP: initialising FB @ %p %dx%dx%d
 GOP: Couldn't create FB target
 GOP: Couldn't set FB target
 GOP: Couldn't set palette
 GOP: Success
 GOP: %d modes detected
 EFI GOP driver               P     P                                                                                     8      3  E      aʓ +4AIlfV6D3yީB#8JzЀQjLICENSE=GPLv3+  video video_fb efi_gop                                                                             8            H                                              	               4              G              b              {                                                                                                /             J             `             k             w                                                                                           %             <             H             _             q                                                                                                        0             W             r                                                     grub_mod_init grub_mod_fini grub_video_fb_map_rgba grub_video_fb_fini grub_video_get_blit_format grub_video_fb_get_region grub_video_fb_create_render_target_from_pointer grub_video_fb_unmap_color grub_video_fb_map_rgb grub_video_fb_scroll grub_video_fb_fill_rect grub_memmove grub_video_fb_blit_bitmap grub_video_fb_get_viewport grub_efi_get_variable grub_errno grub_memset grub_video_adapter_list grub_video_edid_checksum grub_video_fb_get_palette grub_video_fb_set_palette grub_video_fb_map_color grub_video_fb_init grub_video_fb_get_area_status grub_efi_locate_handle grub_malloc grub_efi_open_protocol grub_real_dprintf grub_video_fb_set_active_render_target grub_video_fb_set_area_status grub_video_fb_set_region grub_video_fb_delete_render_target grub_error grub_list_remove grub_free grub_video_fbstd_colors grub_video_fb_get_active_render_target grub_video_fb_set_viewport grub_video_edid_preferred_mode grub_video_fb_get_info grub_video_fb_blit_render_target grub_video_fb_create_render_target          	        C    L  $  X    a    h    u          *                                (                #              &    +  *  6    Z    d    j    o  "            "                    *        (  "    E    r      .          '    ,    6    ;  #  @    N    ^    g    m                                                                 *    4    A    G    T    Y  !  e    p    u          #                                                              "    ,    6    @    J    T    ^    d    j    p    u    z          #                            $            +           	    
	    	  #  	    #	    -	    2	  #  J	    O	    Y	    ^	  #  	    	    	    	    	  #  

    
    -
    2
    B
    G
    Q
    V
  #  
    
    
    
  #                #  "    )  (  H    V               "            *                                          !    *    1    >    H    S    X  )                          /  $     (     ,     0   -  4     8   &  <     @   %  D     H     L     P   
  T     X     \     `   0  d     h     l   1  p   '  t     x   ,  |           .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   a                    	   @           
            %      2                         8                                 4   	   @       l     
            >             p                    N               h                  S                                  \                                                        
         	                                               T  e                                                                              boot/grub/i386-efi/gcry_rijndael.mod                                                                0000600 0001750 0001750 00000045344 13417732100 0016207 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      H      4     (   UWVS  3u܋pO3q]ۉup3qup3qMu   x)  3x-  ]3x%  ]3x!  ]
Mx)  3x-  ]3x%  ]3x!  JM]}x)  3x-  ]3x%  ]3x!  ]JMx)  3x-  ]3x%  ]3x!  XJ;u:J   3KF3;MK3J}MK3JMMM؉M؋x)  3x-  }3x%  }3x!  }
Mx)  3x-  }3x%  }3x!  }JMx)  3x-  }3x%  }3x!  JM}x)  3x-  }3x%  }3x!  J
]3L3<MJ3L}MJ3LMy-  
My-  JMy-  JMy-  JMy-  JMy-  JMy-  JMy-  JMy-  JMy-  J	My-  J
My-  JMy-  JMy-  JMy-  JMy-  JM1\1Z\1ZD1B[^_]UWVS  1߃34}y3   u}yI3   3   É}M}x  3x  u3x  u3x  u
Mx  3x  u3x  u3x  JMux  3x  u3x  u3x  uJMx  3x  u3x  u3x  uJN:J   3   N3   MJ3   }MJ3   MMMMx  3x  }3x  }3x  }
Mx  3x  }3x  }3x  }JMx  3x  }3x  }3x  JM}x  3x  }3x  }3x  J3     M苈  3J1]ۉM싈  3JMx  
Mx  JMx  JM늉x  JM芉x  JM劉x  JMx  JMx  JM슉x  JM銉x  J	M抉x  J
Mx  JMx  JM튉x  JMꊉx  JM犉x  J   1
   1J   1J   1B[^_]UWVS\]=    Uu              =          Eǀ      t"t- f   E   E   E   E
   E   E   EM  19tƉǍMΊ@L7EX؋TTHy1119U|;u|E       };u}LF@uB0tɊMx1  1ΉM|x1  0M|x1  0M|x1  0MˋM	1΃}Mt(   |1|F;u|19U}tE9U}   u3uȉu3u1uԉuux1  u0Mx1  u0Mx1  u0Mx1  u0M3u؉u3u1uu;u}};u}LF@\B0T1h   e[^_]UWVS<]     غ      H   H   H   Ju׍CEčs؍KE   UE;    }      x  3x     3x     3x   }ĉ         x  3x     3x     3x   }ĉ         x  3x     3x     3x   }ĉ         x  3x     3x     3x      Ej@ǃ     EEt0Pju}ȍuWjVuM؋Uj@e[^_]UWVS,]M	Ȩt-PjQ}WEu؉5jVS
Ej@e[^_]Uh    $    E    Uh    $    $                       @         6   l         M      /   ^      c         5   j         }                   	$4,8-9'66.:$?#1*HhXpAeS~ZrNlSEbl\tHeQF~FbTwKiZаݻʦǭؽ֦įظѵʢïĨϦҴٺ;{2p)m fW\AJs#z(a5h>W^ELk;f5q'|)_REHKEWY7s:}-o avm`dwmzRYڕ[Tћ@C̉INǇ>7,%1<+&FMMCPQ[_ju˄a{Г|iٞwg=3!/29$/M֍vDۆx_̛jVdiN`@{Rr\!>(03":,=6+ 2?(%necntsyxZI޸WBУ@_ªMTAO]Sywek1?-#	|
GuLnQgZX>kQ3`J$}C)v4b=o&x	/uV3[8L%A.al{vUXOB	=Ҳ0ܩ'Π*G<zN7tU*f\!hcBjLq^xPd
ory+H2"C<9^.0U 쓺
∭-Է&ڬ;ȥ0YRODu~ch
gj}p.S4'^:<I(5D&B|KrP`Ynf;Do6Jt!X},Vz7q9l+g%8V5]"@/Kd"Gi)I~4[s?UP]qJcGm18#*ypkb]TOF    	4,8$9'6-.:$6#1*?hXpHeS~ArNlZEbS\tHlQFeFbT~KiZwаݻʦǭشֽĦʯصѢʯÌĨϦҴٺ{;p2m)f W\AJ#s(z5a>hW^ELk;f5q'|)_REHKEWY7s:}-o amv`wdzmYڕRTћ[C̉@NǇI>7,%1<+&FMMCPQ[_jua{˓|iОwg=3!/29$/֍vMۆxD̛j_dVNi@`R{\r>!0("3,:=6+ 2?(%necntsyxZIޱWBи@_£MT̪AO]SywekӲ1?-#	
G|LuQnZg>kX3`Q$}J)vCb4o=x	&u/V3[8L%A.al{vUXOB	=һ0ܲ'Ω*<zG7tN*fU!h\BcLj^qPxd
oryH2+C<"^.9U 0욺
⓭-Ծ&ڷ;Ȭ0ƥYRODu~chg
j}pS4.^:'I(<D&5|BrK`PnY;Df6Jo!Xt,V}z7q9l+g%8V5]"@/Kd"Gi)I~4[s?UP]qJcGm18#*ypkb]TOF    	,8$4'6-9:$6.1*?#XpHhS~AeNlZrEbStHl\FeQbT~FiZwKлݦʭǜشֽĦʯظѵʢïĨϦҴٺ{;p2m)f W\AJ#s(z5a>hW^EL;k5f'q)|_REHKEWYs7}:o-a vm`dwmzڕRYћ[T̉@CǇIN>7,%1<+&FMMCPQ[_jua{˄|iГwgٞ=3!/29$/vMֆxDۛj_̐dVNi@`R{\r>!0("3,:=6+ 2?(%enncstxyIޱZBиW_£@T̪MAO]Sywek1?-#	G|
LuQnZgkX>`Q3}J$vC)4b=o	&x/u3V8[%L.Aal{vUXOB	һ=ܲ0Ω'*<zG7tN*fU!h\BcLj^qPxd
oryH2+C<"^.9U 0욷
⓺-Ծ&ڷ;Ȭ0ƥYRODu~ch
gj}p4.S:'^(<I&5D|BrK`PnYDf;Jo6Xt!V},z7q9l+g%V8]5@"K/"Gd)Ii4[~?UsPq]cJmG18#*ypkb]TOF    	8$4,6-9'$6.:*?#1pHhX~AeSlZrNbSEHl\tFeQT~FbZwKiаݻʦǭشֽĦʯظѵʢïĦϴҺ;{2p)m fW\AJs#z(a5h>W^EL;k5f'q)|_REHKEWYs7}:o-a vm`dwmzRYڛ[Tщ@ĊIN>7,%1<+&MFCMQP_[uj{˄aiГ|gٞw=3!/29$/vM֍xDۆj_̛dVNi@`R{\r>!0("3,:=6+ 2?(%necntsyxޱZIиWB£@_̪MTAO]Sywek1?-#	|
GuLnQgZX>kQ3`J$}C)v4b=o&x	/uV3[8L%A.al{vUXOB	һ=ܲ0Ω'*zG<tN7fU*h\!BcLj^qPx
dory2+H<"C.9^ 0U욷⓺
Ծ-ڷ&Ȭ;ƥ0YRODu~ch
gj}p4.S:'^(<I&5D|BrK`PnYDf;Jo6Xt!V},7z9q+l%g8V5]"@/KGd"Ii)[~4Us?Pq]cJmG18#*ypkb]TOFR	j068@|9/4CDT{2#=LBN.f($v[Im%rdhԤ\]elpHP^FWث 
XE,?k:AOgst"57unGq)ŉobV>Ky xZݨ31Y'_`QJ-zɜ;M*<Sa+~w&icU!}PQAeS~'^:k;EXK0U vmvL%O*5D&bZI޺g%E]/uLFk_mzRYڕ-t!Xi)IDjuyxX>kq'O f:}Jc1Q3`SEbdwk+HhXpEl{Rs#KrWU*f(/{7(0#j\+yiNe4bѦ.S4U2u9`@q^nQ!>=>FMT]qoP`$@C̉ٞwgB[8y|
GB|    	+H2pZrNl8V=-9'6d
\!h[Tћ6.:$
gWҴO awKiZ
*"C<	ǭ򶨹-WuLݻ`&r\f;D~4[C)v#hc1cB"@ J$}=2)mǞ/K0܆Rwl+pHd"GĨ?},V3"INǇ8ʢ6Ϧz(&ڭ?:,xP_̛j~FbTظ9^.ï]Г|i-o%Ϭ;}cn;{&x	YnOne~!ٺo6J	|)1?#1*0Ƣf5N7tʦа3JAP/M֍vMCMT̖ѵjL,eQF^5]tsA.gZRV3Gmaz7Y<'a5G<zYs?Uy7sS[_=oDۆxh>$4,8@_r%<I(Aq9Vd˄a{2pl\tHWBЧPQeS~A^:'k;EXKU 0mvvL%O*D&5bZIޱg%E]u/LFk_zmYڕR-Ծ!Xti)IDɉjuyx>kXq'Of :}Jc13`QEbSwdk+hXpHElR{#srKW*fU(/{70(#j\+ϴyNieھb4ĦS4.U2u9@`^qQn>!=>FM捵T]qo`P$ֽC̉@wgB苈[8y
G||B    	H2+prNlZ8V=9'6-d
!h\Tћ[.:$6g
WҴO aKiZw
*C<"	ǭ򋨹-WLuݻ`&\r;Df~4[)vC#hc1Bc"@ $}J=һ2m)/K0ܲRwl+pHd"GĨ?,V}"3NǇI86ԁϦ(z&ڷ?,:Px̛j_FbT~^.9À]|i-o%;Ȭ}cn蜻{;x	&nY욚One~!ٺ6Jo	|)1#1*?0ƥf57tNʦа3JAP/֍vMMCMT̪䖵шLj,QFe^5]tsA.ZgRV3Gmaz7Y<'Ω5a<zGYs?Uy7sS[_o=ۆxDʯ>h4,8$@_£r%I(<Aq9شdVa{˶p2\tHlWBиPQS~Ae:'^;kEXKU 0vmv%LO*ˀ&5DbIޱZg%E]/uLFk_mzڕRY-ԾXt!)IiDjuxykX>'qOf }:cJ1`Q3EbSdwk+XpHhElR{#srKW*fU(/{70(#j\+yNie4bĦ4.SU2u9@`^qQn>!=>FM潵Tq]o`P$ֽ̉@CwgٞB8[yG|
|B    	H2+pNlZrV8='6-9d
!h\ћ[T:$6.
gWҴOŢa iZwK
⓺*C<"	ǹ-WLu`&\rDf;4[~vC)#hc1Bc@" }J$һ=2m)K/ܲ0Rwl+pH"GdĨ?V},"3ǇIN8ʢ6Ϧ(z&ڷ?,:Pxj_bT~Fظ^.9ï]|iГo-%;Ȭ}nc{;	&xnY욷Oen~!ٺJo6	)|11*?#0ƥ5f7tNʰ3JAP/vMMCT̪MѵLj,FeQ^]5st.AZgR3VmGaz7Y<Ω'5a<zGY?Usyοs7S[_=oxDہʯ>h,8$4_£@r%(<IAq9شdVa{˄p2tHl\BиWQP~AeS:'^;kEXK 0UvmvL%O*&5DbޱZI%gE]/uLFk_mzRYԾ-Xt!Ii)DujyxX>k'qݾO f}:cJ1Q3`bSEdwk+pHhXElR{s#rKWfU*(/{70(#j\+yNie4bĦ4.SU2u9@`^qnQ>!=>MFTq]o`P$ֽ闉@CgٞwB[8yۡ|
G|B    	2+HplZrN8V=6-9'
dh\![T$6.:
gWOa ZwKi⓺
*<"C	ǭ-WuLݻ`&\rDf;[~4C)v#ܶhc1Bc"@ J$}һ=2)m/Kܲ0Rw+lpHGd"Ġ?V},"3IN8ʢ6ϥz(ڷ&?,:Pxj_̛T~Fbظ.9^ï]iГ|o-%Ȭ;}cn;{&x	nY욷One~!Jo6	)|1*?#1ƥ05ftN7ʦа3JAP/vM֍CM̪MTߞѵLj,FeQ^5]tsA.gZRV3mGa7zY<Ω'a5zG<YUs?ys7S_[=oxDۆʯh>8$4,£@_r%(<IA9qشdV{˄a2pHl\tиWBcc||ww{{kkooT00P`gg++}VbMvvE@}}YYGGɎAg_E#Srr[uᓓ=&&jL66Zl??A~O44\hQ4qqs11Sb?*R##eF^(07
/	6$=&''iNuu		,,tX.4-6nnZZ[RR;;Mva})){R>//q^SSh    ,  `@㱱y[[jjFg99KrJJޔLLԘXXJk*ŪOCCņMMך33UfEEϊPP<<Dx%KQQ󢣣]@@?!88Hpcwu!!cB0 mL5&/__ᾗ5DD̈9.WU~~==Gzdd]]+2ss``OOў""fD**~T;FFʌ)Ǹk<(y^^v;22Vd::Nt

IIے
$$lH\\]nCbbđ917yy2C77YnmmڍdNNҜIllVV%eezzGoxx%%oJ..r\$8WsQ#|tt!>KKݖapp>>B|qffHHؐaa55_jWWiX':'8똘+3"iip3-"< IUU((xPzY	e1BBƄhhAAÂ)--wZ{TTm:,cc||ww{{kkooT0P`0gg+}V+b׫MvvEʂ@}}YYGɎGAgԢ_E#Srr[u=&jL&6Zl6?A~?O4\h4Q4qqs1Sb1?*R#eF#^(07
/	6$=&'iN'uu		,tX,.4-6nnZZ[RR;Mv;aֳ}){R)>/q^/SSh    , `@ y[[jjF˾g9Kr9JޔJLԘLXXJk*OCņCMךM3Uf3EϊEPP<Dx<%KQQ]@@?!8Hp8cwu!cB!0 mL5&/__5D̈D9.WħU~~=Gz=dd]]+2ss``OўO"fD"*~T*;FʌF)k<(y^^v;2Vd2:Nt:

IےI
$lH$\\]nӬCbb917yy2C7Yn7mmdNҜNIllVV%eezzGoxx%oJ%.r\.$8WsQ#|tt!>KݖKapp>B|>qffHؐHaa5_j5WWiX':'8+3"iipَ3-"< IUU(xP(zߌY	e1BƄBhhAÂA)-wZ-{TTm:,cc||ww{{kkooTP`00gg}V++bMvvEʝ@ɇ}}YYɎGGAg_E#Srr[u=jL&&Zl66A~??O\h44Q4qqsSb11?*ReF##^(07
/	6$=&iN''uu		tX,,.4-6nnZZ[RRMv;;a}{R))>q^//SSh    ,`@  y[[jjFgKr99ޔJJԘLLXXJk*OņCCךMMUf33ϊEEPPDx<<%KQQ]@@?!Hp88cwucB!!0 mL5&/__5̈DD9.WU~~Gz==dd]]+2ss``ўOOfD""~T**;ʌFF)k<(y^^v;Vd22Nt::

ےII
lH$$\\]nCbb917yy2CYn77mmdҜNNIllVV%eezzGoxxoJ%%r\..$8WsQ#|ݜtt!>ݖKKappB|>>qffؐHHaa_j55WWiX':'8+3"iipى3-"< IUUxP((zߏY	e1ƄBBhhÂAA)wZ--{TTm:,cc||ww{{kkooT`00PggV++}bMvvE@}}YYGGAg_E#Srr[u=L&&jl66Z~??AOh44\Q4qqsb11S*?RF##e^0(7
/	$6=&N''iuu		X,,t4.6-nnZZ[RRv;;Ma}R)){>^//qSSh    ,@  `yȶ[[jjFgr99KJJޘLL԰XXJk*OCCŚMMf33UEEPPx<<D%KQQ]@@?!p88HcwuB!!c 0mL&5/__5DD.9WU~~z==Gdd]]2+ss``OOѣD""fT**~;FF)k(<y^^v;d22Vt::N

II
H$$l\\]nCbb917yy2Cn77YmmdNNIllVV%eezzGoxxJ%%o\..r8$WsǗQ#|tt>!KKapp|>>BqffHHaaj55_WWiX:''8+"3iip3-<" IUUP((xzY	e1BBhhAA)Z--w{˨TTm,:c|w{ko0g+׫vʂ}YGԢr&6?4q1#'u	,nZR;ֳ)/S  [j˾9JLXCM3EP<Q@8!_Dħ~=d]s`O"*F^2:
I$\Ӭby7mNlVezx%.tKp>fHa5WiَU(ߌBhA-TAES256 2.16.840.1.101.3.4.1.41 2.16.840.1.101.3.4.1.42 2.16.840.1.101.3.4.1.43 2.16.840.1.101.3.4.1.44 RIJNDAEL256 AES-256 AES192 2.16.840.1.101.3.4.1.21 2.16.840.1.101.3.4.1.22 2.16.840.1.101.3.4.1.23 2.16.840.1.101.3.4.1.24 RIJNDAEL192 AES-192 AES 2.16.840.1.101.3.4.1.1 2.16.840.1.101.3.4.1.2 2.16.840.1.101.3.4.1.3 2.16.840.1.101.3.4.1.4 RIJNDAEL AES128 AES-128       X   0           Y  
                            7      O              g   s       {                 Y  
                                                                           Y  
                           (     ?             V  _  f      LICENSE=GPLv3+  crypto gcry_rijndael                                                                                             
  ,        '  -                                	              
               $      0     :              Q              b              w   d   0            0      grub_mod_init grub_mod_fini memcpy _gcry_cipher_spec_aes grub_cipher_unregister _gcry_burn_stack grub_cipher_register _gcry_cipher_spec_aes192 _gcry_cipher_spec_aes256    F     M     X     c     t     {                                                       =    D    O    Z    k    r    }                                        !    .    <    J    X    f    t                                        }                                                	            &                                                                (    e    q    ~                                                     '    g    s    }        :    u                        &    6        -	    4	    B	    P	    n	    u	    	    	    	    	    	    	    	    	    
    
    +
    T
    m
    
    
    
    
                        #    .    3    :    ?    F    K                                    0     8     @     H     X     \     d     h     l     |                                                                                                  $    (     .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   T                    	   @       B                %               x2                 -      2        >  n                @             p?  0                 <   	   @       G  (              F             @                    V             @                    [              @                    d              @                                  @                 	              A                                  DH  m                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/efi_netfs.mod                                                                    0000600 0001750 0001750 00000063710 13417732100 0015332 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      e      4     (   =        U   j h    h   5    h   j h'   h   5       h:   j hK   h   5       hb   j hr   h   5       h   j h   h   5       h   j h   h   5       h              Ã=     t`U5   X5   Z5   Y5   X5   X5           á$   Uu  ]U    PuppR1U1]US]5$   $]]$   UWVS           SPtBǋtQQPh  tPV    SPtBǋtRRPh  tPV[<Be1[^_]UVS    t3    StPVs4h  4$[<ɍe1[^]UWVS5    tn^8tbCsEtHCsPUtPR3h  URtW[뚋v<뎍e1[^_]UWVS}5    t7^8t+PPW3u}   e[^_][ыv<ōe1[^_]UQRPUWVS0]}WRPEԉU   EMU     </u[PAj WQUЃ=            M9        )   EBUXq   B   UE7hPWVutdEU    </u8Qj WzW=     u9<w5U: u-FF t   uFF t    1Puh  j e[^_]US h;  t:RRPhQ  tP1SEE1]US h;  t:RRPh\  tP1SEE1]UWVS}5       ^8   PP3h\  XY7URUuCSU@;RXZ3hQ  YX7URUuCSU e[^_]R[kv<Xe1[^_]UWVSP]jhk  S        uCQQhp  Su$   Ef  E   7RRj,St@)ىMESE$   Eރ} uPPht  j    PPj EPEM֍UE    }tw} }t7Uֹ   G    tUPP    WRUPUu>R<ލU       tPP    WRUPUuR<1    u!       uPSh  j   }u*PjVh  uh    @    @   _}uMWjVh  u    @    !PjVhf  u    @    @    QSh  e    RRPpp$0   t-uuSC$   1e[^_]UWVSujLá       UL   CxVGC@x uSK    PpVSppR PPh   Su#C@p$    EL   V1e[^_]UEx uE  E&   ]1]UjRPE    u	PPh  QQURPUtRPh  j1҉UWV1SӃ(h (  EǅtI     (  ڋHv (  RWuppQ WEE)볃We[^_]UVS]CsSHAI 9rw9v)I9rwJ9sF    RPSppR    YPpKIqSppRS Ct    PuuSppRe[^]UWVSÃ,U܉MWWj:S  Sz  Pjh2  Sux߃)GPEue[^_]EESU8 PPj/RUԅEu(Vh6  ha  jghg     CA})׃v4{[u.|;]Gu$Pt-OS\D> 0GPUUԅu
.)> uuVYuGPPj/St_  }RVWhu  M܉$M؉5$   <$$$Vh{  ha  j^hg    럍e[^_]UWVS}u_8t9Ctl[jZu{CG8C    > u    C_8WCuVsPu/Q1Qh  j&3Xu뼍e[^_]UVS@u}E        E    t SSh  "QQvs4t[<uRRh  jbPPFURURM΍UouCEEt
   U   UƍE4EuP6S1u    e[^]UWVSHuVUЉE̡    @<RURh   Ph,  EЋ    M  }   M9tI<ME;puEċXE;puX    V1}ЃÊfKCfM   <uMCUl<u-uˍS   E+S   EE    '<u7uS   EE@E E   EjWp4PƊ<u
{  EI{8    E         E     fzf
fG9rPftKf;u?GPUULMU> 4$)uS8   Eԍ]ЃjSE@E E        `  PGPGPGPh  Ph  MXZh   WMtWWj/PuE   C8   5$   uЍPEnS8   E؃$[jVE    Ep4P   SS0h;  5    tt^8thPP3h\  j h  P<$<$ZY3hQ  j h  P<$<$[딋v<눍e[^_]US5       pHfXu[uVXSh  h  h/  hg  jh  S   t,Pjh  S1҃ut1҉Ћ]US5    t@pHfXuux$ut1]UWVS<EPj h   j|  1E܍PU  4  Pjh   4Ei  Vjh   4   Eȋ/        EtQjh   PEE    h           EtRjhX   PEE    H           tPjh8   RUU1Ƀj@MUUMu-S    7  X<P    ܋V,N0ẺFEȉFEĉFEԉFEF$EЉF(    F<PPWh  F8    5    F4GLEPj hx   jƉE   EPU   6   P$E    8u0Pu @f@ u @f@ E       tS2UZYPWU̅tR<Pjhx   6UU̅t}    JB WuS    u}   CVjjPE    t"s4h  hZ  h  hg   Ct8WjjPE    t"s4hc  hZ  h  hg   [<vJB1Ph  hq  h              $  h  hq  h  $  h  j h;  $;  j h  h  $  j h:  h  $  ZYh  h  h  j h  $  e   [^_]UWVSh  5    tn^8tbRR3h\  j j P<$<$Y_3hQ  j j P<$<$[뚋v<Pj j h  $  j j h;  $;  j j h  $  j j h  $  j j h  $  $                   e[^_]U)   ]U(   ]USP]C@tPCC@    C    C    C4    C8    @@    @     1]UWVS}uW@t^} tXtTG@HX G4M]1M];_8rw9v+EtUPVRuG1ҋHqQ 1e[^_]UW  VS   d    }\E  @<UE  E  tE  E(  u  ESPEPVtE8 u\VWh9  \VWhE  p    p   pV`ÍD $ǉXth11yp      ` ta1Ƀ`)`ҍNl   ˃  JÉȃ?	؃   x  lh uXu)fC  p1} 4$j EEEEЉEEEth1  jh   ]E   E    E    E    E  )    P4      uc>xVȃ<uȃ      ȃ<uȺ   ȋl<upȺ   u|hw=  vP=  vD  
ff fWff fWhll?   hfG1i   _dQQVPPt&tuPDZuVhu     =)    udPPEuVj h=  jh   EtE    E    E    E    E    E    P4 t#tuPDXuWhO  VEEPPdVE    P(    Pt3tuPDXuPDXuVh  j   =(    udPPE0t}EątPtP0tuPDXuPDXu    uh  Ѓ\Pjh  ЃVPj)   } t\E1     @    ;u}EEč<    SSh  4u"EQj
j t8MA    F붋EątPtP0tuPDXuPDZu1e[^_]UWVS`uE]PEPF@0Ft%U: u@ۋ  t  WRPh  @ۋ  t  QRPh  tMh  XZWh  <$FPEJ@j jSZ  
    N  F}PEQJ@Wj S%  u}EEX    @<EuRRh&  j&   EURj h=  jh   UP4E EEE    E    E    EEԉEPPu}E  S(    St$EEuPDURhI  j/=(    uSSEE)wEuPDEUF<    F4EV8F@F@@    @     1e[^_]UWVS`}u]֋Gjj VE} E   E  tbGMSQjPEE   P=  uh[  tPPWh|  bPjS}WfE  }Wjj SE EfE  ]EQQVPP=  ttRPh  je[^_]USP]CC    C    C4    C8    @@    @     C@tPC@    1]UWVS<Eut^ ^K89 Mu!RRPSSth  EĀx tjVjE   U   U}PWjRR   PEjPV   QjVWj WsVjE   UtzU}PWjRRuYERjPVtNPjUVRUjFPWUăWRSS0th  Ve[^_]UW1VS<8[UĉEu@f EԋEԀ8:ux:t1   @Eԃ1ۍMԋEԀ8:u	@ډEKHURjQPMM=     Ut           ufD]؋EԀ8:u
@EC~tt=E؍P))ڍD PQDUPM   M)؃Pj QPjEPutEԀ8]u@EԅtEԉ   e[^_]UWVSLE} ]E    E    tp pF8x Ct0@}ȍM tIE8 uAPjWEP/@1Uȋ EQj
RuȉUUEȈD=GuRRj j uEPj EPj j jVV0tPPh  j0EUC<    C@    C4CS8@@    @     1e[^_]UWVSLE} ]tp p1ҋEUUċS@EECt0Qu@PRuCM]@HX Ef  @P PtPPh     V8z t- }ȍM@tFE8 u>PjWEP, 1UȉEPj
RuȉUUEȈD=GuWWj j C@pEPj EPj ujVVK809MċUu;S4tVVh  j&n=  uXRuSSh.  jJQQj j C@pEPj EPj WjVV0uPPuWu 1tRRhB  j1,CUM@PH t{@EW뺍e[^_]UE@ujjPɅUE@ujjPɅUWVS(h   E   tDP}Wj VV=  uSXuPWj VV tS1ۍe[^_]UVSjE   t PEPjVVڅtS1ҍe[^]UWVSE@+t]PpU1;U}Dk}Ht1I?	t+!9u%]s8t~ uPvB뷃P1e[^_]UWVS]} u{uAFt#PjBPSUU$CC	C
C FWjjPe[^_]UWVS(ku~Wt;1;U})EUMPhV  WQMUBD3 1e[^_]UEVS@tPPCHPsD$1e[^]UVS]jt$PCPCPCPPh\  jV e[^]UWVS,E@K  @p   PEt1E       V  x uMԋ@uGEЍGPE؋<$EEGEȋG1t1Ƀ9       )σu} Euq}    }    uXuZuE܋E;Fp   Ek}~tE    @8+A hu} uEԅtMPEWuSp4Uhh  TfMu؋UCEWuq4hz  )EMu؋UCEWuq4h   ]}    V1e[^_]UEVS@tP$1e[^]UWVS1ۃEu}E    ERj Wu=     t        M9.t	uE* t1MU	Ut9.uCAMuEEPjEPutEH   e[^_]UWVSE@X2  h   1E!   E܉M   FۉEffEt] $=  wE   
 $  J?ɀJ?Ȁ?ɀJB?Bu1|wEA  wEJ?ȀBN (  v> $  w?B,΃BE?ɀJ?ȀBˋu WE1e[^_]UE@ujjPɅUE@ujjPɅUWVS(h   }E   PWj VV =  uSXuPWj VV tS1e[^_]UVSjE   t PEPjVVڅtS1ҍe[^]UWVS]} u{u$FtPSPC@FWjjPe[^_]UWVS<E@   XpE    ]]9]   kM!HtQ    }@qu]ԋ_]Ћ_@]̋_Dy]ȋY}ċy}   @   )щ t1E    E    #}#u9uD;uu?Űu؋}܋M!!;Mu*;Uu%UZ8t{ tPH[E,P1+   )։ t1u؃}܉oe[^_]UEVS@tPPCHPsD$1e[^]UWVS8j(   11}u   EfpftDt:CPh  jWMЉUXZWS<$UԃMÃuu:Cu
:C0Fu 1e[^_]UWVS<E@  @p   PEt1E    lW  x tU܋@uEE4  EE(  EE   E	   uXuE؋E;Gpe  kM!OtQMMM܉EԍA$M܃E    YEEċAEAEAEAEЋAE̋AEȋE@89} bUЋĔ  	u1E	u*y @u$Eu܍^4Ej@up4h     Eu܍^4A PEup4h  iEEuE	t$Euԍ^4A PEup4h  6EEuEEEuԍ^4A PEup4h   u]    W1e[^_]UEVS@tP$1e[^]UW1VS<E8[Eu@f EԋEԀ8:ux:t1   @Eԃ1ۍuԋEԀ8:u	@ډEKBURjVPUă=     t           ufD]؋EԀ8:u
@EC~tt8E؍4))QD PVDUP   )Pj VPjEPutEԀ8]u@Eԃ} tEԋM   e[^_]UWVSE@
2  h   1E!   E܉M   FۉEffEt] $=  wE   
 $  J?ɀJ?Ȁ?ɀJB?Bu1|wEA  wEJ?ȀBN (  v> $  w?B,΃BE?ɀJ?ȀBˋu WE1e[^_]UWVS       $$   }    Pj$j dP$   E   4 74@4@4@4@4E$ZYd@(QPP^4t/WWSh  hPPE0$p4  H$@(VVj PPt
SSPh  !$U@(QQRPtRRPh&    $X8t{ t[PjEPPPjEPTPۍLu8$PPs4hA  jVǅL    PSWPCjVsPQjEP<V_XC8VsP$Eq(j WPV ǅ8    V  =     8P   PW VV ur89tf9uYIuQtMj  uR RjPW $@떃R18tPPC8RsP$@<	e1[^_]UWVS       ǅt          } @<p   j	f  f@ f@ ;f@ ||EЋtZYUĉE؍EEC0RE   PE   E    E<   E    E    E   fE E    E E P4$t)PPWhI  VPPE0s4  2C0PPt
VVPhe  C0UQj RPtRRPh&  ]  s8t~tvPEj}PEPE@E E   u2PPs4hA  jWPSllRPFjWvPUC0}j WrE    PP =     E   PMC0RWqlPP  lu}1trRd@9t5f9 ulRjQ}WYXFWvPltRpuP0XuP0[<tc1҅ke1[^_]list network routes  net_efi_ls_routes list network cards net_efi_ls_cards list network addresses net_efi_ls_addr Add a network address. SHORTNAME CARD ADDRESS [HWADDRESS] net_efi_add_addr perform a bootp autoconfiguration [CARD] net_efi_bootp net_efi_bootp6  %s
 %s %s
 %s %s %s
 unrecognised network address `%s' net_default_interface net_%s_mac net_%s_ip tftp pxe: pxe no server is specified disk `%s' no route found https http disk `%s' not found invalid net device couldn't open efi service binding protocol Failed to create child device of http service %x :// url: %s is not valid, host/path not found
 bootp net/efi/net.c %s,%s url: %s is not valid, protocol not found
 Set Address Failed three arguments expected card not found %d.%d.%d.%d tftp,%s url:%s
 efinet https:// http:// efinet%d could not set GRUB_EFI_IP4_CONFIG2_POLICY_STATIC on dev `%s' efinetfs could not set GRUB_EFI_IP6_CONFIG_POLICY_MANUAL on dev `%s' net_default_server pxe_default_server net_default_ip net_default_mac efi grub_netfs_type efi netfs https http Host Accept */* User-Agent UefiHttpBoot/1.0 %s://[%s]%s %s://%s%s Fail to create an event! status=0x%x
 Fail to send a request! status=0x%x
 Fail to receive a response! status=%d
 file `%s' not found unsupported uefi http status code 0x%x Content-Length %s://[%s] %s://%s root_url Invalid arguments to EFI HTTP Read Error! status=%d
 The MANUAL ADDRESS is not found
 ??? %d
 couldn't configure http protocol, reason: %d Couldn't start PXE
 Couldn't set station ip
 Couldn't get file size No Offet Read Possible Short read should not happen here ERROR OUT OF MEMORY Failed to Read File %02x: %u.%u.%u.%u %s:local %s/%d %s %s:gw %s/%d gw %s %s:default %s/%d gw %s %x %s:link %s/%d %s %s:local %s/%d %s %s:gw %s/%d gw %s %s:default %s/%d gw %s dhcp4 configure failed, %d
 dhcp4 start failed, %d
 dhcp4 get mode failed, %d
 %s:dhcp dhcp6 configure failed, %d
 dhcp6 start failed, %d
                   	  	  
                ׺ȇS@9_][J/Cz!NaGKڞV9BsJՎK(- '?MYzqABZ[[ȽyC*]!M)H
nD[O6T`!      I  #  %  &  "     *  ^-  W+  w)  )  p(  (    >2  w5  03  0  0  /  /  8;  &8  LICENSE=GPLv3+  LICENSE=GPLv3+  bufio efi_netfs                                                                                         j                                              	               )              6              L              X              e              u                                             ^          (                     ,                          H      5      5             O             Z             f                                                                                                               +             C  6  Z    _  J.  Z    {                                                                                                                                            &         9  m*  d     W             b           x                                         ?         O          `                                 -       ;          N             g  |2                   +  H       ,                                                                         grub_mod_init grub_mod_fini grub_strlen grub_strncmp grub_efi_system_table grub_strcpy grub_strrchr grub_env_export grub_xasprintf grub_memmove grub_strdup grub_efi_net_create_interface grub_efi_net_bootp6 grub_efi_net_list_addrs net_devices grub_snprintf grub_efi_net_fs_fini grub_efi_string_to_ip6_address grub_efi_get_loaded_image grub_errno grub_memset grub_register_variable_hook grub_efi_image_handle grub_efi_net_list_routes grub_net_open grub_register_command_prio grub_efi_find_last_device_path grub_efi_compare_device_paths io_http grub_printf grub_unregister_command grub_efi_ip6_interface_name grub_efi_ip4_interface_name io_pxe grub_efi_locate_handle grub_efi_net_config grub_print_error grub_zalloc grub_strcmp grub_strchr grub_malloc grub_efi_open_protocol grub_real_dprintf grub_env_unset efi_net_ip6_config grub_efi_hw_address_to_string grub_error grub_efi_net_add_addr grub_list_remove grub_free grub_strndup grub_efi_net_boot_from_https grub_efi_net_fs_init grub_efi_net_boot_from_opa grub_efi_duplicate_device_path grub_bufio_open grub_efi_string_to_ip4_address efi_net_ip4_config grub_efi_get_device_path grub_efi_ip6_address_to_string grub_efi_net_list_cards grub_efi_ip4_address_to_string grub_efi_net_bootp grub_env_set grub_gettext grub_memcmp grub_env_get grub_strtoul          <  &     +     1     6     ;   !  E     J     P   D  U     Z     _   !  i     n     t     y     ~        !               7               !               F               !                              !           	          &  $    )  &  0    5  &  <    A  &  H    M  &  T    Y  &  ^    g    r    ~              9                    A        %  3  9  A  9  I  4  l    q  %    9    9        A        %    9      H    M  %  \  9  l  9        .              	  @  4  K  @          K      $    +  6  B    G  J  V    [    m  J    9        J            J    9              *  .  K  9  T    Y    h  .    9                    .            /  ,  
  7    I    y  ,        4        A          	          6  -    2  I  >    E  $  ]    b  I  n    u  $        I        )            -        9      	  0  (	    N	    k	    	  ,  	  ?  	  9  	  9  	    	  9  	    
  6  
  1  -
    I
    P
  6  s
  0  
    
  9  
  9      %    X      /    
        I    0    ,    /  (    -    4    9  2  j  0    0    ,        ,    9                      !  9  )  9  7    <    C    H  2    0        4    A        6    9      #    3    B  .  W    ^  6            B              b  B        0    9      	            +  :  A    ^              G                            9                      &  9  H    M    c  B                2                            B  _    f  *    B        1        1                1          1    7  1  N    Y    k    t  1    0    9        9                        4    ;  *  f  B  z  >    "        B    #        1  )  9  ?  9  K  9  Q                  2                2                +  	                     $    ,    1    6    ;    B    G    O    V    [    b    g    q    v    {                                          G                            3              )    1  3  9  9  B    G    V    ^  3  f  9  }              3                3                3                3                3  	      +       "  8  6    B    ]  9      %    :    K    X    _    l    s    z                          
    0     9  %      9          T  9  ]    h          9          D  9  M    Z      9    H            6  $    ,  .  D  K    9                                     #     (   3  0     5   G  =   9  m        0                 0!    V!    ]!  6  e!    !    ."    3"  %  D"    I"  %  X"    r"    "    "  6  "  ,   #  9  P#    U#  %  x#  0  #  I  #    #  0  $  I  '$    6$    Q$    V$  %  b$  9  $  K  $    $    >%    V%    h%    %    &  K  R&    Y&  6  &    '    F'    d'  K  '    '  0  '    (    %(    ,(  6  1(  ,  _(  9  (  0  (  9  (  0  )  9  ?)  0  e)  9  )  9  )  9  +*    6*  9  *  0  *    *    *  5  *  9  +  0  ?+    G+    +  0  +  9  +  E  +  E  ",  E  S,  9  \,  9  e,  9  ,    ,    $-    )-    I-  9  y-  E  -  9  -  K  -    -    ,.    u.  0  /  9  0  0  "0  9  +0  0  G0  9  l0  0  0  9  0  9  1  9   2  9  ^2  5  h2  9  2  0  2    2    2    2  
  ]3  0  {3  9  3  9  3  9  3  C  4  C  4    4    5    >5    C5    b5  9  5  C  5  9  	6  K  6    6    s6    6    6    6  0  8  9  38    a8    t8  0  8  9  8    8  .  (9    K9    P9  %  9    9    9    9    9    9  9  9    S:  0  :  0  :    :  9  :  9  F;    ];    z;  0  <  9  <    .<  .  W<    u<    z<  %  <    <    <    <    <  9  >=  0  v=  9  =    =  9                                       $     (                                                                                                                 $    (    ,     .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   >                    	   @       P  X  
            %      2       ;>  }                8             E  0                 4   	   @       @d    
            >             F                    N             G  0                  S              G                    \              G  
                                G       
         	              K                                 Xe  e                                                                          boot/grub/i386-efi/linux16.mod                                                                      0000600 0001750 0001750 00000020574 13417732100 0014677 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   U1   WVS,]}u	VVh    =    uSSh   j   5     HdrSuf  f=wQQh4   jf=7v,  7v7    t9vǡ   REԍEPuS   EP  }j jh      P)RWEP5   0uSuEXuUԃRuǍEPu    EP    e[^_]U5$   X5          1       UWVS@   j j hU   C f]fE fEfE  E     1	   f]Ɖf]ȍuf]f]5   e[^_]UWVSEU}M]EU       	    ȉEU w=	 vE  
 )ME    ]   1҉   )׉EUƃ w  	 v  	 19r&w9r ]{9wr9wGuBu]3C1[^_]UWVS  5$   } uS1S1h    jO  E03  p4VuQQhi   j  RVPW9t=       PE0h     Phh  SPf~UtPPh   x  q@vPPh   a  }HdrS                 fEf=   MEr΃f=tv	E@   PPxPh  pǅxǅ|xp   uPPh   j   fMf vMffE t
   EI   fǅ?fǅ f- pfE(fǅ?fǅ      	 ǅt    uO4h	p)t     u(5      b   9vVQh   j-  Z   VRpPh  hA  h   hG           ;uh  EQjh^  4   ERRhc  PltQPPhj  lt3PPhn  ltPj j l=     H  fz   EQjhr  4   ExRj QlPx=         t        AxJw ktmt1Ƀgu
   1Ƀ
1Ƀ
9v            F      P5   xP5     xhh  RP   phPh  P   h  P}HdrSuf}w)Vh?   )	P@	   j P   Qjhw     P   P     Puu t5   %     PxP5      xp5   3   RP=     u#Rj hX  h        1ۃStW=     t'5$   X5              e[^_]UuKj h  j h  h  j h  j h    h          E$   Uu5   X5    U   VS	sWws0@u[^]USRt%@C3$]UWVSÃ Ejh  SEC1rUCgC1]C1SC&   FC.1<UC61C>1'CF1CN1CV1	C^Cf1VSnWRUU)Sj Ve[^_]UWVSÃ,EME    ;/uCtC</u   6)хt.PQR6MԉUU؋Mԅt<    v΃jUU؅tzFQ)QPR} t@PPSuh  h  h   h  UEj j hA  )DE+E7qE܃E1e[^_]UE]@UWVS]{ tA1;3}&CFt8XC48փsC    e[^_]UWVS8E]E        C    P=    C  C    1E    E;E  MUԋEЋCCWjh  4   EUԋE̍x?/uGQQj:WE   u)                     KRRPWMMЃACD0   {P1ɍUqǋC{D0   RǋẺ{@EtCx1EE    }ԃ                     CuEŨC8 uS=    ?EԋQ4I8PHCD8Cm1tCxCE|e[^_]U11W1VS,u]E    ;>  ؉PQj SUȉMMԉUȉEˉFDtVٍUËEFPHpUȉMVMԋT
ủuȉh     2t.Q  j 
   j j ËE1E    EFUȋHRQS0MMԃU9t2=     uER4h  jV    EGt/؉ƃPVj S
   j   j j 34E1e[^_]ÍPU	v߃A<   ]UW1VS1ۃt_\u:~xu4FUMMUtFMUt뻀\t
't"uC
 u   CF뛅tt:ZY[^_]UW}V1S1;u}1FY\u[^_]UWV1SM;u   EUM<M@9E   )EEEt"Aˊtg\uFxu@GUU܅t-GU܅t\GCGCGC므\t
't"u\CCGC듃} tC "KF ? [^_]filename expected you need to load the kernel first the kernel is too old for initrd text bzImage zImage cannot allocate kernel buffer premature end of file %s invalid magic number too many setup sectors no appropriate low memory found too big zImage (0x%x > 0x%x), use bzImage instead [Linux-%s, setup=0x%x, size=0x%x]
 linux loader/i386/pc/linux.c vga= normal ext ask mem= BOOT_IMAGE= Load Linux. linux16 Load initrd. initrd16 070701 Creating directory %s, %s
 linux loader/linux.c newc: TRAILER!!! premature end of file %s   LICENSE=GPLv3+  video boot relocator mmap linux16                                                                  \        	  .                                                                           )   .  0     B              ^              r                                                                         ^                                                            7        H             ]             u                                                                                                        
                                           8             C             M             Z             h    [     z                                                                  grub_mod_init grub_mod_fini grub_strlen grub_loader_cmdline_size get_virtual_current_address grub_video_set_mode grub_memmove grub_relocator16_boot grub_relocator_alloc_chunk_align grub_dl_ref grub_mmap_iterate grub_create_loader_cmdline grub_relocator_unload grub_errno grub_memset grub_register_command_prio grub_initrd_load grub_efi_secure_boot grub_unregister_command grub_file_read grub_get_initrd_size grub_zalloc grub_strcmp grub_strchr grub_malloc grub_file_close grub_file_open grub_initrd_init grub_real_dprintf grub_relocator_new grub_file_filters_enabled grub_error grub_free grub_strndup grub_dl_unref grub_initrd_close grub_memcmp grub_loader_set grub_strtoul get_physical_target_address grub_relocator_alloc_chunk_addr       '     1     8   '  F     f                  #                       /  %    D  +  I    `    e  *  l    r    {                            j                  '    "  /     ?    O    \    n                                4    K    T                              '  )    7    <    F    K  $  S  %  Z    y      ,                            .  	    '    /  ,  _  .  h    n    v                          0      '    ,    E    P                                              0          )    2    =    B    G  -  M    a  (  q  !  z          *                                                          	    	    	    %	    *	    1	    6	    	  (  	  (  	    	    W
    m
    
  ,  
      )  *    /    9    >  $    (    !    (      !    h    p  ,        &    &    &    )    
  \  &  f  &  p  &    "    +      1    z  
                    '  '  +  ,    N    ]     .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4   @                    	   @           	            %      2       t                  4                                  :                                 J               (                  O                                  X                                                    
   
         	                                               8  a                                                                                                                                                      boot/grub/i386-efi/efi_uga.mod                                                                      0000600 0001750 0001750 00000011170 13417732100 0014760 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      p      4     (   U1]UEuL   E]U]UVS`   UuR]URURURP    t	;u  t	;]  Eąt	;E   Eh              E                      T   $      (      ,         X   0      4      8       P   <      @      5P   h    hL       u75L   u"Rh    jj PPh    je[^]UjTj h    U   WVSju  E1     j   u  ƉÃffډfu1uuuh!   hM   jshP   E0E  E    1u#uE@  EF  EǉȉE1)}ܸ   t   uuRPh`   hM   h   hP          Ex ux M؋]܉XE@EE1<  u9     u9}A    E@@=  u   =   uFEe[^_]UjLh    uEP   1UVS(j h      EPEPEPEPS    j XZEE j ujj j j j j PSS(EPh  EX   ET   E    u$   tF           `   t9Hv                t@    e[^]Ã=`    tUh    no matching mode found VMEM MMIO Display controller: %d:%d.%d
Device id: %x
 fb video/efi_uga.c %s(%d): 0x%llx
 EFI UGA driver         p      F        (                                                                                                        ),A8wh9LICENSE=GPLv3+  video video_fb efi_uga                                                                                                                                       	               4              G              b              {                                                                      	             !             .             H             c             o                                                                                                        ,             S             q                                                                                                        4             K             b                           grub_mod_init grub_mod_fini grub_video_fb_map_rgba grub_video_fb_fini grub_video_get_blit_format grub_video_fb_get_region grub_video_fb_create_render_target_from_pointer grub_efi_locate_protocol grub_video_fb_unmap_color grub_video_fb_map_rgb grub_video_fb_scroll grub_video_fb_fill_rect grub_memmove grub_video_fb_blit_bitmap grub_video_fb_get_viewport grub_memset grub_video_adapter_list grub_video_fb_get_palette grub_video_fb_set_palette grub_video_fb_map_color grub_pci_make_address grub_video_fb_init grub_video_fb_get_area_status grub_real_dprintf grub_video_fb_set_active_render_target grub_video_fb_set_area_status grub_video_fb_set_region grub_video_fb_delete_render_target grub_error grub_list_remove grub_pci_iterate grub_video_fbstd_colors grub_video_fb_get_active_render_target grub_video_fb_set_viewport grub_efi_set_text_mode grub_video_fb_get_info grub_video_fb_blit_render_target grub_video_fb_create_render_target              $     1                                                                                	            "    +    4    9    >    C    H    X    ]     j  '  s    |      $                      A    F    M    R                                                      *  F    M    T    `  &  o  *  |                                              %                          +  $     (     ,     0   )  4     8   "  <     @   !  D     H     L     P   
  T     X     \     `   ,  d     h     l   -  p   #  t     x   (   .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                       	   @         P  
            %      2                          8                                 4   	   @       0     
            >             0                    N             @  d                  S              @                    \              O                                  X       
         	              8	                                   e                                                                                                                                                                                                                                                                                                                                                                                                                          boot/grub/i386-efi/gcry_rmd160.mod                                                                  0000600 0001750 0001750 00000017670 13417732100 0015431 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UE #Eg@@ܺ@vT2@@    @X    ]UE]UWVS   j@REP^uڋ^FMU]]ǋF}˹   މ11Ɖ]Ʊ
Éڋ]U1uЋU]1Éӱ
U1Ǳ1E±
ƋM}11ȹ   
}E1ñ1Ǳ
Mu1ȹ   1ƋEƱ
]11˹   ñ
Uĉ11ʹ	   ±
EȉU11ЋU
EE}ñ11ǋE
u1±1ƋEƱ
]ԉ11˹   ñ
U؉11ʹ   ±
E܉11ȹ   
}	E11Ǳ
Mu1ȹ   1ƋEƱ
MčyZ]щ!!	ً]˹   ӱ
]}ËMyZ!!	uʹ   ±
ǍyZu!!	ȹ   
4EMuyZ!!	֋U˹   
ƍ:yZ҉u!u!	uʹ   ±
ǍyZЉ!!	ȹ	   E
Ɖ؋]Mu֍yZu!!	˹   Í4;ӋU
Í:yZ}!!	}ʹ   ±
ǋM؍yZЉE!}!	EEȹ   
ƋMyZ]щ!!	ً]˹   
]ӋUÍ:yZ}!!	ǋEʹ   ±
Ǎ0yZu!!	ȹ	   
4EMyZ]щ!!	ً]˹   ñ
UU:yZ҉#U!	}ʹ   ±
ƍyZЉ!!	ȹ   E
ÉǋEщMM}!׍yZE!	ȹ   
M<01nu   	1ƋEƱ
MЍn	1˹   ñ
ǋMn	1ʹ   ±
UUƱnE18E̱
Uñ8nEE1ЋU<0E
0nu	1ȹ	   ر
EEƋMȍn	1ȹ   E
ǱnE	10E
UU0nE1ȹ   48Eı
Í8n}	1ȹ   б
EǋMEn1й   E
UUƱEn1ЋU8Eܱ
8n}	1ȹ   
ǋMԉEE1n	1ȹ   4E
ñnE	18Eر
UU8nE1ȹ   <E
ƍܼЉ#E!	ȹ   
EM̉]!Íܼ!	ʹ   
U}M7ܼ!u!	u˹   Í<]б
ƍܼЉ#E!	ȹ   
EM]!Íܼ!	ډʹ   
UUËM2ܼu!!	ʹ   ׋UǱ
ƍܼЉ#E!	ȹ	   ЋUر
EEܼӉ؋]!!	؋]ȹ   
E3ܼuǋM!!	ȹ	   Éuñ
ܼu҉]!!	ʹ   
ӋUƉ]!:ܼ}!	ډ}ʹ   ±
UUËMܼ!!	ȹ   0
UEǹ   0ܼu#E!	ЋU4E
ܼЉ#E!	؋]ȹ   
EEÍ8ܼ}!!	}ȹ   б
EuMܼ!!	ʹ   ։}Ʊ
NSӉً]	1Ϲ	   Ǳ
ËMNS	1ȹ   б
EEƱNS	3EE
UUǱNS	3EЋU0Eı
0NSu	1ȹ   
EEƍ8NS	3Eȹ   <E
ñNSE1ЋU
EE0NS։	3Eȹ   4E
ǍNS]	1ȹ   б
EEñNS	3E8
UUƉE3E:NSЋU<Eȱ
NSE1ȹ   0
E]]э3NSu	1˹   ñ
ǋMNS	1ʹ   ±
ƋM䉵|NS	1ȹ   48
uދ]Ɖx;NS}Ӊ؉	ЋU3E4   EƱ
Ép]tu拢P	ЋU1ËEËMӍ拢Pщȹ	   	u1}č8拢PE}	1ȹ	   
É	17拢P}ι   Ʊ
M9拢P	1Ϲ   Ǳ
M拢P	1˹   ñ
ƋMԍ拢P	1ʹ   ±
ǋM拢P	1ȹ   0M
   ËM܉	3E1拢P   ƋEƱ
M9拢P	ȹ   1ǋEǱ
M䍜拢P	1˹   ñ
ƋMȍ拢P	1ʹ   UM
   Ǳ拢P	3E
ËMЍ0EU1拢P	ȹ   3EЋU
M489拢P׉}	1ȹ   M
   ǋM؉	3E拢Pȹ   
ƋME]$M\!ȉً]!	ȹ	   8
UUËM:$M\׉}!!	ȹ   0
UUǋMЍ2$M\u!!	ȹ   
UUƋMЍ$M\]!!	ȹ   8
UUËM:$M\׉}!!	ȹ   0
UUǋMЍ2$M\u!!	ȹ   
UUƋMЍ$M\]!!	ȹ	   8
UUËM:$M\׉}!!	ȹ   0
UUǋMЍ2$M\u!!	ȹ   
UUƋMЍ$M\]!!	ȹ   8؋]ȉUU
;$M\!}!	<   UǍ7}ر
э7$M\}]!!	ى}ι   Ʊ
Í$M\Љ#E!	ȹ   M}
   ǋM̉!$M\M!	ȹ   ڱ
UUƋMЍ$M\]!!	ȹ   ЋU
Í:$M\҉#U!	ʹ   ׋UǱ
M䍴1>pm	1ι	   Ʊ
M>pm	1˹   ñ
ǋM>pm	1ʹ   ±
ƋM>pm	1ȹ   
ËMč9>pm	1Ϲ   Ǳ
M1>pm	1ι   Ʊ
M>pm	1˹   ñ
ǋM̍>pm	1ʹ   ±
ƋMԍ>pm	1ȹ   
ËMȍ9>pm	1Ϲ   Ǳ
M؍1>pm	1ι   Ʊ
M>pm	1˹   ñ
ǋMЍ>pm	1ʹ   ±
ƋM>pm	1ȹ   
ËM9>pm	1Ϲ   Ǳ
M܍1>pm	1ι   Ʊ
Mȍvmz]щ!!	ً]˹   ӱ
]}Ívmz}׉}!!	uʹ   ±
ǋM!֍vmz!	ȹ   Eι
   Muvmz!!	֋U˹   
ƍ:vmz׉}!!	}ʹ   ±
ǉ}}ԍvmzЉ#E!	}ȹ   0؉M7vmzu
   }!!	֋U˹   ]
ƍvmz׉}!!	}ʹ   ±
ǉ}}vmzЉ#E!	}ȹ   0؉M7vmzu
   }!!	˹	   ËM4ӹ
   ËMvmz׉}!!	}ʹ   ±
ǉ}}܍vmzЉ#E!	}ȹ	   ر
vmzƉ!!	}˹   ñ
UU]vmzU!!	ʹ   ±
ǋMЉ}1vmzщȉ!!}	ȹ   Ʊ
ËM9vmzщȉ!!	ȹ   ǋEǱ
Mȉ11ȹ   
]11˹   ñ
UЉ11ʹ   ±
u11ι	   Ʊ
}11Ϲ   Ǳ
E11ȹ   ȹ
   Ɖ]1Eȹ   1Í]
U1É1ʹ   2U
]1u1ι   Ʊ
>ƋM}11Ϲ   Ǳ
}U܉11ʹ   2ʹ
   uU1ñ1։Ʊ
M}11Ϲ   Ǳ
}]ǉ11˹   ñ
Ủ11ʹ   :M
   M}1ك1Ϲ   Ǳ
ËMpUQ|x]]uEtUUAyQe[^_]UWVS}u]X@u$Wh   GGX       X u!ىE/GX?PFWXVKTuPj j WubU)ʃ?vMqMGX    G@ڃ؃?h   މE1;Et_X?SWX@Te[^_]UWVS]j j SsCX <    	փ7PSXDCX7@PSXD CX?PSXD Pj j Sj8j CPCPCQCRCSCTCUSCV CW Lh   CCCCC CC$CC(e[^_]UE    ]Uh    RIPEMD160 1.3.36.3.3.1.2 1.3.36.3.2.1      <      0          ;  (  8   \   @       
          0!0	+$  LICENSE=GPLv3+ crypto gcry_rmd160                                                                ,          <                                                              	        8     /              6              G              N              a              r       0      grub_mod_init grub_mod_fini _gcry_rmd160_init memcpy _gcry_burn_stack memset grub_md_unregister grub_md_register _gcry_digest_spec_rmd160  Y     f                 2    8    C    H                       
                  0     4      .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   Q                    	   @         H   
            %      2         &                 8               K                  4   	   @          H   
            >                                 N                                  S                                  \                                                       
         	              ,                                  H  e                                                                                          boot/grub/i386-efi/efifwsetup.mod                                                                   0000600 0001750 0001750 00000003050 13417732100 0015540 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                             4     (   U   WV    $E܍}uPVh    E   E    t}u	U@	EjEPVh    ue^_]U   WV    $E}PEPh   E    t( t#j h%   j h    hF        e^_]á    tUP aʓ +OsIndications OsIndicationsSupported Reboot into firmware setup menu. fwsetup   LICENSE=GPLv3+  reboot efifwsetup                                                                              s   f                                                                       	               )              ?              Z              p               grub_mod_init grub_mod_fini grub_reboot grub_efi_get_variable grub_register_command_prio grub_efi_set_variable grub_unregister_command            3     W     \     h     ~                                                   .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                        	   @       4     
            %             (                    -      2       8  N                 <                                  B                                 R                                 W                                  `                                                                 	                                                  i                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          boot/grub/i386-efi/linuxefi.mod                                                                     0000600 0001750 0001750 00000017274 13417732100 0015217 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UWVS}u	PPh    =    u!PPh   j11ۃE    b  1    1PE@  9}KE                     4M   @4CP  Pj h?   uWWh4   j   PhJ   h\   jvhe        =   1ɉ    &؉ǉM܃QWj RUUMA9}S    EEM؋P4QRWPUU܃M9t=     u&EUW4h}   j      19}E4Gu   t =     t  R1VRP    e[^_]U5             t#    Q    R1RP   t#R    8     R1RP   tQ1j RP    tR1jRP1U5    1ҡ   RP5   UWVS(}5   } uRRh    ju  7E]  X4Su	PPh   aPSVu9؉EtP7h   jBPPuVyP7h   j$Pjj h?    uSSh   j1ۃ  Ph  h\   h   he   h  j 5          =  v  Q    -  E܍  RSPh  h\   h   he   E܃P    S  P    $h2  h\   h   he    h?  h\   h   he   f  UtRRhW     hl  h\   h   he     @v	PPh  sh  h\   h   he   f  
w	PPh  Ch  h\   h   he   d   u	PPh  f6  fHuPPh  jz  h+  h\   h  he   8     Pj h?   uPPh?  )  PhV  h\   h  he   jhk  5   8  P   PWu5   hw  h\   h&  he    h  h\   h'  he      (  h  h\   h*  he   d       `  G	  P\  X     u$P`    Pj h?      uQQh  j   Ph  h\   h<  he   j h  h  X5         h  h\   h@  he   U   )  RWPh   h\   hE  he    ƃ  h  h\   hH  he       ƀ'   ƀ&  XZ5   5   h?  h\   hL  he    utV=     t5             t*t&=    uV8     R1RP   t=    uQ1j RP    t!=    uR1jRP1^    e[^_]Uj he  j h  h\   j hq  j h    h~          E   U5   X5    ÍPU	v߃A<   ]UW1VS1ۃt_\u:~xu4FUMMUtFMUt뻀\t
't"uC
 u   CF뛅tt:ZY[^_]UW}V1S1;u}1FY\u[^_]UWV1SM;u   EUM<M@9E   )EEEt"Aˊtg\uFxu@GUU܅t-GU܅t\GCGCGC므\t
't"u\CCGC듃} tC "KF ? [^_]U   WV    E}j P$h  h  j,h   u h  h  j/h  1   h  h  j3h  XZuu$h  h  j5h   u h  h  j8h      Vh1  h  j=h   e^_]Uu5    E5    Eи&       P]`F C=݋#filename expected you need to load the kernel first can't allocate initrd initrd_mem = %lx
 linuxefi loader/i386/efi/linux.c premature end of file %s cannot allocate kernel buffer Can't read kernel %s %s has invalid signature cannot allocate kernel parameters params = %p
 copying %lu bytes from %p to %p
 lh is at %p
 checking lh->boot_flag
 invalid magic number checking lh->setup_sects
 too many setup sectors checking lh->version
 kernel too old checking lh->handover_offset
 kernel doesn't support EFI handover kernel doesn't support 32-bit handover setting up cmdline
 can't allocate cmdline linux_cmdline = %lx
 BOOT_IMAGE= cmdline:%s
 setting lh->cmd_line_ptr
 computing handover offset
 can't allocate kernel kernel_mem = %lx
 setting lh->code32_start to %p
 setting lh->type_of_loader
 setting lh->ext_loader_{type,ver}
 kernel_mem: %p handover_offset: %08x
 Load Linux. Load initrd. initrdefi shim_lock: %p
 secureboot loader/efi/linux.c shim not available
 Asking shim to verify kernel signature
 shim_lock->verify(): %ld
 Kernel signature verification passed
 Kernel signature verification failed (0x%lx)
  LICENSE=GPLv3+  boot linuxefi                                                                                P          "                                                            	               9              O            V              o   	  0                                    	                                                                                         +             7             O             [             k             z                            
                        $                                                          grub_mod_init grub_mod_fini grub_efi_allocate_pages_max grub_efi_system_table params grub_efi_locate_protocol grub_loader_cmdline_size grub_memmove grub_dl_ref grub_create_loader_cmdline grub_errno grub_memset grub_efi_image_handle grub_register_command_prio grub_unregister_command grub_file_read grub_zalloc grub_efi_allocate_pages grub_malloc grub_file_close grub_file_open grub_real_dprintf grub_file_filters_enabled grub_linuxefi_secure_validate grub_error grub_efi_linux_boot grub_free grub_dl_unref grub_efi_free_pages grub_loader_set            %     .   !  S     q     {                                                       	    3    e    x          !            #            %            $          ,    F  %  N    Y    r  %  z      %        %                "                !      &    6    C    U    d     s                  !                                      )    .    :    F    L    T    Y    c    h    p    u                                                                        (    ?    K    P    Z    _    }                                                                                 !    &    1    6    @    E    Z    ~                          !                            &                  #    (    3    E    J    O    Y    ^    m    r    |                                          #            $              0  %  8    B    Q  %  Y    c    r  %                                                                  
    
    
    
    
    
        	            $    )    0    5    I    N    U    Z    f    k    r    w                             .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                       	   @       (     
            %                                 -      2         _                <             w                     B             x                    R               $                  W                                  `                	                                  p              	                                               H  i                                                                                                                                                                                                                                                                                                                                                      boot/grub/i386-efi/efinet.mod                                                                       0000600 0001750 0001750 00000015630 13417732100 0014640 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   US]CtPPCt$P    @<sx5    hP   st   ] UQRPUWVS   }GhwtEd uwhGdGd   Qj j j PEPj VV8 =  u5GhM9vD	~GhwdKGd    t[덅uUEPt=RRjPu WdMC(PPuStS1ۍe[^_]UWVS,]st{p    1   }EЉUPWj VME    V0M̅   } t	Cp    AuPj j j s`s|j VV4 ug9Urw9Er   SSh    jME}SP@+G9ЉC|vS|EK|PC`3Qj j j s`s|j VV4 tRRh    j,PEPj VE    V0   u	1҃} Sp1e[^_]UVuSPj hP   vx   @@8 uSStPvh   0C@ uSvh2   Hu%Qj j SStRvhC   j$QC@@t u	PPj j j j RSS     @<vx5    hP   vt   ^t1e[^]UWVSHu=    }ЅE(  }   EЁx      px  ]̃SXZVSu Qjh@   u   :  <  GPv<t<  uo  uP @f@ SxuS @f@ S @f@ XZVS$  !u$EEȊ <  y  Ef@f  fEċE @f@ uǊ <u#uGfG uǊ<3  G<%  h     @Eu  PPh   V  f}Ā   ]UMĉ؃lع   Wvع   Wdƃ   cƃ   ƃ   Sƃ   c^PPjV  W   CC^PPjVu  W   CC^PPjVF  
   v   <CC
E̍UE   Eء    QM@<QRh0   Ph   E   Rjh0   PE   u   UPEPjRR=  u,SXutdUPEPjRRuCMtEVPPAPVUĉMMȋUąB  BJS^RRjV  GfG 1ux.  MP$AQPA   S  PPjV  E ^PPjV  f fC (PPjVo  ^PPjVW  f fC ^PPjV4  W   ]ċ~PPCPV  Eĉډf ;f	ЋUfGG}iEE   E    Q@<W}Wh    Ph   E   Rjh    P   u   PEPjWW=  u-SXu   PEPjWWudEtf~PPAPVMMȅtu4$  щf	ЉfGGf SS   u^E)1@81  x  Mԅ   h   h   hH  h   EẼt<x	 ub   s   
]   ^   QQRPh   h   hL  h    uuEjSuj Pp =     t} t.} t(PPE0E0h   h   hV  h    =     tc\h   h   h\  h   EuujSuj PpE(0E0h   h   hb  h    t.V uEЋ Ee[^_]U1Utz    uBx]Ã=       UWVS,EPj hP   jǉE  E    EPU  7  11ɊtXщxut*<u!B<wt<u
yM  PjhP   71  @@x $  8 tF@   VV   Ht h   u    Pj j VV   ʋF@@CP?   ClPC`uu$   CPCp    ?   ChERRPh   HMC    C8    CF@  CF@@CV@CJ(  stCxY^Sh    7u    I  e[^_]USP    t#1x    uPt؉Ӆu1        ]couldn't send network packet %s: net start failed %s: card stopped %s: net initialize failed  yes  cannot continue no HTTPClient using ipv6 and dhcpv6
 efinet net/drivers/efi/efinet.c dhcp_ack_received: %s%s
 device: `%s' path: `%s'
 using ipv4 and dhcp
 efinet%d               o      C  Q       !M)H
nD[O6T`(- '?M2%- '?MLICENSE=GPLv3+ net efinet                                                                  (         N                                                            	               /              E              d              s                                                                                                                        5             I             Z             f             r                                                                                                                     5             D             U              grub_mod_init grub_mod_fini grub_netbuff_free grub_efi_system_table grub_net_configure_by_dhcp_ack grub_xasprintf grub_memmove grub_efinet_get_device_handle grub_errno grub_efi_image_handle grub_efi_find_last_device_path grub_efi_compare_device_paths grub_net_cards grub_netbuff_alloc grub_efi_locate_handle grub_efi_net_config grub_print_error grub_zalloc grub_malloc grub_get_time_ms grub_net_card_unregister grub_net_configure_by_dhcpv6_reply grub_efi_open_protocol grub_real_dprintf grub_error grub_free grub_efi_duplicate_device_path grub_efi_get_device_path grub_list_push grub_netbuff_put grub_netbuff_reserve        '     ,     K     x        !          &     %  0  
  S            +    2     {                             (    -    V  #  \          #                    "  (    A    S    l          !    "          0    ]      %    %  1  %  `  %  u                          !      ^  %    !    %        %    %  7  %  O  %  r  %    %          	    	    3	    ^	  !  g	    	  %  	  !  	  
  	  !  
  !  ;
    @
    J
    R
    g
    l
    s
    x
    
    
    
    
    
    
    
    
    
    
    
    
                         :    L    Q    [    `    p  
    !                        #  r    y                #    .  !  Y    d    k          $    !                      $                              .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   1                    	   @         8  
            %      2       e                  8             p  `                  4   	   @          (   
            >                                 N                                  S                                  \                                                  p     
         	              \  j                               (  e                                                                                                                          boot/grub/i386-efi/loadbios.mod                                                                     0000600 0001750 0001750 00000006044 13417732100 0015161 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      l
      4     (  
 USӺ  ؍  []UWVSE    E    E    =   th    1   h      u0   }C3   pC3   cC3   VC3   IC3   <C3   /C1%          e[^_]U   WVSh   E    u܉E    E       C   C   C      eC[^_]UWVSEf=   @  f=   2  11E        M;H@   PDkuPjh   RUu    @D\0Sh   h!   jrqPjh    uu$    ۋ@DD0uÃPh=   h!   j{6Qjh    uu,    @D|0WhG   h!   h   h%    E*f  f  f 	  tRh  Sh	 t} tPjGPh   e[^_]UEVuSuES   E   e[^]H6u]Tvt@@4C8tPPhe   jQjj@SS    tf    _p4  =   vRRh}   j+t%PVh   S1   7S    e[^]U<t   1v1Uj h   j h  h   j h   h   h  h          U5   X5    ROM image is present. ACPI2: %p
 efi commands/efi/loadbios.c ACPI: %p
 SMBIOS: %p
 filename expected invalid int10 dump size invalid bios dump size Create BIOS-like structures for backward compatibility with existing OS. fakebios Load BIOS dump. BIOS_DUMP [INT10_DUMP] loadbios      1-- '?Mqh" <0-- '?MLICENSE=GPLv3+  loadbios                                                                                 K        O  "                                               (              >              K              V              q                                                                                                                 grub_mod_init grub_mod_fini grub_puts_ grub_efi_system_table grub_memmove grub_errno grub_register_command_prio grub_unregister_command grub_file_read grub_pci_make_address grub_file_close grub_file_open grub_real_dprintf grub_error grub_memcmp   K     P   	  s     (      
            
                    
  '    ,    8    @    L  
  \    a    k    p                    	        :    A    N    Z    _    m                                        (    -    2    7    <    A    I    W    \    c    h     .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .modname                                                      4   q                    	   @       d                %      2                         4               0                  :                                 J                                  O                 	                                  `  	   	         	              l                                  
  X                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/ehci.mod                                                                         0000600 0001750 0001750 00000037224 13417732100 0014301 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      d<      4     (   U@]DD UWVS׉!CDD[^_]UWVSSMMËF	ˍDD^[^_]UVS    utPPu]VUu	[81   e[^]UWVSӃR$)e[^_]UVSË@,tS F4B4    s,[^]UWVSӃR$e[)Ǎ>^_]UWVSӃEE         tRC%  tS89tMN$S81)EC4tC4W yډM@ME명t~$ yE8 tEHF$[^_]UWVSEuX(ǋC@Ph    h   h  h$   WVsh3   h   h  h$       Et               u!C4C      u80    u.   S4u       u    1e[^_]USE@ XShb   h   h  h$   ؋]UWVSB@  tz%   1J  	t@t
Ȁ`PZ
   		É^zh  d  %     ?	ȉ   @  uz t NRRPVhu   h   h  h$   MMQSh   h   h  h$    h   h   h  h$   F$h   h   h  h$   FPh   h   h  h$   FPh"  h   h  h$   FPhK  h   h  h$    e[^_]UVSEuXC@Phn  h   h  h$    ORPVsh  h   h  h$       -EE  UU  t;Urw;Ev   ?  } u9h  h   h  h$   $h  h   h     h  h   h  h$      $2      oEE  UU ?t;UAr;E6׉   	C4
tQh  h   h  h$   $
   $h  h   h  h$    1ع    
   e[^]UB$?@B]UVSX,u h$  h   h8  h$   1'C4tC4V FF,F,    C4    ؍e[^]UWVS<E@Eԋ@P  @  j  @    Eԋ@E̋EH@  @  uE}̃x uE̍x`1EtMЋMԃQMЉE    t}u/}      WhW  h   h  h$    o}   9tċF%  9u,Vh@  h   h  h$   U l1EtMċMԃQMĉEXu̸      V  @`=   uh(  1h   h  h$   3`  ECM  R1j@j PCE        C@   C@@     Puuuuh  h   h  h$   ,j@j WE   P EUЃ}MG%     	Ѕ  tEȀʀWG%       +M;M  EЃG8Wh  h   h  h$   WRPh  h   h  h$   WGRPhB  h   h  h$   WGRPhb  h   h  h$   WGRPh  h   h  h$   W8G4RPh  h   h  h$    {    {ẺEM;H   MkEA K8MH}Ћx@Mȁ  }ĉEuR} P  vRWWh~  jSE    t1ɍEPEWS   a  } @  묋E}VVh  뚀-Pс    L@*EԋP fF4EԋP V}ԉsW ?CC@   QQ3Sh  h   hZ  h$   ssh  h   h]  h$   sh  h   h_  h$    @   W C3F@    EX(1ERRVPhC  h   h  h$   U EԋPie[^_]UWVSZ(h^  h   h  h$   MF(MS$S0$e1[^_]USÃ@PuUC EE  UU C@tC@%   ;Uwr;Es1[]USÃPC EE  UU C t;Uwr;ErC []USQ    tSω}[8Z1[]UWVS       tRRhs  j8tPPh  jSCPCS`SBSC@@   S0Pt)PD   1Ƀ9}AC8   8[8Je1[^_]UWVSh  h   h  h$   }" ukh	  @   uuh  h   h    QQ R   Ph	  @}u  j   u  1ۃ
  <
   
  h  h   h  h$   u   j`     < t(Ph  h   h  h$    	  h:  h   h	  h$   u   j      jEu  Et%t!he  h   h  h$   	  EEuh  h   h  h$     j   u  ƉÃffډfh  h   h(  h$    j<i  @    @     @    E0ǉWh  h   h7  h$   } Ph  h   h9  h$   @Ph=  h   h;  h$   @Phe  h   h=  h$   @Ph  h   h?  h$   SPh  h   hR  h$   C Ph  h   hT  h$   C@Ph  h   hV  h$   C@Ph9  h   hX  h$   C@Phc  h   hZ  h$   C@Ph  h   h\  h$   C@Ph  h   h^  h$   C@@Ph  h   h`  h$   p@uC0Ph  h   hl  h$   h   h   C  PCXsCh   j sXsh3  h   hx  h$   h `  h   C  PCXsCh `  j sXshb  h   h  h$   h   h   C    PC$^s C(h   j s$_s$h  h   h  h$   C 1҃Kу   u1S$K(L@J4S$   S$@=  B   uЋC$`   ǀ     C$ǀğ     C$C,C    C@   C@   C@@   C@d   {SC@   C@   C` `  @@   uEh  h   h  ĉh$   E?x  }" k  u   u  E        h  h   h  h$     E   EƉׁ     E   u)  E     t}h		  h   h  C9wr9s볁   th@	  h   h  h$   5hl	  h   h  h$     E   EEu   P  M  Eh	  h   h  h$   t	QQh	  .h	  h   h  h$   tRRh
  j  hD
  h   h  h$   SCPCS`,SBC@@   S0PN  CC         C8hg
  h   hK  h$   Xuh  h   hO  h$   C Ph  h   hQ  h$   C@Ph  h   hS  h$   C@Ph9  h   hU  h$   C@Phc  h   hW  h$   C@Ph  h   hY  h$   C@Ph  h   h[  h$   C@@Ph  h   h]  h$    rPD   1Ƀ9AC8   8C tPCtPCtPS1   e[^_]UWVSÃr(h
  h   h  h$   MG(M؋V$fV4$S1C e	   [^_]UWVS uUE~Z(EUG@3SPh
  h   h  h$   H QPh
  h   h  h$   H@QPh
  h   h  h$   H@QPh,  h   h  h$   H@QPh\  h   h  h$   G UHtFMe[^_]@t{A@   ~r(h  h   h  h$   UUXB(.UXFuщV|4$   uZuS(uL?t6	ǁ   u,ytI;KuFMe[^_]  u   e[^_]UWVS,}Ew(XPh  h   h5  h$   UCHuUЅuI@uAG(:VEPV4$h  h   hC     S;K1҉M̉EЋMы;Et)` `  uPPh    h  	       @twjG(VEP?V@    >S4$h  h   h  h$    1`S@C EЃEUԃU C@ t!S࿉SB BC@I;Uwr;Ese[^_]U           t        PPj h  $    h,  h  h  Uj z$    grub_ehci_cancel_transfer detect_dev: EHCI STATUS: %08x
 ehci bus/usb/ehci.c detect_dev: iobase=%p, port=%d, status=0x%02x
 root hub ports=%d
 setup_qh: qh=%p, not changed: qh_hptr=%08x
 setup_qh: ep_char=%08x, ep_cap=%08x
 setup_qh: end
 setup_qh: not changed: td_current=%08x
 setup_qh: not changed: next_td=%08x
 setup_qh: not changed: alt_next_td=%08x
 setup_qh: not changed: token=%08x
 portstatus: EHCI STATUS: %08x
 portstatus: begin, iobase=%p, port=%d, status=0x%02x
 portstatus: Disabled.
 portstatus: end, status=0x%02x
 portstatus: enable
 portstatus: Enabled!
 alloc_td: end - no free TD
 find_qh: found, QH=%p
 find_qh: Mismatch in QH list! head=%p
 too long data buffer for EHCI transaction no transfer descriptors available for EHCI transfer transaction: type=%d, toggle=%d, size=%lu data=0x%x td=%p
 td=%p
 HW: next_td=%08x, alt_next_td=%08x
 HW: token=%08x, buffer[0]=%08x
 HW: buffer[1]=%08x, buffer[2]=%08x
 HW: buffer[3]=%08x, buffer[4]=%08x
 link_td=%08x, size=%08x
 setup_transfer: cdata=%p, qh=%p
 setup_transfer: td_first=%p, td_alt=%p
 setup_transfer: td_last=%p
 find_qh: end - no free QH
 find_qh: new, i=%d, QH=%p
 parse_success: info
 restore_hw: EHCI halt timeout restore_hw: EHCI reset timeout EHCI grub_ehci_pci_iter: begin
 No EHCI address is assigned
 EHCI grub_ehci_pci_iter: class OK
 EHCI grub_ehci_pci_iter: Wrong SBRN: %0x
 EHCI grub_ehci_pci_iter: bus rev. num. OK
 EHCI grub_ehci_pci_iter: registers above 4G are not supported
 EHCI: EHCI is not mapped
 EHCI grub_ehci_pci_iter: 32-bit EHCI OK
 EHCI grub_ehci_pci_iter: iobase of EHCC: %08x
 EHCI grub_ehci_pci_iter: CAPLEN: %02x
 EHCI grub_ehci_pci_iter: VERSION: %04x
 EHCI grub_ehci_pci_iter: SPARAMS: %08x
 EHCI grub_ehci_pci_iter: CPARAMS: %08x
 EHCI grub_ehci_pci_iter: iobase of oper. regs: %08x
 EHCI grub_ehci_pci_iter: COMMAND: %08x
 EHCI grub_ehci_pci_iter: STATUS: %08x
 EHCI grub_ehci_pci_iter: INTERRUPT: %08x
 EHCI grub_ehci_pci_iter: FRAME_INDEX: %08x
 EHCI grub_ehci_pci_iter: FL_BASE: %08x
 EHCI grub_ehci_pci_iter: CUR_AL_ADDR: %08x
 EHCI grub_ehci_pci_iter: CONFIG_FLAG: %08x
 EHCI grub_ehci_pci_iter: flag64=%d
 EHCI grub_ehci_pci_iter: framelist mem=%p. OK
 EHCI grub_ehci_pci_iter: QH mem=%p. OK
 EHCI grub_ehci_pci_iter: TD mem=%p. OK
 EHCI grub_ehci_pci_iter: QH/TD init. OK
 EHCI grub_ehci_pci_iter: EHCI owned by: BIOS
 EHCI grub_ehci_pci_iter: EHCI change ownership timeout EHCI grub_ehci_pci_iter: EHCI owned by: OS
 EHCI grub_ehci_pci_iter: EHCI owned by: NONE
 inithw: EHCI grub_ehci_pci_iter: ownership OK
 EHCI grub_ehci_pci_iter: EHCI halt timeout EHCI grub_ehci_pci_iter: halted OK
 EHCI grub_ehci_pci_iter: EHCI reset timeout EHCI grub_ehci_pci_iter: reset OK
 EHCI grub_ehci_pci_iter: OK at all
 parse_notrun: info
 check_transfer: EHCI STATUS=%08x, cdata=%p, qh=%p
 check_transfer: qh_hptr=%08x, ep_char=%08x
 check_transfer: ep_cap=%08x, td_current=%08x
 check_transfer: next_td=%08x, alt_next_td=%08x
 check_transfer: token=%08x, buffer[0]=%08x
 parse_halt: info
 cancel_transfer: begin
 cancel_transfer: end - EHCI not running
 cancel_transfer: end
 %s: prev not found, queues are corrupt
     l           t                  LICENSE=GPLv3+  cs5536 usb boot ehci                                                                                               [                                          	              
               -              ?              ]              k                                                                                                                                         0             ;             L             V             x                                                     grub_mod_init grub_mod_fini grub_millisleep grub_dma_get_virt grub_disk_firmware_is_tainted grub_dma_free grub_usb_controller_dev_unregister grub_memset grub_disk_firmware_fini grub_printf grub_pci_make_address grub_usb_controller_dev_register grub_zalloc grub_malloc grub_get_time_ms grub_real_dprintf grub_error grub_pci_iterate grub_free grub_loader_register_preboot_hook grub_memalign_dma32 grub_cs5536_write_msr grub_dma_get_phys grub_cs5536_read_msr    v                                                                                                                                                     %    1    6    @    E    Q    V    `    e                                            &    +    5    :    K    P    _    d    n    s                         
            ,    1    ;    @                                                        L    S    ]    b                            y	    ~	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    
    
    
    
    ,
    1
    ;
    @
    
    
    
        }                                                
                c    h    r    z                >    ]                                                             -    g    l    v    {                                            )    D    I    S    X    p    u                                    &    +    5    =    K    P    Z    _    n    s    }                                                                             %    /    4    C    H    R    W    f    k    u    z                                                                    #    :    F    [    d    i    s    x                                                )    2    7    A    F    <    A    P    X                            &    +    7    P    U    _    d    k    p    z                            
                 %    :    A    N    S    ]    b                                                            *    /    9    >    M    R    \    a    p    u                                                            /    B    U    a                                '    ,    =    B    L    Q    c    h    r    w                                                #    Z                    L    Q    V                                '    ,    G                                                
                                                  .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                       	   @       .                 %             L                    -      2       f                  @             *  0                  <   	   @       ;  @               F             *                    V             *                    [              *                    d              *                                  *                	              ,                                 ;  m                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/loadenv.mod                                                                      0000600 0001750 0001750 00000013674 13417732100 0015024 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UWVSuj}]t,U0x@    PUPStB; Cue[^_]UWVS(X4StpE    E    t.PESPVW;)EUQQuWu WXZh    j1e[^_]Uuuh   1UWVSu}t1&RRuWPPF4WtC;re1[^_]UWV1SÃuvh!   uSh!   h(   j   PEƍ@	$tlUPPRSD33/ZYh@   P                     t
        S4$1e[^_]UEVSP1: tB1á    t7tPh   j V4$S    e[^]UWVSE}HE}QE19 tAá    tAt#~E1Rh  PV4$S    e[^_]UWVSLE} E    E    PuQQhH   j=1: tB   ǡ      G8 uWXZha   j  EGHGD    GD    E|  uE    t|Y]AۉEtdQEȋŰSEEU1  	EU9Urw/9Es*C1  	EU9Urw9EsPPhv   j	$[EЋM뀃8 uE;G4tPPh   j   GE    E     E@tPHUM@ EE    E    E     E   E9Fv%uF$EEt*P1uvFRP^+M]SQu t    6PEvuEPtVVh   jFEЋvd   E0t,SPE0uu(QQh   j   ERR0uEMuEԋ]E    E     EG EЋ@tPHUM̋@ 1t5PE1PsCRPS+EURPu us[ǃuEtXPW    e[^_]Uh    h   h   j h  h4  h    h=  hi  j h)  hs     h    h|  h  j h  h          U5   X5   Z5    U9s\u
t@@]UVuS]wRRh  j-Pjh8  Vu؃jt0X1e[^]US]3]]UWVS1ۃ(}uUƊt<
t<\uCBGȉEH#t
t1   @EFE܋E܍<;}sHPVuMQM؅u"<1=u17;Ms<
tj<\uFU뭋E]+E9}P]Vuލ~S=Et
t\u\GG@O
   LU+U)979}$PE))PQPVuj#V뙋ER)PQS뇍e[^_]UWVS(}u7^wx;9vlPQuMSMu<=u;9sG <
t<\uG؉MMG;R))RPSWj#Ve[^_]UWVSEZPU;]   ;#   ހ>=tF;uu   ;u   ~;U   <
t<\uB)ڃBRtx))щMQVSRUUM2 q<
u5F PuUQRUU$u%U:<\u	CCFFCF뱍e[^_]     f                  s                                         invalid environment block %s=%s
 prefix variable `%s' isn't set grubenv no variable is specified disk device required malformed file sparse file not allowed invalid blocklist environment block too small Load variables from environment block file. [-f FILE] [-s|--skip-sig] [variable_name_to_whitelist] [...] load_env List variables from environment block file. [-f FILE] list_env Save variables to environment block file. [-f FILE] variable_name [...] save_env file Specify filename. skip-sig Skip signature-checking of the environment file. invalid environment block # GRUB Environment Block
   LICENSE=GPLv3+  disk extcmd loadenv                                                                            Y            .                                              	              
               )              5   	       I              V   ~        h              w                                             %  Y                                                                                                               +    W    ;             U             `             j                                                     grub_mod_init grub_mod_fini grub_strlen grub_strcpy grub_envblk_iterate grub_memmove grub_envblk_close grub_disk_read grub_unregister_extcmd grub_errno grub_memset grub_envblk_open grub_printf grub_file_read grub_envblk_delete grub_strcmp grub_malloc grub_file_close grub_file_open grub_disk_write grub_envblk_set grub_file_filters_enabled grub_error grub_free grub_register_extcmd grub_env_set grub_memcmp grub_env_get         d                                               #  "  6    g    l  $  y    ~                                            
         H    _    g    o    {                                 5    T    m    t    {        !    G    N                       #  (    R  $  h    v    }                5     E    J    `    e    j    q    v    {  !                            !                            !                              8    ?    L    R  #  c                    #  m                	    *	  #  y	    	     
    "
    U
                     $      .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4   
                    	   @       |                )             
  H                  %   	   @                         1      2         R                @             ^                     F             `                    V             p                    [              p                    d              |                                    P              	                                                 m                                                                                      boot/grub/i386-efi/elf.mod                                                                          0000600 0001750 0001750 00000012350 13417732100 0014130 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      0      4     (  
 UVS]3sDXsH$tV    e[^]UE]xU1VuS~D    F.1^0PSF RPh    h0   jh4   SFDtMQF 1RP6Bu!@u=     u,PvHh?   jRSvD69u1    e[^]UWV   S(]uEE    @DE1utA    9}0}9s:uzE9vz9sz9s 뷃} u	RRhX   9sPPhs   j1t} t]3)ȍe[^_]UWVS(]uS{DE    EE܉u؅u}    EM   C0CD9sۋt}       E܋wtu?u9uvuG1R1PRVh   h0   j}h4   G1RP3Bu@tnGt0RPV3;Gt=     uLSuh?   j7GW9s)QRj VGE } tEM    e[^_]USP]C	<  CfCfCfC,fC.fC0fC2fC4fC6CCCC C C$C$C(C(SCD   S0SD9    PPPPPPPPPPPPPPPwu'SKDȅtS09s ]U1UztPPh   jUE]xU1VS]{D    C:s<PVs(s$h    h0   jh4   VCDtLQs(s$3Bu!@u=     u,PsHh?   jRVsD39u1    e[^]UWVS8}uEE   E    E    @DE    EЉutv    G    gE@<k8E9s܃9uLQE؋A9r
w9vÉA(Q,9Uwr9EsEU܋A01;Q4EԋEwr;EsEԉE8낃} u	RRhX   9uwr9]sPPhs   j1#tw} tEU@    E)؍e[^_]UWVS(]uS{DE    EE܉u؅u}   EM   C<k8CD9sۋt}       E܋wtu?u9uvuw,1w(RVh   h0   j}h4   ww3Bu@t{G O$t0RPV3;G t=     uVSuh?   jAO,9O$G W(wr9s)QRj VG(E8} tEM    e[^_]USP]C	<u  CS fCfCfC8fC:fC<fC>fC@fCBCCSS(C C$S$S0C(C,S,C0C4C4SCD   S<k8SD9   HPPPHHPPHHPPHH$PP H H,P$P(8PPHHPH*u'SSDЅtK<k89s8]U1UztPPh   jUWVS}jLu   8Pj j WBu@   Pj@CP3@t =        WVh?   jx{ELFu{
t	QQh   ;C<uS$<uS$RRh   juVCHt!sHXsD$1e[^_]UVS]St PPSVuV1ۍe[^]Loading program headers at 0x%llx, size 0x%lx.
 elf kern/elf.c premature end of file %s no program headers present bad program header load addresses Loading segment at 0x%llx, size 0x%llx
 invalid arch-independent ELF magic invalid arch-dependent ELF magic   LICENSE=GPLv3+ elf                                                                                                         t	  $        E        ,   W        B   	      P     D    k              w                                                                                  E                      X  d                   
  E                  .             =             O         e         u  ;                     ]  $                      Y     grub_elf64_check_version grub_elf_is_elf32 grub_elf32_load_phdrs grub_elf_file grub_elf32_check_endianess grub_strdup grub_elf64_check_endianess grub_file_seek grub_errno grub_memset grub_elf_is_elf64 grub_file_read grub_elf_close grub_zalloc grub_elf64_load grub_malloc grub_elf_open grub_file_close grub_file_open grub_real_dprintf grub_elf64_load_phdrs grub_elf32_size grub_elf64_size grub_error grub_elf32_check_version grub_free grub_elf32_load              "      2     :                                                              	                	  o    t    {                                      	  6  	  q    x                                             0    Q            "    i                    '    D    R    ^    e            d    M	    	    	    	    	    	    	    	    
    
    /
    7
    F
    N
    Z
    a
    q
    
     
     
     
    
  
  
     .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .modname                                                      4   
                    	   @                        %      2       %                  4             &                     :             (                    J             7                     O              7                                  <     	            	              \                                   X                                                                                                                                                                                                                                                                                                          boot/grub/i386-efi/loopback.mod                                                                     0000600 0001750 0001750 00000005750 13417732100 0015162 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      	      4     (   UE    E   ]UWVS Eu}@(X	R	PSE	PuES    u9E1ҋK4		;S8rw9vu)ȋ}RP)j W1e[^_]U1SR   } u#tPPu3Uu	[1   ]UWVS}u   tPPW3t[E    E   e[^_]CP8@4t   		FVuFFF @  C^(Fe1[^_]UWVSEU}R	E2   9: t*?      tjQQW3tss[HuEG   E   Lw   ơ       thRR73tA[EY   E   e[^_]C3Xs$ss1ljtE7uS$   sPC         C뤋    V؍e[^_]Uh    hj   h   j h{  h    E        U5    $        d                                          loopback write is not supported can't open device device name required filename expected device not found Make a virtual drive from a file. [-d] DEVICENAME FILE. loopback delete Delete the specified loopback drive.                             LICENSE=GPLv3+  extcmd loopback                                                                                      	      ;          "                                
                             )              @              W              f              q              }                                                                                                                               grub_mod_init grub_mod_fini grub_strdup grub_disk_dev_register grub_unregister_extcmd grub_file_seek grub_errno grub_memset grub_file_read grub_strcmp grub_malloc grub_file_close grub_file_open grub_error grub_free grub_disk_dev_unregister grub_register_extcmd             >     T     Y                             %                                             3    B    K    S    `    t                                                                        %    *    1    6                                          .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   ?                    	   @       d                )             t  0                  %   	   @                        1      2                          D             |                     @   	   @         (               J                                 Z                                 _                                  h                	                                                	              \                                 	  q                                          boot/grub/i386-efi/eval.mod                                                                         0000600 0001750 0001750 00000002704 13417732100 0014313 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   U1WVS]   19}E4FWtE        EE 9]}EMzAGy tۉB V4$؍e[^_]Uj h    h$   h    h/        U5    Evaluate arguments as GRUB commands STRING ... eval   LICENSE=GPLv3+  normal eval                                                                 +                                                                                      )              4              O              g              s                             grub_mod_init grub_mod_fini grub_strlen grub_errno grub_register_command_prio grub_unregister_command grub_malloc grub_script_execute_sourcecode grub_free )   
  9     R                                                        .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                        	   @         h   	            %      2         4                 4             N                     :             P                    J             `                    O              `                    X              g                                  l    
   
         	              |                                    a                                                                              boot/grub/i386-efi/ls.mod                                                                           0000600 0001750 0001750 00000010140 13417732100 0013773 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      0      4     (   UUE: tPRRPh    1UUEz u8.t"M   t   QRPh	   1UWVS]CuU:.  E    3V|/uPu3h   Pu3h   U  P                     uV          { uPw8w4h   Qjp8p4ZYPh"   W4$h(       _ZPh"   E tzVVuVp{ t7VPEPEPEPEPEPEPh,   0,EQPEPEPEPEPEPhP    M   t   RPuhk   1   e[^_]UWVSLE} pt	E    wQQE؍EPh    $q       
  FMĉEFEEES$EuuEċE;E|  PEXZj)SMtPڅu} uQQhs   j#: u&=    u
        u8  0  E} ]̉EЋEEԋAMtQhm   Qh0   RWUЃU=       RUU|/   S                                PXZj/SYZ@E)PStiQjj EP} tERPEPu/PEPEPuS=     uhq       W-e1[^_]Uh    h   h   j h9  h        U5    õ   l                     h                  "  a       &                                  (%s)  /  %s%s  %s%s %s/%s %-12llu %-12s DIR  %d-%02d-%02d %02d:%02d:%02d %-11s   %04d%02d%02d%02d%02d%02d  %s%s
 
 invalid argument List devices and files. [-l|-h|-a] [FILE ...] ls long Show a long list with more detailed information. human-readable Print sizes in a human readable format. all List all files.   LICENSE=GPLv3+  extcmd normal ls                                                                                 0                                                        	              
               )              G              T              k              z                                                                                                                                                        -             =             L             ^             l                                                                                            grub_mod_init grub_mod_fini grub_strlen grub_normal_print_device_info grub_strrchr grub_unixtime2datetime grub_xasprintf grub_get_human_size grub_device_open grub_file_get_device_name grub_unregister_extcmd grub_xputs grub_errno grub_memset grub_get_weekday_name grub_printf grub_strchr grub_refresh grub_file_close grub_file_open grub_device_close grub_fs_probe grub_file_filters_enabled grub_error grub_free grub_strndup grub_register_extcmd grub_device_iterate grub_gettext              %     K     U     ]     b                                                   !  -    =    E    J    V    ^  !  h    n  %  v    {                                        !    c    h  $  o    u    z              !                   #    ,    ;    l    t                                        	  "       Y  !  b    m    s    {                              #                              $     0     <      .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                       	   @                       )               `                  %   	   @         0               1      2       t  6                @                                  F                                 V                                 [                                  d                                                  `              	              0	                                   m                                                                                                                                                                                                                                                                                                                                                                                                                                                  boot/grub/i386-efi/exfat.mod                                                                        0000600 0001750 0001750 00000012744 13417732100 0014500 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UWV1SSI   z}f:t^ $  wE   
3 $  X?ˀXӃ?ʀ?ˀXP ?@U1ww@  w?ʀXPK (  v; $  w ?@)ڃP??ˀʀXPދU	Z[^_]UEp@X5        UWVS   dO  jD8  PpPjxj j j j W   Vjh    sP   E܍Hv   E<vS   ʉSEC   U҉S   u t1s   }    us$us(vtMC    C KEt}vЉCC9vHlQR1jj j RPd u$EC8C,C    C@CC41ۃSXZh	   j	1e[^_]UEVuS5    Mt8@@RRPh   t
tAw 
B    5    $    e[^]UWVSӃ<EU{ MKEȉUtrC41҃EЋC$eEЋEMȉG E΁  G$ȋMS]uuR	1	VRPW E=     G         Ũ	E tЉE11u !ƉuЋu!։uԋu;s8sC4C8    C<E   E    e  CU,  u	  UVVuPh(   hF   h$  hJ   E ;C      ;C(   C8C<E;C8C<vHS       QMQR1R1PCRPW R   Ku+uC$;uvuUMW$O R1uVuuRPW =     G     u)uuuEE    E    } <@VKC<tUe  QPhU   j	EEȍe[^_]UWVS\E EYá       E}E     E E1Wj RPEj 5  uOEȄtH<uσj=Ut.UɃv   19tftOftMAU  닃S    e[^_]USEXHDP@uupppH]UWVS   B,dpuPPhh   j   >/uFPPj/VÉlt*)CP  PSVW Vǃl E1Ƀ} h   t!t$<  EEt} uPXu=     uPj j EP$W1  |  x:E|Q1j  RpPj E䋅d7  t{  <B  }11E    `EE;`   EMQ1j  RpPj E䋅d     E   @   <t<ujkEhM)h5EUE   EEUЋUE̋EUȉEĊ}E>fhMfTM9uC Phx   h   h  hJ    Ft	m kUE܍]  Qjj SE`E	Ѓ} E$? u$t tPuSuU   E܉h\ht-t&ˍqw rw 9u	h@ƍSw  Pw 9p   `t F8F,EĉF0EF4E؉FtIVuEP\U3PpPh   h   h  hJ    K1ۃuZu=     ut	uPuh   j1ۃW؃#le[^_]UWVSu5    F tSEQ~j j uv=     u.uC,tRRh   j^@C0F41V8SX5        e[^_]UWVS(E 5    ǉEmu1kuƍ@$tQVuPU3|2/t /@  REuuut	=     tڃS<$X5        e[^_]Uh    h    E    Uh    EXFAT    not a FAT filesystem %04x-%04x fat_size=%d, next_cluster=%u
 fat fs/exfat.c invalid cluster %u not a directory unknown secondary type 0x%02x
 exfat unknown primary type 0x%02x
 file `%s' not found not a regular file               
              LICENSE=GPLv3+  exfat                                                                              _  "                                                         )              8              E              Q              `              l              w                                                                                                                                                           grub_mod_init grub_mod_fini grub_strlen grub_xasprintf grub_memmove grub_strdup grub_disk_read grub_dl_ref grub_errno grub_memset grub_fs_list grub_strchr grub_malloc grub_real_dprintf grub_error grub_list_remove grub_free grub_dl_unref grub_list_push grub_memcmp                $    L    q            h                              
  )    .    6    ;            k    p    z            3    <                *    m    r                    #    2    j    y                        	    	    	    $	    W	    w
    |
    
    
    
    
    
    
    
    
        	    >    R    Y    x                          	          .    :    B    I    N    S    f    k    p    {                                                 .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .modname                                                      4                       	   @           	            %      2                          8               (                  4   	   @       p  8   	            >                                 N                                 S                                                    
   	         	                	                                 \                                              boot/grub/i386-efi/fixvideo.mod                                                                     0000600 0001750 0001750 00000003634 13417732100 0015204 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   Uj h   1U   WVS]ju  Hǉȃ  1<          9^   Ph    h   j=h!   N  D t	tQh9   h   jBh!    &F;Vt hN   h   jIh!      S         tBhg   h   jNh!   '81Sh{   h   jWh!    e[^_]Uj h   j h    h        U5    Found graphic card: %s
 fixvideo commands/efi/fixvideo.c Invalid MMIO bar %d
 Old value doesn't match
 Setting MMIO fails
 Unknown graphic card: %x
 Fix video problem. fix_video Intel 945GM Intel 965GM       '           *                            LICENSE=GPLv3+  fixvideo                                                                               U  (        }                                                 8              P              f              x               grub_mod_init grub_mod_fini grub_register_command_prio grub_unregister_command grub_pci_make_address grub_real_dprintf grub_pci_iterate    	          4     `     |                                                            
                3    8    ?    D    ^    e    j    o  	  w          
              .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .modname                                                      4                       	   @       X     	            %      2                          8               <                  4   	   @       P     	            >                                 N                                 S                	                                     
   	         	                                                `  \                                                                                                                      boot/grub/i386-efi/lsacpi.mod                                                                       0000600 0001750 0001750 00000011310 13417732100 0014630 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UVSttRFRKPh    CtKh   e[^]U   SQPPjS   u   PRCPh   C	   oCZYPh.   XZsh6   ]U   SS6PPsS   u   RC	PCPshA       C
C   PPshe   C   ZYs hr   ]UWVSÃ,UQssh|   C؃pԅB  <
  $    sCPCPh   C<  Rj]ssCPh   C<   Wj   CPsCPCPh'  C <
  Qj
Ph     CPCPCPhY  C<h  RjȃsssCPh  C <tWjPh   C   QQPh    sCPCPCPh   Ct
h  h  {{vRWsh  CWE9EtPjCPh   C t}CPCPCPh  _Cy   {K<w$   WQRPCPh,   ssCPhg  RSRPh  $  C)e[^_]UWVS}Gx    uh  fh  -s$FX܃v7t)Qjh  RUUuUċG8 3  uh    x vh     h  sX{ZsS   u   QQWVRC Psh  C $tRj$Ph$  C!u{" u{# tS#RS"RPh?  sw~_vL؃|8 4th`  't#Pjh  Vu#믃hs  e1[^_]Uh4   hu  h  j h  h       U5             +    X    T            1                   2                                         %c   valid invalid chksum:%02x (%s), OEM-ID:  rev=%d
 RSDT=%08x
 %4uB rev=%u chksum=0x%02x (%s) OEM= OEMrev=%08x   %08x
 ?? Local APIC=%08x  Flags=%08x
   LAPIC ACPI_ID=%02x APIC_ID=%02x Flags=%08x
    table size mismatch %d != %d
   IOAPIC ID=%02x address=%08x GSI=%08x
    non-zero pad: %02x
   Int Override bus=%x src=%x GSI=%08x Flags=%04x
   LAPIC_NMI ACPI_ID=%02x Flags=%04x lint=%02x
   IOSAPIC Id=%02x GSI=%08x Addr=%016llx
   LSAPIC ProcId=%02x ID=%02x EID=%02x Flags=%x  Enabled
  Disabled
   UID val=%08x, Str=%s
    non-zero pad: %02x%02x%02x
   Platform INT flags=%04x type=%02x (%s) ID=%02x EID=%02x
   IOSAPIC Vec=%02x GSI=%08x source flags=%08x
   type=%x l=%u   ??
 No RSDPv1
 RSDPv1 signature: APIC No RSDPv2
 Unreachable RSDPv2
 RSDPv2 signature: len=%d chksum=%02x (%s) XSDT=%016llx
  length mismatch %d != %d
  non-zero reserved %02x%02x%02x
 Unreachable table
 
 Show ACPI information. [-1|-2] lsacpi Nul PMI INIT CPEI v1 Show version 1 tables only. v2 Show version 2 and version 3 tables only.    LICENSE=GPLv3+  extcmd acpi lsacpi                                                                               0                                                        	              
               )              <              Q              h              t                                           grub_mod_init grub_mod_fini grub_strlen grub_byte_checksum grub_acpi_get_rsdpv1 grub_unregister_extcmd grub_printf grub_acpi_get_rsdpv2 grub_register_extcmd grub_memcmp             2     7     ^     f     o     {                                                       $    )    @    E    l    q                            
    "    ;    @    j    o                                                )    .    N    Y    l    }                                        
        ?    H    y                                                 ,    1    a    f    w    }                                                                                               $     (     ,     0     4     @     L     X      .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                       	   @                       )             0  |                  %   	   @                        1      2                         @             
                     F             
                    V             
                    [              
                    d              
                                  
  0              	                                                (  m                                                                                                                                                                                                                                                                                                                                          boot/grub/i386-efi/font.mod                                                                         0000600 0001750 0001750 00000030734 13417732100 0014336 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      /      4     (   USBHz t[]UWV1SMJ9   J}E    MH]}]J9MsE]ME\M   E\8}u
EE    }uGE    EFj[^_]UWVS]Mt"P)PUP
UURXC9})C{NS+E9~MSF+ECF+C;C|@CE+C9C}Ce[^_]U
tfARt]UWVSXuE}1M   EUU܉EtFfB} t	F]FVǉEEF
U}UȉUÉEEFE؉EfGftf<vG
E1EE}E    E    ؉EEf@fEf9E    UMCŰU O  f  )MfM̋MfIfMf   W    wAw(
    ESE))    (  i  I  w%    VfUf)E̋F-    B    4  w1$w!$      tr?  1-    w-tq  KE)UMUP/        KEMPMEPUȉ@E  ME܋UP@E  U   t+V   fUf)Ẽf)EffE̋FfEfC
   HfEƋ@fff)Ef} @ff   @fEF
NECU̍EPZ@9E  E  E   
        tufC
   HfEƋ@fff)Ef} $@ff   @fEfE  KMEMOfKEfE8t7fC
fCf   @ff   @+MC
KVCEPU@XEEBE;E}ENV)ЍUTFU܋u)ƉAEt@;E}
Eufp} tEu90}0}t
u   e[^_]Ë        t 9BuURÉыUVS@@Pt.PvS6x;FtS 1e[^]f@f;   vSUv   
      5      $   u
        USHt,SQPRPRPR@Ph    j    (RjUR0   ufE0Ɇfȋ]USӃjRPuf0   ]UWVSÃ,  H w!@$t4Pf[  uAO  CHɉE@  1})ǉ;swuvG;Ev  ~
  {    RF1RPsCU,u<CUu-CUuCUuCUt   EMȃAPMtˉfEދMfBEfBfEfBEfB
fEfBt%PQBPsMЉUMЃU9wUUԉV1e[^_]UVSӃBB    jPVvx3PjEPVw	C   xEC1   e[^]UWVSwv=    ud    1ۃj    PCf@ f@ f@  f@
f@      jVR   u         1e[^_]À=     Uj @     f@ f@ f@  f@f@ Rjh    P@  f(    f*    f,    f.                 f$    f&    f0   4      8      <      fHf.     F     Qf,  Pf(  f@f*  UWVS<]<(t<+uPPh   SE   hP   uPhP   hW   j*  P$D$  o   w     WWh   V4$EEă  }؉u:Sjh|   uVt	QQh   EtRPh   j1  Pj]SuuPjh   St'ESSPEPEPEPh   j 릃j(t     @    f@  f@  f@ f@  f@  f@  f@  @    @     @$    Eĉ}CUEt}   C  Qjh  WuE  Rjh  WS   Pjh#  WuYEyPPh(  VufCd PPh/  VufC V2Pjh4  WStHPjh9  WSt0Pjh>  WStVjhC  WuSE  QjhH  W;  M1Ҿ	   tj	QhM    1Ҿ	   CPC   h   C$  Rh   h   PE    E    E;Cus PjVuT  } t;EwuPh     =  w
K$UfAEPjFPuH  PjFPu   FF    EFIPjh  Wt&M1PEAQRPQ@3   ; u*h  h  hi  h  $   f{ t!f{ t{ t{  tf{ tf{ uVVh  j%jt    X    Kut7C    3XsZs Ys$$1e[^_]UVS    tsPPu6t    t@u  e[^]UE] UE]@UE]@U   E]@ffUE]@UU]JBRUSSE]u
Y[]
tZ[]UWVS} u    E    E'  (UE   ՋsUuuz} tw~2   ftURft)щ1)Vft}ft)1)2}1ff9~;M}EM뀋E[^_]UWVSEBM؁    t   @fFftf<vFFEE    CwDfFUfE1;Es,fJfft@iK7  PP	Puu%WWSuuM   } t	GMF tsfFt} tU1        RfFf9s&QQU% P7MUCPM؉u1uWT1e[^_]UEU1PPEPE5   dUu	@  PUWVS<EdUMSESj 5   $á@    =    u}fG  }G   EE9   s45    EED  $           u        [  EEQPj R=    MEfOufGEfwUfW
@CEC
ECEE؉E   EEE    )E+EȉEčBEEC9E   EЋUCuE    uuHMEC9EsE̊MMD%   BD7}u
ME   uF0E뼋EEԋM+M)RPE1j 5   Se[^_]U1VSP]Kf   Sf   EuEEPEPEPEPuUE  E
   E   E    E   E E E E S CMERCPj j C
))PCEPjV e[^]USh6      tsZYPhD  1]UVuS]uEH  E   -vKu"    uEZ  E   e[^]u1e[^]Uj hg  h  h  h  j h  j he  h  H   D  U5H  X5D  font file format error: section %c%c%c%c length is %d but should be 2 <No Font> prefix variable `%s' isn't set /fonts/ .pf2 FILE font file format error: 1st section must be FILE font file format error (file type ID length is %d but should be 4) PFF2 invalid font magic %x %x %x %x NAME PTSZ WEIG normal bold MAXW MAXH ASCE DESC CHIX font file format error: character index length %d is not a multiple of the entry size %d font characters not in ascending order: %u <= %u DATA Font has no name.
 font font/font.c Unknown invalid font file: missing some required data Loaded fonts: %s
 filename expected invalid font Specify one or more font files to load. FILE... loadfont List the loaded fonts. lsfonts   ||  JZ   U   92q  U   ;1q  U   {yy  U   yzy  U   z{z  U   1zI  U   sss  U   xxy  U   E|D  U   AA}  U   ED  U   }}A  U   =A=  U   <9x  U   =8y  U   rJs  U   qJq  U   qJq  U   qJq  U   qJq  U   IjJ  U   41q  U   {yy  U   3G4  U   }}}  U   :2q  U   yy{  U   yyC  U   9Y;  U   qqK  U   II3  U                         """"              ~$$~HHH      >IH8	I>      1JJ4))F      """9EBF9                              I**I                                 ~                         @@      $BBBBBB$      (>      <BB @@~      <BBBB<      $DD~      ~@@@|B<       @@|BBBB<      ~      <BBB<BBBB<      <BBB>8                                       ~   ~         @  @      <BB       "JVRRRN       $$BB~BBBB      |BBB|BBBB|      <BB@@@@BB<      xDBBBBBBDx      ~@@@|@@@@~      ~@@@|@@@@@      <BB@@NBBF:      BBBB~BBBBB      >>      DD8      BDHP``PHDB      @@@@@@@@@~      BBffZZBBBB      BbbRRJJFFB      <BBBBBBBB<      |BBB|@@@@@      <BBBBBBZf<     |BBB|HDDBB      <BB@0BB<            BBBBBBBBB<      AAA"""      BBBBZZffBB      BB$$$$BB      AA""      ~ @@~          @@      pp   $B                                              <B>BBF:     @@@\bBBBBb\        <B@@@@B<     :FBBBBF:        <BB~@@B<     |       :DDD8 <BB<   @@@\bBBBBBB      >      H0    @@DHP`PHDB      >        vIIIIIII        \bBBBBBB        <BBBBBB<        \bBBBBb\@@      :FBBBBF:      \bB@@@@@        <B@0B<      |        BBBBBBF:        BBB$$$        AIIIIII6        BB$$BB        BBBBB&<      ~ @~           00    1IF             sKs  U  LICENSE=GPLv3+  bufio video font                                                                               
  S        ]  "                                                             )              4   u       J     (     ^              n                                                                              r  1                      K                  (             4         J             e          s                                                  i                                                                                     0  r
      F             Q             [  _  
     n  L       }           4  >                                                      grub_mod_init grub_mod_fini grub_strlen grub_puts_ grub_font_get_descent grub_font_get_glyph grub_error_push grub_video_blit_bitmap grub_font_get_glyph_with_fallback grub_memmove grub_video_unmap_color grub_strdup grub_font_load grub_font_construct_glyph grub_file_seek grub_font_get grub_errno grub_memset grub_font_get_leading grub_register_command_prio ascii_bitmaps grub_printf grub_unregister_command grub_font_draw_glyph grub_file_read grub_font_get_max_char_width grub_zalloc grub_strcmp grub_malloc grub_file_close grub_real_dprintf grub_buffile_open grub_font_loader_init grub_error grub_free grub_font_get_name grub_font_list grub_font_get_xheight grub_font_get_constructed_device_width grub_error_pop grub_memcmp grub_env_get grub_font_get_height  e  ,  j  ,    *    $         *                  "  *  '    2  $  <    D    t    {  )            m    }      $  C	     \	  /  	     	     	    	    
  $  
    F
    W
    b
    t
    
  $  
    
    
    
    
    
    
    
    
                     (    2    <    K    S    W    ]    h    r    |      '        1            )    
    
    $      "    7  '  B  *  f    o  0  }          )             0        )    "        0        0        0        #        #  "  *  2    8  0  J    P  0  b    h  0  z      0        0        $    $  +    ]                         0      8    =    G    L  &  S    X          )    $    ,    ,    %    *    *    *    *    *    ,  .  #  >  ,  T      ,  m                R    f                          *        $  !    '    1    V    a        "    W    m    r    x  ,    +                            )    (           %    *    /    9    @    E    J    O    W    e    j    q    v     .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                       	   @       )    	            %      2                         4             t                   :             #                    J             #  P                 O              #                    X              #                                  #  0  
   
         	              &                                 /  a                                                      boot/grub/i386-efi/lsefi.mod                                                                        0000600 0001750 0001750 00000007120 13417732100 0014463 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      p      4     (   UWVS1ۃ,EPj j j E;]  Eԋ4PPVh    4$th   <$P    M@<QMQV   th   1;u           1PEjR4ỦMtbUGMЃ(uՋEPRPRPRPRPRP
RP	RPRPRPR0h2   0FqCkPP   h,   ڍe1[^_]Uj hf   j h    h{        U5    Handle %p
    Unable to retrieve protocols
   %s
   %08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x
 Display EFI handles. lsefi disk block serial network pxe device path PCI PCI root active EDID discovered EDID override EDID GOP UGA draw simple text output simple text input simple pointer console control absolute pointer EFI driver binding load file simple FS tape I/O unicode collation SCSI I/O USB host debug support debug port decompress loaded image device path to text device path utilities device path from text HII config routing HII database HII string HII image HII font component name 2 HII configuration access USB I/O       qQ4O ir;       ![NYd9 ir;       o% '?       2%- '?M       (- '?M       nW	?m9 ir;        LhL>?P       ~p/J8 '?M       V6D3y       4AIlf       1HrE"X       ީB#8JzЀQj       ),A8wh9       wt8i9 ir;       wt8i9 ir;      1uO '?M      w/.LVIC!#      +YUJY*C3      1CM	&qD      0VL? ir;W      "[NYd9 ir;a      3Z֞E&mk      ͅ= '?Mt      G/b#@><K      &Rt>E      YU'<oBT<%      X8A&G`Ц      |ئ: '?M      1[b? ir;       >2RHUNJ      Ny}C7/r      !J_53C      r~XPyO	)	      rﲡF'm2A`B      ti#L˘wP2*)      j@1kFN몉	 4      uGWG~ZC$>      \zjpOu0%G      G3ONioCX      h/+D[uq      LICENSE=GPLv3+  lsefi                                                                O  (        w                                                               3           C              ^              y                                                                       grub_mod_init grub_mod_fini grub_efi_system_table known_protocols grub_efi_print_device_path grub_register_command_prio grub_printf grub_unregister_command grub_efi_locate_handle grub_efi_get_device_path grub_memcmp         3     8     @     Q     V     ^     g   	               
               2  
  7    <    X    _    d    i    q                 (     @     X     p                                       0    H    `    x                                 8    P    h                                (    @    X    p                 .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .modname                                                      4                       	   @       
     	            %      2         y                8             @                   4   	   @       
  @  	            >                                  N                                 S                                                     
   	         	              8	                                    \                                                                                                                                                                                                                                                                                                                                                                                                                                                                  boot/grub/i386-efi/lsefimmap.mod                                                                    0000600 0001750 0001750 00000005250 13417732100 0015340 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UWVS8j uVj j ]SE       uEu
      j Vj uS un  h    ]ԋE؉EЃ;]s͋wW    WPhK   VVPhO   SC׋SƋCQRPuȃ}̃WVuuh[   C S t

WRPhs   ~?tVRPh}   a	tQRPh   Iց 	t1WRPh   ,ց	t1VRPh   1QRPh   s {$ yh      th      th      th      th      th      th       th    @  th      th      th      th   h   ]1e[^_]Uj h   h   h    h        U5       reserved ldr-code ldr-data BS-code  BS-data  RT-code  RT-data  conv-mem unusable ACPI-rec ACPI-nvs MMIO     IO-ports PAL-code persist  Type      Physical start  - end             #Pages        Size Attributes
 %s  Unk %02x     %016llx-%016llx %08llx  %6lluKiB  %6lluMiB  %6lluGiB  %6lluTiB  %6lluPiB  %6lluEiB  RT  UC  WC  WT  WB  UCE  WP  RP  XP  NV  MR  RO 
 Display EFI memory map.  lsefimmap LICENSE=GPLv3+  lsefimmap                                                                                +                                                                       (              C              O              g              s                             grub_mod_init grub_mod_fini grub_errno grub_register_command_prio grub_printf grub_unregister_command grub_malloc grub_efi_get_memory_map grub_free         5     D   
  Z     l     |                                        $    A    Y    v                                            
        "    5    :    M    R    e    j    }                                                                #    (     .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .data .module_license .bss .modname                                                      4   1                    	   @           	            %             h                    -      2                         <                                  B                                 R                                 W                
                                    
   
         	                                                 h  `                                                                                                                                                                                                                                                                                                                                                                          boot/grub/i386-efi/fshelp.mod                                                                       0000600 0001750 0001750 00000005120 13417732100 0014640 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (  
 ;Bt;BtUPUWVS]M܋M}CCMSC$   SSE؋C/u@CuC}܉C$C1  C S </t
tBS {$t$CeC    E    E      RSh  s׃u=C.    C      E-   E   Ee[^_]{$   C@Cu<CCC    C    E   E   e[^_]EsЉډƋCC    CtN>/uuCCC M؉EPSSuWqEC CC$4$=     tC,    C    C;CtC    C We[^_]UWVS]} uu1   E   SC    )toHE1uMƄɉut/}t$;Etu~w yw @9tUBw E Hw 9eC }+C< REC$CCEC   )QPuR뷍e[^_]U1
   WS0]U}E   ۉ]ЉUt;/tWShA   j    KEQMPuuu2}u}t&RRhX   }u}tPPh    je[_]UWVSLEM8]<}4UEЋE Mu,]O	   U1EU;U0rw9v+uЉu uЉ؋}ԃE 1 t1UԋE t1҉EȉECEỦUEU9}  QEuuuEU(=     t   M4 t1EE9EUuE9EuEE #EEu]܋M9MuM9MuM#M)M܉ME    MċU	tMEMH MH$ERu$uܙRUPEEURPuE =     @     tBPuj u$+EE$EU w	9uE e[^_]not a directory too deep nesting of symlinks file `%s' not found invalid file name `%s' not a regular file LICENSE=GPLv3+ fshelp                                                                                                                                $              3              >              J         `              k               grub_fshelp_find_file grub_strncmp grub_disk_read grub_errno grub_memset grub_fshelp_read_file grub_error grub_free                      
           @    S          
    
  !        3    :    ?  
  p            h  
    	    
  7     .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .modname                                                      4   i                    	   @                        %      2         k                 4                                  :                                 J                                  O                                                      	            	                u                                @  X                                                                                                                                                                                                                                                                                                                                                                                                                                                                  boot/grub/i386-efi/gcry_rsa.mod                                                                     0000600 0001750 0001750 00000004064 13417732100 0015176 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      ,      4     (   UE E]UWVSEXpP   ۉMtFtBt>CPVSPMXZQW<$Ѓe[^_]UWVS(BMPM1qVPSW$e[^_]UVS,Eu@h   UEËE 9uMډzuuPStRRSuփPPuSЃSEEe[^]US U]REUpU9؉uMuuSP1]U        ]U        ]RSA ne nedpqu a s n rsa openpgp-rsa oid.1.2.840.113549.1.1.1      <                            Y                       $       LICENSE=GPLv3+ verify mpi gcry_rsa                                                                                                                                       	               0              C              R              _              m       <                                                                            grub_mod_init grub_mod_fini gcry_mpi_get_nbits grub_crypto_pk_rsa _gcry_mpi_free gcry_mpi_set gcry_mpi_powm _gcry_pubkey_spec_rsa gcry_mpi_cmp gcry_mpi_mul gcry_mpi_new _gcry_mpi_alloc gcry_mpi_release     
  F     S     _     i                                  2    K    u                                                        $     (     4     8     <     @     D      .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                       	   @            
            %      2         =                 8             8  L                  4   	   @       T  p   
            >                                 N                                  S                                  \                	                                  P     
         	                                                  e                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/functional_test.mod                                                              0000600 0001750 0001750 00000257524 13417732100 0016601 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      \     4     (   UV   Sh    $           $   $1   $>   $J   $[   $d   $r   $~   $       tSt1t
h   h   1e[^]USP       t0        tS        ̅t
h   h   1]Uj h   j j h   h   j h   j j h    h           U5    UWVS(jMtgu  WCuS*u&  VCus$EC    C1e[^_]UWVSÃQR;t$PVWh9  <$4$e[^_]UEMUU} VSu.MuUEPVuSZYSh   e[^]USS} u=MUEPuh>  S}UCM $ZYSh   ]UWVS}jut(WsC]E    e[^_]e[^_]USu5    t+PCtP]]]UWVSuVQQvh^     t?KuQ  S{u&  Cu  QWRPhc   뽃=    uRRvhr  1lPPvh|     tK   CtPCtPCtPS머   e[^_]UH   t5X   h  j(h   V=h    u R5|   5d   5l   5t   h  P5|   5t   5l   5d   h  j(h       UWVSRD   T   RPj    ơ   t;   |?VSP5D   5@   5   h  h  hc  h0   h  j 0S<9tCWVSP5D   5@   5   h  h  hl  h0   h  j @	C      e[^_]UWV1S    }h@   <$                 PPW3   C9@      C9D      C9H      C9X      C9L   u~C9P   usC9h   uhC 9d   u]C$9p   uRC(9l   uGC,9x   u<C09t   u1C49   u&C89|   ukD@      <      FD             R  e[^_]U      RQP15D   95@   5   h  h>  h  h   h  P$5                                       U    4   4   tQQhJ  pu=4    u	4    ȡ    4   4   u 4   u6PhJ  hR  h  h  FRRhJ  ptʡ4    볃PPt4h    hJ  hl  h  h  h    h  j     .    0      <   4            18   Ã=0    tHU4   0       PP8   4   8       <   <           Ë   Ut   ;   }H   ]Ã=    UVS]u
          tP4    V   t2RVu    d  P                e[^]Ã=    tGU   5                                   á    tU11U1]UEuL  E]UW   VuQjTj h      $          $P  u    vRPh   hL  u^7uMPuuj u8       th      @t      1e^_]UP  ]U5L  X5P         t*@tС   @tj j 5   5   Ѓ  grub_test_use_gfxterm   grub_video_checksum_end checksum                                                      |  -        X                                              ȓ  -                                                         -                                               `  -        X                                          -                                                   -      
                                          D  -                                                       -        X                                              ܎  -                                                       (  -                     
                           t  -        X              
                             -                       
                             -                                                X  -        X                                           -                                                    -                                                <  -        X                                           -                                                  ԇ  -                                  
                 -        X                           
              l  -                                    
                -                                                  -        X                                         P  -                                                    -                                                  -        X                                         4  -                                                    -                                               ̀  -        X                                          -                                                 d  -                                                               X                                              ~                                                         t~                                                 $~          X                                        }                                                   }        
                                          4}                                                       |          X                                              |                                                         D|                       
                           {          X              
                           {                         
                           T{                                                  {          X                                         z                                                    dz                                                  z          X                                         y                                                    ty                                    
              $y          X                           
              x                                      
              x                                                  4x          X                                         w                                                    w                                                  Dw          X                                         v                                                    v                                                 Tv          X                                        v                                                   u                                                       lu          X                                              $u                                                         t                                                 t          X                                        Lt                                                   t        
                                          s                                                       ts          X                                              ,s                                                         r                       
                           r          X              
                           Tr                         
                           r                                                  q          X                                         |q                                                    4q                                                  p          X                                         p                                                    \p                                    
              p          X                           
              o                                      
              o                                                  <o          X                                         n                                                    n                                                  dn          X                                         n                                                    m                                                 m          X                                        Dm                                                   l                                                       l          X                                              \l                                                         l                                                 k          X                                        lk                                                   k        
                                          j                                                       |j          X                                              ,j                                                         i                       
                           i          X              
                           <i                         
                           h                                                  h          X                                         Lh                                                    g                                                  g          X                                         \g                                                    g                                    
              f          X                           
              lf                                      
              f                                                  e          X                                         |e                                                    ,e                                                  d          X                                         d                                                    <d                                                 c          X                                        c                                                   Lc                                                       b          X                                              b                                                         \b                                                 b          X                                        a                                                   la        
                                          a                                                       `          X                                              |`                                                         ,`                       
                           _          X              
                           _                         
                           <_                                                  ^          X                                         ^                                                    L^                                                  ]          X                                         ]                                                    \]                                    
              ]          X                           
              \                                      
              l\                                                  \          X                                         [                                                    |[                                                  ,[          X                                         Z                                                    Z                                                 <Z          X                                        Y                                                   Y                                                       LY          X                                              X                                                         X                                                 \X          X                                        X                                                   W        
                                          lW                                                       W          X                                              V                                                         |V                       
                           ,V          X              
                           U                         
                           U                                                  <U          X                                         T                                                    T                                                  LT          X                                         S                                                    S                                    
              \S          X                           
              S                                      
              R                                                  lR          X                                         R                                                    Q                                                  |Q          X                                         ,Q                                                    P                                                 P          X                                        <P                                                   O                                                       O          X                                              LO                                                         N                                                 N          X                                        \N                                                   N        
                                          M                                                       lM          X                                              M                                                         L                       
                           |L          X              
                           ,L                         
                           K                                                  K          X                                         <K                                                    J                                                  J          X                                         LJ                                                    I                                    
              I          X                           
              \I                                      
              I                                                  H          X                                         lH                                                    H                                                  G          X                                         |G                                                    ,G                                                 F          X                                        F                                                   <F                                                       E          X                                              E                                                         LE                                                 D          X                                        D                                                   \D        
                                          D                                                       C          X                                              lC                                                         C                       
                           B          X              
                           |B                         
                           ,B                                                  A          X                                         A                                                    <A                                                  @          X                                         @                                                    L@                                    
              ?          X                           
              ?                                      
              \?                                                  ?          X                                         >                                                    l>                                                  >          X                                         =                                                    |=                                                 ,=          X                                        <                                                   <                                                       <<          X                                              ;                                                         ;                                                 L;          X                                        :                                                   :        
                                          \:                                                       :          X                                              9                                                         l9                       
                           9          X              
                           8                         
                           |8                                                  ,8          X                                         7                                                    7                                                  <7          X                                         6                                                    6                                    
              L6          X                           
              5                                      
              5                                                  \5          X                                         5                                                    4                                                  l4          X                                         4                                                    3                                                 |3          X                                        ,3                                                   2                                                       2          X                                              <2                                                         1                                                 1          X                                        L1                                                   0        
                                          0                                                       \0          X                                              0                                                         /                       
                           l/          X              
                           /                         
                           .                                                  |.          X                                         ,.                                                    -                                                  -          X                                         <-                                                    ,                                    
              ,          X                           
              L,                                      
              +                                                  +          X                                         \+                                                    +                                                  *          X                                         l*                                                    *                                                 )          X                                        |)                                                   ,)                                                       (          X                                              (                                                         <(                                                 '          X                                        '                                                   L'        
                                          &                                                       &          X                                              \&                                                         &                       
                           %          X              
                           l%                         
                           %                                                  $          X                                         |$                                                    ,$                                                  #          X                                         #                                                    <#                                    
              "          X                           
              "                                      
              L"                                                  !          X                                         !                                                    \!                                                  !          X                                                                                              l                                                             X                                                                                           |     	                                                  ,     	     X                                                   	                                                         	                                            <     	     X                                             	                                                   	   
                                          L     	                                                       	     X                                                   	                                                    \     	                  
                                	     X              
                                	                    
                           l     	                                                  	     X                                              	                                               |     	                                             ,     	     X                                              	                                                    	                               
              <     	     X                           
                   	                                 
                   	                                             L     	     X                                              	                                                    	                                             \     	     X                                              	                                                    	                                            l     	     X                                             	                                                                                                     |          X                                              ,                                                                                                                    X                                        <                                                           
                                                                                                 L          X                                                                                                                              
                           \          X              
                                                    
                                                                             l          X                                                                                                                                               |          X                                         ,                                                                                        
                        X                           
              <                                      
                                                                          X                                         L                                                                                                                X                                         \                                                                                                               X                                        l                                                                                                                      X                                              |                                                          ,                                                  
           X                                        
                                                    <
         
                                          	                                                        	           X                                              L	                                                                                  
                                      X              
                           \                          
                                                                                         X                                         l                                                                                                                   X                                         |                                                     ,                                     
                         X                           
                                                     
              <                                                              X                                                                                              L                                                              X                                                                                              \                                                             X                                                                                            l     -                                                  X     -     X                                              D     -                                                    0     -                                                 -     X                                             -                                                   -   
                                               -                                                       -     X                                                   -                                                         -                  
                                -     X              
                           |     -                    
                           h     -                                             T     -     X                                         @     -                                               ,     -                                                  -     X                                              -                                                     -                               
                    -     X                           
                    -                                 
                    -                                                   -     X                                               -                                               x      -                                             d      -     X                                         P      -                                               <      -                                            (      -     X                                              -                                                     legacy_password_test exfctest videotest_checksum gfxterm_menu setjmp_test cmdline_cat_test div_test xnu_uuid_test pbkdf2_test signature_test sleep_test ALL TESTS PASSED
 TEST FAILURE
 Run all loaded functional tests. functional_test Run all functional tests. all_functional_test <unknown_file> <unknown_function> %s%s assert failed: %s  <no message> %s:
  %s:%s:%u: %s
 %s: PASS
 %s: FAIL
 i%d bgra%d%d%d%d rgba%d%d%d%d Unexpected checksum %s_%dx%dx%s:%d: 0x%x 0 tests/video_checksum.c Checksum %s_%dx%dx%s:%d failed: 0x%x vs 0x%x Not enough checksums %s_%dx%dx%s: %d vs %d ctr == nchk gfxterm terminal `%s' isn't found terminal `%s' failed: %s cmdline_cat gfxterm_menu gfxmenu gfxterm_ar gfxterm_cyr gfxterm_heb gfxterm_gre gfxterm_ru gfxterm_fr gfxterm_quot gfxterm_piglatin gfxterm_ch gfxterm_red gfxterm_high videotest fake Render capture  pذ Щ;O
~53U&r1nc>gU	[ƞ,M0m2D,)^
lPߔb;*썀J=IČUG&#'ZZZZZ)))))FFFFFg<+g<+g<+g<+g<+vVvVvVvVvVd;1"l=lC1iJnV-I3?*QzEa~%3al<bCLfLfLfLfLf*\*\*\*\*\B*<B*<B*<B*<B*<כככככV,V,V,V,V,ЭЭЭЭЭ}2}2}2}2}2+-+-+-+-+-.i0wUmKW6ln7J4Of'5%23yV;|JVO%&PF+ߘ.ibO%YK&EEEEEWWWWWSSSSS+(ݴ:e\}1:eS+(+(V6V6V6


#k{#k{#k{+(ݠSS+(=_j$tcj$th=_=_ewewew}}}   =_hh=_
pӟPӟPӟPjjjpp1
=*
^11nnnnnn1^^1zo&M55*Xszo&Mzo&M>>>&I$&I$&I$pppzo&M*Xs*Xszo&MX[iERR힂XX tr tr tr(m(m(m=aC=aC=aCXRRRR힂XfCrʄPUʄ-fCrfCr8( 8( 8( hېhېhې*'A*'A*'AfCr--fCr>`l8w `l^>>ʙ'ʙ'ʙ'ȲȲȲ>^^>ՇS2xGi2xGp+ՇSՇS@#@#@#			ĝnĝnĝnՇSp+p+ՇSfCrWvWvţfCrfCrZZZ۠ꕥꕥꕥfCrfCr>\>ts\>F5>>aaaZ>tZ>tZ>tŪ>F5F5>ՇSmےTm sՇSՇSƁƁƁ
J
J
Jǜo o o ՇSssՇS1掩fzg2T掩fi11nnnnnn1ii1zo&Mm'`/m'`e{zo&Mzo&M>>>&I$&I$&I$pppzo&Me{e{zo&MXIE^ޙIE{CXX tr tr tr(m(m(m=aC=aC=aCX{C{CXfCr`|ϓ:`|>fCrfCr8( 8( 8( hېhېhې*'A*'A*'AfCr>>fCr>H旅tfH旅6>>ʙ'ʙ'ʙ'ȲȲȲ>66>ՇS-Ji<-J@ՇSՇS@#@#@#			ĝnĝnĝnՇS@@ՇSfCr89~഻8BfCrfCrZZZ۠ꕥꕥꕥfCrBBfCr>z+"^m>>aaaZ>tZ>tZ>tŪ>"^m"^m>ՇS6nPT6%ՇSՇSƁƁƁ
J
J
Jǜo o o ՇS%%ՇSiɓ-<9ba-k*ii_U#_U#_U#쓔;;;iɉk*k*iEa[a4EEccc---111E44E oY"F"$ oY oYȂȂ888)u)u)u oY"$"$ oY4=̠f+4=4=uuu<.E<.E<.E4=++4=+(KSwKS{+(+(V6V6V6


#k{#k{#k{+({{+(=_vP#NU5=_=_ewewew}}}   =_U5U5=_+]U+raӟPӟPӟPjjjraraiɓ-<9ba-k*ii_U#_U#_U#쓔;;;iɉk*k*iEa[a4EEccc---111E44E oY"F"$ oY oYȂȂ888)u)u)u oY"$"$ oY+(-28S 2+(+(+J+J+Jϳ5ϳ5ϳ5^/^/^/+(8S 28S 2+(=_D=_=_aaay8y8y8W'W'W'=_=_VVo]o]o]\~\~\~̞PPP1@/@]r@/@4P11h2h2h214P4P1zo&Mh8%*n0h8%zo&Mzo&MD4D4D4/o~/o~/o~k{Vk{Vk{Vzo&Mzo&MX6+6+ybXXw7w7w7m:m:m:x6$x6$x6$XybybXfCrZW	ZW?fCrfCrMMMSSS_=H_=H_=HfCr??fCr>@W@x>>]]]4ȴ4ȴ4ȴ>xx>ՇS_5 _ՇSՇSu,u,u,$$$3a3a3aՇSՇSfCrMd.onMd.f=fCrfCr]]]MMMjwjwjwfCrf=f=fCr>){/]6){p'>>0H0H0HFIFIFI>p'p'>ՇSL
%ڗL?!ՇSՇSVkVkVk3:3:3:aLaLaLՇS?!?!ՇS1aa0aj11<5<5<50"Q0"Q0"Q3838381jj1zo&MQ~Q`zo&Mzo&Mrbrbrb?<?<?<zo&M`گ`zo&MX##/##RXX[ [ [ IIIEEEXRRXfCrDnP0vDnP0q]H3fCrfCrS+S+S+:::AT@AT@AT@fCrq]H3q]H3fCr>H4$&HřUt>>~~~$mu$mu$mu<<<>UtUt>ՇS>S'6>S'.-ՇSՇS4G4G4G釉}釉}釉}


ՇS.-.-ՇSfCrSY_>SY_jfCrfCr2$2$2$fffもAAAfCrjjfCr>-ёܯ-ёr>>aFaFaFl!l!l!>rr>ՇS>FfUwY>F@qՇSՇS~~~\%\%\%ՇS@q@qՇSiɭӤmӤ$pUiiBxBxBx$݆$݆$݆(,n(,n(,ni$pU$pUiEAX	?AXlzEEgKy gKy gKy  F F Fk+$k+$k+$ElzڿlzE oYFJUf[FJX oY oYߒߒ___ oYXX oY4=7UN7UB4=4=:::~E~E~E4G4G4G4=BB4=+(&I%-uby&I%-+(+(CCyCCyCCymXmXmX6B6B6B+(+(=_L|;L|jcd=_=_...>|>|>|`zc`zc`zc=_jcdjcd=_hhk&555VVVAl#8Al#8Al#8k&k&iɭӤmӤ$pUiiBxBxBx$݆$݆$݆(,n(,n(,ni$pU$pUiEAX	?AXlzEEgKy gKy gKy  F F Fk+$k+$k+$ElzڿlzE oYFJUf[FJX oY oYߒߒ___ oYXX oY+($}H$}fQW+(+(:-C7:-C7:-C7N2-N2-N2-+(fQWfQW+(=_+|/?A+|x;F=_=_ռOռOռO^%^%^%=_x;Fx;F=_$o4$o4˰d   3xl3xl3xl˰d˰d1\f\fһg/N11RRRе6е6е6f_f_f_1g/Ng/N1zo&MⲴM1tⲴ{pzo&Mzo&MBBBKY KY KY ҘҘҘzo&M{p{pzo&MX=}9ϖ=}99XXxxxJ]J]J]F4'F4'F4'X99XfCrm@mw)m@mfCrfCrQ0Q0Q0ҿfCrfCr>Q!Q1o{ڪ>>jjj%%%ު>1o{1o{ڪ>ՇS#	
+#	|uՇSՇSJCJCJCzzzzzzՇS|u|uՇSfCr{#.{#G2fCrfCrB=B=B=  z  z  zI'I'I'fCrG2G2fCr>)8,-)k*>> hI hI hI[[[>k*k*>ՇSϦĵϻϦ5ՇSՇSqqqԜԜԜBtVBtVBtVՇS55ՇS1\f\fһg/N11RRRе6е6е6f_f_f_1g/Ng/N1zo&MⲴM1tⲴ{pzo&Mzo&MBBBKY KY KY ҘҘҘzo&M{p{pzo&MX=}9ϖ=}99XXxxxJ]J]J]F4'F4'F4'X99XfCrm@mw)m@mfCrfCrQ0Q0Q0ҿfCrfCr>Q!Q1o{ڪ>>jjj%%%ު>1o{1o{ڪ>ՇS#	
+#	|uՇSՇSJCJCJCzzzzzzՇS|u|uՇSfCr{#.{#G2fCrfCrB=B=B=  z  z  zI'I'I'fCrG2G2fCr>)8,-)k*>> hI hI hI[[[>k*k*>ՇSϦĵϻϦ5ՇSՇSqqqԜԜԜBtVBtVBtVՇS55ՇSi4,Ջ4GY^iibbbUUUiGY^GY^iE0E&0O5EE{{{GGG)Ř)Ř)EO5O5E oY^4^ oY oYa a a ^^^ƿƿƿ oY oY4=#UPQ$#UP.4=4=^ܪ^ܪ^ܪuuuL]L]L]4=..4=+($}H$}fQW+(+(:-C7:-C7:-C7N2-N2-N2-+(fQWfQW+(=_+|/?A+|x;F=_=_ռOռOռO^%^%^%=_x;Fx;F=_$o4$o4˰d   3xl3xl3xl˰d˰di4,Ջ4GY^iibbbUUUiGY^GY^iE0E&0O5EE{{{GGG)Ř)Ř)EO5O5E oY^4^ oY oYa a a ^^^ƿƿƿ oY oY+(#oަ##oIv+(+(b|b|b|]]]xGxGxG+(IvIv+(=_6O`_.6O=_=_XXXɵHHɵHHɵHH44cW44cW44cW=_=_h`Xh T"M|"M|"M|QqQqQq T T1b/kTb/k.11222j\j\j\AAA1..1zo&MD}1!/D}@to zo&Mzo&MyוyוyוsssVVVzo&M@to @to zo&MX[uA2[uA`AXX B B BamzamzamztastastasX`A`AXfCrMRMR=F[fCrfCrG
mG
mG
mɴ4ɴ4ɴ4---fCr=F[=F[fCr>=·)ӌ=·}Ѫ>>uuuE$wE$wE$wFFF>}}Ѫ>ՇSvޜ09DvޜOcՇSՇS_NuD_NuD_NuD8	8	8	ՇSOcOcՇSfCr=,U=ʍ,fCrfCrU?U?U??x?x?xfCrʍ,ʍ,fCr>ob\ִobe"
3>>FY'FY'FY'111>e"
3e"
3>ՇS?ִ=?y4ՇSՇSN>LN>LN>LR錂R錂R7k7k7kՇSy4y4ՇS1b/kTb/k.11222j\j\j\AAA1..1zo&MD}1!/D}@to zo&Mzo&MyוyוyוsssVVVzo&M@to @to zo&MX[uA2[uA`AXX B B BamzamzamztastastasX`A`AXfCrMRMR=F[fCrfCrG
mG
mG
mɴ4ɴ4ɴ4---fCr=F[=F[fCr>=·)ӌ=·}Ѫ>>uuuE$wE$wE$wFFF>}}Ѫ>ՇSvޜ09DvޜOcՇSՇS_NuD_NuD_NuD8	8	8	ՇSOcOcՇSfCr=,U=ʍ,fCrfCrU?U?U??x?x?xfCrʍ,ʍ,fCr>ob\ִobe"
3>>FY'FY'FY'111>e"
3e"
3>ՇS?ִ=?y4ՇSՇSN>LN>LN>LR錂R錂R7k7k7kՇSy4y4ՇSigkggǔiiJJJֆ^%(^%(^%(sssiǔǔiE1t1EE
O
O
OmGmGmGkkkEE oYܼ]_ܼqM oY oY0t0t0tVtfVtfVtf$V$V$V oYqMqM oY4=NstAR1Nst#~4=4=0001114=#~#~4=+(#oަ##oIv+(+(b|b|b|]]]xGxGxG+(IvIv+(=_6O`_.6O=_=_XXXɵHHɵHHɵHH44cW44cW44cW=_=_h`Xh T"M|"M|"M|QqQqQq T TigkggǔiiJJJֆ^%(^%(^%(sssiǔǔiE1t1EE
O
O
OmGmGmGkkkEE oYܼ]_ܼqM oY oY0t0t0tVtfVtfVtf$V$V$V oYqMqM oY+(FuH!Fu,%|+(+(V6V6V6


#k{#k{#k{+(,%|,%|+(=_x_8^4xgB=_=_ewewew}}}   =_gBgB=_qsqpՅӟPӟPӟPjjjpՅpՅ1;?;?11nnnnnn11zo&Ml7ZFF|l7Z %zo&Mzo&M>>>&I$&I$&I$pppzo&M % %zo&MX'. '.NXX tr tr tr(m(m(m=aC=aC=aCXNNXfCrvzs1,5vzsafCrfCr8( 8( 8( hېhېhې*'A*'A*'AfCraafCr>@`|wp@`^>>ʙ'ʙ'ʙ'ȲȲȲ>^^>ՇSYH5Y2/&ՇSՇS@#@#@#			ĝnĝnĝnՇS2/&2/&ՇSfCro/oZ`c~fCrfCrZZZ۠ꕥꕥꕥfCrZ`c~Z`c~fCr>ف`x[ف`F>>aaaZ>tZ>tZ>tŪ>FF>ՇS0v04;ՇSՇSƁƁƁ
J
J
Jǜo o o ՇS4;4;ՇS1;?;?11nnnnnn11zo&Ml7ZFF|l7Z %zo&Mzo&M>>>&I$&I$&I$pppzo&M % %zo&MX'. '.NXX tr tr tr(m(m(m=aC=aC=aCXNNXfCrvzs1,5vzsafCrfCr8( 8( 8( hېhېhې*'A*'A*'AfCraafCr>@`|wp@`^>>ʙ'ʙ'ʙ'ȲȲȲ>^^>ՇSYH5Y2/&ՇSՇS@#@#@#			ĝnĝnĝnՇS2/&2/&ՇSfCro/oZ`c~fCrfCrZZZ۠ꕥꕥꕥfCrZ`c~Z`c~fCr>ف`x[ف`F>>aaaZ>tZ>tZ>tŪ>FF>ՇS0v04;ՇSՇSƁƁƁ
J
J
Jǜo o o ՇS4;4;ՇSi!S!SLDii_U#_U#_U#쓔;;;iɏLDLDiE'klYؚ'klnBEEccc---111EnBnBE oYƗyM
ƗyZ: oY oYȂȂ888)u)u)u oYZ:Z: oY4=X~TXsĦ4=4=uuu<.E<.E<.E4=sĦsĦ4=+(FuH!Fu,%|+(+(V6V6V6


#k{#k{#k{+(,%|,%|+(=_x_8^4xgB=_=_ewewew}}}   =_gBgB=_qsqpՅӟPӟPӟPjjjpՅpՅi!S!SLDii_U#_U#_U#쓔;;;iɏLDLDiE'klYؚ'klnBEEccc---111EnBnBE oYƗyM
ƗyZ: oY oYȂȂ888)u)u)u oYZ:Z: oY+(NFcNF$&+(+(@,E@,E@,Eddd5ma~5ma~5ma~+($&$&+(=_qs$?rqsA5I=_=_ccccccsKsKsKfXTfXTfXT=_A5IA5I=_m,Q5m,Q5ÈIeƔƔƧIWIWIWe<e<e<ÈIeÈIe1:l*:l11RXRXRX}}}!!!11zo&M_K_zo&Mzo&MmwmwmwҨ Ҩ Ҩ B9B9B9zo&Mzo&MX7P>7Pi~PXX]F]F]FXi~Pi~PXfCr4x r4xDfCrfCr222bbb (Y (Y (YfCrDDfCr>U+͵fHU+ᄪ>>NNN]~]~]~ooo낪>ᄹᄪ>ՇSe!m_e!ص5ՇSՇS l; l; l;> > > ՇSص5ص5ՇSfCr'd'r{fCrfCr?M?M?MujujujfCrr{r{fCr>m,mm5>>E&E&E&###>55>ՇS=`z=`b$ՇSՇS   555ZeZeZeՇSb$b$ՇS1:l*:l11RXRXRX}}}!!!11zo&M_K_zo&Mzo&MmwmwmwҨ Ҩ Ҩ B9B9B9zo&Mzo&MX7P>7Pi~PXX]F]F]FXi~Pi~PXfCr4x r4xDfCrfCr222bbb (Y (Y (YfCrDDfCr>U+͵fHU+ᄪ>>NNN]~]~]~ooo낪>ᄹᄪ>ՇSe!m_e!ص5ՇSՇS l; l; l;> > > ՇSص5ص5ՇSfCr'd'r{fCrfCr?M?M?MujujujfCrr{r{fCr>m,mm5>>E&E&E&###>55>ՇS=`z=`b$ՇSՇS   555ZeZeZeՇSb$b$ՇSiݷ~ݷ~y#iiɑ E E E]mػ]mػ]mػQSQSQSiy#y#iEi(i8¹i(i8lEE???2B2B2BТТТEllE oY7777t oY oYiii}}}ϰ oYtt oY4=Vr؅N
Vr;&4=4=FUFUFUh*h*h*A֓A֓A֓4=;&;&4=+(NFcNF$&+(+(@,E@,E@,Eddd5ma~5ma~5ma~+($&$&+(=_qs$?rqsA5I=_=_ccccccsKsKsKfXTfXTfXT=_A5IA5I=_m,Q5m,Q5ÈIeƔƔƧIWIWIWe<e<e<ÈIeÈIeiݷ~ݷ~y#iiɑ E E E]mػ]mػ]mػQSQSQSiy#y#iEi(i8¹i(i8lEE???2B2B2BТТТEllE oY7777t oY oYiii}}}ϰ oYtt oY+(ݑsRݑsy+(+(PY%PY%PY%eee%%%+(ݑyy+(=_ƻu*ƻu<j"O=_=_ӝӝӝ᥅333X,X,X,=_<j"O<j"O=_{|U*{|UMMTETETEgY?gY?gY?룥룥MMMM1s%b s%bfr11sgsgsg j j j1frfr1zo&M2Es2EWpzo&Mzo&Mm`m`m`7ve7ve7ve".".".zo&MWpWpzo&MXJJ%JXXҠҠҠa%oa%oa%otLtLtLX%J%JXfCrb|bdCfCrfCrfEfEfEƕWƕWƕWbbbfCrdCdCfCr>5oƐ5oٓ>>mmm555""">ٓٓ>ՇSOzO @JՇSՇSHHHՇS @J @JՇSfCr?/t?/>fCrfCrHHHfCr>>fCr>bsrPɅbs/kɪ>>ііenMenMenMiuiuiu>/k/kɪ>ՇSk<k+`ՇSՇSIjIjIjl%3l%3l%3%%%ՇS+`+`ՇS1s%b s%bfr11sgsgsg j j j1frfr1zo&M2Es2EWpzo&Mzo&Mm`m`m`7ve7ve7ve".".".zo&MWpWpzo&MXJJ%JXXҠҠҠa%oa%oa%otLtLtLX%J%JXfCrb|bdCfCrfCrfEfEfEƕWƕWƕWbbbfCrdCdCfCr>5oƐ5oٓ>>mmm555""">ٓٓ>ՇSOzO @JՇSՇSHHHՇS @J @JՇSfCr?/t?/>fCrfCrHHHfCr>>fCr>bsrPɅbs/kɪ>>ііenMenMenMiuiuiu>/k/kɪ>ՇSk<k+`ՇSՇSIjIjIjl%3l%3l%3%%%ՇS+`+`ՇSiEɢ[@sEɢ[iiZ:Z:Z:\]\]\]T
T
T
iiE?Cpy?C㺙mEEsx|sx|sx|~ڭ~ڭ~Ɯ*XƜ*XƜ*XE㺙m㺙mE oYs@|s@𾶬 oY oYm m m r er er e=== oY𾶬𾶬 oY4=F	F	vKO>4=4=PPPfff<<<4=vKO>vKO>4=+(ݑsRݑsy+(+(PY%PY%PY%eee%%%+(ݑyy+(=_ƻu*ƻu<j"O=_=_ӝӝӝ᥅333X,X,X,=_<j"O<j"O=_{|U*{|UMMTETETEgY?gY?gY?룥룥MMMMiEɢ[@sEɢ[iiZ:Z:Z:\]\]\]T
T
T
iiE?Cpy?C㺙mEEsx|sx|sx|~ڭ~ڭ~Ɯ*XƜ*XƜ*XE㺙m㺙mE oYs@|s@𾶬 oY oYm m m r er er e=== oY𾶬𾶬 oY+(ݝ35.35.FN+(+(`ƒ`ƒ`ƒttt+(FNFN+(=_7\&7\͍=_=_ǡǡǡܱܱL8L8L8=_͍͍=_8K8ߣߣߐNNNRjRjRjۖ1*d*͉I?11,GF,GF,GFYYY_H_H_H1͉I?͉I?1zo&Moe̜`zo&Mzo&Mr>r>r>ͨI`ͨI`ͨI`]p]p]pzo&M``zo&MX$xǦXX@@@###݂XǦǦXfCr*tHfCrfCrMMMCCC-j6-j6-j6fCrHHfCr>#UT6	#UTχ%>>C=C=C=s.s.s.>χ%χ%>ՇS7, bՇSՇS@́@́@́H_H_H_ڀ̃ڀ̃ڀՇS b bՇSfCrچx]Fچ3fCrfCr'`'`'`л'л'л'JJJfCr33fCr>:Ɖq-:Ɖť>>?t?t?tDBоDBоDBЪ>>ՇSEA7J|EAXJՇSՇS8p8p8p)F)F)FbbbՇSXJXJՇS1*d*͉I?11,GF,GF,GFYYY_H_H_H1͉I?͉I?1zo&Moe̜`zo&Mzo&Mr>r>r>ͨI`ͨI`ͨI`]p]p]pzo&M``zo&MX$xǦXX@@@###݂XǦǦXfCr*tHfCrfCrMMMCCC-j6-j6-j6fCrHHfCr>#UT6	#UTχ%>>C=C=C=s.s.s.>χ%χ%>ՇS7, bՇSՇS@́@́@́H_H_H_ڀ̃ڀ̃ڀՇS b bՇSfCrچx]Fچ3fCrfCr'`'`'`л'л'л'JJJfCr33fCr>:Ɖq-:Ɖť>>?t?t?tDBоDBоDBЪ>>ՇSEA7J|EAXJՇSՇS8p8p8p)F)F)FbbbՇSXJXJՇSip!iiL0Z L0Z L0Z ^^^iɁρiE&1&Я&oEE[[[ϺpϺpϺpXXXEooE oYQBQڧ oY oYx6*x6*x6*TTT/(/(/( oYڧڧ oY4=.Hŵ.HŵCEK4=4=ԲԲsss3JC3JC3JC4=CEKCEK4=+(ݝ35.35.FN+(+(`ƒ`ƒ`ƒttt+(FNFN+(=_7\&7\͍=_=_ǡǡǡܱܱL8L8L8=_͍͍=_8K8ߣߣߐNNNRjRjRjۖip!iiL0Z L0Z L0Z ^^^iɁρiE&1&Я&oEE[[[ϺpϺpϺpXXXEooE oYQBQڧ oY oYx6*x6*x6*TTT/(/(/( oYڧڧ oY+( OoY֒ Oj<+(+(fff---+(j<j<+(=_=';='=_=_UMUMUMM]M]M]vvv=_=_0'd ӑ0'?wYQ\YQ\YQ\j!j!j!ͨ"TQ"TQ"TQ?w?w1t	zt	䘓11/,}/,}/,}2t2t2t\#\#\#11zo&M~ϘJ~Ϯzo&Mzo&MUUU~N~N~Nkkkzo&Mzo&MX3*$3*5*XXAdAdAduSuSuS` ` ` X5*5*XfCrۃ٣ۃPQ>fCrfCr===L~dL~dL~dfCrPQ>PQ>fCr>LNLUz>>CCCsss>UzUz>ՇSjtCJjtSՇSՇSցIpցIpցIp···\=\=\=ՇSSSՇSfCrIjFIqfCrfCrMMM4Wt4Wt4Wt~pZ~pZ~pZfCrqqfCr>~_{~_>>˰z˰z˰z8`(8`(8`(˰˰˰>__>ՇSXSXSѮՇSՇS888ja'ja'ja'MMMՇSѮѮՇS1t	zt	䘓11/,}/,}/,}2t2t2t\#\#\#11zo&M~ϘJ~Ϯzo&Mzo&MUUU~N~N~Nkkkzo&Mzo&MX3*$3*5*XXAdAdAduSuSuS` ` ` X5*5*XfCrۃ٣ۃPQ>fCrfCr===L~dL~dL~dfCrPQ>PQ>fCr>LNLUz>>CCCsss>UzUz>ՇSjtCJjtSՇSՇSցIpցIpցIp···\=\=\=ՇSSSՇSfCrIjFIqfCrfCrMMM4Wt4Wt4Wt~pZ~pZ~pZfCrqqfCr>~_{~_>>˰z˰z˰z8`(8`(8`(˰˰˰>__>ՇSXSXSѮՇSՇS888ja'ja'ja'MMMՇSѮѮՇSi8x2:8Uii;s;s;s{{{UUUiɇUևUiEؖUgؖU]{EEM	M	M	@@@[[[E]{]{E oY6噸06 oY oY   `mH`mH`mHPj{Pj{Pj{ oY oY4=Um'KUm8X4=4=222ܚܚܳ4444=8X8X4=+( OoY֒ Oj<+(+(fff---+(j<j<+(=_=';='=_=_UMUMUMM]M]M]vvv=_=_0'd ӑ0'?wYQ\YQ\YQ\j!j!j!ͨ"TQ"TQ"TQ?w?wi8x2:8Uii;s;s;s{{{UUUiɇUևUiEؖUgؖU]{EEM	M	M	@@@[[[E]{]{E oY6噸06 oY oY   `mH`mH`mHPj{Pj{Pj{ oY oY+(Uª_Uª?
+(+(y+_y+_y+_x~x~x~fdfdfd+(?
?
+(=_:墘E=_=_				M	M	M5"R5"R5"R=_EE=_nn[}!nnRWRWRWEEEZZZ1i0i	W11{ O{ O{ O1	W	W1zo&M$	$ezo&Mzo&M1wԎ1wԎ1wԎlhlhlh888zo&Meezo&MXC}zCuXXwiwiwi{{{XXXXuuXfCr\,@\%fCrfCrTTT~&>~&>~&>fCr%%fCr>pPpƪ>>]:]:]:m)/m)/m)/xΫxΫxΪ>ƪ>ՇSCJCCJ|ץՇSՇSqqq___{<{<{<ՇS|ץ|ץՇSfCr:38G:3]O"fCrfCrqFqFqF===###fCr]O"]O"fCr>o6oP>>Y>Y>Y>բբբ@"f@"f@"f>PP>ՇSp(pӜՇSՇS666ooo$&$&$&ՇSӜӜՇS1i0i	W11{ O{ O{ O1	W	W1zo&M$	$ezo&Mzo&M1wԎ1wԎ1wԎlhlhlh888zo&Meezo&MXC}zCuXXwiwiwi{{{XXXXuuXfCr\,@\%fCrfCrTTT~&>~&>~&>fCr%%fCr>pPpƪ>>]:]:]:m)/m)/m)/xΫxΫxΪ>ƪ>ՇSCJCCJ|ץՇSՇSqqq___{<{<{<ՇS|ץ|ץՇSfCr:38G:3]O"fCrfCrqFqFqF===###fCr]O"]O"fCr>o6oP>>Y>Y>Y>բբբ@"f@"f@"f>PP>ՇSp(pӜՇSՇS666ooo$&$&$&ՇSӜӜՇSiɅS룏SDiiGKPGKPGKPaaa%7F%7F%7FiDDiEHSmHfEEYYYTY TY TY EffE oYx b6󨝗x b6?u oY oYueueueGXGXGX oY?u?u oY4=/4=4=^Mi^Mi^MicycycyCCC4=4=+(Uª_Uª?
+(+(y+_y+_y+_x~x~x~fdfdfd+(?
?
+(=_:墘E=_=_				M	M	M5"R5"R5"R=_EE=_nn[}!nnRWRWRWEEEZZZiɅS룏SDiiGKPGKPGKPaaa%7F%7F%7FiDDiEHSmHfEEYYYTY TY TY EffE oYx b6󨝗x b6?u oY oYueueueGXGXGX oY?u?u oY+(gAHg+(+(c c c ,._,._,._M.M.M.+(ݮ+(=_~)*r'O~)*rH=_=_iii<<<┥#┥#┥#=_HH=_UCUC҅JJJ(((cGcGcG҅҅1汐ʫ汐[E11>>>   1+1+1+1[E[E1zo&MUyUQyzo&Mzo&M
o
o
oHVHVHVzo&MQyQyzo&MXGj>GjM
XXܩܩܩ\+f\+f\+fIBIBIBXM
M
XfCrYcROYcofCrfCr+&+&+&ضHضHضHĶĶĶfCroofCr>sCwsC扈>>nWnWnW}}}-,-,-,>扈扈>ՇSClYnC_~ՇSՇS
j
j
jsEsEsEm'Em'Em'EՇS_~_~ՇSfCrLw%:t=Lw%4fCrfCr|D|D|DAEAEAEknknknfCr44fCr>T#TAq>>lVĀlVĀlVĀwww>AqAq>ՇSh;h;vՇSՇS]|]|]|p%Rp%Rp%RՇSvvՇS1汐ʫ汐[E11>>>   1+1+1+1[E[E1zo&MUyUQyzo&Mzo&M
o
o
oHVHVHVzo&MQyQyzo&MXGj>GjM
XXܩܩܩ\+f\+f\+fIBIBIBXM
M
XfCrYcROYcofCrfCr+&+&+&ضHضHضHĶĶĶfCroofCr>sCwsC扈>>nWnWnW}}}-,-,-,>扈扈>ՇSClYnC_~ՇSՇS
j
j
jsEsEsEm'Em'Em'EՇS_~_~ՇSfCrLw%:t=Lw%4fCrfCr|D|D|DAEAEAEknknknfCr44fCr>T#TAq>>lVĀlVĀlVĀwww>AqAq>ՇSh;h;vՇSՇS]|]|]|p%Rp%Rp%RՇSvvՇSic	ec	diiɇKjCKjCKjCG|<G|<G|<iddiE+6ߍ+DEEddd̽iBjiBjiBj֋֋֋EDDE oY>U>yoC oY oYg^g^g^   YYY oYyoCyoC oY4=yyt?A4=4=ƝƝƝSSSz6
z6
z6
4=t?At?A4=+(gAHg+(+(c c c ,._,._,._M.M.M.+(ݮ+(=_~)*r'O~)*rH=_=_iii<<<┥#┥#┥#=_HH=_UCUC҅JJJ(((cGcGcG҅҅ic	ec	diiɇKjCKjCKjCG|<G|<G|<iddiE+6ߍ+DEEddd̽iBjiBjiBj֋֋֋EDDE oY>U>yoC oY oYg^g^g^   YYY oYyoCyoC oY3J
/^ah
/?a9Q9Q9Q'h'h'h3J{Z*)=f9 
*)=f?b
b
b
eee&&&{Z??B7̷7yQ̷;ك{ڕ{ڕ{ڕ,~,~,~bgbgbgB71h԰nIbbb\_\_\_1԰԰zo&MC0gC,HcyyyV!V!V!eseseszo&M,H,HXEuE{YT4W cScScS]W]W]WX{Y{YfCr@ho"d@ho-1q020202[[[!!!fCr--> !s/ !I"Aa;;; }&h }&h }&h^M^M^M>I"I"ՇSm6@C|F4/M4/M4/M
m7
m7
m7.sf.sf.sfՇS@C@CfCrNZYJNѡL*±±±{4{4{4fCr>W	b3ԬWxF5w=x)\)\)\範ددLq,Lq,Lq,>xF5xF5ՇS[Gw-[G+X1`w`w`wP`P`P`EEEՇS++1ǗQ!Σ0%-%-%-ˀˀˀ4ʭ4ʭ4ʭ1!Σ!Σzo&M+KjDt+Kjޭ&]+&]+&]+yyyzo&MނX+`+`zgx	}1^y1^y1^y0
0
0
q9q9q9꾂XzgzgfCrBțpBMLqȜNȜNȜNrțrțrț
ɺ
ɺ
ɺfCrMM>RLueRBYt="+Յ"+Յ"+ժ>BYtBYtՇSãe⭎ãGኟ!AV!AV!AV,,,;};};}ՇSGGfCr8:h8m_/16>6>6>eeefCrm_m_>8l80+=56ScTScTScTZ
Z
Z
;b;b;b>00ՇSC5l9C5,|:::$z-$z-$z-MMMՇSi(27Fԗ~(2~(2~(2gؖMgؖMgؖMi77E_:4_:SUצ=Iئ=Iئ=IجESS oYk>rkJG7B3j3j3jJe6Je6Je6_I_I_I oYJGJGT9kǑgzgzgzC4C4C4gggTkk3J0ցIw0|iDi*Y*Y*Yn=n=n=nnn3J|iD|iD{Z~l5~l< a%遊VՐVՐVՐӠӠ{Z< a< aB7|[|;A(xt$b$b$bXoXoXo=!=!=!B7|;A(|;A(i_~N_~=3E$y3E$y3E$yOOOiɘ==EXƄ}X/m[[[QQQ			E// oY}(j=K}(}&.c	+c	+c	+sososo oY}}+(9 ?<x9 ?SL+(+(V6V6V6


#k{#k{#k{+(SLSL+(=_e:}ve:@1 =_=_ewewew}}}   =_@1 @1 =_¼":¼"RfrӟPӟPӟPjjjRfrRfr1]#!B]#!9\׽11nnnnnn19\׽9\׽1zo&M'l'5zo&Mzo&M>>>&I$&I$&I$pppzo&M5ۥ5zo&MXk9k"XX tr tr tr(m(m(m=aC=aC=aCX""XfCrs?+4ms?+fCrfCr8( 8( 8( hېhېhې*'A*'A*'AfCrfCr>5	75"Q>>ʙ'ʙ'ʙ'ȲȲȲ>"Q"Q>ՇSXlG}XlaՇSՇS@#@#@#			ĝnĝnĝnՇSaaՇSfCr
]Ҏ
ۿfCrfCrZZZ۠ꕥꕥꕥfCrۿۿfCr>[H`յ[*3">>aaaZ>tZ>tZ>tŪ>*3"*3">ՇSgg
%lՇSՇSƁƁƁ
J
J
Jǜo o o ՇS
%l
%lՇS1]#!B]#!9\׽11nnnnnn19\׽9\׽1zo&M'l'5zo&Mzo&M>>>&I$&I$&I$pppzo&M5ۥ5zo&MXk9k"XX tr tr tr(m(m(m=aC=aC=aCX""XfCrs?+4ms?+fCrfCr8( 8( 8( hېhېhې*'A*'A*'AfCrfCr>5	75"Q>>ʙ'ʙ'ʙ'ȲȲȲ>"Q"Q>ՇSXlG}XlaՇSՇS@#@#@#			ĝnĝnĝnՇSaaՇSfCr
]Ҏ
ۿfCrfCrZZZ۠ꕥꕥꕥfCrۿۿfCr>[H`յ[*3">>aaaZ>tZ>tZ>tŪ>*3"*3">ՇSgg
%lՇSՇSƁƁƁ
J
J
Jǜo o o ՇS
%l
%lՇSi];5oy];5ټ,hii_U#_U#_U#쓔;;;iټ,hټ,hiEv՘|#v	EEccc---111E		E oYiz)di.> oY oYȂȂ888)u)u)u oY.>.> oY4=Js\J~4=4=uuu<.E<.E<.E4=~~4=+(9 ?<x9 ?SL+(+(V6V6V6


#k{#k{#k{+(SLSL+(=_e:}ve:@1 =_=_ewewew}}}   =_@1 @1 =_¼":¼"RfrӟPӟPӟPjjjRfrRfri];5oy];5ټ,hii_U#_U#_U#쓔;;;iټ,hټ,hiEv՘|#v	EEccc---111E		E oYiz)di.> oY oYȂȂ888)u)u)u oY.>.> oY+(;;؋pp;a;a88MMYYڋππnnjj-#p-#pT}~T}~II\54\54̭%̭%5lm5lmII񈁴VUVU[WvQ||=_A7A7DVǗDVǺҺNN  BPBP.+.+o|o|ononH9H9!S!Sw'w'77YUYU77dbdbFwFwwUHwUHY FY F
I<M#M#SvhSvh'';;ʦ%ʦ%ttHyGHyGY$Y$䮵+ w+ wBtBtoSoSAAv!v!(7a(7aXJXJ-r-r'&_'&_|w|wnhnhI\I\'r}/l}/l1]}]}jBjBv-~v-~ZZk>k>` ` 1Կ1Ԧ
sM
sM((r6mr6meem|m|ߺPOPOLWLW~+~+RdRd__yJ<Nllzo&M愭愭_Oj_OjPLMPLMl#Tl#TJ[
J[
Ȩ۩Ȩ۩L+L+ B B11xx}9'}9'A^ HA^ H
U
Ucscs*H*H__~O~O؟t؟t\ΓMT6T6XKzKzY/Y/P:P:_T_T͇88]4]4ƒƒcM*cM*IIɅ-s$-s$2i2i99Kn0Kn0	o^	o^N'N'vvݟݟ
@
@w7!s!sfCriiÏ"2"2xxSQSQ""gg䮪xx'b'b撸

||.N.N/Ś/Śvg{~vg{~ w! w!|O|O}}@T@TZ_Q'GAGA>};ȕ};ȕʸʸpdpd^Y^YccǼouoouoXbhXbh||ZZ,b,bIIb;b;u-u-j^%j^%ّ3ّ34w4wwwn`O`OՇSddj3j3hhtt52tk52tkIIפyפyKSKS^G^Gaa??ّ--𺞋x? x? $lׯ$lׯEE
~
~]dzJZJZfCr)5)5;&;&╜CCɶ9ɶ9u"u"kkiis	Ws	W[?[?{{KX:KX:L-L-NcNcAأA/z@23*j9*j9>68682{2{bTbTbb⣬ааtt 8& 8&WW_܀_pwUpwU``]^]^22ɁɁggdfdfLKLKsڬsڬYa5Ya5E%to(ZT:T:ՇSKKHUHUFFYhYh V V"bl"blqCqC)ɶ)ȿSȿS  8u8u@e@e)d)d*"*"??GGkkm}	m}	=d[z+[z+1]}]}jBjBv-~v-~ZZk>k>` ` 1Կ1Ԧ
sM
sM((r6mr6meem|m|ߺPOPOLWLW~+~+RdRd__yJ<Nllzo&M愭愭_Oj_OjPLMPLMl#Tl#TJ[
J[
Ȩ۩Ȩ۩L+L+ B B11xx}9'}9'A^ HA^ H
U
Ucscs*H*H__~O~O؟t؟t\ΓMT6T6XKzKzY/Y/P:P:_T_T͇88]4]4ƒƒcM*cM*IIɅ-s$-s$2i2i99Kn0Kn0	o^	o^N'N'vvݟݟ
@
@w7!s!sfCriiÏ"2"2xxSQSQ""gg䮪xx'b'b撸

||.N.N/Ś/Śvg{~vg{~ w! w!|O|O}}@T@TZ_Q'GAGA>};ȕ};ȕʸʸpdpd^Y^YccǼouoouoXbhXbh||ZZ,b,bIIb;b;u-u-j^%j^%ّ3ّ34w4wwwn`O`OՇSddj3j3hhtt52tk52tkIIפyפyKSKS^G^Gaa??ّ--𺞋x? x? $lׯ$lׯEE
~
~]dzJZJZfCr)5)5;&;&╜CCɶ9ɶ9u"u"kkiis	Ws	W[?[?{{KX:KX:L-L-NcNcAأA/z@23*j9*j9>68682{2{bTbTbb⣬ааtt 8& 8&WW_܀_pwUpwU``]^]^22ɁɁggdfdfLKLKsڬsڬYa5Ya5E%to(ZT:T:ՇSKKHUHUFFYhYh V V"bl"blqCqC)ɶ)ȿSȿS  8u8u@e@e)d)d*"*"??GGkkm}	m}	=d[z+[z+i9"P9"PlÂlÂ c ckk((ɬ{vu{vu..QQFF#V#VPPaXl=aXl=#$P#$P),),MIMI%EP%EPCCJ"!J"!˔˔dxE۩8HLHLEIgTIgTvӕvӕ59w59w6h)6h)++	7	7ţ&ţ&CRCRھ8ھ8##%%/	/	WWijijٙBBZcZc/4/4|F|FƟƟ+]+]#~님 oYh}h}[Z[Zw1uyw1uy[[spspmm==b,b,{{إإώώӅQQgmgm˂UU[[ŞŞ??ҥҥ/q/q3I3IуIKYY4=	(}	(}$BR$BRRRj'cj'cpgpgxMndxMnd;;ZZ l lHfHfHH_&_&l"l""m~"m~
բ
բ//ccCQ`hII+(;;؋pp;a;a88MMYYڋππnnjj-#p-#pT}~T}~II\54\54̭%̭%5lm5lmII񈁴VUVU[WvQ||=_A7A7DVǗDVǺҺNN  BPBP.+.+o|o|ononH9H9!S!Sw'w'77YUYU77dbdbFwFwwUHwUHY FY F
I<M#M#SvhSvh'';;ʦ%ʦ%ttHyGHyGY$Y$䮵+ w+ wBtBtoSoSAAv!v!(7a(7aXJXJ-r-r'&_'&_|w|wnhnhI\I\'r}/l}/li9"P9"PlÂlÂ c ckk((ɬ{vu{vu..QQFF#V#VPPaXl=aXl=#$P#$P),),MIMI%EP%EPCCJ"!J"!˔˔dxE۩8HLHLEIgTIgTvӕvӕ59w59w6h)6h)++	7	7ţ&ţ&CRCRھ8ھ8##%%/	/	WWijijٙBBZcZc/4/4|F|FƟƟ+]+]#~님 oYh}h}[Z[Zw1uyw1uy[[spspmm==b,b,{{إإώώӅQQgmgm˂UU[[ŞŞ??ҥҥ/q/q3I3IуIKYY                                                                     X                                                                                                                                                     
                                                 X                                                                                                                          
               (                                                                                                                   X                                                                                                                                                                    
                                   X           @                
                                                                
                                                                                                 X           @                                                                                                                                                                                X           `	                                                                                                                                                           
                      X           @                             
                                                                
                                                                                    X           @                                                                                                                                                                                X           `	                                                                                                                               
                                                 X                                                                                                                                 7          j	                  <             
                                                                              m
          
                  LICENSE=GPLv3+  LICENSE=GPLv3+  LICENSE=GPLv3+  btrfs extcmd video video_fb functional_test                                                                                      	    L  L                                          
                             4         J              ]              x                           
  Q                                                           (             >         _             o                                                      T      	                               @                    z       2             @             Z             q             |                            	         
                                 	             #             /             G             V    _     m                            0  4	                   X      	                             0  O                  6             T             m               	  R         N                                                                      *  3  G    >             Y             n             }  <   {                     
                      M                   grub_mod_init grub_mod_fini grub_video_fb_map_rgba grub_test_use_gfxterm grub_video_fb_fini grub_video_get_blit_format grub_test_run grub_errmsg grub_terminal_input_fake_sequence_end grub_video_fb_get_region grub_video_fb_create_render_target_from_pointer grub_video_fb_unmap_color grub_dl_load grub_video_fb_map_rgb grub_video_checksum_get_modename grub_xvasprintf grub_video_fb_scroll grub_xasprintf grub_video_fb_fill_rect grub_memmove grub_test_list grub_video_fb_blit_bitmap grub_strdup grub_test_nonzero grub_video_fb_get_viewport grub_video_checksum_end grub_snprintf grub_video_adapter_active grub_unregister_extcmd grub_errno grub_memset grub_term_outputs_disabled grub_terminal_input_fake_sequence grub_video_capture_start grub_term_inputs grub_video_fb_get_palette grub_video_fb_set_palette grub_printf grub_video_fb_map_color grub_getcrc32c grub_video_capture_end grub_video_fb_init grub_video_fb_get_area_status grub_test_video_modes grub_term_outputs grub_video_capture_refresh_cb grub_strcmp grub_malloc grub_test_register grub_video_fb_set_active_render_target grub_video_fb_set_area_status grub_video_fb_set_region grub_video_fb_delete_render_target grub_test_use_gfxterm_end grub_test_unregister grub_list_remove grub_free grub_named_list_find grub_video_fb_get_active_render_target grub_video_get_info grub_video_checksum grub_video_fb_set_viewport grub_register_extcmd grub_list_push checksum_table grub_video_fb_get_info grub_video_capture_get_framebuffer grub_video_fb_blit_render_target grub_test_assert_helper grub_video_fb_create_render_target                      &  )     0     5     <     A     H     M     T     Y     `     e     l     q     x     }                                                .          &  
      &  /    9    >  .  U    ^    c    h  G  r    {              G            %    8                    A    A  M    `    e    o  A  w  A        H          $  H  B  8  T    g    s  H        B    @    A    A        .                   '    ,  .  9    F    K  .  \    a  .  g    u      A    A    A    A                    #                          !    '    -    3    8    ?    D  #  L    \  K  c    j    s  0  |                                              M                                    M      '    <  I  G    L  D  T    ]    g    p    z  7                                                  "    -    8  I  =    C  I  H    `    j  6  n                                              M        A                    6    5      "    -    5  7  B    L    U  (  Z    _    h    r    w    |          7                                M    5              	  5  	    	    (	    .	    <	    D	    J	    U	    [	    d	  5  l	    x	    ~	    	    	    	  +  	    	    	  A  	  8  	    	  +  	    	    	    
    
    
    ,
    2
    8
    A
  +  F
  A  O
    Y
    c
    n
  6  
    
  :  
    
    
  '  
  2  
    
    
    
    
    
  8  
    
  &              "  :  7  -  C  $  J    T    Y  D  ^    p  $  t              =        A            $              <     x                             D    L                            T    \                         (    d    l                    0    8    t    |                    @    H                            P    X                        $    `    h                    ,    4    p    x                 	    <	    D	    	    	    	    	    
    
    L
    T
    
    
    
    
             \    d                    (    0    l    t                    8    @    |                        H    P                            X    `                    $    ,    h    p                    4    <    x                         D    L                            T    \                         (    d    l                    0    8    t    |                    @    H                            P    X                        $    `    h                    ,    4    p    x                     <    D                            L    T                             \    d                    (    0    l    t                    8    @    |                        H    P                              X     `                         $!    ,!    h!    p!    !    !    !    !    4"    <"    x"    "    "    "     #    #    D#    L#    #    #    #    #    $    $    T$    \$    $    $    $    $     %    (%    d%    l%    %    %    %    %    0&    8&    t&    |&    &    &    &    '    @'    H'    '    '    '    '    (    (    P(    X(    (    (    (    (    )    $)    `)    h)    )    )    )    )    ,*    4*    p*    x*    *    *    *     +    <+    D+    +    +    +    +    ,    ,    L,    T,    ,    ,    ,    ,    -     -    \-    d-    -    -    -    -    (.    0.    l.    t.    .    .    .    .    8/    @/    |/    /    /    /    0    0    H0    P0    0    0    0    0    1    1    X1    `1    1    1    1    1    $2    ,2    h2    p2    2    2    2    2    43    <3    x3    3    3    3     4    4    D4    L4    4    4    4    4    5    5    T5    \5    5    5    5    5     6    (6    d6    l6    6    6    6    6    07    87    t7    |7    7    7    7    8    @8    H8    8    8    8    8    9    9    P9    X9    9    9    9    9    :    $:    `:    h:    :    :    :    :    ,;    4;    p;    x;    ;    ;    ;     <    <<    D<    <    <    <    <    =    =    L=    T=    =    =    =    =    >     >    \>    d>    >    >    >    >    (?    0?    l?    t?    ?    ?    ?    ?    8@    @@    |@    @    @    @    A    A    HA    PA    A    A    A    A    B    B    XB    `B    B    B    B    B    $C    ,C    hC    pC    C    C    C    C    4D    <D    xD    D    D    D     E    E    DE    LE    E    E    E    E    F    F    TF    \F    F    F    F    F     G    (G    dG    lG    G    G    G    G    0H    8H    tH    |H    H    H    H    I    @I    HI    I    I    I    I    J    J    PJ    XJ    J    J    J    J    K    $K    `K    hK    K    K    K    K    ,L    4L    pL    xL    L    L    L     M    <M    DM    M    M    M    M    N    N    LN    TN    N    N    N    N    O     O    \O    dO    O    O    O    O    (P    0P    lP    tP    P    P    P    P    8Q    @Q    |Q    Q    Q    Q    R    R    HR    PR    R    R    R    R    S    S    XS    `S    S    S    S    S    $T    ,T    hT    pT    T    T    T    T    4U    <U    xU    U    U    U     V    V    DV    LV    V    V    V    V    W    W    TW    \W    W    W    W    W     X    (X    dX    lX    X    X    X    X    0Y    8Y    tY    |Y    Y    Y    Y    Z    @Z    HZ    Z    Z    Z    Z    [    [    P[    X[    [    [    [    [    \    $\    `\    h\    \    \    \    \    ,]    4]    p]    x]    ]    ]    ]     ^    <^    D^    ^    ^    ^    ^    _    _    L_    T_    _    _    _    _    `     `    \`    d`    `    `    `    `    (a    0a    la    ta    a    a    a    a    8b    @b    |b    b    b    b    c    c    Hc    Pc    c    c    c    c    d    d    Xd    `d    d    d    d    d    $e    ,e    he    pe    e    e    e    e    4f    <f    xf    f    f    f     g    g    Dg    Lg    g    g    g    g    h    h    Th    \h    h    h    h    h     i    (i    di    li    i    i    i    i    0j    8j    tj    |j    j    j    j    k    @k    Hk    k    k    k    k    l    l    Pl    Xl    l    l    l    l    m    $m    `m    hm    m    m    m    m    ,n    4n    pn    xn    n    n    n     o    <o    Do    o    o    o    o    p    p    Lp    Tp    p    p    p    p    q     q    \q    dq    q    q    q    q    (r    0r    lr    tr    r    r    r    r    8s    @s    |s    s    s    s    t    t    Ht    Pt    t    t    t    t    u    u    Xu    `u    u    u    u    u    $v    ,v    hv    pv    v    v    v    v    4w    <w    xw    w    w    w     x    x    Dx    Lx    x    x    x    x    y    y    Ty    \y    y    y    y    y     z    (z    dz    lz    z    z    z    z    0{    8{    t{    |{    {    l    x              J    -    ,    F    !    <      Ğ  ;  Ȟ  3  ̞  /  О    Ԟ    ؞    ܞ          L            N    =        C   .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                       	   @       5  	              )                {                 %   	   @       >               1      2         K                D             ,                   @   	   @       [                J             8* /                  Z             h* \                 _              h*                   h              *                                 *               	              / "                               \ q                                                                                                                                                                                              boot/grub/i386-efi/gcry_seed.mod                                                                    0000600 0001750 0001750 00000036070 13417732100 0015333 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      :      4     (   UWVS MuQEAe1EA1EA1EAEAe1EA1EA1EA	1A1A
1AEYeFx1]Y1I1]܉E1M܋]3^|1@  3@  E3@  3@   @  3@  E؉3@  }3@   @  3@  E؉3@  }3@   1]1ME]3Fp3^tE1@  3@  3@  }3@   ω@  3@  E؉3@  }3@   ى@  3@  E؉E3@  }3@   <1ȉ}1U؉M3Nh3VlE1Ɖڋ@  3@  3@  3@   Չً@  3@  3@  3@   ŉً@  3@  3@  3@   ^`<3}3E1Eԉً^d1É1ڋ@  3@  3@  3@   ً@  3@  3@  3@   ً@  3@  3@  3@   M؍]1MM1ʋM3NXU3V\1ڋ@  3@  3@  3@   ً@  3@  3@  3@   ً@  3@  3@  3@   ]1}}1ǋE3FP}؉FT11ڋ@  3@  3@  3@   ً@  3@  3@  3@   ً@  3@  3@  3@   NH<3E3}3VL1E1ڋ@  3@  3@  3@   ً@  3@  3@  3@   ً@  3@  3@  3@   M]1]]؋M3N@1É]3^D1ڋ@  3@  3@  3@   ً@  3@  3@  3@   ً@  3@  3@  3@   V<M1}3E܋}3~81E1ڋ@  3@  3@  3@   Չً@  3@  3@  3@   ŉً@  3@  3@  3@   M؍<3}1ˋN0]؋V4111ڋ@  3@  3@  3@   ً@  3@  3@  3@   ً@  3@  3@  3@   MM1MM1ȋME3F,3N(1ڋ@  3@  3@  3@   ً@  3@  3@  3@   ً@  3@  3@  3@   U1}U3V }؉ыV$1ǉ}11ڋ@  3@  3@  3@   ً@  3@  3@  3@   ً@  3@  3@  ]3@   1Í<F3}]1F1؉1ڋ@  3@  3@  3@   ً@  3@  3@  3@   ً@  3@  3@  3@   MM3E1MM3N3VE1ڋ@  3@  3@  3@   ً@  3@  3@  3@   ً@  3@  3@  3@   M1}]3^}܉ً^1ǉ}11ڋ@  3@  3@  3@   ʋ@  3@  3@  3@   ʋ@  3@  3@  3@   3E3]ǋ}N111Չ@  3@  3@  3@   4̉@  3@  3@  3@   4ԉ@  3@  3@  3@   }3M3U܈_ΈOOOшWGuWW	W
WWWGOWE    [^_]UWVS MuQEAe1EA1EA1EAEAe1EA1EA1EA	1A1A
1AEYe1]Y1I1]܉E1M܋]3^1@  3@  E3@  3@   @  3@  E؉3@  }3@   @  3@  E؉3@  }3@   1]1ME]3F3^E1@  3@  3@  }3@   ω@  3@  E؉3@  }3@   ى@  3@  E؉E3@  }3@   <1ȉ}1U؉M3N3VE1Ɖڋ@  3@  3@  3@   Չً@  3@  3@  3@   ŉً@  3@  3@  3@   ^<3}3E1Eԉً^1É1ڋ@  3@  3@  3@   ً@  3@  3@  3@   ً@  3@  3@  3@   M؍]1MM1ʋM3N U3V$1ڋ@  3@  3@  3@   ً@  3@  3@  3@   ً@  3@  3@  3@   ]1}}1ǋE3F(}؉F,11ڋ@  3@  3@  3@   ً@  3@  3@  3@   ً@  3@  3@  3@   N0<3E3}3V41E1ڋ@  3@  3@  3@   ً@  3@  3@  3@   ً@  3@  3@  3@   M]1]]؋M3N81É]3^<1ڋ@  3@  3@  3@   ً@  3@  3@  3@   ً@  3@  3@  3@   VDM1}3E܋}3~@1E1ڋ@  3@  3@  3@   Չً@  3@  3@  3@   ŉً@  3@  3@  3@   M؍<3}1ˋNH]؋VL111ڋ@  3@  3@  3@   ً@  3@  3@  3@   ً@  3@  3@  3@   MM1MM1ȋME3FT3NP1ڋ@  3@  3@  3@   ً@  3@  3@  3@   ً@  3@  3@  3@   U1}U3VX}؉ыV\1ǉ}11ڋ@  3@  3@  3@   ً@  3@  3@  3@   ً@  3@  3@  ]3@   1Í<F`3}]1Fd1؉1ڋ@  3@  3@  3@   ً@  3@  3@  3@   ً@  3@  3@  3@   MM3E1MM3Nh3VlE1ڋ@  3@  3@  3@   ً@  3@  3@  3@   ً@  3@  3@  3@   M1}]3^p}܉ً^t1ǉ}11ڋ@  3@  3@  3@   ʋ@  3@  3@  3@   ʋ@  3@  3@  3@   3E3]ǋFx}N|111Չ@  3@  3@  3@   4̉@  3@  3@  3@   4ԉ@  3@  3@  3@   }3M3U܈_ΈOOOшWGuWW	W
WWWGOWE    [^_]UWVS]=    u              =          }f r  E;SKECs1CE    1C1C1S1S1S	1S1S
1S1s[11ڋuM؋    49)މى)ˉ]܉ߋ@  3@  3@  3@   uM܉^]@  3@  M3@  u3@   uE^u u܉Ɖ}1	Ήu܉։ʋM1	E}1j(e[^_]UE    ]Uh    ùy7sn<xͻw37gnލܼy7<snxͻ㙛w37gnܼ880(-,!&38/ ``@TQED@D/lcO+hcKXSK"`bB3035)(!	 "'<642HCK/,l`L(4DAE!?<3=<1(( LBN6><2%9+(#&dbF:xrJ'$#/,#12prB@BB@AA 3psC'dcG,7- 
,, *440.)\QM8TSG. 9?=|qM1015
*hbJ1     " " (h`H1pqA!`aA>&XQIPQA#+DCG
#,?;xsK\PL"!#`cC# #LAM:82
 .,":.lbNXRJ23	HAI8xpH;0pp@5tqE?|sO541  $d`D-laM4tpD4*		6trF	> @@@ =: 0*("
\RN)TRF@CC	0%H@H9xqI<! !\SO7tsGTPD2%$!LCO    DBF-XPHPRB+>|rN	=000 %daE<<06$;<|pLPP@981	&$"202)haI743'$$ $PSC

L@L;83
HBJ7)DTP,%$!M\QC@CAPQ<
C#`c(( DD@     "% K;xs;.@0pp?<3(2026D4tp,GTSL\PKXS= $$ C3ps 2,, 'B2prц	@ ``@PP#+6OLC7JXRH8xp&/A!`aÄ4A@ABPRM=|q     	 CPS7!=F6tr/,#'$#0+"N.lbMLAI)haL<|p		

?/3>D$d`.,"KHC
! !K+hcF&db 5
 3N>|rJ:xrGDC%&$" -Ӂ! 000743.642" "8804'EDALL@)541<<0A1pqÉ	E5tq;8IXQ?I	HA	981G'dc ӈ8B@B# #L,l`ӄ$4401HH@O/lc=<1-,!@ @@>><2<*:NLBETQ;83H(h`O?|sJ
HBFTRG7ts -FDB5+(#E%da:#91N\R9&2101*M-laO\S$0
:82HXPB"`b	)(!303(I9xqJ*hb
*("088(!-,&ܳ38/`@ `QET@DDcO/lcK+hSKXbB"`3305!	)( "ࣇ'Б<264CKH/쀈`L,l(4AED!3?<1=< ((BNL62><%9#+(bF&drJ:x#'$#/,1rB2pBB@AA@ sC3pcG'd,7- 
 ,,*044.)QM\8SGT. ̂9?qM=|1105
bJ*h1     ""  `H(hqA1pؑaA!`>&QIXQAPܒ#+ЁCGD
#,쁍?sK;xPL\"!cC#`## AMLȒ2
:8 ".,:bN.lRJX23AI	HpH8x;p@0pqE5tsO?|154  `D$daM-lpD4t԰4*		rF6t	>@@ @ ్=: 0"
*(RN\)RFTCC@	0%@HHqI9x<!! SO\sG7tPDT2!%$COL    BFD-PHXRBP+rN>|	=0 00aE%d0<<6$䳋;pL<|P@P1	98"&$220aI)h374' $$$SCP

@LL3;8BJ
H7)TPD,$!%\QM@CCPQA<
`cC#( (D@D     "% xsK;;.pp@0<3?(0226tpD4,TSG\PLXSK= $ $psC3 2, ,'prB2	``@ PP@#+6LCO7XRJxpH8&/`aA!4@AAPRB|qM=     	 PSC7!=trF6,#/$#'0+"lbN.LAMhaI)|pL<		

?/3>d`D$,".HCK
 !!hcK+dbF& 5
 3|rN>xrJ:DCG%$"& -!00 0437.426 ""8084'DAEL@L)415<0<pqA1	tqE5;8XQI?HAI	81	9dcG' 8@BB ##l`L,$4041H@HlcO/<1=,!-@@@ ><2><*:LBNTQE83;h`H(|sO?HBJ
TRFtsG7 -DBF5(#+daE%:#91\RN9&2011*laM-\SO$082
:XPH`bB"(!	)033(xqI9hbJ*("
*SEED 1.2.410.200004.1.3 1.2.410.200004.1.4 1.2.410.200004.1.5 1.2.410.200004.1.6            0              
                              +      >              LICENSE=GPLv3+  crypto gcry_seed                                                                                                                                         	              
               4              E       0     \               grub_mod_init grub_mod_fini grub_cipher_unregister _gcry_burn_stack _gcry_cipher_spec_seed grub_cipher_register                                          $    +    ?    L    r    y                                            6    @    O    V    g    q                                                    *    1    A    H    Z    a                                                    =    D    V    ]    l    s                                                    &    0    @    G    Y    `                                                    8    A    S    Z    k    u                                                    .    5    E    L    ^    e                                                    @    G    V    `    o    v                                    	    
	    	     	    2	    9	    I	    P	    _	    i	    	    	    	    	    	    	    	    	    	    	    
    
    C
    J
    \
    c
    s
    z
    
    
    
    
    
    
    
    
        
         *    7    >    T    ^    k    r                                        -    4    H    U    {                                                ?    I    X    _    p    z                                                !    3    :    J    Q    c    j                                                    F    M    _    f    u    |                                        
             /    9    I    P    b    i                                                    A    J    \    c    t    ~                                                %    7    >    N    U    g    n                                                    I    P    _    i    x                                                "    )    ;    B    R    Y    h    r                                                    L    S    e    l    |                                                 *    4    A    H    ^    h    u    |        "    +    5    ?                (    /    J    Q    e    r                                                   0     8     @     H      .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                       	   @       ,                %             <  @                 -      2       |*  Q                 @             *  X                  <   	   @       P9  H               F             (+                    V             8+                    [              8+                    d              ?+  
                                L+                 	              <,  q                                9  m                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          boot/grub/i386-efi/gcry_arcfour.mod                                                                 0000600 0001750 0001750 00000003224 13417732100 0016047 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UWVS$Eu]Mxu܋0}ىMԉup;]tR}CEE܍W}}Uȍ<M؉}
E}ȋEЊ}2OK멋]pE@   $[^_]UWVS  M=    uu              =           }   A    1    D@=   u1ۉ1uC   u11\4;Ҋ\\@=   \uP1h   j Wh,  e[^_]UE    ]Uh    ARCFOUR                                              LICENSE=GPLv3+  crypto gcry_arcfour                                                                                                                                      	        0     7              N              _              t               grub_mod_init grub_mod_fini _gcry_cipher_spec_arcfour grub_cipher_unregister _gcry_burn_stack grub_cipher_register memset                           k    {      
        
                 $     (      .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                       	   @         X   
            %      2                          8               0                  4   	   @             
            >                                 N             ,                    S              ,                    \              3                                  @        
         	              0  {                                $  e                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/gcry_serpent.mod                                                                 0000600 0001750 0001750 00000040434 13417732100 0016072 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      ?      4     (   UWVSL  1ҋBu0ҹ   5y73333B   uˋ!Ë#1		!	ˋ13111!	ȋ#1 11	1ω11É1	!1	1މ 1ы11҉		1ω1!3!#111ً 1ǉ	!ы3	߉1311	!	1ً,!11#!(1Ћ01$1(!щ!		13,!1ȋ,3,	11Ӊ #3(	118<@#4<1ʋ@341<4	!!11؋@!Љ	3<341D1ыPH11Ӊ!1މǋH	3L1щ	11	HH11\T1΋X` 		3T!1ˉ	1ǉ0!#\	11߉,T	ϋl!1ǋp3\!d(d1ڋh҉$d!#d	ǉh		1ʋh!1111d3!	#h1@t1t4|8x<	11։1D1É1	!1	Ɖ1щHPt1ы11L	Ӊ1	13!\!#1񋵔11ً1ǉX	!ы3	`߉T1311p	!	1ً!11l!򋵨1Ћ#Љd11h!!		򉍰13!1ȋ3	1ʋ1Ӊx#3	11ދ|#t311	Ή!!11؋Љ	31!31ы11Ӊ!1މǋ	31щ	11	11ދ1΋		31!#	1	ȉ!11	!31ڋ!1#	1ʋ!Ɖ		!1111!	1#13 	1ω111É1	1	!ˉ1щ 1ы11	Ӊ1	13!!#111ً 1ǉ	!ы3	߉1311	!	!11!11Љ0#,(1$1(!!		򉍰13,!1ȋ,3,	1ʋ81Ӊ #3(	@11ދ@<#4<3411<4	Ή!!11؋@Љ!	3<1H34D1ыP11Ӊ!1މǋH	3L1щ	11	HH11\T1΋X` 		3T1!#\	1ǉ0!	11߉,T	!l3\!d1ǋp1҉(d$d!Ɖh		ǋh1#d!1	ˋh3111d@!	ȋt#h1}8x1t4|<1	1ω1D1É	11Ӌ}!ˉ	ƉPM1tH1ыU1E1LM	Ӊ1	13E!\!#ME1111ǉX	!3M`T]MuU؉	111E3up		!!11#}1ىl!]1ЋU1}1udEh!щ!		13u!1ȋM3E	1ʋM1Ӊx#3U	E11ދ}|U#E3}t11҉uӋE	!E!!11؋]Љ	3]3M1u1ыUЉ]11Ӊ!1މǋEȉ	3E1щ	11	uEȉ11E܉U1΋M؉}		3E!1ˉ	1#M܉!3U	11߉E!	1!1ǉMU]Eu#]1ʋ}	ˋM!Ɖu		!1111!	u1#E3111ҍ044Bu=  uցL  [^_]UWVS@juEP]E}  3M܋     3E؋  ω]ԋ]!3U1]ԉ	ǋ]u!uԉu1}1ω}1щuM1	  1	#E	1u1ȋu3     ȋM3  3  ]1˹   1ӋU˱11ǉ11ډ11ȍ    u1˹   1EԉαʋMԉ1։Eȉ!Ɖ	1ىẺ!U	1uЋu	]Љ}ċ}3}3  3Ủ  u11ϋMԉ}}!!1}3  u	ދ]1u1Ϲ   3  1111б׉ϱ1ʍ    11Ϲ   uԉ˱!1Uԉ11!ÉM̋MԉUЋU	!11UЉʋM3]#EЋ  	ЋU1މuȋu	3  1ƋE3     1}3E1؋]ȱ3  1111ñ<    1߱1ȱ11˱ʉ	MȉΉ	!։Mԉ1E1ًE!ЉE̋E1ȉщMЋM	E3    E1}̉ȋM1u3E13  	3uй   ]1}3  3U13UЉʉ111ι   ˱1ȍ    11˹   }ԉ1Eԉȱ	ʉ։1u	ދ]ԉЉŰU1!11!3M13  	!ʹ   1ӋU3u3  U!U1֋U3  3  1111ߍ    ]ԉ1Uα1uϱ11ʱˋMԉȉ11щuЉ!ӉE		1EЉȋM	؉M!#u1!}1񋷤  1Ήuԉ  1!ڋ]3  u11Ћ  1ȹ   ȱ11u111ȹ       ϱ1111Ʊȱ1׉щ}!Uȋ}ȉʉ	1	#}̉U	ډU11}ԋ}uЋu!]Ћ]U	1]3  ]3  u1ϋM3     ΋M13     1ЋUU3E1Љ111ύ    1111ϱȉ}ȉ	1։}	11u!#uȋ}	1ދ]		É]Ћ]ȉŰU1M̋M1u13  U3U3  3     ϋME#EE3     1É1111Ӊױ    1Ǳ1׉1ΉUԱ1uԉ؋uʱȉ!ˉ	!]	11Ή1MЋMU	u1EЉuȋu3t  u3|  E	΋M!1E1ƋE3x     ΋M1	}3p     3U11ڱ11Ɖˍ<    }1u1б11]αʉ׋M1։!މ]̉		1]Ћ]!UЉ}	1}3l  3U1}ȋd  1ʋuUu1Ϲ   }}!1ڋ]3h  ]1u!1ϋM`     1؉1111ӱ׉ϱ1ʍ    11Ϲ   uԉ1Uԉ˱!11!ÉUЉM̋MԋU	!11UЉʋM3]#EЋT  	ЋU1މuȋu	3\  1ƋE3X     1}3E1؋]ȱ3P  1111ñ<    1߱1ȱ11˱ʉ	MȉΉ	!։Mԉ1E1ًE!ЉE̋E1ȉщMЋM	E3D  EċL  1}̉ȋM1u3E13H  	3uй   ]1}3@  3U13UЉʉ111ι   ˱11׍    1˹   }ԉ1Eԉȱ	ʉ։1u	ދ]ԉЉŰU1!11!3M134  	!ʹ   1ӋU3u3<  U!U1֋U38  30  1111ߍ    ]ԉ1Uα1uϱ11ʱˋMԉȉ11щuЉ!ӉE		1EЉȋM	؉M!#u1!!}1$  1Ήuԉ,  3(  u1ߋ]11Ћ   1ȹ   ȱ11uʉ111       ϱ1111Ʊȱ1׉щ}!Uȋ}ȉʉ	1	#}̉U	ډU11}ԋ}uЋu!]Ћ]3  U	1]Ћ]3  1ϋMu3     ΋M3     1ЋUU3E1Љ111ر1ύ    1111ϱ}1ȉ		ى}11u!ˋ}#u	1ދ]	ŰU1M̋M	É]Ћ]1u3  U3U3  3     ϋM1ËE#EE3      1É1111Ӊױ    1Ǳ1׉1ΉUԱ1uԉ؋uʱȉ!ˉ	!]	11Ή1MUЉuȋM	u1EЋu3   3   E	uĉ΋M!1E1ƋE3      ΋M1	}3      3U11ڱ11Ʊ<    }1u1б11]αʉ׋M1։Ɖ]!މ		Ή]1]!UЉ}	1}1}ȋ   U1ω}}3   3UЋu!1ʹ   1ڋ]u3   ]1u!1ϋM      1؉1111б׉ϱ1ʍ    11Ϲ   uԉ˱!1Uԉ11!ÉUЉM̋MԋU	!11UЉʋM3]#EЋ   	ЋU1މuȋu	3   1ƋE3      1}3E1؋]ȱ3   1111ñ<    1߱1ȱ11˱ʉ	MȉΉ	!։Mԉ1E1ًE!ЉE̋E1ȉщMЋM	E3      E1}̉ȋM1u3E13   	3uй   ]1}3   3U13UЉʉ111ι   ˱1ȍ    11˹   }ԉ1Eԉȱ	ʉ։1u	ދ]ԉЉŰU11!1!3M13   	!ʹ   1ӋU3u3   U!U1֋U3   3   1111ߍ    ]ԉ1Uα1uϱ11ʱˋMԉȉ11މuЉ!ӉE		1EЉȋM	؉M!#u1!!}1񋷤   1Ήuԉ   3   u1ߋ]11Ћ   1ȹ   ȱ11u111ȹ       ϱ1111Ʊȱ1׉щ}!Uȋ}ȉʉ	1	#}̉U	ډU1u!]Ћ]1}U	1]Ћ}ű]3   3   u1ϋM3      ΋M13      1ЋUU3E1Љ111֍    1ϱ111ϱȉ}ȉ	1։}	11u!#uȋ}	1ދ]	ŰU1M	ËM]Ћ]1u3   U3U13   3      ϋME#EE3      1É1111Ӊױ    1Ǳ1׉1ډUԉ1uԱuʱȉ!ˉ	Ɖ]!	11Ή1MЋMU	u1E3Y|uȋu3qtE	uĉ΋M!1E1ƋE3qx   ΋M1	}3Qp   3U1111Ɖˍ<    }1u1б11]αʉ׋M1։Ɖ]!މ		Ή]1]!UЉ}	1}3Sl3U1}ȋ{d1ʋuUu1Ϲ   }}!1ڋ]3{h]1u!1ϋMA`   1؉1111б׉ϱ1ʍ    11Ϲ   uԉ˱!1Uԉ11!ÉUЉM̋MԋU	!11UЉʋM3]ЋqT1މuȋu#E3q\	ЋU1ƋE3AX   	1}3E1؋]ȱ3SP1111ñ<    1߱1ȱ11˱ʉ	MȉΉ	!։Mԉ1E1ًE!ЉE̋E1ȉщMЋM	E3ADILE1}̉ȋM1u3E13qH	3uй   ]1}3S@3U13UЉʉ111ι   ˱1ȍ    11˹   1ǉȱʉ		111!]1ً]u!E1ƋC41E̋E	ËE1!ËE1]̋]3]!3X<	}3p01ӋP81ʹ   ʱ1111ޱ    1±1ϱ11ǉȱ1Ή1Mԉى]Љ		!1MԉىU	ΉM!ыU1!}#U!1ыW$1ʉUЉ,3Z(3]11ËE3B 1ˋUй   ˱1ȉ111˹   4    ϱ1111ڱ˱1ǉ}!ىEȋ}ȉȉ	1	ω}ԋ}!}ԉ	EЋE1EU1!}	1u3wG1ϋM1ЉEċEЋq   1΋M1E3Y   3]1ӋU1111Ɖύ    1111Ǳ	}Љˉ	11ωMԉщM̋M!	1#EЃU3U1	1u13!	11]؋]E؋}3K3{3SjPuM܉}U$    e[^_]UWVSPjuEP]ES3UЋ[@3]3E3Mȉ1ǉ}	Ή1u1ϋu1}	!	13}!#E1!]}1M1UĹ   3UċE}Ǳ1Ʊ11    11ȹ   11Ɖ3C3S3{1ι   Ɖ3s	щ]	ÉU11!1}#]#E1ߋ]1É11	!ʹ   1Ɖ1±1ڍ    11u±1ױ11ǉ1ȹ   3F(3~ 3^,3V$	U։]1M1ً]11}	É]ċ]1UċU11#E	11Ɖȹ   1ǉ11ËMč    11ʹ   11؉}1б1ι   3w83G03W<3_41׉M	ǉ!}!}߉M!ǋM	1މu11M	u	]E	!ދ]11   !ڱ1Ǳ13}1ߍ    ǉ13]11ر1ЋU1Ʊ3BH3zD3ZL3r@	11Mĉ	ىM!	!1ȉˋM#M1Ӊ]	#]1ȹ   11]ˋM!u3u1˹   	14    1։3u1111׋U3ZT3r\3BP1]щӋU!1؉MEĉ]3zXU	11ωщȉ	1É}]ĉM   	   1Éر13E1Mč4    13u	}}1ι   1׉111ӋU1Ǳ3Bd3rl3z`É3ZhuƋE11މuĉ	!1EĉU	1UU!M3Eu!1Љ}!1ʹ   1±1щι   1<    1ߋ]]1Ʊ1߉Ӊ13}11ЋU1ñ3ZpыRt3Ax3y|1!މu	щu!މu!3u}1Ɖ}ĉ1]	1}ċ}3}3E3U	Ϲ   1M!	ʹ   1ڍ    ±1Ӊ113}Ǳ111؉Uċu3   3   1Uĉ}UUċ   1}ċ}M3   1Uډ	11U	1}}!1]	׉u!ډ1¹   !1Ӊ1#}13u   1}1ލ    Ʊ113]ñ113   3   3   1ʹ   3   M߉	1	}ĉ11}ǋE!#u	!ËE3]111	!ι   1Ʊ±11ڍ    11u¹   1ñ1ǉ11ȹ   3   3   3   3   	։U1]M1ً]11}	É]ċ]1UċU11#E	11Ɖȹ   1ǉ11ËMč    111ʹ   11Љ}3   13      3   3   1׉M	ǉ!}!}߉M!ǋM	1މu11M	u	]E	!ދ]11   !ڱ1Ǳ13}1ߍ    ǉ113]11ޱ1ЋU3   3   3   3   	11Mĉ	ىM!	!1ȉˋM#M1Ӊ]	#]1ȹ   11]ˋM!u3u1˹   	14    11؉ڱ3u111׋U3   3   3   1]щӋU!1؉MEĉ]3   U	11ωщȉ	1É}]ĉM   	   1Éر13E1Mč4    13u	}}1ι   1׉11ӋU11Ǳ3   3   3   É3   uƋE11މuĉ	!1EĉU	1UU!M3Eu!1Љ}!1ʹ   1±1щι   1<    1ߋ]1Ǳ]1߉Ӊ13}11ЋU1ñ3   ы   3   3   1!މu	щu!މu!3u}1Ɖ}ĉ1]	1}ċ}3}3E3U	Ϲ   1M!	ʹ   1ڍ    ±1Ӊ113}Ǳ11ڱUĉ11UċuƉuċu3  3   }  1}ċ}M3  1Uډ	11U1	}}!1]	׉u!ډ1¹   !1Ӊ1#}13u   1}1ލ    Ʊ113]ñ113  3  3  1ʹ   3  ߉M		}1։11Љ}ǋE!#u	!ËE3]111	!ι   1Ʊ±11ڍ    11u¹   1ñ1ǉ11ȹ   3(  3   3,  3$  	U։]1M1ً]11	É]ċ]1UċU1	#E}1Ɖ1߹   11ǉ11ËMč    111ʹ   11Љ}1ι   38  30  3<  34  1Mĉ׉	!!}ĉMMĉ}!	1	]1	ȉu1M   u3}	!1ƋEƱ!1ǉ13U1    u±113E1É13L  1Ϲ   3H  3D  3@  Ή	11؉uĉ	Ήu	!!Ή11M#MĉUU#UĉM}   E11ƱM1!ً]1ʹ   1]1ڍ    1ñ3]111މǉ1ǋEƱ3\  3T  3P  1ЉEE!3uM3X  	Љu11ω	ЉƉ	މΉE1ËEĉM   UĹ   	1<    1ǉ3}13]1׋UU3]1ױ11މEı11EıEEċE3d  3`  h  1EċEU3l  1E1!1ǉ	׉EЉ!M	3E!1!]1Љ1й   1±Ʊ11<    3}Ʊ11߉Ӊ13}11ЋU1ñ3p  ыt  3x  3|  1!މu	щu!މu!3u}1Ɖ}ĉ1]	1}ċ}3}3E3U	Ϲ   1M!	ʹ   1ڍ    ±113}1Ǳ1ñ11ڱUĉ1UċuƉuċu3  3  3    1}ĉ׋Mĉ}]1։ډu	1U1Ɖ1	}!1	׉u!ډ1¹   !1Ӊ1#}13u   1}1ލ    1ӱ3]111ر3  3  3  1ʹ   3  	ǉ}ĉމM1	1Љ1}ǋE!#u	!ËE3]111	!ι   1Ʊ±11ڍ    1ù   1u1ñ1ǉ11ȹ   3  3  3  3  	։U1M1ى]]11}	É]ċ]1UċU11#E	11Ɖȹ   1ǉ11ËMč    111ʹ   11Љ}1ι   3  3  3  3  1	ǉMĉ!}!}߉M!	]	Mĉ1މu11M	uE	!ދ]11ι   Ʊ!1Ǳ13}1ߍ    ǉ13]11ر1ЋU1Ʊ3  3  3  3  	11Mĉ	ىM!	!ى1E1	]#]#Eĉ}]˹   1ËE3U!u3uĉu11Ǳ    111މӉ3E111ӋUƱ3  3  3  }1ЉǉE!1Mu3  E}}	11ˉщΉ	1	׉ڋ]uuĉM   	ڱ1ǉ113uƋMč    113U	ً]]1ʹ   1ډÉ11ǋE1ӱñ3  3  3  3  ЉE!؉111Ɖ	։UĉEE	!M3U!!3]1҉1ȹ   1ӱ114    1}}1ñ11}3uƱ13  1E1ʹ   3  3  3  !ǉu։]ĉu}}ĉ]̉U	!ǉ}]!11	1	Ӄ1ً]3   1u1u1ދ  U؋U3  13M!]	1ȉE  j1EEPu$    e[^_]UVS u=    u              =        u\PVu]S~*Uh@  $    1D   Bt    e[^]Uh    $    E    Uh    $    $    SERPENT256 SERPENT192 SERPENT128 SERPENT                     9  $                                   9  $                                  9  $                !       LICENSE=GPLv3+  crypto gcry_serpent                                                                            ::  ,        f:  -                                              	    0   0     :              A              X              i              ~       0        `   0      grub_mod_init grub_mod_fini _gcry_cipher_spec_serpent192 memcpy grub_cipher_unregister _gcry_burn_stack grub_cipher_register _gcry_cipher_spec_serpent256 _gcry_cipher_spec_serpent128 (    $    $    
%    9    9    9    9    9    9    9    :    :    A:    F:    M:  
  R:    \:    b:    m:    r:    y:  
  ~:    :    :                          0     H     L     P     `     d     x     |                .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   :                    	   @       t=     
            %      2       :  )                 8             :                    4   	   @       <>  p   
            >             ;                    N             ;                    S              ;                    \              ;                                  ;       
         	              <                                  >  e                                                                                                                                                                                                                                                      boot/grub/i386-efi/gcry_blowfish.mod                                                                0000600 0001750 0001750 00000020314 13417732100 0016222 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UWVS(1  UЉM̍   u܍   u   u؋23   1]܋Uu]}}U3   }  1]܋]1}؋}]]uu3   u1]؋}؉}}u]<<]3   ]<3  3}܉}]u]ԋ]4u܋uԋ]]񋜘   1]]]܋  1]܋]1]܋]܉]]u]؋]4]4]3   ]43  1u]}]؋]<]؉U<]3   ]<3  3}܉}U]UԋUU؉]܋]ԋ]]틜   1]]]܋  1]1u܋]܉]]u]؋]4]4]3   ]43   1u]}]؋]<]؉U<]3   ]<3$  3}܉}U]UԋUU؉]܋]ԋ]]񋜘   1]]]܋(  1]1u܋]܉]]u]؋]4]4]3   ]43,  1u]}]؋]<]؉U<]3   ]<30  3}܉}U]UԋUU؉]܋]ԋ]]틜   1]]]܋4  1]1u܋]܉]]u]؋]4]4]3   ]438  1u}]Uԉ}؋}}؉M؋M}3   }3<  3]܉]}U3D  }U3}U3@  E1uЉ([^_]UWVS,uME^V   ~   E	V	V	ӉʋM   M	~v		u3D  Mu}uEЋ}EЋ1E}E̋EЋ@  1E1]ЋEЋuԉE]}E}E3}}3<  1ˉ]M}4Mű}M̋4}1ủEȋMԋE̋E8  1E̋E1E̋ẺEu}E44}E34}4}34  1މu]}]Ћ]}MЋ1M}EЋ0  1EЋE1EЋEЋ]ԉEM}E}E3}}3,  1Mu}4űu]}}1]̋E̋(  1E̋E1E̋E̋uԉE]}E}E3}}3$  1ˉ]M}4uЋM}MЋMԋ4}1uЋEЋE   1EЋE1EЋEЉEu}E44}E34}4}3  1މu]}]̋]}M̋}1M̋E̋  1E̋E1E̋E̋]ԉEM}E}E3}}3  1Mu}u]Ћ}]Ћ}1]ЋEЋ  1EЋE1EЋEЋuԉE]}E}E3}}3  1ˉ]M}Űu}3}U3  3MЉM}u}u}3uE3  3   1ڋ]CCCKCCSE@   ,[^_]USU]J	J	J	JEB	JR		ЉEEMUYESCESSSSCj@]UWVS]=    }u              =          1       @u0H  JH    H    H   @  =   u11Ɋ1҈EߍAu1҈EލAu1҈EݍAu1҈E܋E1   FAuuE    {HE    ؃MUE  E䉆  9uڍ   މ؃MUEFEF9uމ؃MUE  E䉆  9uډމ؃MUE  E䉆  9uډމ؃MUgE  E䉆  9uڃ1ҋsB؉;0tE   9  t7   9  t)   9  tA   ~ƃ   u1   j@e[^_]UE    ]Uh     j?$.Dsp"8	1).lN!(Ew8fTl4)P|ɵՄ?	Gy79:7w«-Zg\B7O@'Ӿs~-{ kE!nn6j/HWynvIeS}ލF
sMLۻ9)PF&^Q-jc".$CaMjP[d&(::KbU/Rio?Y
w	>;Z4ٷ,Q+:Ֆ}}>(-}|%rZLZq)GW;()f(.y_xU`uD^mm%adâW<'*:m?!cf&(3uU4V<wQ(
gQ̫_QM08bX7 z{>d!Q2Ow~㶨F=)iSHd$m-if!	
FEdlX [@X̻k~jEY:D
5>ʹrdfGo<cҞ]/Tw®pcNtW[qr]}S@@NjF4(:Hn΂;?o 5K'r'`a?+y:%E49KyQ2/ɺ~ǼǪIO8
*9g6|1O+Y:CE',"*q%a뜶YdѨ^jePBn;ۘLdx22ߒ+4qAt
4K q2vÍ5./GoTLybo~>f,ҏ"W##v215VbuZ6ns҈bIPLVq
z2E{S b%ҽ5iq"|˶+v>S@`8G% 8vFšw``u N˅؍芰z~L\HjiԐ\-%	?2aN[wߏWr:hZ=@&L4)i Av.kh q$j 3ԷCa P.9FE$tO!@MpE/f	m1'A9UG%ښ
ʫ%xP()Sچ,
mbh iHפh'?Oz|Ϊ_7әxB*k@5 ٫9N;VmK1f&tn:2C[Ah xN
جV@E'H::SU kKмgUXc)3VJ*%1?~^|1)p/'\,(H"m?H܆AyG@n]Q_2Տd5A4x{%`*`lc´2Of#k>3b$;"r(-Exb}doITH}'>AcG
t.no:7`LknU{7,gm;e') ̒9i{f}ϑ^و/$[Qy{;v.97yY̗&-1.Bh;+jLu.x7BjQ满PcKkؽ%=YBD
n*Ngd_ڈ鿾dW{x`M``FѰ8Ew63kBqA_^ <Ww$轙BFUa.XXN8t½fStUuFa&zyj_YnFpW UՌLHbtu	ܩ	-f3F2Z茾	%Jn=ߤih(ڷ9WRO^Pĵ''A?wL`õa(zX` b}0מc8#S4V˻޶}vY	o|K=
r9$||_rㆹMr[xUT|=M^Pa<QloNVο*6742cg `@pzKD).	u#&İn}ߧI`fqilRdVឱ¥6)L	u@Y>:䚘T?eB[k?ҡ08-M]% L&pc^?kh	><pjk5hRS7P>\D}W7:P t<Xz%!	/|sG2G":74vȧFaD>Au8/;21>8TNmOBo
,y|$ryVw.?rU$qk.P̈́GXzt}K:zfC	cdG27;C$CMQe* P:qUN1w_V5kǣ;<	$Y,n<pEㆱo
^*>Zw=Ne)։>%fRxL.jxS<-
N=+6&9`y#RnfE{7(2åZl!Xeh;/ۭ}*/n[(!pa)uGa0a4c\s9pLު˼,b`\ndi#PZe2Zh@*<1!T_~}=b7w-_h)5ǡޖXxWcr"ÃF
T0.SHُ(1mX4a(s<|J]d]B> EꫪOlOBBǵj;Oe!AyMjGKPb=bF&[$tiGV [	Htb #*BXU>ap?#r3A~_;"lY7|`t˧@n2w΄PU5aiZ.zD4Egɞs͈Uy_g@Cge48>q(= m!>J=+ۦ1Ѭߘr/Ḗ~&jE|,G$l iciNWqX~=tXrX͋qJT{YZ90`*#`(yA8۸y:`l>w'K1/x`\`U%U攫UbHW@cj9U*4\̴ATr|*oc]ũ+1t>\3֯\$lS2zw(H;Kkē!(f	a!`|H2]]]u#&܈e>#Ŭom9BD. Ji^Bh!lagӫҠQjh/T(3Qln;zP;*~ev9>YfCoEå}^;uos D@jVbNw?6r=B$7H
ۛIrS{y%P;LylO`@\^c$johSl>9oR;Qm,0DE	^J3(fK.WtE9_ӹyU
2` yr,@%g̣饎"2u<kaP/R=2`#H{1S >W\o.ViB~(2gsUO'[iXʻ]=!lJ[-ySeEIҐK3~ˤAb Lw6~д+MەqՓkю%ǯ/[<ud+^OÏhѭ"//w-u̠toO;|٨f_ws̓w!e wBT5렉>{AI~-% ^q  h"W6d$	cUYCxSZ٢[} Źv&ϕbhAJsN-GJ{R Q)S?Wƛv`+ t恵oWk*!ec.4dV]-SGjnBLOWFISH                      H    I                LICENSE=GPLv3+  crypto gcry_blowfish                                                                                         .                                                	              
               4              E       0     `               grub_mod_init grub_mod_fini grub_cipher_unregister _gcry_burn_stack _gcry_cipher_spec_blowfish grub_cipher_register    E        	    	    	    "	    7	    O	    \	    i	    v	        $    *    5    :                           .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   C                    	   @                        %             x  H                 -      2         	                 @               0                  <   	   @                         F                                 V                                 [                                  d                                                $                 	                u                                ,  m                                                                                                                                                                                                                                                                                                                                      boot/grub/i386-efi/gcry_sha1.mod                                                                    0000600 0001750 0001750 00000020254 13417732100 0015244 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UE #Eg@@ܺ@vT2@@    @X    ]UWVS   TPLL B  PE
}HJHJHJH9u܋TP@8Hx`\xxȉ@   ÉE1#\yZ1ʹ   ؋\D±ӉM]yZ։`1ډˉH!1ʹ   ։±ǉً]yZ]ω1!1ً]Ϲ   }ǋMyZ1ω!1Ϲ   ƱËMčyZMӉ1!1ډӉʹ   ]±ËMȍyZ1Éȹ   !1ǉرM̍1yZuȉ1!1ȹ   EƱMЍyZЉ1!1   ñMԍ9yZ}ȉ1!1ȹ   EǱM؍1yZ1މ!1ٍ4   ±M܍yZ1ȉً]!1ȹ   EñM9yZ1!1э<   ƱM䍔yZMЉ1!1Љʹ   E±M荜yZ؉1!1   ǱM썌1yZuȉ1!1ȹ   EƱMyZЉ1!1   UЋU3UñUU1UU1UUэyZ1MM!1<ȹ   UU3UUU1UU1UUMUyZM։1!1։ʹ   u±Ɖuuı3uuu1uu1uuƋMuyZ1u!1˹   ]ǱËM3MMM1M   1uuƍyZ]1u!؉ދ]13]ȹ   E]]1]]1]n]؉]]11UЋU3UñUU1UU1UnU1UU1ǉ}}3}±}}1}Mn1M   }1ǉ}}1Ɖ}3}u}}1}M3n1M   }u܉}1׉}3u1uˋu   1uǋu]Ín]1uuƉ11ىuދ]3]ʹ   UƉ]]Mn1M   1]1]ر]]1ЋU3UÉEUU1UU1UnU1UU1ЍE3EϹ   |±ǋM>n׉E11MM1M   EƱE}1Ɖ}x3}䍜3n}M1MM1M   }u}1׉|3u1|ˋu   1|ǋutÍn1|1Ë|Ɖًx|1ىދ]3]ʹ   px]1x]1xnxÉx؋t11ЋU3UÉltU1tU1tnt1tp1ЍϹ   p±ǋM>n3M1߉MM1M|1M   EƱEl1ƉlƋM3n3MMM1Mx1M   p}}1׉1<   u3uǉpuu1uËtn1u1ËuƉًlu1ىދ]ʹ   lƱMn3M1M   1]]1]]ر]p1ÉpM3MMU   1UU1UUэn1Ml1ȍ<ʹ   ±M3MlM|1MM1M   ElEnp11ȹ   llι   ƋM3MpMx1MM1M   uƋpun1։1˹   މtÉpƋM2n3M1ƉM   1}}1}}}l14
   hǱƋM0ܼ3MMM1MM1M   Uֹ   Up!	!	plƱMܼ3MMM1MM1M   UЉUh	ى!!	ىȹ   ñMܼ3MhpM1pM1p   pÍ<hpl!	ʹ   !	lXǱMܼ3|	MM1MM1M   ]É]h!!	hʹ   dMܼ3xdlM1lM1l   lËXl	Ήd!!ι   	4Xñ|ܼ3t	߉uMM1Mp1M   uƋdu!!	ȹ   Ǳx3MxM1xM1x   xƋdxܼM։!	!	ʹ   uhƱt3M|MM1Ml1M   Uы|Mܼ	ʉى!!	ٍ
   ډÉñMܼ3M|tM1tM1t   t<   th!	!	hEǱMܼ3MMM1Mx1M   UЉU|	!!	ȹ   ƱMܼ3M|Mp1MM1M   uƋMu|	Ή|!!ι   	ڋ]hñMܼ3M	߉MM1Mt1M   uƋ|u!!	ʹ   ǱM3MMl1MM1M   uƉ|Mܼ΋h!	!	ȋhEȹ   MƉȹ   M3M|MM1MM1M   E|M|ܼȉ	!!	ًxȹ   ƱM3MM   1]]1]]Éٍܼ}ˉM   !	#|	}Ǳ}ǋM3MMM1MM1M   UU|9ܼ}U	ǉ}!!	ʹ   |Mܼ3pMt1MM1M   }M}|	!!	ȹ   ƱËM3MMM1MM1M   }ǋM}ܼ|	!!	˹   Ǳp3lhMM1MM1M   U|UhܼU	!|!	ы|ʹ   pM3M|MM1MM1M   U|Uܼ	щ!!	4   ±Ӊl3xhu|   1|u1||l1ƍbʉڋp|1ڍ<   ډ±ƋM3MMM1MM1M   ]Í0bʋlى]h11؍4   px3txM1xM1x   xËlxbًp1Ӊ1   ǱMb3MlMM1M|1M   }ǋp3l}ȹ   1Ћt3UƱtU1tU1ttptUbʋl   t11ЋUÉpM3MM   1Ux1UUщUlMbʉ11   ЋUǉlM3MM   1UU1UUщUbʉ1ʉpM   1ЋUƉpM3MM   1Ut1UUщUbʉ1ʉ؋lM   1Љl|ñM3MM   1UU1UUщUčbʉ1ʉpM   1ЋUǉpM3MMM1U1M   UщUȍbʉ1ʉlM   1ƉlM3MMx1MM1M   UщU̍bʉ1ʉ؋pM   1ÉpM3MMM1MM1M   UщUЍbʉ1lM   1ЋU3UǉltUU1M   1UUщUԍbʉ1ʉpM   1pЋUƱM3MM   1UU1UUщU؍bʉ1ʉ؋lM   1ЋUÉlM3|M   1UU1UUщU܍bʉ1Mp1ȍ<ʹ   h}M3Mpb1Ϲ   3}ǉ}p1މl1Ɖб|3xUMM1MM1M   UщU䍔bʋpʉM   1؋h1ñڋ]E3]3]3]ËpU]荄bʹ   ÉЋU11ËE±Utb3xu1ȹ   1}EЋU11ЉEǋE±1ǋM13MDL1ȹ   3EËM]`Ebʋ]TƋE\H7GE@_WGĴ   [^_]UE]UWVS]}u{X@u&S   VjhCCX       {X t/tCX?PGSXWNTPj j StTEtECCX    )ǃjh19tSX?JKX@Le[^_]UWVS]j j S{CX 4    	׃7PSXDCX7@PSXD CX?PSXD Pj j Sj8j CP   CRCSCTCUCVSCWCP CQ jhSSCCSSSCCSS S!C#CS"S$S%C'CS&S(S)S*C+e[^_]UE    ]Uh    SHA1 1.2.840.113549.1.1.5 1.2.840.10040.4.3 1.3.14.3.2.26 1.3.14.3.2.29 1.2.840.10045.4.1      H      0                \   @             ,   :   H       0!0	+  LICENSE=GPLv3+ crypto gcry_sha1                                                                                                                                       	               .              5       0     L              _               grub_mod_init grub_mod_fini _gcry_burn_stack memset _gcry_digest_spec_sha1 grub_md_unregister grub_md_register   
  e  
      l  
          '    ,                                         0     4     8     <     @      .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   5                    	   @         @   
            %      2       i  Z                 8               W                  4   	   @         `   
            >                                 N             +                     S              +                    \              2  
                                <        
         	              ,  p                                <  e                                                                                                                                                                                                                                                                                                                                                                      boot/grub/i386-efi/gcry_camellia.mod                                                                0000600 0001750 0001750 00000104004 13417732100 0016153 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      ԅ      4     (   UEuPRu0ET  UEuPRu0ET  UUMЃt
    uP=    u              =        u%QPQuR$   1Uh    $    E    Uh    $    $    UWVS   UE:J}ze1MJ1MJ}ze1MJ1MJ1MJ1M}J	ez]1MJ1MJ
}e1MJ1MJR1M1UU<}}}4u̍4M4M̉u։uΉމ\<ʋMXT4MuDډuىى<uuމuމuωPu}ˋM]ыU܉ΉщH}щˉщΉ|}ʉx<׉@U8u艽L]fׁ;}؉<   }<   1}͋<   1}]؋<    1}u   3   3    Xz3   1M}ʋMUԉ1}1sL3M}؉<   3<   ]3<   3<       3   3    3   1UЉ1}Ё/7ƉыUЁOӉU؉։UĉUċ   3   3   u3       3   3    3   uM1]11M؉1U؁STʉuuUo։UԉUԋ   3   3   u3       3   3    3   11׉M1UU1U]t}Uĉڋ]щщMt<}<1M}ĉp׋U}؋}<9pыU؉MԋM<}M}ԉl41Muu׉ʋM֋UщMыUʉщ׋Uh։UMMMUhUMM4MыU0MыU3UMЉً\dU1щ`M1ˉ,X1Ӊ(]1ˋp\1щMMщ$!ыU3M!11ڋT11ˉp]T|u1Ӊ P׉}!11ˋLX]!}M1U1Ӌx]11߉}PU1ߋH1<L}81u׉ډ}Ux@01}ʋMЉU1MM3M3}xى1ыU@}3}ЉH҉}ы}#MЉ<1ً]!ωh3U1ˉ8]1׉}}1ˉh]1׉}D1ˉ]1׉}Ћl}ӉD!1ˋt!߉}}M1UU1ڋ,UU1ʉU1UU3UPʋd113}3\t0D#]Љ]]1]}1}l}؉XD]x@}ԉXL$#]xH\]苝p1}3]苽hl]1]p3Xp81hX3T\<#]]ċH1]ċ]1}܉X]   }ȉ   |   T   #]]H1}}3P}@1]P3L3}|L3]T}P]13]   u4}11d   `11މpu3ủX(11ډP`X1ӋU11ىH$t3UX  11щH,0P(u13U1щH4MЉP0U#U11щl3M1ʉP<U#UԉH813U11щHTuPPU3Up11։PXڋp\h111щP`U3UHd11։PhUpl\1ډӋU11މptXXp]#]11ڋ3U1։PxU#Uȉp|u3uыU111򉐔      u3xMދ111މ   |   x111щ   T3u   1   1ыP   M11   U   11щ         [^_]UWVS(  UJEBe1MJ1MJEBe1MJ1MJ1MJ1MEJ	eBZ1MJ1MJ
EBe1MJEe1MJ1MJ1MJ1Z1Z1Z1]Z1]ZzrE1]Z1Z1Z1Z1ZR1ދ]1։ڋ]UUӋU]]ӋU]ËEEEEUEӉE]Ӊ]ЋE]EډUEӋUЉ]ӉUЋ]EUEEԋ]ӋUE؉Ӊ<]<1M}߉4ủ4}8PщMȉʉщϋMʉщˋM41|uщωLu|щxxtى0 <|p<(pщH<ʋtUH}čuUMfU1};1}<   ]3<   3<   3<       3   3    3   ]1ωʋMUsL1}Xz3M3]3]1U܉։U؉U؋   3   3   u3       3   3    3   u1]܋]11]܉1U܁/7ƋU܉uOӉU؉։UU   3   3   u3    3}   3   3    3   }؋}3}11U}}1U1]ST}ցo׉UU   3   3   ߉3       3   3    3   Muĉ1}}11}11U}U3U3}؉M'}ĉׁ-hމlʉu։U܉U܋   3   3   ߉3       3   ͋}3    3   3}11U}1UU1]]V׉сډU܉U܋   3   3   ߉3       3   3    3   1}܋lM1}܋u}11U܉ډUʋMӉڋ]Uډ}lUӉ}<}}llM}щډMM<}؉uĉhщʉduщ`dh\d`3M`X<M։Th3M\DMXu\}3}쉽@83}쉽l1ωlߋ]1߉8L׉!ߋ]1ϋ`!13]1ډ`UM1Uщ !1ډU14U1ډUĉ1}!׉D1ً01ω0}1Ӊx1׉,}1ˉxT1ω}1Ӊ]Ӊ!ω}1UU؉]!Ӊߋ(3]1ωH1]щډHM1HMM]1}ڋ](]1(]ڋ]MM]]1Mڋ]U]]1uщ$M1$ڋMʉUt3M]Utp1uӉ1pً]!1ʋM!1u1ىMX1։\1ى 1։|1щM1މ|u։uu!1!Ήu1ڋ]1։\1ˉ ]1ˉ]1Ӊh1ˉދd1Ӊ]PӉh!1ˋM!ىMMM1U1ً]M11ڋ]3E]1]]3]܉ڋ]S@13lUh#UU1uUE1UỦP@PPDUȉPHLPL#8U䋕l1UU1l1։hƋ1Ɖd 1P41LU#|UU1U3uEUЉ uԉ   4   u   u    #uċ1u!1uUUM1U141։,1Ɖ#puЋt1uЋuЋE1֋Uu      u#U   u؉U,1UU   $1Ut1tH1HU1,(13u(TXƋE1   DT1ǋ<1ƋE  @11։puPU111щP<H111ӉX$]P 1811؉EP,UX(]111ʉP4UH0E#U11ыU3M1ˉZ<ӉJ8M#Mȉʋl113`1щKTdSP1؉h11ЉƋEp\uPX13`1щNd\V`1ًPʋM11|1Ӊ^lLVh11Ӊ^t]Vp #]ԉڋ]11щu3\3x1ʉNxً]V|13M1ˉ   ËE   1ڋ11ЉE      4x3011ЉE   U   111Ӊ   03]   11щ      p1Éދ]#]ډ13u1ڋ]   u#u؉   u1u3U11щ      u3]3}1Ƌtu11ЉE   H   11щ   ,   E1E11щ   (   M11   11щ         (  [^_]UVS4]juSVjCPEPjSEPEȃjЉEЋEЉEԍEPEPjEPEPXZuVe[^]UWVSE}0E30E0XE   3XEX3    E3P3   3   Ë   3   3G3   3    1UU1Ez1ǋBz1EЋU   }P3    E3H3   ĉ3      3   }U3BU3   U3    11ƉM1]1E}2{u   3    3^ 3   3      3   u3F$}3   3    u11Ɖw3]1É_<   3<    E3x(3<   3<      3   U3B,3   3    ʋM113}1ǉy   3    UM3B03   3      3   M3Q43   3    11։u1؉1NF   3    U3Z83   3   Ћ   U   1UUr<1u   1U    1U1]Uu1}3u3]2ZW@}!1ڋ]W{D	׉}]1u};]sL]	1΋MsYH   !]M1E]EX3    E3HP3   ĉ3      3   }3GT]3   3    11Mى{1EۋE1Euq   3    ]3CX3   3   ۋ   3   M3Y\MM3   M3    u1E11U1]ˉ1M   K؉3    ]3S`3   3   ً   3   M3YdMM3   3    11߉}ɉw3U1ډW<   3<    M3yh3<   3<   ʋ   3   ]3Kl3   3    ËE113}]1ˉx   3    M3Ap3   3   ى   3   M3Yt3   3    M111Љq1؉։Aҋ   3    UuM3Zx3   ։3      3   3Q|M3   3    u11}1։11Ӌ   !1ڋ]Q   	׉}1u};]   	3uqM   !]M1E]E   X3    E3   3   ĉ3      3   }3   ]3   3    11ǉMM1EE1Eu{s   3    3   3   3      3   M3   MM3   M3    u1111É1ҋ   3    UYىu3   3   3      3   M3   M3   3    113Ey1ЉA4   Mu4       1u1Uы4   1u4      3   M1u3   3   3    u1Mu1]1UM]1։1   Y3    Mu3   u3   3      3   u3   u3   ]3    11ω}11ʉً    _W<   }1EE   1EM   1Eǋ   1E   3   3   M3   3    }u13M1ǉ>1E3   E3   ~VN[^_]UWVSE}0E3   E0XE   3   EX3    E3   3   3   Ë   3   3   3   3    1UU1Ez1ǋBz1EЋU   }P3    E3   3   ĉ3      3   }U3   U3   U3    11ƉM1]1E}2{u   3    3   3   3      3   u3   }3   3    u11Ɖw3]1É_<   3<    E3   3<   3<      3   U3   3   3    ʋM113}1ǉy   3    UM3   3   3      3   M3   3   3    11։u1؉1NF   3    U3   3   3   Ћ   U   1UU   1u   1U    1U1]Uu1}3u3]2Z   }!1ڋ]W   	׉}]1u};]   ]	1΋Ms      !]M1E]EX3    E3Hx3   ĉ3      3   }3G|]3   3    11Mى{1EۋE1Euq   3    ]3Cp3   3   ۋ   3   M3YtMM3   M3    u1E11U1]ˉ1M   K؉3    ]3Sh3   3   ً   3   M3YlMM3   3    11߉}ɉw3U1ډW<   3<    M3y`3<   3<   ʋ   3   ]3Kd3   3    ËE113}]1ˉx   3    M3AX3   3   ى   3   M3Y\3   3    M111Љq1؉։Aҋ   3    UuM3ZP3   ։3      3   3QTM3   3    u11}1։11ӋWH!1ڋ]Q{L	׉}1u};]sD	3uqMY@!]M1E]E   X3    E3H83   ĉ3      3   }3G<]3   3    11ǉMM1EE1Eu{s   3    3Y03   3      3   M3A4MM3   M3    u1111É1ҋ   3    UYىu3B(3   3      3   M3Q,M3   3    113Ey1ЉA4   Mu4    Q 1u1Uы4   1u4      3   M1u3Q$3   3    u1Mu1]1UM]1։1   Y3    Mu3Qu3   3      3   u3Nu3   ]3    11ω}11ʉً    _W<   }1EE@1EM   1Eǋ   1E   3   3AM3   3    }u13M1ǉ>1EN3E3P~VN[^_]UWVSE8E38E8XE   3XEX3    E3P3   3   Ë   3   M3A3   3    1UU1EJ1BJ1EЋu   Up3    E3H3   3      3   u3FU3   3    u111ى1؋   ډ3    ]>N3C 3   3   ً   3   u3^$U3   3    u11ډV3E1؉F   ۋ    uUU1]Z(1]ۋ   1]߉Ƌ   1]؋   3   3Z,U3   3    u111ʉ1ډ>ۉV}   3    u3O03   4   34   }3   3w4}34   34    ]1111É_4   34    EO3p834   34      E   1EE@<1E   1E    1E1uE}13}3u8pEP@E!1PuFD	ЉE1}E}vL}	1މw}_H}!]M1M]   _3    E3HP3   ĉ3      3   }3GT3   3    11ǉM]1EE1EMu{K   3    3^X3   3      3   u3F\M3   M3    u1111É   3    U^3B`3   3   Ӌ   3   uM3Vd3   3    u11׉~3E1ЉF   uU    1UɋVh1U   1U      3   u1U3NlU3   3    u1UU11]1M]2ZUۋ   3    3JpۋU3   3   uU4   34   3rtU34   34    U1111Ë4   34    EzJ3px34   34      E3   3P|E3   3    }13u1׉81։pE   E!1uP   	ЉE1}E}   }	1މw}   !]]M1M}   {3    E]3   3   ĉ3      3   3   3   3    11ǉM]1EE1EMu{K   3    3   3   3      3   u3   M3   M3    u1111É   3    U^މM3   3   3      3   u3   3   3    u11׉~3E1ЉF   uU    1Uɋ   1U   1U      3   u1U3   U3   3    u1UU11]1M]2ZUۋ   3    u3   U3   3   ӋU4   34   3   U34   34    U1111Ë4   34    EzJ3   34   34      E3   3   E3   3    }13u1׉81։pE   E!1uP   	ЉE1}E}   }	1މw}   !]]M1M}   {3    E]3   3   ĉ3      3   3   3   3    11ǉM]1EE1EMu{K   3    3   3   3      3   u3   M3   M3    u1111É   3    U^3   3   3   Ӌ   3   uM3   3   3    11׉EM1M1UEҋuxp   E3    3   Љ3   3      3   uE3   E3   E3    u1111щ   3    ]N3   3   3   ً   3   uE3   3   3    11߉}w3U1ډW   }3    3   3   3      E   }1E   1E   1E    1E1]E}13}3]8XE3   EpE3  E0PxX[^_]UWVSE8E3   E8XE   3  EX3    E3   3   3   Ë   3   M3   3   3    1UU1EJ1BJ1EЋu   Up3    E3   3   3      3   u3   U3   3    u111ى1؋   ډ3    ]>N3   3   3   ً   3   u3   U3   3    u11ډV3E1؉F   ۋ    uUU1]   1]ۋ   1]߉Ƌ   1]؋   3   3   U3   3    u111ʉ1ډ>ۉV}   3    u3   3   4   34   }3   3   }34   34    ]1111É_4   34    EO3   34   34      E   1EE   1E   1E    1E1uE}13}3u8pE   E!1Pu   	ЉE1}E}   }	1މw}   }!]M1M]   _3    E3   3   ĉ3      3   }3   3   3    11ǉM]1EE1EMu{K   3    3   3   3      3   u3   M3   M3    u1111É   3    U^3   3   3   Ӌ   3   uM3   3   3    u11׉~3E1ЉF   uU    1Uɋ   1U   1U      3   u1U3   U3   3    u1UU11]1M]2ZUۋ   3    3   ۋU3   3   uU4   34   3   U34   34    U1111Ë4   34    EzJ3   34   34      E3   3   E3   3    }13u1׉81։pE   E!1uP   	ЉE1}E}   }	1މw}   !]]M1M}   {3    E]3Hx3   ĉ3      3   3C|3   3    11ǉM]1EE1EMu{K   3    3^p3   3      3   u3FtM3   M3    u1111É   3    U^މM3Bh3   3      3   u3Vl3   3    u11׉~3E1ЉF   uU    1UɋV`1U   1U      3   u1U3NdU3   3    u1UU11]1M]2ZUۋ   3    u3JXU3   3   ӋU4   34   3r\U34   34    U1111Ë4   34    EzJ3pP34   34      E3   3PTE3   3    }13u1׉81։pEPHE!1uPFL	ЉE1}E}vD}	1މw}_@!]]M1M}   {3    E]3H83   ĉ3      3   3C<3   3    11ǉM]1EE1EMu{K   3    3^03   3      3   u3F4M3   M3    u1111É   3    U^3B(3   3   Ӌ   3   uM3V,3   3    11׉EM1M1UEҋuxp   E3    3H Љ3   3      3   uE3P$E3   E3    u1111щ   3    ]N3S3   3   ً   3   uE3^3   3    11߉}w3U1ډW   }3    3_3   3      E   }1EG1E   1E    1E1]E}13}3]8XE30EpE3PE0PxX[^_]UMEU   t   tu$UE]雭UE]*UE]靹]UWVSEMu]x1x1x1xUP1x1x1x	UP1x1x
1xUP1x@11   Ut   tuEPV
EPVXZESCESSSCESSS	CES
SSSCe[^_]UWVSEMu]x1x1x1xUP1x1x1x	UP1x1x
1xUP1x@11   Ut   tuEPV
EPVXZESCESSSCESSS	CES
SSSCe[^_]  p pp, ,,   W WW  # ##k kkE EE  O OO    | || > >> ^ ^^  9 99 ] ]] Z ZZQ QQl ll    t tt+ ++    4 44v vvm mm    : ::  2 22 S SS    z zz$ $$ ` ``i ii   b bbT TT  d dd      u uu  	 		 ݇   ͐ s ss   R RR   Ɓ o oo c cc    ) )) / // x xx  q qq ԫ   r rr   6 66* **< << @ @@ ӻ C CC  w ww   ' ''  5 55 A AA   ! !! N NNe ee     0 00_ __    G GG= ==  V VVM MM f ff - --       L LL ~ ~~  1 11  X XXa aa     " ""D DD      P PP } }}  [ [[    H HH    ? ?? \ \\ J JJ3 33g gg    & &&7 77; ;; K KK . ..y yy n nn    Y YY j jjF FF % %%B BB   U UU 
 

I IIh hh8 88 ( (({ {{     Ǟ 88 8AA A vv v ٓ `` ` rr r «  uu u WW W     ɢ   Ґ    '' '  II I CC C\\ \  >> >  gg g  nn n // / ⅅ  SS S  ee e ꣣    쀀 -- -kk k ++ +66 6  ņ MM M33 3 ff fXX X :: :		 	  xx x BB B  && & aa a ?? ?;; ;    Ԙ  苋   

 
,, ,  oo o     NN N   yy y  "" " YY Y  == =   tt tTT T00 0~~ ~ (( (UU Uhh hPP P   11 1 ** *   pp p 22 2ii i bb b    $$ $    EE E ss smm m   JJ J .. .   %% %HH H   {{ {  ο  qq q)) ) ll l dd d cc c  KK K   __ _     FF F 77 7^^ ^GG G   [[ [  ZZ Z << <LL L 55 5 ## # ]] ]jj j  !! !DD DQQ Q }} }99 9  ܪ || |ww wVV V    44 4   RR R      齽   䡡     zz z  @@ @OO O  XXX  ggg NNN      jjj   ]]]  FFF   '''  222 KKK BBB     :::  %%% {{{  qqq ___    >>>  ||| ```      444 MMM  rrr     zzz           555    aaa ZZZ  $$$ VVV @@@  ccc 			 333     hhh   


  ooo SSS bbb  ...   (((  ttt   666 """ 888 ddd  999 ,,,  000  DDD    eee  kkk  ### HHH   QQQ     UUU  AAA  CCC   ///   <<< +++               GGG         ~~~  )))       !!! fff     ;;;     777  LLL  nnn  vvv  ---   &&& }}}  \\\   OOO  ???  yyy  RRR   mmm ^^^  iii   111      uuu  JJJ WWW   EEE     sss    YYY  lll  TTT  xxx ppp  III  PPP   www    ***  [[[     ===  ppp  ,,,   '''     WWW 555    AAA ###  kkk  EEE   !!!   OOO NNN  eee       |||    >>> 000  ___ ^^^      999   GGG ]]] ===   ZZZ  QQQ VVV lll MMM    fff    --- ttt  +++          LLL   444 ~~~ vvv  mmm   111      XXX ::: aaa     222    SSS   """  DDD     zzz  $$$    ```  iii PPP    }}}   bbb  TTT [[[     ddd        HHH   uuu      			 ???    \\\    JJJ  333 sss ggg       RRR   &&&  777  ;;;   ooo KKK   ccc ...  yyy    nnn   )))    ///   YYY xxx   jjj  FFF qqq   %%%  BBB     rrr   UUU    


 666 III *** hhh <<< 888   @@@ (((  {{{   CCC      www   CAMELLIA256 CAMELLIA192 CAMELLIA128 1.2.392.200011.61.1.1.1.4 0.3.4401.5.3.1.9.41 0.3.4401.5.3.1.9.43 0.3.4401.5.3.1.9.44 1.2.392.200011.61.1.1.1.3 0.3.4401.5.3.1.9.21 0.3.4401.5.3.1.9.23 0.3.4401.5.3.1.9.24 1.2.392.200011.61.1.1.1.2 0.3.4401.5.3.1.9.1 0.3.4401.5.3.1.9.3 0.3.4401.5.3.1.9.4                     T   *                                     T   *                                     T   *                   $      >      R      f              z                                                               LICENSE=GPLv3+  LICENSE=GPLv3+  crypto gcry_camellia                                                                                                ,           -                                	              
    ]D      1   0   0     O   T  H    e              r       0        >         O*                                                                    S  H    /  9      A  `   0     _  WS  G     p  c5       grub_mod_init grub_mod_fini camellia_decrypt256 _gcry_cipher_spec_camellia192 Camellia_DecryptBlock grub_memmove _gcry_cipher_spec_camellia256 camellia_encrypt128 camellia_decrypt128 grub_cipher_unregister _gcry_burn_stack camellia_setup128 camellia_setup192 grub_cipher_register Camellia_EncryptBlock camellia_setup256 _gcry_cipher_spec_camellia128 Camellia_Ekeygen camellia_encrypt256      &     @     P     v                                                                          
                                            7    >    O    V    b    i    v    }                                    ]    d    n    |                                        !    .    5                                        $    .    <    K    R    _    f                                    m    t    ~                            	            .    5    B    I                    %    0    g                                         #     1     >     E     `     m                                             &!    -!    B!    L!    [!    b!    w!    !    !    !    !    !    !    !    !    
"    /"    8"    P"    Z"    d"    n"    "    "    "     #    5#    C#    P#    W#    q#    {#    #    #    #    #    #    #    $    $    :$    I$    ^$    h$    r$    |$    $    $    $    $    $    $    $    %    %    $%    L%    S%    h%    r%    %    %    %    %    %    %    %    &    &    &    -&    7&    &    &    &    &    &    &    '    '    L'    S'    j'    v'    '    '    '    '    '    '    '    	(    (    (    8(    B(    e(    r(    (    (    (    (    (    (    )    )    0)    :)    I)    P)    k)    x)    )    )    )    )    )    )    *    *    |*    *    *    *    *    *    *    *    +    ,+    D+    R+    _+    f+    +    +    +    +    +    +    +    +    ,    (,    P,    W,    o,    y,    ,    ,    ,    ,    ,    ,    ,    -    -    -    4-    @-    e-    n-    -    -    -    -    -    -    G.    h.    }.    .    .    .    .    .    .    .    /    !/    -/    4/    M/    Z/    /    /    /    /    /    /    /    /    0    0    00    <0    F0    M0    b0    l0    0    0    0    0    0    0    0    0    1    !1    <1    J1    W1    ^1    u1    1    1    1    
2    2    %2    ,2    F2    P2    2    2    2    2    2    2    2    2    3    3    *3    63    C3    J3    b3    l3    3    3    3    3    3    3    3    3    '4    64    Q4    [4    j4    q4    4    4    4    4    4    4    5    	5     5    *5    5    5    5    5    5    5    5    5    !6    16    F6    P6    ^6    h6    6    6    6    6    6    6    6    6    
7    7    77    A7    b7    s7    7    7    7    7    7    7    7    8    8    8    .8    88    Z8    a8    ~8    8    8    8    8    8    <9    K9    `9    n9    {9    9    9    9    9    9    9    :    :    :    /:    <:    Y:    `:    :    :    :    :    :    :    :    :    ;    ;    ';    .;    K;    U;    ;    ;    ;    ;    ;    ;    ;    ;    <    <    /<    9<    C<    P<    g<    q<    <    <    =    #=    0=    7=    N=    X=    =    =    =    =    =    =    =    =    >    >    =>    G>    T>    [>    u>    >    >    >    >    >    >    >    ?    ?    N?    U?    p?    |?    ?    ?    ?    ?    ?    ?    ?    	@    @     @    :@    D@    @    @    @    @    A    
A    !A    +A    `A    gA    A    A    A    A    A    A    A    A    B    B    $B    +B    HB    RB    B    B    B    B    B    B    B    B    C    C    4C    >C    HC    OC    lC    vC    C    C    C    C    C    C    D    D    D    D    D    D    D    D    D    D    (E    8E    PE    ZE    hE    rE    E    E    E    E    E    E    E     F    F    'F    JF    TF    xF    F    F    F    F    F    F    F    G    "G    )G    3G    MG    WG    yG    G    G    G    G    G    G    G    mH    |H    H    H    H    H    H    H    I    I    /I    ;I    HI    OI    lI    yI    I    I    I    I    I    I    I    J    'J    4J    QJ    `J    mJ    tJ    J    J    J    J    J    J    K    K    /K    9K    ZK    aK    K    K    K    K    K    K    @L    OL    gL    uL    L    L    L    L    L    L    L    M    M    M    3M    @M    ]M    dM    M    M    M    M    M    M    M    M    N    N    +N    2N    ON    YN    N    N    N    N    N    N    N    N    O    O    3O    =O    GO    TO    kO    uO    O    O    
P    P    %P    ,P    @P    JP    P    P    P    P    P    P    P    P     Q    Q    &Q    0Q    :Q    AQ    [Q    eQ    Q    Q    Q    Q    Q    Q    Q    Q    R    R    >R    HR    RR    YR    sR    }R    R    R    R    R    R    R    S    S    UT    aT    U    U                               0     8     H     L     P     `     h     x     |                                                                       .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   .V                    	   @       l                %             dV                    -      2       df  #                @             g                   <   	   @                        F             h                    V             h                    [              h                    d              h                                  h                	              j                                 d  m                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/macbless.mod                                                                     0000600 0001750 0001750 00000006444 13417732100 0015162 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      D      4     (   UWVS]   PPEupt_twEpt-E t#эzw xw 9uFE̍Aw E Pw 9uCSuV<Fe1[^_]UWVS  U]EttPPh    j	uWWh#   j  VRh   j j j j3    11fBDugfdH+   fff	QRh   j j  RP3 uff=+Htf=XHtRRhB   j	(E t<8P Ph   j j WV3 e[^_]UWVS(uVuSShZ   j	   QQho   ptRRhw   suƃuǡ       WD9t8/uH@ PPj/WE    t%  @KE? uX   ]Sh    PVGEEPh    hX   VS} u Wuh{   j"W1u}PuV e[^_]UWVSM}Ut	E   t2MU$ZUYj)2UMXut	; tu>tWV$E   E   e[^_]PAxtPSW<$4$؍e[^_]Uj h   h   hL  h   j h   h,  hL  h0          U5   X5    can't bless a directory for mactel can't bless a file for mac PPC not a HFS+ filesystem / no suitable FS found hfsplus hfs file `%s' not found one argument expected invalid argument Bless FILE of HFS or HFS+ partition for intel macs. FILE mactelbless Bless DIR of HFS or HFS+ partition for PPC macs. DIR macppcbless   LICENSE=GPLv3+  disk macbless                                                                &  N        t  "                                                                           )              6              G      `    \              h                                                                                                                              	                          "             ,    :     grub_mod_init grub_mod_fini grub_strlen grub_strrchr grub_device_open grub_mac_bless_inode grub_strdup grub_file_get_device_name grub_disk_read grub_errno grub_register_command_prio grub_unregister_command grub_strcmp grub_strchr grub_disk_write grub_device_close grub_fs_probe grub_error grub_free grub_mac_bless_file !                                         0    >    F    T    \    n    x      
                                  '    =    d    v                                            /    4    9    >    C    M    R    W    \    a    f    n    |                 .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                       	   @       (	    	            %      2         <                4                                  :                                 J                                 O                                  X                	                                (    
   
         	                @                               
  a                                                                                                                                                                                                                                              boot/grub/i386-efi/lsmmap.mod                                                                       0000600 0001750 0001750 00000003610 13417732100 0014652 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      X      4     (   Uj h   1UWVSEu}M]w/    t$RM]    Y[]MPSQWVh    RRPSQWVh)    1e[^_]Uj h[   j h    h        U5                                                                             -  base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 List memory map provided by firmware. lsmmap available RAM reserved RAM ACPI reclaimable RAM ACPI non-volatile storage RAM faulty RAM (BadRAM) persistent RAM persistent RAM (legacy) RAM holding coreboot tables RAM holding firmware code  LICENSE=GPLv3+  mmap lsmmap                                                                               (                                                         	              
               7              R              j              w               grub_mod_init grub_mod_fini grub_machine_mmap_iterate grub_register_command_prio grub_unregister_command grub_printf_ grub_gettext 	          6     J     \     j     o                                                                      0     @     P      .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                        	   @       0  p               )                T                  %   	   @         H               1      2       H  G                @                                  F                                 V                                 [                                  d                                                                 	                                                  m                                                                                                                                          boot/grub/i386-efi/gfxterm_background.mod                                                           0000600 0001750 0001750 00000005574 13417732100 0017247 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      L	      4     (   US EXj t
          t%P               }    EQQ0h           ; u"RREPEP    UtPPh    stP19u]tH19t8jPuERP =     u5    E    =     t              1]USR]}tE   ]E   j uPPh   3t    :    tP              1]Uh    h   hI   j h    hd   j hu   h   h6  h           U5    X5   ö   m                                        stretch one argument expected Load background image for active terminal. [-m (stretch|normal)] FILE background_image Set background color for active terminal. COLOR background_color mode Background image mode. stretch|normal    LICENSE=GPLv3+  video_colors bitmap_scale gfxterm extcmd video bitmap gfxterm_background                                                                                 S          "                                              	              
               5              U              l                                                                                                                            8             C             W             l              grub_mod_init grub_mod_fini grub_gfxterm_background grub_gfxterm_video_update_color grub_video_bitmap_load grub_unregister_extcmd grub_video_bitmap_destroy grub_gfxterm_get_dimensions grub_errno grub_video_parse_color grub_register_command_prio grub_unregister_command grub_strcmp grub_gfxterm_schedule_repaint grub_error grub_video_get_info grub_register_extcmd grub_video_bitmap_create_scaled           &     3     9     C     L     e     j     o                                             	            !    '    G    W    a    o    v                                                                                        "    '    .    3                     .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4   <                    	   @                       )             p  0                  %   	   @                        1      2                          @                                  F                                 V                                 [                6                  d                                                                	                                                 m                                                                                                                                                      boot/grub/i386-efi/legacy_password_test.mod                                                         0000600 0001750 0001750 00000034224 13417732100 0017613 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      d6      4     (   UV1S   PSssVh    ;   h   j@Fh    h     P ue[^]Uh    h   Uh     legacy_password_test Bad password check (%d) grub_legacy_check_md5_password (vectors[i].argc, vectors[i].args, vectors[i].entered) == vectors[i].exp tests/legacy_password_test.c legacy_password_test --md5 $1$oaL$eyrazuM7TkxVkKgBim1WH1 $1$naL$BaFO8zGgmss1E76GsrAec1 $1$maL$OKEF0PD2k6eQ0Po8u4Gjr/ hello     1     hello                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              0     hi                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  0     hillo                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               0     hellw                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               0     hell                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                0     h                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   0     hello                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              0     hell                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                0     hello                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              0     hell                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                0     hi                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 0     hello                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               LICENSE=GPLv3+ functional_test legacycfg legacy_password_test                                                                              [           u                                                 	              
               0              E              d               grub_mod_init grub_mod_fini grub_test_register grub_test_unregister grub_legacy_check_md5_password grub_test_assert_helper                )     4     <     H     b     g     l     |                        $    0    <    H    T    `     l$    x(    ,    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0     1     .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                        	   @       4  `               %                                  -      2                          @               1                 <   	   @       5                 F             2                    V             3                     [              3                    d              !3                                  83                 	              (4  |                                5  m                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/lsefisystab.mod                                                                  0000600 0001750 0001750 00000004740 13417732100 0015716 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UWVS$    Sh    ss3h   h0   Cf> t)ǍD?PEu
      KE)Ήu1}M}   QUt^ $  wE   
2 $  H?ɀHу?ʀ?ɀHP ?@M1uw@  wP?ʀPK (  v; $  w ?@)у?ʀP?ʀHP֋M	  PPuh9   XuXZsh<   C@1RPhJ   sDE    E;C@   WW1vhX   FPFP6h]    QQD>GPhm   u    RjVWuPPwhr      u҃hx   Ea1e[^_]Uj hz   h   h    h        U5           qh" <       0-- '?M       2-- '?M       1-- '?M       /-- '?M       QbByKyax       Address: %p
 Signature: %016llx revision: %08x
 Vendor:  %s , Version=%x
 %lld tables:
 %p   %08x-%04x-%04x- %02x    %s 
 Display EFI system tables.  lsefisystab ACPI-2.0 ACPI-1.0 SAL SMBIOS MPS HCDP LICENSE=GPLv3+  lsefisystab                                                                            l  +                                                        	               3              >              Y              e              }                                           grub_mod_init grub_mod_fini grub_efi_system_table grub_errno grub_register_command_prio grub_printf grub_unregister_command grub_malloc grub_free grub_memcmp     
            #     (     0     5     Y     h                                                                 0    5    A    N    S    u    z                                 (     @     X     p           .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .modname                                                      4                       	   @         (  
            )                                 %   	   @       D  0   
            1      2       x                   @             @                     F             @                    V             P                    [              P                                  \        
         	              |                                  t  d                                                  boot/grub/i386-efi/lspci.mod                                                                        0000600 0001750 0001750 00000011354 13417732100 0014477 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UE@ j h#      1UWVS4EuRPuuuh       j  ƃ0   Kt9u9{t(0   Kt9u	{   t
    SQPh6   tRRPhA      hL   =      S   u  ]E   t-E    u܉E؍CuHPhN      Eu^S   u  ]   Et   }REԍCuԃ}ЃuPhf   7E   t   PEE    ũEȍCuHPh    'e1[^_]Uh    h   h   j h    h        U5          i                                                                                      "        1        A        Q         i        }                                                                                  ,        D        `         r                                                                                                          /        H  	       X  	      l  	      v  	        	        	        
         
                                       %         5     0   G     @   V        c        u                                                                                   +         I        [               prefetchable non-prefetchable %02x:%02x.%x %04x:%04x  [%04x] %s  [PI %02x] 
 	IO space %d at 0x%llx
 	64-bit memory space %d at 0x%016llx [%s]
 	32-bit memory space %d at 0x%016llx [%s]
 List PCI devices. [-i] lspci iospace show I/O spaces SCSI Controller IDE Controller Floppy Controller IPI Controller RAID Controller SATA Controller Mass storage Controller Ethernet Controller Token Ring Controller FDDI Controller ATM Controller ISDN Controller Network controller VGA Controller XGA Controller 3D Controller Display Controller Multimedia Video Device Multimedia Audio Device Multimedia Telephony Device Multimedia device RAM Controller Flash Memory Controller Memory Controller Host Bridge ISA Bridge EISA Bride MCA Bridge PCI-PCI Bridge PCMCIA Bridge NuBus Bridge CardBus Bridge Raceway Bridge Unknown Bridge Communication controller System hardware Keyboard Controller Digitizer Mouse Controller Scanner Controller Gameport Controller Unknown Input Device Generic Docking Station Unknown Docking Station 80386 Processor 80486 Processor Pentium Processor Alpha Processor PowerPC Processor MIPS Processor Co-Processor Unknown Processor USB Controller Serial Bus Controller Wireless Controller I2O IrDA Controller Consumer IR RF-Controller Satellite Communication Controller Network Decryption Entertainment Decryption Unknown Decryption Controller Digital IO Module Unknown Data Input System    LICENSE=GPLv3+  extcmd lspci                                                                               '  0        W                                                	              
               4              @              V              g               grub_mod_init grub_mod_fini grub_unregister_extcmd grub_printf grub_pci_make_address grub_pci_iterate grub_register_extcmd                F     K     a     |                                                      [    `                                    .    3    8    ?    D    I    Q    _    d               8     D     P     \     h     t                                                                        (    4    @    L    X    d    p    |                                                         $    0    <    H    T    `    l    x                                                             ,    8    D     .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4   m                    	   @                        )               T                 %   	   @       ,                 1      2         u                @             m                     F             p                    V                                 [                                  d                                                                 	                |                                L  m                                                                                                                                                                                                                                                                                                      boot/grub/i386-efi/lssal.mod                                                                        0000600 0001750 0001750 00000005240 13417732100 0014500 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   U   WV    S,    }1}؋ZD;r@  QjSWUUԅ  [s3CPh    C$CPCPC
Ph&   CPh`   XZC8Pho   C`  `1{`EC
9  <N  $   Pwwwwwwh    0   '  GWRPwwh   GPGPGPGPGPGPh      PPGPh$  Gth=  GthF  GthS  Gth`  hj  KQwwwwGPGPhl       9wwwh  wwGPh     
RRPh  !9Ev")EFFh  e1[^_]Uj h  h  h    h       U5     2-- '?M     Q        SAL rev: %02x, signature: %x, len:%x
 nbr entry: %d, chksum: %02x, SAL version A: %02x B: %02x
 OEM-ID: %-32s
 Product-ID: %-32s
  Entry point: PAL=%016llx SAL=%016llx GP=%016llx
  Memory descriptor entry addr=%016llx len=%lluKB
      sal_used=%d attr=%x AR=%x attr_mask=%x type=%x usage=%x
  Platform features: %02x  BusLock  IrqRedirect  IPIRedirect  ITCDrift 
  TR type=%d num=%d va=%016llx pte=%016llx
  PTC coherence nbr=%d addr=%016llx
  AP wake-up: mec=%d vect=%llx
  unknown entry 0x%x
 SAL not found
 Display SAL system table.  lssal  LICENSE=GPLv3+  lssal                                                                              ^  +                                                        	               3              N              Z              r               grub_mod_init grub_mod_fini grub_efi_system_table grub_register_command_prio grub_printf grub_unregister_command grub_memcmp           
  8     X     ]     x     }                                            "    H    Y    ^    o    t                                                    %    H    M    g    l    q    v    {                                          $      .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .modname                                                      4                       	   @         `  
            )               (                  %   	   @         0   
            1      2                         @                                  F                                 V             ,                    [              ,                                  4        
         	              $  ~                                4  d                                                                                                                                                                                                                                                                                                                                                                                  boot/grub/i386-efi/luks.mod                                                                         0000600 0001750 0001750 00000015104 13417732100 0014340 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      <      4     (   U1?   WVS  󫍅PhP  j j j j uǅ       h   ff   vPPh'   j	  h   ]=q uB,9s09u΃Qá    U  E@tP1EHTu    Ex t       QRPE0h7   W_Xh   WuSY[hZ   j  ptǅp    lt@=q b  phr   h   hd  h   txlfVRfWj tPElp40   h   h   hu  h   VPuurtx$@ R1SffWj j RPu tStt  j j WSu tS<$Gt@$PEVWSp4 t"Stt$  h   h   h  h   <jRhQj QPEWp40htQjPRth   h   h  h   IRRph   VWutS4$S1+pt0piPPh   je[^_]UWVS  }   PShP  j j j j u t          0  Pjh   S  f   o@Ѝh-tBA9u}  tyut(t!ˍyw zw 9uF@эSw  Pw 9t*PPuoPh   h   juh      Wj PSj P-Wƅ, j PNPƅM $ƅn uVSh     P  =   vQPh  #  RRh$  Wǅ      PPh(  Wǅ     Pjh.  W  Pjh3  W  Pjh9  WuuV   xtS61ǅ    x   S ph>  #  Pjh]  Wu'xF  Sphb     SWh     1V     S   ǅ   2ǅ    Pjh(  W.  Pjh  W   Qjh  W   Pjh  W   Qjh  WtSWh  j1W SWh  j1  ǅ   ǅ    1@PuuRPh  j1@  wG    1   11ǅ    1   ǅ     1҃NVu2S  $ZVh  X$ F    N@F    ~DV,ǆ|  	   FF<F( F0F4u+FVFoVjHPFTPǆx     e[^_]Uh    h    Uh    UWVS} u]׉EM tBA2Z@MX։	΃uщ)փv13rpq3rpۋEU]E9t
GB2O@H[^_]UWVS   u  M
   y@  Quj SEǅP    LEHHH9P&  Lu1}M1ҋEqTD;DtWRj``PWE@PPEPE@PFRWPu 롃T tv}`Pj`PWMTAPEPTPWdWuETWpVEPLUuЋEU$1"   e[^_] , Attempting to decrypt master key... key is too long Enter passphrase for %s%s%s (%s):  Passphrase not supplied Trying keyslot %d
 luks disk/luks.c PBKDF2 done
 candidate key recovered
 bad digest
 Slot %d opened
 access denied LUKS %s != %s
 Cipher %s isn't available invalid keysize %d ecb plain cbc- pcbc- xts- Unsupported XTS block size: %d lrw- Unsupported LRW block size: %d Unknown cipher mode: %s plain64 benbi Unsupported benbi blocksize: %d null essiv: Couldn't load %s hash Unknown IV mode: %s          3      LICENSE=GPLv3+ cryptodisk crypto pbkdf2 luks                                                   '
          A
                                                                            	               )              @              S              ^              q                                                                                                                
             !             6             H             T             `             l             ~                                                                                                                     
       grub_mod_init grub_mod_fini grub_strlen grub_cryptodisk_setkey grub_disk_get_size grub_puts_ grub_crypto_pbkdf2 grub_crypto_lookup_md_by_name grub_partition_get_name grub_memmove grub_cryptodisk_decrypt grub_disk_read grub_crypto_cipher_open grub_errno grub_memset grub_crypto_gcry_error grub_cryptodisk_list grub_password_get grub_zalloc grub_strcmp grub_malloc grub_real_dprintf grub_crypto_lookup_cipher_by_name grub_crypto_hash grub_error grub_list_remove grub_free luks_crypto grub_printf_ grub_list_push grub_memcmp AF_merge =     P     U     x                                 $    )  $  2  "  E    U  "  \                      
              "    '    :    w      "        "    '    "              (    -    m      &                        $        "    "      $     b    x          &  7    <    C    H    f                                    '    -    J    P  &  c    i  &  |      &        "    "            &  (  "  5    C  "  L    \    w  "        &        &        &        &        &    "  !    1    K  "  T    [              	    3	  "  A	  "  M	  "  o	    	    
    
    .
  #  3
    8
  %  H
  #  M
  !  
    %                    3    M    f      "             .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                       	   @           
            %      2                         8                                 4   	   @            
            >                                 N                                  S                                  \                                                 (       
         	                                                 e                                                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/lvm.mod                                                                          0000600 0001750 0001750 00000015444 13417732100 0014167 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UWVSۈ]t)t!:Uu~1ɊtTtA8t@1[^_]UQRPUWVSÃ ƉtWj
SV311ҍe[^_]UWVSÃ(h    <$Eƺ    2tlMRjh   SuՃPtC;"u3PVSWRUUu|3"t:"tBz]tZ1   e[^_]UW1V1S  PSh   j j WVu   Pjh   St 	u  Pjh    Pu11zttƃNuƄ=-z@ t̋C<C8Ƅ= tPPh   j  CPsH{LPÉ  PSWVj j u   PjhG   Pu{tWWhX   jp  q0Y A(y4Q,tӉ|x|;K$r0wt9xv +t   *G(ƀ> u	9u  9sF)ǍGPǉt  t   ؉d  cuǅ    ]  &   P؉zVVSj&ƅ   j   tGj&  ڹ&   {   G&   GW  G       G    ;  x Ptߋ8}  j0Ëƀ> tF)ƃFPCPCt   0    j&tn&   x   C&   C S$t7QQj}Pt@C    GC(_ǅ    s$  ǅ       2  D ` Ptߋ8}T  j<ƋÀ; tCR)RQPF  `P        t;ds
:-t@@-BP -9s
8-tBB-@ڃ jTFD        ,F&   Ft   @,/uǅ      PF&   -F   @S F    F       F(   \ F  k0Pǅp    ÉF,p;F          .S      CSx    uǅ    {  HxGWxgxFVPjh  Qw  C    !  eC    Ht1  BC,kC P@  xC(  ǅl    l;C \  PPj"uǅ       @9"t)@PhxB  h^xBh L  @>OʋWgʋx Qtxl
PjhN  <  C   V  C  l  kPf  C(L  ǅx    x;C    PPj"uǅ       @9"t)@Pl  lhhl kxC(P@xA\ '  C      Pjhr  !  BH̀  z"  <5t<6t C   C    C   C   C   C   w  (C    1  C,   kC P  C(K  	ǅx    S 9x   PPj"tQ@Qj"P1tR@Rj"Puǅ       @9"t)@Pl   lhhl kxC(P@x{u1C(kHQRPRPkC C(H0pǅ    s(w1   tRRj}Pt9ۉtv4$~0GF4wv4$  ǅ    _  ǅx    x;C   k0ǅ    C,;L0    WktFPPC,lpD0(trpluC,D0(TR(붋C,kD0(| uKWtDPPC,lpD0(trpluC,D0(TR4.x[4Wtftj&ut?&   sE@&   E @0Wt1e[^_]á        Ut                ]Uh    status  = [ LABELONE LVM2 001 we don't support multiple LVM data areas  LVM2 x[5A%r0N*> unknown LVM metadata header id = " extent_size =  physical_volumes { pe_start =  logical_volumes { lvm/ lvmid/ VISIBLE PVMOVE segment_count =  segment start_extent =  extent_count =  type = " striped" stripe_count =  stripe_size =  stripes = [ , mirror" mirror_count =  mirrors = [ raid device_count =  raids = [ lvm             O  LICENSE=GPLv3+ diskfilter lvm                                                                9  /        h                                                              	               )              6              D              c              p                                                                                                                                                                                      grub_mod_init grub_mod_fini grub_strlen grub_strncmp grub_strtoull grub_diskfilter_get_vg_by_uuid grub_memmove grub_disk_read grub_zalloc grub_strcmp grub_strchr grub_malloc grub_isspace grub_diskfilter_list grub_error grub_list_remove grub_free grub_strndup grub_diskfilter_vg_register grub_memcmp O     v   
               
     
                          v                        !    @    i                    `                    3    a                    &    J    p                %    M    t                3    r                         :    j                	    	    $	    t	    	    
    T
    _
    v
    
    
    
    6                >    f    k                3            )    1    U    ]        D                            (    :    ?    R    \    b    o    t               .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   }                    	   @       d  @  
            %      2                         8             H                    4   	   @            
            >             X                    N             g                     S              g                    \              r                                  x       
         	              8  ,                                 e                                                                                                                                                                                                                                              boot/grub/i386-efi/lzopio.mod                                                                       0000600 0001750 0001750 00000021314 13417732100 0014676 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                             4     (   UVuS^@3Xs4Zs8$        F    e[^]UVSH$1HXp8[v4F8    F$F4    jP6   F$F$uHP3H43P8	uQjF(P6uiF(;F$F(wW~ u	FuKRjF,P6t0F$9F(u
F,F01!PjF0P6e[^]UVSx8 te[^] 1RN(HXSQPBu׃uҍe[^]UWVSlu~@^9_GrWw;FvPSw w7M  G    G     wF;MwA} E  U  O$^GWMN]1ۉMM;]r븋Mu])Ӊ]1ۉM}    G$   8 t4W$+U;UvUEQRG8UPuUU)Utm`w(EG4tyRw(P7;G(ueW   z@wTPw4VRjG0PVtZ1^x&E    E    3PG8uAPPh    j   1      G$9G(uG4G4    G8j MQPw(w4 uGt-x@ww$w8VPjG,PVow4G4    e[^_]UWVSXjL3  j<EuW  MUBO@G    G4GG8G<   PPtRj j P_@uPj"V3"|  Pj	h    Vc  fEцf=?	S  fEӆf=P C  uff   tC   h      tC   h   C   tC   h      tC   h   C   t
h   h   t4p$E~  PVjEPuVE    EE    tlPEuu'  EQPu3U9tu   tRPuuVutuVPjEP3   u0P@S Cw@   E    E    4uV jPEPuV1EUxAF$uEUG4W8Qs s3xC    C    @uPj j u        Zu<$E1e[^_]U          ]U              ]UЉ]ÅuUPh)   h?   UWVS,M̋M<}ȍ|}ЉǉE1)σw)EԉEE̋u)LM]Ћu9/  ]iʝB$K]ԉ]+]f]9u)   wX   pw$SPWPWP	WP   w
Su؈;KM  }   Nvm   A      ME܈1u؍4VQVQv)qwՍSErkLt1ҊB9uЋ}   O}_1u}}3	1;]sʋu+uUw-   w%NJ	PP}d @  Xw1N!w
 m!     YvX   C  @  	w	ш-ى	   Yv   C     CSWU+ẺEȃ,[^)_]UE]U1҉MVuSD11҉ø	  )˅ڸ	  19	  [^]U   ]UP   ]UZ   ]U_   ]UZ   ]U_   ]UWVS@E]ۉEZ  } F  E=  v  )E   ىU9yuyuyU׉yuyU׉yuyU׉yuyU׉yuyU׉yuqyUQ}}}}}}}}}}}}}}}}U)ʃPLtˍCCu9u  1E1ˉUE	   @[^_]U]U]U]U]U1҉SEE    E    8 E8   EE    !Ӻ   EE   f8 E    E!E8 !19B!؃u[]UWVSE} }uEE ]MU(EE$EE,t`tGuXtFuPtCuHtAu@}t}u4}t}u(}t}utBut@u[^_][^_]U1҉WVSEu]Ev%   v   EE9w։uJ   9EsP)h   j uUUuًERumMEE놋U)U   Uw;]uCVwCG{w	V6N    _v   C      MM1}@9uËECC C +]e1[^_]UWVSE     EvGr@]E  H     Y1}T}@9uUU   E]EE0xq  uu   t1҅¸]  OJMUCtcvI׉ËSw]   kM|3t'1ɋ]A9u1ɊTTA;MuMȋu6v}G   ]䍈)S{}X)ъQPQP6      C)w)ЊuS@CEPփ1҅¸       E t  ES@0xӃ?q   K)GEN)  MnM   uu   tfKf)GEGك)uu   tff)9ٍGE    @  1҅¸]  MMvj)ȃ~a~CÉEAىE܉YwF]   kM܍|~1@9uQICK1ۊC9uKE@CtESw}SOKa}1Ҹ  }NE+]9}t
1[^_]UWVS,}EME܋E    E؀X  q]GE  V     ME+E9  ME+E9  1ҊDMB9uE$  )x@})9y  ;Up  E)؃S  CBCBCE@ƃ   E9E  E8p    1҅¸k  U؍G)9  U܍G)9  IMCEFe  D  ]ʉ1swu]   kӍ|>t1ҊB9u8pwg1҅¸       E)9+  U܍FM)9  =  C@p ;u  ?v]K)FE)9ٍGE  ;MM       _EGM)9    vH}u&;ul  vu	E   MDEfKf)FE   v\Eu&;u  vu	E   MDEf)f)9ٍFE   @  HC)~)9؉}  ;E  U)ڃ  S@C_9  ;MM  }1Ҹk  +U؉)9d  Mvi)ȃ~`{uAEԉYwE   kMԍt1@9uQICK1ۊC;]uE@CtE}WS}]cvu   ;uuh|i1ҊLLB;Uu]]E+]b1Ҹ  }E+]E9Et=5]E+]#]E+]E+]1,[^_]   LZO 

   2.05 lzop file corrupted crc32 adler32 lzopio lib/minilzo/minilzo.c Assertion failed at %s:%d
 2.05 Apr 23 2011         "                             LICENSE=GPLv3+ crypto lzopio                                                                               !          :                                                	              
    
  
     /   1  	                   :              X     M    n     5                    
  
                      U          L  	        n
  
        
  S                                 2  
  
                                                                   #         1  
  
                   E             Q  x
  
     ]             i             y  
                                                             :  	                    
        C  	      grub_mod_init grub_mod_fini _lzo_version_date lzo_memcmp grub_crypto_lookup_md_by_name lzo1x_decompress_safe lzo1x_1_compress grub_memmove _lzo_config_check lzo_memset lzo_copyright __lzo_align_gap grub_file_seek grub_errno grub_file_filters_all grub_printf grub_file_read lzo1x_decompress __lzo_init_v2 _lzo_version_string grub_zalloc lzo_version grub_malloc grub_file_close __lzo_ptr_linear grub_file_filters_enabled grub_crypto_hash grub_error grub_free lzo_memcpy grub_memcmp lzo_adler32 lzo_memmove       &     +  #   +  +   +  6     a   +  j   +                 &    p        m      %        )    -    %        *  f      )    -    +    #    #    +      G    [    o    u  -                           4    >    C    W  %    %        +    +       x  -        +            +    +  &    *    0  (  4    ?    I  (  f    k    p    p
    
    
    
    
    6    ?    H    Q  "                      .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                       	   @         P              %                                 -      2         k                 @               (                  <   	   @                         F                                 V                                  [                                  d                                                                 	                                               ,   m                                                                                                                                                                                                                                                                                                                                      boot/grub/i386-efi/time.mod                                                                         0000600 0001750 0001750 00000003034 13417732100 0014317 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      d      4     (  
 UWVS}uuE    E   e[^_]RR65    uE   E   Ee[^_]NOEPQWSS  1҃+ERPh0       e[^_]Uj hP   hm   h    h|        U5    no command is specified can't find command `%s' Elapsed time: %d.%03d seconds 
 Measure time used by COMMAND COMMAND [ARGS] time    LICENSE=GPLv3+  time                                                                    +                                                                        /              :              U              m              ~                                           grub_mod_init grub_mod_fini grub_command_list grub_errno grub_register_command_prio grub_unregister_command grub_get_time_ms grub_error grub_named_list_find grub_printf_       )     3   	  8     J     `     e     x                  
                                           .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .modname                                                      4                        	   @       t                 %      2                          4                                  :                                 J                                 O                                                    	   	         	                                                  X                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/i386-efi/macho.mod                                                                        0000600 0001750 0001750 00000017064 13417732100 0014460 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      |      4     (  
 UVS]{ 3uss{< us8s<$tV    e[^]UWVSHujL  0@@(@@,@    @8    @    @<    @    @@    Pj j VBu@  Wj EP3 t=       Vuh      }  M̆MQj j3MBu@  kMWE  RWP39uEE    M)u_8   t8  t?E9M|d} uPSPxffS빃} tPS(PxffS,돃uE=u} u)C    F4C=u} tC(    F4C,Pjh   }Wu} uC    F4CPjh   Wu} tC(    F4C,QQuS^_uS{u} u	RRh"   {(u+} t%PPhV   j    S1e[^_]UVS]St"PuSVuV1ۍe[^]UE8uP8E1]UWVSÃ}x UM  x 	  p$C)  s usC       PC  RP3Bu@t/Ps V3;C uSPVC$PR;C$t%=     uPWh   jV7VCPSPCS;S$r,VWh   jYsC    C    st1)RRh   j PEuVSЃu	vG;{|    e[^_]UESU8u/x t)x$ uuJBX;sHHB;v1[]U1WVS]u;h  C$u	V  {K  u(C$S99  )QRj CFP  9vǋES @Et)ME;A$wMUPWRFCPaMPA1RP1Bu@t:PWFCPE0E9}t&=     uPvh   j      ~ .KC$VSy9sx9Pjh   RUUu7BVOM    ;E0	N@k9
B1e[^_]UWVS,]uC  RRP3Bu@   Pj}W3   Pjh   Wu4E܆C E؆C$w	WVh   C      }tVVh   jCuE܃CECPCtVQC1RP3Bu@u=     u+PVh   jRss3;CuCe[^_]UEPt@)1]UWVS]u}CuE   E   e[^_]QRP3Bu@t7RC+CPW3S+S9t!=     uPVh   j    1e[^_]U  VS]uMEE        EEu]u} u	RRh!  19sPPh<  je[^]UMEUMMUEMt     ERE  M/    Ut  $uEME    EUE8u   M   Q1]UWVSÃ}x@ UM  x< 	  pHC<)  sDus<C<       PC(  RP3Bu@t/PsDV3;CDuS<PVCHPR;CHt%=     uPWh^  jV7VC<P S0PC8S4 ;SHr,VWh^  jYs<C<    C(    s8t1)RRhw  j PEuVSЃu	vG;{0|    e[^_]UMVS]9uPA$A tHA4A0uu;CCQq;Pwr;0s0PA Q$AQK;Qrw;vQ[1^]U1WVS]};  K4C0M	uM  K$s 	  U	u%K$9K4C0S Z  l  9L  _  ;Mrw9vƋO<C(S,ɉEUt81҉EUE؋GHU܃} wT9EwOPEMVQ@CPePG(EURP7Bu@t>PEV@CP79t)=     uPEph^  j      Ex xK${9K4s0C wr9sp9Pjh  Wu9G}W    90	}@Ok9
GQM)Rj CAP1e[^_]UWVS,]uC(  RRP3Bu@   Pj }W3    Pjh  Wu4E؆CDEԆCHw	WVh^  C@      }tVVh  jC(uE؃C0E܉C4PC8tVQC(1R P3Bu@u=     u+PVh^  jRs4s83;C4uC(e[^_]UEP(t@,)1]UWVS]u}C(uE  E   e[^_]QRP3Bu@t7RC,+C(PW3S,+S(9t!=     uPVh^  j    1e[^_]U"  VS]uMEE    CEE    F    u]u} u	RRh  S9Vwr;sPPh  j1e[^]UMEUMMUEMt     ER  M    U	  $uEME    E    vEUU1WVSMƀ     @=  uE1     u;M   9A      t/;M   ;Eq	us@Z    ځ  M;MscY19]vXY]Yك   Me	us1ۉuuށ  ;E    s@rC  ;]舊    ~+E[^_]premature end of file %s complzss Mach-O doesn't contain suitable 32-bit architecture Mach-O doesn't contain suitable 64-bit architecture premature end of file %s couldn't find Mach-O commands Darwin Kernel Version  complzss invalid Mach-O  header couldn't read architecture-specific part no program headers present bad program header load addresses premature end of file %s couldn't find Mach-O commands Darwin Kernel Version  complzss invalid Mach-O  header couldn't read architecture-specific part no program headers present bad program header load addresses    LICENSE=GPLv3+  macho                                                                                                              r          C     $     /     A   =       V              c     r     u             -  G                                                             	  C        c	  %                               !             1             @         V  r       f             q             {             6      ?                      `  6     grub_macho_close grub_macho_load64 grub_macho_get_entry_point64 grub_decompress_lzss grub_memmove grub_macho_size32 grub_macho_filesize32 grub_macho_open grub_macho_filesize64 grub_file_seek grub_errno grub_memset grub_macho_load32 grub_macho_get_entry_point32 grub_file_read grub_malloc grub_file_close grub_file_open grub_macho_readfile64 grub_macho_file grub_error grub_free grub_macho_readfile32 grub_macho_parse32 grub_macho_size64 grub_memcmp grub_macho_parse64         %     9     G     O     _     g                    
        E    d    |        1    u    ~                    !          
        :    N    `                        6  
  D    N    U    a    l                                                "    .    5    t    }                  &     S    q    x                            ;    N    Y    r                            	    	    P	    ]	    e	    	    	    
    &
    ;
    V
  
  d
    n
    u
    
    
    
    
    
    
    
    
        F    _    {                         O                             	    *    F    U    _    f    y                             '    /    A                            M                 .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .modname                                                      4   +                    	   @                       %      2       _  2                4                                  :                                 J                                O                                                     	            	                                               $  X                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/reboot.mod                                                                       0000600 0001750 0001750 00000003304 13417732100 0014653 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (               UWVS<uj     j     jVh   h   EPS tuVh    PXu  fE  fE  E    1fMfMfMƉfMȍufMfMι	   S0fffr1 UUj h    j h   h        U5    Reboot the computer. reboot    LICENSE=GPLv3+  relocator reboot                                                                    (                                                                                      9              F              \            l            x                                                                                   grub_mod_init grub_mod_fini get_virtual_current_address grub_memmove grub_relocator16_boot grub_reboot_end grub_reboot grub_relocator_alloc_chunk_align grub_register_command_prio grub_unregister_command grub_reboot_start grub_relocator_new get_physical_target_address    
          !     8     L   
  U     [     d                                                 .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         @                       	   @            	            %      2       U                   4             q                     :             t                    J                                 O                
                  X                                                  P  
   
         	                                                 a                                                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/mdraid09.mod                                                                     0000600 0001750 0001750 00000003700 13417732100 0014772 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UWVSXuǉu	  ڃဉȃh   EU  QPh   j j uuu o  >N+c  ~ Y  ~ZO  F 19>  r94  ~u   v#Gv
tRWh    j     -     j   F]UF4BF8BF<BE@         E@      Ev,h   j P   E    M]ċUE  	EF t1PPWuuuESQPv(Rj$VV1e[^_]Uh    h    Uh    unsupported RAID level: %d md%d mdraid09                   LICENSE=GPLv3+ diskfilter mdraid09                                                                                                                                       	               0              >              M              Y              s                                                                       grub_mod_init grub_mod_fini grub_disk_get_size grub_snprintf grub_disk_read grub_malloc grub_diskfilter_make_raid grub_diskfilter_list grub_error grub_list_remove grub_free grub_list_push       
  D     j                   v    ~                    
            $               .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   -                    	   @            
            %      2       a  )                 8                                 4   	   @       @     
            >                                 N                                  S                                  \                	                                  @     
         	                                                 P  e                                                                                  boot/grub/i386-efi/regexp.mod                                                                       0000600 0001750 0001750 00000147704 13417732100 0014670 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UWVSL}tSSh    j  EuQj0V_  E   PA  j PE@PEpV   UMERIrMu1   @EtRRj:Pu>}v{u6kC}  PPCUPQKUrQj
EP6Uă9tR6h   jU9ERv<Ã?uR/EG  PPEMPRWM}u(URE$Eq1ۃSj j VWPEUuV    0RPVWSh7   j4$$e[^_]Uh    h:   hY   j h    hg                U5            ÍPU	v߃A<   ]UWVS9sQ<\u]C9v={xu7Ct*Ct\CFCFCF벍C9w[ ^_]ÊCCFUWVS1,ӉMԍ}ع   EEVǋE)؍D8$thQGQVPEUЃ;]ԍGr Ist\u0URRCMPh   UЋM̅tCD:L:G1҅҉U   R$toPt]U:(uPPj)RtDPEPh  RSWu,u$4$E܃b111uE܅t8tRPtSV1e[^_]UWVS]u{ uQQVh   u%R1Rj,V   Ͽ      Ph   h   h   h   j j j V3 t(h   1h   h   h   4$<PPC   PswSCJK4SC    e[^_]UWVSu]Vh   u1   QQVh   tRRsVh   h   h0  h   j j j V3 uh  h   h4  h   Vsh  tLPPC   Psuf V#SCJK4SC       e[^_]UWVSlE     EЃ<(t1/  E    1E8   1҉EE tO<\uMy tE8<?t/<*t+</ut#Epttu;ux     E먅҉uuh  h   h  h   tE+E}E    E+  j  u+E@P  UG      uMƍD$  PVuSMUr} +  PPj/SE  @@ SEEE    $ub}            VVSuh2  h   h1  h   u$EE E   PEt;(؋UuPPj)SMgM@U8 Iu  uVh  PRу=     6Ex )E   E /uE@EC} uW1  E    7hO  h   hB  h      E)D P   ^   ;u   FE<?tl<*tX<(|iC<+t?<.<\t
<@t1<[uQ+<]t'HwC\FJt9NMJD*\JD.JD*J.Jʋuf$D Sh`  h   h   h   hM# SEPtS  St
}1   E9EulEuȉuE    E    8(SS1EEPh  u}  tREąuPMUEPn  ǃ   UMQM{YEE0UuEE u      1ۃ< tC1< t@UDRRPVUtkVUU$   tCL    REExWEPtE   EEnE81CuWEȉ$    !CtփPe[^_]UWVSEU 8 uE@      eMtK
t't y΃wq {w 9uB@ҍQw  Pw 9QQPRt1e[^_]Ã߃AU]ÍPU	v߃A   ]USu01	   []UWVSҋ]Ett        o  E    
։E;u   CEtAσ<u-;?	}O{uuwz    C    fyWσ<u C   wKC        7σ<uC   σ<uC   (#{ tF2Et1; t)֍F[^_]USuu01	   []UVƉS    	[^]UVƉS    [^]U1҉Bu]U1ɉS!Au[]ËHPt(U   WVSp9}x<uA[^_]ÉUxPu	@@]UVSP$H09~ыP9}Xp@pBPP [^]UWVSx~)O19ps9|K19uA1[^_]UWVSZ(9Z8@1   rzP~r(;rtz<   \u"   J(Y;Z0}~Z(RT
p[uJr(1ۍ~;z0}R\2:t=t.u@@	t@   3@ [%]t^t-u@@
@@   [^_]UExuP9UuH1]UWVS<xTEkEE   ekuEȋEwU؉MfEЃEЃE    E̋E;F   UFÉEԋ؊B<   <	   <   }   EЋ]XtkEEċE9ug}	CEtXGMċD ;Eu
E؃tRMRUuPEuSu
} t1E}fEf!C{ u} tE;uŃ} tE;tEEe[^_]UWVSk]Pt}Mr}}9|2R9|01991	t}M[^_][   [^_]UWVSQxl1ɉ}9}1kxt9W|K;M}kXt9StZ[^_]UWVS1ۃ,@TUMЉEUEE;^}VFkGtE QuuuЉE؉M؉EԋFuuu;EuC1e[^_]UWVSÃ\@${09~ǋs9   C)MECE1{@ t+;CP}/;E}*K@SK@T(ՋSUMCPEtYPwuCC09C$|-CS@0҉EtEECEC   ECEC+SM    F9(KFss e[^_]UWVSÃCtCuPPSQM׃u3tFM9u܅t1e[^_]UWVSÃPPSWփu&C1҅tutډËC9u1e[^_]U҉VSyK<y;P0uɃdxP~2@4uJù{N t'   u5_t01@4CDF   u0Ƀ
u{Mу[^]UWVSË@F<tw   18E<t<t      
uST1   @unuST1   u\v  tOKXft1t+t1u t1tူt1[^_]UWVS]u{P~E?v   VQQ<    WstCCtRRWPtƉC{K tPPVstCs$1e[^_]USQ];CuD RRPstCCSHKM1]UWVSÃ,p9pU܉M   UUUv  PP    P3tRR<    WsYEXWskM؉EXZQsYM؉XQsUԃtMtttSK{CsS}u܉|4ЋSd SЉ<u	{\}B	ȈBSCPjj kCCPjj kCCPCPSe[^_]UWVSÉЃEULЉt`;      L 	Lu<L1w	΋O   	OLS}<[^_]UWVSӃx@u#h  teW8G8G@    G@W8HO@BB    UXpJ@    @    H`ۉP@tt1e[^_]UWVSÃ,0Uԍ}1ɍC1PEBt=0HC7t~̋6t؉ӋS9uEt~׍e[^_]US ]]]S]UWVS2BEyM܉uttQ   NP   ]1j1҉11$	   ]ƉtEjfǋEjLtttuE    1(}܋WSVOS	ʈSV	ʈVe[^_]US]E    KtyuUECtKtyuUECtE[]US]   C   jCuC        U1]UVuS]F        P1҅Fu
҃e[^]UWVS$]Eu{sWu/1B;S},CDuURRPWUuո   E}#~Dk~ 9G#t PP    PwtɉGwWH1e[^_]UWV1SÃxTUM܋E;p   E@EȀx       WP   S|;   u0PP    P   UtgU؉      S|   jUU؃S|   t'MHC|   HK|M܋F11   e[^_]USÃ0Xs$]ËP  u ŃuU0UE1USÃpXs$C(S9tpYs(sXs0Zs,$]USÃpXs{K ts]UWV1SÃ8 u1s1X;ssFCtt0Ctt0Ctt0G;{r1sXsZsY3{  u5s C<=  tBP4Gv;{Dwk1s ;}FUXUB   $e[^_]UW1VS;~|}v   1;C}+SErUU$E@ЃsCtpXsGSF|    Fl    e[^_]UWVSÃt91;3}%kCFt8XCt8׃se1[^_]UWVS ]4ЊF<E   Q<<w1<  q0K9}<ߊTw   ?  <ww<tǸ   :<ww<t   &<ww<t   <ww<t   9   Y?lB9|  ȉډMWM܀}Eu=HC   @uA<
+​Eb  Q< P  }}>  u$ u1 tډƋO19};4   @F1ۉEF߉E;_$   GH   $0      ;F(Ve]\FЃ	"}^F	 	}]*}^w(Vuu1u&CGO 19}_94_;4~@1EGtE   e[^_]ÅuURPhp  UWVS]uK{A<  $`   1ɺ  {     NXCt@C@ECt@CM  X  kYغ  Љ  A~   jGt99]uUG      G   }u0GXrUGPe   `C@CPF1{uDFkE~}e[^_]    CPF1e[^_]UWVSÃ   MxЉ  ;MCk}UPWCtuEZpCUYtU   s}փCDe[^_]ËH;JuUVSIxrX494t11[^]Åx3H9},UIWVSH    ;Pq}XB|<[^_]UESUHu   tTXH   	BP?u:Xt3{u-K[ۉXt   @
!BP1[]UEHPt'uHIJPtHJPt@B1]UWVSʃHXv~1҉}EǃEE;U}VFCT <ȋGEmEf%u9ft0EtEt(tEu t} tt} u1B뚃[^_]UWVSӃ Er(ME܉؉E~   S(M؉GK(>  Eus(@t<   E9s8 E
     E    Es(xuO{K tI{L t6;st	C<t5SCu#؉MMƉs(FC(C	CVS(0C(9C8~:Mu	S<]tU܋GE܃} mW@M܉C(G E@<t<t<uJ   B   :   2<u } uMڍE>}t   E     G1 [^_]UWVS]}{uCPS@C1HSK[RƉCt)1{u&?KT   	ʉT   [^_]UWVS]uuQQVSC   SuC0s9uRRPst]CC;0C    }(E} ~{ML!){L9~	HS4C1e[^_]UWVSÃ    ǉE|8CuCSkMMD8    ؉U[u
     Cu   k8}܋zuC1  ORu|k9UD8    t ;uuPPR{W1҄[  닋uUD0%  	E؋M_PPQ{MWFM  2ukD0    ;CuwPu MAtB~>s};|uI  9MtJVEVRCPuSu؋MQQPECPRRuu=uOCu܋MD0@E\PuPQsMV@M܃<ue[^_]UWVSu]}guP;Uu*M9u#}	t1jRRWS1҄uX   QPPWStkFPtăuuu@pSVo uFD88le[^_]UWVSu]t\FtU; S9}&PP    Ps  C;SFu CPFPvs1    HщMJM} x0ǃ x)KUϋN9uH}MHUMȅx%   WPUvCMPFKt+E@qy}܉KK}܋U9UU؍~׋UNHu;׋UM܉yȋSQPEPR   e[^_]UWVSӃTEEMEkǉEBD8@PEP|\  C4    D8D2  uE D0   E    _MKy tڋI	Du΋UQ%  QPRt   @UskƉEFuEEECU;P|\uj Et      }RREPEPuuC}|8 uuPPuUЉURt;} {Ut}tED    }   }   1   e[^_]UVuS]FC~ ~@PCuC        'RN    RvPPjj S1e[^]UWVSEU}EtKX~Dt8G~1؃PUUB   11E    [EEt ~}Ue[^_]Sjj R{E;w@}{]E܋G9]܋B~FAEˋ@9EE|ދ]EڋG9}()QPGUPB)P_UZ11   *}uQ)VPBU)PEXe[^_]UWVS,}EWЉE1uE       9}O@]E1M#HDkH E;u}7AE9u'C4;EuC(tMqM܄  Făj8m  QQ@WPEtVF  F41ۊUE    	ЈF4E܉F(EEЋEE;_   GE ЋPHM؉ffMɅu
}   PF4	ЊV4	}V4u	}u@V4twE9F(u/jF(twRRWPunN4E    EtEt$EtEuEt} tE@t} uE܉+U2EC	PuVutE    1ۍe[^_]UWVSEux19  ]S+  ׋V9~$SS    Pv   F>E]~@KOӉˍHH]EE]U@[;Eu4    څx^;E~OtMF]U܉Iy
}MIyN}G}QGX+E]N~6у x/N]<9]܍~}MH<u1	J<uыVQPEPR1   e[^_]UWVS@kXjj }WUȉME    }ċE;C   CMԋ;E   D   kVE̋Bz~xʉ؉MMuEЉu~Iu<EЉt.PEFPuutuLEA1;s}-C<E܉u}Љ{PyF΃u1e[^_]UWVSÃ,B(9B8C1#  RϊCEԀeԟEԈCFPEH~#F(;FtV<uEC C  \  F(P;V0E|	C$  ~K tQ}~(F    MЃ<t8Mԃ9Nt
MЃ|t#FLфtVV
tt
FUԊLCC~PE~(F(MЍP9   MЅu%_M   MЅu	_ҊE	ЀBC  wl9wG1   (1  w'    ).  +         >   ?  <v     s_  w0W:  wSc  M  `o  b   6  {  ww     |t}           =          C
   @       Ƀ1C          C             C	           x  C   i        X  C   I        8  C /          C!          C"          C#          C@             C                       z         k           d  C~P~'V(ME3   MЅu&}_M   Mԅu	_ҊC	Ѐ.C_  wJ(   w
   $z    *     +          ^  w?   [v  Cm  |t?}   {V           `      7  C
)  %   =     C    C          C      C               C             C             C	   Cz  u F(tV   T   t\
uWC   F   u+F(@;F0t"F(EEN(P   wC          ,[^_]UVSӋr(Ɖs([^]UWVSEUF<t<<t?,t:t֍B<	wtʃtk
ڻ   0  Z뮸؃[^_]UWVS|]K0C${M9~E{J ]  {@ S  {L I  CE;}2  K:u({ u"SHw SC:G뿋CsuEE})EZE   uFw. PVEUPRUM9uUPQR=  PuCPCGPCM4ET    9KG}tC09C$|1CKU89KG}EsCEsC{  {    E  EC$9j  { 9  1{L N  RuEPCPCMC<   ;E1  S0E+E9{4S0~C8C$U9~Eu};u  EK@)ECɉEC|t(CPE1;E}*;E}%ST@CEEEEMUCPEE  EEa   m PuEUxPRM9ExPQRnPC&  9t	S@CLK0;EUʉrMI@
UKPuuCP{L uSFM}U#E    E9Et؋EE08C9}sK@1}tC09C$|GC8C@tC0{L tC<KG}Fu"us|sEC|Cs{ 1e[^_]UVSP$X09~ӋP9}(p@Htqpw BԉPP [^]USS]UC$=v
      QQK09~9}RSucCdtRRS$   RPtCd{H t{P~]]3{P~	8{@ t1]UWVSÃxh@$9|;C0|0C9}$9}:P)Pj CdDPsh;C0}RRFPS t1e[^_]UWVSL]C;E})^{P~Vjj CPC,C    }C    C     C0C4CL C8E{K C<uC.  ;{   {L K  CKE    EMĉE   șUċ9U
}PU9M|9}}pMVv9}C<~l9uhEč    9EuTCQM)QRPCS)P:PR1){){ ;C[  uK0)@+EC,CL C0+EC4C8	    E9|uNSBuF;u|uC      Eċ)C  1S9w  S@MWu{PC<~SPC)PPR{K tSVC)P:PR){){ o  C{L Et+EC,CL C0+EC4C8KPC    C  {I usCs E  ЉƉEĉ)9sЋMčt99r̊   EċS@C0uE)ut"M~   Hx
LuQjj URUUEԋM$ƋEE+E9JARjj CPEU+EC   N>C,EċC)uMĉECuEEUHw	;u|'t} t01ҋECEC   +usuU؋MJuC<6{N tЉU   Uąu_t1Ƀ
u{MуK<1{ t,S9}S@{K tPRh   sCC CtC@C     t40CD   u0҃
u{M҃S<{K u{E){8CC0){PC0~!{H tSt29'{K t{H t	{@ tCC(    1e[^_]UWVS<  8ǅ    \u@ǅ    ;H1  @    ڊJك    tJw C@  \  
@;GrBQjj P)Íى$p9^  Q      uCS뚋Pw RPPP@    uu1҃    1ɋs( tXÃwX A@ uƃ u  L  \~{$ uCu{  uǅ       ƅ Sjj P   $1&uu   Qjj P4    PP@u"@@u;;C|    tʍPw 빃\~Pw RPPP@t뇃tu"Ph   jVuHe[^_]UWVSӃDru܉MVL   E    űE;C   UԋCEkGPU1;U}'H74ΉMN;MuM9tBڃ}uRRPuuuuuW ƅtu$Edsu   1e[^_]UWVSEP1҉UuE     /  9}}O<@}E1ۋu#pDkp E;]}#F<E;uUG   C؃j8   RRupVtS   s(1ҋE;P}nE@E 4~u	F  tHNC4	ȊK4	K4uu@K4t	F  tK4BPuSu|tuE    1e[^_]UWVS<EU@TEЋEk@]u1  ]܋MEAtEԋEԋ8E`  Eԋup+p;u   EkxG0ET+  QQVS@M^uE؋E	_XSuRXuE؉		a         EЋ@<    EȋE@d   ȉMMą   PPQSEXZWS5u9} u3E}xdRSuЍEP@YuE@d< u:1uE؃u9   2PPWS1EtE؅uEEԀx x]e[^_]UW1VSӃ,u܉EԉM;}}VEЅɋuAt=RPQVfEu)PVuԍEPvZuE؃uG1e[^_]UWVS\}E    MuGTwxE ȉEEX9|_F)9}
     3?wQQ    PEUpt̋UMAQRVj PE EuEEċGdOXEG(EEXEĉ_dG(P<ƋE;EuEPPu]SE  Mu E\E9  } uNpEċt+C4@t%PPCPEPE  C4@uhPjj EPuQu uučEPW6 E  VEPuEPu
}   GduĉEE       E6     wTEQjj PE    E    E;CP  MCEED  Uuĉq  MVEċEEGdE    ^  URRPEP3UE;  uẼE   Eă} p  OXU:PEPuEP  GdۋM  EEuċE;E}SE;GxKGduE    0VVPEPyEuEȃs  uGd]u]ą҉Bu]!Љwd_(.  Uݻ  uTUMuAQQREPGtTUEWdURPVEPWUMGd< tPMPF4EP u%} t^u   WEu1:Mu EUEu uEVPW E} -E    0   e[^_]UWVSÃ uEjVPq1E؍AUPS    GEE܋ ECp9Cl|Jk(QQPstust      CtRkSpRj kSlPcpCl~kStD9pu@kClMCtUMkClCtpkClCtPkClCtHkClCt9fPClKtPkSlD E+E9Cx}CxEw+؍e[^_]/e[^_]UWVSÃ\@TUE    E̋C(EEEU;P  E}@ǉEȋE̋ x  p  tKU؋KXft  t}   tp  tc  ClUԉECTECE蚻tkCt}98u1  x uE}E     EE;C|}Ӌ   }4E}V 9<K  Eԋ>E    EЋE;F   MċFE@)ɉE1PPuMuȋMR{}  Eċ}멋EЍ;S~ ;S0M:}  CMEPQMMPEPMtE;F  Ǎ    E;}o  +~EE;C|$;C0V  R@RPSVN  CEUЉ@EЋEL88"  CdM  BE    EE9E   EċJȉMM	y	uE9tẼ}   ~ t"Pj	Wu6vvS  u%   +@kPFu      F;Fu)T PP    PvUtVUĉFVjt<NVUxFQQuԉu`GEE   E  EkEkE}EE;Clc  ECt}98F  u9p:  P@)ǉ}}̋Ouw}t>k6ű}vk4>uԉMЋKX)Ɖ؍VݺKd<    9EEEtAEE    } uuuu̍E؉UPUQERup(EPEtu   {duEPu̍EPXuCd< u} uX} u7CdU}ċ9x~&}Љ؋MԉEu+EuEEEE    E؍e[^_]UWVSӃ,EЋBTE̋B(;BhRdE~Ch   EEȋu
wɋ@(tq(RPEVPMЃtb}ܹ   1C(KXPAUSdUPEPuuUȃǉtuẺxL tAu19Mԍ؉MЅuF4@tMЅűCdMԋ4e[^_]UWVSl}EUċPT@dE    MU    UtEE     uEċ}     x  } u+Eċ]PWuEP]ȅL    PWuEE    P[]̃ۉulx tPVuWQXPPwS蝾Eu1.   .PPGUkUBPS]Eu֋UB;W|뚅ۉ]  Eăx 0EE    @tEEċu;ps  EċMU@kE;PM  9PB  u9H։U։Ut1   GEE    EE9E}7EOE4FuE;u	u
E;uMEy1} yH   Eut   GUkEBUMMtF;w|sUBU۰uUuE2uMNǋGE HvF;w| M;uEutEÅۉ]>  } 2  E1ۋ}@d@4@  EUxT}E  kE    E    EEăEE];X  E}@E}ċ ;_Duu;w  <x  }Ewt<    }kEƋE}E95  F}+FǅEt@M@UDE;x       ʉMGM   PUWEQue   } t(ERRuE؍E܉]Pu1      uĹ   }PPuEP
t   E̍Ű}48E   uqEċPu*E̋}U48E蓮PEEuptEM@PEgt!EE~ FtE@1} tuEEă1ۍe[^_]UWVSdrr]܉ES  EԃSE      EЍGE    ]E  ]Ѓ< uEE    ]ԋM;Kx~Quj P[u1x  EN]E    @dDEu)Eԉu
mzE"  EE    @TE̋E];X}EM@    EE̋ DuẺUEuZ   GډEEԋHTVME E~';ELtMQ胬t,u*됋MЋtFM̃Q\t1E    t,ERU@EVSPEjtEPPSuuE   uEȃe[^_]UWVS  E]u}  E@t*E@t9t!
ǅ    E@Qh   j `Pǅ    EE@9v
Ex t @$tQ(u
     A,ty0 t鋍y u*z u$x t	Ex xt     11+ǅ   uxL EPHUxM@\`UEUU҉U	ʋUIXMMURRQMMO9}9~R`P1  U`EGX҈EEtdd1u\E|EEEEE@ExLE(EE}E   }wQC  kPEԍ    $} E  u  @Xt-E=?     PEu  E    E(E19D ~9މ}x\ tIɸ   u}0G@u191҃ 		
ǅ   9ǅ     9;tǅ        $   }< u@;|΋94  *}< u@;|1;}}E8t<    11;E}ut<    H;}`+x;Er(Vu(RS  +x1;U}
d< u';m;}`Qu(`P=<   u| th8  E]E    E    E    C$ǅ    x4    MP`tC(tauC0tC,$t?Pp(SP; u1ɺg    Eątl<{L tW_1ɉڍ`"  G4@u	ƅ (ڍ`Rt  @4uǅ    !x@   ǅ      `&t룋|9   @4    E PUd@,  } tٍ`rÅ   w  C4  E9E  Ux9D;U;RRP`Pb*1Ƀ      ;U붋Eǅ    ;x  @ @u  p  tOUM`0ftB  t5   t(  t  u`観   uU9Љ}ЋE؍`    Ak4Equ   @WVs(@Pv uzMP`0uP@P PwۉtHEċ< u
 uD14{	  X0t3EMP`虦t   0(uh ,  	     @,    @0       ǅ    ǅ    ;X  @H@f%IfuJ   uku(~\~V<Sj jW   !  QjjW   @u
 t f u!ǅ    ?   t%       {      ]  uua됃u@@0  ~\~ ^<11ҋD`#B	u11T`#@	уu  떃u@@  ~\~ ^<11ҋ#D`#B	u11T`#@	уu  u7舝u# 9|   11# @	уutǅ    10#@	ы#	@u؅tYPj @PPj  PSXkZP辽u;QQ@4t s9uLSj WPXZ@4kPu&   6i(1;}kCt݃  h   F,x  QQ@P P艨 u!QUwkPuJ1(kCt;u߃  ȉ@1   ƅ  ǅ$    1ɋ;H}K@Ft1kRRFPa   Aj VWu  j  x4 yqjVWu  8  9t~\~ƅjVW}u)  t   @C ;    h   C,x  1(@ǅ   | tl1tJtȋx|xtuAυT`tѭ닃 M   h   F0     1(@   Ɖ tQ1t9|0|uBድ4 Ƀѭ릃 mAtK1ۺ
   芗t' V(t (  C ;u1X(kCt;u߃ǅ   1 ?  } u     8    t	 u΋MȋEU@9E< t1ɍ` u	t~9tƅ udyMڍ`SE tǅ   ǅ    (u`  %
  EE@Àu	wxL tEċ`@Euv@XuxL E  E}=?Q     S  xL   S  HP    Pj Sjj LPP@DH@`HXX  > u>; u9E   tB4tމ`2Q$tm   @ǅD    HLPjj PP@`eZXu3> t21uu1}E11۸   11۸   V$tB        ;t}$D@E$}$     EGE@t
E$1  t틽1GXt
L }ǅ@    ǅD   ǅH    ?t#j0Hl  @1 XHPjj V$uȣ  Pu$E$  u$ ;F  JuB;}ju$։BY	uT2F;}IM$9}APu$Bt!<tPRu$AE$@9 uy;]uttN1;tu$< x8|u1;  PPu$ %@봃(_u    P  Ek NVVSȪ  ǅ    A9  A4Ԑ      谐:  4   B;Gu7k0QQPw
  gGkGGtwFGD  Vu$PXZGЃPp  x  @t. `         M$ DH )tBu  Att2dQ RQPtkÅuePPS轨  k ^CEċڃ   ` \1ҋFҋ uP t);U*Eċ肎
ǅ$    u)(^7   t(SSu$ [i(Y     (Z軞&         tC} t2|9uM	lH9uM	lHHB;uE$1;}D@担    tK1ҍB;t>   @   9t}$Tǋ   TT뽉uxL t"`uXu`耛,Rǅ   돻e[^_]UWVSÃ}E@t6PPh  WMMtPPh  WMu  E ;A$u5T PP    PqUMt  MUAEAEA$PQ$M1ҍ  EPPWQU܉MU܅tMB
u1ҋEPPh  WuK1t/ t;^G   u1y  G   tшt1QQh  WuC1t*^vT; G   uG   tG^vډRRh  Wu)S  1ۍCw	ډ詉C   uFPPh  WuW1t6Wt;fG   uG   Wt2PPh  WuM1t1kt; G   uG   :tшPPh  Wu)o  1ۍCЃ	w	ډ蠈C   u=PPh  Wu)W  1ۍC^w	ډcC   u PPh  Wu)?  1ۍCw	ډ&C   uPPh  WuK1t5	t u;G   u tG   t	u軇QQh  Wug1tWG^wWu;|G   uWu	UG   G^wRRh  WuM1t1&   t;G   uG   &   t߆PPh  W      1t1#t;褆G   uAG   4tuݺ      G   wT;aFG   	wT;0!G   ^wT; ࿿G   wT;Aׅe[^_]UWVSÃ8Ej M̉EE    $(   Et	} MuE      } tHUPj QEPtuME8   EtE#E} tEM{\~S<ELEԃ1ɍ}1WEE]EtI{\~7KXW11҉Eu3t"UЃj
',裓E u茓E    1e[^_]UWVSӁ   EE%   EE |F;P#	  $   1V1҉莎uE    	  \  MA(9A8  ;A  Q<  MU蟱1V1҉,$   E#t} u끋EMU@|C   E@CC~	tTPEu|u  ËE8 u!~	tt1ɺg  E    E8 t   1ۃ}wM   	GT1jډluE    \ECTj E    $(   É|Eu>|[uE    1ۋE8 d  \    tMUrxF<uE    P  <ƅc uKEHE   t|
   ExH(M~xtƅc~uFǅd       ǅh    MUMQPuxEt
M   MU袂xE	  	  F<uE    n<	  ExH(METUt̀uEx)X(F_	  UȉUMRUjuPEnt  U|EُK   GTuE    1  	GPV11҉GL  } tE      | uEtMU1<	uE   uE      1F1҉V蚊       GX   GXu=   G`       Gd  GhGltUPjj GpPS11<x|E&~|xu}_tA uC 1   	D`      t	u	   t 1   1҉V袉	   E1   1҉V肉
   E1Ƀ1VgU$
   |Z} | u1V1҉"ÅMUl	  1V1҉b\~aOX[S]<!  S@uPh  QM<#Q@  uPho  SÃE      MU׫E%    lE%   hF<<U4  U<J(xNpt  ME莫|@u#~u>,ǅ|    tE 
     |t&F<t(Eu&>,u!ME5E    	|E}t	|uCl u~uE 	   6  ExP(ptVF  E9|~@M~C}u|  }  t'E      M<D |EMUD  E|u1ɺg  w  | ǅp       xǅp   |9pExjxn	  x    p뭋E9|   x輆pÀ{uK  Z1ڃ}
1P   ||ÃxE9xT|Jj|訆tI| t@1j
舆t'x롋pt j_E    1ۋE8 ttBh F<&<  1  M1ۋU{\ۉxE#]      U        }uu  U>  EpEG  MlR  pt
ǅpJ  lt
ǅll  p  E   tl9p~   `P  d;C   D     \PPQsTTXXZQs     ]+]SH  |x1MtU|xF<U<t1ExH(c t|x\~W<|xEx u$x ux ux  u\~`x$ u@tTE1ɀOX1EEȍEP蝂1t]|< )  @u|E|11EEȍEPBEE    }vPh  h  hp  E$@  Eh;Pu#]DRRhP3t]CHKM|   U]SHu,|w1u   PEUM@@uuR|aUǅp    E ǅl    M	UpElX9C\SdS CpC SHK l1;l9p|uC   u|11EEȍEP:j
ى+e[^_]UWVS }U؋E܉MWuuU? tu`u`tމE@   }    PMWUuuE? tut1ɺg  z1QtEjku$1ɺg  z1ɺg  z   뼉_<	w؍e[^_]UWVS }EUWuu]? ttRE   E؀~
umUM,Ft/} u%PU܉WEuu? tu
1*<	u1Ej
u   ԉ؍e[^_]UWVS   ]p@lE    Yy   A    A    Aw)VVh   S  p@   p@   Qh   j S
C@   vǅt      GC   P9wkNPsDC\   C XZh  h   uKXCX{\SX~Vt	C<  Ij C<a14    1ɉtt1  A u uу; '{  ǅt    tE  pEQV%  @ jTj uVh`d`hl}ą҉UE	ЉMKXEߋC\}}̉}ȉEE݈M} u,l'QQGPV`iy`t   Eh EtI{\~9uVןuY9}}ZEUS\9MRRPVyt3E/{\~
Eut
EqEEEttEtup8G8t0PG8    G@   G4    wEG    舀跀p     @    E  pUuG       l   E0MPEPj uE} ttCl1j1{tlj{tu	E   1C4p0FPFF$FkF$FkF$~ Ft~ t
~   ǅt   p@P  ~L `  tEKCX   d    px    C11l1;lt^JIwM$T  : y>   7 t0w@t$t   
   < uuBu   @뚉u#ucX   {L C\   2+1;Ss܋ЊHu8 y`	u@B׃ CX	ЈCXC4}@@CHkRRCPWBE   1{L hEj }WSuV̐C$uk   }d<`1y\t)FE9Ɖl|묋d`<<	t@;l|C  9u8  x4 yBjWSVGC(jWSV: C,jWSV*{( C0t
{, K  EC0C,C(uttEp8G8t0PG8    G@   G4    wEG    |} t|p     @    E       S<ֺ   	p@lP1҅   tdp;Ps   BF40&  ArpP19t   9t!9u    ǆ       @͋F4  pqr  F4)  q[  F4&  qF4#  q5  ƅl 1;~ul ƅl 1khF| uAjE轊   Fh| uuƅlG댋px FXkFPF_1;~sPjkGj FP1;~\kF1ҋDlF;T}<l`QQWkFhPrh`BG띉t;l{k\C@8hkWkPP{Wh 11e[^_]USE    P	ʋMʀPUSt(  l  1]U    U]    UWVS]{3h   j WV$zV(9V$t	fV,9V$t	UV09V$t	DK1e[^_]UWVS,]EEU؋UM܋M9uM  M  9|$;U}ƃ yx9U!U1ҋE@ƈ	9U}u~ tuVUUE@u-t"<uE3;pwE@p      1ۃ    PUE  UWPVuRuuuu0t1HÃ  e  ENϊ@uM    RUU܅C   RCus];E      uc;E      RR    QsMEt$MPPQsU؅uR1   SC;41Ƀ(    {1ɺ*  93  {E   U19}:K<zK<@!    ;sK@sE܋} G	ШGtM} t@}1ɺ  ]  9z_+]uEۻԍe[^_]UWVSuEE <1Eut
   Eu9|tEɉU؉M~>WtʋM܋UPQRSMVuQ]U1EUPEuuuuSSe[^_]UWVSE]    C    O C     h   C   }C  @ 	Et翃Ȁ   uCCC    	CuU<$tuS1#   sC       e[^_]UWVSE]w(  l     Wۍpt9މvMCD RPWue[^_]USR]ts    C    sC    XsC    ]U   WVS]u}UuNt
BWUU1Ft
Sj j SRuPPQPWV70e[^_]UVuS]EUMu]E   [E    ^]UW}VuS]EUM}u]E    [^_]UWVSEU]u}EE UU$MuEEUU}]E    E    [^_]eUWVSEU(M]u}EE UU$MMuEEUU}]E     [^_]US]UEۊJtJUPUPJ     @    @    []U1ɉS	Au[]Uj j PUSÍ@^Rv1Su  ]  n   s      r                                 "  "  "  "  "  #  #  #  #  .#  :#  ]#  #  	%  $  	%  	%  	%  $  $  $  $  $  	%  	%  	%  -%  i  i  h  ih  i        A  ~      {                        =        Ԏ                    Ő  Ő    >    
  ۗ  #    ]  C  ]  X  Š  ]  ]  ]  ]  ]  &            alnum     cntrl     lower     space     alpha     digit     print     upper     blank     graph     punct     xdigit                                ,   H   e   x                           D  _  Success No match Invalid regular expression Invalid collation character Invalid character class name Trailing backslash Invalid back reference Unmatched [ or [^ Unmatched ( or \( Unmatched \{ Invalid content of \{\} Invalid range end Memory exhausted Invalid preceding regular expression Premature end of regular expression Regular expression too big Unmatched ) or \) two arguments expected invalid variable name format %s %s Test if REGEXP matches STRING. REGEXP STRING regexp set Store matched component NUMBER in VARNAME. [NUMBER:]VARNAME *.\|+{}[]? (%s) matching: %s
 expand commands/wildcard.c not matched
 . .. matching: %s in %s
 matched
 %s%s / no expansion needed
 file <%s> in <%s> not found
 paths[0] = `%s'
 Regexp is %s
   Assertion failed at %s:%d
 gnulib/regcomp.c gnulib/regexec.c alpha upper lower alnum cntrl space digit print blank graph punct xdigit _ 8 UTF-8 unknown regexp error     LICENSE=GPLv3+  extcmd normal regexp                                                                                               :        R                                               
                             #                            /              ;           M              Z              j              y                   U                                                                ߫  0                                     J                  (  '  Q     ;           T  @  V     _             k             r         z                                                                   g  x                                                             d                      n     #             .  x       <             F    1     P             _             t                              J                                grub_mod_init grub_mod_fini .LC18 grub_strlen grub_strcpy re_syntax_options grub_strrchr grub_error_push grub_xasprintf grub_realloc re_search_2 memcpy grub_memmove grub_device_open grub_file_get_device_name re_match grub_encode_utf8_character grub_unregister_extcmd re_set_registers grub_errno re_compile_pattern grub_filename_translator re_match_2 grub_printf memcmp regcomp memset grub_zalloc grub_strcmp grub_strchr grub_malloc regexec grub_isspace grub_real_dprintf grub_env_unset grub_device_close regerror grub_fs_probe re_compile_fastmap grub_error re_set_syntax grub_free re_search grub_error_pop grub_register_extcmd grub_device_iterate grub_wildcard_translator regfree grub_env_set grub_strtoul          2  /   $  O   &  s   *     (     ;  	  <      "  2  @  -  a  ;    :    4    4    /    )    :        /        2    :    4      $    )    0    5    :  7  C  9  G     L    Z    _    h  9  0    9    L  )  `          (            0    (      2  4  :  .  B  4  G  6  `  4  }  4    4    .    4    6            (          !    &  ,  7  *  E    L    V    [  ,  c  4  }          '        '              	  ,    *  (    -    7    <  ,  H    M    k      4  \    a    k    p  ,    )    )        )      5    ^    f    w                  ,    4    4    0    (  	    #	    0	    a	  4  	  4  	    	    	    	  ,  	  )  
    
    
    
  ,  
  $  
  4  
  4      $  8  F  4  Y  4  m      4        4    4  :  4  O  4  ^  :    4    :        4  N  '              9    s                    '      %    %    )    )  R  )            &  !  4  *  4  2  4  ^  4    4    4    4    4    4    4    4    4    4    4    4  :  4  d  4  z  4    4    4    4    4    4    4        4    4  4   4  <   4     4     4     4     4     4     4  !  4  !  4  *!  4  "    "  +  E#  +  #    #  "  #    $    I$    f$    $  )  %    X%    %    %  4  %  4  )    X-    -    -    /  4  F0  )  v0    0  %  0  )  1  %  1    1    n2  &  2  4  `3  )  H4    F5    ~5  %  ;6  4  6  4  B>    s>    F?    D@    l@  )  @    SB    B  %  ;C  %  -D    CD    E    5E    F  %  RF  %  dG  %  &I  %  I    yJ  %  J  %  J    qK    K  %  L  4  L  4  8M  &  cM  4  N  4  O  4  O  4  MP  4  P    P  %  Q  %  VR  %  S  4  S  4  S  4  T  4  T  4  U    U  4  U  %  MX  #  bY  &  Y    Y  &  [  4  1[  4  ^\  4  a  4  lb  %  ub  4  c  4  yd  %  f  )  f  )  f  )  Ah    l    wn  4  o  )  :o    o    o    o  %  !p  %  p    6r    Hr    r    s    Fs  4  \s  4  ts  &  s  )  s  4  s  4  t  4  Ht    u    u  &  v  &  w  4  w  4  x  4  x  4  y  )  z  )  Lz  %  }z  %  z  4  {  4  `{  %  {  4  {  4  {  4  {  4  |  )  |  %  	}  )  7}    }    Y~  4  e~  4  x      )        #    4    4    4    4    4  #  4  '  4  L  4  U  4  y  4      Ń  '  փ    ܃  '          F    X  '  |      '  ۄ      '  2    8  '  o    u  '    +    +  څ      '  ;    A  '  x    ~  '        '        '  Q    W  '  u  +    +  ̇    ҇  '          -    3  '  \  &  k  &    4  ~  4      ۋ    J  &  ^  &  v  4    4  0  4  N  %          Ր    ސ        o        ؕ              4  g    l    q  "              	        ,    :    w      %    )     &            '  E    Q  &    %  %  4  L  4  >  )  O  )  ^  )  m  )      ܡ  4  
  4  1  4    )  ۢ      4  (    E    \    k      4    )  C  %  3    f    k    z          %    1    )  [  )  u  )      ֧      4      "        Ψ  4  J  )  b    t      4    )  ]      1    4  Ъ    ֪    ݪ            D  4  T  4      !   %  B   +  P                     0     4     8     <     @     D     H     L     P     T     X     \     `     d     h     l     p     t     x     |                                                                                                                                                                                                           $    (    ,    0    4    8    <    @    D    H    L    P    T    X    \    `    d    h    l    p    t    x    |               .symtab .strtab .shstrtab .rel.text .rel.text.unlikely .rel.rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                      4   5                    	   @         8              )             i  a                  %   	   @                        <             ̭                   8   	   @                       D      2                         W                                 S   	   @                        ]             ĳ                    m             Գ                    r              Գ                    {                                                                	                                                                                                                               boot/grub/i386-efi/mdraid09_be.mod                                                                  0000600 0001750 0001750 00000004010 13417732100 0015433 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                             4     (   UWVSXuǉu	  ڃဉȃh   EU  RPh   j j uuu   >+N  ~   ~   Z  F 1҆9w  r9m  ~ffu   v#Gv
tPWh    j-    -    jÉE   FUF4CF8CF<CE@         E@      F,Ph   j EP     E    M]Ć	EF t1ۆۋF(WRuUuSQRPuj$VV1e[^_]Uh    h    Uh    unsupported RAID level: %d md%d mdraid09_be                 LICENSE=GPLv3+ diskfilter mdraid09_be                                                                A          [                                                              	               0              >              M              Y              s                                                                       grub_mod_init grub_mod_fini grub_disk_get_size grub_snprintf grub_disk_read grub_malloc grub_diskfilter_make_raid grub_diskfilter_list grub_error grub_list_remove grub_free grub_list_push       
  D     j                                    0    H    M    R    b    g               .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   p                    	   @            
            %      2         ,                 8                                 4   	   @            
            >                                 N                                  S                                  \                                                  @     
         	              H                                    e                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          boot/grub/i386-efi/reiserfs.mod                                                                     0000600 0001750 0001750 00000021260 13417732100 0015204 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      X       4     (   UP   t>w  t&+     t30u(+tw    t	            ]USQuC   Z[]USEX@3$X5    1]UVSjxtSPSjtj j j h   V =     u2Qjh    C4PtRRh   j	st(=    uPPh   j	S1e[^]UWVS(E5    E     ;   1f|CT u@u}C\f{bs`fK^fEfCZffSVffECXfEfEfECTWVQMfEQMQMQRPh!   U05    $    e[^_]UEVuS5    ZtPPjCdP    5    $    e[^]UWVS }j]j uVE؀}	ЃE؋G<$EsVue[^_]ÅuURhF   hT   USSwM$    1            P	щH  Y9[]X[]USStC1KCY[]UWVSt҉ty9rz   w}z9~rkwsǉ؉UM9rOwR9rI9r9wFpƉguPvuVv9r1
   [^_]UWVSHX,E̋@U؉EPǉEE  f	ÃEȃF    F    }EMW}E    e1Wuu%  EEuRPEpt =     v  ffEPho   h}   h  hF    f9r'h   h}   h  hF   Y[h   j	   Ef@Wh   h}   h  hF   fE f}vo1ۉ}Ef;]uUf;]ދMr   E؉xCUE9
   H9J   FV   M1Cf;]tME؉ʉωMt<utfuRRh   j3} tKk}1f;]u`} uZftKk}I1  =     u1  =     ^    z]E̅uF    fF  F    -Eԃ$f^kF]FPjSV1  =     u1e[^_]UWVSStsCs%   	KX[^_]UWVS    U   ME    hX,F$E    EF(EEpE1҉UV}EFuu}9Erw9UvUEuE}UQu)RPuuWVh   h'  h(  hF   0 Ehj MU]  } uuuh0  j=  E	ىHPǅT    Ɖ׃f	}ul}9}  щEnhjMUw  ]  Efut?    lShF  hM  hF  hF   Ƌu}1҉p׃ 9}  r	9u  M+Mu!|}+u}x w;pvƉ׉+x|pȉtRPQSh`  h'  hO  hF   MUAtP UAtP$E1upx|R1PRSqtE =     @t@     |  pEu}  fSLx<  V1PESR1PlERPEpt =       E}uǅp    Ptz }@tx$};}r^  ;uU  L9pC  xplSh  hM  ht  hF   PT ;U   w	;E   E)!ЋUdM)`U MwH9MvPTUMUM+`dX\QRPSh  h'  h~  hF   EuX1d`SQpt =        EUX]pƉE@t@     x u}Gw]9]E]uPu؉+EURPh  h'  h  hF   ؃ +Eǅx    xe[^_]USP]SKC@sHsDuux]UWVSu~GPt.j 1j 1WPAyS 1e[^_]UWVSh]5    E    C L      EE   }E   E    E    p1ɺ   EpjU~   } uPPh  j	nPPjh  h  EPWu =     uGUBRC4S8QPRPh	  h'  h  hF   E C    C    C@1I1  =     EU9tPVX5        e[^_]UWVS   ]{ EC|CxtWWh$  jE      Ex,FPE{  Kf	[h4  h'  h  hF   MEωMMhdhVuE    1VWu%  EEuRPEpt =       kd> fE  Cf{tfnǉpfnf9E&  G  G   p4GEGE    E    EE1ɺ   Ej<E  EjUu9{ H  11ҍE1ҍEEjٍUtS  C   f{: S8uZQMQ1j EQR1RPEpt =       E1҉CEf% f= ETC    C   QMQ1j,EQR1RPEpt =     D  EȉCEUCSE1f% f= TGRRhL  Vt VhO  h'  h  hF    SH   u`SRVU`t'P   PRVhq  h'  h  hF    j fEx|	tGtEjMuKEM]|Eɉx11  =     yu&1  =     Qu1e[^_]UVSlE5    EEEE       EE   uE   E    E    1ɺ   Ej؍Uum} uPPh  j	TPPjh  h  EPVu =     u-ERPh  u$Y5    1SX5        e[^]Uh    h    E    Uh           &  -  4   ReIsEr not a ReiserFS filesystem %04x%04x-%04x-%04x-%04x-%04x%04x%04x fs/reiserfs.c Assertion failed at %s:%d
  at level %d
 reiserfs_tree level loop detected, aborting
 level loop  number of contained items : %d
 unexpected btree node Reading from %lld to %lld (%lld instead of requested %ld)
 reiserfs offset %lld not found D: %u
 reiserfs_blocktype Reading direct block %u from %u to %u...
 I: %u
 Reading indirect block %u from %u to %u...
 Have successfully read %lld bytes (%ld requested)
 unable to find root item file size : %d (%08x%08x)
 not a directory Iterating directory...
 .. Warning : %s has no stat block !
 Found : %s, type=%d
 root not found            '    7    |   /  G      LICENSE=GPLv3+  fshelp reiserfs                                                                                      	      "                                          
                             3              B              O              ^              j              u                                                                                                                                                                                     grub_mod_init grub_mod_fini grub_fshelp_find_file grub_xasprintf grub_memmove grub_disk_read grub_dl_ref grub_errno grub_memset grub_printf grub_fs_list grub_strcmp grub_malloc grub_real_dprintf grub_error grub_list_remove grub_free grub_strndup grub_dl_unref grub_list_push grub_memcmp t                                                              $    +    7    W    \                         #    A    F    c    y    ~                                    Z                                        $    +    E    J    T    ]            ]    q    ~                                    A    H         	    
	    	    	    	    	    	    	     
    @
    u
    ~
    
    
    
                                .    o    t    ~                    E    Q                                    &    +    S    o    {                                    "    *            ,                *    3    i    o                                        c    w                    B    I    W    \    i    r                                                                                                                           .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                       	   @       <  H              )             8  $                  %   	   @         (               1      2       \                  D               (                  @   	   @         8               J                                 Z             ,                    _              ,                    h              3  	                                <                	                                                  q                                                                                                                                                                                                                                                                                                                                                                  boot/grub/i386-efi/mdraid1x.mod                                                                     0000600 0001750 0001750 00000003774 13417732100 0015105 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UWVSH  ]S1ɉƉ׃!׉u	  t/ǅ   ǅ    t3ǅ    ǅ    ǃWPh   j j S   N+  9|p  9x^  [  0t   v#Hv
tSRh    j  E;E  QR    jRPS    ;D   }G    j   RjPVhMl04Q1҉8@<	uptщPPWSQPDVj0A1e[^_]Uh    h    Uh    Unsupported RAID level: %d mdraid1x                  LICENSE=GPLv3+ diskfilter mdraid1x                                                               s                                                                        	               0              =              L              X              r                                                         grub_mod_init grub_mod_fini grub_disk_get_size grub_memmove grub_disk_read grub_malloc grub_diskfilter_make_raid grub_diskfilter_list grub_error grub_list_remove grub_list_push      
       7    >    x            V    z                               .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                       	   @         h   
            %      2         $                 8                                 4   	   @       |     
            >                                 N                                  S                                  \              &  	                                0  0     
         	              `                                    e                      boot/grub/i386-efi/tr.mod                                                                           0000600 0001750 0001750 00000004614 13417732100 0014013 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      \      4     (   UWVSEM}E܋@8 t@MPEM	1E    E܋@x u1E        E   x t   E    uCu
wE4uw_E"~	E6   :} ttu	EJ   #u4$9tE]   E   e[^_]S@$tP*    jQQPuUU؅t+EBCBuEB @8 tRRWuPPWhu   W1e[^_]Uh    hy   h   j h    h        U5       s                   U                    D                                         ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz too many parameters missing parameters set sizes did not match %s
 Translate SET1 characters to SET2 in STRING. [OPTIONS] [SET1] [SET2] [STRING] tr set Set a variable to return value. VARNAME upcase Translate to upper case. downcase Translate to lower case. LICENSE=GPLv3+  extcmd tr                                                                                0                                                        	              
               )              @              K              W              c              o              z                                                         grub_mod_init grub_mod_fini grub_strlen grub_unregister_extcmd grub_errno grub_printf grub_strchr grub_malloc grub_error grub_free grub_register_extcmd grub_env_set grub_env_get  +     Z     a     l     s                                                *    f    p    u                                                                 $     0     <      .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                       	   @                        )               `                  %   	   @         8               1      2       l  8                @                                  F                                 V                                 [                                  d                                                  `              	                                                   m                                                                                                                                      boot/grub/i386-efi/memdisk.mod                                                                      0000600 0001750 0001750 00000003754 13417732100 0015023 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   U]UUE	Ru	   P1U} Eu
E    ]1]US]h    utE   ]E          C  C    		C1S]UEU	   	RPu1á    UVS1ۅt8mimguXKQӅ   P9   ;uۃsVh   h    jah1   C       P    h@   h    jfh1      5    V5   E    e[^]e[^]á       t!U5   $    memdisk not a memdisk Found memdisk image at %p
 disk/memdisk.c Copying memdisk image to dynamic memory
        +   E                 LICENSE=GPLv3+      memdisk                                                                                         /                                               *              A              N              Z              f              x                                           grub_mod_init grub_mod_fini grub_memmove grub_disk_dev_register grub_modbase grub_strcmp grub_malloc grub_real_dprintf grub_error grub_free grub_disk_dev_unregister        #   	  :     P     X     f     v     |                  	               %    *    6    C    H    M    R    Y    ^    c    l    s    x  	        
                                                          .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .modname                                                      4                       	   @       h    	            %      2         i                 8             d                     4   	   @         0   	            >                                 N                                 S                                                     
   	         	                                                  \                                      boot/grub/i386-efi/trig.mod                                                                         0000600 0001750 0001750 00000003330 13417732100 0014325 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      H      4     ( 
 	  @?????O??>r>>=?=<B<;!;:9+9q876675S4h3t2y1v0l/Z.A-!,*)(`' &$#=" +]~	|
d	F$  nK*slp:tr&٠f2ӿҦєЊχΌ̭͘Pȏ%~Jľ;Q;{O, ,O{;Q;þJ~%ƏPʭ˘͇̌ΊϔЦѿ2fנ&rt:pls*Kn  $Fd	
|	~]+ ="#$ &`'()*!,A-Z.l/v0y1t2h3S475667q8+99:!;;B<<?==>r>>?O??????  $Fd	
|	~]+ ="#$ &`'()*!,A-Z.l/v0y1t2h3S475667q8+99:!;;B<<?==>r>>?O?????? @?????O??>r>>=?=<B<;!;:9+9q876675S4h3t2y1v0l/Z.A-!,*)(`' &$#=" +]~	|
d	F$  nK*slp:tr&٠f2ӿҦєЊχΌ̭͘Pȏ%~Jľ;Q;{O, ,O{;Q;þJ~%ƏPʭ˘͇̌ΊϔЦѿ2fנ&rt:pls*KnLICENSE=GPLv3+ trig                                                                                                                             grub_trig_sintab grub_trig_costab  .symtab .strtab .shstrtab .text .rodata .data .module_license .bss .modname                                                      4                      !             4                     )             4                     /             4                    ?             C                     D              C                                  H                 	                #                                  M                                                                                                                                                                                                                                                                                                                          boot/grub/i386-efi/memrw.mod                                                                        0000600 0001750 0001750 00000005640 13417732100 0014515 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      p	      4     (   UWVSMu}AvE    E   e[^_]Rj j 7Mj j wMEuPj j wNUI!dtwtbuB.t!	Љ/+ftf!	ff<t!	Јe1[^_]UVS]}tPPh   jvPEj j 0RRdtwtbu   1S: t!Ph-   j	uVYXVCpRRPh0   1e[^]U   PPh    h6   hR   j h   hW   h    ha   hR   j h   h~      h    h   hR   j h   h      j h   h   h    h      j h   h   h    h     j h  h   h    h+          UuM5   X5   Z5   Y5   X5   X5          v       7  ^                             two arguments expected one argument expected %x 0x%x
 Read 8-bit value from ADDR. ADDR read_byte Read 16-bit value from ADDR. read_word Read 32-bit value from ADDR. read_dword Write 8-bit VALUE to ADDR. ADDR VALUE [MASK] write_byte Write 16-bit VALUE to ADDR. write_word Write 32-bit VALUE to ADDR. write_dword Save read value into variable VARNAME. VARNAME   LICENSE=GPLv3+  extcmd memrw                                                                               |          t  ^                                              	              
               +              B              ]              i              ~                                                                       grub_mod_init grub_mod_fini grub_snprintf grub_unregister_extcmd grub_register_command_prio grub_printf grub_efi_secure_boot grub_unregister_command grub_error grub_register_extcmd grub_env_set grub_strtoul      0     ?     P     n               
    D    O    ]    g    l                                                                                                                 *    /    4    9    >    C    M    R    W    \    a    f    n    {                                                               .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                       	   @                       )               0                  %   	   @                        1      2       8  f                @                                  F                                 V                                 [                                  d                                                  P              	                                                 	  m                                                                                                                  boot/grub/i386-efi/true.mod                                                                         0000600 0001750 0001750 00000002304 13417732100 0014337 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (  
 U1]UE    E   ]Uj h   j h    h    j h%   j h   h            U5   X5    false Do nothing, successfully. true Do nothing, unsuccessfully.    LICENSE=GPLv3+  true                                                                    H        f   "                                                             8              P               grub_mod_init grub_mod_fini grub_register_command_prio grub_unregister_command grub_error            '     .     3     8   	  B     I     N     S     X   	  `     n     s   
  z        
   .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .modname                                                      4                        	   @       4                 %      2          A                 4                                   :                                  J                                 O                                                     	   	         	                [                                  X                                                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/minicmd.mod                                                                      0000600 0001750 0001750 00000007100 13417732100 0014777 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (  
 UVSh        tXRs3h   st+;sth%       PPF0h'   6΃h*       [(롍e1[^]USP    t4S%   s+PRsh,    1]U}EvE:   E   tRj
j 0tPUWVSM]uEP   E   e[^_]Vj j 3Mơ    uFM   I~Qj j s19t!3CRRPhe   1e[^_]U} VESu	Ek   )0    tPP3Vt[(E   E   e[^]SSe1[^]UWVS  } VVh   j  E0t(Sh   PV   1D       Wt2t-QQWh   C;t+G^v벡    t!H,tRRjPы PPWh       tP,tQQj Pҋ ۃh*       4$1e[^_]Uj h   h   h   h   j h   j h   h      j h   h   h  h     j h  h  h  h%     j h+  j h    h@     j hF  j h   hV          U5   X5   Z5   Y5   X5   X5    Name	Ref Count	Dependencies
 %s	%d		 , %s 
 %s (%d%c)	%s
 one argument expected no address specified %x%x  no module specified no such module filename expected %c <%x> Show the contents of a file. FILE cat Show this message. help Show memory contents. ADDR [SIZE] dump Remove a module. MODULE rmmod Show loaded modules. lsmod Exit from GRUB. exit LICENSE=GPLv3+  minicmd                                                              j          ;  R                                                             '              9              D              O              j              y                                                                                                                                                                     )             6              grub_mod_init grub_mod_fini grub_exit grub_command_list grub_xputs grub_errno grub_register_command_prio grub_dl_unload grub_printf grub_unregister_command grub_file_read grub_term_outputs grub_strcmp grub_refresh grub_file_close grub_file_open grub_isspace grub_dl_head grub_error grub_dl_unref grub_printf_ grub_strtoul  	               &     +     B     H     W     \     h     n        
                             	  '    :    I    S    o                                         5    <    Q    m                                    F    L    Q    Y    s    x    }                                                                                                            #    (    -    5    C    H    O    T    [    `    g    l    s    x             .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .modname                                                      4                       	   @       H	                %      2         [                4                                  :                                 J             ,                    O              ,                                  4    	   	         	                C                               0  X                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  boot/grub/i386-efi/udf.mod                                                                          0000600 0001750 0001750 00000017560 13417732100 0014150 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UWVS҉Mu1  Ǌ <t<u<u0ZPUt΋U19s@fLF11?u6ZPt19tLG@G	fTF} u   PE  U1uK   EHMfMta $=  wE (
 $  J?ɀJ?Ȁ?ɀJBEBB?E1xwEވ?  wEJ?ȀBJ (=  v; $=  w?B*ȃBE?ɀJ?ȀBϋE؉E VEe[^_]USPEX@t3$5    1]UWVSpjj EPE}	ЈEE@f=uEP\f=
  EPdf
f% f=   ZfBffu]ZfEB]Z]Z]tfM 1f}f!U}о       }   fuf v1   Pw]SkiɀKiڀ3 ȍq|uiQ ߃u
<vǀQ E:D5w} u둅tE	  vE<hU;\M<P]i  KiۀQ k<f}v	yf}w}ĸ    E	ЈEEkEăuEpEPEue[^_];	  |Uh    j	1Ë	  Ri     UWVS,E}]EGf=tf=
u*         (         SSh   j	  G*   <  eUE]1ۃw  ?U   NWE    Eu   1  7QESUuj j 	   t1RP6   f;   KsVE܃} E    EwW9EsRvS     WS1ҋ}u	  	 t10  E)EUUeUE]1|PPh$   j	,  NVE    E   7RESUuj j 	   t1RP6    f;uKs   ?UxE܃} E    Ewz9EsuNfvSMM܃   uw1ҋu]	  	 t1ىF   #E)EUU:S11ҍe[^_]UWVS  h	     ;ǅ    (   tXR1Wjj j RP     fu9ut
Q  u{QjhJ   VtoRjhP   VtZPjhV   V4  P1Wjj j RP  tVVh4   wCǃ	      ǃ	      P1Pjj j WR  uf6  	     QQht   j	!     =       S1;  	H		    @  @Pjh\   VPjhb   VPjhh   VPjhn   Vhi   R  Ph   j j WV  k	     f   Ph   j j WV  .  	  ЃvPPh     ~D8tWWh   t	  Jq	  	  HfvVVh   Ct1;	  4	  19}$i   	  f;  f9yufA@;	  uQQh   BRR1h  j j RP  .f tPPh   	     ue[^_]UEVuS t1ɺ   @X%S        e[^]UWVS˃JR    uj	  RSR   M	MR1j j RP6 t    1Cf=
tf=tPPh   j	G3C1Ѝe[^_]UWVS(u5    F    	  H	   Pte	  uTPPjhN  h  EPSu u2EF    F    F@PD@@V8F4S1(1ۃ5    <$$    e[^_]UWVSfX*u}ftAfuPfxu            RuPuEDPPh	  j	1/j j 	  pDp@hi  uuWVQRP3@e[^_]USP]KHSDC@uuss5]UWVS]C@EZ  }WA  P1W1j j x(ED PÉEtEE"V      EX /};}   )B;E           Gȃ;UMw|Qwr$$   ;]t/C.C.;]t/C.C;]t/CE܉ٍPGt'SU VE%VXuZYh  j	1e[^_]UWVS\  ǅ    ǅ    ;FDz  1P1j&T&P  ftPPh-  j	/  ǅ    &   	     	P   -   t&Sjh=  Ѓ      <{#u
ǅ   1W1P,9u&1ɉu[Wv51p1҃ Ã@;F@@SPЃtW   e[^_]UWVS(]u}	     	QtJPU䋈	     	QSRUWRjh@  փ ue[^_]I1   e[^_]UVSE5    E    EEEE u1   	  H	   Ptԉ	  uJQQjhN  h  EPSu u(ERPh  uE9tPS4$X5        e[^]Uh    h    E    Uh        ; Z x     0N    8  M  \  invalid part ref invalid file entry invalid aed tag not an UDF filesystem NSR03 NSR02 BEA01 BOOT2 CD001 CDW02 TEA01 too many PDs too many partition maps partmap type not supported invalid tag ident can't find PD invalid fileset descriptor invalid fe/efe descriptor invalid extent type invalid symlink invalid fid tag .. . udf           B      '                        LICENSE=GPLv3+  fshelp udf                                                                                       	      "                                          
                             )              ?              L              [              g              r              ~                                                                                                                                            grub_mod_init grub_mod_fini grub_strlen grub_fshelp_find_file grub_memmove grub_disk_read grub_dl_ref grub_errno grub_memset grub_fshelp_read_file grub_fs_list grub_print_error grub_malloc grub_error grub_list_remove grub_free grub_dl_unref grub_list_push grub_memcmp    5     m                              )            	    <    C            7    r        .    5            C    r                :    @    O    U    d    j             	    -	    4	    S	    c	    	    	    	    	    	    	    	    
    7
    t
    
    
    
    D    t                    K    W    o    v                            C    U    Z    b    j    o                        q            4    ~                        D    K            r    {        -    Y    e                        $    5    P    \    d    k    p    u                            $     (     ,     0     4                                    .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                       	   @                       )               8                  %   	   @       L  (               1      2       $  F                D             l  4                  @   	   @       t  0               J                                 Z                                 _                                  h                                                                	              |                                   q                                                                                                                                                                  boot/grub/i386-efi/minix.mod                                                                        0000600 0001750 0001750 00000006724 13417732100 0014516 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UEp@1U҉W1VS ]SjWVH
ASRp<fEe[^_]UWVSXHfP4JtH
1AHQj S1fQSQp<e1[^_]UWVSL@}MċM]EU1ڃ w;Ev})1  ȉڋ^D}E    EU	E    	1vD1҉E@EԉEÍEU;]n  FDE    fN
	UwfD^"q	1 t1EC;Es	V0*M+E9s&1uUV2ȉeMЉWRRh    j1=     EE    t   ;]u%ND1ҋEE    	҉Uu
ME    ;]E    E    uEU)EU܉EUF<MЋUĉH F<P$UPEuuuuN
A t1RPv<F< =     @     MFDC	+EEe[^_]USP]KHSDC@uuss]UVSjHtsQPjj j j jV =     u;Cf=u	C@   f=u#C@   f{
ws<C8    CD   SXZh   j	1e[^]UWVSÃLUUE </uE}q  C@uVVh5   j,tEE </u1;srSuhE   j    )  E1P1jR1Vx E1P1s@FR1Py
       UC@Q)RtD EPWUUj| _C4UfECf% f= C8{@C8~PPhY   jTGPt?P1W1j j x'> >/ufE U^u	t    x1e[^_]UWVS\E       =        U=        C@t1KQQh5   j   }1W1s@FR1PxOUC@fD uEt;s   C4Rjj fEEPE1P1jR1V y    ^PCfE	ЃECEPuEPWUuUC@nS    e[^_]UWVS}uG eá    te   =     u3t>/tPVhv   j    /=     tSى_@CG8    G41e[^_]Uh    h    E    Uh    file bigger than maximum size not a minix filesystem not a directory file `%s' not found too deep nesting of symlinks invalid file name `%s' minix              a                    LICENSE=GPLv3+  minix                                                                                "                                                         *              9              D              P              ]              i              t                                           grub_mod_init grub_mod_fini grub_strncmp grub_disk_read grub_errno grub_memset grub_fs_list grub_malloc grub_error grub_list_remove grub_free grub_list_push        B   
     
              ~  
            
      W    ^    e                        &    K  	                  C    Z    r    y            M    R    }                                                                               .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .modname                                                      4   )                    	   @        
  p  	            %      2       ]                   8               (                  4   	   @       p  (   	            >                                 N             (                    S              (                                  0  0  
   	         	              `	                                    \                                                              boot/grub/i386-efi/ufs1.mod                                                                         0000600 0001750 0001750 00000012664 13417732100 0014250 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UEp@1UWVSЃӋ~1   ׉U   !~ЅɉUud    PE   Qh   1SыUQNdV1RP`      e[^_]UWVS(h     (   
t*URWh`  j j SQV U=     t    tbuo\\  T uHG0tAHu:Ǉ           9s	A  鉷`  Ǉ      'cPPh    j	W1e[^_]UVuS5    E u    @ 5    $    e[^]UEVuS5    t,   u	    tR   Ph       5    $    e[^]UVuS5    E     t  P5    $    e[^]UWVS   EUUdl  EEU1EU;p  rw9v+MME1҉UU  EEEF0U1҉ŰUEȋEEUEŰŰE t1҉EȋEŰU t1҉EЉUEEȉUŨEЃUhlE9E  F0} Ew }wE1҉U  E}  Fd  UԉEEЍ_   ى]1 w9sPEPjuu     )ډEӉU9   r	9E   PMEUPEj t1MR1P   t1ROP`  ]MS]!!؉EU}EjRPEM1 t1RP`  E1҉U E]  M])ӉȉMkM] t1҉	  S]EUPEj t1MR1P   t1ROP`  UEMMQj }t1҉E!xM!1҉|x|S]Q t1RP`  EUMQj!ǋEp!ЉtptR1PEQQh    j	E    E    =     t,  l9Euh9EtEF0E    P#U҉Uu
EE      UE t19Uu9Eu]K#]ؙ)]U1ۋUE	ti`  }x d`  x$REuuRUSNd t1RP`  `   =     @     tPj F0)Pu)]F0EEU EU wE9EEe[^_]USP]KHSDC@uuss]UWVSÃHRU$uԉǅ  E      EԊ </uEMԄMuW1  d  f% f= @tVVhO   j?tEԋEԊ </uu+uE    1ҋE;p  r"w;l  rSuh_   jz  MQ1jR1P\  E9EA  11WPER1҃P#  QVWu  9ut
<7      1ɋUẺd  f% f= l  EЋ  @  ~RRhs   j   EЃ@Ptv   up   wl  <wPPuVV1u1҉j j EЃ >/uE   U1ɉ5u	V=     EEWW    e[^_]UWVS]}C Vơ    tl1ɺ   =     u3t?/tPWh   j    47=     tVىs@l  p  C41S8e[^_]UWVS   Eu á      1ɺ         t>/tSVh   jz  =     [  d  f% f= @*  QQhO   j  > Phhf% f= @X	ЋUXPuX\PVU   VTD1ҋD;p     PQ1jR1P   fT t}VGPtaRjj XPD1V1WR1҃Pd VǅD    Rw;l  XS    e[^_]Uh    h    E    Uh    not an ufs1 filesystem %08x%08x ufs does not support quadruple indirect blocks not a directory file `%s' not found too deep nesting of symlinks invalid file name `%s' ufs1               
  -
        ^                   LICENSE=GPLv3+  ufs1                                                                                 "                                                         )              6              B              Q              ]              l              x                                                                                                                               grub_mod_init grub_mod_fini grub_strlen grub_strncmp grub_strcpy grub_xasprintf grub_strdup grub_disk_read grub_dl_ref grub_errno grub_memset grub_fs_list grub_malloc grub_error grub_list_remove grub_free grub_dl_unref grub_list_push                                          c    j    v                                    &    +    A    F    N    S    k    p                                ~        A    H    _    5    D    d      	          %    F              
  ]	    d	    v	    	    	    	    
    
    I
    a
    t
    {
    
    
    
    
    
            /    Q    X        '    A    o                                                                        $      .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .modname                                                      4                       	   @           	            %      2                          8               <                  4   	   @       8  @   	            >                                 N                                 S                                                    
   	         	                                                x  \                                                                                              boot/grub/i386-efi/minix2.mod                                                                       0000600 0001750 0001750 00000007044 13417732100 0014574 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      D      4     (   UEp@1UW1VS ]S1jW4    VH
SARp\Ee[^_]UWVSXHfPTJtH
1AHQj@S1fQSQp\e1[^_]UWVSLEUȋUMċwEEӉU1ڃ w9v+uu1}   E]UME    1؋_d	1wd1	E@ẺMMEEUE9E  _dE    fO
	}EwED,   	1 t1ËEH9sWH#ډ)9s1֋WL`Ui)ЉEЉEE    9Mw3r9Es,E1U1֋WPMRRh    j1=     EE    t   E9Eu%Od1ҋEE    	҉Uu
ME    E119EuEU)EU܉É֋G\MȋUԉH MċG\H$PEuuVSO
A t1RPw\G\ =     @     WGdE	)E>Ee[^_]USP]KHSDC@uuss]UVSjhtsQPjj j j jV =     u;Cf=h$u	C`   f=x$u#C`   f{
ws\CX    Cd   SXZh   j	1e[^]UWVSÃLUUE </uE}q  C@uVVh6   j,tEE </u1;srSuhF   j    )  E1P1jR1V[x E1P1s`FR1P;y
       UC`Q)RtD EPWUUj| _CTUfECf% f= CX{@CX~PPhZ   jTGPt?P1W1j j x'> >/ufE Uu	t    x1e[^_]UWVS\E       =        U=        C@t1KQQh6   j   }1W1s`FR1PxOUC`fD uEt;s   CTRjj fEEPE1P1jR1Vl y    ^CfE	ЃEC$EPuEPWUuUC`nS    e[^_]UWVS}uG eá    te   o=     u3t>/tPVhw   j    /=     tSى_@CG8    G41e[^_]Uh    h    E    Uh    file bigger than maximum size not a minix2 filesystem not a directory file `%s' not found too deep nesting of symlinks invalid file name `%s' minix2             g                      LICENSE=GPLv3+  minix2                                                                             ?  "        a                                                 *              9              D              P              ]              i              t                                           grub_mod_init grub_mod_fini grub_strncmp grub_disk_read grub_errno grub_memset grub_fs_list grub_malloc grub_error grub_list_remove grub_free grub_list_push        >   
     
      "    -      
      9    T  
  ]                            %    *    s      	              O                    !    B                                        F    K    P    [    h    m                              .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .modname                                                      4   v                    	   @       P
  p  	            %      2                          8             @  (                  4   	   @         (   	            >             h                    N             x                    S              x                                    0  
   	         	              	                                    \                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/relocator.mod                                                                    0000600 0001750 0001750 00000043100 13417732100 0015351 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      D      4     (               U$EPEPEPj EPE    E    E    E1uɍD UWVS8MQ}WuVj ]SME    E    E    u   MԃEQWVPSUԃ EE    ЉEЋE܉E;Us]JZrz v1ɻ   9r1w9v+:u&k]EE    pE\   KU랋E1e[^_]UE=     E    E   u%    U@<RURjjP Ã=     u#U1҉    H<EPERPQ$f    Ǹ    ƹ    σ    Ǹ    ƹ    fff	   fj  l  X   P   P  B   @   P   (     v '              ؎ %" "    ؎Љf   x       f"     uUȎЍ&~  $ t=$5d 1H1 ƃǊ&Έ4&5(4tø  ظ        и  ff    ff    f    f                                         	   H   @      2   0   @   f      v '              ؎ %" "     ĸ    Ÿ    Ƹ    Ǹ                     t& '                            	    %" 0"    "ع  2   0    "         r   p          '          v '           H        HH        HH        H        H        H        %            &                        U 	 -    WVS        uu0jjSPh   EPV    Eu    E    E    E     E$    E    E    E(    E,    Sh    PXuUj RPV uUe[^_]U   -    VS]j j jP 	 -    Ph  EPS    Eu       f    fEf      f    fEf    Ef    fEf    Ef    fEf    Ef    E(    E    E     E$    E,f            Rh    PXuUj RPS uUe[^]U    -    WV    S    ]j j ELjVPuHEPS    EUu    E   U     E$   U(    E,   U0    E4   U8    E   U    E<   U@    ED       Vh    PXuUj RPS uUe[^_]ø    -            U-        ]UEU P@@]UE    EE        E        -    E]UE    EE        E        -    E]UWVS    Xt7}9{vs;1s;ps1s{;}w{;2v;xs2[^_]UWVS,EU}MEEUUEȉU#  A1҉׉ރ ߉u]E܃E}U!ËE!Љǋ w9s}܉D!1ƋA1҉UԋUEЋEEỦEEЉUU;U   r	;E   ]܋A!Ã E   9wAEu+EU+EUԉÃ w;]v]1#]ދ]!É߃y t}uA @w9vApy tyuA @w
9sApA   ,1[^_]USR1|u-@=   uPPh   sCtSP]UWVSÃ t,    P  S    C    DЉ+Ct9t~v[   E
HZJX)ˉZ0IJZB(<-r0u܉pu1;ut;Mu;Mu6M)qru	9ƉJuOމ؋9t=9)п    ZBt9AwyIJHJ
JB(<-B      H9,  @SЉSуʉP @mP   s  s  9sQ)QPWKtMC-   )   ؉U  RPh   D9PM   SD:C{ tU{{P)      Ph   CUPS+u   NLCpCP sKB    JH]u69tu2u;MtE@R뫍e[^_]UWVSӁ   uuEQRh    h<   h  hF   E +uDEE!E!MhEEM9         ȅt>8p}9sPRh  hV   x9s{;Utԃ@뾃} }  UtE t    t tI5   Åt711T1Ƀ9@=   t׃6kV$  E4$ǉEEt
} tu%Sht   h<   h  hF   N  1ۀ} t2EU t&
   HB   0JԋHHJ k    Ut*   +H0B   JԋHLJ@k    Et#    J@   0HԋJHkEP؉E   tu11ۉ߉t89tkuu҃	PEFډVT8C   utkUUE	   pB   J 뇋    u        Mą   zm   }kE}y}z(<-tWRh\  hF   h     ;Uu-    +yHpxPX@   Z\!     PPXH@   ZӉX]0:;t]ӉkqI2}]kE؉u1ۉu;Et>ukU   C
tkUU   uFu1Ph  j uE}ǉ};EtPكuD1u@T=   uE;Et-PًuҍrkU1ƹ   ΃ u)Eǅ`    H} u`ǅp      EuEu<}   E}   ]9]  1ۅ  kMM9  E    >  ڃUc  Ut} w  ;EEs]]]];]z;YqE   ǅt    ǅl    ǅx    )   HSEǅ|    E    E    EEEE    E    E    \E9EG  }   }   uVN9  ;Us};\v\9n            QQ)PW$  } t]u]`11]+]E    E1E    E    ]#+];]]v]]]9]   M}} M0M 1ۅ$    EMGOEMFNEM} E   UUE    1҅U} AtUD#h+E#hEq];YEă    u^u_u  ktEPxpdBEATǉ)ωщXr)Lz)9މHXz   Ή;}u߉xsC(<-X;]RtًLHPxTp1x9   SSuVRQPh   }    #0} | u} x tҸ   t]{    m  ;}6/9uE1!։Ud~9xuNHB;Uu#  ktuXƋFV^EAdBЉ19dXwA(<-J)H)׃vJt-}9u"
tȋ}9u9uCE1;Uty~9xuNHBklu%    \u   S LR)Rj DP    D3pE w{$0   uE@E;EvEEEtK} tM@M;E6M1|)|!ExlxEMEEEu    [up$}]ǅx    ǅ|    E    E    GǋEsE    E    EEEE    E    E    tE9E  } u9}    u.0ۃ} u&| u} u} t	   u}   EP@9  uuxMq;UsUtE9vM9U  EV)ЃFwMkEDMF+AFugCwdjUUuQf j VEPU4MP@    H        tA    F       Eׁ E      Ee 9th  ppEE19Eth  ppÃ} u9uuUE9EtM   u$1j VEP    $    E       Ety)xpRWh   Pp   MHD9  )Pj D9P   M   A   tHE   1ttE}-   )ǉCQPj CPM   +KȃڈT  )Rj DP   C   tX1   E^FukEEPV@FuxEȿ   	E wi$`   uE@E;EvEEEE<E7M2|*|"EMEME    E    EE0tT1;xtuCFkEph   h<   h  hF   uE}uw}xuXZuVh  h<   h  hF       1e[^_]UE]@UE]@Ujt3    @EPRh3  h<   jshF   E UWVS,E}]E    9v	WWhH  >VVWWMUSM9v, t,P9wp9sSSh`  j&  9sjơ      Q1ҋEQRWU1R1PER}Phq  h<   h  hF   0 w!Sjj VujK uaMj jVuj+ u}Uj j Vuj u]Sjj Vuj tF9Cv4C/h  h<   h  hF   4$XZh  ju1uЋFRPh  h<   h  hF   E 9CsCUV9SsSK9Ns9CsCEF9CsCsh  h<   h  hF    9~s    C9~v    Csh  h<   h  hF   E~F36Vh  h<   h  hF   F FE01e[^_]U1   WVS}̃LUE}u]EԋE9׉ủE؋E UE    Ev׃3h  h<   hk  hF   jEu
    ]  1҃} jRPuu ttE1ҋ@RPRPh  h<   hw  hF   3h  h<   hx  hF   EuPPEpEuEPPE  PPWVMȍUuuWVh  h<   h  hF   $MjUĉjuuu5 u>Sjj uuj tE@9CvCQQh  j,Ru$EPh&	  }߃} }uKPPh>  j   9v8 t;PN9wx9s} t@MD#UVuM9s؃sh  h<   h  hF   E p9ps	    Sp9pv    Csh  h<   h  hF   EupEE0Ph  h<   h  hF   EMPPE 1e[^_]UWVS}tHt31;ssFC3s$ɉ}e[^_]e[^_]UWVSX  u]vhc  h<   h  hF   FjjRP5    1҉ uPPh  j   ۉtFh  h<   h  hF   h  j Pǅ    t;Psssh  h<   h  hF   C kPǉ<$t
ۍu"S_      P}9ut)Hrkƹ   ډ ǅ   Vh  j P1;tk@T܍P}9u񋵴؍<3;t8Pҋqk    t؋:1S;thQsssh  h<   h:  hF   C 9CssPsW=    C9CvsPsW=    FPPuWE8Z1e[^_]UWVSM    tYxmtGr9sPQuh  z9sx(<-tWPQuh   9؋8t뼋R룍e[^_]                           J  s  J  s                                          trying to allocate in 0x%lx-0x%lx aligned 0x%lx size 0x%lx
 relocator lib/relocator.c %d: out of range pointer: %p
 events or counter allocation failed %d
 %s:%d free magic broken at %p (0x%x)
 Failed to adjust memory region: %p, %p, %p, %p, %p allocation failed with out-of-memory
 allocated: 0x%lx+0x%lx
 relocators_size=%lu
 address is out of range overlap detected min_addr = 0x%llx, max_addr = 0x%llx, target = 0x%llx
 not allocated
 out of memory allocated 0x%llx/0x%llx
 relocators_size=%ld
 cur = %p, next = %p
 chunks = %p
 Adjusted limits from %lx-%lx to %lx-%lx
 couldn't find suitable memory target Preparing relocs (size=%ld)
 Relocs allocated at %p
 chunk %p->%p, 0x%lx
 sorted chunk %p->%p, 0x%lx
 %s:%d: out of range pointer: %p
         LICENSE=GPLv3+  mmap relocator                                                                                                                   	              
               N        +           @           [           w                                                   `                                0       -          B          W         s                                                     -  H               #         D          Y    5     t                         	                    &$  0      #  `       0                                    P       6          J          h          }  X                    &          0                              i  5     ,          A          d             p             |               !                   0                               	                    3  .        G    Q     Z             g             r                                                                       ^                            +          G      @     n  -  #       @          u  -                 ,                    V'  w               4         P          k  G       grub_relocator_align grub_relocator64_cr3 grub_relocator64_rbx grub_relocator_forward_src grub_relocator_backward_src grub_relocator16_ebx grub_efi_system_table grub_relocator32_eax grub_relocator_forward_start grub_relocator32_start grub_relocator64_rax grub_relocator16_start grub_relocator32_boot grub_relocator32_ecx grub_relocator64_rip get_virtual_current_address grub_relocator16_ds grub_memmove grub_relocator_forward_chunk_size grub_relocator16_boot grub_relocator16_edx grub_relocator_firmware_alloc_region grub_relocator_backward_dest grub_relocator_alloc_chunk_align grub_relocator32_edx grub_cpu_relocator_forward grub_relocator16_es grub_fatal grub_relocator16_sp grub_relocator32_ebx grub_relocator_prepare_relocs grub_relocator_unload grub_relocator32_end grub_errno grub_memset grub_cpu_relocator_jumper grub_relocator16_gs grub_relocator_backward_start grub_relocator32_esp grub_relocator16_idt grub_relocator_backward_end grub_relocator16_ebp grub_relocator64_start grub_relocator16_keep_a20_enabled grub_relocator16_ss grub_cpu_relocator_backward grub_relocator64_rdx grub_relocator_backward_chunk_size grub_zalloc grub_malloc grub_efi_get_memory_map grub_relocator64_boot grub_relocator_jumper_size grub_relocator64_end grub_real_dprintf grub_relocator_backward_size grub_relocator32_ebp grub_relocator16_esi grub_relocator16_cs grub_relocator_new grub_mm_base grub_error grub_relocator16_fs grub_efi_is_finished grub_relocator32_eip grub_free grub_relocator64_rcx grub_efi_mmap_iterate grub_relocator16_end grub_relocator32_esi grub_relocator_forward_dest grub_relocator_forward_size grub_relocator_firmware_get_max_events grub_cpu_relocator_init grub_relocator_firmware_fill_events grub_relocator_firmware_free_region grub_relocator64_rsp grub_relocator16_ip grub_relocator64_rsi grub_mm_check_real grub_relocator32_edi get_physical_target_address grub_relocator_forward_end grub_relocator_alloc_chunk_addr  .   ;  t   ;     :     ;  8  H  O    w  H      2    9  )  A  )  J    e           &        !    I    /    A    N    Y                Z    '    M      "    '  M  7     S  0  ]  C  h  0  p  V  z      #    G    -    5    %    2            B    4        M                Z    '  #  3  *  >  1  >  8  3  V     t    }              K    K    7    7            U    U    W    W    
        3        Z    '  .  [  3    8  P  =  1  C  .  J  @  p    z  .        8    1    .        O                [          
  T  
  E  
  E    E    E  ^  T    +    +  %  J                ?    E        $  ^    z  Q        :    :    :                ?  `  E        S      _  E  h  E            +           l  E  t  J  }  J  U    Z  $    +  F      E    J    J    :  I  :  d    y                  :    :  C  J  M  J  \    a    l    q  J    +    +                   (  +  Z  +  _    i    z        d  J  i    n    x    }  ?    J    J                ?    R    9    =  *    /    6    ;  ?  i          F    :    *                ?                ?    J                    ?  C     H     R     W   ?  d   @  q   P                    ?                    ?  +!    0!    :!    ?!  ?  I!  :  X!  *  !    !    !    !  ?  !    !    !    !  ?  "    "    &"    +"  ?  "    "    "  L  "    "  F  #    #    %#    *#  ?  >#  @  N#  P  \#    a#    k#    p#  ?  #    #    #    #  ?  #  J  $  J  $  J  <$    A$    K$    P$  ?  l$  	  $    $  F  $    $    $    $  ?  $  +  %    	%    %    %  ?  H%  :  R%  :  r%  J  ~%  J  %  *  %  +  &  J  &    &    &    &  ?  &  6  &  @  '  "  '  P  .'  ,  E'  J  d'  E  '    '  $  '    '  $                                                 $     (     ,     0     4     8     <     @     D     H     L     P     T     X     \     `     d     h     l     p     t     x     |                          .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         @   '                    	   @       9  p	              )             (                    %   	   @       B                 1      2       (                  @             +                    F             +                    V             +                    [              +                    d              +  
                                +       	         	              1                                 C  m                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  boot/grub/i386-efi/minix2_be.mod                                                                    0000600 0001750 0001750 00000007300 13417732100 0015235 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UEp@1UWVSpfXfH
fPTJfAt1HQj@S1fQWVp\e1[^_]UW1VS fX
uVj4    WVK1SRp\Ee[^_]UWVSL]MċHEuU1҆E     Mw;Ev)ىM1} @  ؉ً_dEEU1EUE	UE    	1wd1҉E@ẺMMEEUE9E  _dE    fO
	}EwED,   1҃	 t1ËEH9sWH2ډ)9s.1ҋwLffUЉ~MЉrn)ЉEЉEE    9Mw8r9Es1E1ҋwPffU1UMRRh    j1=     EE    t   E9Eu%Od1ҋEE    	҉Uu
ME    E119EuEU)EU܉É֋G\MȋUԉH MċG\H$fO
PEuu؆VSA t1RPw\G\ =     @     UGdE	)EEe[^_]USP]KHSDC@uussG]UVSjhtxQPjj j j jV =     u@Cf=$hu	C`   f=$xu(C`   fS
fws\CX    Cd   SXZh   j	1e[^]UWVSÃLUUE </uE}  C@uVVh6   j5tEE </u1C9rSuhF   j    ;  E1P1jR1Vx E1P1s`FR1Py
       UC`Q)RtD EPWUUa| VfUƋCTfECf% f= sCXf@CXf~PPhZ   jTFPt?P1V1j j *x'7 ?/ufE U`u	U    Y1e[^_]UWVSu}F á    tl   
=     u3t?/tPWhw   j    6=     tSى^@CF8    F41e[^_]UWVS\E       {=       Uf=        C@t1KQQh6   j   }1W1s`FR1PxXfUC`fD uNtC9   CTRjj fEEPE1P1jR1Vk y    lCfE	ЃEC$EPuEPWUuUaC`WS    e[^_]Uh    h    E    Uh    file bigger than maximum size not a minix2 filesystem not a directory file `%s' not found too deep nesting of symlinks invalid file name `%s' minix2_be            s    U                  LICENSE=GPLv3+  minix2_be                                                                                "                                                         *              9              D              P              ]              i              t                                           grub_mod_init grub_mod_fini grub_strncmp grub_disk_read grub_errno grub_memset grub_fs_list grub_malloc grub_error grub_list_remove grub_free grub_list_push        m   
     
  i    p    {      
  %          
                   N    U                      	  ^    e    v                     '    ,    @    L                    :    [                                                              .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .modname                                                      4                       	   @       
  p  	            %      2       @                   8               (                  4   	   @       \  (   	            >              	                    N             	                    S              	  
                                	  0  
   	         	              L
                                    \                                                                                                                                                                                                                                                                                                                                                  boot/grub/i386-efi/ufs1_be.mod                                                                      0000600 0001750 0001750 00000013564 13417732100 0014716 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UEp@1UWVS(h     (   
t*URWh`  j j SQV U=     t    tiuvc\   TuOG0tHHuA   Ǉ        9s	A  鉷`  Ǉ      '\PPh    j	W1e[^_]UVuS5    E u    P 5    $    e[^]UWVSӃ   1҆OщUWE䋇   #MEȅEud    _OdPEV   h   ]Ɖ1R1PRS`      e[^_]UEVS]05    t;   u	    t(   PQRh       5    4$    e[^]UVuS5    E     =t  P5    $    e[^]UWVS   l  \p  ExUEEU1EU9rw9v+MME1҉UUE      EEEF0UUEEEUEUċUċE t1҉EEUċU t1҉EЉUEEUUăEЃU`dE9Ew  ~0ff} w"}wE  E  FdUԋ  E   EEEȆEȋEЃى]1e Mw$;Es  ]RSjuuC  )ȉEEډӉU9   r	9E     MUEEEEPEPEj t1҉ӋE1SQM t1RP`  ]MS]jK#]]]E!Ӊ]URP|  M])ӉȉMkM] t1҉	|    UEEEEPEPEjE t1҉ӋE1SQM t1RP`  E]UKMMQMjEEE|]EE t1҉|!ȋMpE!1҉tptSQM t1RP`  E|MUQMj!Ӊh]!ˋhllSQM1 t1RP`  E1҉Ũ EPPh    j	E    E    =     tI  d9Eu`9Et}!F0E    P#U҉Uu
EE      UE t19Uu9Eu_#]ؙ)]U1ۋŰEȉ	ts`  xx \`  x$NdWEuuRUS t1RP`  `   =     @     t F0Rj )PuF0)EEU EU }wE9E{Ee[^_]USP]KHSDC@uussA]UWVSÃHRU$  uԉME      }  tEԋEԊ </uu+uE    l  1ҋp  Eff9   MQ1jR1P  f}f9  u11PER1҃P]  QVuu  9   U1ɋ  Ẻed  f% f=    EԊ </uEMԄMuu1Y  d  f% f= @VVhO   jw9Suh_   j  EЀ<0    Lp    f@  f~RRhs   j   FP      u1l  p   w<wPPuWW1V1j j 7 ?/uE   U1ɉu	|W=     EEu    e[^_]UWVSu}F Wá    tz1ɺ   =     u3t?/tPWh   j    B=     tSى^@l  p  F81V4e[^_]UWVS   Eu á      1ɺ         t>/tSVh   j  (=       d  f% f= @c  QQhO   jK  > Ph؆_hf% f= @X	ЋUXPXuPV\U   VTDl  1ҋp  Dff9   P1WjR1P^   fT    fVfGPt]Rjj XPD1V1WR1҃P VǅD    -w9QS    e[^_]Uh    h    E    Uh    not an ufs1 filesystem %08x%08x ufs does not support quadruple indirect blocks not a directory file `%s' not found too deep nesting of symlinks invalid file name `%s' ufs1_be               K            $                 LICENSE=GPLv3+  ufs1_be                                                                            k  "                                                         )              6              B              Q              ]              l              x                                                                                                                               grub_mod_init grub_mod_fini grub_strlen grub_strncmp grub_strcpy grub_xasprintf grub_strdup grub_disk_read grub_dl_ref grub_errno grub_memset grub_fs_list grub_malloc grub_error grub_list_remove grub_free grub_dl_unref grub_list_push       &     8     Z     f     n                            I    N    V    [            6    ;    z                                                    H                6    =    T    :    I    p      	      	    	  
  6
    ]
    t
    {
    
    
    
        d    m                                        g                            ]            0    W    \    r    w    |                                                    $      .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .modname                                                      4                       	   @       X    	            %      2                          8               <                  4   	   @         @   	            >                                 N                                 S                                                    
   	         	              l                                  8  \                                                                                                                                                              boot/grub/i386-efi/minix3.mod                                                                       0000600 0001750 0001750 00000007010 13417732100 0014566 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      (      4     (   UEp@1UW1VS ]S1jW4    VPpSRphEe[^_]UW1VSXHp P`JL1HpVj@W1VSQphe1[^_]UWVSLEŰUMȋw(EEӉU1ڃ w9v+uu1}   E]UME    1؋_p	1wp1	E@EЉMMEEUE9E  _pE    O	}EwEL8   	1 t1ËEH9sWT#ډ)9s!1֋WXodi)ЉEԉEE    9Mw3r9Es,E1U1֋W\MRRh    j1Ƀ=     t   E9Eu%_p1ҋEE    	҉Uu
]E    E119EuEU)EU܉É֋GhỦP UȋGhP$PuuVSgpRPwhGh =     @     kGpE	)E[Ee[^_]USP]KHSDC@uuss]UVSjt   QPj j j j jV =     uLf{ZMuDf{Cl<   w6CshCd    fu	Cp   ftfuf	CpSXZh   j	1e[^]UWVSÃlUUE </uE}o  C!@uVVh6   j,tEE </u1;s(rSuhF   j    '  E1P1jR1Vcx E1P1slFR1PCy
       UClQ)RtD EPWUUj| _C`UEC f% f= Cd{(@Cd~PPhZ   jTGPt?P1W1j j x'> >/uE   U!u	v    z1e[^_]UWVS|E       =        U=        C!@t1IQQh6   j   }1W1slFR1PxLUClD uDt;s(   C`Rjj EEPE1P1jR1Vy y    ]C fE	ЃEC0EPuEPWUuUClpS    e[^_]UWVS}uG Vá    te   =     u3t>/tPVhw   j    /=     tSى_@C(G8    G41e[^_]Uh    h    E    Uh    file bigger than maximum size not a minix3 filesystem not a directory file `%s' not found too deep nesting of symlinks invalid file name `%s' minix3             O                      LICENSE=GPLv3+  minix3                                                                             #  "        E                                                 *              9              D              P              ]              i              t                                           grub_mod_init grub_mod_fini grub_strncmp grub_disk_read grub_errno grub_memset grub_fs_list grub_malloc grub_error grub_list_remove grub_free grub_list_push        ;   
     
                 
          -  
  6                                    ]      	              7    x                    '    ~                                    *    /    4    ?    L    Q                              .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .modname                                                      4   Z                    	   @       4
  p  	            %      2                          8             $  (                  4   	   @         (   	            >             L                    N             \                    S              \                                  d  0  
   	         	              	                                    \                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          boot/grub/i386-efi/romfs.mod                                                                        0000600 0001750 0001750 00000010324 13417732100 0014507 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   USEX@s$1]UWVSEp@HDVRJ VHHRJ$P@FV1uuǁ  		SWRPFpF =     @@     uEe[^_]UWVSE@@PtcEHP@S1ۆVǁ  		QSWRPE@p tVE@ 1e[^_]UWVSlEE    E    P@UEUE	  M]VȉσډEEȃ P  jE    u}uU		RPE@p    u1ۋ}9]w!CRR PuĉMtjEċMĉ؉E    PQ%  juEu		MRPE@p Mu(1< t?@uC su   5  u1   EȍsMEІEԆEĉ9ttQQh    j	[nj$bE1   Uu}Esuȉ{{S@CEtr"  @  E   E1{%  3RSR1jRP		RPE@p CwgP E؉Pj%  E    uEu		RPE@p U1|( t@u륃 s{Ct%t'1Ju'CC    C         uSPuUEE    Ee[^_]UVS]jj uVXE}u	ЈEsVue[^]UWVS,   uQQh      RSh   j j j j P u    	   	    =  wWWh      Vjh1   St	SSh:   m=   v   1ɍ49sBu8QQh    j	tRRhD   j	G  > tF}9t)9|ǅ    ǅ    E9   PWh   j  j 1    ǅ    		)ؙ;s> OFE9uB<;r/jt6)ދN		XP1e[^_]UWVS}u    {á    tPuS    URPPj jj j 7 tSX6    D S1e[^_]UVS0]E    Cta VEԉU؋Vu܉EPPjh   h9  EPEPuU =     uUЋBC8    S@C41V    e[^]US4EE    E̋EEЋE.tX SEԉU؋S]܉URRjh   h9  EEPEPu =     uPEPh  uS    ]Uh    h    Uh    invalid checksum not a disk too short filesystem -rom1fs- not romfs checksum incorrect romfs            W       $       c          LICENSE=GPLv3+ fshelp romfs                                                              =	          W	                                                              	               3              @              O              Z              f              s                                                                                     grub_mod_init grub_mod_fini grub_fshelp_find_file grub_realloc grub_disk_read grub_errno grub_memset grub_fs_list grub_malloc grub_error grub_list_remove grub_free grub_list_push grub_memcmp           y                               7    f    ~                    	                5    C    o    |                            z                                         L    Q    d  
  m                    	  
  	    	    /	    4	    D	    I	    N	    ^	    c	                                   .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   l	                    	   @       d    
            %      2       	  ]                 8              
  (                  4   	   @       4  0   
            >             (
                    N             7
                     S              7
                    \              >
                                  D
  `     
         	                                                d  e                                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/minix3_be.mod                                                                    0000600 0001750 0001750 00000007230 13417732100 0015240 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UEp@1UW1VSfXHp P`JɍL1HpVj@W1VSQphe1[^_]UW1VS ]S1jW4    VPpSRphEe[^_]UWVSLp(MȋEM]fU1E    fڃ uw;Ev)Ήu1}   ȉڋwpEEU1EUE	UE    	11҉E@EЉMMEEUE9E  GpE    O	}UwEL8   1҃	 t1ƋEH9sWT.)9s,1ҋ_XUԉډMԉ}l)1ۉEԉEƉUEEU9w4r9Es-E1ҋ_\U1U'MRRh    j1Ƀ=     t   E9Eu%_p1ҋEE    	҉Uu
]E    E119EuEU)EU܉É֋GhỦP UȋGhP$PuuVSgpRPwhGh =     @     kGpE	)E?Ee[^_]USP]KHSDC@uussk]UVSjt   QPj j j j jV =     uNf{MZuFSCl<   fw4CshCd    fu	Cp   ftfuCpSXZh   j	1e[^]UWVSÃlUUE </uE}  C @uVVh6   j5tEE </u1C(9rSuhF   j    ;  E1P1jR1V#x E1P1slFR1Py
       UClQ)RtD EPWUUa| VUC`EC f% f= s(Cdf@Cdf~PPhZ   jTFPt?P1V1j j <x'7 ?/uE   Uu	U    Y1e[^_]UWVSu}F vá    tl   2=     u3t?/tPWhw   j    6=     tSى^@C(F8    F41e[^_]UWVS|E       =       Uf=        C @t1IQQh6   j   }1W1slFR1PxUUClD uMtC(9   C`Rjj EEPE1P1jR1V y    mC fE	ЃEC0EPuEPWUuUClWS    e[^_]Uh    h    E    Uh    file bigger than maximum size not a minix3 filesystem not a directory file `%s' not found too deep nesting of symlinks invalid file name `%s' minix3_be              K                      LICENSE=GPLv3+  minix3_be                                                                                "                                                         *              9              D              P              ]              i              t                                           grub_mod_init grub_mod_fini grub_strncmp grub_disk_read grub_errno grub_memset grub_fs_list grub_malloc grub_error grub_list_remove grub_free grub_list_push        ^   
     
  O    V    a      
      O    n  
  w                &    -    X    _    d          	  6    =    N                                $    t                    0                                                              .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .modname                                                      4                       	   @       
  p  	            %      2                          8               (                  4   	   @       4  (   	            >                                 N                                 S                
                                  0  
   	         	              $
                                  \  \                                                                                                                                                                                                                                                                                                                                                                                          boot/grub/i386-efi/scsi.mod                                                                         0000600 0001750 0001750 00000011274 13417732100 0014327 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UVSE    uEEEttRuVh  Ѓu	[1   e[^]UVSÃ$@jj uEۍEPEE E EE U$jVjSPe[^]USPEX(@t	SЃ]]UWVSxuVE    |9rPwaEO9sG0<	vPP   0	vPj j G)P$(   E1ҹ    á    U  PWVQUMUtTMBu'WSuURVUt8v        uكSXZh    j  5    ՋM}		ЋUBZ(K3u{h   h   h  h!   ECjj EEPE E E$E Uĉ$j$VjSP ǉt=    uBEăCECQQPCPh=   h   h)  h!   C <t8Sh-   h   h$    tSXZhc   uč}ʉEE  UU ;Ur6w;Ev/Shw   h   hB  h!       u  E CE E E EPjj WE $    j VjSP EUt    cE%CU        E    EE E E E fE  RjVjSUP ǉfUt=    u1EC    CEC CC   Sh   h   hQ     ECE    E    E    EE E Vj RjSP ǉt=    u)EċUȆCSĔC ,Sh   h   h[  h!       CSM QAA   C PuuSs h   jE   @    E֋HC 9s	EAHQPssh   h   hs  h!   Epph   h   hu  h!    1e[^_]UWVSE}uUX(MC<uPPh  j      tNE؊CfE E EىfuډEމІEQS RURjJE*CE E EىfE  Eډf	fEߋQS RURjSP Ɖt5    1e[^_]ÆUVSÃu@uEC E舉UƆE E PEPjSMUR Ɖ3t5    e[^]UWVSEUMuX(}Ct	<tB   u=E(CE E fE  E݉U։f	fEAtPPWVVEܨCE E E݉UމEWs UVRjSP ƉVt5    1e[^_]UWVS}}ut<1ۍ    EXQu<    Wh+  tYRRvP$IPPvW<$EEu#C;]}$CaPuuh0  u   1e[^_]U    EP    ]á        Ut;Eu@P@]UE    ]Uh     usb  ata  ahci not a SCSI disk dev opened
 scsi disk/scsi.c inquiry failed
 inquiry: devtype=0x%02x removable=%d
 unknown SCSI device LUN is not ready - timeout
 READ CAPACITY10 failed
 READ CAPACITY16 failed
 invalid sector size %d last_block=%llu, blocksize=%u
 Disk total sectors = %llu
 cannot write to CD-ROM %s%d %s%d%c      	             /        LICENSE=GPLv3+  scsi                                                                                         	                                                	               )              6              E              \              g              s                                                                                                     '                             grub_mod_init grub_mod_fini grub_strlen grub_strncmp grub_xasprintf grub_disk_dev_register grub_errno grub_memset grub_scsi_names grub_malloc grub_get_time_ms grub_real_dprintf grub_error grub_free grub_disk_dev_unregister grub_scsi_dev_unregister grub_scsi_dev_register grub_strtoul         -                  
  +    :    D    K    b                                        4    [                                                            !    &    [                0    5    :                            "    -    j    o    y    ~                                "        -    ?    E    J    e                                	    
	    	    	                                    .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .modname                                                      4   #	                    	   @           
            %             X	                    -      2       g	  7                @             
                     <   	   @          0   
            F             
                    V             
                    [              
                                  
       
         	              x                                 P  d                                                                                                                                                                                                                                                                                                                                                      boot/grub/i386-efi/minix_be.mod                                                                     0000600 0001750 0001750 00000007150 13417732100 0015156 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UEp@1U҉W1VS fX
uVjWVKSRp<fEe[^_]UWVSpfXfH
fP4JfAt1HQj S1fQWVp<e1[^_]UWVSLxMċEM]fU1E    fڃ }w;Ev)ω}1}   ȉڋ~DEEU1҉EUU	EE    	11҉E@EԉMMEÉU;]  FDE    fN
	UwfD^"   1҃	 t1ǉE؍C9sV0Ȇ2}؉)9s-1f~2ufȉU$MЉRRh    j1=     EE    t   ;]u%ND1ҋEE    	҉Uu
ME    ;]E    E    uEU)EUE؉U܋F<}ЋỦx }ċF<x$fN
PEuuuuA t1RPv<F< =     @     KFDC	+EEsEe[^_]USP]KHSDC@uuss]UVSjHtxQPjj j j jV =     u@Cf=u	C@   f=u(C@   fS
fws<C8    CD   SXZh   j	1e[^]UWVSÃLUUE </uE}  C@uVVh5   j5tEE </u1C9rSuhE   j    ;  E1P1jR1Vjx E1P1s@FR1PJy
       UC@Q)RtD EPWUUa| VfUƋC4fECf% f= sC8f@C8f~PPhY   jTFPt?P1V1j j x'7 ?/ufE Uu	U    Y1e[^_]UWVSu}F á    tl   =     u3t?/tPWhv   j    6=     tSى^@CF8    F41e[^_]UWVS\E       =       Uf=        C@t1KQQh5   j   }1W1s@FR1PxXfUC@fD uNtC9   C4Rjj fEEPE1P1jR1V y    lDCfE	ЃECEPuEPWUuUC@WS    e[^_]Uh    h    E    Uh    file bigger than maximum size not a minix filesystem not a directory file `%s' not found too deep nesting of symlinks invalid file name `%s' minix_be                                     LICENSE=GPLv3+  minix_be                                                                               |  "                                                         *              9              D              P              ]              i              t                                           grub_mod_init grub_mod_fini grub_strncmp grub_disk_read grub_errno grub_memset grub_fs_list grub_malloc grub_error grub_list_remove grub_free grub_list_push        F   
     
                
      0    K  
  T                        '    .    3    |      	              j                                C    Z    v    }            h    m                                                      .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .modname                                                      4                       	   @       
  p  	            %      2                          8               (                  4   	   @         (   	            >                                 N                                 S                	                                  0  
   	         	              	                                  ,  \                                                                                                                                                                                                                                                                                                                                                                                                                                          boot/grub/i386-efi/ufs2.mod                                                                         0000600 0001750 0001750 00000012724 13417732100 0014246 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UEp@1UWVSЃ1      ɉud  d  Pл   1Qh   SRNd1~RP`      e[^_]UWVS(hp     (   
t*URWh`  j j SQV U=     t    tbuo\\  TuHG0tAHu:Ǉl         l  9s	Al  鉷`  Ǉh      'cPPh    j	W1e[^_]UWVS}5    E u     @ É0  ;4  |9s5    4$    e[^_]UEVuS5    ~t,   u	    tR   Ph       5    $    e[^]UVuS5    E     t  P5    $    e[^]UWVS   EUUdt  EEU1EU;x  rw9v+MME1҉UUl  EEEF0U1҉ŰUEȋEEUEŰŰE t1҉EȋEŰU t1҉EЉUEEȉUŨEUhlE9E  F0} Ew%}wE    UE  Fdl  UԉEEЍ_   ى]1 w"9sPEPjuu4  8     )ډEӉU9   r	9E   PMEUPEj t1MRP<  @   t1ROP`  ]MS]!!؉EU}EjRUPEM t1RP`  E UEUc  M])ӉȉMkM] t1҉	  S]EUPEj t1MRPD  H   t1ROP`  UEMMQj }t1҉E!xM!ыU䉍|x|S]Q t1RP`  EUMQj!ǋEp!ЉtptRUPEQQh    j	E    E    =     t,  l9Euh9EtEF0E    P#U҉Uu
EE    l  UE t19Uu9Eu]K#]ؙ)]U1ۋUE	ti`  }x d`  x$REuuRUSNd t1RP`  `   =     @     tPj F0)Pu)]F0EEU EU wE9EEe[^_]USP]KHSDC@uuss]UWVSÃHRU$uԉǅ  E    "  EԊ </uEMԄMuW1  d  f% f= @tVVhO   j?tEԋEԊ </uu+uE    1ҋE;x  r"w;t  rSuh_   j  MQ1jR1Pa  E9EF  11WPER1҃P(  QVWu  9ut
<7    d  1ɋUẺd  f% f= t  EЋh  @h  ~RRhs   j   EЃ@Pt{  |  ux   wt  xwPPuVV1u1҉j j EЃ >/uE   U1ɉu	V=     EERW    e[^_]UWVS]}C ơ    tl1ɺ   =     u3t?/tPWh   j    42=     tVىs@t  x  C41S8e[^_]UWVS<  Eu á      1ɺ         t>/tSVh   j}  =     ^  d  f% f= @-  QQhO   j  > }f% f= @	ЋPuPVU   V1ҋ;x     Q1jR1P   f t}GPtaRjj P1V1WR1҃PE Vǅ    Rw;t  XS    e[^_]Uh    h    E    Uh    not an ufs2 filesystem %08x%08x ufs does not support quadruple indirect blocks not a directory file `%s' not found too deep nesting of symlinks invalid file name `%s' ufs2            
  M
        b    n               LICENSE=GPLv3+  ufs2                                                                                 "                                                         )              6              B              Q              ]              l              x                                                                                                                               grub_mod_init grub_mod_fini grub_strlen grub_strncmp grub_strcpy grub_xasprintf grub_strdup grub_disk_read grub_dl_ref grub_errno grub_memset grub_fs_list grub_malloc grub_error grub_list_remove grub_free grub_dl_unref grub_list_push       r     w                              J    Q    ]    |                                *    /    E    J    R    W    o    t                                        \    c    z    P    _          	          @    a            	  
  x	    	    	    	    
    
    9
    >
    i
    
    
    
    
    
    
            4    ;    O    q    x        J    d                                                                            $      .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .modname                                                      4                       	   @           	            %      2       <                   8               <                  4   	   @       X  @   	            >             $                    N             4                    S              4                                  <    
   	         	                                                  \                                                              boot/grub/i386-efi/mmap.mod                                                                         0000600 0001750 0001750 00000015360 13417732100 0014320 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UWVS8}E]PuVEPj EPE    E    E    E     xuEu
    &  EPVuԍEPEVP >u       }    QQSjRPvvu EE9   FV6EȋFŰVEURPuuh    h%   jBh*   0wOFV$    QQSjx} t
QQSjhQQSj^QQSjTQQSjJQQSj@PPQh:   ZYSjFV#1e[^_]Uj uuUWVSHEUM]jEȉỦMЉ]   Mȋ]̡    ϋMЉځ ]]ԋ@<  MЋMȃ ]ԋ]M])}Uԋ]ԋMЉEċEĉ}MЉ]ԉQuRWP$=  tu1EċP EH   w
E>   MQSPj҃tV/    ^5        MP    UFNV1e[^_]Ë    UVE1S    R<t:9Cu/QsssR$t    S1ދRPhh   j&e[^]UWVS8uj}ti       }EP<E    O   B w
}>   MQVWjUЉMЃMԋUЅtS1mEEt7        s    KAU    ESCEC.QVWjEE    R Vj j t돍e[^_]U]U}SM]EUu	uMQ1[]U}SEUM]u, w'=   w ڃ w=   vM  Q1[]U}SEUM]u, w'=   w ڃ w=   vM   Q1[]U EPhH  E    E    } w	}   vE   E    EUU EPho  E    E    EUU EPh  E    E    EUUE 1]UWVSpM܋xXU!!]1ۉMى tЃt	E    "C@uى tЃtC@u:MU܋E tЃt11 	U	EE뾋EU[^_]UVSM]EUMM]]u/jh|   h   jRh   EUE U   ks3Vks3F    ks3Nks3F    sFsk3EUVkC@   kCHkC@    1Ce[^]UWVSUEM։]u]uq9w
r9s؉y]qM9r
w9v9rw9v)jSQRP e1[^_]UWVS<u]UEVSRPh   h   h|  h   EU]uE E    P@M؉։ tكuE11ۉ׉ t A@uE11f;Uwr;EsE    E    l11M11 EЋEUԋU+]EUĉEU   vǋEЋUEȉщỦE;Urvuȋ}̉+EUԃ w;EsEȋỦEЉU܋E;UsduuЉE؉URPh   h   h  h   UjEuuRP  ى t1҉	tw;Ere1[^_]Uj URPM1҃	Kt&Gu/&MtTu¸    

UWVSTEPh  E    kE($$   EËE̅tuP$      VVEPh`  E    11E    EȍD 9E}rE̍ru<0Љ}7}8}x9}r w;ur9}u8;uu3u~ u*xu$u}Թ   }Ʊuԋ}̱EU낅oEE    0x@u}ĉEE9E/  kEEẼx PtQkڃz    p9rut   ׉B    qti9puPRkڃz uB   Pk@T6jŰuJ@   HkRUkT2{ ts;uuuXE̋MT9Uċu9Et+}vQQu+EUWRPuuU uE̋MuTUĉEEu1e[^_]UVSu}tRRh   j?    ۉEUu+F    ۉEUuPPEPh(  e[^]UWVS,}tQQh
  j   h   h   h  h   E]ԋ ERjSuE؋EԉU܀8,u@EPjSuMԃEU9,uAMԃ=    
u        1ER% Puu؉EUh2  h   h  h   EPh  be[^_]Uj hD  ho  h  h   j h  h  hS  h         U5   X5    =  G  G     7     =  G  -  Q  [  =  =  =  e  	
EFI memory region 0x%llx-0x%llx: %d
 mmap mmap/efi/mmap.c Unknown memory type %d, considering reserved
 handle %d not found Unknown memory type %d. Assuming unusable
 mmap mmap/mmap.c hook %llx+%llx
 badram %llx (size %llx) is a badram range
 two arguments expected one argument expected executing badram
 badram %llx:%llx
 Declare memory regions as faulty (badram). ADDR1,MASK1[,ADDR2,MASK2[,...]] Remove any memory regions in specified range. FROM[K|M|G] TO[K|M|G] cutmem       LICENSE=GPLv3+  mmap                                                                                               N          "                                	               +              A   ?  	     _          y   	                                       J        G  *                                      $                              (             @  >      ^             p  q  *         o                                                                    grub_mod_init grub_mod_fini grub_strtoull grub_efi_system_table grub_mmap_free_and_unregister grub_machine_mmap_iterate grub_mmap_iterate grub_errno grub_register_command_prio grub_mmap_get_lower grub_mmap_get_upper grub_printf grub_unregister_command grub_mmap_register grub_zalloc grub_malloc grub_efi_get_memory_map grub_mmap_malign_and_register grub_real_dprintf grub_mmap_get_post64 grub_mmap_unregister grub_error grub_free grub_efi_mmap_iterate grub_efi_free_pages grub_strtoul   >     P     _     }                               )    s    x                s                                        )    0    P    d                            *             R    e    |                                            	    	    !	    &	    >	    	  !  	    	    	    
    
    '
    ,
    ?
    K
    j        B    g    n                                              
  6  
  Q    Z    z                                                                        	                                                               $     (     ,     0     4     8      .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .modname                                                      4   #                    	   @         `  
            )             X  S                  %   	   @         x   
            1      2                         @                                 F                                 V                                 [                                                        
         	                                                 d                                                                                                                                                                                                                                                                                                  boot/grub/i386-efi/uhci.mod                                                                         0000600 0001750 0001750 00000015130 13417732100 0014311 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      (      4     (   UVS    utPPu]VUu,  1   e[^]U   ]UWVSEpPh    h   h   h    } t
}t1n      fPPuPh-   h   h+  h    Et    ؉f%Df     te[^_]UWVS(EuXPhD   h   h  h   Vuh]   h   h  h    t   ~  f    fPhp   h   h  h    } uz1fh   h   h  h   EE  UU ft;Urw;Ev      fRh   h   h     f%  ffj2ff%ff$   f%  
fff%  ffEE  UU fu;UTr;EIۃj
;f$h   h   h  h    1e[^_]UWVSӃR$e[)Ǎ>^_]UWVSӃR$)e[^_]UW1VS˃@)ED,         tqSh   h   h  h    } ttEx$CM@%  1ɋCtCV-VGF(MFM^(닍e[^_]UWVSuE^(xh   h   h  h   @   KXZEPV$e1[^_]UWVS1ۃExEp(E     PtB@Wtt.HCSQSPRh   h   hd  h    @tHh   h   hj  h   @   YN[uuT4$1   CPh  h   ht  h   C    u<C  @ uUC    uRC   uOC   uLC   uIC   uFh$  h   h  h      k   !               h=  h   h  h   @   NXZuuX4$؍e[^_]UWVSXEXjƸ     F    |, t@=   uK=   uWWhQ  j1C)D,     1Pho  h   h  h    E       S 1C(Quuuuuuuh  h   h  h   10}MH%     }    A  tMIEU	ЋU    U		ȋMԉAEĉA~    EԉFEЋ}ԋEM;H   MkEQA @  PMHUUMċ@M̉EEU@EȋC(eEPPh  jE    tG       NtRREPj 9V      SEGEԋSG       ph  h   hC  h   S F>Gh  h   hI  h   Ep(1e[^_]U   WVSju      <    j    u  E      j   u  ƉÃffډf}<$h3  h   h   h   h0  A     fuh        f   f$   1Qfff_Xh   h   C  PCYsC^sPj jjh>  h   h  h   (h   h   CD  PC_sCXZh P  h   C  PC ZsS C$CY^RPh{  h   h  h    1S K$L  = P  
uC 1ǀO      C C(CKу   u3CV1SKTKS=   B   u͋Cǀ        fh  h   hK  h           ,  1$sXs$   e[^_]U           t        PPj h  $    h  h   h\  h    Ë    1tf,  Uh    i      -   detect_dev, iobase:%08x
 uhci bus/usb/uhci.c detect=0x%02x port=%d
 portstatus, iobase:%08x
 enable=%d port=%d
 detect=0x%02x
 waiting for the port to be disabled
 >3detect=0x%02x
 Freeing %p
 transaction cancel
 >t status=0x%02x data=0x%02x td=%p, %x
 transaction complete
 t status=0x%02x
 transaction fallthrough
 transaction failed
 no free queue heads available transfer, iobase:%08x
 transaction: endp=%d, type=%d, addr=%d, toggle=%d, size=%lu data=0x%x td=%p
 setup transaction %d
 initiate transaction
 no transfer descriptors available for UHCI transfer base = %x
 class=0x%02x 0x%02x interface 0x%02x base=0x%x framelist=%p
 QH=%p, TD=%p
 UHCI initialized
 registered
           =    @      J                 LICENSE=GPLv3+  usb uhci                                                                                               ]        c  -                                	              
               -              ?              ]              k                                                                                                                            #             4             >             R              grub_mod_init grub_mod_fini grub_millisleep grub_dma_get_virt grub_disk_firmware_is_tainted grub_dma_free grub_usb_controller_dev_unregister grub_disk_firmware_fini grub_pci_make_address grub_usb_controller_dev_register grub_zalloc grub_malloc grub_get_time_ms grub_real_dprintf grub_error grub_pci_iterate grub_free grub_memalign_dma32 grub_dma_get_phys 
     ^     c     m     r                                 %    *    6    ;    E    J    ~                                                1    K    p                                    "    ,    m    r    |                        /                                                        d    i    s    x                            M    T                                    3                W    \    f    k                        	    S	    	    	    	    	    	    	    
    %
    <
    H
    ^
    c
    m
    r
    
    
    
    
    
    
    
    
    
                                                    #    0    5    <    A    F    K    U    Z    e                                                      .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                       	   @                       %                                 -      2                         @             x  0                  <   	   @       x  @               F                                 V                                 [                                  d                                                                	                d                                 m                                                                                                                                                                                                                                                                                                                                                                                                                                                          boot/grub/i386-efi/usb.mod                                                                          0000600 0001750 0001750 00000024670 13417732100 0014163 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                       (      4     (  
 UWVS]{    { u~{ ux{ tr1C@9}cG HEQHQHQVh    h8   h+  h<    E( u"U@;BuPVj SRtG(   F뒍e1[^_]UEUǄH      j j Rj jjPUS]h   j H  PEj j j Pj	j S]UUuEu	j Pjh   uUWVS8]C Sjj jS S  Sjj jS 8  D      =   u{    s$E    C9E   EPjujSEP   FPEPujS    FE    EE̋F@9E}N;M̍}xuB  tC߀xt t2;M̍|BE@kEԁƄ  %11
      1t3Ƅ  E   Euݍe[^_]UWV1S]E@@9   { GPGPGPVh    h8   h   h<        {(    t+G;AuPVj uMQMtC(   	у{( uZG<t<t<uKhP   4hJ   *h]   $l   $}   Fe[^_]U    EPh        U]U        ]U        ]UWVSÃ$x@RWMPuUEE܉UEURCuVWPt+u(;Uwr;EvPPCVWPu1e[^_]UWVSÃx@$xkC x 
CH  Vh   h   h1  h   C H  { u!Cs,pVPs0s $Xs,e[^_]UWVS4BU܉MH  uEQh   h   h   h   Vh   E  P4$}EuPuuSj4u	V   D   E@   t
E@EEUH1uUKM܉CEAMC<  SUC   KkE4{C$s,S0PC t1E    WS4$UU}kEC 9v}1҉H0x}U؋U)uEϋM̉PxEȉE̋E9E|1e[^_]UW   VSÃ<@UȉM@(tD   @   tMȅtQE1E    E;uspE9Ev}PUPEuMP   t)MQ  EĉEEUEEЅu)}9Eu1ҋE;Etue[^_]UWVSLEu}EȈEEuuuuR   RPh   ÉE  P$Euu uĉEXuPEPEPEPh   h   jjh   $j4uPPjj EuSXu  uXuE@   E@tEPPuMSh  h   h   h   MԃUC    D1USUECk4<  KMC    KPMC u(   SYu[uH  EȈEFEfFEf~}fFC 1}U    C @   C HC M@    1;E{ }=Pk;Mv}ԉ:@z}rz}zU)뻋M@k    S D    S t} y
D   D    S   D   EPE$h9  h   h   h   s $XuZuuuu e[^_]UMUEMMM   ]UMUEMMM1]UVS]CRPuSPRt`e[^]UVMS]RRUj uu1PPVSPue[^]UUBHRPQ        UVMSUPPEj u}ø   t!MuE2Ɖe[^]UWVSӃ(hl  M   W   @  FEVd  Eh  Vud<    tmG   uR1Rh  jtÄ     u1ۃtÄ     uV1   Pj j j Wjj V u<  ǆD     QQWVhJ  hm  jnhq  4   uuSh  hm  jphq  j4$e[^_]UVSÃEPjj h )  jh   S i  ERRPEPEPEPEPEPh  hm  h   hq  0h   hm  h   hq  Y^jSEP  $L  kP  $L  ҉T  tt   "RXT        E97Vh7  hm  h   hq  j j VFjjj#S C 1p9}HkC$x y9Hu.\  `  RPv   RPSX  B      1e[^]UWVSÃ @MjVPRutC8   G W$j
   C1ɋU$    S   B     B$    tSx	ue[^_]e[^_]UWVSÃ   x	uBX  tP1;P  sL  FL  11~ u:@Ƅ  u싃<         (kT,tQWPSEҋEGVR9|빍e[^_]UW   VSuEj         jCuSvQjVPC    4$PC$CkC$S҉Ct1u-1RXsZs$e[^_]á      Ut;Eu@,P,@,]UWVS,   MA,A   tSSQh@  ЃE          CM9   E    E;C   E    CuQMQVPkR{Wu>ts    W{W   GWCED0   aJu6u    WF{;Wrw;v	G   %C|0us;Vrw;Fv
F   ME"} tj   }tLC1M9u<;s}7kCxu(E    @    CRWVPRFċ밍e[^_]UWVSL      1;s   E    C P$P t*K	;Q$rw;A v   A     A$    S1H$H u}QWVRPǃ} t$CC    tMFkZ=      j       E    EЋ     {	  X    RR}WP  \  \  Eȋ`  RPv   RPSX  o  } e  } [  C   E    E;P  =  Eȉ}$  kEEċT  |
  PEPjVj j h   SuWShK  hm  h  hq  EE   EtPj j Vjjj#S EtPj j Vjjj#S EtPj j Vjjj#S CP$P    E   Pj j Vjjj#SUԃ L  L  U    EtLuT      VuċT  Q   AQT  D0      E   Qj j Vjjj#SE       u%   j
t"@  u<  d  E̋h  	1E    M̉PEnSJ$J t   B     B$    tL  Mԉ
x	uGEEЁ}Ѐ    1E    }  Eԋ4   w  ~	m  `  E   E    E;P  *  kEXEċT  |  ERURjPj j h   VE    E tT  D      Eu6T  ]ӉEUUĉME    \]LEUT  ;Qr^w;rXFP$P uiPj j ujjj#VT         D    ^   C S$   ;Qrw;Ar	A   E   E} tFP P$   Ee)1jE    L=    t
} e[^_]US1Q   uC   u1RRuPUt   ]iterate: interf=%d, class=%d, subclass=%d, protocol=%d
 usb bus/usb/usb.c usbms usb_keyboard usbserial_ftdi usbserial_pl2303 usbserial_usbdebug bulk: toggle=%d
 usb bus/usb/usbtrans.c bulk: size=0x%02lx type=%d
 control: reqtype=0x%02x req=0x%02x val=0x%02x idx=0x%02x size=%lu
 control: transfer = %p, dev = %p
 control: err=%d
 Added new usb device: %p, addr=%d
 usb bus/usb/usbhub.c speed=%d, split_hubport=%d, split_hubaddr=%d
 can't assign address to USB device Hub descriptor:
		 len:%d, typ:0x%02x, cnt:%d, char:0x%02x, pwg:%d, curr:%d
 Hub set configuration
 Power on - port %d
 dev = %p, i = %d, status = %08x
    LICENSE=GPLv3+  usb                                                                                                                               :     8   
       K              [              m   
  4          &                        	         	                                     '     /    0     G             R             ^  ;      y    9                        w  &       @                                     -     "             .             ?             Q             d             o               
                       2  E                                   P      grub_mod_init grub_mod_fini grub_usb_set_configuration grub_usb_bulk_read grub_millisleep grub_dma_get_virt grub_usb_check_transfer grub_usb_register_attach_hook_class grub_dl_load grub_usb_control_msg grub_usb_unregister_attach_hook_class grub_memmove grub_dma_free grub_usb_controller_dev_unregister grub_usb_get_descriptor grub_errno grub_memset grub_usb_device_initialize grub_usb_iterate grub_usb_poll_devices grub_usb_device_attach grub_usb_cancel_transfer grub_usb_controller_dev_register grub_print_error grub_zalloc grub_usb_clear_halt grub_malloc grub_get_time_ms grub_real_dprintf grub_term_poll_usb grub_error grub_list_remove grub_usb_bulk_write grub_free grub_usb_bulk_read_background grub_memalign_dma32 grub_dma_get_phys grub_usb_bulk_read_extended   N     S     ]     b   #                5    T    o          !        (                #      e    o    y    ~                                                  &    $         $  -  "  Z  "                #            (    (  %    Z    _    i    n  #  |  *        +        !  N  !  l  (  t      *  	      +  (    D    I    P    U  #  _  !  x  *    (            +                #  6	  !  Q	  (  Z	    c	    f
    k
    u
    z
  #  
  (  
  (  
    
    
            A    O    d    k  %    (    (    (                      	  #          $    )  #  3    ;    l                  #                #    	           '  (  3  (  Q    V    `    e  #  z      )        "  -    2    R          (      Y  !  k    t    }  !    (                (    (    (    (              J    Y    e    w      "    "  )  "  Q  "              -  "  D                        B  )                    #      -    H    v      "      7            f      "            "  *                 .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .modname                                                      4                       	   @       x!  0              %      2       %  l                4                                  :                                 J                                O                                                    	   	         	              x                                 '  X                                                                                          boot/grub/i386-efi/usb_keyboard.mod                                                                 0000600 0001750 0001750 00000007470 13417732100 0016042 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      0      4     (   U tttt@t]UESXCS[]	UfPE @tE tMRURjPRh   j	j!0         US    QCtNU9uG@tPS$XsZsC    C        u]UWVS(]uuCPCPCPh    h   h   h   0E    E    tE}u   s1   iE  kMًQ zw  zm  z119}kq$~ yNF<uD19A  h1   h   h   h   $D   u1  B량EwGERR@PSuj j Vj jj!Sj j Vj j
j!SEj h       VEUkMiE     D,   YXuh=   U   MGG PjwSG,G fG  G    FuPPVh    VЃt   e[^_]UWVSÃp<!   D3,<v   T49u1F;s@|11C<       QjC4,PS   @uC<    1o9ufs@
Sufs C,MRRS	PWC            F;s@C$S(|	C<    s<s e[^_]UWVS,EX{ t1H  {< uPPEPsuC  Ճ{ t;S(rw;C$v2 C$C S(   K,u}vPjQC4PMMԃPjsVQVjs3 CuERRphL   C   C PPC3PC2PC1PC0PC/PC.PC-PC,PuWh`   h   h  h   @ES,SC@C<   e[^_]UE    ]US    QCtG@tPS$XsZsC    C        uh    ]%x %x %x %d %d
 usb_keyboard term/usb_keyboard.c HID found!
 usb_keyboard%d %s failed. Stopped
 err = %d, actual = %u report: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x
                                     /       LICENSE=GPLv3+  keylayouts usb usb_keyboard                                                                            p            x                                              	               8              J              b                                                                                                                                          /             ;             L             ^             o             y                           grub_mod_init grub_mod_fini grub_usb_set_configuration grub_term_map_key grub_usb_check_transfer grub_usb_register_attach_hook_class grub_usb_control_msg grub_xasprintf grub_usb_unregister_attach_hook_class grub_memmove grub_errno grub_term_inputs grub_printf grub_usb_cancel_transfer grub_print_error grub_malloc grub_get_time_ms grub_real_dprintf grub_list_remove grub_free grub_usb_bulk_read_background grub_list_push                                                '    ,    6    ;    Q                              
  4    H    U    ^    g    {                                l                0    X    i                                )    .    v    |                                             $     (      .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                       	   @       
    
            %      2       ,                   8               0                  4   	   @            
            >                                 N             $                    S              $                    \              3                                  @       
         	               	                                   e                                                                                                                                                                                                                          boot/grub/i386-efi/morse.mod                                                                        0000600 0001750 0001750 00000004504 13417732100 0014511 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      <      4     (   U1]U?   EVS % Pw k1    t;CBBaai   Raa$   CE  e[^]U=     tRRh    h       uPPh    h    h    ЃtUh    $                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                morse                                                                         LICENSE=GPLv3+ morse                                                                                  O           !                                              	               -              H              Z              k               grub_mod_init grub_mod_fini grub_millisleep grub_term_outputs_disabled grub_term_outputs grub_list_remove grub_list_push   7     ]   
  q   
     
                                                                                             $     (     ,     0      .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .modname                                                      4                        	   @            
            %             0                    -      2       0                   @             8  L                  <   	   @         P   
            F                                 V                                  [                                                        
         	                z                                  d                                                                                                                                                                                                              boot/grub/i386-efi/usbms.mod                                                                        0000600 0001750 0001750 00000015670 13417732100 0014523 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   US1P   t.U9u'M9HuU9PuP       C   u]UWVS,   uE    6  CkU   iE  Ћ| GPv<  G<v<P   j$      0M   HW   PW   Ph    h   h   h   1kEEG9}LUkB$x Pyu    B#u   Bu
   B A묋   x tx tx u$x  uP       1   h    h   h   h   XZjV   xPuxEWPEjPj h   h   V    tBu*PPB@PV   ZY@@PV           
E@B@   h    h   h   h   kUiE  D,       e[^_]U} VuS]t	E   )<    uj   uE6   E   e[^]F$   @Fe1[^]USP1} u?1j   uC   u1upSj Ut   ]UWVPxPuVj j Rj h   j!0#}        QMQjRj j j!P e^_]UWVSLX$E}UM{PtE   u      E   MuWWhV   }  Vjj EP    }MEUSBCE͋EM׉EEՋE@QuE֍EPuuuho   h   h@  h   E׃PEPEPh   h   hB  h   E PEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPh   h   hG  h   PEPjs3t'Q   QC@P3  }    }    Wus3XZjVh#  h   h[  h    t  PPC  h0  h   hc  h   }@w31QQ7PVFh6  h   hh  h    ;ur1"  hF  h   hk    Wus3XZjVhh  h   hp  h   G PGPGPGPGPG
PG	PGPGPGPGPGPGPGPGPPhv  h   hu  h   PtuiPPC@P3S}   w11PP7PVFh6  h   h  h    ;urhF  h   h  h   EPjs3t9PPC@P3EPjs3 th  h   h  fPuuuh  h   h  h   EȃPh0  h   h  h   Eȃ <t	}USBStJhD  h   h  h   wXCZ@P3CY^@P3u  } uPPhi  jP  PPhi  jB  { u4EPjs 3ZUYRPh7  h   h  h    MuPPh    Pjj VUv   PuVEPEPEPEPEPEPEPEPEPEPEPEPh  h   h  h   LVjCPj j j!3 t;Ph  h   h  h   EE SSh    }    } uJWus3$hd  h   h  h   EE t]PPC0  Wus3$hn  h   h  h   EE tPPC   {    EPjs 3$hy  h   h  h   EE tPPsCuf}    H   EtQQh  ju%   ffEr[h  h   h2  h   XZC@P3XCZ@P3YXC @P3{1e[^_]US]UEM]]E   ][]US]UEM]]E    ][]aUh    E   USP1   kYiQ  B,       @kYiQ  =   B(    uh    $   ]  alive
 usbms disk/usbms.c not USB Mass Storage device unknown USB Mass Storage device USB Mass Storage stalled CBW: sign=0x%08x tag=0x%08x len=0x%08x
 usb CBW: flags=0x%02x lun=0x%02x CB_len=0x%02x
 CBW: cmd:
 %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x
 read: %d %d
 buf:
 0x%02x: 0x%02x
 Too much data for debug print...
 write: %d %d
 First 16 bytes of sent data:
 %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x
 Bulk-only reset device - errCSW
 CSW: sign=0x%08x tag=0x%08x resid=0x%08x
 CSW: status=0x%02x
 Bulk-only reset device - bad status
 error communication with USB Mass Storage device USB Mass Storage CBI failed cbicb:
 %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x
 CBI cmdcb setup err=%d
 USB Mass Storage CBI request failed CBI cmdcb setup status: err=%d, status=0x%x
 read: %d
 write: %d
 read status: %d
 USB Mass Storage CBI status type != 0 CBI reset device - phase error or persistent failure
              N           -        LICENSE=GPLv3+  scsi usb usbms                                                                                           T           t  j                                	              
               8              K              o                                                                                                                                          !             5             ?             X              grub_mod_init grub_mod_fini grub_usb_set_configuration grub_usb_bulk_read grub_usb_register_attach_hook_class grub_usb_control_msg grub_usb_unregister_attach_hook_class grub_memmove grub_errno grub_memset grub_usb_poll_devices grub_zalloc grub_usb_clear_halt grub_real_dprintf grub_error grub_usb_bulk_write grub_free grub_scsi_dev_unregister grub_scsi_dev_register  
     .     8     Y     x                                            
    A    U    f    s                                                $    4    =    H    `    e    o    t                                         *                    
        J    [    `    j    o                                        ?    i    u    z                                                        &    +    5    :                                                        *    B    R    ^    c    y    ~                                                    $    2    O    \    a    k    p                             	    	    (	    -	    7	    ?	    U	    x	    	    	    	    	    	    	    	    	    	    
     
    %
    /
    7
    y
    
    
    
    
    
    
    
    
    [    `    j    p    ~                                                   .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                       	   @         p              %                                 -      2                          @               (                  <   	   @         (               F             0                    V             @                   [              @  	                  d              I                                  P                	                o                                 m                                                                                          boot/grub/i386-efi/mpi.mod                                                                          0000600 0001750 0001750 00000067760 13417732100 0014166 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      m      4     (   US]SC]EUSP]   t    } tP	Pu     ]UVuSj1tPPj VC؉3C    C    C    e[^]UVuSj1tPPjVC؉3C   C    C    e[^]UEUtu	E] B9u]US]3sECE]UVuS];3wC    ;snK@    Ct3QQ    RPC    9s2K@    CtRRjV
PPjVC3e[^]UE@    @    ]USR]tDCtsPP3sCth    ]]]USR]uj CtsPP3sE    C    C   CEC؋]UEU@uh   tH
@UVS]   CtpsCt   P   PPC   PsVsVj ItssSPSPSP1;P}K4H4B1e[^]UWVS]   CtYC   stV	VPVsWsWj 7tss@    @    SP1e[^_]UWVS}EO_MuS9}RRSPEEu1ҋH~9}	44B}XuWpPe[^_]USE]uj8 RRjPEEP1҅P@    @    ]U#   Uz uB U1]U]US]jP1҅P@    ]U   WV u}}u}u ^_]UEE]UEE]U]U}VS]ugCumsCCutYh    h   h9   hZ   RRjP1;S}	BCuEe[^]h^   e[^]Uh^   UUEtu@@h^   UEt@tH| uJPPu]US]tCtC-SKX1tC    DtЃ)Ћ]U1MS];Ss[[]UWVS}u;^}rPP{WV~V   M	e[^_]UWVSM]΃;srPP~WSMM{{       	A tS   !:Fse[^_]UMEWVS;Ps$4    X   A!; uBP[^_]UMES;PsX   ![]UWVSREMpX9s)1ҍ<u	@    ;Us	44B}    )HX[^_]UWVSU]փ;]uX;srC    J  1t"K)9ȋKs<0<<@    )sK    CRQPP   }EO@K   9}QQPSUEUEC1};Gs}O{@9ƉCP1K)9ȋKs<0<<@    C)CtrtnKRPQQ69}URRPSEUECtBu1RPEps%;Cs }WS@S| uHCCe[^_]UWVSu]{t>t:>9sRRPSSGx	<<H1    @9uCe[^_]UWVS]} uu9   }9}tEFNED9MsQQPSS1N;Et	<<@CFCE܉Cuu} tRRuS%} t2}PPGWS    )PSSS| uHCCe[^_]UWVSUM]zrG9}URRPQUEJ@Eu1҅ۉVuTEӃ9ӉpsKtQB҉Vt   1K9u19}BE1wu9sE)Ӻ   1^1QE)ى9Hv1KtrFAtE| )Ǹ   9t1K9}܋F}WGe[^_]UWVSEUXERp@9}0MEFU9}WWPQEډ֋xE@(UUE܍C9}QQPRExE@MQUu19V  M@U9U   9tvVPWuك)M܋Wu)9ύF>vMt9Jqɉpt9t"u1N9}<<AE|    K   S   9uJ   SWPu~
E| t	} }KVPWu9tY)W?uM9NsMtB@At   u1N9u19}<<@}Ã} EEX]Xe[^_]SPWu~͋E| uKUWVSUM]zrG9}URRPQUEJ@Eu1҅ۉ¸      tREӃ9ӉpsKtQB҉Vt   1K9u19}BE_u9sE)Ӻ      [1QE)ى9Hv.KtrFAtE| )ǉ19t1K9}ߋF}WGe[^_]UWVSuu}1{ CSWV]e[^_]UVuS]PuuSu]]e[^]UVuS]PuuSu]]e[^]UWVSE} ]PxUtuC    C    Dw93}EPPVSEKuMWpQMtE{Ce[^_]UWVSEu]@~}uC    C       M<W9MU}EPPRSE؃Ust#RPEpEPt1})MPU} xMMI1;E}
    @E܉{Ce[^_]UWVS<EUuHzXM9ϋH}؋z]ԋXBRU})]]؉ʋMԉ]̋]܃MЉǃ]؋]̉]ǃ}Ћ}]}}ԃ1ыUU܉Mȋ^ŰVu.uEt$P1Pju   E       E9}@;]t;]u#WW1Ru   E       SSuV^n;]u7QEQuЉEP;]EuE1;E}}@};;]u-ERRWPEE1;E}}@}	E    11Ƀ} E    t.uuuuMSŨ Mą)UЅtGu4QQj u1;M}	ARRj SEEPuSVEЅFEȉFtEԉ}Ee[^_]e[^_]UVuS]PuuSu]]e[^]US]uuSC    ]UWVSuVXZjj} tVC   0FC@PXZjWYXCPWVWWC{D $CCD $Ce[^_]USQ]tRsXsZsCtP{ t3]]]UWVS8uEU^E~Uԉ]؋^EFREM܃Uԉ9B~EUEEEe[^_]oPPRSUXEZHPSWSSEYxXWSXZURuE؃9x~xPuSS9{~{PS]uS{ tA~ u*E܃PF[ZjPY[WvEQvPPPPuuxERuPPٍe[^_]UVuS]PuuSu]]e[^]UWVS}uXuF    @    PPj StPSVWXZSVYXWSPPVW4$$ZYjWe[^_]UWVS}u]Vwwt
 t)ƉtS1҅Se[^_]UWVStE]uHPEE[MU@EAPu)߉EEH;Eu  F    F      P]SPS1;U}ϋHMIBtEPPWVEPEM3M@MEE@Eubt,E^0uRS1҃| ])׉~^PE0uRuuFup  tCF19ЉEuBPMPFMԃPQE1;E}M@   E1EEDEtcGEPPEU\ԋ@PSD}EWSuP UWuRu   }UEEwME9tM9uEtAGEEQQ@U\ԃPSUED19}}M<<@E}E9Ut1;E}<M<@R}RSuWuj u t%)څtMBEVFE| uKt$} tuuSVV| )ËEuXp} tMPPEtte[^_]UWVSE]uEEP9ÉUt19uPPuESVEM;Ht'{ EtEPjVVEPSSt}e[^_]e[^_]UWVS(]U}sUURWPS ue[^_]Uuuuj UW1VSE]uP9ÉUuSQPVSEE~ } 8t{ tRPSSt}e[^_]e[^_]UWVSuE}^9|	G    J)9}EPPSWENuWt!VSPRUU1| )É_e[^_]UEuppɅUWVS]} Eu}uHu,sWVPSEE Ee[^_]}u]Ee[^_]yJu}u]e[^_]u}uEe[^_]Q}u]Ee[^_]Mhr   UVuS]SCu1 { uuS92w
   e[^]UWVSu]tFutsCtmtFt   Cu   tCt
      Fu{ u1   ;C   ׃   RPsvlV$NV{u{ u)	{ t39u2t[vJx<9t98Qe[^_]UWVSHuEXuEPPj ut0PPj u$   ƉEEt:E    AWWj uuPEjPPEjPP뉃j Eԃu^uE} E    Eu!}wWuPEuY[j uEtN1j } uj@   u1~ F   1j} uj ǃuƃ} uRRRj StPuSSuWWPPj WuPjSSjWW$PPj StPuSSPjSSjVVQQj V[~ u/RRSu} uPPWuPPVubPSuuM1҃A} QuEPWQuEMAVFPPVuĉUUVPuuS} uQuuWRuuV{ t"PuSS} uPuWWPPj VNPPuuXuXu$} uu[u<$uXu4$ZuYue   [^_]UWVS   EUuxJ}z}ċzxx}t~}eE    }@} Euh   } uN}   uB8uFt> SSjVE@    E@      E    MtEĉEQ]QuUSUف?    ]EBMu1uuPu;E}J]@FV;EĉEl~|} E    @tERRuPE1;E}VM@SES]ċUSuuPj DP ]} E~U| u]MEFE    E    E} u?EE    E    E    @    @    E    E      EE;}u^} th   h   h   h      } E    tEEQQuuE1;E}M@EEEE    ;}ku6tUURRPuE1;E}M@EEE    ;}uSth   h   h   h   MSS؉EEQ!EPE1;E}    M@EĉËE9}QQSPEx1;E}U@} E    CtERRuPjj EEPEǅp     t1~ pEuE   ]E    Htȃu)MEEE    |} E  PSWVX} EuQQj PEE,E9E}$PPj uXZj uEEEuSWV;U~ ]PP|SuRVj P ڋEEuk uӉ   }uudRVWPPEPuudRVWd E;]~,PP|uudSWj P]ă d} pEEMtxEtE    E} t#uESWpu~t%CE9xt1u9؋V}	@;]| uPP|VuSWj P } tuSWW| uKEPt	p ulx   } tuuċEPPSWuW9]u][Mċu)V6M)9CvMt҃Zsۉpt9tM1I9}44C| uKE9xth   hE  h   h   ExXpEtWWuPEtVVuPEtSSuPEtQQuPEtRRj Pe[^_]UWVS1ۃ<E}E̋EEȋEEċEȃ< tCtE    E    *h    jRh   h  9P9E}EEEċUu9th    jZh   h  } uh    j[h   h!  }	~h    j\h   h#  ɊMRRjE   euE؋G@$Y[jủEE   E1WPPuEXE+EЉEPPEu4tKuޅx;u|h    jih   h*  %E؍; uj1Ʌu6jU؉Pu&EȃM4MA;M}sԋUWM4PPڃ; uj W3uuEE9E1uE؃4C;]|E؉Ee[^_]UWV    SE+uEEPEEJxEM<	ËE\ߊMEEZY[^_]UWVSM]w&    u9}	@1 9}    @PSRVUU    ~   M9}?Ew    u SRWWUPSRWUU܃MFD뽍e[^_]UWVS,EUMtdEXS#VMVUuSE44SuVM4uuV ]N  ]    ESEUEQQuEUS@U    sExM9uHv1SuRWE    EE܅x)M9uNw-SRuWE   SuPEPuSPEuPE܃ESEuRRPESrEEE؋E܍419}M؋@ES؍PEЋEPP} EtuuVVM)MuuVVẺEԃMUES2PMPEEUPESuuVVEu1!MЋ9ЉsȉڃJt@t9}M@EESPVVt.u؋P9s ]KtxW҉Pu]e[^_]UWVS]uw(    u;E}	@1;E}    @PuSVU~       M;u}7w    uuSWWPuSWUFDče[^_]UWVS,uE}tcEXPSWVuSWV    1MUSWRMU1uWR ]  ]QSPEPuSPEP    E܍Cx9uHvSWRSRWVRSVuEMPSVuEEEEE19}MU@ES؍PE؋EPPuuEԋEPP )EԃPSWuUURSWuEuuPPEu1)M؋9ЉsȉڃJtxOɉHt9}}@EESPEPPt.}P9s ]KtpV҉Pu]e[^_]UWVS]MEu9ˉEuEue[^_]SY_<6PWPVSuEE }E{uEe[^_]0SM   MuQM1҃M܍6QQRPEM܉XZڋEWVE}Ee[^_]UVS]CtRRsPCtVVsPt<C3tQQsPCtRRsPSe[^]UWVS<u}}]   1}    E w&    u9}	@19}    @PSWV    ME   M;M}|EMċw    uSWVV	PSWVMEĉDPjj URUZUYRuuSWVUăRE?e[^_]UWVS,u]Ft9^}RRRvP<~u   uu1҃PPRW^FMUESQUQEvMSVU    }EU܋U)9߉U,  Ft9^}WRRvPFuE   uu1҃PPRu^FE)E}ԉE؉؉E̋}+}FMUSQUQMvSSvWWMN}؍Q	}ȉMЉ;EЉs7OtB@At!EEE؋E̋}EԋE9f9tO1};E}Ћ<<@   WuSuv)> uRRjjPP6WuSuv S]vSSUNы1QK9sOt'B@At9t1_9}	44@e[^_]UW}VuS1ۉueӉAu[^_]UW}VuS1ۉ}e1ӉAu[^_]UW}VuS1ۉ}e)1;Auۉ[^_]U1WVSQu]MuM}1ȉ<BuZ[^_]U1WVSQu}Mu1É])1;EBuZ[^_]U1VuS]t!N;UsN1҅x	Iu[^]UWVS<M}]t}tt} \  hC  ETE     9Er	)E   Eu<    xuK])1Kx
uV  Et}NE    @?9}>Er;}s9vE   +}M؋E\E؉EЅ   ;]|    ;Mu3sE>)ǃ E_U1)EЉEu؉ǉыEE܋E9wE9Ev9uEO+E M؉EsދE<}+}KbN>d  ؋U+EE    4EM?<    OM̋L:>}܉EЉMȋ
9rBw!Ex}<9<uHE    vuuUVVUE   
]+]CEẼEă}    E;E|EăE#E܋EԋEx
TH    }9t@E܉ʋÉыEU9MvKMr }19))Uu};>wSuuV9EtuKuVVE}ME܋6Ee[^_]U1W}VuS]t2O    ;UsO    1҅xuI[^_]UWVSt@Fu} uFtP	PtlFHMىE} x+EVM)ȋQQQẢ؋t8 uJ@9tQRPS1e[^_]UWVS]hb  u	Ed  Z{ tho  s<~)C;s8tX  ^  QNQRPӃ{ uEq  e[^_]e[^_]US]uhs  $]Ew  UEMUE    ]^UEMUE   ]EUWVSu]~9;}PPWSE1ɋUCEUD0;Er.pUP	pU	sA;Er?p9uw+p	p9uwp	p9uw	@	Cq9sth4   ho  hy  h  e[^_]UWVSu}]tV1҃1҃  uAҍCtPPۉ  G  3u@ҍCtPPۉ  j SVW       >F	ǁ @     Fw҉EtV	V߉upѾ   @    } tK)1҉}F9vP1/E׋UR	}uЋxM111} tM1P  } tPEME"  P   F	F	F	ÅҍCtPPۉt4FGtW	     j SVW} tE} tWE8v  Wh  
       tj 
j 1>-uFf >0u	~xuV1ɃP9sEPPRSM܉UM܃EU؉EeU܉S{E}    1uVu   0   rtsHЃ	vHwHHwVHɉȍJ	vJwJJw1J	E	σ}uMCM܃m<1E    ]SSS1%   } tۃSEԍe[^_]UWVSHu}]Vu}}    ut~ 	     Pj EPV  U1t> yBUt"U;UW  t C)QRVSVE~  }uZB;EEvҸ   t9  t0Pj EPVm  PuVS4$Es}utJ
   ~ M:  tK;M(  SPj EPV   PuVS4$E  }   ~ 	     Pj EPV   U1t> yBUtJUJ;Mv	V   KKKStKC )SRVQVE.  }
   $  Pj EPVE    Eu
   E   EtEE̅ۍ E   ~ UҍT;Uvu      } tS-t
0B0U1;utIE0M	A7wA0MЈMǋEЃEEЈȈMǃ7<	w0EFHU B)ډ1ҋEȃ~ Tщu1e[^_]UWVS(]u}    VWj j u ustFtuuuAVWuPu t3    } tEU1e[^_]UWVS    E+]ىEEE   ;E}}ً<MM	։t@܋E   M]EZY[^_]UEW}VuS]H W9Ɖ7sKtA@Bt   1K9u19}44@[^_]U1WVS]u}UۋMtSQWVUU9t%    )Ή}uEUe[^_]Ke[^_]UEW}VS]H W+u9Ɖ7vKtAprt   1K9u19}44@[^_]U1WVS]u}UۋMtSQWVUU9t%    )Ή}uEUe[^_]Ie[^_]UEHxUM9t9H1]U]U]U]U1]UEEPuh  Uuuh  UEEPuh  Uuuh  Uuuuh  U]USh  tMPPh  St%h  EZYPuPPh  Suǋ]Uh  EZYPu$      UtH"1]   mpi_set_secure  gcry_mpi_powm   _gcry_mpi_mulpowm   _gcry_mpi_set_buffer invalid flag value in mpi
 mpi_get_opaque on normal mpi
 lib/libgcrypt-grub/mpi/mpiutil.c !ap invalid flag value
 mpi rounding to ceiling not yet implemented
 mpi division by zero lib/libgcrypt-grub/mpi/mpi-pow.c !bp_marker !mp_marker res->d == rp lib/libgcrypt-grub/mpi/mpi-mpow.c k i==k t k < 10 idx >= 0 && idx < (1<<k) mpi division by zero %08lX %lX   [MPI_NULL] - 0 %s: 
 lib/libgcrypt-grub/mpi/mpicoder.c i == nlimbs gcry_xcalloc failed gcry_xmalloc failed gcry_xrealloc failed debug all gcrypt:  gcrypt gcrypt bug:  gcrypt bug  LICENSE=GPLv3+ crypto mpi                                                                                                                                  	                  yC  d              ,   h?      :   S       K   3  #     \   0  -    m     P     }   =          q  M                  J  l        SH  a          H        a          70         *  5    '    /     =             J             Q     M     h    U     w  3  {                    k  p         }       (  /       <  L       I  a                V  I       ]9  6     $  o4      3  "  d    A    m     V  H8  A     j           G  r       8  G       {  J       8  7         B     L   V         4J  $                    "   D          ,     !  8  F     5    $     L             W        d    ?     {  w         9          5       I  )       q>                      ,  '       J  /       <  %     !  Q,  e     3  K  "     K        [         m  J  )       XJ  '         0                  4                     /       9  G       J                 sI  )                  /             6  -  )     H         Z  e  =     k    )                                 :  w       
                      >                      &>  2               G  \         6    #  \  /     :  I  	     D  j  .    T  I  	     g  I  $     {               H  ^       W  /         -               v5          X              	               I       "    ~     2  P  d     F         S         `  X>       u  =
  \       k  K          "       f   M         	         c       3         K  &                           *  I  	     6  F        grub_strlen gcry_mpi_print _gcry_mpi_clear gcry_mpi_scan _gcry_mpi_resize _gcry_mpi_get_ui _gcry_mpih_sqr_n gcry_mpi_cmp_ui gcry_mpi_dump _gcry_mpi_rshift_limbs _gcry_mpi_copy _gcry_log_printf _gcry_mpih_add gcry_mpi_get_nbits _gcry_mpi_barrett_init _gcry_mpih_sqr_n_basecase _gcry_mpi_mulpowm _gcry_mpi_mul_barrett grub_realloc memcpy _gcry_mpi_alloc_secure _gcry_mpi_free _gcry_mpih_release_karatsuba_ctx grub_memmove gcry_mpi_set _gcry_mpi_fdiv_r gcry_mpi_addm _gcry_mpih_divmod_1 _gcry_mpih_sub gcry_mpi_snew gcry_mpi_set_bit _gcry_mpih_mod_1 _gcry_mpih_mul gcry_mpi_powm gcry_mpi_set_highbit _gcry_mpih_addmul_1 _gcry_mpi_alloc_like _gcry_mpih_rshift _gcry_mpih_add_n _gcry_mpi_fdiv_r_ui _gcry_mpih_mul_1 gcry_mpi_sub gcry_xmalloc grub_fatal _gcry_mpi_alloc_limb_space _gcry_mpi_free_limb_space _gcry_mpih_submul_1 _gcry_mpi_divisible_ui grub_errno gcry_mpi_add gcry_mpi_clear_highbit gcry_mpi_clear_flag _gcry_mpih_divrem gcry_mpi_get_flag gcry_xcalloc _gcry_mpi_get_secure_buffer grub_vprintf _gcry_mpi_assign_limb_space _gcry_log_bug _gcry_mpi_mod _gcry_mpih_lshift gpg_error_from_syserror gcry_mpi_rshift gcry_mpi_set_flag gcry_xcalloc_secure gcry_xrealloc gcry_mpi_swap _gcry_mpi_tdiv_r gcry_mpi_sub_ui grub_printf gcry_mpi_mulm _gcry_mpih_sub_n _gcry_check_heap _gcry_mpi_tdiv_qr _gcry_mpih_cmp _gcry_assert_failed memcmp gcry_mpi_test_bit gcry_mpi_mul_2exp _gcry_mpi_fdiv_q _gcry_mpi_normalize memset grub_zalloc _gcry_mpi_tdiv_q_2exp gcry_mpi_lshift grub_refresh _gcry_mpi_set_buffer grub_malloc _gcry_log_mpidump gcry_mpi_cmp _gcry_mpih_add_1 gcry_mpi_mul _gcry_mpi_alloc_set_ui gcry_free gcry_mpi_add_ui gcry_malloc_secure gcry_xmalloc_secure grub_strword _gcry_mpih_sub_1 gcry_mpi_subm gcry_mpi_get_opaque gcry_mpi_invm _gcry_mpih_mul_karatsuba_case gcry_mpi_set_ui _gcry_mpi_fdiv_qr grub_free gcry_is_secure gcry_mpi_mul_ui gcry_mpi_set_opaque gcry_mpi_gcd gcry_mpi_new _gcry_mpi_get_buffer _gcry_mpi_lshift_limbs _gcry_mpi_mod_barrett _gcry_mpi_m_check _gcry_mpi_alloc gcry_mpi_release _gcry_mpi_barrett_free _gcry_mpih_mul_n gcry_mpi_clear_bit grub_env_get gcry_mpi_div gcry_malloc gcry_mpi_aprint      R     R  E   j  P   4  t   4     6     4     6    g  <  7    K    J    @    g  "  7  6    ;  D  G  g  b  }  x  g    7        D    t    j  3  4  Q    _  v  s      }    t    i          #  v  7    D  }    }        }      i  }      "    '    ,  U  6  6  g    l  D  ~      D        D    Z  }        X	    	     
  .  c
    
      z  2  z  D  H              L  Q    Q    /    Q            ;  $    <  ;  S  "  k  2    "        1  T    y  F    6    6        6  -  6  {  )    6    7    C    7  !  e  8  "  N  "  o  Z  z  @        }    q    z    Y    }    }      $    -    @    S    b  g    Z    !        e      
  !  #  e  <  2  Z  }  g  q  r  z    ;    c    2    e               -  "  6  !  ?  !  J  !  R    Z    d      (      c      $    (    6  o  6    F    F    6  A  >    .    7        S  5  N  C  ;  Y    ~  }    r        S        M    ;  .    m      .    (    }    S            D    Z  h  V  v  Z  ~  Z            W  #  W  4  f  S  W  g  H  v  H    f            }    2        W      f     f  ,     N   f  c   f  s        W     ;     2     W     H     W     ;     H  !  H  !  W  .!  !  B!  !  P!  !  _!  2  !  2  !  !  !  2  !  2  !  2  !  ;  "  2  "    7"  !  @"    I"    Q"    e"    n"    v"    "    "    "    "    "    #    #  5  S#    #  6  #  F  $  6  Z$  >  $    $    $    %  6  k%  6  %    %    %    %  U  %  6  &    <&  6  O&  [  &    &  6  	'  7  '  6  ,'    R'  >  '  )  '  p  '  >  B(  F  (  >  (  .  (    (  .  )  Q  )    )    )    )  7  )  7  )  7  )  7  *  7  ]*    d*    i*    t*    *    *    *    *  U  *    *    *    *    *    *    *  @  +  }  +  q  ,+  P  P+  W  n+    u+    z+    +  f  +    +  P  +  }  ,  P  !,    3,    M,  g  ,  1  9-  /  G-  ,  -  ,  -  ,  X.  Q  .  Q  .  Q  .  Q  0/  /  I/  Q  `/  /  /  /  /  /  |0  1  0  /  0  ,  1    1    01  ,  E1  ,  o1    1    1  Q  1    1    %2  /  82  Q  N2    a2    t2  /  2  /  A3  t  M3  6  [3    3  t  3  t  3  6  3  7  
4  7  4  7  <4  7  Q4  7  _4  g  4  1  5  /  5  ,  :5  [  N5  p  Z5    5  7  5  t  5  t  5  6  M6  7  d6  t  {6  t  6  6  6  /  7  )  7  @  7  p  7  /  9    9  5  ;  Q  D<  8  Z<  /  =  i  =    }=     =    =    =    =    =    =    =    =    >    >    4>    9>    A>    N>    T>    >    H?    R?    W?    \?  U  ?  t  ?    ?  }  ?    @  }  @  `  n@    y@  }  @    A  Z  YA    gA  }  A    A  `  A  Z  A    B  }  ,B  	  [B    /C    AC    MC    fC  Z  C    C  y  D    D  g  QD  y  iD    qD  g  D  y  D    D  g  E  y  E    E  g  E  y  E  G  $F  g  F  g  F  
  G  i  (G    6G  G  IG  
  \G  g  yH  /  8I  Q  I  a  I  a  I  s  I  \  I    I  5  I  a   J    J  5  J  \  )J    .J  5  >J  a  MJ    RJ  5  eJ    tJ    yJ  5  J    J    J    J  k  J    J  O  J  B  J  _  J    J  k  J    J  O  
K  B  K  _  K    K  5   K  :   .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4   AK                    	   @       ^    
            %             xK  I                  -      2       K                  <             M                     B             M                    R             M                     W              M                    `              M                                  M  `     	         	              TV  F                               |m  i                                  boot/grub/i386-efi/search.mod                                                                       0000600 0001750 0001750 00000007120 13417732100 0014626 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                             4     (   UWV1SEEEEEX{( tC,< tF{H tkCL< tF{@ tkCD< tF    P   1{( tS,t@1҃{H t{L<t@|{@ t<113SDtPEjh   4MM܅uG;}|ڃ{ tS       19}t-ЋU{ t/VQs PR     e[^_]E   E   ;{ tVQs PRɃ; tVQs PRE#   E   e[^_]9}    nqUh    h;   h   h  h    h$       U5      +  f       0          J  l       P          v  u       ~            s               n                   h        P     U         c  P                P     =         L  P                P     *         3  P                             root --hint- one argument expected unspecified search type Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME search file Search devices by a file. label Search devices by a filesystem label. fs-uuid Search devices by a filesystem UUID. set Set a variable to the first device found. VARNAME no-floppy Do not probe any floppy drive. hint First try the device HINT. If HINT ends in comma, also try subpartitions HINT hint-ieee1275 First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions hint-bios First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions hint-baremetal First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions hint-efi First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions hint-arc First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions LICENSE=GPLv3+  search_fs_uuid search_fs_file extcmd search_label search                                                                                 3                                                        	              
               4              ?              K              _              s              ~                                           grub_mod_init grub_mod_fini grub_unregister_extcmd grub_errno grub_malloc grub_search_fs_uuid grub_search_fs_file grub_error grub_register_extcmd grub_search_label grub_memcmp    e                   +    3    B    `    v                                                                    $     0     <     H     T     X     `     l     x                                                                                           .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                       	   @        
                 )             (                    %   	   @       
                 1      2       H                  @                                  F                                 V                                 [                2                  d              "                                  ,  @              	              l	                                    m                                                                                                                                                                                                                                                                                                                                                                                                                                                                  boot/grub/i386-efi/msdospart.mod                                                                    0000600 0001750 0001750 00000004600 13417732100 0015375 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      x      4     (   UWVS   ]uxO WHPh   j j ww3 tx       > tQj j v~ t~ ttȃtuxRRh    jJ5PPQh$   Ph   j j ww3 x1e[^_]UWVS  ]xOOtPPhD   j   w OpPVh   j j j j 3 tx    yE8 At3Uz t*E E E E ƄPPQh\   RRQhz   Ƅ PVh   j j j j 3 x1e[^_]Uh$   h  h   h    h    h   @   <   U5@   X5<   the partition type 0x%x isn't valid Setting partition type to 0x%x
 not a primary partition Partition %d is active now. 
 Cleared active flag on %d. 
 msdos type Change partition type hidden Set `hidden' flag in partition type boot Make partition active                                                      LICENSE=GPLv2+ disk parttool msdospart                                                                 @        N  "                                                            	               4              C              \              g              s                                                         grub_mod_init grub_mod_fini grub_parttool_register grub_disk_read grub_parttool_unregister grub_errno grub_printf grub_disk_write grub_error grub_printf_ grub_strtoul ?     P     g                             6    =    p                                        $  
  ,    1    6    ;    @  
  H    V    [    b    g                         $     (      .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   p                    	   @            
            %      2                          8               D                  4   	   @         0   
            >                                 N                                  S                                  \                
                                  0     
         	              @                                    e                                                                                                                                                  boot/grub/i386-efi/search_fs_file.mod                                                               0000600 0001750 0001750 00000006450 13417732100 0016322 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      p      4     (  
 UWVS]u{ t>fu~duFP1	X  W3Vh    u
   7  P                     tPE   E    W{    }    {    jt]3G4$Gt t   =   ;PYw<$                } t%CCtRRVPPPVh   1}         t
{ e[^_]UW   VSÃ5   tMPP3v"  6߃{ C    u#vXv4$E    E;C   UC<    4>    Vt>,u PPSC48t>    ,   > ucC48t uW> u5,0QSh  P> u,WMMu>E-RRSh    $C   PPSv
C    e[^_]UVSuu   <RPE0h   4$tPPuS$e[^]UVS UE]E    UU]܉EUUE    Ut-5    E        =     5    u} uE=     u} uPSh   je[^]USPEUuE$   ]E   1Ƀ~HHZtB1QSj P2     ]Uj h:   h   h  h        U5    (%s)%s  %s %s,%s no such device: %s one argument expected Search devices by file. If VARIABLE is specified, the first device found is set to a variable. NAME [VARIABLE] [HINTS] search.file   LICENSE=GPLv3+  search_fs_file                                                               `  +                                                                       )              ?              W              f              w                                                                                                                                s                     /             A             [             f             p                           grub_mod_init grub_mod_fini grub_strlen grub_fs_autoload_hook grub_partition_get_name grub_xasprintf grub_device_open grub_strdup grub_partition_iterate grub_errno grub_register_command_prio grub_printf grub_unregister_command grub_strcmp grub_malloc grub_file_close grub_search_fs_file grub_file_open grub_device_close grub_file_filters_enabled grub_error grub_free grub_device_iterate grub_env_set    6     ;     X     b     l     u                                               #    ,    8    W    a    f    u                            )  	  q                                8    =    G    c      
    
        
                  )    O    T    i    n    s    x    }                 .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .modname                                                      4                       	   @       8	                %      2                          4                                  :                                 J                                 O                                                    	   	         	                                                 X                                                                                                                                                                                                                                          boot/grub/i386-efi/multiboot.mod                                                                    0000600 0001750 0001750 00000030144 13417732100 0015401 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      .      4     (   UMSEUCESUSUCP    1[]UWVSÁl  t        RWh   j 1Ʌ   PPPP   C\    CXC`CdChCltICm spf= wfCtfCt 1Kt9sTNLNL@NދCmCpCqCrCsCtCu   1ɍe[^_]UWVS8uh    tEPh    Su~ߍT;S=     uPVh    j      ?t	9vGOORuSXZh   j    tSwh   j    t#PSVuuGt
        G   G)ډ+wWMԉ)ƅu	Mq4+uԋOt)RPEP5    t!h0   hK   jch\   EE|uEЋEԙRPuBu
@u    MQVuu    u4GtR+G)uPj VG    &PSVutSEEWGt;G tu!WWj j j j j-VVj w,w(w$jjSPhx   j]QQj j j j jj e[^_]UWVS,    5   =   X      >  kӋ    ؅tzT tBXj   
 j )jPRh   EP5     &  uXu{xUpxjxj S5    5   W    sPj֍h   QMMԉs@Ѐ   ytn  (   CsE    Eԃ;   sLBM̉UЉBqAPrrWUЃEԋM̋BC    C    }kPPEPh    UUԃ@s0S,
C
C=    tC        t1BTt&QrXUPWUԃs8BXC4BXˡ   t?   s$RP5    W          CS K(Ɖt        j j j j j  e[^_]UE   E   E   E]    UVS5                         (                 t3s$5    (       $                             e[^]UWVSu}PPWV$   u    SPWV    1e[^_]UWVS}já       E    CECPPWu$CuS    >sNVPWu   $   t(      1$   e[^_]U]UE 1]UWVSu]@       D               tDPPh   3u    Nt"WWh   3u'    NuE   E   e[^_]3   N5H   XZCPVY5        t+QQ3WuRj h	  h
  W=     t'5    X5H               e[^_]U5    Z5H           1U1	   WVS}ăH    uE  E+E܍EPuP	   j $5    0e[^_]UWVS,} t%EWWh  0uMtEVVh   1=     uSSh  jB  uE0u%                       1    t@     ^4tVjj h   SPQEP5     tV   uYu11UJUQJQSPtVEMԃStARSWV9t1V=     uPE0h3  j    V1e[^_]U EPh  E    EUVShL  t8 uQj j hW  5RRPh\  á    tPj j S$e[^]UWVS<}G<  ?ELF&    f3  )  Gf$  G,O*W=    7  1EG,9ƉE5  O*MЃ9  AYE    ỦE;D   Er;@   vEȋỤ@   D   quSVh  h&  j]h7  G* EppEP5    t	Vx  uG*EЃx tLR@1RPuBu@  PG*MtSuW*M;D  W*UЋBR9s)QRj SF1;E}-O*_MЋQ9wq9vY)Ӊ    @;E  G0fa  W.PD  PG 1RPuBu@'  PW.G0PVuW0O.9  E    G09E   {    C   j j s PPj EP5     G  uEXu1҉EȋCRPuMBu@m  PsQu;C  EȉCG.ENVW2RW.'  <0  ?ELFutVVhd    f>    GfvSSh    W6G8O _$ڃ w=    vQQh  !  EE    GuG6EEȋP$P    G6EEȋp,9p$P H(   EG89EЉE-  w6uuȃ>u݋FN(V^,EȉU;D   svv]QuSh  h&  j]h7  G6 Ep(pEP5    +uhJ  h&  jfh7     w;@   v@   D   pRppuBu@t  PG6EЋut SuW6U;D 	  r9)VQj SE    E9E}`w6uuȋWG^NUԉE9wRr;MwKȉF(V,;Ur<w;Ev5FVu)EUԉ5    )ڃ w
E9EuPPh  EPPha  j  G<f  W:Pb  Pw,w(uBu@F  PW:G<PVuW<O:9   E    guEXussuEMB   Ps Qu;C    EC    CG:EG<9E   CCuC K$tj j s0PPj EP5     SuЉEh  h&  h   h7   EP=     u/Ruh3  j@?VW>RW:RP    PPh  je[^_]UWVSuM}U   E]L   uGtE  E   e[^_]h  T       P          urt t3tWWPRSPRh   )ttQPRh!  hW  Ãۡ    t@RRShL  $PPhW  hL  T      5P   1e[^_]UuKj h,  j h  hE  j hO  j h
  hh  8    4   EH   Uu58   X54   ÍPU	v߃A<   ]UW1VS1ۃt_\u:~xu4FUMMUtFMUt뻀\t
't"uC
 u   CF뛅tt:ZY[^_]UW}V1S1;u}1FY\u[^_]UWV1SM;u   EUM<M@9E   )EEEt"Aˊtg\uFxu@GUU܅t-GU܅t\GCGCGC므\t
't"u\CCGC듃} tC "KF ? [^_]premature end of file %s unsupported flag: 0x%x Error loading aout kludge
 multiboot_loader loader/i386/multiboot_mbi.c unsupported graphical mode type %d no multiboot header found GRUB 2.02~beta2 --quirk-bad-kludge --quirk-modules-after-kernel filename expected --nounzip you need to load the kernel first premature end of file %s gfxpayload auto %s;auto invalid arch-independent ELF magic invalid arch-dependent ELF magic this ELF file is not of the right type program header at a too high offset segment %d: paddr=0x%lx, memsz=0x%lx, vaddr=0x%lx
 multiboot_loader loader/multiboot.c Error loading phdr %d
 entry point isn't in a segment Error loading shdr %d
 invalid entry point for ELF64 OS requires a console but none is available WARNING: no console will be available to OS %dx%dx%d,%dx%d,auto %dx%d,auto Load a multiboot kernel. multiboot Load a multiboot module. module   LICENSE=GPLv3+      net video boot relocator mmap multiboot                                                              W  \          .                                                                0        6              T              _     d    s                             0                      -                                       %     2  M  n     P             ]             i                                                                                                       6  ~  V     N             d             o             {                                                      ?                                             6             E             V             b             n             ~                                                               \                              '             D             N             \             i             y               X                                   grub_mod_init grub_mod_fini grub_multiboot_relocator grub_efi_finish_boot_services grub_puts_ grub_multiboot_load grub_multiboot_free_mbi grub_relocator32_boot grub_loader_cmdline_size grub_xasprintf grub_get_multiboot_mmap_count get_virtual_current_address grub_video_set_mode grub_multiboot_add_elfsyms grub_multiboot_set_video_mode grub_memmove grub_strdup grub_relocator_alloc_chunk_align grub_multiboot_make_mbi grub_loader_unset grub_net_network_level_interfaces grub_dl_ref grub_mmap_iterate grub_file_seek grub_multiboot_load_elf grub_create_loader_cmdline grub_multiboot_init_mbi grub_relocator_unload grub_errno grub_memset grub_register_command_prio grub_video_get_driver_id grub_mmap_get_lower grub_mmap_get_upper grub_multiboot_set_console grub_efi_secure_boot grub_unregister_command grub_video_get_palette grub_file_read grub_print_error grub_strcmp grub_malloc grub_file_close grub_file_open grub_real_dprintf grub_multiboot_set_bootdev grub_relocator_new grub_file_filters_enabled grub_multiboot_payload_eip grub_error grub_multiboot_add_module grub_video_get_info_and_fini grub_free grub_dl_unref grub_env_set grub_loader_set grub_env_get grub_multiboot_quirks get_physical_target_address grub_relocator_alloc_chunk_addr R     [   /  a   $  y   -  ~   '     ;    1    .    <    $        9    $    <       '  9  ?  <  J    T  A  b     v  $    
    C                4            $  ,  .  1  $  Q  %  \  8  i     |  <        *                          ,    _  
  d    z      B    %                              
    *    M    }              (    )                  *    5    ;    @    I    O    v  /  |  $                                        <              !  <  +  <  9    ?    I    R  <  [    e    o              1        $        !    1    $        1  /  <  4  $  N    S  !  X    i    o    w                  A        0    A        0  	  A  	    $	  9  .	  3  E	    J	    V	  "  ]	  
  b	  #  g	  6  q	  
  }	    	  5  	    	    	  ?  	  2  	  $  	  
  	  #  	    	  
  	  =  	  $  	    	  
   
  #  
    
  
  
  =  4
  8  Q
    o
  
  t
    
    
  0  
    
  
  
    
  9  
  3    7    7    7  &  A  /    \  
  a    s  2        B    :    2    .    2    $      	  9    $    2  8    D    V    [  @  q    v              $        <  i    t                          4    
    C      	    .  .  g  %    8    1      
  .  b  
  g    }      B        .      4    b                          4  9  
  >  C  V    [    b    g  4  y                  .    %  `  8  z          1        .      #  B  7    Q  .    
                    4    $        9         $  )    0  9  b    o      9                                          	  $        >     <  )    .    3  >  ?    I    ^  +  l    s    x    }  &                    &            +        ,        ,   .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                       	   @       $  	  	            %      2         o                4             B                     :             D                    J             X  `                  O              X                    X              v  
                                  @  
   
         	                                                .  a                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/search_fs_uuid.mod                                                               0000600 0001750 0001750 00000006374 13417732100 0016356 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      D      4     (  
 UWVSt't y΃wq {w 9u@B҉ȍIw Jw [)^_]UWVS,]u{ t>fu~duFP1	i  VtpPu	E    I@ tRRURWЃ=     uۋMtԋȉMMЅQEWE    {    }    {    jt]3G4$Gt t   =   ;PYw<$                } t%CCtRRVPPPVh    1}         t	1{ e[^_]UVSuu   <RPE0h   4$tPPuS$e[^]UW   VSÃ5   tHF"  6{ C    u#vXv4$E    E;C   UC<    4>    Vt>,u PPSC48Gt>    ,   > ucC48t uW> u5,0QSh  P> u,WMMu>E-RRShV   $C   PPSvC    e[^_]UVS UE]E    UU]܉EUUE    Ut-5    E        6=     5    u} uE=     u} uPSh
   je[^]USPEUuE   ]E   1Ƀ~HHZtB1QSj P2     ]Uj h3   h   hi  h        U5     %s %s,%s no such device: %s one argument expected Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. NAME [VARIABLE] [HINTS] search.fs_uuid LICENSE=GPLv3+  search_fs_uuid                                                                 +                                                                       )              ?              W              f              w                                                                                                                                      $             /             9             M              grub_mod_init grub_mod_fini grub_strlen grub_fs_autoload_hook grub_partition_get_name grub_xasprintf grub_device_open grub_strdup grub_partition_iterate grub_errno grub_register_command_prio grub_printf grub_unregister_command grub_malloc grub_search_fs_uuid grub_device_close grub_fs_probe grub_error grub_free grub_device_iterate grub_env_set                            4    G    R    g    o    z                                             %    /    K    `    m                  	  6    N    b    h                  
    
  '    .  
  D    T    [    {                                                 .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .modname                                                      4                       	   @       ,	                %      2       7                   4                                  :                                 J                                  O                                                     	   	         	                Z                               
  X                                                                                                                                                                                                                                                                                      boot/grub/i386-efi/multiboot2.mod                                                                   0000600 0001750 0001750 00000032564 13417732100 0015473 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      D3      4     (   UE 1]U5    Z5           1U1	   WVS}ăH    uE  Ẻb6E܍EPuP	   j $5    0e[^_]UWVS,} t%EWWh   0uMtEVVh    1=     uSSh   j&  uE0u%                        ŋX4tWjj h   SPj EP5     tV   uYu11UJUQJQSPtVEMԃStARSWV9t1V=     uPE0h>   j    V1e[^_]UWVS}u              uE    E   e[^_]6   O5   XZFPWY5        t+QQ6SuRj h   h?   S=     t'5    X5               e[^_]U EPh    E    EUVShW   t8 uQj j hb   5RRPhg   á    tPj j S$e[^]UWVS<}G<  ?ELF&    f3  )  Gf$  G,O*W=   7  1EG,9ƉE5  O*MЃ9  AYE    ỦE;   Er;   vEȋỤ      quSVh   h1  j]hB  G* EppEP5    t	Vx  uG*EЃx tLR@1RPuBu@  PG*MtSuW*M;D  W*UЋBR9s)QRj SF1;E}-O*_MЋQ9wq9vY)Ӊ    @;E  G0fa  W.PD  PG 1RPuBu@'  PW.G0PVuW0O.9  E    G09E   {    C   j j s PPj EP5     G  uEXu1҉EȋCRPuMBu@m  PsQu;C  EȉCG.ENVW2RW.'  <0  ?ELFutVVho     f>    GfvSSh     W6G8O _$ڃ w=   vQQh   !  EE    GuG6EEȋP$P    G6EEȋp,9p$P H(   EG89EЉE-  w6uuȃ>u݋FN(V^,EȉU;   svv]QuSh   h1  j]hB  G6 Ep(pEP5    +uhU  h1  jfhB     w;   v      pRppuBu@t  PG6EЋut SuW6U;D 	  r9)VQj SE    E9E}`w6uuȋWG^NUԉE9wRr;MwKȉF(V,;Ur<w;Ev5FVu)EUԉ5    )ڃ w
E9EuPPh  EPPhl  j  G<f  W:Pb  Pw,w(uBu@F  PW:G<PVuW<O:9   E    guEXussuEMB   Ps Qu;C    EC    CG:EG<9E   CCuC K$tj j s0PPj EP5     SuЉEh  h1  h   hB   EP=     u/Ruh>   j@?VW>RW:RP    PPh   je[^_]UWVSuM}U   E]   uGtE  E   e[^_]h  $                  urt t3tWWPRSPRh   )ttQPRh,  hb   Ãۡ    t@RRShW   $PPhb   hW   $      5    1e[^_]UuKj h7  j h2  hR  j h]  j h   hx         E   Uu5   X5   ÍPU	v߃A<   ]UW1VS1ۃt_\u:~xu4FUMMUtFMUt뻀\t
't"uC
 u   CF뛅tt:ZY[^_]UW}V1S1;u}1FY\u[^_]UWV1SM;u   EUM<M@9E   )EEEt"Aˊtg\uFxu@GUU܅t-GU܅t\GCGCGC므\t
't"u\CCGC듃} tC "KF ? [^_]UMSEUESUSUCP1[]UWVSÁ\  t        RPh   j 1҅  PPPP      B    B    fB  BBBBBtUB f= wfB fB  z 1ɍ"B9sbFF AF!BB B!B"B#B$B&   B%B1҃e[^_]UE<   E4   E8   E]0   UWVSHh   á    d  Qh   Su~	]ԍL*Suh  j!  Eԁ8PRtE9Mv  ǋP@G=*uޅuڋE1,       E    E   pE    E    E    E    f   Hf   $    F   FE1m;E   Lv&MЃSEԉ,   Eԃth  p   с t@봋FE   EVFuetGE   >Mu5E   ,Fu&EЃS,   Ph  j  FEЅ,   } u#  SXZh  뺄	  Wu+uwE)+GEЋG)хMuE@4EԋE)EԋWEԅt)PVEP5    t/h  h  h   h(  E$E   uEEЙRPuBu@tPuuu=     tS       GtAM)W})Pj W&VSuutS^} tE    EtSSupppujQQuj j j uj SXZh@  je[^_]UWVS,=(       (      u}(   PEtWj Vj PWSEEԃx2uE9(   s(   (      룡(   ?  % (   \   T   5X   Eԡ<   8   eEЃe@kEtP1ҡ    1ɅtxT txX (   3  ]jj EEjQQj EP5       uEXuu؃UFEء\   F   PVP5P   FPFX]C   C]   jhZ  PC=d   1҃E;T   ]sE   GUԃCGCGCPwwCPCUԃBE؋?밍CE   C   C    kCPPEPh  [<   8   ]؍PS]	   P50   CP<   C8   C4   C[]؉]C      
C
CC    E؅t;{T t1}   CXGPsXsTGPGE؋=L    t/E؋H       PD   E@   P@   PETt        E    }؋    @   PGEt*G   G   QjPGPGE؋}t,   HORpPGPGE؋}   (   =,    GEuMQPj GPh(    2MQPj GPh(    PPhj  jÅۉu`EGEG(   HE؃=,    OEt    E@   E     @   EF    )1e[^_]UVS5P   \       X       T       d   P       L       t3s$d       `       e[^]UWVSu}PPWV$P   u    SPWV\   1e[^_]UWVS}já    t|ECECPPWu$CuS    >sNVPWuX   `   td   T   1`   e[^_]UD   @   H   ] ^  &        (    filename expected --nounzip you need to load the kernel first premature end of file %s gfxpayload auto %s;auto invalid arch-independent ELF magic invalid arch-dependent ELF magic this ELF file is not of the right type program header at a too high offset segment %d: paddr=0x%lx, memsz=0x%lx, vaddr=0x%lx
 multiboot_loader loader/multiboot.c Error loading phdr %d
 entry point isn't in a segment Error loading shdr %d
 invalid entry point for ELF64 OS requires a console but none is available WARNING: no console will be available to OS %dx%dx%d,%dx%d,auto %dx%d,auto Load a multiboot 2 kernel. multiboot2 Load a multiboot 2 module. module2 premature end of file %s unsupported information tag: 0x%x unsupported tag: 0x%x load address tag without entry address tag Error loading aout kludge
 multiboot_loader loader/multiboot_mbi2.c no multiboot header found GRUB 2.02~beta2 couldn't retrieve memory map  LICENSE=GPLv3+      net video boot relocator mmap acpi multiboot2                                                                              e  \          .                                              	              
             6              T              _   q      s                                                         0                      ;                     .             B  L  %     ]  [  n     {                                           
                                                                     .        F         a    V     y                                                                                             M                   2             J             a             p                                                                                               #                               *  h        E             P             e                                                                                                                  grub_mod_init grub_mod_fini grub_multiboot_relocator grub_efi_finish_boot_services grub_puts_ grub_multiboot_load grub_efi_system_table grub_multiboot_free_mbi grub_acpi_get_rsdpv1 grub_relocator32_boot grub_loader_cmdline_size grub_xasprintf grub_get_multiboot_mmap_count get_virtual_current_address grub_video_set_mode grub_multiboot_add_elfsyms grub_multiboot_set_video_mode grub_memmove grub_strdup grub_relocator_alloc_chunk_align grub_multiboot_make_mbi grub_loader_unset grub_net_network_level_interfaces grub_dl_ref grub_mmap_iterate grub_file_seek grub_multiboot_load_elf grub_create_loader_cmdline grub_multiboot_init_mbi grub_relocator_unload grub_errno grub_memset grub_register_command_prio grub_video_get_driver_id grub_mmap_get_lower grub_mmap_get_upper grub_multiboot_set_console grub_efi_secure_boot grub_unregister_command grub_video_get_palette grub_file_read grub_print_error grub_strcmp grub_malloc grub_efi_get_memory_map grub_file_close grub_file_open grub_real_dprintf grub_multiboot_set_bootdev grub_relocator_new grub_file_filters_enabled grub_multiboot_payload_eip grub_error grub_acpi_get_rsdpv2 grub_multiboot_add_module grub_video_get_info_and_fini grub_free grub_dl_unref grub_env_set grub_loader_set grub_env_get get_physical_target_address grub_relocator_alloc_chunk_addr             !   &  (     .     7   B  U   <  r                       3                    =    7  %  ;  /  ;  9  ;  a    f    x  6        F    ?    6    1    6    '        =    '  !  6  B    H    T    a    t  =  ~  7             %        &    :            9            D    6     '        &          '  B  /  '  F    R  !  d    i  E                    '        A  w                              8        G        "  <  1  u  (    <    4    "    1  p    u          F    "    1      B    p                    %    *  8  G    L  G  d    i    p    u  8                "    1   	  (  n	  <  	    	    	  4  	  "  	  1  %
    1
  F  E
  "  _
  1  
    
    
    
    
    
  8  
  '      
  =  &    .  '  7    >  =  p    }      =                                            '  !    &  C  .  A  7    <    A  C  M    W    l  .  z              )                    )            .        /        /        2    '    0    *  <  @  S    [    c    l      4    '    1    A      	    Z          A      
      A      >    X  A  _          G                8    A        "  1  1  :  '  F  A  K  '  m  (    #    A    <    -    A        =          )    5  4  M  5  Y  A  n    u    {                                      >          E    J    `    l  F                                  F    h    m  !  x                              +    ,      4    M    Y    h    |      2    '                >      7    @    \    a    {      5        =                  &    0    9  A  ?    H    R    g  A  q  A  |                  4        '        $    4    '      )  4  <  A  A  '  [    `  $  e    v    |                                                         .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                       	   @       l(  0
              )                                 %   	   @       2  8               1      2                         @                                  F                                 V               l                  [                #                  d                                                                	              P#                                 2  m                                                                                                                                                              boot/grub/i386-efi/search_label.mod                                                                 0000600 0001750 0001750 00000006320 13417732100 0015766 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (  
 UWVS,]u{ t>fu~duFP1	d  VtkPu	E    D@tRRURWЃ=     uۋEtRR3PYuEWE    {    }    {    jt]3G4$Gt t   =   ;PYw<$                } t%CCtRRVPPPVh    1}         t	1{ e[^_]UW   VSÃ5   tMPP3v"  6߃{ C    u#vXv4$E    E;C   UC<    4>    Vt>,u PPSC48t>    ,   > ucC48t uW> u5,0QSh  P> u,WMMu>E-RRSh    $C   PPSvC    e[^_]UVSuu   <RPE0h   4$tPPuS$e[^]UVS UE]E    UU]܉EUUE    Ut-5    E        =     5    u} uE=     u} uPSh
   je[^]USPEUuE   ]E   1Ƀ~HHZtB1QSj P2     ]Uj h3   h   h  h        U5     %s %s,%s no such device: %s one argument expected Search devices by label. If VARIABLE is specified, the first device found is set to a variable. NAME [VARIABLE] [HINTS] search.fs_label LICENSE=GPLv3+  search_label                                                                 l  +                                                                       )              ?              W              f              w                                                                                                                                                        '             1         C             W              grub_mod_init grub_mod_fini grub_strlen grub_fs_autoload_hook grub_partition_get_name grub_xasprintf grub_device_open grub_strdup grub_partition_iterate grub_errno grub_register_command_prio grub_printf grub_unregister_command grub_strcmp grub_malloc grub_device_close grub_fs_probe grub_error grub_free grub_search_label grub_device_iterate grub_env_set 6     H     q                                               (    0    9    E    d    n    s                                5  	  }                            (    D    I    S    o      
    
        
              %    5    [    `    u    z                             .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .modname                                                      4                       	   @                       %      2                          4                                  :                                 J                                 O                                                    	   	         	                d                               
  X                                                                                                                                                                                                                                                                                                                                  boot/grub/i386-efi/nativedisk.mod                                                                   0000600 0001750 0001750 00000010154 13417732100 0015523 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UWVS    P   uh    h   j;h      BHw9     u  t$u 2h4   h   j\h    }SuS    Z@ u*S=     u2PwhM   jRRVSЃuɃ> tăS    1e[^_]UWVS<} E    uE    E   hg   EuQhg   hn   j   EĀ8(EuRRj)P}t@EEP  11UL  u=     t11ɍUtu    !  P1Puuh   h   h   h    ;]}4E5       PP6UR  v(U1;u}(tCt	SЃ        C(FӋEЅu} tMU̅E    ME1VVEEPh          UԉM    uYu1  PE4uh   tV4$EUu81uZu9              CB4UPEUuR*QuUPRU;EtR4$mREMXZQVyBt@    4F9e[^_]UWVSt't y΃wq {w 9u@B҉ȍIw Jw [)^_]U   WVSuU]ct=    u
        1   PPuVh   h   h   h   S t<E8u0RsVh   YXWhg   <$C   t#EuPPVh   C   Ct	1{ e[^_]Uj h   hI  h  h        U5    Skipping non-disk
 nativedisk commands/nativedisk.c Skipping native disk %s
 %s does not support UUIDs prefix variable `%s' isn't set uuid_prefix = %s, uuid_root = %s
 %s/i386-efi/%s.mod checking %s: %s
 (%s)/%s root Switch to native disk drivers. If no modules are specified default set (pata,ahci,usbms,ohci,uhci,ehci) is used [MODULE1 MODULE2 ...] pata ahci usbms ohci uhci ehci    _  d  i  o  t  y  LICENSE=GPLv3+  nativedisk                                                                             f  +                                                         3              B              S              m              x                                                                                                                                                        /             H             Z             g             u                                                                  grub_mod_init grub_mod_fini grub_fs_autoload_hook grub_xasprintf grub_device_open grub_file_get_device_name grub_errno grub_register_command_prio grub_dl_unload grub_unregister_command grub_file_read grub_print_error grub_strcmp grub_strchr grub_malloc grub_file_close grub_file_open grub_real_dprintf grub_dl_load_core_noinit grub_device_close grub_dl_head grub_fs_probe grub_error grub_free grub_device_iterate grub_env_set grub_env_get      -     2     9     >     t     y                                                           .    =    B  !  R    W    ^    z                                            0    H    ~          	        	        	                
  (    3    J    S    c                                                                       
  
             ;    @     o    t    y    ~                                                    .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .modname                                                      4                       	   @       h    	            %      2         ~                8             \                    4   	   @          0   	            >             t                    N                                 S                                                     
   	         	              	                                 0  \                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/i386-efi/usbserial_common.mod                                                             0000600 0001750 0001750 00000004064 13417732100 0016726 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      ,      4     (   UkUiE  E@0E]    UEkH<iP8  P4B,    kH<iP8  P4B(    ]UWVSH}kuiE  D h   Eu6   QQPPh       CuS1  E{4E    CE@9E}KkEF$HPyu,}t9Mu!   u}t9Mu   E멃    t    tERR@PW1    t    tts$9E}̾       ỦC8EC<PPCRS$kS<iC8  C4@,    kS<iC8  C4X0   e[^_]UVS]u   ;   }P   D@IPPEPj
C@Pj@   s4 t!E􉳀   9Ɖ   }F   D3@e[^] %                        usb%d   LICENSE=GPLv3+  serial usb usbserial_common                                                                                                                                	                  Z       2              I              X              m   $   6            $                                      |                                  grub_usb_set_configuration grub_usbserial_attach grub_serial_unregister grub_xasprintf grub_serial_register grub_usbserial_fini grub_usbserial_detach grub_print_error grub_zalloc grub_usbserial_fetch grub_free grub_usb_bulk_read_extended                                                     U  	  }                    ;     .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4   s                    	   @       8     
            %                                 -      2                          <                                  B                                 R                                 W                                  `                                                  P     	         	              H                                    i                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/net.mod                                                                          0000600 0001750 0001750 00000250730 13417732100 0014156 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      O     4     (      Uu    ]U   PuppR1U1]US]5   $]]   UWVS           SPtBǋtQQPh   tPV    SPtBǋtRRPh   tPV[<Be1[^_]UVS    t3    StPVs4h   4$[<ɍe1[^]UWVS5    tn^8tbCsEtHCsPUtPR3h   URtW[뚋v<뎍e1[^_]UWVS}5    t7^8t+PPW3u}    e[^_][ыv<ōe1[^_]UQRPUWVS0]}WRPEԉU   EMU     </u[PAj WQUЃ=            M9        )   EBUXq   B   UE7hPWVutdEU    </u8Qj WzW=     u9<w5U: u-FF t   uFF t    1Puh   j e[^_]US h8   t:RRPhN   tP1SEE1]US h8   t:RRPhY   tP1SEE1]UWVS}5       ^8   PP3hY   XY7URUuCSU@;RXZ3hN   YX7URUuCSU e[^_]R[kv<Xe1[^_]UWVSP]jhh   S       uCQQhm   Su   Ec   E   7RRj,St@)ىMESE   Eރ} uPPhq   j    PPj EPEM֍UE    }tw} }t7Uֹ   G    tUPP    WRUPUu>R<ލU       tPP    WRUPUuR<1   u!       uPSh   j   }u*PjVh   uh   @    @   _}uMWjVh   u   @    !PjVhc   u   @    @    QSh   e   RRPpp$0   t-uuSC$   1e[^_]UWVSujLá       UL   CxVGC@x uSK   PpVSppR PPh   Su#C@p$    EL   V1e[^_]UEx uE   E&   ]1]UjRPE    u	PPh   QQURPUtRPh   j1҉UWV1SӃ(h (  EǅtI    (  ڋHv (  RWuppQ WEE)볃We[^_]UVS]CsSHAI 9rw9v)I9rwJ9sF   RPSppR   YPpKIqSppRS Ct   PuuSppRe[^]UWVSÃ,U܉MWWj:S  Sz  Pjh/  Sux߃)GPEue[^_]EESU8 PPj/RUԅEu(Vh3  h^  jghd     CA})׃v4{[u.|;]Gu$Pt-OS\D> 0GPUUԅu
.)> uuVYuGPPj/St_  }RVWhr  M܉$M؉5   <$$$Vhx  h^  j^hd    럍e[^_]UWVS}u_8t9Ctl[jZu{CG8C    > u    C_8WCuVsPu/Q1Qh  j&3Xu뼍e[^_]UVS@u}E        E    t SSh  "QQvs4t[<uRRh  jbPPFURURM΍UouCEEt
   U   UƍE4EuP6S1u    e[^]UWVSHuVUЉE̡    @<RURh   Ph,  EЋ    M  }   M9tI<ME;puEċXE;puX    V1}ЃÊfKCfM   <uMCUl<u-uˍS   E+S   EE    '<u7uS   EE@E E   EjWp4PƊ<u
{  EI{8    E         E     fzf
fG9rPftKf;u?GPUULMU> 4$)uS8   Eԍ]ЃjSE@E E        `  PGPGPGPh  Ph  MXZh   WMtWWj/PuE   C8   5   uЍPEnS8   E؃$[jVE    Ep4P   SS0h8   5    tt^8thPP3hY   j h{  P<$<$ZY3hN   j h{  P<$<$[딋v<눍e[^_]US5       pHfXu[uVXSh  h  h/  hd  jh   S   t,Pjh	  S1҃ut1҉Ћ]US5    t@pHfXuux$ut1]UWVS<EPj h   j|  1E܍PU  4  Pjh   4Ei  Vjh   4   Eȋ/        EtQjh   PEE    h           EtRjhX   PEE    H           tPjh8   RUU1Ƀj@MUUMu-S    7  X<P    ܋V,N0ẺFEȉFEĉFEԉFEF$EЉF(    F<PPWh  F8    5    F4GLEPj hx   jƉE   EPU   6   P$E    8u0Pu @f@ u @f@ E       tS2UZYPWU̅tR<Pjhx   6UU̅t}    JB WuS    u}   CVjjPE    t"s4h  hW  h  hd   Ct8WjjPE    t"s4h`  hW  h  hd   [<vJB1Ph8   h    h      _      ?  $  h8   h    h  $  h  j h8   $8   j h"  h  $  j h  h  $  ZYh  h  h1   j h  $  e   [^_]UWVSh  5    tn^8tbRR3hY   j j P<$<$Y_3hN   j j P<$<$[뚋v<Pj j h  $  j j h8   $8   j j h  $  j j h  $  j j h  $  $                   e[^_]U   ]U   ]USP]C@tPCC@    C    C    C4    C8    @@    @     1]UWVS}uW@t^} tXtTG@HX G4M]1M];_8rw9v+EtUPVRuG1ҋHqQ 1e[^_]UW  VS   d    }\E
  @<UE  E  tE  E%  u  ESPEPVtE8 u\VWh6  \VWhB  p    p   pV`ÍD $ǉXth11yp      ` ta1Ƀ`)`ҍNl   ˃  JÉȃ?	؃   x  lh uXu)fC  p1} 4$j EEEEЉEEEth  jh   ]E   E    E    E    E      P4      uc>xVȃ<uȃ      ȃ<uȺ   ȋl<upȺ   u|hw=  vP=  vD  
ff fWff fWhll?   hfG1i   _dQQVPPt&tuPDZuVhr     =    udPPEuVj h  jh   EtE    E    E    E    E    E    P4 t#tuPDXuWhL  VEEPPdVE    P    Pt3tuPDXuPDXuVh  j   =    udPPE0t}EątPtP0tuPDXuPDXu    uh  Ѓ\Pjh  ЃVPj)   } t\E1     @    ;u}EEč<    SSh  4u"EQj
j t8MA    F붋EątPtP0tuPDXuPDZu1e[^_]UWVS`uE]PEPF@0Ft%U: u@ۋ  t  WRPh  @ۋ  t  QRPh  tMh  XZWh  <$FPEJ@j jSZ  
    N  F}PEQJ@Wj S%  u}EEX    @<EuRRh#  j&   EURj h  jh   UP4E EEE    E    E    EEԉEPPu}E  S    St$EEuPDURhF  j/=    uSSEE)wEuPDEUF<    F4EV8F@F@@    @     1e[^_]UWVS`}u]֋Gjj VE} E   E  tbGMSQjPEE   P=  uhX  tPPWhy  bPjS}WfE  }Wjj SE EfE  ]EQQVPP=  ttRPh  je[^_]USP]CC    C    C4    C8    @@    @     C@tPC@    1]UWVS<Eut^ ^K89 Mu!RRPSSth  EĀx tjVjE   U   U}PWjRR   PEjPV   QjVWj WsVjE   UtzU}PWjRRuYERjPVtNPjUVRUjFPWUăWRSS0th  Ve[^_]UW1VS<8[UĉEu@f EԋEԀ8:ux:t1   @Eԃ1ۍMԋEԀ8:u	@ډEKHURjQPMM=     Ut           ufD]؋EԀ8:u
@EC~tt=E؍P))ڍD PQDUPM   M)؃Pj QPjEPutEԀ8]u@EԅtEԉ   e[^_]UWVSLE} ]E    E    tp pF8x Ct0@}ȍM tIE8 uAPjWEP/@1Uȋ EQj
RuȉUUEȈD=GuRRj j uEPj EPj j jVV0tPPh  j0EUC<    C@    C4CS8@@    @     1e[^_]UWVSLE} ]tp p1ҋEUUċS@EECt0Qu@PRuCM]@HX Ef  @P PtPPh     V8z t- }ȍM@tFE8 u>PjWEP, 1UȉEPj
RuȉUUEȈD=GuWWj j C@pEPj EPj ujVVK809MċUu;S4tVVh	  j&n=  uXRuSSh+  jJQQj j C@pEPj EPj WjVV0uPPuWu 1tRRh?  j1,CUM@PH t{@EW뺍e[^_]UE@ujjPɅUE@ujjPɅUWVS(h   E   tDP}Wj VV=  uSXuPWj VV tS1ۍe[^_]UVSjE   t PEPjVVڅtS1ҍe[^]UWVSE@+t]PpU1;U}Dk}Ht1I?	t+!9u%]s8t~ uPvB뷃P1e[^_]UWVS]} u{uAFt#PjBPSUU$CC	C
C FWjjPe[^_]UWVS(ku~Wt;1;U})EUMPhS  WQMUBD3 1e[^_]UEVS@tPPCHPsD$1e[^]UVS]jt$PCPCPCPPhY  jV e[^]UWVS,E@K  @p   PEt1E       V  x uMԋ@uGEЍGPE؋<$EEGEȋG1t1Ƀ9       )σu} Euq}    }    uXuZuE܋E;Fp   Ek}~tE    @8+A hu} uEԅtMPEWuSp4Uhe  TfMu؋UCEWuq4hw  )EMu؋UCEWuq4h   ]}    V1e[^_]UEVS@tP$1e[^]UWVS1ۃEu}E    ERj Wu=     t        M9.t	uE* t1MU	Ut9.uCAMuEEPjEPutEH   e[^_]UWVSE@X2  h   1E!   E܉M   FۉEffEt] $=  wE   
 $  J?ɀJ?Ȁ?ɀJB?Bu1|wEA  wEJ?ȀBN (  v> $  w?B,΃BE?ɀJ?ȀBˋu WE1e[^_]UE@ujjPɅUE@ujjPɅUWVS(h   }E   PWj VV =  uSXuPWj VV tS1e[^_]UVSjE   t PEPjVVڅtS1ҍe[^]UWVS]} u{u$FtPSPC@FWjjPe[^_]UWVS<E@   XpE    ]]9]   kM!HtQ    }@qu]ԋ_]Ћ_@]̋_Dy]ȋY}ċy}   @   )щ t1E    E    #}#u9uD;uu?Űu؋}܋M!!;Mu*;Uu%UZ8t{ tPH[E,P1+   )։ t1u؃}܉oe[^_]UEVS@tPPCHPsD$1e[^]UWVS8j(   11}u   EfpftDt:CPh  jWMЉUXZWS<$UԃMÃuu:Cu
:C0Fu 1e[^_]UWVS<E@  @p   PEt1E    lW  x tU܋@uEE4  EE(  EE   E	   uXuE؋E;Gpe  kM!OtQMMM܉EԍA$M܃E    YEEċAEAEAEAEЋAE̋AEȋE@89} bUЋĔ  	u1E	u*y @u$Eu܍^4Ej@up4h     Eu܍^4A PEup4h  iEEuE	t$Euԍ^4A PEup4h  6EEuEEEuԍ^4A PEup4h   u]    W1e[^_]UEVS@tP$1e[^]UW1VS<E8[Eu@f EԋEԀ8:ux:t1   @Eԃ1ۍuԋEԀ8:u	@ډEKBURjVPUă=     t           ufD]؋EԀ8:u
@EC~tt8E؍4))QD PVDUP   )Pj VPjEPutEԀ8]u@Eԃ} tEԋM   e[^_]UWVSE@
2  h   1E!   E܉M   FۉEffEt] $=  wE   
 $  J?ɀJ?Ȁ?ɀJB?Bu1|wEA  wEJ?ȀBN (  v> $  w?B,΃BE?ɀJ?ȀBˋu WE1e[^_]UWVS       $$   }    Pj$j dP$   E   4 74@4@4@4@4E$ZYd@(QPP^4t/WWSh  hPPE0$p4  H$@(VVj PPt
SSPh  !$U@(QQRPtRRPh#    $X8t{ t[PjEPPPjEPTPۍLu8$PPs4h>  jVǅL    PSWPCjVsPQjEP<V_XC8VsP$Eq(j WPV ǅ8    V  =     8P   PW VV ur89tf9uYIuQtMj  uR RjPW $@떃R18tPPC8RsP$@<	e1[^_]UWVS       ǅt          } @<p   j	f  f@ f@ ;f@ ||EЋtZYUĉE؍EEC0RE   PE   E    E<   E    E    E   fE E    E E P4$t)PPWhF  VPPE0s4  2C0PPt
VVPhb  C0UQj RPtRRPh#  ]  s8t~tvPEj}PEPE@E E   u2PPs4h>  jWPSllRPFjWvPUC0}j WrE    PP =     E   PMC0RWqlPP  lu}1trRd@9t5f9 ulRjQ}WYXFWvPltRpuP0XuP0[<tc1҅ke1[^_]USBHz t[]UPJ<P
tHJ@         ]U1]U1]á    Uuz  ]U1]USP    t${@ tC@t	SЃC@    1]U1]UQRPUPJHuHPuHQPUS]5    $]]    UW1VS1ۃ,UԉEPj EPu=     t        FM.tt' u1	t.uCAMt뤋UԅtEH1   e[^_]UW1VS<8[UĉEu@f EԋEԀ8:ux:t1   @Eԃ1ۍMԋEԀ8:u	@ډEKHURjQPMM=     Ut           ufD]؋EԀ8:u
@EC~tt=E؍P))ڍD PQDUPM   M)؃Pj QEĹ   UtEԀ8]u@EԅtEԉ   e[^_]USh{  t0RRPh  tPPuSS1]US h{  t:RRPh  tP1SEE1]USh{  t0RRPh  tPPuSS1]US h{  t:RRPh  tP1SEE1]UWVS˃tsh  h  hO  h  st)Ph  h  hW  h   1H=    u
        N39s   sS) Ze[^_]USR]C@PtrC@@Ջ@SPXC@p1]UWVSujLtHUL   JC@@    C@@    CxVGC@x u
       QQ@VSPtHC@PtrC@@Ճp$   RRh   SuVC@PtrC@@~Ջ@SPXC@p$    EL   /V1e[^_]Uj uQRPUEx uE  E&   ]1]UWVSÃx<    x@ u-@@tSЃt           C@   1
~	t? ugCSPuCHSLIQFQSP    t.RRh    Ph  h  h_  h           due[^_]e[^_]UVS5    t>^LNH]M9rw;ErND1M]9rw9r	1҉6뾃[^]UWVS}}tE  E   e[^_]        t8PP7s us $> t6če1[^_]U}VuS    tE   PP6stuE&  E   e[^]CPtE  E   ߉3s$1e[^]UWVS jh=  uuEpRRhB  uu5    E   E8  =PPj,ut+MpMu5    EEEu	PPhF  pPPj:VEo  PPj[Vt]PPj]Vu	PPh]  )1x:u-Wj
j @P=  ~QQhu  j   )RFRVS   E܍xPPj:WtTVǍ@$   [@:D;]D; 1   PtGu?-t1G   Pj
j Wt( w=   vP   Ph  j3" w=vPPh  j=  PPE)PV1VÅ   1ҋ5    toPuuvUU܅uOFM< uCj0u	S   px@$0  @    @     @(       6덅ub}u\Qjuh  u
h  Pjuh8  u$h8             !Ruh  j$1e[^_]á    UVS]t019Xutօu1{@ tC@t	SЃC@    ]e[^]UWVS]uME    {TtE܀8 u   nM܉tE܀8 u   NRRjEPEPj j V u3} uPVh  j E   ߃P1e[^_]UWVS]Eu{tJU   </u.PBj VR=     CuE8 tt        u	C    [EutLU   </u.QBj VR=     CuE8 t        uC   1Puh  j e[^_]U   WVS`U$} uUU}}1UUuUUU    t@E    EE9E  Uԋ]ء    U1҉]q  } t
x$ Z  }9xN  t
t:?  H1ۅt )ˉكHuff1   X@/@   )ٻ t1ۉ]uE    E    -   )ٻ t1ۉ]uEEHp]}ffff11#M#u	uhHp]}ffff11#M#u	u*t$};zrwtuZ9Xz9x~ uE  E"   Nz( tT} u}r,   B,r,   }EEB8EB<EE  E!   `[^_]B,U`1[^_]UWVS,]}  r*7  C0   SEU}E  e[^_]UE t%  E    u܉Euh#  jWWǃuCS0   EUUكE t%  E    uԉEuh#  jWWǃuE1RPh)  j'CRRRRPh.  j(W Ph:  j(We[^_]UWVSL    u  PPs hR  {tPr6u|S   EE   .WW}WVsWhj  ]h      Y_PhV  ECRRsRRRPhZ   hq      ZYWP{( t'h  }ZYC,WP<$    PPC,ph  h  e1[^_]UWVS]S v*E  sh      VSPR1h  UU}҉C9s'D3FMPEh  )PWMэe[^_]UWVS       u`t.PPVC(PCZYWPWVsh   ΍e1[^_]UVS`    ut$PPVCPVsh  ؍e1[^]UWVS   jdM&  U@   x{(EU(   EsuCT    CX    CPQQVW_Xsh     t:u _@RRVWh<  j W<$<$Y_VuXZsh  t^t:u _@PPVWh<  j W<$<$C@<    C    tX    1e[^_]UVSut,PMPUuu{uS1e[^]UWVSUM2;1rI   wEB:Ar:w;< vh      WVPPWQRÃe[^_]UEUVS0;2rH   wHtr?uSjVjRPh      ZYVP1ۍe[^]UWVS1ۃ: u1-ڃ:uPPWRuD D  ͍e[^_]UWVS]E}uS\Ettre[^(   _]{\ uh D  C\ksXD(   s\   FUF   CX@=   tCXCX    e[^_]UE8uxtUR\   UWVSM}]uy   +t'   A  Qu6Q   Qu(G@CG@CQPjS   =         G@C3C3CqyffffCqyffffCAQǉ։C	AC
#GMP\Mtp
   E       tr.u9PPQWMRRQWMMEuh-E  E&   JEE	  E&   e[^_]Wȃ\tp
   E#	  E   e[^_]Ee[^_]UWVSHu]vf$E  K1C{
E   	C   E  E    		C	1	ъS	f	цf}=    M܅t29wu)PPSG(PuPPEPGPto?ʋVEQQSFPt$O	  RRPS<$ǺQ	  MЉPPEj S(1e[^_]U   UEEUf 9uU踀   JuJu1rBHuUWVSu}~   uFPtxjDá    tbRRvhW	  C uS    6V   C   CR{C(    s,PPSh    1e[^_]U1WVSU}z   Zu)ۿ   y    @t             jDu    pERRphW	  F uV    A    )!؆F   ~F(    FEF,PPVh    1e[^_]UWVS,u}    tPPh`	  !WWvstuRRh	  jTPP}Wvu?C8tSShy	  jσPCPWS6 tQQjP    e[^_]UWVSjDá    tTuC uS    ,E${   uC(    C,PPSh    1e[^_]UWVSjDá    tXuC uS    0{   u{,C(   u$PPSh    1e[^_]UWVS<u]QQh`	     WWEPsXZh	  su>t9QQuVsuu$   u3@Q5    tRRsvt6Psh	  jV   u3 e[^_]UWVS}uuh	  u    }:u _@uGPuS    FU\> PPVSh<  j S$$4$e[^_]UWVS}uEU+EU w$9s u    tމ؉> t[^_]UWVS1ۃ,E@UԉM܉U؋pE    F,EЋF   xM܋G+G9vËE1)]]@H    YQ tuSj j j Ѓ } tWًE0]؋WG)9uWF Ӊ_} t1eF@t`uЃSF@tuЃ~( u8CkRRu  P(Pvh	  jEe[^_]UWVS,EuEԋE^NEЋFPBE܋B 9u	;M  9ËzrRw;MvK}t0zU܉EUtW?B+BEU9]rw9Mr+M   PESQVGtWSQVЃ   FM]@Pt$rF@@M]ɋ@VPF@@    F@@    F@@    @     F@@(    FZY@PpVRMu&1҉}    uMЉUԍe[^_]`e[^_]UWVS,    E    t%} EEQQ0st׋E܃    S$ǉEEtt    E    ?u[u      } ~!EVV0stu  ERR4    E<0CPSEtuuЋsTQQu؍FP   6uj8   sg$F4SXEZPPt&O	  PPWu<$Ǻ	  U؍F(   qCTsT1EЅ0E   ȸ   1;}t"Mz0 uE41Gمt11?QQj SNuEz0 uER@ph 
  jC;]uЃuXue[^_]UWVSxEEPƋE0-E    D0E  sH!)ĉsh
  QRUU$u)PPh,
  uXEZPC(PE/QQPu1Ҹ   Mlu  :u -@u1Ҹ   MB   CtB      S   EE   UPPREUPUSCRRRRPh0
  j(u    M   uU\:u -@uRh  j(u1Ҹ   Mxu'QQh  RPh	  j&R1E0    e[^_]Ã=       U          z  hO
  A
  P    z  $p
  8   c
  /    z  $
  4   
      
  $
  0   
      
  $
  H   
      
  $
  $      (            Ph=  h<  h+  $+  h=  h<  h>  $>  h@  hg@  hQ  $Q  hp?  h?  h`  $`  
  Y  
  $
  p  -`  $  H       E  $  ,       [  $  D       D  $?  @   1  ez  N  $O
  <   A
  Ez  P  $p
  8   c
  %z  P  $
  4   
  0   h,  h<=  h=      E  ZY    8D  hW  h\  L   h<  j h\  $\  (      á(   /  UuT58   Y54   X50   X5H   X5$   X5       Pj j h+  j j h>  Z5H   Y5D   X5@   X5<   X58   X54   X50   X5,   $0  $            FZ5L       8D  (       U1ɉWV   St11CiƧ    )  u׉1ҹ  Ȼ  1[^_]UWVr  S1ۃ<;d   sxkh   D8t rt#u1h  hs  h}  h      =h   CPPEPWVEPh  뀍e1[^_]UWVSÃ,}MMU؅t    E+E؋uE    @E;]r12  E9E|u8t	tH;ut
<t    1?    tS9UvS?]E	늅uE׉EЍCU܉(MQPWCPM܅tV: MB;Ur;Us:.7B   ft}t.tUBUtu1"RMRPVMtp .t?\e[^_]UWVSLE]@xEEP9   EKf9   @yxxutAufq1f)C   V9sRc  t|9r@9|܋Esf@kPC8 u        u  EE    E    E    Ef@9E  EH9r8   C0  PEPj j sUMIM;usu
ttFV9Uvy~    u1҅F~ Et   ~FEt   E    1ɋEEEAEЋE	EЃuN	Fv
E	;uv 8 C0~  E9EvEȊE<tq<t'`  fV  Sk     Pjf7  Sk     PjuċSk P C      MHuuCEsEUE@RQj MQj EЋEĉUt=E@Pt'MPUEVj j uV1suC             Vh  h  hy  h  suoC   K  Ea} -  8 "  {   uh  h  h  h  C kEl   ^t   Ǉl       XsǇt       l    p   k$t   iM  E    MEŨt    x   |   t	l    u5kul   Yt   ǆl       ǆt       Rk PC0kEt   uXuGe1[^_]UWVS`   ;d   uw6ۃ   PPkP5h   u    -`   h   d      Pkh   d   1e[^_]US$}tRRh  j!PPE]SpuS]UVS E]PvPPh     HuE      PPh  su	E    dPPh  su	E   EVVh  stQQh  su	E   RRh"  jPPuV3uVe[^]UW}V1;5d   sPPkh   PWu,d   9s&h   kkHd   ʍt1׹   F밍e^_]UWVS\fX  M]EE    M̍J} ]ȉEfX  E    fUԋUE    Uuh   d   MU} uQQh3           E$kl   l      RRuPuo;Wwer;Gs^hM  kh  h  h  kp   $}tCp   kWPEt   01  EPEEu
    ]  uEuu1u   $Euu[u      }SSh   W^uZYPW_uCE.EUHPRVQMUM?E> tMQQj.VuV<)?~uXuXZhc  jB  EE    E    E    @  @ @ ECC fC fEfC  fC  fC
  1ۋ@EEM9j  kEEEtZu`R  u   EPhQk  j5Mă0uEEE| u            EE;Er뜋Eȃ8    1;u   Eă<    Ek1ۋMHED8t#ut   !uu   E@   E@PPEu@Ph  h  hI  h  Eău4t        EEȃ8 u/aF7SS   EPh   E1uYu;]tEă4CuUȃ1: u0} tRRh  j+Et    PPh  je[^_]UVSPE]E    E    PvSSh  j   uQQuVsuz5h   d   RRj URURPV31ۍu ;]s"kCRERVPYXVh  كu1} uPPh  j+e[^]Uj h  h  hv  h  j h  h$  hp  h.  \   j h:  h$  hp  hN  X   j hZ  j h<i  hk  T    P   U5\   X5X   Z5T   Y5P   UPJ<P
tHJ@         ]U   WV    SÃ8f }}о   UfE±f-mf=    S1J   ύA-  ki1Ki30 HtEiQ uvǀQ S:Tv1ttf{ul1tfKMw[K;wS[<wJNiQ }i  k<f}¼vyf}§wE   18[^_]U1]UWVSÃ   wRhv  h  h  HzfSf9sRRPVh  h  h  fu%Ph  h  h  h   "tPPuMSыM)\3ee[^_]USR tPCtPCtPC(tPC0tPC4tPC8tPS]UQRPUWVS }RPh+  Mttt:u _@GPu]=U> PPVShy  j S$$ue[^_]e[^_]UWVSփMM             QQj:SttSvcPjh5  SuHE܉؃)E@PU܅uUU?  MM Cy> u"Wh9  h  jAh      RRj/SEuWhc  h  jJh  e})߃v;;[u6|;]Gu,PMt/OSE D8 ;GPMu6NE 8 uM   u+]3X6        1ҍe[^_]UWVS}uff_f   wft:ft{  f1  f;  N4V08ue[G^_]> ufuQh  h  hc     QMMWf^   ~ ufuQh  h  ho  EQMMWFf^   ~ ufw(Sh  h  h~  h      GFGFGfF   ueӍGo  [^_]ftth  h  h  h  Rfkf^,PWF(ft-    2zKpxrz@   px΍e[^_]UWVS˃<MEċEEEECtjQJQPRW    E   E    E    E@   CUpxRuԍuЉ}؉uE tU1{( u&C8t=PPs8h,  u f;s,sƃkFC(P} t:C4t3P    XZuh6  E6  e[^_]e[^_]USÃPC(tC,tS]USR<P  t1t؉Ӆu1<P      X[]UWVS|    E    t%} EERR0st׃} uPPhL  j$  kEd1PE    Eu(    M  } ~!PPE0stu   Ukd~}TdYt
}DAPPsMhb  MAC<y u.19tkdMCtu  A    A((   Su]EMT        tPEE   E       @      PPh  S  PPh,  S  {Ph,  j WGV,!ЈGE$m          E    U҆GF\Of	fGV-GQQjS{f DfG CfG  C+CE   Љf	fGEPURVEU6  UFRPjSUfGE$   SPRVS      EdM9Mt>E    ~ th  mj        tIuRRj VuMt1u1E    똃SkUE ]11s{ t$PCphn  jFd;uuue[^_]UWVSwPPh  j0j<t}  GSVv1e[^_]UVuS]f> fF   fw&RRPjh  h  hG  h   T{ uNjC    FVKAQFVKAQFC FC$e[^]UW1VS\5       } SSFPVEu!  EQQ0v   Ƀj0GEE    ÍE$t        E    UEtދE{C$CU%    	ЉC   fC fC CESP-C C(    C,    RRSh<P  }6E   }E   5<P     )h   ua    &  61  PEPWE   E  E    E    E  v$tH  PPh   S   PPjS   Cf  f@ f@  PPjSuiCV
   f  f@ 
PPjSu:Sf fB FB    B    BPPjStE~S   SF% BJBQQjSSf"fB#fB  C+CUȉf	fBWF$PjSUfBEjSPWv$SEE@EEYuRRj uEEM<P  1t$PC$@phn  joe[^_]UWVSl}}5    PPh  #PPwvt6uPwh  jQ  ~T u	PPh  ~X   wPPh  jPj j w      FT   cuʀ   u   Su   cu   FX9ssuu	WQh  덍s9[utVVh+  wuECP   UW 8-ux uQQV.  RRVP:  PPh6  w   1E    1҉uM9M}.É֋Muu]]E41u	ىȉʋ9-uy uWRPh=     RPhC  j@]SS7   VVhI  w   6E@Pt17    xM	YWwY0MP	YWwY0\PB9|̋U :-uz uSSPh2  1QQPRRwhM  e[^_]UWVS|E}  ]E   @Et	E      }$ t	E$     uh  h  hK  h  uCPEPSu E}  }   E  E   c          S     c        EE-   E+E;E  Fu  FEFQWEPPh  h  h   h     w0   w	tyY  tYK  Wuh
  \  <n  w X     Wuh;  1  =N  a[    E1]E   }  E       }ƋM)  E} u  }  U   EE   uE    E    E   PPuh  t!$   uP@SJ9}&EE   E   FSE]E4Wuh  u   Wuh  Wuh#  ڋMJ  EẀ}   Fj%E1҉E1M <}	qWwq0uC<}	qWwq0t
t	u}B-@uMS  Ej$@Euu$Ph#  uh+  É$$.  WWh^  V  EURMlUk  uPuh,  u } t.u[^u    h6  $6  }  t&E 8 uQuuhi  U }$   uU$E$    RRj/PuE$   E$0   E$ D0E  }t*t#ˍyw zw 9uE@̍Sw  Pw 9uF	u   ho  PPE$^S0SPh  uPuPuVXuFTtMUEFX
        uXuXu  }lvEh   lPh,  u} thE        x t7@PE@PE@PE@Phq       PPuh6  $6  }  tHE 8 u@Ex t7@PE@PE@PE@Ph}  U  },vlEx, tcj@X,Sh  u} t=     uS    }  t"E 8 uWWSh  u }$ tH}lvBEVVh   lP}$E$ tSSj/PuE$   R}RuWYuGTtMUEGX        E1e[^_]UWVSUE} u$u1   PUٍEPEuut%C0tS4tQRPhi  t6C8t/PtQQj/Pu  EtRRjPEe[^_]UWVSu}vh  ue[^_]Wj j j G)PRj VSS=     uƋ    tZvPvsu5{vj	h  Wue[^_]뢍e[^_]UWVS\EpP)   8 tx tx =<P  uB\PPh  j  VFO	F 	9t?u   Pj
GP3uC9Gu   G$_(VEEPEPQE   E  E    E    E  t  h   uY    T  h  h  h  h  n1*  <  ( Zh  h  h  RRh   P   PPCPVu~Ff  SfPKPPCPVuHFf  SfPKSVPPjVu{ t(PPjVtVEEA  Nf fA { tfA (CACACA{ tDfA fA CP@QACP@Q AC A$C$A(PPjV   Ff  f@ f@ ;f@ PPjV   ^f fC j j j
+GWRP  w=  v  fCSSjVu0VG% BJBQQjVt]^}f"fC#fC  F+FЉf	fCEWPjVfCE$   VPWuVy<ui( uh  h  h  _,RRG$@ph  t"PG$O,Pj j jx$?e[^_]Uj h'  hI  h9  hP  j hZ  h  h  h  4P  j h  hI  h  h  8P   0P  U58P  X54P  Z50P  UE @f@E   @f@¸     9|]USQst0ZsփsXs$]UWVS,EM̋MUԋ]VEEMMEЉM  fBf="   fzftHfB  SuUjVUf9t$fRRWPh
  h5  h      fBSSjV   QQuV    f= D   fzftUfB  SuUjVUf9t1fRRWPh
  h5  h&  h9  3  fBPPjVtV(  ~    W  E9CuJ{ uDG9C\u<{(u6PGUPRC-PUuWWsV4$   t뢋=    |  E9GtE9G   -QQSGPuRRuG(Pu      ;   C5  C   W Gр9Kus{   ujM9ubI0Ɂ 33uUE܋EU؋UHE%   9u'EM܋U@	9uEU@
9t?1}tkw(}   E}uEẺEe[^_]EЃt!:u^PEPSuuWuV dE}uEe[^_]E}uEe[^_];uC5  CtV1C5   CuCe[^_]U1҉1VMuS)Ӄvf=  v-  ۉʃրt=  w=  v-  [^]UWVS\EMu]EEME t5    ES+S@@P9  
   E}eE\  tE    ESC9G  )E9Љ~׃uEu
    j  uPPj`VR  PPjV=  G\  vMEF fFf	ЋUfFC+CF9Hf%  EfFEF	E@FBfF
  FEPPjqZYfF
Wu  PWsVXZWS  
   h   (uuu@O  1H  RRjS{MEG C+CfG  GЉf	fG\  P\  ҉f	fGEG	E@GAfG
  GYXjsfG
$      MC+CQ;BPvEB  E*      PPj(S{`   C+CG(fGEGEjPGPEjPW$݆  (
   Su@EQ  E&   e[^_]e[^_]UWVSl]s<  ]tRh[  h5  h  (Pho  h5  h  h9  u  {)9}Wh  h5  h  fV9vPP)PSUUuA9sPPRWh  h5  h  fFf?uqPPPutu  E   FE   MUEFEFPEPEPF	PEu  @P  E@P    F9CuF9CufFf9CuF	8Ct']C    C     C$    C(E@P  F8C(vC(@P  CSщ¡@P  pt)9Hwr9PsMUUMǋQQEPs  fN uMU  B+BȉC )ЉC PCuM    '  {   s  0s~XZPVtEV  fW  9S$   F+K ЉC$fG      9sFFEEFEE)Ek;MvMQuC@PfG tV!VCK SsEC(MM{C    EUMXZQVUt	Vl  EUME   UE   PEPEPE}Pu  <  C)'Ph  h5  h     PPj(StSZ  fV{+{9v1PP)PSUUtESE  9sQQRWh  h5  h  xPjFPEP}E   E   jFPEPUЉUFUM$RUWFPu    Ph[  h5  h  h9  S1kj,#FCFCfFfCF	C@P  WWh  j@P  CS    e[^_]US]S]]UWVSlE EEHvQQh  j&   E   P]Su    ERPSuuoj`t\E{   uCEC\`  {4uP`  
CE$C    CE(CPPShDP  1e[^_]UWVS$uj]Vu{S~f	fSfG  f	fGF+FЉf	ЍSfGRC\UPjVUfGC4$   VPRs\ e[^_]UWVS}uu   VFDP  )Ѓ'Ph  h  h      f;Ct@tfB;Cu;{\uPKPQuUMMUuƃ{ ufzftafB  C\UPQjVUf9t9fSSWPh  h  h   h  V1EfB{ ufC   CQQjVuCRsVSЃe[^_]UE @HE @P   9r]UWVSÃ@LtRRsTSЃs@t>v4$C@    CD    e[^_]US ]jt,UfXEPUPUPRRPhHP  E]U]UWVST}EuOEG)PQËta   PEjUUPRjVEPjj EPG+GZUYj(REEE9EE @EFEċG+GVVЉf	fEʊEjEɍEP1=  v-  e[^_]UWVSӃPC0UBfBN+NǃfkKf{0f	fKfB  f	fBCXPE䋃   PjVUfBFEtKju    i     p@   EM܉AQCDuKDK@jVCpPu    uEFuVe[^_]UEVuSt!FH    FL    FP    uF$   ~    F   h      RRh   PtSh-  hC  h  rPPjStSh-  hC  h!  GF8SfBPfB  fB  Bt/Sh-  hC  h/  hG           e[^]UWVSh     RRh   PtSh-  hC  hC  )PPjSt4Sh-  hC  hL  hG              KtA    fAPfA  $G8fAPA1( uG<fAfA  Wf	fWf	ЉfAt&hQ  hC  hd  hG          e[^_]UWVS,5LP  EpUԃEU   ^@FpE؍FXE܅   E9Cr   E9C   C(~i   @UԉCEЉSCCxGt3F89Gt$fG  u܋   PjsfGjsuu   K yt.h    hf  hC  h  hG            6e[^_]UWVS]ECHECLECPECTh   ơ       QQh   VuRRjVtVLC8VfBPBC<fB  fBC   PPShLP  ډuC0e[^_]UWVS   EEEPu  EHvRRh  j&  E   P]Su   PEPSu  h     E{X   uCE   d  {puPfd  
CECHECLECPECTh   ƅCXE  PPh   Vu,PPjVuPPh6  j   u	V  ~Pjj WfC< C,PS0G    fG`GC<fG  fGSf	fSfG  GGf	fGGu   PjVfG(   ShLP  FECp|CxEFjV|u    u?S$4$   tPPxj2tHt{ tك{ tV   OpS{  tQQh  j'	RRh  j#V   t0X   Ѓ   $1e[^_]UWVS]EuE  {XEu   @@P(EE   E܋F+F;E   uu
      PPh   W   PPjW   C8WfBPB1{( uC<fBfB  PPuUW   RUuvRYXuVumډ<*ZPPjVuIC8V}Bf% fPfB1{( uC<fBfB  e[^_]e[^_]UWVS,}u  MQfBffwPh  hC  h	  %ILP  )9}5Qh  hC  h  hG  F  fB;Ctu-  f;Cu;   uPKXPQVUMMUufrftQfB     UPQjuUf9t$fRRVPh  hC  h*  KfBfBfu{ uBC   C4@C8fBtC    R     zs@fft{UԉEF@M܉@UfRfUQfEM+UfkыUȋMf9w!u܉U4$uU끅s@uCD    B;C8s1҉  {$ t)fBMQ+Qf9t   WWEP   tAuA  B@;C8s2R^      u  u   1E    Ed1҉!  G+GC8C8fIt@   C   C8E   G+G   j            8OAM܆;C8      MZfAYfPWM܅>WEE  x}     @    x    t      @         /u!tX1҉MSH@҉EtLWsTPSҋ   PJHuHPuHQP   uP뱋CP"  }   VVsTS  fB   HP  E}    fBMf;AuA9ttE ҃h   UUá       f   CfB   {XCBC4@C8fC<  C,C0QQh6  j   uu    .PEpSPPZuu1e[^_]UEx( u@(   1]"]UEx( t@(    1]]UWVS]}    sC)   f~fF  KPPC)PQf~f9   PPjS   >   ~    C+CPuS    zSPC)PRFP~ G fG  NZXF)PQfG$   VuuuS4$S1e[^_]UQRPUWVS\E uEEx@)  f_fG  Vuj:uf9t=Vuj:uZYPPh  hG  h   hK  f_  f_PPju  PPGPPhW  hG  h   hK   <  w	<t,  <   <    }      Eu@+F   P  EUWW@+B   PSS  EVVu@+FPS3  EPHC)lQQjS  sEF fF  uPj:SfF$:   Suuu   )  }  ExRRjP|  EuXEP9sZC  ȍ9  ;u3u/ES@EEHEňMj VuuC뜋5      E9Fu~uPjWFPt6҃h   uu      PPh   S   PPjS   CV-   PPjSu~C @PPjSucC    `   WWjSu:{FG fG  uPj:SfG$:   SuuV uE$E   9  }/  QQju   EuXEP9  C  ȍ9  ;u3u/ES@EEHEňMj VuuC똀   RRjutu  E@EEP9UY  uFK  ȍ9=  >u6u2EV@EEHEňMEj PuuE8  x  Ǌ@@Mt)Gf=tWG9w@tg}1ɋWG_@9VP1fP1} Phs  hG  h  hK   >  E@TE} +  Ex  }uE   GWEU^1FN	F   		F1	ӊV		ӆE   M]WG    E    UȉEE    E@   t"E9CuPPEPCPtMh  hG  h  hK  }G0PW0Pw4h  u5        E UBu1@Ej uPEPuS    PSS땍e[^_]UWVS`EuE   E  @E    E   EEPVu  h   á    i  PPh   SXZjS7  E   P-CPPjS  C @PPjS   CM     Q   PPjS   {EG fG  VPj:SfGC$:   SEEPVu uqEE  EPPuuuPPPj uZYuuu0ECj:SuVu uE}  uǃSe[^_]UWVS`}WuVuE   E  E    E    E      h   á       PPh   S   PPjS   E   P-CQQjSutC @RRjSuYC     PPjSu?SEB fB  VPj:SUUfB$:   SWVu SEEe[^_]UWVS(]Cph  T6UUtURjj PU1PPRu   EPEQVPRUUVC-PRUUօtff~U8f	fCx@ u%PRuC@@   P҃uCRRPuPRe[^_]UWVSpu]NCT?UFWREEPMMUEMFWREEPMĉUEU8f   ufyfQQRS     w3C׃u$xuxuRRjSuQCx  t݆  t   u$PPVS$EPEPVSS1e[^_]UQRPUWVS   E8tVVh  j&  h0E艅<0PXZ0h   PEY[@PڍDP0P$$  }4OqPW-f@ @f	ff@ 4pE   PWSj VE   PSh   EP4@$  (މ
    0Pu@0ǅ$  VVuut1   ETP      @PP  PPhTP  $ZYuuu 
   h  (牅4Su@$$  ape[^_]UWVS<  EUxJRft1  ɉf6f9fuًO8шuƀu@ىމ\6)9Ј|_ڈڹ   ǅ   jWVu   ǅ    PP  9u
TP         WW PCP@  fx .  hE艅PXZh   PY^P   f@ f8PS-@f@ p      z@@EDI
   h  (󥍅PS@e[^_]UUBE;BBvE  E&   ]1]UUB+E;BsE  E&   ]1]UUB+E;BsE  E&   ]1]UUBE;BBvE)  E&   ]1]UEMPHPH@9w9vEG  E&   ]1]USR]?w@      PPCPh   tBBЉR1]UEt E]]UWVSu   Wt2RRWPtSPPVSu1e[^_]UEPP1]UWVSÃv1ɍz%1   <%uAEAEE9Er
A9r#E4F<	v߃A<   Eu|%   |%   މ)؍z9E   >%urFVHЀ	w0 HwhWt]EFHЀ	w0 Hw;Wt0EP+EPFPRFq<%t	@9u1e[^_]UWVSt't y΃wq {w 9u@B҉ȍIw Jw [)^_]UWVS<u]t"t} t} t} t} t}  uPPhl  jC  E      E     E     E     E CPǉE  PSVW <$h}  h  h  h   1MԊt\uM/|\@BڋEԉEЋEЊ 3  <:u#EЍX   t  8uC@EǋEЅ  uԺ    Xa  ER      E E   PPj/S  PPj;Vjh  Pu0PPWh  RUU̅tVRh  j    SUMỦ4$M tM9 p  PE[)  EԺ  r   uQQhl  j,    E      E     E     E PPj/SXZj?S9vPPj@S9ẺEw  E]ȉEčXE    E    E    ;[uWWj]S9-  xQQj:S9w}	E    E9sdt`8:   @)   tFE    M URj
QPU=            9ut   }%k  PMEȅt+8 t&UQQ)BRPUMtbUD )څtR PPRSMĉU]Mĉt+Uȃ V] tE̅tc @^EE̅t @E0E_0XE 0Vuh  jEЃ :   E :   u]E :;    E uE u :PE ySPE x7E  tPE  kxu1^E0EZ0EY0E [0=     uPuh  j ue[^_]   ; Z x     0N %s
 %s %s
 %s %s %s
 unrecognised network address `%s' net_default_interface net_%s_mac net_%s_ip tftp pxe: pxe no server is specified disk `%s' no route found https http disk `%s' not found invalid net device couldn't open efi service binding protocol Failed to create child device of http service %x :// url: %s is not valid, host/path not found
 bootp net/efi/net.c %s,%s url: %s is not valid, protocol not found
 Set Address Failed three arguments expected card not found %d.%d.%d.%d tftp,%s url:%s
 efinet https:// http:// efinet%d could not set GRUB_EFI_IP4_CONFIG2_POLICY_STATIC on dev `%s' efinetfs could not set GRUB_EFI_IP6_CONFIG_POLICY_MANUAL on dev `%s' net_default_server pxe_default_server net_default_ip net_default_mac efi grub_netfs_type efi netfs https http Host Accept */* User-Agent UefiHttpBoot/1.0 %s://[%s]%s %s://%s%s Fail to create an event! status=0x%x
 Fail to send a request! status=0x%x
 Fail to receive a response! status=%d
 file `%s' not found unsupported uefi http status code 0x%x Content-Length %s://[%s] %s://%s root_url Invalid arguments to EFI HTTP Read Error! status=%d
 The MANUAL ADDRESS is not found
 ??? %d
 couldn't configure http protocol, reason: %d Couldn't start PXE
 Couldn't set station ip
 Couldn't get file size No Offet Read Possible Short read should not happen here ERROR OUT OF MEMORY Failed to Read File %02x: %u.%u.%u.%u %s:local %s/%d %s %s:gw %s/%d gw %s %s:default %s/%d gw %s %x %s:link %s/%d %s %s:local %s/%d %s %s:gw %s/%d gw %s %s:default %s/%d gw %s dhcp4 configure failed, %d
 dhcp4 start failed, %d
 dhcp4 get mode failed, %d
 %s:dhcp dhcp6 configure failed, %d
 dhcp6 start failed, %d
  net_default_interface net_%s_mac net_%s_ip probe %s
 net net/net.c found!
 invalid net device error receiving: %d: %s
 one argument expected you can't delete this address address not found tftp pxe: pxe no server is specified mismatched [ in address bad port number overflow is detected http disk `%s' not found unresolvable address %s unrecognised network address `%s' destination unreachable route loop detected temporary %llx: %llx %d.%d.%d.%d Unknown address type %d %s  %s
 %d.%d.%d.%d/%d  %s/%d  Unknown address type %d
 gw  %s 
 Unsupported hw address type %d len %d
 XX: %02x: %s %s %s
 %s %s
 Unsupported address type %d
 shouldn't reach here unsupported address type %d timeout: could not resolve hardware address : :link %s:local three arguments expected this card doesn't support address addition card not found gw unrecognised network interface `%s' net_%s_%s timeout reading `%s' :slaac couldn't autoconfigure %s net_%s_clientuuid 01- %02X%02X%02X%02X net_ls_routes list network routes net_ls_cards list network cards net_ls_addr list network addresses SHORTNAME CARD ADDRESS [HWADDRESS] net_add_addr Add a network address. [CARD] net_bootp perform a bootp autoconfiguration net_bootp6 net_default_server pxe_default_server net_default_ip net_default_mac [CARD [HWADDRESS]] net_ipv6_autoconf Perform an IPV6 autoconfiguration SHORTNAME net_del_addr Delete a network address. SHORTNAME NET [INTERFACE| gw GATEWAY] net_add_route Add a network route. net_del_route Delete a network route. grub grub_netfs_type netfs  only ipv4 only ipv6 prefer ipv4 prefer ipv6 %s (%s)
 CNAME %s
 dns net/dns.c caching for %d seconds
 one argument expected --only-ipv4 --only-ipv6 --prefer-ipv4 --prefer-ipv6 invalid argument no DNS servers configured retrieved from cache
 domain name component is too long QTYPE: %u QNAME: %s
 no DNS record found no DNS reply received two arguments expected %s
 Perform a DNS lookup ADDRESS DNSSERVER net_nslookup Add a DNS server DNSSERVER net_add_dns Remove a DNS server net_del_dns List DNS servers net_ls_dns DHCPv6: Options stopped with remaining size %x
 bootp net/bootp.c DHCPv6: Options stopped at out of bound length %u for option %u
 DHCPv6: Options stopped at zero length option %u
 net_%s_%s :// url: %s is not valid, protocol not found
 url: %s is not valid, host/path not found
 Skipped DHCPv6 CLIENTID with length %u
 Skipped DHCPv6 SERVERID with length %u
 Skipped DHCPv6 IA_NA with length %u
 Skip invalid length DHCPv6 DNS_SERVERS 
 boot_file net_default_interface no network card found %s:dhcp_tmp couldn't autoconfigure %s DHCPv6 packet size too small DHCPv6: code %u with insufficient length %u
 four arguments expected no DHCP info found no DHCP options found no DHCP option %d found string %s
 number %llu
 %lld
 hex unrecognised DHCP option format specification `%s' unrecognised network interface `%s' /efi/boot configuring dhcp for %s
 dhcp DHCP option %u (0x%02x) found with length %u.
 net %s:default hostname domain rootpath vendor_class_identifier extensionspath clientid clientuuid HTTPClient %s,%s / %d.%d.%d.%d tftp,%d.%d.%d.%d dhcp_server_name tftp,%s %s:dhcp :dhcp_tmp Bad DHCPv6 Packet Skipped DHCPv6 Advertised .. 
 Skipped DHCPv6 Reply .. 
 %s:dhcp6 DHCPv6 session not found
 perform a bootp autoconfiguration [CARD] net_bootp retrieve DHCP option and save it into VAR. If VAR is - then print the value. VAR INTERFACE NUMBER DESCRIPTION net_get_dhcp_option perform a DHCPv6 autoconfiguration net_bootp6 Invalid UDP checksum. Expected %x, got %x
 net net/ip.c packet too big not an IP Bad IP version: %d
 IP header too short: %d
 IP packet too short: %d
 Cut IP packet actual: %u, expected %u
 not an IP address UDP packet too short: %u
 net net/udp.c Invalid UDP checksum. Expected %x, got %x
 error closing socket
 net net/tcp.c error acking socket
 TCP retransmit failed: %s
 not an IP address connection refused connection timeout TCP header too short: %u
 TCP packet too short: %u
 Invalid TCP checksum. Expected %x, got %x
 invalid ICMPv6 checksum: %04x instead of %04x
 net net/icmp6.c ICMPv6 message: %02x, %02x
 discarded prefix: %d, %d, %d, %d
 creating slaac
 %s:%d vlan-tag unsupported address family put out of the packet range. unput out of the packet range. push out of the packet range. pull out of the packet range. reserve out of the packet range. :// Invalid argument dhcpv6 boot-file-url: `%s'
 net net/url.c https tftp ;mode= octet TFTP mode `%s' is not implemented. http Unimplemented URL scheme `%s' Invalid boot-file-url `%s'     @  i             x    n	                 ׺ȇS@9_][J/Cz!NaGKڞV9BsJՎK(- '?MYzqABZ[[ȽyC*]!M)H
nD[O6T`[   2  1    !  $$  )%  K!     `)  +  )  (  (  &  "'    0  4  1  /  3/  3.  V.  9  6          l  ?C  A  ^  }A                  $  b  .T  LICENSE=GPLv3+  LICENSE=GPLv3+  priority_queue bufio datetime boot net                                                                                           d         g  =       h                                    	              
 "              .   f       @           a              z   R  k          -                     \P                                      z\         j                    .  A      A             Y  b      t                                                 \  +                    C                   	                      ,             <  X  O     S             l             {                                                               bX         u  &      V  X      (       .          F  XP       R             `  ͵  y    y  `P                        c                 x  H                j         R  P       O       1  NM  u    F  ?4      e               w                      0r                                                       T  3                  4          M             i  P  q     y                                                                .                           '    +     9         O             g  dP       x  ƫ  I       [5  Z      Y                   M                  ,  Z    #             G    N     Z          a             x                                                                                             4p  z                      .       H  e     /             >    ,     P             ]  ű       q  H                                   V  $      F          m    	             	    H    /	             G	  }  ]     ]	  z      r	         	    b    	  @x  :     	    E    	  :S  i     	  (  d     
             
  S       ,
           B
             S
             ]
             j
             
  Z  z     
         
        
  ~  `     
               I       (  BI       A  J  u    X             h  :       }  &,                     ;                   1         W  *              +    	     D  +]  Z     X  )  H     w  q  a                    K         ![  ~       0  ,       T        ,       
                          $             0             H             U    :     j             w                       grub_mod_init grub_mod_fini .LC0 grub_strlen grub_netbuff_free grub_net_network_level_protocols grub_net_poll_cards_idle grub_net_hwaddr_cmp grub_net_recv_ethernet_packet grub_file_progress_hook grub_net_default_server grub_errmsg grub_strncmp grub_env_set_net_property extract_url_info grub_strtoull grub_net_tcp_close grub_priority_queue_pop grub_net_search_configfile grub_efi_system_table grub_strcpy send_ethernet_packet grub_strrchr grub_netbuff_unput grub_dl_load grub_net_configure_by_dhcp_ack grub_get_datetime grub_env_export grub_netbuff_clear grub_error_push grub_ipv6_get_masksize grub_priority_queue_push grub_xasprintf grub_realloc grub_memmove grub_strdup grub_divmod64 grub_efi_net_create_interface grub_net_add_ipv6_local grub_net_send_ip_packet grub_net_ipv6_get_link_local grub_efi_net_bootp6 grub_efi_net_list_addrs net_devices grub_snprintf grub_net_send_tcp_packet grub_net_app_level_list grub_xputs grub_net_ip_chksum grub_net_network_level_interfaces grub_efi_net_fs_fini grub_net_routes grub_net_udp_open grub_net_add_addr grub_net_hwaddr_to_str grub_net_addr_to_str grub_efi_string_to_ip6_address grub_efi_get_loaded_image grub_dns_init grub_errno grub_net_dns_lookup grub_strchrnul grub_memset grub_net_recv_ip_packets grub_register_variable_hook grub_net_link_layer_resolve_check grub_efi_image_handle grub_efi_net_list_routes grub_priority_queue_destroy grub_bootp_init grub_net_open grub_register_command_prio grub_efi_find_last_device_path grub_efi_compare_device_paths grub_net_icmp6_send_request grub_net_tcp_retransmit io_http grub_printf grub_netbuff_push grub_net_process_dhcp grub_unregister_command grub_net_sockets grub_net_tcp_listen grub_efi_ip6_interface_name grub_net_add_ipv4_local grub_net_cards grub_net_send_udp_packet grub_net_ip_transport_checksum grub_efi_ip4_interface_name grub_loader_unregister_preboot_hook grub_netbuff_alloc io_pxe grub_efi_locate_handle grub_efi_net_config grub_print_error grub_zalloc grub_strcmp grub_strchr grub_malloc grub_get_time_ms grub_net_add_dns_server grub_file_close grub_bootp_fini grub_net_card_unregister grub_file_open grub_netbuff_pull grub_isspace grub_net_tcp_accept grub_net_configure_by_dhcpv6_reply grub_efi_open_protocol grub_real_dprintf grub_net_arp_send_request grub_net_recv_tcp_packet grub_net_process_dhcp6 grub_env_unset grub_net_recv_udp_packet grub_priority_queue_new grub_netbuff_make_pkt grub_net_arp_receive efi_net_ip6_config grub_net_recv_icmp6_packet grub_dns_fini grub_net_icmp6_send_router_solicit grub_net_addr_cmp grub_efi_hw_address_to_string grub_error grub_net_link_layer_add_address grub_efi_net_add_addr grub_list_remove grub_free grub_strndup grub_loader_register_preboot_hook grub_net_add_route grub_efi_net_boot_from_https grub_efi_net_fs_init grub_efi_net_boot_from_opa grub_efi_duplicate_device_path grub_net_resolve_net_address grub_net_resolve_address grub_net_route_address grub_bufio_open grub_net_tcp_unstall grub_efi_string_to_ip4_address efi_net_ip4_config grub_net_tcp_open grub_efi_get_device_path grub_efi_ip6_address_to_string grub_net_recv_icmp_packet grub_efi_net_list_cards grub_net_tcp_stop_listen grub_net_poll_cards grub_efi_ip4_address_to_string grub_net_remove_dns_server grub_list_push grub_net_udp_close grub_net_add_route_gw grub_netbuff_put grub_net_link_layer_resolve grub_efi_net_bootp grub_env_set grub_gettext grub_memcmp grub_priority_queue_top grub_env_get grub_netbuff_reserve grub_strtoul grub_net_tcp_stall grub_memalign                D     I     Q   ,  _     e   ,  t   4               V                         V      '    G  4  P    i    n  V  v      4        V          $  4  9  i  I    U  ,  w  +            D  ?  A  e    n  D                        )          *    /    >    C  )  U    h      4        )    i            )    i      N    U    ^    q    w  i            j                g  (  4  3    _  4  j                                      U                U               '  d  7    A    Z  h  n  ,            k    D    ,        g  #    =    E    J  D  g              v              	  k  	    F	    ]	    	    	    	    !
  j  7
    K
    Q
    h
  k  ~
  g  
  j  
    
    
    
  w  
  k  #  k  4  g  O  ,  ]  g  f    v          )    ,                            w    k     ,  8    B    f    m    |      ,    4        i          D  .  T  D  m    {          4        .    k  6          )        )              $  .  <    A    G  4  ^    c  )  m    u  I  }  $            )        I    $        K    B              &    +  w  5    ;    O    U      K    B            e       3    ;  v  Q    Y  v  ^    r  D        v        D        v        D        v    k  7    <  4  S    Y  4    4        )    4        e      	      Q  X  4  i    r  R        v                4          $    )  w  T    Y    c    h  w                f        O        I        $                I        $            I        $           
  I        $       %    *  I  1    6  $  =    B    G    O    V    [  I  b    g  $        {    4        )    I    {            )    I    {            I        {  )    .  I  5    :  {  F    K  I  R    W  {  c    h  I  o    t  {        I        {        f    O                    +                              	      A  4    C    H  )  V  D  r      k        D  F    w                        {                        B    M    W    o    }          i      !    R  A  p    w                      )        {                D  5  k  K    Z    r                    y   G          V          V     +  !  G  0!    7!    <!  g  !    !    !  V  "  k  ="    R"  +  q"  k  "    "  +  "  +  "    "  V  "    ^#    j#  D  v#  D  #  +  #  G  #  +  $  +  $    $    $    p%  +  %    %  +  %    D&    X&  k  h&    &  +  &    &    &  g  &    ]'  k  '    '  k  '    '  k  '    \(    t(    (  +  (    )  k  3)    :)  5  )    )    )  k  )    )  5  *  k  4*    `*    p*    *    *    *    *    ]+    +    +    +  )  +    ,    ,    L,    U,  D  ^,  D  ,  +  -  k  .    .  k  .    .  k  .    .  k  !/    b/    r0    0    0    0    1  k  V1    d1  5  m1    u1    1  k  
2    ^2    g2    2    2    ;3    b3    3    3    3  )  3    !4    +4    4    4  D  4  D  5  +  5  G  )5  +  5  k  6    6  4  6  G  7  k  a7    p7    7  i  7    7    7  V  8  +  $8  +  A8    F8  )  \8  .  g8    8  +  8  k  ;9  k  e9  +  s9    9    9  4  9    	:  k  :    :    :  i  :    ;    	;  V  6;  +  V;    [;  )  k;  .  |;    ;  k  <    ,<  +  N<    <    <    	=  ^  M=  +  =    =    =    =  ,  =    =  ,  =    =  D  =  D  >    >  D  >  D  ?  +  3?  G  x?    }?    ?    ?  )  ?    ?    ?    ?    ?    ?  )  ?    @     @    %@    4@    9@  )  M@    Y@    o@    t@    @    @  )  @    @    @    @    @    @  w  @  q  	A  n  A    A    A    "A  w  /A  D  8A  D  GA    `A    A    A    A  k  B  ,  5B  D  eB    B    B    B    B    B    B    B  D  C    9C  P  NC    [C    C  D  C  l  C    C  D  C    C    C    	D    D  w  D  D  ,D  g  BD  ^  KD  l  D  T  D    D    D  <  D  <  D  i  D    D    E  :  'E    5E  i  IE    [E    hE    E    E    E    E    E    E  i  E    E    E  j  F    F    2F    >F  j  VF  j  iF  j  yF    F    F    F    F  j  F    F  k  G  s  HG    gG    nG    G    G    G    G  ,  G  7  G    H  h  0H    cH    hH    wH    H    H    H    H  !  H  D  H    H    H    H  :  >I    I  E  I    I    I    +J    4J  D  HJ  D  J    J  D  J  D  J    J    K  <  IK  <  L    %M    8M    M    M    M    M  5  M    EN    MN  5  VN    pN    N    N  5  N    N  5  N  <  N    N  V  O  @  )O    3O    9O    AO    lO    qO  V  ~O    O    O  V  O    O  V  O  @  O  8  O    O  V  O    O  V  P    !P    ,P  V  ;P    CP    nP    yP  5  P  :  P  ?  P  @  P    P  V  P  ^  Q  ?  Q    Q  V  >Q  h  Q  ?  Q    Q  )  Q    Q    Q  I  Q  $  Q    Q  @  R    R  )  )R    1R    9R  I  AR  $  IR    WR  :  ^R  :  mR  :  R  ,  R     S    S    S  V  "S    oS    {S    S    S  V  S    =T  h  1U  G  )V  S  7V  x  MV    `V    sV    V    V    V    V  k  aW  :  yW    W    W    W    W  ?  W    W    X  '  X  h  X  D  X    X  )  X    X  D  Y  <  Y    qY  h  Y  D  Y    Y  )  Y    Y  D  Y  <  Y    Z  ^  Z    'Z  i  ;Z    BZ    UZ    jZ    Z  >  Z  ]  Z  D  Z  h  Z  D  Z  ,  Z    Z  D  [  <  [    -[  h  7[  D  F[  ,  Y[    ^[  D  [  <  [    [    [    [    [  i  [    \    #\  :  4\  i  H\    O\    k\    \    \  )  \  D  \  k  \    \  D  \    \    ]  I  
]  $  ]    ]    ;]  l  F]  l  _]  ^  ]  T  ]    '^    ^    ^    ^    _    	`  D  8`  ^  ]`  i  {`  h  `  h  `  ^  `    `    `  D  `  i  a  1  .a    Ia  h  aa    la  k  a    a    a  ?  a    a    b    :b    `b    gb    }b    b    b    b  :  b    b    b  5  c    c    c    .c  ?  Ac    c  @  c    c  5  +d    5d  5  Td    ]d    dd    d  O  d    d    d  L  d    d    d    d    d    d    d    d    d  3  e    	e    e    e    e    #e    *e    /e    4e    ?e    De    Ke    Pe    Ue    `e  2  ee    le    qe    ve    e    e    e    e    e    e    e  I  e    e  $  e    e    e    e  I  e    e  $  e    e    e    e  I  e    f  $  f    f    f    f  I  !f    &f  $  +f    0f    5f    <f    Ff    Kf    Rf    Wf    \f    ff    kf    rf    wf    |f    f    f    f    f    f    f    f    f    f    f    f    f    f    f    f    f    f    f    f    f    g    g    g    g    g    &g    +g  N  0g  C  =g    Bg    Hg  O  Lg    Qg    Yg    ]g    bg    gg    lg    qg    yg    g    g  I  g    g  $  g    g    g    g  Y  g    g  Y  g    g  Y  g    g  Y  g    g  Y  g    h  Y  h  ;  h    h  I  'h    ,h  I  1h  o  6h    =h    Bh  Y  Ih    Nh  Y  Uh    Zh  Y  ah    fh  Y  mh    rh  Y  yh    ~h  Y  h    h  Y  h    h  Y  h    h    h  O  h    h  b  h    h    h    Bi    Ni    Xi    ui    i    i    i    i    i    i  @  i    i  V  j    k  +  k  k  k  D  l    :m    m  +  m    m    4n  k  an    zn  D  n    n    n    n  w  n  i  n    n    	o    o  w  (o    -o    4o    :o    Co    Mo    Vo  ,  \o    fo    qo  k  wo    |o  l  o    o    o    o    o    o    o    o    o    o    o    p  +  p    p    ?p    Ep    bp    gp  *  sp  D  {p    p    p    p    p    p    p    p    p  m  q    (q    0q  i  Gq    Oq  i  fq    nq  i  |q    q  i  q    q    q    q  m  q    q    q    q    r    r    <r    er    r    r    r    r    r    r  i  r  l  r    s    s    s  w  s     s  k  2s    Bs    Is  +  es  k  ts  D  s  ,  s    s  c  s    s    s  D  s    s    s    #t  +  It  j  [t    ut    ~t    t    u    ,u  =  Nu  D  Tu  D  u    u    u     v  w  v  _  v  D  Qv    iv    rv    v    v    v    v  D  v    v    	w    #w    4w    9w    Sw  E  kw  @  sw    xw  V  w    w    w    w    w    w    w    w  P  w    w    w    w    w    w  P  w    w    x    x    x    x  P  x    #x    (x    -x    2x  P  :x    Hx    Mx  Y  Tx    Yx  Y  `x    ex  Y  lx    qx  Y  x    x    y    y    z    #z    ;z    @z    Jz    Oz  w  z    z    z    z    z    z    {    {    ({  +  ={    E{  )  k{  k  {    {    {  I  {  $  {    {    {  j  |    |    %|    @|  k  T|  g  |    |    |    |  w  |  j  |    |    |    |  w  |  k  %}  k  6}  g  @}    _}  ,  u}  g  }    }    !~    &~    <~  k  i~    n~    ~  k  ~    ~    ~    ~  w      &    +    5    :  w  V  h    >      A    J    R    p  m    ,                    $  ̀            -    D  ^  i  i            h    ^    D  ΁  i        )  D    T      :    :    :    :  Ă    ނ  W    G    #  /  D  w  W  Ń      `    0      =  c  T    Y  D  r            ΄  &              %    ,    =  h  N                  w  Å  k    ^  9  1  W  i  {  k    #    D  Ն  l          9    M  c  `  D      ć    ه  W    W  1  W  k  W        W    `    0      B    Z    e  &  t    {      :        i  ׉    މ                   D  v          i    k        i  [    j    u  5        i    k    D        V  $    2                  w    >  b    g    q    v  w      ڍ          )      ̎      m          )    4    A    f  k                )      $    6    <  i  u    ~          ,                    $  א    ܐ  )    g    ,    g  "    >    ]      g  ő    ʑ  )  ߑ              ]    k  .  D  =    F    O    n    v              )  Ē    ɒ  g  Ӓ    ؒ    ߒ      $  #    (  )  5  g  O    W    f    r  ,  w    |  g        )    g  Ɠ    Г  g        ]    k  1  D  i  g        )    g  Ȕ  ,  ϔ  g        /  +    0  )  E  g  ^  "  g    p  D  y  :                          )    0    t    Ŗ    ݖ  c    D              	  w  3    8    L    g  W    W  Η  W    W        W  ɘ  W    l    -  #  W  S  W    `    0  ę    ڙ    ߙ          )  )    Y    ^    c    h    m  P  w    |                  P                        P      ɚ    Κ  Y  ՚    ښ  Y        Y  ?    P    Y    i    r  M  z      `          #  r  ;  z  K  g  x  `                w    r  Ԝ      :  !    6  X  N  :  x        y          |  Ҟ  y      ޟ      c     D  2    G    ^    Ҡ  9        +    r  0    Q  W          ǡ  9        W  B  +  T  +  p    |        ΢    Ӣ                  w      $    H     a    f      r              H    X  l  ]    h  l  q      (    c    D  -    E    Y  r    +      
    I            ɦ  r  ۦ             6    ;    c  +  {  +              ħ  w  ͧ    ާ  k  
               }  7    <  D  W    f                ɨ    ڨ  h           3    8    `  W  é  `  ߩ  0      !    &    j      `      Ī    Ϊ    Ӫ  w  ު    	  r          ӫ  k               8  9  j  +  y  +    G    9    `    k  ȭ  D    l    0  0      c                  Ю                )    .    3    =    B  w  K  D  m  c                      ¯    ǯ    ̯    ֯    ۯ  w    D  j    o    y    ~  w    D    l      P  `  p  0                    w    D    c    D      !    3    n    s        ǲ    β               h  R    d      c          ̳    ӳ  }    G    l  }  `          ϴ  0                  .    H    X    c    j    v                  M      "  c  0  D  B    W          +  ƶ  r    W  {                          w      2  `  R    W    4    <      (  ƹ            
      k      Һ      r      g    Ȼ            U  h  b  D    l        }  ټ    ޼  D            9    r  ߽  ~        D    +  3  9  M  0  X    `    p      +  ˾  `    `                w     r  =    B    L    Q  w    c  ӿ      W    W  H  `    r        :  ,    D  c  X    ]  D  r      W    W    W    W    `  .  0  ?    G    r  r        r          ,    1    ;    @  w    :  (    8    =    G    L  w  d    i  )  x  D        >          /    G  c  Q  D  f    p  W    W    W    W    `  :  0  ]  J  p    }  J    0            c  (  D  =    R  W  z  W    W    W    `    0      '    3    N    h  W    +    +  P  +  t  +    r    r      '  H  5    P  +  m    t      %        W  S  G  {  G        J                    J  O    h              :        %  &    :  W      G    T    r                                B    w      c            W    +            k    +              #  w  r              j    F      
        $  i  5    <    U  ,  g  ,                    F    F    F  Y  F  s  F        D  &    V    y  ,                        ,  .    L    q                          D                                                   $     (                                                                                                                 $    (    ,    8    <    @    D    H     .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                        	   @        (B              %             4  $                  -      2       X                   @             x  f                 <   	   @       M @              F                                 V                hP                 [                 #                  d              #                                  (                	              8                                 8O m                                                          boot/grub/i386-efi/usbserial_ftdi.mod                                                               0000600 0001750 0001750 00000004500 13417732100 0016357 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   USÃx, fE  fE fE fE  fE fE    x(Qj j j Pjj@s4{(j j j Pjj@s4S 19    u	   @u0Rj j RPjj@s4j j j CSfDEfDUCPjj@s4 C,   ]US]EEEPj   s4]USP]RRjS]U1Ufzu"fz
`uPPjjh   uuR U1WUVu9    uf<    u@uE    0~v	E   !~v	E=   FvEf   ^E   _]z   1B,    ^_]UE    ]Uh   $      `	      q  %  8A   K       N     4       unsupported serial port speed unsupported serial port parity unsupported serial port stop bits number unsupported serial port word length              @  w  "         LICENSE=GPLv3+ serial usb usbserial_common usbserial_ftdi                                                                                          !                                              	              
               3              W              l                                                                                     grub_mod_init grub_mod_fini grub_usbserial_attach grub_usb_register_attach_hook_class grub_usb_control_msg grub_usb_unregister_attach_hook_class grub_serial_unregister_driver grub_usbserial_fini grub_usbserial_fetch grub_error grub_usb_bulk_write R     s                             7    b    n                                                $    )                              .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   2                    	   @                        %             h  8                  -      2                          @             ,                     <   	   @       x  (               F             L                    V             [                     [              [                    d              w                                    @              	                                                  m                                                                                                                                                                                                                  boot/grub/i386-efi/newc.mod                                                                         0000600 0001750 0001750 00000005670 13417732100 0014325 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      	      4     (   UE@    @    ]UEp@    UWVSEux@HDJ HHJ$uVHXO_SQj j 7 uB     e[^_]UVS]CS uE    e[^]@Pt6PVsssj j 3 tVC 1e[^]UVSt]Sjnj j j j P u?Qjh   Suj$t0(Rjh   StPPh   j	1e[^]UWVS]C lơ    t9Puh(   VtVs@FV C41S8e[^_]UEVS á    t'uuuh(   SSe[^]UWV1SEE    E    E0ك0	v˃߃AwDyЈˉ<	vy<YwYEFU	ǉ	؃}EuEU[^_]UWVS   ]z}CSCSVjnRPj j 3    Pjh   Vt(Pjh   VtQQh%   j	   E} CS tEUEU؉p} tMpFPu
       RPVCSn RPj j 3 t7       0 C Cu<p u3u.Pjh:   7uE 7CFqs1ҋ{ CS CSptptCS1e[^_]Uh    h    Uh     070701 070702 not a newc filesystem invalid cpio archive TRAILER!!! newc          E       .                           LICENSE=GPLv3+ archelp newc                                                              n                                                                        	               )              8              C              P              \              h              z                                                                                     grub_mod_init grub_mod_fini grub_strdup grub_disk_read grub_errno grub_fs_list grub_zalloc grub_malloc grub_archelp_open grub_error grub_list_remove grub_free grub_archelp_dir grub_list_push grub_memcmp #     (     i             
                     +    1    B    U    [    i    p                        	                                "    )                                    u    z                                         (     ,     0      .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                       	   @         `  
            %      2         J                 8               4                  4   	   @       	  @   
            >             P                    N             _                     S              _                    \              g                                  l  p     
         	                                                H	  e                                                                                          boot/grub/i386-efi/usbserial_pl2303.mod                                                             0000600 0001750 0001750 00000005214 13417732100 0016357 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      \      4     (   U1Ufz{u"fz
#uPPjjh   uuR UVSÃuVjj h  jh   p4j j j h  jj@s4Vjj h  jh   s4Vjj h  jh   s4Vjj h  jh   s4j j jh  jj@s4Vjj h  jh   s4Vjj h  jh   s4j j jj jj@s4j j j jjj@s4j j jDjjj@s4j j j jjj@s4j j j j	jj@s4C uEHECtruE
E ECECEPEPjj j j j!s4j j j jj"j!s4{(j j ЃaPj jj@s4 C,   e[^]US]E{, EuEPj   s4]U   WV    S,E}̋U9\tAuE    0xv	E   !xv	E=   XKvEf   E   ,[^_]ƹ   z1B,    ,[^_]USR]{, u#PPj S]UE    ]Uh   $    `	    %   K          unsupported serial port speed unsupported serial port parity unsupported serial port stop bits number unsupported serial port word length                  j    1      LICENSE=GPLv3+ serial usb usbserial_common usbserial_pl2303                                                                            #          3  !                                              	              
               3              W              l                                                                                     grub_mod_init grub_mod_fini grub_usbserial_attach grub_usb_register_attach_hook_class grub_usb_control_msg grub_usb_unregister_attach_hook_class grub_serial_unregister_driver grub_usbserial_fini grub_usbserial_fetch grub_error grub_usb_bulk_write "     .     Y     s                                  0    G    ^    u                    ^    u                            )    /    :    ?    F    K                              .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   T                    	   @                        %                                 -      2                          @             0                     <   	   @         (               F             P                    V             _                     [              _                    d              {                                    @              	                                                  m                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/i386-efi/nilfs2.mod                                                                       0000600 0001750 0001750 00000015200 13417732100 0014554 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      x      4     (   UEp@X5    1UVSVVj j sFVpph  uuuuQRP  e[^]USP]C@KHSDuu  ss]UWV1SXE    {1ۉ}}9}Q]0]<؍<w9u9uE   N9wr9s{}봍{   }맀xv~<
1ËE1[^_]UWVS XUEMS׋U tЉEC   +]}܉׉։E؃
)AψM܉H#EI}#MEԉȋM!ʈ tЋ}؋UuEԃ B[^_]UWVSÃP  ECjEĉ+1$      RP   ӉEu@uRRh    j	\P   EPEj H
IʉM!UȋM!QPEčH   eRPuEȃ U̍e[^_]UWVSӃ<EB8EȋEE  GH
   PE  C9UȋMĉEЍC8ƍEPupS8]uOEҍÍCE   t
u} D\2tىmӋMIMЃ} 	  W   QuԍJ
J   Vj j RP   =        E@;EtRRh      } uUȍEMPEEE    uԋGUH
   t   9};uԃ˄ۍ΍qu   } ЋD\2t"ىpPPh+   j	&MuԉEڃ} Et7u!Eȃ} TLt	Љʍe[^_]USEjuuP uuPPh    j	UU؋]UWVS   0  E܉]XjKUK
   ]JU!Mԉ֋U$     !1RPuuSSh    j	$Quh   W}VRPu e[^_]UVS]    tC@Pu*S   C   P=     t+P1s1҉j j =     tV1	C e[^]UWVS,  ]    tǅ    ǅ    R   C   P]=     tef t[uW1;C<  1P1j=     t1#  WP 1R1P=     ũh   t      Ƅ t$<ǆ       u   a<u   VLFP9=     tV2F4ǆ      f% f= @tf= tf= uVPWU   ;Ce[^_]UWVS ]jj uV    u>E   {   @Wu=     u
ǃ                  t
CME܊E؀}	SEEpVue[^_]UWVSh  h      SPh   j j j jV    f44u?uW$   G 		1Vu	  QQh   j j RPV t          f44p  1uC  PPh=   j	=  t $9W<G8  w;   =       G@_WDK   PP㉕j8j j RPV =     }  P   PB1h  j j RPV =     4  W     J   P   J
11RPw<w8j  RPDuuPPh    j	EVP   i   h   򋵜RPRP =     uaQh   (P  P       1ɉ  Ǉ     Ǉ      Ǉ     $ L=    uRRh=   j	W1"Ph   QWe[^_]UEVuS5    su    @h5    $    e[^]UEVuS5          P   P   P   P   P   P   P   P   P   P   P   P   P   P   P   PhU   P    5    $    e[^]UEVuS5    .tPPjP   P    5    $    e[^]UWVS(u5    E    F Í     PPjh  h  EPWu =     u}E䃸    tKERh   P  Yu  P@^@F    V8F41F    V      P#=     tE9tPSX5        e[^_]U1   W} E5    E    EEEE EtAQ  Qjh  h  URPu =     uERPh  uME荑  9tPuX5        }Uh    h    E    Uh    btree lookup failure btree level mismatch
 btree corruption
 not a nilfs2 filesystem %02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x nilfs2               Z  C  _             LICENSE=GPLv3+  fshelp nilfs2                                                                                "        ?                                                	               0              F              U              b              p                                                                                                                                                                                     grub_mod_init grub_mod_fini grub_disk_get_size grub_fshelp_find_file grub_xasprintf grub_memmove grub_divmod64 grub_disk_read grub_dl_ref grub_errno grub_memset grub_fshelp_read_file grub_fs_list grub_malloc grub_error grub_list_remove grub_free grub_strndup grub_dl_unref grub_list_push                   :     T     8    ?                        {                    (                    F    g    s        H    |                            	    =	    e	    	  
  	    	    *
    1
    `
    
    
    
        S                        B    L    S    _    s                                                                         &    +    3    8    Q    ]                                .    :    A    F    K    r                                    
            $    )    .    9    F    K                                        $      .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   T                    	   @       X  x  
            %      2                          8             ,  (                  4   	   @         @   
            >             T                    N             d                    S              d                    \              k                                  t       
         	              4  !                                 e                                                                                                                                                                                                                                                                                                                                                                                                                  boot/grub/i386-efi/usbtest.mod                                                                      0000600 0001750 0001750 00000007100 13417732100 0015050 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   Uj$    XZj hi  1UWVS<ɉE"  ES   Pjh	  Wjh   R   EP  QPEPh	  Wjh   V ; u'S$   z  _  ED PuS4  sE    HEMȃ}   FEf} fEtd $=  wGEԃ-   
 $  J?ɀJ?Ȁ?ɀJB?BuE    }wM҈
A  wJM҃?ɀJO (  v> $  w?B-΃?ɀJMB?ɀJMԋu S   RuPh   PWuh(   <$e[^_]UA   WVS]KKڸI   KڸP   C2   sK<w    V1QRPhW   SfCRS
RSRfăRPh   @  4    h   C9}iƄ  FDH   ۉ]E    C@9E   Ep PFPuh   F~2   N<w    W1QRPhW   N ڸ  oF9}TMkA$PHM܋   P@Uغ=   y:   uGQuRPh   EE*hd  e1[^_]Uj hf  j h    hx       U5          |              2         2                   "  USB devices:

  Error %d retrieving %s
 %s: `%s'
 Unknown IN OUT Product Vendor Serial Class: (0x%02x) %s, Subclass: 0x%02x, Protocol: 0x%02x
 USB version %d.%d, VendorID: 0x%02x, ProductID: 0x%02x, #conf: %d
 %s speed device
 Configuration: Interface #%d: #Endpoints: %d    Interface Endpoint #%d: %s, max packed size: %d, transfer type: %s, latency: %d
 
 Test USB support. usb Low Full High Control Isochronous Bulk Interrupt Audio Communication Interface HID Physical Image Printer Mass Storage Hub Data Interface Smart Card Content Security Video LICENSE=GPLv3+  usb usbtest                                                                            ;  (        c                                                	              
               2              >              Y              e              }                                                         grub_mod_init grub_mod_fini grub_usb_control_msg grub_strdup grub_register_command_prio grub_printf grub_unregister_command grub_usb_iterate grub_usb_poll_devices grub_malloc grub_free   	                    #     `     x                                   (    <    A    M    R    Z    k                                                9    n    s                                    
        (    -    D    K    P    U    ]    k    p                                                   $     (     ,     0     4     8     <     @     D     H     L     P     T      .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4   y                    	   @       H	                )               X                  %   	   @       
                 1      2         (                @             0                     F             0                    V             @                    [              @                    d              D                                  L  @              	                                                  m                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  boot/grub/i386-efi/normal.mod                                                                       0000600 0001750 0001750 00000352210 13417732100 0014654 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                           4     (   USR@(uPPSj
C4t	SЃ]USÃP$$$$]USS]t]Y[]Z1[]UuUu    8#uP1UWVSҡ    Mt
h    h   Ѓ}á    t2Sutj         1e[^_]U1ɉUE]wU1S];1P]]U1á    9   UE   E   ]@    1UWVSu^   {C(Et"7us{ t)1S:tQRsXsZ3Ys$]bVe[^_]UE]}UWVS,]} u)h"   hg   j h"   @  ujt=PSt!RRj PEuj 1  h)   tP1h5   tPEE    ;(u PPSh)   $u7ahF   SPhK   t<PPSh)   PPj/St  PPSh5   $h)   ]$5           Puj SQu$EtRuh   PYu뺅tPPWh)   h)   EЃtSSPh5   h5   WZuYu}         u*t&> t!Pj uV} tVe[^_]UWVS(}j t           hS       uR   hj       Y^SP    trtbwC0t
RRjSЃSSf vSjjSj j VPPSj
XZSj
YXSj
뚃V=     u61҉E        EtRj h>  PYu빍e[^_]Uj j u   $           tH    UWVSPu
      R   jh  @Pu;Vx/<$tVh  WP$t2PPVh  t*PtP1SS        e[^_]U} t
E0#$  u"   uj 1UVS]h,                         tSj h1  j hv  hC  j2   hO  j hI  $I  $    hO  j hO  hb  j hi  j h  h  h    j h  h    j h  $  $  XZh  h  Y[1h  h  4    CPPh  V4$
uPPh  h  $  ZYh  h  E  e[^]U   j     j j hI  Z5           UWV1SÃ9t01CFMsCfSfCCRRsPP$M̍e[^_]UWVSUE    E9Ets];]sctQQvWRRv3fPFfҍH9r-fVNf  I9rNBfVPPvj
E녍e[^_]UWVS}E]EUE؉E9   E+M    RR+ERUPEUًE)؍   PE؉U؍PR+E܋U؉uY1_}PRٍe[^_]_e[^_]U$h  fE
     E$       U} VuS]uXw9$(   h  0h  &h  h  h,  hD  muV        e[^]ÉuEY  e[^]USÃ@fCPP fCCC$PCC$PC]UWVSÃ(<       4   U4=   4$U   u        NWQRP   D0    e[^_]   UV15    SӉ[^]XUWVS       9|*   HyУ         4@      Xۉ   y                 e[^_]UWVS,}E؋EUUEEEԉÃ; t+]ԉE܋E;Mr>M܉U܉ȉRRP7U܅tUU        *E;   )   QQP    PuԋPEUE2ZYM}؋1ɍRUP[Uىe[^_]e[^_]UWVS(u       Pۣ         9}Y)   ύI5   M;E   s!)y    4EE@ԉ)   y             9})QRP5   G=    tFR    )RP5         P    +   SPS   5              e1[^_]UWVSHh   E   E  E    E             t SS ftPPSj
܃u    $]      XuE    ǍX    tEċ kEPtSu   j juWP     =    Lt/zPWQSMUUBU?M̓S=    uUԋEE    #=G  $  E    1ɋUĉ6
9  0  =a  t=H    8	  ~uV[u`  p    =O     =K     =M  M=P    =S  O  m  =i     ,=d  2  =b  t[G  =e  tc=f  ta4  =p    =k    =n      =u  #  =y      MЅIMMM;MAUЋE؍8     PPuuUЃËE؅ۉ<u        tWhl  EPS$} t`h_      [1u    $]      ;]tCUUE؋UQQ1ɍRUPp   W   U$UuW          j RWRP ~vMك9 Mu:U؋MЃ< u.MH    tSUčEPEPEPMfE(EMЋUD    ESPEPEP9W$ME9E5$   E+EЍ   $=     $   t        4MRU)ʍ   RU؍RPEԃ$   +E    UЋEW)PEPR`  EE    ~3MԋUM#   E    H9E}MԋU؋EES}ĉuԍ]ԋM؉SuE1   M5       4EPEPS ]Ѕ5$   <   <$=     $   t        $   tWQRuP$   D8    }ĉ1E    M؉PSEPuA$   uZ+MЅ UIMHE;EQjURPM؋Uĉ3P^EEE    PUčEPEPEPMh_      U؃Ѓ8 t)tM1E    1ҍEPPE@PuZu؉4$1e[^_]UWVS(E0~Wu    }WEE$[4$Y^S5    t/PPPuMquuPRuuPP    SEEe[^_]UWVS(]s ~WEt@WE$[4$XZS5    $EE1e[^_]UWVSEI  RRPha  /  P      1tmC t2t    s UE$EUÉ؉뼀;*E    uCE   !]v9uWÉEtsPtCPPj:St  P<	uB< t!    ]wtPPP1M؉URuM؋U܋I(փWV        e[^_]ÃSUU܅$RuS9RuEj hy  j jph)  S U܅uSUU$PPPS5    UWVSh  ,   u   <{ uu,uRRsVtPPsWt1e[^_]UWVS}W5,   uju5    HE1{ CECu4WCuS5    PPSh,   e[^_]UVuSRRV5,   uPVh  j6x u p$$@    @    1e[^]UWVS}W5,   uju5    C1{ C   u4WCuS5    PPSh,   e[^_]UVuSRRV5,   uPVh  j/x u p$$@    1e[^]UWVS   h   j SE|t       1f  1h  tX
tStLtuOh  ΍B^wƍG=  w=wWWRh  1  )QPj W$      t}h  XZh   VtV=,   1҅t$PPwSu?؅t"BtQrVSЋECi      P    =w    PPh  je[^_]U} E~   E]5Uj h  h  hE  h   (   U5(   UWVS0jh    }Wjh    h    0   tjS5    tFQQ6URtv(U=     ts0   $렃stĻ   PjWh    e[^_]UWVSEI  RRPh  E.      P        M   0   tDP0   UPU܅tYJB 9rރSW   PTUPU܅tFjtVEU܉B$U܃z u	Rt0   0   jWE    u              e[^_]USQ    tC,t
RRjSЃ]UWVSE   Pu
   PPj/Su
PPSh2  h  1EPP4<   StFuRRSha  8G1QQ4<   WuEU	1 FuPPWh     S   e[^_]US]Sh    u]]1]US]Sh    u]]1]UWVSÃ(5H   MPS5H      @   @@   t
Mt&BSD      =<      8   tWj Q5D   MЋM8   =D   tR@   JRQSЃt8uGCuD   W؈E%   u3J9s1%   =   u%B9w)ȉ B   ;17} xB*%   =   uB9v́      uB9v)븍e[^_]UVuSVu           QQ5H   Vu.   5  Wu.t;Rj h[$  P   7  )tS   S        1e[^]UEVSuu   ?PVSh8  4$t۹   5  Se[^]UVSE] u64   tD  uA  >     IvQQhF  Su1^RRhH  StPPShK     7  tV   VEEe[^]UWVS8E]D       @       8   E<   7      EPEPj j S E  EuH   7  AULHH   ~1WWhO  2uVVj=5H   t@H   ޸   }tQFWRP}4   w/    x  CtC1ɺD  a  ׋H   <-  PPS5    fE- E $  @  p ~      D  S  ^  ^{ t)CtE޹   D  E1  ѹ   D  V       D  ]    ^{ z  tBWWPhe  `     D  t	V  V<(   VVj)R   H   SSj,@PH   u:1ۋ5    t"FtQSj h#  Ѓ  vC  ȃ  5H   ,           t#Rj h[$  PtS:  SS  5H   =     9  P  PEJ  =H   tV1RRj/PYXj/5H   t^@WH     PPj/Wt@ j Eh$  WSP<$1=       =H   W$j  ǉ=H   D   x  <   7  1@      b     V  1M=@   =D       5H   [15D   ǡD   t @)5<   D8É$áD   54   t u	t\BB@J=@    uQQ5<   R; uS+} tE05D   T} tE0Xu5D           1   Se[^_]UW  VSPEpP)ى1҉E}1kǉȹd   1)ǍDk1Z[^_]UuZ   E    U   WV|   S]} }yQ Q +E1EQ 1  1irb  uLm  l  fwfpm  fпm  1f1Ƀut'D9r#u
   tDA)uwABK  S1f< C1CS[^_]U:>uz>t8 B:
ut@B1   ]UVST   tPPsVSe[^]UVST   tPPsVSe[^]USPT   tsS]U]US]h  XZ3h  $  ]E	  UVST   t3sS$T       e[^]U$h      $  EE'  UU ;Urw;Erh      tU=     t        h  $  YUEU@~
t@(J]USh  tFPj j S=     uh          ]USE~!Ph   j]SXZSh  ]UT   ET   ]UWVS<h#  uE       Qj j S=    
tEEE        E    pt#uFuv(EE=     t        EEԅdM;Yyh+  h+  t    u1RRWPuFP  HEu,t(PP   _XSh9  EEUt5ME    Q	9M}9B tEȋR(E} yvtn~^щƉω+u}ă w  wUMĉUMK} t/5P   UMY^Sh9  UMąuh  $+  uȃ\    ]ԋ5       ~8    h@  t^=     uhF      tR   uuSЃt9PhF  hN  j        V86f15    tAPPhg  vuu#uuSVt        6EȉU~j=       ~=EU+EŨ w=  v>NVEUĉEȉU̅uh    tx!h  $o  M  F  qc^  $0  
   ,  ^   G     e2  v   P  H     I     3  c     0P  tO  t`  Q     a  t9   g  tde  t0f  t{   n  t0p  t   11^E E:1)2E EH9	~
1E
 9|XK]1   }   j$PPSuPE1M@99x tF@(s     uԅs  PPVuEۋE9  WWj P   EԺ   }  ho     ERj PV=    
t:E1        xt!uGu	(Cۃ=     u3E uPPuho  2PtE̓ho          x-        QQSu[^j PE   } u$j    1U   } =     u3j t"        E    h1Le1[^_]UWVS,x EUt&pt              hx  E$#  E    ËEx$ tCjEj  P} tPPh  h  E1@t>@ҍ|tVEuE    tSEuE    GtVǃGWuotPFJ~ t >EHt<>u>BBAB PPWhx  $x  <$t<>tCu{>  Ch#  PEpppEЃ;    t=         u.t%WWh  5    tVj j PP;    tEx$ t*Et8 tSujP4$E܅tQQPhx  hx  E؃tRRPh#  h#  h  { PCPSh#  e[^_]URPP$UWV1SÃ8 u6sZ3Ys $e[^_]É;uF;s|1 u7Xw;C$sWE4E@USӃ3@PR1s]@USÃHA	9~RPS+C]USQP   9S}#҉SPP   P3]UWVS]E5d   =`   SX   D9sI5`   SY_tPV5\   u        T`   \   5d    `   \   ЅtB@@ `   RRSP5`   $Ɖ5`   e[^_]UVSӃB    BP   hD  $ɉCt	   uQXs1ҍe[^]UWVSӃ<E7M1ɉEЋEE̋EE؋BEG9}ډMMEA7ƋR3WRP1҃sEutN19O)ЅxS9|*J)؉SE   E   E    E   
}   C7E    EډXEEEE} E    EEE׉EċG9B  ؋V+G iNč8 EuF   PMȃMU9tG9t
9~l}ufU!SCM	SME)ʉ؉EE!M0j\Ru3s$sFPQ0ډQEE;C|E@;G}E   E}uIE;GuAE;C}9ECS	f19C|EPP3j Eȃ@E뿋E;C{uZEE   C SSTC	} t} tPP3h!     } t|PP3h!     } t?C SSTC	} tVV3h!  QQ3j } tBC SSTCCH	i} tRR3h!  PP3j G+W iNċ@   W49rt
C1ɉEW9}ЉډMMEA݉+O DSiN;4Kr}fNf	M	ʋB4tUe[^_]e[^_]UW1VSÃU;{$sk4MGPS uuVݍe[^_]UWVSÃ,Px~wJ8PQQRPSM+CQJ)QPZSYRP+CfEf<v#u~Ox8GCCCtP1PSj j e   [^_]UWVSÃ,@UM؉E1;C$sk4K @D,    K D0    ߍC$EԋE   <
!  C@CRRP3u1  sKV9}!)΍QWVQDPCPEt{;wG+stP    PSPwCG1;C$s$WE4E܃W    @׉wC9E~E1;C$sk4K @D0   K D,   ߋEC    C    C@Ez  QQj
uEuuVE܋U܃+Us    PU3UЃj RuRP EzCRV)RERPEPWSP<$1;{$sF4F    G1;{$sk4K GʉMMЉA(EFC9E~E1;{$sCk4S MdMЋS 9B(tB0   C D,   z0tB0   G븋USKCCE܉EE1} u   $;s$sk4MFS Pr0r,j ܍e[^_]UWVSÃ@{39~   1;{$sk4K GʉMMA(CW1   FPPDPN;{$sF4F    G݋C1ECC;{$   k4S MMK 9A(tPjPjMGj j @9C   VH   WF1PvVPFF;{$sF4F    G݃vC+CPF PVCKSCXY1jj6   e[^_]UWVSXuj t          j(  F$C   CjtXC$4tLV1ɉ1C    C    C    ;C$s0k4@S B    C    =       7  C     s     C$    tC$ 1;{sEt0S$Eԍ    $MԃA|0 GkC$4PC     1҅tK K D    4 1;s$sk4FC 0Pjj V   V1jj1m;s$sk4C B0t
QQjRЃFE    { EE    E;C$k}4{ 1PP fE  MȉMȉEG	EȋUȋc;w}EE    PPH9EsPP7j EF;w}QQ7j
붋UB4t	RЃEM}b       E=G    L  	4  
     E=<    =D    v  E=O    &=K    =M  B  =H  E     E=S  )  =a  }  =P     }l  MP}f     }d    T  M  E=i  _  =k    =h    T  E=u  1=r  |EԉE=o    =p  t+=n    7E=x    =y  m  e  C   HC@KCQ9Ћ}&@CD
SC    9      TSsH9}' RRTRPS+CB9S~
C    SCC3   }  C    C    CPXWWSj j   E9Eu0   
0       VVsC\       `       d       0vQh];  }WPE\   u6} x  }   ؉W0   Q  Pƍ   $Eu        }j V5\   VW      } EcE    E;C$Pku4C 0PPvvx`   1҃DEC 0PP K fE  UC   ỦEA	E̋ŰC x   RR0h  C =X   w]X   $   0h  UN0h  U>0h  U.0h  U0h  U0h  U    ZUYRPPPC 40h'  0   1ҍ    uEэ<9ǋC MtQQ40h!  RR40j C M9M40j j sEPWE 9EvWWC 40h!  C U0E"5\     1҉؋{s)  ;{A  ;s8  S}k  tt {}eMЋ}Ћ+{tRUUĉ1   >QQE@PR  PW}ЋKUPV1UE S;s$sk4EF{ 5G(C1MЉA;s$k4S EK{ 9G(tPjjPjj j F뿋C@;CWWFPRE  0
D0 C%  SE   	  1ɺ-  u  1҉  QQSjj1ɉ@   -    jE    1    { Et(jPE    1;s}#FRRp0MԃDE؋Eԃ@P41E    E;C}3EЋMԉU)QQp0UEЍP
 PEPj V4$Eă;    t=     u.t%QQh/  5    tRj j PP{ t$t? tPj jW<$=     V        =Eԃ ^DEԹ   E UEs#h-              $4  e[^_]UPPËP4tUP҃URPP$ËH,tURPуUWVS(PMP    $UtiUj jVRP M}      tuQWPS 1j j jj uQWPS0S1e[^_]UWVSɋ]E܉UtQ  RUǍ    $1  Uj jRWP E       }E    ҃Ei       h       C0}S	C0~1;Et!уt
tu    @ڃ{   uEj h!  jj s0s$j PVC00   %SSC0	E       E    C0ue[^_]EPPs0j E܃Hune[^_]UWVS   ˉE    t'hR  Z   Y   uS   h  Ѓh!  h!  Pt]W   W   uSP4$    } t
h  h  Z   Y   uS1e[^_]UWVSӃC RSTC	C0{t ; tPPs0h!  PPs0j WW13VƋKC9}"19{S!tv(GԋSD{ ST:	C0&{u!; ttVVs0h!  QQs0h!  t6RRs0h!  SCSC	C0e[^_]PPs0j UWV1S];sC0}Cf1S	׉C0cHEC0MxRRPj EEF뵋KA{  u;SSKBI	=PPs0j C,CC    ESCSC	C0C0e[^_]U1WVS]UK׋s+;9{)I@   K{ yC    tC,JPPPs,1s$IZCYPs,s   s$"C0e[^_].UP(tP҃RRPj
EEUSS]S0B0t
QQjRЃC0]]UWV1S,]};]   EQWfe)PSUԃ 	   t?E@t
RRWu(E@<0t8¸    uWfEf<vuce[^_]UMEUE    MM]1UWVS]}SC0C(    w
h  h  ZYWPu        e[^_]Ã{( ueP   P   js0;C@C(u8V$      ZYWPƋC0 	wC(   1{(s0@PRV4$SCSC	C0C0e[^_]UWVS]}C    C    C   C   CWWU+C+CE$   Ƌ)~{	E   kKCE    )~{	KKCC    ){u
@C      )K@0҉)~E   E            h  U؈Mވh   Eߢi   ZYPhi   $	  ZYPhh   U؃tPPuW)EߋS    Eޢ    SU} St%;UEj xsSSSe[^_]UWVS}jơ       j4uV       EC0E^FW  FY  FV  FX  S0{,C    B0t
QQj RЃs0CPj uCS9	)HBCډiC0$V1e[^_]UWVS,u}}td   kdщ1ۃ v    C

 wkEUȉM4       UȋM̃ۉEu}u'EPj jdQR uuuRPh&	  PPuWVh4	  jhl    l   e[^_]UWVS4]j,SthD	      _XShF	  VVShV	  $T	      Su ha	      ZYPh	    8   P        k  xPPh	  Wu;	  QQWh	  CtdRRURVЃ=     uEEt0Pt hT	      Y_uh	  u        C$tnRRURVЃ=     uOPP}Wu$T	      <$PEPEPEPEPEPEPh	  0        C tvWWURVЃ=     u7Et"PtSSuh	  u        h	      ZYPh	  BtP11HX@ MЉ]ԅuC	  t@	  h
      MS]SQP PPJ   Ph&
  6Bu@uh9
  ^C	  6th@	      Ã6$O
  UԉE    MS]SQP Vhg
          e[^_]Ã=       UWVS            }C}}t)t"r׃wz qw 9uE@͍Jw  Hw 9u(stP        p   e[^_]UWVSEu        ~  SSPh
  tۃP$t   t%3sYs$       WÉE   PtCRRj:S     @EE <	uE< tju        fSFu        V,uFu!V        Xv   5   uW            a  e[^_]URPP$UVS    tS,t	PPVS҃e[^]U
 	t:Ht	RP%@<0t8    uR   UUE]UWVSÃH1Mč}Թ   SE    SUlWuče[^_])UWVSʉù   1L}}E% 	uet&E	   %   EKf  PPWVVF t4   VЋU   U)PPWVVKu  F<0   ډEfSf9   uCV<8% EuPCtPEPPCPuE"ft<vCC1% EjEPjEPMt'EMQQ%  	ЉEEPVVME AG6E
RRSVV% 
uE%  EPPEPVVe[^_]UWVSÃ,1}Թ   EL  J<8   7  %     wF!  t~w!       !     !        !     %  tLw%        ځ%  o%        ف%  T                  %  tcw0!  tnw<   !  !  >   tWv!  tM?%  t0w%  |   t4%  %  t%  t	-   +   ?   ^   M%   	MԍEԉ,[^_]UVS   tPP6sdtBjhu        16Cd      ؍e[^]á   U壘   t@`            ]U1} ]   ċ    1t@UWVSPt.    ƅtSS fFfVމ1e[^_]UVuS    tt؃[^]UWVSEu          RRPh
  tۃP$t    t%;sXs$׋    t%;sYs$                VÉE   PtC<it<otzM    RRCj:PEt1  @EE <	tS< tOjuA        ueV        v    E럃uCu        S-uCu%s        $j_e[^_]UVuS]Sue1[^]e[^]UVSKxPPVj e[^]UWVSÃPP$S )Ɖ)~e[^_]멍e[^_]UW   VSÃ,uEkUԉM؉E;]   % 
u} tUEyMGU% 
   tNF`xE~`uP9|,C+]؉FEi3333DFEF      } uUE.EufEEP MMf1	EUE1fCf<vsfct} tUE1e[^_]UWVS   u} \@<ǅL    u$EuP L<)LM<EH\PuRjhj uV1;^}DCMU 勅\LǅX    ǅT    dÉ`;@  wD   uu3F<~FX&PVTFXtHFXFtHF13uc   l% }0 lt-`+\U0X fz	fEl]`ǋ u!}(   `PT  H9`	
  
:uF    FX    H9`d9Pvu=+t'\9duH`+T9|`)TPL\TX} ;}   ;    9dsCE@<8udMU d0tԃd뵀: u}$ tMUE$W}, tUE_} u}$ uPPuj
E9tcF`PEV`udPd9|5;Pt;
uC@F)ǉFEF      T)`;Pt;
u4}0 t.ڋ`+\U0)Xfz	f} tM} t	M    }    ;    }$ u<E!@<ufDEP DDf1	DDEL1;~}D>GMU 剝dE    d#d}0 t*+\]0`Xf{	f@9dX } up} uj}  tw@9dsCE@<8udMU $d0tԃd믃}, t UE
1} #X1H9`Me[^_]UWVS,u} ỦME    uOE} EtFEЃVV ;U}&}$ uE)ЉRUf1	F<8t	   1}$ 1ۃ} EuVV +]ԋUԉMRRuu,u$SPVhd  EPE)PW0y
7  ]kE؉Ẻ؃} u
} u=N;Es 
)M;Ms91ҁ 
)} }  u)iU)ĩ}    k48u1;Es 
t9D;% 
#fCf<vsfcE}ȍ89rЃPuQQMu(u$uuVu uu1BU]ЉS\7P1Mu,u(}$ UPu$u uuuuVu0e[^_]UWVS,]uPEPEPSẼui      1 =    UEtPPVWW?;
u&Eԋ=    %  EԅtQQVWW?CR1RUj j j jj j j j uj $ue[^_]Uu(MUEju$u ujj j uu0Uj Mj Uj Ejj jj j uu`0Uj Mj Uj Ejj jjj uu1UWVS<u]    Puk  u1   =    E% EԅtPPVWW?;
u&Eԋ=    %  EԅtPPVWW?C렃j jSVW     E    4   P1Pj j j jj j j 5   Sj D0tE   h
      MQMQP} u*        5    E       } ur     5    tVj j uu6    u$E5    t   6S$}
t}u$      tH`        ,"Fe   @tLQS1j j j j jj sj SVj 20us\C\    C    C    ECtAR1RSj j sSVj  u8s\C\    C    C    6{W	E   e[^_]US]SZYPS]USR    tDC<tPPSj
C4t&Sh
  uЃSS(븋]UWVS1ۃu}E
  E   e[^_]4C9ue1[^_]á4   U     ]á4   U] U4   U]UWV1S    x4 uRRh   j   Ft1    t{3Xs$ס    X4P4       X tP54   14   e[^_]UWVS(j8Et|jtk    1=    O44   4   HG4 3ss3[t'ECtPPs3t    Fu1e[^_]U1]FUE    ]4UVuS1ۅt4   t#t4   J1tN(s1
[^    ]Uj h!  h3  h'z  hG      U5   UWVSh      t    l            wRBZrty	ˀAZzr?		Z	9rJZ?	t.Z
	J	    	끍e[^_]Ã=    UVSu   t v    '0WZ
	J	9vJB?	u9sފBB	1[^]UWVS=       h      t    _            wEZAzZ?}z	]	Z	]9rJZ?	tZ
	J	딡   t v    %0MH	P	9vPH?	щu9s܊@1e[^_]UVStCÃu/?	؉Xu:
ur:wp        1`xPu   w8        /u   u      [^]UEMSU9   w        w(X9   у?ʀP       (  vt  w/X9vjу?ʀ?ɀHP   GX9v;?ɀHу?ʀ?ɀHP   
[]UUEW}VSӍtt-9s)EEpVStu?CO +Ee[^_]U1҉1S;Ut<]v  w! (  w@  wB[]UWVS}WupRVtVPWue[^_]UVSu]E    E    t+1F)FMUIt} u؋Eu   	= v1[^]UWVS}]E    E    tu} t^} tXEMUE1})ECEu} E?   E    u]} uEt
M뜅t+E[^_]UWVS}uWÍ    $t$j jWSP } tMe[^_]UWVS=       h             JZ?	   Z
	J	يZzr?		Z	9s# wZZ	A몃o           t	} v    )u0[H	P	;UvPH?	щu9UsۊP@	1e[^_]US]% P1҅u#ȃ%     ҃Ћ]UWVS0]ujj Su%EE    E    EЋEECEYE tw% cfc%  	Љ   fcC    wf} u,EE9EEr      w} tf- fS	fSPE@  } t-   fCwf}fЅuuY<BvRRPstC6Pu        4PjuVsfC}fȋE؃}9s%fTf!u}v}!utwl)    <QWDPE %  	ЉUfGf%	fGfCf%fB	fCv;}w@`} Eu2fcc %  	ЉCfcE   0+Ee[^_]UWVSӁ  kP  119tttFߋ11ɍ<1ۉƉǅ    ǅ    ǅ    ǅ    9   =   u+tkL1ǅ   =   u9tkTBB1ǅ   t-   fPk)WPR+G% P   $   @=wƉC@=vǅ   ,  ƉC   ǅ     =w#ƉC   =v   ƉC       t      K   ǅ   uO
uWW?ЊW	ɈWWt@	?	W   ǅ    a u1  1;r15  kȋ9ut%T?Q2P?uË9tkD?Aك?;3  kX  $8  X?	ˉX    H?      H`  Z;Q  \3     5  KtCƉfZ     ;  L3       H?      ^    uA;uukL     uZ;tZÃK΁    uB?B   KΉÃK΁    u?B  K;uJ[;s-L3        uH?  H?HkC     u u%?CBڃ;
  k;t?v    u
@Ձ     t  t9u+9u-kTx  ҃s;uk\  Ӄ9u'ރ9sQG?	Q9GۉދY?	Yԋ   t>  t6B;tVpX?   u     uA?"  t    uAX?	ˈX1ۃ u  ;t`B} }~fE9Er^} t&Pjj SU[%   	ЉCPjj S%  
CE    E$}uǅ    ǅtǅ    ǅ    ǅ    E% l} 9t< t36EO	؋]fGfLG9u+ t"t6	ȋffOǅ    tZ} t%WWuUƋ % 	t u}  u;u~	} uo  9~tb+TtD u;} t5}  u/u&+u;usǅ    ǅ    k;s(V?9s9stCЍApp9w  9w  9t(B?;rB?;sB?;!  @;tB?;    t+kD}Bf4f11ɋǅ   k)<xf~޹   ߉ƀ ǍtFK}4f~f)ϋ	f~fuH4f)ϋ	fx9pw53 =    u{   u:    PH?	щu)CuhG;r    w06H	P	9w9s@넅tC?tKC?t
	ʈ		ЈCn1;s`% Sуu"Iut	S1҃!փw   G똋xk\1xpG;ve% }Sуu"Hwt	S1ҩ!֍PvHu   O댋Q+kS9tW} t*Rjj V%  lPjj W%  
99tC t:k}Pf$@ft9w;+ĩe[^_]UWVS(M kE<}MxPËEۉ   EME;u   t>
uuuu,)u(u$Quuu yE0Mk;ut$Pjj SC~%  
C1ɃsE+ie[^_]U1҉E    t9u	   B]US]M ؁   wD    t49u+tw	u Bt
uBBBuƉ[]USP];]r3 v! =   vRuȋE]USP];]s3 v! =   vRuȋE]UWVS8j@tr@   1RjEPuHu5}tN9rPPWSMMԅt%ÊE<
t31   3 uuS1؍e[^_]USuuut#PuSH    ]Uj hN  h^  h    hd  j hj  h^  h    hy     j h  h^  h    h     j h  h  h    h     j h  h^  h    h         U   tP          tP          tP          tP          tP       UEVuSPt*Ph  h  j2h	  F C^1e[^]UVS]t,3Sh  h  jAh	  SЍe[^]UUBB    ]UUMBJ]UVS]tFCtPCtpuPJމ]e[^]e[^]UWVS]jutXEF    uYxXWuFt)RWuPF    t؋Htpe[^_]USP]h"  h  h   h	  ZYjut1U     @    Pu	@   Cڋ
t؋]Uh+  h  h   h	  ZYjutU     @    PUh4  h  h   h	  ZYjutU     @    PUPUPUh;  h  h   h	  ZYjutU     @    PUPUPUjutU     @    PUPUPUVuS]hC  h  h&  h	  t6uPPjut     pPtp1e[^]Ujt U     @    @    PUPUWVS$j j    juVquuuPuV$KSCC    SUUCu{ t)SP<$$4$*SFCFCFW$1e[^_]ÍPU	v߃A<   ]USR   t7BB)BtR   tR   ]UWV1SÃU    <$   <\U  EEtk} te{xu_CU*U؅tLCU؅t<BEKEPUSEPUSEPUSb  t} t	BE\KuE  StEt
HM$  C<Z<A}3<9<0}/<#<?      <z<a}<_t   <{t   eGPPj}S   WEP)PESMЃMt
      A   0<	w!C߃AwCHЀ	v<_tWEP)PERЃuRWEPEjRЃuK9Et2PU $'tt	BE\Et
PUK1Et  1e[^_]UVS]CHK4PPuuS| e[^]UWVS]uu    =QQj
PtRRG)RP13;e1[^_]Åt8UVSPuPhS  jVVhV  ؍e[^]1UWVS(PD $   1ۊGEtn\uLxuFGU'Ut3GUt#\GSDGDG룀*t
\t?u\C}C 1e[^_]UWVS(P@$tj1tZ<\uOF<xEu=F|t0Fot#;\FOD;FD;F믃EF;G; 1e[^_]UW1VS]u;~s&Puu4uM< u;~udG˃}u1E8#u)   phX  j334$Ɖ3*4t@r
x te1[^_]UW1VSu];{s!PVu4u<0 u;{u<GNuE8#uC(4tsPƉse1[^_]USS 0	w   @QQh[  StRRh]  StPPh_  S]UVStRSha  j	PPVSe[^]UWVSLEUE    E    E    E:  x 0  EP  E@E}   E8  $p  E]̋pSE    E    E    C  u>V  8   uPPV  PPV  =    u
Pj j   PPh[  Vu0   pEhX  jPE؉$PEP  PPh]  V   1   ;pg  u.uPP   @4SAStI  u6   @4P   @4S  FPjh|  St   QQh_  Vuo1   ;p   u   u%RR@4S8St   @4P   @4SuuFQj
j VtL   ;BwA?BuRR4S 4P   @4Su]E       1ۍEPSB  } uhE8 Etr  PPVEP4${  E4EE< u끃EPtD  PD $   GWt#\u \*t?t@@\@  )WPVEP^VSSjh~  EP  E@  PPSEPtSs  Sjh  EPL  E@E  E@8   PPEpEP{  EX1E    E    E   ڊ
t$BPMغ  $    E؉t   1   S    Mغ̥  $    yu̓VE$t  PMؾ   =uCDPPWEPtW1WS1;]sE؃4Cu1E@  PPSEP$  E@E EEUă| uHE}ع   u1E    }E    E8       E    t"QQMQ0tEP} t11hWE܋0   PPSW$   t*   ŨE4EŨ< u=WuƋẼRUUPRW랃REEEP}u   1EP   e[^_]USEE    tSH~	PPh  .Sj
EPE0á    ugE8 tQQh  jLuRRh     PPEh  p         19v   ]U=    EE    tLt(H~   @Pj
EPE0U: u      J9w)BBJ1U   WVS=    E    E    E    tbjá    tJPuuuVtS     C    {      1e[^_]U=    Et~	QQh  au/hV        u1]Rj
j PMQj
EPE0¡    u1E8 tRRh  j      tPPh  RUSQEX1t=    uD=    u[Z[]USQ]C"=    uChV          tRRh  PuCC]]UWVS,u}܉E    FE    E    t
          11;]sJ=    t=   u
       =    u"EF@qFH=    uC뱋   tJ   W   EEԃe[^_]USQ]   C=    uL{ tu6C=    u%=   u=    t
       =    t   tJ      Z[]UEt	@]r1]UWVS8E5   =   E    E܋EE           EEԣ   Ep=          Ée[^_]UWVS<EuȉE    @E    E    'u	}̋u
      EȉEPPh  StUčOE    J>Uȃv
M̋YuV[^h  j  E   M}QQS5    UUM#  S        UMuvSXZj=St        P  S5    hS  jW V  V1   SQRPÃ} t3u        0 uPPh  j1ۃV=    u
        ShS  jW^XWhV  I=     t@uPSh  jZXPPuuQRP?SQRPP3e[^_]UWVS1ۃ}} taERPj W1EPh)  uu    u!P4$Xu뙍e[^_]US0E   uEEE    EE      ]UWVS}j   EpuSk{    tQQ30xu	86RR30u6v~$C؉1e[^_]UWV    S}    tCRR3Wu*C3Xs]e[^_]s[빍e[^_]UWVS<}5    tRR6W   v1]ӊ҈t@uSE ؍P9r
Mǉ   uJ1	} xB)PEPh)  jD V      uJ9w)ىȉ      MuZ9v      uZ9w)ˉ)돍e[^_]UE@]UEH]UVuS^C{ u4C    C   h   CuFC    Ce[^]UWVSE}XSu1eJ{ StsRR)VRPt{1ҊɈtB9u0 { u#sC    C    C    e[^_]UWVSu^{    { tuKǋC9|L9K}{CMCRRPQMCu!QC    C    FPPuCCP{e[^_]USQ]t,s@XsZs(]]]UWVSE]p    @t
     ~    F     F$    F(F,     QQv@S=  tn~  tF(N4v@   RRPWhA  hU  hA  h[  MEE MPQ3u~  t
~$ n; CEx 6e[^_]USQE]tRRPjC]UWVS,uEE    ^{ u{< uM  uuPPhj  /uWsEjPPEEuQQh  V   PǋE8 uP$  E+t'|8
t RROQPt
8
D8 GE} tC<tlPEԍD$uufQQs<EPUC<    _}Xu׉UWXuUԃUPPs@uZu1uF   e[^_]UVuSjH   @0    j C(uSwEECC@PtIPPs@VE^u  QQPVt1F    s@Xs@Zs($1ۍe[^]H		ʉ	Љ		1@U]UVS]{ t(1;3sC4Fs    C    C    e[^]UVS]stt| t;   WRRPVt#CQJu     C    1   e[^]UWVS]} C|tZtW1ɉuMFRRPWt&MPuuQ7 C|1   e[^_]UWVS1ۃ}E    uE    E    ;]}EVtV   .4P4VuC붋}   1e[^_]UWVSu}u1   PtTFuJPuCuP)PVWu"; tWƅuހ> t뾃PtCĉe[^_]UWVS<EU$u]E؋EU} E̋EEȋEEE(EUEuE  E   e[^_]u  PRWh  Eu
      ta> t\1< @uPE  xt5PG  ~ t1GE    EtPEu}  E    t,1WW4  Su	<  Fu;1} uQQh  j(  Ẽ0E  EȅuEP   E؃   PE   1;M}%ẼM4M   A֋EԍHED    tH(j,MM̃txU} U܉px Pt	@   UPU؋PUЉXPUċP$E 1   1E    E    1E    11ۃu} uutH}܃Gt߃PSXuZu4$    ߃GtǃPe[^_]UWVS<}EuEu	E  %Fx t~ t)E  ~ uE  E   e[^_]x tHM1Ƀx( M]e  ~ uE1ɋpXR:s1҃8 M܋H$tPuVj SuQRuW0V  ED     ES]DEЊ  1ɈEύGEܸ
   ;M}"}tC'ҍDPAكP   RRh  PG	1;U}\  X@'EEȍHAt6<'u,PPh  SMĉU$  UȋMCAÍCB' 
@ FuԋR:sRVRWpup$puuMЃ$ÊEψE؉0W    e[^_]Uh  h  h/  h  h  h5  h  h?  h/  h  h  hQ         U5   X5   UWVSL  ]ǅ   ǅ    ǅ    ǅfD 9   +B'  ;  ='  v
ǅ'  kPǉ  4󤋍k1҉   k󤋵9tVT׉tT9Y  L        uPPSP~!     wd  1ǅ       w^,  9uS  
؉S   FǍǅƃ$      Ј   )kP8@ȃ=  $  1  CC      Pvv  WW1h  Sǅ    u  Q6j S#  s$$u  F䉅PPvSXZvStPPj}W  Wjj Suf  PPvAtċSPFuA C   @tAA   FttFRP@    ~>  FtQRPSVttVHJ@    PPvS   >   P6j W6vS   s$CC       QQ3SZYPvu3KHRRPvF̃C_~j vvvvv6vvS;vvvSj sjvvSYsk))ƉHvxH  #  f=   wf,  f9u	    S uRRh  S#u u   ǅ   t"@=   w,  u  )9tg 뢍F   Ǎǅ   PPh  S   1   9tRe[^_]UPHRPRP$P   		HP]UVSH4y)h      $      ZYVPS4C<D C,e[^]UWVSÃ@uZjCu)h      $      ZYVPPjj sC   C    hsV9Sr`WW    RPCu)h      $      ZYWPPj j SCPse[^_]UWVSӃR89S4|YC<S8uR	WWRPC<{< u)h@      $      ZYWPK4   AC4C,H{<D6C,e[^_]UWVSÃuRUUƋCx,H09r;ɍ<69sωURRWp(UuVVj S(KA(Cx0CQQRP,@(DPCp,e[^_]UWVSӃpv<<$F<uPPhn  3   1e[^_]UVuS]CtMS9tGt&S$CSCS$PSCSPCS4C0   u[^]USP]Ut7BtR;u     { ts]]]UUSEt>JB     JA JB   B,    JHtX;u[]$[]UWVSS    QPUC(   ;F_ZUtN;tC    C$    C        e[^_]UWVSuj0u)h|      $      ZYWPsVCu)h|      $      ZYVPM؋UC   e[^_]UWVS]uCt	S< u$uCS<PSh @  sCtS1ىe[^_]UVuS]teCt/S< t&S$CSCS$PSCSPCtS< tBSS4GC0   [^]USQ]CtLStBRRSPCS    CtHCCtS< tC0   ]UWVSEu   | x   |    j0u-h      $  E    ZUYRP{ssC        {C    C   C(    C,    PPuS1e[^_]UWVSEXSu)h      $      ZYWP1;UtEBD  WuSVu)h      $      ZYVPC   e[^_]US]SuPS]U RPUUt@@       r1PPj 2   UE] UUBtRt@$1]UE]@ UE]PUEU]UVS]Ct	S< u)h      $      ZYVPSCUP$e[^]UE]\   UEU\   ]USQ]u    
         h`   u          Rh`   j P@    @    @    @$    @(    @,    @4    @8    @<    ǀP       ǀT       ǀX       @    @    1]USQ]u    
         h`   u          Rh`   j PU@    @    @    @$    @(    @,    @4    @8    @<    ǀP       ǀT       ǀX       @    @    1]USS]Ct-St#QQSRSC    $̃PC    Xs<C<    C    C    C    C$    C(    C,    C4    C8    ǃP       ǃT       ǃX       C    C    $1]UE   Jy8 uPPj RUWVS,]E{( \   uO{, C(   uC,   Ct	S< u$SCWSh @  s4;{PC$ƉE܊CC,
f      Mt$C@SD   =   ~u  Mu @  u		  9u	$  B=   uCDEC@MU   )ЉC P   C {   v-h<      $  E    ZUYRPC 1ɋP   @E;M}	
AEC$K	  $  Cu^CME܉Ns$)S P   ACA {   v-h<      $  E    ZUYRPC P   @E1;E}	@s$VVW3  QQW3    RRW3  ~  PPW3  g  PPW3  P  PPW3  9  PPW3  "  PPW3	    PPW3    VVW3    QQW3
    RRW3    PPW3    PPW3    PPW3  j  PPW3  S  PPW3  <  PPW3  %  VVW3    QQW3    RRW3    PPW3    PPW3    PPW3    PPW3    PPW3  m  PPW3  V  VVW3  ?  QQW3  (  C$KPCCID9u-ډm  PPW3     PPW3Cu)1RRSPډQtS   Sы@@8   2VVW3q  ڸ   !ڸ   ڸ   	  ڸ   @@4      AS@@8    @@$   @@4      K K SQDO C,@w	@4    K@4   B@@4   -   \  iڸ   @@4   !  i     b  2   `  &\@@4   ɹ   ^  K S@@   1   he    u+P   HEԊCSCz, uRSS SC@,   KSC$rS9ȋP   wpEȉC$S$f    tC@SD @  A		  9t
   	$  1ɋP   =   !ȉuPBS$T9v3hy  M    $  E    ZUYRPM؃SCS$x( P   u)Jf    )BE1;E}	@SCz,   C    B       4K$+N~    F   ЉFPPFM؃PvM؃F~ u3h  M    $  E    ZUYRPMЃFSȉC$CEBSCYVyF    C    @    { E    u4} uVVSsE   SCE   @,   sKSE4;FvMQQRvFSCx u)h      $      ZYVPKCUS}S@ SCPCD SC@P   t$}tiEԉC$P   S$ugC0    StP      C$C,HpF!{0 VVSsSSC@CC$s$u䋳P   uah      $      ZYVP  e[^_]UWVSx$P,P   };MsgEt
  ]f   t"P@HD     ~
  ]@  u	  9u$  A딉ZY[^_]         0  J  c  x                                              (  /  l  s  z          nM  ~M  M  M  M  i
  k
  o
  s
  w
  {
  C	  
  
  
  
  
  
  
  
  
  
  
            =  ؉                  {  {    f  {  {  {      %  {  0    [  ~    [        Y     c  	   g  S  n  R  u  ;  x  <  {  =  ~  >    ?    @    A    B    C    D    W    X                                            .     ;         B       a          d       {                                            G  B  ;  S  _                          ;                                      ;    ;                         B                                  
   #%$&&&''())**++,,--................0/112234555556687:9;;;=<?>A@.  !"
!@!!".89:Q`IL5NOP@3J YQSTUVa_g !"!"!"!"!"!"!"!"!"!" !"89K;-	K1
2`aJ<	Y@
PKD-^EFHW3f  Q  SATUV-?R  _X Z[\] gK     e    Ki 	K L
N   	  O
K	   
   Kb    	  K
 c d  	  K
 	  
 h   K	   
 	   
 	   
  !"#$%&'()*+,5BGC.=I>/0M6:74     5>< ( ,-./0	:3 !"#(&)
      *$'+(1 6    2      7   % ?=4 9 ;8  
 9               C P Z            l {       	
 !"  b    o      *  A  X  o                '  >  U  l                $  ;  R  i             x  R  2  ;  D  U  x  x                  x    l  K  R  x      x  ?  K  R  x  W  l  x        r                                                                        " !  " d !  d  !                                            #  Z   #        Z            $      %    $ [ %   ?   2 2 [ 2      6 6 ?   D 2 =   M = = I I 6 = = > D > K >  M \ K e I   \ >    \   e _     y     _ `    f    `  f   c     @ @ c y | @ @ { {  @ @ N O N O N O | O Q  {  Q Q N O  Q Q @ F F F  F F F   F F F  V  V F V W  W  W     V     W F F F J J J J J J J J J J J J J J J J J J J J J J J J J J J J J J J J J J J J J P   P P P  P P  ~ ~  P P  P P P X Y X Y X Y ~        X Y                                                                                                                                                  } z x v b a ^ ]                                               U S                               L G  C              B A                     ;  - +  '                                 
         	                                                                                                                                                                            !     " # $ % & ' ( * * + + , , / 0 > 1 / 0 w 1 - - 4 5 4 5 U 2 E U U 2 c U a [  6 b 6 9 9 9 9 : 9 9 9 : ; 9 9 9 : : < 9 9 9 < < < < < < < < < < < < < < < = 9 9 ? U @ U A U  U \ ? d @ ] A B G H I  J G K V B G G G U ? U @ L A ^ U U _ e U f ` > B Y m n  o G G G M N r s E N O > p x N N > x y | F t x x ? E @  A U  U F U } Q >  B ? > @  A >  U U  > > y > B > >  U ? > @ U A > U  U  > > U > B > Z M N   > N O | F U N N ? ? @ @ A A E   > }    B B F   Q G H I  J G K U U G G G  ?  @ L A ? U @ U A U    B U  U  B G G G G G H ~  G G G   G G G    G G G                 G G > >  ? > @ U A >   F U > >  > B > ? ? @ @ A A  ? U @  A U U B B  U U U  B  U                  G G H G  G G G   G G G    G G G                G G G ? H @  A H  U U  F    B >  U ? > @  A >  U   > > U > B > U      G G H G G G G G G  G G G G G  G G G                G G  ?  @ > A  |   v U U U  B ) ) ) ) ) ) ) ) ) ) ) . . . . . . . . . . . 3 3 3 3 3 3 3 3 3 3 3 7 7 7 7 7 7 7 7 7 7 7 > U > > > > > > > D D D D D D D D D D D F F F F F F F F F F F P P  H P C P S S S S S S S S S S S U X > U U U U U U W W W W W W W W W W W h h h v h k i h g h h j j j j j j j j j j j l l X T l > l l R l l q q C  q q q q 8 q q u u u u u u 8 u u u u z   z G G G G G G G G G G G { { { { { { { { { { {                                                                                                                                                                                                                                        F F F    F                           F                 F                                              " # ) - 3 5 G   i * z   r   & Z t * ) ^ v { b          w      dh[   X * W   O 3&_``      -                W  i   f   H\  
 B[ M  fbaWH\ `       | "-8ALT^ir}*                                                         	                                                   
                                                                                                                                        	                  
   
   
   
   
   
   
   
   
   
                                                                                                                                                                                     !      "            #   $   %                                                                                                                                                                                                                                                                                                                                                                                                                                   E "    " #   	 
  ! " # " ! ! ! ! ! ! ! ! !    + & ) ' * 9 < : ; < @ C A B 4 3 2 , - . 2 "           "           " " "      !  "    !  ! !  ! !   ! ! ! !  + ( $ % 9 8 7 5 6 @ ? > = 4 - .            " " "     "     " "       ! ! ! ! !  ! ! ! ! ! / 0   1     " "       "        ! !  ! ! "   ! !   !  !    > grub> not in normal environment prefix config_file config_directory root (%s)%s  ESC at any time exits. Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s tftp %s/grub.cfg fw_path gzio Clear the screen. clear pager Enter normal mode. normal Exit from normal mode. normal_exit color_normal color_highlight light-gray/black black/light-gray y i386 grub_cpu efi grub_platform feature_chainloader_bpb feature_ntldr feature_platform_search_hint feature_default_font_path feature_all_video_module feature_menuentry_id feature_menuentry_options feature_200_final feature_nativedisk_cmd feature_timeout_style  Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible arguments are: Possible things are:  %s   
 %s/i386-efi/command.lst module isn't loaded superusers user '%s' not found Enter username:   %c 
 Enter password:  access denied  Check whether user is in USERLIST. [USERLIST] authenticate %s/i386-efi/fs.lst Warning: syntax error (missing slash) in `%s'
 Warning: invalid foreground color `%s'
 Warning: invalid background color `%s'
 black blue green cyan red magenta brown light-gray dark-gray light-blue light-green light-cyan light-red light-magenta yellow white )  %s,%s "  '    . .. %s/ set -u --help --usage --%s / Sunday Monday Tuesday Wednesday Thursday Friday Saturday 
    Falling back to `%s' 

 
 Press any key to continue... 
   Failed to boot both default and fallback entries.
 timeout %d default timeout_style %d     theme gfxmenu module `%s' isn't loaded gfxterm fallback chosen 0 boot menu countdown hidden     Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible arguments are: Possible things are: 
     
 boot Press any key to continue...  Press Ctrl-x to start, Ctrl-c for a command prompt or Escape to discard edits and return to the menu. Pressing Tab lists possible completions. Use the %C and %C keys to change the selection. Press 'e' to edit the selected item, or 'c' for a command prompt. Press Escape to return to the previous menu. Press 'e' to edit the selected item, or 'c' for a command prompt. %ds The selected entry will be started automatically in %ds. menu_color_normal menu_color_highlight %llu.%02llu%s %llu%s ext* .5  	 Partition %s:   Device %s: Filesystem cannot be accessed %s ext2 Filesystem type %s - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s , UUID %s No known filesystem detected  - Partition start at %llu%sKiB  - Sector size %uB  - Total size unknown  - Total size %llu%sKiB 
 B KiB MiB GiB TiB PiB K M G T P B/s KiB/s MiB/s GiB/s TiB/s PiB/s %s/i386-efi/crypto.lst %s/i386-efi/terminal.lst --MORE-- debug one argument expected cannot close the initial context Export variables. ENVVAR [ENVVAR] ... export Exit from loops [NUM] break Continue loops continue Shift positional parameters. shift Set positional parameters. [VALUE]... setparams Return from a function. return malloc %p
 scripting script/script.c free %p
 arglist
 cmdline
 cmdif
 cmdfor
 append command
 %d ? %u # * @ invalid variable name `%s'   { } one argument expected unrecognized number can't break 0 loops break not in function body false 0 ! no command is specified %s isn't allowed to execute in an extractor can't find command `%s' token %u text [%s]
 lexer script/lexer.c unexpected end of file out of memory 
  no menu context %s%s menuentry is missing title missing arguments multiple menuentry definitions no menuentry definition setparams '\'' Define a menu entry. BLOCK menuentry Define a submenu. submenu backspace tab delete insert f1 f2 f3 f4 f5 f6 f7 f8 f9 f10 f11 f12 class Menu entry type. STRING users List of users allowed to boot this entry. USERNAME[,USERNAME] hotkey Keyboard key to quickly boot this entry. KEYBOARD_KEY source Use STRING as menu entry body. id Menu entry identifier. unrestricted This entry can be booted by any user. Incorrect command syntax error memory exhausted start-condition stack underflow fatal error: %s
 out of dynamic memory in yyensure_buffer_stack() out of memory expanding start-condition stack out of memory out of dynamic memory in yy_create_buffer() out of dynamic memory in yy_scan_buffer() out of dynamic memory in yy_scan_bytes() bad buffer in yy_scan_bytes() yyset_column called with no buffer token too large, exceeds YYLMAX $ \ " \\ flex scanner jammed fatal flex scanner internal error--end of buffer missed fatal error - scanner input buffer overflow out of dynamic memory in yy_get_next_buffer() fatal flex scanner internal error--no action found      u-  z-  \.                                                                                                                                                                                                                  G                 ? { `                                                     ?ymӇ9^? ӿ;  ӟ9 == =` =`@ = ?/_                                                                       ======                                                         _               0<                /                                                                                                                                                                                                              a                                                l               x  | g                                              ?C        G >                                 M x??`??Cpgᇿ???0                                          $!                ;              ?   ?   ?                  0@p 0                   ?                                                ?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ?                                     "  `                   x          ?                                                b  c  e  d                B          0              5          7          -          D                                              Z  [  ]  \  J          C          8                                      ~  V  W  Y  X  '              "              (                          ~                  E          ,                        q  P  Q          4          %              {  R  S  U  T  F                        +          1                          v  w  y  x  *          :          $              y  f  g  i  h                #                            A          H                            G            j  k  m  l  .                      z  {  }  |              n  o  q  p  9          3                        6          /                                                &                                    r  s  u  t                z  ^  _  a  `  2                            )                                  (   )   )   (   <   >   >   <   [   ]   ]   [   {   }   }   {               :  ;  ;  :  <  =  =  <          9   :   :   9   E   F   F   E   }   ~   ~   }               "  "  	"  "  
"  "  "  "  "  	"  "  
"  "  )  <"  ="  ="  <"  C"  "  R"  S"  S"  R"  T"  U"  U"  T"  d"  e"  e"  d"  f"  g"  g"  f"  h"  i"  i"  h"  j"  k"  k"  j"  n"  o"  o"  n"  p"  q"  q"  p"  r"  s"  s"  r"  t"  u"  u"  t"  v"  w"  w"  v"  x"  y"  y"  x"  z"  {"  {"  z"  |"  }"  }"  |"  ~"  "  "  ~"  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  )  "  "  "  "  "  *  "  *  "  *  "  *  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  C"  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  #  	#  	#  #  
#  #  #  
#  )#  *#  *#  )#  h'  i'  i'  h'  j'  k'  k'  j'  l'  m'  m'  l'  n'  o'  o'  n'  p'  q'  q'  p'  r'  s'  s'  r'  t'  u'  u'  t'  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  "  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  "  )  )  )  )  )  )  )  )  +*  ,*  ,*  +*  -*  .*  .*  -*  4*  5*  5*  4*  <*  =*  =*  <*  d*  e*  e*  d*  y*  z*  z*  y*  }*  ~*  ~*  }*  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  "  *  "  *  "  *  "  *  *  *  *  *  *  *  *  *  *  *  *  .  .  .  .  .  .  .  .  	.  
.  
.  	.  .  .  .  .  .  .  .  .   .  !.  !.   .  ".  #.  #.  ".  $.  %.  %.  $.  &.  '.  '.  &.  (.  ).  ).  (.  0  	0  	0  0  
0  0  0  
0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  Y  Z  Z  Y  [  \  \  [  ]  ^  ^  ]  d  e  e  d    	  	            ;  =  =  ;  [  ]  ]  [  _  `  `  _  b  c  c  b              	    
         @       `        @ ! @ # ` & @ ( @*   +  @ ,    -  @ . @  0 @ :    ;   <  =   >  ? @ [  \   ]  ^ ` {  |   }  ~         @                   P @  @  @      `               @        B3W @CW@V @CW @V@V!@@SV#@V'@@SV)`AV4@P9@V= A3WE @WF @3WG`@VJ`@3WM@@VO @WP`@3WS@VW @3WX @CWY@@V[ @3W\ @KW]@@SW_ @KW`@@SWb @KWcA3Wt@ ~  @     @3W@@W   @V@3W @V`@3W @V @V@3W@V@@3W @V@@3W @V @#W @3W @SP @[P @cP @kP @sP @{P @P @P @P@@P @P @P @P    @P    @P @P    @3W @V    @P`      @    	@          @  A3W @P @P @Q   @     0!   "  &  0'   (  0)   * 0/  30@  @A 0H   I@ 0K @PL @PM @PN @PO @PP @QQ @QR @QS@@3WU@@VW@3W\ @V]@@3W_ @V`@ j  k@ m   n@ 0p @Qq`  t   u`  x 0@ 0   @ 0    0     0   @ 0@        @3W    @3W @V @3W@  @@3W   @V@@3W @V@  @ ` 0@    0   P    @#Q` 0   0    0(   )  0*   +  0,   -@ 0/   0 @3W1 @V2@@3W4 @V5@@3W7`@V: @3W;@@V= @3W> @V?`@3WB @VC @3WD @VE @3WF @VG @3WH @VI@@3WM   N`0Y`  \0k@  m 0q   r  0s@  u` 0x@  z 0 `AW   @    0@3W @V @3W@     @   @3W    A3W$   %`@3W(   )@3W0  @   Y`@V^    	`@W	  :	 @W;	  <	 @;P>	` A	 AWI	 M	 @KPN	@ Q	 @3WR	 @VS	@@3WU	`@Wb	@@W	 @W	@ 	 @;P	` 	@W	@ 	@ 	 @KP	  	@@W	@ 	  
@@W
  <
 @;P>
` A
@@WG
@@WK
@@WM
 @KPQ
 @Wp
@@Wu
 @W
@@W
  
 @;P
` 
@W
@@W
  
@ 
 @KP
@@W
   @W@ < @;P>  ? @W@  A@WG@ K@ M @KPV @WW  b@@W @W@  @W@ ` `  @KP       ` >`@WA F`@WJ`@WM @KPU @RV @Rb@@Wx @  @;P    W   W@ @  @W @KP@ @@W@ >` A@WF` J` M @KPW  b@@W@  @KP` `@W @W @ 1 @W4@W8@@;S: @KP?  G @WH@[SL`@W @W@W@@S@@W@S@@W@@V5 @V7 @V9 @V:>@ q @Tr @Ts @Wt @#Tu@Wz@T~ @W   @T @W@@3W @KP@@3W`AWDW @V+@ -@W1  2@W7 @;P8  9@@KP;@ =@@WV@ X@@W^`@Wb` g q@W @W@ @@W  @V  `  @W]`@3W@     @ @@@W @KP2@@W4 @KPR@@Wr@@W  @W  @W@  AW @KP @W   @3W@  ` `@W @  @#W `@W# '@@W)` 0@ 2 @W3 9 @V: @3W; @V@  D@  @ @  @3W @V` U  V @WW  X@W` @KPa  b @Wc@ e AWm s@@Wu A3W @V @W  4 @;P5  6@W;  < @W= B @WC  D  H k @3Wl @Vm@3W@@W    @W@ @@W  H  @;P  @@W`  @W  `@W@ H $ , AW4@ 6 @W7 @;P`@3W @P@V@@3W@V @3W  @P @V  @@3W @V@3W @V@@3W @SW @V @V @SVB3W @KW @V @3W @V  ` ` ` ` @   `A   P     @   P   (  @ )   *  @ P+  @P,  P-   P.  P/    0  5  9 @;   D    E @G   _  @ ` Pj Pp    t   z @@ |   } @ @  @@     @ @  @@3W @@P @3W `@P @@3W @W  @3W `@W @@P  @3W  @V  @3W @@P @V  @3W !@ ! !@ !  !` ! %!  '!  )!  .!  :!@ @! A! J! P!  !  !  ""` ""` " " @ "  "  "@"` ""  "#"  $" %"  &" '" +" 4" 9" :"  ;"@M" R"V"  _"@a"  b" c"  d" l"@ n""@ "" " "  "@"@ "`" "@"  ""@ "@" " "@ "  #  ##  #@"# )#@+#` {#@ #  $ @$` `$  $ $@ &` ' h'v'@ ' '@ ''  '@'  ' ' '' '`'` ''   )` ))@ ))  ) ) ))` ) ) ))  )@)@ )) ) )  )`)@ )@)@ ))@ )@) 
*`*  *"*@ $* %*  &* '*@ )* **  +*/* 4*@6* <*`?*  W*@Y*` d*@f* j*n*  o*@q*@ s*@u* y*`*@ * *  * * * *  * *` ** *`* * *` **  * * P+@ , ,`@3W, - @KP- D3W .@ ..` 	.@.  .@. .@.@  .@*.  .@ .   / /  0 @ 0 0@0@ 0 0 *0 @V+0 @#W,0 @CW-0 @V.0@@W00  60@ =0` 0@@CP0@ 0  0  1 2@ P2  |2` 2 2 w3 3@ 3  M   ` o @3Wp`@Ws  |@@3W~@ @@3W @    @W @KP @W#@ %@@W'  ( 8@ t @  Ĩ @KP@B3W&@W+`@VG`AWR  S  H `@W   @;P@ @W@  @W`   H )@W/@ 1@@W3@ 5@@WC @WL @WM  {   @3W@@3W @V@@3W@@3W @3W@  @W@  @W@    @KP    @P@  ) @ *  8  >   @@  C@  F@  P@ `- >@ P        BW@  @3W0  P   Q  R   T  U   V` Y_  `@ b@@ d@f  h  i@ k  p  v  P@ ` @ @
   @     @ @  @          @ ; <  = >` [ \  ] ^  _@a  b@d@ @ ` @  `P@ ! @a  !@V   !  
  7A  <!  ?  W!   	  	!  	A  ?	!   
!  
a@W
A@W
!@W
!@V
!@W
!@3W
  
a  
a  8
!@3W9
!@P:
!@V?
!@KP@
  P
!  `
     9 @  Xa  x   !  `  ! !@W! 8AWF!@KPR A@W! a @WA !@KP!@;PeA ga@Pm! nѡ sP{AVѡ@3WA@Vс@3W A Ba@3WE!   !!O!!!A   0      a  ! 0 7    !   @! BA a    %! P   a ! ! ! a   ( -! 0 5 Ea     .P  P ^W      LICENSE=GPLv3+  net terminal crypto bufio extcmd boot gettext normal                                                                                                                    ?	  Z                  
                                           )     K     :   i      M   y  )     a   X       u                 V^  Q         N         0                   gu                        O                  k  k     %             5  {F  
    I             _  :  X    z    )      ɘ  H                    "  4                                                   ;  |       S  ܂  ^     k                 o                    Wi  *       N  `                                 0  S                       0  `  y    =  z       T             l  +                        J       h                        
       -  g                  	                      /         :         R  z       d  v      p  [                        G                    )         0  h         2             "  ۾       :          G             T  ]       h    j                      i               ܄  x      I  =       h  d       r|  +              4         E             Q             _             y  8  o                    8                  L          b  (                   "|  P     8  %  X    P  K+  k     a  Z      u                 8                    >                                              (       L  Y     !  9v  3     6             A  A      S             _             y  h  a       \         ځ  b                                                     	             	  z       &	  [  a     @	  T/       Z	  +  !     p	  a       	    x     	             	         	         	  .  h     	  N  L     
  |       $
   /  4     :
             U
             k
             
    K     
             
  خ       
  \       
  (  3     
                          O     /             >         T             k             ~  Y         Ÿ  R       ݝ  S       sz                               !  "              7             I    S     \        p                 @       C  %     	                                                 !         kb                                (             4         E  sk  3     R             l  h  (                      H         I                   #  Q                             %  6     (             5  p       C             U         c             r                            .         w                      *  l                @  "       %                   8             E  0       P  |       b  Y       t  8         ~                              l       D1                     ׵         c  +       =       %             6             @             M             b  a  n     v               y  !                      V       ;                          
                          .  7  >     E             Y    W     f  i/      u  lv  /                      
      K  f                            V  ;              	                          #  !  4     ?  <       Q  v  ,     g  t  g     }                              ^       y  X                  ?       )                 grub_mod_init grub_mod_fini grub_strlen yy_delete_buffer read_terminal_list grub_script_yyerror grub_getstringwidth grub_disk_get_size grub_normal_print_device_info grub_cmdline_get grub_set_history timeout_style_names grub_puts_terminal grub_puts_ yylex_init grub_script_lexer_ref yyrestart grub_millisleep grub_menu_entry_run grub_fs_autoload_hook grub_unicode_get_comb_type grub_cmdline_run grub_unicode_get_comb_start grub_strncmp grub_env_write_color_highlight grub_script_function_create grub_extcmd_dispatcher grub_script_function_list grub_net_search_configfile grub_env_extractor_open grub_utf8_to_ucs4_alloc grub_term_input_autoload grub_script_function_call grub_strcpy grub_term_restore_pos yypop_buffer_state grub_loader_is_loaded grub_strrchr grub_script_create_cmdfor yy_scan_buffer yy_create_buffer read_fs_list grub_env_context_close grub_partition_get_name grub_unixtime2datetime grub_dl_load grub_unicode_estimate_width grub_set_more grub_env_export yyget_extra grub_wait_after_message grub_gettext_reread_prefix grub_script_setparams grub_error_push yyget_leng grub_script_lexer_deref grub_env_get_menu grub_xnputs grub_script_parse grub_xasprintf grub_script_create_cmdline grub_realloc grub_script_mem_record grub_auth_deauthenticate grub_normal_add_menu_entry grub_script_argv_split_append grub_script_argv_append yyget_column grub_memmove grub_get_human_size grub_script_append_cmd grub_device_open grub_script_shift grub_auth_check_authentication grub_unicode_aglomerate_comb grub_script_lexer_fini grub_term_save_pos grub_context_init grub_script_function_find yylex_init_extra grub_strdup grub_divmod64 grub_file_get_device_name grub_auth_unregister_authentication grub_partition_iterate grub_unicode_arabic_shapes grub_script_execute grub_gfxmenu_try_hook grub_script_yyparse grub_command_list grub_env_extractor_close grub_unicode_bidi_pairs grub_get_weekday grub_menu_init_page grub_term_output_autoload grub_script_create_cmdwhile grub_snprintf yyset_lval grub_encode_utf8_character grub_term_highlight_color grub_unregister_extcmd grub_script_free grub_print_ucs4_menu grub_xputs read_command_list grub_dl_ref grub_register_extcmd_prio grub_unicode_shape_code grub_bidi_logical_to_visual grub_is_valid_utf8 grub_auth_authenticate grub_errno grub_parser_cmdline_state grub_memset grub_getkey grub_env_set_menu grub_script_execute_cmdif grub_menu_register_viewer grub_get_weekday_name grub_script_argv_make yypush_buffer_state grub_register_variable_hook grub_script_execute_cmdfor yyset_extra grub_menu_get_timeout grub_get_num_of_utf8_bytes grub_env_context_open grub_menu_set_timeout grub_register_command_prio grub_file_filters_all grub_parser_split_cmdline grub_normal_parse_line grub_printf grub_script_break grub_menu_try_text grub_script_execute_cmdlist grub_script_lexer_record_stop grub_unregister_command yy_flush_buffer grub_file_read grub_normal_free_menu grub_term_normal_color grub_disk_dev_list grub_print_message_indented grub_script_lexer_record_start grub_script_create_cmdif grub_env_unset_menu grub_script_return grub_term_outputs yy_scan_string grub_script_execute_cmdwhile grub_password_get grub_script_malloc grub_normal_execute grub_print_error grub_ucs4_to_utf8_alloc grub_unicode_mirror_code grub_zalloc grub_strcmp grub_script_lexer_yywrap grub_parse_color_name_pair read_crypto_list grub_strchr grub_refresh grub_malloc grub_script_fini grub_putcode grub_crypto_autoload_hook grub_normal_reset_more grub_get_time_ms grub_unicode_get_comb_end grub_script_execute_cmdline grub_file_close grub_script_argv_free grub_normal_auth_fini grub_file_open grub_script_create grub_isspace yy_scan_bytes grub_real_dprintf yylex_destroy grub_env_unset grub_device_close grub_dl_head grub_menu_get_entry grub_normal_init_page grub_fs_probe grub_script_add_arglist grub_script_arg_add grub_menu_fini grub_normal_do_completion grub_file_filters_enabled grub_strword yyget_lval grub_context_fini grub_file_getline widthspec grub_err_printed_errors grub_error grub_dyncmd_get_cmd grub_unicode_compact grub_current_context grub_script_execute_sourcecode grub_normal_auth_init grub_script_init grub_list_remove grub_free grub_strndup grub_named_list_find yy_switch_to_buffer grub_bufio_open grub_xputs_normal grub_printf_ grub_ucs4_to_utf8 grub_script_mem_record_stop grub_auth_register_authentication grub_extractor_level grub_error_pop grub_register_extcmd grub_enter_normal_mode grub_getkey_noblock yyset_column grub_show_menu grub_print_ucs4 grub_list_push grub_script_function_remove grub_wildcard_translator grub_normal_exit_level grub_script_execute_new_scope yyget_text grub_env_set grub_gettext grub_env_write_color_normal grub_utf8_to_ucs4 grub_ucs4_count_lines grub_script_argv_next grub_env_get grub_strtoul grub_menu_init grub_cls grub_script_yylex grub_script_mem_free grub_script_lexer_init grub_script_lexer_record        ;   s  C   3  K     S     [   =     Z          z                         z  	         .  z  c  9  r  Z  }                                         .    7    ?    H    P    d    s                          B        ~              ,    1    A  Z  R    W    g  Z            Z                E            /                  	  :        :       &  z  M    S    \    m    r    |                                      z            S  )    /  z  @    F    T    \    b    k  E  t                                  z      %    F    K    W    \    e    o              !                j    &        E  
        (    5  z  >    f    u              7    z        W            r    r            t                               #    (    /    4  :  @    G    L    Q    [    b    g    l    t    {          "                :        :                                        :      	    		    	    	  :  	    !	    &	    0	    ;	  :  F	    K	    P	    U	    Z	    d	  r  i	    u	    z	    	    	    	    
    b
    
  N  I    U  r  a  r                                        z          g    y                      z    N                          !    &    /    7    B    G    R    Z    `    f    m      G         z  6  N  Q  N                          
        ,    4    9    >    D    Y    a    k    {      N                    N                              6    I  r  P    V  r  [    d    x                            %    8    d    i  }                    z              
        !  r  -  r  4    :  r                    z      U    ]    }              z            z    N      $    g    p    u                  z            z        N      +          r                  >  7  J  z  X    c  t  n  n  w  c  |      $    z        7        t    n    c       +    Y    ^  E  t      c    c                      /    S    l              z    Z    Z            u          *  c  /    G    L    U                          z    Z        z  "    '    E    J    Z    a    w                          z    Z  
      z          =    B    R    Y    o    w          |                }          =    B    b  |  i    o  r  t                                    (    /    6    V    l    q    v    {                          N            N              	  z          #    +    8  7  M    R  N  x    }  E                                  
     "     8     O     b   Z  p                                 z                 !  Z  )!  <  8!    I!    ^!    d!    y!    !    !    !    !    !  <  !    !    !    "  Z  &"  m  +"    C"  Z  ]"    e"    p"    u"  !  "    "    "  Z  "    "    "    "    "    "    "    #    #  Q  #  z  #    #    #    $    $  ^  $    .$    A$    J$  z  l$  5  $    $  E  $    $    $    $    $    $    $    %    %    *%    0%    ?%    D%  E  N%    e%    {%    %    %    %    %    %    %    %    %    &    
&    &    "&    '&    4&    O&  {  ]&    e&  c  }&    &    &  c  &    &    &    '    0'    5'    L'    Q'    y'    ~'  E  '    '    '    '    '    '    '    (    9(    >(  Q  J(  z  f(    l(  ^  |(    (    (    (  \  (  z  (  Q  (    (    (    )    )    )  /  *)    /)  Z  F)  /  [)    h)    s)  z  )    )    )    )    )  Z  )    )    )    )    )    )    )    *    *    *    !*    +*    L*    Q*    _*    i*    s*    *    *    *  +  *    *    *    *    *    +    +    +    !+  z  7+    +  f  +    +    +    
-    2-    X-    -    -    -    -    -    -    -    -    -    -    -    .  r  	.    .    .    .    1.    E.    K.  r  R.    d.  z  l.    r.  z  ~.    .    .    .    .    .    .  ?  .    .  z  .    .    /  z  /    0/    ;/  j  C/    H/    W/    c/    v/    {/    /  ?  /    /  z  /  z  /  z  0  z  0    00    >0    C0    N0    S0    a0    y0    0  V  0    0  ,  0    0    0    0    0    1    T1    _1  ,  g1    l1    q1    1    1    1    1    1    1    1    1  a  1    1  7  1    2  a  &2    +2    22    :2    ?2  <  E2  z  ]2    h2    p2    2    2    2  z  2    2    2    2    2    3    #3    (3    :3    L3    Q3    X3    ]3    4    4    5    d5    w5    5    5    5    5  ?  5    5  z  5  z  6  z  06    56    C6    Z6    _6    h6  z  q6    z6    6  z  6    6    6    6    6    6  S  6    6  z  77  S  C7    I7  z  W7    _7    g7    n7    u7    7    7    7  ~  7    7    7    7  Z  8    8  Z  ,8    C8    R8    `8    8    8    8    8  :  8    8    8    9    9    9  <  9  z  &9    -9  .  89    >9  c  C9    \9    c9  <  9    9    9  4  9    9    9    9    9    9    9    9    9    9    :    :    F:    N:    W:    _:    :    :    :    :    ;    G;  G  n;    t;    z;    ;    ;    ;    ;    ;  G  ;  z  ;    ;    ;    ;    ;    ;    ;  +  ;    <    <    ><    M<    k<    t<    <    =    Z>  q  >    ?    ?    A     0A  T  AA     cA    B  G  KB  N  B  N  B    )C    ?C    hC    C    C  N  C  N  C    C    FE  N  _E    E  N  F    /F    LF  N  F  S  F    F  z  F    F    /G    TG    YG    G    G    G    G    H  g  `H  }  H    H    $K    K    K    K    K    K    K    K    K    L    -L    6L    GL    XL    gL    mL  z  L    L    L    IM    NM    ZM    cM    jM    uM    M    M    M    M    M    M    M    M    M    M    0N    TN    qN    N    N    N    O    4O  G  \O  N  O  G  +P    oP    ~P    P    P    P    P    P  ~  P    Q    EQ    jQ    rQ    ~Q    Q  <  Q  z  Q  .  Q    Q  c  Q    Q    Q    Q  4  Q  z  Q    Q  z  R  <  HR    MR    UR    [R  z  eR  r  lR    qR    vR  }  R    R    S    5S    US  q  aS    S    S    S    S    S    S  m  S    S    T    T  m  T  q  T    T  m  T    T    U    !U    HU    ]U  E  U    U    U    U    V    -V    V    7W    tW    X    9X    X    X    X  T  IY  8  iY    Y    Y    Y    Y  E  Y    Y  z  AZ    HZ    NZ    WZ  E  Z    Z    [  m  [    [    [    [    [    [    [    \    \    \    \    -\    D\    L\  m  \    \  z  \    \    \  z  \    ]    ]    ]    E]  g  u]    ]    ]    ^  [  (^    6^    =^    B^  j  J^    f^    u^    {^  r  ^    ^    ^    ^    ^  r  ^  Q  ^    ^    ^    ^    ^    ^  z  _    _    _    !_    &_    B_  z  U_    d_    j_  r  t_    y_    _    _  z  _  z  _  6  _    _  r  _    _    _    `  z  "`  z  5`    F`    K`    Y`    b`  z  p`    v`    ~`    `    `    `    `    `    `    `    `    a    a    a    &a    -a    <a    Ba    Qa    Xa    da    ya    a    a    a  r  a  z  a    a    a    5b  7  Eb  t  Nb  z  _b    }b  z  b    b  E  b    b    b    b    b    b    b    b    c    (c    Vc    ec  z  tc  Z  c  z  c  Z  c  z  c    c    c    c    c    c    c  z   d    d    )d    d  8  e    e  v  2f    Qh    ah    vh    h  z  h  Z  h    h    h    h    h    h    h    i    !i    ai    i  z  i    i  E  i    i    i  h  i    i    i    j  )  j    j    %j    0j  )  :j  h  Gj    cj    ~j  )  j    j    j  z  j    j    j  z  j  h  k  Z  k  z  -k  Z  Ck  z  Lk    Tk    k    k    m    m  |  n    'p    }p    r    s    s  w  s    t    t    u    tu  ?  u  (  u    u    u    *v    v  ?  v    v    w    @w    ow    uw    w    w  V  w    w    w  (  w  z  w    )x    @x    \x    ax  }  lx  ,  rx    x  ,  x    x    x    x    x    %y    ly    y    y    y  C  y    y    z    	z    ?z    Rz    ^z  :  tz    z    z    z    z    z    z    z    z    z    {    {    {    {    .{    :{    ?{    J{    e{    x{    {    {    {    {    {  :  {    {    {  4  {  z  |    1|    8|    =|  4  K|    l|    {|    |    |    |    |    |    |    |    |    |    |    |  z  }    }    }    /~    C~    M~    T~    \~  z  ~    ~    "  l          Ɂ                E    Y    c    n      z               Ą      |        G  &    5  z  J  N    N  s    ͈  T            |  ӏ  |  ,    9    B      N  H  |  r  |  F    w          |  N  e  ]  e    _      =    e          G  ݙ      D    `  '  p  4  z  F    K    P    U    Z    d    i    n    s    x    }              R                        >          Ú    ͚    Қ    ך    ܚ                                '    /    5    F    N    T    e    m    s                        ț    ͛            	            d      p          ל          N  3    8    B    G    S                        ͝                            7    <    F    K    W    g            Ǟ    ̞    ֞    ۞            .    i                Ο  b        U          %  U  -    m                        	    L    e    x  Z        j          ٣                >  !  p    x      j            !  '    :    l    r                    æ    ʦ    զ    $    W    ~        ȧ    ا                	      j      0    6    H    `    l  K  w                  L  Ũ    ˨  L  ި                  K  !    ;    D    P  L  e    r      K            L  ک            (  L  2    K    h            Ԫ  L        L      -  L  =    N    X    a  L        L          $    ,    J    U    f          L          ˬ              L  %            ϭ          L      (    B    [    i  L          Į              z  #    *    :    K    S    Y    b    o    {            Я            )  z  =    M    R  z                      а          z                   ;    K    m    x    }      z            z      	            %    G    S    ^    h    p                ʲ    Ӳ    ܲ                     -    3    M    \    g  `  m    s    ʳ  z  ܳ                "    F  c  N    i  z  r  X    Z        z        z  ƴ    δ  j  ش              *    z  '    .    :    E    N  z  W  z  `    f    n  j  v    {                  $         D    z  "    0  `  :  p  C    b    }                  Z  Ͷ    ڶ  %             p  +    Q  %  ^  %  l          p        %  ͷ        :    F            K    }    ɹ      G      !    7  +  \    e    n    }    ۺ                      +    @            ܻ      Z          !    7    >    C  Z  b  G                +  ݼ  +                  7    U    |                ǽ    н    ٽ        B    R      G      !  G  <  N              ÿ  L          :  L  T    q      B                    E  	  z  .    N  Z    Z                        Z    Z  ?    d  Z      0    D    c    q    z              z                      5    x  J                +  A    M  +  T    Y      J        z                                      #    (    -    2    :    H    M  n  T    Y  n  *            4    [    {                7    d    j                  H            /          2          F    P      '  H  H    U    f    y  #        0        i    A  ,    <    S    _    h                        9    D    y                            0    6    =    E    N    ^      G                                G  .    4    ;    C    L          G        +  )    1  Z  B    I            v  z        z                              (    .    5    =    F      2  l                            [                              1                   	    -    :    O    ~                
        ]  z  x      z      )  z  D    S  z  l        !  -  /    ?            ?  2  k    s                                            (    ^                                    0    G    ^    u                                -    D    [    r                                *    A    X    o                  -  &    ~  -      E    Q    r      -      !    ,    =    F    R    \                        _  G  v                    
    R  G  o    u    |                	  o  B    ]    y                    +     6     I     X     c     q     }                                                    $     (     ,     0     4     8     <     @     D     H     L     P     T     X     \     `     d     h     l     p     t     x                                                                                                                                                                                                 $    (    ,    0    4    8    <    @    D    H    L    P    T    X    \    `    d    h    l    p    t    x    |                                                                                            $    0    4    <    H    L    T    `    d    l    x    |                                                                                                                              $    (    ,    0    4    8    <    @    D    H    L    P    T    X    \    `    d    h    l    p    t    x    |                                                                                                                                                                         	    	    	    	    	    	    	    	     	    $	    (	    ,	    0	    4	    8	    <	    @	    D	    H	    L	    P	    T	    X	    \	    `	    d	    h	    l	    p	    t	    x	    |	    	    	    	    	    	    	    	    	    	    	    	    	    	    	                                   4      .symtab .strtab .shstrtab .rel.text .rel.text.unlikely .rel.rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                      4                       	   @        C              )                                 %   	   @        8               <             t                     8   	   @        X              D      2       t >                W              J                 S   	   @       $ 8               ]             a                   m             a                   r              a .                  {              a                                 a               	              q                                \                                                                                                                                                                                                                                                                                                                                                                                                           boot/grub/i386-efi/verify.mod                                                                       0000600 0001750 0001750 00000027744 13417732100 0014703 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      -      4     (   U                             ]UEVS]p XCZ    RVh    h   h  h#   j S9vPujue[^]USRtp$]UQRPUWVS(E}pWWpB9s
      VUtU  @)ЉTCH9ЉMs E  EOWjOUEGYj VSjuSe[^_]UEMP@RPEEUEMP@PEEUWVS˃ jEPVtHt             Eu      @tR?}PjWVH   E<v}<w&-   PjWVH   E	U<t!r<u_<WjEPVHuJEQjEPVu/E12RjEPVuEPPh5   j-e[^_]UWVSXt.1DtPF
u3S΃We[^_]UVS]s@6        C@    C    e[^]UWVS,} VVhC   jeESjj 0ǡ    uc    UUt%pt1QjRFPUt6UPWhY   j-뾋013e[^_]UWVS=    tG_t<Cs	EPPFPhs   ;uuh}   ?뵍e1[^_]UEe1	к      t   U]UWVSXujEu
j v  h   EԉX5$   6  .  EăEMU  E<tuS[uE  uh   h   h  h#   E1҉ŰVEȋFEȊEŨ <t<   QjEPVH  EڃPh   h   h  h#    }  Rj}WV  uh   h   h#  h#   jEPVH  EۃPh   h   h+  h#   Eۃ <wk     uP  jDE  Pjj S$   jh   S   Ujf	fE܍EPS   jMQS   jWS   jMQS   EЃE    EEԃEwfUކ҃     PRuUVU9ЉumEԹ   U5PWuS   $    Wuju Eu.EEۋMk;   s,PjEPV^PPh5   j-gS   $    }й   M}9ZYuvh   h   hh  h#   uuVESXu1e[^_]U} VUSEEC   E   e[^]                     R: t
        0á    t@SuS    S    15    e[^]UVSEuEEEEXtPjVCPt1؍e[^]UWVSu}    tPSWVu1e[^_]UWVS   EUUMM  }  PjEPuH  }  PjEPu  } UEs  wڋ    uPPh   [  <L  Ek     9  REuP4    h     h   h   h  h#   fufFEXEp$$   E    ESPt PEuWSP-t+RPEWSP}Qh   WuyF  W}jEPSWjEPSWt+   Q~   Puu  uK}ERjPSWjEPSEWjEPSWjEPu  PE)WuSPp}f     PWuu9m  ME    E    ȉʉE;UsJ<   <tjJ9MwLuSVh   h   hE  h#   SV juVuE  FJ?	   JJ;MsB9uvqyu}OPjVu  Eph   h   hN  h#   E xkEǅ|    tt|;   U  h   h   hT  h#   jEPu  h   h   hW  h#   E$ph   h   hY  h#        h   h   h\  h#   EVPu9r  h   h   h_  h#   u   Uph   h   ha  h#   j WVjx x  h   h   hf  h#   |} tPuuuPPuuuuuhY   bPuuk}EP         8 u           kU    uP   h  j-6WWj j VURuj P4 uSYu1/SZu    uPPh5   j-e[^_]UWVS,E=      @ t@@    u$UÅ  
Bpz t   $  t       EbS   U؉ǉEԸ    =$+  jLuu  uǹ   @    @<    @4S8	tPPh)  jXjuuos4Fuu4$EWs4Pu;C4t3=     uQuhR  ju$.P1PFj u ZuԉtS1E؉s@Ee[^_]UEUME1U1]UWVS]h   uh   }h  h#   Ek  E   e[^_]h   h   h  h#                           F8 t
        wơ       VuV       V175    tMEw5    UtPSWRU<$URte[^_]UWVShh  t <et<1u      
       P1h  j h              $              t8mimguXÍ}tw    @9skPjLj W;uKE    CWE    EЍCEuQQh    h          C녅u%=     t      RRPh  PPh    h  h  j h  h  h    h  h0  j h  hL     j hR  j h8  hq     j h~  h  h  h          e[^_]U5                   X5   Z5    Y5     s                                         must be %u bits got %d bits
 crypt commands/verify.c bad signature one argument expected public key %08x not found %02x%02x  
 enforce no len = %x
 v = %x
 time = %x
 pk = %x
  actual pos: %x, expected: %x
 unknown hash hash `%s' not loaded alive
 @ %x
 l = 0x%04x
 module `%s' isn't loaded .sig big file signature isn't implemented yet premature end of file %s two arguments expected check_signatures error loading initial key: %s
 Verify detached signature. [-s|--skip-sig] FILE SIGNATURE_FILE [PUBKEY_FILE] verify_detached Add PUBKEY_FILE to trusted keys. [-s|--skip-sig] PUBKEY_FILE trust Show the list of trusted keys. list_trusted Remove PUBKEY_ID from trusted keys. PUBKEY_ID distrust pseudo verified_read rsa gcry_rsa dsa gcry_dsa md5 sha1 ripemd160 sha256 sha384 sha512 sha224 skip-sig Skip signature-checking of the public key file.                                                         Z                                                                                                                                                                                                                                                                                                                                                                                                                                    -                                       LICENSE=GPLv3+  crypto mpi extcmd gcry_sha1 verify                                                                         	    g         >  N                                              
                             )              7          	 G              S              a              t                                                    	                     0                             	                        $             /             >             I             U             q      (     {                                                                                   	                                         7             C  	  7     k             {               P                      9	  F       (   (                                                                      "             /             ;              grub_mod_init grub_mod_fini grub_strlen gcry_mpi_scan grub_pk_trusted grub_errmsg grub_strtoull gcry_mpi_get_nbits grub_crypto_lookup_md_by_name grub_dl_load grub_env_export grub_crypto_pk_rsa grub_memmove hashes grub_strdup grub_crypto_pk_ecdsa grub_verify_signature grub_unregister_extcmd grub_fatal grub_file_seek grub_errno grub_memset grub_register_variable_hook pseudo_fs grub_register_command_prio grub_file_filters_all grub_load_public_key grub_printf grub_unregister_command grub_file_read grub_crypto_pk_dsa grub_modbase grub_zalloc _gcry_digest_spec_sha1 grub_malloc grub_crypto_pk_locate_subkey_in_trustdb grub_file_close grub_file_open pkalgos grub_real_dprintf grub_crypto_pk_locate_subkey verified_fs grub_file_filters_enabled grub_error grub_free grub_register_extcmd gcry_mpi_release grub_env_set grub_memcmp grub_env_get    3     3     3  #   3  ?     T     Y     c     h   0          5     5            	  +  n    y  5    &      3  &  ]  &    &    &    &        4  '  7  ;  5  K  5  k  -  }                      9        4  C    i    n  $  ~      $                    )    )    *    )  Y  5  b  5  x    }          0    &                0  
  &  !    &    0    5  0  D  &  [    `    j    o  0    /    )        *        *    *    *    *    *  b  &    *        /    &        4    *    *  *    /    9    >  0  M    f  5  o  5        4    3    3    3    3    .        #  		  -  	    	  -  !	    .	    c	  9  	    	  1  	  &  
  &  D
    O
    h
  /  x
    
    
    
    
    
    
  0  
  )  
  )  8  &    &    &    &  c    h    r    w  0    &    9                0  Q  /  \    a    k    p  0    &                0                0                0    &      %    /    4  0  K    P    Z    _  0  s                  0    1    ,        /    /    /      (    6  /  C  /  H    O  4  z  5    5    5    5            4            +  =    L  3  b  .  t  3    5    +    -    2        4    +    -    +  -  -  5  5  D  &  T    `    g  4  u  -    -    5                0  (    ;  4  @    E    O    T  0  f  3  p  3  z  3    3    .        #    -        -    .        .      2    <  -  K  -  q    v  :                    "        3                    (        (      #     B  #  P    U    Z    `    g    ~                  8                        6                            6                    !                   %    *  !  2    F    L  "  V  3  _    f    k    r    w  %  ~      %                       0     <     @     h     t     x     |                               '                           $    (    ,     .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                       	   @       "  	              )               0                  %   	   @       H,                 1      2         L                D             <  0                 @   	   @       X,                 J             l                    Z             |  $                  _              |                    h                                                                	              P  H                               -  q                                              boot/grub/i386-efi/ntfs.mod                                                                         0000600 0001750 0001750 00000024000 13417732100 0014327 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      %      4     (   UP 
H9ɉRJ@    @    @    ʉP@    ]USÃpXsZs]USR@$s]UWVS(   PUEÉ$tt1u<$1,  ;EtfFfG@E1M܃}   ^҉]ff]t^ $  wE   
 $  H?ɀHу?ʀ?ɀHP ?@u1|wMA  wHM?ɀHN (  v> $  w ?@,΃?ɀHMX?ɀHʋu  WEe[^_]USPEX@tCH70S5        ]UWVS uj]j }WE؀}$    j h vv	ЃEV oIEsWue[^_]UWVSÃjQPt	QVh    fCH9tRRh   j	7C؃f0ft$   f93t	PPh"   ̊IPS1e[^_]UWVSӃMC   CQSP<E      CH   u%   jHU   M܉ACAS$C QU؉ACRtQ} Mt   uEUQVRЃUtR   RC%1e[^_]UE    E    tt| yEEQRPEPEUUWVS]{$$uiC(tO tJC,p @     C(P  S,r t%x u	RRh<   x C    C     PPhY   j	ksO{UM1ɉE܋Es{e   u}u܉CSCS 	u#1s$e[^_]UWVSӁ  U Eh   j PG D   M܋    H    9EuEE{ uLE1s w9vWWhl      VuCSC  C ǅ4    ǅ8    ǅ<    ؉@CC0tf  u[} u	QQh~   =    t)RuЃ   Rh   h   j	  	 t1҉ $40׉$ 9sSt  w9vዽ !  8<M܉ (,)   t1   K	! ؋	!  t19u39u/Pt    wM܋8 t1G1PP1PEj j uRPhH  uSQuuPH    @e[^_]UWVSÃU؈U   CCC8  { x  C     	PCS  s~   F0s   WC    CCF0C{ЃC9  M8  tI}؀uCS Cp   PS    BPs;ss	>  C#CSC9  CHKM8u    @K u   } uVsh   j j RP    4  WC1   Ph   j j C@RPC         C        C   CPVVsRPR  :
tPЋSufzf9xu   QPh   WPSS8 uCM8      SRRj j j Wj j 3 (SSh   j	*FCvs'pC1ZC ~       QQj j j 			QE؋FU܋MeRP    uFe[^_]UWVSÃ,EsUЋUE؉sU܈EuU׉      C     ,Uܹ   E) t1ǃ}U܍O	E t1҉EN{U9sE8u1ҋA;Ugr	;E\KA1} t=QQMuuuuuu     uPPh  j	se[^_]UWVSÃ4U   EU䋓   j j j 			WU؋U}؉EClM܋MEԋEUeωщQPEi u   e[   ^_]uuh"  j	e[^_]USSU]zD B@t@<   Q$QrHrDjSrrU =     u]UWVSÃMMt<u9u        [^_]e1[^_]UWVSÃ@        	PCtRRWVZt    yCf@u	WVh8  C$uU   uWVhQ  j	;x u@C    CP4@0SC1C$uC8    	1e[^_]UWVS|Eu14  h   t}E   VPjTj j j j W   Qjhh  EP  E  P  Uf  J  	  ǃ             ׉9ǉusMA   EԄ~M t11)1    E؉   ~M t11)1 Muċ}ȉ       t1                                 	[HPCLt|RP   	Pj j       u uQEܹ   U   CL      Su(SH   Clt   1ɉڅt2PPhm  j	tCHS1ҍe[^_]UEVuS5    WtVP      h  u+CH3,SHw Bu    5        e[^]UVSu5    E    F    QQjht  h6  EPSu =     u\9]u!CS^@F    F41V8F    g_PjHuSZu{  uS؋KXtCH(!S5        e[^]UWVS8]   	PCtBRRss|u*s$   ډ^ussh  j	1	  WWj j jjj j U uڋE=  t=  u+}G}G}EWuSPh  QE1Qj j jWRP quSOSt
<\u/FRjh  Wu-:u'/u!G߃A<w)PVGPWe[^_]UWVS(u5    E    E     8   WWjj h6  EPSh   =        }  t!UB$E`   $ku>X   	PGEPt4QQpp ou룀x uPtHEt9t~utCHd]S5        e[^_]UWVSlu^ t]ĉVN,t  x  t-   iuPPh  j	E      x$ I uʁx3 0 uPЀ80uPMuTEl  T
   E   {	C
u߁<$ I uց|3 0 u1Ҁ{ uCC(EuUU  tPuCSWB} t+PPj j j uEj j  t	VVh  nC0E	E    1]ĉ}   Pt)x@ ux@$ I u	xD3 0 t   ӅuB  SSh   j	.  $     	P  E1҉}EE    EUE    E9E   MEue   EE         QQj j j 			QEMUUEʋUUeRPE u_"     uGCMuT0ZEEU 2E9E211ۍES<$]e[^_]US E5    E    EEEE t<RRjht  h6  EPSu =     uPEPh`  uFEt9tiutCHOHS5        ]UVuS]M;^r&w;NrVɉu!FV 11uȉFV +FVe[^]Uh    h    E    Uh    %s label not found size not match fixup signature not match $DATA should be non-resident run list overflown read out of range attribute can't be compressed ntfscomp module `%s' isn't loaded FILE can't find 0x%X in attribute list fail to read non-resident attribute list attribute not found read MFT 0x%llx fails MFT 0x%llx is not in use no $DATA in MFT 0x%llx NTFS not an ntfs filesystem %016llx no $SYMLINK in MFT 0x%llx symlink type invalid (%x) /??/ /$Volume no $INDEX_ROOT fails to read non-resident $BITMAP $BITMAP without $INDEX_ALLOCATION INDX ntfs         '                  LICENSE=GPLv3+  fshelp ntfs                                                                              "                                                        	               5              K              Z              g              u                                                                                                                                                              )             3             A             P              grub_mod_init grub_mod_fini grub_file_progress_hook grub_fshelp_find_file grub_xasprintf grub_memmove grub_divmod64 grub_disk_read grub_dl_ref grub_ntfscomp_func grub_errno grub_memset grub_fshelp_read_file grub_fs_list grub_ntfs_read_run_list grub_zalloc grub_malloc grub_error grub_list_remove grub_free grub_dl_unref grub_list_push grub_memcmp N     W     `                                  A    M    R    W    x                            :            0                          
       @                        I    Z    f                4	    j	    V
    
    
        _    f                                `                
        }                    L    [                            "    E    p    u    z                                    P    \    a    f                0    B                                9    C    H    Q                     %    *            J    o                >        c    k                                
    )    5    :    ?    g                                                                 .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                       	   @            
            %      2         ,                8             8  (                  4   	   @       X%  8   
            >             `                    N             p                    S              p                    \              w                                  |       
         	              l  \                               %  e                  boot/grub/i386-efi/serial.mod                                                                       0000600 0001750 0001750 00000021634 13417732100 0014646 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      D!      4     (   U   WV    SÃ,}}ܾ   x, uWH41ҋ@tCPCtj j CRPQQ tC0   {(S4Q% Q@  PRRC,   e[^_]US]E   ]{0 t!C4RURURPPu} tE]US]EE   E{0 uC4RURURPP]UWEVu~v	E    !~v	E   VvEH   ^E   _]x   @,    1^_]UWVS<EPj h   jE   E1EȍPU   EQjh   0t~h   tjCtkVhl   jPV   U   C    {4}MXCZQStSuEMue[^_]U   WV4   (P}MQPe^_]UWV  SXH	t΋1҉>P1  w(1҉)9v)؉1Ҿ   X19w[^_]U   WVSÃ,1{, }E EEE   C0    CZK4q1QfUCSsD
DV	fU{( Qt
QQƉׁ   K4Qt9rw9vC0   C,   ,[^_]UWVS]C0~Ɖ0H~Ɖ׃2Ɖׁ    9wsK4Q t	9vC0C0tHC0E[^_]USQ]K4QtZ[]UWVSu]fu	Er   3~v	E   $Ft	E   FvE   E   [^_]{   1C,    [^_]UWV1S    E`  f6P   ftdWZ<Zu<t   	  @Vh   juEC    f{4CtSFØ   E{e[^_]U1Uw  rfP   ]U1VSuiȘ   f94   u  s1   k`  ~@uύVZ<Zuް<uփh   tPPPh  CuSEE!C    fs4SCe[^]UE@H@0PE]BUE@@ PE]BUSQ=     t
RRPh    @uPPSh    SЃt]USQ=     t
RRPh    @uPPSh    SЃt]UVuS  tPPVstsRjh
  VuFЃ0	v߃A<v1BPjj V$  tԅtQQVste[^]UWV1SlEX; t!Pj j suPh  j(V { t!Pj j suPh  j(V } ~E0u  VEuPVh#     E}   p{ tWj j sE{ tVj j sE{  tsQQh@  s$u	E    TRRhC  s$u	E   5PPhG  s$u	E   PPhL  j  {8 tEPPhk  s$uE   PPhn  s$u	E    	PPhr  릃{( tiPPh  s,u	E    JWWh  s,u	E   +VVh  s,u	E   SSh  7{0 tjQj EPs4    ɉEUt   Mt:9Mui@B @B ډEU<KuiM    eʉEU}RRUGRWuS    uJ=   u(PPh  h0   |   0   PE         1e[^_]UWVS(j á    ?  j$uSKPj h|   S{XEZph  Cj$h  W{ uS<$       jLuWXs&j4uWXs4$$뜉EPjLh0   VMNHCFj4h  QZYuh  CUP FHP0      _Xh  V1e[^_]UVS]C@t	SЃ   tV4$   tV4$]e[^]USP  tU9PuP]Uh   h  h  j h  h  j4hX   h    j$h   h  U  tP=   t4h|   $|   $0   $0   5                       %                        %                                                            P                                                u                
  p                :  s       @         [  w       `           r                  t                  b                  f         
                             unsupported serial port parity unsupported serial port stop bits number unsupported serial port word length efi%d unsupported serial port speed unsupported serial port parity unsupported serial port stop bits number unsupported serial port word length com%d port%lx port com0 com%ld port%lx serial port `%s' isn't found no odd even unsupported serial port parity on off unsupported serial port flow control 1 2 1.5 unsupported serial port stop bits number vt100 serial_%s Configure serial port. [OPTIONS...] serial unit Set the serial unit. Set the serial port address. speed Set the serial port speed. word Set the serial port word length. parity Set the serial port parity. stop Set the serial port stop bits. base-clock Set the base frequency. rtscts Enable/disable RTS/CTS. on|off                    o% '?  \                                                                                                           LICENSE=GPLv3+  extcmd terminfo serial                                                                                       	      a        4  m                                
                             2              @              V   A  e     m             
            "                                                                  -                  8             R           h             v                                         
  i                                           	  I                    +             D           W             k                                                                                                                                               '             1  q       E             Z             i             u              grub_mod_init grub_mod_fini grub_terminfo_gotoxy grub_strtoull grub_terminfo_putchar grub_serial_unregister grub_serial_ns8250_add_port grub_ns8250_init grub_ns8250_hw_get_port grub_terminfo_output_register grub_xasprintf grub_memmove grub_terminfo_cls grub_serial_unregister_driver grub_terminfo_setcolorstate grub_terminfo_output_init grub_efiserial_driver grub_snprintf grub_terminfo_setcursor grub_terminfo_getkey grub_unregister_extcmd grub_serial_register grub_terminfo_getwh grub_errno grub_term_outputs_disabled grub_serial_find grub_term_inputs grub_terminfo_input_init grub_ns8250_driver grub_terminfo_getxy grub_efi_locate_handle grub_term_outputs grub_term_inputs_disabled grub_print_error grub_zalloc grub_strcmp grub_malloc grub_get_time_ms grub_efi_open_protocol grub_error grub_list_remove grub_free grub_efiserial_init grub_register_extcmd grub_list_push grub_memcmp grub_strtoul             $    3    G    V  0        '        /    +    -          
        6  *  ?    Y  2  s      .    .    .     .    .  "  .                    0          %    L    T    ^    h  %    *                          ,  -  @    E    [  2  j  %  ~      #    )    #    5    (    !  )  (  .  5  S    b  ,  y      6    7            ,    7          8  7  >    F    ]    f  "  w      7    7        ,        ,  		    	  ,  (	    /	  0  D	    L	  ,  a	    i	  ,  	    	    	  ,  	    	  ,  	    	  ,  	    
    
     
  %  
    
    
    
    
    
    
    
    
    
  -  
        -          -    2    ?    E    W  2  _  2  d     v  +    2    -    2    2    2                        5      "    k  1  s  1    1    1    1                                4          	                "    '    0  3  ;    H    S    ^    c  1  j    o  1  v    {  1        1                                                                   (    4    @    L    X    d    h                          $     (     8     <     D     L     P   &  T     X     \     `     x             $             .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                       	   @       @  X              )                                %   	   @                        1      2       `                  D             x                    @   	   @       0                  J                                 Z             $                   _              $                    h              4                                  <                	                                                  q                                                                                                                      boot/grub/i386-efi/ntfscomp.mod                                                                     0000600 0001750 0001750 00000010364 13417732100 0015216 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UVSP;P|RRh    j	o   P      K	P1j j    D+DSP6 t    (   PF   ;Tr@Fǆ       1e[^]UVSË   H	   tCt          H   1[^]UVSÃUE E t     UuEUf1[^]UWVSL   E   )EF,UԉMEЃ} w  F^t>FVM}EUĉ¸   )9ǉ}vEȋE)E   A  ~49~0tuQQh   j	        F4    F0       O	;^   rw8;Fs3FVN ;Vv4LF4@J8N+NJ<F4VtC  9wE1ҊMEUă~4 FV   Eԅ]RSj P    ]ԅ   RSj j j Ѓ EЍU  EfZf]1ۃ} y  f2  E 1E    } tgE   EЍU~  fmUubPPhR   j	} tE       X  Mȃ} REЍU
!  fMtE   t{     vI!}ԍBE)ϊLUԈ@);Mr'EЍUE    UC}fMmMf} 3=   v	PPh6   f} ]t3PPhg   j	cu@   f)}Eu>      }H	   )9~뼅tPW   RS릡         Rh   j j j Ѓ }ȊMF0;F4/  Q1҉E@8ӉUċVE    }ȉEF)9]rw9MvMȉ]EỦEUVUԉF      EQRK	 t1M1Pj j A<+EUEU t1RPv,        t/   t%P   H	E t1Pj j j Ӄ    H	E t1EԋN01+}9VD8w	9FAN0Eԅ      RPMԃ	MPj j FV FV+FV t1RPv, t    F   H	É    t   tRQj j j Ѓ 1~V]1e[^_]UWVS<uEU^(EU{   MU[ ҉ȉ]   9   +EUE1ҁ     E؉Uw;MvM؋]PE+EQPuM̉M]    M]ąt&   tRQj j j MЉ]ЋMЃ ];]u;Mu1  EM)EM]#h   CF(x ti@   U   E   EM؉ˍ
e؉E؋EډU܉VF~9~FsVt      w;Fvߋ   F4    F0    H	   P   V9U܋Fr?w9Ev8M؋])Ӊȹ   +    tЉ1҉P"  ]     F   V   ǆ       E   UE؋F(P   M؋E   ~(	 t1G   );}v}RWF(XSu    t   tRWj j j Ѓ ;}   })}MUMtuJ]     F   V   ǆ       E؋   U܉EЋF(P*t    QMЋE؃	 t1N(APSF(pEEP    ttWSj j j Ѓ 1ۋ   tP؍e[^_]U      ]U        ]compression block overflown invalid compression block compression block too large nontext window empty invalid compression block size    LICENSE=GPLv3+ ntfs ntfscomp                                                   
          
                                                                                           5              B              Q              d              o              {                                                         grub_mod_init grub_mod_fini grub_file_progress_hook grub_memmove grub_disk_read grub_ntfscomp_func grub_errno grub_memset grub_ntfs_read_run_list grub_malloc grub_error grub_free           W     c          	            @          
  I    P    e  
  .    I    P                  
            
  x    }  
      P    \        v	    {	  
  
    C
    H
  
  x
    
    
    
     .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4   
                    	   @       x  8  	            %      2       
                   4             a                     :             d                    J             s                     O              s                    X              x  	                                  @  
   
         	                                                  a                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/odc.mod                                                                          0000600 0001750 0001750 00000005440 13417732100 0014131 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      	      4     (   UWV1SE1U1;ut>]3FYЀw/Éωu܉փ]}uu܉}	߉뽃[^_]UE@    @    ]UEp@    UWVSEux@HDJ HHJ$uVHXO_SQj j 7 uB     e[^_]UWVS`u]}FVFVSjLRPj j 6    Pjh    StQQh   j	      EFV t   E   E   ÍEq} tEGPUu
       RPWFVL RPj j 6 tE0    tE 8 F Fu=u9u4PEjh   0uE E0$FVL 1ډFVFV FV1e[^_]UVS]CS uE'   e[^]@Pt6PVsssj j 3 tVC 1e[^]UVSÃTuVjLj j j j P u*Rjh    Vuj$tPPh(   j	1e[^]UWVS]C ơ    t9Puh(   VtVs@FV C41S8e[^_]UEVS &á    t'uuuh(   SSe[^]Uh    h    Uh    070707 invalid cpio archive TRAILER!!!  not a odc filesystem odc            =     S     v                  t  `   LICENSE=GPLv3+ archelp odc                                                                                                                                       	               )              8              C              P              \              h              z                                                                                     grub_mod_init grub_mod_fini grub_strdup grub_disk_read grub_errno grub_fs_list grub_zalloc grub_malloc grub_archelp_open grub_error grub_list_remove grub_free grub_archelp_dir grub_list_push grub_memcmp                    )    /    =    D                                 =          
                          *    <    C    l    y                                	            #                             (     ,     0      .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   ,                    	   @       0  @  
            %      2       `  A                 8               4                  4   	   @       p  @   
            >                                 N                                  S                                  \                                                  p     
         	              d                                    e                                                                                                                                                                                                                                                  boot/grub/i386-efi/setjmp.mod                                                                       0000600 0001750 0001750 00000001304 13417732100 0014661 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      \      4     ( 	  pxhY`H1pxh`HЅu@LICENSE=GPLv3+ setjmp                                                                                                                   grub_longjmp grub_setjmp  .symtab .strtab .shstrtab .text .module_license .data .bss .modname                                                       4   0                  !             d                     1             s                      7             s                      <              s                                   |                  	                                                   E                                                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/offsetio.mod                                                                     0000600 0001750 0001750 00000003020 13417732100 0015172 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      0      4     (   USP]C@ tPC    1]UWVSEu}X@P@CSRP3Bu@t}uEe[^_]e[^_]UEP@    ]UWVS(UEjLu}UE$   tuS1ۉMM$rpU   xE1@K@C    S8CEC4w)t%    t}RR7߉MSЋMF҅u    We[^_]offset                      +                   LICENSE=GPLv3+ offsetio                                                                                                                              '              6              B              R              l              v            grub_file_seek grub_file_offset_close grub_file_read grub_zalloc grub_file_close grub_file_filters_enabled grub_free grub_file_offset_open      Q     q   	          
     
                *    [                    .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .modname                                                      4   l                    	   @       d  X   	            %      2                          8               (                  4   	   @            	            >                                 N                                  S                	                                     
            	                                                  \                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  boot/grub/i386-efi/video.mod                                                                        0000600 0001750 0001750 00000014640 13417732100 0014474 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (  
     tUP    u        1U    UuPPh    ju        1	U@ á    Ut@1]U    UMuE    E   QRP$u
        UUJ ulz$  B(u%z,  z0   z4         z,   z0   z4   z8      uNz$   B(uz,   z0   z4u~Euxz,urz0ulz4ufz8IuHz$uSB(uz,uEz0u?z4u9z8 u-z,u'z0u!z4uz8t#
   tvz<   ]á    UUMS]u[E    E   ]]MU@([]    UUMS]u[E    E   ]]MU@,[]    UVUMSu]u[E    E   ^]u]MU@0[^]    UVUMSu]u[E    E   ^]u]MU@4[^]    UVUMSu]u[E    E   ^]u]MU@8[^]    UVUMSu]u[E    E   ^]u]MU@<[^]U    t@@PPh    jU    t@DPPh    já    Ut@H]1]á    UUMS]t҉]MU@L[]1[]á    UWMV}Su]t%҉u]MU@P[^_][1^_]á    UWUVMSu]}u[E    ^E   _]}u]MU@T[^_]    UWUVMSu]}u[E    ^E   _]}u]MU@X[^_]UWVSEUM]EEu }$EEEܡ    uE    E   [^_]]]MMUU܉}$u ]UM@\[^_]UWVSEUM]EEu }$EEEܡ    uE    E   [^_]]]MMUU܉}$u ]UM@`[^_]    UUMS]u[E    E   ]]MU@d[]    t@hUh    jUUVMSu]        u[E    E   ^]u]MU@l[^]UUt%    uPPh    jU@p1U    t@tPPh    jU    t@xPPh    jU1M1B   utRPh   j        1UEVMS]xt[E1   E   ^]@tfx6 t݊P:p8   	P=@;   	9 tt[1^]UWVS       t
x  Eu#EEǡ      QjhM   Wu=     u0pRjhR   WtPjhX   WuaPjLj ]S$   t        0ҋE#E;Eut   E@   E@ w-      t P=     t
                EM@E1@|t	1} {E%   t   PPh{   V  PjLj EP|            W  PCPjxSP  EPj j SU=     EF  Pj j BP=     9  x  t S  U   9:  }   ut;t,t@E      @EPF} PPh   V  PPjxVu$SVh   jEE   Qj j V=     ERVh   jEqPj j S=     Et[PVh   jDPVh   jWEE   E]EuыE]E5    QjLj EPVuRuSuuVu;EPV u*]E0	Ê{@uE!;EtV        6뀉5    zWXZh^   j1E    E    3e[^_]no video mode activated invalid EDID checksum %d no preferred mode available keep keep, keep; no suitable video mode found text auto invalid video mode specification `%s'    LICENSE=GPLv3+  video                                                                                                             =              1     6     Q   F  D     g     ;     y     Z         (          z        k  M                        D       $  G         M     *  Y  J     J          d             o             {             )  A         D       n          ?  ;         (         ;     &             2             >  4  %     V      ,     i             v    (         4                       D                    ,   B       j  n         z     0  z  D     H    (     c             o              grub_video_get_blit_format grub_video_map_color grub_video_delete_render_target grub_video_get_region grub_video_scroll grub_video_set_mode grub_video_get_active_render_target grub_video_blit_bitmap grub_video_unmap_color grub_strdup grub_video_set_region grub_video_map_rgba grub_video_fill_rect grub_video_create_render_target grub_video_adapter_active grub_errno grub_memset grub_video_adapter_list grub_video_edid_checksum grub_video_get_viewport grub_video_get_driver_id grub_video_get_palette grub_video_set_area_status grub_video_set_palette grub_strcmp grub_strchr grub_video_swap_buffers grub_video_restore grub_isspace grub_video_set_active_render_target grub_video_map_rgb grub_error grub_video_get_info_and_fini grub_free grub_video_get_info grub_video_edid_preferred_mode grub_video_blit_render_target grub_video_set_viewport grub_video_get_area_status grub_memcmp grub_strtoul                3     A     H   &  W     o                  &               +  &  @    Y    f  &  {          &            &           .  &  G    d    r  &            &            &          %    l          &            &  0    ;    N  &            &             &  5    I    P  &  q    }      &            &            &             &  L    S  &  ^          &              !    '  .  4    A    G  .  X    ^  .  u    }  )                      4	    :	    S	    i	    v	  (  	     	  /  	    	  /  	    E
  #  d
    j
    
     
    
  &  
  /  
    
    
  &  
  /  
          &        &  6  (  h    ~              (      
  &   .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .modname                                                      4   2                    	   @                       %      2       f                   4                                  :                                 J             $                    O              $                                  ,     	            	              ,  |                                 X                                                                                                                  boot/grub/i386-efi/ohci.mod                                                                         0000600 0001750 0001750 00000024724 13417732100 0014314 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      |'      4     (   UVS   utPPu]VUu	[41   e[^]á   UtQHJPǂ       B   HJ B$    H J(B,    JB   @4]UVS      @H1{ u1{ *K@=  K@=   u@   EEUU Bt;Uvr;EsT   19}@   A   j@    @     @$    @(    @,    @0    @    [4@j
e1[^]UWVSEUp<T   Sh    h   h  h       Et    >        1te[^_]UW   VS(EpET   ؋ Ph.   h   h  h    } u`    EE  UU ؋t;Urw;Ev       PhJ   h   h         EE  UU ؋   u;Uwr;Ew    Ou    ؋ EE  UU ؋u;UQr;EFڃ    j
$hJ   h   h  h    1e[^_]USE@ XHShd   h   h6  h   ؋]UWVS(]Shw   h   h   h    " urh  @   uuh   h   h   h     QQ R   Ph  @uu   j   u  1ۃ  <  y  ju  Eu!h   h   h  h   1  j   u  ǉÃffډfjjjh   h   h  h    j<  Pj<j SE$h   h   h&  h   h   h   C.  PCXsCh   j ssssh   h   h0  h   h   jC  PCXsCh   j s1S=    @  uPsssh  h   h@  h   h  jC$>  PCXs$C h  j s1S=   @  uPs ss$h;  h   hO  h   h P  j C0  PC(C8_s0C,h P  j s(1S( =O  QuVs,s(s0hb  h   h`  h   0Wh  h   hd  h      @tph  f
 h   ho  h   @   @uh  h   hx  PjdOuՋBBh  h   h  $th  h   h  h  h   h  h   @   jh
  h   h  h    @4.x'@@%  Cǀ       SPh  h   h  h   C   ǀ       @   SP @$    S P(@,    tmh!  h   h  h      $hD  h   h  h          hr  h   h  h   @   @Ph  h   h  h    BHBH      C418s0Xs$ZsYs$ɻ   e[^_]UWVSӃR2@
 PHxQRh  h   h  h   sWh   h   h  h   CP@RPVh'  h   h  h    e[^_]UWVSӃtJƋBtRt+V,V(1ҋB9uB    {Pj j SF8C^8tލe[^_]UVSӃJQQKQt)Qt+P,P(1ҋr9uB    SB    hP  h   h  h   ESE/$e[^]UWVSփZ(MO     GR(MaCM@t+A,A(1@t+A,A(tHN$F$11҉EPPQ3U܉Mhh  h   h  h   U܃    ME$          P   Ph  j               PSSRPh  h   h  h    RP   QQRPh  h   h	  h   EN$ t2Ek0N P@Q)E         GV(e[^_]UWVS}uM_F(E@       V(Gh  h   h[  h   @   @$   h%  h   he  h   C ǀ       @   SP @$    S P(@,    P@   GV(	      E@Pte[^_]vPUP3UuO@u؋U؉MMAMt+C,C(t@F$F$F@GV(1   e[^_]UWVSEuX~(؉xhG  h   h  h   @   BtG@t+C,C(1P҉t
+{,{(1PPWRhR  h   h  h    tGF$F$EV(@e1[^_]UWVS8EXj?  E}@EE}}@W@  H%    tJt  1   UUU	M	U	EE%  EtSBt+C 1E  SBt+C1E   E    Et8M9M}0Hu1ɋ  ;UtHՅt+K K+KKًE9E}$Ѓtt+KK 
+KK1ɉJ1Fu!hz  h   h  h   4$  x@9ǉEt>h  h   h  h   EZYPWh  h   h  h     u6C8tPS8@    F  V+C(C,BFPP+C,C(FF1ɉ~F9PS8@    VB~+S(S,WVW  +S(S,PAFE;HE  }kMG xP}܋8@Uԉ}~QRPWh  h   hp  h   EE؃ UԋMЅ   HH%     	}    U؋E܋UGTWU؉G    FHF   +C(C,FC8tFPA  +S,S(5Pj j vh  h   h  h   V         BG    G    Z1s1vh  h   h&  h   U F@FVt+C(C,1B}F8h8  h   h7  h   E@t'HuNhF  h   h>  h   @   "hX  h   hH  h   @   @Ep(11e[^_]U           t        PPj h  $    h,  h=   h       Uj 9X5    $    È  ~  <  .    ~          5  5  .  .  detect_dev status=0x%02x
 ohci bus/usb/ohci.c begin of portstatus=0x%02x
 end of portstatus=0x%02x
 root hub ports=%d
 pciid = %x
 No OHCI address is assigned
 EHCI: EHCI is not mapper
 ehci class=0x%02x 0x%02x interface 0x%02x
 base=%p
 hcca: chunk=%p, virt=%p, phys=0x%02x
 EDs-C: chunk=%p, virt=%p, phys=0x%02x
 EDs-B: chunk=%p, virt=%p, phys=0x%02x
 TDs: chunk=%p, virt=%p, phys=0x%02x
 OHCI revision=0x%02x
 OHCI is owned by SMM
 Ownership changed normally.
 OHCI is owned by BIOS
 OHCI is not owned by SMM nor BIOS
 OHCI reset
 OHCI HCCA
 Legacy Support registers detected
 Current state of legacy control reg.: 0x%04x
 OHCI Legacy Support disabled.
 OHCI enable: 0x%02x
 Ownership changing timeout, change forced !
 loop finished: control=0x%02x status=0x%02x
 intstatus=0x%02x, td_last_phys=0x%02x
 TARGET=0x%02x, HEAD=0x%02x, TAIL=0x%02x
 OHCI finished, freeing
 OHCI tderr_phys=0x%02x, errcode=0x%02x
 OHCI failed without reporting the reason Overrun, failed TD address: %p, index: %d
 Underrun, failed TD address: %p, index: %d
 Unrecoverable error! Unrecoverable error - OHCI reset
 Timeout !
 Cancel: tderr_phys=0x%x, tderr_virt=%p
 Fatal: No free ED !
 Fatal: HEAD is not equal to TAIL !
 HEAD = 0x%02x, TAIL = 0x%02x
 OHCI transaction td=%p type=%d, toggle=%d, size=%lu
 Fatal: No free TD ! Tail TD (not processed) = %p
 program OHCI
 BULK list filled
 CONTROL list filled
             V      5                  LICENSE=GPLv3+  cs5536 usb boot ohci                                                                                         	      `        V  *                                
                             -              ?              ]              k                                                                                                              %             6             H             S             d             n                                                                  grub_mod_init grub_mod_fini grub_millisleep grub_dma_get_virt grub_disk_firmware_is_tainted grub_dma_free grub_usb_controller_dev_unregister grub_memset grub_disk_firmware_fini grub_pci_make_address grub_loader_unregister_preboot_hook grub_usb_controller_dev_register grub_zalloc grub_malloc grub_get_time_ms grub_real_dprintf grub_error grub_pci_iterate grub_free grub_loader_register_preboot_hook grub_memalign_dma32 grub_cs5536_write_msr grub_dma_get_phys grub_cs5536_read_msr    
     >                   X                        [    `    j    o                            9    Z                                                    	    -     :    ?    I    N                                4    j    o    y    ~                                                $    .    3    B    Y    e    z                                    '    ,    6    ;    J    a    p                                                        6    ;    L    b    g    w    |                                                		    	    V	    [	    e	    j	    z	    	    	    	    	    	    	    	    	    	    	    	    
    
    
    &
    /
    8
    @
    }
    
    
    
    
    
    
    
    
    
    
    
    )                        J    O    Y    ^    z                                                                                                 =    B    L    Q                                        !    &    0    5                                            !    &    0    5    g    l    v    {                                                     %    ,    1    >    C    H    P    f    k    r    w                                                   $     (     ,     0     4                                               .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                       	   @                       )               8                  %   	   @       X&  p               1      2         m                D             \  0                  @   	   @       &  @               J                                 Z                                 _                                  h                                                                	                                               '  q                                                              boot/grub/i386-efi/setjmp_test.mod                                                                  0000600 0001750 0001750 00000003264 13417732100 0015727 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   U                     R9Ph    h!   j:h    h1   P     P    t uD      1t tN*                     PPhE   hg   jIh    h1   j  Uh    hi   Uhi    setjmp_test setjmp returned %d instead of %d val == expected tests/setjmp_test.c setjmp didn't return enough times 0 setjmp_test    LICENSE=GPLv3+  setjmp functional_test setjmp_test                                                                                                                                                       	               0              E              R              j               grub_mod_init grub_mod_fini grub_test_register grub_test_unregister grub_longjmp grub_test_assert_helper grub_setjmp                        &     2     :     A     F     L     Q     `     n                                                                            .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                       	   @       h     
            %             8                    -      2       D  u                 <                                  B                                 R                                  W                                  `                                                                 	                v                                @  i                                                                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/part_acorn.mod                                                                   0000600 0001750 0001750 00000003144 13417732100 0015513 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UWVS   Ph   j j j ju    E<	uu11Bȁ  u8EuOU1EMUQÉPh  j j VSu +RRh    jǅ    ǅ       ǅ    1ktޡ   1ۋǅ    PuPuǅ   ǅ     Ut=    
F*`e[^_]Uh    h    Uh    Linux/ADFS partition map not found acorn          #       LICENSE=GPLv3+ part_acorn                                                                                                                                         5              D              O              Z              k               grub_mod_init grub_mod_fini grub_partition_map_list grub_disk_read grub_errno grub_error grub_list_remove grub_list_push   $   
     
                           	                         .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .modname                                                      4                       	   @         X   	            %      2         )                 8             (                    4   	   @            	            >             8                    N             G                     S              G                                  T     
   	         	              D  z                                (  \                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/setpci.mod                                                                       0000600 0001750 0001750 00000012420 13417732100 0014647 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UWVS]0       4       C8    @}QjWPE%  =    
0   uC        @E
4           E8:   R@50   jWPE	=    
0   u        
4     4   !0   C                      x    xVjuVW}=    
,   u        }
           
  }?:tSj:h       QGjVW}=    
(   u        }
      E8.u-R@jVPE$               Cx t
@   
       }       tWWh   jE  E1ۋ Ek`   VPVut:CuPjEPu       =     f   t4VVh*   뇋d   V]f   h      É]      U:+tSjh;   utK2QBf   jEPRUá    f   tP  Pjh>   uu      [PjhA   uu      8PjhD   utPjhG   uu      EPjhJ   utك=    uPPhM   LE       8=u]W@j]SPE       ulE   8:u)V@jSPE       u;   =    t=    tQQhc   RRj h_  1e[^_]UWVS,EU#4   ]EԋEE1;0     =     t};=,   m  =    tu1;5(   S  =    t1;$   <        uP5   t%t:1u>  ʃf%  ʃff  ǃ=    t,Wh   j	]S^_S5            u+5   h       ZYWSuuVP [Љ!   t"t8NuBȺ  Í  (Ⱥ  Í  f  1e[^_]Uh    h   h   j h    h        U5           d         *         s       <  f         v       z                                                                          	        
                                              +        :        I        X         g  $      v  (        ,        .        0        4        <        =        >        >      missing `%c' symbol one argument expected unknown register .L .l .W .w .B .b unknown register size option -v isn't valid for writes %x Register %x of %x:%02x.%x is %x
 Manipulate PCI devices. [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] setpci Select device by vendor and device IDs. [vendor]:[device] Select device by its position on the bus. [bus]:[slot][.func] Save read value into variable VARNAME. VARNAME VENDOR_ID DEVICE_ID COMMAND STATUS REVISION CLASS_PROG CLASS_DEVICE CACHE_LINE_SIZE LATENCY_TIMER HEADER_TYPE BIST BASE_ADDRESS_0 BASE_ADDRESS_1 BASE_ADDRESS_2 BASE_ADDRESS_3 BASE_ADDRESS_4 BASE_ADDRESS_5 CARDBUS_CIS SUBVENDOR_ID SUBSYSTEM_ID ROM_ADDRESS CAP_POINTER INTERRUPT_LINE INTERRUPT_PIN MIN_GNT MAX_LAT    LICENSE=GPLv3+  extcmd setpci                                                                                0        K                                                	              
               )              6              D              [              f              r                                                                                                                 grub_mod_init grub_mod_fini grub_strlen grub_strncmp grub_snprintf grub_unregister_extcmd grub_errno grub_printf grub_pci_make_address grub_error grub_pci_iterate grub_register_extcmd grub_env_set grub_gettext grub_memcmp grub_strtoul           ;     I     O     Z     l     u                                                                    !    )    8    A    Y    l    u    {                                                $    *    7    T    ]    f    m    v    ~                                                             .    6    C    Q    Y    h    p    }                                                        (    1    ;    I    N    p                                            O    X    c    l    q                            "    '    ,    3    8    =    E    S    X              $     (     <     @     `     l     x                                                                         ,    8    D    P    \    h    t             .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4   a                    	   @                       )                                %   	   @       p                 1      2       0                  @                                  F                                 V             $  8                  [              $                    d              +                                  4                	                                                p  m                                                                                                                                                                                                                                                                  boot/grub/i386-efi/part_amiga.mod                                                                   0000600 0001750 0001750 00000003460 13417732100 0015470 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      P      4     (   U   VSHu	ʆ119tC[^]UW1V1SL  PSh   j j WVu j  Pjh    Su'su1ۍu 	uPPh   TWVh   j j RPu    Qjh#   VutRRh(   j   t|ǅ    ǅ    ǅ    ǅ    ffG)׋ǉPuPuUt    C1e[^_]Uh    h    Uh    RDSK Amiga partition map not found PART invalid Amiga partition map amiga         D   ;   LICENSE=GPLv3+ part_amiga                                                                                                                                         5              D              O              Z              k              z               grub_mod_init grub_mod_fini grub_partition_map_list grub_disk_read grub_errno grub_error grub_list_remove grub_list_push grub_memcmp   b   
  u     {             
                    y        
      	      $    )               .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .modname                                                      4   2                    	   @       d     	            %      2       f  J                 8                                 4   	   @            	            >                                 N                                  S                                                     
   	         	                                                  \                                                                                                                                                                                                                                  boot/grub/i386-efi/sfs.mod                                                                          0000600 0001750 0001750 00000012334 13417732100 0014157 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UщS9t%x@X?ˀXB[]U   WVS(u   UP   U1   P   SPj j v t1WV    U=     u)      UD PUuS/      S  S1e[^_]UWVS(h   E  PSjpj j j j W =     @  Pjh    SuC4tP tPPh   j	     ǃ   	      9s	A   C   	   %      P   sh   PRfW1j j fU t1W}VW U=     uPB(Cx    [pǃ          UCtB1PU䉃   $>1҃=    uPPh   j	UUSUU$1e[^_]UEVS $tI   ƍD $Ut        S    e[^]UWVS8E8X      PEuu1     1P   uPj  j t1RP    =     uE   E䋗   J	tEXuxuuFPEËE܍D$UTЉEe~ tF u@  xE      ^E   VNu܆ỦM$$   E   EԃD PMЋU̅uVcNMԉVU܉^^É>F     F    F    F      EuV   PSU4$u   E   ^e[^_]USEX@   X   $Z5    1]U1҉MVSY@sppPPj j    CRPh  uuqqqHqDS   e[^]UWVS<UE]щω	׉E؋MuC  {  un   sw   CC    C    C    PC u        C    s     C SPC1҃} UԉEwqE9EsiC1ɉEEtAI1t'   	;usC 1;U܋rw;EwIԋC 1ҋu؍}܋I)׉1ۉ  CE    E    E}   3      uPvlfǍ@EfE1ҋ   P   WPj  j t1RPE    =     tW       fWJtgOMċ;Ew uqff9;Euǀ tfAE̋AWEEEE, (W^_h/   j   C tBS9Sr:QQRPu!s         C     cC C t'uЋŰ}SUSS4ЋSC |Cu؋}+u}1ҋẼ w9sE1&EЋEUԉEPPhD   j11ҍe[^_]UWVS85    E    E@    QQjh2   PphY  EPRuU E=     Uu?p׃Mq4A8    	   PEX@@    @    1>9tP   SX5        e[^_]UVSE5    E    EEEE tcQQjh2   hY  ppEPVu =     uERPh
  uE9tP   SX5        e[^]UWVS ]juj }WKXE؀}s 	Ѓ ?U܈E$vWue[^_]Uh    h    E    Uh    SFS not a SFS filesystem not an SFS filesystem SFS extent not found reading a SFS block outside the extent sfs          k   2
  E	                LICENSE=GPLv3+  fshelp sfs                                                                             Q  "        s                                                	               )              ?              L              Y              e              t                                                                                                                                                           grub_mod_init grub_mod_fini grub_strlen grub_fshelp_find_file grub_strncmp grub_realloc grub_strdup grub_disk_read grub_dl_ref grub_errno grub_memset grub_fshelp_read_file grub_fs_list grub_malloc grub_error grub_list_remove grub_free grub_dl_unref grub_list_push    R                             -    L    U    d    j                ?    K                                  
      =    I    N    y                   
  1  
    
              >    T                                z        d                    F    ^    e    l                +	    2	    P	    \	    	    	    	    	    	    	    
    
    
    
    #
    ?
    T
    p
    u
    
    
    
    
    
    
    
    
    
        1    9    X    ]    b    m    z                                       .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                       	   @       ,    
            %      2         o                 8             ,  (                  4   	   @       <  0   
            >             T                    N             d                    S              d                    \              k                                  p       
         	                 	                               l  e                                                                                                                                                                                                                                                                                                                      boot/grub/i386-efi/part_apple.mod                                                                   0000600 0001750 0001750 00000004050 13417732100 0015507 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      H      4     (   UWVSP  Pjj j j j uǅ       f=REt)VVhRE  Ph    h%   j{h/      f111SSȁ  h   SQ	RPu &  f=MPt6RhMP  PVh?   h%   h   h/      1  ufffǅ    щ		QS		PPVhr   h%   h   h/   ,uPuUt    1fF9jPPh   je[^_]Uh    h    Uh    bad magic (found 0x%x; wanted 0x%x)
 partition partmap/apple.c partition %d: bad magic (found 0x%x; wanted 0x%x)
 partition %d: name %s, type %s, start 0x%x, len 0x%x
 Apple partition map not found apple                  LICENSE=GPLv3+ part_apple                                                                ;          U                                                               5              D              O              a              l              }               grub_mod_init grub_mod_fini grub_partition_map_list grub_disk_read grub_errno grub_real_dprintf grub_error grub_list_remove grub_list_push &     +   
  T     Y     `     e        
                                         %    ,    B    G  	  L    \    a               .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .modname                                                      4   j                    	   @       $     	            %      2                          8             l                    4   	   @            	            >             |                    N                                  S                                                     
   	         	                                                  \                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          boot/grub/i386-efi/signature_test.mod                                                               0000600 0001750 0001750 00000014600 13417732100 0016422 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      P      4     (   UE    E    ]UE    E   ]USE `   j`tPj`h  S؋]U h   5    EUME    u(Qh   h   h0   h   h    h2   j SRURjPPh    5    }hI   he   -h   9h    h2   P         USE L  hL  tPhL  h`   S؋]USE   h  tPh  h|
  S؋]USE o  ho  tPho  h  S؋]Uh    h    XZh    h    YXh@   h    XZhP   h    YXh    h    XZh0   h             $            $            $             $            $    $    $    $P   $@   Uh  h   Uh     do_verify hi
 hj
 verify_detached can't find command `%s' 0 tests/signature_test.c verification failed: %d: %s err == (is_valid ? 0 : GRUB_ERR_BAD_SIGNATURE) (proc)/hi_dsa.pub (proc)/hi_dsa.sig (proc)/hi (proc)/hj (proc)/hi_rsa.pub (proc)/hi_rsa.sig signature_test hj hi hi_rsa.pub hi_rsa.sig hi_dsa.pub hi_dsa.sig                                                    U                      &  2   R+ k#	 M7dGpw_xFb^H×NCKE=4QYB|mN=pU<|bZ*ޭ}`\/_q30x:k*؁:s4.LR(^ſa"<Wj)> ElSVO	*G঎tn:prGk-ޡA3l&ǏO8B5ޔ<ag&-5 g ϛⱓ	@ޫSϧEk,@$bu,БZhEʏ^aq]L[_=0orW*(U 
*Ng ӯ?όdY{F%-'<VnI# c@\uٷ' La+]¬7NJoa̞j>Uf&߀o%y^EFtިȏo=!4lDsFˠ\eMT~{QFP"$.^3B~t I
ŐE2_CwzeYqh6GOHA!5,7#{zD_SV͌Vm&m_`,qwg	|#UZTA-ƇgC=;FJ3FbfZJ@å=m)},mĪ
Ijs-ORFTלw2tJ_c>ye!}YඣRF1l&I+L` O×2KzQ:{!Tx+ƒr3xC<k?%gn^z<.n-cOfr}8I}:m2bNF&g&Iޕυ?vu G/޲_PE+o:FS;lнRJI/az&ot9QmJO. i^"r4|q _6+u8+xW&ο?)-Ԡ&kzH1@	<e9%.BCP6LR7 JZVPT&<:"Ok[d2"^[K&.Fq`SыGNU GRUB DSA signing test keyz "R+		
 
	֑ C7@GKv0=~*R` ul-A)O7&(U0pnJ=^  R, 
	G 1mONay'!Ǖƛ aMo8 /S\=46wbNOHdXR, `/<jr)a&.Nb+E*n_BDv0.-Z?*wƻKx78R^wLtNbzek	)v},3~L(A,s/a^\DT@|rQ!,*f<1l)QvSFdR~ǾO"jhr][	9{E74M̆+igUUVh'SM^$	+=(y]Jo߯o "N} b*|?ȎTs쌵KLP8'S9q<^Y"$b](iu%&v-iDI>-R8.FM@9We&']cϠ4KJG'?m2Yh]0H[T9Zȴ2s1:%m^
!^/0SRG&Ja*`#!/!4d(a1 >_.g  "GNU GRUB RSA signature testing key8 "R,		
 
	!wj
E7Qwgqtǫ4Em^tB7"63%}N"f`Jrz3b^{}7K15(vbLL>}ZDb"A?I-
KemQ=L\J!o7^Rt91RLr^i LLO3udϓB$!;"ב76R"Iz 	1kᇋ 'Y7@wʨ^F E`@(t4L\`j\&on+|,J-ͤUTS#g(v/*@G0М"hrrI^MA|icؐJB0{X02t=ܶ?>Gu6(O֡=taww%qU1@PI?@OG#QGSr9gϊ ?iMAs˯)"gSe#i1.   R- 
	!wj^ 6,&6򝓠˧g3+~Q-	ռؐqoj*pi+/rr(2*R5J;o$is~^(tIcph 2  ȺEwk`kp8	ZU@R:{?!Xdl3ۓZV:"J/w+
WCK>}Y6
;xPfbxa;& g<u:QO|"#L#PĤh.S30VbhgARIOacH]beѿFܚ߹n1<^	o.CSj>([7+dxx*n&ijĺt܀F(LzmJ(lYS|"ȍ:l'<OKktʬv Xi@BB8;ĵ9zZ>/nF=|kx;^0G\ՀtN|_kܩ$,	O+io(sQϧ LICENSE=GPLv3+ functional_test procfs signature_test                                                                                                                                         	              
               )              =              J            M              Y              k              v           y                                                                                                   grub_mod_init grub_mod_fini grub_errmsg grub_procfs_entries grub_memmove hj grub_strdup grub_command_list grub_errno hi grub_malloc grub_test_register grub_test_unregister grub_list_remove grub_named_list_find grub_list_push grub_test_assert_helper             (     .     E     V     \     q     w                                                                          
    -    A    G    k                                                                            !    &    -    2    7    <    A    F    W    \    a    r    w    |                                                                                                    (     ,     8     <     H     L     X     \      .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   &                    	   @         x              %             \  
                  -      2       f  1                @                                <   	   @         `               F             4                    V             C                     [              C                    d              Z                                  l                	                                                  m                                                                                                                                                  boot/grub/i386-efi/part_bsd.mod                                                                     0000600 0001750 0001750 00000005500 13417732100 0015157 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      8	      4     (   UWVSÁ   TPh   j j QRS   TWEVtWWh    j  f}ǅ    ǅ    vm} tg(VPjj 		h   		WV    ,1		ωցƔ    ǅ(    W1ۋ1҉8]0 ,L 4ux( (U9   t݉S  SjS	Q	RP<@D D    Q;rw;r+,Pu(0PU;1e[^_]UWVS]u}Ct-QQh   @$puCx(uWVh    j^CtNRRh   @$ptC@$=    t=   t=    uE   E   e[^_]WVh    j غ   1e[^_]UVSÃ0@t(URRh   @$pUԅu	QQh   =EUREEuE    EEPh  Su} uPPh*   je[^]UUMEU   M    ]UUUMEU   M   ]3UVE1S]8H(uEPHsssE j u	Cf u        e[^]Uh    h    XZh   h    YXh    h    Uh    $   $    no signature msdos no embedding supported no bsdlabel found openbsd netbsd bsd            <   {          D             K   5  LICENSE=GPLv3+ part_msdos part_bsd                                                               !  <        ]  -                                                            	               5              D              O              l              }                                                         grub_mod_init grub_mod_fini grub_partition_map_list grub_disk_read grub_errno grub_partition_msdos_iterate grub_print_error grub_strcmp grub_error grub_list_remove grub_list_push 4     ^     e                  Q    \    s                                            '    L    R    f    m            	        (    -  
  2    9    >  
  C    J    O  
  T    d    i    p    u    |                            (     ,      .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                       	   @       H  X  
            %      2         O                 8               0                  4   	   @         0   
            >             @                    N             O                     S              O                    \              Z  	                                d  0     
         	                                                  e                                                                                                                                                                                                                  boot/grub/i386-efi/sleep.mod                                                                        0000600 0001750 0001750 00000004150 13417732100 0014471 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      8      4     (   UVSU}ErtE    E   e[^]Rj
j 0      > t#5   YXSh   ~ t3EU+EU w(=  w!u߸   >h  Ku> t$5   XZj h   1e[^]Uh    h   hE   j h    hW        U5    ]   v       e           x   i                                          one argument expected %d     Wait for a specified number of seconds. NUMBER_OF_SECONDS sleep verbose Verbose countdown. interruptible Allow to interrupt with ESC.  LICENSE=GPLv3+  extcmd normal sleep                                                                               0        .                                                	              
               -              C              V              m              y                                                                                     grub_mod_init grub_mod_fini grub_millisleep grub_term_restore_pos grub_term_save_pos grub_unregister_extcmd grub_printf grub_refresh grub_get_time_ms grub_error grub_register_extcmd grub_getkey_noblock grub_strtoul      ,     8     J     O     T     b     g     o     t     y                                                      
                     (    6    ;                    $      .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4   D                    	   @                        )             x  H                  %   	   @                         1      2                          @             c                     F             d                    V             t                    [              t                    d                                                  `              	                                                  m                                                                                                                                                                                                                                                                                                                                                                                                                                          boot/grub/i386-efi/part_dfly.mod                                                                    0000600 0001750 0001750 00000003320 13417732100 0015343 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UWVSpEPjj j j juE        E1=YLFtkQQhYLFPh    h%   jHh/   h>   j   uuuuVhT   h%   j^h/   U0E	uMF  ;u     	1R1҉EEPjRWSQu] t    O	]EȋE	MŰUuEPuE		PuM]ĉUԉ}Uh1e[^_]Uh    h    Uh    bad magic (found 0x%x; wanted 0x%x)
 partition partmap/dfly.c disklabel64 not found partition %2d: offset 0x%llx, size 0x%llx
 dfly                  LICENSE=GPLv3+ part_dfly                                                                 K          e                                                               5              D              O              a              l              }               grub_mod_init grub_mod_fini grub_partition_map_list grub_disk_read grub_errno grub_real_dprintf grub_error grub_list_remove grub_list_push      "   
  F     K     R     W     _     f                            
       R    W  	  \    l    q               .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .modname                                                      4   z                    	   @            	            %      2                          8             4                    4   	   @            	            >             D                    N             S                     S              S  
                                `     
   	         	              `                                    \                                                                                                                                                                                                                                                                                                                                  boot/grub/i386-efi/sleep_test.mod                                                                   0000600 0001750 0001750 00000004450 13417732100 0015533 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                             4     (   U   WV    SÃ8f }}о   UfE±f-mf=    S1J   ύA-  ki1Ki30 HtEiQ uvǀQ S:Tv1ttf{ul1tfKMw[K;wS[<wJNiQ }i  k<f}¼vyf}§wE   18[^_]UVS,uV]E    E    ZYh    h   j$h$   h6   Ph'  $ZYhI   hd   j&h$   h6   P UHVVh}   h   j'h$   h6   P ؍URRh}   h   j(h$   h6   PE+EP	h   h   j)h$   h6   P e[^]Uh(  h  Uh     ; Z x     0Nsleep_test Couldn't retrieve start time !grub_get_datetime (&st) tests/sleep_test.c Couldn't retrieve end time !grub_get_datetime (&en) Invalid date grub_datetime2unixtime (&st, &stu) grub_datetime2unixtime (&en, &enu) Interval out of range: %d enu - stu >= 9 && enu - stu <= 11 sleep_test   LICENSE=GPLv3+ functional_test datetime sleep_test                                                               =          W                                                                            	               -              ?              R              g               grub_mod_init grub_mod_fini grub_millisleep grub_get_datetime grub_test_register grub_test_unregister grub_test_assert_helper       !     F    M    R    ^    f    l    y                                                                            $    )    /    D    I    N    ^    c     .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4   l                    	   @           
            %               /                  -      2                         <                                  B                                 R                                  W                                  `                                                                 	                                                  i                                                                                                                                                                                                                                          boot/grub/i386-efi/part_dvh.mod                                                                     0000600 0001750 0001750 00000002724 13417732100 0015175 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UVS4  ]Vh   j j j j Sǅ        1҆=At	QQh    "E9u1tRRh   jw
uFtgk0u4ǅ    ǅ    PuPSUt    e[^]Uh    h    Uh    not a dvh partition table invalid checksum dvh           +       LICENSE=GPLv3+ part_dvh                                                                        "                                                               5              D              O              Z              k               grub_mod_init grub_mod_fini grub_partition_map_list grub_disk_read grub_errno grub_error grub_list_remove grub_list_push   )     .   
  V     z                     	      )    .               .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .modname                                                      4   7                    	   @       0  X   	            %      2       k  /                 8                                 4   	   @            	            >                                 N                                  S                	                                     
   	         	                z                                  \                                                              boot/grub/i386-efi/spkmodem.mod                                                                     0000600 0001750 0001750 00000004040 13417732100 0015176 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   U尶SCBfBaat!BEBE	f9wJۃ[]U   M  VuS   s   T  
(   *  yK
     iu[1^M  ]UUaa1        ]U1҉M  +u1U=     tRRh    h       uPPh    h    h    ЃtUh    $    spkmodem                                                                                                              P      K   LICENSE=GPLv3+  terminfo spkmodem                                                                                 O        3  !                                              	               2              H              Z              v                                                                                       L   0                  ,              grub_mod_init grub_mod_fini grub_terminfo_gotoxy grub_terminfo_putchar grub_terminfo_cls grub_terminfo_setcolorstate grub_terminfo_output_init grub_terminfo_setcursor grub_terminfo_getwh grub_term_outputs_disabled grub_terminfo_getxy grub_term_outputs grub_spkmodem_terminfo_output grub_list_remove grub_list_push                                           $    :    ?    F    K                                   $   
  (     ,     0     H     x      .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   T                    	   @         p   
            %      2         	                 8               |                  4   	   @       P  `   
            >                                 N                                  S                 	                  \              )  	                                4  p     
         	                ;                                 e                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  boot/grub/i386-efi/part_gpt.mod                                                                     0000600 0001750 0001750 00000004474 13417732100 0015212 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      4      4     (   UWVS@  Ph   j j j j u (  f}UtPPh      EU8t9uRRhF      ǅ    P   Sj\j j RPu    Wjh   S   uPPha      QjhPh       `   u f1;\  hVPh   RSu y    b  jS  hu   h4   jZh8   TX t11ۉǅ    N t1 + t1MIWV Ph   h4   jrh8   ǅ    ,uPuU31e[^_]Uh    h    Uh                          no signature GPT entry %d: start=%lld, length=%lld
 gpt partmap/gpt.c no GPT partition map found no valid GPT header Read a valid GPT header
           4       EFI PARTLICENSE=GPLv3+ part_gpt                                                                                                                                      	               5              D              O           n                                                                       grub_mod_init grub_mod_fini grub_partition_map_list grub_disk_read grub_errno grub_gpt_partition_map_iterate grub_real_dprintf grub_error grub_list_remove grub_list_push grub_memcmp  $     >     \                                   L    \    h    u    z            w    |                      
                         .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .modname                                                      4                       	   @            
            %             8                    -      2       H                   @                                 <   	   @            
            F                                 V                                  [                	                                  0     
         	              8                                    d                                                                                                                                                                                                                      boot/grub/i386-efi/squash4.mod                                                                      0000600 0001750 0001750 00000015574 13417732100 0014765 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      t      4     (   UWVS\uE̋EUȋU}MEUă}   EUSPEjE    u  	]	uRPE0    w  vE EU딹    1ۋE1) MЉ]w9EvEЉUfUfyREUQuuЉ   E    	u	MuRPE0       EʋUĉM QEUMu
       RUPEQM  E    	u	MuRPE0 MtSEERPEPuuWVQS    yS    #SEЋU)EE-1e[^_]UWVSlEPp@@ŰVdEftf	k  Nt^x   MЉ]Nt1ۋFx]ԉMЃP      t#UԋEЉ	f  E`   E    S  ftf	uN|8         1ۿ    111ۋ   1҃ȋ    tЃÍ    QME       $   ۉ   tMuS:   1RP      FDVHRPt3   X   ǆ       ǆ       3     1۹        @    ;M   1ҋ   %_T_ωTA͋   ŰE tЉ   E    E    EEUEE1EU9UY  Eȋ   +E);}Ev}   U      %PEEF     UMЋ]E    \Puu%  u	E	uSQ6 tu  SE1VWuRPuu    9tu  uS   1ҋ]EE    TEQuUԁ  ]Wuu		RP6 b  1ҋF}U1)}}EUEE  9Es  E    1E    1ҹ   RP      U4   EE؋UU܉EEU   f~d	u   N|1ۉMMȉ]ċ]M]ą   PE   SU1PEuǉS  W		SQ6 tuGQVuuuuuu    ;Et-u=     uRRh    j	Iu6MP]uMu]1҉ρ  RW		SQ6 uEe[^_]UWVS]C@PKƋC<xkGHRPG@WD;GDWHRP tV1	C e[^_]UWVS   tEPj`j j j j W =    uWWh   j	F  }hsqsuEtPtSSh)   =  E1QU܍MQjW  Q		RPt =    uPPh   j	   h      xt   uEU   E   ftft"fHuǃ   z	     ǃ        ǃ   |  h       uS+h      u<   $1PSEPh5   j	ڋC   ǃ             9s	A   ؍e[^_]U]USQ   tP   X   Z   $]UE u    HU
1UE@@p1UWVSjLj R1҉wG8   F&W@G<^$f_D1SQ8   FDVHRPe[^_]UWVS\EE    @ t@ux   PPjh  h  EPVu =     t       E{d   X@Epǃ       ǃ       x<Wkt@|D      H<QkTHf   pftf	u#HX }O4_87Mx A8    y4%PVhP   j	P1e[^_]UWVS }j]j uVE؀}	ЃE؋G<$EsVue[^_]UWVS   E@ft(fuhE@&ƉEE@DEE@ E@EE@DEE@EE1҉Uk@<LPukSPhP   j	XEQk@<LPuSuSjhi   U E   E@<   kLPuE    S  E1Rk@<LPuV~<VGkF<EOH SQO@_DHDXHSQ8    uuVjhk   UtRE     E1ۋMU S]QMHLXPSQ   j  EE    E@9ErE9Er+E1ۋ}UM S]WHLXPSQ   X  M1ۃǋEU S1QMHDXHSQ8     EP|   E1Mu W}ASpLxPWV   E\D E]ft1fT   Et@<x@kLPttPE{uk@<LPuS   tuC<}k@ىy@|AD    fqHC<uSRWUWuEc]Ee[^_]UVS`EE    EEEE tQuuHRRjh  h  EPVu =     uPEPh  u2    e[^]UWVSE }u   =  vEE    utSj EPSuu tRRh    j	$PVWu$e[^_]UW1V1SHEEEEE    EE    E    E    EЋEE؋E    E܃}    PPEPE E       EvSShn   jmM1҉;UrGw;Er@+Ex]9vQSuEP);Mv]ERSPu])]E1׃}PEče[^_]Uh    h    Uh    incorrect compressed chunk not a squash4 not squash4 unsupported compression %d unexpected ino type 0x%x . .. invalid xz chunk squash4            W  r
    
          	  LICENSE=GPLv3+ fshelp lzopio xzio gzio squash4                                                                                                                                       	               3              @              V              c              o              ~                                                                                                                                                                        grub_mod_init grub_mod_fini grub_fshelp_find_file xz_dec_reset lzo1x_decompress_safe grub_memmove xz_dec_init grub_disk_read xz_dec_run grub_errno grub_memset xz_dec_end grub_fs_list grub_zalloc grub_malloc grub_error grub_list_remove grub_free grub_zlib_decompress grub_list_push   b         8    I                                c    o    j            Q    '    `    r                            *    m                        $    -    9    @    X                        	    	    '	    4	    ;	    	    	    	    	    	    	    	    -
    
    
    
  
  
    
    r                        s                            U    9            6              
                  /    =    D    L    ^    f                    c                                                 $      .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                       	   @         0  
            %      2                          8             x  (                  4   	   @         0   
            >                                 N                                  S                                  \                                                       
         	                                                 e                                                                                                                                                      boot/grub/i386-efi/part_msdos.mod                                                                   0000600 0001750 0001750 00000004354 13417732100 0015542 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UWVSl  Eǅ    ǅ    @t/x$    u&x(uP@PPh      ǅ       1ǅ    1ǅǅ    ǅ    ǅ    PPh   j j u   	uE8u	SSh   `M9ut;u;u	QQh!   9C؉tf}Ut	RRh/   E tPPh<   j  ]9uǅ       ux;~É@O1ƋC+1KRPWVQCPhJ   h   h   h   C0tt<u4@EPуt8u'1PuPuUt    g]9uM1ҋ@qN	ue[^_]Uh    h    Uh    no embedding supported dummy mbr loop detected no signature bad boot flag partition %d: flag 0x%x, type 0x%x, start 0x%llx, len 0x%llx
 partition partmap/msdos.c msdos                LICENSE=GPLv3+ part_msdos                                                            /                                                                             5              D              O           l              ~                                           grub_mod_init grub_mod_fini grub_partition_map_list grub_disk_read grub_errno grub_partition_msdos_iterate grub_real_dprintf grub_error grub_list_remove grub_list_push    -     P             
           F    W    ^        "    ,    1            !  	  &    6    ;               .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .modname                                                      4   D                    	   @            	            %      2       x                   8                                  4   	   @            	            >             0                    N             ?                     S              ?                                  L    
   	         	              \                                    \                                                                                                                                                                                                                                                                                                      boot/grub/i386-efi/part_plan.mod                                                                    0000600 0001750 0001750 00000003434 13417732100 0015345 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      <      4     (   UWV1S\}E    E E    	@EEԉ%  EPEPjRVj jW   Pjh    EP  PEPjSQj jWM] o  EFM]Ѓ0	w 뿈߃Av< $  E    E    uEESPjuuj jW   EFEU ȃ0	w#kE
E
   eUӉM]<    E    E    uEEQPjuuj jW    EFEU ȃ0	w#kE
E
   eUӉMȉ]<
u.UċE)EURuEPWUt    !E&1} uPPh   je[^_]Uh    h    Uh    part  not a plan partition table plan         !       LICENSE=GPLv3+ part_plan                                                                           5                                                               5              D              O              Z              k              z               grub_mod_init grub_mod_fini grub_partition_map_list grub_disk_read grub_errno grub_error grub_list_remove grub_list_push grub_memcmp        K   
  ^     g        
    
    
              "    '  	  ,    <    A               .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .modname                                                      4   J                    	   @       X  x   	            %      2       ~  &                 8                                 4   	   @            	            >                                 N                                  S                
                                     
   	         	                                                  \                                                                                                                                                                                                                                                      boot/grub/i386-efi/syslinuxcfg.mod                                                                  0000600 0001750 0001750 00000043610 13417732100 0015743 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      0E      4     (   PUw ]UWVSӃɉt't!UUE9EuGCЉZY[)Ɖ^_]Uj j uUB,1UuUB1UuUB1҅u    UWVSU]z uE    E   e[^_];    ߊ<,ttGjUUu    ]PP)PSUUFuV    -    BHt1	pBp;,pC1e[^_]UWVSu}~ t+E    E   e[^_]PuCuVPP)PWUUBFx u8PtCu; t"~SG Fx  u    F@<	   1e[^_]UWVS(}]WSҍ4uE    E   e[^_]WUUBCx u
      @<   )   PPh   FPu
C@<   ~F   uC@<   	   F   u
C@<      !   u
C@<   &   u
C@<   +   u
C@<   0   tu
C@<   5   Zu
C@<   1e[^_]UVuSj@á    tLPj@j SZuCuS    FC    FtX^1e[^]U:/u@@QRPh:   UVSËH )9r$t
PPVsu    3C1e[^]UWVSӍxȃEWt1t+;}t&GUM*MU9uC[)Ɖ^_]UE@uE    E   ]@4   1]UWVS}]wuE    E   e[^_]S@$FGp    t2t'<^uCtWCUTUB0FCF 1e[^_]UVES]suE    E   e[^]PFCx u    	@<
   1e[^]UVES]suE    E   e[^]PFS1z u    e[^]UVES]suE    E   e[^]PFCx u    	@<   1e[^]UVES]suE    E   e[^]PFCx u    	@<   1e[^]UVES]suE    E   e[^]PFCx u    	@<   1e[^]UVES]suE    E   e[^]PFCx u    	@<   1e[^]UVES]suE    E   e[^]PFCx u    	@<   1e[^]UVES]suE    E   e[^]PFCx u    	@<   1e[^]UVES]suE    E   e[^]PFCx u    	@<   1e[^]UɉVSuR)؍   NuqCSHK'SCtI'HKu6'CSHK\CSHK'CSHK'F뫍HK'1e[^]UWVSÃ@   P,u1>    VUKZZUMDPq(MA(CP(tvP,FJ~ tC+P(P,tCP,H(rp,
CP(@,pS(u1> thVUZUYDPsCu    9C(FH~ tS)ЅuC(
HK(
SC( 1e[^_]UWVS΃uEPVWSSRMse[^_]UWVS˃}uQUU<;/uRR 1ɉu'   @   kueډ[^_]e[^_]UVS RhB   j]S$ډe[^]UWVS}uW	$á    tIC    Ft@8FX8F0^0tXW@PWS1e[^_]UWVS8p$EEt	E    g      PtFu   O   ,    >   E܃@x$SuXuE  }W;Ew  ]#PuH
tPtCu]t<#uE܉ڹ   d!  ; tCPt]Pu; tC> tFPtuPuE̿    +EE    E̋E)؉E-> tFƋM̋t0Ut$EЃ}   7;EuǋGt&P;EuċMȋGt{ukU   j    tRRuSЃÅJ1ۃuj  }-  U   E     E)؃     ڸJ      1V4$E    ESYu   RPtF_<
t<t[SMD9EsVVPWEuS.EEЉ؊@r
x t+UUWj        3}1ɺW   U1ɉ   q   e[^_]UWVS]U؋{$@ơ    t_s$u61ɺs           Y1ɉN   {   =1VEE{$e[^_]UWVS˃<EԋA(UЅtPS({8t]tW tQuԹ      3  1ɉWQ  EԹ        u{<
  C<$    st?> 
  ;su      [u  FPuF뽋{E    EԹN      /  EԹ        uԃKUj 5     u  tWEEԹ      U  } u
{ 0  EԹ     y)  } u[c}ԃM̋Uj      >t  }ԃKUj \     
u\u     '  
   6  E  }ԃKUj       Z  [u	;-t1PtCC   Pj j St( w=   vP   PhK  jO$ w=vPPhK  j'w EԺ`  	   څ  &{	wEEԹ	       EtD
     j  EEԹ     @  Eԉ/	        빋{1ɉt\t/u@ty    CE    EE    EE    E؀8 g  E؃ PtEuhu ~duPj 1EPVE뮹     u?FẺE؋E uE؀8 z  EoPuEʹ     EuuE   3fu&~du Pj    EPVE0	wPj EPVEEԹ     
  uU؉Eo
  EԹ      S
  u!EԹ     2
    E؀8      t   EԹ   L	  UȋE  }t0EԹ     	  UċEB  }Թ     	  } tZ   '  t	  }ԃM̋Uj      A	  }   EԹ     i֋EԹ     U       [   E   ;   u	C9uAPuF݀;-u'{-u!EԹ      +   ktS} t   )  
	   6  EUЃًEV
  E    1Eԉ  4@    [PtC]tPuC]PtC;-u;{-{u2PtGtPu	C11PtC;-uA{-u;PtCtPMMąuA11ۋE̅  t t t؉ǋEԹ!   L    MȋUЋE    t1EԹ   n    UЉًE  T  EԹ     g  UЉEd  #         u	       u         [}ع   E  E  E     ;   PtC     ؉]u뿹     u
   륹     u   놃PuCu EȋEЃx4 uWueEԹG     VuЋM̋EԉF4     EԹ   F4      oEЋ@4      EԹ   3  Bt؃Vuԉ   O  EЋM̉x4\  Eй     @4    Z9uM̋UЋE/  EȈQEԹ   _  O  WE0    CEuC EuE̘   ŰEEx  È8/Eu@@ VuPh:   EH  SEA3  tJ/u?9tx/t8~.u/N/u%.u~/u9r8/tH/@@F  EԹ     A  uԃKUj c       Wuԉ       uк     QQWv$UtWUJtQ6ًEԹ     >  S<E,t5    $     x  u  EԹ     A  uԃ@   Uj a       uԃM̋Uj .       K]ԋUj       V  WXuZu11  > u sEčFEu> t FPuFۋEȃ)EĉE@PCRU)RPWCUĉ)RUV)PE EЃPHp4PEWuu    EԹ   s           u5WEfuEԹ     Ke[^_]UWVSZEt"CyuEىu1[^_]UWVSÃ`j8j }WMEMuĉEEMȉE̋EEЋEEԋEE  utYtS~ tM      {Z  1ɉ؍VF        N-  vu} u} tT          Mj E        t  } t@Mt9  uXuXu]  utыt     wV  Eܹ
   1҃	
6        >  Eu} u#gPUt  	       U1ɉ          
       VuV1ɉs  F0tPE     E mL     ؍UV5     q   =       $  V1ɉG                      vt3CP$ߋ]tpsEt>v4$s(XsZsYs^s_s$$]1e[^_]U$uMEUE    j uuuE    E     t1   ,   EuEUE     1]UWVS,]}utE  E   e[^_] H9e|cEEtUU} tutEPS  : Etr1z tBz JE   uɉM܃z  tE   1ۅuCu   QQj/PuS1    RPVuEh  h  jmh  EuuPPVV t3h4  h  jsh  u%ju    4PQj h$  V4$$1} t>t8 tRj jPtEPuލe[^_]Uh0   hQ  hy  j h%  h~  h0   h  hy  j h%  h     h0   h  hy  j h%  h
     h0   h*  hy  j h%  hj          U5   X5   Z5   Y5      !          J  J              r                c                i                  P  p       Y            s                                         kernel without label .0 .bin .bs .bss .c32 .cbt .com .img %s/%s / %d text help endtext   # UNSUPPORTED command ' ' # File   not found  root=fd  root=hd  echo  
 initrd=  if test x$grub_platform = xpc; then linux_suffix=16; else linux_suffix= ; fi
   linux$linux_suffix      initrd$linux_suffix    chainloader    chainloader --bpb  overflow is detected   root=fd ;
  chainloader +1;
   root=hd   # UNSUPPORTED localboot type  chain.c32 file= swap   # UNSUPPORTED option    # no drive specified
 , ;
  chainloader +1;
  drivemap -s hd0 "root";
 mboot.c32   multiboot    module  ifcpu64.c32 if cpuid --long-mode; then true;
 elif cpuid --pae; then true;
 else
 fi
 reboot.c32   reboot
 poweroff.com   halt
 whichsys.c32 iso pxe sys -iso- -pxe- -sys- if [ x$syslinux_flavour = xiso -o x$syslinux_flavour = x ]; then true;
 if [ x$syslinux_flavour = x  ]; then true;
   # UNSUPPORTED com(32)  
true;
 # :
  -c   not found
   # UNSUPPORTED entry type    syslinux_configfile -r    background_image  set timeout=  default= menuentry   --hotkey '  --id   {
 }
 include menu label kernel linux boot bss fdimage comboot com32 config append localboot initrd default background timeout say prompt nocomplete noescape implicit allowoptions / filename expected transforming syslinux config %s, root = %s, cwd = %s
 syslinux commands/syslinuxcfg.c syslinux config transformed
 Execute syslinux config in same context FILE syslinux_source Execute syslinux config in new context syslinux_configfile Execute syslinux config in same context taking only menu entries extract_syslinux_entries_source Execute syslinux config in new context taking only menu entries extract_syslinux_entries_configfile root root directory of the syslinux disk [default=/]. DIR cwd current directory of syslinux [default is parent directory of input file]. isolinux assume input is an isolinux configuration file. pxelinux assume input is a pxelinux configuration file. assume input is a syslinux configuration file.          $      )        /      U  6        <      5  A                E      '  M        U      s  [        b      "  i        s         z         $  )  7  $  z    $             i                                                             LICENSE=GPLv3+  extcmd normal syslinuxcfg                                                                          	    .'          '  :                                              
                             )              7              O              \              s                                                                                                                                                        !             7             N             _             k             w  $  ]                                                                                                                                8                 -             <             I              grub_mod_init grub_mod_fini grub_strlen grub_strtoull grub_env_extractor_open grub_strrchr grub_env_context_close grub_env_get_menu grub_xasprintf grub_realloc grub_memmove grub_strdup grub_env_extractor_close grub_snprintf grub_unregister_extcmd grub_errno grub_memset grub_env_set_menu grub_env_context_open grub_normal_parse_line grub_print_error grub_zalloc grub_strcmp grub_syslinux_config_file grub_malloc grub_file_close grub_file_open grub_isspace grub_real_dprintf grub_file_getline grub_error grub_free grub_strndup commands grub_register_extcmd grub_show_menu grub_strtoul grub_cls   w   -                         '    !  %    7  )  M  (  R          '    $    )    $  '    ;    f    z      '                          C    ]    w              !                (      X    ]                (  '  P    c  '  l    u  !            '          7    I  '  R    h          '                '          <    N  '  W    k          '                '          J    \  '  e    y          '              	    	    J
    \
    k
    
        <    q    |              !              )  #  A    O  $  j      (    (    &        $  B  $  X  $  }  $    $    *      
    1  *  ?  *  h  "                    (    &    $  3    P      (                  #    +    I    ^  (                  <    Y  $  z                    0    i                    *  $  E    d    k  '        '                  D    n      $    -      <  $  R      -    -              '    N    U                    @    T    k      $              Z    x  $    $    $    $    $    $  0  $  O  $                   *    ?    I    ^    h                  $              !  $  S                    #    Z    r                h                        ?    N    h                      (  $  (  -  (  N    u  $    !               $     <     ^          ,!    Y!    !    !    !  (  "  (  
"  (  0"    i"    "    "    "    "    6#    j#    #    #    #    $  (  $  (  <$  (  F$  (  V$  (  _$  (  h$  (  q$  (  z$  (  $  (  $  (  $    &%    9%  '  n%  .  %    %    %    %    &    &  (  %&    :&    ?&    F&    K&  %  `&     n&    s&    z&    &  %  &    &    &    &    &    &    &    &  (  &  (  &    &  ,  '    '    5'    :'    ?'    F'    K'    P'  +  X'    ]'    b'    i'    n'    s'    x'  +  '    '    '    '    '    '    '  +  '    '    '    '    '    '    '  +  '    '    '    '    '    '    '    (    (                                                   $     (     0     <     @     H     T     X     `     l     x                                                         $     ,     0     8     <     D     H     P     T     \     `     h     l     t     x                                                                                                                                               ,     .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   (                    	   @       d7                )             D(                    %   	   @       lB                 1      2       )                  D             0  8                 @   	   @       $C                J             1                    Z             2                    _              2                    h              2                                   2                	              5  R                               D  q                                                                                                                                          boot/grub/i386-efi/part_sun.mod                                                                     0000600 0001750 0001750 00000002764 13417732100 0015225 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UWVS@  Sh   j j j j uǅ        1f}ھt	QQh    f3M9u1ftRRh   j   w<      LݘUyfEǅ    ffAtPuPuUt   C^    e[^_]Uh    h    Uh    not a sun partition table invalid checksum sun          +       LICENSE=GPLv3+ part_sun                                                              )          C                                                               5              D              O              Z              k               grub_mod_init grub_mod_fini grub_partition_map_list grub_disk_read grub_errno grub_error grub_list_remove grub_list_push   )     .   
  J     g     n         0    5  	  :    J    O               .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .modname                                                      4   X                    	   @       P  X   	            %      2         /                 8                                 4   	   @            	            >                                 N                                  S                	                                     
   	         	                z                                  \                              boot/grub/i386-efi/tar.mod                                                                          0000600 0001750 0001750 00000006514 13417732100 0014155 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      D      4     (   UWV1SE1U1;ut>]3FYЀw/Éωu܉փ]}uu܉}	߉뽃[^_]UE@    @    ]USEX@s$$    ]UWVSEux@HDJ HHJ$uVHXO_SQj j 7 uB     e[^_]UE@$E]USÁ  Ph  j j j j S u0Rjh    Puj,tPPh   j	1]UWVS]C uơ    tCPuh(   Vtv$4$s@FV C41S8e[^_]UEVS á    t1uuuh(   Ss$$e[^]UWVS  }ǅ   ǅ    ǅ    GWGWVPh  wwj j 7    uM uE !  Sjh    PtQQh   j	  <L      pƍ@PMy  RPVO_    SQj j 7M 2     1%    GWǅ   ^  <K      p_p9w(s6V  w$w(G$Vw$SGW    RPj j 7   G$1ǅ          _W  1ۃ uxM t	C   uCfPM2  M tQSMRPE /CuRjdPPE Dd    p1O_    G  W  O _Ӄ} O_t   |M} tK   Xu21}0u!M̀5uu@U̠ uT(dw2jeu    Ew$_$G(e   PjdPw$G$@d 1te[^_]Uh    h    Uh    ustar not a tarfs filesystem invalid tar archive tarfs           1          v               @     `   LICENSE=GPLv3+ archelp tar                                                                                                                                       	               *              6              E              P              ]              i              u                                                                                                   grub_mod_init grub_mod_fini grub_memmove grub_strdup grub_disk_read grub_errno grub_fs_list grub_zalloc grub_malloc grub_archelp_open grub_error grub_list_remove grub_free grub_archelp_dir grub_list_push grub_memcmp                        	    /    >    J    [    m    t                                     (    0                            J                b      
    
                
                  "                             (     ,     0      .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   +                    	   @       D	  X  
            %      2       _  7                 8               4                  4   	   @       
  @   
            >                                 N                                  S                                  \                                                       
         	              h                                  
  e                                                                                                                                                                                                      boot/grub/i386-efi/part_sunpc.mod                                                                   0000600 0001750 0001750 00000003130 13417732100 0015534 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      x      4     (   UWVS  j,ǡ       G$    PSh   j j j ju tW   1f}tW[^h    $f3U9u1ftWZYh   jgk0ftCft>01ۋPG    WH؉_7	ȉOtPuWuUt   F~W    e[^_]Uh    h    Uh    not a sun_pc partition table invalid checksum sunpc          .       LICENSE=GPLv3+ part_sunpc                                                                           :                                                               5              D              O              [              f              w                             grub_mod_init grub_mod_fini grub_partition_map_list grub_disk_read grub_errno grub_zalloc grub_error grub_list_remove grub_free grub_list_push           (     E   
  W     t     {                            '    ,  	  1    A    F               .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .modname                                                      4   O                    	   @            	            %      2         4                 8                                 4   	   @            	            >                                 N                                  S                                                    
   	         	                                                  \                                                                                                                                                                                                                                                                                                                                                                                                                                                          boot/grub/i386-efi/video_bochs.mod                                                                  0000600 0001750 0001750 00000013124 13417732100 0015646 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      L      4     (   U  	   Mf  f1]UWVSE=  uMEu>   wN1=   v   )]19t7  CCGEuME[^_]1[^_]U   WVSju    =   t1v}4uj   u  h  tŋEu       l  j     e[^_]Ujdj h  =     C  UWVS=   t%1ɾ    ȉf  fA
u     f0f  11ɾ    ȉ   A   uf1ɾ    ȉ  A   uf1ɾ    ȉ  A   uf1ɾ    ȉ      A   u۾       Ph   h  5`            e[^_]UWVS,} E    t8} t2}@  vVh@  h       }  vSh  h      E   EX  EtQjh-      EuHEf tGvtt	RRhL   uuPPh   jg uˍGE}EEEE=   Ev	PPh   5PPEPh   } u	PPh   h  EuPPh   jI  Ẽ=     d     `  '  1ɾ    ȉ숁   A   uf1ɾ    ȉ숁  A   uf1ɾ    ȉ숁  A   uf1ɾ    ȉ숁  숁  숁  A   uۺ     fff1Ʌ  uI       Ph   uh             "    ȉff툁  A
u땻     f  0f   ډfEf   fEf   ff   ffj UE     =     E,     P      T        Eԣ$  Eȣ(  tatAt<       tv   8     <     @     7     ,        8     <  
   @     D     H     FP     T     8     <     @     D     H     L      h  uЃ4  =   w`  QQRh    PRRj j 5`  h  uu Ph    jj e[^_]Ë           Ut9Hv                t@    ]Uh    width must be at most height must be at most width must be a multiple of %d only 32, 24, 16, 15 and 8-bpp are supported by bochs video 4-bpp isn't cupported Not enough video memory for this mode Couldn't find graphics card PCI BAR not set Bochs PCI Video Driver                 d   ^  {            $                                                                                               LICENSE=GPLv3+  video video_fb video_bochs                                                                             V  E                                                        	               4              G              b              {                                                                                                               5             A             Y             s                                                                                           3             Q             j                                                                                                        +             ?             `              grub_mod_init grub_mod_fini grub_video_fb_map_rgba grub_video_fb_fini grub_video_get_blit_format grub_video_fb_get_region grub_video_fb_unmap_color grub_video_fb_map_rgb grub_video_fb_scroll grub_video_fb_fill_rect grub_memmove grub_video_fb_blit_bitmap grub_video_fb_get_viewport grub_video_fb_swap_buffers grub_memset grub_video_adapter_list grub_video_fb_get_palette grub_video_fb_set_palette grub_video_fb_map_color grub_pci_make_address grub_video_fb_init grub_video_fb_get_area_status grub_video_fb_get_info_and_fini grub_video_fb_set_active_render_target grub_video_fb_set_area_status grub_video_fb_set_region grub_video_fb_delete_render_target grub_error grub_list_remove grub_pci_iterate grub_video_fbstd_colors grub_video_fb_get_active_render_target grub_video_fb_set_viewport grub_video_fb_get_info grub_video_fb_setup grub_video_fb_blit_render_target grub_video_fb_create_render_target       2                        )    ?    i    n    w    }                    9    ]    f    m                                    6    {                  %                #              7    [                                        <                                        +    5    ?    K    U    d    n    x                                                        
        %    *    5  *  >  &  X    ]    b    y                          $                          )  $     (     ,     0   (  4     8   !  <     @      D     H     L     P   
  T     X     \     `   +  d     h     l   ,  p   "  t     x   '   .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                       	   @           
            %      2                         8                                 4   	   @            
            >             t	                    N             	  x                 S              	                    \              	                                  	       
         	              p                                   e                                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/terminal.mod                                                                     0000600 0001750 0001750 00000011034 13417732100 0015173 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      d      4     (  
 UWVS,]E܋EUuME؋E   PE8tPPwh    ?h   4$E؋0t;PPvh    6{? u+6Z  PPsvuڋt>E؋0׃W|*usHPsvu뼃h     EQQh   0u}t6E   ERRh   0tE    EMԍ4   E   H  RRh.   6  W:   ?t;QQw6uwtP        Pj
hZ   6        jЃE   E؋8_  PPw6uEԃE9E}8E    PPh.   6uPPwh8   t?PPEh   0      ;]   E؋0tv}PPv4t0PPh.   4uPPvh8   t6뵋FtVЃ  VY_VuCr1  E1RRh   0      ;]}ыE0   }PPv4t0PPh.   4uPPvh8   t6뱃> uE;0   VFt	VЃPPVuCg}PPv4q  PPh.   4t6uC;]}"E؋0QQvh8   u-  E8,WGt	WЃRRWu71;]}PPEw4u+;]uу? uE;8uEe   E   e[^_]PPEh.   4uQQwh8   tC뇋E0t]WWsv{? t9W|*u&sHPsvX6PPsh    =E8tJPPw6PPh.   6uPPwh8   e?벃} t2EMԋ
!EE@   E   e[^_]PPwh8   cRUUЃ|*MwHPw6(<FtVЃt    VXZVute[^_]U    h   Uh   E5    h    .U    h   Uh   E5    h    Uj h   h  h  h>  j hM  h  h  hp         U5   X5   %s  
 --append --remove no terminal specified ofconsole console terminal `%s' isn't found serial_usb can't remove the last terminal Available output terminals: Active output terminals: Available input terminals: Active input terminals: List or select an input terminal. [--append|--remove] [TERMINAL1] [TERMINAL2] ... terminal_input List or select an output terminal. terminal_output    LICENSE=GPLv3+  terminal                                                                   N        O  "                                                             )              4           M              Z            t                                                                                                                             "             .             A             L             ]             l              grub_mod_init grub_mod_fini grub_strlen grub_puts_ grub_term_input_autoload grub_dl_load grub_term_output_autoload grub_dl_ref grub_errno grub_term_outputs_disabled grub_register_command_prio grub_term_inputs grub_printf grub_unregister_command grub_term_outputs grub_term_inputs_disabled grub_strcmp grub_term_poll_usb grub_error grub_list_remove grub_list_push grub_memcmp 0   
  F     K     W     \     d   
  z                  	     	                         3    :    ]    i    p                                    >    E    V    [    p    w                                (    /    a    o    w                                &    +    G    e                                    !  	  6  	  F    _    d                                        )  	  E  	  T    }                                                    
                    (    -    2    7    <    A    I    W    \    c    h     .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .modname                                                      4   q                    	   @                       %      2                         4             %	                     :             (	                    J             8	                    O              8	  	                                D	    	   	         	                x                                 X                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/i386-efi/parttool.mod                                                                     0000600 0001750 0001750 00000011530 13417732100 0015225 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      x      4     (   UWVS1ۃ=   E   EVVw @@$p   w      PZY6)h    Ft)u6    h   U    U$$h   ~Kh   ve   ?+uPPE @@$ph   e1[^_]UWVS,E]Eh    E6      3>(uBV|)u/3VD @$34$ED)3E    }   E u(uEH   E   e[^_]x uuES   Ѓhc      RRPhj      P   WE   UPU܅tB!]w_PPj:RtNU܍H  <	uA< t!]w/PPEM܋ @@$pRM܅uQuNWV}           tWWh   4uEe[^_]F;u|ՋE؃PE   EԋE܋Mԍ<    < tE܋E9Eu1`     E} l  EQQpE @@$p   EptVPPE46   ~t~   fE܃6UUЃ<+u> tiqE܃6UUЃ<-tڋE܃6UUЃ< u빋E܃6UUЃ<=t6E E@P}܃EЋEԃ< thG;}u}ЋERRWuP<$uXu  ;E   E   Ee[^_]EptPP46P  ~t~@     6UŨ<+uyEԋM   +AMi   F      M+AMi6UȉMM̃UȍDB   6UŨ<-g6UŨ< G6UŨ<=uE!M+AMi6UȉMM̃UȀ<-Be[^_]UWVSu=    u5   já   XuC   PC1   kx< tkCWCWVPE   CCe[^_]UWV1S}   tK9{u>sXst   SEEމ뱃=    u   Ee[^_]e[^_]Uj Eh    h   h  h           U5    %s +/- =VAL   Sorry, no parttool is available for %s
 too few arguments not a disk not a partition prefix %s/i386-efi/parttool.lst help unknown argument `%s' PARTITION COMMANDS parttool    Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands.    LICENSE=GPLv2+  normal parttool                                                                              3                                                                       )              4              A              N              ]              j              {                                                       Z                                                                            $             0             <             H             X             g             t                                                                                                         grub_mod_init grub_mod_fini grub_strlen grub_puts_ grub_strncmp grub_dl_load grub_xasprintf grub_memmove grub_device_open grub_parttool_register grub_strdup grub_xputs grub_dl_ref grub_parttool_unregister grub_errno grub_register_command_prio grub_printf grub_unregister_command grub_zalloc grub_strcmp grub_strchr grub_malloc grub_file_close grub_file_open grub_isspace grub_device_close grub_file_getline grub_error grub_free grub_dl_unref grub_printf_ grub_gettext grub_env_get        0     V   
  a     f     |             '                                  &  .    3    =    R  
  g  
  w      
            !        #    !             (          3    I  "  h                   $        $      &    .    Y              
        
  ?  
  ^  
    
        $    $    !      )  #  >  
  L    |  
    
    
  1  
  V  
    
                                  1    ?    H    j    ~  $    $        $            %                                  "     .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4   +                    	   @            	            %      2       _                   4             	  a                  :             	                    J             	                    O              	                    X              	  	                                	    
   
         	              0                                   a                                                                                                                                                                                          boot/grub/i386-efi/terminfo.mod                                                                     0000600 0001750 0001750 00000030010 13417732100 0015176 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      -      4     (   UPPUWVSӃxHtPCPRVW,e[^_]USÃpC    XsC    ZsC    YsC    XsC    XsC    XsC    ]UE]@H@UEVuSXH]PPVh    uoh    C$   C$   C$   C$#   C$'   C$.   C(  PPVh5   ush5   C$   C$   C$   C$#   C$'   C$.   C$A   uPPVhT   unhT   C$X   C$h   C$l   C$p   C    C    C$t   C &  QQVh      h   C$   C$   C$   C$#   CXZVh   u>h'   C$.   C(QQVh   dC    C    hA   "RRVh   uHh   C    C    C    C    C    CC    C         PVh   je[^]UWVS<E} @   h       $   E   E    $   E    $  E   E    $  E    $  E    $  E   t6SHWWB*PB(PC<8trsh.  CH 13  xӃx t   x t^@}Vj WPEơ       EȀ8xtQQh?     R@j WPEǡ       u	1E    5      PPEv0u%F<	؅F<tF} t@FHMfx&fH$0PPEhk  0u0QQvhu  u1}t/ERRpVFH0kPE0h}  je[^_]US]uSu   SH
   ]US   R   t!;Eu@H#@H 1XHPPh  j&]UE]@H@(UWVS(u}^HVVUf;EsQRh  j&YMUgMU9w֋CtRQPQf;{*uC(H9uPPjVS,Ef{*fC(e[^_]US]CHpXZj S]UWVS,]UKHA tD    }ȹ   vu[        ɃVttPvu&qqe[^_]ee[^_]USP]} CHtpp؋])UWVSu]{H% 
t)   t.u1G(ft~HfG(wG*EH9EscfG*]fG(  USSW(N9}1G*fG(  EH9EsfG*PPjSW,ZYj
SW,fFfG(]% EG,e[^_]UE]@H@$UWVSlEXStJ4  CuEЃyC      C   t-t   Pvt`      }       }0   tEUFƉ׃EuЃuD) wncvg+EU wWcwREuЃt   SCOuwƉ׃EuЃuA) v,CR  PS3PRCPS1  cw묋S1CL9tBu[uBtL9uD@t.   9u   C   mC41C҃9"1   0IEU   OtF[+Ɖ׃EuЃ   ) cƉ׃EuЃ   ) c+EU cEuЃtpEUEuЃ&  +EU Gc>ʋSPC' S1CjC4FCEUEuЃu+EU c΋S0C	0k
ƃEUEuЃu+EU [cR΋SCq>DS0PC	wsk
t0EUEuЃu+EU c΋SC~h   3~e[^_]UE@@    1]Uu1Uh,  h  h  j h  h%       U5    Ë   U      B   ]á   U1H<       t   ]á   U~H<       u   u   ]UWVS҉UM    2  J1%E    E E E E u&}    }1E    %O_   } uԀXtF'-td tW#ul@#   .t*:uY@Mot{wE
stxu9Am@} Y.tP1Ed@ 7} tG-@AEJ{Љ	w/k
t>Ё'  ~E@A!u1EE1Ҁ} tu9 }}[^_]   ;   v"UP5         USRu      P      X[]UWVS   Y|   W   VSP      ؉$É   e[^_]UWVSl} ;  u                     [uEǉE   9wQ1j$1j EPE:}RRDP5         u11h  8%t8+U;U|D     @MX   [-  &'   !   &K*w   ><   /+O   P   Aotb6dc}V^Z   ltIm   g7xt%pt6st!|tg~tg{tMZW~D	   CPHȃ0	9}׉ȉC@@QЀ	vC	~	   =    0  U19߉}9}| JtLL@څ       t]FKtD<%uL5   CM    `Ê !<]v;   C+E;E|  $  %   ы}P1ɉ¸  cUUPU9~ЍPЉUU   W   VRP5      $Ɖ5   ,CC1Tt(          @   D   s{F<wpF<CsPwpTwPi5XC$GC1JЀ	wk
CD(!)1Ʌt11҅t-1'1҅t   u1҅:!'{	oh1\U9-LE9929
&} uEă} ES
ӄ%u)RC?u@;uHeu;C1Ҋ%uK@?uB
;utJ8ωe          	1  e[^_]                            PQwxtuqrpMABHF  ;  <  =  >  ?  @  A  B  C  D  W  X  G  O      G      S      I  Q  G  O                                  @  A  B  C  D      W  X  4   S  A   H  B   P  C   M  D   K  F   O  H   G  K   O  P   S  ?   I  /   Q  @   R  .  a       4          V  u       [          ~  v                   g                                              )  j                                                      <                            I  $                5                      J  5  f    m          Q  $    5        o          5        }      vt100 [%i%p1%d;%p2%dH [H[J [7m [m [?25h [?25l vt100-color [3%p1%dm[4%p2%dm arc %i%p1%d;%p2%dH 2J 7m 0m 3%p1%dm4%p2%dm ieee1275 [2J[m ieee1275-nocursor dumb unknown terminfo type `%s' ASCII CP-437 UTF-8 visually-ordered UTF-8 Glyph descriptors Unknown encoding Current terminfo types: %s: %s	%s	%dx%d
 incorrect terminal dimensions specification ofconsole console terminal %s isn't found or it's not handled by terminfo terminal not found invalid point (%u,%u) Set terminfo type of TERM  to TYPE.
 [[-a|-u|-v] [-g WxH] TERM [TYPE]] terminfo ascii Terminal is ASCII-only [default]. utf8 Terminal is logical-ordered UTF-8. visual-utf8 Terminal is visually-ordered UTF-8. geometry Terminal has specified geometry. WIDTHxHEIGHT.  %d     LICENSE=GPLv3+  extcmd terminfo                                                                                      	      0                                          
                             )   P       >              I          _           y     0                                      0                                                        4     +             E        Z             q           r  [                                               J       r                             &  B       :             F             W             b             l                                        grub_mod_init grub_mod_fini grub_strlen grub_terminfo_gotoxy grub_puts_ grub_terminfo_putchar grub_terminfo_get_current grub_terminfo_output_register grub_realloc grub_memmove grub_terminfo_cls grub_strdup grub_terminfo_setcolorstate grub_terminfo_output_init grub_snprintf grub_terminfo_setcursor grub_term_highlight_color grub_terminfo_getkey grub_unregister_extcmd grub_terminfo_getwh grub_terminfo_tparm grub_errno grub_memset grub_printf grub_terminfo_output_unregister grub_terminfo_input_init grub_term_normal_color grub_terminfo_set_current grub_terminfo_getxy grub_strcmp grub_get_time_ms grub_error grub_free grub_register_extcmd grub_gettext grub_strtoul  H   )  X   )  h   )  x   )     )     )     )          &                
            #    (    2    7    A    F    P    U    e    j  &  y    ~                                                              &                       #    -    2    <    A    Y    ^    n    s  &                                                &                  
      &  2    ?    D  &  S    X              (        +            +        +             +         +  '    0  +  7    ?    E    s    x       ,            ,          )  &  _    f  &  w    |  &    $        (    $                  /    6  (  |      (              :    Q    Y  #          L	    ^	    i	  '  v	  '  	  '  	  '  	  '   
  '  +
    
    
    
  '  
  '    '     '  @  '  ]  '    '    '    '  4  '    '    '    '    '  N                              *                                          '    .    =    C    L    U                                    
    7    >    F    L    Q    [    f                                                3                        %    [    d                                                    A    d                        ,    8    D    P    \    h    t                                                                                                                                              $    (    ,    0    4    8    <    @    D    H    L    P    T    X    \    `    d    h    l    p    t    x    |                                                                                                                                                                        .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                       	   @       "  `              )                                %   	   @       )  8              1      2                          D                                 @   	   @       4-                 J                                 Z                                 _                                   h              '  	                                0                	                                                 <-  q                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          boot/grub/i386-efi/password.mod                                                                     0000600 0001750 0001750 00000003634 13417732100 0015231 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   US]h   uutE    ]E   S1]UVuSh   á    t]V=  ~  PVSSh    utS5   1e[^]U}EtE   E   ]PU E]HUj Eh%   h`   h   hn           U5    access denied two arguments expected Set user password (plaintext). Unrecommended and insecure. USER PASSWORD password  LICENSE=GPLv3+  crypto normal password                                                                 3        6                                                                             )              6              B              Y              d   K        }                                                                                                   grub_mod_init grub_mod_fini grub_strlen grub_memmove grub_dl_ref grub_auth_authenticate grub_errno grub_normal_set_password grub_register_command_prio grub_unregister_command grub_crypto_memcmp grub_zalloc grub_error grub_free grub_auth_register_authentication        $     4     =     \     f     s   
                                                          #    (    0    >    C     .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4   L                    	   @            	            %      2         w                 4                                  :                                 J                                 O                                  X                	                                   p  
   
         	                                               X  a                                                                                                                      boot/grub/i386-efi/test.mod                                                                         0000600 0001750 0001750 00000012434 13417732100 0014344 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      d      4     (  
 U1Ƀz t: tɉJ    ]UWVSӃ(B    P$Eu*  PEuu<$  PPj)Vt)p$V|/uVD > uPPj/VC uh    s E@C VEC ) > uNC   CVjj PCCE܋@$t3QQSRWЃuK        SEh5
  uWPWXuZue[^_]U8-uQ@j j PRj j PUWVSӃ\}ĉE1M	   E   ;Ek  P;U  uQQh   tu}RR4tSPuPh   ttPuPh   tu/MWW4tUhIVVuh
   tu}QQ4t   uRRh   tuMWW4t{MVVh   tu}QQ4tA}RRh   tuMWW4t
VVuh   tu"}ƋD99  QQMh   tu"}ƋD9  }RRh   tu}tƋDg9  uWWh    tu"}9ƋD,9  MVVh$   tu}ƋD9D  }QQh(   tu"}ƋD9	  uRRh,   tuE|1M(PMPh1   tt   t@u4:t~}H40	vpEWWh,   tu2UQj j QUj j ǋtV90MRj j RMj j ǋtV9U  }Pjh6   tuGMUċuԍ}   MUċu؋}ЋDMDx u&1,uPjh:   tt   MPjh6   tUUu$t} t@1Et8Et2;u%u}    u1EtEt;uUP;U  }QQh>   4uFuUċD1} tEԃU}    \  1} N  MRRhA   4u}UċDUċE멋uWWhD   4u&MUċDO1} pEԃb}VVhG   4uo       u              tt@4F81UtV        QQMhJ   4u}D +uRRhM   4u"MD8 U*WW}hP   4ubVVuhR   4uڋMEUQQMhT   4u1} Ef}RRhV   4tKPuPhY   4u} u	1} EE   UċM :e[^_]UVS]uE    ~RRh\   t Uى1҅uPPh^   je[^]UWVSE] tTC ut*t#~w zw 9uE@̍Qw  Pw 9PPs u1tu{   C   e[^_]Uj hd   h|   h	  h   H   j hd   h   h	  h       H       U5   X5    / = == != < <= > >= -eq -ge -gt -le -lt -ne -pgt -plt -nt -ot -d -e -f -s -n -z ) ( ! -a -o ] false Evaluate an expression. EXPRESSION ] [ EXPRESSION test  LICENSE=GPLv3+  test                                                                 
  \        2  "                                                             )              6              G              S              m              x                                                                                                                                           (             3             =             I              grub_mod_init grub_mod_fini grub_strlen grub_strrchr grub_device_open grub_strdup grub_file_get_device_name grub_errno grub_memset grub_register_command_prio grub_unregister_command grub_strcmp grub_strchr grub_file_close grub_file_open grub_device_close grub_fs_probe grub_file_filters_enabled grub_error grub_free grub_memcmp grub_strtoul   @     K     e     z                  	     	     
                 '    Z    i    |                    	        /    B    K    ^    g                                    !    >    R    [    x                            C    L                            )    2    v                        
        n    w            $    ,                                     '    6    d    m                            	    	    ?	    G	    h	    p	    	    	    	    	    
    #
    
    
    
    
    
    
        	                    ,    :    ?    F    K     .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .modname                                                      4   T                    	   @       d                %      2                          4             #                     :             $                    J             4                    O              4                                  <    	   	         	                V                                 X                                                                                                                                                                                                                                                      boot/grub/i386-efi/password_pbkdf2.mod                                                              0000600 0001750 0001750 00000005544 13417732100 0016463 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      	      4     (   PU	w0#PwWPw7]UWVS8]EusEu	E"   SSKCU؋VMԉUEMԋUQWRuuPVh    0tWue[^_]PssWtE    E   e[^_]u1e[^_]UWVS,}t	WWh   !EVjh%   ptSSh9   j  E@jEԃEá      Qj EPuC      E8.uR@Rj.PEu	SP  +Eu~Wu݉+ECWCXsuPS}M̉UUЉEԍBEBUЃUu MMuUA	ЈAU9r   sCu3$    VEЉ}UEUu<B	ȈB};}sKUƍGEG}ts^3$ZYPESh8   0tS5   1e[^_]Uj EhQ   hn   h  h           U5    access denied two arguments expected grub.pbkdf2.sha512. invalid PBKDF2 password Set user password (PBKDF2).  USER PBKDF2_PASSWORD password_pbkdf2   LICENSE=GPLv3+  crypto gcry_sha512 pbkdf2 normal password_pbkdf2                                                                 j  3                                                                                     )              <              H              _              j                                                                                                                                           /             ;              grub_mod_init grub_mod_fini grub_strlen grub_crypto_pbkdf2 grub_dl_ref grub_auth_authenticate grub_errno grub_crypto_gcry_error grub_register_command_prio grub_unregister_command grub_crypto_memcmp grub_strchr grub_malloc grub_error grub_free grub_auth_register_authentication _gcry_digest_spec_sha512 grub_memcmp grub_strtoul Q        
                                              +    3    A    H    i    s                  
    
       w                  
  
            +    2    D    T    Y    v    {                                 .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                       	   @         h  	            %      2                          4             z                     :             |                    J                                 O                !                  X                                                    
   
         	              p  H                                	  a                                                                                                                                                                              boot/grub/i386-efi/video_cirrus.mod                                                                 0000600 0001750 0001750 00000013540 13417732100 0016061 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      0      4     (   U  EՋE]U  M  VS  ŲΉ	ֺ  	ưՉòူ	Ո1[^]UWVSE=<  uMEu>   wN1=   v   )]19t7  CCGEuME[^_]1[^_]U   WVSju    =   t1y} uj   u    tŋE         j        ߍue[^_]Ujhj h4  =        U  VSP  h     h4   5  1Ɉȉ   Au0ɾ    ȉ+   Au0ɾ    ȉ"   A	u0ɾ    ȉ4  4  4  A   uۺ  3           e[^]UWVS,} E    t} uEX  E   EtPjh       }   vPh   h&      }   vPh   hF      EuEf t tFvt	PPhg   lFE}EE=  E~  }VPh   ?EE  PPEPh  } u	WWh   =  uVVh   j  =     =          1ɻ  Ⱥ  숁   Au0ɻ  Ⱥ  숁+   Au0ɻ  Ⱥ  숁"   A	u0ɻ  Ⱥ  숁4  숁4  숁4  A   uغ  3   İSh   Wh4          E     MЍX1EH111؉@	к  1	`11ò1    H1Ȳòj Fw   1ɳ  ňE<     5@  L     4  Ep      t      8  EԣD  EУH  tj.tM   X     \  
   `     Xti    p     t     J<     L     pX     \     `     d     h     2X     \     `     d     h     l      h4  T        w  QQPh   RRRj j 5  h4  uu Ph    jj e[^_]Ë           Ut9Hv                t@    ]Uh                       screen width must be a multiple of %d screen width must be at most %d screen height must be at most %d only 32, 24, 16, 15 and 8-bit bpp are supported by cirrus video screen width must be at most %d at bitdepth %d Couldn't find graphics card PCI BAR not set Cirrus CLGD 5446 PCI Video Driver                d                                                                                                                LICENSE=GPLv3+  video video_fb video_cirrus                                                                                            E        (                                  	              
               4              G              b              {                                                                                                               5             A             Y             s                                                                                           3             Q             j                                                                                                        +             ?             `              grub_mod_init grub_mod_fini grub_video_fb_map_rgba grub_video_fb_fini grub_video_get_blit_format grub_video_fb_get_region grub_video_fb_unmap_color grub_video_fb_map_rgb grub_video_fb_scroll grub_video_fb_fill_rect grub_memmove grub_video_fb_blit_bitmap grub_video_fb_get_viewport grub_video_fb_swap_buffers grub_memset grub_video_adapter_list grub_video_fb_get_palette grub_video_fb_set_palette grub_video_fb_map_color grub_pci_make_address grub_video_fb_init grub_video_fb_get_area_status grub_video_fb_get_info_and_fini grub_video_fb_set_active_render_target grub_video_fb_set_area_status grub_video_fb_set_region grub_video_fb_delete_render_target grub_error grub_list_remove grub_pci_iterate grub_video_fbstd_colors grub_video_fb_get_active_render_target grub_video_fb_set_viewport grub_video_fb_get_info grub_video_fb_setup grub_video_fb_blit_render_target grub_video_fb_create_render_target  $              .    l                                    %    *    :    Z    z                                ,    E                      &                $              ;    Y    w                                    "    M    W    ]    f    o    y                                                        "    ,    8    B    L    V    `    j    v    {                              +    '                              "    /    4  %                          *  $     (     ,     0   )  4     8   "  <     @   !  D     H     L     P     T     X     \     `   ,  d     h     l   -  p   #  t      x   (   .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   =                    	   @                       %             t  &                  -      2         $                @             	                    <   	   @                        F             H
                    V             X
                   [              X
                    d              g
                                  t
                	              T                                   m                                                                                                                                                                                  boot/grub/i386-efi/pata.mod                                                                         0000600 0001750 0001750 00000011344 13417732100 0014311 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UWVS   jfGPyE9|1RRPVh    h   jYh!   h-   jCj1e[^_]U1SR   } u*tPuCPjUu	[1   ]USÃ @fKQj2fCPZ$2   fSЉ$h:   hH   h'  h!   EE <ZtPPhL   j1]U}VUSu   tE`   =C9t[uRhr   h   h  h!    uE   E   e[^]u^(F    F    ^$e[^]UWVSÃQRPh   h   h<  h!   ju    @      pfx@   @    tJR1hte[^_]U   WVS,ju  }" E  E   E   E    } uE}؍D r+E<                  1   Eu      S     SEԉu   Et]tY]ԃtQj   u  ƃEffEf   1   1ۃSPuuuh   h   h  h!   0tc    1҉        E=     t            ٺ   E=     t        EE9Eg     E=  uE   E    8e1[^_]UWVSE]}p(CttE   E   A  RCPPCPh  h   h   h!    sCPCPCPhJ  h   h   h!   CVfN%   	QQ xf~   "ҁ'  A  ӊDAuDAuCW'  s  fFPEPh~  h   h   h!    { uEE    	Ed'    fFfE܍PEtyurC1ɋ{Em;MtfOUfAMt
fVfDEEE;Cs?}u9'  :  {    f~W<tE  g  {       WW	Wh  h   h   h!    tC+E9w   t9tE        C+E}9vE{ {t#E1}E;MfOfVfAE1}E;MfVffOA'  u7fFP	tE  E   tE'  Cn   t    ^fVDAuPCPPCPh  h   h  h!    1C	tE  E   e[^_]e[^_]U           t        PPj hd  E    Uh    ptimeout: %dms, status=0x%x
 pata disk/pata.c PATA timeout sectors=0x%x
 ata no device connected not a PATA device opening PATA dev `ata%d'
 no such PATA device detecting device %d,%d (0x%x)
 PCI dev (%d,%d,%d) compat=%d rega=0x%x
 ATAPI non-12 byte commands not supported pata_pass_through: cmd=0x%x, features=0x%x, sectors=0x%x
 lba_high=0x%x, lba_mid=0x%x, lba_low=0x%x, size=%u
 status=0x%x
 ATAPI protocol error DRQ count=%u
 invalid ATAPI transfer count ATA write error status=0x%x, error=0x%x, sectors=0x%x
 PATA passthrough failed   w   >            LICENSE=GPLv3+  ata pata                                                                                               C        K                                  	              
               -              K              V              n                                                                                                                 grub_mod_init grub_mod_fini grub_millisleep grub_disk_firmware_is_tainted grub_errno grub_disk_firmware_fini grub_ata_dev_register grub_pci_make_address grub_print_error grub_malloc grub_real_dprintf grub_error grub_pci_iterate grub_ata_dev_unregister         4     9     @     E     M     T     d                                     '    .    O    X    u    z                                                #    V                        3    l                                            (    0    6    O                                                         }                        s                                        %    2    7    A    G    R    W                     .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   `                    	   @       T                %                                 -      2                         @             
                    <   	   @       ,                 F             
                    V             
                    [              
                    d              
                                  
  p              	              T                                  D  m                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/video_colors.mod                                                                 0000600 0001750 0001750 00000013100 13417732100 0016043 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      8      4     (   U)щSYw/IuE
DMEPjj EPE 1]US1Q    t(RRuPuE      C͋]UWVS,]u<#u:s1"PtC؃߃A<   GD;ȃ0	w0	   Qj j S^_j,SEtwpPj j VEXZj,VtUVj j XS_EXj,Su	E   Q@j j PE   RREPSutPSh    j   Gwn1ҹ   X      ED      E0Em      E=     uUE    dEt	b1ҹ         E      E} E      ze[^_]!   +   8    =   H   N   T   [      a   p     u   +   **   ޸   _       i   P   d      <                      d     k    ,  Uk/;   F  2Q    Y  zd  q  H=  /OO  /OO             iii  iii    ""    ""       #   (  ڥ 2  7    =  /I  N  W  i_  \\i  K p  v  |      |                     z   !  .  w=  wL  [  g    l  22v  |         fͪ      U  p  <q  {h     H    p  )  3  <  ޭH    M  U   [  k#e   l  E v  p}        p    ڹ  ͅ?    ݠ             Ai  E  r  `  .W&  /  R-6  =  E  jZO  pY  pc  h   t  F~  Ҵ     ؿ  cG  @    ޳         2        invalid color specification `%s' aliceblue antiquewhite aqua aquamarine azure beige bisque black blanchedalmond blue blueviolet brown burlywood cadetblue chartreuse chocolate coral cornflowerblue cornsilk crimson cyan darkblue darkcyan darkgoldenrod darkgray darkgreen darkgrey darkkhaki darkmagenta darkolivegreen darkorange darkorchid darkred darksalmon darkseagreen darkslateblue darkslategray darkslategrey darkturquoise darkviolet deeppink deepskyblue dimgray dimgrey dodgerblue firebrick floralwhite forestgreen fuchsia gainsboro ghostwhite gold goldenrod gray green greenyellow grey honeydew hotpink indianred indigo ivory khaki lavender lavenderblush lawngreen lemonchiffon lightblue lightcoral lightcyan lightgoldenrodyellow lightgray lightgreen lightgrey lightpink lightsalmon lightseagreen lightskyblue lightslategray lightslategrey lightsteelblue lightyellow lime limegreen linen magenta maroon mediumaquamarine mediumblue mediumorchid mediumpurple mediumseagreen mediumslateblue mediumspringgreen mediumturquoise mediumvioletred midnightblue mintcream mistyrose moccasin navajowhite navy oldlace olive olivedrab orange orangered orchid palegoldenrod palegreen paleturquoise palevioletred papayawhip peachpuff peru pink plum powderblue purple red rosybrown royalblue saddlebrown salmon sandybrown seagreen seashell sienna silver skyblue slateblue slategray slategrey snow springgreen steelblue tan teal thistle tomato turquoise violet wheat white whitesmoke yellow yellowgreen    LICENSE=GPLv3+ video_colors                                                                                                                  	                         #              /              ;              H              S   G   ?     n               grub_errno grub_video_parse_color grub_strcmp grub_strchr grub_isspace grub_error grub_video_get_named_color grub_strtoul  7     Q     `   
  q                            1    >    Z    q                                               (     0     8     @     H     P     X     `     h     p     x                                                                                                           (    0    8    @    H    P    X    `    h    p    x                                                                                          (    0    8    @    H    P    X    `    h    p    x                                                                                          (    0    8    @    H    P    X    `    h    p    x                                                                                          (    0    8    @    H    P    X    `    h    p    x                 .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .modname                                                      4   t                    	   @            
            )                                %   	   @       <    
            1      2       H                  @                                  F                                 V             +                     [              +                                  8                 	              8  {                                  d                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  boot/grub/i386-efi/pbkdf2.mod                                                                       0000600 0001750 0001750 00000002660 13417732100 0014535 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (  
 UWVS   E]$@@d
     }     EPXǸ"     dC1ƍ@T)PuuP   WE \FLhPdEj P؃8%   (ǅ`    ` u0M8\(DDPPVXW
QQVdVuuu tWddv;dt
0T@``;Eg;TduPRCPEP\d\;LW1e[^_] LICENSE=GPLv2+ crypto pbkdf2                                                                                                                                 !              -              9              C               grub_crypto_pbkdf2 grub_memmove grub_memset grub_malloc grub_free grub_crypto_hmac_buffer  N   
          	  H    ^             .symtab .strtab .shstrtab .rel.text .data .module_license .bss .moddeps .modname                                                        4                       	   @       l  8               %                                  +                                  ;             /                     @              /                    I              6                                  @     	            	                [                                  R                                                                                                  boot/grub/i386-efi/test_blockarg.mod                                                                0000600 0001750 0001750 00000002520 13417732100 0016203 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      p      4     (   USP]UE{ uE    ]E   QQth   Xs1]Uj h   h9   j@h    h?        U5    no block parameter %s
 Print and execute block argument. BLOCK test_blockarg   LICENSE=GPLv3+  extcmd normal test_blockarg                                                              N   -        {                                                                              1              H              T              _               grub_mod_init grub_mod_fini grub_script_execute grub_unregister_extcmd grub_printf grub_error grub_register_extcmd      '     2     7     @   
  W     \     c     h     m     u                .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                        	   @         h   	            %      2          M                 4                                  :                                 J             $                    O              $                    X              2                                  @     
   
         	              0  t                                  a                                                                                                                                                                                                  boot/grub/i386-efi/pbkdf2_test.mod                                                                  0000600 0001750 0001750 00000004274 13417732100 0015577 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UWVS1ۃ,uȋH   WVD   @   <   8   4   h    Ph    h   jZh    h   PWL   VZYh+   h;   j\h    h   P    `e[^_]Uh    hr   Uhr      pbkdf2_test K yeHI&!e) pass word sa lt    ~                     ~                     ~                              $            !   	   +              gcry error %d err == 0 tests/pbkdf2_test.c PBKDF2 mismatch grub_memcmp (DK, vectors[i].DK, vectors[i].dkLen) == 0 pbkdf2_test password salt `q$`/7 lM-o*AމW passwordPASSWORDpassword saltSALTsaltSALTsaltSALTsaltSALTsalt =.O6bJ)Lp8 VjUH	74%  LICENSE=GPLv3+ functional_test pbkdf2 gcry_sha1 pbkdf2_test                                                                                                                                        	              
               0              G              Z              o              {               grub_mod_init grub_mod_fini grub_crypto_pbkdf2 _gcry_digest_spec_sha1 grub_test_register grub_test_unregister grub_memcmp grub_test_assert_helper                 $     *     0     5     :     E     M     W     \     b     l     r     y     ~                                             4     <     L     P     X     h     l     t                                         .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                        	   @                        )                                 %   	   @         x               1      2                         @                                  F                                 V                                  [                !                  d              ,                                  8                	              H                                    m                                                                                                                                                                                                                                                                                                                                                      boot/grub/i386-efi/video_fb.mod                                                                     0000600 0001750 0001750 00000053074 13417732100 0015147 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      4T      4     (   USKS[]PUWVS    xLXXPTp`}xP]X\҉upd}xh]}tQ} tKtGtC9sˋMU9v֋M}9s}}M}};MvM9s9r(@p    @t    @x    @|    ǀ       D}))9}XpPtpxH|vU)   
ǀ       ]9]vU)ډ   
ǀ       1[^_]USP          9~Ћ$   9}94   )KSR   P,      Q      ,          $   @S          (   (   ,   0   t(   (   ,   ]Ë   9    Uu9   ~   9   }   ]USP      9.   )ЃKCP      PQ   ]@          1U5   1                             0       U54   X5   1                             0       4       UjL5    u1UEVS]kM    9t;   s5   @44[1^]UWVS]u;5   wk    UKPP    P5   5      u    ;   s<C   <9u1e[^_]UWVSQ    MU}09v	E    1ɋX9ډ]v11ҋ]9v)Ήu4;uv])Ӊ߉PPUxl HLxXPTtZ1[^_]UVMS]UEt5    vL3t    [Pt    IT
t    RX[1^]UWVSQ    MU}09v	E    1ɋX9ډ]v11ҋ]9v)Ήu]49v)Ӊ߉P`UxhH\Pd1Z[^_]UVMS]UEt5    v\3t    [`t    Id
t    Rh[1^]U    }u	@l   @l    1]UEt    zl ҉1]UWVSE}    MEEEBtz   1   1E    EÉEEE;utHQ+]+UA҉EE)Eڋ]t9}	҉uu
F볋E|t1:JHuq]:ZIui:BJ\   +J$J(   +J4J8+J<+Z,J@	}J0		[^_]U1U;   s-Ћ    Bu   PRPR PUWVSE    MuEEEBt2 t      EɉMEEE[^[^_]?t$1:JHux]:ZIup]:ZJuh:BK[   +J$J(E+J,J0	}+J4+Z<J8J@		ZY[^_]UWVSRE}u Ptq    @ t"   uE   E  E  J     wދ       }   T   }T   D<tAtPH}PI}PJ@KPD}PE}PF@G}   H(   H$]ىI!M   +H$eI	M]H0H,N!   )ΉuI	ˈH8H4N!   )ΉuI	ˈ]   y< t!H@H<ЉH!ø   )ȉJ	ӋEX[^_]U    E   uuuuuEEP1UWVS,    ]Euyl t Qpyx+   +   UԋQtUЋQ|QLyPUԋQX}ЋyT   t~9}zMMxp9}lxfy]̉]1ۅy1M9v)߉}09v)֋}Љǉm    ]ԉE   EPPVuEWSuP e1[^_]UWVS<u]E} VLu؉U܋    zl t&Jp+   +   MċJtMJxMȋJ|MJLMċJPMJTMȋJXMԋMȅe  } [  S  }$ I  9A  7  ;E.  M$#  M  vu  M9M   M   M9M   MM$   } y+]E    } yuu$E    )y)]1ۅyE$)E14;;uv})ߋM$;Mvu)Ɖu$M;Mv}+}M$M;Mv	u+uu$;}v}Ћu$;uvűMU   MԉEMuu]čEVWQSuPEP0e1[^_]UWVS<u]E}    u؉U܋    zl t&Jp+   +   MċJtMJxMȋJ|MJLMċJPMJTMȋJXMԋMȅe  } [  S  }$ I  9A  7  ;E.  M$#  M  vu  M9M   M   M9M   MM$   } y+]E    } yuu$E    )y)]1ۅyE$)E14;;uv})ߋM$;Mvu)Ɖu$M;Mv}+}M$M;Mv	u+uu$;}v}Ћu$;uvűMU   MԉEMuu]čEVWQSuPEP0e1[^_]UWVS<EE      U}XTpX@P]̋]1)ӋU1׉})Uԉ&    } @Ly
+MMEE} EС    yxP+EE@P}EǋEU1)¡    ;PTM  MU1);PX7  +uԋM̋   uԋpE@)ىMMĉUUȉE̍E)u  UЉEq   U	   uu} yME    !Mt/} t'EM9M  1;U}BEԍ]UL}MċUËEԃLE}u]̉!kE    M9M  1;U}kB8;}E	  UЉE[   U	   uu} 46uyM!1Mt/} t'uA;Mp  1;U}f4Sf4PBEԍ]UЍL}uċUËEԃLEű}E    މủփ!k}9}   1;U}kBf8f;}Eσ} xEtP} uJUЉE7E    M9M   19}	BM̉!EыEԍ]UЍL}UȋMËEKLEE    UHM9M},1҉9}	JUȋ}E!̃} ~    upTj +t6    MBX9sۉ]MEQrTPj u } ~    pXuj j -t6    MBT9sۉ]rXUERj Pu e1[^_]UWVSuMU}ttuE    E&   e[^_]h   UMMUá    D  "ǃ      CL    CP    KTSXC\    C`    KdShCl    Cp    Ct    KxS|ǃ       ǃ       Su%C"   C   C   C   C 	   \C!   C    C      C$   C(    C,   C0   C4   C8   C<   C@   CC    KщKRUU   uS    "u	WRh   QRj P1e[^_]UWVSuh   á       E1ǃ          RjLVSCL    CP    CTFC\    C`    CXCdFCl    Cp    Ct    ChCxFǃ       ǃ       C|;~s"PFPj FG   PًE1e[^_]USP]t&    t   S1]UEu       uPPh   j&    1U    1҉M;   !Љ1]UWVS\u]  Et
E  CCK   P4   u
       QPSh   t%54       4             U}(       ,      8   '  =      Pǀ                @j $           փt5   50         co        Et
E   K      }EEP4   u
       RPEPh   t"54       4       I   8   !  (       ,       ǀ      E          E   u       1{co        PuSh   uTM   8       (          ,       0       J              ce[^_]á8   Ut]1]UjL5   u=0    t=(    t8   (      E1USKS[]PUWVSÃ ЋMJz}z)MMJ}U)MMMǉU#U4Ru4    u1;u}VEE    ];]}3QEԊAE]ۋ]؈S]ۍPUXEB}FE}E륃 [^_]UWVSÃЋMJz}z)MMJ}U)MMMǉUE    #U4Ru܋];]}JƉE    ];]}%
EMJZNNˉΊMKӋ]E}E뮃[^_]UWVSЃk]M]Z]k]ZU,MEUE    #U4R<    u}u;u}DM1;u}$y   	y	F׋UUEUE؉U봃[^_]UWVSÃ,ЋkMzM}؋}JUMԋM)}pMEaE    ǋEЙEU!EkEEЋE;E}A]1;u} SQKQRP7FۋEEE}E}ԉE뷍e[^_]UWVSMUEM1ËEMHM;}}$PGuUSRUXE P׍e[^_]UWVS   E} U$}(C   H	x  $    E0F H_  $(   EC[])EEFvu)EEMUǋEE    E#EEE;E :  ʉ1;u}FhPXFXHUPEЋhEZBEJX뵋EuE}ȍ0닋EC[])EEFv)ƋEGUMǋE7UE    #UE    EREE;E j  U1;M}ABBZߋEEEE}E볋EUMEEUk}{k]ҋv#U]u4    u4Ru1;u   1;MU}$AUUֈSڃӋUSUFEE:MkEECEFEE)EEUMƋEE    ǋEЙEU!EEEE;E 2  1;]}%QPRCu}u}E뷋E @ H  $H   MWERUu uut   E x g    E @ N  m  E0F  w=H/  EMUǋEv+uEC1ۉEE)Er       EMUEEvuǋE)EC1ۉEE)ESDCuj 0j j j M#MEE    E;]   1;U}"E4<uE
t4BًUC}}UU뺋EMUEEk}~EC1ۉEE)ESDCuj 1j j j UEEEU!EkEE;u   U1;M}.Et	\]؃AZBZ͋UFMUMM:EM뤋E#MUǋEvuEE)EC1ۉEE)ESfD]Cuj 0j j j fEfEċE#E4 u;]   1;U})4uuMfVMftuf4QBҋUCUU}U볃SDCuj j j j UEE1U;E   1;U}#u]MM\B؋U@#UU}2]붋EAl       quu)u3u}+M΃M}ыUuуMEEwsCKPCJPCIPCH1PEE HGQHFQHEQ@DPM Eh  &  ,  qEu)Eϋ}+EыUuw   EMEECKPCJPCIPCHP]EPGRPFRPER@DPU #UE       +UX1;]   1;M}EtEEmuFEAXMuh}tEF}hC}kEEAEϋ}+EыUuw   EMEECKPCJPCIPCHPUËHGQHFQHEQ@DPىځ    XE   h   8M)MHE    M;M j  U1J|;|U}tmuFEAۄO|thXOH8OWUuFM҉utM	MFU|}ESqEu)Eϋ}+EыUuw   EMEECKPCJPCIPCHP]fEHGQHFQHEQ@DP fhE#E 1X   +];E 	  1;M}#UtUhfOmuFEA؋XuϊM}}tUF}}@}뚊UtKUmuFEA;M|㋍h#Mu}MtEEC<;] ^  1ƊE볹   F+M}1;] 7  ;1E;u}hPuUPuZYMQMQMQMQPuE PEPEPEPPEPEFPu UC|:  wHtO  	z  
  8  E p N$  $h   sMKu)MMH@hE)hMUEEǅX    EE#EHX;E   EE    HE;E   E}u   E=   tX4AuU]1}   1҉ƋAEػ   1҉AE   ǋE			؉AEOUHEXUhUE	kMsHEuhMUEEE    EE#E8E;E   EE    XE;E   E}      uC   S΁   uX}U   H4X11҉ǉ	Ϲ      1	ǋH	ǉ{E;U8EEUhUEMK[])MMH@hE)h7MUEE&ǅX    EE#E<    @8HX;E M  EE    HE;E   E}ut{uE=   tTA   1]   1҉Aػ   UUA   1EAEYAE[UE8HUhXUEku[@u]k]]EEMUEEǅX    EE#E<    @H8X;E   EE    HE;E   E}4   Љ   EhuEQAhUyށ   EhyA1   1҈A   1҈AAEIUEH8UEXUE@ku[hE)hEu]UMEErǅH    EEЙEU!EE8H;E   EE    pE;E   E}      Xu	QPWR   PPEPEPEPEPF|Puع   4EU|X1M1M|E   1҉EEEEP|QPFEFUE8EUhHUEE @ H
  $   MWERUu uuMWERUu uu^MWERUu uu=MWERUu uuE0F Hn	     `J  .  L	  FMNE   E)Mϋ}+EыU8uuE}MEECKPCJPCIPCHP}|PGRPFRPER@DP} ǅH   ǅX    ׉x#E<    E)H4X;E 	  1;}   ]EE t@K|
@Gx<]uE      ىEMщû   h1U؉	ËE   1M1h	ËEȹ   	ÉmuEEG4M8EEtEHEEEX4FMNE   E)M+Eωƃ|uщhуUFu}EMEEECKPCJPCIPCHP]xPGRPFRPER@DPu ǅ8   ǅH    ։4#E4@h)80H;E   MǅX    X;E   }EE t@Kx	@G4<uǈAYjtf1҉uЉUǉ}   1EE]11҈AEAmuEEX6|EEh]0tE8EE]H]FMNE   E)M+Eωƃ|uщыUE~uMEEECKPCJPCIPCHP]xPGRPFRPER@DPu ǅ8   ǅH    ։4#E E)80H;E   41,x(;u   EE t(@K],@G]<uE]fp      M҉UfqXfhʋU1ȹ   hfЋEUû   1]1?X	hf?Eػ   ?	EfpmuGEFEM]0|tE8GE]H]E0F  w<H  EMUǋE[EF1EE)E)     k  EWMUǋEGvuEE)EC1ۉEE)ESDCuE#E    ]1;] U  1;U}t΋Mt4BMCMM}MEMUEEk}~s1+uESDCuEE    ЙEU!EkEEE;E   E1҃;U})]t\وXHXBҋUEUEE2]E뢋EMUǋEvuEE)EC1ۉEE)ESfD]CuE0#E4 u;]   1;U}t΋Mftuf4QBߋMCMM}MVD5FuU1U;E   1;U}t΃L5uBM@U#UM߉M뾋]+U)߉}U+E;E >  E}؉E+E;E  EVuPuZYURURURURPuE    uEh   PEPE   PSWuZYURURURURPuE UƊE։uuE   1M1MEEEȹ   UUEEƾ   1UUEPEQPPSWu GCe[^_]UWVS<u]P  w,J\  P׊M)UUEV1&  tU)  P    !߉)EUMF1;u+  19}	MBFEM[ߋ@!߈MM<MȋMM)EMkMV1;u   E    9]}MEHMȈHMHFUǋ@}E)M!V1;u}j19}
MfB@FUF!U;u}C19}@1;}}0U19}"uMUERQVEU@Gˍe[^_]USKS[]PUVuSUMXwsItPusit u]TXP 		6{*1ۃx 
u"N   )1ۉ[^]UWUVuSMXwsJtTu|Unt udUVUUPUP<Uf-x 
u'   Fu)Ӄ"	[^_]      d(    d(  d(  d(        `#  0    d(  }    d(  d(    F0    d(  0  g0  d(  d(  0  *  /)  L:  7-  +  L:  L:  .  F0    L:  0  g0  L:  L:  0  invalid argument given invalid render target given             T TTTTTTTTTTTT  U   $  $U $ $ H  HU H H l  lU l l   U   U    U ت    U  $  $ U$ $ $$ $$U$$$$$H $HU$H$H$l $lU$l$l$ $U$$$ $U$$$ $U$ت$$ $U$$H  H UH H H$ H$UH$H$HH HHHl HlUHlHlH HUHHH HUHHH HUHتHH Hl  l Ul l l$ l$Ul$l$lH lHUlHlHll llUlllll lUlll lUlll lUlتll lUll   U  $ $U$$H HUHHl lUll U U Uت U U $ $U$$HUHHl lUll U U Uت U   U  $ $U$$H HUHHl lUllؐ ؐUؐؐش شUشش Uت U   U  $ $U$$H Hl lUll U U Uت LICENSE=GPLv3+  video_fb                                                                                                                     	    (            ]     +   ,  S     D          t            	  3          (                              	                     	  
      #  )>       -  o  S     H         c             n             z  ?  >       }           ?         G                                             K     /    7     V    "     t    j         9       =                              ;                                ,  "     F    q     a  %       x  N                $       grub_video_fb_map_rgba grub_video_fb_fini grub_video_fb_get_region grub_video_fb_create_render_target_from_pointer grub_video_fb_unmap_color_int grub_video_fb_unmap_color grub_video_fb_map_rgb grub_video_fb_scroll grub_realloc grub_video_fb_fill_rect grub_memmove grub_video_fb_blit_bitmap set_pixel grub_video_fb_get_viewport grub_video_fb_swap_buffers grub_errno grub_memset grub_video_fb_get_palette grub_video_fb_set_palette grub_video_fb_map_color grub_video_fb_init grub_video_fb_get_area_status grub_zalloc grub_malloc grub_video_fb_get_info_and_fini grub_video_fb_set_active_render_target grub_video_fb_set_area_status grub_video_fb_set_region grub_video_fb_delete_render_target get_pixel grub_error grub_video_fb_dispatch_blit grub_video_fb_fill_dispatch grub_free grub_video_fbstd_colors grub_video_fb_get_active_render_target grub_video_fb_set_viewport grub_video_fb_get_info grub_video_fb_setup grub_video_fb_blit_render_target grub_video_fb_create_render_target "     .    3    9    E    U    s    z                                                                                            (    -    7    U    \    d    p    y          )                            )        )                          /    7    _    g                          	                                      C    R    a    p                                	        6    '    ]    r    ~        	    	    	    
    
  (  
      '      p  '                                          H    [  &  n    ~    0          )                            )    )            &  $    .    =                              )                              	        "    ,    7    @    R    W  $  b    |                              )                          !    8    A    I    T    Y    j    x    }                                                	            $    )    0    :  	  %                                  x!    !    S"    p"    "    "    #    	$    $    $    %    %    F'    h'    (  %  (    (    (    +)    {/    /    B0    y1    1    3    3    5    5     8    8    9    9    :  %  :    :  %  :    ;    ;    T=                                                   $     (     ,     0     4     8     <     @     D     H     L     P     T     X     \     `     d     h     l     p     t     x     |                                                        .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .modname                                                      4   >                    	   @       J    
            )             ?                    %   	   @       R  P  
            1      2       ?  3                 @             ?                    F             C                    V             C  <                  [              C  	                                 D                	              G                                 S  d                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/i386-efi/pcidump.mod                                                                      0000600 0001750 0001750 00000004660 13417732100 0015030 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   U1   WVS<]}C8    @uQjVPE%  =    
EuC        @EM      ,  EĀ8:   R@}jVPE	=    
Eu        M  E!E̋Cx    x]VjSW}=    
Eu        }E          }Ā?:tSj:h    jtQGjSW}=    
Eu        }E   EĀ8.u$R@jSPEEء    uE   PPEPh  1e[^_]UWVSEU#;Pux tH9Muqx tp9uucx t@9EuU1S   u  ZYPh   ؃uh      ue1[^_]Uh    h   hJ   j h    hd        U5           d       l             s                                        missing `%c' symbol %08x  
 Show raw dump of the PCI configuration space. [-s POSITION] [-d DEVICE] pcidump Select device by vendor and device IDs. [vendor]:[device] Select device by its position on the bus. [bus]:[slot][.func] LICENSE=GPLv3+  extcmd pcidump                                                                             G  0        w                                                	              
               4              ?              K              a              l              }                             grub_mod_init grub_mod_fini grub_unregister_extcmd grub_errno grub_printf grub_pci_make_address grub_error grub_pci_iterate grub_register_extcmd grub_strtoul  3     A     P     h                                           #    6    ?    K    q    |                        &    +    N    S    X    _    d    i    q                      $     (      .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                       	   @                       )               H                  %   	   @                         1      2                          @                                  F                                 V                                  [                                   d                                                  0              	              @                                    m                                                                                                  boot/grub/i386-efi/videoinfo.mod                                                                    0000600 0001750 0001750 00000007510 13417732100 0015346 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      h      4     (   UWVS  u} ǅ    ǅ    ǅ       hWj SPh    C  h8xtS6h    j!  Q@j SPh      h8xu'R@j SPh      h&   h$E         PPshs   {| uh   cǅ    9{u6Ru2        &Sth                 tQQPh  S|      VЃ   Vth   _{RPzPh   PPVuPh   h          
        ǅ    9{tSt
        i1e[^_]UEVS]tHt9  9S  Pt	9S  Su
h&  0@t;Pu
h/  h1  PPsh3  sss3h<   C@t5    hT      $փCt(s@s8s0s(s<s4s,s$h_  0Ct5    h      $փCt5    h      $փC
t5    h      $փC
t5    h      $փC
t5    h      $փC
t5    h      $փCt5    h      $փC
t    h      $Ӄh      e1[^]Uj h  h6  h    h@       U5    invalid video mode specification `%s' List of supported video modes: Legend: mask/position=red/green/blue/reserved Adapter `%s':
   No info available   Failed to initialize video adapter   EDID checksum invalid   EDID version: %u.%u
     Preferred mode: %ux%u
     No preferred mode available
          *    0x%03x  %4d x %4d x %2d (%4d)   Text-only  Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Paletted  YUV  Planar  Hercules  CGA  Non-chain 4  Monochrome  Unknown video mode  
 List available video modes. If resolution is given show only modes matching it. [WxH[xD]] videoinfo  LICENSE=GPLv3+  video videoinfo                                                                +                                                                                     (              3              >              V              o                                                                                                                                           grub_mod_init grub_mod_fini grub_puts_ grub_xputs grub_errno grub_video_adapter_list grub_video_edid_checksum grub_register_command_prio grub_video_get_driver_id grub_printf grub_unregister_command grub_error grub_video_get_info grub_printf_ grub_video_edid_preferred_mode grub_gettext grub_strtoul K     Y     t     {                                      
         
          "    3    8  
  ^    y          
                    
          5    N    S    ]    b    h    w                        '    ,    B    G    Y    ^    d                                                            1    6    <    S    X    ^    u    z                                                              .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4   	                    	   @       d
    	            %      2       =  J                4                                  :                                 J                                 O                                  X                
                                    
   
         	              8	  ,                                 a                                                                                                                                                                                                          boot/grub/i386-efi/play.mod                                                                         0000600 0001750 0001750 00000004630 13417732100 0014331 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (  
 UWVSӃ$BPPh    h   j9h    f fua:f   vf= Nv N  4 CBBaaUSEi`  11EU;Urw;Ew	te1[^_]UWVS,]} PPh8   j   }   3t<PjEPVt1V=     uP3h]   j    H  u]hv   h   joh     PjSVu f}}tuډnt΃V   Wj }W3EԋE8 tV3h   j      uhv   h   h   h     FPj W4=     fEueE8 uLf}tVuMEԍUu;;u}6Qj Wt=     fEuE8 tRRh   j
aa1e[^_]Uj h   h   h   h        U5    pitch = %d, duration = %d
 play commands/i386/pc/play.c filename or tempo and notes expected premature end of file %s tempo = %d
 file `%s' not found unrecognized number Play a tune. FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...    LICENSE=GPLv3+  play                                                                   +                                                                       (              C              [              j              {                                                                                     grub_mod_init grub_mod_fini grub_errno grub_register_command_prio grub_unregister_command grub_file_read grub_get_time_ms grub_file_close grub_file_open grub_real_dprintf grub_error grub_getkey_noblock grub_strtoul           #     (     {                                   	  *    1    9  	  L    Q    X    ]    j                                              	  ,    T    ]  	  s    z                      
               .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .modname                                                      4                       	   @       (  `              %      2                          4                                  :                                 J                                 O                                                  @  	   	         	              P                                    X                                                                                                                          boot/grub/i386-efi/videotest.mod                                                                    0000600 0001750 0001750 00000007720 13417732100 0015375 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UWVS   h   } tE u    Sj j@P  EPEPEPEPEj!uuP S  EH  Ph   h   j $   $   E$   $    |} tt| tuQQh)   j  QQj*Pj h   WPh   h   h   $    jPVh8   V4$EUT C$jWSh8   US$Uh   h   h   S$jPShf   xES$MxA<<$juQhf   uxXuxF$juUVhf   V4$|UNʉ$juVhf   V4$XZj*S1ƃSh   DCPRV uփ0j R  Vj j j _uuj j Pj j h   $d   jdj j Pj h   j $d   jdj jdPh   j j $d   jdj h   Ph   h   j $d   jdjdj Ph   j h   $d   jdjdjdPj h   h   $d   jdjdh   PE -,  PE-,  PE   PE   PjMj!jMZuuj j P RjMj!SCYuuj j P uuj j j j ju \0uPtSCh   u        1u    e[^_]Uj h   h   h    h        U5    auto gfxmode Unknown Regular 16 Fixed 20 no font loaded The quick brown fox jumped over the lazy dog. Unicode test: happy☺ £ 5.00 ¡τäu!  ℤ⊆ℝ color %d: %08x
 Test video subsystem in mode WxH. [WxH] videotest  LICENSE=GPLv3+  font video gfxmenu videotest                                                                   +                                                                                     2              H              h              |                                                                                                                             1             I             U             m                                                                                                        %              grub_mod_init grub_mod_fini grub_video_map_color grub_font_get_descent grub_video_delete_render_target grub_font_get_glyph grub_video_set_mode grub_video_fill_rect grub_video_create_render_target grub_font_get grub_errno grub_getkey grub_font_draw_string grub_font_get_leading grub_register_command_prio grub_video_get_viewport grub_printf grub_unregister_command grub_font_draw_glyph grub_video_swap_buffers grub_video_restore grub_video_set_active_render_target grub_video_map_rgb grub_error grub_video_blit_render_target grub_video_set_viewport grub_env_get           "  )     4     T     e                                                                         3    E    J    S    ^    w                                        
        $    E    J    S    ]    ~                      
                      (    9    L    ]    s                              !  %    6    E    V    q     y                                                                         .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4   (                    	   @       
    	            %      2       \                   4             7                     :             8                    J             H                    O              H                    X              [  
                                h  0  
   
         	                2                                 a                                                                  boot/grub/i386-efi/png.mod                                                                          0000600 0001750 0001750 00000016504 13417732100 0014153 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   U1҉1WVS1;P}p4p)ɉ<B[^_]UWVSÃ<H$y	RRh    p   u&vPPh   j  ҉t  l  Hl  p  PC4p  H9  l  փx   tPǉEu  <E    t  t1Hc  C߉}tG  }ux-1;C4.  } @;S4   B);C}
G AщU;C4   MMMM @׋E);C}EMEE  ΉMԉu;C4   uċUuԈMʍ7MUU)U܉)u܋u1щM)U؋U܉1ʉU܉)M܋MM1)9u؊MȈUM9M؊U~9u܊UU΋uÜ@auǃp      ǃx          e[^_]UWVSxU9    ]1PPh*   j<9tPA219ً0x})ATU)߉U@@De[^_]UjURPE    EɆUVSx@ tdxD u^1N9Xu9Ht	QQhC   Ë=TADItRRhY   j14ۋ@DFt^DPjEP6E ~@ tNDEe[^]UWVSÃx uLC   CE    E    =     uT{9~K   M܈MJ#UU)uu܈)ǉ{sEC   C룋E[^_]UW1VS1ۃE;^}0E   ?V;<    }V<C1[^_]UWVSÍ@	  E䍃T	  E=       U{=   9h  h	  Љ2h  @=  h  ǃh      =      -     4   t	wƋU   <(   t	Rǋh  )yI   Ah  ;h	  h	  h  @=   h  G1   N!ǅǃh      ڡ    [^_]UWVS  j uu
      h|    MNSj-SPN  Qjh    S   RRhu       =RDHI  jF`F  ~   i؈ 1F N      ~     ~0҃B      F      tFRvvv   =     R
  1ҋF9Q1
  9A(
  ǋJ=DNEILN-  =TADI  	  =ETLPZ  	  PPh   tPPh   j	  F0   ~0 F(   F   u~( 	PPh   렋F tfV^8N~щV4 ~4u~( u~0 t$F4FP=     F<tFF<     @Ll  F4ǆp      ǆx     @FF$TtPPh   =tPPh  &tyPPh%  11ҹ   19s>   t61ҍ  @  Buԃ9s
C}F@   ~DF    Éyt	WWhI      SShv  j             ǉ   @É      SSh  je X  =     K     S   AOP  F    zÉqj1f9tGVЉXVH1ۉ@	      D	  @	  H	  ǆL	      ǆP	     Qj@j Pڹ   CQ   uڹ	   C:   uڹ   C#  uڹ   C   uf1tH  T	       \	  T	  X	  ǆ`	      ǆd	     Rj@j Pڹ   Cu  4+E1Qj j H\L|P\PǅT    ǅX   ; }   <  VC=5ۃt<  CƄ5 05tڍHCu፽H0ۉDVH@	      H	  @	  D	  ǆL	      ǆP	     Rj@j PH  T	       X	  T	  \	  ǆ`	      ǆd	     j@j Pǅ      ;    =     ;|+   |uJ   )Ӊx~ ZtAOK'u   c\   Q\
 C odPPh  LEF@    ^<  FV N8 ӃxL+     H~( tNEǅ      uEi    1 BBPj0@  PEPǅ    ;F+     +N8ǅ     V9s\ #ҍRB  HA  H@  N8) y 뙍R^4W1~0 tHVV9z  RB  WRA  W@R@  W븃~( u1   FtEtH   1   1ҋFF9  CBGCGCGCGЅt,1ҋFF9   CBGCGCG֋FF9   CBGCGCGCGЋVV9s|WW@W݋FFF9sSSBQJZ ǅ$      $SQRPPhC   jv<4$=     tE0E         e[^_]UE    ]Uh      PNG

    		

                    	            !   1   A   a                                0  @  `           cc                   	   
                           #   +   3   ;   C   S   c   s                          	
image size overflown invalid filter value png: invalid code length png: chunk size error png: unexpected end of data png: not a png file png: invalid image size png: color type not supported png: bit depth must be 8 or 16 png: compression method not supported png: filter method not supported png: interlace method not supported png: only support deflate compression method png: dictionary not supported png: too much data png: unknown block type .png          LICENSE=GPLv3+ bufio bitmap png                                                                                                                                      	              
               ?              L              e              t                                                                                                                                                         '              grub_mod_init grub_mod_fini grub_video_bitmap_reader_register grub_memmove grub_video_bitmap_create grub_file_seek grub_video_bitmap_destroy grub_errno grub_memset grub_file_read grub_zalloc grub_malloc grub_file_close grub_buffile_open grub_error grub_video_bitmap_reader_unregister grub_free grub_memcmp  D     [     b          ^    z                V    t    {                4    ;    Y    `                    I    ]    c    u    9    J                )    ~                	    	    	    	    3
    :
    W
            I    b    }        U            \                                            	                        .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   "                    	   @       |                %             X  O                 -      2                         @             l                    <   	   @                        F             x                    V                                  [                                  d                                                                	              H  3                                 m                                                                                                                                                                                                              boot/grub/i386-efi/testload.mod                                                                     0000600 0001750 0001750 00000005360 13417732100 0015204 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      8	      4     (  
 UVuS  v   h        ߁  th        e[^]UWVS,  } SSh   j  E0  X4 uP  SƉ  EQQ0h   GD    SVW9[  h,   XEZ0h4   j j Wǅ    ǅ    ǅ        9   + w=  w
+   PVPW9  PVPPtQhR   J  1.h,   XEZ0hd    w  v ǅ    ǅ    PWh   SW=      Vh   VStZS1hR   QQPhy   ؃uh   C   u*	h,   17WZ=     uPPh   j    e[^_]Uj h   h   hO   h        U5    . filename expected Reading %s sequentially  Done.
 Reading %s sequentially again 
Differs in %lld
 Reading %s backwards %02x  
 bad read Load the same file in multiple ways. FILE testload LICENSE=GPLv3+  testload                                                                   +                                                                       (              7              B              ]              i                                                                                                                               grub_mod_init grub_mod_fini grub_xputs grub_file_seek grub_errno grub_register_command_prio grub_printf grub_unregister_command grub_file_read grub_refresh grub_malloc grub_file_close grub_file_open grub_error grub_free grub_memcmp         "   	  7     =   	  K     d     k                                                  	          
                      !    3    8      
                          	            ?    D    T    `    i    s    z                                         .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .modname                                                      4                       	   @       8                %      2                          4                                  :                                 J                                 O                	                                  p  	   	         	              L                                    X                                                                                                                                                                                                                                                                                                  boot/grub/i386-efi/priority_queue.mod                                                               0000600 0001750 0001750 00000003144 13417732100 0016450 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     ( 
 	 UWVS8p19t4@[^_]UEx t@1]US]s]]UVuS    Pt:juSU0@   @    PX1e[^]UWVS]C;Cu$WWPsu    fcCCPSVRuCPCxt$wCQQQPS1؉ōe[^_]U1҉W1VS]CHwK?r;s   CURRQPSUR~;SsU,;Ss`CQQUQPSU9CQQUQPSU։؉]e[^_] LICENSE=GPLv3+ priority_queue                                                                                            l                  2              ?              L              W   G   !     s                 h   d                      2         grub_priority_queue_pop grub_priority_queue_push grub_realloc grub_memmove grub_errno grub_priority_queue_destroy grub_malloc grub_priority_queue_new grub_free grub_priority_queue_top    U     d     |                       
    	   .symtab .strtab .shstrtab .rel.text .data .module_license .bss .modname                                                         4   7                    	   @       H  @               %             k                     +             l                    ;             {                     @              {                                                   	                                                  I                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/xfs.mod                                                                          0000600 0001750 0001750 00000016500 13417732100 0014163 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      8      4     (   UEp@X5    1UWVSÃ8P{@|U1҈E1 !Mыu!MM܋} tMЉEȉU t1҉Uԋ   MԉEЉeKx׃	 t1Mܺ   ЉUKzH#EPWVuuȉEh    h!   h  h%   ,UuKzERRPWV    t    ,Rjh.   u1tPPh1   j	e[^_]UWVS$XHpL8j fj f]_xu	Suuh  uuuuQRP   e[^_]USP]C@KHSDuu   ssw]UWVS(}EUG Hz   Pu	1lEUC   MCSGS GRU ufC   f% f= @tf= t	1f= WSRVуe[^_]UWVS }j]j uV tG8ME܊E؀}	WEsVue[^_]UWVS(hh  n  hI   h!   hg  h%   Sh   j j j j W   hU   h!   h   h%   jhl   SuCx<v   Ѓ~PPhq      Cdf% f= u1h   h!   h  h%      tbPPh   Mf= uuh   h!   h  h%   Cd u	PPh   But   u  tWWh(  j	"Kz   RR  PSu-=    uQQhk  j	S1   C8S<   ǃ      EUEU䉃   C      CT   Cdf f u	   ut            ǃ       f 		Ј   VVuuhT  h!   h  h%           Pz؍e[^_]UWVS(E5    Atfx.p,fH*@(ffS"ffEfC&fEfEC$fEfEC WVQMfEQMQMQRPh  U0	E     5    $    e[^_]UEVuS5    ktPPjClP    5    $    e[^]UWVS(u5    E    F    QQjh  hk     EPWu =        Ex t,U9tGPKz   PRWZu"PHP=     u7벋<  @  ^@F    F    F81V45E9tPS5        e[^_]UWVSu^LF<t<t`~   wFtRRSPECPt.P1S1j j 9tW 1e[^_]UWVS<EUE؋EU@<  E    E   Ex   wxtfGEЋE@btHEU )Hz   D1;U}!׋L9]wr9Msuu  BÍTu׋TK|Eԋ}Pu   UЋuj j  t1   MЃ#}!MKxEȉ}Ũ	 t1RP       E    tE    tI0Wjh  utكu[^h  j	   Qjh  uuЋ]fC{HEЋE   u{])   f{ oI<u+E@\EЋEx   wxtE    RPh  j11J  E    E9E   wWGfE    E    f		ˉс } ]Mw9]rXM]M]9]w<r9Ms5M؋]+M]ā  1	M	}؉]UE@E    E    uE}܋u؋ H| t1   EUE׉U]]؃E!؋]!EUe[^_]UWVSLEE܋EEEE@<t}  <  p  E   EЋExwtEЋEЊ@<ۃ
EuEE    @E}ЋGWẺUȋE  u܋P@V  Eȃ  UV  ]E    uE 9E  ƉEE    Lك} 9qAQt			׉}E    L	q	1	A		A1		A1		Ɖu}ċEUčKtD Eu   }TLEЋx\   <EE    Px   ЈWE  E    E    _C	ECMD	 CQMtV   (  M   EU EHHXLʊMȉ t19U   E^    t^@   Hx   UVMȍDEEW t1R1PE19   E@)U;]Af;fCMS	B   tBw	9E<VRPh  j1e[^_]UVSE5    E    EEEE taRRjh  hk     EPVu =     uPEPh  uE9tPS5        e[^]Uh    h    E    Uh    Reading inode (%llu) - %llu, %d
 xfs fs/xfs.c IN not a correct XFS inode Reading sb
 Validating superblock
 XFSB not a XFS filesystem XFS v5 superblock detected
 XFS filesystem has unsupported incompatible features XFS v4 superblock detected
 XFS filesystem without V2 directories is unsupported XFS filesystem has unsupported version bits Reading root ino %llu
 not an XFS filesystem %04x%04x-%04x-%04x-%04x-%04x%04x%04x BMAP not a correct XFS BMAP node BMA3 XFS does not support inode format %d yet . ..            !   ,                  LICENSE=GPLv3+  fshelp xfs                                                                               "                                                        	               3              @              O              \              i              x                                                                                                                                                                                   ,             :              grub_mod_init grub_mod_fini grub_fshelp_find_file grub_strncmp grub_xasprintf grub_realloc grub_memmove grub_disk_read grub_dl_ref grub_errno grub_memset grub_fshelp_read_file grub_fs_list grub_print_error grub_zalloc grub_malloc grub_real_dprintf grub_error grub_list_remove grub_free grub_strndup grub_dl_unref grub_list_push                                     )    5    ?    G    Y    `            &    4            &    8    =    G    L    c    s    x                                                            0    M    T    r                    r    w                    I    N    j    o    w    |                                    	    )    .    A  
  J    x                        
        U    f            p	    
    M
    U
    g
    n
    }
    
        	            :                        9    N    j    o      
                                              	                                             .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4                       	   @           
            %      2       K                  8             H  (                  4   	   @         8   
            >             p                    N                                 S                                  \                                                       
         	              |  I                                 e                                                                                                                                                                                                                  boot/grub/i386-efi/probe.mod                                                                        0000600 0001750 0001750 00000005224 13417732100 0014473 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      d      4     (   UWVSE} uXSSh     >W:(u|?)u @P)Rƃth{ t!Ft@@    t'B  { t)t@t@$@    ; tQQP1RRP;Vu
       { t/; tPPwsQQph   V   {  t-@ tRRURVЃ   Eu<Qwh   -{( tg@tRRURVЃujEuPwh7   jN; tWWPsQQPh   u4$1VXZh_   je[^_]Uh    hs   h   j h    h        U5          s                   d                     p                    f                   u       '          B  l       H                                  none device name required %s %s does not support UUIDs filesystem `%s' does not support labels unrecognised target Retrieve device info. DEVICE probe set Set a variable to return value. VARNAME driver Determine driver. partmap Determine partition map type. fs Determine filesystem type. fs-uuid Determine filesystem UUID. label Determine filesystem label. LICENSE=GPLv3+  extcmd probe                                                                                 0                                                        	              
               )              :              Q              \              h              z                                                                       grub_mod_init grub_mod_fini grub_strlen grub_device_open grub_unregister_extcmd grub_errno grub_printf grub_device_close grub_fs_probe grub_error grub_free grub_register_extcmd grub_env_set       +     M     ]                                       >    m                                                                                             $     0     <     H     T     `     l     x           .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                       	   @                        )             P                    %   	   @         h               1      2         d                @             \                     F             \                    V             l                    [              l                    d              s                                  |  `              	                                                  m                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/xnu.mod                                                                          0000600 0001750 0001750 00000065674 13417732100 0014215 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      di      4     (   U    tP        1UWVS  u                       Ph  PS=    TemistS^_h   xttSY[hE   jy  uSXZhk   ыE    tP    uS    뀋   RVWPtS  j j h   PPj W5    0tSo  X1Rǋ  PSBu@t2PS;uQj j SBu4@u1S=        Puh    j   RS;uS)5    =        $     $h   h   h   h          Ph   h   h   h   j h    h        1e[^_]UQRPUWVS(}jUMMUá    tcESK{CWCu%SZsYs    KUlPPSV1e[^_]USEupt(pXsZs$1]UWVSuV^t.sXsZs;$΃v4$e1[^_]UVuSjtBVCuS!UsYPPSh   1e[^]UWVS8]Sǡ      SÉE؉$EtE܉1]1SWM  } tJ1Ƀ})MԅҍNMt\˃  JÉȃ?	؃u2   u} u]+]   WYu   u\ǄxVȃ<uȃ      릈ȃ<uȺ   둈ȋu<umȺ   vno}w=  vI]=  v=u܍  
ff fff fVmuu?   MMfqu1    7RM؉uuES~1tWXu؍e[^_]UWVS(E]VEEu
    |  EE   Pt1}j     7  f;C҉Etm $  wV   
 $  Q?ʀQ?Ȁ?ʀQA1ҋ]M}u   ?A]w?=  wA?ȀA뻍 (  v> $  w?A뙉Ã?ȀA?ȀYAoh MREuuu1tVXu؍e[^_]UWVS,E}tE   E   e[^_]0á    <  {4WtRWPS9tS      S~EUE    EE;F   ;}   WЊXÀu"xuPP)PRE    E;]s߉EE;Gsg;]sbES9sR\
9sNC;EsD];]s7uPQRu tVEEE܉/V1e[^_]USP   tP]U	   WV4    j $EԍuԉEء    E    E5    e^_]UWVS       h   h    ǅp    ǅ|    E    E    HtK   1   t!J\Jty\{
Y	FRRh   Pu    %    S_Gxp5   `@      `@    NxV^~   STWKSqCf  CGKSL{sXsXs$X`XAp`)V`       VVh   h      @   h   CY[h   h    v  @   h   CXZh   h    C  WWh   PX   @   jC  =    KWVVh  X       P1f<B @uCPC       KRSSh  Xtu@   jCtZK*  XQQh0  Xt4RRh9  Pt@   jGu    ǅ` ǅd      hF  P&  1ǅ`    ǅd    P LtYLKw 0	w?
   `kd
`ǅd       `dP땋d@B `i@B ㉕ddL.`uWP@P@B P	t8Qw 0	w%
   1f `dP뻅td`	   X5    PX1ȅuǅ` ǅd       1PjhJ  EP]MUutt  2    Ӄ1Ҿ  j `d1҉1>	1SQ`dRP `dG`dX]PPGp0hW  hq  h  hu  h  XǅP    LC      P;x@  kP   pD}F   DEPEPEPEPuh  j@S |5FS$@@   +@Wh  RP u؊tJw @PPLSPr  xPPh  WU  @   jF6  NUTPPh  W  @   jF   D0PjEPh    tVjEPh   ub  1PPh9  WDD   k   @F$FtfN   P
QQh  Xt4RRh  Pt@   jCu        R8@  3  h     PP5    5    ǅp    ǅt    h  hq  h  hu  ǅ|    E    E    h  t?PPh  Sth  WWhq  SuՍlVPhPh   O  h1H
Sh   j W_LL t`_d    h  E    t8 uQh    h@  h  GRRPh  ơ      Ph    h@  V4$``  EP      t&=    ujRuuEP U} t1=    uj5    uuEP 	    UM   1EHX)   DEP+Aq;P`vPH;XvXH`V`RىX!XDXP#PP!P!ȋHPj Q t        E    VVEPEPu@E  E   E$  E  E  }Ѓ  _t[h#          ǃ      ǃ      ǃ       ǃ$      ǃ      ǃ      uVEP|PtpP y
       kEpQxRtRPp  RREPEP         E(  E,  EVP|PtpP   L     tP  D      1    tǅT      DPEǅ\    ǅH    Ɖ@    ,Xp1((9H   AQ`AdQ   PT8AAP<QQ0\T9d4wSrX9`wC04`d;\rw;Xv8,+`H@L tG f  fG P  ƇH   f fG D  DPUM8  5    )ǋx<  =           p0  4    7   t    lQRP        E    E    EE!桃	   j $u5    0
   e[^_]Uj h?  j h  h^      U5   É@U<	wҍBB<wҍBJ1wҍB]UWVSӃP9ˍBsBC9v2;%u-CMUCUM	BCBB)EXZ[^_]UWVSR<$0)Åt9Nt ȿ   \$)1҃!
FËvÍe[^_]U}EtEw  E   ] E]USQE}]tEw  E   =     uE  E   ]@8 t"RRh  pu       
        PP3h    1҅t        Ћ]UWVSt't y΃wq {w 9u@B҉ȍIw Jw [)^_]UWV1S։Ã1҅txuBA@ASS,Qj j RUUjh  R<$@C<$PWS<$<$   щU)Qj S<$U)ӅtGti   1)Rj j SM!E1Ɉt@uG$CPwwS_uj S]놃~t	vuV؋u1e[^_]UWVSu        ]VPEP5    u@uE        5    X3h  h  jHh   e[^_]U    MS    ؍L!)У    1[]UVS]tF3{usCtPsS붍e[^]USR]tPPu3t	[1؋]UWVSuu6uEjt2uuWGG>e[^_]UWVS,}h   ^   SSh  h    tfQQh  PtMjt:h  t$C   FC^jCu    XEԡ      U   R% WURPMԅuE     AE  e[^_]UWVS=     EMuVVh  j   SSh  h    t,QQh  Ptju
       tHRPuh  u? uW.G   CGjGu7<$    U{UP1e[^_]UWVSDj/PẺMuEP;EtRHRj/Pt;EuE,Wj
h  PtCQKQj/St@EЋ}RRj/Wt)EuEE=     EuPPh  j  tYP5    uVuVE    #=     tP	PEăEE	E    1ۋE̅tPEE    E        t@4UEȍDEE    h   Z  PEPEPu>  uPjj Vۍ~ta+EE=     FEĉFtPWuSPWuStSEMԃ   S}ċU        tl+EEEȍX^QPWR;Et1u=     uQuh   j    _uEȃ ߋU+EE        F@FPRuW  7 MZL   ue[^_]UWVS}}tVVhw  j=     uSSh  j   7tfh   uos4EQPEPVuVRVuS9t.S=     uP7h   j    M1P!  ;e[^_]UWVS,}tPPhw  j=     uPPh  j"  E0  PjEPS  E=   }ffkVuS    zPVRSUU9u$    E    E    E    EȉkR=       EW0h   j  } !  u"HE    MЋpffẼ9}|Rs4E    E    uS[^h)  h   uEQPEPVtS   RuuSVuS9t1S=     uPE0h   j    .SMܺP   K  4$  e[^_]UWVSu}W6t7@ustsC    C    :jt+WuSC1e[^_]UWVS,E]=     EE]܉EuQQh  jnS$tDPEXZj)SUԅtXtEPh/  SVRVW1e[^_]UEVuSPvE[  E   =     uE  E   e[^]HuE
   Es  Ee[^]vu    /Jw @uPj
S6$e[^]U1   WVS}ЃhEuEЋEEԋEE$Eu
      QQuP]^u/]_uD Xu$EES  PXZj)utpuWWj)utEPh0  VuSE܅E  P  @4PEEuSr  VuVuS9t'S=     w  Quh      S} u	E   3RRh  uuPPh  uEM11E1E    E    E    E    E$} EtTEux1<E    C;]  <<t<>u   uuh  jV  } tPPh  u  E     } t[} tU} tMtJw @PPVuE   uPPh  uE} } } 	tWV z?t{/u>E    }u2PPJh  QUMMU  CE  PPh  BPUUtE    E    >z/uMbEZu} 	     u<$D$Y^uP} tS^Zh  SZYh  PS^ZWPY^Suh  h  h  h  Su
        E܉=S<$.uh  h  h  h  E܃ 11uYuu1LRRh  uE   PPh  QUU.sQe[^_]UWVSEu}    >.   V   Vjh  DP   74$D$tgPP7S$D $/$ZYVPwwS=    u
        Se1[^_]UWVS(u}]V   S3UYZUVDPt$  uRCHPsst$  uPCHPsst  ouC   u'  Su{ usCe1[^_]UWVSE=     ]uE  E      u`RRh  stsup1K1PPh  3MMt;e[^_]HuE
   E    Ee[^_]Ew  E   e[^_]    e[^_]UWVS,ƅ\  Wjh  6:  SSj.PRUUЃE    Ã1tc)Q@QPWUUЅ   ٍEP#ED YXWuEXZj.Sڃ뙃RU[ZUЍLPWỦMMЋU̅t~EPE XZSu$Yv@$t9VRUUԍVE$SE_Gv    e[^_]Ã=H    u U5D   H      H      Ã=H    t U5D   H       H       U5    Z5            L       P                               1UWVS,]} WWhw  j*  qVVj3tu3EjPEPV    U؋EQQR%Ph.  h  h  h  U؉EE    E         u
    L  PU؍EPEPE    )Pu"EЃ+Eh    jP3V tV   WW3V%    u$VUY[hN  j   V$   u    f M{4D=   s04P4WZ4F G;uu    tG Pj h>4  h    1       e[^_]UWVS]} PPhw  j  ePPj 3tT3EjPEPV    PPuuh.  h  hq  h       u
    G  PU؍EPEPE܉    )Pu"E+Eh    jP3V tV   WW3V    u$VoY[hN  j   V$   u    f M+{4D=   s04P4WZ4F G;uu    tG Pj h>4  h    1        e[^_]U  j hh  j h6  hx  j h  j h4  h  <   j h  j h%  h  @   j h  j h|1  h  8   j h  h  h)  h%  4   j h1  j h%  hf  0   h    hr  j j h  h  ,   j h  j h  h  $    (   ED   Uuk5(   X58   Z54   Y50   X5,   X5<   X5$   X5@      m                                      premature end of file %s hibernate header has incorrect magic number encrypted images aren't supported yet hibernate image is empty entry point 0x%x
 xnu loader/xnu_resume.c image at 0x%x
 filename expected efi device-properties model ACPI compatible firmware-revision firmware-vendor firmware-abi EFI32 platform FSBFrequency fsb GenuineIntel fsb autodetected as %llu
 xnu loader/i386/xnu.c configuration-table %08x-%04x-%04x-%02x%02x- %02x guid table runtime-services eip=%x, efi=%p
 debug all Press any key to launch xnu gfxpayload auto %s;auto Booting in blind mode alias Load `device-properties' dump. xnu_devprop_load ACPI_20 filename expected you need to load the kernel first stretch name val=%p
 xnu loader/xnu.c chosen memory-map DeviceTree / %s%d /Contents/ premature end of file %s Driver- RAMDisk no suitable architecture is found DriversPackage- directory name required console,root,local-root,network-root all - OSBundleRequired can't parse %s key /key /MacOS/ %s:%s
 %s:0
 CFBundleExecutable string .kext Contents Plugins MacOS Info.plist XNU.DeviceTree. endcode = %lx, startcode = %lx
 couldn't find entry point Load XNU image. xnu_kernel Load 64-bit XNU image. xnu_kernel64 Load XNU extension package. xnu_mkext Load XNU extension. xnu_kext Load XNU extension directory. DIRECTORY [OSBundleRequired] xnu_kextdir Load XNU ramdisk. It will be available in OS as md0. xnu_ramdisk Load a splash image for XNU. xnu_splash Load an image of hibernated XNU. xnu_resume mode Background image mode. stretch|normal        qh" <o      0-- '?M       LICENSE=GPLv3+  macho bitmap_scale extcmd boot video bitmap relocator xnu                                                                                        	    8  -       9  |                                
                             )   A*  U    E              c              t                                                                                       T       	           	   `      	 !             .          	 D             [             q  T      	                                                                                                    #  e  /     5         G  d      	 \             n             z                                         c  ~                                        	         =    +     Q             _             m               (                      
                                    Y                                            "             .         	 >     	    X             j    (     |               U2                                                          	    f     %  {
  F     :             [             l  .   ,    |                              n                                                                        X      	   
4  4                  ,             >         	 Q             c             s               >(                                                               M       3  4                               9             C             X             f             |         	   \      	                V
  %                                                                      #             0             P             l               Q  g      grub_mod_init grub_mod_fini grub_strlen grub_xnu_load_kext_from_dir grub_efi_finish_boot_services grub_macho_close grub_macho_load64 grub_puts_ grub_macho_get_entry_point64 grub_efi_system_table grub_env_update_get_sorted grub_strcpy grub_xnu_cmdline grub_xnu_is_64bit grub_xnu_relocator grub_strrchr grub_xnu_devtree_root grub_video_bitmap_load grub_relocator32_boot grub_xnu_arg1 grub_xasprintf grub_realloc get_virtual_current_address grub_video_set_mode grub_video_blit_bitmap grub_xnu_devprop_add_property_utf8 grub_memmove grub_device_open grub_xnu_find_key grub_cpu_xnu_fini grub_xnu_bitmap_mode grub_macho_size32 grub_strdup grub_divmod64 grub_file_get_device_name grub_relocator_alloc_chunk_align grub_xnu_heap_malloc grub_macho_filesize32 grub_macho_open grub_xnu_heap_target_start grub_xnu_devprop_add_property_utf16 grub_xnu_align_heap grub_tsc_rate grub_snprintf grub_macho_filesize64 grub_xnu_scan_dir_for_kexts grub_unregister_extcmd grub_xnu_boot grub_dl_ref grub_file_seek grub_xnu_free_devtree grub_relocator_unload grub_errno grub_memset grub_getkey grub_xnu_bitmap grub_xnu_writetree_toheap grub_macho_load32 grub_cpu_xnu_init grub_register_command_prio grub_xnu_fill_devicetree grub_macho_get_entry_point32 grub_efi_secure_boot grub_unregister_command grub_file_read grub_xnu_devprop_add_device grub_xnu_boot_resume grub_efi_set_virtual_address_map grub_print_error grub_xnu_resume grub_zalloc grub_strcmp grub_xnu_create_key grub_strchr grub_malloc grub_efi_get_memory_map grub_file_close grub_file_open grub_xnu_stack grub_xnu_unlock grub_macho_readfile64 grub_real_dprintf grub_xnu_heap_size grub_device_close grub_macho_file grub_fs_probe grub_xnu_create_value grub_relocator_new grub_file_filters_enabled grub_strword grub_error grub_xnu_devprop_remove_property grub_xnu_lock grub_list_remove grub_video_get_info_and_fini grub_free grub_named_list_find grub_dl_unref grub_macho_readfile32 grub_xnu_darwin_version grub_xnu_entry_point grub_video_get_info grub_cpu_xnu_unload grub_register_extcmd grub_list_push grub_macho_size64 grub_memcmp grub_loader_set grub_env_get grub_video_bitmap_create_scaled get_physical_target_address grub_relocator_alloc_chunk_addr grub_xnu_devprop_remove_device          h       &   X  ?   a  I   a  S   a  \   V  |   I     U          U          c     U           ,  h  4  `  ;    F  U  K  =  h  x  ~  U            ,    U        w    :  5  I  K  :  ]  U  f  =  v    }  c    I    U    0        [    W                m    Z          "    '  Z  1    6  K  ;  t  @  e  J  =  d  #    S    =    S    h    h    h    =    q    i  )  h  2  h  ;  h  C  f  _  f  t  h  }  h    h    h    h    h    O    S    h      
  q  ,  )  6  =  G    V  S    h    h    =    h    h  .  S  =  =  a  S  z  h    =    h    h        c    V  	  =  	  S  ,	  I  <	  U  A	  =  X	  U  	  J  
  1  $
  h  E
  h  \
    k
  y  
  W  
  m  
    
    
    
  l  
    
      Q      H    N  _  \  =  r  S        h  !  h  *  h  :  h  h  h  ~              _        )            _        )            Q        _  <  S  P    b    m  _        S            _    S            Q  !    '  _  A  S  P  =  q    v  u        s    3  s  *                Z        Q      <    D  4  V    d    u    ~  4    Q        _    S  	      _  -  S  O    T  s  g    l  s        _            S            Q      	  _  #  S  2  =  :    N  E  c  2  v    |  m                Z        u        b            ?  	      b  /  -  c  >        u                     =         h    n  0  @  :  '  R  v  f  '  t  @    v    @  b  !  n  M  t  =    g    M        =      X  T  d  =    -    A              #  0  +  [  v      [    0  &  W  5    :  L  ?  m  G    O  W  u    z                  D            H                c    N      .  [  8    H  c  W    _  P  l  '  x  '    @        @  >  >  K    Q  #  Y    e    p  #  x          >        >    #  #  >  p  [  v  0        x        [    0    [                Z    0    [    [    h  2  ;  D  h  S  h  y  P    %    O    )    h     2  &     +     0   Q  A     G   Q  Z   S  k     p   )     S     =               -            !  [  &!    -!  c  ;!    @!    E!  Q  V!    \!  Q  o!  S  }!  =  !    !    !  )  !  S  !  h  !  h  !  =  '"    C"    ^"    d"  s  {"    "  R  "    "  [  "    "  c  "    "  ]  "  U  #    #  5  &#  .  M#  V  e#  =  #  2  #  -  #  >  #    #  Y  $  k  $    -$    <$  =  `$  I  s$  U  |$  =  $    $  c  $  =  $  U  $  =  $  #  $    $    %    #%  [  -%    4%  c  C%  V  Y%  2  r%  -  %  I  %  U  %  =  %    %  c  %  =  %    %    %  [  &    &  c  &  V  7&  I  r&  S  &  U  &  =  &  I  &    &  h  &  =  &    A'  h  e'  U  l'    ~'  2  '  -  '  U  '  :  '  I  '  U  '  =  '    '  c  (  =  (  U  (    (    Q(  %  m(  ;  ~(  h  (  O  (  )  (  h  (  [  )    )  c  )  +  #)  $  5)  ^  B)  R  \)    m)  \  y)  h  )    )  [  )    )  c  )    )  )  *  =  '*  6  1*  h  l*    w*  S  *  =  *    *    *    *  +  *  $  *  ^  *  R  +  R  +    <+  V  X+  S  k+  U  ~+  I  +  U  +  =  +    +  U  +    +  b  +    +  b  u,  h  ,    ,  c  ,    ,  P  ,  b  -    -  b  D-  h  P-  )  -    -  P  -    -  P  -  h  .    ).    5.  S  B.    T.    [.    f.    m.    u.    .    .    .    .    .    .  Z  .  V  .  =  .  h  .  h  .    .    /    /  Z   /  h  )/  \  7/  h  E/    M/  P  k/    t/  P  /    /    /    /  s  /    0    0  S  &0    .0    ;0    G0    R0    a0    j0  =  s0  =  0  h  0    0    0    0    0    1    #1  6  01    L1    h1  )  1  [  1    1    1  P  1  V  1    1  P  12    D2  c  I2  =  _2    q2    x2  s  2  R  2    2    2  Q  3  R  3    83    g3  _  q3  h  z3    3  S  3    3  =  3    3    3  9  3    4    4    4     4  j  )4    54    E4  o  N4    S4  ;  Z4    `4    j4    t4    }4  <  4    4  0  4  [  4  X  4    4  /  4  r  5    5    (5    A5  Z  I5  `  P5    W5  =  q5  0  y5  -  5  l  5    5    5    5  m  5    5    5  c  6    6  2  6    86    D6    Q6    ^6  #  h6    |6    6    6  8  6  t  6  e  6    6    6  /  6  (  7    7    '7    ,7  Z  47  `  ;7    B7  =  \7  0  d7  -  {7  l  7  B  7    7  F  7  m  7    7    7  c  7    7  2  8    8    *8    78    D8  #  N8    b8    p8    u8  8  z8  t  8  e  8    8  G  8    8    8    8  D  8    8    8    8    8  D  8    8    8    8    9  D  9    9    9    9    $9  D  .9    39    89    =9    B9    G9  D  Q9    X9    ]9    b9    g9  D  o9    t9    }9    9    9    9  p  9    9    9    9    9  D  9    9  C  9    9  G  9    9  H  9    9  H  9    9  H  9    :  H  :    :  H  :    :  H  #:    (:  7  /:    4:  H  =:  &                       (      .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   C:                    	   @       hQ  `              )             x:  0                  %   	   @       h                 1      2       :                  D             @  0                  @   	   @       h                 J             @                    Z             @  h                 _              @  6                  h              A                                  A                	              H                                 h  q                                                                                      boot/grub/i386-efi/procfs.mod                                                                       0000600 0001750 0001750 00000004154 13417732100 0014661 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   U]U   ]U   ]UEp@1US]ESP@PRu؋]U} Eu
E    ]1]UWVS}u>/uF    tBRRsVu,EPSG@u    (EG8    G41Puh   je[^_]US]h    utE   ]E   C    1C    C    C(    ]UVS]jj uVYXEh     0tRRh+   j	1</uC    t1PuVsUuue[^]Uh(   XZh    h    Uh(   $    proc file `%s' not found not a procfs disk not a procfs procfs            8   B  l   .                         R                    LICENSE=GPLv3+  procfs                                                                 &          !                                                           1              >              U              `              l              y                                                                                     grub_mod_init grub_mod_fini grub_procfs_entries grub_memmove grub_disk_dev_register grub_errno grub_memset grub_fs_list grub_strcmp grub_error grub_list_remove grub_free grub_disk_dev_unregister grub_list_push  &     G   
  a        	                                        V    `    i    w    ~      	                                                               (     0     4     8     <     @      .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .modname                                                      4                       	   @             	            %      2       :  ?                 8             |  H                  4   	   @         X   	            >                                 N                                 S                                                  P  
   	         	              ,                                  0  \                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/i386-efi/testspeed.mod                                                                    0000600 0001750 0001750 00000004500 13417732100 0015360 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UWVS<E} @u	QQh    '8    t)Rj j pPPh   j)  Vá      E0   E    E    EȉUPVSW~	EUWUĉEj uu^_Ph%   uE}+u}̉$j h  WVuPh4   Ẽ9EuE9Et? j W}VuiϠ RPjRPZYPhN   S    e[^_]Uh    hZ   hp   j h    h        U5        s                                         filename expected invalid block size File size: %s
 Elapsed time: %d.%03d s 
 Speed: %s 
 Test file read speed. [-s SIZE] FILENAME testspeed size Specify size for each read operation  LICENSE=GPLv3+  extcmd normal testspeed                                                                              0                                                        	              
               1              ?              V              a              p              |                                                                                                                 grub_mod_init grub_mod_fini grub_get_human_size grub_divmod64 grub_unregister_extcmd grub_errno grub_file_read grub_malloc grub_get_time_ms grub_file_close grub_file_open grub_error grub_free grub_printf_ grub_register_extcmd grub_strtoul      1     A     H     V     `     u                                                    L    X    `    e    q    v                                                    .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                       	   @                        )                0                  %   	   @                        1      2       0                   @                                  F                                 V                                 [                                  d                
                                                	                                                  m                                                                                                                                                                                                                  boot/grub/i386-efi/progress.mod                                                                     0000600 0001750 0001750 00000004050 13417732100 0015224 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      H      4     (   U1҉WVS,]ECS=X    C  X      KsEU+P   T    w=   v
;su;Ku;s8  ;K4  EU+CS  w	11	v0j RPCS+C$S(iʠ  RP Ɖ׋S8C4Ed   E    	t%j RPd   kKdcRP E؉UPPj/3tP    s,{0U{0s,Wj ssUuuPRh   jPh    h    js0s,    P   )Ph   RVh    =    E؅   ODAGDG@9ws89sKuf;K4ua@t^WW <$ƉEWZYH+E	PWW$XZWh    M	Y^PWW$G4GD    t	WЃ?pCSC$ES(UCS P   T   X       e[^_]U        ]U        ]       [ %.20s  %s  %llu%%   %s ]  LICENSE=GPLv3+      normal progress                                                              o          ~                                                                             )              A              T              a              u                                                         grub_mod_init grub_mod_fini grub_strlen grub_file_progress_hook grub_puts_terminal grub_strrchr grub_get_human_size grub_divmod64 grub_snprintf grub_term_outputs grub_get_time_ms      &     /     A     G                       7    J    Q    V    ^    c  
  t    y    ~                  
              S    Y    _    t    x         .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                       	   @            	            %      2         "                 4                                  :                                 J               \                  O                                  X                	                                  0  
   
         	              8                                    a                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          boot/grub/i386-efi/tftp.mod                                                                         0000600 0001750 0001750 00000013714 13417732100 0014344 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UWVS8  SE艍ZYh   SXZjSu4f  fHPPS$  u~Ve[^_]UUB@RRz1w%z( uB,    H9HPwr9Ps]51]USÃh   h    @P    ]        USR3t0X3؃3]UVS  EX@$      VEXZh   VYXjVt7f  f@  Rjh    PYXV$  u$  (  Se1[^]UWVSH  E@@@h,  u
    z  SE艅Y^h  S_Xh  Sh  Xf  EH؊Qt/u9/t@A  S$\XZh   S$   $   Y\Xh   S$   $   \XZh   S$   $   Y\Xh   S$   $   ZYh    DP$    $    XD7Zǋ)PPt   E@<   y@PPh  j(  uV  E@@0h"   h<   h  hA   EV@@0tmPhL   h<   h  hA    1ҋGRPw7hk   h<   h  hA    (  W  h   h<   h  hA   E    t   uh
  P0$  u3h   h<   h  hA   (  r<$    xPPV$  t>$  (  4$   QQWSx t Rh   $Ph    F       TPuh   j=     t2$  (  b4$    MP Q8A41e[^_]UEU @Rf@fR)¸   f ]UWVSEX@EpH)h   h<   h      ffZ  ftfl     C   C   pE;psrPjh    VuPj j FPC    Pjh   VuWj j FPCEP9֍Fs	> t놃C    C    P11ɉC 12  h   h<   h   hA   VVEP(    (  t0FfPE+CfxIEfP+Cft^vC   PZYVjIPC1ɉVX(  `(  E@@x1wS؋K t  @,   QQjV   SK~+~ ;{SKsN9Kwr9SsyE@@@(   E@@@,   $  ǃ$      C9wF+FoR)RWVtlE@xjWUUp     @    P tWG@GGGIV8e[^_]Uh    h    Uh    tsize  blksize  closed octet blksize 1024 tsize 0 resolving address for %s
 tftp net/tftp.c Address resolution failed: %d
 file_size is %llu, block_size is %llu
 opening connection
 connection failed
 time out opening `%s' TFTP packet too small
           <             E     LICENSE=GPLv3+ net priority_queue tftp                                                                             ]
          w
                                                	              
               )              ;              G              _              k              ~                                                                                                                            3             D             P             \             n                                                                                                                                               1             F              grub_mod_init grub_mod_fini grub_strlen grub_netbuff_free grub_errmsg grub_priority_queue_pop grub_strcpy grub_netbuff_unput grub_netbuff_clear grub_priority_queue_push grub_memmove grub_net_app_level_list grub_net_udp_open grub_errno grub_priority_queue_destroy grub_netbuff_push grub_net_send_udp_packet grub_print_error grub_zalloc grub_malloc grub_netbuff_pull grub_real_dprintf grub_priority_queue_new grub_error grub_list_remove grub_free grub_net_resolve_address grub_net_poll_cards grub_list_push grub_net_udp_close grub_memcmp grub_priority_queue_top grub_netbuff_reserve grub_strtoul  3     @   )  J     r                           (  "    *    9          )                        &    "  5    G    p    }  )                                                  "    )    4    ?    E    L    Q    X    c    n    t    {                                            )    0    d    i    s    x      #                                    "                  C    P    h    m    w    |          &    "  $  $  D    I    Q    k    r     {      &    "      *    /          '    *        '    *      )    .    8    =    P    i  (                       		    H	    	  &  	    	    I
    d
    i
    n
  %  ~
    
  !                       .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   
                    	   @                       %             
                    -      2       
                   @                                  <   	   @                         F                                 V                                  [                                  d                                                                 	                S                               ,  m                                                                      boot/grub/i386-efi/raid5rec.mod                                                                     0000600 0001750 0001750 00000002604 13417732100 0015061 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (  
 UWVS8Ee	UuEȉUEu
      Puj uEE    	EԋE};x    E;E   }MkWuuuA(P u
EM u   tIB0@u		Àu4ǉE؉ÉU܉uЋu)ƃv23psr3psڋU܉ȃE9tGB2_@XE!u1e[^_]U        ]U        ] LICENSE=GPLv3+ diskfilter raid5rec                                   M          \                                                                                           5              @              L              X              b               grub_mod_init grub_mod_fini grub_raid5_recover_func grub_errno grub_memset grub_malloc grub_free grub_diskfilter_read_node      ,   
  ?               <    R  	  V    a  	   .symtab .strtab .shstrtab .rel.text .data .module_license .bss .moddeps .modname                                                        4   k                    	   @       0  H               %                                  +                                 ;                                  @                                  I                	                                     	   	         	                |                                x  R                                                                                                                                              boot/grub/i386-efi/tga.mod                                                                          0000600 0001750 0001750 00000010554 13417732100 0014141 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      d      4     (   USÃx uPsC$P,  ;Cus{x uJQjEP,  HuSUBC StRsC$P,  ;Cu!{  u"PsC$P,  ;Ct    K1]UWVS`  ]h8  j VXZj uEu
      WjVP  MVARPQ=       h    h   hF  h   ZYPPh%   h   hG  h   PPhG   h   hH  h   PPhn   h   hI  h   PPh   h   hJ  h   PPh   h   hK  h   PPh   h   hL  h   PPh  h   hM  h   PPh5  h   hN  h   PPh\  h   hO  h   PPh  h   hP  h   PPh  h   hQ  h   PPh  h   hR  h    <Uur#<vG<wǅ   ,ǅ     uPh  c  ɉO
L                !  <  jVRS=       1E؋E9  U rLtB1CH)񍅰  FBFF;UrG<[  N  f @  jVRS=     f  4v   Ev   PVPu܍9u18)9sH(P'H'P%U rLtB1;UrGE9r  H)ፅ  @BF@F@F<t<    )  jVRS=     O  1E؋E9!  U rLtB1CH)񍅰   FBFF;UrGjVRS=        1E؋E9   U rLtB1HH)񍅰uZFBFFF;UrG늃uPh   j,=     t3    u    e[^_]UE    ]Uh    tga: header
 tga video/readers/tga.c data.hdr.id_length = %d (0x%04x)
 data.hdr.color_map_type = %d (0x%04x)
 data.hdr.image_type = %d (0x%04x)
 data.hdr.color_map_first_index = %d (0x%04x)
 data.hdr.color_map_length = %d (0x%04x)
 data.hdr.color_map_bpp = %d (0x%04x)
 data.hdr.image_x_origin = %d (0x%04x)
 data.hdr.image_y_origin = %d (0x%04x)
 data.hdr.image_width = %d (0x%04x)
 data.hdr.image_height = %d (0x%04x)
 data.hdr.image_bpp = %d (0x%04x)
 data.hdr.image_descriptor = %d (0x%04x)
 unsupported bitmap format (unknown encoding %d) unsupported bitmap format (bpp=%d) .tga C         LICENSE=GPLv3+ bufio bitmap tga                                                                                                                                      	               ?              X              g                                                                                                                               grub_mod_init grub_mod_fini grub_video_bitmap_reader_register grub_video_bitmap_create grub_file_seek grub_video_bitmap_destroy grub_errno grub_memset grub_file_read grub_file_close grub_real_dprintf grub_buffile_open grub_error grub_video_bitmap_reader_unregister        @     p                                       "    .    3    =    B    R    W    a    f    w    |                                                                            0    5    ?    D    U    Z    d    i    z                                                                O    _            v                        (                                      
  "    '                .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   0                    	   @       D    
            %      2       d  H                8             	                    4   	   @            
            >             	                    N             	                     S              	                    \              	                                  	  `     
         	              8  
                                 e                                                                                                                                                                      boot/grub/i386-efi/raid6rec.mod                                                                     0000600 0001750 0001750 00000004214 13417732100 0015061 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (  
 UWVS} u]׉EM tBA2Z@MX։	΃uщ)փv13rpq3rpۋEU]E9t
GB2O@H[^_]UWVS1ۍ   9tt<    C[^_]UWVSH] EUu	}SEȉUEuE      SEtEV EE@9ЉE!EЋEE    @9ЉE!E	EԋF 9E   EFEtEEE;EtlWuuukF(P u0E؃SKEىE$0"}   E        EEEEE;F E!EI} r  } F(   WuukUuP uM؃S-  WuuukEF(        P   MSb   +Eĉ   WuukUuP    E؃S<$uuukEF(P    ESMċu܀      ҋ    14ȉUUE>E1E܉u؉UE"M$SVWuXu    e[^_]U1҉Ȅ         y	B   u       ]U        ] LICENSE=GPLv3+  diskfilter raid6rec                                                  @                                                                                     *              5              A              Y              c               grub_mod_init grub_mod_fini grub_memmove grub_errno grub_zalloc grub_raid6_recover_func grub_free grub_diskfilter_read_node                             
  ?    u  
              (    :      	            
                           .symtab .strtab .shstrtab .rel.text .data .module_license .bss .moddeps .modname                                                        4                       	   @                        %             3                     +             4                    ;             D                   @              D                    I              O  	                                X     	   	         	              H  }                                  R                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/i386-efi/xnu_uuid.mod                                                                     0000600 0001750 0001750 00000004170 13417732100 0015223 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UWVSLu} PPh    je  1}tPPh   6u
Mf Sjj 6EX5$   Uá       S   jh    S   jEPS   $   $    PRPRPRPRPRP
RP	RP?ʀRPRP0RPRPRPRPRPR UPh   j%RUPUt}u(QQRhV   $tyw @PPRvS1e[^_]Uj hZ   h   h    h        U5    UUID required -l %02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x %s
 Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. [-l] GRUBUUID [VARNAME] xnu_uuid   9֗ 0eCLICENSE=GPLv3+  gcry_md5 xnu_uuid                                                                                +                                                                       +              A              O              Z              u                                                                                                   grub_mod_init grub_mod_fini grub_strtoull _gcry_digest_spec_md5 grub_snprintf grub_errno grub_register_command_prio grub_printf grub_unregister_command grub_zalloc grub_strcmp grub_error grub_free grub_env_set            3     :     W   
  o     w                                        *    5    M    R    x                                         .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                       	   @       T     	            %      2       
                   4                                 :                                 J                                 O                	                  X                	                                   `  
   
         	                                                4  a                                                                                                                                                                                                                                                                                                                                                                                                                          boot/grub/i386-efi/read.mod                                                                         0000600 0001750 0001750 00000002700 13417732100 0014273 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (  
 UVSjt[1<tH<
tD3P^wQQPh    FRRFPSt뽃S3 u    $} ~PPES0S1e[^]Uj h   h!   h    h*        U5    %c Set variable with user input. [ENVVAR] read    LICENSE=GPLv3+  read                                                                    +                                                                        *              5              A              \              h                                                         grub_mod_init grub_mod_fini grub_realloc grub_errno grub_getkey grub_register_command_prio grub_printf grub_unregister_command grub_malloc grub_free grub_env_set            9     >     N   	  b     t   
                                                     .symtab .strtab .shstrtab .rel.text .rodata.str1.1 .data .module_license .bss .modname                                                      4                        	   @       (                 %      2         /                 4             I                     :             L                    J             \                    O              \                                  d     	   	         	                                                  X                                                                                  boot/grub/i386-efi/usbserial_usbdebug.mod                                                           0000600 0001750 0001750 00000003020 13417732100 0017225 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      0      4     (   U1]UVS]EuPjPj
V 1uPPEPEPh   uSV e[^]UUEUURj   p4Uj uUE    ]Uh   $                           W       LICENSE=GPLv3+ serial usb usbserial_common usbserial_usbdebug                                                                !                                                                           3              W              }                                                                       grub_mod_init grub_mod_fini grub_usbserial_attach grub_usb_register_attach_hook_class grub_usb_unregister_attach_hook_class grub_serial_unregister_driver grub_usb_get_descriptor grub_usbserial_fini grub_usbserial_fetch grub_usb_bulk_write #     ?     I   	  v                  
                                                .symtab .strtab .shstrtab .rel.text .rel.data .module_license .bss .moddeps .modname                                                        4                        	   @       X  X   	            )                                   %   	   @         (   	            /                                 ?             '                     D              '                    M              C                                  X    
   	         	              h                                    V                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  boot/grub/i386-efi/videotest_checksum.mod                                                           0000600 0001750 0001750 00000004574 13417732100 0017263 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      t      4     (   UWVS(h       RRh    0       u}Psh    St-Qh    hK   h.   j>h    h0   j  WQQjVE
   $c   XZE    hc   5    tRWj PPL4	  W>hm   2Ph    h   h.   j.h    h0   j  e[^_]Uh    hu   Uhu     videotest_checksum Unknown Regular 16 unicode font not found: %s 0 tests/videotest_checksum.c can't start capture: %s videotest unicode videotest_checksum  LICENSE=GPLv3+ font functional_test video_fb videotest_checksum                                                              3          M                                                                            	               )              O              ^              p                                                                                                                            .             C             X             p                           grub_mod_init grub_mod_fini grub_errmsg grub_terminal_input_fake_sequence_end grub_font_load grub_command_list grub_video_checksum_end grub_font_get grub_terminal_input_fake_sequence grub_video_capture_start grub_video_capture_end grub_test_video_modes grub_print_error grub_strcmp grub_test_register grub_test_unregister grub_named_list_find grub_video_fbstd_colors grub_video_checksum grub_test_assert_helper 
          !     (     8     G     M     Z     _     d     k     p     w                                                                                          $    :    ?    D    T    Y     .symtab .strtab .shstrtab .rel.text .rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4   b                    	   @         (  
            %                                 -      2                          <             3                     B             4                    R             C                     W              C                    `              a                                  t                	              D                                   i                                                                                                                                                      boot/grub/i386-efi/xnu_uuid_test.mod                                                                0000600 0001750 0001750 00000003774 13417732100 0016273 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UWV    h    5    }   uQh    h	   h!   j'MRURjPPth    5    h9   h!   j,"h@   uWWhG   h!   j3h   h#   j .RRhX   PY^h}   h   j7h   h#   P e^_]Uh    h   Uh         @       xnu_uuid_test xnu_uuid can't find command `%s' 0 tests/xnu_uuid_test.c %d: %s tstvar tstvar isn't set 944F9DED-DBED-391C-9402-77C8CEE04173 UUIDs don't match grub_strcmp (val, "944F9DED-DBED-391C-9402-77C8CEE04173") == 0 fedcba98 xnu_uuid_test  LICENSE=GPLv3+ functional_test xnu_uuid_test                                                                                                                                           	              
               )              ;              F              R              e              z                                           grub_mod_init grub_mod_fini grub_errmsg grub_command_list grub_errno grub_strcmp grub_test_register grub_test_unregister grub_named_list_find grub_env_get grub_test_assert_helper                     0     5     :     U     [     `     e     q     v                                                                                                 .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4   	                    	   @       d                 )             @                    %   	   @       L                 1      2       Z                   @             ?                     F             @                    V             O                     [              O                    d              _                                  p  @              	                                                \  m                      boot/grub/i386-efi/xzio.mod                                                                         0000600 0001750 0001750 00000037374 13417732100 0014370 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                      <      4     (   UVS]s@vX64$        C    e[^]UWVSӃ0j	EPWEx|u1UEԃ	EvE	   E1C    F|5 y*;us̊D.߄tk1 t1		SPE1ҋO_))SQWe[^_]UWVS,]s@C$@  9KwOr; @  sEvǆ @      ǆ$@      F    F    F    j j 6 @  1$@  EF E؍FUEԃ}    EC+E=    wFF    F9Fu%Ph    u6   FF    QQuvE܃wRRh    jsN1MUU9SCw/r;Ew(U))P)RNUQuUЃ)UU׃}F    'xCS @  $@  e[^_]UWVSHjL   h(@  uSeE@s@C    C4CC8C<   PPtRj j Ph   FuS4$1  F F    FF    {@PjG P7GubPPGPwuM{@PA4Q8RPQjUR7UUuPjh/   Rt;Rj j u        Yv4$$E  PA4Q8RPQjEP7uEԍ   EԋEPA4Q8EEEUăU1)EUuuQjEP7Ht
} 8U&E    E    EEt:UU|EEUUăEU뾋EUĉC4S8Vj j7؍e[^_]U   v     v  ]U              ]UWVSEUP1F  AE1}  )΃w0It*X   H)ك<8       Iv   1ҋux}܊\ߍO]   \{K		K	ϋM+qu)Eut4X      )}Iv       +MO1É   	ΉKKKE҉@;E)1ɃwKыUJ[^_]UWVSBZV )9vQSV(RGUPU_F$)^ )؉F$PD(PRe[^_]UW1VSLEU܉MG;EE  E܋UE    D   EċuUk)rE}u}봉ƃ1ۉE>uE    E    E    1 t1ECUEUuӊMUE t1҉w	dӉu    	ˋЃ  E1)؁   1% Mu޻   	։uuڊMJ!։uu!ދ]uu	É]ȋ]ȉűu t1ۉىu1	ЉE	ΉuЋuu܋Uԍ    E tЈCuwL[^_]UWVS1SMH;MwI|
u>\
|
	|
	+>)Ǎ\

\
D
Z[^_]UWVS(E1M̍H;M   tuك]   |}?ur4X]M		ً]	ً]	+;)ÍK}u	MԈE؈L([^_]UWV1SEF9ȉE   Zz	z	:	  t   uJE0   @)ށ?   @    @)	ÉBBZujZY[^_]UWV1SSE^9sqZz	z	:	߁    Hu;E8)  HBBZ눉Z[^_]UV΋MSË)wB$    4C=*Co CJCCh1C[^]UWVS]u{  uFVK$)9   &{  t1'  {uϸ     RQ{(WEFPC$FYXVuCt   { uVvM{tV+US$F)ЉFRs$FPW{$ uC   F{(CFCFC~C$F   FPPVuCFC$CFCFCFCw9s$؍K W{uC$C {  ne[^_]Uj8tUPU   MSUYw*0
B    B    B    B     B$    []UWVS@|= w0   G|   s      ؉   w|Ë   9s1G|f   )fD
EǇ         ))Ɖw|   ff)fG|= w0   G|   s      ؉   w|BË   9s:G|fZ   )fBD
EǇ   
   E   7))Éw|   fBE   f)fB  EǇ         E   O| U w0   O|   q      ى   w|
ˋ   9sO|f   )Ήf
))Ήw|D    ff)f;EaU+UЉ   [^_]UWVS:p+p9v)߉:pV)9rPp8NHJ71;H!KtًP9PsP[   ^_]UWVSÃ@l9Cds'    t   ;Khs;Kts   C\a   E܍  E؋Cd;ClS|E
     ;   	  }#    }䋻   }w*   S|p         Es|   E؉Ef   9s'S|   )}f   Ext^^}))щf)Ё s|   f   o     s|   P      @  CpHSh1tK\4   E+   #      i   }$  E      S|?E w0   S|   q      ʉ   s|ы   9sS|f   )։f))։s||?   ff)f   ^      );Er{p1tC\8   EE   MuM!EЋS|E w0   S|   q      ʉ   K|   M9s#S|f   )։fE'M|?)щK|)щ   ff)fE!E   6CdS\HKdCd9ChsCh   wǃ       	w   }s|   ؉Ef8  9sxS|   M)}ЋU؃}f8  
                     =        B  }))щf)Ё s|   f8  w*   s|   P      ES|   fP  9sP   )u= C|fP        C|   H   ǉ   Z))ǉf)E S|   fP           S|P   ǉ      Es|   f  9s:S|   )}Ѓ}f  ǃ         ~  }))щf)Љs|   f  )  Es|   fh  9s$S|   )}fh        }))щf)Ё s|   fh  w*   s|   P      Es|   f  9s!S|   )}f     1}))щf)Љs|   f                             MU   9
    E   K| U w0   K|   q      ω   {|
΋   9sK|f2   )ωf
))ω{|D    f2f)f2?aHw   F  ʉ΃   ?~k≓   S  }   ЉEE    S|?E w0   S|   q      ʉ   s|ы   9sS|f   )։f/))։s||?   ff)fM      EE9EKI     FS| w0      S|   y   ʉ   S|   )щS|!ʉ      HT   u        EE    S|?E w0   S|   q      ʉ   s|ы   9sS|f   )։f/))։s||?   ff)fM      E}M   ;Khr1Z;Kts   C\8߁    w0      S|   y   ʉ   [^_]UWVS]uCEFV9z  ;w$`   HNt=   vD{x C   C    uNNK\N+NKpC`    Cd    Cl    Ch    
{ n     =   S   vC    C   J{ 2  =   C   .ǃ          1ǃ       ǃ       ǃ       ǃ       fB @=67  uC|ǃ       ǃ      T       C   xS~   SxS~   DC`HN   CCxS~DCC#HN<  ǃ       <,v-   񋋜      ǃ       J   <v	   񋋘      ȃ     H      1ǃ       ǃ       ǃ       ǃ       ǃ       fB @=67  uC|ǃ       ǃ         {!      t4V;Vu1s  z   ~   Љ   Ãk   FS+F9vЋKpSd)9wKlЉClFNE)Cu
{    S*   ))9v9v׋UDQWRPK;Cu'R?   ))Rj DPC   wC~     Eǃ          L  S   9  )C9s)SDWRPu   F)ЉFC    F+Fv_   V   SJ9rV   F   o     K+V9Y  )щKFF~)ǃ   S9vQWPu{~   N~M9NV9)ʋM)9щv׋SdKp)9v9v)CQWFPS\RCd9ChCdsCh{x uCdC`~~Cx   ;CpuCd    PWFPFFP뿃;}L      CKdEC`)ǃ{x t!;KpuCd    RWC\PFFPCdC`E~)Cu<{ t   c    u    uC|ǃ       ǃ      )F9FF9FC9C    e[^_]UVuS   w9h$o  t#t#VC\uS1sx؍e[^]U   SQM]whSxɃ҉Ctt9sRRPs\t1C\CtCxCtǃ           C   Cp1C       ]USP]{x ts\]]UWVSx MuF@    @    6}
AH1ރ t1	p	xy?Ht};Mrut   @       1ZY[^_]UWVS1ۃ@zNd)      tSWUPv\QUNhtPWFPv`Qe[^_]UWVSÃSdMsh} H\@`u։ȃ{X ubt^~@wXPEVVE܉U$V URPCP{lCX   t} tSCSSCCSCG9Gu1   } u
{p uC}     KuCp9s G;GtɅt8TuA@GċCdts\PChts`PCX       C       e[^_]UWVSÃ   Ow   ))9vPVQ   P1w   ;      uǃ       e[^_]UVS]          Cx    C    Qj,j P         j(j PCd   ǃ       ǃ      t&s\PXCd   PCdZ   PCX    e[^]UWVS<u}~t tVG_EЉF   E   ]̉Eȋ	w$   3  Pjh      P^
  h7   Fht_xW
  j   R]SP   E   Eኆ   E⊆   EFhpESP
      	     <
	  Ѓ<մ    u	  FlFht&p$F`	  VhPR      Ÿ   Vp4Ŵ   Fd   ^p9XT	  p$F\uSFdp$   u*Fdp$   u(   Xv\Xv`  Fdv\PFdY   PFd[   PFd    Fp    FX       G;G-  uPWF            ǆ          :     PFh   thx  R   R]SP      U㊔   U⊔      UEFhpESP     ǆ      >  @t4Mȉ      nH  FVF|   F|ǆ       y7Mȉ       H4  FV      ǆ   ǆ        u      )we        )  P   RR   P  (     P       u  농X      !\  P      E  9I     PP   P          9sP       t  ǆ       ǆ       ǆ       ǆ       ǆ          G   FGFtPW    PPW  O1ۃEԋF+N            EċG)1      ;         .  r	;N|#  ;     r;   	  Vdt]PG)PGPv\RVhtNSG)POQv`R}     F|ut;     ;           ut;   t  ;   h                 1ȋNp1ȉ         Fd         tQju   P          ,G;Gx  HO<             u   1ɉh#     GEԍ   MԉwRtEԉMԉ     t7r
tN   VF;           ;   tZ  FV      ǆ      AF   FdV   tRjS   P      ǆ               HO<   G+V   t;Gu։1  Fdu         PFdY   P      9     ;        9        ;     FdX   P ZEԋFd   P UԃSRP  Q   V  ǆ      	   aPjh=      PG  Fht_x6  j   R]SP   E   Eኆ   E⊆   EFhpESP               	   	   	م   9          Fl8   u{   ~t t(uG9Gt]]Љ_]̉_Ou!];_u];_u~x tFx   *Fx    !   띸   떸   돋E늸   냍e[^_]UVuSh  tpPh  j S1Ct$  t7V  tS  S1e[^]USP]tS  X   Z   Ys\Xs`X  ]]]t  }                                                               B  d            8   7zXZ   %  '  (  *  ,  ,  ,  -  .  .          7                      @                                              F       xz file corrupted or unsupported block options YZ xzio CRC32 YZ CRC64 SHA256            2                              LICENSE=GPLv3+ crypto xzio                                                                                                                         	              
               a                 $       *              H              U              \              i   y0       u   )          !            y                     r%                       I!  Y        E  D                     1  d                               %             ,             8             D             T             n                              o                   $"  (                   grub_mod_init grub_mod_fini xz_dec_reset grub_crypto_lookup_md_by_name grub_realloc memcpy grub_memmove xz_dec_init xz_dec_bcj_create xz_dec_lzma2_reset xz_dec_lzma2_run grub_file_seek xz_dec_run grub_errno xz_dec_lzma2_create xz_dec_bcj_reset grub_file_filters_all xz_dec_end grub_file_read memset grub_zalloc grub_malloc grub_file_close grub_file_filters_enabled grub_crypto_hash grub_error xz_dec_bcj_run grub_free xz_dec_lzma2_end grub_memcmp         !  "   &  -     T              N                  $  +                          &    &  F    _                  (                &    &          [    k                  "      $    .  "                      8    p        )    }        2         f                     d          b!     x!     !  &  !    9"  &  H"  &  #    $    $    %    %    %    %    %    %    %    "&  #  Y&  (  &    &     &    &    &    '     .'     N'     i'  &  r'  &  {'  &  Y(  #  (  (  )    <*    *  %  *    .  (  /    /    C/  #  z/  (  0     0    0    0    0    0  &   1  &  &1  '  21  &  >1  &  G1  &  P1  &  \1  &  k1  &                                 `     d     h     l     p     t     x     |                                                                                          .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   t1                    	   @       7                )             1                   %   	   @       8;                 1      2       2  M                 D             3  (                  @   	   @       <                 J             ,3                    Z             ;3                     _              ;3                    h              B3                                  H3                	              5                                 0<  q                                                                                                                                                                                                                                                                                      boot/grub/i386-efi/zfs.mod                                                                          0000600 0001750 0001750 00000116774 13417732100 0014203 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   US   Hkػ   1[]UE     @    @    @    @    @    @    @    ]Ut!tҋ       1]UE   1]UWVS˃xuQ}h    h   h  h   EU tkt	K_  E      a  W  ¹   ]1E )с  91  t<  ϊ@^؉ЉU1҉]   1  2    1+<  M    M1҈E  1҈EE  z1҉ƋE1  aEEEE;]B  uU9M/UEF4MU3EEHCMUǉM1뗋M1ۋEEȉEE   1M  CuރE}uEE }E E E E E EEEEE    	E}EU< uB~u8E(   E	   1  ;Uu kE1T(ȸ   +    >E14@uE1u@u77Fuf1E0M1FuȃEwEEuE}eE1DEUMElM3ECu0ۊMMUECM3ECuE땃}EEEЉEE   uȍME    E9E}`E1EEUM>8M1؈>Gu1ۋEU<MM1CuEMmm}v1;]}w1}T@u1E10 EEET=ċ0E8GM3M0uكuCEA   E&   e[^_]e1[^_]UWVS\E(U0}(
(   ]w
(   u1u(hP   h   h  h   u(hn   j1  ]{ tO]4}ȹ   \؍s{uMu4Q1u,WVR{(   uȹ   uȍ}M41ۍEPu,SQRփ 1}(
RH PEPEP1   Eph   h   h  h    uuuuuuuuh   h   h  h   0u$u uuuuuuh   h   h  h   (h  j	e[^_]Å   U҉VSuP 
ʅh-  h   hL  d
rt{  B9whU  h   hW  =ZÍC9vx
L9s1hU  h   hf  h   XZhD  j	11e[^]UWVS(RUM>u~w1Rhf  h   h  h   [^hD  j	   CSHL;Mtډu   9tv<: uQWuURU܅uƋC3ffBPPh  j	MMM} U2t}   1ɍe[^_]USX9r)9Ӊvt[]UWVS@   NU1HE;u}bwwwWh  h   h  h    } uGWÉO_uSQW@UuF1   e[^_]UQRPUWVS}E]EE؉E;}r;]srPE)Pj S^;]syA?FU)9~֨@uyRGVj S뤋E)9pW؉[|7넍e1[^_]US]Suj j uu 9t!=     uPPh  j    1]UWVS   x|tWr   3  x|I(  @  		u	VVh  /Suuj j RP1   y t11JPPh  j	  i   |PPxO uuDt        C;_rǣ      Y$CvVSh9  j뚋G1҃IUUEpE)޻   \EuVR|Px t1RPW$ t1ƍ4v   O   MMDMO)9ȍPtr	AtUtE    `U)É\XpX\p   _1҉+O$$Pu.G|Hx+O tЃ9ƃ1ҍEPxR|SOhǅl     t1hllhO P;phvphuuHLR|PxPp Vt1RPhR  h   h  h   O8HLi]   _  t1P   T|H`h!#xPT  ];_$  ؋`E        \h\\\  1}   =   t1ǅp    |  1Ȅ      y	B   u뼋G1ҋOd|ǅl    `phx t1hl1$u!|x+O tЃuVd`hlRPOiu   hw h t1   Ndxtt!΋d#|	Ɖ`h	``t1W$T+p;U2          p;]`pDCO1+O$Oxӥxx;Ev	Ex1t9uu/;E   xE)EtXt} u@;Eu   U19Tu@;EuA;Et<1ɋ}9wt\\\ASS+TEPEPED  MERRPTEPE1!  PPh  hF\`)p:ǅp    p\;xDvxpLt	t uQUt	Ȩt	KB0A1)ƃv414t1t19t5201Ft   1uދ]h  ;hupE9p;Ot4  ֊0CAƍe[^_]UVSË t	1v?    u6C(t/P!;ssi   FC s e[^]UV1S;X  si   FT  1T  XsZsY3;L  skP  F0߃P  $e[^]UE@@\5  1Åu*USH0X4؉@	[]ËP4@0@	UVSppp0h  h   hO  h    uK[ʉCSe	[	^]UW1VSÃEU䋆X  E1;Et9i   ST  y u!9QuPUPEuusu8@1OtR   RVhb  뛅uPsh  j	1e[^_]UWVSLEUME0E1SuSS  } u
CC]  Wj j EP$   Eu
    G  }  u  Ph   h  h   UY^Mh   u   }uȋCE    Eȉ   E    E    EЋEUԋPT@Ph   uĉE؉UWj 0uL} Eu@0x4EuE   EFTFPt;MutuĉEE<!EMuuNRMRUuut2        ;]@uPPh  j	    1e[^_]UWVSÃ\ȅ҉M}ȹ   s`U     uC0C4ECTeCPUE    t!} uC4C0@Ee	U(} EtEU}vQuh  EtO<    uR4    h)  jÃU  EPEu!    .  uUEĉ}WhQ  h   h6  h   MutuE       }P)Pj u   WuuV u$@t*h^  h   hD  h   XuEL  }   =     tE11E    1ҋL  EYPhr  h{  j	u  ukP  } p@usTECPuuff9EvB;Uu*ƋEr9uwE9Ewr9MvۋE׋ME΋E	uiuE}      uKP[TʉCPSTWWRPh  h   hb  h   h  j	} uKPsTffʉCPSTukMP  VVRP1qqWh  h   hj  h   U0EP  uURUuuSpp0     t!uĉEE     Eu1ۃ}tmuMuu    uu}PEW   <$t}7     e[^_]UWVSXpUP@h   ẼMUE    Eu
      Ẻ   @HEȸ   HEE؉EEĉuEЃ}  ShQ  h   h  h   M}u t#u Eй    U}9tPE    }ԋGTGPulẼ    upfEp	VMt5       PVj j ۋEu
X0X4   } uPShQ  h   h  h   MuڋEj /ۉƋEu
X0X4hShQ  h   h  h   EuڍMj ۉƋEu
X0X4EEuEMȉE_1UċE9tP} tEue[^_]UWVS<}    Eԋ]UȉM̉}u
@E@	1ə v	Aw}̍AuȈE t1   HEЋE!EЃ{ t{Ph  usucE;C r[wE;CrQE;C(wIrE;C$s?PEh   	CPuC,}}    u1F  }E"  PEWV   h  h   h8
  h   SEPEPEn   h  h   h<
  h   YsXs$  Cu        C    RUԹ  EMC t1CS   t1C$ES(C,ERh   	EPuEu   EĄ8PPh  j	e[^_]UWVS<EX@xp;{Kr7w9r1E1;Sw#r;CwW)u3VuE-  4   u<  <  EԋEe	E    EЋEE    E4  E}    M1j EuuAQRP3ǉ    ESj PEyUUȉt'    C    C    C    C    \Mԉ}MuCS׉s{y)+u;uvu}RV)}Wuu)uuEe[^_]UWVSÃ(   hQ  h   h  h   C   MWQt@   MUui}  wuY[h  j	B    u         Ph   uSZu1e[^_]UWVS@  UM]jj V{W8  Wj ,   f tS7  t  Jt)QUQsdj +tuRRh+  j	]Pf
} uD<D8CD      	Ј1   u7} u8
4	ȈPPuRhA  h   h  h   sVue[^_]U҉SQPHu*	*	t	RRhS  ST1SPuPPha  j	]UWVSuUME]tVhn  h   h-  tPh  h   h4  h   eR;ks  FV;ksQ  FVks  PPvvssuQ    C 1e[^_]U}VUSEMu)Hu&Rq[u^EU][1^]UVS    x( uPPh  j&Lh  Ph  j j v0v,F(0 1t3    e[^]Uh  PɅUUUEt8 t]1]UWVS   M܃UUD01ۉE;]sOuk})ރv   E܉UU9},EW} ufWW1	   [^_]UWVS\M   EUԅu
@E@	E     vEwEԉukUԋBBtQQh  jMuи   /v1NN0   }E    E    E   RRh   j	1  E   EE   uEȋƋ|ffE    E    E9E   } EuluƋEԋtff9uX9uTEU EԋŰH E t1҉	RFUEȋ<Lq]ËEԋ4؋\뤃EU aE9EaPuEPEPE}t        d} Gu/   	  G=   x  f  EifE  EEE];]@  k];(  } ufCCE@PU҉ufCCE҉u
CCVQMPt	V   CE CK
ȃ} uPMUM҉Eu
CCuQMP%u5RRuCPC
PuCPVU tW   /VXufEWe[^_]UWVS,    Mu
XXP1u1ɍE	PEP1҅   } MuQAh  h   h	  h   ẺUẼU=      u.h#  h   h	  h   UY^uEWECJuRh.  Eh   h	  h   E}UuԹ   EPh$  %ZuPPh7  j	1ҍe[^_]UWV1SÃ0u1ҍEPEPc   } MuQAh  h   h	  h   EЉUEЃU=   uSu	QQhH  LJuBh.  h   h
  h   Uu   WV3ZuPPh7  j	1e[^_]UWVShRhi  h   h	  h   UȉM     u
^^P1u1ɍE	PEP9d  } MuQyh{  h   h	  h   U   U   2  h#  1h   h	  h   EEE؍x@N}̍{}E;u   } tZEЉEEȋ}t*t#ˍyw zw 9uE@̍Sw  Pw 9PPuuE@t<} uURE̋@}G1F8Wuh  jPh  h   h	  E  J  h.  h   h	  h      }؅u
FF	E     vEwʉ#  GPWTEС    Ut}    EȉE      11҉EUE   ]UME    MڃUUuuĉEڃ %B׉ʋMWlEEUU1u1]Mut]]]]뒋] Y]YÀ	c@EȉEEtwUԍYEw 3ME      1Ë   ]1ЉE븋Et03]ЋUԋEۋ   E1   M1ЉEǋEE    EċGGtVVh  j   _ E    E    G$t!UĹ@   E) t1҉EЉUԋE̺       Hu EЋǋTEЋǋDM̻   /wSSh   j	  QuMQMQ  EuEЋFu   	t	   tPPh  #F=t	~tWPPh  j	W  }̹E   UċE)*N  tЍOI!f\N0E̍H   D0E]}̹E   UċE)*N  tЍOI!f\N0뷃} CKu`ʆ;EtQ} f[uf  E9ÉE|PPh  +k];tPPh  ;UuCPh  h   h  h    } ufCECCEC1;u   }kU)U}vE   ;E.EEE@} Et1Wuuu0;Ut/EHw }yw B9t)ȅu} uEf@;uE@uB{u} uf{
 f{
tQQh  SukUBRF1Ruh  juEEЃPh  h   h	  Eh   uEPPh7  j	e[^_]UWVSӁ0  h   PW1V   ]䍝SjubP  Pj VuDQVSh   u"R1V1ҍPP t= uPPj h%  	#e[^_]UWVSÁ@    jj P}uo   EuLPTTTPLTPV}WjF0t#h0  h   h9  h     EM  P1V   WjEcth0  h   hD  3P=  Pj V=t-h0  h   hK  h     EQVWj th0  h   hR  뱀,   f tD@Ft%RRUVj dt   PPh+  j	    mPf
} uD<D8C1u2} u8
4C1e[^_]UWVS0  ]MSRB0UVj t        1   1uzR   Rs  G  uu$ @XuUHFsPV4$؍e[^_]UWVS@  ]MSRB0UVj t        1O1uDR   RsЉ  s  uPsRue[^_]UWVS  j@Pu4E    Vǅ    ǅ       WWj/)PE     G$u    G  򋵠O> C</tUtQ)Vu      NSD7 
ǅ     u
ǅB  ShD  h   hr  h    h  h   ht  h   EY0ƉE0  hQ  h   h  h   1u   j  h  h   h  h   XZq  j u~Z  h  h   h  h   uj$  h  h   h  h   >    </uF   /ttF򋅬     @u!L`TdT`LdPujfuOPPj uRu,PuWju!1S  h  h   h}  h       @u$P@DTTH@D   hQ  h   h  h   uWjEt_     hQ  h   h  h       p҉u0H@          @   =         1   󫋅҉F@u$2   2   TPLTVuVj   P~  Pj uu         ǅ    ǅ    't#h0  h   h  h   	  PuVj6]t$X	     Ǉ      u'k  $  ;	  $  u        @u!L`TdT`LdPujduLPPj uLu%PuWjt0^Q    U     hQ  h   h  h   E 8   h    1ɺ        xSuWjB   Q  Qj u+    w	vXZh  jO  P  Pj u  u$        ǀ      ǀ      P=  Pj uu'PuWj Tt  txHF    /u$r9u<.u</urt뽍r;uC<.u?z.u98 t;SPPh  jO    {t_Xh  j  VxVC  u  h  u
      SuPj       pɉu)      ff      
"  Nɍ   u|Xff
|T@u0  1ۉ   ɋupfpW	t,D71ǅ    ǅ    |z      Puj P v  9v)󋅄9|w   D$  +t> 4$KX>/uP ;t3S{,&f{ tCDDECt*VV  u  j t  QQh+  j	     Af
    u#4|ffffT
      u|ff
|D8$u        > 4$OZ>/t;S ;t;SUJuS  {1ۉt3SރÃXe[^_]U   V1SUj ]EPEPEt9}wPPh  j	 U   RCe[^]U	   VSUj EPEPE苾t^EwPPh  j	CU
9vÃCPtEٍP  1e[^]U   SUj EPEPEt7EPtU   ¿MCU贿1]U   EUPEPEPE蕽tEU   WVS UEPEPEPE_   E9ErRRh  j*]1uG;}tLyPPh  j	=0x@PtU   ҾFƾ1e[^_]UWVS˃Duh(  REEu
      PCPh-  WtPCPhF  Wuu[^h0    EQPhK  WtEC!tsuXZhR    C    PPhg  uu{(       PPhl  uttUCR9S  M;A  A(q4{4C(A,Q0C,ȹ*   S0󥋀      Ẽ`   u`  C}GE    z  PPhq  uuPPhq  uuA   pVVhx  ut̋uPVh  j4$         EQPh~  WuuXZh  .EC$PPh  Wu[^h  j	   {  uCi   PC E    Ruh  WK iU   suuщUȉEċEZYuĉEEtuԉEE/C UȋD;CvCE9uuu1e[^_]UWVS  h   XxDtu    z  h    Put    ?  XD00]Bu@tǅT   
ǅT   ǅp    p111҉	 K~8X0%  88<< Wt4   8 h   j j RPX0 t          ph  h   h  h   E ǅ    ǅ         M  ܿ ؿ =zuzt2zu=ztQ[^h    1h  48Q   Sj	 	牅ǅ    ǅ    ǅ    ǅ    ǅ    ǅ    Ҵ09  h  h   h  h   Ph  u*=       QQh#  r  h3  h   h  h   uXZhC    h`  h   h  h   Php  u*=       WWht    h  h   h  h   u[^h  5  h  h   h  h   Ph  u*=     5  QQh    h  h   h  h   Ӄ w vF  	t:XZj j!h  j    h  h   h$  h   PhF  u#=     uSPPh	  @WPh	  u5=     uVVh$	  j	    I  h8	  h   h:  h   x   t%9    u;t	SShI	  Nx    QQhW	  u'XZha	  j	p  E     PPh-  Vt"xX  1!WWh0  j	   i   9yt@x;T  u9QuSjuPx   x@;\  X  v?D \  i   RRPST  uxT      cxPh   j T  iX      PT  iX     ju Px tVX'  Vhy	  h   hS  h   h     1ۍ   {ff2v2   SxVh	  h   hc  h   Ƅ=   ttVh	  h   hf  h   Vh	  j*h	  h   hl  h   X jE8 ^	d
ǅd
   dǅH   ǅL   ǅh    ӽHӥLǅ`    ǅ    H9`y  d`84		hȁh  ll thlȋ8p|5 	u3|P@Ӊ w v5  	tffff 	u6|FN	t w!v-  1	t#uPPh
  j	hy1Pj j PۋhluL   |Sj m0hh t            |1ҋN^5 F5 Gډ\uȆىËFvu9  w9  |\ HXuȆىËFvu9   r9   |\ H X$uȆىËF v$u9r_w9rY|\ H X$uȆىÅG w$u9wr9w||`u u3h#
  hh   h  h               `Wh   <PD t xVh   d  Pt[PFpT9p1tXPZYh7
  j	e[^_]UVS8 E    uPPhS
  j   h     ǀ\     h      ǃX      T  E$u9d  UM5 h  PPSR򍃌  t	*}  w%RRh^
  j	Yuӵ1vp   w2l    w&Ph   uC0Pu  Eىt믋  0  uǃ     e[^]USQ]E    xu    4d   h  t  1  Z[]UVES]    t*P    hl
  躴1; u    e[^]UVSEá    tK`  Utn,PPht
  uUZuF    e[^]UWVSuFbá      WWSEPE4  8  t^  } tճVj@hy
  4  t軳SSh
  j!  8  <,   f>   t7  t  E:;  t%QQ4  Sj   M]t   RRh+     Myf
4   uD9T99T9D9K<us4   7  u$p    TX  p  DXV4F8^@F    F    5  1PPh
  j	e[^_]U1   WVSL  EEEI  4  PPSPE8  ?     P   PS  󥍕ЉH     WuRh
  Ut觱1  4   7  u>t  ~N V$Ffft  pP H$@VSWjC0读t  ٍ,8  VVSWjbt趰   } uL`TdT`LdWSPjtP]V]7  64  t)PPh  j'Pٺ!  l    e[^_]US ut[8 tJU1ɍEP)	uS        #tS} uS1]UEVSá    tU`  Ɖ>[^]UVSEgá    t=PPSEPE4  8  $@  MƋ<  Qe[^]Uh    h    E  Uh    UWVS}uEE uuƉuྀ   ;E   ;U      u
f @];ErEW  E	   [^_]M߅tP˃]X	ىӁ  )9r;Ew]؍\]9Ms;UjAYBZ
@BW;Uy1[^_]UWVSLUE]JE	J	J	ȍH;M  zƋUuĹ      }}uӉCEF]E;MY  1A   Ƀu;Es   u	@X
;]v;]  
<;}v,4;u  WQPR;uĉ      JHJ9r)ډ));M   Uu;Es@pu   )΃-ysQSQSIK)+|ȉ?{
13sU;Uv0;UwL^Y^;ur9s
AYF^;Uu^Y^9r+UU)yEq  E	   e[^_]e1[^_]UWVS1ہ<  
r	r	r	񉌝Cuҍ,u
zZZ1z
1zًZ1ߋZ1J9uXH0PXHxp14   G1ً1ً΋3!3ދ1щ!!щ11ى1ً@tOʉP߉xPPPPP<  [^_]U   WV   S   EPU]ǅH    Ɖ8?׉DD<1)1ҋH9sHPU$H@w9r1;DptMpƄp?8tƄ5p F닅88   <HLLFH tЃ5ou؃1@w9sp@Pgރ} PTuƉЃ} 3\CXuƉЃ} sdC`uƉЃ} slChuƉЉsCļ   [^_]UWVS4EUM]E    ȉEE    E    E    E    E    E    E    ;M   } u!1yffffQEU} u"qyffffAQEEUE؋UEUEЋUUԃqEЋUԃ} ME̋EUȋUǋE؉֋U܉EĉUuEʆUȃ} Cuffff
EUƉ׃} s{uEċU
u؋}܉} SCuE̋UȆ
uЋ}ԉSC4[^_]UWVS,UE}uE    1E1E    E    E    E    E    ;}s8} u1EUMM]]MM؋]]܃ËM؋]܃} MԋM]Ћ]M̋M]ȋ]ωuȆу} Nuff
EUÉ׃} ^~uE̋UȆ
M]ʉ؃} VFuEԋUІ
M؋]܉ʉ؉VF,[^_]  
      
      
            
        v
    v
    v
  %  v
  ,  v
  3  v
  :  v
  A  v
  H  v
  O  	  S                                   g	jgrn<:ORQhك[/BD7q۵[V9Y?^[1$}Ut]rހܛtiGƝ̡$o,-tJܩ\ڈvRQ>m1'YGQcg))
'8!.m,M8STs
e
jv.,r迢KfpK£Ql$օ5pjl7LwH'49JNOʜ[o.htocxxȄǌlPxqrecovering %u buffers
 zfs fs/zfs/zfs.c singular recovery matrix too big matrix unknown checksum function %d
 unknown checksum function %d checksum %s verification failed
 actual checksum %016llx %016llx %016llx %016llx
 expected checksum %016llx %016llx %016llx %016llx
 checksum verification failed nvpair with size <= 0
 incorrect nvlist nvlist overflow
 incorrect nvlist header
 empty nvpair zap: name = %s, value = %llx, cd = %x
 premature end of compressed couldn't find a necessary member device of multi-device filesystem non-positive number of mirror children raidz%d is not supported RAIDZ mapping 0x%llx+%u (%x, %x) -> (0x%llx, 0x%llx)
 unsupported device type dva=%llx, %llx
 unknown device %d little-endian gang
 big-endian gang
 couldn't find a valid DVA compression algorithm %u not supported
 compression algorithm %s not supported
 endian = %d
 incorrect checksum
 zfscrypt module `%s' isn't loaded no key for txg %llx
 no key found in keychain using key %u (%llx, %p) for txg %llx
 incorrect dnode type endian = %d, blkid=%llx
 alive
 too small osp filesystem is corrupt type=%d, name=%s
 bad ZAP magic bad ZAP salt Unexpected key index size %u
 Unexpected key element size %u
 member drive unknown org.illumos:lz4_compress external pointer tables not supported ZAP leaf is too small zap iterate
 micro zap
 fat zap
 unknown ZAP type micro ZAP where FAT ZAP expected looking for '%s'
 zap read
 file `%s' not found returned %d
 invalid leaf type invalid leaf magic invalid chunk number invalid chunk entry fzap: length %d
 invalid leaf chunk entry features_for_read failed here
 ROOT / fsname = '%s' snapname='%s' filename = '%s'
 root_dataset salt VERSION too new ZPL version casesensitivity can't resolve .. not a directory invalid uint64 invalid string trying to lookup past nvlist array incorrect nvlist array type id couldn't find vdev id guid ashift couldn't find ashift disk file mirror raidz nparity couldn't find raidz parity children incorrect mirror VDEV vdev %s isn't supported label ok %d
 bad vdev_phys_t.vp_zbt.zec_magic number check 2 passed
 state state not found check 3 passed
 zpool is marked as destroyed check 4 passed
 txg txg not found check 6 passed
 zpool isn't active check 7 passed
 version version not found check 8 passed
 too new version %llu > %llu check 9 passed
 guid not found pool_guid pool_guid not found check 11 passed
 another zpool vdev_tree couldn't find vdev tree check 10 passed
 str=%s
 feature missing in check_pool_label:%s
  check_pool_label missing feature '%s' for read check 12 passed (feature flags)
 invalid uberblock magic No uberblock found
 couldn't find a valid label not a disk OSP too small %016llx name missing `%c' symbol not a regular file bad bonus type @ inherit on off label gang_header zilog fletcher2 fletcher4 SHA256 zilog2 SHA256+MAC lzjb empty gzip-1 gzip-2 gzip-3 gzip-4 gzip-5 gzip-6 gzip-7 gzip-8 gzip-9 zle lz4 lzjb decompression failed lz4 decompression failed.             $`  i^  w  3  ]  ]  Q]              
              
  *           
            
            
              
              
             
             
              
             
  LICENSE=GPLv3+      gzio zfs                                                                                         	    c  "        c                                  
                             )              <   m  W    G              V              c              p                 J  3        3c  5                                                                        	                           "  c       2  Ti      F  d  
    U             b             s                                         Ck                     "I                                                H  p                  *             4             B             V             k             z               KJ         hc  _              	   I  f      grub_mod_init grub_mod_fini grub_strlen grub_disk_get_size fletcher_4 grub_xasprintf grub_realloc grub_memmove grub_device_open grub_zfs_nvlist_lookup_nvlist_array_get_nelm grub_zfs_fetch_nvlist grub_strdup grub_divmod64 grub_disk_read grub_dl_ref grub_zfs_load_key grub_errno grub_memset lzjb_decompress zio_checksum_SHA256 lz4_decompress grub_fs_list grub_print_error grub_zalloc grub_strcmp grub_strchr fletcher_2 grub_malloc grub_zfs_nvlist_lookup_string grub_real_dprintf grub_device_close grub_error grub_zfs_nvlist_lookup_uint64 grub_list_remove grub_free grub_dl_unref grub_device_iterate grub_zlib_decompress grub_list_push grub_memcmp grub_zfs_nvlist_lookup_nvlist_array grub_zfs_getmdnobj grub_zfs_decrypt grub_zfs_nvlist_lookup_nvlist }                                 &  (    >                                            @    G    N    a  (                        &      	    U  0  r    w          &                &                &        (  2    7    Y    ^                  &        (               
      &        (  v  0        (  Y	    ^	    h	    m	  &  	    
    C
    
  .  
    
    
  (  
        .    I    P  (                  :                  &  S                    m        )        .    o  '    +    +    +    +    +  
  +    +  %  +  I    N  ,                &  i    n  -        (      	  $      &    -    3    =    B  &     +  G  +  n          (      J    [    f    k    r  (    $        $                &    +  +    U    Z    d    i  &  r  +    3            (  D  +                &                    &  4  3  I  +  o  $    +            +    +    $      k    p    z      &    +    $          L    Q    [    `  &                &    +  '  +    0  	    A    F    P    U  &  }              &    +    +    $      6    a    h  (      8     F   +       !    !    #!    (!  &  j!  +  q!    x!  (  !    !  +  !    "    "    "  (  "    l#    q#    {#    #  &  #    #    #  (  $$    )$    >$    C$    M$    R$  &  $    %%    ,%  (  >%  $  ]%    r%  +  %    %  !  &    '    '  (  +(    (  $  g)  $  )  +  )  +  )  +  )  +  *    *    *    *  &  *    *    *    *  &  *    *    *    +  &  +    /+  +  =+    D+  (  +    +    +    +  &  +    +    +    +    +  &  !,  +  /,    6,  (  T,    Y,    c,    n,  &  ,    ,    ,    ,  &  -    -    -    $-  &  -  !  .    .  (  ).    ..    G.    L.    V.    [.  &  .    .    .    /    /    /     0    )0    0    0  (  .1    S1    #2    :2    W2    \2    f2    k2  &  2  0  w3    3    3  (  3  +  3    3    3    3  &  3  +  4    4  (  ;4    f4    4    *5    5    5    5    5  &  5    5    5    6    6    '6    ,6  &  _6    d6    6    6  (  6    7    7    7  $  7    8  +  _8    8  "  8    +9  "  E9  $  X9    9  $  9  +  9    9    :    :    :    :  &  :    $:    .:    3:  &  P:    U:    _:    d:  &  :    :    :    :  &  :    :    :    :    :  &  ";    ';    1;    6;  &  9<    ><    H<    M<  &  <    <    <    <  &  =  +  =  +  +=    0=    :=    ?=  &  =    O>    r>    >    >    >    >  &  >  +  >  +  ?    ;?     T?    7@  +  C@  +  @    @    @    @  &  @  $  A    EA  +  LA    YA    A    A    A  +  
B    B  +  B    B  (  B  +   C    >C  $  PC    D  $  D    8E  +  bE    nE  $  E  +  E    E    E  +  F  +  F  +  F    F  (  _G    kG  $  G  +  G    G    G    G  +  G  +  H  +  aH  +  |H  +  H  +  H  +  H    H  (  VI    ]I  (  I  $  I     J    J    J  (  J     K    #K  %  2K    AK    GK  )  XK    ^K  )  pK  +  wK    K    K  )  K  +  K    K    K  !  K    K  !  ~L    L  !  L    L  !  L    L  !  L    L  (  L  +  L    L    L  )  M  +  M    "M    (M    <M  +  CM    JM  (  gM     }M    M  1  M  +  M  +  M  +  6N  $  HN    `N  $  {N  +  N    N    N    SO    `O    wO    |O    O    O  &  P  +  P    P    P    P    P  &  P    P  )  P  +  P    	Q    Q    Q    "Q    'Q  &  IQ  +  PQ    ZQ    _Q    iQ    nQ  &  }Q    Q  )  Q  +  Q    Q    Q    Q    Q    Q  &  Q  +  Q    R    R    R    R  &  %R    0R  )  ER  +  NR    \R    fR    kR    uR    zR  &  R  +  R    R  (  R    R    R    R  &  S    S  )  +S  +  4S    >S    MS    XS  )  mS  +  vS    S    S  (  S    S    S    S    S  &  S    	T    T  4  +T  +  2T    9T  (  ZT    `T  )  T    T  (  U    +U    ^U    U  +  U  +  U  +  U    U    U    U  &  U    U  4  NV    SV    ]V    jV  &  V    V    V    V  &  V    V  (  V    V    V    V  &  V  +  |X    X  (  X    Y    Z    [    [    [    [  &  [    <[    e[    v[  +  [  +  [  +  [  +  [    [  (  [    [  (  \     5\  $  \    \  (  \  +  \    7]  +  l]    ]    ]    ]    ^    9^    A^  %  O^  +  [^    ^    ^    ^    ^  (  Z_    _    `    `    `    a    [b    zb    b  (  b    b    b    b  '  b    c  '  c    %c  '  Cc    {c    c    c    c  /  c    c    c  *  Vd    id  (  8e    e    f    f  (  h    _i                                         (     ,     0     4     8     <     @     D     H     L     P     T     X     \     `     d     h     l     p     t     x     |                                         $     4     D     H     T     X     d     h     t             #                                           .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .rel.data .module_license .bss .moddeps .modname                                                         4   Zn                    	   @         h              )             n                   %   	   @       x                 1      2       Pp                  D             {                    @   	   @       `                 J             |                    Z             |                   _              |                    h              |                                  |  P              	              $                                 0  q                      boot/grub/i386-efi/zfscrypt.mod                                                                     0000600 0001750 0001750 00000012740 13417732100 0015251 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UWVS} u]׉EM tBA2Z@MX։	΃uщ)փv13rpq3rpۋEU]E9t
GB2O@H[^_]UWVS1ۃ@jREPjj }W}ĉ؉਀tEăjM؉U1B	BE9ttuC   uPjEPVe[^_]UWVS|E	t	  B     +EVPuEPEU׍pE 	E1;Et}    )@j}WEPu  uEȋEE    }EmE9E   uvE   }1W;Et    ׍])É@ju]SuQ  EًUuEU))[u]ډjSSu V  EPEȉ+M9t@ HjRuVu  }   Eu U  Qjj ]SujSVu      +}]uRjuSE E E E4Pjj SWuS.؍    0MjEPEPu  EE    xËE؉E9}   v   EQ҈uHU9uEUV)؉EMȉʍMEjPMQuM upMMUVȋM)؃EkE    1k0LHuUȍE } tEu M؍Ur	1   e[^_]UWVS   UEM]UU=   ptUt%Ph    h   h@  h    1  E   Rjh    8Pt"PEjh   @Pۃ E=   Dx  h    |u          Pj j uV uPW9vPGPEP4SVh  jEPwGPh     t        :  PSEP|uPEjpjtuHPEVj XPEP| th.   h   hu  ]PEjxPVu؋EQpjtjPEVSPEP| t(h.   h   h~  h           `xRjPVuh    PSEPVtV        량	?$1e[^_]UWVS@UjMu]؋uUMSU}$ Mu} u#VVhB   ju}C9uSjjEPE]SuVV 1҅tP;E }$ u9tPPh^   j	Bu1e[^_]UWVS}uu
 v    FPá    t&{sPVuCP      1e[^_]UWVS  ]~0E0tORh   RPyK35    hv       $^_h  Vu
       VUJy tg   09}LMZw ֍ZTOzw ׃0	~^	~W	ӈASj PW#y    u0҅u1҃9 QRPPe[^_]Uh   h   h   j hu  h       >             U5                                                      r                     h                     p       	                                  Unexpected key size %u
 zfs fs/zfs/zfscrypt.c key loading failed
 no decryption key available MAC verification failed Enter ZFS password:  Import ZFS wrapping key stored in FILE. [-h|-p|-r] [FILE] zfskey raw Assume input is raw. hex Assume input is hex. passphrase Assume input is passphrase.    LICENSE=GPLv3+  crypto pbkdf2 extcmd zfs gcry_sha1 gcry_rijndael zfscrypt                                                                              	  D        	  *                                              	              
               5              A              T              a              x                                                                                                                                          %             <             H             W             i    e     z                                                                                            grub_mod_init grub_mod_fini grub_crypto_ecb_encrypt grub_strlen grub_crypto_pbkdf2 grub_memmove grub_unregister_extcmd grub_xputs grub_crypto_cipher_open grub_zfs_load_key grub_errno _gcry_cipher_spec_aes grub_memset grub_crypto_gcry_error grub_crypto_memcmp grub_file_read grub_password_get _gcry_digest_spec_sha1 grub_malloc grub_file_open grub_real_dprintf grub_zfs_add_key grub_error grub_free grub_register_extcmd grub_gettext grub_memcmp grub_zfs_decrypt grub_crypto_cipher_set_key              (    k        3    {                /    L    Y                                  #  *    3  #  J    d    i    |                           %  G    L    c                                    	  %      #     `    |                5    ?    W    \    e                      "              	    	    	    	    	    	    	  $  	    	    	    	  !  	    	    	  $  
    
         (     4     @     L     X      .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4   
                    	   @                       )             L
  |                  %   	   @         0               1      2       
  %                @                                  F                                 V                                  [                 1                  d              1  	                                <  `              	                                               @  m                                                  boot/grub/i386-efi/zfsinfo.mod                                                                      0000600 0001750 0001750 00000015320 13417732100 0015040 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF                            4     (   UVS19}Ch    e[^]UWVSÃ$h   PMơ       QQh   VuUPPh   SXZh   SMtu#R]X3        1dPPh   VuQ1Qh#   SE;u}PVh#   SME"Zu? tE8 uFōe[^_]UWVS<} E    E    E    QQhH   j  E0ǡ      W<$)  WWEPSXEZj)0t@E uUVRPSƃS(  SSh^   uu#=        QQhc   j	   RRhu   utM܍UVXuu܃u;   u,   E.   U؅u;   щ
,   <   WVuQRPuuSh   0u    N}tWWPEpQQPh   V$XuZu1e[^_]UWVSЃ}S   Wh   Vt0h   QWh   Vt1h   RWh   Vt1h   PWh   Vth  th#  h<      e1[^_]UWVS4h   PUu"Eh>      G  QQh   P   ]ԉhj  ډXZh   Vǉluh  PPWh  PPh  VËE/uh  PPSh  PPh   VƋEuh  PPVh  W4$$6  PPh   WZYh  WEt   PPh#   VۉEth  )} t&PEPh  Vuuh  E"} h/     P1Puh>  }ԉ@EWSh#   VǋEuQQShU  RRSh{  Ủ<$C;]uEPPWh  1e[^_]UVS ]} E    VVhH   j  3>(u;V|)u(@Pt@PD 3tS$u
    ,  SSEPV4$ۉ	  QQh^   uuh  RRPh  EVPh  uuh  Suuh  EQPh  uu
h  "} Euv
h4  
4    RRhu   uuhL  
   SXu1e[^]Uj hm  h  h  h  j h  h  h)  h          U5   X5           &  I  h        type disk phys_path devid mirror children " ,diskdevid="  ,bootpath=" one argument expected name No poolname found vdev_tree zfs-bootfs=%s/%llu%s%s%s%s%s%s %s
 removed Virtual device is removed faulted Virtual device is faulted offline Virtual device is offline Virtual device is degraded Virtual device is online 
 Incorrect virtual device: no type available Leaf virtual device (file or disk) Bootpath: unavailable
 Bootpath: %s
 path Path: unavailable Path: %s
 Devid: unavailable Devid: %s
 raidz This VDEV is a mirror nparity This VDEV is a RAIDZ%llu
 Incorrect VDEV VDEV with %d children
 VDEV element number %d isn't correct
 VDEV element number %d:
 Unknown virtual device type: %s
 Pool name: unavailable Pool name: %s
 pool_guid Pool GUID: unavailable Pool GUID: %016llx
 state Unable to retrieve pool state Unrecognized pool state No virtual device tree available Print ZFS info about DEVICE. DEVICE zfsinfo Print ZFS-BOOTFSOBJ or store it into VARIABLE FILESYSTEM [VARIABLE] zfs-bootfs Pool state: active Pool state: exported Pool state: destroyed Pool state: reserved for hot spare Pool state: level 2 ARC device Pool state: uninitialized Pool state: unavailable Pool state: potentially active    LICENSE=GPLv3+  zfs zfsinfo                                                                            o  N          "                                              	              
               )              4              C              T                                                                                                                                                        *             H             Z             e                                                                                            grub_mod_init grub_mod_fini grub_strlen grub_puts_ grub_xasprintf grub_device_open grub_zfs_nvlist_lookup_nvlist_array_get_nelm grub_zfs_fetch_nvlist grub_strdup grub_file_get_device_name grub_xputs grub_errno grub_register_command_prio grub_printf grub_unregister_command grub_strcmp grub_strchr grub_zfs_nvlist_lookup_string grub_device_close grub_error grub_zfs_nvlist_lookup_uint64 grub_free grub_printf_ grub_env_set grub_zfs_nvlist_lookup_nvlist_array grub_zfs_getmdnobj grub_zfs_nvlist_lookup_nvlist           5     >     H     W     ]     k     q     z                                                !  
    P    W    l    v                      "                      %    4    <  #  Y    b    q    }                                                             C    I    Z    _    i    o                                                                    0    5    :    I    O    l    q                                                                     (    -    9    A    I    U    [    b    m                                                        %  !  >    C    M    R    d                                        '    3    D    N    b    j    y    ~                                                                 (  #  9    >    V    _    x    }                                                                                                      .symtab .strtab .shstrtab .rel.text .rel.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                         4                       	   @       H                )             	                     %   	   @         @               1      2       4	                  @                                  F                                 V                                  [                                   d                                                  @              	              L                                 0  m                                                                                                                                                                                                                                                                                                                                  boot/grub/i386-efi/moddep.lst                                                                       0000600 0001750 0001750 00000011444 13417732100 0014660 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   videotest: font video gfxmenu
odc: archelp
loopback: extcmd
macho:
gcry_des: crypto
memrw: extcmd
terminfo: extcmd
part_gpt:
romfs: fshelp
read:
lsefimmap:
aout:
gcry_arcfour: crypto
tftp: net priority_queue
newc: archelp
minix2_be:
elf:
videotest_checksum: font functional_test video_fb
password_pbkdf2: crypto gcry_sha512 pbkdf2 normal
gcry_seed: crypto
pcidump: extcmd
bsd: elf serial crypto gcry_md5 extcmd aout video boot cpuid relocator mmap
sfs: fshelp
reiserfs: fshelp
part_sunpc:
gfxmenu: video_colors trig bitmap_scale gfxterm font normal bitmap video
backtrace:
jfs:
help: extcmd normal
configfile: normal
cbls: cbtable
gfxterm_menu: font functional_test procfs normal video_fb
gcry_idea: crypto
tr: extcmd
ohci: cs5536 usb boot
afs:
spkmodem: terminfo
usb_keyboard: keylayouts usb
xzio: crypto
syslinuxcfg: extcmd normal
search_fs_file:
usbms: scsi usb
test_blockarg: extcmd normal
true:
affs: fshelp
iso9660: fshelp
exfat:
setjmp_test: setjmp functional_test
gfxterm: font video
efinet: net
efi_netfs: bufio
disk:
appleldr: boot
xfs: fshelp
testspeed: extcmd normal
cpio_be: archelp
functional_test: btrfs extcmd video video_fb
sleep: extcmd normal
memdisk:
gcry_rijndael: crypto
mdraid09_be: diskfilter
gettext:
gcry_sha1: crypto
hfspluscomp: gzio hfsplus
cmp:
offsetio:
file: elf macho extcmd offsetio
usbserial_usbdebug: serial usb usbserial_common
video_colors:
morse:
hashsum: crypto extcmd normal
usb:
halt: acpi
gdb: serial backtrace
gfxterm_background: video_colors bitmap_scale gfxterm extcmd video bitmap
search_fs_uuid:
gcry_dsa: verify mpi
keystatus: extcmd
linux: video boot relocator mmap
geli: cryptodisk crypto gcry_sha512 pbkdf2 gcry_sha256
cmdline_cat_test: font functional_test normal procfs video_fb
part_sun:
cbtable:
pbkdf2_test: functional_test pbkdf2 gcry_sha1
video_bochs: video video_fb
bufio:
usbserial_ftdi: serial usb usbserial_common
legacy_password_test: functional_test legacycfg
cpuid: extcmd
blscfg: extcmd normal
bfs:
hdparm: extcmd
gcry_blowfish: crypto
test:
nilfs2: fshelp
gcry_rsa: verify mpi
cryptodisk: crypto extcmd procfs
nativedisk:
minicmd:
signature_test: functional_test procfs
ata: scsi
udf: fshelp
gzio:
xnu_uuid: gcry_md5
uhci: usb
pata: ata
adler32: crypto
terminal:
ehci: cs5536 usb boot
crypto:
part_bsd: part_msdos
cs5536:
gcry_sha512: crypto
password: crypto normal
fshelp:
sleep_test: functional_test datetime
iorw: extcmd
xnu: macho bitmap_scale extcmd boot video bitmap relocator
mmap:
exfctest: functional_test
zfsinfo: zfs
ldm: part_gpt diskfilter part_msdos
eval: normal
part_dvh:
lssal:
ext2: fshelp
blocklist:
net: priority_queue bufio datetime boot
part_acorn:
videoinfo: video
btrfs: lzopio gzio
lsmmap: mmap
bitmap:
ntfs: fshelp
multiboot: net video boot relocator mmap
gcry_crc: crypto
png: bufio bitmap
jpeg: bufio bitmap
macbless: disk
div_test: functional_test
regexp: extcmd normal
parttool: normal
usbserial_pl2303: serial usb usbserial_common
cpio: archelp
gcry_rmd160: crypto
fat:
ufs1_be:
archelp:
raid6rec: diskfilter
http: net
zfs: gzio
lsefisystab:
minix2:
lsacpi: extcmd acpi
datehook: datetime normal
loadenv: disk extcmd
bitmap_scale: bitmap
probe: extcmd
minix3:
tar: archelp
loadbios:
hfs:
procfs:
boot:
keylayouts:
progress: normal
kernel:
usbtest: usb
relocator: mmap
linuxefi: boot
acpi: extcmd mmap
tga: bufio bitmap
reboot: relocator
serial: extcmd terminfo
zfscrypt: crypto pbkdf2 extcmd zfs gcry_sha1 gcry_rijndael
efi_uga: video video_fb
dm_nv: diskfilter
luks: cryptodisk crypto pbkdf2
font: bufio video
raid5rec: diskfilter
crc64: crypto
datetime:
efifwsetup: reboot
video:
cbmemc: cbtable normal terminfo
hfsplus: fshelp
gcry_cast5: crypto
extcmd:
squash4: fshelp lzopio xzio gzio
part_plan:
minix_be:
gcry_whirlpool: crypto
gcry_tiger: crypto
fixvideo:
search: search_fs_uuid search_fs_file extcmd search_label
lspci: extcmd
cbtime: cbtable
video_fb:
verify: crypto mpi extcmd gcry_sha1
minix3_be:
trig:
msdospart: disk parttool
priority_queue:
gcry_twofish: crypto
part_dfly:
xnu_uuid_test: functional_test
diskfilter:
testload:
part_apple:
hexdump: extcmd
date: datetime normal
pbkdf2: crypto
gcry_sha256: crypto
ls: extcmd normal
usbserial_common: serial usb
ntfscomp: ntfs
lzopio: crypto
video_cirrus: video video_fb
hello: extcmd
scsi:
cat: extcmd
ahci: ata boot
normal: net terminal crypto bufio extcmd boot gettext
linux16: video boot relocator mmap
ufs1:
mdraid09: diskfilter
lvm: diskfilter
chain: net linuxefi efinet boot
cbfs: archelp
ufs2:
time:
setpci: extcmd
gptsync: disk
search_label:
setjmp:
multiboot2: net video boot relocator mmap acpi
gcry_rfc2268: crypto
mdraid1x: diskfilter
mpi: crypto
legacycfg: crypto password gcry_md5 normal
play:
part_amiga:
efi_gop: video video_fb
minix:
echo: extcmd
lsefi:
gcry_serpent: crypto
gcry_md4: crypto
gcry_md5: crypto
part_msdos:
gcry_camellia: crypto
at_keyboard: keylayouts boot
all_video: efi_gop efi_uga video_bochs video_cirrus
                                                                                                                                                                                                                            boot/grub/i386-efi/command.lst                                                                      0000600 0001750 0001750 00000007402 13417732100 0015025 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   *acpi: acpi
*all_functional_test: functional_test
*background_image: gfxterm_background
*bls_import: blscfg
*cat: cat
*cpuid: cpuid
*crc: hashsum
*cryptomount: cryptodisk
*echo: echo
*extract_syslinux_entries_configfile: syslinuxcfg
*extract_syslinux_entries_source: syslinuxcfg
*file: file
*functional_test: functional_test
*gettext: gettext
*hashsum: hashsum
*hdparm: hdparm
*hello: hello
*help: help
*hexdump: hexdump
*inb: iorw
*inl: iorw
*inw: iorw
*keystatus: keystatus
*kfreebsd: bsd
*knetbsd: bsd
*kopenbsd: bsd
*list_env: loadenv
*load_env: loadenv
*loopback: loopback
*ls: ls
*lsacpi: lsacpi
*lspci: lspci
*md5sum: hashsum
*menuentry: normal
*pcidump: pcidump
*probe: probe
*read_byte: memrw
*read_dword: memrw
*read_word: memrw
*regexp: regexp
*save_env: loadenv
*search: search
*serial: serial
*setpci: setpci
*sha1sum: hashsum
*sha256sum: hashsum
*sha512sum: hashsum
*sleep: sleep
*submenu: normal
*syslinux_configfile: syslinuxcfg
*syslinux_source: syslinuxcfg
*terminfo: terminfo
*test_blockarg: test_blockarg
*testspeed: testspeed
*tr: tr
*trust: verify
*verify_detached: verify
*xnu_splash: xnu
*zfskey: zfscrypt
.: configfile
[: test
appleloader: appleldr
authenticate: normal
background_color: gfxterm_background
backtrace: backtrace
badram: mmap
blocklist: blocklist
boot: boot
break: normal
cat: minicmd
cbmemc: cbmemc
chainloader: chain
clear: normal
cmp: cmp
configfile: configfile
continue: normal
coreboot_boottime: cbtime
cutmem: mmap
date: date
distrust: verify
dump: minicmd
eval: eval
exit: minicmd
export: normal
extract_entries_configfile: configfile
extract_entries_source: configfile
extract_legacy_entries_configfile: legacycfg
extract_legacy_entries_source: legacycfg
fakebios: loadbios
false: true
fix_video: fixvideo
fwsetup: efifwsetup
gdbstub: gdb
gdbstub_break: gdb
gdbstub_stop: gdb
gptsync: gptsync
halt: halt
help: minicmd
initrd16: linux16
initrd: linux
initrdefi: linuxefi
keymap: keylayouts
kfreebsd_loadenv: bsd
kfreebsd_module: bsd
kfreebsd_module_elf: bsd
knetbsd_module: bsd
knetbsd_module_elf: bsd
kopenbsd_ramdisk: bsd
legacy_check_password: legacycfg
legacy_configfile: legacycfg
legacy_initrd: legacycfg
legacy_initrd_nounzip: legacycfg
legacy_kernel: legacycfg
legacy_password: legacycfg
legacy_source: legacycfg
linux16: linux16
linux: linux
linuxefi: linuxefi
list_trusted: verify
loadbios: loadbios
loadfont: font
lscoreboot: cbls
lsefi: lsefi
lsefimmap: lsefimmap
lsefisystab: lsefisystab
lsfonts: font
lsmmap: lsmmap
lsmod: minicmd
lssal: lssal
macppcbless: macbless
mactelbless: macbless
module2: multiboot2
module: multiboot
multiboot2: multiboot2
multiboot: multiboot
nativedisk: nativedisk
net_add_addr: net
net_add_dns: net
net_add_route: net
net_bootp6: net
net_bootp: net
net_del_addr: net
net_del_dns: net
net_del_route: net
net_efi_add_addr: efi_netfs
net_efi_bootp6: efi_netfs
net_efi_bootp: efi_netfs
net_efi_ls_addr: efi_netfs
net_efi_ls_cards: efi_netfs
net_efi_ls_routes: efi_netfs
net_get_dhcp_option: net
net_ipv6_autoconf: net
net_ls_addr: net
net_ls_cards: net
net_ls_dns: net
net_ls_routes: net
net_nslookup: net
normal: normal
normal_exit: normal
outb: iorw
outl: iorw
outw: iorw
parttool: parttool
password: password
password_pbkdf2: password_pbkdf2
play: play
read: read
reboot: reboot
return: normal
rmmod: minicmd
search.file: search_fs_file
search.fs_label: search_label
search.fs_uuid: search_fs_uuid
setparams: normal
shift: normal
source: configfile
terminal_input: terminal
terminal_output: terminal
test: test
testload: testload
time: time
true: true
usb: usbtest
videoinfo: videoinfo
videotest: videotest
write_byte: memrw
write_dword: memrw
write_word: memrw
xnu_devprop_load: xnu
xnu_kernel64: xnu
xnu_kernel: xnu
xnu_kext: xnu
xnu_kextdir: xnu
xnu_mkext: xnu
xnu_ramdisk: xnu
xnu_resume: xnu
xnu_uuid: xnu_uuid
zfs-bootfs: zfsinfo
zfsinfo: zfsinfo
                                                                                                                                                                                                                                                              boot/grub/i386-efi/fs.lst                                                                           0000600 0001750 0001750 00000000326 13417732100 0014015 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   affs
afs
bfs
btrfs
cbfs
cpio
cpio_be
exfat
ext2
fat
hfs
hfsplus
iso9660
jfs
minix
minix2
minix2_be
minix3
minix3_be
minix_be
newc
nilfs2
ntfs
odc
procfs
reiserfs
romfs
sfs
squash4
tar
udf
ufs1
ufs1_be
ufs2
xfs
zfs
                                                                                                                                                                                                                                                                                                          boot/grub/i386-efi/partmap.lst                                                                      0000600 0001750 0001750 00000000157 13417732100 0015053 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   part_acorn
part_amiga
part_apple
part_bsd
part_dfly
part_dvh
part_gpt
part_msdos
part_plan
part_sun
part_sunpc
                                                                                                                                                                                                                                                                                                                                                                                                                 boot/grub/i386-efi/parttool.lst                                                                     0000600 0001750 0001750 00000000021 13417732100 0015241 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   msdos: msdospart
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               boot/grub/i386-efi/video.lst                                                                        0000600 0001750 0001750 00000000051 13417732100 0014506 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   efi_gop
efi_uga
video_bochs
video_cirrus
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       boot/grub/i386-efi/crypto.lst                                                                       0000600 0001750 0001750 00000001650 13417732100 0014726 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   RIJNDAEL: gcry_rijndael
RIJNDAEL192: gcry_rijndael
RIJNDAEL256: gcry_rijndael
AES128: gcry_rijndael
AES-128: gcry_rijndael
AES-192: gcry_rijndael
AES-256: gcry_rijndael
ADLER32: adler32
CRC64: crc64
ARCFOUR: gcry_arcfour
BLOWFISH: gcry_blowfish
CAMELLIA128: gcry_camellia
CAMELLIA192: gcry_camellia
CAMELLIA256: gcry_camellia
CAST5: gcry_cast5
CRC32: gcry_crc
CRC32RFC1510: gcry_crc
CRC24RFC2440: gcry_crc
DES: gcry_des
3DES: gcry_des
DSA: gcry_dsa
IDEA: gcry_idea
MD4: gcry_md4
MD5: gcry_md5
RFC2268_40: gcry_rfc2268
AES: gcry_rijndael
AES192: gcry_rijndael
AES256: gcry_rijndael
RIPEMD160: gcry_rmd160
RSA: gcry_rsa
SEED: gcry_seed
SERPENT128: gcry_serpent
SERPENT192: gcry_serpent
SERPENT256: gcry_serpent
SHA1: gcry_sha1
SHA224: gcry_sha256
SHA256: gcry_sha256
SHA512: gcry_sha512
SHA384: gcry_sha512
TIGER192: gcry_tiger
TIGER: gcry_tiger
TIGER2: gcry_tiger
TWOFISH: gcry_twofish
TWOFISH128: gcry_twofish
WHIRLPOOL: gcry_whirlpool
                                                                                        boot/grub/i386-efi/terminal.lst                                                                     0000600 0001750 0001750 00000000242 13417732100 0015215 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   iat_keyboard: at_keyboard
iserial: serial
iserial_*: serial
oaudio: morse
ocbmemc: cbmemc
ogfxterm: gfxterm
oserial: serial
oserial_*: serial
ospkmodem: spkmodem
                                                                                                                                                                                                                                                                                                                                                              boot/grub/i386-efi/modinfo.sh                                                                       0000600 0001750 0001750 00000004270 13417732100 0014652 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   #!/bin/sh

# User-controllable options
grub_modinfo_target_cpu=i386
grub_modinfo_platform=efi
grub_disk_cache_stats=0
grub_boot_time_stats=0
grub_have_font_source=1

# Autodetected config
grub_have_asm_uscore=0
grub_i8086_addr32="addr32"
grub_i8086_data32="data32"
grub_bss_start_symbol="__bss_start"
grub_end_symbol="end"

# Build environment
grub_target_cc='gcc'
grub_target_cc_version='gcc (GCC) 4.8.5 20150623 (Red Hat 4.8.5-36)'
grub_target_cflags=' -Os -Wall -W -Wshadow -Wpointer-arith -Wundef -Wchar-subscripts -Wcomment -Wdeprecated-declarations -Wdisabled-optimization -Wdiv-by-zero -Wfloat-equal -Wformat-extra-args -Wformat-security -Wformat-y2k -Wimplicit -Wimplicit-function-declaration -Wimplicit-int -Wmain -Wmissing-braces -Wmissing-format-attribute -Wmultichar -Wparentheses -Wreturn-type -Wsequence-point -Wshadow -Wsign-compare -Wswitch -Wtrigraphs -Wunknown-pragmas -Wunused -Wunused-function -Wunused-label -Wunused-parameter -Wunused-value  -Wunused-variable -Wwrite-strings -Wnested-externs -Wstrict-prototypes -g -Wredundant-decls -Wmissing-prototypes -Wmissing-declarations  -Wextra -Wattributes -Wendif-labels -Winit-self -Wint-to-pointer-cast -Winvalid-pch -Wmissing-field-initializers -Wnonnull -Woverflow -Wvla -Wpointer-to-int-cast -Wstrict-aliasing -Wvariadic-macros -Wvolatile-register-var -Wpointer-sign -Wmissing-prototypes -Wmissing-declarations -Wformat=2 -march=i386 -m32 -falign-jumps=1 -falign-loops=1 -falign-functions=1 -freg-struct-return -mno-mmx -mno-sse -mno-sse2 -mno-3dnow -fno-dwarf2-cfi-asm -fno-asynchronous-unwind-tables -Qn -fno-stack-protector -Wtrampolines'
grub_target_cppflags=' -Wall -W -I$(top_srcdir)/include -I$(top_builddir)/include  -DGRUB_MACHINE_EFI=1 -DGRUB_MACHINE=I386_EFI -m32 -nostdinc -isystem /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include'
grub_target_ccasflags=' -g -m32'
grub_target_ldflags='-static -m32 -Wl,-melf_i386 -Wl,--build-id=none'
grub_target_strip='strip'
grub_target_nm='nm'
grub_target_ranlib='ranlib'
grub_target_objconf=''
grub_target_obj2elf=''

# Version
grub_version="2.02~beta2"
grub_package="grub"
grub_package_string="GRUB 2.02~beta2"
grub_package_version="2.02~beta2"
grub_package_name="GRUB"
grub_package_bugreport="bug-grub@gnu.org"
                                                                                                                                                                                                                                                                                                                                        boot/grub/locale/ast.mo                                                                             0000600 0001750 0001750 00000043627 13417732100 0014025 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                             ,    <      X    Y     ^  !   p       7                    !        7     Q     h                                             6     H     [  !   b                                
   #     .     <     I     b     ~       +          #        "  $   9     ^     x  '     9               
   &     1  +   >     j                                               )        I     ^  '   {  P               "        0     B     R  %   j  +                    !             3     ?     ]     y                                2   !     T  8   n                      3     +   /     [     p                          }                 )                        /     E     Y     r            "     '                  0  )   A     k  &     )     ^     ^   1  _     >     D   /   !   t   '      -            )   !  ,   6!     c!     |!     !  E   !     !     "     '"     B"      a"     "  :   "     "     "  0   #     6#     K#     h#     #  -   #     #     #     #  <   #     ;$     I$  '   P$     x$     $  '   $  -   $  '   $  '   %  .   E%  B   t%     %  	   %     %     %     %     &     &  )   -&  0   W&  6   &      &     &  "   &     '  1   >'  7   p'  /   '     '     '     (  F   /(    v(  @  *     D+  $   U+     z+  =   +     +  
   +     +  +   ,     8,     W,  $   o,      ,     ,     ,     ,     -     -  *   1-  ,   \-     -     -     -  #   -     -      .  '   .  +   @.  '   l.  )   .     .     .     .  "   .     /     -/      I/  !   j/     /  $   /     /     /     0     0  3   90  I   m0     0  +   0  
    1     1  =   1     V1     o1     1     1     1     1     1  )   1     2     (2  =   E2     2  (   2  '   2  J   2     43     73  4   P3     3     3     3  1   3  8   4     >4     Z4     r4  )   4  #   4     4  #   4      
5     +5     B5  "   T5  '   w5  '   5  &   5      5  @   6  &   P6  G   w6     6     6     6     7  @   7  5   _7     7     7  "   7     7  5   7     *8     9  #   $9     H9     _9  *   n9     9     9     9     9     9     :     ):     A:      ^:  8   :  5   :     :     	;     ;  7   4;  #   l;  ,   ;  2   ;  i   ;  i   Z<  j   <  J   /=  W   z=  "   =  (   =  /   >  )   N>  *   x>  1   >     >  &   >     ?  L   8?  &   ?  #   ?  $   ?  '   ?  5   @     S@  K   k@  ,   @     @  :   @     9A  !   RA     tA     A  ;   A     A      B     B  :   6B     qB     B  /   B     B     B  ,   B  A   C  '   ZC  .   C  /   C  N   C     0D     ?D      LD     mD     vD     D     D  )   D  6   D  B   E  $   VE  %   {E  2   E  %   E  C   E  B   >F  8   F     F  &   F  (    G  m   )G     ^          I                           {   /   |   +                 2      4   k   [      U   d      3   "   9            1      0   c                 B          Y          =   x   .   Z      :   ?          5                                 Q                     _             M      -                ,            V             K   L      e          C      i   $   ;          X       b                           p   w          F                                    t   }   @           R   '         6      P       r         s   `                               	                     S   !   J         7                                 y   v             *         D   u       \             (       #          E                         a   T                     m          G   8      O       h   
   f       >           q   o      %   W       n                ~          z   j   g   ]             l   A                       <   H   )             &   N    %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with kFreeBSD %s - Last modification time %d-%02d-%02d %02d:%02d:%02d %s -l | -r | [-s] grubdev osdisk. ADDR ADDR VALUE [MASK] Ask for file name to reboot from. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting a command list Change configured devices. Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check key modifier status. Clear the screen. Compare two files. DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DIRECTORY [OSBundleRequired] Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Display a line of text. Display output on all consoles. Display the usage of this command and exit. Display this help and exit. Do not output the trailing newline. Do not print messages. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. ESC at any time exits. EXPRESSION EXPRESSION ] Enable interpretation of backslash escapes. Enter in KDB on boot. Enter password:  Enter username:  Evaluate an expression. Exit from GRUB. FILE FILE1 FILE2 Filesystem cannot be accessed Filesystem type %s Fix video problem. Freeze ATA security settings until reset. GNU GRUB  version %s Get/set ATA disk parameters. Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. ID Invalid device `%s'.
 Invoke user configuration routing. List PCI devices. List all files. List devices and files. List memory map provided by firmware. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load Linux. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load a multiboot 2 kernel. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load another boot loader. Load another config file without changing context. Load another config file. Load host ACPI tables and tables specified by arguments. Load initrd. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load variables from environment block file. Loading Linux %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... MODULE Manage the BIOS drive mappings. Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s NUMBER_OF_SECONDS No device is specified.
 PARTITION COMMANDS Partition %s: Perform both direct and reverse mappings. Play a tune. Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Press any key to continue... Print a block list. Print drive identity and settings. Print sizes in a human readable format. Read only LENGTH bytes. Reboot the computer. Remove a module. Reset all mappings to the default values. Retrieve device info. Save read value into variable VARNAME. Save variables to environment block file. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set a variable to return value. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set drive to sleep mode. Set drive to standby mode. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Show a help message. Show a long list with more detailed information. Show loaded modules. Show the contents of a file. Show the current mappings. Show this message. Skip offset bytes from the beginning of file. Specify filename. Test USB support. Test video subsystem. The highlighted entry will be executed automatically in %ds. USER PASSWORD Usage: Use GDB remote debugger instead of DDB. Use serial console. Verbose countdown. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Your embedding area is unusually small.  core.img won't fit in it. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [ENVVAR] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [PATTERN ...] [[year-]month-day] [hour:minute[:second]] attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again cannot compress the kernel image cannot read `%s' correctly diskboot.img size must be %u bytes no terminator in the core image non-sector-aligned data is found in the core file the first sector of the core file is not sector-aligned the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small unable to identify a filesystem in %s; safety check can't be performed Project-Id-Version: grub-1.97+20110101
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2011-02-05 16:04+0100
Last-Translator: Marquinos <maacub@gmail.com>
Language-Team: Asturian <ubuntu-l10n-ast@lists.ubuntu.com>
Language: ast
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8bit
X-Poedit-Language: asturian
 %s paez contener un sistema de ficheros %s que nun sabi cómo acutar espaciu pa l'arranque estilu DOS. Instalar GRUB ehí podría probar una DESTRUCCIÓN DEL SISTEMA DE FICHEROS si se sobreescriben datos pervalibles per aciu de grub-setup (--skip-fs-probe desactiva esta comprobación; úsalu baxo la to responsabilidá) %s, con Linux %s %s, con Linux %s (mou recuperación) %s, con kFreeBSD %s - Hora de cabera modificación %d-%02d-%02d %02d:%02d:%02d %s -l | -r | [-s] grubdev osdisk. DIREICIÓN ADDR VALOR [mázcara] Entrugar pol nome del ficheru pa reaniciar. Arrancar un sistema operativu. Arrancar en mou únicu. Arrancar con mensaxes de depuración Arrancar con mensaxes detallaos. Arrancar una llista d'órdenes Camudar preseos configuraos. Comprobar tecla Alt Comprobar tecla Ctrl Comprobar tecla Mayús Comprobar les carauterístiques de la CPU. Comprobar l'estáu del modificador de tecla. Llimpiar la pantalla. Comparar dos ficheros. PRESÉU PRESÉU [PARTICIÓN[+/-[TIPU]]] ... DIREUTORIU [OSBundleRequired] Determinar controlador. Determinar UUID de sistema de ficheros. Determinar etiqueta de sistema de ficheros. Determinar tipu de sistema de ficheros. Determinar el tipu de mapa de particiones Preséu %s: Desactivar ACPI Desactivar SMP. Desactivar tola salida d'arranque. Desactivar/activar SMART (0/1). Amosar una llinia de testu. Amosar salida en toles consoles. Amosar l'usu d'esta orde y colar. Amosar esta aida y colar. Nun amosar la llinia nueva al final. Nun imprentar mensaxes. Nun usar APM pa parar l'equipu. Nun faer res, con ésitu. Nun faer res, ensin ésitu. Nun amosar los mensaxes de diagnósticu d'arranque. Nun carga tables d'anfitrión especificaes na llista separtada por comes. Nun reaniciar, namái parar. Calcar ESC en cualisquier momentu pa colar. ESPRESIÓN ESPRESIÓN ] Activar la interpretación de los escapes de barra invertida. Entrar en KDB al bootear Introduz contraseña:  Introduz nome d'usuariu:  Evaluar una espresión Colar del GRUB. FICHERU FICHERU1 FICHERU2 Nun puede accedese al sistema de ficheros Sistema de ficheros triba %s Correxir problema de vídeu. Conxelar les configuraciones de seguridá ATA hasta reaniciar GNU GRUB  version %s Llograr/afitar parámetros ATA del discu Parar el sistema, si ye dable usar APM. Pa l'equipu. Esta orde nun funciona en toles implementaciones de firmware. ID Preséu inválidu `%s'.
 Invocar configuración d'encaminamientu del usuariu. Llista de preseos PCI. Llista de tolos ficheros. Llista de preseos y ficheros Llistar el mapa de memoria apurríu pol firmware. Llista de variables dende'l ficheru de bloque d'entornu. Cargar imaxe XNU de 64-bit. Cargar volcáu de BIOS. Cargar entornu FreeBSD. Cargar módulu (ELF) del núcleu FreeBSD. Cargar módulu del núcleu FreeBSD. Cargar Linux. Cargar direutoriu d'estensión XNU. Cargar paquete d'estensión XNU. Cargar estensión XNU. Cargar imaxe XNU. Cargar núcleu de multiarranque 2. Cargar un núcleu d'arranque múltiple. Cargar un módulu d'arranque múltiple. Cargar una imaxe de bienvinía pa XNU. Cargar otru cargador d'arranque. Cargar otru ficheru de configuración ensin camudar de contestu. Cargar otru ficheru de configuración. Cargar tables ACPI del anfitrión y tables especificaes por argumentos. Cargar initrd. Cargar núcleu de FreeBSD. Cargar núcleu de NetBSD. Cargar núcleu de OpenBSD. Cargar namái tables especificaes en llista dixebrada por comes. Cargar variables dende'l ficheru de bloque d'entornu. Cargando Linux %s ... Cargando discu RAM inicial... Cargando núcleu de FreeBSD %s ... MÓDULU Xestiona les asignaciones del controlador de la BIOS. Almítese una mínima edición de llinies al estilu BASH. Pa la primer pallabra, TAB amuesa les posibles formes de completar comandos. En cualesquier otru sitiu, TAB amuesa les posibles formes de completar preseos o ficheros. %s NÚMBERU_DE_SEGUNDOS Nun s'especificó dengún preséu.
 ÓRDENES DE PARTICIÓN Partición %s: Realizar asignaciones direutes ya inverses Afinar. Los posibles argumentos son: Les posibles ordes son: Los posibles preseos son: Los ficheros posibles son: Les posibles particiones son: Les posibles coses son: Calca una tecla pa siguir... Imprentar una llista de bloques. Imprenta la identidá del controlador y configuraciones. Imprentar tamaños nún formatu lleíble por humanos. Lleer namái LENGTH bytes. Reaniciar l'equipu. Desaniciar un módulu. Reaniciar toles asignaciones a valores predeterminados. Recuperar información del preséu. Guardar el valor lleíu na variable VARNAME. Guardar variables nel ficheru de bloque d'entornu. Guetar preseos por UUID. Si s'especificó VARIABLE, el primer preséu alcontráu guárdase nuna variable. Guetar preseos por ficheru. Si s'especificó VARIABLE, el primer preséu atopáu guárdase nuna variable. Guetar preseos por etiqueta. Si s'especificó VARIABLE, el primer preséu atopáu guárdase nuna variable. Afitar el xestor avanzáu d'enerxía
(1=baxu, ..., 254=altu, 255=apagáu). Afitar el xestor automáticu d'acústica
(0=apagáu, 128=silenciosu, ..., 254=rápidu). Afitar OEMID de RSDP, XSDT y RSDT. Afitar OEMTABLE ID de RSDP, XSDT y RSDT. Afitar revisión OEMTABLE de RSDP, XSDT y RSDT. Afitar una variable pa devolver el valor. Afitar campu creador pa RSDP, CSDT y RSDT. Afitar revisión de creador de RSDP, CSDT y RSDT. Afitar la unidá en mou dormir. Afitar el controlador pal mou n'espera Afitar el preséu raigañu. Afitar tiempu d'espera
(0=apagáu, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Afitar la direición del puertu serie. Afitar la paridá del puertu serie. Afita la velocidá del puertu serie. Afitar el bit de posa del puertu serie. Afitar el llargor de la pallabra del puertu de serie. Afitar la unidá serie. Afitar la contraseña d'usuariu (testu planu). Non encamentáu ya inseguru. Afitar la variable cola entrada del usuariu. Amuesa un mensaxe d'aida. Amosar una llista llarga d'información con más detalles. Amosar módulos cargaos. Amosar el conteníu d'un ficheru. Amosar asignaciones actuales. Amosar esti mensax. Saltar bytes de desplazamientu dende l'empiezu del ficheru. Especificar nome del ficheru. Comprobar sofitu USB. Comprobar subsistema de vídeu. La entrada resaltada va executase automáticamente en %ds. CONTRASEÑA D'USUARIU Usu: Usar el depurador llonxanu GDB n'arróu de DDB. Usar consola serie. Cunta regresiva detallada. Esperar un númberu específicu de segundos. Esperar por cada tecla primida dempués de cada llinia de salida. Avisu: color de fondu nun válidu `%s'
 Avisu: color de primer planu nun válidu `%s'
 Avisu: fallu de sintasis (falta barra) en `%s'
 La so área d'empotráu ye inusualmente pequeña. core.img nun va caber nella. [-e|-n] CADENA [-f FICHERU] [-f FICHERU] nome_variable [...] [ENVVAR] [OPCIONES] DISCU [OPCIONES] FICHERU_O_PRESÉU [PATRÓN ...] [[añu-]mes-día] [hora:minutu[:segundu]] intentando lleer la imaxe del nucleu `%s' dende'l GRUB intentando lleer la imaxe del nucleu `%s' dende'l GRUB otra vegada nun puede comprimise la imaxe kernel nun puede lleese «%s» correchamente el tamañu de diskboot.img tien de ser de %u bytes nun hai terminador na imaxe principal atopáronse datos non alliniaos con un sector nel ficheru principal el primer sector del ficheru principal nun ta alliniáu col sector los sectores del ficheru núcleu tán enforma estrizaos. el tamañu de «%s» nun ye %u el tamañu de «%s» ye enforma grande el tamañu de «%s» ye enforma pequeñu nun ye dable identificar un sistema d'ficheros en %s; nun puede llevase a cabu una comprobación de seguridá                                                                                                          boot/grub/locale/ca.mo                                                                              0000600 0001750 0001750 00000317264 13417732100 0013622 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                       L     |"    D      [  #   [      [     \     9\     Q\  $   h\     \  6   \     \     \  	   \     \     ]     "]     :]     P]  .   ]]  .   ]  %   ]     ]     ]    ]    ^    _     a  7    a  F   Xa  v   a  +   b     Bb      Sb     tb  !   b     b  ,   b     b     
c  $   c     Dc  *   `c     c     c     c     c     c  
   c  	   c     d  ,   d  ,   Ld  ,   yd  '   d  -   d      d  (   e  (   Fe  )   oe     e     e     e     e     e  "   e  4   f     Pf     Xf  7   ef     f  1   f     f  %   f  '   g  %   Eg  '   kg     g     g     g     g     g     g     g     g     h     %h     7h     Eh     Uh     bh  3   oh     h  $   h     h     h     h     i     i     6i     Ki  -   ci     i  !   i     i     i     j  #   j     :j  `   j  Z   #k     ~k     k     k     k     k     k     k     l     (l     Bl     Yl     sl     l     l     l     l     l     l     l     m     m  %   m     =m     \m     pm     m     m     m     m     m     m  *   n  3   .n     bn  "   }n  8   n     n     n  	   o  #   o     6o     To     go     o     o     o  )   o     o     p     4p  P   Rp     p     p  H   p  &   q     =q     Uq  !   \q  ,   ~q     q     q     q  	   q  !   q  *   r     /r     Gr     \r     nr     r  $   r     r     r     r     s      s     ;s  
   Ys  
   ds     os  1   s     s     s     s     s  3   t  >   8t  $   wt     t     t     t     t     u     #u  +   7u     cu     u  #   u     u     u  $   u     v     6v  '   Rv  9   zv     v     v  z   v     fw     mw  8   w     w  
   w     w     w     x     #x     x  +   x     y     y     3y  "   Fy     iy     zy  (   y     y     y     y     y     y     z  "   !z  0   Dz     uz     zz     z  7   z     z     z     z     z     {     {  0   {     O{     c{     u{     {  2   {  %   {     {  *   |  6   ;|  +   r|     |     |     |  !   }  d   }  e   '~  d   ~  i   ~  o   \  H             (     >     O     b     x            #                    1   .  )   `                 /                    5   (     ^     }  K                       3     8  '   =  P   e          Ճ  	                    '   !  +   I     u       )        ̄                     1     I     _  $   t            "   ƅ            (     "   +  +   N  -   z               І            O        S     i                 %          )     !   )  "   K     n       +        ͈            !        (     D     ]     i                     ω          	       4   -     b                    Ɗ                     0  !   Q     s  4     M     2        C     ]  *   {  8        ߌ                    2  3   J  $   ~  +        ύ                         /      K     l            D               7     ;   C            !               s                       А                    *     ;                    Ē     ˒     ג            '   &  
   N     Y     h     ~                      H   Γ          *     F     V  %   e            #                       %      <     ]      |       "     (   ͕       %        8  2   R            #     *   ˖          	  #        2     7  "   I  ;   l  #     <   ̗     	          5  .   C  	   r     |  `          !     )   &     P     X  q   e     י                    (     ;     Q     f       "        ǚ     ߚ               (     >     R     k  #               g   ݛ     E     ʜ       -        /  !   C     e  "   v  '     Q             /     I     ]     k                    ؞               -     E     S     h      {               ˟     ܟ  -        *  "   >  b   a  )   Ġ                 ,   7     d     }  	     "     %        ա     ڡ            &     )   &     P  ^   c     ¢  $   ܢ  %        '  ^   ڣ  _   9  }          )   Υ  '     >      D   _  !     '   Ʀ  -     #        @  )   `       )     )   ѧ  ,        (     H     a     |       E     $     A     )   U                    ө             q   (       :                       ?     \     s            0             	       )   4  &   ^                    Ь  )          %   &  %   L  ,   r  '     :   ǭ       -   !     O  .   _            '     "   ݮ                )  *   7     b     j  )   q            6   n       0         ݰ  !     "      #   C     g     y       !        ر  
          <     %   P     v                 d   ˲  *   0  0   [  6        ó     ˳     ٳ                 0   "     S  !   f            $        ܴ               *     ;  $   X  "   }  $        ŵ     ڵ                $     6     H     Z     g            '        ߶       $     +   =  "   i       )             Ϸ               "  '   6     ^     }       <                     m   '               ʹ            +     3   C  1   w       '     -   ߺ       '     '   >  .   f  	                  Ի               (     D     _     z            *     ?   ߼  B     /   b            .     O     )   <     f     |  	          5                       )     D  :   ^                    ɿ     п     ߿                      	   *     4     C     \     q                      
     
     	          !     )        /     C     U     u  F     N        (  "   6     Y     ^  -   p  -     $     #     0     6   F     }       (     1     )        #     2  !   I     k             %          &             3      Q  7   r  .     4             +     @     [     p  %                                 /     >     G  ,   d                                #        +     E  B   _                              #  &   ?     f                      &                  ,     <  ;   P  V     "     &     !   -     O     f     k  H     F     (        B     ^  I   j  $     '          %        @     F     Z     n  $     '     *                  !  J   9                 -     +        )  $   /     T  "   ]  +     J     %              5  "   V     y                               	          6  %   Q     w            %                  !     5     =  [   Q       !                            2     ?     R     j                                        +     B     T     q            1                       $     9     O       1        Q  0   o            !          "   
     -     C     \     o                                                    &   ,     S     o            '     &          L        h       !                       
          1     A     R     g     v  #     #     $               &        9  !   H     j     ~                 	     7          %     [   ?  w     7     K   K  #     /                  $  &   B  U   i  @     Q         R     k       +          R     L   2  .               F             '     >     T     l                            2     !   5  #   W     {                                   (     G  (   e  #     )          '     '     '   G     o  0          -     8        D     \  !   s                  .          !   .  B   P  E     B         $     *          2        C  (   _       G               
          $   -     R     r       3     4     0        4     8  8  D  #  }  =         C     _   C       6   <     s  )          *          0   	     :     T  -   k  "     7                       1  "   F  
   i  	   t  &   ~  ,     8     ,     ,   8  -   e  #     -     -     .     &   B  &   i  
     	     	     *     :               @   .     o  7   x       7     :     7   B  :   z            +          %        *     /  
   E  "   P     s                      6          +         L     h                           0        3  2   O  )     -     "     -        +  s     d   A        !                          %   %  !   K     m       $                %          $   6  /   [                      F     C        :      M  #   n                  !     ,     >   =  O   |  *     )     M   !     o  (     	     ,     (         &   ! 3   H    |     5    &    (    %   0 _   V           Z    &   S    z 
    "    =                   2 :   > ?   y                    - 0   H    y     (    ,    )     )   *    T 
   c    n ;            +    #    8   7 V   p 7               ; %   V '   |     $        (   	    .	    N	    d	 *   ~	    	    	 8   	 R   
    i
 %   
    
 	   0    : O   T     
             %       ! ,    ;       Q    q     *            P       W    n                 )    ;       6    =    M 1   c 	                        3       "    :    R    i @    -         B    A   Y 8    (                x   1 {    y   & ~        _            4    O    e "    $        &    3   
 %   > %   d     K    @    	   1    ;    S 1   n              K    '   ? *   g U    1    4    ,   O    |     -    ]    %    	   9 	   C    M "   P    s 2    <        #    8   1 &   j )    (        "        #    @ -   [     #    -            *    '   : 1   b 3                       * o   C                     '  8   C  (   |  3     )     +   !    /!    M! 2   j! &   ! +   !    ! .   " (   =" !   f"    "    " *   " $   "    	# /   !# &   Q#    x#    # <   # +   #    $ "   4$ "   W$ #   z$     $ !   $ +   $ $   %     2% $   S% S   x% n   % B   ;& )   ~& 6   & -   & N   '    \'    n'    '    '    ' G   ' .   ,( 3   [(    (    ( !   ( !   (    ) (   $) ,   M) )   z)    ) #   ) V   )    =*    D* P   L* Q   * 0   * (    + '   I+    q+ +   + s   +    %, (   C,    l,    ,    , "   , *   ,    -    %-    -    . #   .    /    / ,   %/    R/    p/ 5   /    /    /    /    /    /    0    0    00 u   L0    0 !   0    0    1 ;   +1    g1 $   1 A   1 %   1 /   2    C2    c2 1   2 $   2 5   2    3 !   3 !   >3     `3 .   3 7   3 5   3    4    '4 #   ?4 2   c4    4    4 /   4    4    4 4   4 X   25 5   5 [   5    6    /6    O6 A   ]6 
   6    6 p   6    07 .   I7 1   x7    7    7    7    `8    {8    8    8    8    8    9 /   !9 &   Q9 1   x9     9 %   9    9    :    *:    J:    f:    : &   : !   : !   : z   ;    ; %   '< .   M< 5   |<    < %   <    < 9   = 3   K= g   = '   = +   >    ;>    U>    c> $   y> %   > $   > %   > #   ? $   3?    X?    w?    ? "   ? $   ? #   ?    @    /@    ?@ ;   ^@    @ *   @ {   @ 6   aA '   A    A    A 0   A #   $B    HB    OB (   WB )   B    B    B    B    B /   B /   C    2C s   EC     C 4   C :   D    JD s   E w   E    F    F 5   YG ?   G J   G T   H (   oH >   H :   H 3   I -   FI 4   tI    I 0   I 0   I 8   *J -   cJ    J     J &   J    J W   K .   mK `   K ?   K !   =L "   _L $   L 3   L .   L    
M    #M -   M F   M /   )N    YN )   rN &   N    N    N '   O    +O 8   GO -   O    O #   O 0   O 5   !P     WP    xP    P )   P /   P    Q 9   Q 9   VQ @   Q ;   Q S   R $   aR 5   R    R F   R    S %   <S =   bS *   S    S &   S    T 3   T    KT    QT 2   ZT )   T    T E   U    U D   U *   $V +   OV /   {V .   V     V "   V .   W 3   MW    W    W    W 8   W .   X    2X !   9X    [X    zX v   X 6   Y /   :Y F   jY    Y    Y    Y    Y     Z #   Z B   *Z    mZ *   Z %   Z    Z <   Z %   /[     U[ *   v[    [ !   [ =   [ ;   \ 7   V\    \    \ 2   \    \ #   ] "   7] #   Z]    ~]     ] "   ] #   ] :   ^ 6   <^ ,   s^ 7   ^ >   ^ 3   _    K_ (   X_    _ (   _     _    _    _ 3   ` .   C` 1   r`    ` J   ` #   a    0a    <a x   Ta $   a    a (   b %   ;b    ab .   b J   b ?   b    ;c '   Kc A   sc    c %   c +   c 3   d    Bd    Kd    kd "   d #   d "   d #   d !   e "   8e    [e    ue    e *   e K   e K   f /   [f    f    f 1   f S   f /   Eg    ug    g    g !   g 6   g    h    h    4h    Kh     gh B   h    h    h    h 	   i    i    (i    4i    Ri 	   ji 	   ti 	   ~i    i    i    i    i    i 	   j    j    j    j 
   /j    :j    Zj (   lj $   j    j    j %   j "   k d   4k B   k    k (   k    l    #l 4   <l 4   ql 5   l $   l @   m L   Bm    m    m &   m 0   m A   n    Mn %   ^n "   n    n /   n    n /   o    Do 5   _o *   o .   o '   o V   p D   np N   p *   q    -q $   Hq    mq -   q )   q ,   q ,   r    <r    Yr     yr    r 
   r >   r F   r    Es    Vs %   ls    s "   s    s 0   s '   t +   Ft h   rt *   t )   u    0u '   Iu    qu %   u .   u '   u    v 
   v    'v    Bv *   _v    v /   v    v    v G   w f   Ww -   w 1   w .   x    Mx    mx 0   qx O   x h   x ;   [y #   y    y R   y 4   z /   Oz #   z 0   z    z    z    z    { .   -{ 8   \{ G   { ,   {    
|    | I   9|    |    |    | C   | :    }    [} -   a} 
   } 2   } A   } J   ~ 0   Z~ $   ~ B   ~ A   ~    5 0   U     &         (           5 *   T 9    "    !   ܀      0       P    l             w   ȁ    @ (   X "            *   Â     #    !   '    I "   h !    $    ,   ҃     &    !   C     e     ,       τ      *    A   :    |                ޅ        Ԇ 6    &   # ?   J         -   Ň !    $       :    T *   q     -    ,    0    +   D (   p '    )    &    *       = *   \         $   Ŋ !    *    1   7    i E   w        ݋ /    %   ,     R $   s     9    #    %   	     /    P    m 3    3    <    *   / ;   Z 6    '   ͎ .    :   $    _    }              =    !    $    [   @     D   & `   k (   ̑ 8       .     J "   k *    h    E   " a   h    ʓ )    *    <   : 6   w o    _    @   ~        ٕ W   ߕ (   7    `    { "    )        1    %   4 /   Z *    B    (    -   !    O    d     .    +   Ø 0    +     0   L 2   } 1    <    <    ,   \ <    :   ƚ >    +   @ ?   l *    H   כ Q     &   r     (    %   ߜ 2       8 F   L !        K   ՝ F   ! K   h    z        V  A  P                            ,      i                     %       Z     L      #          Y    b                       q      Z     1          4            M              "                      R  L  F  U              ~    K            /                        P            U       j  p   )  X  E     '             H     F                          .  8                G       +        -                       	  `  .           T         2           
  "   r    8                               ?        j   (  z  l               .                      5  E                K       Z             t         =             {      u  H      :  M  $   d  `        7                             #         Y     ;    	          b                      O        \    x     -                         [  %        \                      g                    d    P    )                              B          
        9           q      =  4                               #      I        1      n                      D   :      u     r                       6      D    3           Q  }   B               >         a  C            1            B     [                ~         =  	    ~          I                         C  	  >                                     ^               s               b        m      4  x           T          S  ?  N            +    N  _       h  @              '      L                              1         ;          4                          ,      ^      e   <  *       n                          &      $  X  >  P   K              -      @       0  s              i  ;        C                    _     5       e           ^         H               R       7  p      e             &  D      /  }    S                               :      /  h                             z      9      s              I  D                  ~      u  /               B       v       $  (                   6      !        s  $          !     d                   v  a                     k         5     W                    |    p  {   l  |         A  p           0         1  ,  ]             U     m            =            d      3  )   [   W              c          i    "        :   =                     2   K     8   0             3             2                          w      n            A        E                                       |      ?    6               G    U            F    x         V        !           X                N         H             y        {          t        L           q            J  r        i   8  +  :                          g    )      t    _  h                                       J      y          }  3               
  o               Q       >        W      '    	   e           ^       0        X                 ?                          k         k        ]              (                 o          5  b                 a     "    %                 <  (    #                           ]                                        O  I  V  v         N                     "            Q              n                         (            O                             9  %             C  t         -    ]          Y   @        Y                     ;  M      l            /      M      \                   *  z    V             w         c       c  #     
        g           G          w    &          S        8          >      h    )              @       o              <                                       J  D                 a           ;       <            ,                   `              m      m      Z     0         2  |  -                            \                   6          y  .  !       9        $                                   ?                       
            R   +      `      %     9  E      *            f       F   g           J  2      K                *               5    r   k       y           u                 l     j  f    o      '   B  *                         C        7     Q        _        4      @  {        T  c      W      +     G            j  7            .     E  q  R  H                &  G  v    F                                    !            w  I          J           x  S                      O         &     }        3                        ,  [      7  '  <  L          f  A            6                A  T                f                   total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: option '%c%s' doesn't allow an argument
 %s: option '%s' is ambiguous; possibilities: %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS Import ZFS wrapping key stored in FILE. Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List coreboot tables. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MODULE MODULES Mail xorriso support requests to <bug-xorriso@gnu.org>. Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Option -- switches to native xorriso command mode. Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show CBMEM console content. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show the contents of a file. Show the current mappings. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 TARGET Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This entry can be booted by any user. Thursday Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME Verbose countdown. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. Your embedding area is unusually small.  core.img won't fit in it. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `cryptomount' command fails: %s `loopback' command fails: %s `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format blocklist FILE blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s cannot compress the kernel image cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot get translator command line for path `%s': %s cannot open OS file `%s': %s cannot open `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. diskboot.img size must be %u bytes do not probe for filesystems in DEVICE domain name component is too long don't update LED state done embed FILE as an early config embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to get canonical path of `%s' failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification install GRUB images under the directory DIR/%s instead of the %s directory install even if problems are detected invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid block size invalid color specification `%s' invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no `/' in canonical filename no command is specified no decryption key available no network card found no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found pre-load specified modules MODULES premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory of TFTP server route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the argument `%s' requires an integer the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use DIR as the EFI System Partition root. use FILE as font for label use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub-2.00+20130519
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-08-18 15:27+0100
Last-Translator: Àngel Mompó <mecatxis@gmail.com>
Language-Team: Catalan <ca@dodds.net>
Language: ca
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=(n!=1);
               memòria toal: %d KiB
     No hi ha cap mode preferit disponible
     Mode preferit: %ux%u
   La suma de verificació de l'EDID no és vàlida   Versió de l'EDID: %u.%u
   No s'ha pogut inicialitzar l'adaptador   No hi ha cap info disponible   informació de la VBE:   versió: %d.%d  rev del programa OEM: %d.%d
   o:   (d'esquerra a dreta)  (centrat)  (de dreta a esquerra)  - La partició comença a %llu%sKiB  - Mida total %llu%sKiB sectors  - Mida total desconeguda  [OPCIONS...] %.*s: el paràmetre ARGP_HELP_FMT ha de ser positiu %.*s: el paràmetre ARGP_HELP_FMT necessita un valor %.*s: el paràmetre ARGP_HELP_FMT és desconegut %ds Falten %ds. %s sembla contenir un sistema de fitxers %s que no sé si pot reservar espai pel sistema d'arrencada de l'estil del DOS. Instal·lar el GRUB pot DESTRUIR EL SISTEMA DE FITXERS si el grub-setup sobreescriu dades importants (--skip-fs-probe deshabilita la comprovació. Utilitzeu-la sota la vostra responsabilitat) %s sembla contenir un LDM i un mapa de particions %s que no és una combinació segura coneguda. Instal·lar-hi el GRUB pot DESTRUIR EL SISTEMA DE FITXERS si el grub-setup sobreescriu dades importants (--skip-fs-probe deshabilita la comprovació. Utilitzeu-la sota la vostra responsabilitat) %s sembla contenir un mapa de particions %s que és sabut que no reserva espai pel sistema d'arrencada de l'estil del DOS. Instal·lar-hi el GRUB pot DESTRUIR EL SISTEMA DE FITXERS si el grub-setup sobreescriu dades importants (--skip-fs-probe deshabilita la comprovació. Utilitzeu-la sota la vostra responsabilitat) %s és compatible amb els UUIDs %s genera una distribució de teclat pel GRUB fent servir ckbcomp\n ja no és permet l'ús de %s. En canvi, utilitzeu set gfxpayload=%s abans de l'ordre de linux.
 ja no es permet l'ús de %s. No es reconeix el mode VGA %d. En canvi, utilitzeu set gfxpayload=AMPLADAxALÇADA[xPROFUNDITAT] abans de l'ordre de linux.
 el grub-mkconfig encara no és compatible amb el %s.\n %s, amb el Hurd %s %s, amb el Hurd %s (mode de restabliment) %s, amb el Linux %s %s, amb el Linux %s (mode de restabliment) %s, amb Xen %s i Linux %s %s, amb Xen %s i Linux %s (mode de restabliment) %s, amb el Xen hypervisor %s, amb el kFreeBSD %s %s, amb el kFreeBSD %s (mode de restabliment) %s, amb nucli %s (a través de %s) %s, amb nucli %s (a traves de %s, mode de restabliment) %s: EL HASH NO CONCORDA
 %s: CORRECTE
 %s: ERROR DE LECTURA
 %s: Massa arguments
 %s: Heu d'executar-ho com a root\n %s: error: %s: info: %s: l'opció -- «%c» no és vàlida
 %s: l'opció «%c%s» no permet un argument
 %s: l'opció «%s» és ambigua; les possibilitats són: %s: l'opció «--%s» no permet un argument
 %s: l'opció «--%s» necessita un argument
 %s: l'opció «-W %s» no permet un argument
 %s: l'opció «-W %s» és ambigua
 %s: l'opció «-W %s» necessita un argument
 %s: l'opció -- «%c» necessita un argument
 %s: l'opció necessita un argument -- «%s»\n %s: l'opció «%c%s» no és coneguda
 %s: l'opció «--%s» no és coneguda
 %s: avís: (32 bits) (64 bits) (ERROR DEL PROGRAMA) Versió desconeguda!? (ERROR DEL PROGRAMA) S'hauria de reconèixer les opcions!? (a %s) - Etiqueta «%s» - Hora de la darrera modificació %d-%02d-%02d %02d:%02d:%02d %s --MÉS-- -h HASH [-c FITXER [-p PREFIX]] [FITXER1 [FITXER2 ...]] -l | -r | [-s] grubdev osdisk. és compatible amb la interfície protegida de 16 bits
 no és compatible amb la interfície protegida de 16 bits
 és compatible amb la interfície protegida de 32 bits
 no és compatible amb la interfície protegida de 32 bits
 =VAL > RAM d'emmagatzemament no volàtil de l'ACPI RAM que pot reclamar l'ACPI Ha fallat l'ordre d'apagar per l'ACPI ADDR ADDR VALOR [MÀSCARA] ADR [MIDA] ADR1, MÀSC1, [,ADR2,MÀSC2[,...]] ADREÇA SERVIDORDNS L'APM està deshabilitat
 L'APM està desocupat
 L'APM està habilitat
 L'APM està ocupat
 ARGP_HELP_FMT: el valor de %s és menor o igual que %s ASCII Accepta finals de línia CR/NL d'estil DOS. Terminals d'entrada actius: Terminals de sortida actius: Adaptador «%s»:
 Afegeix un servidor DNS Afegeix una adreça de xarxa. Afegeix una ruta de xarxa. Opcions avançades de %s Opcions avançades de %s (amb hypervisor de Xen) Permet interrompre amb ESC. Demana el nom del fitxer des d'on arrencar de nou. S'assumeix que l'entrada és hexadecimal. S'assumeix que l'entrada és una contrasenya. S'assumeix que l'entrada és crua. S'està intentant desxifrar la clau mestra... Esteu intentant instal·lar el GRUB amb múltiples etiquetes de particions o ambdues etiquetes de partició i de sistema de fitxers. Encara no se'n permet l'ús. Esteu intentant instal·lar el GRUB en un disc amb múltiples etiquetes de particions. Encara no se'n permet l'ús. Esteu intentant instal·lar el GRUB a un disc sense particions o a una partició. És una MALA idea. Terminals d'entrada disponibles: Terminals de sortida disponibles: BIOS_DUMP [INT10_DUMP] BLOC BYTE:BIT Mode d'imatge de fons. Directori base per la llista de hash. Arrenca el sistema basat en BIOS. Arrenca un sistema operatiu. Arrenca en mode simple. Arrenca amb missatges de depuració. Arrenca amb missatges detallats. S'arrenca «%s» S'està arrencant una llista d'ordres S'arrenca en mode cec. Camí del directori d'arrencada: %s
 Camí del directori d'arrencada: no disponible
 Entra al GDB CGA COLOR ORDRE [ARGS] La inactivitat de la CPU no fa disminuir la velocitat del processador
 La inactivitat de la CPU fa disminuir la velocitat del processador
 CS5536 a %d:%d.%d
 No es pot habilitar l'àrea ROM. Canvia els dispositius configurats. Canvia el tipus de partició Comprova la tecla d'alternativa. Comprova la tecla de control. Comprova la tecla de majúscules. Es comprova les característiques de la CPU. Comprova el hash dels fitxers amb el FITXER de llista de hash. Comprova si la CPU és compatible amb el mode de 64 bits (llarg) (per defecte). Comprova l'estat de la tecla modificadora. Comprova si l'usuari és a LLISTAUSUARIS. Comprova els errors de sintaxi del fitxer d'script de configuració del GRUB. Neteja la pantalla. S'ha netejat l'indicador d'actiu a %d. 
 Comandes: Compara el FITXER amb el fitxer local LOCAL. Compara el fitxer «%s» amb el «%s»:
 Compara dos fitxers. Calcula el UUID de XNU del dispositiu. Calcula o comprova la suma de comprovació del hash Configura el port sèrie. Continua els bucles Converteix els fitxers de fonts comunes al format PF2 Copia el FITXER al fitxer local LOCAL. copia el FITXER a la sortida estàndard. No es pot trobar el controlador FPSWA No s'ha pogut trobar el volum físic «%s». Deuen faltar alguns mòduls a la imatge del nucli. No s'ha pogut carregar el sha256 No s'ha pogut carregar el sha512 Crea estructures semblants a una BIOS per mantenir la compatibilitat amb els SO existents. Crea un fitxer de blocs d'entorn buit. tipus de terminfo actuals: DISPOSITIU DISPOSITIU [PARTICIÓ[+/-[TIPUS]]] El DISPOSITIU ha de ser un dispositiu del SO (p.e. /dev/sda). NOM_DISPOSITIU DIR DIRECTORI [NecessitaOSBundle] SERVIDORDNS Eina de depuració pel controlador de sistemes de fitxers. Declara regions de memòria com a memòria defectuosa (badram). El descompressor és massa gran Defineix una entrada del menú. Defineix un submenú. Esborra una adreça de xarxa. Esborra una ruta de xarxa. Esborra el dispositiu de retrobucle especificat. Esborra les variables. Determina el controlador. Determina l'UUID del sistema de fitxers. Determina l'etiqueta del sistema de fitxers. Determina el tipus de sistema de fitxers. Determina el tipus de mapa de particions. Dispositiu %s: Devid: %s
 Devid: no disponible Color directe, màscara: %d/%d/%d/%d  posició: %d/%d/%d/%d Deshabilita l'ACPI. Deshabilita el SMP. Deshabilita totes les sortides d'arrencada. Habilita/deshabilita l'SMART (1/0). Es descarten les particions mal imbricades (%s, %s %s%d) Estadístiques de la memòria cau del disc: encerts = %lu (%lu.%02lu%%), errors = %lu
 El compte de discs ha de precedir al llistat de discs.
 Mostra la versió del FPSWA. Mostra l'estat de salut SMART. Mostra una línia de text. Mostra la llista de blocs del FITXER. Mostra la sortida a totes les consoles. Mostra el mode d'alimentació. Mostra l'ús d'aquesta ordre i surt. Mostra aquesta ajuda i surt. Mostra/modifica el dia i l'hora actuals. No mostris els salts de línia. No mostris missatges. No provis cap disquetera. No utilitzis l'APM per aturar l'ordinador. No facis res, amb èxit. No facis res, sense èxit. No mostris els missatges de diagnòstics de l'arrencada. No carreguis les taules d'amfitrions especificades en llistes separades per comes. No reiniciïs, només apaga. No s'atura després del primer error. No actualitzis l'EBDA. Pot corregir defectes o penjades a algunes BIOS, però el fa ineficaç amb SO que no rebin el RSDP del GRUB. VARENTORN VARENTORN [VARENTORN] ... ERROR: no s'ha trobat cap distribució de teclat vàlida. Comproveu l'entrada.
 En qualsevol moment ESC surt. EXPRESSIÓ EXPRESSIÓ ] Temps transcorregut: %d.%03d s 
 Temps transcorregut: %d.%03d segons 
 No s'ha pogut incrustar. El GRUB només es pot instal·lar d'aquesta manera fent servir llistes de blocs. De tota manera, les llistes de blocs NO SÓN FIABLES i es desaconsella la seva utilització. Emula una seqüència de pulsació de tecles Habilita la interpretació dels caràcters amb contrabarra. Introduïu la contrasenya ZFS:  Entra en KDB a l'arrencar. Entra al mode normal. Introduïu la contrasenya de %s%s%s (%s):  Introdueix la contrasenya:  Introdueix el nom d'usuari:  S'ha produït un error quan s'analitzava els arguments de la línia de comandes
 Avalua una expressió. No s'ha pogut sortir Surt del GRUB. Surt dels bucles Surt del mode normal. Exporta les variables. Exporta les taules de la versió 1 al SO. Exporta les taules de la versió 2 i de la versió 3 al SO. FITXER FITXER [ARG...] FITXER [ARGUMENTS...] FITXER | INTERVAL [TO1 DURADA1] [TO2 DURADA2] ... FITXER... FITXER1 FITXER2 NOMFITXER ORDRE SISTEMAFITXERS [VARIABLE] FITXER|prompt FORMAT el protocol FPSWA no ha pogut trobar la interfície Revisió del FPSWA: %x
 DESDE-FINS[,DESDE-FINS] DES DE[K|M|G] A[K|M|G] Ha fallat l'FT_Init_FreeType No ha pogut arrencar ni l'entrada per defecte ni l'alternativa.
 No s'ha pogut crear l'arbre «device-mapper» S'arrenca alternativament «%s» El sistema de fitxers «%s» no és compatible amb la incrustació Els fitxers són diferents a l'òfset %llu: 0x%x [%s], 0x%x [%s]
 Els fitxers tenen mides diferents: %llu [%s], %llu [%s]
 No es pot accedir al sistema de fitxers. Tipus de sistema de fitxers %s Omple l'MBR híbrid del DISPOSITIU unitat GPT. Les particions especificades seran una part de l'MBR híbrid. Es permeten fins a 3 particions. TIPUS és un tipus de MBR. + significa que la partició és activa. Només es pot activar una partició. S'ha carregat l'emulador EFI. Primer prova el dispositiu PISTA si s'executa sobre l'ARC. Si PISTA acaba en coma, també prova les particions inferiors Primer prova el dispositiu PISTA si s'executa sobre una BIOS. Si PISTA acaba en coma, també prova les particions inferiors Primer prova el dispositiu PISTA si s'executa sobre un EFI. Si PISTA acaba en coma, també prova les particions inferiors Primer prova el dispositiu PISTA si s'executa sobre un IEEE1275. Si PISTA acaba en coma, prova també les particions inferiors Primer prova el dispositiu PISTA si és compatible amb l'accés directe al maquinari. Si PISTA acaba en coma, també prova les particions inferiors Primer prova el dispositiu PISTA. Si PISTA acaba en coma, també prova les particions inferiors Corregeix un problema de vídeo. S'ha trobat %s a %s (%s)\n S'ha trobat %s a %s\n S'ha trobat un GNU Mach: %s S'ha trobat el mòdul del Hurd: %s S'ha trobat un nucli de NetBSD: %s\n S'ha trobat el fons: %s\n s'ha trobat una imatge de initrd: %s\n S'ha trobat el directori de mòduls del nucli: %s\n S'ha trobat un nucli de FreeBSD: %s\n S'ha trobat una imatge de linux: %s\n S'ha trobat el tema :%s\n s'ha produït l'error %d del Freetype mentre es carregava 0x%x per U+0x%x%s Congela la configuració de seguretat ATA fins que es reiniciï. Divendres Versió %s del GNU GRUB Menú d'arrencada del GRUB El GRUB encara no sap com parar aquesta màquina! Emulador del GRUB. DISPOSITIUGRUB=DISPOSITIUPLAN9 Hi ha brossa a ARGP_HELP_FMT: %s Genera una distribució de teclat pel GRUB des de la de la consola de Linux Genera el hash PBKDF2 de la contrasenya Genera un fitxer de configuració del GRUB Genera una imatge independent (que conté tots els mòduls) amb el format seleccionat Calcula la suma de verificació crc32 del FITXER. Recupera la informació de la memòria cau del disc. Llegeix/escriu els paràmetres del disc ATA. HASH PISTA Atura el sistema, si pots, fent servir l'APM. Atura l'ordinador. Aquesta ordre no funciona en totes les implementacions de microprogramari. Tracta N bytes del fitxer de sortida. Hola món Hercules  ID IMATGE1 [IMATGE2 ...] PUNTMUNTATGE CAMÍ_IMATGE COMANDES Importa la clau d'encapsulat ZFS desada al FITXER. Dispositiu virtual incorrecte: no hi ha cap tipus disponible Insereix un mòdul. Instal·la GRUB a la vostra unitat. Ha acabat la instal·lació. No s'ha reportat cap error. La referència anterior no és vàlida El nom de tipus de caràcter no és valid El caràcter de paginació no és vàlid L'ordre %s no és vàlida.
 El contingut de \{\} no és vàlid Dispositiu «%s» invàlid.
 Compte de discs invàlid.
 L'expressió regular precedent no és vàlida El rang no és vàlid L'expressió regular no és vàlida Invoca el camí de la configuració d'usuari. ARGUMENTS KERNEL TECLAT_TECLA Tecla per arrencar ràpid aquesta entrada. Dispositiu leaf virtual (fitxer o disc) no es permet l'ús de l'antic paràmetre «ask». Llegenda: màscara/posició=roig/verd/blau/reservat Longitud del hash generat Longitud de sal Llista els servidors de DNS Llista els dispositius PCI. Llista tots els fitxers. Llista els modes de vídeo disponibles. Si es dona una resolució, mostra només les modes que hi coincideixin. Llista les taules del coreboot. Llista dispositius i fitxers. Llista dispositius o fitxers. Llista els dispositius. Llista els fitxers a CAMÍ. Llista el mapa de memòria proveït pel microprogramari. Llista dels modes de vídeo compatibles: Llista d'usuaris que poden engegar aquesta entrada. Llista o selecciona un terminal d'entrada Llista o selecciona un terminal de sortida. Llista les variables actuals. Llista les fonts carregades. Llista les variables del bloc del fitxer d'entorn. Carrega una imatge del XNU de 64 bits. Carrega l'abocament de memòria de la BIOS. Carrega l'entorn del FreeBSD. Carrega el mòdul del nucli del FreeBSD (ELF). Carrega el mòdul del nucli del FreeBSD. Carrega el kernel.sys de FreeDOS. Carrega el Linux. Carrega el NTLDR o el BootMGR. Càrrega un mòdul del nucli NetBSD (ELF). Càrrega un mòdul del nucli NetBSD. Carrega el nucli Plan9. Carrega el directori de les extensions del XNU. Carrega un paquet d'extensió del XNU. Carrega una extensió del XNU. Carrega una imatge del XNU. Carrega un disc ram XNU. Estarà disponible al SO com a md0. Carrega el bolcat de «device-properties». Carrega una imatge PXE. Carrega una disposició de teclat. Carrega un nucli multiarrencada 2. Carrega un mòdul multiarrencada 2. Carrega un nucli multiarrencada. Carrega un mòdul multiarrencada. Carrega una imatge de presentació pel XNU. Carrega una imatge de XNU hibernada. Carrega i inicia l'emulador EFI. Carrega un altre gestor d'arrencada. Carrega un altre fitxer de configuració però agafa només les entrades del menú. Carrega un altre fitxer de configuració agafant només les entrades del menú però sense canviar el context. Carrega un altre fitxer de configuració sense canviar el context. Carrega un altre fitxer de configuració. Carrega unes altres dades fonamentals de «coreboot». Carrega una imatge de fons al terminal actiu. Carrega les taules d'amfitrions ACPI i les taules especificades per arguments. Carrega l'initrd. Carrega disc de ram kOpenBSD. Carrega el nucli del FreeBSD Carrega el nucli del NetBSD. Carrega el nucli del OpenBSD. Carrega només les taules especificades en llistes separades per comes. Carrega el mateix fitxer de diferents maneres. Carrega les variables del bloc del fitxer d'entorn. Carrega la clau de xifrat zfs. Fonts carregades: S'està carregant el GNU Mach ... S'està carregant el Linux %s ... S'està carregant el Xen %s ... S'està carregant la ramdisk inicial ... S'està carregant el nucli de FreeBSD %s ... S'està carregant el nucli de Illumos ... S'està carregant el Hurd ... ha fallat la verificació de la MAC ENTRADA_MENÚ és un número, el títol d'un element del menú o el seu identificador. MÒDUL MÒDULS Envieu les peticions de compatibilitat amb el xorriso a «bug-xorriso@gnu.org». Fa una imatge de GRUB que pot arrencar des de CD-ROM. disc, llapis USB i disquet. Fa un fitxer de distribució de teclat pel GRUB. Crea una imatge de GRUB que pot arrencar Fes una unitat virtual des d'un fitxer. activa la partició Gestiona els mapatges d'unitats de la BIOS. Els arguments opcionals o obligatoris per les opcions llargues també ho són per les opcions curtes corresponents. Manipula els dispositius PCI. Mesura el temps que ha utilitzat l'ORDRE S'ha esgotat la memòria Tipus de memòria: DDR2. Tipus de memòria: desconeguda Identificador del menú d'entrada. No s'ha especificat cap entrada del menú. Tipus de menú d'entrada. Es permet l'ús d'una línia d'edició mínima tipus BASH. Per la primera paraula, TAB mostra les opcions per completar possibles. A qualsevol altre lloc, TAB mostra completats de dispositius o fitxers possibles. %s Es permet l'ús d'una pantalla d'edició mínima semblant a l'Emacs. TAB llista els completats. Premeu Ctrl+x o F10 per arrencar, Ctrl+c o F2 per una línia d'ordres o ESC per descartar els canvis i tornar al menú del GRUB. Falten arguments
 No s'ha trobat el fitxer d'entrada
 Dilluns Monocrom Hi ha més d'un dispositiu d'instal·lació? Més d'una entrada del menú? Munta un dispositiu xifrat. Munta tots els volums amb el senyal «boot» activat. Munta-ho tot. Munta per UUID. Munta dispositius xifrats. NOM NOM [VARIABLE] [PISTES] NÚMERO NOMBRE_DE_SEGONS Nom	Cont ref	Dependències
 Els controladors de disc nadius s'estan utilitzant. Es rebutja la utilització del microprogramari de la interfície. Protocols de xarxa: El nou MBR està escrit a «%s»
 No s'ha trobat cap CS5536 No s'ha trobat cap FPSWA No hi ha disponible cap estadística del temps d'arrancada
 No heu especificat cap ordre.
 No s'ha especificat cap dispositiu.
 No hi ha disponible cap estadística de la memòria cau del disc
 No s'ha canviat el mapa de cap unitat No s'ha detectat cap sistema de fitxers conegut No s'ha trobat cap concordança No heu especificat cap camí.
 No s'ha especificat cap camí ni cap dispositiu.
 No hi cap expressió regular prèvia No hi ha cap arbre de dispositius virtuals disponible Non-chain 4  A l'ordre li falten paràmetres.
 Ara connecteu el depurador remot. Nombre d'iteracions de la PBKDF2 Disk d'SO #num ------> dispositiu de GRUB/BIOS s'ha produït un error en obrir el fitxer %s del SO: %s Opció --canvia al mode de comandes nadiu de xorriso. Opcions: Cerca fora de rang: %d
 Substitució fora de rang (%d, %d)
 Sobreescriu el mapa de dispositius Plan9 suposats. ORDRES DE PARTICIONAT CAMÍ el hash PBKDF2 de la vostra contrasenya és %s
 PORT PORT VALOR [MÀSCARA] Analitza la configuració anterior en el nou context Analitza la configuració antiga en el nou context agafant només les entrades del menú Analitza la configuració anterior en l'antic context Analitza la configuració antiga en el mateix context agafant només les entrades del menú Nº de part: %s.
 la partició %d està activa. 
 Partició %s: L'estil de partició «%s» no és compatible amb la incrustació Camí: %s
 Camí: no disponible Executa ORDRES a la partició.
Utilitzeu «parttool PARTICIÓ help» per obtenir la llista d'ordres disponibles. executa una cerca de DNS Executa la configuració automàtica de l'IPV6 Realitza ambdós mapatges, el directe i l'invers. Planar  Reprodueix una melodia. No utilitzeu l'antic títol «%s» per al GRUB_DEFAULT. Feu servir «%s» (per versions anterior a la 2.00) o «%s» (per versions 2.00 o posteriors) GUID del conjunt: %016llx
 GUID del conjunt: no disponible Nom del conjunt: %s
 Nom del conjunt: no disponible Estat del conjunt: actiu Estat del conjunt: destruït Estat del conjunt: exportat Estat del conjunt: dispositiu de nivell 2 d'ARC Estat del conjunt: potencialment actiu Estat del conjunt: reservat com a disc de recanvi Estat del conjunt: no disponible Estat del conjunt: sense inicialitzar Els arguments possibles són: Les ordres possibles són: Els dispositius possibles són: Els fitxers possibles són: Les particions possibles són: Les possibilitats són: Final prematur de l'expressió regular Premeu una tecla per continuar... Premeu una tecla per arrencar xnu Premeu enter per arrencar el SO seleccionat, «e» per editar les ordres abans d'arrencar o «c» per una línia d'ordres. Premeu enter per arrencar el SO seleccionat, «e» per editar les ordres abans d'arrencar o «c» per una línia d'ordres. Premeu ESC per tornar al menú anterior. Mostra la informació de la memòria. Mostra la informació ZFS sobre el DISPOSITIUS Mostra el ZFS-BOOTFSOBJ o l'emmagatzema a la VARIABLE Mostra una llista de blocs. Mostra i executa el bloc d'arguments. Mostra la traça de la pila. Mostra la identificació i la configuració de la unitat. Mostra les mides en un format llegible pels humans. Cerca informació del dispositiu en un camí especificat (o per un dispositiu, si es dona l'opció -d). Taules del coreboot que suporten la RAM codi del microprogramari que suporta la RAM ranura de RAM número %d
 EXPREG CADENA Hi ha una imatge ROM. Llegeix un valor de 16 bits de ADDR. Llegeix un valor de 16 bits del PORT. Llegeix un valor de 32 bits de ADDR. Llegeix un valor de 32 bits del PORT. Llegeix un valor de 8 bits de ADDR. Llegeix un valor de 8 bits del PORT. Llegeix només LONGITUD bytes. No s'ha pogut arrencar de nou Reinicia l'ordinador. Torna a introduir la contrasenya:  El registre %x de %x:%02x.%x és %x
 L'expressió regular és massa gran Esborra un servidor DNS Treu un mòdul. Esborra una variable d'entorn. Esborra totes les regions de memòria del rang especificat. Informeu de les fallades a %s.
 Informeu dels errors a <bug-grub@gnu.org>. S'ha demanat un terminal sèrie, però no s'ha especificat el GRUB_SERIAL_COMMAND. S'utilitzen els paràmetres per defecte. Es reinicien tots els mapatges als valors per defecte. Recupera la informació del dispositiu. Torna d'una funció. Torna a l'indicador IEEE1275. Executa «gdb %s %d», i posa ARGS.HOLD a zero.
 Executeu «go» per tornar al GRUB. SEGONS NOMCURT NOMCURT TARGETA ADREÇA [ADREÇAFÍSICA] NOMCURT XARXA [INTERFÍCIE] gw PASSARELA] MIDA FONT|-u UUID|-a|-b CADENA Dissabte Desa el valor llegit a la variable NOMVARIABLE. Desa les variables al bloc del fitxer d'entorn. Diu «Hola món». Cerca dispositius per l'UUID. Si s'especifica VARIABLE, el nom del primer dispositiu trobat s'escriu a la variable. Cerca dispositius per un fitxer. Cerca dispositius per un UUID del sistema de fitxers Cerca dispositius per una etiqueta del sistema de fitxers. Cerca dispositius per fitxer o per etiqueta o UUID de sistema de fitxers. Si s'especifica --set, el primer dispositiu trobat s'escriu a una variable. Si no s'especifica cap nom de variable s'utilitza «root». Cerca dispositius pel fitxer. Si s'especifica VARIABLE, el nom del primer dispositiu trobat s'escriu a la variable. Cerca dispositius per l'etiqueta. Si s'especifica VARIABLE, el nom del primer dispositiu trobat s'escriu a la variable. El sector %llu ja l'està utilitzant el controlador de raid «%s»; eviteu-lo. Demaneu al fabricant que no desi dades a l'espai del MRB El sector %llu ja l'està utilitzant el programa «%s»; eviteu-lo. Aquest programa pot causar problemes d'arrencada o d'altres en un futur. Demaneu als autors que no desin dades al sector d'arrencada Selecciona el dispositiu per la seva posició al bus. Selecciona el dispositiu per proveïdor i IDs dels dispositius. Configura el gestor avançat de consum
(1=baix, ..., 254=alt, 255=apagat). Configura el gestor acústic automàtic
(0=apagat, 128=silenciós, ..., 254 ràpid). Aplica l'OEMID de l'RSDP, XSDT i l'RSDT. Aplica l'identificador de l'OEMTABLE de l'RSDP, XSDT i l'RSDT. Aplica la revisió de l'OEMTABLE de l'RSDP, XSDT i l'RSDT. Activa l'indicador «oculta» al tipus de partició Estableix una variable per retornar un valor. Estableix una variable pel primer dispositiu trobat. Assigna una variable d'entorn. Estableix el color de fons per al terminal actiu Aplica el camp creador de l'RSDP, XSDT i l'RSDT. Aplica la revisió del creador de l'RSDP, XSDT i l'RSDT. Estableix la variable d'entorn de depuració. Posa la unitat en mode descans. Posa la unitat en mode d'espera. Estableix els paràmetres de posició. Indica el dispositiu arrel. Configura el temps màxim d'espera
(0=apagat, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Assigna el tipus de terminfo de TERM a TIPUS.
 Estableix l'entrada del menú d'arrencada per defecte del GRUB, només per la propera arrencada. Estableix l'entrada del menú d'arrencada per defecte del GRUB. Indica l'adreça del port sèrie. Indica la paritat del port sèrie. Indica la velocitat del port sèrie. Indica el nombre de bits d'aturada del port sèrie. Indica la longitud de paraula del port sèrie. Indica la unitat sèrie. Configura les imatges per arrencar des del DISPOSITIU

Normalment no hauríeu de fer servir aquest programa directament. Utilitzeu grub-install. Estableix una contrasenya d'usuari (PBKDF2).  Estableix una contrasenya d'usuari (text pla). No recomanat i insegur. Estableix la variable amb una entrada d'usuari. Estableix les variables. S'estableix el tipus de partició a 0x%x
 Desplaça els paràmetres de posició. Mostra la informació del ACPI. Mostra la informació de l'APM. Mostra el contingut del terminal CBMEM. Mostra un missatge de text. Mostra una llista llarga amb informació més detallada. Mostra el contingut de FITXER en hexadecimal. Mostra els mòduls carregats. Mostra el contingut de la memòria. Mostra el contingut cru del sector IDENTIFY ATA. Mostra el contingut cru d'un fitxer o de la memòria. Mostra el contingut d'un fitxer. Mostra els mapatges actuals. Mostra aquest missatge. Mostra només les taules de la versió 1. Mostra només les taules de les versions 2 i 3. No s'ha pogut apagar Simula una ordre «initrd» de la versió antiga del grub Simula una ordre «kernel» de la versió antiga del grub Simula una ordre «modulenounzip» de la versió antiga del grub Simula una ordre «password» de la versió antiga del grub Simula una ordre «password» de la versió antiga del grub al mode menú d'entrada Salta N bytes del fitxer de sortida. Salta els bytes d'òfset des del principi del fitxer. La ranura %d està oberta
 S'ha trobat alguna cosa del Hurd, però no és suficient per arrencar. Especifica el nom del fitxer. Especifica el hash que cal utilitzar. Especifiqueu un o més fitxers de fonts que vulgueu carregar. Especifica el nombre de fitxers d'entrada. Velocitat: %s
 Inicia l'estub del GDB al port indicat Atura l'estub del GDB Desa el component coincident NÚMERO a NOMVARIABLE. Èxit Diumenge Suprimeix la sortida normal (conserva els avisos). Hi ha un error de sintaxi a la línia %u
 S'han detectat errors de sintaxi al fitxer de configuració del GRUB generat.
Assegureu-vos que no hi ha errors a /etc/default/grub o als fitxers
 /etc/grub.d/* o bé envieu un informe d'error adjuntant el fitxer %s  L'espai I/O del controlador de bus de gestió del sistema és a 0x%x
 OBJECTIU No s'ha especificat el format de l'objectiu (utilitzeu l'opció -O). El terminal té una geometria específica. El terminal és només ASCII [per defecte]. El terminal està ordenat lògicament en UTF-8. El Terminal està ordenat visualment en UTF-8. Prova la compatibilitat amb USB. Comprova el bit a BYTE:BIT a CMOS. Comprova si l'EXPREG coincideix amb la CADENA. Prova els subsistema de vídeo en mode Ample x Alt. Prova el subsistema de vídeo. Només text  Els fitxers són idèntics.
 L'entrada realçada s'executarà automàticament en %ds. Qualsevol usuari pot arrencar aquesta entrada. Dijous Eina per editar el bloc d'entorn. Mida total de la flash: %d B.
 Contrabarra final Transforma un UUID de 64 bits a un format adient per XNU. Amb l'opció -l el manté en minúscules tal i com fa blkid. Transforma un nom de fitxer del sistema en un del GRUB Tradueix la cadena amb la configuració actual. Proveu «%s --help» o «%s --usage» per a obtenir més informació.
 Dimarts CONTRASENYA D'USUARI CONTRASENYA_PBKDF2 D'USUARI NOMUSUARI[,NOMUSUARI] UTF-8 No s'ha pogut crear el conducte: %s No s'ha pogut determinar la vostra plataforma. Utilitzeu --target. No s'ha pogut bifurcar: %s No es pot obrir el flux de dades de %s: %s No es pot obtenir l'estat del conjunt Descomprimeix les dades. Descomprimeix el fitxer abans de fer la suma de verificació el tipus d'adreça %d és desconegut
 L'ordre «%s» és desconeguda.
 El format de compressió %s és desconegut Codificació desconeguda Argument extra «%s» desconegut. La característica gsub 0x%x (%s) de la font no és coneguda
 El número identificador de la tecla 0x%02x és desconegut
 El símbol identificador de la tecla %s és desconegut
 Error de sistema desconegut Mode de vídeo desconegut  El tipus de dispositiu virtual és desconegut: %s
 Descarrega l'emulador EFI. Falta el tancament d'un ( o d'un \( Falta la obertura d'un ) o d'un \) Falta el tancament d'un [ o d'un [^ Falta el tancament d'un \{ No es reconeix l'opció «%s»\n L'estat del conjunt no es reconeix No es permet el tipus d'adreça %d
 No és compaible amb l'especificació de la cobertura: %d
 No és compatible amb l'ús del tipus de maquinari %d
 No és compatible amb el format de la imatge No és compatible amb la substitució del senyal: 0x%x
 No és compatible amb l'especificació de la substitució: %d
 No és compatible amb la substitució de tipus: %d
 Forma d'ús: Ús: %s -0 SORTIDA CKBMAP_ARGUMENTS...\n Ús: %s DISPOSITIU
 Ús: %s [FITXERENTRADA [FITXERSORTIDA]]
 Ús: %s [OPCIÓ] ENTRADA_MENÚ\n Ús: %s [OPCIÓ]\n Utilitza el CDROM com arrel. Utilitza el depurador remot GDB en comptes del DDB. utilitza STRING com a cos del menú d'entrada. Utilitza el dispositiu root compilat internament. Utilitza una consola sèrie. Utilitzeu les tecles %C i %C per seleccionar quina entrada voleu realçar. VAR INTERFÍCIE NÚMERO DESCRIPCIÓ NOMVARIABLE Compte enrere detallat. versió %u.%u
CS de 32 bits = 0x%x, long = 0x%x, òfset = 0x%x
CS de 16 bits = 0x%x, long = 0x%x
DS = 0x%x, long = 0x%x
 El dispositiu virtual està degradat Ha fallat el dispositiu virtual El dispositiu virtual està desconnectat El dispositiu virtual està connectat S'ha tret el dispositiu virtual AVÍS: el SO no tindrà cap consola disponible AVÍS: no s'ha realitzat cap instal·lació per una plataforma específica AVÍS: no és compatible amb la característica de la font: %x
 AMPLADAxALÇADA Espera un nombre especificat de segons. Espera que es premi una tecla després de cada línia de sortida. Avís: Avís: color de fons invàlid «%s»
 Avís: color de primer pla invàlid «%s»
 Avís: error de sintaxi (falta una barra) a «%s»
 Dimecres Windows NT/2000/XP (carregador) Windows Vista/7 (carregador) Escriu un VALOR de 16 bits a ADDR. Escriu un VALOR de 16 bits al PORT. Escriu un VALOR de 32 bits a ADDR. Escriu un VALOR de 32 bits al PORT. Escriu un VALOR de 8 bits a ADDR. Escriu un VALOR de 8 bits al PORT. Bytes SPD escrits: %d B.
 Hipervisor de Xen, versió %s YUV  Heu d'especificar com a mínim una ordre.
 Heu d'establir manualment les variables «SystemPartition» i «OSLoader». La vostra àrea d'incrustació és petita. El fitxer core.img no hi cabrà. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FITXER [--md5] CONTRASENYA [FITXER] [--no-mem-option] [--type=TIPUS] FITXER [ARG ...] [-1|-2] [--exclude=TAULA1,TAULA2|--load-only=TAULA1,TAULA2] FITXER1 [FITXER2] [...] [-c FITXER [-p PREFIX]] [FITXER1 [FITXER2 ...]] [-d] NOMDISPOSITIU FITXER. [-e|-n] CADENA [-f FITXER] [-f FITXER] nom_de_variable [...] [-f|-l|-u|-s|-n] [--hint PISTA [--hint PISTA] ...] NOM [-h|-p|-r] [FITXER] [-l] GRUBUUID [NOMVARIABLE] [-l|-h|-a] [FITXER...] [-m (amplia|normal)] FITXER [-s POSICIÓ]... [-d DISPOSITIU] [-s POSICIÓ] [-d DISPOSITIU] [-v VAR] REGISTRE[=VALOR[:MÀSCARA]] [ADREÇA|comUNITAT][,VELOCITAT] [ARG] [TARGETA [ADREÇAFÍSICA]] [TARGETA] [VARENTORN=VALOR] [VARENTORN] [PULSACIÓ1] [PULSACIÓ2] ... [NÚMERO:]NOMDEVARIABLE [NÚMERO] [OPCIONS] [OPCIONS] [OPCIONS] DISC [OPCIONS] FITXER_O_DISPOSITIU [OPCIONS] FITXERS_FONT [OPCIONS]...[MODULS] [OPCIONS]... [CAMÍ|DISPOSITIU] [OPCIONS] [CAMÍ] [PATRÓ...] [LLISTAUSUARIS] [VALOR]... [AmpladaxAlçada[xProfunditat]] [AmpladaxAlçada] [[-a|-u|-v] [-g AMPLExALT] TERM [TIPUS]] [[any-]mes-dia] [hora:minut[:segon]] [bus]:[ranura]:[.func] [proveïdor]:[dispositiu] ha fallat l'ordre «cryptomount»: %s ha fallat l'ordre «loopback»: %s no s'ha trobat «obppath» al directori de nivell superior de «%s», no s'ha trobat un nom IEEE1275 s'ha assignat un valor a l'argument «%s» que no en necessita cap s'ha denegat l'accés afegeix el segment NOTA al CHRP IEEE1275 adreça no s'ha trobat l'adreça s'ha intentat llegir o escriure fora del disc «%s» s'ha intentat llegir o escriure fora de la partició s'ha intentat llegir més enllà del final del fitxer s'ha intentat buscar fora del fitxer s'està intentant llegir la imatge del nucli «%s» des del GRUB sestà intentant llegir la imatge del nucli «%s» des del GRUB un altre cop RAM disponible formats disponibles: base_addr = 0x%llx, long = 0x%llx, %s
 base_addr = 0x%llx, long = 0x%llx, tipus = 0x%x
 el fitxer de mapa de bits «%s» té un format que no és permès blocklist FITXER les llistes de blocs no són vàlides blocksize no és divisible per 512 no es pot sortir de 0 bucles no es pot determinar el sistema de fitxers a %s no s'ha pogut trobar l'ordre %s no s'ha pogut muntar el volum xifrat «%s»: %s no es pot obrir «%s»: %s no s'ha pogut obrir el fitxer %s, índex %d: error %d no es poden recuperar les llistes de blocs no es poden recuperar les llistes de blocs: %s no es pot comprimir la imatge del nucli no s'ha pogut trobar cap unitat de disc anomenada %s. Comproveu el mapa de dispositius no s'ha pogut trobar cap dispositiu anomenat %s (/dev està muntat?) no es pot obtenir una línia de comandes del traductor amb el camí «%s»: %s no es pot obrir el fitxer de SO «%s»: %s no es pot obrir «%s»: %s no es pot llegir «%s» correctament no es pot llegir «%s» : %s no es pot canviar el nom del fitxer %s per %s no es pot restaurar el directori original no es pot executar «seek» sobre «%s»: %s no es pot executar «stat» sobre «%s»: %s no es pot escriure al CD-ROM no es pot escriure a «%s»: %s no es pot escriure al stdout: %s no s'ha trobat la targeta cat FITXER ha fallat la comprovació del valor de la suma de verificació escolliu la compressió que s'ha de fer servir com a imatge del núcli cmp FITXER LOCAL comUNITAT[,VELOCITAT] ha fallat la comparació al punt %llu s'ha refusat la connexió s'ha esgotat el temps de connexió converteix la font en negreta la imatge del nucli és massa gran (0x%x > 0x%x) la versió del core.img no es correspon no s'ha pogut configurar automàticament %s no s'ha pogut trobar el membre de dispositius necessari del sistema de fitxers de dispositius múltiples no s'ha pogut trobar el consumidor de geli no s'ha trobat la classe «part» de geom no s'ha pogut obrir geom no s'han pogut llegir les metadades ELI no s'ha pogut obtenir el UUID no s'ha pogut obtenir l'UUID del geli no s'ha pogut obtenir dades aleatòries de sal no s'ha pogut enviar un paquet de xarxa cp FITXER LOCAL crc FITXER error de xifrat número %d ha fallat cygwin_conv_path() esborra el mapa de dispositius si existeix no s'ha pogut accedir al destí el recompte de dispositius ha excedit el límit deshabilita l'autohint no s'ha trobat el disc «%s» el disc no existeix, per tant es torna a la partició %s del dispositiu mòdul de disc que cal utilitzar (biodisk o nadiu). Aquesta opció només està disponible per a BIOS. la mida de diskboot.img ha de ser de %u bytes no comprovis el sistema de fitxers del DISPOSITIU el component del nom de domini és massa llarg no actualitza l'estat dels LEDs fet incrusta el FITXER com una configuració prèvia no s'ha pogut incrustar, però és necessari quan s'instal·la un RAID i un LVM +No s'ha pogut incrustar, però es requereix quan grub s'instal·la en un disc diferent del de la imatge introduïu: boot, «e»: opcions, «c»: línia de comandes el bloc de l'entorn és massa petit error: %s.
 s'esperaven imatges del GRUB al directori DIRECTORI/%s en comptes del directori %s no s'ha pogut aconseguir el camí canònic de «%s» no s'ha pogut llegir el sector 0x%llx de «%s» no s'ha pogut llegir la contrasenya no s'ha pogut escriure el sector 0x%llx a «%s» fals RAM defectuosa (BadRAM) el fitxer «%s» no s'ha trobat s'esperava un nom de fitxer s'esperava un nom de fitxer o un tempo i notes el sistema de fitxers «%s» no permet l'ús d'etiquetes el sistema de fitxers «%s» no és compatible amb les llistes de blocs la imatge del microprogramari és massa gran força l'autohint s'esperaven quatre arguments fwstart.img no té la versió bona coneguda. Assumiu el risc de continuar genereu una imatge al FORMAT Mostra un missatge d'ús curt mostra aquesta llista d'ajuda l'argument que s'ha donat és un dispositiu de sistema, no un camí el grub-mkimage no porta compilat la compatibilitat amb XZ grub> atura durant SEGONS segons (per defecte 3600) hex FITXER ignora els mapes de bits preformats quan carreguis l'especificació de les dimensions del terminal no són correctes instal·la imatges de GRUB al directori DIR/%s en comptes del directori %s Instal·la encara que s'hagin detectat problemes la contrasenya PBKDF2 no és vàlida el màgic de l'ELF no és vàlid segons quina sigui l'arquitectura el màgic de l'ELF no és vàlid sigui quina sigui l'arquitectura la mida del bloc no és vàlida l'especificació «%s» del color no és vàlida el bloc d'entorn no és vàlid el nom del fitxer «%s» no és vàlid el rang de la font no és vàlid el format de la línia no és vàlid: %s el paràmetre %s no és vàlid valor %lld d'escapada invàlid el nom de la variable «%s» no és vàlid l'especificació «%s» del mode de vídeo no és vàlida error del ioctl GET_ARRAY_INFO: %s error del ioctl GET_DISK_INFO: %s error del ioctl RAID_VERSION: %s la imatge del nucli és massa gran (0x%x > 0x%x) llista les adreces de xarxa llista les targetes de xarxa llista les rutes de xarxa ls CAMÍ el fitxer lzop és corrupte fa que la unitat es pugui arrencar també com un disquet (per defecte per dispositius fdX). Pot fallar en algunes BIOS. falta el símbol «%c» falta una opció obligatòria per «%s» el mòdul «%s» no està carregat no s'ha carregat el mòdul nom necessita una imatge i un punt de muntatge no s'ha trobat l'APM no s'ha trobat cap informació DHCP no s'ha trobat cap opció DHCP %d no s'ha trobat cap opció DHCP no s'ha trobat cap registre de DNS no s'ha rebut cap resposta de DNS no hi ha cap servidor DNS configurat no hi ha cap «/» al nom de fitxer canònic No heu especificat cap ordre no hi ha disponible cap clau de xifrat no s'ha trobat cap tarja de xarxa no s'ha especificat cap servidor no s'ha trobat la partició no s'ha trobat cap mode de vídeo disponible no hi ha cap taula de símbols no s'ha especificat cap terminal no hi ha terminació a la imatge del nucli s'han trobat dades no alineades amb el sector al fitxer del nucli no és un directori no és una clau primaria no és un fitxer regular no és el cos d'una funció s'esperava un argument algun altre programa està fent servir l'àrea incrustada, i no hi ha prou espai per al core.img. Aquests programes sovint proven d'emmagatzemar dades de manera que no permeten la detecció. Us recomanem que ho investigueu s'ha acabat la memòria desa la imatge generada al FITXER [per defecte=stdout] heu d'especificar un fitxer de sortida envia la configuració generada al FITXER [per defecte=stdout]  s'ha detectat un desbordament la contrasenya no coincideix executa la configuració automàtica de bootp no s'ha trobat el volum físic %s pre-carrega els MÒDULS especificats Final del fitxer prematur final del fitxer %s prematur premeu la tecla de bloqueig de majúscules premeu la tecla d'inserció premeu la tecla de bloqueig del bloc numèric premeu la tecla de bloqueig de desplaçament premeu la tecla de petició de sistema (Pet Sis) premeu la tecla d'alternativa de l'esquerra premeu la tecla de control de l'esquerra premeu la tecla de majúscules esquerra premeu la tecla d'alternativa de la dreta premeu la tecla de control de la dreta premeu la tecla de majúscules de la dreta mostra la versió del programa mostra informació sobre la versió i surt mostra aquest missatge i surt mostra els missatges detallats. no s'ha trobat la clau pública %08x error de lectura al punt %llu: %s subdirectori relatiu del servidor de xarxa la recolocació 0x%x encara no està implementada RAM reservada recupera l'opció DHCP i desa-la a VAR. Si VAR és - mostra el valor. directori arrel o servidor TFTP s'ha detectat un bucle de ruta Desa les imatges de ROM al DIRECTORI [opcional] desa la sortida al FITXER [necessari] selecciona l'índex de l'aspecte no s'ha trobat el port sèrie «%s» set [NOM=VALOR...] estableix el mode de la tecla de fixació de majúscules. estableix els ascendents de la font estableix els descendents de la font. estableix la família de la font estableix el rang de la font estableix la mida de la font estableix el nom del fitxer per la part de 32 bits. estableix el nom del fitxer per la part de 64 bits. estableix el nom del fitxer d'entrada. Per defecte és STDIN estableix el mode de la tecla d'inserció. estableix el mode de la tecla de bloqueig del bloc numèric estableix el fitxer de sortida. Per defecte és STDOUT estableix el mode de la tecla de pausa. estableix el directori prefix [per defecte=%s] estableix el mode de la tecla de fixació de desplaçament Estableix el nom del programa mida ampliat|normal no s'ha trobat el símbol «%s» temporal no s'ha trobat el terminal %s o no és gestionat per terminfo no s'ha trobat el terminal «%s» l'argument «%s» necessita un enter L'entrada «%s» de device.map no és vàlida. S'ignora. Corregiu o esborreu el device.map. El nom de la unitat «%s» dins device.map no és correcte. Se substitueix per %s. Utilitzeu la forma [hfc]d[0-9]* (ex. «hd0» o «cd») el primer sector del fitxer del nucli no està alineat amb el sector el dispositiu d'instal·lació és extraïble. Aquesta opció només està disponible per a EFI. el tipus de partició 0x%x no és vàlid els sectors del fitxer del nucli estan massa fragmentats la mida de «%s» no és %u la mida de «%s» és massa gran la mida de «%s» és massa petita aquest tipus de fitxer ELF no és correcte aquesta etiqueta de partició GPT no té cap partició d'arrencada per a la BIOS; no es podrà incrustar Aquest LDM no té cap partició per incrustar; no es podrà incrustar aquesta etiqueta de partició d'estil msdos no té espai després del MBR; no es podrà incrustar s'esperaven tres arguments S'ha excedit el temps quan s'obria «%s» s'ha excedit el temps de lectura de «%s» temps excedit: no s'ha pogut resoldre l'adreça de maquinari la profunditat dels enllaços simbòlics és excessiva el traductor «%s» pel camí «%s» conté diverses paraules que no són opcions, com a mínim «%s» i «%s» el traductor «%s» pel camí «%s» només te opcions. No es pot trobar la part del dispositiu la línia de comandes del traductor pel camí «%s» està buida s'esperaven dos arguments tipus No s'ha pogut identificar el sistema de fitxers de %s; no es pot comprovar la seguretat la mida del dispositiu no està alineada final del fitxer inesperat argument «%s» desconegut. la compressió %d no és coneguda
 el tipus de dispositiu %s és desconegut
 sistema de fitxers desconegut el tipus de dispositiu RAID «%s» és desconegut error d'expressió regular desconegut el format «%s» de l'objectiu és desconegut.
 el tipus de terminfo «%s» és desconegut no es reconeix l'especificació del format de l'opció DHCP «%s» no es reconeix l'adreça de xarxa «%s» no es reconeix la interfície de xarxa «%s» número no reconegut l'adreça %s no es pot resoldre unset [NOM ...] no és compatible amb l'error %d de l'HTTP :%s no és compatible amb la resposta de l'HTTP no és compatible amb la versió del RAID: %d.%d no és compatible amb aquest format de gzip no és compatible amb la paritat del port sèrie no és compatible amb la velocitat del port sèrie no és compatible amb el nombre de bits d'aturada no és compatible amb la longitud de paraula del port sèrie utilitza el DIRECTORI com a partició arrel del sistema EFI. utilitza el FITXER com a font per l'etiqueta utilitza el FITXER com a imatge d'arrencada [per defecte=%s] utilitza el FITXER com a imatge del nucli [per defecte=%s] utilitza el FITXER com un mapa de dispositius [per defecte=%s] utilitza el FITXER com a xorriso [opcional] utilitza els fitxers de GRUB del directori DIR [per defecte=%s] utilitza STRING com a versió del producte utilitza l'identificador de fitxers encara que estigui disponible l'UUID utilitza les imatges i els mòduls que hi han a DIR [per defecte=%s/<plataforma>] la variable «%s» no està establerta ordenat visualment en UTF-8. espera fins que es connecti un depurador no continuarà amb la llista de blocs la versió o el màgic de les ELI són incorrectes xnu_uuid DISPOSITIU el fitxer xz és corrupte o no és compatible amb les opcions del bloc no podeu esborrar aquesta adreça primer heu de carregar el nucli Aquesta etiqueta de partició GPT és massa petita; no es podrà incrustar! el vostre core.img és massa gran. No cabrà a l'àrea d'incrustació. la vostra àrea d'incrustació és petita. El fitxer core.img no hi cabrà.                                                                                                                                                                                                                                                                                                                                             boot/grub/locale/da.mo                                                                              0000600 0001750 0001750 00000274324 13417732100 0013622 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                       0     !    C      pY  #   qY      Y     Y     Y     Y  $    Z     %Z  6   9Z     pZ     wZ  	   Z     Z     Z     Z  .   Z  .   Z  %   [     A[     E[    T[    Y\    ^]     f^  7   ^  F   ^  v   ^  +   v_     _      _     _  !   _     `  ,   %`     R`     j`  $   `     `  *   `     `     `     a     a     .a  
   Na  	   Ya     ca  ,   a  ,   a  '   a  -   b      /b  (   Pb  (   yb  )   b     b     b     c     c     "c  "   +c  4   Nc     c     c  7   c     c  1   c     d  %   *d  '   Pd  %   xd  '   d     d     d     d     d      e     e     e     ,e     8e     Xe     je     xe     e     e  3   e     e  $   e     f     f     2f     Af     Rf     if     ~f  -   f     f  !   f     g     g     4g  #   Ig     mg  `   g  Z   Vh     h     h     h     h     i     i     %i     Ci     [i     ui     i     i     i     i     i     i     
j     !j     0j     5j     ;j  %   Jj     pj     j     j     j     j     j     j     k     k  *   6k  3   ak     k  "   k  8   k     l     l  	   ;l  #   El     il     l     l     l     l     l  )    m     *m     Im     gm  P   m     m     m  H    n  &   In     pn     n  !   n  ,   n     n     n     n  	   o  !   o  *   7o     bo     zo     o     o     o  $   o     o     
p     p     7p     Sp     np  
   p  
   p     p  1   p     p     p     q     q  3   7q  >   kq  $   q     q     q     r     r     6r     Vr  +   jr     r     r  #   r     r     s  $   *s     Os     is  '   s  9   s     s      t  z   t     t     t  8   t     t  
   u     u     u     <u     u  +   u     !v     6v     Lv  "   _v     v     v  (   v     v     v     v     w     w     (w  "   :w  0   ]w     w     w     w  7   w     w     w     w     x     $x     0x  0   7x     hx     |x     x     x  2   x  %   x     y  *   )y  6   Ty  +   y     y     y     y  !   z  d   z  e   @{  d   {  i   |  o   u|  H   |     .}     A}     W}     h}     {}     }     }     }  #   }     }     ~     5~  1   G~  )   y~     ~     ~     ~  /   ~     ~          $  5   A     w       K                  /     L     Q  '   V  P   ~     π       	                  &  '   :  +   b            )                       5     J     b     x  $             Ă  "   ߂            (     "   D  +   g  -             ڃ                 O        l                 %          )     !   ,  "   N     q       +        Ѕ            !   	     +     G     `     l                     ҆                  4   0     e                    ɇ                     3  !   T     v  M     2   ވ          +  *   I  8   t               щ             3     $   L  +   q                    Պ                     :     X     m  D        ʋ     ы  7   ً  ;        M     m  !             Č  s        X     p                    Ǎ     ލ          	          k     r     ~            '   ͏  
                   %     *     B     F     X  H   u          ѐ                    &  #   ?     c                          ޑ             "   +  (   N     w  %          2   Ӓ            #   (  *   L     w       #               "   ʓ  ;     #   )  <   M                 .   Ĕ  	          `        p  !     )        ѕ     ٕ  q        X     l                         Җ            "   %     H     `     z                    ӗ       #        %     B  g   ^     Ƙ     K     e  -          !   ę       "     '     Q   B                    К                     =     Z     v                    ͛                       -   @     n  "     b     )        2     H     `  ,   {            	   Ɲ  "   Н  %                  3     :  &   C  )   j       ^          $      %   E     k  ^     _   }  }   ݠ     [  )     '   <  >   d  D     !     '   
  -   2  #   `       )        Σ  )     )     ,   ?     l                    ۤ  E     $   2  A   W  )        å                     6     W  q   l     ަ  :        6     T     c                    ͧ  0             1     F  )   \  &             ʨ            )        >  %   N  %   t  ,     '   ǩ  :        *  -   I     w  .             Ȫ  '   ݪ  "        (     E  *   S     ~       )             Ы  6          0   Ȭ        !     "   <  #   _                 !   ҭ       
   
       <   /  %   l                    Ԯ  d     *   L  0   w                    ӯ            0        8  !   K     m       $             ڰ                  $   =  "   b  $                   ӱ          	          -     ?     L     g       '        Ĳ       $     +   "  "   N     q  )   x               ҳ            '        C     b       <         д            m        z               ɵ       +     3   (  1   \       '     -   Ķ       '     '   #  .   K  	   z                    շ               )     D     _     y       *     ?   ĸ  B     /   G     w       .     O   ѹ  )   !     K     a  	   p     z  5        κ                    )     @     F     Y     `     o     x                 	        Ļ     ӻ                    1     8     ?  
   M  
   X  	   c     m  !   s  )             Ӽ            N   "     q  "               -     -     $     #   :  0   ^  6        ƾ     Ծ  (     1     )   B     l     {  !              ȿ       %        '  &   ;     b        7     .     4        =     Z     o            %                       &     ?     ^     m     v                                #   	     -     G  B   a                              %  &   A     h                      &                  .     >  ;   R  V     "     &     !   /     Q     h     m  H     F     (        D     `  I   l  '          %             #     7     K  $   ]  '     *                    J        a     }       -     +          $        1  "   :  +   ]  J     %                "   3      V     w                                 %        A     `     ~                           [        Q  !   e                                             $     8     N     h                                        %  1   E     w                                1          0        .     C  !   Y     {  "                                       5     A     P     `     q                 &                    '   3  &   [       L               !        0     O     a     ~                                $             -  &   >     e  !   t                           	     7        +  %   E  [   k  w     7   ?  K   w  #     /             2     P  &   n  U     @     Q   ,     ~            +          R     L   ^  .               F        =     S     j                                      2   .  !   a  #                                      <     T     s  (     #     )     '     '   0  '   X       0     -     8        7     O  !   f                  .          !   !  B   C  E     B         #     ,         "     C     `  %   w       :     	          	             3     R  0   `  /     $               7      1     P     q  =     H     {     /          (          )        6  3   Q            ,          1        )  	   G     Q     `  "   z  	     	          2     2     )   5  3   _  $     *     (     )        6     Q     l     z       #     5               8        6  0   ?     p  ,     1     ,     1        M     R  /   T                                             #     4     D  7   P       1                                 5     O  4   o       .          !         *  &   K     r  h     f   o                     .     3  <   <     y                 #             "     /     H     a     r                      4     /             1     P     m                      9     C   '  *   k  $     =                  '  "   3      V     w       )               4         -     N     k  X               I        b     ~             /     
               	     +   $  8   P  "                         +        9     H     W     r       $     	               3         4     E     U      u  2     M     %        =     P     j                  2           )     )   F     p       (               $     9   '     a     |       	   4    > 9   X $            !            @                &   /    V    l 0                            (   ) 6   R             @        	            
        + -   2    `    t         5    '        .   * =   Y 8                (    |    }   ~ |       y	    	 V   
    
    
            '    <    U    j                 :    8   !    Z    a    v 3                @        < "   ] O         $           3    8 %   < U   b      
    	        %        '   - .   U         /                   2    H    a    v &            &            2   $ (   W ;    5               "    2    L j   e                 6   / '   f F    %    &       "    > $   \             !               %    4     Q    r                     4   	 $   >    c    z                     	 )   * !   T #   v V    ;    #   - !   Q ,   s >               	         6 2   M "    #                       &    ;    W    v         Y           " 9   * F   d           "           %    E     "               -    F    e            Z    O 	   V     `         +                              3     7     F  X   e                    !    !    -! 8   C!     |!    !    !    !    !     " '   ""    J" !   W" &   y"    " $   " !   " A    #    B#    K# &   i# 0   #    #    # %   #     $    $ *   $ F   D$ -   $ I   $    %    %    /% 3   =%    q%    z% p   %    %     & -   4&    b&    h&    z&    &    '    ''    6'    O'    d'    |' !   '    ' )   '    (     (    >(    T(    j(    }(    (    ( $   ( %   ( "    )    #)    )    `*    * .   *    *    *    * '   + *   8+ [   c+    +    +    +    ,    ,    ;,    X,    t,    ,    ,    ,    ,    ,    	-    "-    @-    T-    d- 1   }-    - '   - g   - 1   X.    .    . #   . ,   .     /    //    3/ !   </ ,   ^/ 
   /    /    /    / *   /    /    0 i   0    0 *   0 *   0    0 h   1 k    2    2    3 +   3 -   4 O   A4 S   4 %   4 +   5 4   75 $   l5 $   5 3   5    5 (   6 ,   +6 .   X6 &   6 $   6 &   6    6    7 X   $7 &   }7 ;   7 .   7 %   8 &   58 (   \8 %   8 *   8    8 v   8 &   g9 D   9 !   9    9     :    &:    @:    V:    k: 2   :    :    :    : .   ; 3   5;    i;    ;    ;    ; )   ;    ; *   < )   << 1   f< ,   < D   < #   
= 0   .=    _= 9   p=    =     = 8   =    > !   3>    U> '   c>    >    > 3   >    >    > B   ?    @ 1   
@    <@ +   [@ $   @ %   @    @    @ !   
A )   ,A    VA 
   mA    xA 9   A ,   A    A (   A !   'B    IB y   hB )   B 5   C    BC    JC    ]C    wC    C    C .   C    C     C    D    ;D !   TD    vD    D    D    D    D .   D !   E '   ?E    gE    yE !   E    E    E    E    E 
   F    F    $F    9F .   XF !   F    F )   F 0   F '    G    HG )   NG    xG    G     G    G    G '   G !   H    9H    VH 6   jH #   H    H     H {   H    jI    I    I    I    I 4   I ?   J A   \J    J    J .   J 	   J &   K &   +K 4   RK    K    K    K    K    K    L    !L    ?L    [L    xL    L    L $   L L   L N   #M /   rM    M    M -   M M   M (   LN    uN    N    N    N 3   N    N    O    O    0O    JO    eO    kO    ~O    O    O    O    O    O    O 	   O    O    O    P    0P    GP 	   `P    jP    pP    P    P 	   P    P !   P (   P    P    	Q %   Q "   DQ U   gQ    Q &   Q    Q    Q 4   R 4   @R +   uR #   R /   R 4   R    *S    ;S )   SS 2   }S 3   S    S    S )   	T    3T $   RT    wT -   T    T +   T    U    &U ?   FU 2   U :   U     U    V    -V    IV     aV %   V    V     V    V    V    W    :W    KW &   SW    zW    W $   W    W    W    W &   
X    1X    OX F   mX    X '   X    X    Y    0Y    FY 0   aY    Y    Y    Y    Y    Y .   Z    2Z    LZ    jZ    }Z <   Z o   Z .   @[ #   o[ !   [    [    [ '   [ L    \ Q   M\ 1   \    \ 
   \ @   \ '   5]     ]] (   ~]    ]    ]    ]    ] (   ] -   ^ .   F^    u^    ^    ^ S   ^    _    *_    E_ 1   \_ 5   _    _ (   _    _ $   _ '    ` C   H` '   `    ` /   ` 0   `    0a    Pa    ca    ya    a    a    a    a '   a    %b    Cb    `b    |b    b    b    b    b w   b    Jc %   `c    c    c    c &   c    c    c    d    ,d    Fd    cd    {d    d    d &   d    d    
e #   !e    Ee    We !   ne -   e    e    e    e    e    f    )f    f 5   f    1g =   Jg    g    g !   g    g $   g    h '   4h    \h    uh    h    h    h    h    h    h    i    $i    9i    Oi !   bi    i    i    i )   i +   j    2j H   Aj    j    j    j    j    j    k    )k    ?k     Wk !   xk    k    k    k *   k    l    #l *   :l    el $   zl    l    l    l    l    l    l @   m    Im !   em a   m x   m 3   bn L   n    n ,   o    0o    Oo     oo *   o ]   o J   p a   dp    p    p    p .   q #   Mq c   qq K   q .   !r    Pr    hr L   mr    r    r    r    s    s    3s    Ds    cs    s    s ,   s    s !   s 
   t    )t    Ft    Wt    wt "   t    t $   t &   t )   u (   Du +   mu )   u &   u %   u    v -   /v 4   ]v ;   v    v    v !   v "    w '   Cw    kw 4   zw    w    w H   w O   5x N   x    +    T                             a      \           Z        :       H  L  o          U                        _                        I           O                               J   d                   i                       G           1                R    Q      u                   I    h              $  /                                              .              l    g                  p  u       }        e                i          @  [    Y                d      (  \     t                O      y  {        E                    :  
      =   [  <   %  r                     
  t       P      z   F      I                  |        o   #      l  )        >    5        B             G    w    x  y                                 !               2            n  k              \    9  |     L  )          	  
                  F      *  A  Q                           i      ~         $  7              F      U    j            >        V               A  5              ;                 1                     ]              @       !        /                   `     .   s  N              W                         S        #        )      F                          }      J     "  M                 "   `    H  	  b  ;       `  C          #            9        |      f   v              Q         N             h               =         l         "      *       '  M                     1    T      k      5       &     k          z        A       !               <      n      V                   )   0        E   H              u                %     M             ,           >   C          %         ,                7    $    f  K  Z      '                                      	         g   4  t              a                                        R         ]           ^             "                          *  #  V    ~                c                    ,    B        6    :  b     f  ,  K  n      4                !  =            	    m   c           "            y    .    r  Y        M          '                           -                                  ^                                p  J  k                             1        -  (  }       T                @    {  &                  3  w                       {            )                                D  6  [    S      z            j  c                 v                                               _  B  .            /      m            L   3       ^             0      P     h            =    p     p  g                 8       ?   v                         X  #                       8  ?               K  $      N                                  7   (  g                   9   I  Y    |                   q               U  P       S     a         n         ]         q           -        4            b               Y         U             R  S    6            G      Q      9  C          &                      J      W                        <      -  ;              3          O  $  j                           ~   @                        d          T     x   d       0  '  P    O  2     q              `  h                   H           +                                     \  6  R                                     D          f      s  Z  X           v          N        ]      w   X  0      4    7      '           C      X      
    Z             j               r      -  E                    :  m                       A     e           !  &                    b                   m               K               &        u     W  o    %                             B              *                       x    D              i  ?                       c      /             ^  ?  }      8  E  l            q      
   _  3                	      e        .  {                               s           >         (   t           %      G                     a                   *           +                             _                        2   L                         [   r          +                     5           D      8                   V      W                    2               ,     o        s     /             ;       +  w  <  (            z      x                      y  ~  0     e                         total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: option '%c%s' doesn't allow an argument
 %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS Import ZFS wrapping key stored in FILE. Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MODULE MODULES Mail xorriso support requests to <bug-xorriso@gnu.org>. Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Option -- switches to native xorriso command mode. Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot the computer. Reenter password:  Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show the contents of a file. Show the current mappings. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Specify the number of input files. Start GDB stub on given port Stop GDB stub Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 TARGET Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This entry can be booted by any user. Thursday Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Translates the string with the current settings. Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME Verbose countdown. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. Your embedding area is unusually small.  core.img won't fit in it. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `cryptomount' command fails: %s `loopback' command fails: %s a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format blocklist FILE blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists: %s cannot compress the kernel image cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot get translator command line for path `%s': %s cannot open OS file `%s': %s cannot open `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. diskboot.img size must be %u bytes do not probe for filesystems in DEVICE domain name component is too long don't update LED state done embed FILE as an early config embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification install GRUB images under the directory DIR/%s instead of the %s directory install even if problems are detected invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid color specification `%s' invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no `/' in canonical filename no command is specified no decryption key available no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found pre-load specified modules MODULES premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. read error at offset %llu: %s relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory of TFTP server route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the argument `%s' requires an integer the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use DIR as the EFI System Partition root. use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub-2.0.0-pre6
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2012-12-30 18:57+0100
Last-Translator: Ask Hjorth Larsen <asklarsen@gmail.com>
Language-Team: Danish <dansk@dansk-gruppen.dk>
Language: da
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Launchpad-Export-Date: 2010-12-18 15:32+0000
X-Generator: Launchpad (build Unknown)
          samlet hukommelse: %d KiB
     Ingen foretrukken tilstand tilgængelig
     Foretrukken tilstand: %ux%u
   EDID-kontrolsum er ugyldig   EDID-version: %u.%u
   Kunne ikke klargøre videoadapteren   Ingen tilgængelig info   VBE-info:   version: %d.%d  OEM-softwarerevision: %d.%d
   eller:   (længst til venstre)  (medial)  (længst til højre)  - Samlet størrelse er ukendt  [TILVALG...] %.*s: ARGP_HELP_FMT-parameter skal være positiv %.*s: ARGP_HELP_FMT-parameter kræver en værdi %.*s: Ukendt ARGP_HELP_FMT-parameter %d s %d s tilbage. %s synes at indeholde et %s-filsystem, for hvilket det ikke vides om der er reserveret plads til DOS-agtig opstart.  Installation af GRUB der vil måske resultere i ØDELÆGGELSE AF FILSYSTEMET, hvis værdifulde data overskrives af grub-setup (--skip-fs-probe deaktiverer denne kontrol - bruges på eget ansvar) %s synes at indeholde et %s-partitionskort samt LDM, hvilket ikke vides at være en sikker kombination.  Installation af GRUB dér kan resultere i DESTRUKTION AF FILSYSTEMET, hvis værdifulde data overskrives af grub-setup (--skip-fs-probe deaktiverer dette tjek.  Brug på eget ansvar) %s synes at indeholde et %s-partitionskort, hvilket vides ikke at reservere plads til DOS-agtig opstart.  Installation af GRUB dér kan resulterer i DESTRUKTION AF FILSYSTEMET, hvis værdifulde data overskrives af grub-setup (--skip-fs-probe deaktiverer dette tjek.  Brug på eget ansvar) %s understøtter ikke UUID'er %s genererer et tastaturlayout til GRUB ved brug af ckbcomp\n %s er forældet. Brug i stedet set gfxpayload=%s før linux-kommandoen.
 %s er forældet. VGA-tilstand %d genkendes ikke. Brug i stedet set gfxpayload=BREDDExHØJDE[xDYBDE] før linux-kommandoen.
 %s understøttes endnu ikke af grub-mkconfig.\n %s, med Hurd %s %s, med Hurd %s (genoprettelsestilstand) %s, med Linux %s %s, med Linux %s (genoprettelsestilstand) %s, med Xen %s og Linux %s %s, med Xen %s og Linux %s (genoprettelsestilstand) %s, med Xen hypervisor %s, med kFreeBSD %s %s, med kFreeBSD %s (genoprettelsestilstand) %s, med kerne %s (via %s) %s, med kerne %s (via %s, genoprettelsestilstand) %s: UOVERENSSTEMMELSE I HASH
 %s: O.K.
 %s: LÆSEFEJL
 %s: For mange argumenter
 %s: Du skal køre dette som root\n %s: fejl: %s: info: %s: ugyldigt tilvalg -- "%c"
 %s: tilvalget "%c%s" tillader ikke noget argument
 %s: tilvalget "--%s" tillader ikke noget argument
 %s: tilvalget "--%s" kræver et argument
 %s: tilvalget "-W %s" tillader ikke noget argument
 %s: tilvalget "-W %s" er flertydigt
 %s: tilvalget "-W %s" kræver et argument
 %s: tilvalg kræver et argument -- "%c"
 %s: tilvalg kræver et argument -- "%s"\n %s: ukendt tilvalg "%c%s"
 %s: ukendt tilvalg "--%s"
 %s: advarsel: (32-bit) (64-bit) (PROGRAMFEJL) Ingen kendt version!? (PROGRAMFEJL) Tilvalget skulle have været genkendt!? (på %s) - Etiket "%s" - Sidste modifikationstid %d-%02d-%02d %02d:%02d:%02d %s --MERE-- -h HASH [-c FIL [-p PRÆFIKS]] [FIL1 [FIL2 ...]] -l | -r | [-s] grubdev osdisk. 16-bit beskyttet grænseflade understøttes
 16-bit beskyttet grænseflade understøttes ikke
 32-bit beskyttet grænseflade understøttes
 32-bit beskyttet grænseflade understøttes ikke
 =VAL > ACPI-RAM til persistent (ikke-"volatile") lager ACPI-RAM der kan frigøres ACPI-slukning mislykkedes ADR ADR VÆRDI [MASKE] ADR [STØRRELSE] ADR1,MASKE1[,ADR2,MASKE2[,...]] ADRESSE DNSSERVER APM slået fra
 APM kører ikke
 APM slået til
 APM kører
 ARGP_HELP_FMT: %s-værdi er mindre end eller lig med %s ASCII Acceptér CR/NL-linjeafslutninger i stil med DOS. Aktive inddataterminaler: Aktive uddataterminaler: Adapter "%s":
 Tilføj en DNS-server Tilføj en netværksadresse. Tilføj en netværksrute. Avancerede indstillinger for %s Avancerede indstillinger for %s (med Xen hypervisor) Tillad afbrydelse med ESC. Spørg om et filnavn, der skal genstartes fra. Antag at inddata er heks. Antag at inddata er adgangsfrase. Antag at inddata er ubehandlede. Forsøger at dekryptere hovednøgle... Forsøger at installere GRUB til en disk med flere partitionsetiketter, eller både partitionsetiket og filsystem.  Dette understøttes endnu ikke. Forsøger at installere GRUB til en disk med flere partitionsetiketter.  Dette understøttes endnu ikke. Forsøger at installere GRUB til en partitionsløs disk eller en partition.  Dette er en DÅRLIG idé. Tilgængelige inddataterminaler: Tilgængelige uddataterminaler: BIOS_DUMP [INT10_DUMP] BLOK BYTE:BIT Baggrundsbilledtilstand (stretch=stræk, normal=almindelig). Rodkatalog for hashliste. Start BIOS-baseret system. Start et operativsystem. Start i single-tilstand. Start op med fejlsøgningsbeskeder. Start med ekstra information. Starter "%s" Starter en kommandoliste Starter i blind tilstand Opstartssti: %s
 Opstartssti: utilgængelig
 Bryd ind i GDB CGA  FARVE KOMMANDO [ARG] Processor kører ikke langsommere når CPU er ledig
 Processor kører langsommere når CPU er ledig
 CS5536 på %d:%d.%d
 Kan ikke aktivere ROM-område. Ændr konfigurerede enheder. Ændr partitionstype Kontrollér Alt-tasten. Kontrollér Ctrl-tasten. Kontrollér skift-tasten. Kontrollér for CPU-funktioner. Kontrollér hashværdier for filer med hashliste fra FIL. Kontrollér om CPU understøtter (lang) 64-bit-tilstand (standard). Kontrollér status af modifikationstaster. Tjek om bruger findes i BRUGERLISTE. Tjekker om der er syntaksfejl i GRUB-scriptkonfigurationsfil. Ryd skærmen. Fjernede aktiv-flaget på %d. 
 Kommandoer: Samenlign FIL med lokal fil LOKAL. Sammenlign filen "%s" med "%s":
 Sammenlign to filer. Beregn XNU UUID for enheden. Udregn eller kontrollér hash-tjeksummen. Indstil serielport. Fortsæt løkker Konvertér almindelige skrifttypefilformater til PF2 Kopiér FIL til lokal fil LOKAL. Kopiér FIL til standard-ud. Kunne ikke finde FPSWA-driver Kunne ikke finde fysisk diskenhed "%s". Visse moduler mangler måske fra kerneaftrykket. Kunne ikke indlæse sha256 Kunne ikke indlæse sha512 Opret BIOS-agtige strukturer til bagudkompatibilitet med eksisterende OS. Opret en tom miljøblokfil. Nuværende terminfo-typer: ENHED ENHED [PARTITION[+/-[TYPE]]] ... ENHED skal være en OS-enhed (f.eks. /dev/sda). ENHEDSNAVN KAT KATALOG [OSBundleRequired] DNSSERVER Fejlsøgningsværktøj til filsystemdriver. Erklær hukommelsesregioner som fejlbehæftede (badram). Dekomprimeringsinstans er for stor Definér en menuindgang. Definér en undermenu. Slet en netværksadresse. Slet en netværksrute. Fjern det angivne loopback-drev fra listen. Slet variable. Bestem driver. Bestem UUID for filsystem. Bestem etiket for filsystem. Bestem type af filsystem. Bestem type af partitionsafbildning. Enhed %s: Enheds-id: %s
 Enheds-id: utilgængelig Direkte farve, maske: %d/%d/%d/%d  pos: %d/%d/%d/%d Deaktivér ACPI. Deaktivér SMP. Deaktivér al opstartsudskrift. Deaktivér/aktivér SMART (0/1). Forkaster forkert indlejret partition (%s,%s,%s%d) Statistik for diskmellemlager: træffere = %lu (%lu.%02lu%%), forbiere = %lu
 Diskantal skal stå foran diskliste.
 Vis FPSWA-version. Vis SMART-helbredsstatus. Vis en linje af tekst. Vis blokliste for FIL. Vis udskrift på alle konsoller. Vis strømtilstand. Vis brugsinformation for denne kommando og afslut. Vis denne hjælp og afslut. Vis/indstil nuværende tidspunkt og dato. Udskriv ikke afsluttende linjeskiftstegn. Udskriv ikke meddelelser. Undersøg ingen diskettedrev. Brug ikke APM til at standse computeren. Gør intet, med success. Gør intet, fejlagtigt. Vis ikke boot-diagonstikmeddelelser. Indlæs ikke værtstabeller angivet i kommaadskilt liste. Stands kun, genstart ikke. Stop ikke efter første fejl. Opdatér ikke EBDA. Vil måske rette fejl eller nedbrud med visse BIOS'er, men forringer effektiviteten, da operativsystemet ikke modtager RSDP fra GRUB. MILJØVAR MILJØVAR [MILJØVAR] ... FEJL: intet gyldigt tastaturlayout fundet. Tjek inddata.
 ESC på ethvert tidspunkt afslutter. UDTRYK UDTRYK ] Forløbet tid: %d.%03d sekunder 
 Indlejring er ikke muligt. GRUB kan kun installeres med denne opsætning ved brug af bloklister. Dog er bloklister UPÅLIDELIGE, og deres brug frarådes. Emulér en følge af tastetryk Aktivér fortolkning af undvigesekvenser med omvendt skråstreg. Indtast ZFS-adgangskode:  Gå ind i KDB ved opstart. Gå i normal tilstand. Indtast adgangsfrase for %s%s%s (%s):  Indtast adgangskode:  Indtast brugernavn:  Fejl ved fortolkning af kommandolinjeargumenter
 Evaluér et udtryk. Afslutning mislykkedes Gå ud af GRUB. Afslut løkker Afslut normal tilstand. Eksportér variable. Eksportér version 1-tabeller til OS'et. Eksportér version 2- og version 3-tabeller til OS'et. FIL FIL [ARG ...] FIL [ARG...] FIL | TEMPO [TONEHØJDE1 VARIGHED1] [TONEHØJDE2 VARIGHED2] ...  FIL... FIL1 FIL2 FILNAVN KOMMANDO FILSYSTEM [VARIABEL] FIL|prompt FORMAT FPSWA-protokol kunne ikke finde grænsefladen FPSWA-revision: %x
 FRA-TIL[,FRA-TIL] FRA[K|M|G] TIL[K|M|G] FT_Init_FreeType fejler Kunne hverken starte standard- eller reservepunktet.
 Kunne ikke oprette "device-mapper"-træ Falder tilbage på "%s" Filsystemet "%s" understøtter ikke indlejring Filer er forskellige fra position %llu: 0x%x [%s], 0x%x [%s]
 Filerne har forskellig størrelse: %llu [%s], %llu [%s]
 Filsystem kan ikke tilgås Filsystemtype %s Udfyld hybrid-MBR for GPT-drevet ENHED. Angivne partitioner vil være en del af hybrid-MBR. Der tillades op til tre partitioner. TYPE er en MBR-type. + betyder at partitionen er aktiv. Kun én partition kan være aktiv. Færdiggør indlæsning af EFI-emulator. Prøv først enheds-FIF, hvis der i øjeblikket køres på ARC. Hvis FIF slutter med komma, så prøv også underpartitioner Prøv først enheds-FIF, hvis der i øjeblikket køres med BIOS. Hvis FIF slutter med komma, så prøv også underpartitioner Prøv først enheds-FIF, hvis der i øjeblikket køres med EFI. Hvis FIF slutter med komma, så prøv også underpartitioner Prøv først enheds-FIF, hvis der i øjeblikket køres med IEEE1275. Hvis FIF slutter med komma, så prøv også underpartitioner Prøv først enheden FIF, hvis der understøttes direkte hardwareadgang. Hvis FIF slutter med komma, så prøv også underpartitioner Prøv først enheden FIF. Hvis FIF slutter på komma, så prøv også underpartitioner Fiks videoproblem. Fandt %s på %s (%s)\n Fandt %s på %s\n Fandt GNU Mach: %s Fandt Hurd-modul: %s Fandt NetBSD-kerne. %s\n Fandt baggrund: %s\n Fandt initrd-aftryk: %s\n Fandt kernemodulkatalog: %s\n Fandt FreeBSD-kerne: %s\n Fandt linux-aftryk: %s\n Fandt tema: %s\n Freetype-fejl %d ved indlæsning af glyf 0x%x for U+0x%x%s Fastlås ATA-sikkerhedsindstillinger indtil nulstilling. Fredag GNU GRUB  version %s GRUB-opstartsmenu GRUB ved endnu ikke hvordan denne maskine standses! GRUB-emulator. GRUBENHED=PLAN9ENHED Skrald i ARGP_HELP_FMT: %s Generér GRUB-tastaturlayout fra et Linux-konsol-tastaturlayout. Generér PBKDF2-adgangskodehash. Generér en grub-konfigurationsfil Opret et selvstændigt aftryk (som indeholder alle moduler) i det valgte format Beregn crc32-tjeksummen for FIL. Hent oplysninger om diskmellemlager. Vis/angiv ATA-diskparametre. HASH FIF Stands systemet, med APM hvis muligt. Standser computeren.  Denne kommando fungerer ikke på alle firmwareimplementationer. Håndtér N byte i udskriftsfil. Hej verden Hercules  Id AFTRYK1 [AFTRYK2 ...] MONTERINGSPUNKT AFTRYKSSTI KOMMANDOER Importér ZFS-omslagsnøgle gemt i FIL. Forkert virtuel enhed: ingen type tilgængelig Indsæt et modul. Installér GRUB på dit drev. Installation fuldført. Ingen fejl rapporteret. Ugyldig tilbagereference Ugyldigt navn på tegnklasse Ugyldigt sorteringstegn Ugyldig kommando %s.
 Ugyldigt indhold af \{\} Ugyldig enhed "%s".
 Ugyldigt diskantal.
 Ugyldigt forudgående regulært udtryk Ugyldig intervalafslutning Ugyldigt regulært udtryk Aktivér brugerkonfigurations-routing. KERNE ARGUMENTER TAST Tastegenvej til hurtigt at starte med dette punkt. Virtuel bladknude-enhed (fil eller disk) Den forældede parameter "ask" understøttes ikke længere. Forklaring: maske/position=rød/grøn/blå/reserveret Længde af genereret hash Længde af saltnummer Vis DNS-servere Vis liste af PCI-enheder. Vis liste af alle filer. Vis de tilgængelige videotilstande. Hvis der er givet en opløsning, vises kun dertil svarende tilstande. Vis liste af enheder og filer. Vis enheder eller filer. Vis liste af enheder. Vis filer i STI. Vis hukommelsesafbildningen tilgængelig via firmware. Liste af understøttede videotilstande: Liste af brugere, der har tilladelse til at starte op med dette punkt. Opskriv eller vælg en inputterminal. Opskriv eller vælg en outputterminal. Vis de nuværende variable. Vis de indlæste skrifttyper. Vis variabelliste fra miljøblokfil. Indlæs 64-bit XNU-aftryk. Indlæs BIOS-dump. Indlæs FreeBSD-miljø. Indlæs FreeBSD-kernemodul (ELF). Indlæs FreeBSD-kernemodul. Indlæs kernel.sys fra FreeDOS. Indlæs Linux. Indlæs NTLDR eller BootMGR. Indlæs NetBSD-kernemodul (ELF). Indlæs NetBSD-kernemodul. Indlæs Plan9-kerne. Indlæs XNU-udvidelseskatalog. Indlæs XNU-udvidelsespakke. Indlæs XNU-udvidelse. Indlæs XNU-aftryk. Indlæs XNU-ramdisk. Den vil kunne ses som md0 i OS. Indlæs dump af "device-properties". Indlæs et PXE-aftryk. Indlæs et tastaturlayout. Indlæs en multiboot 2-kerne. Indlæs et multiboot 2-modul. Indlæs en multiboot-kerne. Indlæs et multiboot-modul. Indlæs et startbillede for XNU. Indlæs et aftryk af XNU i dvaletilstand. Indlæs og klargør EFI-emulator. Indlæs en anden opstartsindlæser. Indlæs endnu en konfigurationsfil uden at ændre kontekst, men hent kun menuindgange. Indlæs endnu en konfigurationsfil uden at ændre kontekst. Indlæs endnu en konfigurationsfil. Indlæs en anden coreboot-payload Indlæs baggrundsbillede til aktiv terminal. Indæs ACPI-værtstabeller og tabeller angivet ved argumenter. Indlæs initrd. Indlæs kOpenBSD-ramdisk. Indlæs FreeBSD-kerne. Indlæs NetBSD-kerne. Indlæs OpenBSD-kerne. Indlæs kun tabeller angivet i kommaadskilt liste. Indlæs same fil på flere måder. Indlæs variable fra miljøblokfil. Indlæs zfs-kryptonøgle. Indlæste skrifttyper: Indlæser GNU Mach ... Indlæser Linux %s ... Indlæser Xen %s ... Indlæser start-ramdisk ... Indlæser FreeBSD-kerne %s ... Indlæser Illumos-kerne ... Indlæser Hurd ... MAC-verifikation mislykkedes MENUINDGANG er et tal, titlen på en menuindgang eller identifikation på en menuindgang. MODUL MODULER Send forespørgsler om xorriso til <bug-xorriso@gnu.org>. Opret GRUB-opstartsaftryk til cd-rom, disk, USB-nøgle eller diskette. Opret en GRUB-tastaturlayoutfil. Opret et opstartsaftryk af GRUB. Opret et virtuelt drev fra en fil. Gør partition aktiv Håndtér BIOS-drevafbildinger. Obligatoriske eller valgfri argumenter til lange tilvalg er også obligatoriske henholdsvis valgfri for tilsvarende korte tilvalg. Manipulér PCI-enheder. Mål tiden, der bruges af KOMMANDO Hukommelse opbrugt Hukommelsestype: DDR2. Hukommelsestype: Ukendt. Identifikator for menuindgang. Menuindgang ikke angivet. Menuindgangstype. Minimal BASH-agtig linjeredigering understøttes. For det første ord vil TAB vise de mulige kommandofuldførelser. Alle andre steder vil TAB vise de mulige fuldførelser af enheds- eller filnavne. %s Der understøttes minimal Emacs-agtig skærmredigering. TAB viser fuldførelser. Tryk Ctrl-x eller F10 for at begynde opstart, Ctrl-c eller F2 for at få en kommandolinje, eller ESC for at forkaste ændringerne og vende tilbage til GRUB-menuen. Mandag Monokrom  Mere end én installationsenhed? Mere end én menuindgang? Montér en kryptoenhed. Montér alle diskenheder med "boot"-flaget. Montér alle. Montér efter UUID. Montér kryptoenheder. NAVN NAVN [VARIABEL] [FIF] NUM ANTAL_SEKUNDER Navn	Antal ref	Afhængigheder
 Der er platformspecifikke diskdrivere i brug. Nægter at bruge firmwarediskgrænseflade. Netværksprotokoller: Ny MBR skrives til "%s"
 Ingen CS5536 fundet Ingen FPSWA fundet Ingen kommando angivet.
 Ingen enhed angivet.
 Der er ingen tilgængelig statistik for diskmellemlager
 Intet drev er blevet genafbildet Intet kendt filsystem fundet Ingen træffere Ingen sti er angivet.
 Ingen sti eller enhed angivet.
 Intet tidligere regulært udtryk Intet virtuelt enhedstræ tilgængeligt Non-chain 4  Ikke nok parametre til kommando.
 Forbind nu venligst fjernfejlsøgeren. Antal PBKDF2-iterationer OS-disk #num ------> GRUB/BIOS-enhed OS-fejl ved åbning af fil %s: %s Tilvalget -- skifter til systemspecifik xorriso-kommandotilstand. Tilvalg: Opslag uden for interval: %d
 Erstatning uden for interval (%d, %d)
 Tilsidesæt gættet afbildning af Plan9-enheder. PARTITION KOMMANDOER STI PBKDF2-hash af din adgangskode er %s
 PORT PORT VÆRDI [MASKE] Fortolk ældre konfiguration i ny kontekst Fortolk ældre konfiguration i ny kontekst, og medtag kun menuindgange Fortolk ældre konfiguration i samme kontekst Fortolk ældre konfiguration i samme kontekst, og medtag kun menuindgange Delnummer: %s.
 Partition %d er nu aktiv. 
 Partition %s: Partitionsstilen "%s" understøtter ikke indlejring Sti: %s
 Sti: utilgængelig Udfør KOMMANDOER på partition.
Kør "parttool PARTITION help" for at få en liste af tilgængelige kommandoer. Udfør et DNS-opslag Udfør en IPV6-autokonfiguration Udfør både direkte og omvendte afbilninger. Plan  Afspil en melodi. Brug venligst ikke den gamle titel "%s" til GRUB_DEFAULT; brug "%s" (for versioner før 2.00) eller "%s" (for 2.00 eller nyere) Pool-GUID: %016llx
 Pool-GUID: utilgængelig Pool-navn: %s
 Pool-navn: utilgængelig Pool-tilstand: aktiv Pool-tilstand: ødelagt Pool-tilstand: eksporteret Pool-tilstand: ARC-enhed niveau 2 Pool-tilstand: potentielt aktiv Pool-tilstand: reserveret som "hot spare" Pool-tilstand: utilgængelig Pool-tilstand: ikke klargjort Mulige argumenter er: Mulige kommandoer er: Mulige enheder er: Mulige filer er: Mulige partitioner er: Mulige ting er: Uventet slutning af regulært udtryk Tryk på en tast for at fortsætte... Tryk på en tast for at starte xnu Tryk retur for at starte det valgte operativsystem, "e" for at redigere kommandoerne før opstart, eller "c" for at få en kommandolinje. Tryk retur for at starte det valgte operativsystem, "e" for at redigere kommandoerne før opstart, eller "c" for at få en kommandolinje. ESC vender tilbage til den forrige menu. Udskriv hukommelsesoplysninger. Udskriv ZFS-info om ENHED. Udskriv ZFS-BOOTFSOBJ eller gem det i VARIABEL Udskriv en blokliste. Udskriv og kør blokargument. Udskriv stakspor. Udskriv drevidentitet og indstillinger. Udskriv størrelser i læsevenligt format. Forespørg om enhedsoplysninger for en given sti (eller enhed, hvis tilvalget -d er givet). RAM som indeholder firmwarekode RAM-sokkel nummer %d
 REGUDTRYK STRENG ROM-aftryk er til stede. Læs 16-bit-værdi fra ADR. Læs 16-bit-værdi fra PORT. Læs 32-bit-værdi fra ADR. Læs 32-bit-værdi fra PORT. Læs 8-bit-værdi fra ADR. Læs 8-bit-værdi fra PORT. Læs kun LÆNGDE byte. Genstart mislykkedes Genstart computeren. Genindtast adgangskode:  Regulært udtryk er for stort Fjern en DNS-server Fjern et modul. Fjern en miljøvariabel. Fjern hukommelsesregioner i det angivne interval. Rapportér fejl til %s.
 Rapportér fejl til <bug-grub@gnu.org>. Bad om seriel terminal, men GRUB_SERIAL_COMMAND er ikke angivet. Der vil blive brugt standardparametre. Nulstil alle afbildninger til standardværdierne. Hent enhedsinformation. Returnér fra en funktion. Vend tilbage til IEEE1275-prompten. Kør "gdb %s %d" og sæt ARGS.HOLD til nul.
 Kør "go" for at genoptage GRUB. SEK KORTNAVN KORTNAVN KORT ADRESSE [HWADRESSE] KORTNAVN NET [GRÆNSEFLADE| gw ADGANGSPUNKT] STØRRELSE KILDE|-u UUID|-a|-b STRENG Lørdag Gem den læste værdi i variablen VARNAVN. Gem variable til miljøblokfil. Sig "Hej verden". Søg i enheder efter UUID. Hvis VARIABEL er angivet, vil variablen blive sat til den først fundne enhed. Søg i enheder ud fra en fil. Søg efter enheder ud fra filsystems-UUID. Søg i enheder ud fra en filsystemsetiket. Søg i enheder ud fra en fil, filsystemsetiket eller filsystems-UUID. Hvis --set er givet, vil den først fundne enhed blive sat til en variabel. Hvis intet variabelnavn er givet, bruges "root". Søg i enheder efter fil. Hvis VARIABEL er angivet, vil variablen blive sat til den først fundne enhed. Søg i enheder efter etiket. Hvis VARIABEL er angivet, vil variablen blive sat til den først fundne enhed. Sektor %llu er allerede i brug af raid-controller "%s"; undgår den.  Bed venligst producenten om ikke at gemme data i MBR-pladsen Sektoren %llu er allerede i brug af programmet "%s"; undgår den.  Dette program kan forårsage problemer med opstart med mere i fremtiden.  Bed venligst programmets forfattere om ikke at lagre data i opstartssporet Vælg enhed efter dens position på bussen. Vælg enhed efter forhandler og enheds-id'er. Indstil advanceret strømstyring (APM)
(1=lav, ..., 254=høj, 255=deaktiveret). Indstil Automatic Acoustic Management
(0=deaktiveret, 128=stille, ..., 254=hurtig). Indstil OEMID for RSDP, XSDT og RSDT. Indstil OEMTABLE ID for RSDP, XSDT og RSDT. Indstil revision af OEMTABLE for RSDP, XSDT og RSDT. Angiv "skjult"-flag i partitionstype Sæt en variabel til en returværdi. Sæt en variabel til den første enhed, der findes. Sæt en miljøvariabel. Angiv baggrundsfarve for aktiv terminal. Indstil skaberfeltet for RSDP, XSDT og RSDT. Indstil skaberrevision for RSDP, XSDT og RSDT. Angiv miljøvariabel til fejlsøgning. Sæt drevet i hviletilstand (sleep). Sæt drevet i ventetilstand (standby). Angiv positionsparametre. Ændr rodenhed. Indstil tidsudløb for standby
(0=deaktiveret, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Sæt terminfo-type for TERM til TYPE.
 Angiv standardmenuindgangen i GRUB, kun for næste opstart. Sæt standardmenuindgangen for opstart i GRUB. Angiv adressen for den serielle port. Angiv pariteten for den serielle port. Angiv hastigheden for den serielle port. Angiv stop-bit for den serielle port. Angiv word-længden for den serielle port. Angiv den serielle enhed. Opsæt aftryk til at starte fra ENHED.

Du bør normalt ikke køre dette program direkte.  Brug i stedet grub-install. Angiv adgangskode for bruger (PBKDF2). Angiv brugeradgangskode (klartekst). Dette er usikkert og frarådes. Sæt variablen med brugerinddata. Angiv variable. Sætter partitionstype til 0x%x
 Skift positionsparametre. Vis ACPI-oplysninger. Vis APM-oplysninger. Vis en hjælpebesked. Vis en lang liste med mere detaljeret information. Vis indholdet af FIL i heks. Vis indlæste moduler. Vis indholdet af hukommelsen. Vis ubehandlet indhold af ATA IDENTIFY-sektor. Vis ubehandlet indhold af en fil eller hukommelsen. Vis indholdet af en fil. Vis de aktuelle afbildninger. Vis denne meddelelse. Vis kun version 1-tabeller. Vis kun version 2- og version 3-tabeller. Slukning mislykkedes Simulér "initrd"-kommando til ældre grub Simulér "kerne"-kommando til ældre grub Simulér "modulenounzip"-kommando til ældre grub Simulér "password"-kommando til ældre grub Simulér "password"-kommando til ældre grub i menuindgangsstilstand Overspring N byte fra udskriftsfil. Spring et antal byte over fra filens begyndelse. Plads %d åbnet
 Noget Hurd-halløj fundet, men ikke nok til at starte op. Angiv filnavn. Angiv den hash, der skal bruges. Angiv en eller flere skrifttypefiler der skal indlæses. Angiv antallet af inddatafiler. Start GDB-stub på den givne port Stop GDB-stub Gem matchet komponent NUMMER i VARNAVN. Succes Søndag Undertryk normal udskrift (advarsler vises stadig). Syntaksfejl på linje %u
 Der blev fundet syntaksfejl i den genererede GRUB-
konfigurationsfil.  Sikr dig at der ikke er nogen fejl
i filerne /etc/default/grub eller /etc/grub.d/*, eller
indsend venligst en fejlrapport med filen %s vedhæftet. I/O-pladsen for controlleren til systemhåndteringsbussen er 0x%x
 MÅL Målformatet er ikke angivet (brug tilvalget -O). Terminal har angivet geometri. Terminal bruger kun ASCII-tekst [standard]. Terminal bruger logisk ordnet UTF-8. Terminal bruger visuelt ordnet UTF-8. Test USB-understøttelse. Test bit ved BYTE:BIT i CMOS. Tjek om REGUDTRYK matcher STRENG. Tjek videoundersystemet i tilstanden BxH. Test videoundersystem. Kun tekst  Filerne er identiske.
 Det fremhævede punkt vil blive kørt automatisk om %d s. Dette punkt kan startes op af enhver bruger. Torsdag Værktøj til at redigere miljøblokken. Størrelse af flash i alt: %d B.
 Afsluttende omvendt skråstreg Konvertér 64-bit-UUID til format, der passer til XNU. Hvis -l er givet, så behold det i små bogstaver jævnfør blkid. Lav et systemfilnavn til et GRUB-filnavn. Oversætter strengen med de nuværende indstillinger. Tirsdag BRUGER ADGANGSKODE BRUGER PBKDF2-ADGANGSKODE BRUGERNAVN[,BRUGERNAVN] UTF-8 Kan ikke oprette datakanal: %s Kan ikke bestemme din platform. Brug --target. Kan ikke udføre fork: %s Kan ikke åbne strøm fra %s: %s Kan ikke hente pool-tilstand Udpak komprimerede data. Udpak fil før tjeksumsberegning. Ukendt adressetype %d
 Ukendt kommando "%s".
 Ukendt komprimeringsformat %s Ukendt kodning Ukendt ekstra argument "%s". Ukendt gsub-funktion for skrifttype 0x%x (%s)
 Ukendt tastatur-skan-kode 0x%02x
 Ukendt tastatur-skan-identifikation %s
 Ukendt systemfejl Ukendt videotilstand  Ukendt type af virtuel enhed: %s
 Af-indlæs EFI-emulator. Uparret ( eller \( Uparret ) eller \) Uparret [ eller [^ Uparret \{ Ukendt tilvalg "%s"\n Ukendt pool-tilstand Uunderstøttet adressetype %d
 Dækningsspecifikation understøttes ikke: %d
 Uunderstøttet hw-adressetype %d
 Uunderstøttet billedformat Erstatningsflag understøttes ikke: 0x%x
 Erstatningsspecifikation understøttes ikke: %d
 Erstatningstype understøttes ikke: %d
 Brug: Brug: %s -o UDDATA CKBMAP_ARGUMENTER...\n Brug: %s ENHED
 Brug: %s [INDFIL [UDFIL]]
 Brug: %s [TILVALG] MENUINDGANG\n Brug: %s [TILVALG]\n Brug cd-rom som root. Brug GDBs fjernfejlfinder frem for DDB. Brug STRENG som menuindgangskrop. Brug indkompileret rodenhed. Brug seriel konsol. Brug tasterne %C og %C til at vælge fremhævet punkt. VAR GRÆNSEFLADE NUMMER BESKRIVELSE VARNAVN Ekstra udskrift ved nedtælling. Version %u.%u
32-bit CS = 0x%x, længde = 0x%x, position = 0x%x
16-bit CS = 0x%x, længde = 0x%x
DS = 0x%x, længde = 0x%x
 Virtuel enhed er degraderet Fejl på virtuel enhed Virtuel enhed er offline Virtuel enhed er online Virtuel enhed er fjernet ADVARSEL: ingen konsol vil være tilgængelig for OS ADVARSEL: ingen platformsspecifik installation blev gennemført ADVARSEL: uunderstøttede parametre til skrifttypefunktioner: %x
 BREDDExHØJDE. Vent et givet antal sekunder. Vent på tastetryk efter hver udskrevet linje. Advarsel: Advarsel: ugyldig baggrundsfarve "%s"
 Advarsel: ugyldig forgrundsfarve "%s"
 Advarsel: syntaksfejl (manglende skråstreg) i "%s"
 Onsdag Windows NT/2000/XP (indlæser) Windows Vista/7 (indlæser) Skriv 16-bit-VÆRDI til ADR. Skriv 16-bit-VÆRDI til PORT. Skriv 32-bit-VÆRDI til ADR. Skriv 32-bit-VÆRDI til PORT. Skriv 8-bit-VÆRDI til ADR. Skriv 8-bit-VÆRDI til PORT. SPD-byte skrevet: %d B.
 Xen hypervisor, version %s YUV  Du skal angive mindst én kommando.
 Det vil være nødvendigt at angive "SystemPartition" og "OSLoader" manuelt. Dit indlejringsområde er usædvanligt lille.  Der er ikke plads til core.img. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FIL [--md5] ADGANGSKODE [FIL] [--no-mem-option] [--type=TYPE] FIL [ARG ...] [-1|-2] [--exclude=TABEL1,TABEL2|--load-only=TABEL1,TABEL2] FIL1 [FIL2] [...] [-c FIL [-p PRÆFIKS]] [FIL1 [FIL2 ...]] [-d] ENHEDSNAVN FIL. [-e|-n] STRENG [-f FIL] [-f FIL] variabelnavn [...] [-f|-l|-u|-s|-n] [--hint FIF [--hint FIF] ...] NAVN [-h|-p|-r] [FIL] [-l] GRUBUUID [VARNAVN] [-l|-h|-a] [FIL ...] [-m (stretch|normal)] FIL [ADR|comENHED][,HASTIGHED] [ARG] [KORT [HWADRESSE]] [KORT] [MILJØVAR=VÆRDI] [MILJØVAR] [TASTETRYK1] [TASTETRYK2] ... [TAL:]VARNAVN [NUM] [TILVALG...] [TILVALG] [TILVALG] DISK [TILVALG] FIL_ELLER_ENHED [TILVALG] SKRIFTTYPEFILER [TILVALG]... [MODULER] [TILVALG]... [STI|ENHED] [TILVALG] [STI] [MØNSTER ...] [BRUGERLISTE] [VÆRDI]... [BxH[xD]] [BxH] [[-a|-u|-v] [-g BxH] TERM [TYPE]] [[år-]måned-dag] [time:minut[:sekund]] [bus]:[plads][.funk] [forhandler]:[enhed] "cryptomount"-kommando slår fejl: %s "loopback"-kommando slår fejl: %s der blev tildelt en værdi til argumentet "%s", men dette kræver ikke noget argument adgang nægtet tilføj NOTE-segment for CHRP IEEE1275 adr adresse ikke fundet forsøg på at læse eller skrive uden for disk "%s" forsøg på at læse eller skrive uden for partition forsøg på at læse forbi filens slutpunkt forsøg på at søge uden for filen forsøger at læse kerneaftrykket "%s" fra GRUB forsøger at læse kerneaftrykket "%s" fra GRUB igen tilgængelig RAM tilgængelige formater: base_addr = 0x%llx, længde = 0x%llx, %s
 base_addr = 0x%llx, længde = 0x%llx, type = 0x%x
 bitmap-filen "%s" er ikke i et understøttet format blocklist FIL bloklister er ugyldige blokstørrelse kan ikke divideres med 512 kan ikke bryde ud af 0 løkker kan ikke bestemme filsystemet på %s kan ikke finde kommandoen "%s" kan ikke montere krypteret diskenhed "%s": %s kan ikke åbne "%s": %s kan ikke åbne filen %s, indeks %d: fejl %d kan ikke hente bloklister: %s kan ikke komprimere kerneaftryk kan ikke finde et GRUB-drev til %s.  Kontrollér din device.map kan ikke finde en enhed for %s (er /dev monteret?) kan ikke hente translatørkommandolinje for stien "%s": %s kan ikke åbne OS-filen "%s": %s kan ikke åbne "%s": %s kan ikke læse "%s" korrekt kan ikke læse "%s": %s kan ikke omdøbe filen %s til %s kan ikke gendanne oprindeligt katalog kan ikke søge i "%s": %s kan ikke køre stat på "%s": %s kan ikke skrive til CD-ROM kan ikke skrive til "%s": %s kan ikke skrive til stdout: %s kort ikke fundet cat FIL verifikation af kontrolsum mislykkedes cmp FIL LOKAL comENHED[,HASTIGHED] fejl i sammenligning ved afsæt %llu forbindelse afvist tidsudløb for forbindelse konvertér til fed skrift kerneaftryk er for stort (0x%x > 0x%x) core.img-version stemmer ikke kunne ikke autokonfigurere %s kunne ikke finde en nødvendig medlemsenhed fra et flerenhedsfilsystem kunne ikke finde geli-forbruger kunne ikke finde "part"-klasse for geom kunne ikke åbne geom kunne ikke læse ELI-metadata kunne ikke hente UUID kunne ikke hente geli-UUID kunne ikke hente tilfældige data til saltnummer kunne ikke sende netværkspakke cp FIL LOKAL crc FIL kryptografisk fejl nummer %d cygwin_conv_path() mislykkedes slet enhedsafbildning hvis den allerede findes destination kan ikke nås enhedstal overstiger grænsen deaktivér hinting disk "%s" ikke fundet disken findes ikke, så bruger i stedet partitionsenheden %s diskmodul der skal bruges (biosdisk eller platformsspecifik). Dette tilvalg er kun tilgængeligt på BIOS-mål. størrelsen af diskboot.img skal være %u byte søg ikke efter filsystemer i ENHED domænenavnskomponent er for lang opdatér ikke LED-tilstand færdig indlejr FIL som en tidlig konfiguration indlejring er ikke muligt, men dette kræves til RAID- og LVM-installationer indlejring er ikke muligt, men dette kræves til installation på tværs af diske enter: start op, "e": tilvalg, "c": kommandolinje miljøblok er for lille fejl: %s.
 forvent GRUB-aftryk under kataloget KAT/%s frem for kataloget %s kunne ikke læse sektor 0x%llx fra "%s" fejl ved læsning af adgangskode kunne ikke skrive sektor 0x%llx til "%s" falsk fejlbehæftet RAM (BadRAM) fil "%s" ikke fundet filnavn forventet filnavn eller tempo samt noder forventet filsystemet "%s" understøtter ikke mærkater filsystemet "%s" understøtter ikke bloklister firmwareaftryk er for stort tving autohint fire argumenter forventet fwstart.img svarer ikke til den acceptable kendte version. Fortsæt på eget ansvar generér et aftryk i FORMAT vis en kort brugsanvisning vis denne hjælpeliste det givne argument er en systemenhed, ikke en sti grub-mkimage er kompileret uden understøttelse af XZ grub> hæng i SEK sekunder (som standard 3600) hex FIL ignorér bitmap-dele ved indlæsning ugyldig angivelse af terminalstørrelse installér GRUB-aftryk under kataloget KAT/%s frem for kataloget %s installér selvom der opdages problemer ugyldig PBKDF2-adgangskode ugyldigt magisk tal for arkitekturafhængig ELF ugyldigt magisk tal for arkitekturuafhængig ELF ugyldig farvespecifikation "%s" ugyldig miljøblok ugyldigt filnavn "%s" ugyldigt skrifttypeinterval ugyldigt linjeformat: %s ugyldig parameter %s ugyldig overspringsværdi %lld ugyldigt variabelnavn "%s" ugyldig angivelse af videotilstand "%s" ioctl GET_ARRAY_INFO-fejl: %s ioctl GET_DISK_INFO-fejl: %s ioctl RAID_VERSION-fejl: %s vis netværksadresser vis netværkskort vis netværksruter ls STI lzop-fil beskadiget gør at drevet kan startes fra som diskettedrev (standard for fdX-enheder). Kan ødelægge opstarten med visse BIOS'er. manglende "%c"-symbol mangler obligatorisk tilvalg til "%s" modulet "%s" er ikke indlæst modul er ikke indlæst navn kræver et aftryk samt monteringspunkt ingen APM fundet ingen DHCP-info fundet intet DHCP-tilvalg %d fundet ingen DHCP-tilvalg fundet ingen DNS-fortegnelse fundet intet DNS-svar modtaget ingen DNS-servere konfigureret ingen "/" i kanonisk filnavn ingen kommando angivet ingen dekrypteringsnøgle tilgængelig ingen server angivet ingen sådan partition ingen passende videotilstand fundet ingen symboltabel ingen terminal angivet ingen terminator i kerneaftrykket ikke-sektorjusterede data fundet i kernefilen ikke et katalog ikke en primær partition ikke en regulær fil ikke i funktionskrop ét argument forventet et andet program bruger indlejringsområdet, og der er ikke plads til core.img.  Sådanne programmer forsøger ofte at skjule data i hemmelighed. Vi anbefaler at du undersøger dette løbet tør for hukommelse udskriv et genereret aftryk til FIL [standard=stdout] udfil skal være angivet udskriv genereret konfigurationsfil til FIL [standard=stdout] overløb fundet adgangskoder stemmer ikke udfør en bootp-autokonfiguration fysisk diskenhed %s ikke fundet forudindlæs angivne moduler MODULER for tidlig slutning af fil filafslutning tidligere end ventet i %s tryk på CapsLock-tasten tryk på Insert-tasten tryk på NumLock-tasten tryk på ScrollLock-tasten tryk på SysRq tryk på venstre alt tryk på venstre ctrl tryk på venstre skift tryk på højre alt tryk på højre ctrl tryk på højre skift vis programversion vis versionsoplysninger og afslut vis denne hjælp og afslut udskriv uddybende meddelelser. læsefejl ved afsæt %llu: %s relativt underkatalog på netværksserver relokering 0x%x er endnu ikke implementeret reserveret RAM hent DHCP-tilvalg og gem det i VAR. Hvis VAR er -, så udskriv værdien. rodkatalog for TFTP-server cyklisk rute fundet gem ROM-aftryk i KAT [valgfri] gem uddata i FIL [påkrævet] vælg skrifttypeindeks serielport "%s" ikke fundet set [NAVN=VÆRDI ...] ændr capslock-tilstand angiv overlængde for skrifttype angiv underlængde for skrifttype angiv skriftfamilienavn angiv skrifttypeinterval angiv skriftstørrelse angiv inddatafilnavnet. Som standard STDIN ændr Insert-tilstand ændr numlock-tilstand angiv uddatafilnavnet. Som standard STDOUT ændr pause-tilstand angiv præfiks-katalog [standard=%s] ændr scrolllock-tilstand ændr programnavnet stør stretch|normal symbolet "%s" ikke fundet midlertidig terminalen %s kan ikke findes, eller håndteres ikke af terminfo terminalen "%s" ikke fundet argumentet "%s" kræver et heltal device.map-enhedsindgangen "%s" er ugyldig. Ignorerer den. Ret eller slet venligst din device.map drevnavnet "%s" i device.map er forkert. Bruger %s i stedet. Brug venligst formen [hfc]d[0-9]* (f.eks. "hd0" eller "cd") første sektor af kernefilen er ikke sektorjusteret installationsenheden er flytbar. Dette tilvalg er kun tilgængeligt på EFI. partitionstypen 0x%x er ugyldig sektorerne i kernefilen er for fragmenterede størrelsen af "%s" er ikke %u størrelsen af "%s" er for stor størrelsen af "%s" er for lille denne ELF-fil er ikke af den korrekte type denne GPT-partitionsetiket har ingen BIOS-opstartspartition; indlejring vil ikke være muligt denne LDM har ingen indlejringspartition; indlejring vil ikke være muligt denne msdos-agtige partitionsetiket har intet post-MBR-mellerum; indlejring vil ikke være muligt tre argumenter forventet tidsudløb ved åbning af "%s" tidsudløb ved læsning af "%s" tidsudløb: kunne ikke slå hardwareadresse op indlejring af symlænker er for dyb translatøren "%s" for stien "%s" har adskillige ord som ikke er tilvalg, i hvert fald "%s" og "%s" translatøren "%s" for stien "%s" har kun tilvalg, kan ikke finde enhedsdel translatørkommandolinje er tom for stien "%s" to argumenter forventet type kan ikke identificere noget filsystem i %s; sikkerhedstjek kan ikke udføres enhedsstørrelse uden justering uventet filafslutning ukendt argument "%s" ukendt komprimering %d
 ukendt enhedstype %s
 ukendt filsystem ukendt type af RAID-enhed "%s" ukendt fejl i regulært udtryk ukendt målformat %s
 ukendt terminfo-type "%s" ukendt formatangivelse "%s" for DHCP-tilvalg ukendt netværksadresse "%s" ukendt netværksgrænseflade "%s" ukendt tal adresse %s kan ikke slås op unset [NAVN ...] uunderstøttet HTTP-fejl %d: %s uunderstøttet HTTP-svar uunderstøttet RAID-version: %d.%d uunderstøttet gzip-format uunderstøttet paritet af serielport uunderstøttet hastighed af serielport uunderstøttet stop-bittal for serielport uunderstøttet ordlængde for serielport brug KAT som rod på EFI-systempartitionen. brug FIL som opstartsaftryk [standard=%s] brug FIL som kerneaftryk [standard=%s] brug FIL som enhedskort [standard=%s] brug FIL som xorriso [valgfri] brug GRUB-filer i kataloget KAT [standard=%s] brug identifikatorfil selv hvis UUID er tilgængelig brug billeder og moduler under KAT [standard=%s/<platform>] variablen "%s" er ikke sat visuelt ordnet UTF-8 vent til en fejlsøger tilsluttes vil ikke fortsætte med bloklister forkert magisk tal eller version af ELI xnu_uuid ENHED xz-fil beskadiget, eller uunderstøttede bloktilvalg kan ikke slette denne adresse du skal først indlæse kernen din BIOS-opstartspatition er for lille; indlejring vil ikke være muligt din core.img er usædvanlig stor.  Den vil ikke passe ind i indlejringsområdet dit indlejringsområde er usædvanligt lille.  Der er ikke plads til core.img.                                                                                                                                                                                                                                                                                                             boot/grub/locale/de.mo                                                                              0000600 0001750 0001750 00000315736 13417732100 0013631 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                       i     d#    F      H^  #   I^      m^     ^     ^     ^  $   ^     ^  6   _     H_     O_  	   [_     e_     r_     _     _     _     _  .   _  .   `  %   >`     d`     h`    w`    |a    b     c  7   c  F   c  v   "d  +   d     d      d     d  !   	e     +e  ,   He     ue     e  $   e     e  *   e     f     !f     )f     9f     Qf  
   qf  	   |f     f  ,   f  ,   f  ,   f  '   )g  -   Qg      g  (   g  (   g  )   g     h     <h     \h     ih     rh  "   {h  4   h     h     h  7   h      i  1   )i     [i     zi  %   }i  '   i  %   i  '   i     j     j      j     >j     Sj     hj     mj     j     j     j     j     j     j     j  3   j     )k  $   /k     Tk     lk     k     k     k     k     k  -   k     l  !   4l     Vl     kl     l  #   l     l  `   Hm  Z   m     n     n     ;n     =n     An     Xn     ^n     gn     ~n     n     n     n     n     n     o     (o     ?o     Uo     co     zo     o     o     o  %   o     o     o     o     p     .p     Dp     Sp     fp     wp  *   p  3   p     p  "   	q  8   ,q     eq     wq  	   q  #   q     q     q     q     r     3r     Jr  )   Yr     r     r     r  P   r     /s     Ds  H   Ys  &   s     s     s  !   s  ,   
t     7t     Ct     Gt  	   dt  !   nt  *   t     t     t     t     t     u  $   ,u     Qu     cu     uu     u     u     u  
   u  
   u     u  1   v     @v     Nv     [v     tv  3   v  >   v  $   w     (w     ?w     \w     tw     w     w  +   w     w     x  #   )x     Mx     dx  $   x     x     x  '   x  9   y     @y     Yy  z   wy     y     y  8   z     Fz  
   ]z     hz     uz     z     z     K{  +   h{     {     {     {  "   {     {     |  (   |     @|     X|     d|     t|     |     |  "   |  0   |     }     }     }  7   $}     \}     d}     p}     }     }     }  0   }     }     }     ~     ~  2   .~  %   a~     ~     ~  *   ~  6   ~  +        9     W     j  !   ;  d   ]  e     d   (  i     o     H   g          Â     ق                    -     D  #   ]                 1   Ƀ  )        %     ,     .     C  /   R                 5   ń            K   6                    Ѕ     ԅ     څ     ߅  '     P        ]     |  	                    '   Ȇ  +             -  )   I     s               Ç     ؇            $        @     R  "   m                 (        Ԉ     ؈  "   ވ  +     -   -     [     t                 O                  5     C  %   W     }  )     !   Ɗ  "             '  +   >     j            !        ŋ                          >     Y     l                 4   ʌ               0     H     c     ~                ͍  !          4   *  M   _  2               *     8   C     |                    Ϗ  3     $     +   @     l                         ̐           	     '     <     >  D   V            7     ;             >  !   ]            s        )     A     ^     o                    ɓ     ړ     ޓ               F     Y     m     t                 '   ϕ  
                  '     ,     D     H     Z  H   w          Ӗ            %        4     N  #   g               ŗ     Η                 %     F  "   S  (   v       %          2        .     7  #   P  *   t                 #        ݙ       "     ;     #   S  <   w                 .     	        '  `   9       !     )   ћ                      q                       Ɯ     ݜ                    :  "   Y     |               Ɲ     ݝ                  #   5     Y     v  g                    -          !          "   +  '   N  Q   v     Ƞ                          6     S     p               ơ                          0     Q     l            -        ߢ  "     b     )   y               ѣ  ,             2  	   7  "   A  %   d                      &     )   ۤ       ^        w  $     %        ܥ  ^     _     }   N     ̧  )     '     >   ը  D     !   Y  '   {  -     #   ѩ       )        ?  )   \  )     ,        ݪ               1     L  E   ]  $     A   ȫ  )   
     4     Q     m                Ȭ  q   ݬ     O  :   l          ŭ     ԭ               (     >  0   S                 )   ͮ  &             ;     V     i  )          %     %     ,     '   8  :   `       -          .        '     9  '   N  $   v  "             ʱ       *              (  )   /     Y     r  6   ,     c     e  0   l        !     "     #        '     9     W     m  !          
   Ĵ     ϴ  <     %   &     L     U     Y     _            d     *     0   ;  6   l                    ζ            0        3  !   F     h       $             շ          
       $   8  "   ]  $                   θ                    (     :     G     b     z  '             ߹  $     +     "   I     l  )   s               ͺ            '        >     ]     z  <         ˻                 m   "               ż     ߼       +     3   >  1   r       '     -   ڽ       '     '   9  .   a  	                  Ͼ               #     ?     Z     u            *     ?   ڿ  B     /   ]            .     O     )   7     a     w  	          5                       $     ?  :   Y                                                  *     ;     A  	   N     X     g                                
     
     	          !     )   )     S     g     y       F     N        L  "   Z     }       -     -     $     #     0   9  6   j                 (     1     )   +     U     d  !   {                  %          &   $     K     e        7     .     4        @     ]     r            %                       )     B     a     p     y  ,                                 $  #   9     ]     w  B                       #     >     U  &   q                           &        +     C     ^     n  ;     V     "     &   8  !   _                 /     H     F   4  (   {            I     $     '   ;     c  %   |                      $     '     *   /     Z     t       J                    -   1  +   _       $          "     +     J     %   Y             "                        )     @     S     k            %                    %   3     Y     p                 [          !   #     E     ^     r     w                                        &     C     [     w                                1        K     [     s                    s  1          0               !   -     O  "   l                                   	          $     4     E     U     f     x  &                            !  '   6  &   ^       L               !        3     R     d                                     #     #     $   C     h     x  &          !                  
            	   4  7   >     v  %     [     w     7     K     #     /   2     b     }       &     U     @   6  Q   w                 +        9  R   V  L     .        %     <  F   A                                         /     D     ^  2   y  !     #                       /     M     g                 (     #        )     B  )   U       '     '     '          0   .     _     z  -     8               !   .      P     q       .          !     B     E   N  B         %     &                  3  1   J      |  :               	          !        *     ?     Z     u  4     7     .        !     %  `  6  ]    r       h  =     O          4          )          *        A  5   ]            -          5   	     ?     P     X     h  *          	           *     1     *   ?  (   j  +     )     ,     ,     ,   C     p                      (     7        0     9  6   N       5               -     3     -   H  3   v            ?     &     #        =     B     T     f                           1          *        =     V     o       !               0        ,  -   L  (   z  %           =        (          u               4     6      :     [     a     j                       #     $   #    H    ]    v                         -    '   !    I (   ] !                    "    7   . N   f '    G    9   %    _ *   v     *    %            '   5 %   ]     -    %    &    *    j   > "    "    Z    *   J    u          /                	    )    ,   E    r                 (   	    ,	    @	    S	 !   o	    	 &   	 
   	    	     	 4   
    G
    Z
     l
 $   
 ;   
 Q   
 4   @    u #            $        .   % !   T 1   v +        $    /       C    \ 3   { B    &    %       ?         P    '   X     
        %            3               ' #   @    d    w 0                           1 2   H A   {             8       "    +    9    J    a    n C   u                  L    8   c !        2    B    9   F &            %           F     r   I     c   R                        3    P    k !                ;    >   5    t    |    ~     6                :    %   X '   ~ S    %    1     .   R                 ,    ]    #   # 
   G 	   R    \ $   d     :    2       
 %    /   E    u                          .   3     b     {  +                    6        !    ! 3   !! 9   U! 1   !    !    !    !    "    " f   5"    "    "    "    " 9   	# #   C# 6   g# $   # $   #    # "   $ 0   )$    Z$    s$    $     $    $    $    $    %    %    >%    X%    l%    %    %    % <   % &   &    4&    J&    g&    &    &    & &   & #   ' &   &'    M' E   m' i   ' C   ( &   a(    ( ,   ( A   (    )    %)    A)    [)    t) ;   )    ) ,   )    *    +*    >*    X*    r* !   * "   *    *    *    + !   + J   )+    t+    z+ @   + S   + (   , &   ?, 0   f,    , $   ,    ,    b- !   z-    -    -    -    -    -    .    0.    4.    :.    #/    0    (0    <0    C0 !   Q0    s0 '   0 E   0    0    1 #   $1    H1    M1    i1    n1 %   1 _   1    2 (   2    E2    Z2 .   n2    2    2 8   2 (   3 "   /3    R3    i3 '   3 '   3 '   3    3 %   4 2   *4    ]4 )   {4 '   4 7   4 	   5 "   5 +   25 <   ^5    5    5    5 )   5    5    5 )   5 =   6 ,   ]6 @   6    6    6    6 4   	7 	   >7    H7    _7    7 &   7 :   !8    \8    `8    f8    n8    8    9    /9    K9    Z9    v9    9    9     9    9 %   9    :     ;:    \:    v:    :    :    :    : )   : -   ; 4   H;    };    <     <    < /    =    0= &   J=    q= 4   = 2   = l   =    Z>    y>    >    >    >    >    >    ?    )?    E?    `? "   {?    ?    ?    ? "   ?     @    1@    L@     a@ 6   @    @ (   @ y   @ 1   yA    A !   A "   A ?   B +   GB    sB    wB #   B )   B    B    B    B    B -    C &   .C    UC    nC    C *   D 0   GD    xD    xE    F    F    ]G 3   [H 5   H H   H L   I (   [I .   I 4   I '   I +   J 4   <J !   qJ 1   J 1   J 5   J    -K &   MK (   tK    K    K Q   K &   $L R   KL 5   L &   L '   L .   #M (   RM )   {M &   M    M %   cN D   N &   N    N $   O    ,O    IO    fO    O 8   O *   O    P    P .   ;P 3   jP    P $   P    P "   P /   Q    KQ /   jQ /   Q 6   Q 1   R D   3R '   xR /   R    R H   R    ,S    ?S 4   ]S &   S &   S    S )   S     T 6   1T    hT    oT 5   wT    T    T F   U    U    U ?   U #   /V !   SV    uV    V     V     V     V *   W .   ?W !   nW    W    W ?   W 7   W 
   .X    9X    =X 3   CX    wX    X    X 4   0Y ?   eY W   Y    Y    Z    Z    1Z    MZ .   SZ C   Z %   Z 3   Z )    [    J[ 1   [[    [    [ !   [    [ *   [ *   %\ *   P\ ,   {\    \    \ .   \    ]    ] !   >]    `]    ]    ]    ] "   ] /   ] +   !^    M^ +   k^ )   ^ '   ^    ^ +   ^    _ )   0_ "   Z_    }_     _ 3   _ 4   _ &   `    D` @   `` (   `    `    ` "   ` m   a &   }a !   a    a    a     b =   "b G   `b E   b    b )   b 5   &c    \c ,   ec ,   c .   c    c    c    d     *d     Kd     ld     d    d    d    d    e    (e -   -e I   [e T   e /   e    *f    Af .   Zf Y   f -   f    g    )g 
   >g    Ig 8   hg    g    g    g    g    g :   h    Th    kh    h    h    h    h    h    h    h    h    h    h 
   i    i    /i    Li    fi    {i 
   i    i    i    i 	   i 	   i    i     i ,   j    .j    Bj -   Vj *   j ]   j F   k    Tk +   gk    k    k ?   k <   k +   /l '   [l :   l A   l     m    m    &m (   7m 0   `m ;   m    m    m (   m -   !n 3   On *   n H   n &   n 3   o *   Ro .   }o +   o S   o C   ,p P   pp /   p &   p (   q    Aq *   ]q 2   q '   q .   q (   r ,   ;r 3   hr    r 	   r $   r 8   r    s    )s    :s    Ts ,   js    s &   s     s /   s [   *t (   t 8   t '   t *   u "   ;u '   ^u 2   u *   u    u 	   u    u    v 2   8v    kv %   v    v %   v K   v f   2w 3   w *   w !   w    x    9x (   Bx F   kx Y   x `   y 3   my    y    y A   y 9   z 6   Iz $   z ;   z    z    z    {    { '   7{ ,   _{ 1   {    {    {    { o   |    |     |    | 7   | 4   }    K} 2   Q} 	   } $   } '   } 7   } 3   ~    G~ ,   c~ .   ~    ~ "   ~    ~        5    P    m          (    !            / (   O    x            ŀ    ̀ w       ` '   t            Ӂ *   ؁     !       7    U    r     '    *   ς            +    H    ^ "   u            ă G       +    ;    T $   j             7    "   Յ :       3 &   K '   r /    $   ʆ        
    )    A    V    m                χ            !    ? *   X "    !    2   Ȉ         5   ) .   _     Y             +   2 )   ^     *       ˊ    ߊ "    #   "    F    _    x ,    ,    2           8 3   P     %           ی             	   6 M   @ $    +    p   ߍ    P =    ]   ( $    6    #            $   . `   S L    c       e +   } )    D   ӑ 1    s   J k    7   *    b     e    !           $    @    [    v )           Ҕ     :    %   H 1   n            Е '        	 '   *     R 4   s ;    @    6   %     \    } 4    "   ̗ ,    ,    1   I %   { 2    &   Ԙ )    ;   % ?   a !       Ù "   ә &            > E   N (    #    H    _   * S         $     @        ?            F        :    J  ^  4                        H      $                     <        
    1                                k  ,     R     	               O           r   H        {   '  +           ;  <   i       %      _                      q              &      -                           =      "     *      F           L       _       ]  I               A   
  ~   (      [  _      &    C        D        X      }         Q        2                                x        $                              3    ?   G  O           ^                       s         9        M           e      "    w            1    z  	      w                   v        5    S                                  3         r            {      +  	                         P  `             d  c       ;   t          G  5           \  ^         d           #       b                 Z        @            Y  7  I                    .           >          :  X      g             :           K   (           $                D        F    a          )          '    ]            ;         H              W      k     '          o  z     %                  o            j       <    2                              L  t  .          Y  4                               `      n      f                     I  !      '  8      Z  F     %       `          )              D      t                            H                 \                           &      S    #      y    5        :          l   V  p             m  m         Z       `        C  I            T             h                  C  7   [       y   	  \                  h      ]      2     l    /    y                ~            T  O        Q   A        )   W        =  /    ]   K  |  4  }      C        g  ^    7      9                        Q         "     D      ,  *   W     [         u  0      2     f  x      H              4                    8  *      [              O            f                   E  -  =   E                   R      w  a           p   j  +    T      v      O      9      o       Y    A        v      U    X                           @                                             7          J      L       S    A               ~  P                 S        .      h       C  +  X      r          )      :      !          r      P      U       V                       V   T  I              E      P            c      3              i  w       f                2  -      
   M      i             [    c         _    d     U      6           D   8          V        e   ?  ,                  |          %  &  y        ;         B   u     g                      e           k         u         G    &           ,        }       p  e  M  -  J        |        0          )    A     <                    B                     \      #          v  9      ?       G     f                    @  8               =  /  K                      x  .           \     j      5      N  c        i  b  $  m                 0  N                   *           6              
                                            !   -      N  }           ,      a  n       s               g        g                          +                      M  b  >    3    *                                              >      J      h                !      #       _      R     z      b  l            %  L          Y        
                u   s                   "  Q             #      a  ]            d                     R      q  0      ?                      i    `  W       N        8             (                       J               	                h  K                6  n      k  ;        e  ^             >        p            q                          @                                                M     .      6  >   1       (  /     '  N                  t                0  z    ~    U           U  G       |                {  o         R      4           q          x                   !     B     j  3                     =  Y                    7  Q          1      "    b        F              B            c      Z                        9      E                                                          P        m  s  d                         K                                        B                    E   {                  Z    a  /                        X      6         L             S          5   (             T   1       W          n                            <                              V  l                 total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: option '%c%s' doesn't allow an argument
 %s: option '%s' is ambiguous; possibilities: %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File size: %s
 File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS Import ZFS wrapping key stored in FILE. Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... M MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MODULE MODULES Mail xorriso support requests to <bug-xorriso@gnu.org>. Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Option -- switches to native xorriso command mode. Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show the contents of a file. Show the current mappings. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 T TARGET Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This entry can be booted by any user. Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. Your embedding area is unusually small.  core.img won't fit in it. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `cryptomount' command fails: %s `loopback' command fails: %s `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format blocklist FILE blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s cannot compress the kernel image cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot get translator command line for path `%s': %s cannot open OS file `%s': %s cannot open `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. diskboot.img size must be %u bytes do not probe for filesystems in DEVICE domain name component is too long don't update LED state done embed FILE as an early config embed FILE as public key for signature checking embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to get canonical path of `%s' failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification install GRUB images under the directory DIR/%s instead of the %s directory install even if problems are detected invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid block size invalid color specification `%s' invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no `/' in canonical filename no command is specified no decryption key available no network card found no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found pre-load specified modules MODULES premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory of TFTP server route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the argument `%s' requires an integer the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for text use DIR as the EFI System Partition root. use FILE as font (PF2). use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub-2.00+20130519
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-06-03 19:11+0100
Last-Translator: Mario Blättermann <mario.blaettermann@gmail.com>
Language-Team: German <translation-team-de@lists.sourceforge.net>
Language: de
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=(n != 1);
X-Generator: Poedit 1.5.4
               Gesamtspeicher: %d KiB
     Kein bevorzugter Modus verfügbar
     Bevorzugter Modus: %ux%u
   EDID-Prüfsumme ist ungültig   EDID-Version: %u.%u
   Grafikadapter konnte nicht initialisiert werden   Keine Informationen verfügbar   VBE-Info:   Version: %d.%d  OEM-Softwarerevision: %d.%d
   oder:   (ganz links)  (mittig)  (ganz rechts)  - Partitionsbeginn bei %llu%sKiB  - Sektorgröße %uB  - Gesamtgröße %llu%sKiB  - Gesamtgröße unbekannt  [OPTIONEN …] %.*s: Parameter für ARGP_HELP_FMT muss positiv sein %.*s: Parameter für ARGP_HELP_FMT benötigt einen Wert %.*s: Unbekannter Parameter für ARGP_HELP_FMT %ds %ds verbleibend. %s enthält ein %s-Dateisystem, welches bekanntermaßen keinen Platz für einen DOS-Betriebssystemstart bereithält. Die Installation von GRUB könnte die ZERSTÖRUNG DES DATEISYSTEMS nach sich ziehen, sofern Daten durch grub-setup überschrieben werden. Die Option --skip-fs-probe deaktiviert diese Überprüfung, verwenden Sie dies auf eigene Gefahr. %s scheint eine %s-Partitionstabelle und LDM zu enthalten, welches bekanntermaßen keine sichere Kombination ist. Die Installation von GRUB könnte die ZERSTÖRUNG DES DATEISYSTEMS nach sich ziehen, sofern Daten durch grub-setup überschrieben werden. Die Option --skip-fs-probe deaktiviert diese Überprüfung, verwenden Sie dies auf eigene Gefahr. %s scheint eine %s-Partitionstabelle zu enthalten, welche bekanntermaßen keinen Platz für einen DOS-Betriebssystemstart bereithält. Die Installation von GRUB könnte die ZERSTÖRUNG DES DATEISYSTEMS nach sich ziehen, sofern Daten durch grub-setup überschrieben werden. Die Option --skip-fs-probe deaktiviert diese Überprüfung, verwenden Sie dies auf eigene Gefahr. %s unterstützt keine UUIDs %s erstellt eine Tastaturbelegung für GRUB mittels ckbcomp\n %s ist veraltet. Verwenden Sie stattdessen gfxpayload=%s vor dem Linux-Befehl.
 %s ist veraltet. VGA-Modus %d wurde nicht erkannt. Verwenden Sie stattdessen gfxpayload=BREITExHÖHE[xTIEFE] vor dem Linux-Befehl.
 %s wird von grub-mkconfig noch nicht unterstützt.\n %s, mit Hurd %s %s, mit Hurd %s (Wiederherstellungsmodus) %s, mit Linux %s %s, mit Linux %s (Wiederherstellungsmodus) %s, mit Xen %s und Linux %s %s, mit Xen %s und Linux %s (Wiederherstellungsmodus) %s, mit Xen-Hypervisor %s, mit kFreeBSD %s %s, mit kFreeBSD %s (Wiederherstellungsmodus) %s, mit Kernel %s (über %s) %s, mit Kernel %s (über %s, Wiederherstellungsmodus) %s: HASH-FEHLER
 %s: OK
 %s: LESEFEHLER
 %s: Zu viele Argumente
 %s: Sie müssen dies als Root ausführen\n %s: Fehler: %s: Info: %s: Ungültige Option -- »%c«
 %s: Option »%c%s« erlaubt kein Argument
 %s: Option »%s« ist mehrdeutig; Möglichkeiten: %s: Option »--%s« erlaubt kein Argument
 %s: Option »%s« erwartet ein Argument
 %s: Option »-W %s« erlaubt kein Argument
 %s: Option »-W %s« ist nicht eindeutig
 %s: Option »-W %s« erfordert ein Argument
 %s: Option erfordert ein Argument -- »%c«
 %s: Option erwartet ein Argument -- »%s«\n %s: Unbekannte Option »%c%s«
 %s: Unbekannte Option »--%s«
 %s: Warnung: (32-bit) (64-bit) (PROGRAMMFEHLER) Keine Version bekannt!? (PROGRAMMFEHLER) Option hätte erkannt werden müssen!? (auf %s) - Bezeichnung »%s« - Letzte Änderungszeit %d-%02d-%02d %02d:%02d:%02d %s --MEHR-- -h HASH [-c DATEI [-p PRÄFIX]] [DATEI1 [DATEI2 ...]] -l | -r | [-s] grubdev osdisk. .5 Geschütze 16-bit-Schnittstelle unterstützt
 Geschütze 16-bit-Schnittstelle nicht unterstützt
 Geschütze 32-bit-Schnittstelle unterstützt
 Geschütze 32-bit-Schnittstelle nicht unterstützt
 =WERT > Durch ACPI beanspruchter Speicherbereich (für Energiesparmodi) Durch ACPI wiederverwendbarer Speicher ACPI-Herunterfahren ist gescheitert ADDR ADDR WERT [MASKE] ADRESSE [GRÖßE] ADR1,MASKE1[,ADR2,MASKE2[,...]] ADDRESSE DNS_SERVER APM deaktiviert
 APM deaktiviert
 APM aktiviert
 APM aktiviert
 ARGP_HELP_FMT: Wert %s ist kleiner oder gleich %s ASCII CR/NL-Zeilenenden im DOS-Stil akzeptieren. Aktive Eingabeterminals: Aktive Ausgabeterminals: Adapter »%s«:
 Einen DNS-Server hinzufügen Eine Netzwerkadresse hinzufügen. Eine Netzwerkroute hinzufügen. Erweiterte Optionen für %s Erweiterte Optionen für %s (mit Xen-Hypervisor) Unterbrechung mit ESC erlauben. Nach dem Dateinamen für den Neustart fragen. Eingabe wird als hexadezimal angenommen. Eingabe wird als Kennwort angenommen. Eingabe wird als Raw angenommen. Es wird versucht, den Master-Schlüssel zu entschlüsseln … Es wird versucht, GRUB auf einer Platte mit mehreren Partitionsbezeichnungen oder sowohl Partitionsbezeichnungen als auch Dateisystemen zu installieren. Dies wird derzeit noch nicht unterstützt. Es wird versucht, GRUB auf einer Platte mit mehreren Partitionsbezeichnungen zu installieren. Dies wird derzeit noch nicht unterstützt. Es wird versucht, GRUB auf einer nicht partitionierten Platte oder in eine Partition zu installieren. Das ist eine SCHLECHTE Idee. Verfügbare Eingabeterminals: Verfügbare Ausgabeterminals: B B/s BIOS_SICHERUNG [INT10_SICHERUNG] BLOCK BYTE:BIT Modus des Hintergrundbildes. Basisordner für Hash-Liste. BIOS-basiertes System booten. Ein Betriebssystem starten. In den Single-User-Modus booten. Mit Fehlerdiagnosemeldungen booten. Mit ausführlichen Meldungen booten. »%s« wird gebootet Eine Befehlsliste booten Im Blindmodus booten Boot-Pfad: %s
 Boot-Pfad: nicht verfügbar
 Haltepunkt für GDB auslösen CGA  FARBE BEFEHL [ARGUMENTE] CPU-Leerlauf verlangsamt den Prozessor nicht
 CPU-Leerlauf verlangsamt den Prozessor
 CS5536 in %d:%d.%d
 ROM-Bereich kann nicht aktiviert werden. Konfigurierte Geräte bearbeiten. Partitionstyp ändern Alt-Taste überprüfen. Strg-Taste überprüfen. Umschalttaste überprüfen. Fähigkeiten der CPU überprüfen. Prüfsummen der Dateien mit Liste in DATEI vergleichen. Überprüfen, ob der Prozessor den 64-Bit-(Lang-)Modus unterstützt (Vorgabe). Status der Umschalttasten überprüfen. Überprüfen Sie, ob der Benutzer in der BENUTZERLISTE aufgeführt ist. Überprüft die GRUB-Skriptkonfiguration auf Syntaxfehler Den Bildschirm leeren. »active«-Flag auf %d wurde gelöscht.  
 Befehle: DATEI mit lokaler Datei LOKAL vergleichen. Datei »%s« mit »%s« vergleichen:
 Zwei Dateien vergleichen. XNU-UUID des Geräts berechnen. Hash-Prüfsumme berechnen oder prüfen. Serielle Schnittstelle konfigurieren. Schleifen fortsetzen Übliche Schriftdateiformate in PF2 umwandeln DATEI in lokale Datei LOKAL kopieren. DATEI in die Standardausgabe kopieren. FPSWA-Treiber konnte nicht gefunden werden Physischer Datenträger »%s« konnte nicht gefunden werden. Einige Module könnten im Core-Abbild fehlen. sha256 konnte nicht geladen werden sha512 konnte nicht geladen werden BIOS-Strukturen für Abwärtskompatibilität mit dem vorhandenen Betriebssystem erstellen. Eine leere Umgebungs-Blockdatei erstellen. Aktuelle Terminfo-Typen: GERÄT GERÄT [PARTITION[+/-[TYP]]] ... GERÄT muss ein OS-Gerät sein (z.B. /dev/sda). GERÄTENAME ORDN ORDNER [OSBundleRequired] DNSSERVER Diagnosewerkzeug für Dateisystemtreiber. Speicherbereiche als »badram« deklarieren. Dekompressor ist zu groß Einen Menüeintrag definieren. Ein Untermenü definieren. Eine Netzwerkadresse löschen. Eine Netzwerkroute entfernen. Das angegebene Loopback-Gerät löschen. Variablen löschen. Treiber ermitteln. Dateisystem-UUID ermitteln. Dateisystembezeichnung ermitteln. Dateisystemtyp ermitteln. Typ der Partitionszuordnung bestimmen. Gerät %s: Gerätekennung: %s
 Gerätekennung: nicht verfügbar Direkte Farbe, Maske: %d/%d/%d/%d  Pos.: %d/%d/%d/%d ACPI deaktivieren. SMP deaktivieren. Alle Boot-Ausgaben deaktivieren. SMART aktivieren/deaktivieren (0/1). Unsauber eingebettete Partition wird verworfen (%s,%s,%s%d) Statistiken des Plattenzwischenspeichers: Hits = %lu (%lu.%02lu%%), Misses = %lu
 Plattenanzahl muss Plattenliste vorangestellt sein.
 FPSWA-Version anzeigen. Laufwerksstatus mit SMART anzeigen. Eine Textzeile anzeigen. Blockliste von DATEI anzeigen. Ausgabe auf allen Konsolen anzeigen. Energiemodus anzeigen. Benutzung dieses Befehls anzeigen und beenden. Diese Hilfe anzeigen und beenden. Anzeigen/Festlegen des/der aktuellen Datums/Zeit. Angehängte Zeilenumbrüche nicht ausgeben. Keine Meldungen ausgeben. Kein Diskettenlaufwerk überprüfen. Zum Abschalten des Rechners kein APM verwenden. Nichts tun, erfolgreich. Nichts tun, nicht erfolgreich. Keine Fehlerdiagnosemeldungen beim Booten anzeigen. Keine Host-Tabellen spezifiziert durch kommagetrennte Liste laden. Nicht neu starten, nur herunterfahren. Nach dem ersten Fehler nicht stoppen. EBDA nicht aktualisieren. Könnte Fehler oder Hänger in manchen BIOS-Versionen beseitigen, ist aber nicht effektiv bei Betriebssystemen, die kein RSDP von GRUB empfangen.  UMGVAR UMGVAR [UMGVAR] ... FEHLER: Keine gültige Tastaturbelegung gefunden. Überprüfen Sie die Eingabe.
 Beenden ist jederzeit mit ESC möglich. AUSDRUCK AUSDRUCK ] Verstrichene Zeit: %d.%03d s 
 Verstrichene Zeit: %d.%03d Sekunden 
 Einbettung ist nicht möglich. GRUB kann in dieser Konfiguration nur mittels Blocklisten installiert werden. Blocklisten sind allerdings UNZUVERLÄSSIG und deren Verwendung wird daher nicht empfohlen. Eine Tastatursequenz emulieren Auswertung der Backslash-Maskierungen ermöglichen. ZFS-Passwort eingeben: KDB beim Booten verwenden. In Normalmodus wechseln. Kennwort für %s%s%s angeben (%s):  Passwort eingeben: Benutzername eingeben: Fehler beim Einlesen der Befehlszeilenargumente
 Einen Ausdruck auswerten. Beenden ist gescheitert GRUB beenden. Schleifendurchlauf beenden Normalmodus abbrechen. Variablen exportieren. Version-1-Tabellen zum Betriebssystem exportieren. Version-2- und Version-3-Tabellen zum Betriebssystem exportieren. DATEI DATEI [ARG ...] DATEI [ARGUMENTE …] DATEI | TEMPO [TONHÖHE1 DAUER1] [TONHÖHE2 DAUER2] ...  DATEI… DATEI1 DATEI2 DATEINAME BEFEHL DATEISYSTEM [VARIABLE] DATEI|prompt FORMAT Das FPSWA-Protokoll war nicht imstande, die Schnittstelle zu finden FPSWA-Revision: %x
 VON-BIS[,VON-BIS] VON[K|M|G] BIS[K|M|G] FT_Init_FreeType ist gescheitert Sowohl Vorgabe- als auch Alternativeinträge konnten nicht gebootet werden.
 Baum für »device-mapper« konnte nicht erstellt werden Alternative »%s« wird verwendet Dateigröße: %s
 Dateisystem »%s« unterstützt keine Einbettungen Dateien unterscheiden sich an Position %llu: 0x%x [%s], 0x%x [%s]
 Dateigrößen sind unterschiedlich: %llu [%s], %llu [%s]
 Zugriff auf Dateisystem nicht möglich Dateisystemtyp %s Hybrid-MBR des GPT-Gerätes GERÄT füllen. Angegebene Partitionen werden Teil des Hybrid-MBR. Bis zu 3 Partitionen sind zulässig. TYP ist ein MBR-Typ. + bedeutet, dass die Partition aktiv ist. Nur eine Partition kann aktiv sein. Laden des EFI-Emulators finalisieren. Zuerst das Gerät HINWEIS versuchen, falls aktuell laufende ARC. Falls HINWEIS mit Komma endet, auch Unterpartitionen versuchen Zuerst das Gerät HINWEIS versuchen (für aktuell laufendes BIOS). Falls HINWEIS mit Komma endet, auch Unterpartitionen versuchen Zuerst das Gerät HINWEIS versuchen (für aktuell laufendes EFI). Falls HINWEIS mit Komma endet, auch Unterpartitionen versuchen Zuerst das Gerät HINWEIS versuchen (bei IEEE1275). Falls HINWEIS mit Komma endet, auch Unterpartitionen versuchen Zuerst das Gerät HINWEIS versuchen, falls direkter Hardwarezugriff unterstützt wird. Falls HINWEIS mit Komma endet, auch Unterpartitionen versuchen Zuerst das Gerät HINWEIS versuchen. Falls HINWEIS mit Komma endet, auch Unterpartitionen versuchen Ein Videoproblem beheben. %s auf %s gefunden (%s)\n %s auf %s gefunden\n GNU Mach wurde gefunden: %s Hurd-Modul gefunden: %s NetBSD-Kernel gefunden: %s\n Hintergrund gefunden: %s\n initrd-Abbild gefunden: %s\n Kernel-Modulordner gefunden: %s\n FreeBSD-Kernel gefunden: %s\n Linux-Abbild gefunden: %s\n Thema gefunden: %s\n Freetype-Fehler %d beim Laden des Glyphs 0x%x für U+0x%x%s ATA-Sicherheitseinstellungen bis zum Zurücksetzen einfrieren. Freitag G GNU GRUB  Version %s GRUB-Bootmenü GRUB weiß nicht, wie man diese Maschine stoppen kann! GRUB-Emulator. GRUB-GERÄT=PLAN9-GERÄT Unsinn in ARGP_HELP_FMT: %s GRUB-Tastaturbelegung aus dem der Linux-Konsole erstellen. PBKDF2-Passwort-Prüfsumme erzeugen.  Eine Grub-Konfigurationsdatei erstellen Ein lauffähiges Abbild einschließlich aller Module im gewählten Format erstellen crc32-Prüfsumme von DATEI berechnen. Informationen zum Platten-Zwischenspeicher holen. ATA-Datenträgerparameter ermitteln/festlegen. GiB GiB/s HASH HINWEIS Das System anhalten, wenn möglich, mit APM. Diesen Rechner anhalten. Dieser Befehl funktioniert nicht in allen Firmware-Implementationen. N Bytes in Ausgabedatei verarbeiten Hallo Welt Hercules  KENNUNG ABBILD1 [ABBILD2 ...] EINHÄNGEPUNKT ABBILDPFAD BEFEHLE In DATEI gespeicherten ZFS-Wrapping-Schlüssel importieren Inkorrektes virtuelles Gerät: kein Typ verfügbar Ein Modul einfügen. GRUB auf Ihrem Laufwerk installieren. installation beendet. Keine Fehler aufgetreten. Ungültige Rückreferenz Ungültiger Zeichenklassenname Ungültiges Sortierzeichen Ungültiger Befehl %s.
 Ungültiger Inhalt von \{\} Ungültiges Gerät »%s«.
 Ungültige Plattenanzahl.
 Ungültiger vorhergehender regulärer Ausdruck Ungültiges Bereichsende Ungültiger regulärer Ausdruck Routing der Benutzerkonfiguration aufrufen. K KERNEL ARGUMENTE TASTE Tastenzuordnung für den Schnellstart dieses Eintrags. KiB KiB/s Virtuelles Gerät durchsuchen (Datei oder Laufwerk) Veralteter Parameter »%s« wird nicht mehr unterstützt. Legende: Maske/Position=Rot/Grün/Blau/Reserviert Länge der erzeugten Prüfsumme Länge von Salt DNS-Server auflisten PCI-Geräte auflisten. Alle Dateien auflisten. Verfügbare Grafikmodi auflisten. Falls Auflösung angegeben ist, nur Modi dieser Auflösung anzeigen. Geräte und Dateien auflisten. Geräte oder Dateien auflisten. Geräte auflisten. Dateien in PFAD auflisten. Von Firmware bereitgestellte Speicherzuordnung auflisten. Liste der unterstützten Videomodi: Liste der Benutzer, die diesen Eintrag booten dürfen. Eingabeterminal listen oder wählen. Ausgabeterminal listen oder wählen. Aktuelle Variablen auflisten. Die geladenen Schriften auflisten. Variablen aus Blockdatei der Umgebung auflisten. 64-bit XNU-Abbild laden. BIOS-Sicherung laden. FreeBSD-Umgebung laden. FreeBSD-Kernelmodul laden (ELF). FreeBSD-Kernelmodul laden. FreeDOS-kernel.sys laden. Linux laden. NTLDR oder BootMGR laden. NetBSD-Kernelmodul laden (ELF). NetBSD-Kernelmodul laden. Plan9-Kernel laden. XNU-Erweiterungsordner laden. XNU-Erweiterungspaket laden. XNU-Erweiterung laden. XNU-Abbild laden. XNU-Ramdisk laden. Wird im Betriebssystem als md0 angezeigt. Inhalt von »device-properties« laden Ein PXE-Abbild laden. Eine Tastaturbelegung laden. Einen Mlutiboot2-Kernel laden. Ein Multiboot2-Modul laden. Einen Multiboot-Kernel laden. Ein Multiboot-Modul laden. Begrüßungsbildschirm für XNU laden. Ein gespeichertes XNU-Abbild laden. EFI-Emulator laden und initialisieren. Einen anderen Bootloader laden. Eine andere Konfigurationsdatei laden, aber nur deren Menüeinträge. Eine andere Konfigurationsdatei laden, ohne den Kontext zu ändern. Es werden nur Menüeinträge geladen. Eine andere Konfigurationsdatei laden, ohne den Kontext zu ändern. Eine andere Konfigurationsdatei laden. Weiteres Coreboot-Payload laden Hintergrundbild für aktives Terminal laden. Host-ACPI-Tabellen und durch Argumente angegebene Tabellen laden. initrd laden. Ramdisk von kOpenBSD laden. Kernel von FreeBSD laden. Kernel von NetBSD laden. Kernel von OpenBSD laden. Nur Tabellen spezifiziert durch kommagetrennte Liste laden. Gleiche Datei mehrfach laden. Variablen aus Blockdatei der Umgebung laden. ZFS-Schlüssel laden. Geladene Schriften GNU Mach wird geladen … Linux %s wird geladen … Xen %s wird geladen … Initiale Ramdisk wird geladen … FreeBSD-Kernel %s wird geladen … Illumos-Kernel wird geladen … Hurd wird geladen … M MAC-Überprüfung ist gescheitert MENÜEINTRAG ist eine Zahl, ein Titel oder Bezeichner eines Menüeintrags. MODUL MODULE Richten Sie Supportanfragen zu Xorriso an <bug-xorriso@gnu.org>. Bootfähiges GRUB-Abbild für CD-ROM, Festplatte, USB-Stick und Diskette erstellen. Eine GRUB-Tastaturlayoutdatei erstellen. Ein bootfähiges GRUB-Abbild erstellen Ein virtuelles Gerät aus einer Datei erstellen. Partition als aktiv markieren BIOS-Laufwerkszuordnungen verwalten. Erforderliche oder optionale Argumente für lange Optionen sind ebenso erforderlich bzw. optional für die entsprechenden Kurzoptionen. PCI-Geräte bearbeiten. Von BEFEHL benötigte Zeit messen Speicher ausgeschöpft Speichertyp: DDR2. Speichertyp: Unbekannt. Bezeichner des Menüeintrags. Kein Menüeintrag angegeben. Typ des Menüeintrags. MiB MiB/s Minimale BASH-ähnliche Zeilenbearbeitung wird unterstützt. Für das erste Wort listet TAB die möglichen Befehlsvervollständigungen auf. Ansonsten werden mit TAB die möglichen Geräte-oder Dateivervollständigungen angezeigt. %s Minimale Emacs-ähnliche Bildschirmbearbeitung wird unterstützt. TAB listet Vervollständigungen auf. Drücken Sie Strg-X oder F10 zum Booten, Strg-C oder F2 für eine Befehlszeile oder ESC, um abzubrechen und zum GRUB-Menü zurückzukehren. Argumente fehlen
 Eingabedatei fehlt
 Montag Schwarzweiß  Mehr als ein Installationsgerät? Mehr als ein Menüeintrag? Ein verschlüsseltes Gerät einhängen. Alle Datenträger einhängen, für die das »boot«-Flag gesetzt ist. Alles einhängen. Nach UUID einhängen. Verschlüsselte Geräte einhängen. NAME NAME [VARIABLE] [HINTWEISE] ZAHL ANZAHL_DER_SEKUNDEN Name	Referenzzähler	Abhängigkeiten
 Native Festplattentreiber werden verwendet. Nutzung der Firmware-Schnittstelle wird verweigert. Netzwerkprotokolle: Neuer MBR wurde nach »%s« geschrieben
 Kein CS5536 gefunden Kein FPSWA gefunden Keine Statistiken für Boot-Zeiten verfügbar
 Kein Befehl angegeben.
 Kein Gerät angegeben.
 Keine Statistiken zum Paket-Zwischenspeicher verfügbar
 Es wurden keine Laufwerke neu zugeordnet Kein bekanntes Dateisystem erkannt Keine Übereinstimmung Kein Pfad angegeben.
 Kein Pfad oder Gerät wurde angegeben.
 Kein vorhergehender regulärer Ausdruck Kein Baum virtueller Geräte verfügbar Non-chain 4  Zu wenige Parameter für den Befehl.
 Bitte verbinden Sie nun einen entfernten Debugger. Anzahl vor PBKDF2-Durchläufe OS Laufwerk #Num ------> GRUB/BIOS-Gerät Fehler beim Öffnen der OS-Datei %s: %s Option -- wechselt in den nativen xorriso-Befehlsmodus. Optionen: Suche außerhalb des Bereichs: %d
 Ersetzung außerhalb des Bereichs (%d, %d)
 Die geschätzte Zuordnung von Plan9-Geräten überschreiben. P PARTITION BEFEHLE PFAD PBKDF2-Prüfsumme Ihres Passworts ist %s
 PORT PORT WERT [MASKE] Alte Konfiguration im neuen Kontext laden Alte Konfiguration im neuen Kontext laden, nur Menüeinträge Alte Konfiguration im gleichen Kontext laden Alte Konfiguration im gleichen Kontext laden, nur Menüeinträge Teil-Nummer: %s.
 Partition %d ist nun aktiv. 
 Partition %s: Partitionstyp »%s« unterstützt keine Einbettungen Pfad: %s
 Pfad: nicht verfügbar BEFEHLE auf Partition ausführen.
Rufen Sie »parttool PARTITION help« auf, um eine
Liste der verfügbaren Befehle zu erhalten. Eine DNS-Suche ausführen Eine IPV6-Autokonfiguration ausführen Sowohl direkte als auch umgekehrte Zuordnungen ausführen. PiB PiB/s Planar  Einen Klang abspielen. Bitte verwenden Sie nicht den alten Titel »%s« für GRUB_DEFAULT, verwenden Sie »%s« (für Versionen vor 2.00) oder »%s« (für 2.00 oder neuer) Pool-GUID: %016llx
 Pool-GUID: nicht verfügbar Pool-Name: %s
 Pool-Name: nicht verfügbar Pool-Status: aktiv Pool-Status: zerstört Pool-Status: exportiert Pool-Status: ARC-Gerät, Level 2 Pool-Status: potenziell aktiv Pool-Status: für Hotspare reserviert Pool-Status: nicht verfügbar Pool-Status: nicht initialisiert Mögliche Argumente sind: Mögliche Befehle sind: Mögliche Geräte sind: Mögliche Dateien sind: Mögliche Partitionen sind: Mögliche Dinge sind: Vorzeitiges Ende des regulären Ausdrucks Beliebige Taste drücken, um fortzusetzen … Drücken Sie eine beliebige Taste, um xnu zu starten »Enter« zum Booten des markierten Betriebssystems, »e« zum Bearbeiten der Befehle vor dem Booten oder »c« für eine Befehlszeile. »Enter« zum Booten des markierten Betriebssystems, »e« zum Bearbeiten der Befehle vor dem Booten oder »c« für eine Befehlszeile. Mit »ESC« kehren Sie zum vorherigen Menü zurück. Speicher-Informationen anzeigen. ZFS-Info zu GERÄT ausgeben. ZFS-BOOTFSOBJ ausgeben oder als VARIABLE setzen Eine Blockliste ausgeben. Blockargument ausgeben und ausführen. Backtrace ausgeben. Identität und Einstellungen des Laufwerks ausgeben. Größenwerte in menschenlesbarem Format ausgeben. Geräteinformationen für einen angegebenen Pfad ermitteln (oder Gerät, falls die Option -d angegeben ist). RAM enthält Coreboot-Tabellen RAM enthält Firmware-Code RAM-Slotnummer %d
 REGEXP ZEICHENKETTE ROM-Abbild ist vorhanden. 16-bit-Wert aus ADDR lesen. 16-bit-Wert von PORT lesen. 32-bit-Wert aus ADDR lesen. 32-bit-Wert von PORT lesen. 8-bit-Wert aus ADDR lesen. 8-bit-Wert von PORT lesen. Nur Bytes der Länge LENGTH lesen. Neu starten ist gescheitert Den Rechner neu starten. Passwort erneut eingeben: Register %x von %x:%02x.%x ist %x
 Regulärer Ausdruck ist zu groß Einen DNS-Server entfernen Ein Modul entfernen. Eine Umgebungsvariable löschen. Alle Speichersegmente im angegebenen Bereich löschen. Berichten Sie Fehler an %s.
 Melden Sie Fehler an <bug-grub@gnu.org>. Serielles Terminal wurde angefordert, aber GRUB_SERIAL_COMMAND wurde nicht angegeben. Standardparameter werden verwendet. Alle Zuordnungen auf Standardwerte zurücksetzen. Info zum Gerät holen. Aus einer Funktion zurückkehren. Zum IEEE1275-Prompt zurückkehren. Rufen Sie »gdb %s %d« auf und setzen Sie ARGS.HOLD auf Null.
 Geben Sie »go« ein, um GRUB fortzusetzen. SEK KURZNAME KURZNAME KARDE ADRESSE [HW-ADRESSE] KURZNAME NETZ [SCHNITTSTELLE| gw GATEWAY] GRÖßE QUELLE|-u UUID|-a|-b ZEICHENKETTE Samstag Gelesenen Wert in Variable VARNAME speichern. Variablen in die Blockdatei speichern. »Hallo Welt« ausgeben. Anhand von UUIDs nach Geräten suchen. Falls VARIABLE angegeben wird, dann wird das erste gefundene Gerät zum Setzen der Variable verwendet. Geräte nach Datei durchsuchen. Geräte nach Dateisystem-UUID durchsuchen. Geräte nach Dateisystembezeichnung durchsuchen. Anhand von Dateien, Dateisystembezeichnungen oder Dateisystem-UUIDs nach Geräten suchen. Falls --set angegeben wird, dann wird das erste gefundene Gerät zum Setzen der Variable verwendet. Falls keine Variable angegeben wird, dann wird »root« verwendet Anhand von Dateien nach Geräten suchen. Falls VARIABLE angegeben wird, dann wird das erste gefundene Gerät zum Setzen der Variable verwendet. Anhand von Bezeichnungen nach Geräten suchen. Falls VARIABLE angegeben wird, dann wird das erste gefundene Gerät zum Setzen der Variable verwendet. Der Sektor %llu wird bereits vom Raid-Controller »%s« verwendet und wird daher übergangen. Bitte fragen Sie den Hersteller, ob es möglich ist, keine Daten in der MBR-Lücke zu speichern. Der Sektor %llu wird bereits vom Programm »%s« verwendet und wird daher übergangen. Diese Software kann in Zukunft Start- oder andere Probleme hervorrufen. Bitte fragen Sie dessen Autoren, ob es möglich ist, keine Daten im Boot-Bereich zu speichern. Gerät nach dessen Position auf dem Bus auswählen. Gerät nach Anbieter und Gerätekennungen auswählen. Erweiterte Energieverwaltung setzen
(1=niedrig, ..., 254=hoch, 255=aus). Automatische Klangverwaltung festlegen
(0=aus, 128=leise, ..., 254=schnell). OEMID von RSDP, XSDT und RSDT festlegen. OEMTABLE-ID von RSDP, XSDT and RSDT festlegen. OEMTABLE-Revision von RSDP, XSDT und RSDT festlegen. »hidden«-Flag im Partitionstyp setzen Eine Variable auf den Rückgabewert setzen. Eine Variable auf das erste gefundene Gerät setzen. Eine Umgebungsvariable festlegen. Hintergrundfarbe für aktives Terminal festlegen. Ersteller-Feld von RSDP, XSDT und RSDT festlegen. Ersteller-Revision von RSDP, XSDT und RSDT festlegen. Debug-Umgebungsvariable setzen. Laufwerk in den Schlafmodus versetzen. Laufwerk in den Standby-Modus versetzen. Positionsparameter festlegen. Root-Gerät festlegen. Wartezeit bis Standby festlegen
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). terminfo-Typ von TERM auf TYP setzen.
 Den Standard-Booteintrag für GRUB festlegen (nur für den nächsten Bootvorgang). Den voreingestellten Booteintrag für GRUB festlegen. Adresse des seriellen Ports festlegen. Parität des seriellen Ports festlegen. Geschwindigkeit des seriellen Ports festlegen. Stop-Bits des seriellen Ports festlegen. Wortlänge des seriellen Ports festlegen. Einheit des seriellen Ports festlegen. Abbilder zum Booten von GERÄT einrichten.

Sie sollten dieses Programm normalerweise nicht direkt ausführen.
Verwenden Sie stattdessen grub-install. Benutzerpasswort festlegen (PBKDF2).  Benutzerpasswort (Klartext) festlegen. Nicht empfohlen, da unsicher. Variable durch Benutzereingabe setzen. Variablen setzen. Partitionstyp wird auf 0x%x gesetzt
 Positionsparameter anpassen. ACPI-Informationen anzeigen. APM-Informationen anzeigen. Eine Hilfemeldung anzeigen. Lange Liste mit ausführlicheren Informationen anzeigen. Den Inhalt der DATEI hexadezimal anzeigen. Geladene Module anzeigen. Inhalt des Speichers anzeigen. Roh-Inhalt des  ATA IDENTIFY-Sektors anzeigen. Roh-Inhalt einer Datei oder des Speichers anzeigen. Inhalt einer Datei anzeigen. Alle aktuellen Zuordnungen anzeigen. Diese Meldung anzeigen. Nur Version-1-Tabellen darstellen. Nur Version-2- und Version-3-Tabellen anzeigen. Herunterfahren ist gescheitert »initrd«-Befehl wie in grub-legacy simulieren »kernel«-Befehl wie in grub-legacy simulieren »modulenounzip«-Befehl wie in grub-legacy simulieren »password«-Befehl wie in grub-legacy simulieren »password«-Befehl von grub-legacy im Menüeintragsmodus simulieren N Bytes der Ausgabedatei überspringen. Offset-Bytes am Beginn der Datei überspringen. Slot %d geöffnet
 Hurd-Bestandteile wurden gefunden, die aber zum Booten nicht ausreichen. Dateiname angeben. Zu verwendenden Hash angeben. Eine oder mehrere zu ladende Schriftdateien angeben. Größe für jeden Lesevorgang angeben Die Anzahl der Eingabedateien angeben. Geschwindigkeit: %s 
 GDB-Stub auf dem angegebenen Port starten GDB-Stub stoppen Entsprechende Komponenten-NUMMER in VARNAME speichern. Erfolg Sonntag Normale Ausgaben unterdrücken (Warnungen verbleiben) Syntaxfehler in Zeile %u
 In der erzeugten GRUB-Konfigurationsdatei wurden
Syntaxfehler entdeckt. Stellen Sie sicher, das die Dateien
/etc/default/grub und /etc/grub.d/* fehlerfrei sind oder
erstellen Sie einen Fehlerbericht mit %s als Anhang. Ein-/Ausgabebereich des Systemverwaltungsbus-Controllers ist bei 0x%x
 T ZIEL Zielformat wurde nicht angegeben (verwenden Sie die Option -0). Terminalgeometrie wurde festgelegt. Terminal ist nur ASCII [Vorgabe]. Terminal ist logisches UTF-8. Terminal ist visuelles UTF-8. USB-Unterstützung überprüfen. Bit bei BYTE:BIT im CMOS testen. Dateilesegeschwindigkeit testen. Prüfen, ob REGEXP auf ZEICHENKETTE passt. Das Video-Subsystem im Modus BxH überprüfen. Das Video-Subsystem überprüfen. Nur Text Die Dateien sind identisch.
 Der hervorgehobene Eintrag wird automatisch in %ds ausgeführt. Dieser Eintrag kann von jedem Benutzer gebootet werden. Donnerstag TiB TiB/s Werkzeug zum Bearbeiten einer Umgebungs-Blockdatei. Flash-Gesamtgröße: %d B.
 Angehängter Backslash 64-bit-UUID in ein von XNU verarbeitbares Format umwandeln. Falls -l angegeben ist, bitte Kleinschreibung beibehalten (wie von blkid) Einen Systemdateinamen in einen für GRUB umwandeln. Übersetzt die Zeichenkette anhand den aktuellen Einstellungen. Rufen Sie »%s --help« oder »%s --usage« auf, um weitere Informationen zu erhalten.
 Dienstag BENUTZER PASSWORT BENUTZER PBKDF2_PASSWORT BENUTZERNAME[,BENUTZERNAME] UTF-8 Weiterleitung konnte nicht angelegt werden: %s Ihre Plattform konnte nicht erkannt werden. Verwenden Sie --target. Fork konnte nicht angelegt werden: %s Datenstrom von %s konnte nicht geöffnet werden: %s Pool-Status konnte nicht ermittelt werden Daten entpacken. Datei entpacken, bevor Prüfsumme ermittelt wird. Unbekannter Adresstyp %d
 Unbekannter Befehl »%s«.
 Unbekanntes Kompressionsformat %s Unbekannte Kodierung Unbekanntes zusätzliches Argument »%s«. Unbekanntes gsub-Schriftmerkmal 0x%x (%s)
 Ungültiger Code für Tastaturscan 0x%02x
 Ungültiger Bezeichner für Tastaturscan %s
 Unbekannter Systemfehler Unbekannter Videomodus Typ des virtuellen Gerätes ist unbekannt: %s
 EFI-Umgebung entladen. Kein Gegenstück für ( oder \( Nicht übereinstimmende ) oder \) Kein Gegenstück für [ oder [^ Kein Gegenstück für \{ Unerkannte Option »%s«\n Pool-Status nicht erkannt Nicht unterstützter Adresstyp %d
 Nicht unterstützte Coverage-Spezifikation: %d
 Nicht unterstützter Hardware-Adresstyp %d
 Bildformat nicht unterstützt Nicht unterstütztes Ersetzungs-Flag: 0x%x
 Nicht unterstützte Ersetzungsangabe: %d
 Nicht unterstützter Ersetzungstyp: %d
 Aufruf: Aufruf: %s -o AUSGABE CKBMAP_ARGUMENTE...\n Aufruf: %s GERÄT
 Aufruf: %s [EINGABEDATEI [AUSGABEDATEI]]
 Aufruf: %s [OPTION] MENÜEINTRAG\n Aufruf: %s [OPTION]\n CDROM als Root-Gerät verwenden. Entfernte GDB-Fehlerdiagnose anstatt DDB verwenden. ZEICHENKETTE als Inhalt des Menüeintrags verwenden. Einkompiliertes Root-Gerät verwenden. Serielle Konsole verwenden. Verwenden Sie die Tasten %C und %C zum Markieren eines Eintrags. VARIABLE SCHNITTSTELLE ZAHL BESCHREIBUNG VARNAME Ausführlicher Countdown. Angehängte Signatur überprüfen. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtuelles Gerät ist nicht verfügbar Virtuelles Gerät ist gescheitert Virtuelles Gerät ist offline Virtuelles Gerät ist online Virtuelles Gerät wurde entfernt WARNUNG: Im Betriebssystem wird keine Konsole verfügbar sein WARNUNG: Es wurde keine plattformspezifische Installation durchgeführt WARNUNG: Nicht unterstützte Parameter für Schrifteigenschaften: %x
 BREITExHÖHE. Die angegebene Anzahl an Sekunden warten. Nach jeder ausgegebenen Zeile auf Tastendruck warten. Warnung: Warnung: ungültige Hintergrundfarbe »%s«
 Warnung: ungültige Vordergrundfarbe »%s«
 Warnung: Syntaxfehler (fehlender /) in »%s«
 Mittwoch Windows NT/2000/XP (Lader) Windows Vista/7 (Lader) 16-bit-Wert nach ADDR schreiben. 16-bit-Wert nach PORT schreiben. 32-bit-Wert nach ADDR schreiben. 32-bit-Wert nach PORT schreiben. 8-bit-Wert nach ADDR schreiben. 8-bit-Wert nach PORT schreiben. Geschriebene SPD-Bytes: %d B.
 Xen-Hypervisor, Version %s YUV  Sie müssen mindestens einen Befehl angeben.
 »SystemPartition« und »OSLoader« müssen manuell eingerichtet werden. Ihr Einbettungsbereich ist ungewöhnlich klein.  core.img würde nicht hineinpassen. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] GERÄT [--md5] PASSWORT [DATEI] [--no-mem-option] [--type=TYP] DATEI [ARG ...] [-1|-2] [--exclude=TABELLE1,TABELLE2|--load-only=TABELLE1,TABELLE2] DATEI1 [DATEI2] [...] [-c DATEI [-p PRÄFIX]] [DATEI1 [DATEI2 ...]] [-d] GERÄTENAME DATEI. [-e|-n] ZEICHENKETTE [-f DATEI] [-f DATEI] Variablenname [...] [-f|-l|-u|-s|-n] [--hint HINWEIS [--hint HINT] ...] NAME [-h|-p|-r] [DATEI] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [DATEI …] [-m (stretch|normal)] DATEI [-s POSITION] [-d GERÄT] [-s POSITION] [-d GERÄT] [-v VAR] REGISTER[=WERT[:MASKE]] [-s GRÖßE] DATEINAME [ADR|comUNIT][,GESCHW] [ARG] KARTE [HW-ADRESSE] [KARTE] [UMGVAR=WERT] [ENVVAR] [KÜRZEL1] [KÜRZEL2] ... [MODUL1 MODUL2 …] [ZAHL:]VARNAME [ZAHL] [OPTIONEN…] [OPTIONEN] [OPTIONEN] DATENTRÄGER [OPTIONEN] DATEI_ODER_GERÄT [OPTIONEN] SCHRIFTDATEIEN [OPTION]… [MODULE] [OPTIONEN]… [PFAD|GERÄT] [OPTIONEN] [PFAD] [MUSTER ...] [BENUTZERLISTE] [WERT]... [BxH[xT]] [BxH] [[-a|-u|-v] [-g BxH] TERM [TYP]] [[Jahr-]Monat-Tag] [Stunde:Minute[:Sekunde]] [bus]:[slot][.func] [Anbieter]:[Gerät] »cryptomount«-Befehl ist fehlgeschlagen: %s »loopback«-Befehl ist fehlgeschlagen: %s »obppath« wurde in den Elternordnern von %s nicht gefunden, keine IEEE1275-Namensermittlung Ein Argument wurde »%s« zugeordnet, obwohl es kein Argument erwartet Zugriff verweigert NOTE-Segment für CHRP IEEE1275 hinzufügen Adresse Adresse nicht gefunden Versuch, außerhalb der Platte »%s« zu lesen und zu schreiben Versuch, außerhalb der Partition zu lesen oder zu schreiben Versuch, hinter dem Ende der Datei zu lesen Versuch, außerhalb der Datei zu suchen Es wird versucht, das Core-Abbild »%s« aus GRUB zu lesen Es wird versucht, das Core-Abbild »%s« erneut aus GRUB zu lesen verfügbarer RAM Verfügbare Formate: Falsche Signatur base_addr = 0x%llx, Länge = 0x%llx, %s
 base_addr = 0x%llx, Länge = 0x%llx, Typ = 0x%x
 Bitmap-Datei »%s« besitzt ein nicht unterstütztes Format blocklist DATEI Blocklisten sind ungültig Blockgröße ist nicht durch 512 teilbar 0 Schleifen können nicht unterbrochen werden Dateisystemtyp auf %s konnte nicht ermittelt werden Befehl »%s« konnte nicht gefunden werden Verschlüsselter Datenträger »%s« konnte nicht eingebunden werden: %s »%s« kann nicht geöffnet werden: %s %s kann nicht geöffnet werden, Index %d: Fehler %d Blocklisten konnten nicht ermittelt werden Blocklisten konnten nicht ermittelt werden: %s Kernel-Abbild kann nicht komprimiert werden Für %s konnte kein GRUB-Laufwerk gefunden werden. Überprüfen Sie Ihre device.map Gerät für %s konnte nicht gefunden werden (ist /dev eingehängt?) Übersetzer-Befehlszeilenpfad für Pfad »%s« konnte nicht ermittelt werden: %s OS-Datei »%s« kann nicht geöffnet werden: %s »%s« kann nicht geöffnet werden: %s »%s« kann nicht korrekt gelesen werden »%s« ist nicht lesbar: %s Datei %s kann nicht in %s umbenannt werden Originalordner kann nicht wiederhergestellt werden »%s« kann nicht durchsucht werden: %s Aufruf von stat für »%s« nicht möglich: %s Auf CD-ROM kann nicht geschrieben werden Auf »%s« kann nicht geschrieben werden: %s Schreiben in die Standardausgabe fehlgeschlagen: %s Karte nicht gefunden cat DATEI Prüfsummenvergleich ist gescheitert Zu verwendende Kompression für Kernel-Abbild auswählen cmp DATEI LOKAL comUNIT[,GESCHW] Vergleichsfehler bei %llu Verbindung verweigert Verbindungsabbruch wegen Zeitüberschreitung In fette Schrift umwandeln Core-Abbild ist zu groß (0x%x > 0x%x) Version von core.img passt nicht %s konnte nicht automatisch konfiguriert werden Teilgerät eines über mehrere Geräte verteilten Dateisystems konnte nicht gefunden werden Geli-Nutzer konnte nicht gefunden werden »part«-Teil von »geom« konnte nicht geöffnet werden »geom« konnte nicht geöffnet werden! ELI-Metadaten konnten nicht gelesen werden UUID konnte nicht ermittelt werden Geli-UUID konnte nicht ermittelt werden Zufallsdaten für Salt konnten nicht geholt werden Netzwerkpaket konnte nicht gesendet werden cp DATEI LOKAL crc DATEI Krytografiefehler Nummer %d cygwin_conv_path() gescheitert Gerätezuordnung löschen, falls bereits vorhanden Ziel ist nicht erreichbar Geräteanzahl übersteigt die Grenzen Hinting deaktivieren Laufwerk »%s« wurde nicht gefunden. Platte existiert nicht, ersatzweise wird Partition des Geräts %s verwendet Zu verwendendes Platten-Modul (biosdisk oder native). Diese Option ist nur für BIOS-Ziele verfügbar. Die Größe von diskboot.img muss %u Bytes betragen GERÄT nicht auf Dateisysteme überprüfen Domainname-Komponente ist zu lang LED-Status nicht aktualisieren erledigt DATEI als Anfangskonfiguration einbetten DATEI als öffentlichen Schlüssel zur Signaturüberprüfung einbetten Einbettung ist nicht möglich, jedoch für die Installation mit RAID und LVM erforderlich Einbettung ist nicht möglich, jedoch für die Installation auf mehreren Laufwerken erforderlich Enter: Booten, »e«: Optionen, »c«: Befehlszeile Environment-Block ist zu klein Fehler: %s.
 GRUB-Abbilder wurden im Ordner ORDNER/%s anstelle von %s erwartet Kanonischer Pfad von »%s« konnte nicht ermittelt werden Lesen des Sektors 0x%llx von »%s« ist fehlgeschlagen Passwort konnte nicht gelesen werden Schreiben des Sektors 0x%llx nach »%s« ist fehlgeschlagen Falsch Fehlerhafter RAM (BadRAM) Datei »%s« nicht gefunden Dateiname wurde erwartet Dateiname oder Tempo und Noten erwartet Dateisystem »%s« unterstützt keine Labels Dateisystem »%s« unterstützt keine Blocklisten Firmware-Abbild ist zu groß Automatisches Hinting erzwingen Vier Argumente werden erwartet fwstart.img entspricht nicht der bekanntermaßen funktionierenden Version. Verwenden Sie dies auf eigene Gefahr Ein Abbild im FORMAT erzeugen Eine kurze Hilfemeldung ausgeben Diese Hilfe anzeigen Das angegebene Argument ist ein Systemgerät, kein Pfad grub-mkimage wurde ohne XZ-unterstützung kompiliert grub> für SEK Sekunden hängenbleiben (Voreinst.: 3600) hex DATEI Bitmap-Strikes beim Laden ignorieren Ungültige Angabe der Terminalgeometrie GRUB-Abbilder in ORDNER/%s anstelle von %s installieren Trotzdem installieren, auch wenn Probleme auftreten Ungültiges PBKDF2-Passwort Ungültiges ELF-Magic (architekturabhängig) Ungültiges ELF-Magic (architekturunabhängig) Ungültige Blockgröße Ungültige Angabe der Farbe »%s« Ungültiger Environment-Block Ungültiger Dateiname »%s« Ungültiger Schriftbereich Ungültiges Zeilenformat: %s Ungültiger Parameter %s Ungültiger Sprungwert %lld Ungültiger Variablenname »%s« Ungültige Angabe »%s« des Grafikmodus GET_ARRAY_INFO-Fehler (ioctl): %s GET_DISK_INFO-Fehler (ioctl): %s RAID_VERSION-Fehler (ioctl): %s Kernel-Abbild ist zu groß (0x%x > 0x%x) Netzwerkadressen auflisten Netzwerkkarten auflisten Netzwerkrouten auflisten ls PFAD lzop-Datei ist beschädigt Das Laufwerk auch als Diskette bootfähig machen (Vorgabe für fdX-Geräte). Kann mit einigen BIOS-Varianten scheitern. Symbol »%c« fehlt Obligatorische Option für »%s« fehlt Modul »%s« ist nicht geladen Modul ist nicht geladen Name Abbild und Einhängepunkt werden benötigt Kein APM gefunden Keine DHCP-Informationen gefunden Keine DHCP-Option %d gefunden Keine DHCP-Optionen gefunden Keine DNS-Angabe gefunden Kein DNS-Antwort empfangen Es wurden keine DNS-Server konfiguriert Kanonischer Pfadname enthält keinen »/« Kein Befehl angegeben Kein Schlüssel verfügbar Keine Netzwerkkarte gefunden Kein Server angegeben Keine solche Partition Kein passender Videomodus gefunden Keine Symboltabelle Kein Terminal angegeben Kein Terminator im Core-Abbild Nicht an Sektoren ausgerichtete Daten wurden in der Core-Datei gefunden Ist kein Ordner Keine primäre Partition Keine reguläre Datei außerhalb des Bereichs der Funktion Ein Argument wurde erwartet Andere Software nutzt den Einbettungsbereich, wodurch nicht genug Platz für core.img ist. Solche Software versucht häufig, Daten zu speichern, um sie unauffindbar zu machen. Wir empfehlen Ihnen, dies zu untersuchen Hauptspeicher erschöpft Ein erzeugtes Abbild in DATEI ausgeben [Vorgabe=stdout] Ausgabedatei muss angegeben werden Erstellte Konfiguration in DATEI ausgeben [Vorgabe=stdout] Überlauf wurde erkannt Die Passwörter stimmen nicht überein Eine bootp-Autokonfiguration ausführen Physischer Datenträger %s wurde nicht gefunden In MODULE angegebene Module vorladen Vorzeitiges Ende der Datei Unerwartetes Ende der Datei %s CapsLock-Taste drücken Einfg-Taste drücken NumLock-Taste drücken ScrollLock-Taste drücken SysRq-Taste drücken Linke Alt-Taste drücken Linke Strg-Taste drücken Linke Umschalttaste drücken Rechte Alt-Taste drücken Rechte Strg-Taste drücken Rechte Umschalttaste drücken Programmversion ausgeben Versionsinformationen ausgeben und beenden Diese Meldung anzeigen und beenden Ausführliche Meldungen ausgeben. Öffentlicher Schlüssel %08x wurde nicht gefunden Lesefehler bei %llu: %s Text aus DATEI lesen. Relativer Pfad zum Unterordner auf dem Netzwerkserver Neuzuweisung 0x%x ist noch nicht implementiert reservierter RAM DHCP-Option holen und in VARIABLE speichern. Falls VARIABLE »-« ist, den Wert ausgeben. Wurzelordner auf dem TFTP-Server Routenschleife entdeckt ROM-Abbilder in ORDNER speichern [optional] Ausgabe in DATEI speichern [erforderlich] Schriftart-Index setzen Serieller Port »%s« wurde nicht gefunden set [NAME=WERT ...] Feststelltasten-Modus festlegen Schriftauffüllung oben einstellen Schriftauffüllung unten einstellen Schriftfamilie festlegen Schriftbereich festlegen Schriftgröße festlegen Name der Eingabedatei für 32-bit festlegen. Name der Eingabedatei für 64-bit festlegen. Name der Eingabedatei festlegen. Vorgabe ist STDIN Einfügen-Modus festlegen Numlock-Modus festlegen Name der Ausgabedatei festlegen. Vorgabe ist STDOUT Pause-Modus festlegen Präfix-Ordner festlegen [Vorgabe=%s] Scrolllock-Modus festlegen Programmname festlegen Größe stretch(=ZOOM)|normal(=NORMAL) Symbol »%s« nicht gefunden temporär Terminal %s wurde nicht gefunden oder wird von terminfo nicht berücksichtigt Terminal »%s« wurde nicht gefunden Das Argument »%s« benötigt eine Ganzzahl Der device.map-Eintrag »%s« ist ungültig, wird ignoriert. Bitte korrigieren oder löschen Sie Ihre device.map Der Laufwerksname »%s« in device.map ist inkorrekt. %s wird stattdessen verwendet. Bitte verwenden Sie die Form [hfc]d[0-9]* (z.B. »hd0« oder »cd«) Der erste Sektor der Core-Datei ist nicht sektor-ausgerichtet Das Installationsgerät ist ein Wechseldatenträger. Diese Option ist nur bei EFI verfügbar. Der Partitionstyp 0x%x ist ungültig Die Sektoren der Core-Datei sind zu stark fragmentiert Die Größe von »%s« ist nicht %u »%s« ist zu groß »%s« ist zu klein Diese ELF-Datei ist vom falschen Typ Diese GPT-Partitionsbezeichnung hat keine BIOS-Boot-Partition, Einbettung würde unmöglich sein Dieses LDM hat keine Einbettungspartition, Einbettung würde unmöglich sein Die MSDOS-Partitionsbezeichnung hat keinen Freiraum nach dem MBR, Einbettung würde unmöglich sein Drei Argumente erwartet Zeitüberschreitung beim Öffnen von »%s« Zeitüberschreitung beim Lesen von »%s« Zeitüberschreitung: Hardware-Adresse konnte nicht aufgelöst werden Zu tief verschachtelte symbolische Verknüpfungen Übersetzer »%s« für Pfad »%s« hat verschiedene Wörter, die keine Optionen sind, mindestens »%s« und »%s« Übersetzer »%s« für Pfad »%s« wurde nur Optionen übergeben, device-Teil konnte nicht gefunden werden Übersetzer-Befehlszeilenpfad für Pfad »%s« ist leer Zwei Argumente wurden erwartet Typ Es kann kein Dateisystem in %s erkannt werden. Sicherheitsüberprüfung kann nicht ausgeführt werden Gerätegröße ist unausgerichtet Unerwartetes Dateiende Unbekanntes Argument »%s« Unbekannte Kompression %d
 Unbekannter Gerätetyp %s
 Unbekanntes Dateisystem Ungültiger Typ eines RAID-Geräts »%s« Unbekannter regexp-Fehler Unbekanntes Zielformat %s
 Unbekannter Terminfo-Typ »%s« Nicht erkannte Formatspezifikation für DHCP-Option »%s« Nicht erkannte Netzwerkadresse »%s« Netzwerk-Schnittstelle »%s« wurde nicht erkannt Zahl nicht erkannt Nicht auflösbare Adresse %s unset [NAME ...] Nicht unterstützter HTTP-Fehler %d: %s Nicht unterstützte HTTP-Antwort Nicht unterstützte RAID-Version: %d.%d Nicht unterstütztes gzip-Format Parität des seriellen Ports wird nicht unterstützt Geschwindigkeit des seriellen Ports wird nicht unterstützt Anzahl der Stop-Bits des seriellen Ports wird nicht unterstützt Wortlänge des seriellen Ports wird nicht unterstützt FARBE für Hintergrund verwenden FARBE für Text verwenden ORDNER als Wurzel der EFI-Systempartition verwenden. DATEI als Schrift verwenden (PF2). DATEI als Boot-Abbild verwenden [Vorgabe=%s] DATEI als Kern-Abbild verwenden [Vorgabe=%s] DATEI als Gerätezuordnung verwenden [Vorgabe=%s] DATEI als xorriso benutzen [optional] GRUB-Dateien im Ordner ORDN verwenden [Vorgabe=%s] ZEICHENKETTE als Produktname verwenden ZEICHENKETTE als Produktversion verwenden ID-Datei auch dann verwenden, wenn eine UUID verfügbar ist Abbilder und Module in ORDNER verwenden [Vorgabe=%s/@platform@] Variable »%s« ist nicht gesetzt Visuelles UTF-8 Warten, bis ein Debugger einklinkt mit Blocklisten wird nicht fortgesetzt Falsches ELI-Magic oder -Version xnu_uuid GERÄT xz-Datei ist beschädigt oder Blockoptionen werden nicht unterstützt Sie können diese Adresse nicht löschen Sie müssen zuerst den Kernel laden Ihre BIOS-Boot-Partition ist zu klein, Einbettung würde unmöglich sein Ihre Datei core.img ist ungewöhnlich groß. Sie würde nicht in den Einbettungsbereich passen. Ihr Einbettungsbereich ist ungewöhnlich klein. core.img würde nicht hineinpassen.                                   boot/grub/locale/de@hebrew.mo                                                                       0000600 0001750 0001750 00000462275 13417732100 0015127 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                       i     d#    F      H^  #   I^      m^     ^     ^     ^  $   ^     ^  6   _     H_     O_  	   [_     e_     r_     _     _     _     _  .   _  .   `  %   >`     d`     h`    w`    |a    b     c  7   c  F   c  v   "d  +   d     d      d     d  !   	e     +e  ,   He     ue     e  $   e     e  *   e     f     !f     )f     9f     Qf  
   qf  	   |f     f  ,   f  ,   f  ,   f  '   )g  -   Qg      g  (   g  (   g  )   g     h     <h     \h     ih     rh  "   {h  4   h     h     h  7   h      i  1   )i     [i     zi  %   }i  '   i  %   i  '   i     j     j      j     >j     Sj     hj     mj     j     j     j     j     j     j     j  3   j     )k  $   /k     Tk     lk     k     k     k     k     k  -   k     l  !   4l     Vl     kl     l  #   l     l  `   Hm  Z   m     n     n     ;n     =n     An     Xn     ^n     gn     ~n     n     n     n     n     n     o     (o     ?o     Uo     co     zo     o     o     o  %   o     o     o     o     p     .p     Dp     Sp     fp     wp  *   p  3   p     p  "   	q  8   ,q     eq     wq  	   q  #   q     q     q     q     r     3r     Jr  )   Yr     r     r     r  P   r     /s     Ds  H   Ys  &   s     s     s  !   s  ,   
t     7t     Ct     Gt  	   dt  !   nt  *   t     t     t     t     t     u  $   ,u     Qu     cu     uu     u     u     u  
   u  
   u     u  1   v     @v     Nv     [v     tv  3   v  >   v  $   w     (w     ?w     \w     tw     w     w  +   w     w     x  #   )x     Mx     dx  $   x     x     x  '   x  9   y     @y     Yy  z   wy     y     y  8   z     Fz  
   ]z     hz     uz     z     z     K{  +   h{     {     {     {  "   {     {     |  (   |     @|     X|     d|     t|     |     |  "   |  0   |     }     }     }  7   $}     \}     d}     p}     }     }     }  0   }     }     }     ~     ~  2   .~  %   a~     ~     ~  *   ~  6   ~  +        9     W     j  !   ;  d   ]  e     d   (  i     o     H   g          Â     ق                    -     D  #   ]                 1   Ƀ  )        %     ,     .     C  /   R                 5   ń            K   6                    Ѕ     ԅ     څ     ߅  '     P        ]     |  	                    '   Ȇ  +             -  )   I     s               Ç     ؇            $        @     R  "   m                 (        Ԉ     ؈  "   ވ  +     -   -     [     t                 O                  5     C  %   W     }  )     !   Ɗ  "             '  +   >     j            !        ŋ                          >     Y     l                 4   ʌ               0     H     c     ~                ͍  !          4   *  M   _  2               *     8   C     |                    Ϗ  3     $     +   @     l                         ̐           	     '     <     >  D   V            7     ;             >  !   ]            s        )     A     ^     o                    ɓ     ړ     ޓ               F     Y     m     t                 '   ϕ  
                  '     ,     D     H     Z  H   w          Ӗ            %        4     N  #   g               ŗ     Η                 %     F  "   S  (   v       %          2        .     7  #   P  *   t                 #        ݙ       "     ;     #   S  <   w                 .     	        '  `   9       !     )   ћ                      q                       Ɯ     ݜ                    :  "   Y     |               Ɲ     ݝ                  #   5     Y     v  g                    -          !          "   +  '   N  Q   v     Ƞ                          6     S     p               ơ                          0     Q     l            -        ߢ  "     b     )   y               ѣ  ,             2  	   7  "   A  %   d                      &     )   ۤ       ^        w  $     %        ܥ  ^     _     }   N     ̧  )     '     >   ը  D     !   Y  '   {  -     #   ѩ       )        ?  )   \  )     ,        ݪ               1     L  E   ]  $     A   ȫ  )   
     4     Q     m                Ȭ  q   ݬ     O  :   l          ŭ     ԭ               (     >  0   S                 )   ͮ  &             ;     V     i  )          %     %     ,     '   8  :   `       -          .        '     9  '   N  $   v  "             ʱ       *              (  )   /     Y     r  6   ,     c     e  0   l        !     "     #        '     9     W     m  !          
   Ĵ     ϴ  <     %   &     L     U     Y     _            d     *     0   ;  6   l                    ζ            0        3  !   F     h       $             շ          
       $   8  "   ]  $                   θ                    (     :     G     b     z  '             ߹  $     +     "   I     l  )   s               ͺ            '        >     ]     z  <         ˻                 m   "               ż     ߼       +     3   >  1   r       '     -   ڽ       '     '   9  .   a  	                  Ͼ               #     ?     Z     u            *     ?   ڿ  B     /   ]            .     O     )   7     a     w  	          5                       $     ?  :   Y                                                  *     ;     A  	   N     X     g                                
     
     	          !     )   )     S     g     y       F     N        L  "   Z     }       -     -     $     #     0   9  6   j                 (     1     )   +     U     d  !   {                  %          &   $     K     e        7     .     4        @     ]     r            %                       )     B     a     p     y  ,                                 $  #   9     ]     w  B                       #     >     U  &   q                           &        +     C     ^     n  ;     V     "     &   8  !   _                 /     H     F   4  (   {            I     $     '   ;     c  %   |                      $     '     *   /     Z     t       J                    -   1  +   _       $          "     +     J     %   Y             "                        )     @     S     k            %                    %   3     Y     p                 [          !   #     E     ^     r     w                                        &     C     [     w                                1        K     [     s                    s  1          0               !   -     O  "   l                                   	          $     4     E     U     f     x  &                            !  '   6  &   ^       L               !        3     R     d                                     #     #     $   C     h     x  &          !                  
            	   4  7   >     v  %     [     w     7     K     #     /   2     b     }       &     U     @   6  Q   w                 +        9  R   V  L     .        %     <  F   A                                         /     D     ^  2   y  !     #                       /     M     g                 (     #        )     B  )   U       '     '     '          0   .     _     z  -     8               !   .      P     q       .          !     B     E   N  B         @     X     >   e  C     )     t     N     y        P     _     z       M     &     .     4   K       q     m     _          $       
  	    0    ;   H            )    s        Z  S   u  "     [     9   H  r     6     &   ,  _   S  .     f        I    f    t /    R           ' :   ; U   v d    U   1 M    W    S   - W    V    R   0 =    =               % ]   5 q        %    L   ;     b    :       3 W   6 d    W    d   K	 	   	    	    	 Y   P
 O   
    
         $ 3   B &   v (    (    $    $    d   9     [    :   	 :   D     =    G    G    ;   g p    F    Y   [ Y    Q    C   a r       .   &    B   ' B   j         I            A   - <   o H    =    J   3 S   ~ R    (   % <   N 6         C    ?   '    g    o '   ~ f    Y       g \    O    3   . -   b /    8    L    x   F     P   d        S /    O       i `   } @    7     E   W  S     W     /   I! i   y! Z   ! Y   >" a   "    " C   # C    $    d$ _   6% ;   % 
   % <   % X   &    s& 
   & ;   &    & _   & ^   D' =   ' A   ' 9   #( ;   ]( A   ( S   ( (   /) (   X) ?   ) L   ) :   * ^   I*    * #   * E   * V   !+ .   x+ *   + N   + O   !,    q,    , p   - 7   - N   .. 7   }. H   . S   . 2   R/ h   / I   / g   80 Z   0 9   0 U   51 c   1 6   1 C   &2 y   j2    2 P   {3 N   3   4    5 '   5    5 P   6    6    6 5   7 G   I7   7 D   [9 o   9 3   : @   D: 5   : <   : *   : 2   #; k   V; 9   ; 2   ;    /< ?   N< 4   < :   < y   <    x=    >     > '   :> f   b>    >    > %   > 3   ?    O?    o?    ? ,   @ -   F@ -   t@ L   @    @ w   A A   B    SB h   qB    B a   [C Z   C '   D   @D U   EF   F    G   H    I J  J    7L A   M -   VM (   M 7   M 2   M 9   N 6   RN ?   N G   N =   O A   OO &   O |   O    5P    P    P .   P #   Q x   +Q "   Q .   Q :   Q    1R V   R a   S    qS O   +T s   {T \   T 
   LU    WU    eU    nU U   U    U T   V    V    W    )W P   <W 1   W    W v   DX -   X Y   X j   CY 3   Y A   Y ;   $Z .   `Z 7   Z ,   Z 5   Z e   *[ 5   [ D   [ r   \    ~\ #   \ 
   \ p   \    #]    0] q   @] m   ] o    ^ ?   ^    ^ .   ^ 1   _ 3   P_    _ @   o` B   ` &   ` >   a    Ya N   a u   2b L   b L   b G   Bc L   c v   c 9   Nd 1   d 5   d F   d ;   7e 6   se    e 6   e B    f 7   Cf &   {f C   f C   f 3   *g +   ^g    g V   h 4   gh =   h E   h A    i D   bi @   i V   i S   ?j [   j D   j    4k    k    l Z   Bm K   m c   m    Mn    n B   n 8   9o 4   ro :   o    o <   hp h   p '   q '   6q /   ^q 3   q +   q G   q B   6r A   yr (   r    r G   r    /s    s    s    s    t \   Iu \   u e   v I   iv Y   v =  w 3   Kx J   x 3   x (   x 9   'y ;   ay ;   y -   y 
   z    z    z   | $   $~ ,   I~    v~    ~ D   ~ 2   ~ J       d      -    A   9    { :        (   Ȁ M       ? 1    N   C *    0    l    4   [ .        ]   D O    5    0   ( S   Y Y    Z       b M   { s   Ɇ F   = V    N   ۇ    *     F   Ɉ S    ~   d     -        ]   #     $    g        m            C   Ɍ     t   ,     3    $   5    d   B        +    8    H 3   X    %    B   ϑ     >   / /   n /    =   Β @    J   M U    D    P   3 3    1    +    /    =   F +    \    a    u   o "      M    ?    r   $ =    X   ՚ ,   . t   [ i   Л    : A   # 5   e #    /    <    4   , :   a 4    :   ў 3    9   @ B   z 9    .    9   & 8   ` H    7    -    I   H p    8    V   <     i    0    P   / J       ˤ ^   L         F   ɥ S       d -   q         b   ˦ ]   . /    '   >    [   # h       '   7  +   c &   n    j           s Z    e   ` y   ƴ X   @ ^    n    O   g o    i   ' w    K   	 W   U \    F   
 -   Q     Z       a x    O    S   ڻ g   . Z    U    S   G J   U       < X   ֿ &   / V   V D    E    A   8 =   z ~    Z   7 5    @    f   	 n   p <    P    1   m H    g    B   P l    j        k p       _ W    k   S #        &    <    o    L   [ Q    ,    \   ' *    z       *    ; v   L 8              z 
   }     M    K   b @    B    E   2 M   x H    c    o   s L       0 =   F     z        
        |    0   7 -   h <   q       E        { )    =    ;       2 `   ?     N   / h   ~ ]    "   E o   h 7    6    R   G 5    T    \   % T    Y    9   1 ;   k b    3   
 <   > C   { <    /    7   , ;   d D    j    U   P B    W    Q   A O        _    $   Y [   ~ K    2   & A   Y n    j   
 X   u =        ]        :    E   :     T   G G    E    ?   * E   j        A        u T    q       \ Y   n [    Z   $     4    0    @    D   ; @    D    ?    C   F ?    B        ]       y     W    ,   $ -   Q \        U    (    &       ) ;   > b   z     3        0 2   Q 1    o    '   & ,   N    { "                '    %       3 
   O    Z    x 1    =    =    ,   A 7   n             "               / <   > W   { (    #    a     [            /   8 W   h     0             X    V   f y       7 #    .    %     @   9  T   z  }     '   M >   u V    `    r   l W       7 D    d    `   l d    g   2        T     X   } D    O    /   k U    n    H   `	 Z   	 X   
 U   ]
 l   
 .        O R   c     $   7 #   \ 6    5    j    ;   X R    M    o   5     Y   d s    O   2 W    N    Y   ) j    \    "   K    n @    C    k    9   s I    3    M   +    y     t    Z    N    E   *    p c               H h   ! L            {   w j    N   ^ t       " 4   1 5   f 2    U    X   % h   ~ D    H   , ?   u     F     M     .   I! v   x! ~   !    n" g   |"    " X   " U   U# x   # r   $$ A   $ a   $ g   ;% 3   % B   % F   & 4   a& =   & ;   & 0   ' 6   A' @   x' T   ' F   ( F   U( C   ( V   ( ;   7) 9   s) ;   )    ) ;   )   7* &   D+ X   k+ :   + 3   +    3, `   <, *   , S   , F   - G   c- 9   - ;   - ]   !. W   . 2   . 8   
/ B   C/ 0   / 8   / U   / 1   F0 4   x0 J   0    0 $   1 <   1 .   1 V   $2 9   {2   2 9   4    4 K   T5    5 4   -6 P   b6 i   6 c   7 T   7 ;   7 :   8 2   M8 *   8 0   8 6   8 (   9 1   <9 3   n9 <   9 /   9 1   : :   A: =   |: i   : J   $; I   o; e   ; *   < .   J< z   y< l   < #   a=    = J   K> 7   > g   > ^   6? 6   ? W   ?    $@ D   C@ R   @ R   @ ;   .A 9   jA 3   A [   A [   4B o   B 8    C 8   9C s   rC 2   C T   D >   nD 1   D    D =   D ;   *E    fE    {E H   *F Q   sF    F .  G    H    mI U   ;J x   J @   
K #   KK %   oK T   K    K    L    }M 0   ]N \   N V   N    BO v   O    IP    !Q r   Q ?   rR 
   R    R D   S /   S 6   
T ?   AT 7   T 7   T O   T >   AU ;   U E   U    V G   V a   V &   5W 9   \W    W J   W C   W N   AX G   X n   X    GY    Y p   TZ G   Z 9   [ u   G[ H   [ d   \ `   k\ g   \ \   4] m   ] W   ] c   W^    ^    >_ B   _ %   ` Q   6` Z   ` I   ` &   -a    Ta O   a E   Cb    b    5c    d      $     @        ?            F        :    J  ^  4                        H      $                     <        
    1                                k  ,     R     	               O           r   H        {   '  +           ;  <   i       %      _                      q              &      -                           =      "     *      F           L       _       ]  I               A   
  ~   (      [  _      &    C        D        X      }         Q        2                                x        $                              3    ?   G  O           ^                       s         9        M           e      "    w            1    z  	      w                   v        5    S                                  3         r            {      +  	                         P  `             d  c       ;   t          G  5           \  ^         d           #       b                 Z        @            Y  7  I                    .           >          :  X      g             :           K   (           $                D        F    a          )          '    ]            ;         H              W      k     '          o  z     %                  o            j       <    2                              L  t  .          Y  4                               `      n      f                     I  !      '  8      Z  F     %       `          )              D      t                            H                 \                           &      S    #      y    5        :          l   V  p             m  m         Z       `        C  I            T             h                  C  7   [       y   	  \                  h      ]      2     l    /    y                ~            T  O        Q   A        )   W        =  /    ]   K  |  4  }      C        g  ^    7      9                        Q         "     D      ,  *   W     [         u  0      2     f  x      H              4                    8  *      [              O            f                   E  -  =   E                   R      w  a           p   j  +    T      v      O      9      o       Y    A        v      U    X                           @                                             7          J      L       S    A               ~  P                 S        .      h       C  +  X      r          )      :      !          r      P      U       V                       V   T  I              E      P            c      3              i  w       f                2  -      
   M      i             [    c         _    d     U      6           D   8          V        e   ?  ,                  |          %  &  y        ;         B   u     g                      e           k         u         G    &           ,        }       p  e  M  -  J        |        0          )    A     <                    B                     \      #          v  9      ?       G     f                    @  8               =  /  K                      x  .           \     j      5      N  c        i  b  $  m                 0  N                   *           6              
                                            !   -      N  }           ,      a  n       s               g        g                          +                      M  b  >    3    *                                              >      J      h                !      #       _      R     z      b  l            %  L          Y        
                u   s                   "  Q             #      a  ]            d                     R      q  0      ?                      i    `  W       N        8             (                       J               	                h  K                6  n      k  ;        e  ^             >        p            q                          @                                                M     .      6  >   1       (  /     '  N                  t                0  z    ~    U           U  G       |                {  o         R      4           q          x                   !     B     j  3                     =  Y                    7  Q          1      "    b        F              B            c      Z                        9      E                                                          P        m  s  d                         K                                        B                    E   {                  Z    a  /                        X      6         L             S          5   (             T   1       W          n                            <                              V  l                 total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: option '%c%s' doesn't allow an argument
 %s: option '%s' is ambiguous; possibilities: %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File size: %s
 File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS Import ZFS wrapping key stored in FILE. Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... M MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MODULE MODULES Mail xorriso support requests to <bug-xorriso@gnu.org>. Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Option -- switches to native xorriso command mode. Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show the contents of a file. Show the current mappings. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 T TARGET Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This entry can be booted by any user. Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. Your embedding area is unusually small.  core.img won't fit in it. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `cryptomount' command fails: %s `loopback' command fails: %s `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format blocklist FILE blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s cannot compress the kernel image cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot get translator command line for path `%s': %s cannot open OS file `%s': %s cannot open `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. diskboot.img size must be %u bytes do not probe for filesystems in DEVICE domain name component is too long don't update LED state done embed FILE as an early config embed FILE as public key for signature checking embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to get canonical path of `%s' failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification install GRUB images under the directory DIR/%s instead of the %s directory install even if problems are detected invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid block size invalid color specification `%s' invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no `/' in canonical filename no command is specified no decryption key available no network card found no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found pre-load specified modules MODULES premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory of TFTP server route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the argument `%s' requires an integer the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for text use DIR as the EFI System Partition root. use FILE as font (PF2). use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub-2.00+20130519
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-06-03 19:11+0100
Last-Translator: Mario Blättermann <mario.blaettermann@gmail.com>
Language-Team: German <translation-team-de@lists.sourceforge.net>
Language: de@hebrew
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=(n != 1);
כּס-גענעראתוֹר: פּוֹעדִית 1.5.4
               געשאמתשפּעִיצהער: %d כִּיבּ
     כּעִינ בּעבֿוֹרזוּגתער מוֹדוּש בֿערפֻֿגבּאר
     בּעבֿוֹרזוּגתער מוֹדוּש: %uכּס%u
   עדִיד-פּרֻפֿשוּממע ִישת וּנגֻלתִיג   עדִיד-בֿערשִיוֹנ: %u.%u
   גראפִֿיכּאדאפּתער כּוֹננתע נִיצהת ִינִיתִיאלִישִיערת וערדענ   כּעִינע ִינפֿוֹרמאתִיוֹנענ בֿערפֻֿגבּאר   בֿבּע-ִינפֿוֹ:   בֿערשִיוֹנ: %d.%d  וֹעמ-שוֹפֿתוארערעבִֿישִיוֹנ: %d.%d
   וֹדער:   (גאנז לִינכּש)  (מִיתתִיג)  (גאנז רעצהתש)  - פּארתִיתִיוֹנשבּעגִיננ בּעִי %llu%sכִּיבּ  - שעכּתוֹרגרֵססע %uבּ  - געשאמתגרֵססע %llu%sכִּיבּ  - געשאמתגרֵססע וּנבּעכּאננת  [וֹפּתִיוֹנענ …] %.*s: פּאראמעתער פֻֿר ארגפּ_העלפּ_פֿמת מוּשש פּוֹשִיתִיבֿ שעִינ %.*s: פּאראמעתער פֻֿר ארגפּ_העלפּ_פֿמת בּענֵתִיגת עִינענ וערת %.*s: וּנבּעכּאננתער פּאראמעתער פֻֿר ארגפּ_העלפּ_פֿמת %dש %dש בֿערבּלעִיבּענד. %s ענתהֶלת עִינ %s-דאתעִישיִשתעמ, ועלצהעש בּעכּאננתערמאססענ כּעִינענ פּלאתז פֻֿר עִינענ דוֹש-בּעתרִיעבּששיִשתעמשתארת בּערעִיתהֶלת. דִיע ִינשתאללאתִיוֹנ בֿוֹנ גרוּבּ כֵּננתע דִיע זערשתֵרוּנג דעש דאתעִישיִשתעמש נאצה שִיצה זִיעהענ, שוֹפֿערנ דאתענ דוּרצה גרוּבּ-שעתוּפּ ֻבּערשצהרִיעבּענ וערדענ. דִיע וֹפּתִיוֹנ --שכִּיפּ-פֿש-פּרוֹבּע דעאכּתִיבִֿיערת דִיעשע ֻבּערפּרֻפֿוּנג, בֿערוענדענ שִיע דִיעש אוּפֿ עִיגענע געפֿאהר. %s שצהעִינת עִינע %s-פּארתִיתִיוֹנשתאבּעללע וּנד לדמ זוּ ענתהאלתענ, ועלצהעש בּעכּאננתערמאססענ כּעִינע שִיצהערע כּוֹמבִּינאתִיוֹנ ִישת. דִיע ִינשתאללאתִיוֹנ בֿוֹנ גרוּבּ כֵּננתע דִיע זערשתֵרוּנג דעש דאתעִישיִשתעמש נאצה שִיצה זִיעהענ, שוֹפֿערנ דאתענ דוּרצה גרוּבּ-שעתוּפּ ֻבּערשצהרִיעבּענ וערדענ. דִיע וֹפּתִיוֹנ --שכִּיפּ-פֿש-פּרוֹבּע דעאכּתִיבִֿיערת דִיעשע ֻבּערפּרֻפֿוּנג, בֿערוענדענ שִיע דִיעש אוּפֿ עִיגענע געפֿאהר. %s שצהעִינת עִינע %s-פּארתִיתִיוֹנשתאבּעללע זוּ ענתהאלתענ, ועלצהע בּעכּאננתערמאססענ כּעִינענ פּלאתז פֻֿר עִינענ דוֹש-בּעתרִיעבּששיִשתעמשתארת בּערעִיתהֶלת. דִיע ִינשתאללאתִיוֹנ בֿוֹנ גרוּבּ כֵּננתע דִיע זערשתֵרוּנג דעש דאתעִישיִשתעמש נאצה שִיצה זִיעהענ, שוֹפֿערנ דאתענ דוּרצה גרוּבּ-שעתוּפּ ֻבּערשצהרִיעבּענ וערדענ. דִיע וֹפּתִיוֹנ --שכִּיפּ-פֿש-פּרוֹבּע דעאכּתִיבִֿיערת דִיעשע ֻבּערפּרֻפֿוּנג, בֿערוענדענ שִיע דִיעש אוּפֿ עִיגענע געפֿאהר. %s וּנתערשתֻתזת כּעִינע וּוִּידש %s ערשתעללת עִינע תאשתאתוּרבּעלעגוּנג פֻֿר גרוּבּ מִיתתעלש צכּבּצוֹמפּ\נ %s ִישת בֿעראלתעת. בֿערוענדענ שִיע שתאתתדעששענ גפֿכּספּאיִלוֹאד=%s בֿוֹר דעמ לִינוּכּס-בּעפֿעהל.
 %s ִישת בֿעראלתעת. בֿגא-מוֹדוּש %d ווּרדע נִיצהת ערכּאננת. בֿערוענדענ שִיע שתאתתדעששענ גפֿכּספּאיִלוֹאד=בּרעִיתעכּסהֵהע[כּסתִיעפֿע] בֿוֹר דעמ לִינוּכּס-בּעפֿעהל.
 %s וִירד בֿוֹנ גרוּבּ-מכּצוֹנפִֿיג נוֹצה נִיצהת וּנתערשתֻתזת.\נ %s, מִית הוּרד %s %s, מִית הוּרד %s (וִיעדערהערשתעללוּנגשמוֹדוּש) %s, מִית לִינוּכּס %s %s, מִית לִינוּכּס %s (וִיעדערהערשתעללוּנגשמוֹדוּש) %s, מִית כּסענ %s וּנד לִינוּכּס %s %s, מִית כּסענ %s וּנד לִינוּכּס %s (וִיעדערהערשתעללוּנגשמוֹדוּש) %s, מִית כּסענ-היִפּערבִֿישוֹר %s, מִית כּפֿרעעבּשד %s %s, מִית כּפֿרעעבּשד %s (וִיעדערהערשתעללוּנגשמוֹדוּש) %s, מִית כּערנעל %s (ֻבּער %s) %s, מִית כּערנעל %s (ֻבּער %s, וִיעדערהערשתעללוּנגשמוֹדוּש) %s: האשה-פֿעהלער
 %s: וֹכּ
 %s: לעשעפֿעהלער
 %s: זוּ בִֿיעלע ארגוּמענתע
 %s: שִיע מֻששענ דִיעש אלש רוֹוֹת אוּשפֻֿהרענ\נ %s: פֿעהלער: %s: ִינפֿוֹ: %s: וּנגֻלתִיגע וֹפּתִיוֹנ -- »%c«
 %s: וֹפּתִיוֹנ »%c%s« ערלאוּבּת כּעִינ ארגוּמענת
 %s: וֹפּתִיוֹנ »%s« ִישת מעהרדעוּתִיג; מֵגלִיצהכּעִיתענ: %s: וֹפּתִיוֹנ »--%s« ערלאוּבּת כּעִינ ארגוּמענת
 %s: וֹפּתִיוֹנ »%s« ערוארתעת עִינ ארגוּמענת
 %s: וֹפּתִיוֹנ »-ו %s« ערלאוּבּת כּעִינ ארגוּמענת
 %s: וֹפּתִיוֹנ »-ו %s« ִישת נִיצהת עִינדעוּתִיג
 %s: וֹפּתִיוֹנ »-ו %s« ערפֿוֹרדערת עִינ ארגוּמענת
 %s: וֹפּתִיוֹנ ערפֿוֹרדערת עִינ ארגוּמענת -- »%c«
 %s: וֹפּתִיוֹנ ערוארתעת עִינ ארגוּמענת -- »%s«\נ %s: וּנבּעכּאננתע וֹפּתִיוֹנ »%c%s«
 %s: וּנבּעכּאננתע וֹפּתִיוֹנ »--%s«
 %s: וארנוּנג: (32-בִּית) (64-בִּית) (פּרוֹגראממפֿעהלער) כּעִינע בֿערשִיוֹנ בּעכּאננת!? (פּרוֹגראממפֿעהלער) וֹפּתִיוֹנ הֶתתע ערכּאננת וערדענ מֻששענ!? (אוּפֿ %s) - בּעזעִיצהנוּנג »%s« - לעתזתע ֶנדערוּנגשזעִית %d-%02d-%02d %02d:%02d:%02d %s --מעהר-- -ה האשה [-צ דאתעִי [-פּ פּרֶפִֿיכּס]] [דאתעִי1 [דאתעִי2 ...]] -ל | -ר | [-ש] גרוּבּדעבֿ וֹשדִישכּ. .5 געשצהֻתזע 16-בִּית-שצהנִיתתשתעללע וּנתערשתֻתזת
 געשצהֻתזע 16-בִּית-שצהנִיתתשתעללע נִיצהת וּנתערשתֻתזת
 געשצהֻתזע 32-בִּית-שצהנִיתתשתעללע וּנתערשתֻתזת
 געשצהֻתזע 32-בִּית-שצהנִיתתשתעללע נִיצהת וּנתערשתֻתזת
 =וערת > דוּרצה אצפִּי בּעאנשפּרוּצהתער שפּעִיצהערבּערעִיצה (פֻֿר ענערגִיעשפּארמוֹדִי) דוּרצה אצפִּי וִיעדערבֿערוענדבּארער שפּעִיצהער אצפִּי-הערוּנתערפֿאהרענ ִישת געשצהעִיתערת אדדר אדדר וערת [מאשכּע] אדרעששע [גרֵססע] אדר1,מאשכּע1[,אדר2,מאשכּע2[,...]] אדדרעששע דנש_שערבֿער אפּמ דעאכּתִיבִֿיערת
 אפּמ דעאכּתִיבִֿיערת
 אפּמ אכּתִיבִֿיערת
 אפּמ אכּתִיבִֿיערת
 ארגפּ_העלפּ_פֿמת: וערת %s ִישת כּלעִינער וֹדער גלעִיצה %s אשצִיִי צר/נל-זעִילענענדענ ִימ דוֹש-שתִיל אכּזעפּתִיערענ. אכּתִיבֿע עִינגאבּעתערמִינאלש: אכּתִיבֿע אוּשגאבּעתערמִינאלש: אדאפּתער »%s«:
 עִינענ דנש-שערבֿער הִינזוּפֻֿגענ עִינע נעתזוערכּאדרעששע הִינזוּפֻֿגענ. עִינע נעתזוערכּרוֹוּתע הִינזוּפֻֿגענ. ערועִיתערתע וֹפּתִיוֹנענ פֻֿר %s ערועִיתערתע וֹפּתִיוֹנענ פֻֿר %s (מִית כּסענ-היִפּערבִֿישוֹר) וּנתערבּרעצהוּנג מִית עשצ ערלאוּבּענ. נאצה דעמ דאתעִינאמענ פֻֿר דענ נעוּשתארת פֿראגענ. עִינגאבּע וִירד אלש העכּסאדעזִימאל אנגענוֹממענ. עִינגאבּע וִירד אלש כּעננווֹרת אנגענוֹממענ. עִינגאבּע וִירד אלש ראו אנגענוֹממענ. עש וִירד בֿערשוּצהת, דענ מאשתער-שצהלֻששעל זוּ ענתשצהלֻששעלנ … עש וִירד בֿערשוּצהת, גרוּבּ אוּפֿ עִינער פּלאתתע מִית מעהרערענ פּארתִיתִיוֹנשבּעזעִיצהנוּנגענ וֹדער שוֹווֹהל פּארתִיתִיוֹנשבּעזעִיצהנוּנגענ אלש אוּצה דאתעִישיִשתעמענ זוּ ִינשתאללִיערענ. דִיעש וִירד דערזעִית נוֹצה נִיצהת וּנתערשתֻתזת. עש וִירד בֿערשוּצהת, גרוּבּ אוּפֿ עִינער פּלאתתע מִית מעהרערענ פּארתִיתִיוֹנשבּעזעִיצהנוּנגענ זוּ ִינשתאללִיערענ. דִיעש וִירד דערזעִית נוֹצה נִיצהת וּנתערשתֻתזת. עש וִירד בֿערשוּצהת, גרוּבּ אוּפֿ עִינער נִיצהת פּארתִיתִיוֹנִיערתענ פּלאתתע וֹדער ִינ עִינע פּארתִיתִיוֹנ זוּ ִינשתאללִיערענ. דאש ִישת עִינע שצהלעצהתע ִידעע. בֿערפֻֿגבּארע עִינגאבּעתערמִינאלש: בֿערפֻֿגבּארע אוּשגאבּעתערמִינאלש: בּ בּ/ש בִּיוֹש_שִיצהערוּנג [ִינת10_שִיצהערוּנג] בּלוֹצכּ בּיִתע:בִּית מוֹדוּש דעש הִינתערגרוּנדבִּילדעש. בּאשִישוֹרדנער פֻֿר האשה-לִישתע. בִּיוֹש-בּאשִיערתעש שיִשתעמ בּוֹוֹתענ. עִינ בּעתרִיעבּששיִשתעמ שתארתענ. ִינ דענ שִינגלע-וּשער-מוֹדוּש בּוֹוֹתענ. מִית פֿעהלערדִיאגנוֹשעמעלדוּנגענ בּוֹוֹתענ. מִית אוּשפֻֿהרלִיצהענ מעלדוּנגענ בּוֹוֹתענ. »%s« וִירד געבּוֹוֹתעת עִינע בּעפֿעהלשלִישתע בּוֹוֹתענ ִימ בּלִינדמוֹדוּש בּוֹוֹתענ בּוֹוֹת-פּפֿאד: %s
 בּוֹוֹת-פּפֿאד: נִיצהת בֿערפֻֿגבּאר
 האלתעפּוּנכּת פֻֿר גדבּ אוּשלֵשענ צגא  פֿארבּע בּעפֿעהל [ארגוּמענתע] צפּוּ-לעערלאוּפֿ בֿערלאנגשאמת דענ פּרוֹזעששוֹר נִיצהת
 צפּוּ-לעערלאוּפֿ בֿערלאנגשאמת דענ פּרוֹזעששוֹר
 צש5536 ִינ %d:%d.%d
 רוֹמ-בּערעִיצה כּאננ נִיצהת אכּתִיבִֿיערת וערדענ. כּוֹנפִֿיגוּרִיערתע גערֶתע בּעארבּעִיתענ. פּארתִיתִיוֹנשתיִפּ ֶנדערנ אלת-תאשתע ֻבּערפּרֻפֿענ. שתרג-תאשתע ֻבּערפּרֻפֿענ. וּמשצהאלתתאשתע ֻבּערפּרֻפֿענ. פֶֿהִיגכּעִיתענ דער צפּוּ ֻבּערפּרֻפֿענ. פּרֻפֿשוּממענ דער דאתעִיענ מִית לִישתע ִינ דאתעִי בֿערגלעִיצהענ. ֻבּערפּרֻפֿענ, וֹבּ דער פּרוֹזעששוֹר דענ 64-בִּית-(לאנג-)מוֹדוּש וּנתערשתֻתזת (בֿוֹרגאבּע). שתאתוּש דער וּמשצהאלתתאשתענ ֻבּערפּרֻפֿענ. ֻבּערפּרֻפֿענ שִיע, וֹבּ דער בּענוּתזער ִינ דער בּענוּתזערלִישתע אוּפֿגעפֻֿהרת ִישת. ֻבּערפּרֻפֿת דִיע גרוּבּ-שכּרִיפּתכּוֹנפִֿיגוּראתִיוֹנ אוּפֿ שיִנתאכּספֿעהלער דענ בִּילדשצהִירמ לעערענ. »אצתִיבֿע«-פֿלאג אוּפֿ %d ווּרדע געלֵשצהת.  
 בּעפֿעהלע: דאתעִי מִית לוֹכּאלער דאתעִי לוֹכּאל בֿערגלעִיצהענ. דאתעִי »%s« מִית »%s« בֿערגלעִיצהענ:
 זועִי דאתעִיענ בֿערגלעִיצהענ. כּסנוּ-וּוִּיד דעש גערֶתש בּערעצהנענ. האשה-פּרֻפֿשוּממע בּערעצהנענ וֹדער פּרֻפֿענ. שערִיעללע שצהנִיתתשתעללע כּוֹנפִֿיגוּרִיערענ. שצהלעִיפֿענ פֿוֹרתשעתזענ ֻבּלִיצהע שצהרִיפֿתדאתעִיפֿוֹרמאתע ִינ פּפֿ2 וּמואנדעלנ דאתעִי ִינ לוֹכּאלע דאתעִי לוֹכּאל כּוֹפִּיערענ. דאתעִי ִינ דִיע שתאנדארדאוּשגאבּע כּוֹפִּיערענ. פֿפּשוא-תרעִיבּער כּוֹננתע נִיצהת געפֿוּנדענ וערדענ פּהיִשִישצהער דאתענתרֶגער »%s« כּוֹננתע נִיצהת געפֿוּנדענ וערדענ. עִינִיגע מוֹדוּלע כֵּננתענ ִימ צוֹרע-אבּבִּילד פֿעהלענ. שהא256 כּוֹננתע נִיצהת געלאדענ וערדענ שהא512 כּוֹננתע נִיצהת געלאדענ וערדענ בִּיוֹש-שתרוּכּתוּרענ פֻֿר אבּוֶרתשכּוֹמפּאתִיבִּילִיתֶת מִית דעמ בֿוֹרהאנדענענ בּעתרִיעבּששיִשתעמ ערשתעללענ. עִינע לעערע וּמגעבּוּנגש-בּלוֹצכּדאתעִי ערשתעללענ. אכּתוּעללע תערמִינפֿוֹ-תיִפּענ: גערֶת גערֶת [פּארתִיתִיוֹנ[+/-[תיִפּ]]] ... גערֶת מוּשש עִינ וֹש-גערֶת שעִינ (ז.בּ. /דעבֿ/שדא). גערֶתענאמע וֹרדנ וֹרדנער [וֹשבּוּנדלערעקוִּירעד] דנששערבֿער דִיאגנוֹשעוערכּזעוּג פֻֿר דאתעִישיִשתעמתרעִיבּער. שפּעִיצהערבּערעִיצהע אלש »בּאדראמ« דעכּלארִיערענ. דעכּוֹמפּרעששוֹר ִישת זוּ גרוֹסס עִינענ מענֻעִינתראג דעפִֿינִיערענ. עִינ וּנתערמענֻ דעפִֿינִיערענ. עִינע נעתזוערכּאדרעששע לֵשצהענ. עִינע נעתזוערכּרוֹוּתע ענתפֿערנענ. דאש אנגעגעבּענע לוֹוֹפּבּאצכּ-גערֶת לֵשצהענ. בֿארִיאבּלענ לֵשצהענ. תרעִיבּער ערמִיתתעלנ. דאתעִישיִשתעמ-וּוִּיד ערמִיתתעלנ. דאתעִישיִשתעמבּעזעִיצהנוּנג ערמִיתתעלנ. דאתעִישיִשתעמתיִפּ ערמִיתתעלנ. תיִפּ דער פּארתִיתִיוֹנשזוּוֹרדנוּנג בּעשתִיממענ. גערֶת %s: גערֶתעכּעננוּנג: %s
 גערֶתעכּעננוּנג: נִיצהת בֿערפֻֿגבּאר דִירעכּתע פֿארבּע, מאשכּע: %d/%d/%d/%d  פּוֹש.: %d/%d/%d/%d אצפִּי דעאכּתִיבִֿיערענ. שמפּ דעאכּתִיבִֿיערענ. אללע בּוֹוֹת-אוּשגאבּענ דעאכּתִיבִֿיערענ. שמארת אכּתִיבִֿיערענ/דעאכּתִיבִֿיערענ (0/1). וּנשאוּבּער עִינגעבּעתתעתע פּארתִיתִיוֹנ וִירד בֿערווֹרפֿענ (%s,%s,%s%d) שתאתִישתִיכּענ דעש פּלאתתענזוִישצהענשפּעִיצהערש: הִיתש = %lu (%lu.%02lu%%), מִיששעש = %lu
 פּלאתתענאנזאהל מוּשש פּלאתתענלִישתע בֿוֹראנגעשתעללת שעִינ.
 פֿפּשוא-בֿערשִיוֹנ אנזעִיגענ. לאוּפֿוערכּששתאתוּש מִית שמארת אנזעִיגענ. עִינע תעכּסתזעִילע אנזעִיגענ. בּלוֹצכּלִישתע בֿוֹנ דאתעִי אנזעִיגענ. אוּשגאבּע אוּפֿ אללענ כּוֹנשוֹלענ אנזעִיגענ. ענערגִיעמוֹדוּש אנזעִיגענ. בּענוּתזוּנג דִיעשעש בּעפֿעהלש אנזעִיגענ וּנד בּעענדענ. דִיעשע הִילפֿע אנזעִיגענ וּנד בּעענדענ. אנזעִיגענ/פֿעשתלעגענ דעש/דער אכּתוּעללענ דאתוּמש/זעִית. אנגעהֶנגתע זעִילענוּמבּרֻצהע נִיצהת אוּשגעבּענ. כּעִינע מעלדוּנגענ אוּשגעבּענ. כּעִינ דִישכּעתתענלאוּפֿוערכּ ֻבּערפּרֻפֿענ. זוּמ אבּשצהאלתענ דעש רעצהנערש כּעִינ אפּמ בֿערוענדענ. נִיצהתש תוּנ, ערפֿוֹלגרעִיצה. נִיצהתש תוּנ, נִיצהת ערפֿוֹלגרעִיצה. כּעִינע פֿעהלערדִיאגנוֹשעמעלדוּנגענ בּעִימ בּוֹוֹתענ אנזעִיגענ. כּעִינע הוֹשת-תאבּעללענ שפּעזִיפִֿיזִיערת דוּרצה כּוֹממאגעתרעננתע לִישתע לאדענ. נִיצהת נעוּ שתארתענ, נוּר הערוּנתערפֿאהרענ. נאצה דעמ ערשתענ פֿעהלער נִיצהת שתוֹפּפּענ. עבּדא נִיצהת אכּתוּאלִישִיערענ. כֵּננתע פֿעהלער וֹדער הֶנגער ִינ מאנצהענ בִּיוֹש-בֿערשִיוֹנענ בּעשעִיתִיגענ, ִישת אבּער נִיצהת עפֿפֿעכּתִיבֿ בּעִי בּעתרִיעבּששיִשתעמענ, דִיע כּעִינ רשדפּ בֿוֹנ גרוּבּ עמפּפֿאנגענ.  וּמגבֿאר וּמגבֿאר [וּמגבֿאר] ... פֿעהלער: כּעִינע גֻלתִיגע תאשתאתוּרבּעלעגוּנג געפֿוּנדענ. ֻבּערפּרֻפֿענ שִיע דִיע עִינגאבּע.
 בּעענדענ ִישת יעדערזעִית מִית עשצ מֵגלִיצה. אוּשדרוּצכּ אוּשדרוּצכּ ] בֿערשתרִיצהענע זעִית: %d.%03d ש 
 בֿערשתרִיצהענע זעִית: %d.%03d שעכּוּנדענ 
 עִינבּעתתוּנג ִישת נִיצהת מֵגלִיצה. גרוּבּ כּאננ ִינ דִיעשער כּוֹנפִֿיגוּראתִיוֹנ נוּר מִיתתעלש בּלוֹצכּלִישתענ ִינשתאללִיערת וערדענ. בּלוֹצכּלִישתענ שִינד אללערדִינגש וּנזוּבֿערלֶששִיג וּנד דערענ בֿערוענדוּנג וִירד דאהער נִיצהת עמפּפֿוֹהלענ. עִינע תאשתאתוּרשעקוּענז עמוּלִיערענ אוּשוערתוּנג דער בּאצכּשלאשה-מאשכִּיערוּנגענ ערמֵגלִיצהענ. זפֿש-פּאששווֹרת עִינגעבּענ: כּדבּ בּעִימ בּוֹוֹתענ בֿערוענדענ. ִינ נוֹרמאלמוֹדוּש ועצהשעלנ. כּעננווֹרת פֻֿר %s%s%s אנגעבּענ (%s):  פּאששווֹרת עִינגעבּענ: בּענוּתזערנאמע עִינגעבּענ: פֿעהלער בּעִימ עִינלעשענ דער בּעפֿעהלשזעִילענארגוּמענתע
 עִינענ אוּשדרוּצכּ אוּשוערתענ. בּעענדענ ִישת געשצהעִיתערת גרוּבּ בּעענדענ. שצהלעִיפֿענדוּרצהלאוּפֿ בּעענדענ נוֹרמאלמוֹדוּש אבּבּרעצהענ. בֿארִיאבּלענ עכּספּוֹרתִיערענ. בֿערשִיוֹנ-1-תאבּעללענ זוּמ בּעתרִיעבּששיִשתעמ עכּספּוֹרתִיערענ. בֿערשִיוֹנ-2- וּנד בֿערשִיוֹנ-3-תאבּעללענ זוּמ בּעתרִיעבּששיִשתעמ עכּספּוֹרתִיערענ. דאתעִי דאתעִי [ארג ...] דאתעִי [ארגוּמענתע …] דאתעִי | תעמפּוֹ [תוֹנהֵהע1 דאוּער1] [תוֹנהֵהע2 דאוּער2] ...  דאתעִי… דאתעִי1 דאתעִי2 דאתעִינאמע בּעפֿעהל דאתעִישיִשתעמ [בֿארִיאבּלע] דאתעִי|פּרוֹמפּת פֿוֹרמאת דאש פֿפּשוא-פּרוֹתוֹכּוֹלל ואר נִיצהת ִימשתאנדע, דִיע שצהנִיתתשתעללע זוּ פִֿינדענ פֿפּשוא-רעבִֿישִיוֹנ: %x
 בֿוֹנ-בִּיש[,בֿוֹנ-בִּיש] בֿוֹנ[כּ|מ|ג] בִּיש[כּ|מ|ג] פֿת_ִינִית_פֿרעעתיִפּע ִישת געשצהעִיתערת שוֹווֹהל בֿוֹרגאבּע- אלש אוּצה אלתערנאתִיבֿעִינתרֶגע כּוֹננתענ נִיצהת געבּוֹוֹתעת וערדענ.
 בּאוּמ פֻֿר »דעבִֿיצע-מאפּפּער« כּוֹננתע נִיצהת ערשתעללת וערדענ אלתערנאתִיבֿע »%s« וִירד בֿערוענדעת דאתעִיגרֵססע: %s
 דאתעִישיִשתעמ »%s« וּנתערשתֻתזת כּעִינע עִינבּעתתוּנגענ דאתעִיענ וּנתערשצהעִידענ שִיצה אנ פּוֹשִיתִיוֹנ %llu: 0כּס%x [%s], 0כּס%x [%s]
 דאתעִיגרֵססענ שִינד וּנתערשצהִיעדלִיצה: %llu [%s], %llu [%s]
 זוּגרִיפֿפֿ אוּפֿ דאתעִישיִשתעמ נִיצהת מֵגלִיצה דאתעִישיִשתעמתיִפּ %s היִבּרִיד-מבּר דעש גפּת-גערֶתעש גערֶת פֻֿללענ. אנגעגעבּענע פּארתִיתִיוֹנענ וערדענ תעִיל דעש היִבּרִיד-מבּר. בִּיש זוּ 3 פּארתִיתִיוֹנענ שִינד זוּלֶששִיג. תיִפּ ִישת עִינ מבּר-תיִפּ. + בּעדעוּתעת, דאשש דִיע פּארתִיתִיוֹנ אכּתִיבֿ ִישת. נוּר עִינע פּארתִיתִיוֹנ כּאננ אכּתִיבֿ שעִינ. לאדענ דעש עפִֿי-עמוּלאתוֹרש פִֿינאלִישִיערענ. זוּערשת דאש גערֶת הִינועִיש בֿערשוּצהענ, פֿאללש אכּתוּעלל לאוּפֿענדע ארצ. פֿאללש הִינועִיש מִית כּוֹממא ענדעת, אוּצה וּנתערפּארתִיתִיוֹנענ בֿערשוּצהענ זוּערשת דאש גערֶת הִינועִיש בֿערשוּצהענ (פֻֿר אכּתוּעלל לאוּפֿענדעש בִּיוֹש). פֿאללש הִינועִיש מִית כּוֹממא ענדעת, אוּצה וּנתערפּארתִיתִיוֹנענ בֿערשוּצהענ זוּערשת דאש גערֶת הִינועִיש בֿערשוּצהענ (פֻֿר אכּתוּעלל לאוּפֿענדעש עפִֿי). פֿאללש הִינועִיש מִית כּוֹממא ענדעת, אוּצה וּנתערפּארתִיתִיוֹנענ בֿערשוּצהענ זוּערשת דאש גערֶת הִינועִיש בֿערשוּצהענ (בּעִי ִיעעע1275). פֿאללש הִינועִיש מִית כּוֹממא ענדעת, אוּצה וּנתערפּארתִיתִיוֹנענ בֿערשוּצהענ זוּערשת דאש גערֶת הִינועִיש בֿערשוּצהענ, פֿאללש דִירעכּתער הארדוארעזוּגרִיפֿפֿ וּנתערשתֻתזת וִירד. פֿאללש הִינועִיש מִית כּוֹממא ענדעת, אוּצה וּנתערפּארתִיתִיוֹנענ בֿערשוּצהענ זוּערשת דאש גערֶת הִינועִיש בֿערשוּצהענ. פֿאללש הִינועִיש מִית כּוֹממא ענדעת, אוּצה וּנתערפּארתִיתִיוֹנענ בֿערשוּצהענ עִינ בִֿידעוֹפּרוֹבּלעמ בּעהעבּענ. %s אוּפֿ %s געפֿוּנדענ (%s)\נ %s אוּפֿ %s געפֿוּנדענ\נ גנוּ מאצה ווּרדע געפֿוּנדענ: %s הוּרד-מוֹדוּל געפֿוּנדענ: %s נעתבּשד-כּערנעל געפֿוּנדענ: %s\נ הִינתערגרוּנד געפֿוּנדענ: %s\נ ִינִיתרד-אבּבִּילד געפֿוּנדענ: %s\נ כּערנעל-מוֹדוּלוֹרדנער געפֿוּנדענ: %s\נ פֿרעעבּשד-כּערנעל געפֿוּנדענ: %s\נ לִינוּכּס-אבּבִּילד געפֿוּנדענ: %s\נ תהעמא געפֿוּנדענ: %s\נ פֿרעעתיִפּע-פֿעהלער %d בּעִימ לאדענ דעש גליִפּהש 0כּס%x פֻֿר וּ+0כּס%x%s אתא-שִיצהערהעִיתשעִינשתעללוּנגענ בִּיש זוּמ זוּרֻצכּשעתזענ עִינפֿרִיערענ. פֿרעִיתאג ג גנוּ גרוּבּ  בֿערשִיוֹנ %s גרוּבּ-בּוֹוֹתמענֻ גרוּבּ ועִיסס נִיצהת, וִיע מאנ דִיעשע מאשצהִינע שתוֹפּפּענ כּאננ! גרוּבּ-עמוּלאתוֹר. גרוּבּ-גערֶת=פּלאנ9-גערֶת וּנשִיננ ִינ ארגפּ_העלפּ_פֿמת: %s גרוּבּ-תאשתאתוּרבּעלעגוּנג אוּש דעמ דער לִינוּכּס-כּוֹנשוֹלע ערשתעללענ. פּבּכּדפֿ2-פּאששווֹרת-פּרֻפֿשוּממע ערזעוּגענ.  עִינע גרוּבּ-כּוֹנפִֿיגוּראתִיוֹנשדאתעִי ערשתעללענ עִינ לאוּפֿפֶֿהִיגעש אבּבִּילד עִינשצהלִיעססלִיצה אללער מוֹדוּלע ִימ געוֶהלתענ פֿוֹרמאת ערשתעללענ צרצ32-פּרֻפֿשוּממע בֿוֹנ דאתעִי בּערעצהנענ. ִינפֿוֹרמאתִיוֹנענ זוּמ פּלאתתענ-זוִישצהענשפּעִיצהער הוֹלענ. אתא-דאתענתרֶגערפּאראמעתער ערמִיתתעלנ/פֿעשתלעגענ. גִיבּ גִיבּ/ש האשה הִינועִיש דאש שיִשתעמ אנהאלתענ, ועננ מֵגלִיצה, מִית אפּמ. דִיעשענ רעצהנער אנהאלתענ. דִיעשער בּעפֿעהל פֿוּנכּתִיוֹנִיערת נִיצהת ִינ אללענ פִֿירמוארע-ִימפּלעמענתאתִיוֹנענ. נ בּיִתעש ִינ אוּשגאבּעדאתעִי בֿערארבּעִיתענ האללוֹ ועלת הערצוּלעש  כּעננוּנג אבּבִּילד1 [אבּבִּילד2 ...] עִינהֶנגעפּוּנכּת אבּבִּילדפּפֿאד בּעפֿעהלע ִינ דאתעִי געשפּעִיצהערתענ זפֿש-וראפּפִּינג-שצהלֻששעל ִימפּוֹרתִיערענ ִינכּוֹררעכּתעש בִֿירתוּעללעש גערֶת: כּעִינ תיִפּ בֿערפֻֿגבּאר עִינ מוֹדוּל עִינפֻֿגענ. גרוּבּ אוּפֿ ִיהרעמ לאוּפֿוערכּ ִינשתאללִיערענ. ִינשתאללאתִיוֹנ בּעענדעת. כּעִינע פֿעהלער אוּפֿגעתרעתענ. וּנגֻלתִיגע רֻצכּרעפֿערענז וּנגֻלתִיגער זעִיצהענכּלאששעננאמע וּנגֻלתִיגעש שוֹרתִיערזעִיצהענ וּנגֻלתִיגער בּעפֿעהל %s.
 וּנגֻלתִיגער ִינהאלת בֿוֹנ \{\} וּנגֻלתִיגעש גערֶת »%s«.
 וּנגֻלתִיגע פּלאתתענאנזאהל.
 וּנגֻלתִיגער בֿוֹרהערגעהענדער רעגוּלֶרער אוּשדרוּצכּ וּנגֻלתִיגעש בּערעִיצהשענדע וּנגֻלתִיגער רעגוּלֶרער אוּשדרוּצכּ רוֹוּתִינג דער בּענוּתזערכּוֹנפִֿיגוּראתִיוֹנ אוּפֿרוּפֿענ. כּ כּערנעל ארגוּמענתע תאשתע תאשתענזוּוֹרדנוּנג פֻֿר דענ שצהנעללשתארת דִיעשעש עִינתראגש. כִּיבּ כִּיבּ/ש בִֿירתוּעללעש גערֶת דוּרצהשוּצהענ (דאתעִי וֹדער לאוּפֿוערכּ) בֿעראלתעתער פּאראמעתער »%s« וִירד נִיצהת מעהר וּנתערשתֻתזת. לעגענדע: מאשכּע/פּוֹשִיתִיוֹנ=רוֹת/גרֻנ/בּלאוּ/רעשערבִֿיערת לֶנגע דער ערזעוּגתענ פּרֻפֿשוּממע לֶנגע בֿוֹנ שאלת דנש-שערבֿער אוּפֿלִישתענ פּצִי-גערֶתע אוּפֿלִישתענ. אללע דאתעִיענ אוּפֿלִישתענ. בֿערפֻֿגבּארע גראפִֿיכּמוֹדִי אוּפֿלִישתענ. פֿאללש אוּפֿלֵשוּנג אנגעגעבּענ ִישת, נוּר מוֹדִי דִיעשער אוּפֿלֵשוּנג אנזעִיגענ. גערֶתע וּנד דאתעִיענ אוּפֿלִישתענ. גערֶתע וֹדער דאתעִיענ אוּפֿלִישתענ. גערֶתע אוּפֿלִישתענ. דאתעִיענ ִינ פּפֿאד אוּפֿלִישתענ. בֿוֹנ פִֿירמוארע בּערעִיתגעשתעללתע שפּעִיצהערזוּוֹרדנוּנג אוּפֿלִישתענ. לִישתע דער וּנתערשתֻתזתענ בִֿידעוֹמוֹדִי: לִישתע דער בּענוּתזער, דִיע דִיעשענ עִינתראג בּוֹוֹתענ דֻרפֿענ. עִינגאבּעתערמִינאל לִישתענ וֹדער וֶהלענ. אוּשגאבּעתערמִינאל לִישתענ וֹדער וֶהלענ. אכּתוּעללע בֿארִיאבּלענ אוּפֿלִישתענ. דִיע געלאדענענ שצהרִיפֿתענ אוּפֿלִישתענ. בֿארִיאבּלענ אוּש בּלוֹצכּדאתעִי דער וּמגעבּוּנג אוּפֿלִישתענ. 64-בִּית כּסנוּ-אבּבִּילד לאדענ. בִּיוֹש-שִיצהערוּנג לאדענ. פֿרעעבּשד-וּמגעבּוּנג לאדענ. פֿרעעבּשד-כּערנעלמוֹדוּל לאדענ (עלפֿ). פֿרעעבּשד-כּערנעלמוֹדוּל לאדענ. פֿרעעדוֹש-כּערנעל.שיִש לאדענ. לִינוּכּס לאדענ. נתלדר וֹדער בּוֹוֹתמגר לאדענ. נעתבּשד-כּערנעלמוֹדוּל לאדענ (עלפֿ). נעתבּשד-כּערנעלמוֹדוּל לאדענ. פּלאנ9-כּערנעל לאדענ. כּסנוּ-ערועִיתערוּנגשוֹרדנער לאדענ. כּסנוּ-ערועִיתערוּנגשפּאכּעת לאדענ. כּסנוּ-ערועִיתערוּנג לאדענ. כּסנוּ-אבּבִּילד לאדענ. כּסנוּ-ראמדִישכּ לאדענ. וִירד ִימ בּעתרִיעבּששיִשתעמ אלש מד0 אנגעזעִיגת. ִינהאלת בֿוֹנ »דעבִֿיצע-פּרוֹפּערתִיעש« לאדענ עִינ פּכּסע-אבּבִּילד לאדענ. עִינע תאשתאתוּרבּעלעגוּנג לאדענ. עִינענ מלוּתִיבּוֹוֹת2-כּערנעל לאדענ. עִינ מוּלתִיבּוֹוֹת2-מוֹדוּל לאדענ. עִינענ מוּלתִיבּוֹוֹת-כּערנעל לאדענ. עִינ מוּלתִיבּוֹוֹת-מוֹדוּל לאדענ. בּעגרֻססוּנגשבִּילדשצהִירמ פֻֿר כּסנוּ לאדענ. עִינ געשפּעִיצהערתעש כּסנוּ-אבּבִּילד לאדענ. עפִֿי-עמוּלאתוֹר לאדענ וּנד ִינִיתִיאלִישִיערענ. עִינענ אנדערענ בּוֹוֹתלוֹאדער לאדענ. עִינע אנדערע כּוֹנפִֿיגוּראתִיוֹנשדאתעִי לאדענ, אבּער נוּר דערענ מענֻעִינתרֶגע. עִינע אנדערע כּוֹנפִֿיגוּראתִיוֹנשדאתעִי לאדענ, וֹהנע דענ כּוֹנתעכּסת זוּ ֶנדערנ. עש וערדענ נוּר מענֻעִינתרֶגע געלאדענ. עִינע אנדערע כּוֹנפִֿיגוּראתִיוֹנשדאתעִי לאדענ, וֹהנע דענ כּוֹנתעכּסת זוּ ֶנדערנ. עִינע אנדערע כּוֹנפִֿיגוּראתִיוֹנשדאתעִי לאדענ. ועִיתערעש צוֹרעבּוֹוֹת-פּאיִלוֹאד לאדענ הִינתערגרוּנדבִּילד פֻֿר אכּתִיבֿעש תערמִינאל לאדענ. הוֹשת-אצפִּי-תאבּעללענ וּנד דוּרצה ארגוּמענתע אנגעגעבּענע תאבּעללענ לאדענ. ִינִיתרד לאדענ. ראמדִישכּ בֿוֹנ כּוֹפּענבּשד לאדענ. כּערנעל בֿוֹנ פֿרעעבּשד לאדענ. כּערנעל בֿוֹנ נעתבּשד לאדענ. כּערנעל בֿוֹנ וֹפּענבּשד לאדענ. נוּר תאבּעללענ שפּעזִיפִֿיזִיערת דוּרצה כּוֹממאגעתרעננתע לִישתע לאדענ. גלעִיצהע דאתעִי מעהרפֿאצה לאדענ. בֿארִיאבּלענ אוּש בּלוֹצכּדאתעִי דער וּמגעבּוּנג לאדענ. זפֿש-שצהלֻששעל לאדענ. געלאדענע שצהרִיפֿתענ גנוּ מאצה וִירד געלאדענ … לִינוּכּס %s וִירד געלאדענ … כּסענ %s וִירד געלאדענ … ִינִיתִיאלע ראמדִישכּ וִירד געלאדענ … פֿרעעבּשד-כּערנעל %s וִירד געלאדענ … ִיללוּמוֹש-כּערנעל וִירד געלאדענ … הוּרד וִירד געלאדענ … מ מאצ-ֻבּערפּרֻפֿוּנג ִישת געשצהעִיתערת מענֻעִינתראג ִישת עִינע זאהל, עִינ תִיתעל וֹדער בּעזעִיצהנער עִינעש מענֻעִינתראגש. מוֹדוּל מוֹדוּלע רִיצהתענ שִיע שוּפּפּוֹרתאנפֿראגענ זוּ כּסוֹררִישוֹ אנ <בּוּג-כּסוֹררִישוֹ@גנוּ.וֹרג>. בּוֹוֹתפֶֿהִיגעש גרוּבּ-אבּבִּילד פֻֿר צד-רוֹמ, פֿעשתפּלאתתע, וּשבּ-שתִיצכּ וּנד דִישכּעתתע ערשתעללענ. עִינע גרוּבּ-תאשתאתוּרלאיִוֹוּתדאתעִי ערשתעללענ. עִינ בּוֹוֹתפֶֿהִיגעש גרוּבּ-אבּבִּילד ערשתעללענ עִינ בִֿירתוּעללעש גערֶת אוּש עִינער דאתעִי ערשתעללענ. פּארתִיתִיוֹנ אלש אכּתִיבֿ מארכִּיערענ בִּיוֹש-לאוּפֿוערכּשזוּוֹרדנוּנגענ בֿערואלתענ. ערפֿוֹרדערלִיצהע וֹדער וֹפּתִיוֹנאלע ארגוּמענתע פֻֿר לאנגע וֹפּתִיוֹנענ שִינד עבּענשוֹ ערפֿוֹרדערלִיצה בּזו. וֹפּתִיוֹנאל פֻֿר דִיע ענתשפּרעצהענדענ כּוּרזוֹפּתִיוֹנענ. פּצִי-גערֶתע בּעארבּעִיתענ. בֿוֹנ בּעפֿעהל בּענֵתִיגתע זעִית מעששענ שפּעִיצהער אוּשגעשצהֵפּפֿת שפּעִיצהערתיִפּ: דדר2. שפּעִיצהערתיִפּ: וּנבּעכּאננת. בּעזעִיצהנער דעש מענֻעִינתראגש. כּעִינ מענֻעִינתראג אנגעגעבּענ. תיִפּ דעש מענֻעִינתראגש. מִיבּ מִיבּ/ש מִינִימאלע בּאשה-ֶהנלִיצהע זעִילענבּעארבּעִיתוּנג וִירד וּנתערשתֻתזת. פֻֿר דאש ערשתע ווֹרת לִישתעת תאבּ דִיע מֵגלִיצהענ בּעפֿעהלשבֿערבֿוֹללשתֶנדִיגוּנגענ אוּפֿ. אנשוֹנשתענ וערדענ מִית תאבּ דִיע מֵגלִיצהענ גערֶתע-וֹדער דאתעִיבֿערבֿוֹללשתֶנדִיגוּנגענ אנגעזעִיגת. %s מִינִימאלע עמאצש-ֶהנלִיצהע בִּילדשצהִירמבּעארבּעִיתוּנג וִירד וּנתערשתֻתזת. תאבּ לִישתעת בֿערבֿוֹללשתֶנדִיגוּנגענ אוּפֿ. דרֻצכּענ שִיע שתרג-כּס וֹדער פֿ10 זוּמ בּוֹוֹתענ, שתרג-צ וֹדער פֿ2 פֻֿר עִינע בּעפֿעהלשזעִילע וֹדער עשצ, וּמ אבּזוּבּרעצהענ וּנד זוּמ גרוּבּ-מענֻ זוּרֻצכּזוּכּעהרענ. ארגוּמענתע פֿעהלענ
 עִינגאבּעדאתעִי פֿעהלת
 מוֹנתאג שצהוארזועִיסס  מעהר אלש עִינ ִינשתאללאתִיוֹנשגערֶת? מעהר אלש עִינ מענֻעִינתראג? עִינ בֿערשצהלֻששעלתעש גערֶת עִינהֶנגענ. אללע דאתענתרֶגער עִינהֶנגענ, פֻֿר דִיע דאש »בּוֹוֹת«-פֿלאג געשעתזת ִישת. אללעש עִינהֶנגענ. נאצה וּוִּיד עִינהֶנגענ. בֿערשצהלֻששעלתע גערֶתע עִינהֶנגענ. נאמע נאמע [בֿארִיאבּלע] [הִינתועִישע] זאהל אנזאהל_דער_שעכּוּנדענ נאמע	רעפֿערענזזֶהלער	אבּהֶנגִיגכּעִיתענ
 נאתִיבֿע פֿעשתפּלאתתענתרעִיבּער וערדענ בֿערוענדעת. נוּתזוּנג דער פִֿירמוארע-שצהנִיתתשתעללע וִירד בֿערועִיגערת. נעתזוערכּפּרוֹתוֹכּוֹללע: נעוּער מבּר ווּרדע נאצה »%s« געשצהרִיעבּענ
 כּעִינ צש5536 געפֿוּנדענ כּעִינ פֿפּשוא געפֿוּנדענ כּעִינע שתאתִישתִיכּענ פֻֿר בּוֹוֹת-זעִיתענ בֿערפֻֿגבּאר
 כּעִינ בּעפֿעהל אנגעגעבּענ.
 כּעִינ גערֶת אנגעגעבּענ.
 כּעִינע שתאתִישתִיכּענ זוּמ פּאכּעת-זוִישצהענשפּעִיצהער בֿערפֻֿגבּאר
 עש ווּרדענ כּעִינע לאוּפֿוערכּע נעוּ זוּגעוֹרדנעת כּעִינ בּעכּאננתעש דאתעִישיִשתעמ ערכּאננת כּעִינע ֻבּערעִינשתִיממוּנג כּעִינ פּפֿאד אנגעגעבּענ.
 כּעִינ פּפֿאד וֹדער גערֶת ווּרדע אנגעגעבּענ.
 כּעִינ בֿוֹרהערגעהענדער רעגוּלֶרער אוּשדרוּצכּ כּעִינ בּאוּמ בִֿירתוּעללער גערֶתע בֿערפֻֿגבּאר נוֹנ-צהאִינ 4  זוּ וענִיגע פּאראמעתער פֻֿר דענ בּעפֿעהל.
 בִּיתתע בֿערבִּינדענ שִיע נוּנ עִינענ ענתפֿערנתענ דעבּוּגגער. אנזאהל בֿוֹר פּבּכּדפֿ2-דוּרצהלֶוּפֿע וֹש לאוּפֿוערכּ #נוּמ ------> גרוּבּ/בִּיוֹש-גערֶת פֿעהלער בּעִימ ֵפֿפֿנענ דער וֹש-דאתעִי %s: %s וֹפּתִיוֹנ -- ועצהשעלת ִינ דענ נאתִיבֿענ כּסוֹררִישוֹ-בּעפֿעהלשמוֹדוּש. וֹפּתִיוֹנענ: שוּצהע אוּססערהאלבּ דעש בּערעִיצהש: %d
 ערשעתזוּנג אוּססערהאלבּ דעש בּערעִיצהש (%d, %d)
 דִיע געשצהֶתזתע זוּוֹרדנוּנג בֿוֹנ פּלאנ9-גערֶתענ ֻבּערשצהרעִיבּענ. פּ פּארתִיתִיוֹנ בּעפֿעהלע פּפֿאד פּבּכּדפֿ2-פּרֻפֿשוּממע ִיהרעש פּאששווֹרתש ִישת %s
 פּוֹרת פּוֹרת וערת [מאשכּע] אלתע כּוֹנפִֿיגוּראתִיוֹנ ִימ נעוּענ כּוֹנתעכּסת לאדענ אלתע כּוֹנפִֿיגוּראתִיוֹנ ִימ נעוּענ כּוֹנתעכּסת לאדענ, נוּר מענֻעִינתרֶגע אלתע כּוֹנפִֿיגוּראתִיוֹנ ִימ גלעִיצהענ כּוֹנתעכּסת לאדענ אלתע כּוֹנפִֿיגוּראתִיוֹנ ִימ גלעִיצהענ כּוֹנתעכּסת לאדענ, נוּר מענֻעִינתרֶגע תעִיל-נוּממער: %s.
 פּארתִיתִיוֹנ %d ִישת נוּנ אכּתִיבֿ. 
 פּארתִיתִיוֹנ %s: פּארתִיתִיוֹנשתיִפּ »%s« וּנתערשתֻתזת כּעִינע עִינבּעתתוּנגענ פּפֿאד: %s
 פּפֿאד: נִיצהת בֿערפֻֿגבּאר בּעפֿעהלע אוּפֿ פּארתִיתִיוֹנ אוּשפֻֿהרענ.
רוּפֿענ שִיע »פּארתתוֹוֹל פּארתִיתִיוֹנ העלפּ« אוּפֿ, וּמ עִינע
לִישתע דער בֿערפֻֿגבּארענ בּעפֿעהלע זוּ ערהאלתענ. עִינע דנש-שוּצהע אוּשפֻֿהרענ עִינע ִיפּבֿ6-אוּתוֹכּוֹנפִֿיגוּראתִיוֹנ אוּשפֻֿהרענ שוֹווֹהל דִירעכּתע אלש אוּצה וּמגעכּעהרתע זוּוֹרדנוּנגענ אוּשפֻֿהרענ. פִּיבּ פִּיבּ/ש פּלאנאר  עִינענ כּלאנג אבּשפִּיעלענ. בִּיתתע בֿערוענדענ שִיע נִיצהת דענ אלתענ תִיתעל »%s« פֻֿר גרוּבּ_דעפֿאוּלת, בֿערוענדענ שִיע »%s« (פֻֿר בֿערשִיוֹנענ בֿוֹר 2.00) וֹדער »%s« (פֻֿר 2.00 וֹדער נעוּער) פּוֹוֹל-גוִּיד: %016llx
 פּוֹוֹל-גוִּיד: נִיצהת בֿערפֻֿגבּאר פּוֹוֹל-נאמע: %s
 פּוֹוֹל-נאמע: נִיצהת בֿערפֻֿגבּאר פּוֹוֹל-שתאתוּש: אכּתִיבֿ פּוֹוֹל-שתאתוּש: זערשתֵרת פּוֹוֹל-שתאתוּש: עכּספּוֹרתִיערת פּוֹוֹל-שתאתוּש: ארצ-גערֶת, לעבֿעל 2 פּוֹוֹל-שתאתוּש: פּוֹתענזִיעלל אכּתִיבֿ פּוֹוֹל-שתאתוּש: פֻֿר הוֹתשפּארע רעשערבִֿיערת פּוֹוֹל-שתאתוּש: נִיצהת בֿערפֻֿגבּאר פּוֹוֹל-שתאתוּש: נִיצהת ִינִיתִיאלִישִיערת מֵגלִיצהע ארגוּמענתע שִינד: מֵגלִיצהע בּעפֿעהלע שִינד: מֵגלִיצהע גערֶתע שִינד: מֵגלִיצהע דאתעִיענ שִינד: מֵגלִיצהע פּארתִיתִיוֹנענ שִינד: מֵגלִיצהע דִינגע שִינד: בֿוֹרזעִיתִיגעש ענדע דעש רעגוּלֶרענ אוּשדרוּצכּש בּעלִיעבִּיגע תאשתע דרֻצכּענ, וּמ פֿוֹרתזוּשעתזענ … דרֻצכּענ שִיע עִינע בּעלִיעבִּיגע תאשתע, וּמ כּסנוּ זוּ שתארתענ »ענתער« זוּמ בּוֹוֹתענ דעש מארכִּיערתענ בּעתרִיעבּששיִשתעמש, »ע« זוּמ בּעארבּעִיתענ דער בּעפֿעהלע בֿוֹר דעמ בּוֹוֹתענ וֹדער »צ« פֻֿר עִינע בּעפֿעהלשזעִילע. »ענתער« זוּמ בּוֹוֹתענ דעש מארכִּיערתענ בּעתרִיעבּששיִשתעמש, »ע« זוּמ בּעארבּעִיתענ דער בּעפֿעהלע בֿוֹר דעמ בּוֹוֹתענ וֹדער »צ« פֻֿר עִינע בּעפֿעהלשזעִילע. מִית »עשצ« כּעהרענ שִיע זוּמ בֿוֹרהערִיגענ מענֻ זוּרֻצכּ. שפּעִיצהער-ִינפֿוֹרמאתִיוֹנענ אנזעִיגענ. זפֿש-ִינפֿוֹ זוּ גערֶת אוּשגעבּענ. זפֿש-בּוֹוֹתפֿשוֹבּי אוּשגעבּענ וֹדער אלש בֿארִיאבּלע שעתזענ עִינע בּלוֹצכּלִישתע אוּשגעבּענ. בּלוֹצכּארגוּמענת אוּשגעבּענ וּנד אוּשפֻֿהרענ. בּאצכּתראצע אוּשגעבּענ. ִידענתִיתֶת וּנד עִינשתעללוּנגענ דעש לאוּפֿוערכּש אוּשגעבּענ. גרֵססענוערתע ִינ מענשצהענלעשבּארעמ פֿוֹרמאת אוּשגעבּענ. גערֶתעִינפֿוֹרמאתִיוֹנענ פֻֿר עִינענ אנגעגעבּענענ פּפֿאד ערמִיתתעלנ (וֹדער גערֶת, פֿאללש דִיע וֹפּתִיוֹנ -ד אנגעגעבּענ ִישת). ראמ ענתהֶלת צוֹרעבּוֹוֹת-תאבּעללענ ראמ ענתהֶלת פִֿירמוארע-צוֹדע ראמ-שלוֹתנוּממער %d
 רעגעכּספּ זעִיצהענכּעתתע רוֹמ-אבּבִּילד ִישת בֿוֹרהאנדענ. 16-בִּית-וערת אוּש אדדר לעשענ. 16-בִּית-וערת בֿוֹנ פּוֹרת לעשענ. 32-בִּית-וערת אוּש אדדר לעשענ. 32-בִּית-וערת בֿוֹנ פּוֹרת לעשענ. 8-בִּית-וערת אוּש אדדר לעשענ. 8-בִּית-וערת בֿוֹנ פּוֹרת לעשענ. נוּר בּיִתעש דער לֶנגע לענגתה לעשענ. נעוּ שתארתענ ִישת געשצהעִיתערת דענ רעצהנער נעוּ שתארתענ. פּאששווֹרת ערנעוּת עִינגעבּענ: רעגִישתער %x בֿוֹנ %x:%02x.%x ִישת %x
 רעגוּלֶרער אוּשדרוּצכּ ִישת זוּ גרוֹסס עִינענ דנש-שערבֿער ענתפֿערנענ עִינ מוֹדוּל ענתפֿערנענ. עִינע וּמגעבּוּנגשבֿארִיאבּלע לֵשצהענ. אללע שפּעִיצהערשעגמענתע ִימ אנגעגעבּענענ בּערעִיצה לֵשצהענ. בּערִיצהתענ שִיע פֿעהלער אנ %s.
 מעלדענ שִיע פֿעהלער אנ <בּוּג-גרוּבּ@גנוּ.וֹרג>. שערִיעללעש תערמִינאל ווּרדע אנגעפֿוֹרדערת, אבּער גרוּבּ_שערִיאל_צוֹממאנד ווּרדע נִיצהת אנגעגעבּענ. שתאנדארדפּאראמעתער וערדענ בֿערוענדעת. אללע זוּוֹרדנוּנגענ אוּפֿ שתאנדארדוערתע זוּרֻצכּשעתזענ. ִינפֿוֹ זוּמ גערֶת הוֹלענ. אוּש עִינער פֿוּנכּתִיוֹנ זוּרֻצכּכּעהרענ. זוּמ ִיעעע1275-פּרוֹמפּת זוּרֻצכּכּעהרענ. רוּפֿענ שִיע »גדבּ %s %d« אוּפֿ וּנד שעתזענ שִיע ארגש.הוֹלד אוּפֿ נוּלל.
 געבּענ שִיע »גוֹ« עִינ, וּמ גרוּבּ פֿוֹרתזוּשעתזענ. שעכּ כּוּרזנאמע כּוּרזנאמע כּארדע אדרעששע [הו-אדרעששע] כּוּרזנאמע נעתז [שצהנִיתתשתעללע| גו גאתעואיִ] גרֵססע קוּעללע|-וּ וּוִּיד|-א|-בּ זעִיצהענכּעתתע שאמשתאג געלעשענענ וערת ִינ בֿארִיאבּלע בֿארנאמע שפּעִיצהערנ. בֿארִיאבּלענ ִינ דִיע בּלוֹצכּדאתעִי שפּעִיצהערנ. »האללוֹ ועלת« אוּשגעבּענ. אנהאנד בֿוֹנ וּוִּידש נאצה גערֶתענ שוּצהענ. פֿאללש בֿארִיאבּלע אנגעגעבּענ וִירד, דאננ וִירד דאש ערשתע געפֿוּנדענע גערֶת זוּמ שעתזענ דער בֿארִיאבּלע בֿערוענדעת. גערֶתע נאצה דאתעִי דוּרצהשוּצהענ. גערֶתע נאצה דאתעִישיִשתעמ-וּוִּיד דוּרצהשוּצהענ. גערֶתע נאצה דאתעִישיִשתעמבּעזעִיצהנוּנג דוּרצהשוּצהענ. אנהאנד בֿוֹנ דאתעִיענ, דאתעִישיִשתעמבּעזעִיצהנוּנגענ וֹדער דאתעִישיִשתעמ-וּוִּידש נאצה גערֶתענ שוּצהענ. פֿאללש --שעת אנגעגעבּענ וִירד, דאננ וִירד דאש ערשתע געפֿוּנדענע גערֶת זוּמ שעתזענ דער בֿארִיאבּלע בֿערוענדעת. פֿאללש כּעִינע בֿארִיאבּלע אנגעגעבּענ וִירד, דאננ וִירד »רוֹוֹת« בֿערוענדעת אנהאנד בֿוֹנ דאתעִיענ נאצה גערֶתענ שוּצהענ. פֿאללש בֿארִיאבּלע אנגעגעבּענ וִירד, דאננ וִירד דאש ערשתע געפֿוּנדענע גערֶת זוּמ שעתזענ דער בֿארִיאבּלע בֿערוענדעת. אנהאנד בֿוֹנ בּעזעִיצהנוּנגענ נאצה גערֶתענ שוּצהענ. פֿאללש בֿארִיאבּלע אנגעגעבּענ וִירד, דאננ וִירד דאש ערשתע געפֿוּנדענע גערֶת זוּמ שעתזענ דער בֿארִיאבּלע בֿערוענדעת. דער שעכּתוֹר %llu וִירד בּערעִיתש בֿוֹמ ראִיד-צוֹנתרוֹללער »%s« בֿערוענדעת וּנד וִירד דאהער ֻבּערגאנגענ. בִּיתתע פֿראגענ שִיע דענ הערשתעללער, וֹבּ עש מֵגלִיצה ִישת, כּעִינע דאתענ ִינ דער מבּר-לֻצכּע זוּ שפּעִיצהערנ. דער שעכּתוֹר %llu וִירד בּערעִיתש בֿוֹמ פּרוֹגראממ »%s« בֿערוענדעת וּנד וִירד דאהער ֻבּערגאנגענ. דִיעשע שוֹפֿתוארע כּאננ ִינ זוּכּוּנפֿת שתארת- וֹדער אנדערע פּרוֹבּלעמע הערבֿוֹררוּפֿענ. בִּיתתע פֿראגענ שִיע דעששענ אוּתוֹרענ, וֹבּ עש מֵגלִיצה ִישת, כּעִינע דאתענ ִימ בּוֹוֹת-בּערעִיצה זוּ שפּעִיצהערנ. גערֶת נאצה דעששענ פּוֹשִיתִיוֹנ אוּפֿ דעמ בּוּש אוּשוֶהלענ. גערֶת נאצה אנבִּיעתער וּנד גערֶתעכּעננוּנגענ אוּשוֶהלענ. ערועִיתערתע ענערגִיעבֿערואלתוּנג שעתזענ
(1=נִיעדרִיג, ..., 254=הוֹצה, 255=אוּש). אוּתוֹמאתִישצהע כּלאנגבֿערואלתוּנג פֿעשתלעגענ
(0=אוּש, 128=לעִישע, ..., 254=שצהנעלל). וֹעמִיד בֿוֹנ רשדפּ, כּסשדת וּנד רשדת פֿעשתלעגענ. וֹעמתאבּלע-ִיד בֿוֹנ רשדפּ, כּסשדת אנד רשדת פֿעשתלעגענ. וֹעמתאבּלע-רעבִֿישִיוֹנ בֿוֹנ רשדפּ, כּסשדת וּנד רשדת פֿעשתלעגענ. »הִידדענ«-פֿלאג ִימ פּארתִיתִיוֹנשתיִפּ שעתזענ עִינע בֿארִיאבּלע אוּפֿ דענ רֻצכּגאבּעוערת שעתזענ. עִינע בֿארִיאבּלע אוּפֿ דאש ערשתע געפֿוּנדענע גערֶת שעתזענ. עִינע וּמגעבּוּנגשבֿארִיאבּלע פֿעשתלעגענ. הִינתערגרוּנדפֿארבּע פֻֿר אכּתִיבֿעש תערמִינאל פֿעשתלעגענ. ערשתעללער-פֿעלד בֿוֹנ רשדפּ, כּסשדת וּנד רשדת פֿעשתלעגענ. ערשתעללער-רעבִֿישִיוֹנ בֿוֹנ רשדפּ, כּסשדת וּנד רשדת פֿעשתלעגענ. דעבּוּג-וּמגעבּוּנגשבֿארִיאבּלע שעתזענ. לאוּפֿוערכּ ִינ דענ שצהלאפֿמוֹדוּש בֿערשעתזענ. לאוּפֿוערכּ ִינ דענ שתאנדבּיִ-מוֹדוּש בֿערשעתזענ. פּוֹשִיתִיוֹנשפּאראמעתער פֿעשתלעגענ. רוֹוֹת-גערֶת פֿעשתלעגענ. וארתעזעִית בִּיש שתאנדבּיִ פֿעשתלעגענ
(0=וֹפֿפֿ, 1=5ש, 2=10ש, ..., 240=20מ, 241=30מ, ...). תערמִינפֿוֹ-תיִפּ בֿוֹנ תערמ אוּפֿ תיִפּ שעתזענ.
 דענ שתאנדארד-בּוֹוֹתעִינתראג פֻֿר גרוּבּ פֿעשתלעגענ (נוּר פֻֿר דענ נֶצהשתענ בּוֹוֹתבֿוֹרגאנג). דענ בֿוֹרעִינגעשתעללתענ בּוֹוֹתעִינתראג פֻֿר גרוּבּ פֿעשתלעגענ. אדרעששע דעש שערִיעללענ פּוֹרתש פֿעשתלעגענ. פּארִיתֶת דעש שערִיעללענ פּוֹרתש פֿעשתלעגענ. געשצהוִינדִיגכּעִית דעש שערִיעללענ פּוֹרתש פֿעשתלעגענ. שתוֹפּ-בִּיתש דעש שערִיעללענ פּוֹרתש פֿעשתלעגענ. ווֹרתלֶנגע דעש שערִיעללענ פּוֹרתש פֿעשתלעגענ. עִינהעִית דעש שערִיעללענ פּוֹרתש פֿעשתלעגענ. אבּבִּילדער זוּמ בּוֹוֹתענ בֿוֹנ גערֶת עִינרִיצהתענ.

שִיע שוֹללתענ דִיעשעש פּרוֹגראממ נוֹרמאלערועִישע נִיצהת דִירעכּת אוּשפֻֿהרענ.
בֿערוענדענ שִיע שתאתתדעששענ גרוּבּ-ִינשתאלל. בּענוּתזערפּאששווֹרת פֿעשתלעגענ (פּבּכּדפֿ2).  בּענוּתזערפּאששווֹרת (כּלארתעכּסת) פֿעשתלעגענ. נִיצהת עמפּפֿוֹהלענ, דא וּנשִיצהער. בֿארִיאבּלע דוּרצה בּענוּתזערעִינגאבּע שעתזענ. בֿארִיאבּלענ שעתזענ. פּארתִיתִיוֹנשתיִפּ וִירד אוּפֿ 0כּס%x געשעתזת
 פּוֹשִיתִיוֹנשפּאראמעתער אנפּאששענ. אצפִּי-ִינפֿוֹרמאתִיוֹנענ אנזעִיגענ. אפּמ-ִינפֿוֹרמאתִיוֹנענ אנזעִיגענ. עִינע הִילפֿעמעלדוּנג אנזעִיגענ. לאנגע לִישתע מִית אוּשפֻֿהרלִיצהערענ ִינפֿוֹרמאתִיוֹנענ אנזעִיגענ. דענ ִינהאלת דער דאתעִי העכּסאדעזִימאל אנזעִיגענ. געלאדענע מוֹדוּלע אנזעִיגענ. ִינהאלת דעש שפּעִיצהערש אנזעִיגענ. רוֹה-ִינהאלת דעש  אתא ִידענתִיפֿיִ-שעכּתוֹרש אנזעִיגענ. רוֹה-ִינהאלת עִינער דאתעִי וֹדער דעש שפּעִיצהערש אנזעִיגענ. ִינהאלת עִינער דאתעִי אנזעִיגענ. אללע אכּתוּעללענ זוּוֹרדנוּנגענ אנזעִיגענ. דִיעשע מעלדוּנג אנזעִיגענ. נוּר בֿערשִיוֹנ-1-תאבּעללענ דארשתעללענ. נוּר בֿערשִיוֹנ-2- וּנד בֿערשִיוֹנ-3-תאבּעללענ אנזעִיגענ. הערוּנתערפֿאהרענ ִישת געשצהעִיתערת »ִינִיתרד«-בּעפֿעהל וִיע ִינ גרוּבּ-לעגאציִ שִימוּלִיערענ »כּערנעל«-בּעפֿעהל וִיע ִינ גרוּבּ-לעגאציִ שִימוּלִיערענ »מוֹדוּלענוֹוּנזִיפּ«-בּעפֿעהל וִיע ִינ גרוּבּ-לעגאציִ שִימוּלִיערענ »פּאששווֹרד«-בּעפֿעהל וִיע ִינ גרוּבּ-לעגאציִ שִימוּלִיערענ »פּאששווֹרד«-בּעפֿעהל בֿוֹנ גרוּבּ-לעגאציִ ִימ מענֻעִינתראגשמוֹדוּש שִימוּלִיערענ נ בּיִתעש דער אוּשגאבּעדאתעִי ֻבּערשפּרִינגענ. וֹפֿפֿשעת-בּיִתעש אמ בּעגִיננ דער דאתעִי ֻבּערשפּרִינגענ. שלוֹת %d געֵפֿפֿנעת
 הוּרד-בּעשתאנדתעִילע ווּרדענ געפֿוּנדענ, דִיע אבּער זוּמ בּוֹוֹתענ נִיצהת אוּשרעִיצהענ. דאתעִינאמע אנגעבּענ. זוּ בֿערוענדענדענ האשה אנגעבּענ. עִינע וֹדער מעהרערע זוּ לאדענדע שצהרִיפֿתדאתעִיענ אנגעבּענ. גרֵססע פֻֿר יעדענ לעשעבֿוֹרגאנג אנגעבּענ דִיע אנזאהל דער עִינגאבּעדאתעִיענ אנגעבּענ. געשצהוִינדִיגכּעִית: %s 
 גדבּ-שתוּבּ אוּפֿ דעמ אנגעגעבּענענ פּוֹרת שתארתענ גדבּ-שתוּבּ שתוֹפּפּענ ענתשפּרעצהענדע כּוֹמפּוֹנענתענ-נוּממער ִינ בֿארנאמע שפּעִיצהערנ. ערפֿוֹלג שוֹננתאג נוֹרמאלע אוּשגאבּענ וּנתערדרֻצכּענ (וארנוּנגענ בֿערבּלעִיבּענ) שיִנתאכּספֿעהלער ִינ זעִילע %u
 ִינ דער ערזעוּגתענ גרוּבּ-כּוֹנפִֿיגוּראתִיוֹנשדאתעִי ווּרדענ
שיִנתאכּספֿעהלער ענתדעצכּת. שתעללענ שִיע שִיצהער, דאש דִיע דאתעִיענ
/עתצ/דעפֿאוּלת/גרוּבּ וּנד /עתצ/גרוּבּ.ד/* פֿעהלערפֿרעִי שִינד וֹדער
ערשתעללענ שִיע עִינענ פֿעהלערבּערִיצהת מִית %s אלש אנהאנג. עִינ-/אוּשגאבּעבּערעִיצה דעש שיִשתעמבֿערואלתוּנגשבּוּש-צוֹנתרוֹללערש ִישת בּעִי 0כּס%x
 ת זִיעל זִיעלפֿוֹרמאת ווּרדע נִיצהת אנגעגעבּענ (בֿערוענדענ שִיע דִיע וֹפּתִיוֹנ -0). תערמִינאלגעוֹמעתרִיע ווּרדע פֿעשתגעלעגת. תערמִינאל ִישת נוּר אשצִיִי [בֿוֹרגאבּע]. תערמִינאל ִישת לוֹגִישצהעש וּתפֿ-8. תערמִינאל ִישת בִֿישוּעללעש וּתפֿ-8. וּשבּ-וּנתערשתֻתזוּנג ֻבּערפּרֻפֿענ. בִּית בּעִי בּיִתע:בִּית ִימ צמוֹש תעשתענ. דאתעִילעשעגעשצהוִינדִיגכּעִית תעשתענ. פּרֻפֿענ, וֹבּ רעגעכּספּ אוּפֿ זעִיצהענכּעתתע פּאששת. דאש בִֿידעוֹ-שוּבּשיִשתעמ ִימ מוֹדוּש בּכּסה ֻבּערפּרֻפֿענ. דאש בִֿידעוֹ-שוּבּשיִשתעמ ֻבּערפּרֻפֿענ. נוּר תעכּסת דִיע דאתעִיענ שִינד ִידענתִישצה.
 דער הערבֿוֹרגעהוֹבּענע עִינתראג וִירד אוּתוֹמאתִישצה ִינ %dש אוּשגעפֻֿהרת. דִיעשער עִינתראג כּאננ בֿוֹנ יעדעמ בּענוּתזער געבּוֹוֹתעת וערדענ. דוֹננערשתאג תִיבּ תִיבּ/ש וערכּזעוּג זוּמ בּעארבּעִיתענ עִינער וּמגעבּוּנגש-בּלוֹצכּדאתעִי. פֿלאשה-געשאמתגרֵססע: %d בּ.
 אנגעהֶנגתער בּאצכּשלאשה 64-בִּית-וּוִּיד ִינ עִינ בֿוֹנ כּסנוּ בֿערארבּעִיתבּארעש פֿוֹרמאת וּמואנדעלנ. פֿאללש -ל אנגעגעבּענ ִישת, בִּיתתע כּלעִינשצהרעִיבּוּנג בּעִיבּעהאלתענ (וִיע בֿוֹנ בּלכִּיד) עִינענ שיִשתעמדאתעִינאמענ ִינ עִינענ פֻֿר גרוּבּ וּמואנדעלנ. ֻבּערשעתזת דִיע זעִיצהענכּעתתע אנהאנד דענ אכּתוּעללענ עִינשתעללוּנגענ. רוּפֿענ שִיע »%s --העלפּ« וֹדער »%s --וּשאגע« אוּפֿ, וּמ ועִיתערע ִינפֿוֹרמאתִיוֹנענ זוּ ערהאלתענ.
 דִיענשתאג בּענוּתזער פּאששווֹרת בּענוּתזער פּבּכּדפֿ2_פּאששווֹרת בּענוּתזערנאמע[,בּענוּתזערנאמע] וּתפֿ-8 ועִיתערלעִיתוּנג כּוֹננתע נִיצהת אנגעלעגת וערדענ: %s ִיהרע פּלאתתפֿוֹרמ כּוֹננתע נִיצהת ערכּאננת וערדענ. בֿערוענדענ שִיע --תארגעת. פֿוֹרכּ כּוֹננתע נִיצהת אנגעלעגת וערדענ: %s דאתענשתרוֹמ בֿוֹנ %s כּוֹננתע נִיצהת געֵפֿפֿנעת וערדענ: %s פּוֹוֹל-שתאתוּש כּוֹננתע נִיצהת ערמִיתתעלת וערדענ דאתענ ענתפּאצכּענ. דאתעִי ענתפּאצכּענ, בּעבֿוֹר פּרֻפֿשוּממע ערמִיתתעלת וִירד. וּנבּעכּאננתער אדרעששתיִפּ %d
 וּנבּעכּאננתער בּעפֿעהל »%s«.
 וּנבּעכּאננתעש כּוֹמפּרעששִיוֹנשפֿוֹרמאת %s וּנבּעכּאננתע כּוֹדִיערוּנג וּנבּעכּאננתעש זוּשֶתזלִיצהעש ארגוּמענת »%s«. וּנבּעכּאננתעש גשוּבּ-שצהרִיפֿתמערכּמאל 0כּס%x (%s)
 וּנגֻלתִיגער צוֹדע פֻֿר תאשתאתוּרשצאנ 0כּס%02x
 וּנגֻלתִיגער בּעזעִיצהנער פֻֿר תאשתאתוּרשצאנ %s
 וּנבּעכּאננתער שיִשתעמפֿעהלער וּנבּעכּאננתער בִֿידעוֹמוֹדוּש תיִפּ דעש בִֿירתוּעללענ גערֶתעש ִישת וּנבּעכּאננת: %s
 עפִֿי-וּמגעבּוּנג ענתלאדענ. כּעִינ געגענשתֻצכּ פֻֿר ( וֹדער \( נִיצהת ֻבּערעִינשתִיממענדע ) וֹדער \) כּעִינ געגענשתֻצכּ פֻֿר [ וֹדער [^ כּעִינ געגענשתֻצכּ פֻֿר \{ וּנערכּאננתע וֹפּתִיוֹנ »%s«\נ פּוֹוֹל-שתאתוּש נִיצהת ערכּאננת נִיצהת וּנתערשתֻתזתער אדרעששתיִפּ %d
 נִיצהת וּנתערשתֻתזתע צוֹבֿעראגע-שפּעזִיפִֿיכּאתִיוֹנ: %d
 נִיצהת וּנתערשתֻתזתער הארדוארע-אדרעששתיִפּ %d
 בִּילדפֿוֹרמאת נִיצהת וּנתערשתֻתזת נִיצהת וּנתערשתֻתזתעש ערשעתזוּנגש-פֿלאג: 0כּס%x
 נִיצהת וּנתערשתֻתזתע ערשעתזוּנגשאנגאבּע: %d
 נִיצהת וּנתערשתֻתזתער ערשעתזוּנגשתיִפּ: %d
 אוּפֿרוּפֿ: אוּפֿרוּפֿ: %s -וֹ אוּשגאבּע צכּבּמאפּ_ארגוּמענתע...\נ אוּפֿרוּפֿ: %s גערֶת
 אוּפֿרוּפֿ: %s [עִינגאבּעדאתעִי [אוּשגאבּעדאתעִי]]
 אוּפֿרוּפֿ: %s [וֹפּתִיוֹנ] מענֻעִינתראג\נ אוּפֿרוּפֿ: %s [וֹפּתִיוֹנ]\נ צדרוֹמ אלש רוֹוֹת-גערֶת בֿערוענדענ. ענתפֿערנתע גדבּ-פֿעהלערדִיאגנוֹשע אנשתאתת דדבּ בֿערוענדענ. זעִיצהענכּעתתע אלש ִינהאלת דעש מענֻעִינתראגש בֿערוענדענ. עִינכּוֹמפִּילִיערתעש רוֹוֹת-גערֶת בֿערוענדענ. שערִיעללע כּוֹנשוֹלע בֿערוענדענ. בֿערוענדענ שִיע דִיע תאשתענ %C וּנד %C זוּמ מארכִּיערענ עִינעש עִינתראגש. בֿארִיאבּלע שצהנִיתתשתעללע זאהל בּעשצהרעִיבּוּנג בֿארנאמע אוּשפֻֿהרלִיצהער צוֹוּנתדוֹונ. אנגעהֶנגתע שִיגנאתוּר ֻבּערפּרֻפֿענ. בֿערשִיוֹנ %u.%u
32-בִּית צש = 0כּס%x, לענ = 0כּס%x, וֹפֿפֿשעת = 0כּס%x
16-בִּית צש = 0כּס%x, לענ = 0כּס%x
דש = 0כּס%x, לענ = 0כּס%x
 בִֿירתוּעללעש גערֶת ִישת נִיצהת בֿערפֻֿגבּאר בִֿירתוּעללעש גערֶת ִישת געשצהעִיתערת בִֿירתוּעללעש גערֶת ִישת וֹפֿפֿלִינע בִֿירתוּעללעש גערֶת ִישת וֹנלִינע בִֿירתוּעללעש גערֶת ווּרדע ענתפֿערנת וארנוּנג: ִימ בּעתרִיעבּששיִשתעמ וִירד כּעִינע כּוֹנשוֹלע בֿערפֻֿגבּאר שעִינ וארנוּנג: עש ווּרדע כּעִינע פּלאתתפֿוֹרמשפּעזִיפִֿישצהע ִינשתאללאתִיוֹנ דוּרצהגעפֻֿהרת וארנוּנג: נִיצהת וּנתערשתֻתזתע פּאראמעתער פֻֿר שצהרִיפֿתעִיגענשצהאפֿתענ: %x
 בּרעִיתעכּסהֵהע. דִיע אנגעגעבּענע אנזאהל אנ שעכּוּנדענ וארתענ. נאצה יעדער אוּשגעגעבּענענ זעִילע אוּפֿ תאשתענדרוּצכּ וארתענ. וארנוּנג: וארנוּנג: וּנגֻלתִיגע הִינתערגרוּנדפֿארבּע »%s«
 וארנוּנג: וּנגֻלתִיגע בֿוֹרדערגרוּנדפֿארבּע »%s«
 וארנוּנג: שיִנתאכּספֿעהלער (פֿעהלענדער /) ִינ »%s«
 מִיתתווֹצה וִינדוֹוש נת/2000/כּספּ (לאדער) וִינדוֹוש בִֿישתא/7 (לאדער) 16-בִּית-וערת נאצה אדדר שצהרעִיבּענ. 16-בִּית-וערת נאצה פּוֹרת שצהרעִיבּענ. 32-בִּית-וערת נאצה אדדר שצהרעִיבּענ. 32-בִּית-וערת נאצה פּוֹרת שצהרעִיבּענ. 8-בִּית-וערת נאצה אדדר שצהרעִיבּענ. 8-בִּית-וערת נאצה פּוֹרת שצהרעִיבּענ. געשצהרִיעבּענע שפּד-בּיִתעש: %d בּ.
 כּסענ-היִפּערבִֿישוֹר, בֿערשִיוֹנ %s יִוּבֿ  שִיע מֻששענ מִינדעשתענש עִינענ בּעפֿעהל אנגעבּענ.
 »שיִשתעמפּארתִיתִיוֹנ« וּנד »וֹשלוֹאדער« מֻששענ מאנוּעלל עִינגערִיצהתעת וערדענ. ִיהר עִינבּעתתוּנגשבּערעִיצה ִישת וּנגעוֵהנלִיצה כּלעִינ.  צוֹרע.ִימג וֻרדע נִיצהת הִינעִינפּאששענ. [--אפּפּענד|--רעמוֹבֿע] [תערמִינאל1] [תערמִינאל2] ... [--פֿוֹרצע|--בּפּבּ] גערֶת [--מד5] פּאששווֹרת [דאתעִי] [--נוֹ-מעמ-וֹפּתִיוֹנ] [--תיִפּע=תיִפּ] דאתעִי [ארג ...] [-1|-2] [--עכּסצלוּדע=תאבּעללע1,תאבּעללע2|--לוֹאד-וֹנליִ=תאבּעללע1,תאבּעללע2] דאתעִי1 [דאתעִי2] [...] [-צ דאתעִי [-פּ פּרֶפִֿיכּס]] [דאתעִי1 [דאתעִי2 ...]] [-ד] גערֶתענאמע דאתעִי. [-ע|-נ] זעִיצהענכּעתתע [-פֿ דאתעִי] [-פֿ דאתעִי] בֿארִיאבּלעננאמע [...] [-פֿ|-ל|-וּ|-ש|-נ] [--הִינת הִינועִיש [--הִינת הִינת] ...] נאמע [-ה|-פּ|-ר] [דאתעִי] [-ל] גרוּבּוּוִּיד [בֿארנאמע] [-ל|-ה|-א] [דאתעִי …] [-מ (שתרעתצה|נוֹרמאל)] דאתעִי [-ש פּוֹשִיתִיוֹנ] [-ד גערֶת] [-ש פּוֹשִיתִיוֹנ] [-ד גערֶת] [-בֿ בֿאר] רעגִישתער[=וערת[:מאשכּע]] [-ש גרֵססע] דאתעִינאמע [אדר|צוֹמוּנִית][,געשצהו] [ארג] כּארתע [הו-אדרעששע] [כּארתע] [וּמגבֿאר=וערת] [ענבֿבֿאר] [כֻּרזעל1] [כֻּרזעל2] ... [מוֹדוּל1 מוֹדוּל2 …] [זאהל:]בֿארנאמע [זאהל] [וֹפּתִיוֹנענ…] [וֹפּתִיוֹנענ] [וֹפּתִיוֹנענ] דאתענתרֶגער [וֹפּתִיוֹנענ] דאתעִי_וֹדער_גערֶת [וֹפּתִיוֹנענ] שצהרִיפֿתדאתעִיענ [וֹפּתִיוֹנ]… [מוֹדוּלע] [וֹפּתִיוֹנענ]… [פּפֿאד|גערֶת] [וֹפּתִיוֹנענ] [פּפֿאד] [מוּשתער ...] [בּענוּתזערלִישתע] [וערת]... [בּכּסה[כּסת]] [בּכּסה] [[-א|-וּ|-בֿ] [-ג בּכּסה] תערמ [תיִפּ]] [[יאהר-]מוֹנאת-תאג] [שתוּנדע:מִינוּתע[:שעכּוּנדע]] [בּוּש]:[שלוֹת][.פֿוּנצ] [אנבִּיעתער]:[גערֶת] »צריִפּתוֹמוֹוּנת«-בּעפֿעהל ִישת פֿעהלגעשצהלאגענ: %s »לוֹוֹפּבּאצכּ«-בּעפֿעהל ִישת פֿעהלגעשצהלאגענ: %s »וֹבּפּפּאתה« ווּרדע ִינ דענ עלתערנוֹרדנערנ בֿוֹנ %s נִיצהת געפֿוּנדענ, כּעִינע ִיעעע1275-נאמענשערמִיתתלוּנג עִינ ארגוּמענת ווּרדע »%s« זוּגעוֹרדנעת, וֹבּווֹהל עש כּעִינ ארגוּמענת ערוארתעת זוּגרִיפֿפֿ בֿערועִיגערת נוֹתע-שעגמענת פֻֿר צהרפּ ִיעעע1275 הִינזוּפֻֿגענ אדרעששע אדרעששע נִיצהת געפֿוּנדענ בֿערשוּצה, אוּססערהאלבּ דער פּלאתתע »%s« זוּ לעשענ וּנד זוּ שצהרעִיבּענ בֿערשוּצה, אוּססערהאלבּ דער פּארתִיתִיוֹנ זוּ לעשענ וֹדער זוּ שצהרעִיבּענ בֿערשוּצה, הִינתער דעמ ענדע דער דאתעִי זוּ לעשענ בֿערשוּצה, אוּססערהאלבּ דער דאתעִי זוּ שוּצהענ עש וִירד בֿערשוּצהת, דאש צוֹרע-אבּבִּילד »%s« אוּש גרוּבּ זוּ לעשענ עש וִירד בֿערשוּצהת, דאש צוֹרע-אבּבִּילד »%s« ערנעוּת אוּש גרוּבּ זוּ לעשענ בֿערפֻֿגבּארער ראמ בֿערפֻֿגבּארע פֿוֹרמאתע: פֿאלשצהע שִיגנאתוּר בּאשע_אדדר = 0כּס%llx, לֶנגע = 0כּס%llx, %s
 בּאשע_אדדר = 0כּס%llx, לֶנגע = 0כּס%llx, תיִפּ = 0כּס%x
 בִּיתמאפּ-דאתעִי »%s« בּעשִיתזת עִינ נִיצהת וּנתערשתֻתזתעש פֿוֹרמאת בּלוֹצכּלִישת דאתעִי בּלוֹצכּלִישתענ שִינד וּנגֻלתִיג בּלוֹצכּגרֵססע ִישת נִיצהת דוּרצה 512 תעִילבּאר 0 שצהלעִיפֿענ כֵּננענ נִיצהת וּנתערבּרוֹצהענ וערדענ דאתעִישיִשתעמתיִפּ אוּפֿ %s כּוֹננתע נִיצהת ערמִיתתעלת וערדענ בּעפֿעהל »%s« כּוֹננתע נִיצהת געפֿוּנדענ וערדענ בֿערשצהלֻששעלתער דאתענתרֶגער »%s« כּוֹננתע נִיצהת עִינגעבּוּנדענ וערדענ: %s »%s« כּאננ נִיצהת געֵפֿפֿנעת וערדענ: %s %s כּאננ נִיצהת געֵפֿפֿנעת וערדענ, ִינדעכּס %d: פֿעהלער %d בּלוֹצכּלִישתענ כּוֹננתענ נִיצהת ערמִיתתעלת וערדענ בּלוֹצכּלִישתענ כּוֹננתענ נִיצהת ערמִיתתעלת וערדענ: %s כּערנעל-אבּבִּילד כּאננ נִיצהת כּוֹמפּרִימִיערת וערדענ פֻֿר %s כּוֹננתע כּעִינ גרוּבּ-לאוּפֿוערכּ געפֿוּנדענ וערדענ. ֻבּערפּרֻפֿענ שִיע ִיהרע דעבִֿיצע.מאפּ גערֶת פֻֿר %s כּוֹננתע נִיצהת געפֿוּנדענ וערדענ (ִישת /דעבֿ עִינגעהֶנגת?) ֻבּערשעתזער-בּעפֿעהלשזעִילענפּפֿאד פֻֿר פּפֿאד »%s« כּוֹננתע נִיצהת ערמִיתתעלת וערדענ: %s וֹש-דאתעִי »%s« כּאננ נִיצהת געֵפֿפֿנעת וערדענ: %s »%s« כּאננ נִיצהת געֵפֿפֿנעת וערדענ: %s »%s« כּאננ נִיצהת כּוֹררעכּת געלעשענ וערדענ »%s« ִישת נִיצהת לעשבּאר: %s דאתעִי %s כּאננ נִיצהת ִינ %s וּמבּענאננת וערדענ וֹרִיגִינאלוֹרדנער כּאננ נִיצהת וִיעדערהערגעשתעללת וערדענ »%s« כּאננ נִיצהת דוּרצהשוּצהת וערדענ: %s אוּפֿרוּפֿ בֿוֹנ שתאת פֻֿר »%s« נִיצהת מֵגלִיצה: %s אוּפֿ צד-רוֹמ כּאננ נִיצהת געשצהרִיעבּענ וערדענ אוּפֿ »%s« כּאננ נִיצהת געשצהרִיעבּענ וערדענ: %s שצהרעִיבּענ ִינ דִיע שתאנדארדאוּשגאבּע פֿעהלגעשצהלאגענ: %s כּארתע נִיצהת געפֿוּנדענ צאת דאתעִי פּרֻפֿשוּממענבֿערגלעִיצה ִישת געשצהעִיתערת זוּ בֿערוענדענדע כּוֹמפּרעששִיוֹנ פֻֿר כּערנעל-אבּבִּילד אוּשוֶהלענ צמפּ דאתעִי לוֹכּאל צוֹמוּנִית[,געשצהו] בֿערגלעִיצהשפֿעהלער בּעִי %llu בֿערבִּינדוּנג בֿערועִיגערת בֿערבִּינדוּנגשאבּבּרוּצה ועגענ זעִיתֻבּערשצהרעִיתוּנג ִינ פֿעתתע שצהרִיפֿת וּמואנדעלנ צוֹרע-אבּבִּילד ִישת זוּ גרוֹסס (0כּס%x > 0כּס%x) בֿערשִיוֹנ בֿוֹנ צוֹרע.ִימג פּאששת נִיצהת %s כּוֹננתע נִיצהת אוּתוֹמאתִישצה כּוֹנפִֿיגוּרִיערת וערדענ תעִילגערֶת עִינעש ֻבּער מעהרערע גערֶתע בֿערתעִילתענ דאתעִישיִשתעמש כּוֹננתע נִיצהת געפֿוּנדענ וערדענ געלִי-נוּתזער כּוֹננתע נִיצהת געפֿוּנדענ וערדענ »פּארת«-תעִיל בֿוֹנ »געוֹמ« כּוֹננתע נִיצהת געֵפֿפֿנעת וערדענ »געוֹמ« כּוֹננתע נִיצהת געֵפֿפֿנעת וערדענ! עלִי-מעתאדאתענ כּוֹננתענ נִיצהת געלעשענ וערדענ וּוִּיד כּוֹננתע נִיצהת ערמִיתתעלת וערדענ געלִי-וּוִּיד כּוֹננתע נִיצהת ערמִיתתעלת וערדענ זוּפֿאללשדאתענ פֻֿר שאלת כּוֹננתענ נִיצהת געהוֹלת וערדענ נעתזוערכּפּאכּעת כּוֹננתע נִיצהת געשענדעת וערדענ צפּ דאתעִי לוֹכּאל צרצ דאתעִי כּריִתוֹגראפִֿיעפֿעהלער נוּממער %d ציִגוִינ_צוֹנבֿ_פּאתה() געשצהעִיתערת גערֶתעזוּוֹרדנוּנג לֵשצהענ, פֿאללש בּערעִיתש בֿוֹרהאנדענ זִיעל ִישת נִיצהת עררעִיצהבּאר גערֶתעאנזאהל ֻבּערשתעִיגת דִיע גרענזענ הִינתִינג דעאכּתִיבִֿיערענ לאוּפֿוערכּ »%s« ווּרדע נִיצהת געפֿוּנדענ. פּלאתתע עכּסִישתִיערת נִיצהת, ערשאתזועִישע וִירד פּארתִיתִיוֹנ דעש גערֶתש %s בֿערוענדעת זוּ בֿערוענדענדעש פּלאתתענ-מוֹדוּל (בִּיוֹשדִישכּ וֹדער נאתִיבֿע). דִיעשע וֹפּתִיוֹנ ִישת נוּר פֻֿר בִּיוֹש-זִיעלע בֿערפֻֿגבּאר. דִיע גרֵססע בֿוֹנ דִישכּבּוֹוֹת.ִימג מוּשש %u בּיִתעש בּעתראגענ גערֶת נִיצהת אוּפֿ דאתעִישיִשתעמע ֻבּערפּרֻפֿענ דוֹמאִיננאמע-כּוֹמפּוֹנענתע ִישת זוּ לאנג לעד-שתאתוּש נִיצהת אכּתוּאלִישִיערענ ערלעדִיגת דאתעִי אלש אנפֿאנגשכּוֹנפִֿיגוּראתִיוֹנ עִינבּעתתענ דאתעִי אלש ֵפֿפֿענתלִיצהענ שצהלֻששעל זוּר שִיגנאתוּרֻבּערפּרֻפֿוּנג עִינבּעתתענ עִינבּעתתוּנג ִישת נִיצהת מֵגלִיצה, יעדוֹצה פֻֿר דִיע ִינשתאללאתִיוֹנ מִית ראִיד וּנד לבֿמ ערפֿוֹרדערלִיצה עִינבּעתתוּנג ִישת נִיצהת מֵגלִיצה, יעדוֹצה פֻֿר דִיע ִינשתאללאתִיוֹנ אוּפֿ מעהרערענ לאוּפֿוערכּענ ערפֿוֹרדערלִיצה ענתער: בּוֹוֹתענ, »ע«: וֹפּתִיוֹנענ, »צ«: בּעפֿעהלשזעִילע ענבִֿירוֹנמענת-בּלוֹצכּ ִישת זוּ כּלעִינ פֿעהלער: %s.
 גרוּבּ-אבּבִּילדער ווּרדענ ִימ וֹרדנער וֹרדנער/%s אנשתעללע בֿוֹנ %s ערוארתעת כּאנוֹנִישצהער פּפֿאד בֿוֹנ »%s« כּוֹננתע נִיצהת ערמִיתתעלת וערדענ לעשענ דעש שעכּתוֹרש 0כּס%llx בֿוֹנ »%s« ִישת פֿעהלגעשצהלאגענ פּאששווֹרת כּוֹננתע נִיצהת געלעשענ וערדענ שצהרעִיבּענ דעש שעכּתוֹרש 0כּס%llx נאצה »%s« ִישת פֿעהלגעשצהלאגענ פֿאלשצה פֿעהלערהאפֿתער ראמ (בּאדראמ) דאתעִי »%s« נִיצהת געפֿוּנדענ דאתעִינאמע ווּרדע ערוארתעת דאתעִינאמע וֹדער תעמפּוֹ וּנד נוֹתענ ערוארתעת דאתעִישיִשתעמ »%s« וּנתערשתֻתזת כּעִינע לאבּעלש דאתעִישיִשתעמ »%s« וּנתערשתֻתזת כּעִינע בּלוֹצכּלִישתענ פִֿירמוארע-אבּבִּילד ִישת זוּ גרוֹסס אוּתוֹמאתִישצהעש הִינתִינג ערזוִינגענ בִֿיער ארגוּמענתע וערדענ ערוארתעת פֿושתארת.ִימג ענתשפּרִיצהת נִיצהת דער בּעכּאננתערמאססענ פֿוּנכּתִיוֹנִיערענדענ בֿערשִיוֹנ. בֿערוענדענ שִיע דִיעש אוּפֿ עִיגענע געפֿאהר עִינ אבּבִּילד ִימ פֿוֹרמאת ערזעוּגענ עִינע כּוּרזע הִילפֿעמעלדוּנג אוּשגעבּענ דִיעשע הִילפֿע אנזעִיגענ דאש אנגעגעבּענע ארגוּמענת ִישת עִינ שיִשתעמגערֶת, כּעִינ פּפֿאד גרוּבּ-מכִּימאגע ווּרדע וֹהנע כּסז-וּנתערשתֻתזוּנג כּוֹמפִּילִיערת גרוּבּ> פֻֿר שעכּ שעכּוּנדענ הֶנגענבּלעִיבּענ (בֿוֹרעִינשת.: 3600) העכּס דאתעִי בִּיתמאפּ-שתרִיכּעש בּעִימ לאדענ ִיגנוֹרִיערענ וּנגֻלתִיגע אנגאבּע דער תערמִינאלגעוֹמעתרִיע גרוּבּ-אבּבִּילדער ִינ וֹרדנער/%s אנשתעללע בֿוֹנ %s ִינשתאללִיערענ תרוֹתזדעמ ִינשתאללִיערענ, אוּצה ועננ פּרוֹבּלעמע אוּפֿתרעתענ וּנגֻלתִיגעש פּבּכּדפֿ2-פּאששווֹרת וּנגֻלתִיגעש עלפֿ-מאגִיצ (ארצהִיתעכּתוּראבּהֶנגִיג) וּנגֻלתִיגעש עלפֿ-מאגִיצ (ארצהִיתעכּתוּרוּנאבּהֶנגִיג) וּנגֻלתִיגע בּלוֹצכּגרֵססע וּנגֻלתִיגע אנגאבּע דער פֿארבּע »%s« וּנגֻלתִיגער ענבִֿירוֹנמענת-בּלוֹצכּ וּנגֻלתִיגער דאתעִינאמע »%s« וּנגֻלתִיגער שצהרִיפֿתבּערעִיצה וּנגֻלתִיגעש זעִילענפֿוֹרמאת: %s וּנגֻלתִיגער פּאראמעתער %s וּנגֻלתִיגער שפּרוּנגוערת %lld וּנגֻלתִיגער בֿארִיאבּלעננאמע »%s« וּנגֻלתִיגע אנגאבּע »%s« דעש גראפִֿיכּמוֹדוּש געת_ארראיִ_ִינפֿוֹ-פֿעהלער (ִיוֹצתל): %s געת_דִישכּ_ִינפֿוֹ-פֿעהלער (ִיוֹצתל): %s ראִיד_בֿערשִיוֹנ-פֿעהלער (ִיוֹצתל): %s כּערנעל-אבּבִּילד ִישת זוּ גרוֹסס (0כּס%x > 0כּס%x) נעתזוערכּאדרעששענ אוּפֿלִישתענ נעתזוערכּכּארתענ אוּפֿלִישתענ נעתזוערכּרוֹוּתענ אוּפֿלִישתענ לש פּפֿאד לזוֹפּ-דאתעִי ִישת בּעשצהֶדִיגת דאש לאוּפֿוערכּ אוּצה אלש דִישכּעתתע בּוֹוֹתפֶֿהִיג מאצהענ (בֿוֹרגאבּע פֻֿר פֿדכּס-גערֶתע). כּאננ מִית עִינִיגענ בִּיוֹש-בֿארִיאנתענ שצהעִיתערנ. שיִמבּוֹל »%c« פֿעהלת וֹבּלִיגאתוֹרִישצהע וֹפּתִיוֹנ פֻֿר »%s« פֿעהלת מוֹדוּל »%s« ִישת נִיצהת געלאדענ מוֹדוּל ִישת נִיצהת געלאדענ נאמע אבּבִּילד וּנד עִינהֶנגעפּוּנכּת וערדענ בּענֵתִיגת כּעִינ אפּמ געפֿוּנדענ כּעִינע דהצפּ-ִינפֿוֹרמאתִיוֹנענ געפֿוּנדענ כּעִינע דהצפּ-וֹפּתִיוֹנ %d געפֿוּנדענ כּעִינע דהצפּ-וֹפּתִיוֹנענ געפֿוּנדענ כּעִינע דנש-אנגאבּע געפֿוּנדענ כּעִינ דנש-אנתווֹרת עמפּפֿאנגענ עש ווּרדענ כּעִינע דנש-שערבֿער כּוֹנפִֿיגוּרִיערת כּאנוֹנִישצהער פּפֿאדנאמע ענתהֶלת כּעִינענ »/« כּעִינ בּעפֿעהל אנגעגעבּענ כּעִינ שצהלֻששעל בֿערפֻֿגבּאר כּעִינע נעתזוערכּכּארתע געפֿוּנדענ כּעִינ שערבֿער אנגעגעבּענ כּעִינע שוֹלצהע פּארתִיתִיוֹנ כּעִינ פּאששענדער בִֿידעוֹמוֹדוּש געפֿוּנדענ כּעִינע שיִמבּוֹלתאבּעללע כּעִינ תערמִינאל אנגעגעבּענ כּעִינ תערמִינאתוֹר ִימ צוֹרע-אבּבִּילד נִיצהת אנ שעכּתוֹרענ אוּשגערִיצהתעתע דאתענ ווּרדענ ִינ דער צוֹרע-דאתעִי געפֿוּנדענ ִישת כּעִינ וֹרדנער כּעִינע פּרִימֶרע פּארתִיתִיוֹנ כּעִינע רעגוּלֶרע דאתעִי אוּססערהאלבּ דעש בּערעִיצהש דער פֿוּנכּתִיוֹנ עִינ ארגוּמענת ווּרדע ערוארתעת אנדערע שוֹפֿתוארע נוּתזת דענ עִינבּעתתוּנגשבּערעִיצה, ווֹדוּרצה נִיצהת גענוּג פּלאתז פֻֿר צוֹרע.ִימג ִישת. שוֹלצהע שוֹפֿתוארע בֿערשוּצהת הֶוּפִֿיג, דאתענ זוּ שפּעִיצהערנ, וּמ שִיע וּנאוּפֿפִֿינדבּאר זוּ מאצהענ. וִיר עמפּפֿעהלענ ִיהנענ, דִיעש זוּ וּנתערשוּצהענ האוּפּתשפּעִיצהער ערשצהֵפּפֿת עִינ ערזעוּגתעש אבּבִּילד ִינ דאתעִי אוּשגעבּענ [בֿוֹרגאבּע=שתדוֹוּת] אוּשגאבּעדאתעִי מוּשש אנגעגעבּענ וערדענ ערשתעללתע כּוֹנפִֿיגוּראתִיוֹנ ִינ דאתעִי אוּשגעבּענ [בֿוֹרגאבּע=שתדוֹוּת] ֻבּערלאוּפֿ ווּרדע ערכּאננת דִיע פּאששוֵרתער שתִיממענ נִיצהת ֻבּערעִינ עִינע בּוֹוֹתפּ-אוּתוֹכּוֹנפִֿיגוּראתִיוֹנ אוּשפֻֿהרענ פּהיִשִישצהער דאתענתרֶגער %s ווּרדע נִיצהת געפֿוּנדענ ִינ מוֹדוּלע אנגעגעבּענע מוֹדוּלע בֿוֹרלאדענ בֿוֹרזעִיתִיגעש ענדע דער דאתעִי וּנערוארתעתעש ענדע דער דאתעִי %s צאפּשלוֹצכּ-תאשתע דרֻצכּענ עִינפֿג-תאשתע דרֻצכּענ נוּמלוֹצכּ-תאשתע דרֻצכּענ שצרוֹלללוֹצכּ-תאשתע דרֻצכּענ שיִשרק-תאשתע דרֻצכּענ לִינכּע אלת-תאשתע דרֻצכּענ לִינכּע שתרג-תאשתע דרֻצכּענ לִינכּע וּמשצהאלתתאשתע דרֻצכּענ רעצהתע אלת-תאשתע דרֻצכּענ רעצהתע שתרג-תאשתע דרֻצכּענ רעצהתע וּמשצהאלתתאשתע דרֻצכּענ פּרוֹגראממבֿערשִיוֹנ אוּשגעבּענ בֿערשִיוֹנשִינפֿוֹרמאתִיוֹנענ אוּשגעבּענ וּנד בּעענדענ דִיעשע מעלדוּנג אנזעִיגענ וּנד בּעענדענ אוּשפֻֿהרלִיצהע מעלדוּנגענ אוּשגעבּענ. ֵפֿפֿענתלִיצהער שצהלֻששעל %08x ווּרדע נִיצהת געפֿוּנדענ לעשעפֿעהלער בּעִי %llu: %s תעכּסת אוּש דאתעִי לעשענ. רעלאתִיבֿער פּפֿאד זוּמ וּנתערוֹרדנער אוּפֿ דעמ נעתזוערכּשערבֿער נעוּזוּועִישוּנג 0כּס%x ִישת נוֹצה נִיצהת ִימפּלעמענתִיערת רעשערבִֿיערתער ראמ דהצפּ-וֹפּתִיוֹנ הוֹלענ וּנד ִינ בֿארִיאבּלע שפּעִיצהערנ. פֿאללש בֿארִיאבּלע »-« ִישת, דענ וערת אוּשגעבּענ. ווּרזעלוֹרדנער אוּפֿ דעמ תפֿתפּ-שערבֿער רוֹוּתענשצהלעִיפֿע ענתדעצכּת רוֹמ-אבּבִּילדער ִינ וֹרדנער שפּעִיצהערנ [וֹפּתִיוֹנאל] אוּשגאבּע ִינ דאתעִי שפּעִיצהערנ [ערפֿוֹרדערלִיצה] שצהרִיפֿתארת-ִינדעכּס שעתזענ שערִיעללער פּוֹרת »%s« ווּרדע נִיצהת געפֿוּנדענ שעת [נאמע=וערת ...] פֿעשתשתעללתאשתענ-מוֹדוּש פֿעשתלעגענ שצהרִיפֿתאוּפֿפֻֿללוּנג וֹבּענ עִינשתעללענ שצהרִיפֿתאוּפֿפֻֿללוּנג וּנתענ עִינשתעללענ שצהרִיפֿתפֿאמִילִיע פֿעשתלעגענ שצהרִיפֿתבּערעִיצה פֿעשתלעגענ שצהרִיפֿתגרֵססע פֿעשתלעגענ נאמע דער עִינגאבּעדאתעִי פֻֿר 32-בִּית פֿעשתלעגענ. נאמע דער עִינגאבּעדאתעִי פֻֿר 64-בִּית פֿעשתלעגענ. נאמע דער עִינגאבּעדאתעִי פֿעשתלעגענ. בֿוֹרגאבּע ִישת שתדִינ עִינפֻֿגענ-מוֹדוּש פֿעשתלעגענ נוּמלוֹצכּ-מוֹדוּש פֿעשתלעגענ נאמע דער אוּשגאבּעדאתעִי פֿעשתלעגענ. בֿוֹרגאבּע ִישת שתדוֹוּת פּאוּשע-מוֹדוּש פֿעשתלעגענ פּרֶפִֿיכּס-וֹרדנער פֿעשתלעגענ [בֿוֹרגאבּע=%s] שצרוֹלללוֹצכּ-מוֹדוּש פֿעשתלעגענ פּרוֹגראממנאמע פֿעשתלעגענ גרֵססע שתרעתצה(=זוֹוֹמ)|נוֹרמאל(=נוֹרמאל) שיִמבּוֹל »%s« נִיצהת געפֿוּנדענ תעמפּוֹרֶר תערמִינאל %s ווּרדע נִיצהת געפֿוּנדענ וֹדער וִירד בֿוֹנ תערמִינפֿוֹ נִיצהת בּערֻצכּשִיצהתִיגת תערמִינאל »%s« ווּרדע נִיצהת געפֿוּנדענ דאש ארגוּמענת »%s« בּענֵתִיגת עִינע גאנזזאהל דער דעבִֿיצע.מאפּ-עִינתראג »%s« ִישת וּנגֻלתִיג, וִירד ִיגנוֹרִיערת. בִּיתתע כּוֹררִיגִיערענ וֹדער לֵשצהענ שִיע ִיהרע דעבִֿיצע.מאפּ דער לאוּפֿוערכּשנאמע »%s« ִינ דעבִֿיצע.מאפּ ִישת ִינכּוֹררעכּת. %s וִירד שתאתתדעששענ בֿערוענדעת. בִּיתתע בֿערוענדענ שִיע דִיע פֿוֹרמ [הפֿצ]ד[0-9]* (ז.בּ. »הד0« וֹדער »צד«) דער ערשתע שעכּתוֹר דער צוֹרע-דאתעִי ִישת נִיצהת שעכּתוֹר-אוּשגערִיצהתעת דאש ִינשתאללאתִיוֹנשגערֶת ִישת עִינ ועצהשעלדאתענתרֶגער. דִיעשע וֹפּתִיוֹנ ִישת נוּר בּעִי עפִֿי בֿערפֻֿגבּאר. דער פּארתִיתִיוֹנשתיִפּ 0כּס%x ִישת וּנגֻלתִיג דִיע שעכּתוֹרענ דער צוֹרע-דאתעִי שִינד זוּ שתארכּ פֿראגמענתִיערת דִיע גרֵססע בֿוֹנ »%s« ִישת נִיצהת %u »%s« ִישת זוּ גרוֹסס »%s« ִישת זוּ כּלעִינ דִיעשע עלפֿ-דאתעִי ִישת בֿוֹמ פֿאלשצהענ תיִפּ דִיעשע גפּת-פּארתִיתִיוֹנשבּעזעִיצהנוּנג האת כּעִינע בִּיוֹש-בּוֹוֹת-פּארתִיתִיוֹנ, עִינבּעתתוּנג וֻרדע וּנמֵגלִיצה שעִינ דִיעשעש לדמ האת כּעִינע עִינבּעתתוּנגשפּארתִיתִיוֹנ, עִינבּעתתוּנג וֻרדע וּנמֵגלִיצה שעִינ דִיע משדוֹש-פּארתִיתִיוֹנשבּעזעִיצהנוּנג האת כּעִינענ פֿרעִיראוּמ נאצה דעמ מבּר, עִינבּעתתוּנג וֻרדע וּנמֵגלִיצה שעִינ דרעִי ארגוּמענתע ערוארתעת זעִיתֻבּערשצהרעִיתוּנג בּעִימ ֵפֿפֿנענ בֿוֹנ »%s« זעִיתֻבּערשצהרעִיתוּנג בּעִימ לעשענ בֿוֹנ »%s« זעִיתֻבּערשצהרעִיתוּנג: הארדוארע-אדרעששע כּוֹננתע נִיצהת אוּפֿגעלֵשת וערדענ זוּ תִיעפֿ בֿערשצהאצהתעלתע שיִמבּוֹלִישצהע בֿערכּנֻפּפֿוּנגענ ֻבּערשעתזער »%s« פֻֿר פּפֿאד »%s« האת בֿערשצהִיעדענע וֵרתער, דִיע כּעִינע וֹפּתִיוֹנענ שִינד, מִינדעשתענש »%s« וּנד »%s« ֻבּערשעתזער »%s« פֻֿר פּפֿאד »%s« ווּרדע נוּר וֹפּתִיוֹנענ ֻבּערגעבּענ, דעבִֿיצע-תעִיל כּוֹננתע נִיצהת געפֿוּנדענ וערדענ ֻבּערשעתזער-בּעפֿעהלשזעִילענפּפֿאד פֻֿר פּפֿאד »%s« ִישת לעער זועִי ארגוּמענתע ווּרדענ ערוארתעת תיִפּ עש כּאננ כּעִינ דאתעִישיִשתעמ ִינ %s ערכּאננת וערדענ. שִיצהערהעִיתשֻבּערפּרֻפֿוּנג כּאננ נִיצהת אוּשגעפֻֿהרת וערדענ גערֶתעגרֵססע ִישת וּנאוּשגערִיצהתעת וּנערוארתעתעש דאתעִיענדע וּנבּעכּאננתעש ארגוּמענת »%s« וּנבּעכּאננתע כּוֹמפּרעששִיוֹנ %d
 וּנבּעכּאננתער גערֶתעתיִפּ %s
 וּנבּעכּאננתעש דאתעִישיִשתעמ וּנגֻלתִיגער תיִפּ עִינעש ראִיד-גערֶתש »%s« וּנבּעכּאננתער רעגעכּספּ-פֿעהלער וּנבּעכּאננתעש זִיעלפֿוֹרמאת %s
 וּנבּעכּאננתער תערמִינפֿוֹ-תיִפּ »%s« נִיצהת ערכּאננתע פֿוֹרמאתשפּעזִיפִֿיכּאתִיוֹנ פֻֿר דהצפּ-וֹפּתִיוֹנ »%s« נִיצהת ערכּאננתע נעתזוערכּאדרעששע »%s« נעתזוערכּ-שצהנִיתתשתעללע »%s« ווּרדע נִיצהת ערכּאננת זאהל נִיצהת ערכּאננת נִיצהת אוּפֿלֵשבּארע אדרעששע %s וּנשעת [נאמע ...] נִיצהת וּנתערשתֻתזתער התתפּ-פֿעהלער %d: %s נִיצהת וּנתערשתֻתזתע התתפּ-אנתווֹרת נִיצהת וּנתערשתֻתזתע ראִיד-בֿערשִיוֹנ: %d.%d נִיצהת וּנתערשתֻתזתעש גזִיפּ-פֿוֹרמאת פּארִיתֶת דעש שערִיעללענ פּוֹרתש וִירד נִיצהת וּנתערשתֻתזת געשצהוִינדִיגכּעִית דעש שערִיעללענ פּוֹרתש וִירד נִיצהת וּנתערשתֻתזת אנזאהל דער שתוֹפּ-בִּיתש דעש שערִיעללענ פּוֹרתש וִירד נִיצהת וּנתערשתֻתזת ווֹרתלֶנגע דעש שערִיעללענ פּוֹרתש וִירד נִיצהת וּנתערשתֻתזת פֿארבּע פֻֿר הִינתערגרוּנד בֿערוענדענ פֿארבּע פֻֿר תעכּסת בֿערוענדענ וֹרדנער אלש ווּרזעל דער עפִֿי-שיִשתעמפּארתִיתִיוֹנ בֿערוענדענ. דאתעִי אלש שצהרִיפֿת בֿערוענדענ (פּפֿ2). דאתעִי אלש בּוֹוֹת-אבּבִּילד בֿערוענדענ [בֿוֹרגאבּע=%s] דאתעִי אלש כּערנ-אבּבִּילד בֿערוענדענ [בֿוֹרגאבּע=%s] דאתעִי אלש גערֶתעזוּוֹרדנוּנג בֿערוענדענ [בֿוֹרגאבּע=%s] דאתעִי אלש כּסוֹררִישוֹ בּענוּתזענ [וֹפּתִיוֹנאל] גרוּבּ-דאתעִיענ ִימ וֹרדנער וֹרדנ בֿערוענדענ [בֿוֹרגאבּע=%s] זעִיצהענכּעתתע אלש פּרוֹדוּכּתנאמע בֿערוענדענ זעִיצהענכּעתתע אלש פּרוֹדוּכּתבֿערשִיוֹנ בֿערוענדענ ִיד-דאתעִי אוּצה דאננ בֿערוענדענ, ועננ עִינע וּוִּיד בֿערפֻֿגבּאר ִישת אבּבִּילדער וּנד מוֹדוּלע ִינ וֹרדנער בֿערוענדענ [בֿוֹרגאבּע=%s/@פּלאתפֿוֹרמ@] בֿארִיאבּלע »%s« ִישת נִיצהת געשעתזת בִֿישוּעללעש וּתפֿ-8 וארתענ, בִּיש עִינ דעבּוּגגער עִינכּלִינכּת מִית בּלוֹצכּלִישתענ וִירד נִיצהת פֿוֹרתגעשעתזת פֿאלשצהעש עלִי-מאגִיצ וֹדער -בֿערשִיוֹנ כּסנוּ_וּוִּיד גערֶת כּסז-דאתעִי ִישת בּעשצהֶדִיגת וֹדער בּלוֹצכּוֹפּתִיוֹנענ וערדענ נִיצהת וּנתערשתֻתזת שִיע כֵּננענ דִיעשע אדרעששע נִיצהת לֵשצהענ שִיע מֻששענ זוּערשת דענ כּערנעל לאדענ ִיהרע בִּיוֹש-בּוֹוֹת-פּארתִיתִיוֹנ ִישת זוּ כּלעִינ, עִינבּעתתוּנג וֻרדע וּנמֵגלִיצה שעִינ ִיהרע דאתעִי צוֹרע.ִימג ִישת וּנגעוֵהנלִיצה גרוֹסס. שִיע וֻרדע נִיצהת ִינ דענ עִינבּעתתוּנגשבּערעִיצה פּאששענ. ִיהר עִינבּעתתוּנגשבּערעִיצה ִישת וּנגעוֵהנלִיצה כּלעִינ. צוֹרע.ִימג וֻרדע נִיצהת הִינעִינפּאששענ.                                                                                                                                                                                                                                                                                                                                    boot/grub/locale/de_CH.mo                                                                           0000600 0001750 0001750 00000315744 13417732100 0014202 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                       i     d#    F      H^  #   I^      m^     ^     ^     ^  $   ^     ^  6   _     H_     O_  	   [_     e_     r_     _     _     _     _  .   _  .   `  %   >`     d`     h`    w`    |a    b     c  7   c  F   c  v   "d  +   d     d      d     d  !   	e     +e  ,   He     ue     e  $   e     e  *   e     f     !f     )f     9f     Qf  
   qf  	   |f     f  ,   f  ,   f  ,   f  '   )g  -   Qg      g  (   g  (   g  )   g     h     <h     \h     ih     rh  "   {h  4   h     h     h  7   h      i  1   )i     [i     zi  %   }i  '   i  %   i  '   i     j     j      j     >j     Sj     hj     mj     j     j     j     j     j     j     j  3   j     )k  $   /k     Tk     lk     k     k     k     k     k  -   k     l  !   4l     Vl     kl     l  #   l     l  `   Hm  Z   m     n     n     ;n     =n     An     Xn     ^n     gn     ~n     n     n     n     n     n     o     (o     ?o     Uo     co     zo     o     o     o  %   o     o     o     o     p     .p     Dp     Sp     fp     wp  *   p  3   p     p  "   	q  8   ,q     eq     wq  	   q  #   q     q     q     q     r     3r     Jr  )   Yr     r     r     r  P   r     /s     Ds  H   Ys  &   s     s     s  !   s  ,   
t     7t     Ct     Gt  	   dt  !   nt  *   t     t     t     t     t     u  $   ,u     Qu     cu     uu     u     u     u  
   u  
   u     u  1   v     @v     Nv     [v     tv  3   v  >   v  $   w     (w     ?w     \w     tw     w     w  +   w     w     x  #   )x     Mx     dx  $   x     x     x  '   x  9   y     @y     Yy  z   wy     y     y  8   z     Fz  
   ]z     hz     uz     z     z     K{  +   h{     {     {     {  "   {     {     |  (   |     @|     X|     d|     t|     |     |  "   |  0   |     }     }     }  7   $}     \}     d}     p}     }     }     }  0   }     }     }     ~     ~  2   .~  %   a~     ~     ~  *   ~  6   ~  +        9     W     j  !   ;  d   ]  e     d   (  i     o     H   g          Â     ق                    -     D  #   ]                 1   Ƀ  )        %     ,     .     C  /   R                 5   ń            K   6                    Ѕ     ԅ     څ     ߅  '     P        ]     |  	                    '   Ȇ  +             -  )   I     s               Ç     ؇            $        @     R  "   m                 (        Ԉ     ؈  "   ވ  +     -   -     [     t                 O                  5     C  %   W     }  )     !   Ɗ  "             '  +   >     j            !        ŋ                          >     Y     l                 4   ʌ               0     H     c     ~                ͍  !          4   *  M   _  2               *     8   C     |                    Ϗ  3     $     +   @     l                         ̐           	     '     <     >  D   V            7     ;             >  !   ]            s        )     A     ^     o                    ɓ     ړ     ޓ               F     Y     m     t                 '   ϕ  
                  '     ,     D     H     Z  H   w          Ӗ            %        4     N  #   g               ŗ     Η                 %     F  "   S  (   v       %          2        .     7  #   P  *   t                 #        ݙ       "     ;     #   S  <   w                 .     	        '  `   9       !     )   ћ                      q                       Ɯ     ݜ                    :  "   Y     |               Ɲ     ݝ                  #   5     Y     v  g                    -          !          "   +  '   N  Q   v     Ƞ                          6     S     p               ơ                          0     Q     l            -        ߢ  "     b     )   y               ѣ  ,             2  	   7  "   A  %   d                      &     )   ۤ       ^        w  $     %        ܥ  ^     _     }   N     ̧  )     '     >   ը  D     !   Y  '   {  -     #   ѩ       )        ?  )   \  )     ,        ݪ               1     L  E   ]  $     A   ȫ  )   
     4     Q     m                Ȭ  q   ݬ     O  :   l          ŭ     ԭ               (     >  0   S                 )   ͮ  &             ;     V     i  )          %     %     ,     '   8  :   `       -          .        '     9  '   N  $   v  "             ʱ       *              (  )   /     Y     r  6   ,     c     e  0   l        !     "     #        '     9     W     m  !          
   Ĵ     ϴ  <     %   &     L     U     Y     _            d     *     0   ;  6   l                    ζ            0        3  !   F     h       $             շ          
       $   8  "   ]  $                   θ                    (     :     G     b     z  '             ߹  $     +     "   I     l  )   s               ͺ            '        >     ]     z  <         ˻                 m   "               ż     ߼       +     3   >  1   r       '     -   ڽ       '     '   9  .   a  	                  Ͼ               #     ?     Z     u            *     ?   ڿ  B     /   ]            .     O     )   7     a     w  	          5                       $     ?  :   Y                                                  *     ;     A  	   N     X     g                                
     
     	          !     )   )     S     g     y       F     N        L  "   Z     }       -     -     $     #     0   9  6   j                 (     1     )   +     U     d  !   {                  %          &   $     K     e        7     .     4        @     ]     r            %                       )     B     a     p     y  ,                                 $  #   9     ]     w  B                       #     >     U  &   q                           &        +     C     ^     n  ;     V     "     &   8  !   _                 /     H     F   4  (   {            I     $     '   ;     c  %   |                      $     '     *   /     Z     t       J                    -   1  +   _       $          "     +     J     %   Y             "                        )     @     S     k            %                    %   3     Y     p                 [          !   #     E     ^     r     w                                        &     C     [     w                                1        K     [     s                    s  1          0               !   -     O  "   l                                   	          $     4     E     U     f     x  &                            !  '   6  &   ^       L               !        3     R     d                                     #     #     $   C     h     x  &          !                  
            	   4  7   >     v  %     [     w     7     K     #     /   2     b     }       &     U     @   6  Q   w                 +        9  R   V  L     .        %     <  F   A                                         /     D     ^  2   y  !     #                       /     M     g                 (     #        )     B  )   U       '     '     '          0   .     _     z  -     8               !   .      P     q       .          !     B     E   N  B         %     &                  6  1   M        :               	          !        -     B     ]     x  4     7     .        $     (  `  9  ]    r       k  =     O          4          )          *        D  5   `            -          5        B     S     [     k  *          	           *     1     *   B  (   m  +     )     ,     ,     ,   F     s                      (     7        3     <  6   Q       5               -     3     -   K  3   y            ?     &     #        @     E     W     i                           1          *        @     Y     r       !               0        /  -   O  (   }  %           =        +          x               7     9      =     ^     d     m                       #    $   &    K    `    y                         -    '   $    L (   ` !                    "    7   1 N   i '    G    9   (    b *   y     *    %            '   8 %   `     -    %    &    *    j   A "    "    Z    *   M    x          /                	    )    ,   H    u                 (   	    /	    C	    V	 !   r	    	 &   	 
   	    	     	 4   
    J
    ]
     o
 $   
 ;   
 Q   
 4   C    x #            $        .   ( !   W 1   y +        $    /       F    _ 3   ~ B    &    %       B         P   
 '   [     
        %            3               * #   C    g    z 0                           4 2   K A   ~             8       %    .    <    M    d    q C   x                  L    8   f !        2    B    9   I &            %           I     r   L     c   U                        6    S    n !                ;    >   8    w             6                :     %   [ '    S    %    1   # .   U                 ,    ^    #   ' 
   K 	   V    ` $   h     :    2        %   # /   I    y                            .   7     f       +                    6        !    ! 3   %! 9   Y! 1   !    !    !    !    
"    !" f   9"    "    "    "    " 9   # #   G# 6   k# $   # $   #    # "   
$ 0   -$    ^$    w$    $     $    $    $    $    %    "%    B%    \%    p%    %    %    % <   % &   &    8&    N&    k&    &    &    & &   & #   ' &   *'    Q' E   q' i   ' C   !( &   e(    ( ,   ( A   (    )    ))    E)    _)    x) ;   )    ) ,   )    *    /*    B*    \*    v* !   * "   *    *    *    	+ !   + J   -+    x+    ~+ @   + S   + (   , &   C, 0   j,    , $   ,    ,    f- !   ~-    -    -    -    -     .    .    4.    8.    >.    '/    0    ,0    @0    G0 !   U0    w0 '   0 E   0     1    1 #   (1    L1    Q1    m1    r1 %   1 _   1    2 (    2    I2    ^2 .   r2    2    2 8   2 (   
3 "   33    V3    m3 '   3 '   3 '   3    3 %   4 2   .4    a4 )   4 '   4 7   4 	   	5 "   5 +   65 <   b5    5    5    5 )   5    5    5 )   5 =   #6 ,   a6 @   6    6    6    6 4   7 	   B7    L7    c7    7 &   7 :   %8    `8    d8    j8    r8    8    9    39    O9    ^9    z9    9    9     9    9 %   9    !:     ?:    `:    z:    :    :    :    : )   : -   ; 4   L;    ;    	<     <    < /   =    4= &   N=    u= 4   = 2   = l   =    ^>    }>    >    >    >    >    >    ?    -?    I?    d? "   ?    ?    ?    ? "   ?     @    6@    Q@     f@ 6   @    @ (   @ y   A 1   ~A    A !   A "   A ?   B +   LB    xB    |B #   B )   B    B    B    B    B -   C &   3C    ZC    sC    D *   !D 0   LD    }D    }E    F    F    bG 3   `H 5   H H   H L   I (   `I .   I 4   I '   I +   J 4   AJ !   vJ 1   J 1   J 5   J    2K &   RK (   yK    K    K Q   K &   )L R   PL 5   L &   L '    M .   (M (   WM )   M &   M    M %   hN D   N &   N    N $   O    1O    NO    kO    O 8   O *   O    P    !P .   @P 3   oP    P $   P    P "   P /    Q    PQ /   oQ /   Q 6   Q 1   R D   8R '   }R /   R    R H   R    1S    DS 4   bS &   S &   S    S )   S    %T 6   6T    mT    tT 5   |T    T    T F   U    U    U ?   U #   4V !   XV    zV    V     V     V     V *   W .   DW !   sW    W    W ?   W 7   W 
   3X    >X    BX 3   HX    |X    X    X 4   5Y ?   jY W   Y    Z    Z    Z    6Z    RZ .   XZ C   Z %   Z 3   Z )   %[    O[ 1   `[    [    [ !   [    [ *   [ *   *\ *   U\ ,   \    \    \ .   \    ]    #] !   C]    e]    ]    ]    ] "   ] /   ] +   &^    R^ +   p^ )   ^ '   ^    ^ +   ^    "_ )   5_ "   __    _     _ 3   _ 4   _ &   "`    I` @   e` (   `    `    ` "   ` m   a &   a !   a    a    a     b =   'b G   eb E   b    b )   c 5   +c    ac ,   jc ,   c .   c    c    c    d     /d     Pd     qd     d    d    d    d    e    -e -   2e I   `e T   e /   e    /f    Ff .   _f Y   f -   f    g    .g 
   Cg    Ng 8   mg    g    g    g    g    h :   h    Yh    ph    h    h    h    h    h    h    h    h    h    i 
   i    i    4i    Qi    ki    i 
   i    i    i    i 	   i 	   i    i     i ,   j    3j    Gj -   [j *   j ]   j F   k    Yk +   lk    k    k ?   k <   k +   4l '   `l :   l A   l    m    m    +m (   <m 0   em ;   m    m    m (   m -   &n 3   Tn *   n H   n &   n 3   #o *   Wo .   o +   o S   o C   1p P   up /   p &   p (   q    Fq *   bq 2   q '   q .   q (   r ,   @r 3   mr    r 	   r $   r 8   r    s    .s    ?s    Ys ,   os    s &   s     s /   s [   /t (   t 8   t '   t *   u "   @u '   cu 2   u *   u    u 	   u    v    v 2   =v    pv %   v    v %   v K   v f   7w 3   w *   w !   w    x    >x (   Gx F   px Y   x `   y 3   ry    y    y A   y 9   z 6   Nz $   z ;   z    z    z    {    #{ '   <{ ,   d{ 1   {    {    {     | o   |    |     |    | 7   | 4   }    P} 2   V} 	   } $   } '   } 7   } 3   ~    L~ ,   h~ .   ~    ~ "   ~    ~        :    U    r          (    !            4 (   T    }            ʀ    Ҁ w       e '   y            ؁ *   ݁     !       <    Z    w     '    *   Ԃ            0    M    c "   z            Ƀ G       0    @    Y $   o             7    "   څ :       8 &   P '   w /    $   φ            .    F    \    s                Շ            '    E *   ^ "    !    2   Έ         5   / .   e     Y              +   8 )   d     *       ъ     "    #   (    L    e    ~ ,    ,   ċ 2       $    > 3   V     %       ƌ                  	   < M   F $    +    p       V =    ]   . $    6    #             $   4 `   Y L    c       k +    )    D   ّ 1    s   P k   Ē 7   0    h     e    !           *    F    a    | )           ؔ     :    %   N 1   t            ֕ '         '   0     X 4   y ;    @    6   +     b     4    "   җ ,    ,   " 1   O %    2    &   ژ )    ;   + ?   g !       ə "   ٙ &        #    D E   T (    #   Ú H    _   0 S         $     @        ?            F        :    J  ^  4                        H      $                     <        
    1                                k  ,     R     	               O           r   H        {   '  +           ;  <   i       %      _                      q              &      -                           =      "     *      F           L       _       ]  I               A   
  ~   (      [  _      &    C        D        X      }         Q        2                                x        $                              3    ?   G  O           ^                       s         9        M           e      "    w            1    z  	      w                   v        5    S                                  3         r            {      +  	                         P  `             d  c       ;   t          G  5           \  ^         d           #       b                 Z        @            Y  7  I                    .           >          :  X      g             :           K   (           $                D        F    a          )          '    ]            ;         H              W      k     '          o  z     %                  o            j       <    2                              L  t  .          Y  4                               `      n      f                     I  !      '  8      Z  F     %       `          )              D      t                            H                 \                           &      S    #      y    5        :          l   V  p             m  m         Z       `        C  I            T             h                  C  7   [       y   	  \                  h      ]      2     l    /    y                ~            T  O        Q   A        )   W        =  /    ]   K  |  4  }      C        g  ^    7      9                        Q         "     D      ,  *   W     [         u  0      2     f  x      H              4                    8  *      [              O            f                   E  -  =   E                   R      w  a           p   j  +    T      v      O      9      o       Y    A        v      U    X                           @                                             7          J      L       S    A               ~  P                 S        .      h       C  +  X      r          )      :      !          r      P      U       V                       V   T  I              E      P            c      3              i  w       f                2  -      
   M      i             [    c         _    d     U      6           D   8          V        e   ?  ,                  |          %  &  y        ;         B   u     g                      e           k         u         G    &           ,        }       p  e  M  -  J        |        0          )    A     <                    B                     \      #          v  9      ?       G     f                    @  8               =  /  K                      x  .           \     j      5      N  c        i  b  $  m                 0  N                   *           6              
                                            !   -      N  }           ,      a  n       s               g        g                          +                      M  b  >    3    *                                              >      J      h                !      #       _      R     z      b  l            %  L          Y        
                u   s                   "  Q             #      a  ]            d                     R      q  0      ?                      i    `  W       N        8             (                       J               	                h  K                6  n      k  ;        e  ^             >        p            q                          @                                                M     .      6  >   1       (  /     '  N                  t                0  z    ~    U           U  G       |                {  o         R      4           q          x                   !     B     j  3                     =  Y                    7  Q          1      "    b        F              B            c      Z                        9      E                                                          P        m  s  d                         K                                        B                    E   {                  Z    a  /                        X      6         L             S          5   (             T   1       W          n                            <                              V  l                 total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: option '%c%s' doesn't allow an argument
 %s: option '%s' is ambiguous; possibilities: %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File size: %s
 File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS Import ZFS wrapping key stored in FILE. Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... M MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MODULE MODULES Mail xorriso support requests to <bug-xorriso@gnu.org>. Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Option -- switches to native xorriso command mode. Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show the contents of a file. Show the current mappings. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 T TARGET Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This entry can be booted by any user. Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. Your embedding area is unusually small.  core.img won't fit in it. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `cryptomount' command fails: %s `loopback' command fails: %s `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format blocklist FILE blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s cannot compress the kernel image cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot get translator command line for path `%s': %s cannot open OS file `%s': %s cannot open `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. diskboot.img size must be %u bytes do not probe for filesystems in DEVICE domain name component is too long don't update LED state done embed FILE as an early config embed FILE as public key for signature checking embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to get canonical path of `%s' failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification install GRUB images under the directory DIR/%s instead of the %s directory install even if problems are detected invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid block size invalid color specification `%s' invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no `/' in canonical filename no command is specified no decryption key available no network card found no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found pre-load specified modules MODULES premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory of TFTP server route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the argument `%s' requires an integer the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for text use DIR as the EFI System Partition root. use FILE as font (PF2). use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub-2.00+20130519
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-06-03 19:11+0100
Last-Translator: Mario Blättermann <mario.blaettermann@gmail.com>
Language-Team: German <translation-team-de@lists.sourceforge.net>
Language: de_CH
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=(n != 1);
X-Generator: Poedit 1.5.4
               Gesamtspeicher: %d KiB
     Kein bevorzugter Modus verfügbar
     Bevorzugter Modus: %ux%u
   EDID-Prüfsumme ist ungültig   EDID-Version: %u.%u
   Grafikadapter konnte nicht initialisiert werden   Keine Informationen verfügbar   VBE-Info:   Version: %d.%d  OEM-Softwarerevision: %d.%d
   oder:   (ganz links)  (mittig)  (ganz rechts)  - Partitionsbeginn bei %llu%sKiB  - Sektorgrösse %uB  - Gesamtgrösse %llu%sKiB  - Gesamtgrösse unbekannt  [OPTIONEN …] %.*s: Parameter für ARGP_HELP_FMT muss positiv sein %.*s: Parameter für ARGP_HELP_FMT benötigt einen Wert %.*s: Unbekannter Parameter für ARGP_HELP_FMT %ds %ds verbleibend. %s enthält ein %s-Dateisystem, welches bekanntermassen keinen Platz für einen DOS-Betriebssystemstart bereithält. Die Installation von GRUB könnte die ZERSTÖRUNG DES DATEISYSTEMS nach sich ziehen, sofern Daten durch grub-setup überschrieben werden. Die Option --skip-fs-probe deaktiviert diese Überprüfung, verwenden Sie dies auf eigene Gefahr. %s scheint eine %s-Partitionstabelle und LDM zu enthalten, welches bekanntermassen keine sichere Kombination ist. Die Installation von GRUB könnte die ZERSTÖRUNG DES DATEISYSTEMS nach sich ziehen, sofern Daten durch grub-setup überschrieben werden. Die Option --skip-fs-probe deaktiviert diese Überprüfung, verwenden Sie dies auf eigene Gefahr. %s scheint eine %s-Partitionstabelle zu enthalten, welche bekanntermassen keinen Platz für einen DOS-Betriebssystemstart bereithält. Die Installation von GRUB könnte die ZERSTÖRUNG DES DATEISYSTEMS nach sich ziehen, sofern Daten durch grub-setup überschrieben werden. Die Option --skip-fs-probe deaktiviert diese Überprüfung, verwenden Sie dies auf eigene Gefahr. %s unterstützt keine UUIDs %s erstellt eine Tastaturbelegung für GRUB mittels ckbcomp\n %s ist veraltet. Verwenden Sie stattdessen gfxpayload=%s vor dem Linux-Befehl.
 %s ist veraltet. VGA-Modus %d wurde nicht erkannt. Verwenden Sie stattdessen gfxpayload=BREITExHÖHE[xTIEFE] vor dem Linux-Befehl.
 %s wird von grub-mkconfig noch nicht unterstützt.\n %s, mit Hurd %s %s, mit Hurd %s (Wiederherstellungsmodus) %s, mit Linux %s %s, mit Linux %s (Wiederherstellungsmodus) %s, mit Xen %s und Linux %s %s, mit Xen %s und Linux %s (Wiederherstellungsmodus) %s, mit Xen-Hypervisor %s, mit kFreeBSD %s %s, mit kFreeBSD %s (Wiederherstellungsmodus) %s, mit Kernel %s (über %s) %s, mit Kernel %s (über %s, Wiederherstellungsmodus) %s: HASH-FEHLER
 %s: OK
 %s: LESEFEHLER
 %s: Zu viele Argumente
 %s: Sie müssen dies als Root ausführen\n %s: Fehler: %s: Info: %s: Ungültige Option -- «%c»
 %s: Option «%c%s» erlaubt kein Argument
 %s: Option «%s» ist mehrdeutig; Möglichkeiten: %s: Option «--%s» erlaubt kein Argument
 %s: Option «%s» erwartet ein Argument
 %s: Option «-W %s» erlaubt kein Argument
 %s: Option «-W %s» ist nicht eindeutig
 %s: Option «-W %s» erfordert ein Argument
 %s: Option erfordert ein Argument -- «%c»
 %s: Option erwartet ein Argument -- «%s»\n %s: Unbekannte Option «%c%s»
 %s: Unbekannte Option «--%s»
 %s: Warnung: (32-bit) (64-bit) (PROGRAMMFEHLER) Keine Version bekannt!? (PROGRAMMFEHLER) Option hätte erkannt werden müssen!? (auf %s) - Bezeichnung «%s» - Letzte Änderungszeit %d-%02d-%02d %02d:%02d:%02d %s --MEHR-- -h HASH [-c DATEI [-p PRÄFIX]] [DATEI1 [DATEI2 ...]] -l | -r | [-s] grubdev osdisk. .5 Geschütze 16-bit-Schnittstelle unterstützt
 Geschütze 16-bit-Schnittstelle nicht unterstützt
 Geschütze 32-bit-Schnittstelle unterstützt
 Geschütze 32-bit-Schnittstelle nicht unterstützt
 =WERT > Durch ACPI beanspruchter Speicherbereich (für Energiesparmodi) Durch ACPI wiederverwendbarer Speicher ACPI-Herunterfahren ist gescheitert ADDR ADDR WERT [MASKE] ADRESSE [GRÖssE] ADR1,MASKE1[,ADR2,MASKE2[,...]] ADDRESSE DNS_SERVER APM deaktiviert
 APM deaktiviert
 APM aktiviert
 APM aktiviert
 ARGP_HELP_FMT: Wert %s ist kleiner oder gleich %s ASCII CR/NL-Zeilenenden im DOS-Stil akzeptieren. Aktive Eingabeterminals: Aktive Ausgabeterminals: Adapter «%s»:
 Einen DNS-Server hinzufügen Eine Netzwerkadresse hinzufügen. Eine Netzwerkroute hinzufügen. Erweiterte Optionen für %s Erweiterte Optionen für %s (mit Xen-Hypervisor) Unterbrechung mit ESC erlauben. Nach dem Dateinamen für den Neustart fragen. Eingabe wird als hexadezimal angenommen. Eingabe wird als Kennwort angenommen. Eingabe wird als Raw angenommen. Es wird versucht, den Master-Schlüssel zu entschlüsseln … Es wird versucht, GRUB auf einer Platte mit mehreren Partitionsbezeichnungen oder sowohl Partitionsbezeichnungen als auch Dateisystemen zu installieren. Dies wird derzeit noch nicht unterstützt. Es wird versucht, GRUB auf einer Platte mit mehreren Partitionsbezeichnungen zu installieren. Dies wird derzeit noch nicht unterstützt. Es wird versucht, GRUB auf einer nicht partitionierten Platte oder in eine Partition zu installieren. Das ist eine SCHLECHTE Idee. Verfügbare Eingabeterminals: Verfügbare Ausgabeterminals: B B/s BIOS_SICHERUNG [INT10_SICHERUNG] BLOCK BYTE:BIT Modus des Hintergrundbildes. Basisordner für Hash-Liste. BIOS-basiertes System booten. Ein Betriebssystem starten. In den Single-User-Modus booten. Mit Fehlerdiagnosemeldungen booten. Mit ausführlichen Meldungen booten. «%s» wird gebootet Eine Befehlsliste booten Im Blindmodus booten Boot-Pfad: %s
 Boot-Pfad: nicht verfügbar
 Haltepunkt für GDB auslösen CGA  FARBE BEFEHL [ARGUMENTE] CPU-Leerlauf verlangsamt den Prozessor nicht
 CPU-Leerlauf verlangsamt den Prozessor
 CS5536 in %d:%d.%d
 ROM-Bereich kann nicht aktiviert werden. Konfigurierte Geräte bearbeiten. Partitionstyp ändern Alt-Taste überprüfen. Ctrl-Taste überprüfen. Umschalttaste überprüfen. Fähigkeiten der CPU überprüfen. Prüfsummen der Dateien mit Liste in DATEI vergleichen. Überprüfen, ob der Prozessor den 64-Bit-(Lang-)Modus unterstützt (Vorgabe). Status der Umschalttasten überprüfen. Überprüfen Sie, ob der Benutzer in der BENUTZERLISTE aufgeführt ist. Überprüft die GRUB-Skriptkonfiguration auf Syntaxfehler Den Bildschirm leeren. «active»-Flag auf %d wurde gelöscht.  
 Befehle: DATEI mit lokaler Datei LOKAL vergleichen. Datei «%s» mit «%s» vergleichen:
 Zwei Dateien vergleichen. XNU-UUID des Geräts berechnen. Hash-Prüfsumme berechnen oder prüfen. Serielle Schnittstelle konfigurieren. Schleifen fortsetzen Übliche Schriftdateiformate in PF2 umwandeln DATEI in lokale Datei LOKAL kopieren. DATEI in die Standardausgabe kopieren. FPSWA-Treiber konnte nicht gefunden werden Physischer Datenträger «%s» konnte nicht gefunden werden. Einige Module könnten im Core-Abbild fehlen. sha256 konnte nicht geladen werden sha512 konnte nicht geladen werden BIOS-Strukturen für Abwärtskompatibilität mit dem vorhandenen Betriebssystem erstellen. Eine leere Umgebungs-Blockdatei erstellen. Aktuelle Terminfo-Typen: GERÄT GERÄT [PARTITION[+/-[TYP]]] ... GERÄT muss ein OS-Gerät sein (z.B. /dev/sda). GERÄTENAME ORDN ORDNER [OSBundleRequired] DNSSERVER Diagnosewerkzeug für Dateisystemtreiber. Speicherbereiche als «badram» deklarieren. Dekompressor ist zu gross Einen Menüeintrag definieren. Ein Untermenü definieren. Eine Netzwerkadresse löschen. Eine Netzwerkroute entfernen. Das angegebene Loopback-Gerät löschen. Variablen löschen. Treiber ermitteln. Dateisystem-UUID ermitteln. Dateisystembezeichnung ermitteln. Dateisystemtyp ermitteln. Typ der Partitionszuordnung bestimmen. Gerät %s: Gerätekennung: %s
 Gerätekennung: nicht verfügbar Direkte Farbe, Maske: %d/%d/%d/%d  Pos.: %d/%d/%d/%d ACPI deaktivieren. SMP deaktivieren. Alle Boot-Ausgaben deaktivieren. SMART aktivieren/deaktivieren (0/1). Unsauber eingebettete Partition wird verworfen (%s,%s,%s%d) Statistiken des Plattenzwischenspeichers: Hits = %lu (%lu.%02lu%%), Misses = %lu
 Plattenanzahl muss Plattenliste vorangestellt sein.
 FPSWA-Version anzeigen. Laufwerksstatus mit SMART anzeigen. Eine Textzeile anzeigen. Blockliste von DATEI anzeigen. Ausgabe auf allen Konsolen anzeigen. Energiemodus anzeigen. Benutzung dieses Befehls anzeigen und beenden. Diese Hilfe anzeigen und beenden. Anzeigen/Festlegen des/der aktuellen Datums/Zeit. Angehängte Zeilenumbrüche nicht ausgeben. Keine Meldungen ausgeben. Kein Diskettenlaufwerk überprüfen. Zum Abschalten des Rechners kein APM verwenden. Nichts tun, erfolgreich. Nichts tun, nicht erfolgreich. Keine Fehlerdiagnosemeldungen beim Booten anzeigen. Keine Host-Tabellen spezifiziert durch kommagetrennte Liste laden. Nicht neu starten, nur herunterfahren. Nach dem ersten Fehler nicht stoppen. EBDA nicht aktualisieren. Könnte Fehler oder Hänger in manchen BIOS-Versionen beseitigen, ist aber nicht effektiv bei Betriebssystemen, die kein RSDP von GRUB empfangen.  UMGVAR UMGVAR [UMGVAR] ... FEHLER: Keine gültige Tastaturbelegung gefunden. Überprüfen Sie die Eingabe.
 Beenden ist jederzeit mit ESC möglich. AUSDRUCK AUSDRUCK ] Verstrichene Zeit: %d.%03d s 
 Verstrichene Zeit: %d.%03d Sekunden 
 Einbettung ist nicht möglich. GRUB kann in dieser Konfiguration nur mittels Blocklisten installiert werden. Blocklisten sind allerdings UNZUVERLÄSSIG und deren Verwendung wird daher nicht empfohlen. Eine Tastatursequenz emulieren Auswertung der Backslash-Maskierungen ermöglichen. ZFS-Passwort eingeben: KDB beim Booten verwenden. In Normalmodus wechseln. Kennwort für %s%s%s angeben (%s):  Passwort eingeben: Benutzername eingeben: Fehler beim Einlesen der Befehlszeilenargumente
 Einen Ausdruck auswerten. Beenden ist gescheitert GRUB beenden. Schleifendurchlauf beenden Normalmodus abbrechen. Variablen exportieren. Version-1-Tabellen zum Betriebssystem exportieren. Version-2- und Version-3-Tabellen zum Betriebssystem exportieren. DATEI DATEI [ARG ...] DATEI [ARGUMENTE …] DATEI | TEMPO [TONHÖHE1 DAUER1] [TONHÖHE2 DAUER2] ...  DATEI… DATEI1 DATEI2 DATEINAME BEFEHL DATEISYSTEM [VARIABLE] DATEI|prompt FORMAT Das FPSWA-Protokoll war nicht imstande, die Schnittstelle zu finden FPSWA-Revision: %x
 VON-BIS[,VON-BIS] VON[K|M|G] BIS[K|M|G] FT_Init_FreeType ist gescheitert Sowohl Vorgabe- als auch Alternativeinträge konnten nicht gebootet werden.
 Baum für «device-mapper» konnte nicht erstellt werden Alternative «%s» wird verwendet Dateigrösse: %s
 Dateisystem «%s» unterstützt keine Einbettungen Dateien unterscheiden sich an Position %llu: 0x%x [%s], 0x%x [%s]
 Dateigrössen sind unterschiedlich: %llu [%s], %llu [%s]
 Zugriff auf Dateisystem nicht möglich Dateisystemtyp %s Hybrid-MBR des GPT-Gerätes GERÄT füllen. Angegebene Partitionen werden Teil des Hybrid-MBR. Bis zu 3 Partitionen sind zulässig. TYP ist ein MBR-Typ. + bedeutet, dass die Partition aktiv ist. Nur eine Partition kann aktiv sein. Laden des EFI-Emulators finalisieren. Zuerst das Gerät HINWEIS versuchen, falls aktuell laufende ARC. Falls HINWEIS mit Komma endet, auch Unterpartitionen versuchen Zuerst das Gerät HINWEIS versuchen (für aktuell laufendes BIOS). Falls HINWEIS mit Komma endet, auch Unterpartitionen versuchen Zuerst das Gerät HINWEIS versuchen (für aktuell laufendes EFI). Falls HINWEIS mit Komma endet, auch Unterpartitionen versuchen Zuerst das Gerät HINWEIS versuchen (bei IEEE1275). Falls HINWEIS mit Komma endet, auch Unterpartitionen versuchen Zuerst das Gerät HINWEIS versuchen, falls direkter Hardwarezugriff unterstützt wird. Falls HINWEIS mit Komma endet, auch Unterpartitionen versuchen Zuerst das Gerät HINWEIS versuchen. Falls HINWEIS mit Komma endet, auch Unterpartitionen versuchen Ein Videoproblem beheben. %s auf %s gefunden (%s)\n %s auf %s gefunden\n GNU Mach wurde gefunden: %s Hurd-Modul gefunden: %s NetBSD-Kernel gefunden: %s\n Hintergrund gefunden: %s\n initrd-Abbild gefunden: %s\n Kernel-Modulordner gefunden: %s\n FreeBSD-Kernel gefunden: %s\n Linux-Abbild gefunden: %s\n Thema gefunden: %s\n Freetype-Fehler %d beim Laden des Glyphs 0x%x für U+0x%x%s ATA-Sicherheitseinstellungen bis zum Zurücksetzen einfrieren. Freitag G GNU GRUB  Version %s GRUB-Bootmenü GRUB weiss nicht, wie man diese Maschine stoppen kann! GRUB-Emulator. GRUB-GERÄT=PLAN9-GERÄT Unsinn in ARGP_HELP_FMT: %s GRUB-Tastaturbelegung aus dem der Linux-Konsole erstellen. PBKDF2-Passwort-Prüfsumme erzeugen.  Eine Grub-Konfigurationsdatei erstellen Ein lauffähiges Abbild einschliesslich aller Module im gewählten Format erstellen crc32-Prüfsumme von DATEI berechnen. Informationen zum Platten-Zwischenspeicher holen. ATA-Datenträgerparameter ermitteln/festlegen. GiB GiB/s HASH HINWEIS Das System anhalten, wenn möglich, mit APM. Diesen Computer anhalten. Dieser Befehl funktioniert nicht in allen Firmware-Implementationen. N Bytes in Ausgabedatei verarbeiten Hallo Welt Hercules  KENNUNG ABBILD1 [ABBILD2 ...] EINHÄNGEPUNKT ABBILDPFAD BEFEHLE In DATEI gespeicherten ZFS-Wrapping-Schlüssel importieren Inkorrektes virtuelles Gerät: kein Typ verfügbar Ein Modul einfügen. GRUB auf Ihrem Laufwerk installieren. installation beendet. Keine Fehler aufgetreten. Ungültige Rückreferenz Ungültiger Zeichenklassenname Ungültiges Sortierzeichen Ungültiger Befehl %s.
 Ungültiger Inhalt von \{\} Ungültiges Gerät «%s».
 Ungültige Plattenanzahl.
 Ungültiger vorhergehender regulärer Ausdruck Ungültiges Bereichsende Ungültiger regulärer Ausdruck Routing der Benutzerkonfiguration aufrufen. K KERNEL ARGUMENTE TASTE Tastenzuordnung für den Schnellstart dieses Eintrags. KiB KiB/s Virtuelles Gerät durchsuchen (Datei oder Laufwerk) Veralteter Parameter «%s» wird nicht mehr unterstützt. Legende: Maske/Position=Rot/Grün/Blau/Reserviert Länge der erzeugten Prüfsumme Länge von Salt DNS-Server auflisten PCI-Geräte auflisten. Alle Dateien auflisten. Verfügbare Grafikmodi auflisten. Falls Auflösung angegeben ist, nur Modi dieser Auflösung anzeigen. Geräte und Dateien auflisten. Geräte oder Dateien auflisten. Geräte auflisten. Dateien in PFAD auflisten. Von Firmware bereitgestellte Speicherzuordnung auflisten. Liste der unterstützten Videomodi: Liste der Benutzer, die diesen Eintrag booten dürfen. Eingabeterminal listen oder wählen. Ausgabeterminal listen oder wählen. Aktuelle Variablen auflisten. Die geladenen Schriften auflisten. Variablen aus Blockdatei der Umgebung auflisten. 64-bit XNU-Abbild laden. BIOS-Sicherung laden. FreeBSD-Umgebung laden. FreeBSD-Kernelmodul laden (ELF). FreeBSD-Kernelmodul laden. FreeDOS-kernel.sys laden. Linux laden. NTLDR oder BootMGR laden. NetBSD-Kernelmodul laden (ELF). NetBSD-Kernelmodul laden. Plan9-Kernel laden. XNU-Erweiterungsordner laden. XNU-Erweiterungspaket laden. XNU-Erweiterung laden. XNU-Abbild laden. XNU-Ramdisk laden. Wird im Betriebssystem als md0 angezeigt. Inhalt von «device-properties» laden Ein PXE-Abbild laden. Eine Tastaturbelegung laden. Einen Mlutiboot2-Kernel laden. Ein Multiboot2-Modul laden. Einen Multiboot-Kernel laden. Ein Multiboot-Modul laden. Begrüssungsbildschirm für XNU laden. Ein gespeichertes XNU-Abbild laden. EFI-Emulator laden und initialisieren. Einen anderen Bootloader laden. Eine andere Konfigurationsdatei laden, aber nur deren Menüeinträge. Eine andere Konfigurationsdatei laden, ohne den Kontext zu ändern. Es werden nur Menüeinträge geladen. Eine andere Konfigurationsdatei laden, ohne den Kontext zu ändern. Eine andere Konfigurationsdatei laden. Weiteres Coreboot-Payload laden Hintergrundbild für aktives Terminal laden. Host-ACPI-Tabellen und durch Argumente angegebene Tabellen laden. initrd laden. Ramdisk von kOpenBSD laden. Kernel von FreeBSD laden. Kernel von NetBSD laden. Kernel von OpenBSD laden. Nur Tabellen spezifiziert durch kommagetrennte Liste laden. Gleiche Datei mehrfach laden. Variablen aus Blockdatei der Umgebung laden. ZFS-Schlüssel laden. Geladene Schriften GNU Mach wird geladen … Linux %s wird geladen … Xen %s wird geladen … Initiale Ramdisk wird geladen … FreeBSD-Kernel %s wird geladen … Illumos-Kernel wird geladen … Hurd wird geladen … M MAC-Überprüfung ist gescheitert MENÜEINTRAG ist eine Zahl, ein Titel oder Bezeichner eines Menüeintrags. MODUL MODULE Richten Sie Supportanfragen zu Xorriso an <bug-xorriso@gnu.org>. Bootfähiges GRUB-Abbild für CD-ROM, Festplatte, USB-Stick und Diskette erstellen. Eine GRUB-Tastaturlayoutdatei erstellen. Ein bootfähiges GRUB-Abbild erstellen Ein virtuelles Gerät aus einer Datei erstellen. Partition als aktiv markieren BIOS-Laufwerkszuordnungen verwalten. Erforderliche oder optionale Argumente für lange Optionen sind ebenso erforderlich bzw. optional für die entsprechenden Kurzoptionen. PCI-Geräte bearbeiten. Von BEFEHL benötigte Zeit messen Speicher ausgeschöpft Speichertyp: DDR2. Speichertyp: Unbekannt. Bezeichner des Menüeintrags. Kein Menüeintrag angegeben. Typ des Menüeintrags. MiB MiB/s Minimale BASH-ähnliche Zeilenbearbeitung wird unterstützt. Für das erste Wort listet TAB die möglichen Befehlsvervollständigungen auf. Ansonsten werden mit TAB die möglichen Geräte-oder Dateivervollständigungen angezeigt. %s Minimale Emacs-ähnliche Bildschirmbearbeitung wird unterstützt. TAB listet Vervollständigungen auf. Drücken Sie Ctrl-X oder F10 zum Booten, Ctrl-C oder F2 für eine Befehlszeile oder ESC, um abzubrechen und zum GRUB-Menü zurückzukehren. Argumente fehlen
 Eingabedatei fehlt
 Montag Schwarzweiss  Mehr als ein Installationsgerät? Mehr als ein Menüeintrag? Ein verschlüsseltes Gerät einhängen. Alle Datenträger einhängen, für die das «boot»-Flag gesetzt ist. Alles einhängen. Nach UUID einhängen. Verschlüsselte Geräte einhängen. NAME NAME [VARIABLE] [HINTWEISE] ZAHL ANZAHL_DER_SEKUNDEN Name	Referenzzähler	Abhängigkeiten
 Native Festplattentreiber werden verwendet. Nutzung der Firmware-Schnittstelle wird verweigert. Netzwerkprotokolle: Neuer MBR wurde nach «%s» geschrieben
 Kein CS5536 gefunden Kein FPSWA gefunden Keine Statistiken für Boot-Zeiten verfügbar
 Kein Befehl angegeben.
 Kein Gerät angegeben.
 Keine Statistiken zum Paket-Zwischenspeicher verfügbar
 Es wurden keine Laufwerke neu zugeordnet Kein bekanntes Dateisystem erkannt Keine Übereinstimmung Kein Pfad angegeben.
 Kein Pfad oder Gerät wurde angegeben.
 Kein vorhergehender regulärer Ausdruck Kein Baum virtueller Geräte verfügbar Non-chain 4  Zu wenige Parameter für den Befehl.
 Bitte verbinden Sie nun einen entfernten Debugger. Anzahl vor PBKDF2-Durchläufe OS Laufwerk #Num ------> GRUB/BIOS-Gerät Fehler beim Öffnen der OS-Datei %s: %s Option -- wechselt in den nativen xorriso-Befehlsmodus. Optionen: Suche ausserhalb des Bereichs: %d
 Ersetzung ausserhalb des Bereichs (%d, %d)
 Die geschätzte Zuordnung von Plan9-Geräten überschreiben. P PARTITION BEFEHLE PFAD PBKDF2-Prüfsumme Ihres Passworts ist %s
 PORT PORT WERT [MASKE] Alte Konfiguration im neuen Kontext laden Alte Konfiguration im neuen Kontext laden, nur Menüeinträge Alte Konfiguration im gleichen Kontext laden Alte Konfiguration im gleichen Kontext laden, nur Menüeinträge Teil-Nummer: %s.
 Partition %d ist nun aktiv. 
 Partition %s: Partitionstyp «%s» unterstützt keine Einbettungen Pfad: %s
 Pfad: nicht verfügbar BEFEHLE auf Partition ausführen.
Rufen Sie «parttool PARTITION help» auf, um eine
Liste der verfügbaren Befehle zu erhalten. Eine DNS-Suche ausführen Eine IPV6-Autokonfiguration ausführen Sowohl direkte als auch umgekehrte Zuordnungen ausführen. PiB PiB/s Planar  Einen Klang abspielen. Bitte verwenden Sie nicht den alten Titel «%s» für GRUB_DEFAULT, verwenden Sie «%s» (für Versionen vor 2.00) oder «%s» (für 2.00 oder neuer) Pool-GUID: %016llx
 Pool-GUID: nicht verfügbar Pool-Name: %s
 Pool-Name: nicht verfügbar Pool-Status: aktiv Pool-Status: zerstört Pool-Status: exportiert Pool-Status: ARC-Gerät, Level 2 Pool-Status: potenziell aktiv Pool-Status: für Hotspare reserviert Pool-Status: nicht verfügbar Pool-Status: nicht initialisiert Mögliche Argumente sind: Mögliche Befehle sind: Mögliche Geräte sind: Mögliche Dateien sind: Mögliche Partitionen sind: Mögliche Dinge sind: Vorzeitiges Ende des regulären Ausdrucks Beliebige Taste drücken, um fortzusetzen … Drücken Sie eine beliebige Taste, um xnu zu starten «Enter» zum Booten des markierten Betriebssystems, «e» zum Bearbeiten der Befehle vor dem Booten oder «c» für eine Befehlszeile. «Enter» zum Booten des markierten Betriebssystems, «e» zum Bearbeiten der Befehle vor dem Booten oder «c» für eine Befehlszeile. Mit «ESC» kehren Sie zum vorherigen Menü zurück. Speicher-Informationen anzeigen. ZFS-Info zu GERÄT ausgeben. ZFS-BOOTFSOBJ ausgeben oder als VARIABLE setzen Eine Blockliste ausgeben. Blockargument ausgeben und ausführen. Backtrace ausgeben. Identität und Einstellungen des Laufwerks ausgeben. Grössenwerte in menschenlesbarem Format ausgeben. Geräteinformationen für einen angegebenen Pfad ermitteln (oder Gerät, falls die Option -d angegeben ist). RAM enthält Coreboot-Tabellen RAM enthält Firmware-Code RAM-Slotnummer %d
 REGEXP ZEICHENKETTE ROM-Abbild ist vorhanden. 16-bit-Wert aus ADDR lesen. 16-bit-Wert von PORT lesen. 32-bit-Wert aus ADDR lesen. 32-bit-Wert von PORT lesen. 8-bit-Wert aus ADDR lesen. 8-bit-Wert von PORT lesen. Nur Bytes der Länge LENGTH lesen. Neu starten ist gescheitert Den Computer neu starten. Passwort erneut eingeben: Register %x von %x:%02x.%x ist %x
 Regulärer Ausdruck ist zu gross Einen DNS-Server entfernen Ein Modul entfernen. Eine Umgebungsvariable löschen. Alle Speichersegmente im angegebenen Bereich löschen. Berichten Sie Fehler an %s.
 Melden Sie Fehler an <bug-grub@gnu.org>. Serielles Terminal wurde angefordert, aber GRUB_SERIAL_COMMAND wurde nicht angegeben. Standardparameter werden verwendet. Alle Zuordnungen auf Standardwerte zurücksetzen. Info zum Gerät holen. Aus einer Funktion zurückkehren. Zum IEEE1275-Prompt zurückkehren. Rufen Sie «gdb %s %d» auf und setzen Sie ARGS.HOLD auf Null.
 Geben Sie «go» ein, um GRUB fortzusetzen. SEK KURZNAME KURZNAME KARDE ADRESSE [HW-ADRESSE] KURZNAME NETZ [SCHNITTSTELLE| gw GATEWAY] GRÖssE QUELLE|-u UUID|-a|-b ZEICHENKETTE Samstag Gelesenen Wert in Variable VARNAME speichern. Variablen in die Blockdatei speichern. «Hallo Welt» ausgeben. Anhand von UUIDs nach Geräten suchen. Falls VARIABLE angegeben wird, dann wird das erste gefundene Gerät zum Setzen der Variable verwendet. Geräte nach Datei durchsuchen. Geräte nach Dateisystem-UUID durchsuchen. Geräte nach Dateisystembezeichnung durchsuchen. Anhand von Dateien, Dateisystembezeichnungen oder Dateisystem-UUIDs nach Geräten suchen. Falls --set angegeben wird, dann wird das erste gefundene Gerät zum Setzen der Variable verwendet. Falls keine Variable angegeben wird, dann wird «root» verwendet Anhand von Dateien nach Geräten suchen. Falls VARIABLE angegeben wird, dann wird das erste gefundene Gerät zum Setzen der Variable verwendet. Anhand von Bezeichnungen nach Geräten suchen. Falls VARIABLE angegeben wird, dann wird das erste gefundene Gerät zum Setzen der Variable verwendet. Der Sektor %llu wird bereits vom Raid-Controller «%s» verwendet und wird daher übergangen. Bitte fragen Sie den Hersteller, ob es möglich ist, keine Daten in der MBR-Lücke zu speichern. Der Sektor %llu wird bereits vom Programm «%s» verwendet und wird daher übergangen. Diese Software kann in Zukunft Start- oder andere Probleme hervorrufen. Bitte fragen Sie dessen Autoren, ob es möglich ist, keine Daten im Boot-Bereich zu speichern. Gerät nach dessen Position auf dem Bus auswählen. Gerät nach Anbieter und Gerätekennungen auswählen. Erweiterte Energieverwaltung setzen
(1=niedrig, ..., 254=hoch, 255=aus). Automatische Klangverwaltung festlegen
(0=aus, 128=leise, ..., 254=schnell). OEMID von RSDP, XSDT und RSDT festlegen. OEMTABLE-ID von RSDP, XSDT and RSDT festlegen. OEMTABLE-Revision von RSDP, XSDT und RSDT festlegen. «hidden»-Flag im Partitionstyp setzen Eine Variable auf den Rückgabewert setzen. Eine Variable auf das erste gefundene Gerät setzen. Eine Umgebungsvariable festlegen. Hintergrundfarbe für aktives Terminal festlegen. Ersteller-Feld von RSDP, XSDT und RSDT festlegen. Ersteller-Revision von RSDP, XSDT und RSDT festlegen. Debug-Umgebungsvariable setzen. Laufwerk in den Schlafmodus versetzen. Laufwerk in den Standby-Modus versetzen. Positionsparameter festlegen. Root-Gerät festlegen. Wartezeit bis Standby festlegen
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). terminfo-Typ von TERM auf TYP setzen.
 Den Standard-Booteintrag für GRUB festlegen (nur für den nächsten Bootvorgang). Den voreingestellten Booteintrag für GRUB festlegen. Adresse des seriellen Ports festlegen. Parität des seriellen Ports festlegen. Geschwindigkeit des seriellen Ports festlegen. Stop-Bits des seriellen Ports festlegen. Wortlänge des seriellen Ports festlegen. Einheit des seriellen Ports festlegen. Abbilder zum Booten von GERÄT einrichten.

Sie sollten dieses Programm normalerweise nicht direkt ausführen.
Verwenden Sie stattdessen grub-install. Benutzerpasswort festlegen (PBKDF2).  Benutzerpasswort (Klartext) festlegen. Nicht empfohlen, da unsicher. Variable durch Benutzereingabe setzen. Variablen setzen. Partitionstyp wird auf 0x%x gesetzt
 Positionsparameter anpassen. ACPI-Informationen anzeigen. APM-Informationen anzeigen. Eine Hilfemeldung anzeigen. Lange Liste mit ausführlicheren Informationen anzeigen. Den Inhalt der DATEI hexadezimal anzeigen. Geladene Module anzeigen. Inhalt des Speichers anzeigen. Roh-Inhalt des  ATA IDENTIFY-Sektors anzeigen. Roh-Inhalt einer Datei oder des Speichers anzeigen. Inhalt einer Datei anzeigen. Alle aktuellen Zuordnungen anzeigen. Diese Meldung anzeigen. Nur Version-1-Tabellen darstellen. Nur Version-2- und Version-3-Tabellen anzeigen. Herunterfahren ist gescheitert «initrd»-Befehl wie in grub-legacy simulieren «kernel»-Befehl wie in grub-legacy simulieren «modulenounzip»-Befehl wie in grub-legacy simulieren «password»-Befehl wie in grub-legacy simulieren «password»-Befehl von grub-legacy im Menüeintragsmodus simulieren N Bytes der Ausgabedatei überspringen. Offset-Bytes am Beginn der Datei überspringen. Slot %d geöffnet
 Hurd-Bestandteile wurden gefunden, die aber zum Booten nicht ausreichen. Dateiname angeben. Zu verwendenden Hash angeben. Eine oder mehrere zu ladende Schriftdateien angeben. Grösse für jeden Lesevorgang angeben Die Anzahl der Eingabedateien angeben. Geschwindigkeit: %s 
 GDB-Stub auf dem angegebenen Port starten GDB-Stub stoppen Entsprechende Komponenten-NUMMER in VARNAME speichern. Erfolg Sonntag Normale Ausgaben unterdrücken (Warnungen verbleiben) Syntaxfehler in Zeile %u
 In der erzeugten GRUB-Konfigurationsdatei wurden
Syntaxfehler entdeckt. Stellen Sie sicher, das die Dateien
/etc/default/grub und /etc/grub.d/* fehlerfrei sind oder
erstellen Sie einen Fehlerbericht mit %s als Anhang. Ein-/Ausgabebereich des Systemverwaltungsbus-Controllers ist bei 0x%x
 T ZIEL Zielformat wurde nicht angegeben (verwenden Sie die Option -0). Terminalgeometrie wurde festgelegt. Terminal ist nur ASCII [Vorgabe]. Terminal ist logisches UTF-8. Terminal ist visuelles UTF-8. USB-Unterstützung überprüfen. Bit bei BYTE:BIT im CMOS testen. Dateilesegeschwindigkeit testen. Prüfen, ob REGEXP auf ZEICHENKETTE passt. Das Video-Subsystem im Modus BxH überprüfen. Das Video-Subsystem überprüfen. Nur Text Die Dateien sind identisch.
 Der hervorgehobene Eintrag wird automatisch in %ds ausgeführt. Dieser Eintrag kann von jedem Benutzer gebootet werden. Donnerstag TiB TiB/s Werkzeug zum Bearbeiten einer Umgebungs-Blockdatei. Flash-Gesamtgrösse: %d B.
 Angehängter Backslash 64-bit-UUID in ein von XNU verarbeitbares Format umwandeln. Falls -l angegeben ist, bitte Kleinschreibung beibehalten (wie von blkid) Einen Systemdateinamen in einen für GRUB umwandeln. Übersetzt die Zeichenkette anhand den aktuellen Einstellungen. Rufen Sie «%s --help» oder «%s --usage» auf, um weitere Informationen zu erhalten.
 Dienstag BENUTZER PASSWORT BENUTZER PBKDF2_PASSWORT BENUTZERNAME[,BENUTZERNAME] UTF-8 Weiterleitung konnte nicht angelegt werden: %s Ihre Plattform konnte nicht erkannt werden. Verwenden Sie --target. Fork konnte nicht angelegt werden: %s Datenstrom von %s konnte nicht geöffnet werden: %s Pool-Status konnte nicht ermittelt werden Daten entpacken. Datei entpacken, bevor Prüfsumme ermittelt wird. Unbekannter Adresstyp %d
 Unbekannter Befehl «%s».
 Unbekanntes Kompressionsformat %s Unbekannte Kodierung Unbekanntes zusätzliches Argument «%s». Unbekanntes gsub-Schriftmerkmal 0x%x (%s)
 Ungültiger Code für Tastaturscan 0x%02x
 Ungültiger Bezeichner für Tastaturscan %s
 Unbekannter Systemfehler Unbekannter Videomodus Typ des virtuellen Gerätes ist unbekannt: %s
 EFI-Umgebung entladen. Kein Gegenstück für ( oder \( Nicht übereinstimmende ) oder \) Kein Gegenstück für [ oder [^ Kein Gegenstück für \{ Unerkannte Option «%s»\n Pool-Status nicht erkannt Nicht unterstützter Adresstyp %d
 Nicht unterstützte Coverage-Spezifikation: %d
 Nicht unterstützter Hardware-Adresstyp %d
 Bildformat nicht unterstützt Nicht unterstütztes Ersetzungs-Flag: 0x%x
 Nicht unterstützte Ersetzungsangabe: %d
 Nicht unterstützter Ersetzungstyp: %d
 Aufruf: Aufruf: %s -o AUSGABE CKBMAP_ARGUMENTE...\n Aufruf: %s GERÄT
 Aufruf: %s [EINGABEDATEI [AUSGABEDATEI]]
 Aufruf: %s [OPTION] MENÜEINTRAG\n Aufruf: %s [OPTION]\n CDROM als Root-Gerät verwenden. Entfernte GDB-Fehlerdiagnose anstatt DDB verwenden. ZEICHENKETTE als Inhalt des Menüeintrags verwenden. Einkompiliertes Root-Gerät verwenden. Serielle Konsole verwenden. Verwenden Sie die Tasten %C und %C zum Markieren eines Eintrags. VARIABLE SCHNITTSTELLE ZAHL BESCHREIBUNG VARNAME Ausführlicher Countdown. Angehängte Signatur überprüfen. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtuelles Gerät ist nicht verfügbar Virtuelles Gerät ist gescheitert Virtuelles Gerät ist offline Virtuelles Gerät ist online Virtuelles Gerät wurde entfernt WARNUNG: Im Betriebssystem wird keine Konsole verfügbar sein WARNUNG: Es wurde keine plattformspezifische Installation durchgeführt WARNUNG: Nicht unterstützte Parameter für Schrifteigenschaften: %x
 BREITExHÖHE. Die angegebene Anzahl an Sekunden warten. Nach jeder ausgegebenen Zeile auf Tastendruck warten. Warnung: Warnung: ungültige Hintergrundfarbe «%s»
 Warnung: ungültige Vordergrundfarbe «%s»
 Warnung: Syntaxfehler (fehlender /) in «%s»
 Mittwoch Windows NT/2000/XP (Lader) Windows Vista/7 (Lader) 16-bit-Wert nach ADDR schreiben. 16-bit-Wert nach PORT schreiben. 32-bit-Wert nach ADDR schreiben. 32-bit-Wert nach PORT schreiben. 8-bit-Wert nach ADDR schreiben. 8-bit-Wert nach PORT schreiben. Geschriebene SPD-Bytes: %d B.
 Xen-Hypervisor, Version %s YUV  Sie müssen mindestens einen Befehl angeben.
 «SystemPartition» und «OSLoader» müssen manuell eingerichtet werden. Ihr Einbettungsbereich ist ungewöhnlich klein.  core.img würde nicht hineinpassen. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] GERÄT [--md5] PASSWORT [DATEI] [--no-mem-option] [--type=TYP] DATEI [ARG ...] [-1|-2] [--exclude=TABELLE1,TABELLE2|--load-only=TABELLE1,TABELLE2] DATEI1 [DATEI2] [...] [-c DATEI [-p PRÄFIX]] [DATEI1 [DATEI2 ...]] [-d] GERÄTENAME DATEI. [-e|-n] ZEICHENKETTE [-f DATEI] [-f DATEI] Variablenname [...] [-f|-l|-u|-s|-n] [--hint HINWEIS [--hint HINT] ...] NAME [-h|-p|-r] [DATEI] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [DATEI …] [-m (stretch|normal)] DATEI [-s POSITION] [-d GERÄT] [-s POSITION] [-d GERÄT] [-v VAR] REGISTER[=WERT[:MASKE]] [-s GRÖssE] DATEINAME [ADR|comUNIT][,GESCHW] [ARG] KARTE [HW-ADRESSE] [KARTE] [UMGVAR=WERT] [ENVVAR] [KÜRZEL1] [KÜRZEL2] ... [MODUL1 MODUL2 …] [ZAHL:]VARNAME [ZAHL] [OPTIONEN…] [OPTIONEN] [OPTIONEN] DATENTRÄGER [OPTIONEN] DATEI_ODER_GERÄT [OPTIONEN] SCHRIFTDATEIEN [OPTION]… [MODULE] [OPTIONEN]… [PFAD|GERÄT] [OPTIONEN] [PFAD] [MUSTER ...] [BENUTZERLISTE] [WERT]... [BxH[xT]] [BxH] [[-a|-u|-v] [-g BxH] TERM [TYP]] [[Jahr-]Monat-Tag] [Stunde:Minute[:Sekunde]] [bus]:[slot][.func] [Anbieter]:[Gerät] «cryptomount»-Befehl ist fehlgeschlagen: %s «loopback»-Befehl ist fehlgeschlagen: %s «obppath» wurde in den Elternordnern von %s nicht gefunden, keine IEEE1275-Namensermittlung Ein Argument wurde «%s» zugeordnet, obwohl es kein Argument erwartet Zugriff verweigert NOTE-Segment für CHRP IEEE1275 hinzufügen Adresse Adresse nicht gefunden Versuch, ausserhalb der Platte «%s» zu lesen und zu schreiben Versuch, ausserhalb der Partition zu lesen oder zu schreiben Versuch, hinter dem Ende der Datei zu lesen Versuch, ausserhalb der Datei zu suchen Es wird versucht, das Core-Abbild «%s» aus GRUB zu lesen Es wird versucht, das Core-Abbild «%s» erneut aus GRUB zu lesen verfügbarer RAM Verfügbare Formate: Falsche Signatur base_addr = 0x%llx, Länge = 0x%llx, %s
 base_addr = 0x%llx, Länge = 0x%llx, Typ = 0x%x
 Bitmap-Datei «%s» besitzt ein nicht unterstütztes Format blocklist DATEI Blocklisten sind ungültig Blockgrösse ist nicht durch 512 teilbar 0 Schleifen können nicht unterbrochen werden Dateisystemtyp auf %s konnte nicht ermittelt werden Befehl «%s» konnte nicht gefunden werden Verschlüsselter Datenträger «%s» konnte nicht eingebunden werden: %s «%s» kann nicht geöffnet werden: %s %s kann nicht geöffnet werden, Index %d: Fehler %d Blocklisten konnten nicht ermittelt werden Blocklisten konnten nicht ermittelt werden: %s Kernel-Abbild kann nicht komprimiert werden Für %s konnte kein GRUB-Laufwerk gefunden werden. Überprüfen Sie Ihre device.map Gerät für %s konnte nicht gefunden werden (ist /dev eingehängt?) Übersetzer-Befehlszeilenpfad für Pfad «%s» konnte nicht ermittelt werden: %s OS-Datei «%s» kann nicht geöffnet werden: %s «%s» kann nicht geöffnet werden: %s «%s» kann nicht korrekt gelesen werden «%s» ist nicht lesbar: %s Datei %s kann nicht in %s umbenannt werden Originalordner kann nicht wiederhergestellt werden «%s» kann nicht durchsucht werden: %s Aufruf von stat für «%s» nicht möglich: %s Auf CD-ROM kann nicht geschrieben werden Auf «%s» kann nicht geschrieben werden: %s Schreiben in die Standardausgabe fehlgeschlagen: %s Karte nicht gefunden cat DATEI Prüfsummenvergleich ist gescheitert Zu verwendende Kompression für Kernel-Abbild auswählen cmp DATEI LOKAL comUNIT[,GESCHW] Vergleichsfehler bei %llu Verbindung verweigert Verbindungsabbruch wegen Zeitüberschreitung In fette Schrift umwandeln Core-Abbild ist zu gross (0x%x > 0x%x) Version von core.img passt nicht %s konnte nicht automatisch konfiguriert werden Teilgerät eines über mehrere Geräte verteilten Dateisystems konnte nicht gefunden werden Geli-Nutzer konnte nicht gefunden werden «part»-Teil von «geom» konnte nicht geöffnet werden «geom» konnte nicht geöffnet werden! ELI-Metadaten konnten nicht gelesen werden UUID konnte nicht ermittelt werden Geli-UUID konnte nicht ermittelt werden Zufallsdaten für Salt konnten nicht geholt werden Netzwerkpaket konnte nicht gesendet werden cp DATEI LOKAL crc DATEI Krytografiefehler Nummer %d cygwin_conv_path() gescheitert Gerätezuordnung löschen, falls bereits vorhanden Ziel ist nicht erreichbar Geräteanzahl übersteigt die Grenzen Hinting deaktivieren Laufwerk «%s» wurde nicht gefunden. Platte existiert nicht, ersatzweise wird Partition des Geräts %s verwendet Zu verwendendes Platten-Modul (biosdisk oder native). Diese Option ist nur für BIOS-Ziele verfügbar. Die Grösse von diskboot.img muss %u Bytes betragen GERÄT nicht auf Dateisysteme überprüfen Domainname-Komponente ist zu lang LED-Status nicht aktualisieren erledigt DATEI als Anfangskonfiguration einbetten DATEI als öffentlichen Schlüssel zur Signaturüberprüfung einbetten Einbettung ist nicht möglich, jedoch für die Installation mit RAID und LVM erforderlich Einbettung ist nicht möglich, jedoch für die Installation auf mehreren Laufwerken erforderlich Enter: Booten, «e»: Optionen, «c»: Befehlszeile Environment-Block ist zu klein Fehler: %s.
 GRUB-Abbilder wurden im Ordner ORDNER/%s anstelle von %s erwartet Kanonischer Pfad von «%s» konnte nicht ermittelt werden Lesen des Sektors 0x%llx von «%s» ist fehlgeschlagen Passwort konnte nicht gelesen werden Schreiben des Sektors 0x%llx nach «%s» ist fehlgeschlagen Falsch Fehlerhafter RAM (BadRAM) Datei «%s» nicht gefunden Dateiname wurde erwartet Dateiname oder Tempo und Noten erwartet Dateisystem «%s» unterstützt keine Labels Dateisystem «%s» unterstützt keine Blocklisten Firmware-Abbild ist zu gross Automatisches Hinting erzwingen Vier Argumente werden erwartet fwstart.img entspricht nicht der bekanntermassen funktionierenden Version. Verwenden Sie dies auf eigene Gefahr Ein Abbild im FORMAT erzeugen Eine kurze Hilfemeldung ausgeben Diese Hilfe anzeigen Das angegebene Argument ist ein Systemgerät, kein Pfad grub-mkimage wurde ohne XZ-unterstützung kompiliert grub> für SEK Sekunden hängenbleiben (Voreinst.: 3600) hex DATEI Bitmap-Strikes beim Laden ignorieren Ungültige Angabe der Terminalgeometrie GRUB-Abbilder in ORDNER/%s anstelle von %s installieren Trotzdem installieren, auch wenn Probleme auftreten Ungültiges PBKDF2-Passwort Ungültiges ELF-Magic (architekturabhängig) Ungültiges ELF-Magic (architekturunabhängig) Ungültige Blockgrösse Ungültige Angabe der Farbe «%s» Ungültiger Environment-Block Ungültiger Dateiname «%s» Ungültiger Schriftbereich Ungültiges Zeilenformat: %s Ungültiger Parameter %s Ungültiger Sprungwert %lld Ungültiger Variablenname «%s» Ungültige Angabe «%s» des Grafikmodus GET_ARRAY_INFO-Fehler (ioctl): %s GET_DISK_INFO-Fehler (ioctl): %s RAID_VERSION-Fehler (ioctl): %s Kernel-Abbild ist zu gross (0x%x > 0x%x) Netzwerkadressen auflisten Netzwerkkarten auflisten Netzwerkrouten auflisten ls PFAD lzop-Datei ist beschädigt Das Laufwerk auch als Diskette bootfähig machen (Vorgabe für fdX-Geräte). Kann mit einigen BIOS-Varianten scheitern. Symbol «%c» fehlt Obligatorische Option für «%s» fehlt Modul «%s» ist nicht geladen Modul ist nicht geladen Name Abbild und Einhängepunkt werden benötigt Kein APM gefunden Keine DHCP-Informationen gefunden Keine DHCP-Option %d gefunden Keine DHCP-Optionen gefunden Keine DNS-Angabe gefunden Kein DNS-Antwort empfangen Es wurden keine DNS-Server konfiguriert Kanonischer Pfadname enthält keinen «/» Kein Befehl angegeben Kein Schlüssel verfügbar Keine Netzwerkkarte gefunden Kein Server angegeben Keine solche Partition Kein passender Videomodus gefunden Keine Symboltabelle Kein Terminal angegeben Kein Terminator im Core-Abbild Nicht an Sektoren ausgerichtete Daten wurden in der Core-Datei gefunden Ist kein Ordner Keine primäre Partition Keine reguläre Datei ausserhalb des Bereichs der Funktion Ein Argument wurde erwartet Andere Software nutzt den Einbettungsbereich, wodurch nicht genug Platz für core.img ist. Solche Software versucht häufig, Daten zu speichern, um sie unauffindbar zu machen. Wir empfehlen Ihnen, dies zu untersuchen Hauptspeicher erschöpft Ein erzeugtes Abbild in DATEI ausgeben [Vorgabe=stdout] Ausgabedatei muss angegeben werden Erstellte Konfiguration in DATEI ausgeben [Vorgabe=stdout] Überlauf wurde erkannt Die Passwörter stimmen nicht überein Eine bootp-Autokonfiguration ausführen Physischer Datenträger %s wurde nicht gefunden In MODULE angegebene Module vorladen Vorzeitiges Ende der Datei Unerwartetes Ende der Datei %s CapsLock-Taste drücken Insert-Taste drücken NumLock-Taste drücken ScrollLock-Taste drücken SysRq-Taste drücken Linke Alt-Taste drücken Linke Ctrl-Taste drücken Linke Umschalttaste drücken Rechte Alt-Taste drücken Rechte Ctrl-Taste drücken Rechte Umschalttaste drücken Programmversion ausgeben Versionsinformationen ausgeben und beenden Diese Meldung anzeigen und beenden Ausführliche Meldungen ausgeben. Öffentlicher Schlüssel %08x wurde nicht gefunden Lesefehler bei %llu: %s Text aus DATEI lesen. Relativer Pfad zum Unterordner auf dem Netzwerkserver Neuzuweisung 0x%x ist noch nicht implementiert reservierter RAM DHCP-Option holen und in VARIABLE speichern. Falls VARIABLE «-» ist, den Wert ausgeben. Wurzelordner auf dem TFTP-Server Routenschleife entdeckt ROM-Abbilder in ORDNER speichern [optional] Ausgabe in DATEI speichern [erforderlich] Schriftart-Index setzen Serieller Port «%s» wurde nicht gefunden set [NAME=WERT ...] Feststelltasten-Modus festlegen Schriftauffüllung oben einstellen Schriftauffüllung unten einstellen Schriftfamilie festlegen Schriftbereich festlegen Schriftgrösse festlegen Name der Eingabedatei für 32-bit festlegen. Name der Eingabedatei für 64-bit festlegen. Name der Eingabedatei festlegen. Vorgabe ist STDIN Einfügen-Modus festlegen Numlock-Modus festlegen Name der Ausgabedatei festlegen. Vorgabe ist STDOUT Pause-Modus festlegen Präfix-Ordner festlegen [Vorgabe=%s] Scrolllock-Modus festlegen Programmname festlegen Grösse stretch(=ZOOM)|normal(=NORMAL) Symbol «%s» nicht gefunden temporär Terminal %s wurde nicht gefunden oder wird von terminfo nicht berücksichtigt Terminal «%s» wurde nicht gefunden Das Argument «%s» benötigt eine Ganzzahl Der device.map-Eintrag «%s» ist ungültig, wird ignoriert. Bitte korrigieren oder löschen Sie Ihre device.map Der Laufwerksname «%s» in device.map ist inkorrekt. %s wird stattdessen verwendet. Bitte verwenden Sie die Form [hfc]d[0-9]* (z.B. «hd0» oder «cd») Der erste Sektor der Core-Datei ist nicht sektor-ausgerichtet Das Installationsgerät ist ein Wechseldatenträger. Diese Option ist nur bei EFI verfügbar. Der Partitionstyp 0x%x ist ungültig Die Sektoren der Core-Datei sind zu stark fragmentiert Die Grösse von «%s» ist nicht %u «%s» ist zu gross «%s» ist zu klein Diese ELF-Datei ist vom falschen Typ Diese GPT-Partitionsbezeichnung hat keine BIOS-Boot-Partition, Einbettung würde unmöglich sein Dieses LDM hat keine Einbettungspartition, Einbettung würde unmöglich sein Die MSDOS-Partitionsbezeichnung hat keinen Freiraum nach dem MBR, Einbettung würde unmöglich sein Drei Argumente erwartet Zeitüberschreitung beim Öffnen von «%s» Zeitüberschreitung beim Lesen von «%s» Zeitüberschreitung: Hardware-Adresse konnte nicht aufgelöst werden Zu tief verschachtelte symbolische Verknüpfungen Übersetzer «%s» für Pfad «%s» hat verschiedene Wörter, die keine Optionen sind, mindestens «%s» und «%s» Übersetzer «%s» für Pfad «%s» wurde nur Optionen übergeben, device-Teil konnte nicht gefunden werden Übersetzer-Befehlszeilenpfad für Pfad «%s» ist leer Zwei Argumente wurden erwartet Typ Es kann kein Dateisystem in %s erkannt werden. Sicherheitsüberprüfung kann nicht ausgeführt werden Gerätegrösse ist unausgerichtet Unerwartetes Dateiende Unbekanntes Argument «%s» Unbekannte Kompression %d
 Unbekannter Gerätetyp %s
 Unbekanntes Dateisystem Ungültiger Typ eines RAID-Geräts «%s» Unbekannter regexp-Fehler Unbekanntes Zielformat %s
 Unbekannter Terminfo-Typ «%s» Nicht erkannte Formatspezifikation für DHCP-Option «%s» Nicht erkannte Netzwerkadresse «%s» Netzwerk-Schnittstelle «%s» wurde nicht erkannt Zahl nicht erkannt Nicht auflösbare Adresse %s unset [NAME ...] Nicht unterstützter HTTP-Fehler %d: %s Nicht unterstützte HTTP-Antwort Nicht unterstützte RAID-Version: %d.%d Nicht unterstütztes gzip-Format Parität des seriellen Ports wird nicht unterstützt Geschwindigkeit des seriellen Ports wird nicht unterstützt Anzahl der Stop-Bits des seriellen Ports wird nicht unterstützt Wortlänge des seriellen Ports wird nicht unterstützt FARBE für Hintergrund verwenden FARBE für Text verwenden ORDNER als Wurzel der EFI-Systempartition verwenden. DATEI als Schrift verwenden (PF2). DATEI als Boot-Abbild verwenden [Vorgabe=%s] DATEI als Kern-Abbild verwenden [Vorgabe=%s] DATEI als Gerätezuordnung verwenden [Vorgabe=%s] DATEI als xorriso benutzen [optional] GRUB-Dateien im Ordner ORDN verwenden [Vorgabe=%s] ZEICHENKETTE als Produktname verwenden ZEICHENKETTE als Produktversion verwenden ID-Datei auch dann verwenden, wenn eine UUID verfügbar ist Abbilder und Module in ORDNER verwenden [Vorgabe=%s/@platform@] Variable «%s» ist nicht gesetzt Visuelles UTF-8 Warten, bis ein Debugger einklinkt mit Blocklisten wird nicht fortgesetzt Falsches ELI-Magic oder -Version xnu_uuid GERÄT xz-Datei ist beschädigt oder Blockoptionen werden nicht unterstützt Sie können diese Adresse nicht löschen Sie müssen zuerst den Kernel laden Ihre BIOS-Boot-Partition ist zu klein, Einbettung würde unmöglich sein Ihre Datei core.img ist ungewöhnlich gross. Sie würde nicht in den Einbettungsbereich passen. Ihr Einbettungsbereich ist ungewöhnlich klein. core.img würde nicht hineinpassen.                             boot/grub/locale/en@arabic.mo                                                                       0000600 0001750 0001750 00000457341 13417732100 0015104 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                            L(    |P      `k  #   ak      k     k     k     k  $   k     l  6   )l     `l     gl  	   sl     }l     l     l     l     l     l  .   l  .   'm  %   Vm     |m     m    m    n    o     p  8   p  '   p  7   q  F   Tq  v   q  +   r     >r      Or     pr  !   r     r  ,   r     r     s  $   s     @s  *   \s     s     s     s     s     s  
   s  	   s     s     t  ,   )t  ,   Vt  ,   t  '   t  -   t      u  (   'u  (   Pu  )   yu     u     u     u     u     u  "   v  4   %v     Zv     bv  7   ov     v     v  1   v     v     w  %   w  '   @w  %   hw  '   w     w     w     w     w     w     x     
x     x     (x     Hx     Zx     hx     xx     x  3   x     x  $   x     x     	y     "y     1y     By     Yy     ny  -   y     y  !   y     y     z     $z  #   9z     ]z  `   z  Z   F{     {     {     {     {     {     {     {     |     |  0   9|  3   j|     |     |     |     |     }     }     *}     A}     W}     e}     |}     }     }     }  %   }     }     }     }     ~     +~     F~     \~     k~     ~~     ~  *   ~  3   ~  1     1   8  2   j                  1        -  #   L     p  "     8                    	   5  #   ?     c                    ԁ       )        $     C     a  "     P               H     &   f            !     ,   ΃                 	   (  !   2  *   T       '             Ԅ             $        =     O     a     |            
   х  
   ܅       1        ,     :     G     `  3   |  >     $             +     H     `     {       +        ۇ       o     #               $   ߈            '   :  9   b            z   Ӊ  "   N     q     x  8        Ŋ  
   ܊                    .     ʋ  +             +     @     V  "   i            (        ׌  #     &     ?   :  '   z  @                            &  "   8  0   [                 7                            "     .     4  0   ;     l                 2     %             -  *   <  6   g  +        ʐ            !   ̑  d     e   S  d     i     o     H        A     T     j     {                    Ք  #             0     H  1   Z  )                       ԕ  /             "     9  5   V            K   ǖ  &        :     V     k            D        ח     ܗ  '     P   	     Z     y  	                       Ř     V  '          +        J     [  )   w               ՚               #     ;     Q  $   f            "        ۛ     ݛ       (             #     )  "   1  +   T  -             ǜ     ֜            O   	     Y     o                 %          )     !   /  "   Q     t       +        Ӟ               	  !        =     Y     r     ~                џ                    2     F  4   V                    Ԡ          
     #     <      Y  !   z       4     M     2   9     l       *     8   Ϣ               ,     D     [     s  3     $     +   ٣               (     =     R     e                     դ     פ  D       4                 ;   5     q       !        ҧ       s        |               ¨     ը                    -     1     7                         Ǫ     Ӫ            '   "  
   J     U     d     z                           H   ث  L   !     n                 %               #        9     V     s     |                 ӭ       "     (   $     M     i  %   v                 #   خ  *        '     )     <  #   A     e     j  	   |  	     "     ;     #     <        P     ^     |  .     	        ð  `   հ     6  !   K  )   m                      q        (     <     S     b     y                    ֲ  "             0     J     b     y                 #   ѳ  a        W     t  g             }       -          !          "   )  '   L  Q   t     ƶ                         4     Q     n               ķ                     '     <      O     p                 -   и            "   ,  b   O  )        ܹ          
  ,   %     R     k  	   p  "   z  %        ú     Ⱥ     ݺ  
          &     )        I  5   \  ^          $     %   0     V  ^   	  _   h  }   Ƚ     F  )     '   '  >   O  D     !   ӿ  '     -     #   K     o  )          )           )     ,   G     t                      E     $   :  A   _  )                             >     _  q   t       :        >     \  `   k               	           6     R  0   g                 )     &     #   2  -   V                           )   
     4  %   D  %   j  ,     '     :           -   ?  0   m  /          .               '   4  $   \  "                    2     Q     *   `            )     o        4     M  6        >     @     G  0   N        !     "     #        	          9     O  !   n       
          <             "  %   8  >   ^                                d     *   a  (     ,               0     6   E     |                           0          !        A     _  $   p                           $     "   6  $   Y     ~                                         ,     9     W     r       '               $     +   -  "   Y     |  )                              '   &     N     m       <                %        *     C     Z     m  m                  +     E     ^  +   x  3     1        
  '     -   @     n  '   w  '     .     	                   5     Q     m                                *     ?   @       B     p        G  /               .   -  O   \  )               	     <        B  5   `                           :        F  1   Y                                                       0     A     G  	   T     ^     m                                               '  
   5  
   @  	   K     U  !   [  )   }                           n   #  F     N        (  "   6     Y     ^  .   p  .     /     W     -   V  -     $     #     0     6   ,     c     q       (     1     )             0     I     X     r  !                          %        :  &   N     u       0                        3  7   M  .          4     #        %     D     a  '   v                      %        3     H     ]     t                      ,                  -     I     h     {       #               _     B   [                                   ;  &   Y                      N     m   !       &               7        ;     K  ;   _  V     +     "        A  &   [  !          r        .     3       /     H   '  F   p  w     N   /     ~  (               I     )   1  $   [  ,     '          %                  .     B  $   T  '   y  *     (                    J   6                 -     +        &  $   ,     Q  "   Z  +   }            -     J        S     o  %     "     9              )  "   J     m     ~                               
     "     <     Q     i  %                         %        9     P     c     w       [          !        %     >     R     W     t                                /     7   6  4   n  /               -        6  @   R       3                       #     3     I  1   i                           	     	               1          0   5     f     {  !          "                      !    :    M    ^    p                                 &   
    1    M    e         '    &        L    9   [     0        !           9    K    h    }                     #    #    $   *    O    _ &   p     !                   	         	   3 7   =    u D    ]    %   2 ,   X [    ;    w    7    K    #   	 /   =	    m	    	    	 &   	 U   	 @   A
 Q   
    
    
     +       D R   a L    .       0    G F   L                                 .    O    d    ~ 2    !    #           &    >    O    m             $            (   : #   c                 )           -    E '   ` '    '        0       (    C -   a 8    !    '           * !   A     c &            .        !   # B   E E    B    r   3    =    -    0   $ %   U Q   { &    V       K    T    h    z ;        '    '       > `   V [    I       ]    b          4    o    N   E  h             ! U   {"    " 6   "     ## <   D# 3   # O   # 1   $ "   7$ >   Z$ ,   $ G   $     % 	   /%    9% '   R% 6   z%    %    % 1   %    & L   & ^   f& L   & F   ' N   Y' ;   ' H   ' G   -( I   u( 8   ( 8   (    1)    G)    U) A   c) h   ) 	   *    * S   **    ~* .   * Z   * 0   +    F+ P   I+ T   + P   + T   @,    ,    , =   , -   , -   -    9-    B-    a- /   w- !   -    - !   -    	.    #. ^   =.    . H   . 4   . 4   )/    ^/    w/ (   / $   / .   / ^   0 :   q0 =   0 -   0 ?   1 +   X1 G   1    1    2    3 :   |4 :   4    4    4 /   4 
   +5    65 +   H5 9   t5 d   5 f   6 ,   z6 3   6 ,   6 0   7 4   97    n7 -   7 -   7    7 .   7    (8    E8 
   M8    X8 K   r8 ?   8    8 %   9 '   <9 5   d9 2   9    9 !   9    	: -   ): T   W: d   : o   ; _   ; `   ; >   B< C   < @   < h   = ?   o= O   = 4   = D   4> u   y> ;   >    +? 1   K?    }? I   ? 3   ? &   @ A   4@ <   v@ 0   @     @ R   A =   XA =   A ;   A @   B    QB "   B "   C    2C J   C 0   D    JD @   YD N   D    D    E 9   
E    DE A   WE N   E 2   E H   F &   dF !   F .   F *   F O   G "   WG $   zG 7   G 7   G 8   H E   HH    H    H &   H H   H    #I    CI 1   _I /   I i   I e   +J J   J 3   J 9   K 2   JK 9   }K A   K +   K Y   %L ?   L =   L    L I   M -   (N A   VN F   N 0   N 4   O Q   EO t   O ,   P 9   9P    sP K   jQ    Q    Q k   Q -   OR    }R    R *   R 6   R 9  S 5   ST [   T ,   T '   U '   :U !   bU :   U     U    U S   U 2   RV B   V S   V    W U   W    W    X    X #   X ,   X '   Y C   5Y ]   yY 
   Y    Y    Y m   Z    Z    Z !   Z +   Z    Z 
   [    [ b   +[ '   [    [ !   [ 2   [ _   )\ M   \ #   \    \ T   ] V   k] D   ] 9   ^ %   A^   g^ E    `    f`    3a    b    b    c    d *   (e    Se    qe    e $   e +   e &   e /   !f @   Qf 2   f -   f    f \   g R   mg    g    g $   g    g X   h    kh 1   h 8   h f   h =   Xi 6   i    i M   `j 1   j (   j 8   	k    Bk    Kk    Wk    k 
   k R   k    Al =   l     m    6m    Hm ;   Om )   m   m   n X   o    ,p [   Jp    p 5   p W   p 8   Tq .   q 9   q :   q &   1r +   Xr (   r *   r U   r $   .s =   Ss H   s    s    s    s M   t    Yt    bt    nt E   }t W   t Z   u -   vu    u     u (   u    	v    )v )   v 0   v .   'w    Vw +   sw P   w A   w N   2x E   x E   x 6   y *   Dy X   oy +   y     y    z    1z ;   Qz 2   z ,   z    z (   { 9   /{ 0   i{ #   { (   { >   { ;   &| )   b|    | g   | C   } %   X} *   ~} 0   } 0   } .   ~ .   :~ 9   i~ @   ~ G   ~ .   , e   [     g   \ 2   Ā :    T   2 s        .    *   E (   p -       ǂ j   ނ J   I V    '        $   , &   Q     x :    8   Ԅ 7    $   E    j 4   m       *    ǉ    ԉ 5    y    ;    8   ϊ A    1   J E   |     7    6    !     "   B )   e /    5                 c  + j   &    .   !    P    ] 9   s -    -   ۑ G   	    Q    d ,        ,                 9   %    _     %    0       ݔ     N    6   c 6    I   ѕ <    7   X     3    G   Ԗ E    B   b     A    L    9   K     B    -        +   * =   V \        *       " D   .    s !            H   ͚ z    J    |   ܛ    Y <   p     a   ˜    - %   >    d +   / J   [ Y                    ,    E      0   "    S .   m &    *   à -    :    B   W D    0   ߡ :    0   K .   | .    *   ڢ 9    ,   ? L   l     6    6            8    <    `    )   ~ D    #    L    P   ^     5   Z 3        ĩ      -    2   4 5   g 2    5   Ъ 1    4   8 *   m     B    (    $     0   E :   v #       լ >    ^   2 5    "   ǭ >       ) S    -   G ,   u 4    F   ׯ )       H    Q ?   d E    
    #           (    ; J   L R        h   
    s 1   6 H   h H    h      c    &     Y  ׷ U   1 M    g   չ t   = A    L    Z   A M    :    P   % 8   v P    7     P   8 X    >    0   ! 1   R ;        _    G   @ v    J    8   J ;    7    @    ?   8 (   x     6    v    >   -    l     D   J A    2    .    2   3 '   f b    :    %   , '   R O   z F    B    a   T 4    8    8   $ #   ] 2    L        J   ! F   l Y    M    q   [ @    ]    f   l f       : R   W '    )    M    O   J J        8       2 b   N     S   a         X       * -    a  ? h       
         a   ' E    C    C    E   W %    9    +    @   ) B   j )        3    y     /    ,    D    w   <             =    )    '   B    j Q   0 R    S    ,   ) 2   V _    ]       G    V +   s #        3    [        \ :   { ;    !    K    -   ` $    :    !    2    =   C <    G    *    &   1 %   X ?   ~ '                    = ;   S 4    1    ;    V   2 @    6    L    b   N J        K       T 5   s 9    %    !   	 I   + 8   u <    %    p    F        C    )    *   F "   q 5        7   u 5    7    5    5   Q T    p    c   M     P    \   "     J    J    X   '     3    .    2    5   ) 2   _ 5    1    4    .   / 7   ^     P    z        j            U    %   I &   o U        M   m (            o    2   ~ V        )   &    P .   o 2    j    #   < f   ` 9    +       -    6 
   V 
   a    l     /    !                   '     = 4   ^ +    :    #    5    '   T 3   |                        	 
    5   ' G   ]         +    ;    5   L        O        j @             k    f   ] j       / W    a   4 I    G    [   (  h          $   	    . <   J O    W    2   / ,   b     7    0    D    $   ] ,    =    (    @       W E   v 3    7    T   ( A   } +    "    5    i   D T    )    ^   - D    :    1    !   > K   ` 6    -       	 6   0	 L   g	    	    	 *   	 '   
 6   E
    |
    
 >   
 X   
    A     a 3    A    %    '    %   F @   l 5    /            6   M <    $    2    -    8   G 8    H    7       :    X =   j        K 4   * S   _ 1    9    o    #    !    z       P J     B   K 1    O    D    +   U        _ b  h 9    b       h             .    H   H 5            ]   j E    T    F   c 2    D    
   " "   - !   P (   r M    M    U   7  L     6        ! 1   /!    a! 6   ! 2   (" ,   [" Z   " c   " 	   G# =   Q#    # K   # d   # ,   T$ /   $ U   $    % 1   % E   % L   & @   ]& r   & 5   ' E   G' K   ' #   ' (   ' F   &( *   m( 6   ( +   ( &   ( .   ") 3   Q) +   ) 0   ) 3   ) Q   * !   h* 8   * 8   * 7   * D   4+ ,   y+ $   + &   +    + ,   ,    0, $   , C   - *   K- %   v-    - ;   -    - &   - 0   ". /   S. #   . ,   . 1   . `   / q   g/ f   / `   @0 7   0 4   0 `   1 :   o1    1 '   12 b   Y2 2   2 '   2 8   3    P3 1   m3 ?   3 a   3    A4 7   `4 #   4 )   4 -   4    5    *5 t  @5    6 `   6 B   /7 _   r7 (   7 *   7 I   &8 7   p8 J   8    8    9 ,   -9 /   Z9 (   9 #   9 #   9 )   9    %:    >:    \: #   |: !   : #   : '   : 2   ; V   A; =   ; 0   ; /   < .   7< (   f< N   < O   <    .=    F= l   = ;   Q> ]   > '   > F   ? ?   Z? $   ? 6   ?     ? #   @    ;@    X@ '   w@    @    @ I   @ I   A M   iA    A    A M   A    CB C   aB $   B *   B (   B 
   C    )C #   EC    iC i   C .   C    D    D E   ZE g   E    F {   F    ?G l   H    H M   !I X   oI ,   I 4   I 4   *J O   _J    J    jK    K 3   L *   L &   L R   "M ;   uM    M    ?N [   N /   2O    bO    nO .   O -   &P 0   TP $   P .   P -   P %   Q =   -Q +   kQ ,   Q 2   Q n   Q =   fR C   R '   R *   S    ;S :   US <   S ?   S 7   T 4   ET O   zT I   T E   U [   ZU M   U -   V #   2V 8   VV #   V U   V <   	W +   FW 1   rW G   W G   W J   4X A   X \   X 5   Y =   TY c   Y i   Y ;   `Z I   Z *   Z *   [ C   <[ E   [ K   [ 6   \ "   I\ h   l\ 7   \ >   ]    L]    ]    _^    >      	  j       7    /                o      P        0                        *  p  q    (  >                                      %                     }           G   j        S            v   C              C    T             _  ;                                                 d            >        '                 ^                *        +    !  ?   K          {            1      m              y                                 s      e        2    	             K    V      	  8   !         /     ^                    r  H            F                 r   |                                  D        $                       r    _           I  l  e          G    w             S            ,      J  %     s                      R                 Y      n           ;              
             4           $   W            d    ?  b               ,  6  w    h                     I  J     7   q  4    V      p                O    `                                              i                   X  ]        G      6  c                N                      B  :    C  l  =    v                           A           ,            j  6  g  F   ,     B       U        f          t     h        [  N          w             ]    a        W     <      u  k     	  {  S  1  `      a          '             {                                  )       i                    y              O       m              ^                  M                        P                  -      %               f        b                   t               C                            8  X          *                           
          k     z  w   z  @  T         ]      |                      \      J               '  D       0  b                       (             c                 k       G        s                    [        *  Z      y       )          \                    y         N      4                           v  h              
  $                              ;    6                    |     2               3  v    M  L              ~  S        9  Q     2            {                                         %        @   F      +                    .             V  Q            2                       z          +   g  a             !                                          v                M                 M     P        K             E        9                        @  ^                          c           a      [     )  W          c    A                  k  H            X             "  W                +  h              =                      Z                        }  i    G  )  j               -   &  (        u          |                        ^  g      (  c    e  /  5              -                                 w        L                  M                d      e                         `  o                       N  $      !                o        +                     R             p     "     	                 q                            T    y   n    r                   ]            x                                                 D            }  -                                <         R                       V              H   (           }              N     8           }              ]              b  p      ?                          H                                .  ~     8        &       =  B                         W  K  =          E    [       1                          _                             e  h           4      9   R  \              X  E        B       O  t    >           T  f                 l  f     F              n        )   B      1        \  L    f                &            <  0     Z    d   F  a  ;  ,     u     o                               O     Z         ?        T       A  x          8                 .      *   .        n   l                       g     L       J                               r            u        :         .                                      3           L    X      P                0  5  m             U    9  <        g  A               3                     ~                l    $      "  C             '            
                       /            i      O  9                          0  n  5    U             ;       &                 U             7  4      Y    m  _                                      t          m                      @  1                 u               s   I              Q  !  k        `           2  @    Z            "      A         ?  6    {          E      3              &    '  H            [                              j            >  #  R      #    S  z  Y   d  x  ~  b  P            t          _    q                    #  \       `       ~      E                3    o                #        :  
  q                                    I       :            Y    x    #   U         I         J    -    Q  Y  7  5       x                 /      5      <               :        =   "    %      K        i            D      p         |    V          z   D    Q  s    7                   total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s doesn't exist. Please specify --target or --directory %s doesn't look like an EFI partition.
 %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: not found %s: option '%c%s' doesn't allow an argument
 %s: option '%s' is ambiguous; possibilities: %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- --ppc PATH|--x86 FILE -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Bless DIR of HFS or HFS+ partition for PPC macs. Bless FILE of HFS or HFS+ partition for intel macs. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't create file: %s Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check if CPU supports Physical Address Extension. Check if FILE can be used as x86 multiboot kernel Check if FILE can be used as x86 multiboot2 kernel Check if FILE is ARM EFI file Check if FILE is BIOS bootsector Check if FILE is IA64 EFI file Check if FILE is hiberfil.sys in hibernated state Check if FILE is i386 EFI file Check if FILE is of specified type. Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear bit at BYTE:BIT in CMOS. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find a free BootNNNN slot Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Default server is ${net_default_server} Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not apply any reed-solomon codes when embedding core.img. This option is only available on x86 BIOS targets. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. EFI bootloader id isn't specified. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enable/disable RTS/CTS. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Evaluate arguments as GRUB commands Execute syslinux config in new context Execute syslinux config in new context taking only menu entries Execute syslinux config in same context Execute syslinux config in same context taking only menu entries Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FONTS FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File size: %s
 File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Generating grub configuration file ... Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s Graft point syntax (E.g. /boot/grub/grub.cfg=./grub.cfg) is accepted HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS INSTALL_DEVICE must be system device filename.
%s copies GRUB images into %s.  On some platforms, it may also install GRUB into the boot sector. If FILENAME is `-', the default value %s is used.

There is no `delete' command; if you want to delete the whole environment
block, use `rm %s'. Import ZFS wrapping key stored in FILE. Incorrect VDEV Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Installing for %s platform.
 Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s LOCALES Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List coreboot tables. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load DTB file. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load Truecrypt ISO. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load module. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... M MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MENU_ENTRY is a number, a menu item title or a menu item identifier. Please note that menu items in
submenus or sub-submenus require specifying the submenu components and then the
menu item component. The titles should be separated using the greater-than
character (>) with no extra spaces. Depending on your shell some characters including > may need escaping. More information about this is available
in the GRUB Manual in the section about the 'default' command.  MODULE MODULES Mac-style bless on HFS or HFS+ Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NOT RUNNING:  NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Netboot directory for %s created. Configure your DHCP server to point to %s
 Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OPTIONS FILE OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] PUBKEY_ID Paletted  Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Prepares GRUB network boot images at net_directory/subdir assuming net_directory being TFTP root. Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot into firmware setup menu. Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Render Apple .disk_label. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING STRING ... Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Script `%s' contains no commands and will do nothing
 Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set bit at BYTE:BIT in CMOS. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting GRUB_TIMEOUT to a non-zero value when GRUB_HIDDEN_TIMEOUT is set is no longer supported. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show CBMEM console content. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show raw dump of the CMOS contents. Show raw dump of the PCI configuration space. Show the contents of a file. Show the current mappings. Show the list of trusted keys. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Skip signature-checking of the environment file. Skip signature-checking of the public key file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Storage information for `%s' does not include type Storage information for `%s' indicates neither a plain partition nor a plain disk Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Switch to native disk drivers. If no modules are specified default set (pata,ahci,usbms,ohci,uhci,ehci) is used Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 T TARGET THEMES Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This VDEV is a RAIDZ%llu
 This VDEV is a mirror This entry can be booted by any user. This requires setting GRUB_DEFAULT=saved in %s/default/grub.\n Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Transform syslinux config into GRUB one. Translate SET1 characters to SET2 in STRING. Translate to lower case. Translate to upper case. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown platform `%s-%s' Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized compression `%s' Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME VDEV element number %d isn't correct
 VDEV element number %d:
 VDEV with %d children
 Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. You've found a bug Your embedding area is unusually small.  core.img won't fit in it. Your xorriso doesn't support `--grub2-boot-info'. Some features are disabled. Please use xorriso 1.2.9 or later. Your xorriso doesn't support `--grub2-boot-info'. Your core image is too big. Boot as disk is disabled. Please use xorriso 1.2.9 or later. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] [-s|--skip-sig] [variable_name_to_whitelist] [...] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [-s|--skip-sig] FILE SIGNATURE_FILE [PUBKEY_FILE] [-s|--skip-sig] PUBKEY_FILE [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [DIR] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTIONS] [SET1] [SET2] [STRING] [OPTION] SOURCE... [OPTION] [INSTALL_DEVICE] [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `%s' is not a local disk `cryptomount' command fails: %s `loopback' command fails: %s `nvsetenv' failed. 
You will have to set `boot-device' variable manually.  At the IEEE1275 prompt, type:
  %s
 `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found assume input is a pxelinux configuration file. assume input is a syslinux configuration file. assume input is an isolinux configuration file. attempt to install to encrypted disk without cryptodisk enabled. Set `%s' in file `%s'. attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format bless for ppc-based macs bless for x86-based macs blocklist FILE blocklists are incomplete blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't compress `%s' to `%s' can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s can't set %dx%d font size: Freetype error %d: %s cannot compress the kernel image cannot copy `%s' to `%s': %s cannot delete `%s': %s cannot find EFI directory cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot find locale `%s' cannot get translator command line for path `%s': %s cannot make temporary directory: %s cannot make temporary file: %s cannot open OS file `%s': %s cannot open `%s': %s cannot open configuration file `%s': %s cannot open directory `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu compress GRUB files [optional] connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find IEEE1275 device path for %s.
You will have to set `boot-device' variable manually couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d current directory of the syslinux [default is parent directory of input file]. current directory of the syslinux as it will be seen on runtime  [default is parent directory of input file]. cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit device tree must be supplied (see `devicetree' command) disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. disk read fails at offset %lld, length %lld diskboot.img size must be %u bytes do not install bootsector do not probe for filesystems in DEVICE domain name component is too long don't update LED state don't update the `boot-device'/`Boot*' NVRAM variables. This option is only available on EFI and IEEE1275 targets. done embed FILE as a memdisk image
Implies `-p (memdisk)/boot/grub' and overrides any prefix supplied previously, but the prefix itself can be overridden by later options embed FILE as an early config embed FILE as public key for signature checking embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enable ARCS (big-endian mips machines, mostly SGI) boot. Disables HFS+, APM, sparc64 and boot as disk image for i386-pc enable sparc boot. Disables HFS+, APM, ARCS and boot as disk image for i386-pc enabling %s support ... enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to copy Grub to the PReP partition failed to get canonical path of `%s' failed to read the sectors of the core image failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists filesystem on %s is neither HFS nor HFS+ firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification initrd already loaded install FONTS [default=%s] install GRUB for TARGET platform [default=%s] install GRUB images under the directory DIR/%s instead of the %s directory install THEMES [default=%s] install device isn't specified install even if problems are detected install only LOCALES [default=all] install only MODULES and their dependencies [default=all] invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid argument invalid block size invalid color specification `%s' invalid device tree invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid modinfo file `%s' invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' invalid zImage ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no EFI routines are available for your platform no EFI routines are available when running in BIOS mode no IEEE1275 routines are available for your platform no SGI routines are available for your platform no `/' in canonical filename no command is specified no compression is available for your platform no decryption key available no hints available for your platform. Expect reduced performance no network card found no random number generator is available for your OS no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected only ipv4 only ipv6 other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found pre-load specified modules MODULES prefer ipv4 prefer ipv6 premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory as it will be seen on runtime [default=/]. root directory of TFTP server root directory of the syslinux disk [default=/]. route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the label to render set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the ID of bootloader. This option is only available on EFI and Macs. the PReP partition is not empty. If you are sure you want to use it, run dd to clear it: `%s' the argument `%s' requires an integer the chosen partition is not a PReP partition the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive %s is defined multiple times in the device map %s the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected EFI error unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported platform %s
 unsupported serial port flow control unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for label use COLOR for label background use COLOR for text use DIR as the EFI System Partition root. use DIR for PPC MAC install. use FILE as font (PF2). use FILE as font for label use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] use themes under DIR [default=%s] use translations under DIR [default=%s] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists write output to FILE [default=stdout]. wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub 2.02~beta1
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-12-21 01:46+0100
Last-Translator: Automatically generated
Language-Team: none
Language: en@arabic
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=(n != 1);
               توتال معموري: %d كִيب
     نو پ‎رعفعررعد مودع اواִيلابلع
     پ‎رعفعررعد مودع: %uكس%u
   عدִيد صهعصكسوم ִينوالִيد   عدִيد وعرسִيون: %u.%u
   فاִيلعد تو ִينִيتִيالִيزع وִيدعو اداپ‎تعر   نو ִينفو اواִيلابلع   وبع ִينفو:   وعرسִيون: %d.%d  وعم سوفتوارع رعو: %d.%d
   ور:   (لعفتموست)  (معدִيال)  (رִيغهتموست)  - پ‎ارتִيتִيون ستارت ات %llu%sكִيب  - سعصتور سִيزع %uب  - توتال سִيزع %llu%sكִيب  - توتال سִيزع ونكنوون  [وپ‎تִيون...] %.*s: ارغپ‎_هعلپ‎_فمت پ‎ارامعتعر موست بع پ‎وسִيتִيوع %.*s: ارغپ‎_هعلپ‎_فمت پ‎ارامعتعر رعقوִيرعس ا والوع %.*s: ونكنوون ارغپ‎_هعلپ‎_فمت پ‎ارامعتعر %dس %dس رعماִينִينغ. %s اپ‎پ‎عارس تو صونتاִين ا %s فִيلعسيستعم وهִيصه ִيسن'ت كنوون تو رعسعروع سپ‎اصع فور دوس-ستيلع بووت.  ִينستاللִينغ غروب تهعرع صوولد رعسولت ִين فִيلعسيستعم دعستروصتִيون ִيف والوابلع داتا ִيس ووعرورִيتتعن بي غروب-سعتوپ‎ (--سكִيپ‎-فس-پ‎روبع دִيسابلعس تهִيس صهعصك, وسع ات يوور وون رִيسك) %s اپ‎پ‎عارس تو صونتاִين ا %s پ‎ارتִيتִيون ماپ‎ اند لدم وهִيصه ִيسن'ت كنوون تو بع ا سافع صومبִيناتִيون.  ִينستاللִينغ غروب تهعرع صوولد رعسولت ִين فִيلعسيستعم دعستروصتִيون ִيف والوابلع داتا ִيس ووعرورִيتتعن بي غروب-سعتوپ‎ (--سكִيپ‎-فس-پ‎روبع دִيسابلعس تهִيس صهعصك, وسع ات يوور وون رִيسك) %s اپ‎پ‎عارس تو صونتاִين ا %s پ‎ارتִيتִيون ماپ‎ وهִيصه ִيسن'ت كنوون تو رعسعروع سپ‎اصع فور دوس-ستيلع بووت.  ִينستاللִينغ غروب تهعرع صوولد رعسولت ִين فִيلعسيستعم دعستروصتִيون ִيف والوابلع داتا ִيس ووعرورִيتتعن بي غروب-سعتوپ‎ (--سكִيپ‎-فس-پ‎روبع دִيسابلعس تهִيس صهعصك, وسع ات يوور وون رִيسك) %s دوعس نوت سوپ‎پ‎ورت ووִيدس %s دوعسن'ت عكسִيست. پ‎لعاسع سپ‎عصִيفي --تارغعت ور --دִيرعصتوري %s دوعسن'ت لووك لִيكع ان عفִي پ‎ارتִيتִيون.
 %s غعنعراتعس ا كعيبوارد لايووت فور غروب وسִينغ صكبصومپ‎\ن %s ִيس دعپ‎رعصاتعد. وسع سعت غفكسپ‎ايلواد=%s بعفورع لִينوكس صومماند ִينستعاد.
 %s ִيس دعپ‎رعصاتعد. وغا مودع %d ִيسن'ت رعصوغنִيزعد. وسع سعت غفكسپ‎ايلواد=وִيدتهكسهعִيغهت[كسدعپ‎ته] بعفورع لִينوكس صومماند ִينستعاد.
 %s ִيس نوت يعت سوپ‎پ‎ورتعد بي غروب-مكصونفִيغ.\ن %s, وִيته هورد %s %s, وִيته هورد %s (رعصووعري مودع) %s, وִيته لִينوكس %s %s, وִيته لִينوكس %s (رعصووعري مودع) %s, وִيته كسعن %s اند لִينوكس %s %s, وִيته كسعن %s اند لִينوكس %s (رعصووعري مودع) %s, وִيته كسعن هيپ‎عروִيسور %s, وִيته كفرععبسد %s %s, وִيته كفرععبسد %s (رعصووعري مودع) %s, وִيته كعرنعل %s (وִيا %s) %s, وִيته كعرنعل %s (وִيا %s, رعصووعري مودع) %s: هاسه مִيسماتصه
 %s: وك
 %s: رعاد عررور
 %s: توو ماني ارغومعنتس
 %s: يوو موست رون تهִيس اس رووت\ن %s: عررور: %s: ִينفو: %s: ִينوالִيد وپ‎تִيون -- '%c'
 %s: نوت فووند %s: وپ‎تִيون '%c%s' دوعسن'ت اللوو ان ارغومعنت
 %s: وپ‎تִيون '%s' ִيس امبִيغوووس; پ‎وسسִيبִيلִيتִيعس: %s: وپ‎تִيون '--%s' دوعسن'ت اللوو ان ارغومعنت
 %s: وپ‎تִيون '--%s' رعقوִيرعس ان ارغومعنت
 %s: وپ‎تִيون '-و %s' دوعسن'ت اللوو ان ارغومعنت
 %s: وپ‎تִيون '-و %s' ִيس امبִيغوووس
 %s: وپ‎تִيون '-و %s' رعقوִيرعس ان ارغومعنت
 %s: وپ‎تִيون رعقوִيرعس ان ارغومعنت -- '%c'
 %s: وپ‎تִيون رعقوִيرعس ان ارغومعنت -- `%s'\ن %s: ونرعصوغنִيزعد وپ‎تִيون '%c%s'
 %s: ونرعصوغنִيزعد وپ‎تִيون '--%s'
 %s: وارنִينغ: (32-بִيت) (64-بִيت) (پ‎روغرام عررور) نو وعرسִيون كنوون!? (پ‎روغرام عررور) وپ‎تִيون سهوولد هاوع بععن رعصوغنִيزعد!? (ون %s) - لابعل `%s' - لاست مودִيفִيصاتִيون تִيمع %d-%02d-%02d %02d:%02d:%02d %s --مورع-- --پ‎پ‎ص پ‎اته|--كس86 فִيلع -ه هاسه [-ص فִيلع [-پ‎ پ‎رعفִيكس]] [فִيلع1 [فִيلع2 ...]] -ل | -ر | [-س] غروبدعو وسدִيسك. .5 16-بִيت پ‎روتعصتعد ִينتعرفاصع سوپ‎پ‎ورتعد
 16-بִيت پ‎روتعصتعد ִينتعرفاصع ونسوپ‎پ‎ورتعد
 32-بִيت پ‎روتعصتعد ִينتعرفاصع سوپ‎پ‎ورتعد
 32-بִيت پ‎روتعصتعد ִينتعرفاصع ونسوپ‎پ‎ورتعد
 =وال > اصپ‎ִي نون-وولاتִيلع ستوراغع رام اصپ‎ִي رعصلاִيمابلع رام اصپ‎ִي سهوتدوون فاִيلعد اددر اددر والوع [ماسك] اددر [سִيزع] اددر1,ماسك1[,اددر2,ماسك2[,...]] اددرعسس دنسسعروعر اپ‎م دִيسابلعد
 اپ‎م دִيسعنغاغعد
 اپ‎م عنابلعد
 اپ‎م عنغاغعد
 ارغپ‎_هعلپ‎_فمت: %s والوع ִيس لعسس تهان ور عقوال تو %s اسصִيִي اصصعپ‎ت دوس-ستيلع صر/نل لִينع عندִينغس. اصتִيوع ִينپ‎وت تعرمִينالس: اصتִيوع ووتپ‎وت تعرمִينالس: اداپ‎تعر `%s':
 ادد ا دنس سعروعر ادد ا نعتوورك اددرعسس. ادد ا نعتوورك رووتع. ادوانصعد وپ‎تִيونس فور %s ادوانصعد وپ‎تִيونس فور %s (وִيته كسعن هيپ‎عروִيسور) اللوو تو ִينتعرروپ‎ت وִيته عسص. اسك فور فִيلع نامع تو رعبووت فروم. اسسومع ִينپ‎وت ִيس هعكس. اسسومع ִينپ‎وت ִيس پ‎اسسپ‎هراسع. اسسومع ִينپ‎وت ִيس راو. اتتعمپ‎تִينغ تو دعصريپ‎ت ماستعر كعي... اتتعمپ‎تִينغ تو ִينستالل غروب تو ا دִيسك وִيته مولتִيپ‎لع پ‎ارتִيتִيون لابعلس ور بوته پ‎ارتִيتִيون لابعل اند فִيلعسيستعم.  تهִيس ִيس نوت سوپ‎پ‎ورتعد يعت. اتتعمپ‎تִينغ تو ִينستالل غروب تو ا دִيسك وִيته مولتִيپ‎لع پ‎ارتִيتִيون لابعلس.  تهִيس ִيس نوت سوپ‎پ‎ورتعد يعت. اتتعمپ‎تִينغ تو ִينستالل غروب تو ا پ‎ارتִيتִيونلعسس دִيسك ور تو ا پ‎ارتִيتִيون.  تهִيس ִيس ا باد ִيدعا. اواִيلابلع ִينپ‎وت تعرمִينالس: اواִيلابلع ووتپ‎وت تعرمִينالس: ب ب/س بִيوس_دومپ‎ [ִينت10_دومپ‎] بلوصك بيتع:بִيت باصكغرووند ִيماغع مودع. باسع دִيرعصتوري فور هاسه لִيست. بلعسس دִير وف هفس ور هفس+ پ‎ارتִيتִيون فور پ‎پ‎ص ماصس. بلعسس فִيلع وف هفس ور هفس+ پ‎ارتִيتִيون فور ִينتعل ماصس. بووت بִيوس-باسعد سيستعم. بووت ان وپ‎عراتִينغ سيستعم. بووت ִينتو سִينغلع مودع. بووت وִيته دعبوغ معسساغعس. بووت وִيته وعربوسع معسساغعس. بووتִينغ `%s' بووتִينغ ا صومماند لִيست بووتִينغ ִين بلִيند مودع بووتپ‎اته: %s
 بووتپ‎اته: وناواִيلابلع
 برعاك ִينتو غدب صغا  صولور صومماند [ارغس] صپ‎و ִيدلع دوعسن'ت سلوو دوون پ‎روصعسسور
 صپ‎و ִيدلع سلووس دوون پ‎روصعسسور
 صس5536 ات %d:%d.%d
 صان'ت صرعاتع فִيلع: %s صان'ت عنابلع روم ارعا. صهانغع صونفִيغورعد دعوִيصعس. صهانغع پ‎ارتִيتִيون تيپ‎ع صهعصك الت كعي. صهعصك صونترول كعي. صهعصك سهִيفت كعي. صهعصك فور صپ‎و فعاتورعس. صهعصك هاسهعس وف فִيلعس وִيته هاسه لִيست فִيلع. صهعصك ִيف صپ‎و سوپ‎پ‎ورتس 64-بִيت (لونغ) مودع (دعفاولت). صهعصك ִيف صپ‎و سوپ‎پ‎ورتس پ‎هيسִيصال اددرعسس عكستعنسִيون. صهعصك ִيف فִيلع صان بع وسعد اس كس86 مولتִيبووت كعرنعل صهعصك ִيف فִيلع صان بع وسعد اس كس86 مولتִيبووت2 كعرنعل صهعصك ִيف فִيلع ִيس ارم عفִي فִيلع صهعصك ִيف فִيلع ִيس بִيوس بووتسعصتور صهعصك ִيف فִيلع ִيس ִيا64 عفִي فִيلع صهعصك ִيف فִيلع ִيس هִيبعرفִيل.سيس ִين هִيبعرناتعد ستاتع صهعصك ִيف فִيلع ִيس ִي386 عفִي فִيلع صهعصك ִيف فִيلع ִيس وف سپ‎عصִيفִيعد تيپ‎ع. صهعصك كعي مودִيفִيعر ستاتوس. صهعصك وهعتهعر وسعر ִيس ִين وسعرلִيست. صهعصكس غروب سصرִيپ‎ت صونفִيغوراتִيون فִيلع فور سينتاكس عررورس. صلعار بִيت ات بيتع:بִيت ִين صموس. صلعار تهع سصرععن. صلعارعد اصتִيوع فلاغ ون %d. 
 صومماندس: صومپ‎ارع فִيلع وִيته لوصال فִيلع لوصال. صومپ‎ارع فִيلع `%s' وִيته `%s':
 صومپ‎ارع توو فִيلعس. صومپ‎وتع كسنو ووִيد وف تهع دعوִيصع. صومپ‎وتع ور صهعصك هاسه صهعصكسوم. صونفִيغورع سعرִيال پ‎ورت. صونتִينوع لووپ‎س صونوعرت صوممون فونت فִيلع فورماتس ִينتو پ‎ف2 صوپ‎ي فִيلع تو لوصال فִيلع لوصال. صوپ‎ي فִيلع تو ستاندارد ووتپ‎وت. صوولد نوت لوصاتع فپ‎سوا درִيوعر صوولدن'ت فִيند ا فرعع بووتنننن سلوت صوولدن'ت فִيند پ‎هيسִيصال وولومع `%s'. سومع مودولعس ماي بع مִيسسִينغ فروم صورع ִيماغع. صوولدن'ت لواد سها256 صوولدن'ت لواد سها512 صرعاتع بִيوس-لִيكع ستروصتورعس فور باصكوارد صومپ‎اتִيبִيلִيتي وִيته عكسִيستִينغ وس. صرعاتع ا بلانك عنوִيرونمعنت بلوصك فִيلع. صوررعنت تعرمִينفو تيپ‎عس: دعوִيصع دعوִيصع [پ‎ارتִيتִيون[+/-[تيپ‎ع]]] ... دعوִيصع موست بع ان وس دعوִيصع (ع.غ. /دعو/سدا). دعوִيصع_نامع دִير دִيرعصتوري [وسبوندلعرعقوִيرعد] دنسسعروعر دعبوغ توول فور فִيلعسيستعم درִيوعر. دعصلارع معموري رعغִيونس اس فاولتي (بادرام). دعصومپ‎رعسسور ִيس توو بִيغ دعفاولت سعروعر ִيس ${نعت_دعفاولت_سعروعر} دعفִينع ا معنو عنتري. دعفִينع ا سوبمعنو. دعلعتع ا نعتوورك اددرعسس. دعلعتع ا نعتوورك رووتع. دعلعتع تهع سپ‎عصִيفִيعد لووپ‎باصك درִيوع. دعلعتع وارִيابلعس. دعتعرمִينع درִيوعر. دعتعرمִينع فִيلعسيستعم ووִيد. دعتعرمִينع فִيلعسيستعم لابعل. دعتعرمִينع فִيلعسيستعم تيپ‎ع. دعتعرمִينع پ‎ارتִيتִيون ماپ‎ تيپ‎ع. دعوִيصع %s: دعوִيد: %s
 دعوִيد: وناواִيلابلع دִيرعصت صولور, ماسك: %d/%d/%d/%d  پ‎وس: %d/%d/%d/%d دִيسابلع اصپ‎ִي. دִيسابلع سمپ‎. دִيسابلع الل بووت ووتپ‎وت. دִيسابلع/عنابلع سمارت (0/1). دִيسصاردִينغ ִيمپ‎روپ‎عرلي نعستعد پ‎ارتִيتִيون (%s,%s,%s%d) دִيسك صاصهع ستاتִيستִيصس: هִيتس = %lu (%lu.%02lu%%), مִيسسعس = %lu
 دִيسك صوونت موست پ‎رعصعدع دִيسكس لִيست.
 دִيسپ‎لاي فپ‎سوا وعرسִيون. دִيسپ‎لاي سمارت هعالته ستاتوس. دִيسپ‎لاي ا لִينع وف تعكست. دִيسپ‎لاي بلوصكلִيست وف فִيلع. دִيسپ‎لاي ووتپ‎وت ون الل صونسولعس. دִيسپ‎لاي پ‎ووعر مودع. دִيسپ‎لاي تهع وساغع وف تهִيس صومماند اند عكسִيت. دִيسپ‎لاي تهִيس هعلپ‎ اند عكسִيت. دִيسپ‎لاي/سعت صوررعنت داتعتִيمع. دو نوت اپ‎پ‎لي اني رععد-سولومون صودعس وهعن عمبعددִينغ صورع.ִيمغ. تهִيس وپ‎تִيون ִيس ونلي اواִيلابلع ون كس86 بִيوس تارغعتس. دو نوت ووتپ‎وت تهع تراִيلִينغ نعولִينع. دو نوت پ‎رִينت معسساغعس. دو نوت پ‎روبع اني فلوپ‎پ‎ي درִيوع. دو نوت وسع اپ‎م تو هالت تهع صومپ‎وتعر. دو نوتهִينغ, سوصصعسسفوللي. دو نوتهִينغ, ونسوصصعسسفوللي. دون'ت دִيسپ‎لاي بووت دִياغنوستִيص معسساغعس. دون'ت لواد هوست تابلعس سپ‎عصִيفִيعد بي صومما-سعپ‎اراتعد لִيست. دون'ت رعبووت, يِوست هالت. دون'ت ستوپ‎ افتعر فִيرست عررور. دون'ت وپ‎داتع عبدا. ماي فִيكس فاִيلورعس ور هانغس ون سومع بִيوسعس بوت ماكعس ִيت ִينعففعصتִيوع وִيته وس نوت رعصعִيوִينغ رسدپ‎ فروم غروب. عفִي بووتلوادعر ִيد ִيسن'ت سپ‎عصִيفִيعد. عنووار عنووار [عنووار] ... عررور: نو والִيد كعيبوارد لايووت فووند. صهعصك تهع ִينپ‎وت.
 عسص ات اني تִيمع عكسִيتس. عكسپ‎رعسسִيون عكسپ‎رعسسִيون ] علاپ‎سعد تִيمع: %d.%03d س 
 علاپ‎سعد تִيمع: %d.%03d سعصوندس 
 عمبعددִينغ ִيس نوت پ‎وسسִيبلع.  غروب صان ونلي بع ִينستاللعد ִين تهִيس سعتوپ‎ بي وسִينغ بلوصكلִيستس.  هووعوعر, بلوصكلִيستس ارع ونرعلִيابلع اند تهعִير وسع ִيس دִيسصووراغعد. عمولاتع ا كعيستروكع سعقوعنصع عنابلع ִينتعرپ‎رعتاتִيون وف باصكسلاسه عسصاپ‎عس. عنابلع/دִيسابلع رتس/صتس. عنتعر زفس پ‎اسسوورد:  عنتعر ִين كدب ون بووت. عنتعر نورمال مودع. عنتعر پ‎اسسپ‎هراسع فور %s%s%s (%s):  عنتعر پ‎اسسوورد:  عنتعر وسعرنامع:  عررور ִين پ‎ارسִينغ صومماند لִينع ارغومعنتس
 عوالواتع ان عكسپ‎رعسسִيون. عوالواتع ارغومعنتس اس غروب صومماندس عكسعصوتع سيسلִينوكس صونفִيغ ִين نعو صونتعكست عكسعصوتع سيسلִينوكس صونفִيغ ִين نعو صونتعكست تاكִينغ ونلي معنو عنترִيعس عكسعصوتع سيسلִينوكس صونفִيغ ִين سامع صونتعكست عكسعصوتع سيسلִينوكس صونفִيغ ִين سامع صونتعكست تاكִينغ ونلي معنو عنترִيعس عكسִيت فاִيلعد عكسִيت فروم غروب. عكسִيت فروم لووپ‎س عكسִيت فروم نورمال مودع. عكسپ‎ورت وارִيابلعس. عكسپ‎ورت وعرسִيون 1 تابلعس تو تهع وس. عكسپ‎ورت وعرسִيون 2 اند وعرسִيون 3 تابلعس تو تهع وس. فִيلع فִيلع [ارغ ...] فִيلع [ارغس...] فִيلع | تعمپ‎و [پ‎ִيتصه1 دوراتִيون1] [پ‎ִيتصه2 دوراتִيون2] ...  فִيلع... فִيلع1 فִيلع2 فִيلعنامع صومماند فִيلعسيستعم [وارִيابلع] فִيلع|پ‎رومپ‎ت فونتس فورمات فپ‎سوا پ‎روتوصول واسن'ت ابلع تو فִيند تهع ִينتعرفاصع فپ‎سوا رعوִيسִيون: %x
 فروم-تو[,فروم-تو] فروم[ك|م|غ] تو[ك|م|غ] فت_ִينִيت_فرععتيپ‎ع فاִيلس فاִيلعد تو بووت بوته دعفاولت اند فاللباصك عنترִيعس.
 فاִيلعد تو صرعاتع `دعوִيصع-ماپ‎پ‎عر' ترعع فاللִينغ باصك تو `%s' فִيلع سִيزع: %s
 فִيلع سيستعم `%s' دوعسن'ت سوپ‎پ‎ورت عمبعددִينغ فִيلعس دִيففعر ات تهع وففسعت %llu: 0كس%x [%s], 0كس%x [%s]
 فִيلعس دִيففعر ִين سִيزع: %llu [%s], %llu [%s]
 فִيلعسيستعم صاننوت بع اصصعسسعد فִيلعسيستعم تيپ‎ع %s فִيلل هيبرִيد مبر وف غپ‎ت درִيوع دعوִيصع. سپ‎عصִيفִيعد پ‎ارتִيتִيونس وִيلل بع ا پ‎ارت وف هيبرִيد مبر. وپ‎ تو 3 پ‎ارتִيتִيونس ارع اللووعد. تيپ‎ع ִيس ان مبر تيپ‎ع. + معانس تهات پ‎ارتִيتִيون ִيس اصتִيوع. ونلي ونع پ‎ارتִيتִيون صان بع اصتִيوع. فִينالִيزع لوادִينغ وف عفִي عمولاتور. فִيرست تري تهع دعوִيصع هִينت ִيف صوررعنتلي روننִينغ ون ارص. ִيف هִينت عندس ִين صومما, السو تري سوبپ‎ارتִيتִيونس فִيرست تري تهع دعوִيصع هִينت ִيف صوررعنتلي روننִينغ ون بִيوس. ִيف هִينت عندس ִين صومما, السو تري سوبپ‎ارتִيتִيونس فִيرست تري تهع دعوִيصع هִينت ִيف صوررعنتلي روننִينغ ون عفִي. ִيف هִينت عندس ִين صومما, السو تري سوبپ‎ارتִيتִيونس فִيرست تري تهع دعوִيصع هִينت ִيف صوررعنتلي روننִينغ ون ִيععع1275. ִيف هִينت عندس ִين صومما, السو تري سوبپ‎ارتִيتִيونس فִيرست تري تهع دعوִيصع هִينت ִيف دִيرعصت هاردوارع اصصعسس ִيس سوپ‎پ‎ورتعد. ִيف هִينت عندس ִين صومما, السو تري سوبپ‎ارتִيتִيونس فִيرست تري تهع دعوִيصع هִينت. ִيف هִينت عندس ִين صومما, السو تري سوبپ‎ارتִيتִيونس فִيكس وִيدعو پ‎روبلعم. فووند %s ون %s (%s)\ن فووند %s ون %s\ن فووند غنو ماصه: %s فووند هورد مودولع: %s فووند نعتبسد كعرنعل: %s\ن فووند باصكغرووند: %s\ن فووند ִينִيترد ִيماغع: %s\ن فووند كعرنعل مودولع دִيرعصتوري: %s\ن فووند كعرنعل وف فرععبسد: %s\ن فووند لִينوكس ִيماغع: %s\ن فووند تهعمع: %s\ن فرععتيپ‎ع عررور %d لوادִينغ غليپ‎ه 0كس%x فور و+0كس%x%s فرععزع اتا سعصورִيتي سعتتִينغس ونتִيل رعسعت. فرִيداي غ غنو غروب  وعرسִيون %s غروب بووت معنو غروب دوعسن'ت كنوو هوو تو هالت تهִيس ماصهִينع يعت! غروب عمولاتور. غروبدعوִيصع=پ‎لان9دعوִيصع غارباغع ִين ارغپ‎_هعلپ‎_فمت: %s غعنعراتع غروب كعيبوارد لايووت فروم لִينوكس صونسولع ونع. غعنعراتع پ‎بكدف2 پ‎اسسوورد هاسه. غعنعراتع ا غروب صونفִيغ فִيلع غعنعراتع ا ستاندالونع ִيماغع (صونتاִينִينغ الل مودولعس) ִين تهع سعلعصتعد فورمات غعنعراتִينغ غروب صونفִيغوراتִيون فִيلع ... غعت صرص32 صهعصكسوم وف فִيلع. غعت دִيسك صاصهع ִينفو. غعت/سعت اتا دִيسك پ‎ارامعتعرس. غִيب غִيب/س غرافت پ‎وִينت سينتاكس (ع.غ. /بووت/غروب/غروب.صفغ=./غروب.صفغ) ִيس اصصعپ‎تعد هاسه هִينت هالت تهع سيستعم, ִيف پ‎وسسִيبلع وسִينغ اپ‎م. هالتس تهع صومپ‎وتعر.  تهִيس صومماند دوعس نوت وورك ون الل فִيرموارع ִيمپ‎لعمعنتاتִيونس. هاندلع ن بيتعس ִين ووتپ‎وت فִيلع. هعللو وورلد هعرصولعس  ִيد ִيماغع1 [ִيماغع2 ...] موونتپ‎وִينت ִيماغع_پ‎اته صومماندس ִينستالل_دعوִيصع موست بع سيستعم دعوִيصع فִيلعنامع.
%s صوپ‎ִيعس غروب ִيماغعس ִينتو %s.  ون سومع پ‎لاتفورمس, ִيت ماي السو ִينستالل غروب ִينتو تهع بووت سعصتور. ִيف فִيلعنامع ִيس `-', تهع دعفاولت والوع %s ִيس وسعد.

تهعرع ִيس نو `دعلعتع' صومماند; ִيف يوو وانت تو دعلعتع تهع وهولع عنوִيرونمعنت
بلوصك, وسع `رم %s'. ִيمپ‎ورت زفس وراپ‎پ‎ִينغ كعي ستورعد ִين فִيلع. ִينصوررعصت ودعو ִينصوررعصت وִيرتوال دعوִيصع: نو تيپ‎ع اواִيلابلع ִينسعرت ا مودولع. ִينستالل غروب ون يوور درִيوع. ִينستاللاتִيون فִينִيسهعد. نو عررور رعپ‎ورتعد. ִينستاللִينغ فور %s پ‎لاتفورم.
 ִينوالִيد باصك رعفعرعنصع ִينوالִيد صهاراصتعر صلاسس نامع ִينوالִيد صوللاتִيون صهاراصتعر ִينوالִيد صومماند %s.
 ִينوالִيد صونتعنت وف \{\} ִينوالִيد دعوִيصع `%s'.
 ִينوالִيد دִيسك صوونت.
 ִينوالִيد پ‎رعصعدִينغ رعغولار عكسپ‎رعسسִيون ִينوالִيد رانغع عند ִينوالִيد رعغولار عكسپ‎رعسسִيون ִينووكع وسعر صونفִيغوراتִيون رووتִينغ. ك كعرنعل ارغس كعيبوارد_كعي كعيبوارد كعي تو قوִيصكلي بووت تهִيس عنتري. كִيب كִيب/س لوصالعس لعاف وִيرتوال دعوִيصع (فִيلع ور دִيسك) لعغاصي `اسك' پ‎ارامعتعر نو لونغعر سوپ‎پ‎ورتعد. لعغعند: ماسك/پ‎وسִيتִيون=رعد/غرععن/بلوع/رعسعروعد لعنغته وف غعنعراتعد هاسه لعنغته وف سالت لִيست دنس سعروعرس لִيست پ‎صִي دعوִيصعس. لִيست الل فִيلعس. لִيست اواִيلابلع وִيدعو مودعس. ִيف رعسولوتִيون ִيس غִيوعن سهوو ونلي مودعس ماتصهִينغ ִيت. لִيست صورعبووت تابلعس. لִيست دعوִيصعس اند فִيلعس. لִيست دعوִيصعس ور فִيلعس. لִيست دعوִيصعس. لִيست فִيلعس ִين پ‎اته. لִيست معموري ماپ‎ پ‎رووִيدعد بي فִيرموارع. لִيست وف سوپ‎پ‎ورتعد وִيدعو مودعس: لִيست وف وسعرس اللووعد تو بووت تهִيس عنتري. لִيست ور سعلعصت ان ִينپ‎وت تعرمִينال. لִيست ور سعلعصت ان ووتپ‎وت تعرمִينال. لִيست تهع صوررعنت وارִيابلعس. لִيست تهع لوادعد فونتس. لִيست وارִيابلعس فروم عنوִيرونمعنت بلوصك فִيلع. لواد 64-بִيت كسنو ִيماغع. لواد بִيوس دومپ‎. لواد دتب فִيلع. لواد فرععبسد عنو. لواد فرععبسد كعرنعل مودولع (علف). لواد فرععبسد كعرنعل مودولع. لواد فرععدوس كعرنعل.سيس. لواد لִينوكس. لواد نتلدر ور بووتمغر. لواد نعتبسد كعرنعل مودولع (علف). لواد نعتبسد كعرنعل مودولع. لواد پ‎لان9 كعرنعل. لواد تروعصريپ‎ت ִيسو. لواد كسنو عكستعنسִيون دִيرعصتوري. لواد كسنو عكستعنسִيون پ‎اصكاغع. لواد كسنو عكستعنسִيون. لواد كسنو ִيماغع. لواد كسنو رامدִيسك. ִيت وִيلل بع اواִيلابلع ִين وس اس مد0. لواد `دعوִيصع-پ‎روپ‎عرتִيعس' دومپ‎. لواد ا پ‎كسع ִيماغع. لواد ا كعيبوارد لايووت. لواد ا مولتִيبووت 2 كعرنعل. لواد ا مولتִيبووت 2 مودولع. لواد ا مولتִيبووت كعرنعل. لواد ا مولتִيبووت مودولع. لواد ا سپ‎لاسه ִيماغع فور كسنو. لواد ان ִيماغع وف هִيبعرناتعد كسنو. لواد اند ִينִيتִيالִيزع عفִي عمولاتور. لواد انوتهعر بووت لوادعر. لواد انوتهعر صونفִيغ فִيلع بوت تاكع ونلي معنو عنترִيعس. لواد انوتهعر صونفִيغ فִيلع وִيتهووت صهانغִينغ صونتعكست بوت تاكع ونلي معنو عنترִيعس. لواد انوتهعر صونفִيغ فִيلع وִيتهووت صهانغִينغ صونتعكست. لواد انوتهعر صونفִيغ فִيلع. لواد انوتهعر صورعبووت پ‎ايلواد لواد باصكغرووند ִيماغع فور اصتִيوع تعرمִينال. لواد هوست اصپ‎ִي تابلعس اند تابلعس سپ‎عصִيفִيعد بي ارغومعنتس. لواد ִينִيترد. لواد كوپ‎عنبسد رامدִيسك. لواد كعرنعل وف فرععبسد. لواد كعرنعل وف نعتبسد. لواد كعرنعل وف وپ‎عنبسد. لواد مودولع. لواد ونلي تابلعس سپ‎عصִيفִيعد بي صومما-سعپ‎اراتعد لִيست. لواد تهع سامع فִيلع ִين مولتִيپ‎لع وايس. لواد وارִيابلعس فروم عنوִيرونمعنت بلوصك فִيلع. لواد زفس صريپ‎تو كعي. لوادعد فونتس: لوادִينغ غنو ماصه ... لوادִينغ لִينوكس %s ... لوادִينغ كسعن %s ... لوادִينغ ִينִيتִيال رامدִيسك ... لوادִينغ كعرنعل وف فرععبسد %s ... لوادִينغ كعرنعل وف ִيللوموس ... لوادִينغ تهع هورد ... م ماص وعرִيفִيصاتִيون فاִيلعد معنو_عنتري ִيس ا نومبعر, ا معنو ִيتعم تִيتلع ور ا معنو ִيتعم ִيدعنتִيفִيعر. معنو_عنتري ִيس ا نومبعر, ا معنو ִيتعم تִيتلع ور ا معنو ִيتعم ִيدعنتִيفִيعر. پ‎لعاسع نوتع تهات معنو ִيتعمس ִين
سوبمعنوس ور سوب-سوبمعنوس رعقوִيرع سپ‎عصִيفيִينغ تهع سوبمعنو صومپ‎ونعنتس اند تهعن تهع
معنو ִيتعم صومپ‎ونعنت. تهع تִيتلعس سهوولد بع سعپ‎اراتعد وسִينغ تهع غرعاتعر-تهان
صهاراصتعر (>) وִيته نو عكسترا سپ‎اصعس. دعپ‎عندִينغ ون يوور سهعلل سومع صهاراصتعرس ִينصلودִينغ > ماي نععد عسصاپ‎ִينغ. مورع ִينفورماتִيون ابووت تهִيس ִيس اواִيلابلع
ִين تهع غروب مانوال ִين تهع سعصتִيون ابووت تهع 'دعفاولت' صومماند.  مودولع مودولعس ماص-ستيلع بلعسس ون هفس ور هفس+ ماكع غروب صد-روم, دִيسك, پ‎عندرִيوع اند فلوپ‎پ‎ي بووتابلع ִيماغع. ماكع غروب كعيبوارد لايووت فִيلع. ماكع ا بووتابلع ִيماغع وف غروب. ماكع ا وִيرتوال درִيوع فروم ا فִيلع. ماكع پ‎ارتִيتִيون اصتִيوع ماناغع تهع بִيوس درִيوع ماپ‎پ‎ִينغس. مانداتوري ور وپ‎تִيونال ارغومعنتس تو لونغ وپ‎تִيونس ارع السو مانداتوري ور وپ‎تִيونال فور اني صوررعسپ‎وندִينغ سهورت وپ‎تִيونس. مانִيپ‎ولاتع پ‎صִي دعوִيصعس. معاسورع تִيمع وسعد بي صومماند معموري عكسهاوستعد معموري تيپ‎ع: ددر2. معموري تيپ‎ع: ونكنوون. معنو عنتري ִيدعنتִيفִيعر. معنو عنتري نوت سپ‎عصִيفִيعد. معنو عنتري تيپ‎ع. مִيب مִيب/س مִينִيمال باسه-لִيكع لִينع عدִيتִينغ ִيس سوپ‎پ‎ورتعد. فور تهع فִيرست وورد, تاب لִيستس پ‎وسسִيبلع صومماند صومپ‎لعتִيونس. انيوهعرع علسع تاب لִيستس پ‎وسسִيبلع دعوִيصع ور فִيلع صومپ‎لعتִيونس. %s مִينִيموم عماصس-لִيكع سصرععن عدִيتִينغ ִيس سوپ‎پ‎ورتعد. تاب لִيستس صومپ‎لعتִيونس. پ‎رعسس صترل-كس ور ف10 تو بووت, صترل-ص ور ف2 فور ا صومماند-لִينع ور عسص تو دִيسصارد عدִيتس اند رعتورن تو تهع غروب معنو. مִيسسִينغ ارغومعنتس
 مִيسسִينغ ִينپ‎وت فִيلع
 مونداي مونوصهرومع  مورع تهان ونع ִينستالل دعوִيصع? مورع تهان ونع معنو عنتري? موونت ا صريپ‎تو دعوִيصع. موونت الل وولومعس وִيته `بووت' فلاغ سعت. موونت الل. موونت بي ووִيد. موونت صريپ‎تو دعوִيصعس. نامع نامع [وارִيابلع] [هִينتس] نوت روننִينغ:  نوم نومبعر_وف_سعصوندس نامع	رعف صوونت	دعپ‎عندعنصִيعس
 ناتִيوع دִيسك درִيوعرس ارع ִين وسع. رعفوسִينغ تو وسع فִيرموارع دִيسك ִينتعرفاصع. نعتبووت دִيرعصتوري فور %s صرعاتعد. صونفִيغورع يوور دهصپ‎ سعروعر تو پ‎وִينت تو %s
 نعتوورك پ‎روتوصولس: نعو مبر ִيس ورִيتتعن تو `%s'
 نو صس5536 فووند نو فپ‎سوا فووند نو بووت تִيمع ستاتִيستִيصس ִيس اواִيلابلع
 نو صومماند ִيس سپ‎عصִيفִيعد.
 نو دعوִيصع ִيس سپ‎عصִيفִيعد.
 نو دִيسك صاصهع ستاتִيستִيصس اواִيلابلع
 نو درִيوعس هاوع بععن رعماپ‎پ‎عد نو كنوون فִيلعسيستعم دعتعصتعد نو ماتصه نو پ‎اته ִيس سپ‎عصִيفִيعد.
 نو پ‎اته ور دعوִيصع ִيس سپ‎عصִيفִيعد.
 نو پ‎رعوִيووس رعغولار عكسپ‎رعسسִيون نو وִيرتوال دعوִيصع ترعع اواִيلابلع نون-صهاִين 4  نوت عنووغه پ‎ارامعتعرس تو صومماند.
 نوو صوننعصت تهع رعموتع دعبوغغعر, پ‎لعاسع. نومبعر وف پ‎بكدف2 ִيتعراتִيونس وپ‎تִيونس فִيلع وس دִيسك #نوم ------> غروب/بִيوس دعوִيصع وس فִيلع %s وپ‎عن عررور: %s وپ‎تִيونس: ووت وف رانغع لووكوپ‎: %d
 ووت وف رانغع سوبستִيتوتִيون (%d, %d)
 ووعررִيدع غوعسسعد ماپ‎پ‎ִينغ وف پ‎لان9 دعوִيصعس. پ‎ پ‎ارتִيتִيون صومماندس پ‎اته پ‎بكدف2 هاسه وف يوور پ‎اسسوورد ִيس %s
 پ‎ورت پ‎ورت والوع [ماسك] پ‎وبكعي_ִيد پ‎العتتعد  پ‎ارسع لعغاصي صونفִيغ ִين نعو صونتعكست پ‎ارسع لعغاصي صونفִيغ ִين نعو صونتعكست تاكִينغ ونلي معنو عنترִيعس پ‎ارسع لعغاصي صونفִيغ ִين سامع صونتعكست پ‎ارسع لعغاصي صونفִيغ ִين سامع صونتعكست تاكִينغ ونلي معنو عنترִيعس پ‎ارت نو: %s.
 پ‎ارتִيتִيون %d ִيس اصتִيوع نوو. 
 پ‎ارتִيتִيون %s: پ‎ارتִيتִيون ستيلع `%s' دوعسن'ت سوپ‎پ‎ورت عمبعددִينغ پ‎اته: %s
 پ‎اته: وناواִيلابلع پ‎عرفورم صومماندس ون پ‎ارتִيتִيون.
وسع `پ‎ارتتوول پ‎ارتִيتִيون هعلپ‎' فور تهع لִيست وف اواִيلابلع صومماندس. پ‎عرفورم ا دنس لووكوپ‎ پ‎عرفورم ان ִيپ‎و6 اوتوصونفִيغوراتִيون پ‎عرفورم بوته دִيرعصت اند رعوعرسع ماپ‎پ‎ִينغس. پ‎ִيب پ‎ִيب/س پ‎لانار  پ‎لاي ا تونع. پ‎لعاسع دون'ت وسع ولد تִيتلع `%s' فور غروب_دعفاولت, وسع `%s' (فور وعرسִيونس بعفورع 2.00) ور `%s' (فور 2.00 ور لاتعر) پ‎وول غوִيد: %016llx
 پ‎وول غوִيد: وناواִيلابلع پ‎وول نامع: %s
 پ‎وول نامع: وناواִيلابلع پ‎وول ستاتع: اصتִيوع پ‎وول ستاتع: دعسترويعد پ‎وول ستاتع: عكسپ‎ورتعد پ‎وول ستاتع: لعوعل 2 ارص دعوִيصع پ‎وول ستاتع: پ‎وتعنتִياللي اصتִيوع پ‎وول ستاتع: رعسعروعد فور هوت سپ‎ارع پ‎وول ستاتع: وناواִيلابلع پ‎وول ستاتع: ونִينִيتִيالִيزعد پ‎وسسִيبلع ارغومعنتس ارع: پ‎وسسִيبلع صومماندس ارع: پ‎وسسִيبلع دعوִيصعس ارع: پ‎وسسִيبلع فִيلعس ارع: پ‎وسسִيبلع پ‎ارتִيتִيونس ارع: پ‎وسسִيبلع تهִينغس ارع: پ‎رعماتورع عند وف رعغولار عكسپ‎رعسسִيون پ‎رعپ‎ارعس غروب نعتوورك بووت ִيماغعس ات نعت_دִيرعصتوري/سوبدִير اسسومִينغ نعت_دִيرعصتوري بعִينغ تفتپ‎ رووت. پ‎رعسس اني كعي تو صونتִينوع... پ‎رعسس اني كعي تو لاونصه كسنو پ‎رعسس عنتعر تو بووت تهع سعلعصتعد وس, `ع' تو عدִيت تهع صومماندس بعفورع بووتִينغ ور `ص' فور ا صومماند-لִينع. پ‎رعسس عنتعر تو بووت تهع سعلعصتعد وس, `ع' تو عدִيت تهع صومماندس بعفورع بووتִينغ ور `ص' فور ا صومماند-لִينع. عسص تو رعتورن پ‎رعوִيووس معنو. پ‎رִينت معموري ִينفورماتִيون. پ‎رִينت زفس ִينفو ابووت دعوִيصع. پ‎رִينت زفس-بووتفسوبيِ ور ستورع ִيت ִينتو وارִيابلع پ‎رִينت ا بلوصك لִيست. پ‎رִينت اند عكسعصوتع بلوصك ارغومعنت. پ‎رִينت باصكتراصع. پ‎رִينت درִيوع ִيدعنتִيتي اند سعتتִينغس. پ‎رִينت سִيزعس ִين ا هومان رعادابلع فورمات. پ‎روبع دعوִيصع ִينفورماتִيون فور ا غִيوعن پ‎اته (ور دعوִيصع, ִيف تهع -د وپ‎تִيون ִيس غִيوعن). رام هولدִينغ صورعبووت تابلعس رام هولدִينغ فִيرموارع صودع رام سلوت نومبعر %d
 رعغعكسپ‎ سترִينغ روم ִيماغع ִيس پ‎رعسعنت. رعاد 16-بִيت والوع فروم اددر. رعاد 16-بִيت والوع فروم پ‎ورت. رعاد 32-بִيت والوع فروم اددر. رعاد 32-بִيت والوع فروم پ‎ورت. رعاد 8-بִيت والوع فروم اددر. رعاد 8-بִيت والوع فروم پ‎ورت. رعاد ونلي لعنغته بيتعس. رعبووت فاִيلعد رعبووت ִينتو فִيرموارع سعتوپ‎ معنو. رعبووت تهع صومپ‎وتعر. رععنتعر پ‎اسسوورد:  رعغִيستعر %x وف %x:%02x.%x ִيس %x
 رعغولار عكسپ‎رعسسִيون توو بִيغ رعمووع ا دنس سعروعر رعمووع ا مودولع. رعمووع ان عنوִيرونمعنت وارִيابلع. رعمووع اني معموري رعغִيونس ִين سپ‎عصִيفִيعد رانغع. رعندعر اپ‎پ‎لع .دִيسك_لابعل. رعپ‎ورت بوغس تو %s.
 رعپ‎ورت بوغس تو <بوغ-غروب@غنو.ورغ>. رعقوعستعد سعرִيال تعرمִينال بوت غروب_سعرִيال_صومماند ִيس ونسپ‎عصִيفִيعد. دعفاولت پ‎ارامعتعرس وִيلل بع وسعد. رعسعت الل ماپ‎پ‎ִينغس تو تهع دعفاولت والوعس. رعترִيعوع دعوִيصع ִينفو. رعتورن فروم ا فونصتִيون. رعتورن تو ִيععع1275 پ‎رومپ‎ت. رون `غدب %s %d', اند سعت ارغس.هولد تو زعرو.
 رون `غو' تو رعسومع غروب. سعصس سهورتنامع سهورتنامع صارد اددرعسس [هواددرعسس] سهورتنامع نعت [ִينتعرفاصع| غو غاتعواي] سִيزع سوورصع|-و ووִيد|-ا|-ب سترִينغ سترִينغ ... ساتورداي ساوع رعاد والوع ִينتو وارִيابلع وارنامع. ساوع وارִيابلعس تو عنوִيرونمعنت بلوصك فִيلع. ساي `هعللو وورلد'. سصرִيپ‎ت `%s' صونتاִينس نو صومماندس اند وִيلل دو نوتهִينغ
 سعارصه دعوִيصعس بي ووִيد. ִيف وارִيابلع ִيس سپ‎عصִيفִيعد, تهع فִيرست دعوִيصع فووند ִيس سعت تو ا وارִيابلع. سعارصه دعوִيصعس بي ا فִيلع. سعارصه دعوִيصعس بي ا فִيلعسيستعم ووִيد. سعارصه دعوִيصعس بي ا فִيلعسيستعم لابعل. سعارصه دعوִيصعس بي فִيلع, فִيلعسيستعم لابعل ور فִيلعسيستعم ووִيد. ִيف --سعت ִيس سپ‎عصִيفִيعد, تهع فִيرست دعوִيصع فووند ִيس سعت تو ا وارִيابلع. ִيف نو وارִيابلع نامع ִيس سپ‎عصִيفִيعد, `رووت' ִيس وسعد. سعارصه دعوִيصعس بي فִيلع. ִيف وارִيابلع ִيس سپ‎عصִيفִيعد, تهع فִيرست دعوִيصع فووند ִيس سعت تو ا وارִيابلع. سعارصه دعوִيصعس بي لابعل. ִيف وارִيابلع ִيس سپ‎عصִيفִيعد, تهع فִيرست دعوִيصع فووند ִيس سعت تو ا وارִيابلع. سعصتور %llu ִيس الرعادي ִين وسع بي راִيد صونتروللعر `%s'; اووִيدִينغ ִيت.  پ‎لعاسع اسك تهع مانوفاصتورعر نوت تو ستورع داتا ִين مبر غاپ‎ سعصتور %llu ִيس الرعادي ִين وسع بي تهع پ‎روغرام `%s'; اووִيدִينغ ִيت.  تهִيس سوفتوارع ماي صاوسع بووت ور وتهعر پ‎روبلعمس ִين فوتورع.  پ‎لعاسع اسك ִيتس اوتهورس نوت تو ستورع داتا ִين تهع بووت تراصك سعلعصت دعوִيصع بي ִيتس پ‎وسִيتִيون ون تهع بوس. سعلعصت دعوִيصع بي وعندور اند دعوִيصع ִيدس. سعت ادوانصعد پ‎ووعر ماناغعمعنت
(1=لوو, ..., 254=هִيغه, 255=وفف). سعت اوتوماتִيص اصووستִيص ماناغعمعنت
(0=وفف, 128=قوִيعت, ..., 254=فاست). سعت وعمִيد وف رسدپ‎, كسسدت اند رسدت. سعت وعمتابلع ִيد وف رسدپ‎, كسسدت اند رسدت. سعت وعمتابلع رعوִيسִيون وف رسدپ‎, كسسدت اند رسدت. سعت `هִيددعن' فلاغ ִين پ‎ارتִيتִيون تيپ‎ع سعت ا وارִيابلع تو رعتورن والوع. سعت ا وارִيابلع تو تهع فִيرست دعوִيصع فووند. سعت ان عنوִيرونمعنت وارִيابلع. سعت باصكغرووند صولور فور اصتִيوع تعرمִينال. سعت بִيت ات بيتع:بִيت ִين صموس. سعت صرعاتور فִيعلد وف رسدپ‎, كسسدت اند رسدت. سعت صرعاتور رعوִيسִيون وف رسدپ‎, كسسدت اند رسدت. سعت دعبوغ عنوִيرونمعنت وارִيابلع. سعت درִيوع تو سلععپ‎ مودع. سعت درִيوع تو ستاندبي مودع. سعت پ‎وسִيتִيونال پ‎ارامعتعرس. سعت رووت دعوִيصع. سعت ستاندبي تִيمعووت
(0=وفف, 1=5س, 2=10س, ..., 240=20م, 241=30م, ...). سعت تعرمִينفو تيپ‎ع وف تعرم  تو تيپ‎ع.
 سعت تهع دعفاولت بووت معنو عنتري فور غروب, فور تهع نعكست بووت ونلي. سعت تهع دعفاولت بووت معنو عنتري فور غروب. سعت تهع سعرִيال پ‎ورت اددرعسس. سعت تهع سعرִيال پ‎ورت پ‎ارִيتي. سعت تهع سعرִيال پ‎ورت سپ‎ععد. سعت تهع سعرִيال پ‎ورت ستوپ‎ بִيتس. سعت تهع سعرִيال پ‎ورت وورد لعنغته. سعت تهع سعرִيال ونִيت. سعت وپ‎ ִيماغعس تو بووت فروم دعوִيصع.

يوو سهوولد نوت نورماللي رون تهִيس پ‎روغرام دִيرعصتلي.  وسع غروب-ִينستالل ִينستعاد. سعت وسعر پ‎اسسوورد (پ‎بكدف2).  سعت وسعر پ‎اسسوورد (پ‎لاִينتعكست). ونرعصوممعندعد اند ִينسعصورع. سعت وارִيابلع وִيته وسعر ִينپ‎وت. سعت وارִيابلعس. سعتتִينغ غروب_تִيمعووت تو ا نون-زعرو والوع وهعن غروب_هִيددعن_تִيمعووت ִيس سعت ִيس نو لونغعر سوپ‎پ‎ورتعد. سعتتִينغ پ‎ارتִيتִيون تيپ‎ع تو 0كس%x
 سهִيفت پ‎وسִيتִيونال پ‎ارامعتعرس. سهوو اصپ‎ִي ִينفورماتִيون. سهوو اپ‎م ִينفورماتִيون. سهوو صبمعم صونسولع صونتعنت. سهوو ا هعلپ‎ معسساغع. سهوو ا لونغ لִيست وִيته مورع دعتاִيلعد ִينفورماتִيون. سهوو صونتعنتس وف فִيلع ִين هعكس. سهوو لوادعد مودولعس. سهوو معموري صونتعنتس. سهوو راو صونتعنتس وف اتا ִيدعنتִيفي سعصتور. سهوو راو صونتعنتس وف ا فִيلع ور معموري. سهوو راو دومپ‎ وف تهع صموس صونتعنتس. سهوو راو دومپ‎ وف تهع پ‎صִي صونفִيغوراتִيون سپ‎اصع. سهوو تهع صونتعنتس وف ا فִيلع. سهوو تهع صوررعنت ماپ‎پ‎ִينغس. سهوو تهع لִيست وف تروستعد كعيس. سهوو تهִيس معسساغع. سهوو وعرسִيون 1 تابلعس ونلي. سهوو وعرسִيون 2 اند وعرسִيون 3 تابلعس ونلي. سهوتدوون فاִيلعد سִيمولاتع غروب-لعغاصي `ִينִيترد' صومماند سִيمولاتع غروب-لعغاصي `كعرنعل' صومماند سִيمولاتع غروب-لعغاصي `مودولعنوونزִيپ‎' صومماند سִيمولاتع غروب-لعغاصي `پ‎اسسوورد' صومماند سִيمولاتع غروب-لعغاصي `پ‎اسسوورد' صومماند ִين معنو عنتري مودع سكִيپ‎ ن بيتعس فروم ووتپ‎وت فִيلع. سكִيپ‎ وففسعت بيتعس فروم تهع بعغִيننִينغ وف فִيلع. سكִيپ‎ سִيغناتورع-صهعصكִينغ وف تهع عنوִيرونمعنت فִيلع. سكִيپ‎ سִيغناتورع-صهعصكִينغ وف تهع پ‎وبلִيص كعي فִيلع. سلوت %d وپ‎عنعد
 سومع هورد ستوفف فووند, بوت نوت عنووغه تو بووت. سپ‎عصִيفي فִيلعنامع. سپ‎عصִيفي هاسه تو وسع. سپ‎عصִيفي ونع ور مورع فونت فִيلعس تو لواد. سپ‎عصִيفي سִيزع فور عاصه رعاد وپ‎عراتִيون سپ‎عصִيفي تهع نومبعر وف ִينپ‎وت فִيلعس. سپ‎ععد: %s 
 ستارت غدب ستوب ون غִيوعن پ‎ورت ستوپ‎ غدب ستوب ستوراغع ִينفورماتִيون فور `%s' دوعس نوت ִينصلودع تيپ‎ع ستوراغع ִينفورماتִيون فور `%s' ִيندִيصاتعس نعִيتهعر ا پ‎لاִين پ‎ارتִيتִيون نور ا پ‎لاִين دִيسك ستورع ماتصهعد صومپ‎ونعنت نومبعر ִين وارنامع. سوصصعسس سونداي سوپ‎پ‎رعسس نورمال ووتپ‎وت (وارنִينغس رعماִين). سوִيتصه تو ناتִيوع دִيسك درִيوعرس. ִيف نو مودولعس ارع سپ‎عصִيفִيعد دعفاولت سعت (پ‎اتا,اهصִي,وسبمس,وهصִي,وهصִي,عهصִي) ִيس وسعد سينتاكس عررور ات لִينع %u
 سينتاكس عررورس ارع دعتعصتعد ִين غعنعراتعد غروب صونفִيغ فִيلع.
عنسورع تهات تهعرع ارع نو عررورس ִين /عتص/دعفاولت/غروب
اند /عتص/غروب.د/* فִيلعس ور پ‎لعاسع فִيلع ا بوغ رعپ‎ورت وִيته
%s فִيلع اتتاصهعد. سيستعم ماناغعمعنت بوس صونتروللعر ִي/و سپ‎اصع ִيس ات 0كس%x
 ت تارغعت تهعمعس تارغعت فورمات نوت سپ‎عصִيفִيعد (وسع تهع -و وپ‎تִيون). تعرمִينال هاس سپ‎عصִيفִيعد غعومعتري. تعرمִينال ִيس اسصִيִي-ونلي [دعفاولت]. تعرمִينال ִيس لوغִيصال-وردعرعد وتف-8. تعرمִينال ִيس وִيسواللي-وردعرعد وتف-8. تعست وسب سوپ‎پ‎ورت. تعست بִيت ات بيتع:بִيت ִين صموس. تعست فִيلع رعاد سپ‎ععد. تعست ִيف رعغعكسپ‎ ماتصهعس سترִينغ. تعست وִيدعو سوبسيستعم ִين مودع وكسه. تعست وִيدعو سوبسيستعم. تعكست-ونلي  تهع فִيلعس ارع ִيدعنتִيصال.
 تهع هִيغهلִيغهتعد عنتري وִيلل بع عكسعصوتعد اوتوماتִيصاللي ִين %dس. تهִيس ودعو ִيس ا راִيدز%llu
 تهִيس ودعو ִيس ا مִيررور تهִيس عنتري صان بع بووتعد بي اني وسعر. تهִيس رعقوִيرعس سعتتִينغ غروب_دعفاولت=ساوعد ִين %s/دعفاولت/غروب.\ن تهورسداي تִيب تִيب/س توول تو عدִيت عنوִيرونمعنت بلوصك. توتال فلاسه سִيزع: %d ب.
 تراִيلִينغ باصكسلاسه ترانسفورم 64-بִيت ووִيد تو فورمات سوִيتابلع فور كسنو. ִيف -ل ִيس غִيوعن كععپ‎ ִيت لووعرصاسع اس دونع بي بلكִيد. ترانسفورم ا سيستعم فִيلعنامع ִينتو غروب ونع. ترانسفورم سيسلִينوكس صونفִيغ ִينتو غروب ونع. ترانسلاتع سعت1 صهاراصتعرس تو سعت2 ִين سترִينغ. ترانسلاتع تو لووعر صاسع. ترانسلاتع تو وپ‎پ‎عر صاسع. ترانسلاتعس تهع سترִينغ وִيته تهع صوررعنت سعتتִينغس. تري '%s --هعلپ‎' ور '%s --وساغع' فور مورع ִينفورماتִيون.
 توعسداي وسعر پ‎اسسوورد وسعر پ‎بكدف2_پ‎اسسوورد وسعرنامع[,وسعرنامع] وتف-8 ونابلع تو صرعاتع پ‎ִيپ‎ع: %s ونابلع تو دعتعرمִينع يوور پ‎لاتفورم. وسع --تارغعت. ونابلع تو فورك: %s ونابلع تو وپ‎عن سترعام فروم %s: %s ونابلع تو رعترִيعوع پ‎وول ستاتع ونصومپ‎رعسس داتا. ونصومپ‎رعسس فִيلع بعفورع صهعصكسوممִينغ. ونكنوون اددرعسس تيپ‎ع %d
 ونكنوون صومماند `%s'.
 ونكنوون صومپ‎رعسسִيون فورمات %s ونكنوون عنصودִينغ ونكنوون عكسترا ارغومعنت `%s'. ونكنوون غسوب فونت فعاتورع 0كس%x (%s)
 ونكنوون كعيبوارد سصان صودع 0كس%02x
 ونكنوون كعيبوارد سصان ִيدعنتִيفִيعر %s
 ونكنوون پ‎لاتفورم `%s-%s' ونكنوون سيستعم عررور ونكنوون وִيدعو مودع  ونكنوون وִيرتوال دعوִيصع تيپ‎ع: %s
 ونلواد عفִي عمولاتور. ونماتصهعد ( ور \( ونماتصهعد ) ور \) ونماتصهعد [ ور [^ ونماتصهعد \{ ونرعصوغنִيزعد صومپ‎رعسسִيون `%s' ونرعصوغنִيزعد وپ‎تִيون `%s'\ن ونرعصوغنִيزعد پ‎وول ستاتع ونسوپ‎پ‎ورتعد اددرعسس تيپ‎ع %d
 ونسوپ‎پ‎ورتعد صووعراغع سپ‎عصִيفִيصاتִيون: %d
 ونسوپ‎پ‎ورتعد هو اددرعسس تيپ‎ع %d
 ونسوپ‎پ‎ورتعد ִيماغع فورمات ونسوپ‎پ‎ورتعد سوبستִيتوتִيون فلاغ: 0كس%x
 ونسوپ‎پ‎ورتعد سوبستִيتوتִيون سپ‎عصִيفִيصاتִيون: %d
 ونسوپ‎پ‎ورتعد سوبستִيتوتִيون تيپ‎ع: %d
 وساغع: وساغع: %s -و ووتپ‎وت صكبماپ‎_ارغومعنتس...\ن وساغع: %s دعوִيصع
 وساغع: %s [ִينفִيلع [ووتفִيلع]]
 وساغع: %s [وپ‎تִيون] معنو_عنتري\ن وساغع: %s [وپ‎تִيون]\ن وسع صد-روم اس رووت. وسع غدب رعموتع دعبوغغعر ִينستعاد وف ددب. وسع سترִينغ اس معنو عنتري بودي. وسع صومپ‎ִيلعد-ִين رووت دعوִيصع. وسع سعرִيال صونسولع. وسع تهع %C اند %C كعيس تو سعلعصت وهִيصه عنتري ִيس هִيغهلִيغهتعد. وار ִينتعرفاصع نومبعر دعسصرִيپ‎تִيون وارنامع ودعو علعمعنت نومبعر %d ִيسن'ت صوررعصت
 ودعو علعمعنت نومبعر %d:
 ودعو وִيته %d صهִيلدرعن
 وعربوسع صوونتدوون. وعرִيفي دعتاصهعد سִيغناتورع. وعرسִيون %u.%u
32-بִيت صس = 0كس%x, لعن = 0كس%x, وففسعت = 0كس%x
16-بִيت صس = 0كس%x, لعن = 0كس%x
دس = 0كس%x, لعن = 0كس%x
 وִيرتوال دعوִيصع ִيس دعغرادعد وִيرتوال دعوִيصع ִيس فاولتعد وִيرتوال دعوִيصع ִيس وففلִينع وִيرتوال دعوִيصع ִيس ونلִينع وִيرتوال دعوִيصع ִيس رعمووعد وارنִينغ: نو صونسولع وִيلل بع اواִيلابلع تو وس وارنִينغ: نو پ‎لاتفورم-سپ‎عصִيفִيص ִينستالل واس پ‎عرفورمعد وارنִينغ: ونسوپ‎پ‎ورتعد فونت فعاتورع پ‎ارامعتعرس: %x
 وִيدتهكسهعִيغهت. واִيت فور ا سپ‎عصִيفִيعد نومبعر وف سعصوندس. واִيت فور كعيپ‎رعسس افتعر عوعري لִينع وف ووتپ‎وت. وارنִينغ: وارنִينغ: ִينوالִيد باصكغرووند صولور `%s'
 وارنִينغ: ִينوالִيد فورعغرووند صولور `%s'
 وارنִينغ: سينتاكس عررور (مִيسسִينغ سلاسه) ִين `%s'
 وعدنعسداي وִيندووس نت/2000/كسپ‎ (لوادعر) وִيندووس وִيستا/7 (لوادعر) ورִيتع 16-بִيت والوع تو اددر. ورִيتع 16-بִيت والوع تو پ‎ورت. ورִيتع 32-بִيت والوع تو اددر. ورִيتع 32-بִيت والوع تو پ‎ورت. ورִيتع 8-بִيت والوع تو اددر. ورִيتع 8-بִيت والوع تو پ‎ورت. ورִيتتعن سپ‎د بيتعس: %d ب.
 كسعن هيپ‎عروִيسور, وعرسִيون %s يوو  يوو نععد تو سپ‎عصִيفي ات لعاست ونع صومماند.
 يوو وִيلل هاوع تو سعت `سيستعمپ‎ارتִيتִيون' اند `وسلوادعر' مانواللي. يوو'وع فووند ا بوغ يوور عمبعددִينغ ارعا ִيس ونوسواللي سمالل.  صورع.ִيمغ وون'ت فִيت ִين ִيت. يوور كسوررִيسو دوعسن'ت سوپ‎پ‎ورت `--غروب2-بووت-ִينفو'. سومع فعاتورعس ارع دִيسابلعد. پ‎لعاسع وسع كسوررִيسو 1.2.9 ور لاتعر. يوور كسوررִيسو دوعسن'ت سوپ‎پ‎ورت `--غروب2-بووت-ִينفو'. يوور صورع ִيماغع ִيس توو بִيغ. بووت اس دִيسك ִيس دִيسابلعد. پ‎لعاسع وسع كسوررִيسو 1.2.9 ور لاتعر. [--اپ‎پ‎عند|--رعمووع] [تعرمִينال1] [تعرمִينال2] ... [--فورصع|--بپ‎ب] فִيلع [--مد5] پ‎اسسود [فִيلع] [--نو-معم-وپ‎تִيون] [--تيپ‎ع=تيپ‎ع] فִيلع [ارغ ...] [-1|-2] [--عكسصلودع=تابلع1,تابلع2|--لواد-ونلي=تابلع1,تابلع2] فִيلع1 [فִيلع2] [...] [-ص فִيلع [-پ‎ پ‎رعفִيكس]] [فִيلع1 [فִيلع2 ...]] [-د] دعوִيصعنامع فִيلع. [-ع|-ن] سترִينغ [-ف فִيلع] [-ف فִيلع] [-س|--سكִيپ‎-سִيغ] [وارִيابلع_نامع_تو_وهִيتعلִيست] [...] [-ف فִيلع] وارִيابلع_نامع [...] [-ف|-ل|-و|-س|-ن] [--هִينت هִينت [--هִينت هִينت] ...] نامع [-ه|-پ‎|-ر] [فִيلع] [-ل] غروبووִيد [وارنامع] [-ل|-ه|-ا] [فִيلع ...] [-م (سترعتصه|نورمال)] فִيلع [-س پ‎وسִيتִيون] [-د دعوִيصع] [-س پ‎وسִيتִيون] [-د دعوִيصع] [-و وار] رعغִيستعر[=والوع[:ماسك]] [-س سִيزع] فִيلعنامع [-س|--سكִيپ‎-سִيغ] فִيلع سִيغناتورع_فִيلع [پ‎وبكعي_فִيلع] [-س|--سكִيپ‎-سִيغ] پ‎وبكعي_فִيلع [اددر|صومونִيت][,سپ‎ععد] [ارغ] [صارد [هواددرعسس]] [صارد] [دִير] [عنووار=والوع] [عنووار] [كعيستروكع1] [كعيستروكع2] ... [مودولع1 مودولع2 ...] [نومبعر:]وارنامع [نوم] [وپ‎تִيونس...] [وپ‎تִيونس] [وپ‎تִيونس] دִيسك [وپ‎تִيونس] فִيلع_ور_دعوִيصع [وپ‎تִيونس] فونت_فִيلعس [وپ‎تִيونس] [سعت1] [سعت2] [سترִينغ] [وپ‎تִيون] سوورصع... [وپ‎تִيون] [ִينستالل_دعوִيصع] [وپ‎تִيون]... [مودولعس] [وپ‎تִيون]... [پ‎اته|دعوִيصع] [وپ‎تس] [پ‎اته] [پ‎اتتعرن ...] [وسعرلִيست] [والوع]... [وكسه[كسد]] [وكسه] [[-ا|-و|-و] [-غ وكسه] تعرم [تيپ‎ع]] [[يعار-]مونته-داي] [هوور:مִينوتع[:سعصوند]] [بوس]:[سلوت][.فونص] [وعندور]:[دعوִيصع] `%s' ִيس نوت ا لوصال دִيسك `صريپ‎توموونت' صومماند فاִيلس: %s `لووپ‎باصك' صومماند فاִيلس: %s `نوسعتعنو' فاִيلعد. 
يوو وִيلل هاوع تو سعت `بووت-دعوִيصع' وارִيابلع مانواللي.  ات تهع ִيععع1275 پ‎رومپ‎ت, تيپ‎ع:
  %s
 `وبپ‎پ‎اته' نوت فووند ִين پ‎ارعنت دִيرس وف `%s', نو ִيععع1275 نامع دִيسصووعري ا والوع واس اسسִيغنعد تو تهع ارغومعنت `%s' وهִيلع ִيت دوعسن'ت رعقوִيرع ان ارغومعنت اصصعسس دعنִيعد ادد نوتع سعغمعنت فور صهرپ‎ ִيععع1275 اددر اددرعسس نوت فووند اسسومع ִينپ‎وت ִيس ا پ‎كسعلִينوكس صونفִيغوراتִيون فִيلع. اسسومع ִينپ‎وت ִيس ا سيسلִينوكس صونفִيغوراتִيون فִيلع. اسسومع ִينپ‎وت ִيس ان ִيسولִينوكس صونفִيغوراتִيون فִيلع. اتتعمپ‎ت تو ִينستالل تو عنصريپ‎تعد دִيسك وִيتهووت صريپ‎تودִيسك عنابلعد. سعت `%s' ִين فִيلع `%s'. اتتعمپ‎ت تو رعاد ور ورִيتع ووتسִيدع وف دִيسك `%s' اتتعمپ‎ت تو رعاد ور ورִيتع ووتسִيدع وف پ‎ارتִيتִيون اتتعمپ‎ت تو رعاد پ‎است تهع عند وف فִيلع اتتعمپ‎ت تو سععك ووتسִيدع وف تهع فִيلع اتتعمپ‎تִينغ تو رعاد تهع صورع ִيماغع `%s' فروم غروب اتتعمپ‎تִينغ تو رعاد تهع صورع ִيماغع `%s' فروم غروب اغاִين اواִيلابلع رام اواִيلابلع فورماتس: باد سִيغناتورع باسع_اددر = 0كس%llx, لعنغته = 0كس%llx, %s
 باسع_اددر = 0كس%llx, لعنغته = 0كس%llx, تيپ‎ع = 0كس%x
 بִيتماپ‎ فִيلع `%s' ִيس وف ونسوپ‎پ‎ورتعد فورمات بلعسس فور پ‎پ‎ص-باسعد ماصس بلعسس فور كس86-باسعد ماصس بلوصكلִيست فִيلع بلوصكلִيستس ارع ִينصومپ‎لعتع بلوصكلִيستس ارع ִينوالִيد بلوصكسִيزع ִيس نوت دִيوִيسִيبلع بي 512 صان'ت برعاك 0 لووپ‎س صان'ت صومپ‎رعسس `%s' تو `%s' صان'ت دعتعرمִينع فִيلعسيستعم ون %s صان'ت فִيند صومماند `%s' صان'ت موونت عنصريپ‎تعد وولومع `%s': %s صان'ت وپ‎عن `%s': %s صان'ت وپ‎عن فִيلع %s, ִيندعكس %d: عررور %d صان'ت رعترִيعوع بلوصكلִيستس صان'ت رعترִيعوع بلوصكلִيستس: %s صان'ت سعت %dكس%d فونت سִيزع: فرععتيپ‎ع عررور %d: %s صاننوت صومپ‎رعسس تهع كعرنعل ִيماغع صاننوت صوپ‎ي `%s' تو `%s': %s صاننوت دعلعتع `%s': %s صاننوت فִيند عفִي دִيرعصتوري صاننوت فִيند ا غروب درִيوع فور %s.  صهعصك يوور دعوִيصع.ماپ‎ صاننوت فִيند ا دعوִيصع فور %s (ִيس /دعو موونتعد?) صاننوت فִيند لوصالع `%s' صاننوت غعت ترانسلاتور صومماند لִينع فور پ‎اته `%s': %s صاننوت ماكع تعمپ‎وراري دִيرعصتوري: %s صاننوت ماكع تعمپ‎وراري فִيلع: %s صاننوت وپ‎عن وس فִيلع `%s': %s صاننوت وپ‎عن `%s': %s صاننوت وپ‎عن صونفִيغوراتִيون فִيلع `%s': %s صاننوت وپ‎عن دִيرعصتوري `%s': %s صاننوت رعاد `%s' صوررعصتلي صاننوت رعاد `%s': %s صاننوت رعنامع تهع فִيلع %s تو %s صاننوت رعستورع تهع ورִيغִينال دִيرعصتوري صاننوت سععك `%s': %s صاننوت ستات `%s': %s صاننوت ورִيتع تو صد-روم صاننوت ورִيتع تو `%s': %s صاننوت ورִيتع تو تهع ستدووت: %s صارد نوت فووند صات فִيلع صهعصكسوم وعرִيفִيصاتִيون فاִيلعد صهووسع تهع صومپ‎رعسسִيون تو وسع فور صورع ִيماغع صمپ‎ فִيلع لوصال صومونִيت[,سپ‎ععد] صومپ‎ارع فاִيل ات وففسعت %llu صومپ‎رعسس غروب فִيلعس [وپ‎تִيونال] صوننعصتִيون رعفوسعد صوننعصتִيون تִيمعووت صونوعرت تو بولد فونت صورع ִيماغع ִيس توو بִيغ (0كس%x > 0كس%x) صورع.ִيمغ وعرسִيون مִيسماتصه صوولدن'ت اوتوصونفִيغورع %s صوولدن'ت فִيند ִيععع1275 دعوִيصع پ‎اته فور %s.
يوو وִيلل هاوع تو سعت `بووت-دعوִيصع' وارִيابلع مانواللي صوولدن'ت فִيند ا نعصعسساري معمبعر دعوִيصع وف مولتִي-دعوִيصع فִيلعسيستعم صوولدن'ت فִيند غعلִي صونسومعر صوولدن'ت فִيند غعوم `پ‎ارت' صلاسس صوولدن'ت وپ‎عن غعوم صوولدن'ت رعاد علִي معتاداتا صوولدن'ت رعترִيعوع ووִيد صوولدن'ت رعترִيعوع غعلִي ووִيد صوولدن'ت رعترִيعوع راندوم داتا صوولدن'ت رعترִيعوع راندوم داتا فور سالت صوولدن'ت سعند نعتوورك پ‎اصكعت صپ‎ فִيلع لوصال صرص فִيلع صريپ‎توغراپ‎هִيص عررور نومبعر %d صوررعنت دִيرعصتوري وف تهع سيسلִينوكس [دعفاولت ִيس پ‎ارعنت دִيرعصتوري وف ִينپ‎وت فִيلع]. صوررعنت دִيرعصتوري وف تهع سيسلִينوكس اس ִيت وִيلل بع سععن ون رونتִيمع  [دعفاولت ִيس پ‎ارعنت دִيرعصتوري وف ִينپ‎وت فִيلع]. صيغوִين_صونو_پ‎اته() فاִيلعد دعلعتع دعوִيصع ماپ‎ ִيف ִيت الرعادي عكسִيستس دعستִيناتִيون ونرعاصهابلع دعوִيصع صوونت عكسصععدس لִيمִيت دعوִيصع ترعع موست بع سوپ‎پ‎لִيعد (سعع `دعوִيصعترعع' صومماند) دִيسابلع هִينتִينغ دִيسك `%s' نوت فووند دִيسك دوعس نوت عكسִيست, سو فاللִينغ باصك تو پ‎ارتִيتִيون دعوִيصع %s دִيسك مودولع تو وسع (بִيوسدִيسك ور ناتִيوع). تهִيس وپ‎تִيون ִيس ونلي اواִيلابلع ون بִيوس تارغعت. دִيسك رعاد فاִيلس ات وففسعت %lld, لعنغته %lld دִيسكبووت.ִيمغ سִيزع موست بع %u بيتعس دو نوت ִينستالل بووتسعصتور دو نوت پ‎روبع فور فִيلعسيستعمس ִين دعوִيصع دوماִين نامع صومپ‎ونعنت ִيس توو لونغ دون'ت وپ‎داتع لعد ستاتع دون'ت وپ‎داتع تهع `بووت-دعوִيصع'/`بووت*' نورام وارִيابلعس. تهִيس وپ‎تִيون ִيس ونلي اواִيلابلع ون عفִي اند ִيععع1275 تارغعتس. دونع عمبعد فִيلع اس ا معمدִيسك ִيماغع
ִيمپ‎لִيعس `-پ‎ (معمدִيسك)/بووت/غروب' اند ووعررִيدعس اني پ‎رعفִيكس سوپ‎پ‎لִيعد پ‎رعوִيووسلي, بوت تهع پ‎رعفִيكس ִيتسعلف صان بع ووعررִيددعن بي لاتعر وپ‎تִيونس عمبعد فִيلع اس ان عارلي صونفִيغ عمبعد فִيلع اس پ‎وبلִيص كعي فور سִيغناتورع صهعصكִينغ عمبعددִينغ ִيس نوت پ‎وسسִيبلع, بوت تهִيس ִيس رعقوִيرعد فور راִيد اند لوم ִينستالل عمبعددִينغ ִيس نوت پ‎وسسִيبلع, بوت تهִيس ִيس رعقوִيرعد فور صروسس-دִيسك ִينستالل عنابلع ارصس (بִيغ-عندִيان مִيپ‎س ماصهִينعس, موستلي سغִي) بووت. دִيسابلعس هفس+, اپ‎م, سپ‎ارص64 اند بووت اس دִيسك ִيماغع فور ִي386-پ‎ص عنابلع سپ‎ارص بووت. دִيسابلعس هفس+, اپ‎م, ارصس اند بووت اس دִيسك ִيماغع فور ִي386-پ‎ص عنابلִينغ %s سوپ‎پ‎ورت ... عنتعر: بووت, `ع': وپ‎تִيونس, `ص': صمد-لִينع عنوִيرونمعنت بلوصك توو سمالل عررور: %s.
 عكسپ‎عصت غروب ִيماغعس وندعر تهع دִيرعصتوري دִير/%s ִينستعاد وف تهع %s دִيرعصتوري فاִيلعد تو صوپ‎ي غروب تو تهع پ‎رعپ‎ پ‎ارتִيتִيون فاִيلعد تو غعت صانونִيصال پ‎اته وف `%s' فاִيلعد تو رعاد تهع سعصتورس وف تهع صورع ִيماغع فاִيلورع رعادִينغ سعصتور 0كس%llx فروم `%s' فاִيلورع تو رعاد پ‎اسسوورد فاִيلورع ورִيتִينغ سعصتور 0كس%llx تو `%s' فالسع فاولتي رام (بادرام) فִيلع `%s' نوت فووند فִيلعنامع عكسپ‎عصتعد فִيلعنامع ور تعمپ‎و اند نوتعس عكسپ‎عصتعد فִيلعسيستعم `%s' دوعس نوت سوپ‎پ‎ورت لابعلس فִيلعسيستعم `%s' دوعسن'ت سوپ‎پ‎ورت بلوصكلִيستس فִيلعسيستعم ون %s ִيس نعִيتهعر هفس نور هفس+ فִيرموارع ִيماغع ִيس توو بִيغ فورصع اوتوهִينت فوور ارغومعنتس عكسپ‎عصتعد فوستارت.ִيمغ دوعسن'ت ماتصه تهع كنوون غوود وعرسִيون. پ‎روصععد ات يوور وون رִيسك غعنعراتع ان ִيماغع ִين فورمات غִيوع ا سهورت وساغع معسساغع غִيوع تهִيس هعلپ‎ لִيست غִيوعن ارغومعنت ִيس ا سيستعم دعوִيصع, نوت ا پ‎اته غروب-مكִيماغع ִيس صومپ‎ִيلعد وִيتهووت كسز سوپ‎پ‎ورت غروب> هانغ فور سعصس سعصوندس (دعفاولت 3600) هعكس فִيلع ִيغنورع بִيتماپ‎ سترִيكعس وهعن لوادִينغ ִينصوررعصت تعرمִينال دִيمعنسִيونس سپ‎عصִيفִيصاتִيون ִينִيترد الرعادي لوادعد ִينستالل فونتس [دعفاولت=%s] ִينستالل غروب فور تارغعت پ‎لاتفورم [دعفاولت=%s] ִينستالل غروب ִيماغعس وندعر تهع دִيرعصتوري دִير/%s ִينستعاد وف تهع %s دִيرعصتوري ִينستالل تهعمعس [دعفاولت=%s] ִينستالل دعوִيصع ִيسن'ت سپ‎عصִيفִيعد ִينستالل عوعن ִيف پ‎روبلعمس ارع دعتعصتعد ִينستالل ونلي لوصالعس [دعفاولت=الل] ִينستالل ونلي مودولعس اند تهعִير دعپ‎عندعنصִيعس [دعفاولت=الل] ִينوالִيد پ‎بكدف2 پ‎اسسوورد ִينوالִيد ارصه-دعپ‎عندعنت علف ماغִيص ִينوالִيد ارصه-ִيندعپ‎عندعنت علف ماغִيص ִينوالִيد ارغومعنت ִينوالִيد بلوصك سִيزع ִينوالִيد صولور سپ‎عصִيفִيصاتִيون `%s' ִينوالִيد دعوִيصع ترعع ִينوالִيد عنوִيرونمعنت بلوصك ִينوالִيد فִيلع نامع `%s' ִينوالִيد فونت رانغع ִينوالִيد لִينع فورمات: %s ִينوالִيد مودִينفو فִيلع `%s' ִينوالִيد پ‎ارامعتعر %s ִينوالִيد سكִيپ‎ والوع %lld ִينوالִيد وارִيابلع نامع `%s' ִينوالִيد وִيدعو مودع سپ‎عصִيفִيصاتִيون `%s' ִينوالִيد زִيماغع ִيوصتل غعت_ارراي_ִينفو عررور: %s ִيوصتل غعت_دִيسك_ִينفو عررور: %s ִيوصتل راִيد_وعرسִيون عررور: %s كعرنعل ִيماغع ִيس توو بִيغ (0كس%x > 0كس%x) لִيست نعتوورك اددرعسسعس لִيست نعتوورك صاردس لִيست نعتوورك رووتعس لس پ‎اته لزوپ‎ فִيلع صورروپ‎تعد ماكع تهع درִيوع السو بووتابلع اس فلوپ‎پ‎ي (دعفاولت فور فدكس دعوִيصعس). ماي برعاك ون سومع بִيوسعس. مִيسسִينغ `%c' سيمبول مִيسسִينغ مانداتوري وپ‎تִيون فور `%s' مودولع `%s' ִيسن'ت لوادعد مودولع ִيسن'ت لوادعد نامع نععد ان ִيماغع اند موونتپ‎وִينت نو اپ‎م فووند نو دهصپ‎ ִينفو فووند نو دهصپ‎ وپ‎تִيون %d فووند نو دهصپ‎ وپ‎تִيونس فووند نو دنس رعصورد فووند نو دنس رعپ‎لي رعصعִيوعد نو دنس سعروعرس صونفִيغورعد نو عفִي رووتִينعس ارع اواִيلابلع فور يوور پ‎لاتفورم نو عفִي رووتִينعس ارع اواִيلابلع وهعن روننִينغ ִين بִيوس مودع نو ִيععع1275 رووتִينعس ارع اواִيلابلع فور يوور پ‎لاتفورم نو سغִي رووتִينعس ارع اواִيلابلع فور يوور پ‎لاتفورم نو `/' ִين صانونִيصال فִيلعنامع نو صومماند ִيس سپ‎عصִيفִيعد نو صومپ‎رعسسִيون ִيس اواִيلابلع فور يوور پ‎لاتفورم نو دعصريپ‎تִيون كعي اواִيلابلع نو هִينتس اواִيلابلع فور يوور پ‎لاتفورم. عكسپ‎عصت رعدوصعد پ‎عرفورمانصع نو نعتوورك صارد فووند نو راندوم نومبعر غعنعراتور ִيس اواִيلابلع فور يوور وس نو سعروعر ִيس سپ‎عصִيفִيعد نو سوصه پ‎ارتִيتִيون نو سوִيتابلع وִيدعو مودع فووند نو سيمبول تابلع نو تعرمִينال سپ‎عصִيفִيعد نو تعرمִيناتور ִين تهع صورع ִيماغع نون-سعصتور-الִيغنعد داتا ִيس فووند ִين تهع صورع فִيلع نوت ا دִيرعصتوري نوت ا پ‎رִيماري پ‎ارتִيتִيون نوت ا رعغولار فִيلع نوت ִين فونصتִيون بودي ونع ارغومعنت عكسپ‎عصتعد ونلي ִيپ‎و4 ونلي ִيپ‎و6 وتهعر سوفتوارع ִيس وسִينغ تهع عمبعددִينغ ارعا, اند تهعرع ִيس نوت عنووغه رووم فور صورع.ִيمغ.  سوصه سوفتوارع ִيس وفتعن تريִينغ تو ستورع داتا ִين ا واي تهات اووִيدس دعتعصتִيون.  وع رعصوممعند يوو ִينوعستִيغاتع ووت وف معموري ووتپ‎وت ا غعنعراتعد ִيماغع تو فִيلع [دعفاولت=ستدووت] ووتپ‎وت فִيلع موست بع سپ‎عصִيفִيعد ووتپ‎وت غعنعراتعد صونفִيغ تو فִيلع [دعفاولت=ستدووت] ووعرفلوو ִيس دعتعصتعد پ‎اسسووردس دون'ت ماتصه پ‎عرفورم ا بووتپ‎ اوتوصونفִيغوراتִيون پ‎هيسִيصال وولومع %s نوت فووند پ‎رع-لواد سپ‎عصִيفִيعد مودولعس مودولعس پ‎رعفعر ִيپ‎و4 پ‎رعفعر ִيپ‎و6 پ‎رعماتورع عند وف فִيلع پ‎رعماتورع عند وف فִيلع %s پ‎رعسس صاپ‎سلوصك كعي پ‎رعسس ִينسعرت كعي پ‎رعسس نوملوصك كعي پ‎رعسس سصرولللوصك كعي پ‎رعسس سيسرق پ‎رعسس لعفت الت پ‎رعسس لعفت صترل پ‎رعسس لعفت سهִيفت پ‎رعسس رִيغهت الت پ‎رعسس رִيغهت صترل پ‎رعسس رִيغهت سهִيفت پ‎رִينت پ‎روغرام وعرسִيون پ‎رִينت تهع وعرسִيون ִينفورماتִيون اند عكسִيت پ‎رִينت تهִيس معسساغع اند عكسִيت پ‎رִينت وعربوسع معسساغعس. پ‎وبلִيص كعي %08x نوت فووند رعاد عررور ات وففسعت %llu: %s رعاد تعكست فروم فִيلع. رعلاتִيوع سوبدִيرعصتوري ون نعتوورك سعروعر رعلوصاتִيون 0كس%x ִيس نوت ִيمپ‎لعمعنتعد يعت رعسعروعد رام رعترִيعوع دهصپ‎ وپ‎تִيون اند ساوع ִيت ִينتو وار. ִيف وار ִيس - تهعن پ‎رִينت تهع والوع. رووت دִيرعصتوري اس ִيت وִيلل بع سععن ون رونتִيمع [دعفاولت=/]. رووت دִيرعصتوري وف تفتپ‎ سعروعر رووت دִيرعصتوري وف تهع سيسلִينوكس دִيسك [دعفاولت=/]. رووتع لووپ‎ دعتعصتعد ساوع روم ִيماغعس ִين دִير [وپ‎تִيونال] ساوع ووتپ‎وت ִين فִيلع [رعقوִيرعد] سعلعصت فاصع ִيندعكس سعرִيال پ‎ورت `%s' ִيسن'ت فووند سعت [نامع=والوع ...] سعت صاپ‎سلوصك مودع سعت فونت اسصعنت سعت فونت دعسصعنت سعت فونت فامִيلي نامع سعت فونت رانغع سعت فونت سִيزع سعت ִينپ‎وت فִيلعنامع فور 32-بִيت پ‎ارت. سعت ִينپ‎وت فִيلعنامع فور 64-بִيت پ‎ارت. سعت ִينپ‎وت فִيلعنامع. دعفاولت ִيس ستدִين سعت ִينسعرت مودع سعت نوملوصك مودع سعت ووتپ‎وت فִيلعنامع. دعفاولت ִيس ستدووت سعت پ‎اوسع مودع سعت پ‎رعفִيكس دִيرعصتوري [دعفاولت=%s] سعت سصرولللوصك مودع سعت تهع لابعل تو رعندعر سعت تهع پ‎روغرام نامع سִيزع سترعتصه|نورمال سيمبول `%s' نوت فووند تعمپ‎وراري تعرمִينال %s ִيسن'ت فووند ور ִيت'س نوت هاندلعد بي تعرمִينفو تعرمִينال `%s' ִيسن'ت فووند تهع ִيد وف بووتلوادعر. تهִيس وپ‎تִيون ִيس ونلي اواִيلابلع ون عفִي اند ماصس. تهع پ‎رعپ‎ پ‎ارتִيتִيون ִيس نوت عمپ‎تي. ִيف يوو ارع سورع يوو وانت تو وسع ִيت, رون دد تو صلعار ִيت: `%s' تهع ارغومعنت `%s' رعقوִيرعس ان ִينتعغعر تهع صهوسعن پ‎ارتִيتִيون ִيس نوت ا پ‎رعپ‎ پ‎ارتִيتִيون تهع دعوִيصع.ماپ‎ عنتري `%s' ִيس ִينوالִيد. ִيغنورִينغ ִيت. پ‎لعاسع صوررعصت ور دعلعتع يوور دعوִيصع.ماپ‎ تهع درִيوع %s ִيس دعفִينعد مولتִيپ‎لع تִيمعس ִين تهع دعوִيصع ماپ‎ %s تهع درִيوع نامع `%s' ִين دعوִيصع.ماپ‎ ִيس ִينصوررعصت. وسִينغ %s ִينستعاد. پ‎لعاسع وسع تهع فورم [هفص]د[0-9]* (ع.غ. `هد0' ور `صد') تهع فִيرست سعصتور وف تهع صورع فִيلع ִيس نوت سعصتور-الִيغنعد تهع ִينستاللاتִيون دعوִيصع ִيس رعمووابلع. تهִيس وپ‎تִيون ִيس ونلي اواִيلابلع ون عفִي. تهع پ‎ارتִيتִيون تيپ‎ع 0كس%x ִيسن'ت والִيد تهع سعصتورس وف تهع صورع فִيلع ارع توو فراغمعنتعد تهع سִيزع وف `%s' ִيس نوت %u تهع سִيزع وف `%s' ִيس توو لارغع تهع سִيزع وف `%s' ִيس توو سمالل تهִيس علف فִيلع ִيس نوت وف تهع رִيغهت تيپ‎ع تهִيس غپ‎ت پ‎ارتִيتִيون لابعل صونتاִينس نو بִيوس بووت پ‎ارتִيتִيون; عمبعددִينغ وون'ت بع پ‎وسسִيبلع تهִيس لدم هاس نو عمبعددִينغ پ‎ارتִيتִيون; عمبعددִينغ وون'ت بع پ‎وسسִيبلع تهִيس مسدوس-ستيلع پ‎ارتִيتִيون لابعل هاس نو پ‎وست-مبر غاپ‎; عمبعددִينغ وون'ت بع پ‎وسسִيبلع تهرعع ارغومعنتس عكسپ‎عصتعد تִيمع ووت وپ‎عنִينغ `%s' تִيمعووت رعادִينغ `%s' تִيمعووت: صوولد نوت رعسولوع هاردوارع اددرعسس توو دععپ‎ نعستִينغ وف سيملִينكس ترانسلاتور `%s' فور پ‎اته `%s' هاس سعوعرال نون-وپ‎تִيون ووردس, ات لعاست `%s' اند `%s' ترانسلاتور `%s' فور پ‎اته `%s' ִيس غִيوعن ونلي وپ‎تִيونس, صاننوت فִيند دعوִيصع پ‎ارت ترانسلاتور صومماند لִينع ִيس عمپ‎تي فور پ‎اته `%s' توو ارغومعنتس عكسپ‎عصتعد تيپ‎ع ونابلع تو ִيدعنتִيفي ا فִيلعسيستعم ִين %s; سافعتي صهعصك صان'ت بع پ‎عرفورمعد ونالִيغنعد دعوִيصع سִيزع ونعكسپ‎عصتعد عفִي عررور ونعكسپ‎عصتعد عند وف فִيلع ونكنوون ارغومعنت `%s' ونكنوون صومپ‎رعسسִيون %d
 ونكنوون دعوִيصع تيپ‎ع %s
 ونكنوون فִيلعسيستعم ونكنوون كִيند وف راִيد دعوִيصع `%s' ونكنوون رعغعكسپ‎ عررور ونكنوون تارغعت فورمات %s
 ونكنوون تعرمִينفو تيپ‎ع `%s' ونرعصوغنִيسعد دهصپ‎ وپ‎تִيون فورمات سپ‎عصִيفִيصاتִيون `%s' ونرعصوغنִيسعد نعتوورك اددرعسس `%s' ونرعصوغنִيسعد نعتوورك ִينتعرفاصع `%s' ونرعصوغنִيزعد نومبعر ونرعسولوابلع اددرعسس %s ونسعت [نامع ...] ونسوپ‎پ‎ورتعد هتتپ‎ عررور %d: %s ونسوپ‎پ‎ورتعد هتتپ‎ رعسپ‎ونسع ونسوپ‎پ‎ورتعد راִيد وعرسִيون: %d.%d ونسوپ‎پ‎ورتعد غزִيپ‎ فورمات ونسوپ‎پ‎ورتعد پ‎لاتفورم %s
 ونسوپ‎پ‎ورتعد سعرִيال پ‎ورت فلوو صونترول ونسوپ‎پ‎ورتعد سعرִيال پ‎ورت پ‎ارִيتي ونسوپ‎پ‎ورتعد سعرִيال پ‎ورت سپ‎ععد ونسوپ‎پ‎ورتعد سعرִيال پ‎ورت ستوپ‎ بִيتس نومبعر ونسوپ‎پ‎ورتعد سعرִيال پ‎ورت وورد لعنغته وسع صولور فور باصكغرووند وسع صولور فور لابعل وسع صولور فور لابعل باصكغرووند وسع صولور فور تعكست وسع دִير اس تهع عفִي سيستعم پ‎ارتִيتִيون رووت. وسع دִير فور پ‎پ‎ص ماص ִينستالل. وسع فִيلع اس فونت (پ‎ف2). وسع فִيلع اس فونت فور لابعل وسع فִيلع اس تهع بووت ִيماغع [دعفاولت=%s] وسع فִيلع اس تهع صورع ִيماغع [دعفاولت=%s] وسع فִيلع اس تهع دعوִيصع ماپ‎ [دعفاولت=%s] وسع فִيلع اس كسوررִيسو [وپ‎تִيونال] وسع غروب فִيلعس ִين تهع دִيرعصتوري دִير [دعفاولت=%s] وسع سترִينغ اس پ‎رودوصت نامع وسع سترִينغ اس پ‎رودوصت وعرسִيون وسع ִيدعنتִيفִيعر فִيلع عوعن ִيف ووִيد ִيس اواִيلابلع وسع ִيماغعس اند مودولعس وندعر دִير [دعفاولت=%s/<پ‎لاتفورم>] وسع تهعمعس وندعر دִير [دعفاولت=%s] وسع ترانسلاتִيونس وندعر دִير [دعفاولت=%s] وارִيابلع `%s' ִيسن'ت سعت وִيسواللي-وردعرعد وتف-8 واִيت ونتִيل ا دعبوغغعر وִيلل اتتاصه وִيلل نوت پ‎روصععد وִيته بلوصكلִيستس ورִيتع ووتپ‎وت تو فִيلع [دعفاولت=ستدووت]. ورونغ علִي ماغִيص ور وعرسִيون كسنو_ووִيد دعوִيصع كسز فִيلع صورروپ‎تعد ور ونسوپ‎پ‎ورتعد بلوصك وپ‎تִيونس يوو صان'ت دعلعتع تهִيس اددرعسس يوو نععد تو لواد تهع كعرنعل فִيرست يوور بִيوس بووت پ‎ارتִيتִيون ִيس توو سمالل; عمبعددִينغ وون'ت بع پ‎وسسִيبلع يوور صورع.ִيمغ ִيس ونوسواللي لارغع.  ִيت وون'ت فִيت ִين تهع عمبعددִينغ ارعا يوور عمبعددִينغ ارعا ִيس ونوسواللي سمالل.  صورع.ִيمغ وون'ت فִيت ִين ִيت.                                                                                                                                                                                                                                                                                                boot/grub/locale/en@cyrillic.mo                                                                     0000600 0001750 0001750 00000436514 13417732100 0015474 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                            L(    |P      `k  #   ak      k     k     k     k  $   k     l  6   )l     `l     gl  	   sl     }l     l     l     l     l     l  .   l  .   'm  %   Vm     |m     m    m    n    o     p  8   p  '   p  7   q  F   Tq  v   q  +   r     >r      Or     pr  !   r     r  ,   r     r     s  $   s     @s  *   \s     s     s     s     s     s  
   s  	   s     s     t  ,   )t  ,   Vt  ,   t  '   t  -   t      u  (   'u  (   Pu  )   yu     u     u     u     u     u  "   v  4   %v     Zv     bv  7   ov     v     v  1   v     v     w  %   w  '   @w  %   hw  '   w     w     w     w     w     w     x     
x     x     (x     Hx     Zx     hx     xx     x  3   x     x  $   x     x     	y     "y     1y     By     Yy     ny  -   y     y  !   y     y     z     $z  #   9z     ]z  `   z  Z   F{     {     {     {     {     {     {     {     |     |  0   9|  3   j|     |     |     |     |     }     }     *}     A}     W}     e}     |}     }     }     }  %   }     }     }     }     ~     +~     F~     \~     k~     ~~     ~  *   ~  3   ~  1     1   8  2   j                  1        -  #   L     p  "     8                    	   5  #   ?     c                    ԁ       )        $     C     a  "     P               H     &   f            !     ,   ΃                 	   (  !   2  *   T       '             Ԅ             $        =     O     a     |            
   х  
   ܅       1        ,     :     G     `  3   |  >     $             +     H     `     {       +        ۇ       o     #               $   ߈            '   :  9   b            z   Ӊ  "   N     q     x  8        Ŋ  
   ܊                    .     ʋ  +             +     @     V  "   i            (        ׌  #     &     ?   :  '   z  @                            &  "   8  0   [                 7                            "     .     4  0   ;     l                 2     %             -  *   <  6   g  +        ʐ            !   ̑  d     e   S  d     i     o     H        A     T     j     {                    Ք  #             0     H  1   Z  )                       ԕ  /             "     9  5   V            K   ǖ  &        :     V     k            D        ח     ܗ  '     P   	     Z     y  	                       Ř     V  '          +        J     [  )   w               ՚               #     ;     Q  $   f            "        ۛ     ݛ       (             #     )  "   1  +   T  -             ǜ     ֜            O   	     Y     o                 %          )     !   /  "   Q     t       +        Ӟ               	  !        =     Y     r     ~                џ                    2     F  4   V                    Ԡ          
     #     <      Y  !   z       4     M     2   9     l       *     8   Ϣ               ,     D     [     s  3     $     +   ٣               (     =     R     e                     դ     פ  D       4                 ;   5     q       !        ҧ       s        |               ¨     ը                    -     1     7                         Ǫ     Ӫ            '   "  
   J     U     d     z                           H   ث  L   !     n                 %               #        9     V     s     |                 ӭ       "     (   $     M     i  %   v                 #   خ  *        '     )     <  #   A     e     j  	   |  	     "     ;     #     <        P     ^     |  .     	        ð  `   հ     6  !   K  )   m                      q        (     <     S     b     y                    ֲ  "             0     J     b     y                 #   ѳ  a        W     t  g             }       -          !          "   )  '   L  Q   t     ƶ                         4     Q     n               ķ                     '     <      O     p                 -   и            "   ,  b   O  )        ܹ          
  ,   %     R     k  	   p  "   z  %        ú     Ⱥ     ݺ  
          &     )        I  5   \  ^          $     %   0     V  ^   	  _   h  }   Ƚ     F  )     '   '  >   O  D     !   ӿ  '     -     #   K     o  )          )           )     ,   G     t                      E     $   :  A   _  )                             >     _  q   t       :        >     \  `   k               	           6     R  0   g                 )     &     #   2  -   V                           )   
     4  %   D  %   j  ,     '     :           -   ?  0   m  /          .               '   4  $   \  "                    2     Q     *   `            )     o        4     M  6        >     @     G  0   N        !     "     #        	          9     O  !   n       
          <             "  %   8  >   ^                                d     *   a  (     ,               0     6   E     |                           0          !        A     _  $   p                           $     "   6  $   Y     ~                                         ,     9     W     r       '               $     +   -  "   Y     |  )                              '   &     N     m       <                %        *     C     Z     m  m                  +     E     ^  +   x  3     1        
  '     -   @     n  '   w  '     .     	                   5     Q     m                                *     ?   @       B     p        G  /               .   -  O   \  )               	     <        B  5   `                           :        F  1   Y                                                       0     A     G  	   T     ^     m                                               '  
   5  
   @  	   K     U  !   [  )   }                           n   #  F     N        (  "   6     Y     ^  .   p  .     /     W     -   V  -     $     #     0     6   ,     c     q       (     1     )             0     I     X     r  !                          %        :  &   N     u       0                        3  7   M  .          4     #        %     D     a  '   v                      %        3     H     ]     t                      ,                  -     I     h     {       #               _     B   [                                   ;  &   Y                      N     m   !       &               7        ;     K  ;   _  V     +     "        A  &   [  !          r        .     3       /     H   '  F   p  w     N   /     ~  (               I     )   1  $   [  ,     '          %                  .     B  $   T  '   y  *     (                    J   6                 -     +        &  $   ,     Q  "   Z  +   }            -     J        S     o  %     "     9              )  "   J     m     ~                               
     "     <     Q     i  %                         %        9     P     c     w       [          !        %     >     R     W     t                                /     7   6  4   n  /               -        6  @   R       3                       #     3     I  1   i                           	     	               1          0   5     f     {  !          "                      !    :    M    ^    p                                 &   
    1    M    e         '    &        L    9   [     0        !           9    K    h    }                     #    #    $   *    O    _ &   p     !                   	         	   3 7   =    u D    ]    %   2 ,   X [    ;    w    7    K    #   	 /   =	    m	    	    	 &   	 U   	 @   A
 Q   
    
    
     +       D R   a L    .       0    G F   L                                 .    O    d    ~ 2    !    #           &    >    O    m             $            (   : #   c                 )           -    E '   ` '    '        0       (    C -   a 8    !    '           * !   A     c &            .        !   # B   E E    B    t   1    8    (    *    !   E B   g "    R            )    =    M 2   c     #    %        P    P   b @                     ,    a    C    c   _ {       ?  K   !    ^! 4   w!    ! 6   ! +   ! G   *" (   r"     " <   " (   " C   "#    f# 	   #    # '   # 4   #    $    $ (   #$    L$ G   b$ J   $ G   $ ?   =% I   }% 2   % A   % @   <& B   }& 1   & 1   &    $'    8'    D' <   P' ^   ' 	   '    ' K   (    T( !   a( J   ( .   (    ( C    ) G   D) C   ) G   )    *     * 6   "* &   Y* &   *    *    *    * /   * !   +    5+    N+    k+    + V   + 
   + A   + +   =, -   i,    ,    , (   , $   , )   - P   C- 3   - ;   - $   . 2   ). $   \. ?   .    .    /    g0 1   	1 3   ;1    o1    r1 %   x1 
   1    1 )   1 5   1 U   2 [   o2 *   2 .   2 (   %3 .   N3 2   }3    3 )   3 '   3    4 )   ,4    V4    q4 
   y4    4 C   4 7   4    5 #   25 '   V5 1   ~5 (   5    5 !   5    6 *   36 L   ^6 W   6 [   7 W   _7 X   7 4   8 ;   E8 4   8 Z   8 3   9 ?   E9 0   9 >   9 h   9 5   ^:    : /   :    : @   : ,   7; !   d; 8   ; 9   ; )   ;    #< K   ?< 6   < 5   < 6   < >   /=    n= "   = "   >    B> F   > +   ?    <? 4   I? J   ~?    ?    ? 5   ?    @ =   /@ L   m@ +   @ F   @ $   -A    RA .   rA *   A C   A     B     1B 1   RB 3   B 1   B 6   B    !C    2C "   BC C   eC    C    C ,   C -   D V   4D [   D A   D )   )E 4   SE )   E 0   E 9   E #   F N   AF 1   F 6   F    F @   G (   H 6   +H @   bH .   H 2   H H   I h   NI *   I 4   I    J >   J    3K    @K d   `K '   K    K    L %   L 1   ?L   qL 5   M Q   M *   N $   >N %   cN !   N 4   N    N    N J   O +   gO B   O G   O u   P I   P w   P    VQ    lQ    Q (   Q     Q <   Q T   ,R    R    R    R Z   R    S    S    2S '   RS    zS 
   S    S X   S     T    "T !   @T )   bT [   T C   T !   ,U    NU J   eU N   U <   U 7   <V     tV r  V =   X    FX    X    Y    jZ    &[    [ !   t\    \    \    \ $   \ +   ] &   =] )   d] >   ] 2   ] '    ^    (^ P   E^ L   ^    ^    ^ "   ^    _ T   1_    _ *   _ 0   _ b   _ 7   `` 2   `    ` E   Va /   a $   a 3   a    %b 	   ,b v   6b    b    b F   b    c 6   c    c    c    c 2   c $   0d    Ud    Ue G   Kf    f P   f     g 1   g L   Pg 1   g *   g 5   g 4   0h "   eh '   h "   h $   h E   h     >i 2   _i @   i    i    i    i I   j    Nj 	   Uj    _j =   nj N   j S   j -   Ok    }k    k    k    k    k '   l *   l (   l     m "   m D   <m 7   m J   m <   n >   An 2   n (   n P   n %   -o    So    oo    o ;   o 2   o ,   p    Ep (   Zp 9   p 0   p     p #   q 6   3q 2   jq #   q    q [   q 6   9r    pr *   r .   r .   r ,   s ,   Es 2   rs :   s =   s .   t _   Mt    t ]   <u .   u 7   u N   v g   Pv    v )   v *   v (   $w *   Mw    xw ^   w A   w P   0x $   x    x "   x     x    y 0    y 6   Qy 3   y "   y    y ,   y y   z J  z    }    } 5   } j   &~ 9   ~ 6   ~ ;    (   > 9   g     +   w 4       ؀     &    )   ? .   i         	    1  ǁ F   "   @ #   c         5    -    (    E   7    }     '       ҅ (   ۅ             # 4   D    y     "    ,       ԇ     D    -   M +   { A    4    5       T '   d 9    9   Ɖ <        = >   R I    2   ۊ     <   & (   c     (    9   ŋ M       M #   P    t <   }        Ì         ?    m   F A    o       f 1   z     R   Î         $    E %    >    L   Z     	           Ɛ    ܐ     )       ב )    !    '   : %   b 5    8    >    +   6 /   b +    )    '    #    -   4 %   b B       ˔ 1    1            /    3    S    "   ; =   ^     ?    G       C 3   ә /        7    X &   r 0    0   ʚ 0    0   , /   ] /    *        ;    %   > !   d ,    1    #       	 :   ' S   b -        ;       @ K    '   B *   j ,    F    )   	    3    < ?   O C       Ӡ !   ܠ             F   - L   t     ]       ? -    B    D   Z <      ܤ        2 >   J   K G    b   ި n   A :    E    Q   1 ?    8   ê J    4   G L   | 1   ɫ I    O   E :    +   Ь /    1   ,    ^ ]   | ?   ڭ t    J    3   ڮ 1    /   @ 6   p :    $        0   Ӱ j    5   o         6   o 5    )   ܲ '    2   . $   a X    4   ߳ %    '   : K   b D    ?    R   3 2    0    6    !   ! 0   C H   t     D   ۶ D     R   e H    j    6   l R    Y    V   P     R         $   5 F   Z C    >       $ 3   5    i Y       ܻ N   o        ͼ K   ڼ    & )    I   _   c    ÿ    ƿ    ӿ U    <   6 ;   s =    ?       - 3   M &    7    <    '       E -   X m    )    &    B   E o           	 	    9    '   T #   |     M   Q J    O    ,   : ,   g Y    V       E    T %   n #        +    V       D 7   c 6        D    *   6 $   a 5        0    ;    :   I A    '    &    #    8   9 %   r                 4    -   : ,   h 2    G    7    .   H @   w O    =       F E   R     /    4         !   ; G   ] 6    3    #    h   4 =        A    )   , &   V "   } 1        1   i /    /    -    /   ) N   Y _    X       a G   { R        D   & D   k N        ,    *   ? .   j .    .    .    -   & -   T )    .        K    q   /      u       8     K        6 !   W H   y z    =   = $   {         `    .   ' N   V     '        ,    )   0 _   Z     T    -   / &   ]         
                /    !       <    Z    c    w     +    $    3       ' ,   F "   s )    
    
                        0   & E   W         '    6    0   9    j v   $        & ;   @    |      U    U    W   R     N   B S    A    @   ' T   h _        "   7    Z 8   t F    H    ,   = *   j     0    *    :    !   H )   j 9    &    =       3 <   O /    3    M    <   > (   { "    /    `    N   X '    Y    ?   ) 5   i ,        B    1   . -   `     4    F       )    H (   g %    4            6    Q   M         .    7    #   = #   a %    6    /    -       @ z    2   a 7    !    0    )    2   I 6   | F    4       /    H 5   X         -    F    -   W 1    c           9 i   Y     F   ^ <    /    F    =   Y (            *   5    W       J        O      &    A    3       C    T K    >   # P   b @    -    <   " 
   _ "   j     !    C    E    K   Y F    .        ,   7    d 2    0    #   O Q   s P    	    =        ^ @   n S    (   	 -   ,	 P   Z	    	 /   0
 8   `
 E   
 >   
 i    +    <    @       2 "   R 9   u $    0    %    "   + (   N +   w $    '    -    B       a 4   } 2    1    :    *   R "   } $        $             :    (    #   !    E 4   N     !    (    '    #    '   1 /   Y W    e    ]   G W    1    +   / T   [ 3    w    '   \ ^    )         4   .    c (    9    Y       = +   Z !    %    (            \      v Y    6    X     &   y '    ?    2    @   ;    |     '    *    "            ; &   \                             , (   M G   v 2    +    *    .   H $   w J    D       ,    D d    6   0  U   g  $     ;     6   !     U! /   v!     !     !    !    " %   $"    J"    e" =   ~" =   " B   "    =#    Z# F   y#    # :   # $   $ *   ;$ %   f$    $    $ #   $    $ a   $ *   J% z   u%    % A   & Q   &    $' g   '    .( d   (    U) =   ) V   * (   t* 0   * 0   * D   *    D+ u   +    W, .   , #   - "   >- P   a- 4   -    -    m. Q   . *   C/    n/ }   w/ (   / &   0 )   E0 $   o0 )   0 (   0 #   0 7   1 &   C1 ,   j1 -   1 [   1 ;   !2 ?   ]2 %   2 *   2    2 1   3 0   :3 5   k3 ,   3 +   3 D   3 9   ?4 7   y4 K   4 B   4 -   @5 #   n5 8   5 !   5 J   5 2   86 &   k6 /   6 C   6 C   7 C   J7 6   7 T   7 0   8 6   K8 S   8 b   8 9   99 E   s9 &   9 (   9 =   	: <   G: D   : 0   :    : V   ; 5   n; <   ; x   ; {   Z< u   <    >      	  j       7    /                o      P        0                        *  p  q    (  >                                      %                     }           G   j        S            v   C              C    T             _  ;                                                 d            >        '                 ^                *        +    !  ?   K          {            1      m              y                                 s      e        2    	             K    V      	  8   !         /     ^                    r  H            F                 r   |                                  D        $                       r    _           I  l  e          G    w             S            ,      J  %     s                      R                 Y      n           ;              
             4           $   W            d    ?  b               ,  6  w    h                     I  J     7   q  4    V      p                O    `                                              i                   X  ]        G      6  c                N                      B  :    C  l  =    v                           A           ,            j  6  g  F   ,     B       U        f          t     h        [  N          w             ]    a        W     <      u  k     	  {  S  1  `      a          '             {                                  )       i                    y              O       m              ^                  M                        P                  -      %               f        b                   t               C                            8  X          *                           
          k     z  w   z  @  T         ]      |                      \      J               '  D       0  b                       (             c                 k       G        s                    [        *  Z      y       )          \                    y         N      4                           v  h              
  $                              ;    6                    |     2               3  v    M  L              ~  S        9  Q     2            {                                         %        @   F      +                    .             V  Q            2                       z          +   g  a             !                                          v                M                 M     P        K             E        9                        @  ^                          c           a      [     )  W          c    A                  k  H            X             "  W                +  h              =                      Z                        }  i    G  )  j               -   &  (        u          |                        ^  g      (  c    e  /  5              -                                 w        L                  M                d      e                         `  o                       N  $      !                o        +                     R             p     "     	                 q                            T    y   n    r                   ]            x                                                 D            }  -                                <         R                       V              H   (           }              N     8           }              ]              b  p      ?                          H                                .  ~     8        &       =  B                         W  K  =          E    [       1                          _                             e  h           4      9   R  \              X  E        B       O  t    >           T  f                 l  f     F              n        )   B      1        \  L    f                &            <  0     Z    d   F  a  ;  ,     u     o                               O     Z         ?        T       A  x          8                 .      *   .        n   l                       g     L       J                               r            u        :         .                                      3           L    X      P                0  5  m             U    9  <        g  A               3                     ~                l    $      "  C             '            
                       /            i      O  9                          0  n  5    U             ;       &                 U             7  4      Y    m  _                                      t          m                      @  1                 u               s   I              Q  !  k        `           2  @    Z            "      A         ?  6    {          E      3              &    '  H            [                              j            >  #  R      #    S  z  Y   d  x  ~  b  P            t          _    q                    #  \       `       ~      E                3    o                #        :  
  q                                    I       :            Y    x    #   U         I         J    -    Q  Y  7  5       x                 /      5      <               :        =   "    %      K        i            D      p         |    V          z   D    Q  s    7                   total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s doesn't exist. Please specify --target or --directory %s doesn't look like an EFI partition.
 %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: not found %s: option '%c%s' doesn't allow an argument
 %s: option '%s' is ambiguous; possibilities: %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- --ppc PATH|--x86 FILE -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Bless DIR of HFS or HFS+ partition for PPC macs. Bless FILE of HFS or HFS+ partition for intel macs. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't create file: %s Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check if CPU supports Physical Address Extension. Check if FILE can be used as x86 multiboot kernel Check if FILE can be used as x86 multiboot2 kernel Check if FILE is ARM EFI file Check if FILE is BIOS bootsector Check if FILE is IA64 EFI file Check if FILE is hiberfil.sys in hibernated state Check if FILE is i386 EFI file Check if FILE is of specified type. Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear bit at BYTE:BIT in CMOS. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find a free BootNNNN slot Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Default server is ${net_default_server} Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not apply any reed-solomon codes when embedding core.img. This option is only available on x86 BIOS targets. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. EFI bootloader id isn't specified. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enable/disable RTS/CTS. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Evaluate arguments as GRUB commands Execute syslinux config in new context Execute syslinux config in new context taking only menu entries Execute syslinux config in same context Execute syslinux config in same context taking only menu entries Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FONTS FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File size: %s
 File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Generating grub configuration file ... Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s Graft point syntax (E.g. /boot/grub/grub.cfg=./grub.cfg) is accepted HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS INSTALL_DEVICE must be system device filename.
%s copies GRUB images into %s.  On some platforms, it may also install GRUB into the boot sector. If FILENAME is `-', the default value %s is used.

There is no `delete' command; if you want to delete the whole environment
block, use `rm %s'. Import ZFS wrapping key stored in FILE. Incorrect VDEV Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Installing for %s platform.
 Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s LOCALES Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List coreboot tables. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load DTB file. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load Truecrypt ISO. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load module. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... M MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MENU_ENTRY is a number, a menu item title or a menu item identifier. Please note that menu items in
submenus or sub-submenus require specifying the submenu components and then the
menu item component. The titles should be separated using the greater-than
character (>) with no extra spaces. Depending on your shell some characters including > may need escaping. More information about this is available
in the GRUB Manual in the section about the 'default' command.  MODULE MODULES Mac-style bless on HFS or HFS+ Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NOT RUNNING:  NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Netboot directory for %s created. Configure your DHCP server to point to %s
 Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OPTIONS FILE OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] PUBKEY_ID Paletted  Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Prepares GRUB network boot images at net_directory/subdir assuming net_directory being TFTP root. Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot into firmware setup menu. Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Render Apple .disk_label. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING STRING ... Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Script `%s' contains no commands and will do nothing
 Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set bit at BYTE:BIT in CMOS. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting GRUB_TIMEOUT to a non-zero value when GRUB_HIDDEN_TIMEOUT is set is no longer supported. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show CBMEM console content. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show raw dump of the CMOS contents. Show raw dump of the PCI configuration space. Show the contents of a file. Show the current mappings. Show the list of trusted keys. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Skip signature-checking of the environment file. Skip signature-checking of the public key file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Storage information for `%s' does not include type Storage information for `%s' indicates neither a plain partition nor a plain disk Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Switch to native disk drivers. If no modules are specified default set (pata,ahci,usbms,ohci,uhci,ehci) is used Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 T TARGET THEMES Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This VDEV is a RAIDZ%llu
 This VDEV is a mirror This entry can be booted by any user. This requires setting GRUB_DEFAULT=saved in %s/default/grub.\n Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Transform syslinux config into GRUB one. Translate SET1 characters to SET2 in STRING. Translate to lower case. Translate to upper case. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown platform `%s-%s' Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized compression `%s' Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME VDEV element number %d isn't correct
 VDEV element number %d:
 VDEV with %d children
 Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. You've found a bug Your embedding area is unusually small.  core.img won't fit in it. Your xorriso doesn't support `--grub2-boot-info'. Some features are disabled. Please use xorriso 1.2.9 or later. Your xorriso doesn't support `--grub2-boot-info'. Your core image is too big. Boot as disk is disabled. Please use xorriso 1.2.9 or later. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] [-s|--skip-sig] [variable_name_to_whitelist] [...] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [-s|--skip-sig] FILE SIGNATURE_FILE [PUBKEY_FILE] [-s|--skip-sig] PUBKEY_FILE [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [DIR] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTIONS] [SET1] [SET2] [STRING] [OPTION] SOURCE... [OPTION] [INSTALL_DEVICE] [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `%s' is not a local disk `cryptomount' command fails: %s `loopback' command fails: %s `nvsetenv' failed. 
You will have to set `boot-device' variable manually.  At the IEEE1275 prompt, type:
  %s
 `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found assume input is a pxelinux configuration file. assume input is a syslinux configuration file. assume input is an isolinux configuration file. attempt to install to encrypted disk without cryptodisk enabled. Set `%s' in file `%s'. attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format bless for ppc-based macs bless for x86-based macs blocklist FILE blocklists are incomplete blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't compress `%s' to `%s' can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s can't set %dx%d font size: Freetype error %d: %s cannot compress the kernel image cannot copy `%s' to `%s': %s cannot delete `%s': %s cannot find EFI directory cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot find locale `%s' cannot get translator command line for path `%s': %s cannot make temporary directory: %s cannot make temporary file: %s cannot open OS file `%s': %s cannot open `%s': %s cannot open configuration file `%s': %s cannot open directory `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu compress GRUB files [optional] connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find IEEE1275 device path for %s.
You will have to set `boot-device' variable manually couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d current directory of the syslinux [default is parent directory of input file]. current directory of the syslinux as it will be seen on runtime  [default is parent directory of input file]. cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit device tree must be supplied (see `devicetree' command) disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. disk read fails at offset %lld, length %lld diskboot.img size must be %u bytes do not install bootsector do not probe for filesystems in DEVICE domain name component is too long don't update LED state don't update the `boot-device'/`Boot*' NVRAM variables. This option is only available on EFI and IEEE1275 targets. done embed FILE as a memdisk image
Implies `-p (memdisk)/boot/grub' and overrides any prefix supplied previously, but the prefix itself can be overridden by later options embed FILE as an early config embed FILE as public key for signature checking embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enable ARCS (big-endian mips machines, mostly SGI) boot. Disables HFS+, APM, sparc64 and boot as disk image for i386-pc enable sparc boot. Disables HFS+, APM, ARCS and boot as disk image for i386-pc enabling %s support ... enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to copy Grub to the PReP partition failed to get canonical path of `%s' failed to read the sectors of the core image failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists filesystem on %s is neither HFS nor HFS+ firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification initrd already loaded install FONTS [default=%s] install GRUB for TARGET platform [default=%s] install GRUB images under the directory DIR/%s instead of the %s directory install THEMES [default=%s] install device isn't specified install even if problems are detected install only LOCALES [default=all] install only MODULES and their dependencies [default=all] invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid argument invalid block size invalid color specification `%s' invalid device tree invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid modinfo file `%s' invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' invalid zImage ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no EFI routines are available for your platform no EFI routines are available when running in BIOS mode no IEEE1275 routines are available for your platform no SGI routines are available for your platform no `/' in canonical filename no command is specified no compression is available for your platform no decryption key available no hints available for your platform. Expect reduced performance no network card found no random number generator is available for your OS no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected only ipv4 only ipv6 other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found pre-load specified modules MODULES prefer ipv4 prefer ipv6 premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory as it will be seen on runtime [default=/]. root directory of TFTP server root directory of the syslinux disk [default=/]. route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the label to render set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the ID of bootloader. This option is only available on EFI and Macs. the PReP partition is not empty. If you are sure you want to use it, run dd to clear it: `%s' the argument `%s' requires an integer the chosen partition is not a PReP partition the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive %s is defined multiple times in the device map %s the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected EFI error unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported platform %s
 unsupported serial port flow control unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for label use COLOR for label background use COLOR for text use DIR as the EFI System Partition root. use DIR for PPC MAC install. use FILE as font (PF2). use FILE as font for label use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] use themes under DIR [default=%s] use translations under DIR [default=%s] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists write output to FILE [default=stdout]. wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub 2.02~beta1
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-12-21 01:46+0100
Last-Translator: Automatically generated
Language-Team: none
Language: en@cyrillic
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=(n != 1);
               тотал меморѝ: %d КиБ
     Но преферред моде аваилабле
     Преферред моде: %uѯ%u
   ЕДИД цхецксум инвалид   ЕДИД версион: %u.%u
   Фаилед то инитиализе видео адаптер   Но инфо аваилабле   ВБЕ инфо:   версион: %d.%d  ОЕМ софтўаре рев: %d.%d
   ор:   (лефтмост)  (медиал)  (ригхтмост)  - Партитион старт ат %llu%sКиБ  - Сецтор сизе %uБ  - Тотал сизе %llu%sКиБ  - Тотал сизе ункноўн  [ОПТИОН...] %.*s: АРГП_ХЕЛП_ФМТ параметер муст бе поситиве %.*s: АРГП_ХЕЛП_ФМТ параметер реќуирес а валуе %.*s: Ункноўн АРГП_ХЕЛП_ФМТ параметер %dс %dс ремаининг. %s аппеарс то цонтаин а %s филесѝстем ўхицх исн'т кноўн то ресерве спаце фор ДОС-стѝле боот.  Инсталлинг ГРУБ тхере цоулд ресулт ин ФИЛЕСЍСТЕМ ДЕСТРУЦТИОН иф валуабле дата ис оверўриттен бѝ груб-сетуп (--скип-фс-пробе дисаблес тхис цхецк, усе ат ѝоур оўн риск) %s аппеарс то цонтаин а %s партитион мап анд ЛДМ ўхицх исн'т кноўн то бе а сафе цомбинатион.  Инсталлинг ГРУБ тхере цоулд ресулт ин ФИЛЕСЍСТЕМ ДЕСТРУЦТИОН иф валуабле дата ис оверўриттен бѝ груб-сетуп (--скип-фс-пробе дисаблес тхис цхецк, усе ат ѝоур оўн риск) %s аппеарс то цонтаин а %s партитион мап ўхицх исн'т кноўн то ресерве спаце фор ДОС-стѝле боот.  Инсталлинг ГРУБ тхере цоулд ресулт ин ФИЛЕСЍСТЕМ ДЕСТРУЦТИОН иф валуабле дата ис оверўриттен бѝ груб-сетуп (--скип-фс-пробе дисаблес тхис цхецк, усе ат ѝоур оўн риск) %s доес нот суппорт УУИДс %s доесн'т еѯист. Плеасе специфѝ --таргет ор --дирецторѝ %s доесн'т лоок лике ан ЕФИ партитион.
 %s генератес а кеѝбоард лаѝоут фор ГРУБ усинг цкбцомп\н %s ис депрецатед. Усе сет гфѯпаѝлоад=%s бефоре линуѯ цомманд инстеад.
 %s ис депрецатед. ВГА моде %d исн'т рецогнизед. Усе сет гфѯпаѝлоад=ЎИДТХѯХЕИГХТ[ѯДЕПТХ] бефоре линуѯ цомманд инстеад.
 %s ис нот ѝет суппортед бѝ груб-мкцонфиг.\н %s, ўитх Хурд %s %s, ўитх Хурд %s (рецоверѝ моде) %s, ўитх Линуѯ %s %s, ўитх Линуѯ %s (рецоверѝ моде) %s, ўитх Ѯен %s анд Линуѯ %s %s, ўитх Ѯен %s анд Линуѯ %s (рецоверѝ моде) %s, ўитх Ѯен хѝпервисор %s, ўитх кФрееБСД %s %s, ўитх кФрееБСД %s (рецоверѝ моде) %s, ўитх кернел %s (виа %s) %s, ўитх кернел %s (виа %s, рецоверѝ моде) %s: ХАСХ МИСМАТЦХ
 %s: ОК
 %s: РЕАД ЕРРОР
 %s: Тоо манѝ аргументс
 %s: Ѝоу муст рун тхис ас роот\н %s: еррор: %s: инфо: %s: инвалид оптион -- '%c'
 %s: нот фоунд %s: оптион '%c%s' доесн'т аллоў ан аргумент
 %s: оптион '%s' ис амбигуоус; поссибилитиес: %s: оптион '--%s' доесн'т аллоў ан аргумент
 %s: оптион '--%s' реќуирес ан аргумент
 %s: оптион '-Ў %s' доесн'т аллоў ан аргумент
 %s: оптион '-Ў %s' ис амбигуоус
 %s: оптион '-Ў %s' реќуирес ан аргумент
 %s: оптион реќуирес ан аргумент -- '%c'
 %s: оптион реќуирес ан аргумент -- `%s'\н %s: унрецогнизед оптион '%c%s'
 %s: унрецогнизед оптион '--%s'
 %s: ўарнинг: (32-бит) (64-бит) (ПРОГРАМ ЕРРОР) Но версион кноўн!? (ПРОГРАМ ЕРРОР) Оптион схоулд хаве беен рецогнизед!? (он %s) - Лабел `%s' - Ласт модифицатион тиме %d-%02d-%02d %02d:%02d:%02d %s --МОРЕ-- --ппц ПАТХ|--ѯ86 ФИЛЕ -х ХАСХ [-ц ФИЛЕ [-п ПРЕФИѮ]] [ФИЛЕ1 [ФИЛЕ2 ...]] -л | -р | [-с] грубдев осдиск. .5 16-бит протецтед интерфаце суппортед
 16-бит протецтед интерфаце унсуппортед
 32-бит протецтед интерфаце суппортед
 32-бит протецтед интерфаце унсуппортед
 =ВАЛ > АЦПИ нон-волатиле стораге РАМ АЦПИ рецлаимабле РАМ АЦПИ схутдоўн фаилед АДДР АДДР ВАЛУЕ [МАСК] АДДР [СИЗЕ] АДДР1,МАСК1[,АДДР2,МАСК2[,...]] АДДРЕСС ДНССЕРВЕР АПМ дисаблед
 АПМ дисенгагед
 АПМ енаблед
 АПМ енгагед
 АРГП_ХЕЛП_ФМТ: %s валуе ис лесс тхан ор еќуал то %s АСЦИИ Аццепт ДОС-стѝле ЦР/НЛ лине ендингс. Ацтиве инпут терминалс: Ацтиве оутпут терминалс: Адаптер `%s':
 Адд а ДНС сервер Адд а нетўорк аддресс. Адд а нетўорк роуте. Адванцед оптионс фор %s Адванцед оптионс фор %s (ўитх Ѯен хѝпервисор) Аллоў то интеррупт ўитх ЕСЦ. Аск фор филе наме то ребоот фром. Ассуме инпут ис хеѯ. Ассуме инпут ис пасспхрасе. Ассуме инпут ис раў. Аттемптинг то децрѝпт мастер кеѝ... Аттемптинг то инсталл ГРУБ то а диск ўитх мултипле партитион лабелс ор ботх партитион лабел анд филесѝстем.  Тхис ис нот суппортед ѝет. Аттемптинг то инсталл ГРУБ то а диск ўитх мултипле партитион лабелс.  Тхис ис нот суппортед ѝет. Аттемптинг то инсталл ГРУБ то а партитионлесс диск ор то а партитион.  Тхис ис а БАД идеа. Аваилабле инпут терминалс: Аваилабле оутпут терминалс: Б Б/с БИОС_ДУМП [ИНТ10_ДУМП] БЛОЦК БЍТЕ:БИТ Бацкгроунд имаге моде. Басе дирецторѝ фор хасх лист. Блесс ДИР оф ХФС ор ХФС+ партитион фор ППЦ мацс. Блесс ФИЛЕ оф ХФС ор ХФС+ партитион фор интел мацс. Боот БИОС-басед сѝстем. Боот ан оператинг сѝстем. Боот инто сингле моде. Боот ўитх дебуг мессагес. Боот ўитх вербосе мессагес. Боотинг `%s' Боотинг а цомманд лист Боотинг ин блинд моде Боотпатх: %s
 Боотпатх: унаваилабле
 Бреак инто ГДБ ЦГА  ЦОЛОР ЦОММАНД [АРГС] ЦПУ Идле доесн'т слоў доўн процессор
 ЦПУ Идле слоўс доўн процессор
 ЦС5536 ат %d:%d.%d
 Цан'т цреате филе: %s Цан'т енабле РОМ ареа. Цханге цонфигуред девицес. Цханге партитион тѝпе Цхецк Алт кеѝ. Цхецк Цонтрол кеѝ. Цхецк Схифт кеѝ. Цхецк фор ЦПУ феатурес. Цхецк хасхес оф филес ўитх хасх лист ФИЛЕ. Цхецк иф ЦПУ суппортс 64-бит (лонг) моде (дефаулт). Цхецк иф ЦПУ суппортс Пхѝсицал Аддресс Еѯтенсион. Цхецк иф ФИЛЕ цан бе усед ас ѯ86 мултибоот кернел Цхецк иф ФИЛЕ цан бе усед ас ѯ86 мултибоот2 кернел Цхецк иф ФИЛЕ ис АРМ ЕФИ филе Цхецк иф ФИЛЕ ис БИОС боотсецтор Цхецк иф ФИЛЕ ис ИА64 ЕФИ филе Цхецк иф ФИЛЕ ис хиберфил.сѝс ин хибернатед стате Цхецк иф ФИЛЕ ис и386 ЕФИ филе Цхецк иф ФИЛЕ ис оф специфиед тѝпе. Цхецк кеѝ модифиер статус. Цхецк ўхетхер усер ис ин УСЕРЛИСТ. Цхецкс ГРУБ сцрипт цонфигуратион филе фор сѝнтаѯ еррорс. Цлеар бит ат БЍТЕ:БИТ ин ЦМОС. Цлеар тхе сцреен. Цлеаред ацтиве флаг он %d. 
 Цоммандс: Цомпаре ФИЛЕ ўитх лоцал филе ЛОЦАЛ. Цомпаре филе `%s' ўитх `%s':
 Цомпаре тўо филес. Цомпуте ѮНУ УУИД оф тхе девице. Цомпуте ор цхецк хасх цхецксум. Цонфигуре сериал порт. Цонтинуе лоопс Цонверт цоммон фонт филе форматс инто ПФ2 Цопѝ ФИЛЕ то лоцал филе ЛОЦАЛ. Цопѝ ФИЛЕ то стандард оутпут. Цоулд нот лоцате ФПСЎА дривер Цоулдн'т финд а фрее БоотНННН слот Цоулдн'т финд пхѝсицал волуме `%s'. Соме модулес маѝ бе миссинг фром цоре имаге. Цоулдн'т лоад сха256 Цоулдн'т лоад сха512 Цреате БИОС-лике струцтурес фор бацкўард цомпатибилитѝ ўитх еѯистинг ОС. Цреате а бланк енвиронмент блоцк филе. Цуррент терминфо тѝпес: ДЕВИЦЕ ДЕВИЦЕ [ПАРТИТИОН[+/-[ТЍПЕ]]] ... ДЕВИЦЕ муст бе ан ОС девице (е.г. /дев/сда). ДЕВИЦЕ_НАМЕ ДИР ДИРЕЦТОРЍ [ОСБундлеРеќуиред] ДНССЕРВЕР Дебуг тоол фор филесѝстем дривер. Децларе меморѝ регионс ас фаултѝ (бадрам). Децомпрессор ис тоо биг Дефаулт сервер ис ${нет_дефаулт_сервер} Дефине а мену ентрѝ. Дефине а субмену. Делете а нетўорк аддресс. Делете а нетўорк роуте. Делете тхе специфиед лоопбацк дриве. Делете вариаблес. Детермине дривер. Детермине филесѝстем УУИД. Детермине филесѝстем лабел. Детермине филесѝстем тѝпе. Детермине партитион мап тѝпе. Девице %s: Девид: %s
 Девид: унаваилабле Дирецт цолор, маск: %d/%d/%d/%d  пос: %d/%d/%d/%d Дисабле АЦПИ. Дисабле СМП. Дисабле алл боот оутпут. Дисабле/енабле СМАРТ (0/1). Дисцардинг импроперлѝ нестед партитион (%s,%s,%s%d) Диск цацхе статистицс: хитс = %lu (%lu.%02lu%%), миссес = %lu
 Диск цоунт муст прецеде дискс лист.
 Дисплаѝ ФПСЎА версион. Дисплаѝ СМАРТ хеалтх статус. Дисплаѝ а лине оф теѯт. Дисплаѝ блоцклист оф ФИЛЕ. Дисплаѝ оутпут он алл цонсолес. Дисплаѝ поўер моде. Дисплаѝ тхе усаге оф тхис цомманд анд еѯит. Дисплаѝ тхис хелп анд еѯит. Дисплаѝ/сет цуррент датетиме. До нот апплѝ анѝ реед-соломон цодес ўхен ембеддинг цоре.имг. Тхис оптион ис онлѝ аваилабле он ѯ86 БИОС таргетс. До нот оутпут тхе траилинг неўлине. До нот принт мессагес. До нот пробе анѝ флоппѝ дриве. До нот усе АПМ то халт тхе цомпутер. До нотхинг, суццессфуллѝ. До нотхинг, унсуццессфуллѝ. Дон'т дисплаѝ боот диагностиц мессагес. Дон'т лоад хост таблес специфиед бѝ цомма-сепаратед лист. Дон'т ребоот, йуст халт. Дон'т стоп афтер фирст еррор. Дон'т упдате ЕБДА. Маѝ фиѯ фаилурес ор хангс он соме БИОСес бут макес ит инеффецтиве ўитх ОС нот рецеивинг РСДП фром ГРУБ. ЕФИ боотлоадер ид исн'т специфиед. ЕНВВАР ЕНВВАР [ЕНВВАР] ... ЕРРОР: но валид кеѝбоард лаѝоут фоунд. Цхецк тхе инпут.
 ЕСЦ ат анѝ тиме еѯитс. ЕѮПРЕССИОН ЕѮПРЕССИОН ] Елапсед тиме: %d.%03d с 
 Елапсед тиме: %d.%03d сецондс 
 Ембеддинг ис нот поссибле.  ГРУБ цан онлѝ бе инсталлед ин тхис сетуп бѝ усинг блоцклистс.  Хоўевер, блоцклистс аре УНРЕЛИАБЛЕ анд тхеир усе ис дисцоурагед. Емулате а кеѝстроке сеќуенце Енабле интерпретатион оф бацксласх есцапес. Енабле/дисабле РТС/ЦТС. Ентер ЗФС пассўорд:  Ентер ин КДБ он боот. Ентер нормал моде. Ентер пасспхрасе фор %s%s%s (%s):  Ентер пассўорд:  Ентер усернаме:  Еррор ин парсинг цомманд лине аргументс
 Евалуате ан еѯпрессион. Евалуате аргументс ас ГРУБ цоммандс Еѯецуте сѝслинуѯ цонфиг ин неў цонтеѯт Еѯецуте сѝслинуѯ цонфиг ин неў цонтеѯт такинг онлѝ мену ентриес Еѯецуте сѝслинуѯ цонфиг ин саме цонтеѯт Еѯецуте сѝслинуѯ цонфиг ин саме цонтеѯт такинг онлѝ мену ентриес Еѯит фаилед Еѯит фром ГРУБ. Еѯит фром лоопс Еѯит фром нормал моде. Еѯпорт вариаблес. Еѯпорт версион 1 таблес то тхе ОС. Еѯпорт версион 2 анд версион 3 таблес то тхе ОС. ФИЛЕ ФИЛЕ [АРГ ...] ФИЛЕ [АРГС...] ФИЛЕ | ТЕМПО [ПИТЦХ1 ДУРАТИОН1] [ПИТЦХ2 ДУРАТИОН2] ...  ФИЛЕ... ФИЛЕ1 ФИЛЕ2 ФИЛЕНАМЕ ЦОММАНД ФИЛЕСЍСТЕМ [ВАРИАБЛЕ] ФИЛЕ|промпт ФОНТС ФОРМАТ ФПСЎА протоцол ўасн'т абле то финд тхе интерфаце ФПСЎА ревисион: %x
 ФРОМ-ТО[,ФРОМ-ТО] ФРОМ[К|М|Г] ТО[К|М|Г] ФТ_Инит_ФрееТѝпе фаилс Фаилед то боот ботх дефаулт анд фаллбацк ентриес.
 Фаилед то цреате `девице-маппер' трее Фаллинг бацк то `%s' Филе сизе: %s
 Филе сѝстем `%s' доесн'т суппорт ембеддинг Филес диффер ат тхе оффсет %llu: 0ѯ%x [%s], 0ѯ%x [%s]
 Филес диффер ин сизе: %llu [%s], %llu [%s]
 Филесѝстем цаннот бе аццессед Филесѝстем тѝпе %s Филл хѝбрид МБР оф ГПТ дриве ДЕВИЦЕ. Специфиед партитионс ўилл бе а парт оф хѝбрид МБР. Уп то 3 партитионс аре аллоўед. ТЍПЕ ис ан МБР тѝпе. + меанс тхат партитион ис ацтиве. Онлѝ оне партитион цан бе ацтиве. Финализе лоадинг оф ЕФИ емулатор. Фирст трѝ тхе девице ХИНТ иф цуррентлѝ руннинг он АРЦ. Иф ХИНТ ендс ин цомма, алсо трѝ субпартитионс Фирст трѝ тхе девице ХИНТ иф цуррентлѝ руннинг он БИОС. Иф ХИНТ ендс ин цомма, алсо трѝ субпартитионс Фирст трѝ тхе девице ХИНТ иф цуррентлѝ руннинг он ЕФИ. Иф ХИНТ ендс ин цомма, алсо трѝ субпартитионс Фирст трѝ тхе девице ХИНТ иф цуррентлѝ руннинг он ИЕЕЕ1275. Иф ХИНТ ендс ин цомма, алсо трѝ субпартитионс Фирст трѝ тхе девице ХИНТ иф дирецт хардўаре аццесс ис суппортед. Иф ХИНТ ендс ин цомма, алсо трѝ субпартитионс Фирст трѝ тхе девице ХИНТ. Иф ХИНТ ендс ин цомма, алсо трѝ субпартитионс Фиѯ видео проблем. Фоунд %s он %s (%s)\н Фоунд %s он %s\н Фоунд ГНУ Мацх: %s Фоунд Хурд модуле: %s Фоунд НетБСД кернел: %s\н Фоунд бацкгроунд: %s\н Фоунд инитрд имаге: %s\н Фоунд кернел модуле дирецторѝ: %s\н Фоунд кернел оф ФрееБСД: %s\н Фоунд линуѯ имаге: %s\н Фоунд тхеме: %s\н Фреетѝпе Еррор %d лоадинг глѝпх 0ѯ%x фор У+0ѯ%x%s Фреезе АТА сецуритѝ сеттингс унтил ресет. Фридаѝ Г ГНУ ГРУБ  версион %s ГРУБ Боот Мену ГРУБ доесн'т кноў хоў то халт тхис мацхине ѝет! ГРУБ емулатор. ГРУБДЕВИЦЕ=ПЛАН9ДЕВИЦЕ Гарбаге ин АРГП_ХЕЛП_ФМТ: %s Генерате ГРУБ кеѝбоард лаѝоут фром Линуѯ цонсоле оне. Генерате ПБКДФ2 пассўорд хасх. Генерате а груб цонфиг филе Генерате а стандалоне имаге (цонтаининг алл модулес) ин тхе селецтед формат Генератинг груб цонфигуратион филе ... Гет црц32 цхецксум оф ФИЛЕ. Гет диск цацхе инфо. Гет/сет АТА диск параметерс. ГиБ ГиБ/с Графт поинт сѝнтаѯ (Е.г. /боот/груб/груб.цфг=./груб.цфг) ис аццептед ХАСХ ХИНТ Халт тхе сѝстем, иф поссибле усинг АПМ. Халтс тхе цомпутер.  Тхис цомманд доес нот ўорк он алл фирмўаре имплементатионс. Хандле Н бѝтес ин оутпут филе. Хелло Ўорлд Херцулес  ИД ИМАГЕ1 [ИМАГЕ2 ...] МОУНТПОИНТ ИМАГЕ_ПАТХ ЦОММАНДС ИНСТАЛЛ_ДЕВИЦЕ муст бе сѝстем девице филенаме.
%s цопиес ГРУБ имагес инто %s.  Он соме платформс, ит маѝ алсо инсталл ГРУБ инто тхе боот сецтор. Иф ФИЛЕНАМЕ ис `-', тхе дефаулт валуе %s ис усед.

Тхере ис но `делете' цомманд; иф ѝоу ўант то делете тхе ўхоле енвиронмент
блоцк, усе `рм %s'. Импорт ЗФС ўраппинг кеѝ сторед ин ФИЛЕ. Инцоррецт ВДЕВ Инцоррецт виртуал девице: но тѝпе аваилабле Инсерт а модуле. Инсталл ГРУБ он ѝоур дриве. Инсталлатион финисхед. Но еррор репортед. Инсталлинг фор %s платформ.
 Инвалид бацк референце Инвалид цхарацтер цласс наме Инвалид цоллатион цхарацтер Инвалид цомманд %s.
 Инвалид цонтент оф \{\} Инвалид девице `%s'.
 Инвалид диск цоунт.
 Инвалид прецединг регулар еѯпрессион Инвалид ранге енд Инвалид регулар еѯпрессион Инвоке усер цонфигуратион роутинг. К КЕРНЕЛ АРГС КЕЍБОАРД_КЕЍ Кеѝбоард кеѝ то ќуицклѝ боот тхис ентрѝ. КиБ КиБ/с ЛОЦАЛЕС Леаф виртуал девице (филе ор диск) Легацѝ `аск' параметер но лонгер суппортед. Легенд: маск/поситион=ред/греен/блуе/ресервед Ленгтх оф генератед хасх Ленгтх оф салт Лист ДНС серверс Лист ПЦИ девицес. Лист алл филес. Лист аваилабле видео модес. Иф ресолутион ис гивен схоў онлѝ модес матцхинг ит. Лист цоребоот таблес. Лист девицес анд филес. Лист девицес ор филес. Лист девицес. Лист филес ин ПАТХ. Лист меморѝ мап провидед бѝ фирмўаре. Лист оф суппортед видео модес: Лист оф усерс аллоўед то боот тхис ентрѝ. Лист ор селецт ан инпут терминал. Лист ор селецт ан оутпут терминал. Лист тхе цуррент вариаблес. Лист тхе лоадед фонтс. Лист вариаблес фром енвиронмент блоцк филе. Лоад 64-бит ѮНУ имаге. Лоад БИОС думп. Лоад ДТБ филе. Лоад ФрееБСД енв. Лоад ФрееБСД кернел модуле (ЕЛФ). Лоад ФрееБСД кернел модуле. Лоад ФрееДОС кернел.сѝс. Лоад Линуѯ. Лоад НТЛДР ор БоотМГР. Лоад НетБСД кернел модуле (ЕЛФ). Лоад НетБСД кернел модуле. Лоад План9 кернел. Лоад Труецрѝпт ИСО. Лоад ѮНУ еѯтенсион дирецторѝ. Лоад ѮНУ еѯтенсион пацкаге. Лоад ѮНУ еѯтенсион. Лоад ѮНУ имаге. Лоад ѮНУ рамдиск. Ит ўилл бе аваилабле ин ОС ас мд0. Лоад `девице-пропертиес' думп. Лоад а ПѮЕ имаге. Лоад а кеѝбоард лаѝоут. Лоад а мултибоот 2 кернел. Лоад а мултибоот 2 модуле. Лоад а мултибоот кернел. Лоад а мултибоот модуле. Лоад а спласх имаге фор ѮНУ. Лоад ан имаге оф хибернатед ѮНУ. Лоад анд инитиализе ЕФИ емулатор. Лоад анотхер боот лоадер. Лоад анотхер цонфиг филе бут таке онлѝ мену ентриес. Лоад анотхер цонфиг филе ўитхоут цхангинг цонтеѯт бут таке онлѝ мену ентриес. Лоад анотхер цонфиг филе ўитхоут цхангинг цонтеѯт. Лоад анотхер цонфиг филе. Лоад анотхер цоребоот паѝлоад Лоад бацкгроунд имаге фор ацтиве терминал. Лоад хост АЦПИ таблес анд таблес специфиед бѝ аргументс. Лоад инитрд. Лоад кОпенБСД рамдиск. Лоад кернел оф ФрееБСД. Лоад кернел оф НетБСД. Лоад кернел оф ОпенБСД. Лоад модуле. Лоад онлѝ таблес специфиед бѝ цомма-сепаратед лист. Лоад тхе саме филе ин мултипле ўаѝс. Лоад вариаблес фром енвиронмент блоцк филе. Лоад зфс црѝпто кеѝ. Лоадед фонтс: Лоадинг ГНУ Мацх ... Лоадинг Линуѯ %s ... Лоадинг Ѯен %s ... Лоадинг инитиал рамдиск ... Лоадинг кернел оф ФрееБСД %s ... Лоадинг кернел оф Иллумос ... Лоадинг тхе Хурд ... М МАЦ верифицатион фаилед МЕНУ_ЕНТРЍ ис а нумбер, а мену итем титле ор а мену итем идентифиер. МЕНУ_ЕНТРЍ ис а нумбер, а мену итем титле ор а мену итем идентифиер. Плеасе ноте тхат мену итемс ин
субменус ор суб-субменус реќуире специфѝинг тхе субмену цомпонентс анд тхен тхе
мену итем цомпонент. Тхе титлес схоулд бе сепаратед усинг тхе греатер-тхан
цхарацтер (>) ўитх но еѯтра спацес. Депендинг он ѝоур схелл соме цхарацтерс инцлудинг > маѝ неед есцапинг. Море информатион абоут тхис ис аваилабле
ин тхе ГРУБ Мануал ин тхе сецтион абоут тхе 'дефаулт' цомманд.  МОДУЛЕ МОДУЛЕС Мац-стѝле блесс он ХФС ор ХФС+ Маке ГРУБ ЦД-РОМ, диск, пендриве анд флоппѝ боотабле имаге. Маке ГРУБ кеѝбоард лаѝоут филе. Маке а боотабле имаге оф ГРУБ. Маке а виртуал дриве фром а филе. Маке партитион ацтиве Манаге тхе БИОС дриве маппингс. Мандаторѝ ор оптионал аргументс то лонг оптионс аре алсо мандаторѝ ор оптионал фор анѝ цорреспондинг схорт оптионс. Манипулате ПЦИ девицес. Меасуре тиме усед бѝ ЦОММАНД Меморѝ еѯхаустед Меморѝ тѝпе: ДДР2. Меморѝ тѝпе: Ункноўн. Мену ентрѝ идентифиер. Мену ентрѝ нот специфиед. Мену ентрѝ тѝпе. МиБ МиБ/с Минимал БАСХ-лике лине едитинг ис суппортед. Фор тхе фирст ўорд, ТАБ листс поссибле цомманд цомплетионс. Анѝўхере елсе ТАБ листс поссибле девице ор филе цомплетионс. %s Минимум Емацс-лике сцреен едитинг ис суппортед. ТАБ листс цомплетионс. Пресс Цтрл-ѯ ор Ф10 то боот, Цтрл-ц ор Ф2 фор а цомманд-лине ор ЕСЦ то дисцард едитс анд ретурн то тхе ГРУБ мену. Миссинг аргументс
 Миссинг инпут филе
 Мондаѝ Моноцхроме  Море тхан оне инсталл девице? Море тхан оне мену ентрѝ? Моунт а црѝпто девице. Моунт алл волумес ўитх `боот' флаг сет. Моунт алл. Моунт бѝ УУИД. Моунт црѝпто девицес. НАМЕ НАМЕ [ВАРИАБЛЕ] [ХИНТС] НОТ РУННИНГ:  НУМ НУМБЕР_ОФ_СЕЦОНДС Наме	Реф Цоунт	Депенденциес
 Нативе диск дриверс аре ин усе. Рефусинг то усе фирмўаре диск интерфаце. Нетбоот дирецторѝ фор %s цреатед. Цонфигуре ѝоур ДХЦП сервер то поинт то %s
 Нетўорк протоцолс: Неў МБР ис ўриттен то `%s'
 Но ЦС5536 фоунд Но ФПСЎА фоунд Но боот тиме статистицс ис аваилабле
 Но цомманд ис специфиед.
 Но девице ис специфиед.
 Но диск цацхе статистицс аваилабле
 Но дривес хаве беен ремаппед Но кноўн филесѝстем детецтед Но матцх Но патх ис специфиед.
 Но патх ор девице ис специфиед.
 Но превиоус регулар еѯпрессион Но виртуал девице трее аваилабле Нон-цхаин 4  Нот еноугх параметерс то цомманд.
 Ноў цоннецт тхе ремоте дебуггер, плеасе. Нумбер оф ПБКДФ2 итератионс ОПТИОНС ФИЛЕ ОС диск #нум ------> ГРУБ/БИОС девице ОС филе %s опен еррор: %s Оптионс: Оут оф ранге лоокуп: %d
 Оут оф ранге субститутион (%d, %d)
 Оверриде гуессед маппинг оф План9 девицес. П ПАРТИТИОН ЦОММАНДС ПАТХ ПБКДФ2 хасх оф ѝоур пассўорд ис %s
 ПОРТ ПОРТ ВАЛУЕ [МАСК] ПУБКЕЍ_ИД Палеттед  Парсе легацѝ цонфиг ин неў цонтеѯт Парсе легацѝ цонфиг ин неў цонтеѯт такинг онлѝ мену ентриес Парсе легацѝ цонфиг ин саме цонтеѯт Парсе легацѝ цонфиг ин саме цонтеѯт такинг онлѝ мену ентриес Парт но: %s.
 Партитион %d ис ацтиве ноў. 
 Партитион %s: Партитион стѝле `%s' доесн'т суппорт ембеддинг Патх: %s
 Патх: унаваилабле Перформ ЦОММАНДС он партитион.
Усе `парттоол ПАРТИТИОН хелп' фор тхе лист оф аваилабле цоммандс. Перформ а ДНС лоокуп Перформ ан ИПВ6 аутоцонфигуратион Перформ ботх дирецт анд реверсе маппингс. ПиБ ПиБ/с Планар  Плаѝ а туне. Плеасе дон'т усе олд титле `%s' фор ГРУБ_ДЕФАУЛТ, усе `%s' (фор версионс бефоре 2.00) ор `%s' (фор 2.00 ор латер) Поол ГУИД: %016llx
 Поол ГУИД: унаваилабле Поол наме: %s
 Поол наме: унаваилабле Поол стате: ацтиве Поол стате: дестроѝед Поол стате: еѯпортед Поол стате: левел 2 АРЦ девице Поол стате: потентиаллѝ ацтиве Поол стате: ресервед фор хот спаре Поол стате: унаваилабле Поол стате: унинитиализед Поссибле аргументс аре: Поссибле цоммандс аре: Поссибле девицес аре: Поссибле филес аре: Поссибле партитионс аре: Поссибле тхингс аре: Прематуре енд оф регулар еѯпрессион Препарес ГРУБ нетўорк боот имагес ат нет_дирецторѝ/субдир ассуминг нет_дирецторѝ беинг ТФТП роот. Пресс анѝ кеѝ то цонтинуе... Пресс анѝ кеѝ то лаунцх ѯну Пресс ентер то боот тхе селецтед ОС, `е' то едит тхе цоммандс бефоре боотинг ор `ц' фор а цомманд-лине. Пресс ентер то боот тхе селецтед ОС, `е' то едит тхе цоммандс бефоре боотинг ор `ц' фор а цомманд-лине. ЕСЦ то ретурн превиоус мену. Принт Меморѝ информатион. Принт ЗФС инфо абоут ДЕВИЦЕ. Принт ЗФС-БООТФСОБЙ ор сторе ит инто ВАРИАБЛЕ Принт а блоцк лист. Принт анд еѯецуте блоцк аргумент. Принт бацктраце. Принт дриве идентитѝ анд сеттингс. Принт сизес ин а хуман реадабле формат. Пробе девице информатион фор а гивен патх (ор девице, иф тхе -д оптион ис гивен). РАМ холдинг цоребоот таблес РАМ холдинг фирмўаре цоде РАМ слот нумбер %d
 РЕГЕѮП СТРИНГ РОМ имаге ис пресент. Реад 16-бит валуе фром АДДР. Реад 16-бит валуе фром ПОРТ. Реад 32-бит валуе фром АДДР. Реад 32-бит валуе фром ПОРТ. Реад 8-бит валуе фром АДДР. Реад 8-бит валуе фром ПОРТ. Реад онлѝ ЛЕНГТХ бѝтес. Ребоот фаилед Ребоот инто фирмўаре сетуп мену. Ребоот тхе цомпутер. Реентер пассўорд:  Регистер %x оф %x:%02x.%x ис %x
 Регулар еѯпрессион тоо биг Ремове а ДНС сервер Ремове а модуле. Ремове ан енвиронмент вариабле. Ремове анѝ меморѝ регионс ин специфиед ранге. Рендер Аппле .диск_лабел. Репорт бугс то %s.
 Репорт бугс то <буг-груб@гну.орг>. Реќуестед сериал терминал бут ГРУБ_СЕРИАЛ_ЦОММАНД ис унспецифиед. Дефаулт параметерс ўилл бе усед. Ресет алл маппингс то тхе дефаулт валуес. Ретриеве девице инфо. Ретурн фром а фунцтион. Ретурн то ИЕЕЕ1275 промпт. Рун `гдб %s %d', анд сет АРГС.ХОЛД то зеро.
 Рун `го' то ресуме ГРУБ. СЕЦС СХОРТНАМЕ СХОРТНАМЕ ЦАРД АДДРЕСС [ХЎАДДРЕСС] СХОРТНАМЕ НЕТ [ИНТЕРФАЦЕ| гў ГАТЕЎАЍ] СИЗЕ СОУРЦЕ|-у УУИД|-а|-б СТРИНГ СТРИНГ ... Сатурдаѝ Саве реад валуе инто вариабле ВАРНАМЕ. Саве вариаблес то енвиронмент блоцк филе. Саѝ `Хелло Ўорлд'. Сцрипт `%s' цонтаинс но цоммандс анд ўилл до нотхинг
 Сеарцх девицес бѝ УУИД. Иф ВАРИАБЛЕ ис специфиед, тхе фирст девице фоунд ис сет то а вариабле. Сеарцх девицес бѝ а филе. Сеарцх девицес бѝ а филесѝстем УУИД. Сеарцх девицес бѝ а филесѝстем лабел. Сеарцх девицес бѝ филе, филесѝстем лабел ор филесѝстем УУИД. Иф --сет ис специфиед, тхе фирст девице фоунд ис сет то а вариабле. Иф но вариабле наме ис специфиед, `роот' ис усед. Сеарцх девицес бѝ филе. Иф ВАРИАБЛЕ ис специфиед, тхе фирст девице фоунд ис сет то а вариабле. Сеарцх девицес бѝ лабел. Иф ВАРИАБЛЕ ис специфиед, тхе фирст девице фоунд ис сет то а вариабле. Сецтор %llu ис алреадѝ ин усе бѝ раид цонтроллер `%s'; авоидинг ит.  Плеасе аск тхе мануфацтурер нот то сторе дата ин МБР гап Сецтор %llu ис алреадѝ ин усе бѝ тхе програм `%s'; авоидинг ит.  Тхис софтўаре маѝ цаусе боот ор отхер проблемс ин футуре.  Плеасе аск итс аутхорс нот то сторе дата ин тхе боот трацк Селецт девице бѝ итс поситион он тхе бус. Селецт девице бѝ вендор анд девице ИДс. Сет Адванцед Поўер Манагемент
(1=лоў, ..., 254=хигх, 255=офф). Сет Аутоматиц Ацоустиц Манагемент
(0=офф, 128=ќуиет, ..., 254=фаст). Сет ОЕМИД оф РСДП, ѮСДТ анд РСДТ. Сет ОЕМТАБЛЕ ИД оф РСДП, ѮСДТ анд РСДТ. Сет ОЕМТАБЛЕ ревисион оф РСДП, ѮСДТ анд РСДТ. Сет `хидден' флаг ин партитион тѝпе Сет а вариабле то ретурн валуе. Сет а вариабле то тхе фирст девице фоунд. Сет ан енвиронмент вариабле. Сет бацкгроунд цолор фор ацтиве терминал. Сет бит ат БЍТЕ:БИТ ин ЦМОС. Сет цреатор фиелд оф РСДП, ѮСДТ анд РСДТ. Сет цреатор ревисион оф РСДП, ѮСДТ анд РСДТ. Сет дебуг енвиронмент вариабле. Сет дриве то слееп моде. Сет дриве то стандбѝ моде. Сет поситионал параметерс. Сет роот девице. Сет стандбѝ тимеоут
(0=офф, 1=5с, 2=10с, ..., 240=20м, 241=30м, ...). Сет терминфо тѝпе оф ТЕРМ  то ТЍПЕ.
 Сет тхе дефаулт боот мену ентрѝ фор ГРУБ, фор тхе неѯт боот онлѝ. Сет тхе дефаулт боот мену ентрѝ фор ГРУБ. Сет тхе сериал порт аддресс. Сет тхе сериал порт паритѝ. Сет тхе сериал порт спеед. Сет тхе сериал порт стоп битс. Сет тхе сериал порт ўорд ленгтх. Сет тхе сериал унит. Сет уп имагес то боот фром ДЕВИЦЕ.

Ѝоу схоулд нот нормаллѝ рун тхис програм дирецтлѝ.  Усе груб-инсталл инстеад. Сет усер пассўорд (ПБКДФ2).  Сет усер пассўорд (плаинтеѯт). Унрецоммендед анд инсецуре. Сет вариабле ўитх усер инпут. Сет вариаблес. Сеттинг ГРУБ_ТИМЕОУТ то а нон-зеро валуе ўхен ГРУБ_ХИДДЕН_ТИМЕОУТ ис сет ис но лонгер суппортед. Сеттинг партитион тѝпе то 0ѯ%x
 Схифт поситионал параметерс. Схоў АЦПИ информатион. Схоў АПМ информатион. Схоў ЦБМЕМ цонсоле цонтент. Схоў а хелп мессаге. Схоў а лонг лист ўитх море детаилед информатион. Схоў цонтентс оф ФИЛЕ ин хеѯ. Схоў лоадед модулес. Схоў меморѝ цонтентс. Схоў раў цонтентс оф АТА ИДЕНТИФЍ сецтор. Схоў раў цонтентс оф а филе ор меморѝ. Схоў раў думп оф тхе ЦМОС цонтентс. Схоў раў думп оф тхе ПЦИ цонфигуратион спаце. Схоў тхе цонтентс оф а филе. Схоў тхе цуррент маппингс. Схоў тхе лист оф трустед кеѝс. Схоў тхис мессаге. Схоў версион 1 таблес онлѝ. Схоў версион 2 анд версион 3 таблес онлѝ. Схутдоўн фаилед Симулате груб-легацѝ `инитрд' цомманд Симулате груб-легацѝ `кернел' цомманд Симулате груб-легацѝ `модуленоунзип' цомманд Симулате груб-легацѝ `пассўорд' цомманд Симулате груб-легацѝ `пассўорд' цомманд ин мену ентрѝ моде Скип Н бѝтес фром оутпут филе. Скип оффсет бѝтес фром тхе бегиннинг оф филе. Скип сигнатуре-цхецкинг оф тхе енвиронмент филе. Скип сигнатуре-цхецкинг оф тхе публиц кеѝ филе. Слот %d опенед
 Соме Хурд стуфф фоунд, бут нот еноугх то боот. Специфѝ филенаме. Специфѝ хасх то усе. Специфѝ оне ор море фонт филес то лоад. Специфѝ сизе фор еацх реад оператион Специфѝ тхе нумбер оф инпут филес. Спеед: %s 
 Старт ГДБ стуб он гивен порт Стоп ГДБ стуб Стораге информатион фор `%s' доес нот инцлуде тѝпе Стораге информатион фор `%s' индицатес неитхер а плаин партитион нор а плаин диск Сторе матцхед цомпонент НУМБЕР ин ВАРНАМЕ. Суццесс Сундаѝ Суппресс нормал оутпут (ўарнингс ремаин). Сўитцх то нативе диск дриверс. Иф но модулес аре специфиед дефаулт сет (пата,ахци,усбмс,охци,ухци,ехци) ис усед Сѝнтаѯ еррор ат лине %u
 Сѝнтаѯ еррорс аре детецтед ин генератед ГРУБ цонфиг филе.
Енсуре тхат тхере аре но еррорс ин /етц/дефаулт/груб
анд /етц/груб.д/* филес ор плеасе филе а буг репорт ўитх
%s филе аттацхед. Сѝстем манагемент бус цонтроллер И/О спаце ис ат 0ѯ%x
 Т ТАРГЕТ ТХЕМЕС Таргет формат нот специфиед (усе тхе -О оптион). Терминал хас специфиед геометрѝ. Терминал ис АСЦИИ-онлѝ [дефаулт]. Терминал ис логицал-ордеред УТФ-8. Терминал ис висуаллѝ-ордеред УТФ-8. Тест УСБ суппорт. Тест бит ат БЍТЕ:БИТ ин ЦМОС. Тест филе реад спеед. Тест иф РЕГЕѮП матцхес СТРИНГ. Тест видео субсѝстем ин моде ЎѯХ. Тест видео субсѝстем. Теѯт-онлѝ  Тхе филес аре идентицал.
 Тхе хигхлигхтед ентрѝ ўилл бе еѯецутед аутоматицаллѝ ин %dс. Тхис ВДЕВ ис а РАИДЗ%llu
 Тхис ВДЕВ ис а миррор Тхис ентрѝ цан бе боотед бѝ анѝ усер. Тхис реќуирес сеттинг ГРУБ_ДЕФАУЛТ=савед ин %s/дефаулт/груб.\н Тхурсдаѝ ТиБ ТиБ/с Тоол то едит енвиронмент блоцк. Тотал фласх сизе: %d Б.
 Траилинг бацксласх Трансформ 64-бит УУИД то формат суитабле фор ѮНУ. Иф -л ис гивен кееп ит лоўерцасе ас доне бѝ блкид. Трансформ а сѝстем филенаме инто ГРУБ оне. Трансформ сѝслинуѯ цонфиг инто ГРУБ оне. Транслате СЕТ1 цхарацтерс то СЕТ2 ин СТРИНГ. Транслате то лоўер цасе. Транслате то уппер цасе. Транслатес тхе стринг ўитх тхе цуррент сеттингс. Трѝ '%s --хелп' ор '%s --усаге' фор море информатион.
 Туесдаѝ УСЕР ПАССЎОРД УСЕР ПБКДФ2_ПАССЎОРД УСЕРНАМЕ[,УСЕРНАМЕ] УТФ-8 Унабле то цреате пипе: %s Унабле то детермине ѝоур платформ. Усе --таргет. Унабле то форк: %s Унабле то опен стреам фром %s: %s Унабле то ретриеве поол стате Унцомпресс дата. Унцомпресс филе бефоре цхецксумминг. Ункноўн аддресс тѝпе %d
 Ункноўн цомманд `%s'.
 Ункноўн цомпрессион формат %s Ункноўн енцодинг Ункноўн еѯтра аргумент `%s'. Ункноўн гсуб фонт феатуре 0ѯ%x (%s)
 Ункноўн кеѝбоард сцан цоде 0ѯ%02x
 Ункноўн кеѝбоард сцан идентифиер %s
 Ункноўн платформ `%s-%s' Ункноўн сѝстем еррор Ункноўн видео моде  Ункноўн виртуал девице тѝпе: %s
 Унлоад ЕФИ емулатор. Унматцхед ( ор \( Унматцхед ) ор \) Унматцхед [ ор [^ Унматцхед \{ Унрецогнизед цомпрессион `%s' Унрецогнизед оптион `%s'\н Унрецогнизед поол стате Унсуппортед аддресс тѝпе %d
 Унсуппортед цовераге специфицатион: %d
 Унсуппортед хў аддресс тѝпе %d
 Унсуппортед имаге формат Унсуппортед субститутион флаг: 0ѯ%x
 Унсуппортед субститутион специфицатион: %d
 Унсуппортед субститутион тѝпе: %d
 Усаге: Усаге: %s -о ОУТПУТ ЦКБМАП_АРГУМЕНТС...\н Усаге: %s ДЕВИЦЕ
 Усаге: %s [ИНФИЛЕ [ОУТФИЛЕ]]
 Усаге: %s [ОПТИОН] МЕНУ_ЕНТРЍ\н Усаге: %s [ОПТИОН]\н Усе ЦД-РОМ ас роот. Усе ГДБ ремоте дебуггер инстеад оф ДДБ. Усе СТРИНГ ас мену ентрѝ бодѝ. Усе цомпилед-ин роот девице. Усе сериал цонсоле. Усе тхе %C анд %C кеѝс то селецт ўхицх ентрѝ ис хигхлигхтед. ВАР ИНТЕРФАЦЕ НУМБЕР ДЕСЦРИПТИОН ВАРНАМЕ ВДЕВ елемент нумбер %d исн'т цоррецт
 ВДЕВ елемент нумбер %d:
 ВДЕВ ўитх %d цхилдрен
 Вербосе цоунтдоўн. Верифѝ детацхед сигнатуре. Версион %u.%u
32-бит ЦС = 0ѯ%x, лен = 0ѯ%x, оффсет = 0ѯ%x
16-бит ЦС = 0ѯ%x, лен = 0ѯ%x
ДС = 0ѯ%x, лен = 0ѯ%x
 Виртуал девице ис деградед Виртуал девице ис фаултед Виртуал девице ис оффлине Виртуал девице ис онлине Виртуал девице ис ремовед ЎАРНИНГ: но цонсоле ўилл бе аваилабле то ОС ЎАРНИНГ: но платформ-специфиц инсталл ўас перформед ЎАРНИНГ: унсуппортед фонт феатуре параметерс: %x
 ЎИДТХѯХЕИГХТ. Ўаит фор а специфиед нумбер оф сецондс. Ўаит фор кеѝпресс афтер еверѝ лине оф оутпут. Ўарнинг: Ўарнинг: инвалид бацкгроунд цолор `%s'
 Ўарнинг: инвалид форегроунд цолор `%s'
 Ўарнинг: сѝнтаѯ еррор (миссинг сласх) ин `%s'
 Ўеднесдаѝ Ўиндоўс НТ/2000/ѮП (лоадер) Ўиндоўс Виста/7 (лоадер) Ўрите 16-бит ВАЛУЕ то АДДР. Ўрите 16-бит ВАЛУЕ то ПОРТ. Ўрите 32-бит ВАЛУЕ то АДДР. Ўрите 32-бит ВАЛУЕ то ПОРТ. Ўрите 8-бит ВАЛУЕ то АДДР. Ўрите 8-бит ВАЛУЕ то ПОРТ. Ўриттен СПД бѝтес: %d Б.
 Ѯен хѝпервисор, версион %s ЍУВ  Ѝоу неед то специфѝ ат леаст оне цомманд.
 Ѝоу ўилл хаве то сет `СѝстемПартитион' анд `ОСЛоадер' мануаллѝ. Ѝоу'ве фоунд а буг Ѝоур ембеддинг ареа ис унусуаллѝ смалл.  цоре.имг ўон'т фит ин ит. Ѝоур ѯоррисо доесн'т суппорт `--груб2-боот-инфо'. Соме феатурес аре дисаблед. Плеасе усе ѯоррисо 1.2.9 ор латер. Ѝоур ѯоррисо доесн'т суппорт `--груб2-боот-инфо'. Ѝоур цоре имаге ис тоо биг. Боот ас диск ис дисаблед. Плеасе усе ѯоррисо 1.2.9 ор латер. [--аппенд|--ремове] [ТЕРМИНАЛ1] [ТЕРМИНАЛ2] ... [--форце|--бпб] ФИЛЕ [--мд5] ПАССЎД [ФИЛЕ] [--но-мем-оптион] [--тѝпе=ТЍПЕ] ФИЛЕ [АРГ ...] [-1|-2] [--еѯцлуде=ТАБЛЕ1,ТАБЛЕ2|--лоад-онлѝ=ТАБЛЕ1,ТАБЛЕ2] ФИЛЕ1 [ФИЛЕ2] [...] [-ц ФИЛЕ [-п ПРЕФИѮ]] [ФИЛЕ1 [ФИЛЕ2 ...]] [-д] ДЕВИЦЕНАМЕ ФИЛЕ. [-е|-н] СТРИНГ [-ф ФИЛЕ] [-ф ФИЛЕ] [-с|--скип-сиг] [вариабле_наме_то_ўхителист] [...] [-ф ФИЛЕ] вариабле_наме [...] [-ф|-л|-у|-с|-н] [--хинт ХИНТ [--хинт ХИНТ] ...] НАМЕ [-х|-п|-р] [ФИЛЕ] [-л] ГРУБУУИД [ВАРНАМЕ] [-л|-х|-а] [ФИЛЕ ...] [-м (стретцх|нормал)] ФИЛЕ [-с ПОСИТИОН] [-д ДЕВИЦЕ] [-с ПОСИТИОН] [-д ДЕВИЦЕ] [-в ВАР] РЕГИСТЕР[=ВАЛУЕ[:МАСК]] [-с СИЗЕ] ФИЛЕНАМЕ [-с|--скип-сиг] ФИЛЕ СИГНАТУРЕ_ФИЛЕ [ПУБКЕЍ_ФИЛЕ] [-с|--скип-сиг] ПУБКЕЍ_ФИЛЕ [АДДР|цомУНИТ][,СПЕЕД] [АРГ] [ЦАРД [ХЎАДДРЕСС]] [ЦАРД] [ДИР] [ЕНВВАР=ВАЛУЕ] [ЕНВВАР] [КЕЍСТРОКЕ1] [КЕЍСТРОКЕ2] ... [МОДУЛЕ1 МОДУЛЕ2 ...] [НУМБЕР:]ВАРНАМЕ [НУМ] [ОПТИОНС...] [ОПТИОНС] [ОПТИОНС] ДИСК [ОПТИОНС] ФИЛЕ_ОР_ДЕВИЦЕ [ОПТИОНС] ФОНТ_ФИЛЕС [ОПТИОНС] [СЕТ1] [СЕТ2] [СТРИНГ] [ОПТИОН] СОУРЦЕ... [ОПТИОН] [ИНСТАЛЛ_ДЕВИЦЕ] [ОПТИОН]... [МОДУЛЕС] [ОПТИОН]... [ПАТХ|ДЕВИЦЕ] [ОПТС] [ПАТХ] [ПАТТЕРН ...] [УСЕРЛИСТ] [ВАЛУЕ]... [ЎѯХ[ѯД]] [ЎѯХ] [[-а|-у|-в] [-г ЎѯХ] ТЕРМ [ТЍПЕ]] [[ѝеар-]монтх-даѝ] [хоур:минуте[:сецонд]] [бус]:[слот][.фунц] [вендор]:[девице] `%s' ис нот а лоцал диск `црѝптомоунт' цомманд фаилс: %s `лоопбацк' цомманд фаилс: %s `нвсетенв' фаилед. 
Ѝоу ўилл хаве то сет `боот-девице' вариабле мануаллѝ.  Ат тхе ИЕЕЕ1275 промпт, тѝпе:
  %s
 `обппатх' нот фоунд ин парент дирс оф `%s', но ИЕЕЕ1275 наме дисцоверѝ а валуе ўас ассигнед то тхе аргумент `%s' ўхиле ит доесн'т реќуире ан аргумент аццесс дениед адд НОТЕ сегмент фор ЦХРП ИЕЕЕ1275 аддр аддресс нот фоунд ассуме инпут ис а пѯелинуѯ цонфигуратион филе. ассуме инпут ис а сѝслинуѯ цонфигуратион филе. ассуме инпут ис ан исолинуѯ цонфигуратион филе. аттемпт то инсталл то енцрѝптед диск ўитхоут црѝптодиск енаблед. Сет `%s' ин филе `%s'. аттемпт то реад ор ўрите оутсиде оф диск `%s' аттемпт то реад ор ўрите оутсиде оф партитион аттемпт то реад паст тхе енд оф филе аттемпт то сеек оутсиде оф тхе филе аттемптинг то реад тхе цоре имаге `%s' фром ГРУБ аттемптинг то реад тхе цоре имаге `%s' фром ГРУБ агаин аваилабле РАМ аваилабле форматс: бад сигнатуре басе_аддр = 0ѯ%llx, ленгтх = 0ѯ%llx, %s
 басе_аддр = 0ѯ%llx, ленгтх = 0ѯ%llx, тѝпе = 0ѯ%x
 битмап филе `%s' ис оф унсуппортед формат блесс фор ппц-басед мацс блесс фор ѯ86-басед мацс блоцклист ФИЛЕ блоцклистс аре инцомплете блоцклистс аре инвалид блоцксизе ис нот дивисибле бѝ 512 цан'т бреак 0 лоопс цан'т цомпресс `%s' то `%s' цан'т детермине филесѝстем он %s цан'т финд цомманд `%s' цан'т моунт енцрѝптед волуме `%s': %s цан'т опен `%s': %s цан'т опен филе %s, индеѯ %d: еррор %d цан'т ретриеве блоцклистс цан'т ретриеве блоцклистс: %s цан'т сет %dѯ%d фонт сизе: Фреетѝпе еррор %d: %s цаннот цомпресс тхе кернел имаге цаннот цопѝ `%s' то `%s': %s цаннот делете `%s': %s цаннот финд ЕФИ дирецторѝ цаннот финд а ГРУБ дриве фор %s.  Цхецк ѝоур девице.мап цаннот финд а девице фор %s (ис /дев моунтед?) цаннот финд лоцале `%s' цаннот гет транслатор цомманд лине фор патх `%s': %s цаннот маке темпорарѝ дирецторѝ: %s цаннот маке темпорарѝ филе: %s цаннот опен ОС филе `%s': %s цаннот опен `%s': %s цаннот опен цонфигуратион филе `%s': %s цаннот опен дирецторѝ `%s': %s цаннот реад `%s' цоррецтлѝ цаннот реад `%s': %s цаннот ренаме тхе филе %s то %s цаннот ресторе тхе оригинал дирецторѝ цаннот сеек `%s': %s цаннот стат `%s': %s цаннот ўрите то ЦД-РОМ цаннот ўрите то `%s': %s цаннот ўрите то тхе стдоут: %s цард нот фоунд цат ФИЛЕ цхецксум верифицатион фаилед цхоосе тхе цомпрессион то усе фор цоре имаге цмп ФИЛЕ ЛОЦАЛ цомУНИТ[,СПЕЕД] цомпаре фаил ат оффсет %llu цомпресс ГРУБ филес [оптионал] цоннецтион рефусед цоннецтион тимеоут цонверт то болд фонт цоре имаге ис тоо биг (0ѯ%x > 0ѯ%x) цоре.имг версион мисматцх цоулдн'т аутоцонфигуре %s цоулдн'т финд ИЕЕЕ1275 девице патх фор %s.
Ѝоу ўилл хаве то сет `боот-девице' вариабле мануаллѝ цоулдн'т финд а нецессарѝ мембер девице оф мулти-девице филесѝстем цоулдн'т финд гели цонсумер цоулдн'т финд геом `парт' цласс цоулдн'т опен геом цоулдн'т реад ЕЛИ метадата цоулдн'т ретриеве УУИД цоулдн'т ретриеве гели УУИД цоулдн'т ретриеве рандом дата цоулдн'т ретриеве рандом дата фор салт цоулдн'т сенд нетўорк пацкет цп ФИЛЕ ЛОЦАЛ црц ФИЛЕ црѝптограпхиц еррор нумбер %d цуррент дирецторѝ оф тхе сѝслинуѯ [дефаулт ис парент дирецторѝ оф инпут филе]. цуррент дирецторѝ оф тхе сѝслинуѯ ас ит ўилл бе сеен он рунтиме  [дефаулт ис парент дирецторѝ оф инпут филе]. цѝгўин_цонв_патх() фаилед делете девице мап иф ит алреадѝ еѯистс дестинатион унреацхабле девице цоунт еѯцеедс лимит девице трее муст бе супплиед (сее `девицетрее' цомманд) дисабле хинтинг диск `%s' нот фоунд диск доес нот еѯист, со фаллинг бацк то партитион девице %s диск модуле то усе (биосдиск ор нативе). Тхис оптион ис онлѝ аваилабле он БИОС таргет. диск реад фаилс ат оффсет %lld, ленгтх %lld дискбоот.имг сизе муст бе %u бѝтес до нот инсталл боотсецтор до нот пробе фор филесѝстемс ин ДЕВИЦЕ домаин наме цомпонент ис тоо лонг дон'т упдате ЛЕД стате дон'т упдате тхе `боот-девице'/`Боот*' НВРАМ вариаблес. Тхис оптион ис онлѝ аваилабле он ЕФИ анд ИЕЕЕ1275 таргетс. доне ембед ФИЛЕ ас а мемдиск имаге
Имплиес `-п (мемдиск)/боот/груб' анд оверридес анѝ префиѯ супплиед превиоуслѝ, бут тхе префиѯ итселф цан бе оверридден бѝ латер оптионс ембед ФИЛЕ ас ан еарлѝ цонфиг ембед ФИЛЕ ас публиц кеѝ фор сигнатуре цхецкинг ембеддинг ис нот поссибле, бут тхис ис реќуиред фор РАИД анд ЛВМ инсталл ембеддинг ис нот поссибле, бут тхис ис реќуиред фор цросс-диск инсталл енабле АРЦС (биг-ендиан мипс мацхинес, мостлѝ СГИ) боот. Дисаблес ХФС+, АПМ, спарц64 анд боот ас диск имаге фор и386-пц енабле спарц боот. Дисаблес ХФС+, АПМ, АРЦС анд боот ас диск имаге фор и386-пц енаблинг %s суппорт ... ентер: боот, `е': оптионс, `ц': цмд-лине енвиронмент блоцк тоо смалл еррор: %s.
 еѯпецт ГРУБ имагес ундер тхе дирецторѝ ДИР/%s инстеад оф тхе %s дирецторѝ фаилед то цопѝ Груб то тхе ПРеП партитион фаилед то гет цаноницал патх оф `%s' фаилед то реад тхе сецторс оф тхе цоре имаге фаилуре реадинг сецтор 0ѯ%llx фром `%s' фаилуре то реад пассўорд фаилуре ўритинг сецтор 0ѯ%llx то `%s' фалсе фаултѝ РАМ (БадРАМ) филе `%s' нот фоунд филенаме еѯпецтед филенаме ор темпо анд нотес еѯпецтед филесѝстем `%s' доес нот суппорт лабелс филесѝстем `%s' доесн'т суппорт блоцклистс филесѝстем он %s ис неитхер ХФС нор ХФС+ фирмўаре имаге ис тоо биг форце аутохинт фоур аргументс еѯпецтед фўстарт.имг доесн'т матцх тхе кноўн гоод версион. процеед ат ѝоур оўн риск генерате ан имаге ин ФОРМАТ гиве а схорт усаге мессаге гиве тхис хелп лист гивен аргумент ис а сѝстем девице, нот а патх груб-мкимаге ис цомпилед ўитхоут ѮЗ суппорт груб> ханг фор СЕЦС сецондс (дефаулт 3600) хеѯ ФИЛЕ игноре битмап стрикес ўхен лоадинг инцоррецт терминал дименсионс специфицатион инитрд алреадѝ лоадед инсталл ФОНТС [дефаулт=%s] инсталл ГРУБ фор ТАРГЕТ платформ [дефаулт=%s] инсталл ГРУБ имагес ундер тхе дирецторѝ ДИР/%s инстеад оф тхе %s дирецторѝ инсталл ТХЕМЕС [дефаулт=%s] инсталл девице исн'т специфиед инсталл евен иф проблемс аре детецтед инсталл онлѝ ЛОЦАЛЕС [дефаулт=алл] инсталл онлѝ МОДУЛЕС анд тхеир депенденциес [дефаулт=алл] инвалид ПБКДФ2 пассўорд инвалид арцх-депендент ЕЛФ магиц инвалид арцх-индепендент ЕЛФ магиц инвалид аргумент инвалид блоцк сизе инвалид цолор специфицатион `%s' инвалид девице трее инвалид енвиронмент блоцк инвалид филе наме `%s' инвалид фонт ранге инвалид лине формат: %s инвалид модинфо филе `%s' инвалид параметер %s инвалид скип валуе %lld инвалид вариабле наме `%s' инвалид видео моде специфицатион `%s' инвалид зИмаге иоцтл ГЕТ_АРРАЍ_ИНФО еррор: %s иоцтл ГЕТ_ДИСК_ИНФО еррор: %s иоцтл РАИД_ВЕРСИОН еррор: %s кернел имаге ис тоо биг (0ѯ%x > 0ѯ%x) лист нетўорк аддрессес лист нетўорк цардс лист нетўорк роутес лс ПАТХ лзоп филе цорруптед маке тхе дриве алсо боотабле ас флоппѝ (дефаулт фор фдѮ девицес). Маѝ бреак он соме БИОСес. миссинг `%c' сѝмбол миссинг мандаторѝ оптион фор `%s' модуле `%s' исн'т лоадед модуле исн'т лоадед наме неед ан имаге анд моунтпоинт но АПМ фоунд но ДХЦП инфо фоунд но ДХЦП оптион %d фоунд но ДХЦП оптионс фоунд но ДНС рецорд фоунд но ДНС реплѝ рецеивед но ДНС серверс цонфигуред но ЕФИ роутинес аре аваилабле фор ѝоур платформ но ЕФИ роутинес аре аваилабле ўхен руннинг ин БИОС моде но ИЕЕЕ1275 роутинес аре аваилабле фор ѝоур платформ но СГИ роутинес аре аваилабле фор ѝоур платформ но `/' ин цаноницал филенаме но цомманд ис специфиед но цомпрессион ис аваилабле фор ѝоур платформ но децрѝптион кеѝ аваилабле но хинтс аваилабле фор ѝоур платформ. Еѯпецт редуцед перформанце но нетўорк цард фоунд но рандом нумбер генератор ис аваилабле фор ѝоур ОС но сервер ис специфиед но суцх партитион но суитабле видео моде фоунд но сѝмбол табле но терминал специфиед но терминатор ин тхе цоре имаге нон-сецтор-алигнед дата ис фоунд ин тхе цоре филе нот а дирецторѝ нот а примарѝ партитион нот а регулар филе нот ин фунцтион бодѝ оне аргумент еѯпецтед онлѝ ипв4 онлѝ ипв6 отхер софтўаре ис усинг тхе ембеддинг ареа, анд тхере ис нот еноугх роом фор цоре.имг.  Суцх софтўаре ис офтен трѝинг то сторе дата ин а ўаѝ тхат авоидс детецтион.  Ўе рецомменд ѝоу инвестигате оут оф меморѝ оутпут а генератед имаге то ФИЛЕ [дефаулт=стдоут] оутпут филе муст бе специфиед оутпут генератед цонфиг то ФИЛЕ [дефаулт=стдоут] оверфлоў ис детецтед пассўордс дон'т матцх перформ а боотп аутоцонфигуратион пхѝсицал волуме %s нот фоунд пре-лоад специфиед модулес МОДУЛЕС префер ипв4 префер ипв6 прематуре енд оф филе прематуре енд оф филе %s пресс ЦапсЛоцк кеѝ пресс Инсерт кеѝ пресс НумЛоцк кеѝ пресс СцроллЛоцк кеѝ пресс СѝсРќ пресс лефт алт пресс лефт цтрл пресс лефт схифт пресс ригхт алт пресс ригхт цтрл пресс ригхт схифт принт програм версион принт тхе версион информатион анд еѯит принт тхис мессаге анд еѯит принт вербосе мессагес. публиц кеѝ %08x нот фоунд реад еррор ат оффсет %llu: %s реад теѯт фром ФИЛЕ. релативе субдирецторѝ он нетўорк сервер релоцатион 0ѯ%x ис нот имплементед ѝет ресервед РАМ ретриеве ДХЦП оптион анд саве ит инто ВАР. Иф ВАР ис - тхен принт тхе валуе. роот дирецторѝ ас ит ўилл бе сеен он рунтиме [дефаулт=/]. роот дирецторѝ оф ТФТП сервер роот дирецторѝ оф тхе сѝслинуѯ диск [дефаулт=/]. роуте лооп детецтед саве РОМ имагес ин ДИР [оптионал] саве оутпут ин ФИЛЕ [реќуиред] селецт фаце индеѯ сериал порт `%s' исн'т фоунд сет [НАМЕ=ВАЛУЕ ...] сет цапслоцк моде сет фонт асцент сет фонт десцент сет фонт фамилѝ наме сет фонт ранге сет фонт сизе сет инпут филенаме фор 32-бит парт. сет инпут филенаме фор 64-бит парт. сет инпут филенаме. Дефаулт ис СТДИН сет инсерт моде сет нумлоцк моде сет оутпут филенаме. Дефаулт ис СТДОУТ сет паусе моде сет префиѯ дирецторѝ [дефаулт=%s] сет сцролллоцк моде сет тхе лабел то рендер сет тхе програм наме сизе стретцх|нормал сѝмбол `%s' нот фоунд темпорарѝ терминал %s исн'т фоунд ор ит'с нот хандлед бѝ терминфо терминал `%s' исн'т фоунд тхе ИД оф боотлоадер. Тхис оптион ис онлѝ аваилабле он ЕФИ анд Мацс. тхе ПРеП партитион ис нот емптѝ. Иф ѝоу аре суре ѝоу ўант то усе ит, рун дд то цлеар ит: `%s' тхе аргумент `%s' реќуирес ан интегер тхе цхосен партитион ис нот а ПРеП партитион тхе девице.мап ентрѝ `%s' ис инвалид. Игноринг ит. Плеасе цоррецт ор делете ѝоур девице.мап тхе дриве %s ис дефинед мултипле тимес ин тхе девице мап %s тхе дриве наме `%s' ин девице.мап ис инцоррецт. Усинг %s инстеад. Плеасе усе тхе форм [хфц]д[0-9]* (Е.г. `хд0' ор `цд') тхе фирст сецтор оф тхе цоре филе ис нот сецтор-алигнед тхе инсталлатион девице ис ремовабле. Тхис оптион ис онлѝ аваилабле он ЕФИ. тхе партитион тѝпе 0ѯ%x исн'т валид тхе сецторс оф тхе цоре филе аре тоо фрагментед тхе сизе оф `%s' ис нот %u тхе сизе оф `%s' ис тоо ларге тхе сизе оф `%s' ис тоо смалл тхис ЕЛФ филе ис нот оф тхе ригхт тѝпе тхис ГПТ партитион лабел цонтаинс но БИОС Боот Партитион; ембеддинг ўон'т бе поссибле тхис ЛДМ хас но Ембеддинг Партитион; ембеддинг ўон'т бе поссибле тхис мсдос-стѝле партитион лабел хас но пост-МБР гап; ембеддинг ўон'т бе поссибле тхрее аргументс еѯпецтед тиме оут опенинг `%s' тимеоут реадинг `%s' тимеоут: цоулд нот ресолве хардўаре аддресс тоо дееп нестинг оф сѝмлинкс транслатор `%s' фор патх `%s' хас северал нон-оптион ўордс, ат леаст `%s' анд `%s' транслатор `%s' фор патх `%s' ис гивен онлѝ оптионс, цаннот финд девице парт транслатор цомманд лине ис емптѝ фор патх `%s' тўо аргументс еѯпецтед тѝпе унабле то идентифѝ а филесѝстем ин %s; сафетѝ цхецк цан'т бе перформед уналигнед девице сизе унеѯпецтед ЕФИ еррор унеѯпецтед енд оф филе ункноўн аргумент `%s' ункноўн цомпрессион %d
 ункноўн девице тѝпе %s
 ункноўн филесѝстем ункноўн кинд оф РАИД девице `%s' ункноўн регеѯп еррор ункноўн таргет формат %s
 ункноўн терминфо тѝпе `%s' унрецогнисед ДХЦП оптион формат специфицатион `%s' унрецогнисед нетўорк аддресс `%s' унрецогнисед нетўорк интерфаце `%s' унрецогнизед нумбер унресолвабле аддресс %s унсет [НАМЕ ...] унсуппортед ХТТП еррор %d: %s унсуппортед ХТТП респонсе унсуппортед РАИД версион: %d.%d унсуппортед гзип формат унсуппортед платформ %s
 унсуппортед сериал порт флоў цонтрол унсуппортед сериал порт паритѝ унсуппортед сериал порт спеед унсуппортед сериал порт стоп битс нумбер унсуппортед сериал порт ўорд ленгтх усе ЦОЛОР фор бацкгроунд усе ЦОЛОР фор лабел усе ЦОЛОР фор лабел бацкгроунд усе ЦОЛОР фор теѯт усе ДИР ас тхе ЕФИ Сѝстем Партитион роот. усе ДИР фор ППЦ МАЦ инсталл. усе ФИЛЕ ас фонт (ПФ2). усе ФИЛЕ ас фонт фор лабел усе ФИЛЕ ас тхе боот имаге [дефаулт=%s] усе ФИЛЕ ас тхе цоре имаге [дефаулт=%s] усе ФИЛЕ ас тхе девице мап [дефаулт=%s] усе ФИЛЕ ас ѯоррисо [оптионал] усе ГРУБ филес ин тхе дирецторѝ ДИР [дефаулт=%s] усе СТРИНГ ас продуцт наме усе СТРИНГ ас продуцт версион усе идентифиер филе евен иф УУИД ис аваилабле усе имагес анд модулес ундер ДИР [дефаулт=%s/<платформ>] усе тхемес ундер ДИР [дефаулт=%s] усе транслатионс ундер ДИР [дефаулт=%s] вариабле `%s' исн'т сет висуаллѝ-ордеред УТФ-8 ўаит унтил а дебуггер ўилл аттацх ўилл нот процеед ўитх блоцклистс ўрите оутпут то ФИЛЕ [дефаулт=стдоут]. ўронг ЕЛИ магиц ор версион ѯну_ууид ДЕВИЦЕ ѯз филе цорруптед ор унсуппортед блоцк оптионс ѝоу цан'т делете тхис аддресс ѝоу неед то лоад тхе кернел фирст ѝоур БИОС Боот Партитион ис тоо смалл; ембеддинг ўон'т бе поссибле ѝоур цоре.имг ис унусуаллѝ ларге.  Ит ўон'т фит ин тхе ембеддинг ареа ѝоур ембеддинг ареа ис унусуаллѝ смалл.  цоре.имг ўон'т фит ин ит.                                                                                                                                                                                     boot/grub/locale/en@greek.mo                                                                        0000600 0001750 0001750 00000436511 13417732100 0014754 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                            L(    |P      `k  #   ak      k     k     k     k  $   k     l  6   )l     `l     gl  	   sl     }l     l     l     l     l     l  .   l  .   'm  %   Vm     |m     m    m    n    o     p  8   p  '   p  7   q  F   Tq  v   q  +   r     >r      Or     pr  !   r     r  ,   r     r     s  $   s     @s  *   \s     s     s     s     s     s  
   s  	   s     s     t  ,   )t  ,   Vt  ,   t  '   t  -   t      u  (   'u  (   Pu  )   yu     u     u     u     u     u  "   v  4   %v     Zv     bv  7   ov     v     v  1   v     v     w  %   w  '   @w  %   hw  '   w     w     w     w     w     w     x     
x     x     (x     Hx     Zx     hx     xx     x  3   x     x  $   x     x     	y     "y     1y     By     Yy     ny  -   y     y  !   y     y     z     $z  #   9z     ]z  `   z  Z   F{     {     {     {     {     {     {     {     |     |  0   9|  3   j|     |     |     |     |     }     }     *}     A}     W}     e}     |}     }     }     }  %   }     }     }     }     ~     +~     F~     \~     k~     ~~     ~  *   ~  3   ~  1     1   8  2   j                  1        -  #   L     p  "     8                    	   5  #   ?     c                    ԁ       )        $     C     a  "     P               H     &   f            !     ,   ΃                 	   (  !   2  *   T       '             Ԅ             $        =     O     a     |            
   х  
   ܅       1        ,     :     G     `  3   |  >     $             +     H     `     {       +        ۇ       o     #               $   ߈            '   :  9   b            z   Ӊ  "   N     q     x  8        Ŋ  
   ܊                    .     ʋ  +             +     @     V  "   i            (        ׌  #     &     ?   :  '   z  @                            &  "   8  0   [                 7                            "     .     4  0   ;     l                 2     %             -  *   <  6   g  +        ʐ            !   ̑  d     e   S  d     i     o     H        A     T     j     {                    Ք  #             0     H  1   Z  )                       ԕ  /             "     9  5   V            K   ǖ  &        :     V     k            D        ח     ܗ  '     P   	     Z     y  	                       Ř     V  '          +        J     [  )   w               ՚               #     ;     Q  $   f            "        ۛ     ݛ       (             #     )  "   1  +   T  -             ǜ     ֜            O   	     Y     o                 %          )     !   /  "   Q     t       +        Ӟ               	  !        =     Y     r     ~                џ                    2     F  4   V                    Ԡ          
     #     <      Y  !   z       4     M     2   9     l       *     8   Ϣ               ,     D     [     s  3     $     +   ٣               (     =     R     e                     դ     פ  D       4                 ;   5     q       !        ҧ       s        |               ¨     ը                    -     1     7                         Ǫ     Ӫ            '   "  
   J     U     d     z                           H   ث  L   !     n                 %               #        9     V     s     |                 ӭ       "     (   $     M     i  %   v                 #   خ  *        '     )     <  #   A     e     j  	   |  	     "     ;     #     <        P     ^     |  .     	        ð  `   հ     6  !   K  )   m                      q        (     <     S     b     y                    ֲ  "             0     J     b     y                 #   ѳ  a        W     t  g             }       -          !          "   )  '   L  Q   t     ƶ                         4     Q     n               ķ                     '     <      O     p                 -   и            "   ,  b   O  )        ܹ          
  ,   %     R     k  	   p  "   z  %        ú     Ⱥ     ݺ  
          &     )        I  5   \  ^          $     %   0     V  ^   	  _   h  }   Ƚ     F  )     '   '  >   O  D     !   ӿ  '     -     #   K     o  )          )           )     ,   G     t                      E     $   :  A   _  )                             >     _  q   t       :        >     \  `   k               	           6     R  0   g                 )     &     #   2  -   V                           )   
     4  %   D  %   j  ,     '     :           -   ?  0   m  /          .               '   4  $   \  "                    2     Q     *   `            )     o        4     M  6        >     @     G  0   N        !     "     #        	          9     O  !   n       
          <             "  %   8  >   ^                                d     *   a  (     ,               0     6   E     |                           0          !        A     _  $   p                           $     "   6  $   Y     ~                                         ,     9     W     r       '               $     +   -  "   Y     |  )                              '   &     N     m       <                %        *     C     Z     m  m                  +     E     ^  +   x  3     1        
  '     -   @     n  '   w  '     .     	                   5     Q     m                                *     ?   @       B     p        G  /               .   -  O   \  )               	     <        B  5   `                           :        F  1   Y                                                       0     A     G  	   T     ^     m                                               '  
   5  
   @  	   K     U  !   [  )   }                           n   #  F     N        (  "   6     Y     ^  .   p  .     /     W     -   V  -     $     #     0     6   ,     c     q       (     1     )             0     I     X     r  !                          %        :  &   N     u       0                        3  7   M  .          4     #        %     D     a  '   v                      %        3     H     ]     t                      ,                  -     I     h     {       #               _     B   [                                   ;  &   Y                      N     m   !       &               7        ;     K  ;   _  V     +     "        A  &   [  !          r        .     3       /     H   '  F   p  w     N   /     ~  (               I     )   1  $   [  ,     '          %                  .     B  $   T  '   y  *     (                    J   6                 -     +        &  $   ,     Q  "   Z  +   }            -     J        S     o  %     "     9              )  "   J     m     ~                               
     "     <     Q     i  %                         %        9     P     c     w       [          !        %     >     R     W     t                                /     7   6  4   n  /               -        6  @   R       3                       #     3     I  1   i                           	     	               1          0   5     f     {  !          "                      !    :    M    ^    p                                 &   
    1    M    e         '    &        L    9   [     0        !           9    K    h    }                     #    #    $   *    O    _ &   p     !                   	         	   3 7   =    u D    ]    %   2 ,   X [    ;    w    7    K    #   	 /   =	    m	    	    	 &   	 U   	 @   A
 Q   
    
    
     +       D R   a L    .       0    G F   L                                 .    O    d    ~ 2    !    #           &    >    O    m             $            (   : #   c                 )           -    E '   ` '    '        0       (    C -   a 8    !    '           * !   A     c &            .        !   # B   E E    B    q   1    8    (    *    !   B B   d "    R           &    :    J 2   `     #    %        P    P   _ @                     ,    a    C    c   \ {       <  K   !    [! 4   t!    ! 6   ! +   ! G   '" (   o"     " <   " (   " C   #    c# 	   #    # '   # 4   #    $    $ (    $    I$ G   _$ J   $ G   $ ?   :% I   z% 2   % A   % @   9& B   z& 1   & 1   &    !'    5'    A' <   M' ^   ' 	   '    ' K   (    Q( !   ^( J   ( .   (    ( C   ( G   A) C   ) G   )    *    * 6   * &   V* &   }*    *    *    * /   * !   +    2+    K+    h+    + V   + 
   + A   + +   :, -   f,    ,    , (   , $   , )   - P   @- 3   - ;   - $   . 2   &. $   Y. ?   ~.    .    /    d0 1   1 3   81    l1    o1 %   u1 
   1    1 )   1 5   1 U   2 [   l2 *   2 .   2 (   "3 .   K3 2   z3    3 )   3 '   3    4 )   )4    S4    n4 
   v4    4 C   4 7   4    5 #   /5 '   S5 1   {5 (   5    5 !   5    6 *   06 L   [6 W   6 [    7 W   \7 X   7 4   8 ;   B8 4   ~8 Z   8 3   9 ?   B9 0   9 >   9 h   9 5   [:    : /   :    : @   : ,   4; !   a; 8   ; 9   ; )   ;     < K   << 6   < 5   < 6   < >   ,=    k= "   = "   >    ?> F   > +   ?    9? 4   F? J   {?    ?    ? 5   ?    @ =   ,@ L   j@ +   @ F   @ $   *A    OA .   oA *   A C   A     B     .B 1   OB 3   B 1   B 6   B    C    /C "   ?C C   bC    C    C ,   C -   D V   1D [   D A   D )   &E 4   PE )   E 0   E 9   E #   F N   >F 1   F 6   F    F @   G (   G 6   (H @   _H .   H 2   H H   I h   KI *   I 4   I    J >   J    0K    =K d   ]K '   K    K    K %   L 1   <L   nL 5   M Q   M *   N $   ;N %   `N !   N 4   N    N    N J   O +   dO B   O G   O u   P I   P w   P    SQ    iQ    Q (   Q     Q <   Q T   )R    ~R    R    R Z   R    S    S    /S '   OS    wS 
   S    S X   S     S    T !   =T )   _T [   T C   T !   )U    KU J   bU N   U <   U 7   9V     qV r  V =   X    CX    X    Y    gZ    #[    [ !   q\    \    \    \ $   \ +   ] &   :] )   a] >   ] 2   ] '   ]    %^ P   B^ L   ^    ^    ^ "   ^    _ T   ._    _ *   _ 0   _ b   _ 7   ]` 2   `    ` E   Sa /   a $   a 3   a    "b 	   )b v   3b    b    b F   b    c 6   c    c    c    c 2   c $   -d    Rd    Re G   Hf    f P   f    f 1   g L   Mg 1   g *   g 5   g 4   -h "   bh '   h "   h $   h E   h     ;i 2   \i @   i    i    i    i I   j    Kj 	   Rj    \j =   kj N   j S   j -   Lk    zk    k    k    k    k '   l *   l (   l    l "   m D   9m 7   ~m J   m <   n >   >n 2   }n (   n P   n %   *o    Po    lo    o ;   o 2   o ,   p    Bp (   Wp 9   p 0   p     p #   q 6   0q 2   gq #   q    q [   q 6   6r    mr *   r .   r .   r ,   s ,   Bs 2   os :   s =   s .   t _   Jt    t ]   9u .   u 7   u N   u g   Mv    v )   v *   v (   !w *   Jw    uw ^   w A   w P   -x $   ~x    x "   x     x     y 0   y 6   Ny 3   y "   y    y ,   y y   z J  z    }    } 5   } j   #~ 9   ~ 6   ~ ;   ~ (   ; 9   d     +   t 4       Հ     &    )   < .   f         	    1  ā F   "   = #   `         5    -   ݄ (    E   4    z     '       υ (   ؅               4   A    v     "    ,       ч     D    -   J +   x A    4    5       Q '   a 9    9   É <       : >   O I    2   ؊     <   # (   `     (    9    M       J #   M    q <   z            ߌ     ?    m   C A    o       c 1   w     R            !    B %    >    L   W     	           Ð    ِ     )       ԑ )    !    '   7 %   _ 5    8    >    +   3 /   _ +    )    '    #    -   1 %   _ B       Ȕ 1   | 1            /    3    S    "   8 =   [     ?    G       @ 3   Й /        4    U &   o 0    0   ǚ 0    0   ) /   Z /    *        ;    %   ; !   a ,    1    #        :   $ S   _ -        ;       = K    '   ? *   g ,    F    )       0    9 ?   L C       Р !   ٠             F   * L   q     ]   ޡ    < -    B    D   W <      ٤        / >  	 J   H G    b   ۨ n   > :    E    Q   . ?    8    J    4   D L   y 1   ƫ I    O   B :    +   ͬ /    1   )    [ ]   y ?   ׭ t    J    3   ׮ 1    /   = 6   m :    $   ߯     0   а j    5   l         6   l 5    )   ٲ '    2   + $   ^ X    4   ܳ %    '   7 K   _ D    ?    R   0 2    0    6    !    0   @ H   q     D   ض D    R   b H    j    6   i R    Y    V   M     R         $   2 F   W C    >       ! 3   2    f Y       ٻ N   l        ʼ K   ׼    # )    I   _   `        ÿ    п U   ݿ <   3 ;   p =    ?       * 3   J &   ~ 7    <    '       B -   U m    )    &    B   B o            	    9    '   Q #   y     M   N J    O    ,   7 ,   d Y    V       B    Q %   k #        +    V       A 7   ` 6        D    *   3 $   ^ 5        0    ;   
 :   F A    '    &    #    8   6 %   o                 4    -   7 ,   e 2    G    7    .   E @   t O    =       C E   O     /    4         !   8 G   Z 6    3    #    h   1 =        A    )   ) &   S "   z 1        1   f /    /    -    /   & N   V _    X       ^ G   x R        D   # D   h N        ,    *   < .   g .    .    .    -   # -   Q )    .        K    q   ,      u       5     K        3 !   T H   v z    =   : $   x         `    .   $ N   S     '        ,     )   - _   W     T    -   , &   Z         
                /    !       9    W    `    t     +    $    3       $ ,   C "   p )    
    
                        0   # E   T         '    6    0   6    g v   !        # ;   =    y      U    U    W   O     N   ? S    A    @   $ T   e _        "   4    W 8   q F    H    ,   : *   g     0    *    :   
 !   E )   g 9    &    =       0 <   L /    3    M    <   ; (   x "    /    `    N   U '    Y    ?   & 5   f ,        B    1   + -   ]     4    F       &    E (   d %    4            6    Q   J         .    7    #   : #   ^ %    6    /    -       = z    2   ^ 7    !    0    )    2   F 6   y F    4       ,    E 5   U         -    F    -   T 1    c           6 i   V     F   [ <    /    F    =   V (            *   5    W       G        L      &    A    3       @    Q K    >     P   _ @    -    <    
   \ "   g     !    C    E    K   V F    .        ,   4    a 2    0    #   L Q   p P    	    =       [ @   k S    (    	 -   )	 P   W	    	 /   -
 8   ]
 E   
 >   
 i    +    <    @       / "   O 9   r $    0    %    "   ( (   K +   t $    '    -    B       ^ 4   z 2    1    :    *   O "   z $        $             :    (    #       B 4   K     !    (    '    #   
 '   . /   V W    e    ]   D W    1    +   , T   X 3    w    '   Y ^    )        
 4   +    ` (   } 9    Y       : +   W !    %    (            \      s Y    6    X    &   v '    ?    2    @   8    y     '    *    "            8 &   Y                        
     ) (   J G   s 2    +    *    .   E $   t J    D       )    A d    6   -  U   d  $     ;     6   !     R! /   s!     !     !    !    " %   !"    G"    b" =   {" =   " B   "    :#    W# F   v#    # :   # $   $ *   8$ %   c$    $    $ #   $    $ a   $ *   G% z   r%    % A   & Q   &    !' g   '    +( d   (    R) =   ) V   * (   q* 0   * 0   * D   *    A+ u   +    T, .   , #   - "   ;- P   ^- 4   -    -    j. Q   . *   @/    k/ }   t/ (   / &   0 )   B0 $   l0 )   0 (   0 #   0 7   1 &   @1 ,   g1 -   1 [   1 ;   2 ?   Z2 %   2 *   2    2 1   3 0   73 5   h3 ,   3 +   3 D   3 9   <4 7   v4 K   4 B   4 -   =5 #   k5 8   5 !   5 J   5 2   56 &   h6 /   6 C   6 C   7 C   G7 6   7 T   7 0   8 6   H8 S   8 b   8 9   69 E   p9 &   9 (   9 =   : <   D: D   : 0   :    : V   ; 5   k; <   ; x   ; {   W< u   <    >      	  j       7    /                o      P        0                        *  p  q    (  >                                      %                     }           G   j        S            v   C              C    T             _  ;                                                 d            >        '                 ^                *        +    !  ?   K          {            1      m              y                                 s      e        2    	             K    V      	  8   !         /     ^                    r  H            F                 r   |                                  D        $                       r    _           I  l  e          G    w             S            ,      J  %     s                      R                 Y      n           ;              
             4           $   W            d    ?  b               ,  6  w    h                     I  J     7   q  4    V      p                O    `                                              i                   X  ]        G      6  c                N                      B  :    C  l  =    v                           A           ,            j  6  g  F   ,     B       U        f          t     h        [  N          w             ]    a        W     <      u  k     	  {  S  1  `      a          '             {                                  )       i                    y              O       m              ^                  M                        P                  -      %               f        b                   t               C                            8  X          *                           
          k     z  w   z  @  T         ]      |                      \      J               '  D       0  b                       (             c                 k       G        s                    [        *  Z      y       )          \                    y         N      4                           v  h              
  $                              ;    6                    |     2               3  v    M  L              ~  S        9  Q     2            {                                         %        @   F      +                    .             V  Q            2                       z          +   g  a             !                                          v                M                 M     P        K             E        9                        @  ^                          c           a      [     )  W          c    A                  k  H            X             "  W                +  h              =                      Z                        }  i    G  )  j               -   &  (        u          |                        ^  g      (  c    e  /  5              -                                 w        L                  M                d      e                         `  o                       N  $      !                o        +                     R             p     "     	                 q                            T    y   n    r                   ]            x                                                 D            }  -                                <         R                       V              H   (           }              N     8           }              ]              b  p      ?                          H                                .  ~     8        &       =  B                         W  K  =          E    [       1                          _                             e  h           4      9   R  \              X  E        B       O  t    >           T  f                 l  f     F              n        )   B      1        \  L    f                &            <  0     Z    d   F  a  ;  ,     u     o                               O     Z         ?        T       A  x          8                 .      *   .        n   l                       g     L       J                               r            u        :         .                                      3           L    X      P                0  5  m             U    9  <        g  A               3                     ~                l    $      "  C             '            
                       /            i      O  9                          0  n  5    U             ;       &                 U             7  4      Y    m  _                                      t          m                      @  1                 u               s   I              Q  !  k        `           2  @    Z            "      A         ?  6    {          E      3              &    '  H            [                              j            >  #  R      #    S  z  Y   d  x  ~  b  P            t          _    q                    #  \       `       ~      E                3    o                #        :  
  q                                    I       :            Y    x    #   U         I         J    -    Q  Y  7  5       x                 /      5      <               :        =   "    %      K        i            D      p         |    V          z   D    Q  s    7                   total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s doesn't exist. Please specify --target or --directory %s doesn't look like an EFI partition.
 %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: not found %s: option '%c%s' doesn't allow an argument
 %s: option '%s' is ambiguous; possibilities: %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- --ppc PATH|--x86 FILE -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Bless DIR of HFS or HFS+ partition for PPC macs. Bless FILE of HFS or HFS+ partition for intel macs. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't create file: %s Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check if CPU supports Physical Address Extension. Check if FILE can be used as x86 multiboot kernel Check if FILE can be used as x86 multiboot2 kernel Check if FILE is ARM EFI file Check if FILE is BIOS bootsector Check if FILE is IA64 EFI file Check if FILE is hiberfil.sys in hibernated state Check if FILE is i386 EFI file Check if FILE is of specified type. Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear bit at BYTE:BIT in CMOS. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find a free BootNNNN slot Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Default server is ${net_default_server} Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not apply any reed-solomon codes when embedding core.img. This option is only available on x86 BIOS targets. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. EFI bootloader id isn't specified. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enable/disable RTS/CTS. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Evaluate arguments as GRUB commands Execute syslinux config in new context Execute syslinux config in new context taking only menu entries Execute syslinux config in same context Execute syslinux config in same context taking only menu entries Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FONTS FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File size: %s
 File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Generating grub configuration file ... Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s Graft point syntax (E.g. /boot/grub/grub.cfg=./grub.cfg) is accepted HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS INSTALL_DEVICE must be system device filename.
%s copies GRUB images into %s.  On some platforms, it may also install GRUB into the boot sector. If FILENAME is `-', the default value %s is used.

There is no `delete' command; if you want to delete the whole environment
block, use `rm %s'. Import ZFS wrapping key stored in FILE. Incorrect VDEV Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Installing for %s platform.
 Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s LOCALES Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List coreboot tables. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load DTB file. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load Truecrypt ISO. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load module. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... M MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MENU_ENTRY is a number, a menu item title or a menu item identifier. Please note that menu items in
submenus or sub-submenus require specifying the submenu components and then the
menu item component. The titles should be separated using the greater-than
character (>) with no extra spaces. Depending on your shell some characters including > may need escaping. More information about this is available
in the GRUB Manual in the section about the 'default' command.  MODULE MODULES Mac-style bless on HFS or HFS+ Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NOT RUNNING:  NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Netboot directory for %s created. Configure your DHCP server to point to %s
 Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OPTIONS FILE OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] PUBKEY_ID Paletted  Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Prepares GRUB network boot images at net_directory/subdir assuming net_directory being TFTP root. Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot into firmware setup menu. Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Render Apple .disk_label. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING STRING ... Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Script `%s' contains no commands and will do nothing
 Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set bit at BYTE:BIT in CMOS. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting GRUB_TIMEOUT to a non-zero value when GRUB_HIDDEN_TIMEOUT is set is no longer supported. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show CBMEM console content. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show raw dump of the CMOS contents. Show raw dump of the PCI configuration space. Show the contents of a file. Show the current mappings. Show the list of trusted keys. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Skip signature-checking of the environment file. Skip signature-checking of the public key file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Storage information for `%s' does not include type Storage information for `%s' indicates neither a plain partition nor a plain disk Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Switch to native disk drivers. If no modules are specified default set (pata,ahci,usbms,ohci,uhci,ehci) is used Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 T TARGET THEMES Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This VDEV is a RAIDZ%llu
 This VDEV is a mirror This entry can be booted by any user. This requires setting GRUB_DEFAULT=saved in %s/default/grub.\n Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Transform syslinux config into GRUB one. Translate SET1 characters to SET2 in STRING. Translate to lower case. Translate to upper case. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown platform `%s-%s' Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized compression `%s' Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME VDEV element number %d isn't correct
 VDEV element number %d:
 VDEV with %d children
 Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. You've found a bug Your embedding area is unusually small.  core.img won't fit in it. Your xorriso doesn't support `--grub2-boot-info'. Some features are disabled. Please use xorriso 1.2.9 or later. Your xorriso doesn't support `--grub2-boot-info'. Your core image is too big. Boot as disk is disabled. Please use xorriso 1.2.9 or later. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] [-s|--skip-sig] [variable_name_to_whitelist] [...] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [-s|--skip-sig] FILE SIGNATURE_FILE [PUBKEY_FILE] [-s|--skip-sig] PUBKEY_FILE [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [DIR] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTIONS] [SET1] [SET2] [STRING] [OPTION] SOURCE... [OPTION] [INSTALL_DEVICE] [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `%s' is not a local disk `cryptomount' command fails: %s `loopback' command fails: %s `nvsetenv' failed. 
You will have to set `boot-device' variable manually.  At the IEEE1275 prompt, type:
  %s
 `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found assume input is a pxelinux configuration file. assume input is a syslinux configuration file. assume input is an isolinux configuration file. attempt to install to encrypted disk without cryptodisk enabled. Set `%s' in file `%s'. attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format bless for ppc-based macs bless for x86-based macs blocklist FILE blocklists are incomplete blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't compress `%s' to `%s' can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s can't set %dx%d font size: Freetype error %d: %s cannot compress the kernel image cannot copy `%s' to `%s': %s cannot delete `%s': %s cannot find EFI directory cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot find locale `%s' cannot get translator command line for path `%s': %s cannot make temporary directory: %s cannot make temporary file: %s cannot open OS file `%s': %s cannot open `%s': %s cannot open configuration file `%s': %s cannot open directory `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu compress GRUB files [optional] connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find IEEE1275 device path for %s.
You will have to set `boot-device' variable manually couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d current directory of the syslinux [default is parent directory of input file]. current directory of the syslinux as it will be seen on runtime  [default is parent directory of input file]. cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit device tree must be supplied (see `devicetree' command) disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. disk read fails at offset %lld, length %lld diskboot.img size must be %u bytes do not install bootsector do not probe for filesystems in DEVICE domain name component is too long don't update LED state don't update the `boot-device'/`Boot*' NVRAM variables. This option is only available on EFI and IEEE1275 targets. done embed FILE as a memdisk image
Implies `-p (memdisk)/boot/grub' and overrides any prefix supplied previously, but the prefix itself can be overridden by later options embed FILE as an early config embed FILE as public key for signature checking embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enable ARCS (big-endian mips machines, mostly SGI) boot. Disables HFS+, APM, sparc64 and boot as disk image for i386-pc enable sparc boot. Disables HFS+, APM, ARCS and boot as disk image for i386-pc enabling %s support ... enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to copy Grub to the PReP partition failed to get canonical path of `%s' failed to read the sectors of the core image failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists filesystem on %s is neither HFS nor HFS+ firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification initrd already loaded install FONTS [default=%s] install GRUB for TARGET platform [default=%s] install GRUB images under the directory DIR/%s instead of the %s directory install THEMES [default=%s] install device isn't specified install even if problems are detected install only LOCALES [default=all] install only MODULES and their dependencies [default=all] invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid argument invalid block size invalid color specification `%s' invalid device tree invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid modinfo file `%s' invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' invalid zImage ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no EFI routines are available for your platform no EFI routines are available when running in BIOS mode no IEEE1275 routines are available for your platform no SGI routines are available for your platform no `/' in canonical filename no command is specified no compression is available for your platform no decryption key available no hints available for your platform. Expect reduced performance no network card found no random number generator is available for your OS no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected only ipv4 only ipv6 other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found pre-load specified modules MODULES prefer ipv4 prefer ipv6 premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory as it will be seen on runtime [default=/]. root directory of TFTP server root directory of the syslinux disk [default=/]. route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the label to render set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the ID of bootloader. This option is only available on EFI and Macs. the PReP partition is not empty. If you are sure you want to use it, run dd to clear it: `%s' the argument `%s' requires an integer the chosen partition is not a PReP partition the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive %s is defined multiple times in the device map %s the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected EFI error unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported platform %s
 unsupported serial port flow control unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for label use COLOR for label background use COLOR for text use DIR as the EFI System Partition root. use DIR for PPC MAC install. use FILE as font (PF2). use FILE as font for label use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] use themes under DIR [default=%s] use translations under DIR [default=%s] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists write output to FILE [default=stdout]. wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub 2.02~beta1
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-12-21 01:46+0100
Last-Translator: Automatically generated
Language-Team: none
Language: en@greek
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=(n != 1);
               τοταλ μεμορϋ: %d ΚιϬ
     Νο πρεφερρεδ μοδε αβαιλαϭλε
     Πρεφερρεδ μοδε: %uξ%u
   ΕΔΙΔ ϲχεϲκσυμ ινβαλιδ   ΕΔΙΔ βερσιον: %u.%u
   Φαιλεδ το ινιτιαλιζε βιδεο αδαπτερ   Νο ινφο αβαιλαϭλε   ΒϬΕ ινφο:   βερσιον: %d.%d  ΟΕΜ σοφτωαρε ρεβ: %d.%d
   ορ:   (λεφτμοστ)  (μεδιαλ)  (ριγχτμοστ)  - Παρτιτιον σταρτ ατ %llu%sΚιϬ  - Σεϲτορ σιζε %uϬ  - Τοταλ σιζε %llu%sΚιϬ  - Τοταλ σιζε υνκνοων  [ΟΠΤΙΟΝ...] %.*s: ΑΡΓΠ_ΧΕΛΠ_ΦΜΤ παραμετερ μυστ ϭε ποσιτιβε %.*s: ΑΡΓΠ_ΧΕΛΠ_ΦΜΤ παραμετερ ρεϗυιρεσ α βαλυε %.*s: Υνκνοων ΑΡΓΠ_ΧΕΛΠ_ΦΜΤ παραμετερ %dσ %dσ ρεμαινινγ. %s αππεαρσ το ϲονταιν α %s φιλεσϋστεμ ωχιϲχ ισν'τ κνοων το ρεσερβε σπαϲε φορ ΔΟΣ-στϋλε ϭοοτ.  Ινσταλλινγ ΓΡΥϬ τχερε ϲουλδ ρεσυλτ ιν ΦΙΛΕΣΫΣΤΕΜ ΔΕΣΤΡΥϲΤΙΟΝ ιφ βαλυαϭλε δατα ισ οβερωριττεν ϭϋ γρυϭ-σετυπ (--σκιπ-φσ-προϭε δισαϭλεσ τχισ ϲχεϲκ, υσε ατ ϋουρ οων ρισκ) %s αππεαρσ το ϲονταιν α %s παρτιτιον μαπ ανδ ΛΔΜ ωχιϲχ ισν'τ κνοων το ϭε α σαφε ϲομϭινατιον.  Ινσταλλινγ ΓΡΥϬ τχερε ϲουλδ ρεσυλτ ιν ΦΙΛΕΣΫΣΤΕΜ ΔΕΣΤΡΥϲΤΙΟΝ ιφ βαλυαϭλε δατα ισ οβερωριττεν ϭϋ γρυϭ-σετυπ (--σκιπ-φσ-προϭε δισαϭλεσ τχισ ϲχεϲκ, υσε ατ ϋουρ οων ρισκ) %s αππεαρσ το ϲονταιν α %s παρτιτιον μαπ ωχιϲχ ισν'τ κνοων το ρεσερβε σπαϲε φορ ΔΟΣ-στϋλε ϭοοτ.  Ινσταλλινγ ΓΡΥϬ τχερε ϲουλδ ρεσυλτ ιν ΦΙΛΕΣΫΣΤΕΜ ΔΕΣΤΡΥϲΤΙΟΝ ιφ βαλυαϭλε δατα ισ οβερωριττεν ϭϋ γρυϭ-σετυπ (--σκιπ-φσ-προϭε δισαϭλεσ τχισ ϲχεϲκ, υσε ατ ϋουρ οων ρισκ) %s δοεσ νοτ συππορτ ΥΥΙΔσ %s δοεσν'τ εξιστ. Πλεασε σπεϲιφϋ --ταργετ ορ --διρεϲτορϋ %s δοεσν'τ λοοκ λικε αν ΕΦΙ παρτιτιον.
 %s γενερατεσ α κεϋϭοαρδ λαϋουτ φορ ΓΡΥϬ υσινγ ϲκϭϲομπ\ν %s ισ δεπρεϲατεδ. Υσε σετ γφξπαϋλοαδ=%s ϭεφορε λινυξ ϲομμανδ ινστεαδ.
 %s ισ δεπρεϲατεδ. ΒΓΑ μοδε %d ισν'τ ρεϲογνιζεδ. Υσε σετ γφξπαϋλοαδ=ΩΙΔΤΧξΧΕΙΓΧΤ[ξΔΕΠΤΧ] ϭεφορε λινυξ ϲομμανδ ινστεαδ.
 %s ισ νοτ ϋετ συππορτεδ ϭϋ γρυϭ-μκϲονφιγ.\ν %s, ωιτχ Χυρδ %s %s, ωιτχ Χυρδ %s (ρεϲοβερϋ μοδε) %s, ωιτχ Λινυξ %s %s, ωιτχ Λινυξ %s (ρεϲοβερϋ μοδε) %s, ωιτχ Ξεν %s ανδ Λινυξ %s %s, ωιτχ Ξεν %s ανδ Λινυξ %s (ρεϲοβερϋ μοδε) %s, ωιτχ Ξεν χϋπερβισορ %s, ωιτχ κΦρεεϬΣΔ %s %s, ωιτχ κΦρεεϬΣΔ %s (ρεϲοβερϋ μοδε) %s, ωιτχ κερνελ %s (βια %s) %s, ωιτχ κερνελ %s (βια %s, ρεϲοβερϋ μοδε) %s: ΧΑΣΧ ΜΙΣΜΑΤϲΧ
 %s: ΟΚ
 %s: ΡΕΑΔ ΕΡΡΟΡ
 %s: Τοο μανϋ αργυμεντσ
 %s: Ϋου μυστ ρυν τχισ ασ ροοτ\ν %s: ερρορ: %s: ινφο: %s: ινβαλιδ οπτιον -- '%c'
 %s: νοτ φουνδ %s: οπτιον '%c%s' δοεσν'τ αλλοω αν αργυμεντ
 %s: οπτιον '%s' ισ αμϭιγυουσ; ποσσιϭιλιτιεσ: %s: οπτιον '--%s' δοεσν'τ αλλοω αν αργυμεντ
 %s: οπτιον '--%s' ρεϗυιρεσ αν αργυμεντ
 %s: οπτιον '-Ω %s' δοεσν'τ αλλοω αν αργυμεντ
 %s: οπτιον '-Ω %s' ισ αμϭιγυουσ
 %s: οπτιον '-Ω %s' ρεϗυιρεσ αν αργυμεντ
 %s: οπτιον ρεϗυιρεσ αν αργυμεντ -- '%c'
 %s: οπτιον ρεϗυιρεσ αν αργυμεντ -- `%s'\ν %s: υνρεϲογνιζεδ οπτιον '%c%s'
 %s: υνρεϲογνιζεδ οπτιον '--%s'
 %s: ωαρνινγ: (32-ϭιτ) (64-ϭιτ) (ΠΡΟΓΡΑΜ ΕΡΡΟΡ) Νο βερσιον κνοων!? (ΠΡΟΓΡΑΜ ΕΡΡΟΡ) Οπτιον σχουλδ χαβε ϭεεν ρεϲογνιζεδ!? (ον %s) - Λαϭελ `%s' - Λαστ μοδιφιϲατιον τιμε %d-%02d-%02d %02d:%02d:%02d %s --ΜΟΡΕ-- --ππϲ ΠΑΤΧ|--ξ86 ΦΙΛΕ -χ ΧΑΣΧ [-ϲ ΦΙΛΕ [-π ΠΡΕΦΙΞ]] [ΦΙΛΕ1 [ΦΙΛΕ2 ...]] -λ | -ρ | [-σ] γρυϭδεβ οσδισκ. .5 16-ϭιτ προτεϲτεδ ιντερφαϲε συππορτεδ
 16-ϭιτ προτεϲτεδ ιντερφαϲε υνσυππορτεδ
 32-ϭιτ προτεϲτεδ ιντερφαϲε συππορτεδ
 32-ϭιτ προτεϲτεδ ιντερφαϲε υνσυππορτεδ
 =ΒΑΛ > ΑϲΠΙ νον-βολατιλε στοραγε ΡΑΜ ΑϲΠΙ ρεϲλαιμαϭλε ΡΑΜ ΑϲΠΙ σχυτδοων φαιλεδ ΑΔΔΡ ΑΔΔΡ ΒΑΛΥΕ [ΜΑΣΚ] ΑΔΔΡ [ΣΙΖΕ] ΑΔΔΡ1,ΜΑΣΚ1[,ΑΔΔΡ2,ΜΑΣΚ2[,...]] ΑΔΔΡΕΣΣ ΔΝΣΣΕΡΒΕΡ ΑΠΜ δισαϭλεδ
 ΑΠΜ δισενγαγεδ
 ΑΠΜ εναϭλεδ
 ΑΠΜ ενγαγεδ
 ΑΡΓΠ_ΧΕΛΠ_ΦΜΤ: %s βαλυε ισ λεσσ τχαν ορ εϗυαλ το %s ΑΣϲΙΙ Αϲϲεπτ ΔΟΣ-στϋλε ϲΡ/ΝΛ λινε ενδινγσ. Αϲτιβε ινπυτ τερμιναλσ: Αϲτιβε ουτπυτ τερμιναλσ: Αδαπτερ `%s':
 Αδδ α ΔΝΣ σερβερ Αδδ α νετωορκ αδδρεσσ. Αδδ α νετωορκ ρουτε. Αδβανϲεδ οπτιονσ φορ %s Αδβανϲεδ οπτιονσ φορ %s (ωιτχ Ξεν χϋπερβισορ) Αλλοω το ιντερρυπτ ωιτχ ΕΣϲ. Ασκ φορ φιλε ναμε το ρεϭοοτ φρομ. Ασσυμε ινπυτ ισ χεξ. Ασσυμε ινπυτ ισ πασσπχρασε. Ασσυμε ινπυτ ισ ραω. Αττεμπτινγ το δεϲρϋπτ μαστερ κεϋ... Αττεμπτινγ το ινσταλλ ΓΡΥϬ το α δισκ ωιτχ μυλτιπλε παρτιτιον λαϭελσ ορ ϭοτχ παρτιτιον λαϭελ ανδ φιλεσϋστεμ.  Τχισ ισ νοτ συππορτεδ ϋετ. Αττεμπτινγ το ινσταλλ ΓΡΥϬ το α δισκ ωιτχ μυλτιπλε παρτιτιον λαϭελσ.  Τχισ ισ νοτ συππορτεδ ϋετ. Αττεμπτινγ το ινσταλλ ΓΡΥϬ το α παρτιτιονλεσσ δισκ ορ το α παρτιτιον.  Τχισ ισ α ϬΑΔ ιδεα. Αβαιλαϭλε ινπυτ τερμιναλσ: Αβαιλαϭλε ουτπυτ τερμιναλσ: Ϭ Ϭ/σ ϬΙΟΣ_ΔΥΜΠ [ΙΝΤ10_ΔΥΜΠ] ϬΛΟϲΚ ϬΫΤΕ:ϬΙΤ Ϭαϲκγρουνδ ιμαγε μοδε. Ϭασε διρεϲτορϋ φορ χασχ λιστ. Ϭλεσσ ΔΙΡ οφ ΧΦΣ ορ ΧΦΣ+ παρτιτιον φορ ΠΠϲ μαϲσ. Ϭλεσσ ΦΙΛΕ οφ ΧΦΣ ορ ΧΦΣ+ παρτιτιον φορ ιντελ μαϲσ. Ϭοοτ ϬΙΟΣ-ϭασεδ σϋστεμ. Ϭοοτ αν οπερατινγ σϋστεμ. Ϭοοτ ιντο σινγλε μοδε. Ϭοοτ ωιτχ δεϭυγ μεσσαγεσ. Ϭοοτ ωιτχ βερϭοσε μεσσαγεσ. Ϭοοτινγ `%s' Ϭοοτινγ α ϲομμανδ λιστ Ϭοοτινγ ιν ϭλινδ μοδε Ϭοοτπατχ: %s
 Ϭοοτπατχ: υναβαιλαϭλε
 Ϭρεακ ιντο ΓΔϬ ϲΓΑ  ϲΟΛΟΡ ϲΟΜΜΑΝΔ [ΑΡΓΣ] ϲΠΥ Ιδλε δοεσν'τ σλοω δοων προϲεσσορ
 ϲΠΥ Ιδλε σλοωσ δοων προϲεσσορ
 ϲΣ5536 ατ %d:%d.%d
 ϲαν'τ ϲρεατε φιλε: %s ϲαν'τ εναϭλε ΡΟΜ αρεα. ϲχανγε ϲονφιγυρεδ δεβιϲεσ. ϲχανγε παρτιτιον τϋπε ϲχεϲκ Αλτ κεϋ. ϲχεϲκ ϲοντρολ κεϋ. ϲχεϲκ Σχιφτ κεϋ. ϲχεϲκ φορ ϲΠΥ φεατυρεσ. ϲχεϲκ χασχεσ οφ φιλεσ ωιτχ χασχ λιστ ΦΙΛΕ. ϲχεϲκ ιφ ϲΠΥ συππορτσ 64-ϭιτ (λονγ) μοδε (δεφαυλτ). ϲχεϲκ ιφ ϲΠΥ συππορτσ Πχϋσιϲαλ Αδδρεσσ Εξτενσιον. ϲχεϲκ ιφ ΦΙΛΕ ϲαν ϭε υσεδ ασ ξ86 μυλτιϭοοτ κερνελ ϲχεϲκ ιφ ΦΙΛΕ ϲαν ϭε υσεδ ασ ξ86 μυλτιϭοοτ2 κερνελ ϲχεϲκ ιφ ΦΙΛΕ ισ ΑΡΜ ΕΦΙ φιλε ϲχεϲκ ιφ ΦΙΛΕ ισ ϬΙΟΣ ϭοοτσεϲτορ ϲχεϲκ ιφ ΦΙΛΕ ισ ΙΑ64 ΕΦΙ φιλε ϲχεϲκ ιφ ΦΙΛΕ ισ χιϭερφιλ.σϋσ ιν χιϭερνατεδ στατε ϲχεϲκ ιφ ΦΙΛΕ ισ ι386 ΕΦΙ φιλε ϲχεϲκ ιφ ΦΙΛΕ ισ οφ σπεϲιφιεδ τϋπε. ϲχεϲκ κεϋ μοδιφιερ στατυσ. ϲχεϲκ ωχετχερ υσερ ισ ιν ΥΣΕΡΛΙΣΤ. ϲχεϲκσ ΓΡΥϬ σϲριπτ ϲονφιγυρατιον φιλε φορ σϋνταξ ερρορσ. ϲλεαρ ϭιτ ατ ϬΫΤΕ:ϬΙΤ ιν ϲΜΟΣ. ϲλεαρ τχε σϲρεεν. ϲλεαρεδ αϲτιβε φλαγ ον %d. 
 ϲομμανδσ: ϲομπαρε ΦΙΛΕ ωιτχ λοϲαλ φιλε ΛΟϲΑΛ. ϲομπαρε φιλε `%s' ωιτχ `%s':
 ϲομπαρε τωο φιλεσ. ϲομπυτε ΞΝΥ ΥΥΙΔ οφ τχε δεβιϲε. ϲομπυτε ορ ϲχεϲκ χασχ ϲχεϲκσυμ. ϲονφιγυρε σεριαλ πορτ. ϲοντινυε λοοπσ ϲονβερτ ϲομμον φοντ φιλε φορματσ ιντο ΠΦ2 ϲοπϋ ΦΙΛΕ το λοϲαλ φιλε ΛΟϲΑΛ. ϲοπϋ ΦΙΛΕ το στανδαρδ ουτπυτ. ϲουλδ νοτ λοϲατε ΦΠΣΩΑ δριβερ ϲουλδν'τ φινδ α φρεε ϬοοτΝΝΝΝ σλοτ ϲουλδν'τ φινδ πχϋσιϲαλ βολυμε `%s'. Σομε μοδυλεσ μαϋ ϭε μισσινγ φρομ ϲορε ιμαγε. ϲουλδν'τ λοαδ σχα256 ϲουλδν'τ λοαδ σχα512 ϲρεατε ϬΙΟΣ-λικε στρυϲτυρεσ φορ ϭαϲκωαρδ ϲομπατιϭιλιτϋ ωιτχ εξιστινγ ΟΣ. ϲρεατε α ϭλανκ ενβιρονμεντ ϭλοϲκ φιλε. ϲυρρεντ τερμινφο τϋπεσ: ΔΕΒΙϲΕ ΔΕΒΙϲΕ [ΠΑΡΤΙΤΙΟΝ[+/-[ΤΫΠΕ]]] ... ΔΕΒΙϲΕ μυστ ϭε αν ΟΣ δεβιϲε (ε.γ. /δεβ/σδα). ΔΕΒΙϲΕ_ΝΑΜΕ ΔΙΡ ΔΙΡΕϲΤΟΡΫ [ΟΣϬυνδλεΡεϗυιρεδ] ΔΝΣΣΕΡΒΕΡ Δεϭυγ τοολ φορ φιλεσϋστεμ δριβερ. Δεϲλαρε μεμορϋ ρεγιονσ ασ φαυλτϋ (ϭαδραμ). Δεϲομπρεσσορ ισ τοο ϭιγ Δεφαυλτ σερβερ ισ ${νετ_δεφαυλτ_σερβερ} Δεφινε α μενυ εντρϋ. Δεφινε α συϭμενυ. Δελετε α νετωορκ αδδρεσσ. Δελετε α νετωορκ ρουτε. Δελετε τχε σπεϲιφιεδ λοοπϭαϲκ δριβε. Δελετε βαριαϭλεσ. Δετερμινε δριβερ. Δετερμινε φιλεσϋστεμ ΥΥΙΔ. Δετερμινε φιλεσϋστεμ λαϭελ. Δετερμινε φιλεσϋστεμ τϋπε. Δετερμινε παρτιτιον μαπ τϋπε. Δεβιϲε %s: Δεβιδ: %s
 Δεβιδ: υναβαιλαϭλε Διρεϲτ ϲολορ, μασκ: %d/%d/%d/%d  ποσ: %d/%d/%d/%d Δισαϭλε ΑϲΠΙ. Δισαϭλε ΣΜΠ. Δισαϭλε αλλ ϭοοτ ουτπυτ. Δισαϭλε/εναϭλε ΣΜΑΡΤ (0/1). Δισϲαρδινγ ιμπροπερλϋ νεστεδ παρτιτιον (%s,%s,%s%d) Δισκ ϲαϲχε στατιστιϲσ: χιτσ = %lu (%lu.%02lu%%), μισσεσ = %lu
 Δισκ ϲουντ μυστ πρεϲεδε δισκσ λιστ.
 Δισπλαϋ ΦΠΣΩΑ βερσιον. Δισπλαϋ ΣΜΑΡΤ χεαλτχ στατυσ. Δισπλαϋ α λινε οφ τεξτ. Δισπλαϋ ϭλοϲκλιστ οφ ΦΙΛΕ. Δισπλαϋ ουτπυτ ον αλλ ϲονσολεσ. Δισπλαϋ ποωερ μοδε. Δισπλαϋ τχε υσαγε οφ τχισ ϲομμανδ ανδ εξιτ. Δισπλαϋ τχισ χελπ ανδ εξιτ. Δισπλαϋ/σετ ϲυρρεντ δατετιμε. Δο νοτ αππλϋ ανϋ ρεεδ-σολομον ϲοδεσ ωχεν εμϭεδδινγ ϲορε.ιμγ. Τχισ οπτιον ισ ονλϋ αβαιλαϭλε ον ξ86 ϬΙΟΣ ταργετσ. Δο νοτ ουτπυτ τχε τραιλινγ νεωλινε. Δο νοτ πριντ μεσσαγεσ. Δο νοτ προϭε ανϋ φλοππϋ δριβε. Δο νοτ υσε ΑΠΜ το χαλτ τχε ϲομπυτερ. Δο νοτχινγ, συϲϲεσσφυλλϋ. Δο νοτχινγ, υνσυϲϲεσσφυλλϋ. Δον'τ δισπλαϋ ϭοοτ διαγνοστιϲ μεσσαγεσ. Δον'τ λοαδ χοστ ταϭλεσ σπεϲιφιεδ ϭϋ ϲομμα-σεπαρατεδ λιστ. Δον'τ ρεϭοοτ, ϊυστ χαλτ. Δον'τ στοπ αφτερ φιρστ ερρορ. Δον'τ υπδατε ΕϬΔΑ. Μαϋ φιξ φαιλυρεσ ορ χανγσ ον σομε ϬΙΟΣεσ ϭυτ μακεσ ιτ ινεφφεϲτιβε ωιτχ ΟΣ νοτ ρεϲειβινγ ΡΣΔΠ φρομ ΓΡΥϬ. ΕΦΙ ϭοοτλοαδερ ιδ ισν'τ σπεϲιφιεδ. ΕΝΒΒΑΡ ΕΝΒΒΑΡ [ΕΝΒΒΑΡ] ... ΕΡΡΟΡ: νο βαλιδ κεϋϭοαρδ λαϋουτ φουνδ. ϲχεϲκ τχε ινπυτ.
 ΕΣϲ ατ ανϋ τιμε εξιτσ. ΕΞΠΡΕΣΣΙΟΝ ΕΞΠΡΕΣΣΙΟΝ ] Ελαπσεδ τιμε: %d.%03d σ 
 Ελαπσεδ τιμε: %d.%03d σεϲονδσ 
 Εμϭεδδινγ ισ νοτ ποσσιϭλε.  ΓΡΥϬ ϲαν ονλϋ ϭε ινσταλλεδ ιν τχισ σετυπ ϭϋ υσινγ ϭλοϲκλιστσ.  Χοωεβερ, ϭλοϲκλιστσ αρε ΥΝΡΕΛΙΑϬΛΕ ανδ τχειρ υσε ισ δισϲουραγεδ. Εμυλατε α κεϋστροκε σεϗυενϲε Εναϭλε ιντερπρετατιον οφ ϭαϲκσλασχ εσϲαπεσ. Εναϭλε/δισαϭλε ΡΤΣ/ϲΤΣ. Εντερ ΖΦΣ πασσωορδ:  Εντερ ιν ΚΔϬ ον ϭοοτ. Εντερ νορμαλ μοδε. Εντερ πασσπχρασε φορ %s%s%s (%s):  Εντερ πασσωορδ:  Εντερ υσερναμε:  Ερρορ ιν παρσινγ ϲομμανδ λινε αργυμεντσ
 Εβαλυατε αν εξπρεσσιον. Εβαλυατε αργυμεντσ ασ ΓΡΥϬ ϲομμανδσ Εξεϲυτε σϋσλινυξ ϲονφιγ ιν νεω ϲοντεξτ Εξεϲυτε σϋσλινυξ ϲονφιγ ιν νεω ϲοντεξτ τακινγ ονλϋ μενυ εντριεσ Εξεϲυτε σϋσλινυξ ϲονφιγ ιν σαμε ϲοντεξτ Εξεϲυτε σϋσλινυξ ϲονφιγ ιν σαμε ϲοντεξτ τακινγ ονλϋ μενυ εντριεσ Εξιτ φαιλεδ Εξιτ φρομ ΓΡΥϬ. Εξιτ φρομ λοοπσ Εξιτ φρομ νορμαλ μοδε. Εξπορτ βαριαϭλεσ. Εξπορτ βερσιον 1 ταϭλεσ το τχε ΟΣ. Εξπορτ βερσιον 2 ανδ βερσιον 3 ταϭλεσ το τχε ΟΣ. ΦΙΛΕ ΦΙΛΕ [ΑΡΓ ...] ΦΙΛΕ [ΑΡΓΣ...] ΦΙΛΕ | ΤΕΜΠΟ [ΠΙΤϲΧ1 ΔΥΡΑΤΙΟΝ1] [ΠΙΤϲΧ2 ΔΥΡΑΤΙΟΝ2] ...  ΦΙΛΕ... ΦΙΛΕ1 ΦΙΛΕ2 ΦΙΛΕΝΑΜΕ ϲΟΜΜΑΝΔ ΦΙΛΕΣΫΣΤΕΜ [ΒΑΡΙΑϬΛΕ] ΦΙΛΕ|προμπτ ΦΟΝΤΣ ΦΟΡΜΑΤ ΦΠΣΩΑ προτοϲολ ωασν'τ αϭλε το φινδ τχε ιντερφαϲε ΦΠΣΩΑ ρεβισιον: %x
 ΦΡΟΜ-ΤΟ[,ΦΡΟΜ-ΤΟ] ΦΡΟΜ[Κ|Μ|Γ] ΤΟ[Κ|Μ|Γ] ΦΤ_Ινιτ_ΦρεεΤϋπε φαιλσ Φαιλεδ το ϭοοτ ϭοτχ δεφαυλτ ανδ φαλλϭαϲκ εντριεσ.
 Φαιλεδ το ϲρεατε `δεβιϲε-μαππερ' τρεε Φαλλινγ ϭαϲκ το `%s' Φιλε σιζε: %s
 Φιλε σϋστεμ `%s' δοεσν'τ συππορτ εμϭεδδινγ Φιλεσ διφφερ ατ τχε οφφσετ %llu: 0ξ%x [%s], 0ξ%x [%s]
 Φιλεσ διφφερ ιν σιζε: %llu [%s], %llu [%s]
 Φιλεσϋστεμ ϲαννοτ ϭε αϲϲεσσεδ Φιλεσϋστεμ τϋπε %s Φιλλ χϋϭριδ ΜϬΡ οφ ΓΠΤ δριβε ΔΕΒΙϲΕ. Σπεϲιφιεδ παρτιτιονσ ωιλλ ϭε α παρτ οφ χϋϭριδ ΜϬΡ. Υπ το 3 παρτιτιονσ αρε αλλοωεδ. ΤΫΠΕ ισ αν ΜϬΡ τϋπε. + μεανσ τχατ παρτιτιον ισ αϲτιβε. Ονλϋ ονε παρτιτιον ϲαν ϭε αϲτιβε. Φιναλιζε λοαδινγ οφ ΕΦΙ εμυλατορ. Φιρστ τρϋ τχε δεβιϲε ΧΙΝΤ ιφ ϲυρρεντλϋ ρυννινγ ον ΑΡϲ. Ιφ ΧΙΝΤ ενδσ ιν ϲομμα, αλσο τρϋ συϭπαρτιτιονσ Φιρστ τρϋ τχε δεβιϲε ΧΙΝΤ ιφ ϲυρρεντλϋ ρυννινγ ον ϬΙΟΣ. Ιφ ΧΙΝΤ ενδσ ιν ϲομμα, αλσο τρϋ συϭπαρτιτιονσ Φιρστ τρϋ τχε δεβιϲε ΧΙΝΤ ιφ ϲυρρεντλϋ ρυννινγ ον ΕΦΙ. Ιφ ΧΙΝΤ ενδσ ιν ϲομμα, αλσο τρϋ συϭπαρτιτιονσ Φιρστ τρϋ τχε δεβιϲε ΧΙΝΤ ιφ ϲυρρεντλϋ ρυννινγ ον ΙΕΕΕ1275. Ιφ ΧΙΝΤ ενδσ ιν ϲομμα, αλσο τρϋ συϭπαρτιτιονσ Φιρστ τρϋ τχε δεβιϲε ΧΙΝΤ ιφ διρεϲτ χαρδωαρε αϲϲεσσ ισ συππορτεδ. Ιφ ΧΙΝΤ ενδσ ιν ϲομμα, αλσο τρϋ συϭπαρτιτιονσ Φιρστ τρϋ τχε δεβιϲε ΧΙΝΤ. Ιφ ΧΙΝΤ ενδσ ιν ϲομμα, αλσο τρϋ συϭπαρτιτιονσ Φιξ βιδεο προϭλεμ. Φουνδ %s ον %s (%s)\ν Φουνδ %s ον %s\ν Φουνδ ΓΝΥ Μαϲχ: %s Φουνδ Χυρδ μοδυλε: %s Φουνδ ΝετϬΣΔ κερνελ: %s\ν Φουνδ ϭαϲκγρουνδ: %s\ν Φουνδ ινιτρδ ιμαγε: %s\ν Φουνδ κερνελ μοδυλε διρεϲτορϋ: %s\ν Φουνδ κερνελ οφ ΦρεεϬΣΔ: %s\ν Φουνδ λινυξ ιμαγε: %s\ν Φουνδ τχεμε: %s\ν Φρεετϋπε Ερρορ %d λοαδινγ γλϋπχ 0ξ%x φορ Υ+0ξ%x%s Φρεεζε ΑΤΑ σεϲυριτϋ σεττινγσ υντιλ ρεσετ. Φριδαϋ Γ ΓΝΥ ΓΡΥϬ  βερσιον %s ΓΡΥϬ Ϭοοτ Μενυ ΓΡΥϬ δοεσν'τ κνοω χοω το χαλτ τχισ μαϲχινε ϋετ! ΓΡΥϬ εμυλατορ. ΓΡΥϬΔΕΒΙϲΕ=ΠΛΑΝ9ΔΕΒΙϲΕ Γαρϭαγε ιν ΑΡΓΠ_ΧΕΛΠ_ΦΜΤ: %s Γενερατε ΓΡΥϬ κεϋϭοαρδ λαϋουτ φρομ Λινυξ ϲονσολε ονε. Γενερατε ΠϬΚΔΦ2 πασσωορδ χασχ. Γενερατε α γρυϭ ϲονφιγ φιλε Γενερατε α στανδαλονε ιμαγε (ϲονταινινγ αλλ μοδυλεσ) ιν τχε σελεϲτεδ φορματ Γενερατινγ γρυϭ ϲονφιγυρατιον φιλε ... Γετ ϲρϲ32 ϲχεϲκσυμ οφ ΦΙΛΕ. Γετ δισκ ϲαϲχε ινφο. Γετ/σετ ΑΤΑ δισκ παραμετερσ. ΓιϬ ΓιϬ/σ Γραφτ ποιντ σϋνταξ (Ε.γ. /ϭοοτ/γρυϭ/γρυϭ.ϲφγ=./γρυϭ.ϲφγ) ισ αϲϲεπτεδ ΧΑΣΧ ΧΙΝΤ Χαλτ τχε σϋστεμ, ιφ ποσσιϭλε υσινγ ΑΠΜ. Χαλτσ τχε ϲομπυτερ.  Τχισ ϲομμανδ δοεσ νοτ ωορκ ον αλλ φιρμωαρε ιμπλεμεντατιονσ. Χανδλε Ν ϭϋτεσ ιν ουτπυτ φιλε. Χελλο Ωορλδ Χερϲυλεσ  ΙΔ ΙΜΑΓΕ1 [ΙΜΑΓΕ2 ...] ΜΟΥΝΤΠΟΙΝΤ ΙΜΑΓΕ_ΠΑΤΧ ϲΟΜΜΑΝΔΣ ΙΝΣΤΑΛΛ_ΔΕΒΙϲΕ μυστ ϭε σϋστεμ δεβιϲε φιλεναμε.
%s ϲοπιεσ ΓΡΥϬ ιμαγεσ ιντο %s.  Ον σομε πλατφορμσ, ιτ μαϋ αλσο ινσταλλ ΓΡΥϬ ιντο τχε ϭοοτ σεϲτορ. Ιφ ΦΙΛΕΝΑΜΕ ισ `-', τχε δεφαυλτ βαλυε %s ισ υσεδ.

Τχερε ισ νο `δελετε' ϲομμανδ; ιφ ϋου ωαντ το δελετε τχε ωχολε ενβιρονμεντ
ϭλοϲκ, υσε `ρμ %s'. Ιμπορτ ΖΦΣ ωραππινγ κεϋ στορεδ ιν ΦΙΛΕ. Ινϲορρεϲτ ΒΔΕΒ Ινϲορρεϲτ βιρτυαλ δεβιϲε: νο τϋπε αβαιλαϭλε Ινσερτ α μοδυλε. Ινσταλλ ΓΡΥϬ ον ϋουρ δριβε. Ινσταλλατιον φινισχεδ. Νο ερρορ ρεπορτεδ. Ινσταλλινγ φορ %s πλατφορμ.
 Ινβαλιδ ϭαϲκ ρεφερενϲε Ινβαλιδ ϲχαραϲτερ ϲλασσ ναμε Ινβαλιδ ϲολλατιον ϲχαραϲτερ Ινβαλιδ ϲομμανδ %s.
 Ινβαλιδ ϲοντεντ οφ \{\} Ινβαλιδ δεβιϲε `%s'.
 Ινβαλιδ δισκ ϲουντ.
 Ινβαλιδ πρεϲεδινγ ρεγυλαρ εξπρεσσιον Ινβαλιδ ρανγε ενδ Ινβαλιδ ρεγυλαρ εξπρεσσιον Ινβοκε υσερ ϲονφιγυρατιον ρουτινγ. Κ ΚΕΡΝΕΛ ΑΡΓΣ ΚΕΫϬΟΑΡΔ_ΚΕΫ Κεϋϭοαρδ κεϋ το ϗυιϲκλϋ ϭοοτ τχισ εντρϋ. ΚιϬ ΚιϬ/σ ΛΟϲΑΛΕΣ Λεαφ βιρτυαλ δεβιϲε (φιλε ορ δισκ) Λεγαϲϋ `ασκ' παραμετερ νο λονγερ συππορτεδ. Λεγενδ: μασκ/ποσιτιον=ρεδ/γρεεν/ϭλυε/ρεσερβεδ Λενγτχ οφ γενερατεδ χασχ Λενγτχ οφ σαλτ Λιστ ΔΝΣ σερβερσ Λιστ ΠϲΙ δεβιϲεσ. Λιστ αλλ φιλεσ. Λιστ αβαιλαϭλε βιδεο μοδεσ. Ιφ ρεσολυτιον ισ γιβεν σχοω ονλϋ μοδεσ ματϲχινγ ιτ. Λιστ ϲορεϭοοτ ταϭλεσ. Λιστ δεβιϲεσ ανδ φιλεσ. Λιστ δεβιϲεσ ορ φιλεσ. Λιστ δεβιϲεσ. Λιστ φιλεσ ιν ΠΑΤΧ. Λιστ μεμορϋ μαπ προβιδεδ ϭϋ φιρμωαρε. Λιστ οφ συππορτεδ βιδεο μοδεσ: Λιστ οφ υσερσ αλλοωεδ το ϭοοτ τχισ εντρϋ. Λιστ ορ σελεϲτ αν ινπυτ τερμιναλ. Λιστ ορ σελεϲτ αν ουτπυτ τερμιναλ. Λιστ τχε ϲυρρεντ βαριαϭλεσ. Λιστ τχε λοαδεδ φοντσ. Λιστ βαριαϭλεσ φρομ ενβιρονμεντ ϭλοϲκ φιλε. Λοαδ 64-ϭιτ ΞΝΥ ιμαγε. Λοαδ ϬΙΟΣ δυμπ. Λοαδ ΔΤϬ φιλε. Λοαδ ΦρεεϬΣΔ ενβ. Λοαδ ΦρεεϬΣΔ κερνελ μοδυλε (ΕΛΦ). Λοαδ ΦρεεϬΣΔ κερνελ μοδυλε. Λοαδ ΦρεεΔΟΣ κερνελ.σϋσ. Λοαδ Λινυξ. Λοαδ ΝΤΛΔΡ ορ ϬοοτΜΓΡ. Λοαδ ΝετϬΣΔ κερνελ μοδυλε (ΕΛΦ). Λοαδ ΝετϬΣΔ κερνελ μοδυλε. Λοαδ Πλαν9 κερνελ. Λοαδ Τρυεϲρϋπτ ΙΣΟ. Λοαδ ΞΝΥ εξτενσιον διρεϲτορϋ. Λοαδ ΞΝΥ εξτενσιον παϲκαγε. Λοαδ ΞΝΥ εξτενσιον. Λοαδ ΞΝΥ ιμαγε. Λοαδ ΞΝΥ ραμδισκ. Ιτ ωιλλ ϭε αβαιλαϭλε ιν ΟΣ ασ μδ0. Λοαδ `δεβιϲε-προπερτιεσ' δυμπ. Λοαδ α ΠΞΕ ιμαγε. Λοαδ α κεϋϭοαρδ λαϋουτ. Λοαδ α μυλτιϭοοτ 2 κερνελ. Λοαδ α μυλτιϭοοτ 2 μοδυλε. Λοαδ α μυλτιϭοοτ κερνελ. Λοαδ α μυλτιϭοοτ μοδυλε. Λοαδ α σπλασχ ιμαγε φορ ΞΝΥ. Λοαδ αν ιμαγε οφ χιϭερνατεδ ΞΝΥ. Λοαδ ανδ ινιτιαλιζε ΕΦΙ εμυλατορ. Λοαδ ανοτχερ ϭοοτ λοαδερ. Λοαδ ανοτχερ ϲονφιγ φιλε ϭυτ τακε ονλϋ μενυ εντριεσ. Λοαδ ανοτχερ ϲονφιγ φιλε ωιτχουτ ϲχανγινγ ϲοντεξτ ϭυτ τακε ονλϋ μενυ εντριεσ. Λοαδ ανοτχερ ϲονφιγ φιλε ωιτχουτ ϲχανγινγ ϲοντεξτ. Λοαδ ανοτχερ ϲονφιγ φιλε. Λοαδ ανοτχερ ϲορεϭοοτ παϋλοαδ Λοαδ ϭαϲκγρουνδ ιμαγε φορ αϲτιβε τερμιναλ. Λοαδ χοστ ΑϲΠΙ ταϭλεσ ανδ ταϭλεσ σπεϲιφιεδ ϭϋ αργυμεντσ. Λοαδ ινιτρδ. Λοαδ κΟπενϬΣΔ ραμδισκ. Λοαδ κερνελ οφ ΦρεεϬΣΔ. Λοαδ κερνελ οφ ΝετϬΣΔ. Λοαδ κερνελ οφ ΟπενϬΣΔ. Λοαδ μοδυλε. Λοαδ ονλϋ ταϭλεσ σπεϲιφιεδ ϭϋ ϲομμα-σεπαρατεδ λιστ. Λοαδ τχε σαμε φιλε ιν μυλτιπλε ωαϋσ. Λοαδ βαριαϭλεσ φρομ ενβιρονμεντ ϭλοϲκ φιλε. Λοαδ ζφσ ϲρϋπτο κεϋ. Λοαδεδ φοντσ: Λοαδινγ ΓΝΥ Μαϲχ ... Λοαδινγ Λινυξ %s ... Λοαδινγ Ξεν %s ... Λοαδινγ ινιτιαλ ραμδισκ ... Λοαδινγ κερνελ οφ ΦρεεϬΣΔ %s ... Λοαδινγ κερνελ οφ Ιλλυμοσ ... Λοαδινγ τχε Χυρδ ... Μ ΜΑϲ βεριφιϲατιον φαιλεδ ΜΕΝΥ_ΕΝΤΡΫ ισ α νυμϭερ, α μενυ ιτεμ τιτλε ορ α μενυ ιτεμ ιδεντιφιερ. ΜΕΝΥ_ΕΝΤΡΫ ισ α νυμϭερ, α μενυ ιτεμ τιτλε ορ α μενυ ιτεμ ιδεντιφιερ. Πλεασε νοτε τχατ μενυ ιτεμσ ιν
συϭμενυσ ορ συϭ-συϭμενυσ ρεϗυιρε σπεϲιφϋινγ τχε συϭμενυ ϲομπονεντσ ανδ τχεν τχε
μενυ ιτεμ ϲομπονεντ. Τχε τιτλεσ σχουλδ ϭε σεπαρατεδ υσινγ τχε γρεατερ-τχαν
ϲχαραϲτερ (>) ωιτχ νο εξτρα σπαϲεσ. Δεπενδινγ ον ϋουρ σχελλ σομε ϲχαραϲτερσ ινϲλυδινγ > μαϋ νεεδ εσϲαπινγ. Μορε ινφορματιον αϭουτ τχισ ισ αβαιλαϭλε
ιν τχε ΓΡΥϬ Μανυαλ ιν τχε σεϲτιον αϭουτ τχε 'δεφαυλτ' ϲομμανδ.  ΜΟΔΥΛΕ ΜΟΔΥΛΕΣ Μαϲ-στϋλε ϭλεσσ ον ΧΦΣ ορ ΧΦΣ+ Μακε ΓΡΥϬ ϲΔ-ΡΟΜ, δισκ, πενδριβε ανδ φλοππϋ ϭοοταϭλε ιμαγε. Μακε ΓΡΥϬ κεϋϭοαρδ λαϋουτ φιλε. Μακε α ϭοοταϭλε ιμαγε οφ ΓΡΥϬ. Μακε α βιρτυαλ δριβε φρομ α φιλε. Μακε παρτιτιον αϲτιβε Μαναγε τχε ϬΙΟΣ δριβε μαππινγσ. Μανδατορϋ ορ οπτιοναλ αργυμεντσ το λονγ οπτιονσ αρε αλσο μανδατορϋ ορ οπτιοναλ φορ ανϋ ϲορρεσπονδινγ σχορτ οπτιονσ. Μανιπυλατε ΠϲΙ δεβιϲεσ. Μεασυρε τιμε υσεδ ϭϋ ϲΟΜΜΑΝΔ Μεμορϋ εξχαυστεδ Μεμορϋ τϋπε: ΔΔΡ2. Μεμορϋ τϋπε: Υνκνοων. Μενυ εντρϋ ιδεντιφιερ. Μενυ εντρϋ νοτ σπεϲιφιεδ. Μενυ εντρϋ τϋπε. ΜιϬ ΜιϬ/σ Μινιμαλ ϬΑΣΧ-λικε λινε εδιτινγ ισ συππορτεδ. Φορ τχε φιρστ ωορδ, ΤΑϬ λιστσ ποσσιϭλε ϲομμανδ ϲομπλετιονσ. Ανϋωχερε ελσε ΤΑϬ λιστσ ποσσιϭλε δεβιϲε ορ φιλε ϲομπλετιονσ. %s Μινιμυμ Εμαϲσ-λικε σϲρεεν εδιτινγ ισ συππορτεδ. ΤΑϬ λιστσ ϲομπλετιονσ. Πρεσσ ϲτρλ-ξ ορ Φ10 το ϭοοτ, ϲτρλ-ϲ ορ Φ2 φορ α ϲομμανδ-λινε ορ ΕΣϲ το δισϲαρδ εδιτσ ανδ ρετυρν το τχε ΓΡΥϬ μενυ. Μισσινγ αργυμεντσ
 Μισσινγ ινπυτ φιλε
 Μονδαϋ Μονοϲχρομε  Μορε τχαν ονε ινσταλλ δεβιϲε? Μορε τχαν ονε μενυ εντρϋ? Μουντ α ϲρϋπτο δεβιϲε. Μουντ αλλ βολυμεσ ωιτχ `ϭοοτ' φλαγ σετ. Μουντ αλλ. Μουντ ϭϋ ΥΥΙΔ. Μουντ ϲρϋπτο δεβιϲεσ. ΝΑΜΕ ΝΑΜΕ [ΒΑΡΙΑϬΛΕ] [ΧΙΝΤΣ] ΝΟΤ ΡΥΝΝΙΝΓ:  ΝΥΜ ΝΥΜϬΕΡ_ΟΦ_ΣΕϲΟΝΔΣ Ναμε	Ρεφ ϲουντ	Δεπενδενϲιεσ
 Νατιβε δισκ δριβερσ αρε ιν υσε. Ρεφυσινγ το υσε φιρμωαρε δισκ ιντερφαϲε. Νετϭοοτ διρεϲτορϋ φορ %s ϲρεατεδ. ϲονφιγυρε ϋουρ ΔΧϲΠ σερβερ το ποιντ το %s
 Νετωορκ προτοϲολσ: Νεω ΜϬΡ ισ ωριττεν το `%s'
 Νο ϲΣ5536 φουνδ Νο ΦΠΣΩΑ φουνδ Νο ϭοοτ τιμε στατιστιϲσ ισ αβαιλαϭλε
 Νο ϲομμανδ ισ σπεϲιφιεδ.
 Νο δεβιϲε ισ σπεϲιφιεδ.
 Νο δισκ ϲαϲχε στατιστιϲσ αβαιλαϭλε
 Νο δριβεσ χαβε ϭεεν ρεμαππεδ Νο κνοων φιλεσϋστεμ δετεϲτεδ Νο ματϲχ Νο πατχ ισ σπεϲιφιεδ.
 Νο πατχ ορ δεβιϲε ισ σπεϲιφιεδ.
 Νο πρεβιουσ ρεγυλαρ εξπρεσσιον Νο βιρτυαλ δεβιϲε τρεε αβαιλαϭλε Νον-ϲχαιν 4  Νοτ ενουγχ παραμετερσ το ϲομμανδ.
 Νοω ϲοννεϲτ τχε ρεμοτε δεϭυγγερ, πλεασε. Νυμϭερ οφ ΠϬΚΔΦ2 ιτερατιονσ ΟΠΤΙΟΝΣ ΦΙΛΕ ΟΣ δισκ #νυμ ------> ΓΡΥϬ/ϬΙΟΣ δεβιϲε ΟΣ φιλε %s οπεν ερρορ: %s Οπτιονσ: Ουτ οφ ρανγε λοοκυπ: %d
 Ουτ οφ ρανγε συϭστιτυτιον (%d, %d)
 Οβερριδε γυεσσεδ μαππινγ οφ Πλαν9 δεβιϲεσ. Π ΠΑΡΤΙΤΙΟΝ ϲΟΜΜΑΝΔΣ ΠΑΤΧ ΠϬΚΔΦ2 χασχ οφ ϋουρ πασσωορδ ισ %s
 ΠΟΡΤ ΠΟΡΤ ΒΑΛΥΕ [ΜΑΣΚ] ΠΥϬΚΕΫ_ΙΔ Παλεττεδ  Παρσε λεγαϲϋ ϲονφιγ ιν νεω ϲοντεξτ Παρσε λεγαϲϋ ϲονφιγ ιν νεω ϲοντεξτ τακινγ ονλϋ μενυ εντριεσ Παρσε λεγαϲϋ ϲονφιγ ιν σαμε ϲοντεξτ Παρσε λεγαϲϋ ϲονφιγ ιν σαμε ϲοντεξτ τακινγ ονλϋ μενυ εντριεσ Παρτ νο: %s.
 Παρτιτιον %d ισ αϲτιβε νοω. 
 Παρτιτιον %s: Παρτιτιον στϋλε `%s' δοεσν'τ συππορτ εμϭεδδινγ Πατχ: %s
 Πατχ: υναβαιλαϭλε Περφορμ ϲΟΜΜΑΝΔΣ ον παρτιτιον.
Υσε `παρττοολ ΠΑΡΤΙΤΙΟΝ χελπ' φορ τχε λιστ οφ αβαιλαϭλε ϲομμανδσ. Περφορμ α ΔΝΣ λοοκυπ Περφορμ αν ΙΠΒ6 αυτοϲονφιγυρατιον Περφορμ ϭοτχ διρεϲτ ανδ ρεβερσε μαππινγσ. ΠιϬ ΠιϬ/σ Πλαναρ  Πλαϋ α τυνε. Πλεασε δον'τ υσε ολδ τιτλε `%s' φορ ΓΡΥϬ_ΔΕΦΑΥΛΤ, υσε `%s' (φορ βερσιονσ ϭεφορε 2.00) ορ `%s' (φορ 2.00 ορ λατερ) Ποολ ΓΥΙΔ: %016llx
 Ποολ ΓΥΙΔ: υναβαιλαϭλε Ποολ ναμε: %s
 Ποολ ναμε: υναβαιλαϭλε Ποολ στατε: αϲτιβε Ποολ στατε: δεστροϋεδ Ποολ στατε: εξπορτεδ Ποολ στατε: λεβελ 2 ΑΡϲ δεβιϲε Ποολ στατε: ποτεντιαλλϋ αϲτιβε Ποολ στατε: ρεσερβεδ φορ χοτ σπαρε Ποολ στατε: υναβαιλαϭλε Ποολ στατε: υνινιτιαλιζεδ Ποσσιϭλε αργυμεντσ αρε: Ποσσιϭλε ϲομμανδσ αρε: Ποσσιϭλε δεβιϲεσ αρε: Ποσσιϭλε φιλεσ αρε: Ποσσιϭλε παρτιτιονσ αρε: Ποσσιϭλε τχινγσ αρε: Πρεματυρε ενδ οφ ρεγυλαρ εξπρεσσιον Πρεπαρεσ ΓΡΥϬ νετωορκ ϭοοτ ιμαγεσ ατ νετ_διρεϲτορϋ/συϭδιρ ασσυμινγ νετ_διρεϲτορϋ ϭεινγ ΤΦΤΠ ροοτ. Πρεσσ ανϋ κεϋ το ϲοντινυε... Πρεσσ ανϋ κεϋ το λαυνϲχ ξνυ Πρεσσ εντερ το ϭοοτ τχε σελεϲτεδ ΟΣ, `ε' το εδιτ τχε ϲομμανδσ ϭεφορε ϭοοτινγ ορ `ϲ' φορ α ϲομμανδ-λινε. Πρεσσ εντερ το ϭοοτ τχε σελεϲτεδ ΟΣ, `ε' το εδιτ τχε ϲομμανδσ ϭεφορε ϭοοτινγ ορ `ϲ' φορ α ϲομμανδ-λινε. ΕΣϲ το ρετυρν πρεβιουσ μενυ. Πριντ Μεμορϋ ινφορματιον. Πριντ ΖΦΣ ινφο αϭουτ ΔΕΒΙϲΕ. Πριντ ΖΦΣ-ϬΟΟΤΦΣΟϬΪ ορ στορε ιτ ιντο ΒΑΡΙΑϬΛΕ Πριντ α ϭλοϲκ λιστ. Πριντ ανδ εξεϲυτε ϭλοϲκ αργυμεντ. Πριντ ϭαϲκτραϲε. Πριντ δριβε ιδεντιτϋ ανδ σεττινγσ. Πριντ σιζεσ ιν α χυμαν ρεαδαϭλε φορματ. Προϭε δεβιϲε ινφορματιον φορ α γιβεν πατχ (ορ δεβιϲε, ιφ τχε -δ οπτιον ισ γιβεν). ΡΑΜ χολδινγ ϲορεϭοοτ ταϭλεσ ΡΑΜ χολδινγ φιρμωαρε ϲοδε ΡΑΜ σλοτ νυμϭερ %d
 ΡΕΓΕΞΠ ΣΤΡΙΝΓ ΡΟΜ ιμαγε ισ πρεσεντ. Ρεαδ 16-ϭιτ βαλυε φρομ ΑΔΔΡ. Ρεαδ 16-ϭιτ βαλυε φρομ ΠΟΡΤ. Ρεαδ 32-ϭιτ βαλυε φρομ ΑΔΔΡ. Ρεαδ 32-ϭιτ βαλυε φρομ ΠΟΡΤ. Ρεαδ 8-ϭιτ βαλυε φρομ ΑΔΔΡ. Ρεαδ 8-ϭιτ βαλυε φρομ ΠΟΡΤ. Ρεαδ ονλϋ ΛΕΝΓΤΧ ϭϋτεσ. Ρεϭοοτ φαιλεδ Ρεϭοοτ ιντο φιρμωαρε σετυπ μενυ. Ρεϭοοτ τχε ϲομπυτερ. Ρεεντερ πασσωορδ:  Ρεγιστερ %x οφ %x:%02x.%x ισ %x
 Ρεγυλαρ εξπρεσσιον τοο ϭιγ Ρεμοβε α ΔΝΣ σερβερ Ρεμοβε α μοδυλε. Ρεμοβε αν ενβιρονμεντ βαριαϭλε. Ρεμοβε ανϋ μεμορϋ ρεγιονσ ιν σπεϲιφιεδ ρανγε. Ρενδερ Αππλε .δισκ_λαϭελ. Ρεπορτ ϭυγσ το %s.
 Ρεπορτ ϭυγσ το <ϭυγ-γρυϭ@γνυ.οργ>. Ρεϗυεστεδ σεριαλ τερμιναλ ϭυτ ΓΡΥϬ_ΣΕΡΙΑΛ_ϲΟΜΜΑΝΔ ισ υνσπεϲιφιεδ. Δεφαυλτ παραμετερσ ωιλλ ϭε υσεδ. Ρεσετ αλλ μαππινγσ το τχε δεφαυλτ βαλυεσ. Ρετριεβε δεβιϲε ινφο. Ρετυρν φρομ α φυνϲτιον. Ρετυρν το ΙΕΕΕ1275 προμπτ. Ρυν `γδϭ %s %d', ανδ σετ ΑΡΓΣ.ΧΟΛΔ το ζερο.
 Ρυν `γο' το ρεσυμε ΓΡΥϬ. ΣΕϲΣ ΣΧΟΡΤΝΑΜΕ ΣΧΟΡΤΝΑΜΕ ϲΑΡΔ ΑΔΔΡΕΣΣ [ΧΩΑΔΔΡΕΣΣ] ΣΧΟΡΤΝΑΜΕ ΝΕΤ [ΙΝΤΕΡΦΑϲΕ| γω ΓΑΤΕΩΑΫ] ΣΙΖΕ ΣΟΥΡϲΕ|-υ ΥΥΙΔ|-α|-ϭ ΣΤΡΙΝΓ ΣΤΡΙΝΓ ... Σατυρδαϋ Σαβε ρεαδ βαλυε ιντο βαριαϭλε ΒΑΡΝΑΜΕ. Σαβε βαριαϭλεσ το ενβιρονμεντ ϭλοϲκ φιλε. Σαϋ `Χελλο Ωορλδ'. Σϲριπτ `%s' ϲονταινσ νο ϲομμανδσ ανδ ωιλλ δο νοτχινγ
 Σεαρϲχ δεβιϲεσ ϭϋ ΥΥΙΔ. Ιφ ΒΑΡΙΑϬΛΕ ισ σπεϲιφιεδ, τχε φιρστ δεβιϲε φουνδ ισ σετ το α βαριαϭλε. Σεαρϲχ δεβιϲεσ ϭϋ α φιλε. Σεαρϲχ δεβιϲεσ ϭϋ α φιλεσϋστεμ ΥΥΙΔ. Σεαρϲχ δεβιϲεσ ϭϋ α φιλεσϋστεμ λαϭελ. Σεαρϲχ δεβιϲεσ ϭϋ φιλε, φιλεσϋστεμ λαϭελ ορ φιλεσϋστεμ ΥΥΙΔ. Ιφ --σετ ισ σπεϲιφιεδ, τχε φιρστ δεβιϲε φουνδ ισ σετ το α βαριαϭλε. Ιφ νο βαριαϭλε ναμε ισ σπεϲιφιεδ, `ροοτ' ισ υσεδ. Σεαρϲχ δεβιϲεσ ϭϋ φιλε. Ιφ ΒΑΡΙΑϬΛΕ ισ σπεϲιφιεδ, τχε φιρστ δεβιϲε φουνδ ισ σετ το α βαριαϭλε. Σεαρϲχ δεβιϲεσ ϭϋ λαϭελ. Ιφ ΒΑΡΙΑϬΛΕ ισ σπεϲιφιεδ, τχε φιρστ δεβιϲε φουνδ ισ σετ το α βαριαϭλε. Σεϲτορ %llu ισ αλρεαδϋ ιν υσε ϭϋ ραιδ ϲοντρολλερ `%s'; αβοιδινγ ιτ.  Πλεασε ασκ τχε μανυφαϲτυρερ νοτ το στορε δατα ιν ΜϬΡ γαπ Σεϲτορ %llu ισ αλρεαδϋ ιν υσε ϭϋ τχε προγραμ `%s'; αβοιδινγ ιτ.  Τχισ σοφτωαρε μαϋ ϲαυσε ϭοοτ ορ οτχερ προϭλεμσ ιν φυτυρε.  Πλεασε ασκ ιτσ αυτχορσ νοτ το στορε δατα ιν τχε ϭοοτ τραϲκ Σελεϲτ δεβιϲε ϭϋ ιτσ ποσιτιον ον τχε ϭυσ. Σελεϲτ δεβιϲε ϭϋ βενδορ ανδ δεβιϲε ΙΔσ. Σετ Αδβανϲεδ Ποωερ Μαναγεμεντ
(1=λοω, ..., 254=χιγχ, 255=οφφ). Σετ Αυτοματιϲ Αϲουστιϲ Μαναγεμεντ
(0=οφφ, 128=ϗυιετ, ..., 254=φαστ). Σετ ΟΕΜΙΔ οφ ΡΣΔΠ, ΞΣΔΤ ανδ ΡΣΔΤ. Σετ ΟΕΜΤΑϬΛΕ ΙΔ οφ ΡΣΔΠ, ΞΣΔΤ ανδ ΡΣΔΤ. Σετ ΟΕΜΤΑϬΛΕ ρεβισιον οφ ΡΣΔΠ, ΞΣΔΤ ανδ ΡΣΔΤ. Σετ `χιδδεν' φλαγ ιν παρτιτιον τϋπε Σετ α βαριαϭλε το ρετυρν βαλυε. Σετ α βαριαϭλε το τχε φιρστ δεβιϲε φουνδ. Σετ αν ενβιρονμεντ βαριαϭλε. Σετ ϭαϲκγρουνδ ϲολορ φορ αϲτιβε τερμιναλ. Σετ ϭιτ ατ ϬΫΤΕ:ϬΙΤ ιν ϲΜΟΣ. Σετ ϲρεατορ φιελδ οφ ΡΣΔΠ, ΞΣΔΤ ανδ ΡΣΔΤ. Σετ ϲρεατορ ρεβισιον οφ ΡΣΔΠ, ΞΣΔΤ ανδ ΡΣΔΤ. Σετ δεϭυγ ενβιρονμεντ βαριαϭλε. Σετ δριβε το σλεεπ μοδε. Σετ δριβε το στανδϭϋ μοδε. Σετ ποσιτιοναλ παραμετερσ. Σετ ροοτ δεβιϲε. Σετ στανδϭϋ τιμεουτ
(0=οφφ, 1=5σ, 2=10σ, ..., 240=20μ, 241=30μ, ...). Σετ τερμινφο τϋπε οφ ΤΕΡΜ  το ΤΫΠΕ.
 Σετ τχε δεφαυλτ ϭοοτ μενυ εντρϋ φορ ΓΡΥϬ, φορ τχε νεξτ ϭοοτ ονλϋ. Σετ τχε δεφαυλτ ϭοοτ μενυ εντρϋ φορ ΓΡΥϬ. Σετ τχε σεριαλ πορτ αδδρεσσ. Σετ τχε σεριαλ πορτ παριτϋ. Σετ τχε σεριαλ πορτ σπεεδ. Σετ τχε σεριαλ πορτ στοπ ϭιτσ. Σετ τχε σεριαλ πορτ ωορδ λενγτχ. Σετ τχε σεριαλ υνιτ. Σετ υπ ιμαγεσ το ϭοοτ φρομ ΔΕΒΙϲΕ.

Ϋου σχουλδ νοτ νορμαλλϋ ρυν τχισ προγραμ διρεϲτλϋ.  Υσε γρυϭ-ινσταλλ ινστεαδ. Σετ υσερ πασσωορδ (ΠϬΚΔΦ2).  Σετ υσερ πασσωορδ (πλαιντεξτ). Υνρεϲομμενδεδ ανδ ινσεϲυρε. Σετ βαριαϭλε ωιτχ υσερ ινπυτ. Σετ βαριαϭλεσ. Σεττινγ ΓΡΥϬ_ΤΙΜΕΟΥΤ το α νον-ζερο βαλυε ωχεν ΓΡΥϬ_ΧΙΔΔΕΝ_ΤΙΜΕΟΥΤ ισ σετ ισ νο λονγερ συππορτεδ. Σεττινγ παρτιτιον τϋπε το 0ξ%x
 Σχιφτ ποσιτιοναλ παραμετερσ. Σχοω ΑϲΠΙ ινφορματιον. Σχοω ΑΠΜ ινφορματιον. Σχοω ϲϬΜΕΜ ϲονσολε ϲοντεντ. Σχοω α χελπ μεσσαγε. Σχοω α λονγ λιστ ωιτχ μορε δεταιλεδ ινφορματιον. Σχοω ϲοντεντσ οφ ΦΙΛΕ ιν χεξ. Σχοω λοαδεδ μοδυλεσ. Σχοω μεμορϋ ϲοντεντσ. Σχοω ραω ϲοντεντσ οφ ΑΤΑ ΙΔΕΝΤΙΦΫ σεϲτορ. Σχοω ραω ϲοντεντσ οφ α φιλε ορ μεμορϋ. Σχοω ραω δυμπ οφ τχε ϲΜΟΣ ϲοντεντσ. Σχοω ραω δυμπ οφ τχε ΠϲΙ ϲονφιγυρατιον σπαϲε. Σχοω τχε ϲοντεντσ οφ α φιλε. Σχοω τχε ϲυρρεντ μαππινγσ. Σχοω τχε λιστ οφ τρυστεδ κεϋσ. Σχοω τχισ μεσσαγε. Σχοω βερσιον 1 ταϭλεσ ονλϋ. Σχοω βερσιον 2 ανδ βερσιον 3 ταϭλεσ ονλϋ. Σχυτδοων φαιλεδ Σιμυλατε γρυϭ-λεγαϲϋ `ινιτρδ' ϲομμανδ Σιμυλατε γρυϭ-λεγαϲϋ `κερνελ' ϲομμανδ Σιμυλατε γρυϭ-λεγαϲϋ `μοδυλενουνζιπ' ϲομμανδ Σιμυλατε γρυϭ-λεγαϲϋ `πασσωορδ' ϲομμανδ Σιμυλατε γρυϭ-λεγαϲϋ `πασσωορδ' ϲομμανδ ιν μενυ εντρϋ μοδε Σκιπ Ν ϭϋτεσ φρομ ουτπυτ φιλε. Σκιπ οφφσετ ϭϋτεσ φρομ τχε ϭεγιννινγ οφ φιλε. Σκιπ σιγνατυρε-ϲχεϲκινγ οφ τχε ενβιρονμεντ φιλε. Σκιπ σιγνατυρε-ϲχεϲκινγ οφ τχε πυϭλιϲ κεϋ φιλε. Σλοτ %d οπενεδ
 Σομε Χυρδ στυφφ φουνδ, ϭυτ νοτ ενουγχ το ϭοοτ. Σπεϲιφϋ φιλεναμε. Σπεϲιφϋ χασχ το υσε. Σπεϲιφϋ ονε ορ μορε φοντ φιλεσ το λοαδ. Σπεϲιφϋ σιζε φορ εαϲχ ρεαδ οπερατιον Σπεϲιφϋ τχε νυμϭερ οφ ινπυτ φιλεσ. Σπεεδ: %s 
 Σταρτ ΓΔϬ στυϭ ον γιβεν πορτ Στοπ ΓΔϬ στυϭ Στοραγε ινφορματιον φορ `%s' δοεσ νοτ ινϲλυδε τϋπε Στοραγε ινφορματιον φορ `%s' ινδιϲατεσ νειτχερ α πλαιν παρτιτιον νορ α πλαιν δισκ Στορε ματϲχεδ ϲομπονεντ ΝΥΜϬΕΡ ιν ΒΑΡΝΑΜΕ. Συϲϲεσσ Συνδαϋ Συππρεσσ νορμαλ ουτπυτ (ωαρνινγσ ρεμαιν). Σωιτϲχ το νατιβε δισκ δριβερσ. Ιφ νο μοδυλεσ αρε σπεϲιφιεδ δεφαυλτ σετ (πατα,αχϲι,υσϭμσ,οχϲι,υχϲι,εχϲι) ισ υσεδ Σϋνταξ ερρορ ατ λινε %u
 Σϋνταξ ερρορσ αρε δετεϲτεδ ιν γενερατεδ ΓΡΥϬ ϲονφιγ φιλε.
Ενσυρε τχατ τχερε αρε νο ερρορσ ιν /ετϲ/δεφαυλτ/γρυϭ
ανδ /ετϲ/γρυϭ.δ/* φιλεσ ορ πλεασε φιλε α ϭυγ ρεπορτ ωιτχ
%s φιλε ατταϲχεδ. Σϋστεμ μαναγεμεντ ϭυσ ϲοντρολλερ Ι/Ο σπαϲε ισ ατ 0ξ%x
 Τ ΤΑΡΓΕΤ ΤΧΕΜΕΣ Ταργετ φορματ νοτ σπεϲιφιεδ (υσε τχε -Ο οπτιον). Τερμιναλ χασ σπεϲιφιεδ γεομετρϋ. Τερμιναλ ισ ΑΣϲΙΙ-ονλϋ [δεφαυλτ]. Τερμιναλ ισ λογιϲαλ-ορδερεδ ΥΤΦ-8. Τερμιναλ ισ βισυαλλϋ-ορδερεδ ΥΤΦ-8. Τεστ ΥΣϬ συππορτ. Τεστ ϭιτ ατ ϬΫΤΕ:ϬΙΤ ιν ϲΜΟΣ. Τεστ φιλε ρεαδ σπεεδ. Τεστ ιφ ΡΕΓΕΞΠ ματϲχεσ ΣΤΡΙΝΓ. Τεστ βιδεο συϭσϋστεμ ιν μοδε ΩξΧ. Τεστ βιδεο συϭσϋστεμ. Τεξτ-ονλϋ  Τχε φιλεσ αρε ιδεντιϲαλ.
 Τχε χιγχλιγχτεδ εντρϋ ωιλλ ϭε εξεϲυτεδ αυτοματιϲαλλϋ ιν %dσ. Τχισ ΒΔΕΒ ισ α ΡΑΙΔΖ%llu
 Τχισ ΒΔΕΒ ισ α μιρρορ Τχισ εντρϋ ϲαν ϭε ϭοοτεδ ϭϋ ανϋ υσερ. Τχισ ρεϗυιρεσ σεττινγ ΓΡΥϬ_ΔΕΦΑΥΛΤ=σαβεδ ιν %s/δεφαυλτ/γρυϭ.\ν Τχυρσδαϋ ΤιϬ ΤιϬ/σ Τοολ το εδιτ ενβιρονμεντ ϭλοϲκ. Τοταλ φλασχ σιζε: %d Ϭ.
 Τραιλινγ ϭαϲκσλασχ Τρανσφορμ 64-ϭιτ ΥΥΙΔ το φορματ συιταϭλε φορ ΞΝΥ. Ιφ -λ ισ γιβεν κεεπ ιτ λοωερϲασε ασ δονε ϭϋ ϭλκιδ. Τρανσφορμ α σϋστεμ φιλεναμε ιντο ΓΡΥϬ ονε. Τρανσφορμ σϋσλινυξ ϲονφιγ ιντο ΓΡΥϬ ονε. Τρανσλατε ΣΕΤ1 ϲχαραϲτερσ το ΣΕΤ2 ιν ΣΤΡΙΝΓ. Τρανσλατε το λοωερ ϲασε. Τρανσλατε το υππερ ϲασε. Τρανσλατεσ τχε στρινγ ωιτχ τχε ϲυρρεντ σεττινγσ. Τρϋ '%s --χελπ' ορ '%s --υσαγε' φορ μορε ινφορματιον.
 Τυεσδαϋ ΥΣΕΡ ΠΑΣΣΩΟΡΔ ΥΣΕΡ ΠϬΚΔΦ2_ΠΑΣΣΩΟΡΔ ΥΣΕΡΝΑΜΕ[,ΥΣΕΡΝΑΜΕ] ΥΤΦ-8 Υναϭλε το ϲρεατε πιπε: %s Υναϭλε το δετερμινε ϋουρ πλατφορμ. Υσε --ταργετ. Υναϭλε το φορκ: %s Υναϭλε το οπεν στρεαμ φρομ %s: %s Υναϭλε το ρετριεβε ποολ στατε Υνϲομπρεσσ δατα. Υνϲομπρεσσ φιλε ϭεφορε ϲχεϲκσυμμινγ. Υνκνοων αδδρεσσ τϋπε %d
 Υνκνοων ϲομμανδ `%s'.
 Υνκνοων ϲομπρεσσιον φορματ %s Υνκνοων ενϲοδινγ Υνκνοων εξτρα αργυμεντ `%s'. Υνκνοων γσυϭ φοντ φεατυρε 0ξ%x (%s)
 Υνκνοων κεϋϭοαρδ σϲαν ϲοδε 0ξ%02x
 Υνκνοων κεϋϭοαρδ σϲαν ιδεντιφιερ %s
 Υνκνοων πλατφορμ `%s-%s' Υνκνοων σϋστεμ ερρορ Υνκνοων βιδεο μοδε  Υνκνοων βιρτυαλ δεβιϲε τϋπε: %s
 Υνλοαδ ΕΦΙ εμυλατορ. Υνματϲχεδ ( ορ \( Υνματϲχεδ ) ορ \) Υνματϲχεδ [ ορ [^ Υνματϲχεδ \{ Υνρεϲογνιζεδ ϲομπρεσσιον `%s' Υνρεϲογνιζεδ οπτιον `%s'\ν Υνρεϲογνιζεδ ποολ στατε Υνσυππορτεδ αδδρεσσ τϋπε %d
 Υνσυππορτεδ ϲοβεραγε σπεϲιφιϲατιον: %d
 Υνσυππορτεδ χω αδδρεσσ τϋπε %d
 Υνσυππορτεδ ιμαγε φορματ Υνσυππορτεδ συϭστιτυτιον φλαγ: 0ξ%x
 Υνσυππορτεδ συϭστιτυτιον σπεϲιφιϲατιον: %d
 Υνσυππορτεδ συϭστιτυτιον τϋπε: %d
 Υσαγε: Υσαγε: %s -ο ΟΥΤΠΥΤ ϲΚϬΜΑΠ_ΑΡΓΥΜΕΝΤΣ...\ν Υσαγε: %s ΔΕΒΙϲΕ
 Υσαγε: %s [ΙΝΦΙΛΕ [ΟΥΤΦΙΛΕ]]
 Υσαγε: %s [ΟΠΤΙΟΝ] ΜΕΝΥ_ΕΝΤΡΫ\ν Υσαγε: %s [ΟΠΤΙΟΝ]\ν Υσε ϲΔ-ΡΟΜ ασ ροοτ. Υσε ΓΔϬ ρεμοτε δεϭυγγερ ινστεαδ οφ ΔΔϬ. Υσε ΣΤΡΙΝΓ ασ μενυ εντρϋ ϭοδϋ. Υσε ϲομπιλεδ-ιν ροοτ δεβιϲε. Υσε σεριαλ ϲονσολε. Υσε τχε %C ανδ %C κεϋσ το σελεϲτ ωχιϲχ εντρϋ ισ χιγχλιγχτεδ. ΒΑΡ ΙΝΤΕΡΦΑϲΕ ΝΥΜϬΕΡ ΔΕΣϲΡΙΠΤΙΟΝ ΒΑΡΝΑΜΕ ΒΔΕΒ ελεμεντ νυμϭερ %d ισν'τ ϲορρεϲτ
 ΒΔΕΒ ελεμεντ νυμϭερ %d:
 ΒΔΕΒ ωιτχ %d ϲχιλδρεν
 Βερϭοσε ϲουντδοων. Βεριφϋ δεταϲχεδ σιγνατυρε. Βερσιον %u.%u
32-ϭιτ ϲΣ = 0ξ%x, λεν = 0ξ%x, οφφσετ = 0ξ%x
16-ϭιτ ϲΣ = 0ξ%x, λεν = 0ξ%x
ΔΣ = 0ξ%x, λεν = 0ξ%x
 Βιρτυαλ δεβιϲε ισ δεγραδεδ Βιρτυαλ δεβιϲε ισ φαυλτεδ Βιρτυαλ δεβιϲε ισ οφφλινε Βιρτυαλ δεβιϲε ισ ονλινε Βιρτυαλ δεβιϲε ισ ρεμοβεδ ΩΑΡΝΙΝΓ: νο ϲονσολε ωιλλ ϭε αβαιλαϭλε το ΟΣ ΩΑΡΝΙΝΓ: νο πλατφορμ-σπεϲιφιϲ ινσταλλ ωασ περφορμεδ ΩΑΡΝΙΝΓ: υνσυππορτεδ φοντ φεατυρε παραμετερσ: %x
 ΩΙΔΤΧξΧΕΙΓΧΤ. Ωαιτ φορ α σπεϲιφιεδ νυμϭερ οφ σεϲονδσ. Ωαιτ φορ κεϋπρεσσ αφτερ εβερϋ λινε οφ ουτπυτ. Ωαρνινγ: Ωαρνινγ: ινβαλιδ ϭαϲκγρουνδ ϲολορ `%s'
 Ωαρνινγ: ινβαλιδ φορεγρουνδ ϲολορ `%s'
 Ωαρνινγ: σϋνταξ ερρορ (μισσινγ σλασχ) ιν `%s'
 Ωεδνεσδαϋ Ωινδοωσ ΝΤ/2000/ΞΠ (λοαδερ) Ωινδοωσ Βιστα/7 (λοαδερ) Ωριτε 16-ϭιτ ΒΑΛΥΕ το ΑΔΔΡ. Ωριτε 16-ϭιτ ΒΑΛΥΕ το ΠΟΡΤ. Ωριτε 32-ϭιτ ΒΑΛΥΕ το ΑΔΔΡ. Ωριτε 32-ϭιτ ΒΑΛΥΕ το ΠΟΡΤ. Ωριτε 8-ϭιτ ΒΑΛΥΕ το ΑΔΔΡ. Ωριτε 8-ϭιτ ΒΑΛΥΕ το ΠΟΡΤ. Ωριττεν ΣΠΔ ϭϋτεσ: %d Ϭ.
 Ξεν χϋπερβισορ, βερσιον %s ΫΥΒ  Ϋου νεεδ το σπεϲιφϋ ατ λεαστ ονε ϲομμανδ.
 Ϋου ωιλλ χαβε το σετ `ΣϋστεμΠαρτιτιον' ανδ `ΟΣΛοαδερ' μανυαλλϋ. Ϋου'βε φουνδ α ϭυγ Ϋουρ εμϭεδδινγ αρεα ισ υνυσυαλλϋ σμαλλ.  ϲορε.ιμγ ωον'τ φιτ ιν ιτ. Ϋουρ ξορρισο δοεσν'τ συππορτ `--γρυϭ2-ϭοοτ-ινφο'. Σομε φεατυρεσ αρε δισαϭλεδ. Πλεασε υσε ξορρισο 1.2.9 ορ λατερ. Ϋουρ ξορρισο δοεσν'τ συππορτ `--γρυϭ2-ϭοοτ-ινφο'. Ϋουρ ϲορε ιμαγε ισ τοο ϭιγ. Ϭοοτ ασ δισκ ισ δισαϭλεδ. Πλεασε υσε ξορρισο 1.2.9 ορ λατερ. [--αππενδ|--ρεμοβε] [ΤΕΡΜΙΝΑΛ1] [ΤΕΡΜΙΝΑΛ2] ... [--φορϲε|--ϭπϭ] ΦΙΛΕ [--μδ5] ΠΑΣΣΩΔ [ΦΙΛΕ] [--νο-μεμ-οπτιον] [--τϋπε=ΤΫΠΕ] ΦΙΛΕ [ΑΡΓ ...] [-1|-2] [--εξϲλυδε=ΤΑϬΛΕ1,ΤΑϬΛΕ2|--λοαδ-ονλϋ=ΤΑϬΛΕ1,ΤΑϬΛΕ2] ΦΙΛΕ1 [ΦΙΛΕ2] [...] [-ϲ ΦΙΛΕ [-π ΠΡΕΦΙΞ]] [ΦΙΛΕ1 [ΦΙΛΕ2 ...]] [-δ] ΔΕΒΙϲΕΝΑΜΕ ΦΙΛΕ. [-ε|-ν] ΣΤΡΙΝΓ [-φ ΦΙΛΕ] [-φ ΦΙΛΕ] [-σ|--σκιπ-σιγ] [βαριαϭλε_ναμε_το_ωχιτελιστ] [...] [-φ ΦΙΛΕ] βαριαϭλε_ναμε [...] [-φ|-λ|-υ|-σ|-ν] [--χιντ ΧΙΝΤ [--χιντ ΧΙΝΤ] ...] ΝΑΜΕ [-χ|-π|-ρ] [ΦΙΛΕ] [-λ] ΓΡΥϬΥΥΙΔ [ΒΑΡΝΑΜΕ] [-λ|-χ|-α] [ΦΙΛΕ ...] [-μ (στρετϲχ|νορμαλ)] ΦΙΛΕ [-σ ΠΟΣΙΤΙΟΝ] [-δ ΔΕΒΙϲΕ] [-σ ΠΟΣΙΤΙΟΝ] [-δ ΔΕΒΙϲΕ] [-β ΒΑΡ] ΡΕΓΙΣΤΕΡ[=ΒΑΛΥΕ[:ΜΑΣΚ]] [-σ ΣΙΖΕ] ΦΙΛΕΝΑΜΕ [-σ|--σκιπ-σιγ] ΦΙΛΕ ΣΙΓΝΑΤΥΡΕ_ΦΙΛΕ [ΠΥϬΚΕΫ_ΦΙΛΕ] [-σ|--σκιπ-σιγ] ΠΥϬΚΕΫ_ΦΙΛΕ [ΑΔΔΡ|ϲομΥΝΙΤ][,ΣΠΕΕΔ] [ΑΡΓ] [ϲΑΡΔ [ΧΩΑΔΔΡΕΣΣ]] [ϲΑΡΔ] [ΔΙΡ] [ΕΝΒΒΑΡ=ΒΑΛΥΕ] [ΕΝΒΒΑΡ] [ΚΕΫΣΤΡΟΚΕ1] [ΚΕΫΣΤΡΟΚΕ2] ... [ΜΟΔΥΛΕ1 ΜΟΔΥΛΕ2 ...] [ΝΥΜϬΕΡ:]ΒΑΡΝΑΜΕ [ΝΥΜ] [ΟΠΤΙΟΝΣ...] [ΟΠΤΙΟΝΣ] [ΟΠΤΙΟΝΣ] ΔΙΣΚ [ΟΠΤΙΟΝΣ] ΦΙΛΕ_ΟΡ_ΔΕΒΙϲΕ [ΟΠΤΙΟΝΣ] ΦΟΝΤ_ΦΙΛΕΣ [ΟΠΤΙΟΝΣ] [ΣΕΤ1] [ΣΕΤ2] [ΣΤΡΙΝΓ] [ΟΠΤΙΟΝ] ΣΟΥΡϲΕ... [ΟΠΤΙΟΝ] [ΙΝΣΤΑΛΛ_ΔΕΒΙϲΕ] [ΟΠΤΙΟΝ]... [ΜΟΔΥΛΕΣ] [ΟΠΤΙΟΝ]... [ΠΑΤΧ|ΔΕΒΙϲΕ] [ΟΠΤΣ] [ΠΑΤΧ] [ΠΑΤΤΕΡΝ ...] [ΥΣΕΡΛΙΣΤ] [ΒΑΛΥΕ]... [ΩξΧ[ξΔ]] [ΩξΧ] [[-α|-υ|-β] [-γ ΩξΧ] ΤΕΡΜ [ΤΫΠΕ]] [[ϋεαρ-]μοντχ-δαϋ] [χουρ:μινυτε[:σεϲονδ]] [ϭυσ]:[σλοτ][.φυνϲ] [βενδορ]:[δεβιϲε] `%s' ισ νοτ α λοϲαλ δισκ `ϲρϋπτομουντ' ϲομμανδ φαιλσ: %s `λοοπϭαϲκ' ϲομμανδ φαιλσ: %s `νβσετενβ' φαιλεδ. 
Ϋου ωιλλ χαβε το σετ `ϭοοτ-δεβιϲε' βαριαϭλε μανυαλλϋ.  Ατ τχε ΙΕΕΕ1275 προμπτ, τϋπε:
  %s
 `οϭππατχ' νοτ φουνδ ιν παρεντ διρσ οφ `%s', νο ΙΕΕΕ1275 ναμε δισϲοβερϋ α βαλυε ωασ ασσιγνεδ το τχε αργυμεντ `%s' ωχιλε ιτ δοεσν'τ ρεϗυιρε αν αργυμεντ αϲϲεσσ δενιεδ αδδ ΝΟΤΕ σεγμεντ φορ ϲΧΡΠ ΙΕΕΕ1275 αδδρ αδδρεσσ νοτ φουνδ ασσυμε ινπυτ ισ α πξελινυξ ϲονφιγυρατιον φιλε. ασσυμε ινπυτ ισ α σϋσλινυξ ϲονφιγυρατιον φιλε. ασσυμε ινπυτ ισ αν ισολινυξ ϲονφιγυρατιον φιλε. αττεμπτ το ινσταλλ το ενϲρϋπτεδ δισκ ωιτχουτ ϲρϋπτοδισκ εναϭλεδ. Σετ `%s' ιν φιλε `%s'. αττεμπτ το ρεαδ ορ ωριτε ουτσιδε οφ δισκ `%s' αττεμπτ το ρεαδ ορ ωριτε ουτσιδε οφ παρτιτιον αττεμπτ το ρεαδ παστ τχε ενδ οφ φιλε αττεμπτ το σεεκ ουτσιδε οφ τχε φιλε αττεμπτινγ το ρεαδ τχε ϲορε ιμαγε `%s' φρομ ΓΡΥϬ αττεμπτινγ το ρεαδ τχε ϲορε ιμαγε `%s' φρομ ΓΡΥϬ αγαιν αβαιλαϭλε ΡΑΜ αβαιλαϭλε φορματσ: ϭαδ σιγνατυρε ϭασε_αδδρ = 0ξ%llx, λενγτχ = 0ξ%llx, %s
 ϭασε_αδδρ = 0ξ%llx, λενγτχ = 0ξ%llx, τϋπε = 0ξ%x
 ϭιτμαπ φιλε `%s' ισ οφ υνσυππορτεδ φορματ ϭλεσσ φορ ππϲ-ϭασεδ μαϲσ ϭλεσσ φορ ξ86-ϭασεδ μαϲσ ϭλοϲκλιστ ΦΙΛΕ ϭλοϲκλιστσ αρε ινϲομπλετε ϭλοϲκλιστσ αρε ινβαλιδ ϭλοϲκσιζε ισ νοτ διβισιϭλε ϭϋ 512 ϲαν'τ ϭρεακ 0 λοοπσ ϲαν'τ ϲομπρεσσ `%s' το `%s' ϲαν'τ δετερμινε φιλεσϋστεμ ον %s ϲαν'τ φινδ ϲομμανδ `%s' ϲαν'τ μουντ ενϲρϋπτεδ βολυμε `%s': %s ϲαν'τ οπεν `%s': %s ϲαν'τ οπεν φιλε %s, ινδεξ %d: ερρορ %d ϲαν'τ ρετριεβε ϭλοϲκλιστσ ϲαν'τ ρετριεβε ϭλοϲκλιστσ: %s ϲαν'τ σετ %dξ%d φοντ σιζε: Φρεετϋπε ερρορ %d: %s ϲαννοτ ϲομπρεσσ τχε κερνελ ιμαγε ϲαννοτ ϲοπϋ `%s' το `%s': %s ϲαννοτ δελετε `%s': %s ϲαννοτ φινδ ΕΦΙ διρεϲτορϋ ϲαννοτ φινδ α ΓΡΥϬ δριβε φορ %s.  ϲχεϲκ ϋουρ δεβιϲε.μαπ ϲαννοτ φινδ α δεβιϲε φορ %s (ισ /δεβ μουντεδ?) ϲαννοτ φινδ λοϲαλε `%s' ϲαννοτ γετ τρανσλατορ ϲομμανδ λινε φορ πατχ `%s': %s ϲαννοτ μακε τεμποραρϋ διρεϲτορϋ: %s ϲαννοτ μακε τεμποραρϋ φιλε: %s ϲαννοτ οπεν ΟΣ φιλε `%s': %s ϲαννοτ οπεν `%s': %s ϲαννοτ οπεν ϲονφιγυρατιον φιλε `%s': %s ϲαννοτ οπεν διρεϲτορϋ `%s': %s ϲαννοτ ρεαδ `%s' ϲορρεϲτλϋ ϲαννοτ ρεαδ `%s': %s ϲαννοτ ρεναμε τχε φιλε %s το %s ϲαννοτ ρεστορε τχε οριγιναλ διρεϲτορϋ ϲαννοτ σεεκ `%s': %s ϲαννοτ στατ `%s': %s ϲαννοτ ωριτε το ϲΔ-ΡΟΜ ϲαννοτ ωριτε το `%s': %s ϲαννοτ ωριτε το τχε στδουτ: %s ϲαρδ νοτ φουνδ ϲατ ΦΙΛΕ ϲχεϲκσυμ βεριφιϲατιον φαιλεδ ϲχοοσε τχε ϲομπρεσσιον το υσε φορ ϲορε ιμαγε ϲμπ ΦΙΛΕ ΛΟϲΑΛ ϲομΥΝΙΤ[,ΣΠΕΕΔ] ϲομπαρε φαιλ ατ οφφσετ %llu ϲομπρεσσ ΓΡΥϬ φιλεσ [οπτιοναλ] ϲοννεϲτιον ρεφυσεδ ϲοννεϲτιον τιμεουτ ϲονβερτ το ϭολδ φοντ ϲορε ιμαγε ισ τοο ϭιγ (0ξ%x > 0ξ%x) ϲορε.ιμγ βερσιον μισματϲχ ϲουλδν'τ αυτοϲονφιγυρε %s ϲουλδν'τ φινδ ΙΕΕΕ1275 δεβιϲε πατχ φορ %s.
Ϋου ωιλλ χαβε το σετ `ϭοοτ-δεβιϲε' βαριαϭλε μανυαλλϋ ϲουλδν'τ φινδ α νεϲεσσαρϋ μεμϭερ δεβιϲε οφ μυλτι-δεβιϲε φιλεσϋστεμ ϲουλδν'τ φινδ γελι ϲονσυμερ ϲουλδν'τ φινδ γεομ `παρτ' ϲλασσ ϲουλδν'τ οπεν γεομ ϲουλδν'τ ρεαδ ΕΛΙ μεταδατα ϲουλδν'τ ρετριεβε ΥΥΙΔ ϲουλδν'τ ρετριεβε γελι ΥΥΙΔ ϲουλδν'τ ρετριεβε ρανδομ δατα ϲουλδν'τ ρετριεβε ρανδομ δατα φορ σαλτ ϲουλδν'τ σενδ νετωορκ παϲκετ ϲπ ΦΙΛΕ ΛΟϲΑΛ ϲρϲ ΦΙΛΕ ϲρϋπτογραπχιϲ ερρορ νυμϭερ %d ϲυρρεντ διρεϲτορϋ οφ τχε σϋσλινυξ [δεφαυλτ ισ παρεντ διρεϲτορϋ οφ ινπυτ φιλε]. ϲυρρεντ διρεϲτορϋ οφ τχε σϋσλινυξ ασ ιτ ωιλλ ϭε σεεν ον ρυντιμε  [δεφαυλτ ισ παρεντ διρεϲτορϋ οφ ινπυτ φιλε]. ϲϋγωιν_ϲονβ_πατχ() φαιλεδ δελετε δεβιϲε μαπ ιφ ιτ αλρεαδϋ εξιστσ δεστινατιον υνρεαϲχαϭλε δεβιϲε ϲουντ εξϲεεδσ λιμιτ δεβιϲε τρεε μυστ ϭε συππλιεδ (σεε `δεβιϲετρεε' ϲομμανδ) δισαϭλε χιντινγ δισκ `%s' νοτ φουνδ δισκ δοεσ νοτ εξιστ, σο φαλλινγ ϭαϲκ το παρτιτιον δεβιϲε %s δισκ μοδυλε το υσε (ϭιοσδισκ ορ νατιβε). Τχισ οπτιον ισ ονλϋ αβαιλαϭλε ον ϬΙΟΣ ταργετ. δισκ ρεαδ φαιλσ ατ οφφσετ %lld, λενγτχ %lld δισκϭοοτ.ιμγ σιζε μυστ ϭε %u ϭϋτεσ δο νοτ ινσταλλ ϭοοτσεϲτορ δο νοτ προϭε φορ φιλεσϋστεμσ ιν ΔΕΒΙϲΕ δομαιν ναμε ϲομπονεντ ισ τοο λονγ δον'τ υπδατε ΛΕΔ στατε δον'τ υπδατε τχε `ϭοοτ-δεβιϲε'/`Ϭοοτ*' ΝΒΡΑΜ βαριαϭλεσ. Τχισ οπτιον ισ ονλϋ αβαιλαϭλε ον ΕΦΙ ανδ ΙΕΕΕ1275 ταργετσ. δονε εμϭεδ ΦΙΛΕ ασ α μεμδισκ ιμαγε
Ιμπλιεσ `-π (μεμδισκ)/ϭοοτ/γρυϭ' ανδ οβερριδεσ ανϋ πρεφιξ συππλιεδ πρεβιουσλϋ, ϭυτ τχε πρεφιξ ιτσελφ ϲαν ϭε οβερριδδεν ϭϋ λατερ οπτιονσ εμϭεδ ΦΙΛΕ ασ αν εαρλϋ ϲονφιγ εμϭεδ ΦΙΛΕ ασ πυϭλιϲ κεϋ φορ σιγνατυρε ϲχεϲκινγ εμϭεδδινγ ισ νοτ ποσσιϭλε, ϭυτ τχισ ισ ρεϗυιρεδ φορ ΡΑΙΔ ανδ ΛΒΜ ινσταλλ εμϭεδδινγ ισ νοτ ποσσιϭλε, ϭυτ τχισ ισ ρεϗυιρεδ φορ ϲροσσ-δισκ ινσταλλ εναϭλε ΑΡϲΣ (ϭιγ-ενδιαν μιπσ μαϲχινεσ, μοστλϋ ΣΓΙ) ϭοοτ. Δισαϭλεσ ΧΦΣ+, ΑΠΜ, σπαρϲ64 ανδ ϭοοτ ασ δισκ ιμαγε φορ ι386-πϲ εναϭλε σπαρϲ ϭοοτ. Δισαϭλεσ ΧΦΣ+, ΑΠΜ, ΑΡϲΣ ανδ ϭοοτ ασ δισκ ιμαγε φορ ι386-πϲ εναϭλινγ %s συππορτ ... εντερ: ϭοοτ, `ε': οπτιονσ, `ϲ': ϲμδ-λινε ενβιρονμεντ ϭλοϲκ τοο σμαλλ ερρορ: %s.
 εξπεϲτ ΓΡΥϬ ιμαγεσ υνδερ τχε διρεϲτορϋ ΔΙΡ/%s ινστεαδ οφ τχε %s διρεϲτορϋ φαιλεδ το ϲοπϋ Γρυϭ το τχε ΠΡεΠ παρτιτιον φαιλεδ το γετ ϲανονιϲαλ πατχ οφ `%s' φαιλεδ το ρεαδ τχε σεϲτορσ οφ τχε ϲορε ιμαγε φαιλυρε ρεαδινγ σεϲτορ 0ξ%llx φρομ `%s' φαιλυρε το ρεαδ πασσωορδ φαιλυρε ωριτινγ σεϲτορ 0ξ%llx το `%s' φαλσε φαυλτϋ ΡΑΜ (ϬαδΡΑΜ) φιλε `%s' νοτ φουνδ φιλεναμε εξπεϲτεδ φιλεναμε ορ τεμπο ανδ νοτεσ εξπεϲτεδ φιλεσϋστεμ `%s' δοεσ νοτ συππορτ λαϭελσ φιλεσϋστεμ `%s' δοεσν'τ συππορτ ϭλοϲκλιστσ φιλεσϋστεμ ον %s ισ νειτχερ ΧΦΣ νορ ΧΦΣ+ φιρμωαρε ιμαγε ισ τοο ϭιγ φορϲε αυτοχιντ φουρ αργυμεντσ εξπεϲτεδ φωσταρτ.ιμγ δοεσν'τ ματϲχ τχε κνοων γοοδ βερσιον. προϲεεδ ατ ϋουρ οων ρισκ γενερατε αν ιμαγε ιν ΦΟΡΜΑΤ γιβε α σχορτ υσαγε μεσσαγε γιβε τχισ χελπ λιστ γιβεν αργυμεντ ισ α σϋστεμ δεβιϲε, νοτ α πατχ γρυϭ-μκιμαγε ισ ϲομπιλεδ ωιτχουτ ΞΖ συππορτ γρυϭ> χανγ φορ ΣΕϲΣ σεϲονδσ (δεφαυλτ 3600) χεξ ΦΙΛΕ ιγνορε ϭιτμαπ στρικεσ ωχεν λοαδινγ ινϲορρεϲτ τερμιναλ διμενσιονσ σπεϲιφιϲατιον ινιτρδ αλρεαδϋ λοαδεδ ινσταλλ ΦΟΝΤΣ [δεφαυλτ=%s] ινσταλλ ΓΡΥϬ φορ ΤΑΡΓΕΤ πλατφορμ [δεφαυλτ=%s] ινσταλλ ΓΡΥϬ ιμαγεσ υνδερ τχε διρεϲτορϋ ΔΙΡ/%s ινστεαδ οφ τχε %s διρεϲτορϋ ινσταλλ ΤΧΕΜΕΣ [δεφαυλτ=%s] ινσταλλ δεβιϲε ισν'τ σπεϲιφιεδ ινσταλλ εβεν ιφ προϭλεμσ αρε δετεϲτεδ ινσταλλ ονλϋ ΛΟϲΑΛΕΣ [δεφαυλτ=αλλ] ινσταλλ ονλϋ ΜΟΔΥΛΕΣ ανδ τχειρ δεπενδενϲιεσ [δεφαυλτ=αλλ] ινβαλιδ ΠϬΚΔΦ2 πασσωορδ ινβαλιδ αρϲχ-δεπενδεντ ΕΛΦ μαγιϲ ινβαλιδ αρϲχ-ινδεπενδεντ ΕΛΦ μαγιϲ ινβαλιδ αργυμεντ ινβαλιδ ϭλοϲκ σιζε ινβαλιδ ϲολορ σπεϲιφιϲατιον `%s' ινβαλιδ δεβιϲε τρεε ινβαλιδ ενβιρονμεντ ϭλοϲκ ινβαλιδ φιλε ναμε `%s' ινβαλιδ φοντ ρανγε ινβαλιδ λινε φορματ: %s ινβαλιδ μοδινφο φιλε `%s' ινβαλιδ παραμετερ %s ινβαλιδ σκιπ βαλυε %lld ινβαλιδ βαριαϭλε ναμε `%s' ινβαλιδ βιδεο μοδε σπεϲιφιϲατιον `%s' ινβαλιδ ζΙμαγε ιοϲτλ ΓΕΤ_ΑΡΡΑΫ_ΙΝΦΟ ερρορ: %s ιοϲτλ ΓΕΤ_ΔΙΣΚ_ΙΝΦΟ ερρορ: %s ιοϲτλ ΡΑΙΔ_ΒΕΡΣΙΟΝ ερρορ: %s κερνελ ιμαγε ισ τοο ϭιγ (0ξ%x > 0ξ%x) λιστ νετωορκ αδδρεσσεσ λιστ νετωορκ ϲαρδσ λιστ νετωορκ ρουτεσ λσ ΠΑΤΧ λζοπ φιλε ϲορρυπτεδ μακε τχε δριβε αλσο ϭοοταϭλε ασ φλοππϋ (δεφαυλτ φορ φδΞ δεβιϲεσ). Μαϋ ϭρεακ ον σομε ϬΙΟΣεσ. μισσινγ `%c' σϋμϭολ μισσινγ μανδατορϋ οπτιον φορ `%s' μοδυλε `%s' ισν'τ λοαδεδ μοδυλε ισν'τ λοαδεδ ναμε νεεδ αν ιμαγε ανδ μουντποιντ νο ΑΠΜ φουνδ νο ΔΧϲΠ ινφο φουνδ νο ΔΧϲΠ οπτιον %d φουνδ νο ΔΧϲΠ οπτιονσ φουνδ νο ΔΝΣ ρεϲορδ φουνδ νο ΔΝΣ ρεπλϋ ρεϲειβεδ νο ΔΝΣ σερβερσ ϲονφιγυρεδ νο ΕΦΙ ρουτινεσ αρε αβαιλαϭλε φορ ϋουρ πλατφορμ νο ΕΦΙ ρουτινεσ αρε αβαιλαϭλε ωχεν ρυννινγ ιν ϬΙΟΣ μοδε νο ΙΕΕΕ1275 ρουτινεσ αρε αβαιλαϭλε φορ ϋουρ πλατφορμ νο ΣΓΙ ρουτινεσ αρε αβαιλαϭλε φορ ϋουρ πλατφορμ νο `/' ιν ϲανονιϲαλ φιλεναμε νο ϲομμανδ ισ σπεϲιφιεδ νο ϲομπρεσσιον ισ αβαιλαϭλε φορ ϋουρ πλατφορμ νο δεϲρϋπτιον κεϋ αβαιλαϭλε νο χιντσ αβαιλαϭλε φορ ϋουρ πλατφορμ. Εξπεϲτ ρεδυϲεδ περφορμανϲε νο νετωορκ ϲαρδ φουνδ νο ρανδομ νυμϭερ γενερατορ ισ αβαιλαϭλε φορ ϋουρ ΟΣ νο σερβερ ισ σπεϲιφιεδ νο συϲχ παρτιτιον νο συιταϭλε βιδεο μοδε φουνδ νο σϋμϭολ ταϭλε νο τερμιναλ σπεϲιφιεδ νο τερμινατορ ιν τχε ϲορε ιμαγε νον-σεϲτορ-αλιγνεδ δατα ισ φουνδ ιν τχε ϲορε φιλε νοτ α διρεϲτορϋ νοτ α πριμαρϋ παρτιτιον νοτ α ρεγυλαρ φιλε νοτ ιν φυνϲτιον ϭοδϋ ονε αργυμεντ εξπεϲτεδ ονλϋ ιπβ4 ονλϋ ιπβ6 οτχερ σοφτωαρε ισ υσινγ τχε εμϭεδδινγ αρεα, ανδ τχερε ισ νοτ ενουγχ ροομ φορ ϲορε.ιμγ.  Συϲχ σοφτωαρε ισ οφτεν τρϋινγ το στορε δατα ιν α ωαϋ τχατ αβοιδσ δετεϲτιον.  Ωε ρεϲομμενδ ϋου ινβεστιγατε ουτ οφ μεμορϋ ουτπυτ α γενερατεδ ιμαγε το ΦΙΛΕ [δεφαυλτ=στδουτ] ουτπυτ φιλε μυστ ϭε σπεϲιφιεδ ουτπυτ γενερατεδ ϲονφιγ το ΦΙΛΕ [δεφαυλτ=στδουτ] οβερφλοω ισ δετεϲτεδ πασσωορδσ δον'τ ματϲχ περφορμ α ϭοοτπ αυτοϲονφιγυρατιον πχϋσιϲαλ βολυμε %s νοτ φουνδ πρε-λοαδ σπεϲιφιεδ μοδυλεσ ΜΟΔΥΛΕΣ πρεφερ ιπβ4 πρεφερ ιπβ6 πρεματυρε ενδ οφ φιλε πρεματυρε ενδ οφ φιλε %s πρεσσ ϲαπσΛοϲκ κεϋ πρεσσ Ινσερτ κεϋ πρεσσ ΝυμΛοϲκ κεϋ πρεσσ ΣϲρολλΛοϲκ κεϋ πρεσσ ΣϋσΡϗ πρεσσ λεφτ αλτ πρεσσ λεφτ ϲτρλ πρεσσ λεφτ σχιφτ πρεσσ ριγχτ αλτ πρεσσ ριγχτ ϲτρλ πρεσσ ριγχτ σχιφτ πριντ προγραμ βερσιον πριντ τχε βερσιον ινφορματιον ανδ εξιτ πριντ τχισ μεσσαγε ανδ εξιτ πριντ βερϭοσε μεσσαγεσ. πυϭλιϲ κεϋ %08x νοτ φουνδ ρεαδ ερρορ ατ οφφσετ %llu: %s ρεαδ τεξτ φρομ ΦΙΛΕ. ρελατιβε συϭδιρεϲτορϋ ον νετωορκ σερβερ ρελοϲατιον 0ξ%x ισ νοτ ιμπλεμεντεδ ϋετ ρεσερβεδ ΡΑΜ ρετριεβε ΔΧϲΠ οπτιον ανδ σαβε ιτ ιντο ΒΑΡ. Ιφ ΒΑΡ ισ - τχεν πριντ τχε βαλυε. ροοτ διρεϲτορϋ ασ ιτ ωιλλ ϭε σεεν ον ρυντιμε [δεφαυλτ=/]. ροοτ διρεϲτορϋ οφ ΤΦΤΠ σερβερ ροοτ διρεϲτορϋ οφ τχε σϋσλινυξ δισκ [δεφαυλτ=/]. ρουτε λοοπ δετεϲτεδ σαβε ΡΟΜ ιμαγεσ ιν ΔΙΡ [οπτιοναλ] σαβε ουτπυτ ιν ΦΙΛΕ [ρεϗυιρεδ] σελεϲτ φαϲε ινδεξ σεριαλ πορτ `%s' ισν'τ φουνδ σετ [ΝΑΜΕ=ΒΑΛΥΕ ...] σετ ϲαπσλοϲκ μοδε σετ φοντ ασϲεντ σετ φοντ δεσϲεντ σετ φοντ φαμιλϋ ναμε σετ φοντ ρανγε σετ φοντ σιζε σετ ινπυτ φιλεναμε φορ 32-ϭιτ παρτ. σετ ινπυτ φιλεναμε φορ 64-ϭιτ παρτ. σετ ινπυτ φιλεναμε. Δεφαυλτ ισ ΣΤΔΙΝ σετ ινσερτ μοδε σετ νυμλοϲκ μοδε σετ ουτπυτ φιλεναμε. Δεφαυλτ ισ ΣΤΔΟΥΤ σετ παυσε μοδε σετ πρεφιξ διρεϲτορϋ [δεφαυλτ=%s] σετ σϲρολλλοϲκ μοδε σετ τχε λαϭελ το ρενδερ σετ τχε προγραμ ναμε σιζε στρετϲχ|νορμαλ σϋμϭολ `%s' νοτ φουνδ τεμποραρϋ τερμιναλ %s ισν'τ φουνδ ορ ιτ'σ νοτ χανδλεδ ϭϋ τερμινφο τερμιναλ `%s' ισν'τ φουνδ τχε ΙΔ οφ ϭοοτλοαδερ. Τχισ οπτιον ισ ονλϋ αβαιλαϭλε ον ΕΦΙ ανδ Μαϲσ. τχε ΠΡεΠ παρτιτιον ισ νοτ εμπτϋ. Ιφ ϋου αρε συρε ϋου ωαντ το υσε ιτ, ρυν δδ το ϲλεαρ ιτ: `%s' τχε αργυμεντ `%s' ρεϗυιρεσ αν ιντεγερ τχε ϲχοσεν παρτιτιον ισ νοτ α ΠΡεΠ παρτιτιον τχε δεβιϲε.μαπ εντρϋ `%s' ισ ινβαλιδ. Ιγνορινγ ιτ. Πλεασε ϲορρεϲτ ορ δελετε ϋουρ δεβιϲε.μαπ τχε δριβε %s ισ δεφινεδ μυλτιπλε τιμεσ ιν τχε δεβιϲε μαπ %s τχε δριβε ναμε `%s' ιν δεβιϲε.μαπ ισ ινϲορρεϲτ. Υσινγ %s ινστεαδ. Πλεασε υσε τχε φορμ [χφϲ]δ[0-9]* (Ε.γ. `χδ0' ορ `ϲδ') τχε φιρστ σεϲτορ οφ τχε ϲορε φιλε ισ νοτ σεϲτορ-αλιγνεδ τχε ινσταλλατιον δεβιϲε ισ ρεμοβαϭλε. Τχισ οπτιον ισ ονλϋ αβαιλαϭλε ον ΕΦΙ. τχε παρτιτιον τϋπε 0ξ%x ισν'τ βαλιδ τχε σεϲτορσ οφ τχε ϲορε φιλε αρε τοο φραγμεντεδ τχε σιζε οφ `%s' ισ νοτ %u τχε σιζε οφ `%s' ισ τοο λαργε τχε σιζε οφ `%s' ισ τοο σμαλλ τχισ ΕΛΦ φιλε ισ νοτ οφ τχε ριγχτ τϋπε τχισ ΓΠΤ παρτιτιον λαϭελ ϲονταινσ νο ϬΙΟΣ Ϭοοτ Παρτιτιον; εμϭεδδινγ ωον'τ ϭε ποσσιϭλε τχισ ΛΔΜ χασ νο Εμϭεδδινγ Παρτιτιον; εμϭεδδινγ ωον'τ ϭε ποσσιϭλε τχισ μσδοσ-στϋλε παρτιτιον λαϭελ χασ νο ποστ-ΜϬΡ γαπ; εμϭεδδινγ ωον'τ ϭε ποσσιϭλε τχρεε αργυμεντσ εξπεϲτεδ τιμε ουτ οπενινγ `%s' τιμεουτ ρεαδινγ `%s' τιμεουτ: ϲουλδ νοτ ρεσολβε χαρδωαρε αδδρεσσ τοο δεεπ νεστινγ οφ σϋμλινκσ τρανσλατορ `%s' φορ πατχ `%s' χασ σεβεραλ νον-οπτιον ωορδσ, ατ λεαστ `%s' ανδ `%s' τρανσλατορ `%s' φορ πατχ `%s' ισ γιβεν ονλϋ οπτιονσ, ϲαννοτ φινδ δεβιϲε παρτ τρανσλατορ ϲομμανδ λινε ισ εμπτϋ φορ πατχ `%s' τωο αργυμεντσ εξπεϲτεδ τϋπε υναϭλε το ιδεντιφϋ α φιλεσϋστεμ ιν %s; σαφετϋ ϲχεϲκ ϲαν'τ ϭε περφορμεδ υναλιγνεδ δεβιϲε σιζε υνεξπεϲτεδ ΕΦΙ ερρορ υνεξπεϲτεδ ενδ οφ φιλε υνκνοων αργυμεντ `%s' υνκνοων ϲομπρεσσιον %d
 υνκνοων δεβιϲε τϋπε %s
 υνκνοων φιλεσϋστεμ υνκνοων κινδ οφ ΡΑΙΔ δεβιϲε `%s' υνκνοων ρεγεξπ ερρορ υνκνοων ταργετ φορματ %s
 υνκνοων τερμινφο τϋπε `%s' υνρεϲογνισεδ ΔΧϲΠ οπτιον φορματ σπεϲιφιϲατιον `%s' υνρεϲογνισεδ νετωορκ αδδρεσσ `%s' υνρεϲογνισεδ νετωορκ ιντερφαϲε `%s' υνρεϲογνιζεδ νυμϭερ υνρεσολβαϭλε αδδρεσσ %s υνσετ [ΝΑΜΕ ...] υνσυππορτεδ ΧΤΤΠ ερρορ %d: %s υνσυππορτεδ ΧΤΤΠ ρεσπονσε υνσυππορτεδ ΡΑΙΔ βερσιον: %d.%d υνσυππορτεδ γζιπ φορματ υνσυππορτεδ πλατφορμ %s
 υνσυππορτεδ σεριαλ πορτ φλοω ϲοντρολ υνσυππορτεδ σεριαλ πορτ παριτϋ υνσυππορτεδ σεριαλ πορτ σπεεδ υνσυππορτεδ σεριαλ πορτ στοπ ϭιτσ νυμϭερ υνσυππορτεδ σεριαλ πορτ ωορδ λενγτχ υσε ϲΟΛΟΡ φορ ϭαϲκγρουνδ υσε ϲΟΛΟΡ φορ λαϭελ υσε ϲΟΛΟΡ φορ λαϭελ ϭαϲκγρουνδ υσε ϲΟΛΟΡ φορ τεξτ υσε ΔΙΡ ασ τχε ΕΦΙ Σϋστεμ Παρτιτιον ροοτ. υσε ΔΙΡ φορ ΠΠϲ ΜΑϲ ινσταλλ. υσε ΦΙΛΕ ασ φοντ (ΠΦ2). υσε ΦΙΛΕ ασ φοντ φορ λαϭελ υσε ΦΙΛΕ ασ τχε ϭοοτ ιμαγε [δεφαυλτ=%s] υσε ΦΙΛΕ ασ τχε ϲορε ιμαγε [δεφαυλτ=%s] υσε ΦΙΛΕ ασ τχε δεβιϲε μαπ [δεφαυλτ=%s] υσε ΦΙΛΕ ασ ξορρισο [οπτιοναλ] υσε ΓΡΥϬ φιλεσ ιν τχε διρεϲτορϋ ΔΙΡ [δεφαυλτ=%s] υσε ΣΤΡΙΝΓ ασ προδυϲτ ναμε υσε ΣΤΡΙΝΓ ασ προδυϲτ βερσιον υσε ιδεντιφιερ φιλε εβεν ιφ ΥΥΙΔ ισ αβαιλαϭλε υσε ιμαγεσ ανδ μοδυλεσ υνδερ ΔΙΡ [δεφαυλτ=%s/<πλατφορμ>] υσε τχεμεσ υνδερ ΔΙΡ [δεφαυλτ=%s] υσε τρανσλατιονσ υνδερ ΔΙΡ [δεφαυλτ=%s] βαριαϭλε `%s' ισν'τ σετ βισυαλλϋ-ορδερεδ ΥΤΦ-8 ωαιτ υντιλ α δεϭυγγερ ωιλλ ατταϲχ ωιλλ νοτ προϲεεδ ωιτχ ϭλοϲκλιστσ ωριτε ουτπυτ το ΦΙΛΕ [δεφαυλτ=στδουτ]. ωρονγ ΕΛΙ μαγιϲ ορ βερσιον ξνυ_υυιδ ΔΕΒΙϲΕ ξζ φιλε ϲορρυπτεδ ορ υνσυππορτεδ ϭλοϲκ οπτιονσ ϋου ϲαν'τ δελετε τχισ αδδρεσσ ϋου νεεδ το λοαδ τχε κερνελ φιρστ ϋουρ ϬΙΟΣ Ϭοοτ Παρτιτιον ισ τοο σμαλλ; εμϭεδδινγ ωον'τ ϭε ποσσιϭλε ϋουρ ϲορε.ιμγ ισ υνυσυαλλϋ λαργε.  Ιτ ωον'τ φιτ ιν τχε εμϭεδδινγ αρεα ϋουρ εμϭεδδινγ αρεα ισ υνυσυαλλϋ σμαλλ.  ϲορε.ιμγ ωον'τ φιτ ιν ιτ.                                                                                                                                                                                        boot/grub/locale/en@hebrew.mo                                                                       0000600 0001750 0001750 00000510364 13417732100 0015132 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                            L(    |P      `k  #   ak      k     k     k     k  $   k     l  6   )l     `l     gl  	   sl     }l     l     l     l     l     l  .   l  .   'm  %   Vm     |m     m    m    n    o     p  8   p  '   p  7   q  F   Tq  v   q  +   r     >r      Or     pr  !   r     r  ,   r     r     s  $   s     @s  *   \s     s     s     s     s     s  
   s  	   s     s     t  ,   )t  ,   Vt  ,   t  '   t  -   t      u  (   'u  (   Pu  )   yu     u     u     u     u     u  "   v  4   %v     Zv     bv  7   ov     v     v  1   v     v     w  %   w  '   @w  %   hw  '   w     w     w     w     w     w     x     
x     x     (x     Hx     Zx     hx     xx     x  3   x     x  $   x     x     	y     "y     1y     By     Yy     ny  -   y     y  !   y     y     z     $z  #   9z     ]z  `   z  Z   F{     {     {     {     {     {     {     {     |     |  0   9|  3   j|     |     |     |     |     }     }     *}     A}     W}     e}     |}     }     }     }  %   }     }     }     }     ~     +~     F~     \~     k~     ~~     ~  *   ~  3   ~  1     1   8  2   j                  1        -  #   L     p  "     8                    	   5  #   ?     c                    ԁ       )        $     C     a  "     P               H     &   f            !     ,   ΃                 	   (  !   2  *   T       '             Ԅ             $        =     O     a     |            
   х  
   ܅       1        ,     :     G     `  3   |  >     $             +     H     `     {       +        ۇ       o     #               $   ߈            '   :  9   b            z   Ӊ  "   N     q     x  8        Ŋ  
   ܊                    .     ʋ  +             +     @     V  "   i            (        ׌  #     &     ?   :  '   z  @                            &  "   8  0   [                 7                            "     .     4  0   ;     l                 2     %             -  *   <  6   g  +        ʐ            !   ̑  d     e   S  d     i     o     H        A     T     j     {                    Ք  #             0     H  1   Z  )                       ԕ  /             "     9  5   V            K   ǖ  &        :     V     k            D        ח     ܗ  '     P   	     Z     y  	                       Ř     V  '          +        J     [  )   w               ՚               #     ;     Q  $   f            "        ۛ     ݛ       (             #     )  "   1  +   T  -             ǜ     ֜            O   	     Y     o                 %          )     !   /  "   Q     t       +        Ӟ               	  !        =     Y     r     ~                џ                    2     F  4   V                    Ԡ          
     #     <      Y  !   z       4     M     2   9     l       *     8   Ϣ               ,     D     [     s  3     $     +   ٣               (     =     R     e                     դ     פ  D       4                 ;   5     q       !        ҧ       s        |               ¨     ը                    -     1     7                         Ǫ     Ӫ            '   "  
   J     U     d     z                           H   ث  L   !     n                 %               #        9     V     s     |                 ӭ       "     (   $     M     i  %   v                 #   خ  *        '     )     <  #   A     e     j  	   |  	     "     ;     #     <        P     ^     |  .     	        ð  `   հ     6  !   K  )   m                      q        (     <     S     b     y                    ֲ  "             0     J     b     y                 #   ѳ  a        W     t  g             }       -          !          "   )  '   L  Q   t     ƶ                         4     Q     n               ķ                     '     <      O     p                 -   и            "   ,  b   O  )        ܹ          
  ,   %     R     k  	   p  "   z  %        ú     Ⱥ     ݺ  
          &     )        I  5   \  ^          $     %   0     V  ^   	  _   h  }   Ƚ     F  )     '   '  >   O  D     !   ӿ  '     -     #   K     o  )          )           )     ,   G     t                      E     $   :  A   _  )                             >     _  q   t       :        >     \  `   k               	           6     R  0   g                 )     &     #   2  -   V                           )   
     4  %   D  %   j  ,     '     :           -   ?  0   m  /          .               '   4  $   \  "                    2     Q     *   `            )     o        4     M  6        >     @     G  0   N        !     "     #        	          9     O  !   n       
          <             "  %   8  >   ^                                d     *   a  (     ,               0     6   E     |                           0          !        A     _  $   p                           $     "   6  $   Y     ~                                         ,     9     W     r       '               $     +   -  "   Y     |  )                              '   &     N     m       <                %        *     C     Z     m  m                  +     E     ^  +   x  3     1        
  '     -   @     n  '   w  '     .     	                   5     Q     m                                *     ?   @       B     p        G  /               .   -  O   \  )               	     <        B  5   `                           :        F  1   Y                                                       0     A     G  	   T     ^     m                                               '  
   5  
   @  	   K     U  !   [  )   }                           n   #  F     N        (  "   6     Y     ^  .   p  .     /     W     -   V  -     $     #     0     6   ,     c     q       (     1     )             0     I     X     r  !                          %        :  &   N     u       0                        3  7   M  .          4     #        %     D     a  '   v                      %        3     H     ]     t                      ,                  -     I     h     {       #               _     B   [                                   ;  &   Y                      N     m   !       &               7        ;     K  ;   _  V     +     "        A  &   [  !          r        .     3       /     H   '  F   p  w     N   /     ~  (               I     )   1  $   [  ,     '          %                  .     B  $   T  '   y  *     (                    J   6                 -     +        &  $   ,     Q  "   Z  +   }            -     J        S     o  %     "     9              )  "   J     m     ~                               
     "     <     Q     i  %                         %        9     P     c     w       [          !        %     >     R     W     t                                /     7   6  4   n  /               -        6  @   R       3                       #     3     I  1   i                           	     	               1          0   5     f     {  !          "                      !    :    M    ^    p                                 &   
    1    M    e         '    &        L    9   [     0        !           9    K    h    }                     #    #    $   *    O    _ &   p     !                   	         	   3 7   =    u D    ]    %   2 ,   X [    ;    w    7    K    #   	 /   =	    m	    	    	 &   	 U   	 @   A
 Q   
    
    
     +       D R   a L    .       0    G F   L                                 .    O    d    ~ 2    !    #           &    >    O    m             $            (   : #   c                 )           -    E '   ` '    '        0       (    C -   a 8    !    '           * !   A     c &            .        !   # B   E E    B    r   =    F    2   	 6   < )   s X    0    j   ' 
                @    #   " -   F /   t     f    `   & N            [   Z  T d   >   ! {   S! [   !    +"    "   Q# i   `$    $ @   $ $   (% H   M% 9   % ]   % 8   .& (   g& L   & 0   & S   '     b'    '    ' /   ' D   '    !(    3( 6   G(    ~( U   ( l   ( U   _) M   ) W   * F   [* O   * N   * P   A+ ?   + ?   +    ,    (,    8, N   H, x   ,    -    - Y   0-    - /   - b   - :   ,.    g. W   j. ]   . W    / ]   x/ 	   /    / D   / .   '0 2   V0    0 $   0    0 3   0 #   1    %1     D1    e1    1 h   1    2 K   2 7   ]2 ;   2    2    2 ,   	3 ,   63 7   c3 n   3 ?   
4 Q   J4 2   4 @   4 .   5 M   ?5 @  5    6    7 ?   8 C   8    9    
9 5   9    H9    Y9 5   q9 C   9 s   9 y   _: :   : <   ; 6   Q; :   ; @   ;    < 5    < 7   V<    < 9   < $   <    =    =    "= U   >= G   =    = '   = +   > =   H> 4   >    > +   > '   ? 8   /? ^   h? u   ? {   =@ u   @ v   /A H   A U   A J   EB v   B I   C [   QC @   C J   C    9D E   D    E 7   .E    fE R   zE 6   E +   F R   0F G   F 7   F '   G g   +G J   G I   G F   (H P   oH    H (   xI (   I    I Z   J 7   J    K D   %K Z   jK    K    K E   K    .L S   CL \   L ;   L T   0M ,   M )   M 2   M 2   N Y   BN &   N &   N ?   N =   *O =   hO F   O    O    P .   P O   EP     P    P >   P 3   Q l   FQ g   Q S   R 9   oR <   R 9   R F    S M   gS /   S d   S A   JT @   T   T R   U 0   &V P   WV P   V <   V B   6W \   yW    W 4   YX B   X (  X V   Y    QZ '   bZ    Z 1   [    E[     d[ )   [ 7   [ k  [ A   S] e   ] 0   ] *   ,^ 3   W^ %   ^ <   ^ !   ^    _ X   0_ 9   _ N   _ e   `    x` g   a    a    "b )   Bb ,   lb 6   b .   b P   b n   Pc    c    c    c v   d    xd    d %   d 3   d    d    e    -e p   >e ,   e )   e +   f 9   2f w   lf Q   f +   6g    bg ^   g f   g J   Eh A   h *   h   h S   j    >k    (l    m    n    n    o 5   p %   p      q &   !q 0   Hq 5   yq 4   q 5   q P   r B   kr 7   r "   r n   	s Z   xs    s    s .   s &   t h   ?t "   t 8   t :   u    ?u C   u @   
v    Kv [   v ;   Fw .   w 9   w 
   w    w    x    x 
   x Z   x    y H   y    z    (z    <z @   Cz *   z E  z -  { a   #} #   } j   } #   ~ C   8~ `   |~ ?   ~ 6    ;   T @    *    3    ,   0 2   ] [    &    D    \   X         #   ҁ i       `    m    } S    `    e   C 1       ۃ "    )    !   G    i 3   ( 4   \ 4       ƅ ,    \    M   o `    H    L   g <    0    l   " 3    '   È !    '    I   5 >    6        2    E   G :    &   Ȋ /    L    F   l 3    %    w    H    (   Ό :    <   2 >   o :    <    B   & L   i O    :    {   A     y   v <    I   - d   w    ܑ    ^ 7   { 6    2    8       V x   s Q    l   > 2       ޔ (    ,   & $   S >   x D    C    (   @    i <   l       A    R    c A   v     Q   I J    O    6   6 I   m    9   ў @    )   L '   v 4    5   ӟ <   	 %   F 
   l    w       (    1   գ         ?   4 5   t 6    Y       ; '   R 5   z     0            *    >   <    {    % .   ا 4        < &   ] Z    ;   ߨ ;    Q   W B    A       . 5   @ M   v Q   Ī N       e J   ~ U   ɫ H    #   h R    4   ߬     :   , M   g e        -     
   N T   Y     (            Q       h S       H    ְ A       0 j   O     *   ʱ     5   ۲ Z    `   l    ͳ    ڳ             %    ;   !    ] 7   z +    1   ޵ 3    A   D J    N   Ѷ 9     ?   Z 5    3   з 3    /   8 =   h /    V   ָ    - A    C   Y     #  } A    I    u   - .    O   ҽ &   " O   I W        A    9    &   3 !   Z .   | <    @    <   ) @   f ;    ?    2   # #   V O   z 1    %    4   " E   W )    %    J    k   8 7    )    Q       X [   8 5    8    8    P   < 5            A    K   # 
   o /   z             X    f   : %    q       9 9    V   W T                 j   x d    Y   t r       A H    U    g   g Q    F   ! `   h @    b   
 A   m Y    c   	 J   m 5    ;    =   * %   h m    S       P `    9   N =    7    D    B   C *       >        E   y          J    E    9   R 5    <    (    n   ( F    -    /    ]   < V    M    n   ? >    :    D   ( %   m >    \    %   / T   U R    j    X   h     P   D t    u   
 x        t    ,    0    `    Y   M X         C    "   W u   z     ^            _   0    3       u   Y             o    J   \ K    K    Q   ? +    C    ,    C   . P   r 3        5       H 3    2    V   7         
   /    : M   H /    +        a    h   G U    0    4   7 a   l n       =    P 3   p '        7    l    *   ~ E    F    $   6 Z   [ 4    ,    G    )   ` <    Q    N    W   h 3    0    1   % L   W 1                      9 B   Q ;    8    @   	  a   J  E     >     \   1 q    W        X Y   f "    ?    B   # *   f )    Y    D    E   Z +    z    O   G     M    1    .   ( .   W =        =    ?    C   	 =   M ?    d    y   0	 n   	 !   
 _   ;
 r   
     X     X   y ^       1 8   F 4    :    >    :   . >   i 9    =    3     B   T     _        2          ` L  g W    .    '   ; ^   c     U   Y ,            z   
 :    Z        3   :     n 2    7    y    %   t v    C    .   U         
    
    !        ?    )   8 #   b 
            %    =    4   * =   _ *    :    .    7   2    j    y                     <    U   ) (    %    1    F     @   G        v         E         (     }   H  y     }   @!    ! d   ~" m   " O   Q# T   # f   # s   ]$    $ ,   $    % B   >% X   % f   % 8   A& 6   z& '   & >   & 8   ' T   Q' +   ' /   ' C   ( ,   F( K   s(    ( L   ( ;   ,) ?   h) _   ) F   * 2   O* $   * ?   *    * d   h+ /   + g   + O   e, C   , 8   , $   2- X   W- =   - 3   -     ". <   C. V   . "   .     . 0   / +   L/ >   x/ "   /    / J   / i   90 "   0 #   0 <   0 K   '1 -   s1 /   1 3   1 L   2 ;   R2 =   2    2    3 @   C4 C   4 +   4 6   4 7   +5 B   c5 @   5 T   5 @   <6     }6    6 E   6    6   7 ;   8 Z   8 7   S9 A   9 y   9 %   G: +   m:    :    ); T   ; R   S< =   < `   < O   E= .   =   = 
   >   > C   l@ u   @    &A    A   yB    C 2   .D Q   aD C   D    D    
E i   E N   F `   hF R   F 9   G N   VG    G *   G +   G +   	H U   5H Y   H c   H X   II >   I %   I :   J    BJ :   J 8   (K -   aK c   K r   K    fL G   tL    L R   L k   'M 0   M 7   M d   M    aN 5   O H   :O S   O J   O }   "P =   P H   P N   'Q '   vQ 0   Q O   Q .   R B   NR /   R ,   R 4   R =   #S ,   aS 7   S 9   S \    T #   ]T B   T B   T ?   U P   GU 0   U (   U .   U    !V 2   1V    dV *   DW N   oW 0   W +   W    X @   $X     eX 1   X :   X 9   X -   -Y 1   [Y ;   Y y   Y    CZ }   Z w   G[ =   [ 9   [ v   7\ G   \    \ 3   ] |   ] 7   G^ ,   ^ J   ^ &   ^ 4   _ E   S_ o   _ $   	` ;   .` )   j` 7   ` 2   `    `    a   5a $   b q   c N   }c t   c 0   Ad -   rd ]   d F   d T   Ee    e    e 3   e 6   f .   Cf &   rf ,   f 2   f    f    g     2g &   Sg     zg "   g (   g 6   g a   h >   h 5   h >   h 6   4i 0   ki `   i X   i    Vj    pj ~   k J   k u   k .   _l M   l J   l (   'm =   Pm $   m (   m     m "   m /    n    Pn    on Q   n Q   n T   2o     o &   o \   o     ,p N   Mp ,   p .   p )   p 
   "q    -q 1   Kq    }q {   q 4   r    Gr    r I   s k   t    tt    @u    u |   v    %w S   w h   1x 2   x <   x <   
y Z   Gy    y    wz    { 6   { /   | *   2| `   ]| F   |    }    } c   K~ 4   ~    ~    ~ 2    4    9    ,   5 7   b 6    /   р K    4   M 6    =    {    E   s M    /    2   7    j ?    @   ƃ G    >   O ;    \   ʄ O   ' I   w g    T   ) ?   ~ /    L    /   ; `   k @   ̇ 4    ?   B U    Q   ؈ S   * N   ~ l   ͉ :   : F   u u    x   2 C    S    .   C 6   r I    N    \   B >    ,   ލ ~    =    L   Ȏ            \    >      	  j       7    /                o      P        0                        *  p  q    (  >                                      %                     }           G   j        S            v   C              C    T             _  ;                                                 d            >        '                 ^                *        +    !  ?   K          {            1      m              y                                 s      e        2    	             K    V      	  8   !         /     ^                    r  H            F                 r   |                                  D        $                       r    _           I  l  e          G    w             S            ,      J  %     s                      R                 Y      n           ;              
             4           $   W            d    ?  b               ,  6  w    h                     I  J     7   q  4    V      p                O    `                                              i                   X  ]        G      6  c                N                      B  :    C  l  =    v                           A           ,            j  6  g  F   ,     B       U        f          t     h        [  N          w             ]    a        W     <      u  k     	  {  S  1  `      a          '             {                                  )       i                    y              O       m              ^                  M                        P                  -      %               f        b                   t               C                            8  X          *                           
          k     z  w   z  @  T         ]      |                      \      J               '  D       0  b                       (             c                 k       G        s                    [        *  Z      y       )          \                    y         N      4                           v  h              
  $                              ;    6                    |     2               3  v    M  L              ~  S        9  Q     2            {                                         %        @   F      +                    .             V  Q            2                       z          +   g  a             !                                          v                M                 M     P        K             E        9                        @  ^                          c           a      [     )  W          c    A                  k  H            X             "  W                +  h              =                      Z                        }  i    G  )  j               -   &  (        u          |                        ^  g      (  c    e  /  5              -                                 w        L                  M                d      e                         `  o                       N  $      !                o        +                     R             p     "     	                 q                            T    y   n    r                   ]            x                                                 D            }  -                                <         R                       V              H   (           }              N     8           }              ]              b  p      ?                          H                                .  ~     8        &       =  B                         W  K  =          E    [       1                          _                             e  h           4      9   R  \              X  E        B       O  t    >           T  f                 l  f     F              n        )   B      1        \  L    f                &            <  0     Z    d   F  a  ;  ,     u     o                               O     Z         ?        T       A  x          8                 .      *   .        n   l                       g     L       J                               r            u        :         .                                      3           L    X      P                0  5  m             U    9  <        g  A               3                     ~                l    $      "  C             '            
                       /            i      O  9                          0  n  5    U             ;       &                 U             7  4      Y    m  _                                      t          m                      @  1                 u               s   I              Q  !  k        `           2  @    Z            "      A         ?  6    {          E      3              &    '  H            [                              j            >  #  R      #    S  z  Y   d  x  ~  b  P            t          _    q                    #  \       `       ~      E                3    o                #        :  
  q                                    I       :            Y    x    #   U         I         J    -    Q  Y  7  5       x                 /      5      <               :        =   "    %      K        i            D      p         |    V          z   D    Q  s    7                   total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s doesn't exist. Please specify --target or --directory %s doesn't look like an EFI partition.
 %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: not found %s: option '%c%s' doesn't allow an argument
 %s: option '%s' is ambiguous; possibilities: %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- --ppc PATH|--x86 FILE -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Bless DIR of HFS or HFS+ partition for PPC macs. Bless FILE of HFS or HFS+ partition for intel macs. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't create file: %s Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check if CPU supports Physical Address Extension. Check if FILE can be used as x86 multiboot kernel Check if FILE can be used as x86 multiboot2 kernel Check if FILE is ARM EFI file Check if FILE is BIOS bootsector Check if FILE is IA64 EFI file Check if FILE is hiberfil.sys in hibernated state Check if FILE is i386 EFI file Check if FILE is of specified type. Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear bit at BYTE:BIT in CMOS. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find a free BootNNNN slot Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Default server is ${net_default_server} Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not apply any reed-solomon codes when embedding core.img. This option is only available on x86 BIOS targets. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. EFI bootloader id isn't specified. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enable/disable RTS/CTS. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Evaluate arguments as GRUB commands Execute syslinux config in new context Execute syslinux config in new context taking only menu entries Execute syslinux config in same context Execute syslinux config in same context taking only menu entries Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FONTS FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File size: %s
 File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Generating grub configuration file ... Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s Graft point syntax (E.g. /boot/grub/grub.cfg=./grub.cfg) is accepted HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS INSTALL_DEVICE must be system device filename.
%s copies GRUB images into %s.  On some platforms, it may also install GRUB into the boot sector. If FILENAME is `-', the default value %s is used.

There is no `delete' command; if you want to delete the whole environment
block, use `rm %s'. Import ZFS wrapping key stored in FILE. Incorrect VDEV Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Installing for %s platform.
 Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s LOCALES Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List coreboot tables. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load DTB file. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load Truecrypt ISO. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load module. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... M MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MENU_ENTRY is a number, a menu item title or a menu item identifier. Please note that menu items in
submenus or sub-submenus require specifying the submenu components and then the
menu item component. The titles should be separated using the greater-than
character (>) with no extra spaces. Depending on your shell some characters including > may need escaping. More information about this is available
in the GRUB Manual in the section about the 'default' command.  MODULE MODULES Mac-style bless on HFS or HFS+ Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NOT RUNNING:  NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Netboot directory for %s created. Configure your DHCP server to point to %s
 Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OPTIONS FILE OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] PUBKEY_ID Paletted  Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Prepares GRUB network boot images at net_directory/subdir assuming net_directory being TFTP root. Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot into firmware setup menu. Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Render Apple .disk_label. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING STRING ... Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Script `%s' contains no commands and will do nothing
 Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set bit at BYTE:BIT in CMOS. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting GRUB_TIMEOUT to a non-zero value when GRUB_HIDDEN_TIMEOUT is set is no longer supported. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show CBMEM console content. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show raw dump of the CMOS contents. Show raw dump of the PCI configuration space. Show the contents of a file. Show the current mappings. Show the list of trusted keys. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Skip signature-checking of the environment file. Skip signature-checking of the public key file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Storage information for `%s' does not include type Storage information for `%s' indicates neither a plain partition nor a plain disk Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Switch to native disk drivers. If no modules are specified default set (pata,ahci,usbms,ohci,uhci,ehci) is used Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 T TARGET THEMES Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This VDEV is a RAIDZ%llu
 This VDEV is a mirror This entry can be booted by any user. This requires setting GRUB_DEFAULT=saved in %s/default/grub.\n Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Transform syslinux config into GRUB one. Translate SET1 characters to SET2 in STRING. Translate to lower case. Translate to upper case. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown platform `%s-%s' Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized compression `%s' Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME VDEV element number %d isn't correct
 VDEV element number %d:
 VDEV with %d children
 Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. You've found a bug Your embedding area is unusually small.  core.img won't fit in it. Your xorriso doesn't support `--grub2-boot-info'. Some features are disabled. Please use xorriso 1.2.9 or later. Your xorriso doesn't support `--grub2-boot-info'. Your core image is too big. Boot as disk is disabled. Please use xorriso 1.2.9 or later. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] [-s|--skip-sig] [variable_name_to_whitelist] [...] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [-s|--skip-sig] FILE SIGNATURE_FILE [PUBKEY_FILE] [-s|--skip-sig] PUBKEY_FILE [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [DIR] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTIONS] [SET1] [SET2] [STRING] [OPTION] SOURCE... [OPTION] [INSTALL_DEVICE] [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `%s' is not a local disk `cryptomount' command fails: %s `loopback' command fails: %s `nvsetenv' failed. 
You will have to set `boot-device' variable manually.  At the IEEE1275 prompt, type:
  %s
 `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found assume input is a pxelinux configuration file. assume input is a syslinux configuration file. assume input is an isolinux configuration file. attempt to install to encrypted disk without cryptodisk enabled. Set `%s' in file `%s'. attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format bless for ppc-based macs bless for x86-based macs blocklist FILE blocklists are incomplete blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't compress `%s' to `%s' can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s can't set %dx%d font size: Freetype error %d: %s cannot compress the kernel image cannot copy `%s' to `%s': %s cannot delete `%s': %s cannot find EFI directory cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot find locale `%s' cannot get translator command line for path `%s': %s cannot make temporary directory: %s cannot make temporary file: %s cannot open OS file `%s': %s cannot open `%s': %s cannot open configuration file `%s': %s cannot open directory `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu compress GRUB files [optional] connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find IEEE1275 device path for %s.
You will have to set `boot-device' variable manually couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d current directory of the syslinux [default is parent directory of input file]. current directory of the syslinux as it will be seen on runtime  [default is parent directory of input file]. cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit device tree must be supplied (see `devicetree' command) disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. disk read fails at offset %lld, length %lld diskboot.img size must be %u bytes do not install bootsector do not probe for filesystems in DEVICE domain name component is too long don't update LED state don't update the `boot-device'/`Boot*' NVRAM variables. This option is only available on EFI and IEEE1275 targets. done embed FILE as a memdisk image
Implies `-p (memdisk)/boot/grub' and overrides any prefix supplied previously, but the prefix itself can be overridden by later options embed FILE as an early config embed FILE as public key for signature checking embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enable ARCS (big-endian mips machines, mostly SGI) boot. Disables HFS+, APM, sparc64 and boot as disk image for i386-pc enable sparc boot. Disables HFS+, APM, ARCS and boot as disk image for i386-pc enabling %s support ... enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to copy Grub to the PReP partition failed to get canonical path of `%s' failed to read the sectors of the core image failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists filesystem on %s is neither HFS nor HFS+ firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification initrd already loaded install FONTS [default=%s] install GRUB for TARGET platform [default=%s] install GRUB images under the directory DIR/%s instead of the %s directory install THEMES [default=%s] install device isn't specified install even if problems are detected install only LOCALES [default=all] install only MODULES and their dependencies [default=all] invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid argument invalid block size invalid color specification `%s' invalid device tree invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid modinfo file `%s' invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' invalid zImage ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no EFI routines are available for your platform no EFI routines are available when running in BIOS mode no IEEE1275 routines are available for your platform no SGI routines are available for your platform no `/' in canonical filename no command is specified no compression is available for your platform no decryption key available no hints available for your platform. Expect reduced performance no network card found no random number generator is available for your OS no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected only ipv4 only ipv6 other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found pre-load specified modules MODULES prefer ipv4 prefer ipv6 premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory as it will be seen on runtime [default=/]. root directory of TFTP server root directory of the syslinux disk [default=/]. route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the label to render set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the ID of bootloader. This option is only available on EFI and Macs. the PReP partition is not empty. If you are sure you want to use it, run dd to clear it: `%s' the argument `%s' requires an integer the chosen partition is not a PReP partition the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive %s is defined multiple times in the device map %s the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected EFI error unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported platform %s
 unsupported serial port flow control unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for label use COLOR for label background use COLOR for text use DIR as the EFI System Partition root. use DIR for PPC MAC install. use FILE as font (PF2). use FILE as font for label use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] use themes under DIR [default=%s] use translations under DIR [default=%s] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists write output to FILE [default=stdout]. wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub 2.02~beta1
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-12-21 01:46+0100
Last-Translator: Automatically generated
Language-Team: none
Language: en@hebrew
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=(n != 1);
               תוֹתאל מעמוֹריִ: %d כִּיבּ
     נוֹ פּרעפֿעררעד מוֹדע אבֿאִילאבּלע
     פּרעפֿעררעד מוֹדע: %uכּס%u
   עדִיד צהעצכּשוּמ ִינבֿאלִיד   עדִיד בֿערשִיוֹנ: %u.%u
   פֿאִילעד תוֹ ִינִיתִיאלִיזע בִֿידעוֹ אדאפּתער   נוֹ ִינפֿוֹ אבֿאִילאבּלע   בֿבּע ִינפֿוֹ:   בֿערשִיוֹנ: %d.%d  וֹעמ שוֹפֿתוארע רעבֿ: %d.%d
   וֹר:   (לעפֿתמוֹשת)  (מעדִיאל)  (רִיגהתמוֹשת)  - פּארתִיתִיוֹנ שתארת את %llu%sכִּיבּ  - שעצתוֹר שִיזע %uבּ  - תוֹתאל שִיזע %llu%sכִּיבּ  - תוֹתאל שִיזע וּנכּנוֹונ  [וֹפּתִיוֹנ...] %.*s: ארגפּ_העלפּ_פֿמת פּאראמעתער מוּשת בּע פּוֹשִיתִיבֿע %.*s: ארגפּ_העלפּ_פֿמת פּאראמעתער רעקוִּירעש א בֿאלוּע %.*s: וּנכּנוֹונ ארגפּ_העלפּ_פֿמת פּאראמעתער %dש %dש רעמאִינִינג. %s אפּפּעארש תוֹ צוֹנתאִינ א %s פִֿילעשיִשתעמ והִיצה ִישנ'ת כּנוֹונ תוֹ רעשערבֿע שפּאצע פֿוֹר דוֹש-שתיִלע בּוֹוֹת.  ִינשתאללִינג גרוּבּ תהערע צוֹוּלד רעשוּלת ִינ פִֿילעשיִשתעמ דעשתרוּצתִיוֹנ ִיפֿ בֿאלוּאבּלע דאתא ִיש וֹבֿערורִיתתענ בּיִ גרוּבּ-שעתוּפּ (--שכִּיפּ-פֿש-פּרוֹבּע דִישאבּלעש תהִיש צהעצכּ, וּשע את יִוֹוּר וֹונ רִישכּ) %s אפּפּעארש תוֹ צוֹנתאִינ א %s פּארתִיתִיוֹנ מאפּ אנד לדמ והִיצה ִישנ'ת כּנוֹונ תוֹ בּע א שאפֿע צוֹמבִּינאתִיוֹנ.  ִינשתאללִינג גרוּבּ תהערע צוֹוּלד רעשוּלת ִינ פִֿילעשיִשתעמ דעשתרוּצתִיוֹנ ִיפֿ בֿאלוּאבּלע דאתא ִיש וֹבֿערורִיתתענ בּיִ גרוּבּ-שעתוּפּ (--שכִּיפּ-פֿש-פּרוֹבּע דִישאבּלעש תהִיש צהעצכּ, וּשע את יִוֹוּר וֹונ רִישכּ) %s אפּפּעארש תוֹ צוֹנתאִינ א %s פּארתִיתִיוֹנ מאפּ והִיצה ִישנ'ת כּנוֹונ תוֹ רעשערבֿע שפּאצע פֿוֹר דוֹש-שתיִלע בּוֹוֹת.  ִינשתאללִינג גרוּבּ תהערע צוֹוּלד רעשוּלת ִינ פִֿילעשיִשתעמ דעשתרוּצתִיוֹנ ִיפֿ בֿאלוּאבּלע דאתא ִיש וֹבֿערורִיתתענ בּיִ גרוּבּ-שעתוּפּ (--שכִּיפּ-פֿש-פּרוֹבּע דִישאבּלעש תהִיש צהעצכּ, וּשע את יִוֹוּר וֹונ רִישכּ) %s דוֹעש נוֹת שוּפּפּוֹרת וּוִּידש %s דוֹעשנ'ת עכּסִישת. פּלעאשע שפּעצִיפֿיִ --תארגעת וֹר --דִירעצתוֹריִ %s דוֹעשנ'ת לוֹוֹכּ לִיכּע אנ עפִֿי פּארתִיתִיוֹנ.
 %s גענעראתעש א כּעיִבּוֹארד לאיִוֹוּת פֿוֹר גרוּבּ וּשִינג צכּבּצוֹמפּ\נ %s ִיש דעפּרעצאתעד. וּשע שעת גפֿכּספּאיִלוֹאד=%s בּעפֿוֹרע לִינוּכּס צוֹממאנד ִינשתעאד.
 %s ִיש דעפּרעצאתעד. בֿגא מוֹדע %d ִישנ'ת רעצוֹגנִיזעד. וּשע שעת גפֿכּספּאיִלוֹאד=וִידתהכּסהעִיגהת[כּסדעפּתה] בּעפֿוֹרע לִינוּכּס צוֹממאנד ִינשתעאד.
 %s ִיש נוֹת יִעת שוּפּפּוֹרתעד בּיִ גרוּבּ-מכּצוֹנפִֿיג.\נ %s, וִיתה הוּרד %s %s, וִיתה הוּרד %s (רעצוֹבֿעריִ מוֹדע) %s, וִיתה לִינוּכּס %s %s, וִיתה לִינוּכּס %s (רעצוֹבֿעריִ מוֹדע) %s, וִיתה כּסענ %s אנד לִינוּכּס %s %s, וִיתה כּסענ %s אנד לִינוּכּס %s (רעצוֹבֿעריִ מוֹדע) %s, וִיתה כּסענ היִפּערבִֿישוֹר %s, וִיתה כּפֿרעעבּשד %s %s, וִיתה כּפֿרעעבּשד %s (רעצוֹבֿעריִ מוֹדע) %s, וִיתה כּערנעל %s (בִֿיא %s) %s, וִיתה כּערנעל %s (בִֿיא %s, רעצוֹבֿעריִ מוֹדע) %s: האשה מִישמאתצה
 %s: וֹכּ
 %s: רעאד עררוֹר
 %s: תוֹוֹ מאניִ ארגוּמענתש
 %s: יִוֹוּ מוּשת רוּנ תהִיש אש רוֹוֹת\נ %s: עררוֹר: %s: ִינפֿוֹ: %s: ִינבֿאלִיד וֹפּתִיוֹנ -- '%c'
 %s: נוֹת פֿוֹוּנד %s: וֹפּתִיוֹנ '%c%s' דוֹעשנ'ת אללוֹו אנ ארגוּמענת
 %s: וֹפּתִיוֹנ '%s' ִיש אמבִּיגוּוֹוּש; פּוֹששִיבִּילִיתִיעש: %s: וֹפּתִיוֹנ '--%s' דוֹעשנ'ת אללוֹו אנ ארגוּמענת
 %s: וֹפּתִיוֹנ '--%s' רעקוִּירעש אנ ארגוּמענת
 %s: וֹפּתִיוֹנ '-ו %s' דוֹעשנ'ת אללוֹו אנ ארגוּמענת
 %s: וֹפּתִיוֹנ '-ו %s' ִיש אמבִּיגוּוֹוּש
 %s: וֹפּתִיוֹנ '-ו %s' רעקוִּירעש אנ ארגוּמענת
 %s: וֹפּתִיוֹנ רעקוִּירעש אנ ארגוּמענת -- '%c'
 %s: וֹפּתִיוֹנ רעקוִּירעש אנ ארגוּמענת -- `%s'\נ %s: וּנרעצוֹגנִיזעד וֹפּתִיוֹנ '%c%s'
 %s: וּנרעצוֹגנִיזעד וֹפּתִיוֹנ '--%s'
 %s: וארנִינג: (32-בִּית) (64-בִּית) (פּרוֹגראמ עררוֹר) נוֹ בֿערשִיוֹנ כּנוֹונ!? (פּרוֹגראמ עררוֹר) וֹפּתִיוֹנ שהוֹוּלד האבֿע בּעענ רעצוֹגנִיזעד!? (וֹנ %s) - לאבּעל `%s' - לאשת מוֹדִיפִֿיצאתִיוֹנ תִימע %d-%02d-%02d %02d:%02d:%02d %s --מוֹרע-- --פּפּצ פּאתה|--כּס86 פִֿילע -ה האשה [-צ פִֿילע [-פּ פּרעפִֿיכּס]] [פִֿילע1 [פִֿילע2 ...]] -ל | -ר | [-ש] גרוּבּדעבֿ וֹשדִישכּ. .5 16-בִּית פּרוֹתעצתעד ִינתערפֿאצע שוּפּפּוֹרתעד
 16-בִּית פּרוֹתעצתעד ִינתערפֿאצע וּנשוּפּפּוֹרתעד
 32-בִּית פּרוֹתעצתעד ִינתערפֿאצע שוּפּפּוֹרתעד
 32-בִּית פּרוֹתעצתעד ִינתערפֿאצע וּנשוּפּפּוֹרתעד
 =בֿאל > אצפִּי נוֹנ-בֿוֹלאתִילע שתוֹראגע ראמ אצפִּי רעצלאִימאבּלע ראמ אצפִּי שהוּתדוֹונ פֿאִילעד אדדר אדדר בֿאלוּע [מאשכּ] אדדר [שִיזע] אדדר1,מאשכּ1[,אדדר2,מאשכּ2[,...]] אדדרעשש דנששערבֿער אפּמ דִישאבּלעד
 אפּמ דִישענגאגעד
 אפּמ ענאבּלעד
 אפּמ ענגאגעד
 ארגפּ_העלפּ_פֿמת: %s בֿאלוּע ִיש לעשש תהאנ וֹר עקוּאל תוֹ %s אשצִיִי אצצעפּת דוֹש-שתיִלע צר/נל לִינע ענדִינגש. אצתִיבֿע ִינפּוּת תערמִינאלש: אצתִיבֿע וֹוּתפּוּת תערמִינאלש: אדאפּתער `%s':
 אדד א דנש שערבֿער אדד א נעתווֹרכּ אדדרעשש. אדד א נעתווֹרכּ רוֹוּתע. אדבֿאנצעד וֹפּתִיוֹנש פֿוֹר %s אדבֿאנצעד וֹפּתִיוֹנש פֿוֹר %s (וִיתה כּסענ היִפּערבִֿישוֹר) אללוֹו תוֹ ִינתעררוּפּת וִיתה עשצ. אשכּ פֿוֹר פִֿילע נאמע תוֹ רעבּוֹוֹת פֿרוֹמ. אששוּמע ִינפּוּת ִיש העכּס. אששוּמע ִינפּוּת ִיש פּאששפּהראשע. אששוּמע ִינפּוּת ִיש ראו. אתתעמפּתִינג תוֹ דעצריִפּת מאשתער כּעיִ... אתתעמפּתִינג תוֹ ִינשתאלל גרוּבּ תוֹ א דִישכּ וִיתה מוּלתִיפּלע פּארתִיתִיוֹנ לאבּעלש וֹר בּוֹתה פּארתִיתִיוֹנ לאבּעל אנד פִֿילעשיִשתעמ.  תהִיש ִיש נוֹת שוּפּפּוֹרתעד יִעת. אתתעמפּתִינג תוֹ ִינשתאלל גרוּבּ תוֹ א דִישכּ וִיתה מוּלתִיפּלע פּארתִיתִיוֹנ לאבּעלש.  תהִיש ִיש נוֹת שוּפּפּוֹרתעד יִעת. אתתעמפּתִינג תוֹ ִינשתאלל גרוּבּ תוֹ א פּארתִיתִיוֹנלעשש דִישכּ וֹר תוֹ א פּארתִיתִיוֹנ.  תהִיש ִיש א בּאד ִידעא. אבֿאִילאבּלע ִינפּוּת תערמִינאלש: אבֿאִילאבּלע וֹוּתפּוּת תערמִינאלש: בּ בּ/ש בִּיוֹש_דוּמפּ [ִינת10_דוּמפּ] בּלוֹצכּ בּיִתע:בִּית בּאצכּגרוֹוּנד ִימאגע מוֹדע. בּאשע דִירעצתוֹריִ פֿוֹר האשה לִישת. בּלעשש דִיר וֹפֿ הפֿש וֹר הפֿש+ פּארתִיתִיוֹנ פֿוֹר פּפּצ מאצש. בּלעשש פִֿילע וֹפֿ הפֿש וֹר הפֿש+ פּארתִיתִיוֹנ פֿוֹר ִינתעל מאצש. בּוֹוֹת בִּיוֹש-בּאשעד שיִשתעמ. בּוֹוֹת אנ וֹפּעראתִינג שיִשתעמ. בּוֹוֹת ִינתוֹ שִינגלע מוֹדע. בּוֹוֹת וִיתה דעבּוּג מעששאגעש. בּוֹוֹת וִיתה בֿערבּוֹשע מעששאגעש. בּוֹוֹתִינג `%s' בּוֹוֹתִינג א צוֹממאנד לִישת בּוֹוֹתִינג ִינ בּלִינד מוֹדע בּוֹוֹתפּאתה: %s
 בּוֹוֹתפּאתה: וּנאבֿאִילאבּלע
 בּרעאכּ ִינתוֹ גדבּ צגא  צוֹלוֹר צוֹממאנד [ארגש] צפּוּ ִידלע דוֹעשנ'ת שלוֹו דוֹונ פּרוֹצעששוֹר
 צפּוּ ִידלע שלוֹוש דוֹונ פּרוֹצעששוֹר
 צש5536 את %d:%d.%d
 צאנ'ת צרעאתע פִֿילע: %s צאנ'ת ענאבּלע רוֹמ ארעא. צהאנגע צוֹנפִֿיגוּרעד דעבִֿיצעש. צהאנגע פּארתִיתִיוֹנ תיִפּע צהעצכּ אלת כּעיִ. צהעצכּ צוֹנתרוֹל כּעיִ. צהעצכּ שהִיפֿת כּעיִ. צהעצכּ פֿוֹר צפּוּ פֿעאתוּרעש. צהעצכּ האשהעש וֹפֿ פִֿילעש וִיתה האשה לִישת פִֿילע. צהעצכּ ִיפֿ צפּוּ שוּפּפּוֹרתש 64-בִּית (לוֹנג) מוֹדע (דעפֿאוּלת). צהעצכּ ִיפֿ צפּוּ שוּפּפּוֹרתש פּהיִשִיצאל אדדרעשש עכּסתענשִיוֹנ. צהעצכּ ִיפֿ פִֿילע צאנ בּע וּשעד אש כּס86 מוּלתִיבּוֹוֹת כּערנעל צהעצכּ ִיפֿ פִֿילע צאנ בּע וּשעד אש כּס86 מוּלתִיבּוֹוֹת2 כּערנעל צהעצכּ ִיפֿ פִֿילע ִיש ארמ עפִֿי פִֿילע צהעצכּ ִיפֿ פִֿילע ִיש בִּיוֹש בּוֹוֹתשעצתוֹר צהעצכּ ִיפֿ פִֿילע ִיש ִיא64 עפִֿי פִֿילע צהעצכּ ִיפֿ פִֿילע ִיש הִיבּערפִֿיל.שיִש ִינ הִיבּערנאתעד שתאתע צהעצכּ ִיפֿ פִֿילע ִיש ִי386 עפִֿי פִֿילע צהעצכּ ִיפֿ פִֿילע ִיש וֹפֿ שפּעצִיפִֿיעד תיִפּע. צהעצכּ כּעיִ מוֹדִיפִֿיער שתאתוּש. צהעצכּ והעתהער וּשער ִיש ִינ וּשערלִישת. צהעצכּש גרוּבּ שצרִיפּת צוֹנפִֿיגוּראתִיוֹנ פִֿילע פֿוֹר שיִנתאכּס עררוֹרש. צלעאר בִּית את בּיִתע:בִּית ִינ צמוֹש. צלעאר תהע שצרעענ. צלעארעד אצתִיבֿע פֿלאג וֹנ %d. 
 צוֹממאנדש: צוֹמפּארע פִֿילע וִיתה לוֹצאל פִֿילע לוֹצאל. צוֹמפּארע פִֿילע `%s' וִיתה `%s':
 צוֹמפּארע תווֹ פִֿילעש. צוֹמפּוּתע כּסנוּ וּוִּיד וֹפֿ תהע דעבִֿיצע. צוֹמפּוּתע וֹר צהעצכּ האשה צהעצכּשוּמ. צוֹנפִֿיגוּרע שערִיאל פּוֹרת. צוֹנתִינוּע לוֹוֹפּש צוֹנבֿערת צוֹממוֹנ פֿוֹנת פִֿילע פֿוֹרמאתש ִינתוֹ פּפֿ2 צוֹפּיִ פִֿילע תוֹ לוֹצאל פִֿילע לוֹצאל. צוֹפּיִ פִֿילע תוֹ שתאנדארד וֹוּתפּוּת. צוֹוּלד נוֹת לוֹצאתע פֿפּשוא דרִיבֿער צוֹוּלדנ'ת פִֿינד א פֿרעע בּוֹוֹתננננ שלוֹת צוֹוּלדנ'ת פִֿינד פּהיִשִיצאל בֿוֹלוּמע `%s'. שוֹמע מוֹדוּלעש מאיִ בּע מִיששִינג פֿרוֹמ צוֹרע ִימאגע. צוֹוּלדנ'ת לוֹאד שהא256 צוֹוּלדנ'ת לוֹאד שהא512 צרעאתע בִּיוֹש-לִיכּע שתרוּצתוּרעש פֿוֹר בּאצכּוארד צוֹמפּאתִיבִּילִיתיִ וִיתה עכּסִישתִינג וֹש. צרעאתע א בּלאנכּ ענבִֿירוֹנמענת בּלוֹצכּ פִֿילע. צוּררענת תערמִינפֿוֹ תיִפּעש: דעבִֿיצע דעבִֿיצע [פּארתִיתִיוֹנ[+/-[תיִפּע]]] ... דעבִֿיצע מוּשת בּע אנ וֹש דעבִֿיצע (ע.ג. /דעבֿ/שדא). דעבִֿיצע_נאמע דִיר דִירעצתוֹריִ [וֹשבּוּנדלערעקוִּירעד] דנששערבֿער דעבּוּג תוֹוֹל פֿוֹר פִֿילעשיִשתעמ דרִיבֿער. דעצלארע מעמוֹריִ רעגִיוֹנש אש פֿאוּלתיִ (בּאדראמ). דעצוֹמפּרעששוֹר ִיש תוֹוֹ בִּיג דעפֿאוּלת שערבֿער ִיש ${נעת_דעפֿאוּלת_שערבֿער} דעפִֿינע א מענוּ ענתריִ. דעפִֿינע א שוּבּמענוּ. דעלעתע א נעתווֹרכּ אדדרעשש. דעלעתע א נעתווֹרכּ רוֹוּתע. דעלעתע תהע שפּעצִיפִֿיעד לוֹוֹפּבּאצכּ דרִיבֿע. דעלעתע בֿארִיאבּלעש. דעתערמִינע דרִיבֿער. דעתערמִינע פִֿילעשיִשתעמ וּוִּיד. דעתערמִינע פִֿילעשיִשתעמ לאבּעל. דעתערמִינע פִֿילעשיִשתעמ תיִפּע. דעתערמִינע פּארתִיתִיוֹנ מאפּ תיִפּע. דעבִֿיצע %s: דעבִֿיד: %s
 דעבִֿיד: וּנאבֿאִילאבּלע דִירעצת צוֹלוֹר, מאשכּ: %d/%d/%d/%d  פּוֹש: %d/%d/%d/%d דִישאבּלע אצפִּי. דִישאבּלע שמפּ. דִישאבּלע אלל בּוֹוֹת וֹוּתפּוּת. דִישאבּלע/ענאבּלע שמארת (0/1). דִישצארדִינג ִימפּרוֹפּערליִ נעשתעד פּארתִיתִיוֹנ (%s,%s,%s%d) דִישכּ צאצהע שתאתִישתִיצש: הִיתש = %lu (%lu.%02lu%%), מִיששעש = %lu
 דִישכּ צוֹוּנת מוּשת פּרעצעדע דִישכּש לִישת.
 דִישפּלאיִ פֿפּשוא בֿערשִיוֹנ. דִישפּלאיִ שמארת העאלתה שתאתוּש. דִישפּלאיִ א לִינע וֹפֿ תעכּסת. דִישפּלאיִ בּלוֹצכּלִישת וֹפֿ פִֿילע. דִישפּלאיִ וֹוּתפּוּת וֹנ אלל צוֹנשוֹלעש. דִישפּלאיִ פּוֹוער מוֹדע. דִישפּלאיִ תהע וּשאגע וֹפֿ תהִיש צוֹממאנד אנד עכּסִית. דִישפּלאיִ תהִיש העלפּ אנד עכּסִית. דִישפּלאיִ/שעת צוּררענת דאתעתִימע. דוֹ נוֹת אפּפּליִ אניִ רעעד-שוֹלוֹמוֹנ צוֹדעש והענ עמבּעדדִינג צוֹרע.ִימג. תהִיש וֹפּתִיוֹנ ִיש וֹנליִ אבֿאִילאבּלע וֹנ כּס86 בִּיוֹש תארגעתש. דוֹ נוֹת וֹוּתפּוּת תהע תראִילִינג נעולִינע. דוֹ נוֹת פּרִינת מעששאגעש. דוֹ נוֹת פּרוֹבּע אניִ פֿלוֹפּפּיִ דרִיבֿע. דוֹ נוֹת וּשע אפּמ תוֹ האלת תהע צוֹמפּוּתער. דוֹ נוֹתהִינג, שוּצצעששפֿוּלליִ. דוֹ נוֹתהִינג, וּנשוּצצעששפֿוּלליִ. דוֹנ'ת דִישפּלאיִ בּוֹוֹת דִיאגנוֹשתִיצ מעששאגעש. דוֹנ'ת לוֹאד הוֹשת תאבּלעש שפּעצִיפִֿיעד בּיִ צוֹממא-שעפּאראתעד לִישת. דוֹנ'ת רעבּוֹוֹת, יוּשת האלת. דוֹנ'ת שתוֹפּ אפֿתער פִֿירשת עררוֹר. דוֹנ'ת וּפּדאתע עבּדא. מאיִ פִֿיכּס פֿאִילוּרעש וֹר האנגש וֹנ שוֹמע בִּיוֹשעש בּוּת מאכּעש ִית ִינעפֿפֿעצתִיבֿע וִיתה וֹש נוֹת רעצעִיבִֿינג רשדפּ פֿרוֹמ גרוּבּ. עפִֿי בּוֹוֹתלוֹאדער ִיד ִישנ'ת שפּעצִיפִֿיעד. ענבֿבֿאר ענבֿבֿאר [ענבֿבֿאר] ... עררוֹר: נוֹ בֿאלִיד כּעיִבּוֹארד לאיִוֹוּת פֿוֹוּנד. צהעצכּ תהע ִינפּוּת.
 עשצ את אניִ תִימע עכּסִיתש. עכּספּרעששִיוֹנ עכּספּרעששִיוֹנ ] עלאפּשעד תִימע: %d.%03d ש 
 עלאפּשעד תִימע: %d.%03d שעצוֹנדש 
 עמבּעדדִינג ִיש נוֹת פּוֹששִיבּלע.  גרוּבּ צאנ וֹנליִ בּע ִינשתאללעד ִינ תהִיש שעתוּפּ בּיִ וּשִינג בּלוֹצכּלִישתש.  הוֹועבֿער, בּלוֹצכּלִישתש ארע וּנרעלִיאבּלע אנד תהעִיר וּשע ִיש דִישצוֹוּראגעד. עמוּלאתע א כּעיִשתרוֹכּע שעקוּענצע ענאבּלע ִינתערפּרעתאתִיוֹנ וֹפֿ בּאצכּשלאשה עשצאפּעש. ענאבּלע/דִישאבּלע רתש/צתש. ענתער זפֿש פּאששווֹרד:  ענתער ִינ כּדבּ וֹנ בּוֹוֹת. ענתער נוֹרמאל מוֹדע. ענתער פּאששפּהראשע פֿוֹר %s%s%s (%s):  ענתער פּאששווֹרד:  ענתער וּשערנאמע:  עררוֹר ִינ פּארשִינג צוֹממאנד לִינע ארגוּמענתש
 עבֿאלוּאתע אנ עכּספּרעששִיוֹנ. עבֿאלוּאתע ארגוּמענתש אש גרוּבּ צוֹממאנדש עכּסעצוּתע שיִשלִינוּכּס צוֹנפִֿיג ִינ נעו צוֹנתעכּסת עכּסעצוּתע שיִשלִינוּכּס צוֹנפִֿיג ִינ נעו צוֹנתעכּסת תאכִּינג וֹנליִ מענוּ ענתרִיעש עכּסעצוּתע שיִשלִינוּכּס צוֹנפִֿיג ִינ שאמע צוֹנתעכּסת עכּסעצוּתע שיִשלִינוּכּס צוֹנפִֿיג ִינ שאמע צוֹנתעכּסת תאכִּינג וֹנליִ מענוּ ענתרִיעש עכּסִית פֿאִילעד עכּסִית פֿרוֹמ גרוּבּ. עכּסִית פֿרוֹמ לוֹוֹפּש עכּסִית פֿרוֹמ נוֹרמאל מוֹדע. עכּספּוֹרת בֿארִיאבּלעש. עכּספּוֹרת בֿערשִיוֹנ 1 תאבּלעש תוֹ תהע וֹש. עכּספּוֹרת בֿערשִיוֹנ 2 אנד בֿערשִיוֹנ 3 תאבּלעש תוֹ תהע וֹש. פִֿילע פִֿילע [ארג ...] פִֿילע [ארגש...] פִֿילע | תעמפּוֹ [פִּיתצה1 דוּראתִיוֹנ1] [פִּיתצה2 דוּראתִיוֹנ2] ...  פִֿילע... פִֿילע1 פִֿילע2 פִֿילענאמע צוֹממאנד פִֿילעשיִשתעמ [בֿארִיאבּלע] פִֿילע|פּרוֹמפּת פֿוֹנתש פֿוֹרמאת פֿפּשוא פּרוֹתוֹצוֹל ואשנ'ת אבּלע תוֹ פִֿינד תהע ִינתערפֿאצע פֿפּשוא רעבִֿישִיוֹנ: %x
 פֿרוֹמ-תוֹ[,פֿרוֹמ-תוֹ] פֿרוֹמ[כּ|מ|ג] תוֹ[כּ|מ|ג] פֿת_ִינִית_פֿרעעתיִפּע פֿאִילש פֿאִילעד תוֹ בּוֹוֹת בּוֹתה דעפֿאוּלת אנד פֿאללבּאצכּ ענתרִיעש.
 פֿאִילעד תוֹ צרעאתע `דעבִֿיצע-מאפּפּער' תרעע פֿאללִינג בּאצכּ תוֹ `%s' פִֿילע שִיזע: %s
 פִֿילע שיִשתעמ `%s' דוֹעשנ'ת שוּפּפּוֹרת עמבּעדדִינג פִֿילעש דִיפֿפֿער את תהע וֹפֿפֿשעת %llu: 0כּס%x [%s], 0כּס%x [%s]
 פִֿילעש דִיפֿפֿער ִינ שִיזע: %llu [%s], %llu [%s]
 פִֿילעשיִשתעמ צאננוֹת בּע אצצעששעד פִֿילעשיִשתעמ תיִפּע %s פִֿילל היִבּרִיד מבּר וֹפֿ גפּת דרִיבֿע דעבִֿיצע. שפּעצִיפִֿיעד פּארתִיתִיוֹנש וִילל בּע א פּארת וֹפֿ היִבּרִיד מבּר. וּפּ תוֹ 3 פּארתִיתִיוֹנש ארע אללוֹועד. תיִפּע ִיש אנ מבּר תיִפּע. + מעאנש תהאת פּארתִיתִיוֹנ ִיש אצתִיבֿע. וֹנליִ וֹנע פּארתִיתִיוֹנ צאנ בּע אצתִיבֿע. פִֿינאלִיזע לוֹאדִינג וֹפֿ עפִֿי עמוּלאתוֹר. פִֿירשת תריִ תהע דעבִֿיצע הִינת ִיפֿ צוּררענתליִ רוּננִינג וֹנ ארצ. ִיפֿ הִינת ענדש ִינ צוֹממא, אלשוֹ תריִ שוּבּפּארתִיתִיוֹנש פִֿירשת תריִ תהע דעבִֿיצע הִינת ִיפֿ צוּררענתליִ רוּננִינג וֹנ בִּיוֹש. ִיפֿ הִינת ענדש ִינ צוֹממא, אלשוֹ תריִ שוּבּפּארתִיתִיוֹנש פִֿירשת תריִ תהע דעבִֿיצע הִינת ִיפֿ צוּררענתליִ רוּננִינג וֹנ עפִֿי. ִיפֿ הִינת ענדש ִינ צוֹממא, אלשוֹ תריִ שוּבּפּארתִיתִיוֹנש פִֿירשת תריִ תהע דעבִֿיצע הִינת ִיפֿ צוּררענתליִ רוּננִינג וֹנ ִיעעע1275. ִיפֿ הִינת ענדש ִינ צוֹממא, אלשוֹ תריִ שוּבּפּארתִיתִיוֹנש פִֿירשת תריִ תהע דעבִֿיצע הִינת ִיפֿ דִירעצת הארדוארע אצצעשש ִיש שוּפּפּוֹרתעד. ִיפֿ הִינת ענדש ִינ צוֹממא, אלשוֹ תריִ שוּבּפּארתִיתִיוֹנש פִֿירשת תריִ תהע דעבִֿיצע הִינת. ִיפֿ הִינת ענדש ִינ צוֹממא, אלשוֹ תריִ שוּבּפּארתִיתִיוֹנש פִֿיכּס בִֿידעוֹ פּרוֹבּלעמ. פֿוֹוּנד %s וֹנ %s (%s)\נ פֿוֹוּנד %s וֹנ %s\נ פֿוֹוּנד גנוּ מאצה: %s פֿוֹוּנד הוּרד מוֹדוּלע: %s פֿוֹוּנד נעתבּשד כּערנעל: %s\נ פֿוֹוּנד בּאצכּגרוֹוּנד: %s\נ פֿוֹוּנד ִינִיתרד ִימאגע: %s\נ פֿוֹוּנד כּערנעל מוֹדוּלע דִירעצתוֹריִ: %s\נ פֿוֹוּנד כּערנעל וֹפֿ פֿרעעבּשד: %s\נ פֿוֹוּנד לִינוּכּס ִימאגע: %s\נ פֿוֹוּנד תהעמע: %s\נ פֿרעעתיִפּע עררוֹר %d לוֹאדִינג גליִפּה 0כּס%x פֿוֹר וּ+0כּס%x%s פֿרעעזע אתא שעצוּרִיתיִ שעתתִינגש וּנתִיל רעשעת. פֿרִידאיִ ג גנוּ גרוּבּ  בֿערשִיוֹנ %s גרוּבּ בּוֹוֹת מענוּ גרוּבּ דוֹעשנ'ת כּנוֹו הוֹו תוֹ האלת תהִיש מאצהִינע יִעת! גרוּבּ עמוּלאתוֹר. גרוּבּדעבִֿיצע=פּלאנ9דעבִֿיצע גארבּאגע ִינ ארגפּ_העלפּ_פֿמת: %s גענעראתע גרוּבּ כּעיִבּוֹארד לאיִוֹוּת פֿרוֹמ לִינוּכּס צוֹנשוֹלע וֹנע. גענעראתע פּבּכּדפֿ2 פּאששווֹרד האשה. גענעראתע א גרוּבּ צוֹנפִֿיג פִֿילע גענעראתע א שתאנדאלוֹנע ִימאגע (צוֹנתאִינִינג אלל מוֹדוּלעש) ִינ תהע שעלעצתעד פֿוֹרמאת גענעראתִינג גרוּבּ צוֹנפִֿיגוּראתִיוֹנ פִֿילע ... געת צרצ32 צהעצכּשוּמ וֹפֿ פִֿילע. געת דִישכּ צאצהע ִינפֿוֹ. געת/שעת אתא דִישכּ פּאראמעתערש. גִיבּ גִיבּ/ש גראפֿת פּוִֹינת שיִנתאכּס (ע.ג. /בּוֹוֹת/גרוּבּ/גרוּבּ.צפֿג=./גרוּבּ.צפֿג) ִיש אצצעפּתעד האשה הִינת האלת תהע שיִשתעמ, ִיפֿ פּוֹששִיבּלע וּשִינג אפּמ. האלתש תהע צוֹמפּוּתער.  תהִיש צוֹממאנד דוֹעש נוֹת ווֹרכּ וֹנ אלל פִֿירמוארע ִימפּלעמענתאתִיוֹנש. האנדלע נ בּיִתעש ִינ וֹוּתפּוּת פִֿילע. העללוֹ ווֹרלד הערצוּלעש  ִיד ִימאגע1 [ִימאגע2 ...] מוֹוּנתפּוִֹינת ִימאגע_פּאתה צוֹממאנדש ִינשתאלל_דעבִֿיצע מוּשת בּע שיִשתעמ דעבִֿיצע פִֿילענאמע.
%s צוֹפִּיעש גרוּבּ ִימאגעש ִינתוֹ %s.  וֹנ שוֹמע פּלאתפֿוֹרמש, ִית מאיִ אלשוֹ ִינשתאלל גרוּבּ ִינתוֹ תהע בּוֹוֹת שעצתוֹר. ִיפֿ פִֿילענאמע ִיש `-', תהע דעפֿאוּלת בֿאלוּע %s ִיש וּשעד.

תהערע ִיש נוֹ `דעלעתע' צוֹממאנד; ִיפֿ יִוֹוּ ואנת תוֹ דעלעתע תהע והוֹלע ענבִֿירוֹנמענת
בּלוֹצכּ, וּשע `רמ %s'. ִימפּוֹרת זפֿש וראפּפִּינג כּעיִ שתוֹרעד ִינ פִֿילע. ִינצוֹררעצת בֿדעבֿ ִינצוֹררעצת בִֿירתוּאל דעבִֿיצע: נוֹ תיִפּע אבֿאִילאבּלע ִינשערת א מוֹדוּלע. ִינשתאלל גרוּבּ וֹנ יִוֹוּר דרִיבֿע. ִינשתאללאתִיוֹנ פִֿינִישהעד. נוֹ עררוֹר רעפּוֹרתעד. ִינשתאללִינג פֿוֹר %s פּלאתפֿוֹרמ.
 ִינבֿאלִיד בּאצכּ רעפֿערענצע ִינבֿאלִיד צהאראצתער צלאשש נאמע ִינבֿאלִיד צוֹללאתִיוֹנ צהאראצתער ִינבֿאלִיד צוֹממאנד %s.
 ִינבֿאלִיד צוֹנתענת וֹפֿ \{\} ִינבֿאלִיד דעבִֿיצע `%s'.
 ִינבֿאלִיד דִישכּ צוֹוּנת.
 ִינבֿאלִיד פּרעצעדִינג רעגוּלאר עכּספּרעששִיוֹנ ִינבֿאלִיד ראנגע ענד ִינבֿאלִיד רעגוּלאר עכּספּרעששִיוֹנ ִינבֿוֹכּע וּשער צוֹנפִֿיגוּראתִיוֹנ רוֹוּתִינג. כּ כּערנעל ארגש כּעיִבּוֹארד_כּעיִ כּעיִבּוֹארד כּעיִ תוֹ קוִּיצכּליִ בּוֹוֹת תהִיש ענתריִ. כִּיבּ כִּיבּ/ש לוֹצאלעש לעאפֿ בִֿירתוּאל דעבִֿיצע (פִֿילע וֹר דִישכּ) לעגאציִ `אשכּ' פּאראמעתער נוֹ לוֹנגער שוּפּפּוֹרתעד. לעגענד: מאשכּ/פּוֹשִיתִיוֹנ=רעד/גרעענ/בּלוּע/רעשערבֿעד לענגתה וֹפֿ גענעראתעד האשה לענגתה וֹפֿ שאלת לִישת דנש שערבֿערש לִישת פּצִי דעבִֿיצעש. לִישת אלל פִֿילעש. לִישת אבֿאִילאבּלע בִֿידעוֹ מוֹדעש. ִיפֿ רעשוֹלוּתִיוֹנ ִיש גִיבֿענ שהוֹו וֹנליִ מוֹדעש מאתצהִינג ִית. לִישת צוֹרעבּוֹוֹת תאבּלעש. לִישת דעבִֿיצעש אנד פִֿילעש. לִישת דעבִֿיצעש וֹר פִֿילעש. לִישת דעבִֿיצעש. לִישת פִֿילעש ִינ פּאתה. לִישת מעמוֹריִ מאפּ פּרוֹבִֿידעד בּיִ פִֿירמוארע. לִישת וֹפֿ שוּפּפּוֹרתעד בִֿידעוֹ מוֹדעש: לִישת וֹפֿ וּשערש אללוֹועד תוֹ בּוֹוֹת תהִיש ענתריִ. לִישת וֹר שעלעצת אנ ִינפּוּת תערמִינאל. לִישת וֹר שעלעצת אנ וֹוּתפּוּת תערמִינאל. לִישת תהע צוּררענת בֿארִיאבּלעש. לִישת תהע לוֹאדעד פֿוֹנתש. לִישת בֿארִיאבּלעש פֿרוֹמ ענבִֿירוֹנמענת בּלוֹצכּ פִֿילע. לוֹאד 64-בִּית כּסנוּ ִימאגע. לוֹאד בִּיוֹש דוּמפּ. לוֹאד דתבּ פִֿילע. לוֹאד פֿרעעבּשד ענבֿ. לוֹאד פֿרעעבּשד כּערנעל מוֹדוּלע (עלפֿ). לוֹאד פֿרעעבּשד כּערנעל מוֹדוּלע. לוֹאד פֿרעעדוֹש כּערנעל.שיִש. לוֹאד לִינוּכּס. לוֹאד נתלדר וֹר בּוֹוֹתמגר. לוֹאד נעתבּשד כּערנעל מוֹדוּלע (עלפֿ). לוֹאד נעתבּשד כּערנעל מוֹדוּלע. לוֹאד פּלאנ9 כּערנעל. לוֹאד תרוּעצריִפּת ִישוֹ. לוֹאד כּסנוּ עכּסתענשִיוֹנ דִירעצתוֹריִ. לוֹאד כּסנוּ עכּסתענשִיוֹנ פּאצכּאגע. לוֹאד כּסנוּ עכּסתענשִיוֹנ. לוֹאד כּסנוּ ִימאגע. לוֹאד כּסנוּ ראמדִישכּ. ִית וִילל בּע אבֿאִילאבּלע ִינ וֹש אש מד0. לוֹאד `דעבִֿיצע-פּרוֹפּערתִיעש' דוּמפּ. לוֹאד א פּכּסע ִימאגע. לוֹאד א כּעיִבּוֹארד לאיִוֹוּת. לוֹאד א מוּלתִיבּוֹוֹת 2 כּערנעל. לוֹאד א מוּלתִיבּוֹוֹת 2 מוֹדוּלע. לוֹאד א מוּלתִיבּוֹוֹת כּערנעל. לוֹאד א מוּלתִיבּוֹוֹת מוֹדוּלע. לוֹאד א שפּלאשה ִימאגע פֿוֹר כּסנוּ. לוֹאד אנ ִימאגע וֹפֿ הִיבּערנאתעד כּסנוּ. לוֹאד אנד ִינִיתִיאלִיזע עפִֿי עמוּלאתוֹר. לוֹאד אנוֹתהער בּוֹוֹת לוֹאדער. לוֹאד אנוֹתהער צוֹנפִֿיג פִֿילע בּוּת תאכּע וֹנליִ מענוּ ענתרִיעש. לוֹאד אנוֹתהער צוֹנפִֿיג פִֿילע וִיתהוֹוּת צהאנגִינג צוֹנתעכּסת בּוּת תאכּע וֹנליִ מענוּ ענתרִיעש. לוֹאד אנוֹתהער צוֹנפִֿיג פִֿילע וִיתהוֹוּת צהאנגִינג צוֹנתעכּסת. לוֹאד אנוֹתהער צוֹנפִֿיג פִֿילע. לוֹאד אנוֹתהער צוֹרעבּוֹוֹת פּאיִלוֹאד לוֹאד בּאצכּגרוֹוּנד ִימאגע פֿוֹר אצתִיבֿע תערמִינאל. לוֹאד הוֹשת אצפִּי תאבּלעש אנד תאבּלעש שפּעצִיפִֿיעד בּיִ ארגוּמענתש. לוֹאד ִינִיתרד. לוֹאד כּוֹפּענבּשד ראמדִישכּ. לוֹאד כּערנעל וֹפֿ פֿרעעבּשד. לוֹאד כּערנעל וֹפֿ נעתבּשד. לוֹאד כּערנעל וֹפֿ וֹפּענבּשד. לוֹאד מוֹדוּלע. לוֹאד וֹנליִ תאבּלעש שפּעצִיפִֿיעד בּיִ צוֹממא-שעפּאראתעד לִישת. לוֹאד תהע שאמע פִֿילע ִינ מוּלתִיפּלע ואיִש. לוֹאד בֿארִיאבּלעש פֿרוֹמ ענבִֿירוֹנמענת בּלוֹצכּ פִֿילע. לוֹאד זפֿש צריִפּתוֹ כּעיִ. לוֹאדעד פֿוֹנתש: לוֹאדִינג גנוּ מאצה ... לוֹאדִינג לִינוּכּס %s ... לוֹאדִינג כּסענ %s ... לוֹאדִינג ִינִיתִיאל ראמדִישכּ ... לוֹאדִינג כּערנעל וֹפֿ פֿרעעבּשד %s ... לוֹאדִינג כּערנעל וֹפֿ ִיללוּמוֹש ... לוֹאדִינג תהע הוּרד ... מ מאצ בֿערִיפִֿיצאתִיוֹנ פֿאִילעד מענוּ_ענתריִ ִיש א נוּמבּער, א מענוּ ִיתעמ תִיתלע וֹר א מענוּ ִיתעמ ִידענתִיפִֿיער. מענוּ_ענתריִ ִיש א נוּמבּער, א מענוּ ִיתעמ תִיתלע וֹר א מענוּ ִיתעמ ִידענתִיפִֿיער. פּלעאשע נוֹתע תהאת מענוּ ִיתעמש ִינ
שוּבּמענוּש וֹר שוּבּ-שוּבּמענוּש רעקוִּירע שפּעצִיפֿיִִינג תהע שוּבּמענוּ צוֹמפּוֹנענתש אנד תהענ תהע
מענוּ ִיתעמ צוֹמפּוֹנענת. תהע תִיתלעש שהוֹוּלד בּע שעפּאראתעד וּשִינג תהע גרעאתער-תהאנ
צהאראצתער (>) וִיתה נוֹ עכּסתרא שפּאצעש. דעפּענדִינג וֹנ יִוֹוּר שהעלל שוֹמע צהאראצתערש ִינצלוּדִינג > מאיִ נעעד עשצאפִּינג. מוֹרע ִינפֿוֹרמאתִיוֹנ אבּוֹוּת תהִיש ִיש אבֿאִילאבּלע
ִינ תהע גרוּבּ מאנוּאל ִינ תהע שעצתִיוֹנ אבּוֹוּת תהע 'דעפֿאוּלת' צוֹממאנד.  מוֹדוּלע מוֹדוּלעש מאצ-שתיִלע בּלעשש וֹנ הפֿש וֹר הפֿש+ מאכּע גרוּבּ צד-רוֹמ, דִישכּ, פּענדרִיבֿע אנד פֿלוֹפּפּיִ בּוֹוֹתאבּלע ִימאגע. מאכּע גרוּבּ כּעיִבּוֹארד לאיִוֹוּת פִֿילע. מאכּע א בּוֹוֹתאבּלע ִימאגע וֹפֿ גרוּבּ. מאכּע א בִֿירתוּאל דרִיבֿע פֿרוֹמ א פִֿילע. מאכּע פּארתִיתִיוֹנ אצתִיבֿע מאנאגע תהע בִּיוֹש דרִיבֿע מאפּפִּינגש. מאנדאתוֹריִ וֹר וֹפּתִיוֹנאל ארגוּמענתש תוֹ לוֹנג וֹפּתִיוֹנש ארע אלשוֹ מאנדאתוֹריִ וֹר וֹפּתִיוֹנאל פֿוֹר אניִ צוֹררעשפּוֹנדִינג שהוֹרת וֹפּתִיוֹנש. מאנִיפּוּלאתע פּצִי דעבִֿיצעש. מעאשוּרע תִימע וּשעד בּיִ צוֹממאנד מעמוֹריִ עכּסהאוּשתעד מעמוֹריִ תיִפּע: דדר2. מעמוֹריִ תיִפּע: וּנכּנוֹונ. מענוּ ענתריִ ִידענתִיפִֿיער. מענוּ ענתריִ נוֹת שפּעצִיפִֿיעד. מענוּ ענתריִ תיִפּע. מִיבּ מִיבּ/ש מִינִימאל בּאשה-לִיכּע לִינע עדִיתִינג ִיש שוּפּפּוֹרתעד. פֿוֹר תהע פִֿירשת ווֹרד, תאבּ לִישתש פּוֹששִיבּלע צוֹממאנד צוֹמפּלעתִיוֹנש. אניִוהערע עלשע תאבּ לִישתש פּוֹששִיבּלע דעבִֿיצע וֹר פִֿילע צוֹמפּלעתִיוֹנש. %s מִינִימוּמ עמאצש-לִיכּע שצרעענ עדִיתִינג ִיש שוּפּפּוֹרתעד. תאבּ לִישתש צוֹמפּלעתִיוֹנש. פּרעשש צתרל-כּס וֹר פֿ10 תוֹ בּוֹוֹת, צתרל-צ וֹר פֿ2 פֿוֹר א צוֹממאנד-לִינע וֹר עשצ תוֹ דִישצארד עדִיתש אנד רעתוּרנ תוֹ תהע גרוּבּ מענוּ. מִיששִינג ארגוּמענתש
 מִיששִינג ִינפּוּת פִֿילע
 מוֹנדאיִ מוֹנוֹצהרוֹמע  מוֹרע תהאנ וֹנע ִינשתאלל דעבִֿיצע? מוֹרע תהאנ וֹנע מענוּ ענתריִ? מוֹוּנת א צריִפּתוֹ דעבִֿיצע. מוֹוּנת אלל בֿוֹלוּמעש וִיתה `בּוֹוֹת' פֿלאג שעת. מוֹוּנת אלל. מוֹוּנת בּיִ וּוִּיד. מוֹוּנת צריִפּתוֹ דעבִֿיצעש. נאמע נאמע [בֿארִיאבּלע] [הִינתש] נוֹת רוּננִינג:  נוּמ נוּמבּער_וֹפֿ_שעצוֹנדש נאמע	רעפֿ צוֹוּנת	דעפּענדענצִיעש
 נאתִיבֿע דִישכּ דרִיבֿערש ארע ִינ וּשע. רעפֿוּשִינג תוֹ וּשע פִֿירמוארע דִישכּ ִינתערפֿאצע. נעתבּוֹוֹת דִירעצתוֹריִ פֿוֹר %s צרעאתעד. צוֹנפִֿיגוּרע יִוֹוּר דהצפּ שערבֿער תוֹ פּוִֹינת תוֹ %s
 נעתווֹרכּ פּרוֹתוֹצוֹלש: נעו מבּר ִיש ורִיתתענ תוֹ `%s'
 נוֹ צש5536 פֿוֹוּנד נוֹ פֿפּשוא פֿוֹוּנד נוֹ בּוֹוֹת תִימע שתאתִישתִיצש ִיש אבֿאִילאבּלע
 נוֹ צוֹממאנד ִיש שפּעצִיפִֿיעד.
 נוֹ דעבִֿיצע ִיש שפּעצִיפִֿיעד.
 נוֹ דִישכּ צאצהע שתאתִישתִיצש אבֿאִילאבּלע
 נוֹ דרִיבֿעש האבֿע בּעענ רעמאפּפּעד נוֹ כּנוֹונ פִֿילעשיִשתעמ דעתעצתעד נוֹ מאתצה נוֹ פּאתה ִיש שפּעצִיפִֿיעד.
 נוֹ פּאתה וֹר דעבִֿיצע ִיש שפּעצִיפִֿיעד.
 נוֹ פּרעבִֿיוֹוּש רעגוּלאר עכּספּרעששִיוֹנ נוֹ בִֿירתוּאל דעבִֿיצע תרעע אבֿאִילאבּלע נוֹנ-צהאִינ 4  נוֹת ענוֹוּגה פּאראמעתערש תוֹ צוֹממאנד.
 נוֹו צוֹננעצת תהע רעמוֹתע דעבּוּגגער, פּלעאשע. נוּמבּער וֹפֿ פּבּכּדפֿ2 ִיתעראתִיוֹנש וֹפּתִיוֹנש פִֿילע וֹש דִישכּ #נוּמ ------> גרוּבּ/בִּיוֹש דעבִֿיצע וֹש פִֿילע %s וֹפּענ עררוֹר: %s וֹפּתִיוֹנש: וֹוּת וֹפֿ ראנגע לוֹוֹכּוּפּ: %d
 וֹוּת וֹפֿ ראנגע שוּבּשתִיתוּתִיוֹנ (%d, %d)
 וֹבֿעררִידע גוּעששעד מאפּפִּינג וֹפֿ פּלאנ9 דעבִֿיצעש. פּ פּארתִיתִיוֹנ צוֹממאנדש פּאתה פּבּכּדפֿ2 האשה וֹפֿ יִוֹוּר פּאששווֹרד ִיש %s
 פּוֹרת פּוֹרת בֿאלוּע [מאשכּ] פּוּבּכּעיִ_ִיד פּאלעתתעד  פּארשע לעגאציִ צוֹנפִֿיג ִינ נעו צוֹנתעכּסת פּארשע לעגאציִ צוֹנפִֿיג ִינ נעו צוֹנתעכּסת תאכִּינג וֹנליִ מענוּ ענתרִיעש פּארשע לעגאציִ צוֹנפִֿיג ִינ שאמע צוֹנתעכּסת פּארשע לעגאציִ צוֹנפִֿיג ִינ שאמע צוֹנתעכּסת תאכִּינג וֹנליִ מענוּ ענתרִיעש פּארת נוֹ: %s.
 פּארתִיתִיוֹנ %d ִיש אצתִיבֿע נוֹו. 
 פּארתִיתִיוֹנ %s: פּארתִיתִיוֹנ שתיִלע `%s' דוֹעשנ'ת שוּפּפּוֹרת עמבּעדדִינג פּאתה: %s
 פּאתה: וּנאבֿאִילאבּלע פּערפֿוֹרמ צוֹממאנדש וֹנ פּארתִיתִיוֹנ.
וּשע `פּארתתוֹוֹל פּארתִיתִיוֹנ העלפּ' פֿוֹר תהע לִישת וֹפֿ אבֿאִילאבּלע צוֹממאנדש. פּערפֿוֹרמ א דנש לוֹוֹכּוּפּ פּערפֿוֹרמ אנ ִיפּבֿ6 אוּתוֹצוֹנפִֿיגוּראתִיוֹנ פּערפֿוֹרמ בּוֹתה דִירעצת אנד רעבֿערשע מאפּפִּינגש. פִּיבּ פִּיבּ/ש פּלאנאר  פּלאיִ א תוּנע. פּלעאשע דוֹנ'ת וּשע וֹלד תִיתלע `%s' פֿוֹר גרוּבּ_דעפֿאוּלת, וּשע `%s' (פֿוֹר בֿערשִיוֹנש בּעפֿוֹרע 2.00) וֹר `%s' (פֿוֹר 2.00 וֹר לאתער) פּוֹוֹל גוִּיד: %016llx
 פּוֹוֹל גוִּיד: וּנאבֿאִילאבּלע פּוֹוֹל נאמע: %s
 פּוֹוֹל נאמע: וּנאבֿאִילאבּלע פּוֹוֹל שתאתע: אצתִיבֿע פּוֹוֹל שתאתע: דעשתרוֹיִעד פּוֹוֹל שתאתע: עכּספּוֹרתעד פּוֹוֹל שתאתע: לעבֿעל 2 ארצ דעבִֿיצע פּוֹוֹל שתאתע: פּוֹתענתִיאלליִ אצתִיבֿע פּוֹוֹל שתאתע: רעשערבֿעד פֿוֹר הוֹת שפּארע פּוֹוֹל שתאתע: וּנאבֿאִילאבּלע פּוֹוֹל שתאתע: וּנִינִיתִיאלִיזעד פּוֹששִיבּלע ארגוּמענתש ארע: פּוֹששִיבּלע צוֹממאנדש ארע: פּוֹששִיבּלע דעבִֿיצעש ארע: פּוֹששִיבּלע פִֿילעש ארע: פּוֹששִיבּלע פּארתִיתִיוֹנש ארע: פּוֹששִיבּלע תהִינגש ארע: פּרעמאתוּרע ענד וֹפֿ רעגוּלאר עכּספּרעששִיוֹנ פּרעפּארעש גרוּבּ נעתווֹרכּ בּוֹוֹת ִימאגעש את נעת_דִירעצתוֹריִ/שוּבּדִיר אששוּמִינג נעת_דִירעצתוֹריִ בּעִינג תפֿתפּ רוֹוֹת. פּרעשש אניִ כּעיִ תוֹ צוֹנתִינוּע... פּרעשש אניִ כּעיִ תוֹ לאוּנצה כּסנוּ פּרעשש ענתער תוֹ בּוֹוֹת תהע שעלעצתעד וֹש, `ע' תוֹ עדִית תהע צוֹממאנדש בּעפֿוֹרע בּוֹוֹתִינג וֹר `צ' פֿוֹר א צוֹממאנד-לִינע. פּרעשש ענתער תוֹ בּוֹוֹת תהע שעלעצתעד וֹש, `ע' תוֹ עדִית תהע צוֹממאנדש בּעפֿוֹרע בּוֹוֹתִינג וֹר `צ' פֿוֹר א צוֹממאנד-לִינע. עשצ תוֹ רעתוּרנ פּרעבִֿיוֹוּש מענוּ. פּרִינת מעמוֹריִ ִינפֿוֹרמאתִיוֹנ. פּרִינת זפֿש ִינפֿוֹ אבּוֹוּת דעבִֿיצע. פּרִינת זפֿש-בּוֹוֹתפֿשוֹבּי וֹר שתוֹרע ִית ִינתוֹ בֿארִיאבּלע פּרִינת א בּלוֹצכּ לִישת. פּרִינת אנד עכּסעצוּתע בּלוֹצכּ ארגוּמענת. פּרִינת בּאצכּתראצע. פּרִינת דרִיבֿע ִידענתִיתיִ אנד שעתתִינגש. פּרִינת שִיזעש ִינ א הוּמאנ רעאדאבּלע פֿוֹרמאת. פּרוֹבּע דעבִֿיצע ִינפֿוֹרמאתִיוֹנ פֿוֹר א גִיבֿענ פּאתה (וֹר דעבִֿיצע, ִיפֿ תהע -ד וֹפּתִיוֹנ ִיש גִיבֿענ). ראמ הוֹלדִינג צוֹרעבּוֹוֹת תאבּלעש ראמ הוֹלדִינג פִֿירמוארע צוֹדע ראמ שלוֹת נוּמבּער %d
 רעגעכּספּ שתרִינג רוֹמ ִימאגע ִיש פּרעשענת. רעאד 16-בִּית בֿאלוּע פֿרוֹמ אדדר. רעאד 16-בִּית בֿאלוּע פֿרוֹמ פּוֹרת. רעאד 32-בִּית בֿאלוּע פֿרוֹמ אדדר. רעאד 32-בִּית בֿאלוּע פֿרוֹמ פּוֹרת. רעאד 8-בִּית בֿאלוּע פֿרוֹמ אדדר. רעאד 8-בִּית בֿאלוּע פֿרוֹמ פּוֹרת. רעאד וֹנליִ לענגתה בּיִתעש. רעבּוֹוֹת פֿאִילעד רעבּוֹוֹת ִינתוֹ פִֿירמוארע שעתוּפּ מענוּ. רעבּוֹוֹת תהע צוֹמפּוּתער. רעענתער פּאששווֹרד:  רעגִישתער %x וֹפֿ %x:%02x.%x ִיש %x
 רעגוּלאר עכּספּרעששִיוֹנ תוֹוֹ בִּיג רעמוֹבֿע א דנש שערבֿער רעמוֹבֿע א מוֹדוּלע. רעמוֹבֿע אנ ענבִֿירוֹנמענת בֿארִיאבּלע. רעמוֹבֿע אניִ מעמוֹריִ רעגִיוֹנש ִינ שפּעצִיפִֿיעד ראנגע. רענדער אפּפּלע .דִישכּ_לאבּעל. רעפּוֹרת בּוּגש תוֹ %s.
 רעפּוֹרת בּוּגש תוֹ <בּוּג-גרוּבּ@גנוּ.וֹרג>. רעקוּעשתעד שערִיאל תערמִינאל בּוּת גרוּבּ_שערִיאל_צוֹממאנד ִיש וּנשפּעצִיפִֿיעד. דעפֿאוּלת פּאראמעתערש וִילל בּע וּשעד. רעשעת אלל מאפּפִּינגש תוֹ תהע דעפֿאוּלת בֿאלוּעש. רעתרִיעבֿע דעבִֿיצע ִינפֿוֹ. רעתוּרנ פֿרוֹמ א פֿוּנצתִיוֹנ. רעתוּרנ תוֹ ִיעעע1275 פּרוֹמפּת. רוּנ `גדבּ %s %d', אנד שעת ארגש.הוֹלד תוֹ זערוֹ.
 רוּנ `גוֹ' תוֹ רעשוּמע גרוּבּ. שעצש שהוֹרתנאמע שהוֹרתנאמע צארד אדדרעשש [הואדדרעשש] שהוֹרתנאמע נעת [ִינתערפֿאצע| גו גאתעואיִ] שִיזע שוֹוּרצע|-וּ וּוִּיד|-א|-בּ שתרִינג שתרִינג ... שאתוּרדאיִ שאבֿע רעאד בֿאלוּע ִינתוֹ בֿארִיאבּלע בֿארנאמע. שאבֿע בֿארִיאבּלעש תוֹ ענבִֿירוֹנמענת בּלוֹצכּ פִֿילע. שאיִ `העללוֹ ווֹרלד'. שצרִיפּת `%s' צוֹנתאִינש נוֹ צוֹממאנדש אנד וִילל דוֹ נוֹתהִינג
 שעארצה דעבִֿיצעש בּיִ וּוִּיד. ִיפֿ בֿארִיאבּלע ִיש שפּעצִיפִֿיעד, תהע פִֿירשת דעבִֿיצע פֿוֹוּנד ִיש שעת תוֹ א בֿארִיאבּלע. שעארצה דעבִֿיצעש בּיִ א פִֿילע. שעארצה דעבִֿיצעש בּיִ א פִֿילעשיִשתעמ וּוִּיד. שעארצה דעבִֿיצעש בּיִ א פִֿילעשיִשתעמ לאבּעל. שעארצה דעבִֿיצעש בּיִ פִֿילע, פִֿילעשיִשתעמ לאבּעל וֹר פִֿילעשיִשתעמ וּוִּיד. ִיפֿ --שעת ִיש שפּעצִיפִֿיעד, תהע פִֿירשת דעבִֿיצע פֿוֹוּנד ִיש שעת תוֹ א בֿארִיאבּלע. ִיפֿ נוֹ בֿארִיאבּלע נאמע ִיש שפּעצִיפִֿיעד, `רוֹוֹת' ִיש וּשעד. שעארצה דעבִֿיצעש בּיִ פִֿילע. ִיפֿ בֿארִיאבּלע ִיש שפּעצִיפִֿיעד, תהע פִֿירשת דעבִֿיצע פֿוֹוּנד ִיש שעת תוֹ א בֿארִיאבּלע. שעארצה דעבִֿיצעש בּיִ לאבּעל. ִיפֿ בֿארִיאבּלע ִיש שפּעצִיפִֿיעד, תהע פִֿירשת דעבִֿיצע פֿוֹוּנד ִיש שעת תוֹ א בֿארִיאבּלע. שעצתוֹר %llu ִיש אלרעאדיִ ִינ וּשע בּיִ ראִיד צוֹנתרוֹללער `%s'; אבֿוִֹידִינג ִית.  פּלעאשע אשכּ תהע מאנוּפֿאצתוּרער נוֹת תוֹ שתוֹרע דאתא ִינ מבּר גאפּ שעצתוֹר %llu ִיש אלרעאדיִ ִינ וּשע בּיִ תהע פּרוֹגראמ `%s'; אבֿוִֹידִינג ִית.  תהִיש שוֹפֿתוארע מאיִ צאוּשע בּוֹוֹת וֹר וֹתהער פּרוֹבּלעמש ִינ פֿוּתוּרע.  פּלעאשע אשכּ ִיתש אוּתהוֹרש נוֹת תוֹ שתוֹרע דאתא ִינ תהע בּוֹוֹת תראצכּ שעלעצת דעבִֿיצע בּיִ ִיתש פּוֹשִיתִיוֹנ וֹנ תהע בּוּש. שעלעצת דעבִֿיצע בּיִ בֿענדוֹר אנד דעבִֿיצע ִידש. שעת אדבֿאנצעד פּוֹוער מאנאגעמענת
(1=לוֹו, ..., 254=הִיגה, 255=וֹפֿפֿ). שעת אוּתוֹמאתִיצ אצוֹוּשתִיצ מאנאגעמענת
(0=וֹפֿפֿ, 128=קוִּיעת, ..., 254=פֿאשת). שעת וֹעמִיד וֹפֿ רשדפּ, כּסשדת אנד רשדת. שעת וֹעמתאבּלע ִיד וֹפֿ רשדפּ, כּסשדת אנד רשדת. שעת וֹעמתאבּלע רעבִֿישִיוֹנ וֹפֿ רשדפּ, כּסשדת אנד רשדת. שעת `הִידדענ' פֿלאג ִינ פּארתִיתִיוֹנ תיִפּע שעת א בֿארִיאבּלע תוֹ רעתוּרנ בֿאלוּע. שעת א בֿארִיאבּלע תוֹ תהע פִֿירשת דעבִֿיצע פֿוֹוּנד. שעת אנ ענבִֿירוֹנמענת בֿארִיאבּלע. שעת בּאצכּגרוֹוּנד צוֹלוֹר פֿוֹר אצתִיבֿע תערמִינאל. שעת בִּית את בּיִתע:בִּית ִינ צמוֹש. שעת צרעאתוֹר פִֿיעלד וֹפֿ רשדפּ, כּסשדת אנד רשדת. שעת צרעאתוֹר רעבִֿישִיוֹנ וֹפֿ רשדפּ, כּסשדת אנד רשדת. שעת דעבּוּג ענבִֿירוֹנמענת בֿארִיאבּלע. שעת דרִיבֿע תוֹ שלעעפּ מוֹדע. שעת דרִיבֿע תוֹ שתאנדבּיִ מוֹדע. שעת פּוֹשִיתִיוֹנאל פּאראמעתערש. שעת רוֹוֹת דעבִֿיצע. שעת שתאנדבּיִ תִימעוֹוּת
(0=וֹפֿפֿ, 1=5ש, 2=10ש, ..., 240=20מ, 241=30מ, ...). שעת תערמִינפֿוֹ תיִפּע וֹפֿ תערמ  תוֹ תיִפּע.
 שעת תהע דעפֿאוּלת בּוֹוֹת מענוּ ענתריִ פֿוֹר גרוּבּ, פֿוֹר תהע נעכּסת בּוֹוֹת וֹנליִ. שעת תהע דעפֿאוּלת בּוֹוֹת מענוּ ענתריִ פֿוֹר גרוּבּ. שעת תהע שערִיאל פּוֹרת אדדרעשש. שעת תהע שערִיאל פּוֹרת פּארִיתיִ. שעת תהע שערִיאל פּוֹרת שפּעעד. שעת תהע שערִיאל פּוֹרת שתוֹפּ בִּיתש. שעת תהע שערִיאל פּוֹרת ווֹרד לענגתה. שעת תהע שערִיאל וּנִית. שעת וּפּ ִימאגעש תוֹ בּוֹוֹת פֿרוֹמ דעבִֿיצע.

יִוֹוּ שהוֹוּלד נוֹת נוֹרמאלליִ רוּנ תהִיש פּרוֹגראמ דִירעצתליִ.  וּשע גרוּבּ-ִינשתאלל ִינשתעאד. שעת וּשער פּאששווֹרד (פּבּכּדפֿ2).  שעת וּשער פּאששווֹרד (פּלאִינתעכּסת). וּנרעצוֹממענדעד אנד ִינשעצוּרע. שעת בֿארִיאבּלע וִיתה וּשער ִינפּוּת. שעת בֿארִיאבּלעש. שעתתִינג גרוּבּ_תִימעוֹוּת תוֹ א נוֹנ-זערוֹ בֿאלוּע והענ גרוּבּ_הִידדענ_תִימעוֹוּת ִיש שעת ִיש נוֹ לוֹנגער שוּפּפּוֹרתעד. שעתתִינג פּארתִיתִיוֹנ תיִפּע תוֹ 0כּס%x
 שהִיפֿת פּוֹשִיתִיוֹנאל פּאראמעתערש. שהוֹו אצפִּי ִינפֿוֹרמאתִיוֹנ. שהוֹו אפּמ ִינפֿוֹרמאתִיוֹנ. שהוֹו צבּמעמ צוֹנשוֹלע צוֹנתענת. שהוֹו א העלפּ מעששאגע. שהוֹו א לוֹנג לִישת וִיתה מוֹרע דעתאִילעד ִינפֿוֹרמאתִיוֹנ. שהוֹו צוֹנתענתש וֹפֿ פִֿילע ִינ העכּס. שהוֹו לוֹאדעד מוֹדוּלעש. שהוֹו מעמוֹריִ צוֹנתענתש. שהוֹו ראו צוֹנתענתש וֹפֿ אתא ִידענתִיפֿיִ שעצתוֹר. שהוֹו ראו צוֹנתענתש וֹפֿ א פִֿילע וֹר מעמוֹריִ. שהוֹו ראו דוּמפּ וֹפֿ תהע צמוֹש צוֹנתענתש. שהוֹו ראו דוּמפּ וֹפֿ תהע פּצִי צוֹנפִֿיגוּראתִיוֹנ שפּאצע. שהוֹו תהע צוֹנתענתש וֹפֿ א פִֿילע. שהוֹו תהע צוּררענת מאפּפִּינגש. שהוֹו תהע לִישת וֹפֿ תרוּשתעד כּעיִש. שהוֹו תהִיש מעששאגע. שהוֹו בֿערשִיוֹנ 1 תאבּלעש וֹנליִ. שהוֹו בֿערשִיוֹנ 2 אנד בֿערשִיוֹנ 3 תאבּלעש וֹנליִ. שהוּתדוֹונ פֿאִילעד שִימוּלאתע גרוּבּ-לעגאציִ `ִינִיתרד' צוֹממאנד שִימוּלאתע גרוּבּ-לעגאציִ `כּערנעל' צוֹממאנד שִימוּלאתע גרוּבּ-לעגאציִ `מוֹדוּלענוֹוּנזִיפּ' צוֹממאנד שִימוּלאתע גרוּבּ-לעגאציִ `פּאששווֹרד' צוֹממאנד שִימוּלאתע גרוּבּ-לעגאציִ `פּאששווֹרד' צוֹממאנד ִינ מענוּ ענתריִ מוֹדע שכִּיפּ נ בּיִתעש פֿרוֹמ וֹוּתפּוּת פִֿילע. שכִּיפּ וֹפֿפֿשעת בּיִתעש פֿרוֹמ תהע בּעגִיננִינג וֹפֿ פִֿילע. שכִּיפּ שִיגנאתוּרע-צהעצכִּינג וֹפֿ תהע ענבִֿירוֹנמענת פִֿילע. שכִּיפּ שִיגנאתוּרע-צהעצכִּינג וֹפֿ תהע פּוּבּלִיצ כּעיִ פִֿילע. שלוֹת %d וֹפּענעד
 שוֹמע הוּרד שתוּפֿפֿ פֿוֹוּנד, בּוּת נוֹת ענוֹוּגה תוֹ בּוֹוֹת. שפּעצִיפֿיִ פִֿילענאמע. שפּעצִיפֿיִ האשה תוֹ וּשע. שפּעצִיפֿיִ וֹנע וֹר מוֹרע פֿוֹנת פִֿילעש תוֹ לוֹאד. שפּעצִיפֿיִ שִיזע פֿוֹר עאצה רעאד וֹפּעראתִיוֹנ שפּעצִיפֿיִ תהע נוּמבּער וֹפֿ ִינפּוּת פִֿילעש. שפּעעד: %s 
 שתארת גדבּ שתוּבּ וֹנ גִיבֿענ פּוֹרת שתוֹפּ גדבּ שתוּבּ שתוֹראגע ִינפֿוֹרמאתִיוֹנ פֿוֹר `%s' דוֹעש נוֹת ִינצלוּדע תיִפּע שתוֹראגע ִינפֿוֹרמאתִיוֹנ פֿוֹר `%s' ִינדִיצאתעש נעִיתהער א פּלאִינ פּארתִיתִיוֹנ נוֹר א פּלאִינ דִישכּ שתוֹרע מאתצהעד צוֹמפּוֹנענת נוּמבּער ִינ בֿארנאמע. שוּצצעשש שוּנדאיִ שוּפּפּרעשש נוֹרמאל וֹוּתפּוּת (וארנִינגש רעמאִינ). שוִיתצה תוֹ נאתִיבֿע דִישכּ דרִיבֿערש. ִיפֿ נוֹ מוֹדוּלעש ארע שפּעצִיפִֿיעד דעפֿאוּלת שעת (פּאתא,אהצִי,וּשבּמש,וֹהצִי,וּהצִי,עהצִי) ִיש וּשעד שיִנתאכּס עררוֹר את לִינע %u
 שיִנתאכּס עררוֹרש ארע דעתעצתעד ִינ גענעראתעד גרוּבּ צוֹנפִֿיג פִֿילע.
ענשוּרע תהאת תהערע ארע נוֹ עררוֹרש ִינ /עתצ/דעפֿאוּלת/גרוּבּ
אנד /עתצ/גרוּבּ.ד/* פִֿילעש וֹר פּלעאשע פִֿילע א בּוּג רעפּוֹרת וִיתה
%s פִֿילע אתתאצהעד. שיִשתעמ מאנאגעמענת בּוּש צוֹנתרוֹללער ִי/וֹ שפּאצע ִיש את 0כּס%x
 ת תארגעת תהעמעש תארגעת פֿוֹרמאת נוֹת שפּעצִיפִֿיעד (וּשע תהע -וֹ וֹפּתִיוֹנ). תערמִינאל האש שפּעצִיפִֿיעד געוֹמעתריִ. תערמִינאל ִיש אשצִיִי-וֹנליִ [דעפֿאוּלת]. תערמִינאל ִיש לוֹגִיצאל-וֹרדערעד וּתפֿ-8. תערמִינאל ִיש בִֿישוּאלליִ-וֹרדערעד וּתפֿ-8. תעשת וּשבּ שוּפּפּוֹרת. תעשת בִּית את בּיִתע:בִּית ִינ צמוֹש. תעשת פִֿילע רעאד שפּעעד. תעשת ִיפֿ רעגעכּספּ מאתצהעש שתרִינג. תעשת בִֿידעוֹ שוּבּשיִשתעמ ִינ מוֹדע וכּסה. תעשת בִֿידעוֹ שוּבּשיִשתעמ. תעכּסת-וֹנליִ  תהע פִֿילעש ארע ִידענתִיצאל.
 תהע הִיגהלִיגהתעד ענתריִ וִילל בּע עכּסעצוּתעד אוּתוֹמאתִיצאלליִ ִינ %dש. תהִיש בֿדעבֿ ִיש א ראִידז%llu
 תהִיש בֿדעבֿ ִיש א מִיררוֹר תהִיש ענתריִ צאנ בּע בּוֹוֹתעד בּיִ אניִ וּשער. תהִיש רעקוִּירעש שעתתִינג גרוּבּ_דעפֿאוּלת=שאבֿעד ִינ %s/דעפֿאוּלת/גרוּבּ.\נ תהוּרשדאיִ תִיבּ תִיבּ/ש תוֹוֹל תוֹ עדִית ענבִֿירוֹנמענת בּלוֹצכּ. תוֹתאל פֿלאשה שִיזע: %d בּ.
 תראִילִינג בּאצכּשלאשה תראנשפֿוֹרמ 64-בִּית וּוִּיד תוֹ פֿוֹרמאת שוִּיתאבּלע פֿוֹר כּסנוּ. ִיפֿ -ל ִיש גִיבֿענ כּעעפּ ִית לוֹוערצאשע אש דוֹנע בּיִ בּלכִּיד. תראנשפֿוֹרמ א שיִשתעמ פִֿילענאמע ִינתוֹ גרוּבּ וֹנע. תראנשפֿוֹרמ שיִשלִינוּכּס צוֹנפִֿיג ִינתוֹ גרוּבּ וֹנע. תראנשלאתע שעת1 צהאראצתערש תוֹ שעת2 ִינ שתרִינג. תראנשלאתע תוֹ לוֹוער צאשע. תראנשלאתע תוֹ וּפּפּער צאשע. תראנשלאתעש תהע שתרִינג וִיתה תהע צוּררענת שעתתִינגש. תריִ '%s --העלפּ' וֹר '%s --וּשאגע' פֿוֹר מוֹרע ִינפֿוֹרמאתִיוֹנ.
 תוּעשדאיִ וּשער פּאששווֹרד וּשער פּבּכּדפֿ2_פּאששווֹרד וּשערנאמע[,וּשערנאמע] וּתפֿ-8 וּנאבּלע תוֹ צרעאתע פִּיפּע: %s וּנאבּלע תוֹ דעתערמִינע יִוֹוּר פּלאתפֿוֹרמ. וּשע --תארגעת. וּנאבּלע תוֹ פֿוֹרכּ: %s וּנאבּלע תוֹ וֹפּענ שתרעאמ פֿרוֹמ %s: %s וּנאבּלע תוֹ רעתרִיעבֿע פּוֹוֹל שתאתע וּנצוֹמפּרעשש דאתא. וּנצוֹמפּרעשש פִֿילע בּעפֿוֹרע צהעצכּשוּממִינג. וּנכּנוֹונ אדדרעשש תיִפּע %d
 וּנכּנוֹונ צוֹממאנד `%s'.
 וּנכּנוֹונ צוֹמפּרעששִיוֹנ פֿוֹרמאת %s וּנכּנוֹונ ענצוֹדִינג וּנכּנוֹונ עכּסתרא ארגוּמענת `%s'. וּנכּנוֹונ גשוּבּ פֿוֹנת פֿעאתוּרע 0כּס%x (%s)
 וּנכּנוֹונ כּעיִבּוֹארד שצאנ צוֹדע 0כּס%02x
 וּנכּנוֹונ כּעיִבּוֹארד שצאנ ִידענתִיפִֿיער %s
 וּנכּנוֹונ פּלאתפֿוֹרמ `%s-%s' וּנכּנוֹונ שיִשתעמ עררוֹר וּנכּנוֹונ בִֿידעוֹ מוֹדע  וּנכּנוֹונ בִֿירתוּאל דעבִֿיצע תיִפּע: %s
 וּנלוֹאד עפִֿי עמוּלאתוֹר. וּנמאתצהעד ( וֹר \( וּנמאתצהעד ) וֹר \) וּנמאתצהעד [ וֹר [^ וּנמאתצהעד \{ וּנרעצוֹגנִיזעד צוֹמפּרעששִיוֹנ `%s' וּנרעצוֹגנִיזעד וֹפּתִיוֹנ `%s'\נ וּנרעצוֹגנִיזעד פּוֹוֹל שתאתע וּנשוּפּפּוֹרתעד אדדרעשש תיִפּע %d
 וּנשוּפּפּוֹרתעד צוֹבֿעראגע שפּעצִיפִֿיצאתִיוֹנ: %d
 וּנשוּפּפּוֹרתעד הו אדדרעשש תיִפּע %d
 וּנשוּפּפּוֹרתעד ִימאגע פֿוֹרמאת וּנשוּפּפּוֹרתעד שוּבּשתִיתוּתִיוֹנ פֿלאג: 0כּס%x
 וּנשוּפּפּוֹרתעד שוּבּשתִיתוּתִיוֹנ שפּעצִיפִֿיצאתִיוֹנ: %d
 וּנשוּפּפּוֹרתעד שוּבּשתִיתוּתִיוֹנ תיִפּע: %d
 וּשאגע: וּשאגע: %s -וֹ וֹוּתפּוּת צכּבּמאפּ_ארגוּמענתש...\נ וּשאגע: %s דעבִֿיצע
 וּשאגע: %s [ִינפִֿילע [וֹוּתפִֿילע]]
 וּשאגע: %s [וֹפּתִיוֹנ] מענוּ_ענתריִ\נ וּשאגע: %s [וֹפּתִיוֹנ]\נ וּשע צד-רוֹמ אש רוֹוֹת. וּשע גדבּ רעמוֹתע דעבּוּגגער ִינשתעאד וֹפֿ דדבּ. וּשע שתרִינג אש מענוּ ענתריִ בּוֹדיִ. וּשע צוֹמפִּילעד-ִינ רוֹוֹת דעבִֿיצע. וּשע שערִיאל צוֹנשוֹלע. וּשע תהע %C אנד %C כּעיִש תוֹ שעלעצת והִיצה ענתריִ ִיש הִיגהלִיגהתעד. בֿאר ִינתערפֿאצע נוּמבּער דעשצרִיפּתִיוֹנ בֿארנאמע בֿדעבֿ עלעמענת נוּמבּער %d ִישנ'ת צוֹררעצת
 בֿדעבֿ עלעמענת נוּמבּער %d:
 בֿדעבֿ וִיתה %d צהִילדרענ
 בֿערבּוֹשע צוֹוּנתדוֹונ. בֿערִיפֿיִ דעתאצהעד שִיגנאתוּרע. בֿערשִיוֹנ %u.%u
32-בִּית צש = 0כּס%x, לענ = 0כּס%x, וֹפֿפֿשעת = 0כּס%x
16-בִּית צש = 0כּס%x, לענ = 0כּס%x
דש = 0כּס%x, לענ = 0כּס%x
 בִֿירתוּאל דעבִֿיצע ִיש דעגראדעד בִֿירתוּאל דעבִֿיצע ִיש פֿאוּלתעד בִֿירתוּאל דעבִֿיצע ִיש וֹפֿפֿלִינע בִֿירתוּאל דעבִֿיצע ִיש וֹנלִינע בִֿירתוּאל דעבִֿיצע ִיש רעמוֹבֿעד וארנִינג: נוֹ צוֹנשוֹלע וִילל בּע אבֿאִילאבּלע תוֹ וֹש וארנִינג: נוֹ פּלאתפֿוֹרמ-שפּעצִיפִֿיצ ִינשתאלל ואש פּערפֿוֹרמעד וארנִינג: וּנשוּפּפּוֹרתעד פֿוֹנת פֿעאתוּרע פּאראמעתערש: %x
 וִידתהכּסהעִיגהת. ואִית פֿוֹר א שפּעצִיפִֿיעד נוּמבּער וֹפֿ שעצוֹנדש. ואִית פֿוֹר כּעיִפּרעשש אפֿתער עבֿעריִ לִינע וֹפֿ וֹוּתפּוּת. וארנִינג: וארנִינג: ִינבֿאלִיד בּאצכּגרוֹוּנד צוֹלוֹר `%s'
 וארנִינג: ִינבֿאלִיד פֿוֹרעגרוֹוּנד צוֹלוֹר `%s'
 וארנִינג: שיִנתאכּס עררוֹר (מִיששִינג שלאשה) ִינ `%s'
 ועדנעשדאיִ וִינדוֹוש נת/2000/כּספּ (לוֹאדער) וִינדוֹוש בִֿישתא/7 (לוֹאדער) ורִיתע 16-בִּית בֿאלוּע תוֹ אדדר. ורִיתע 16-בִּית בֿאלוּע תוֹ פּוֹרת. ורִיתע 32-בִּית בֿאלוּע תוֹ אדדר. ורִיתע 32-בִּית בֿאלוּע תוֹ פּוֹרת. ורִיתע 8-בִּית בֿאלוּע תוֹ אדדר. ורִיתע 8-בִּית בֿאלוּע תוֹ פּוֹרת. ורִיתתענ שפּד בּיִתעש: %d בּ.
 כּסענ היִפּערבִֿישוֹר, בֿערשִיוֹנ %s יִוּבֿ  יִוֹוּ נעעד תוֹ שפּעצִיפֿיִ את לעאשת וֹנע צוֹממאנד.
 יִוֹוּ וִילל האבֿע תוֹ שעת `שיִשתעמפּארתִיתִיוֹנ' אנד `וֹשלוֹאדער' מאנוּאלליִ. יִוֹוּ'בֿע פֿוֹוּנד א בּוּג יִוֹוּר עמבּעדדִינג ארעא ִיש וּנוּשוּאלליִ שמאלל.  צוֹרע.ִימג ווֹנ'ת פִֿית ִינ ִית. יִוֹוּר כּסוֹררִישוֹ דוֹעשנ'ת שוּפּפּוֹרת `--גרוּבּ2-בּוֹוֹת-ִינפֿוֹ'. שוֹמע פֿעאתוּרעש ארע דִישאבּלעד. פּלעאשע וּשע כּסוֹררִישוֹ 1.2.9 וֹר לאתער. יִוֹוּר כּסוֹררִישוֹ דוֹעשנ'ת שוּפּפּוֹרת `--גרוּבּ2-בּוֹוֹת-ִינפֿוֹ'. יִוֹוּר צוֹרע ִימאגע ִיש תוֹוֹ בִּיג. בּוֹוֹת אש דִישכּ ִיש דִישאבּלעד. פּלעאשע וּשע כּסוֹררִישוֹ 1.2.9 וֹר לאתער. [--אפּפּענד|--רעמוֹבֿע] [תערמִינאל1] [תערמִינאל2] ... [--פֿוֹרצע|--בּפּבּ] פִֿילע [--מד5] פּאששוד [פִֿילע] [--נוֹ-מעמ-וֹפּתִיוֹנ] [--תיִפּע=תיִפּע] פִֿילע [ארג ...] [-1|-2] [--עכּסצלוּדע=תאבּלע1,תאבּלע2|--לוֹאד-וֹנליִ=תאבּלע1,תאבּלע2] פִֿילע1 [פִֿילע2] [...] [-צ פִֿילע [-פּ פּרעפִֿיכּס]] [פִֿילע1 [פִֿילע2 ...]] [-ד] דעבִֿיצענאמע פִֿילע. [-ע|-נ] שתרִינג [-פֿ פִֿילע] [-פֿ פִֿילע] [-ש|--שכִּיפּ-שִיג] [בֿארִיאבּלע_נאמע_תוֹ_והִיתעלִישת] [...] [-פֿ פִֿילע] בֿארִיאבּלע_נאמע [...] [-פֿ|-ל|-וּ|-ש|-נ] [--הִינת הִינת [--הִינת הִינת] ...] נאמע [-ה|-פּ|-ר] [פִֿילע] [-ל] גרוּבּוּוִּיד [בֿארנאמע] [-ל|-ה|-א] [פִֿילע ...] [-מ (שתרעתצה|נוֹרמאל)] פִֿילע [-ש פּוֹשִיתִיוֹנ] [-ד דעבִֿיצע] [-ש פּוֹשִיתִיוֹנ] [-ד דעבִֿיצע] [-בֿ בֿאר] רעגִישתער[=בֿאלוּע[:מאשכּ]] [-ש שִיזע] פִֿילענאמע [-ש|--שכִּיפּ-שִיג] פִֿילע שִיגנאתוּרע_פִֿילע [פּוּבּכּעיִ_פִֿילע] [-ש|--שכִּיפּ-שִיג] פּוּבּכּעיִ_פִֿילע [אדדר|צוֹמוּנִית][,שפּעעד] [ארג] [צארד [הואדדרעשש]] [צארד] [דִיר] [ענבֿבֿאר=בֿאלוּע] [ענבֿבֿאר] [כּעיִשתרוֹכּע1] [כּעיִשתרוֹכּע2] ... [מוֹדוּלע1 מוֹדוּלע2 ...] [נוּמבּער:]בֿארנאמע [נוּמ] [וֹפּתִיוֹנש...] [וֹפּתִיוֹנש] [וֹפּתִיוֹנש] דִישכּ [וֹפּתִיוֹנש] פִֿילע_וֹר_דעבִֿיצע [וֹפּתִיוֹנש] פֿוֹנת_פִֿילעש [וֹפּתִיוֹנש] [שעת1] [שעת2] [שתרִינג] [וֹפּתִיוֹנ] שוֹוּרצע... [וֹפּתִיוֹנ] [ִינשתאלל_דעבִֿיצע] [וֹפּתִיוֹנ]... [מוֹדוּלעש] [וֹפּתִיוֹנ]... [פּאתה|דעבִֿיצע] [וֹפּתש] [פּאתה] [פּאתתערנ ...] [וּשערלִישת] [בֿאלוּע]... [וכּסה[כּסד]] [וכּסה] [[-א|-וּ|-בֿ] [-ג וכּסה] תערמ [תיִפּע]] [[יִעאר-]מוֹנתה-דאיִ] [הוֹוּר:מִינוּתע[:שעצוֹנד]] [בּוּש]:[שלוֹת][.פֿוּנצ] [בֿענדוֹר]:[דעבִֿיצע] `%s' ִיש נוֹת א לוֹצאל דִישכּ `צריִפּתוֹמוֹוּנת' צוֹממאנד פֿאִילש: %s `לוֹוֹפּבּאצכּ' צוֹממאנד פֿאִילש: %s `נבֿשעתענבֿ' פֿאִילעד. 
יִוֹוּ וִילל האבֿע תוֹ שעת `בּוֹוֹת-דעבִֿיצע' בֿארִיאבּלע מאנוּאלליִ.  את תהע ִיעעע1275 פּרוֹמפּת, תיִפּע:
  %s
 `וֹבּפּפּאתה' נוֹת פֿוֹוּנד ִינ פּארענת דִירש וֹפֿ `%s', נוֹ ִיעעע1275 נאמע דִישצוֹבֿעריִ א בֿאלוּע ואש אששִיגנעד תוֹ תהע ארגוּמענת `%s' והִילע ִית דוֹעשנ'ת רעקוִּירע אנ ארגוּמענת אצצעשש דענִיעד אדד נוֹתע שעגמענת פֿוֹר צהרפּ ִיעעע1275 אדדר אדדרעשש נוֹת פֿוֹוּנד אששוּמע ִינפּוּת ִיש א פּכּסעלִינוּכּס צוֹנפִֿיגוּראתִיוֹנ פִֿילע. אששוּמע ִינפּוּת ִיש א שיִשלִינוּכּס צוֹנפִֿיגוּראתִיוֹנ פִֿילע. אששוּמע ִינפּוּת ִיש אנ ִישוֹלִינוּכּס צוֹנפִֿיגוּראתִיוֹנ פִֿילע. אתתעמפּת תוֹ ִינשתאלל תוֹ ענצריִפּתעד דִישכּ וִיתהוֹוּת צריִפּתוֹדִישכּ ענאבּלעד. שעת `%s' ִינ פִֿילע `%s'. אתתעמפּת תוֹ רעאד וֹר ורִיתע וֹוּתשִידע וֹפֿ דִישכּ `%s' אתתעמפּת תוֹ רעאד וֹר ורִיתע וֹוּתשִידע וֹפֿ פּארתִיתִיוֹנ אתתעמפּת תוֹ רעאד פּאשת תהע ענד וֹפֿ פִֿילע אתתעמפּת תוֹ שעעכּ וֹוּתשִידע וֹפֿ תהע פִֿילע אתתעמפּתִינג תוֹ רעאד תהע צוֹרע ִימאגע `%s' פֿרוֹמ גרוּבּ אתתעמפּתִינג תוֹ רעאד תהע צוֹרע ִימאגע `%s' פֿרוֹמ גרוּבּ אגאִינ אבֿאִילאבּלע ראמ אבֿאִילאבּלע פֿוֹרמאתש: בּאד שִיגנאתוּרע בּאשע_אדדר = 0כּס%llx, לענגתה = 0כּס%llx, %s
 בּאשע_אדדר = 0כּס%llx, לענגתה = 0כּס%llx, תיִפּע = 0כּס%x
 בִּיתמאפּ פִֿילע `%s' ִיש וֹפֿ וּנשוּפּפּוֹרתעד פֿוֹרמאת בּלעשש פֿוֹר פּפּצ-בּאשעד מאצש בּלעשש פֿוֹר כּס86-בּאשעד מאצש בּלוֹצכּלִישת פִֿילע בּלוֹצכּלִישתש ארע ִינצוֹמפּלעתע בּלוֹצכּלִישתש ארע ִינבֿאלִיד בּלוֹצכּשִיזע ִיש נוֹת דִיבִֿישִיבּלע בּיִ 512 צאנ'ת בּרעאכּ 0 לוֹוֹפּש צאנ'ת צוֹמפּרעשש `%s' תוֹ `%s' צאנ'ת דעתערמִינע פִֿילעשיִשתעמ וֹנ %s צאנ'ת פִֿינד צוֹממאנד `%s' צאנ'ת מוֹוּנת ענצריִפּתעד בֿוֹלוּמע `%s': %s צאנ'ת וֹפּענ `%s': %s צאנ'ת וֹפּענ פִֿילע %s, ִינדעכּס %d: עררוֹר %d צאנ'ת רעתרִיעבֿע בּלוֹצכּלִישתש צאנ'ת רעתרִיעבֿע בּלוֹצכּלִישתש: %s צאנ'ת שעת %dכּס%d פֿוֹנת שִיזע: פֿרעעתיִפּע עררוֹר %d: %s צאננוֹת צוֹמפּרעשש תהע כּערנעל ִימאגע צאננוֹת צוֹפּיִ `%s' תוֹ `%s': %s צאננוֹת דעלעתע `%s': %s צאננוֹת פִֿינד עפִֿי דִירעצתוֹריִ צאננוֹת פִֿינד א גרוּבּ דרִיבֿע פֿוֹר %s.  צהעצכּ יִוֹוּר דעבִֿיצע.מאפּ צאננוֹת פִֿינד א דעבִֿיצע פֿוֹר %s (ִיש /דעבֿ מוֹוּנתעד?) צאננוֹת פִֿינד לוֹצאלע `%s' צאננוֹת געת תראנשלאתוֹר צוֹממאנד לִינע פֿוֹר פּאתה `%s': %s צאננוֹת מאכּע תעמפּוֹראריִ דִירעצתוֹריִ: %s צאננוֹת מאכּע תעמפּוֹראריִ פִֿילע: %s צאננוֹת וֹפּענ וֹש פִֿילע `%s': %s צאננוֹת וֹפּענ `%s': %s צאננוֹת וֹפּענ צוֹנפִֿיגוּראתִיוֹנ פִֿילע `%s': %s צאננוֹת וֹפּענ דִירעצתוֹריִ `%s': %s צאננוֹת רעאד `%s' צוֹררעצתליִ צאננוֹת רעאד `%s': %s צאננוֹת רענאמע תהע פִֿילע %s תוֹ %s צאננוֹת רעשתוֹרע תהע וֹרִיגִינאל דִירעצתוֹריִ צאננוֹת שעעכּ `%s': %s צאננוֹת שתאת `%s': %s צאננוֹת ורִיתע תוֹ צד-רוֹמ צאננוֹת ורִיתע תוֹ `%s': %s צאננוֹת ורִיתע תוֹ תהע שתדוֹוּת: %s צארד נוֹת פֿוֹוּנד צאת פִֿילע צהעצכּשוּמ בֿערִיפִֿיצאתִיוֹנ פֿאִילעד צהוֹוֹשע תהע צוֹמפּרעששִיוֹנ תוֹ וּשע פֿוֹר צוֹרע ִימאגע צמפּ פִֿילע לוֹצאל צוֹמוּנִית[,שפּעעד] צוֹמפּארע פֿאִיל את וֹפֿפֿשעת %llu צוֹמפּרעשש גרוּבּ פִֿילעש [וֹפּתִיוֹנאל] צוֹננעצתִיוֹנ רעפֿוּשעד צוֹננעצתִיוֹנ תִימעוֹוּת צוֹנבֿערת תוֹ בּוֹלד פֿוֹנת צוֹרע ִימאגע ִיש תוֹוֹ בִּיג (0כּס%x > 0כּס%x) צוֹרע.ִימג בֿערשִיוֹנ מִישמאתצה צוֹוּלדנ'ת אוּתוֹצוֹנפִֿיגוּרע %s צוֹוּלדנ'ת פִֿינד ִיעעע1275 דעבִֿיצע פּאתה פֿוֹר %s.
יִוֹוּ וִילל האבֿע תוֹ שעת `בּוֹוֹת-דעבִֿיצע' בֿארִיאבּלע מאנוּאלליִ צוֹוּלדנ'ת פִֿינד א נעצעששאריִ מעמבּער דעבִֿיצע וֹפֿ מוּלתִי-דעבִֿיצע פִֿילעשיִשתעמ צוֹוּלדנ'ת פִֿינד געלִי צוֹנשוּמער צוֹוּלדנ'ת פִֿינד געוֹמ `פּארת' צלאשש צוֹוּלדנ'ת וֹפּענ געוֹמ צוֹוּלדנ'ת רעאד עלִי מעתאדאתא צוֹוּלדנ'ת רעתרִיעבֿע וּוִּיד צוֹוּלדנ'ת רעתרִיעבֿע געלִי וּוִּיד צוֹוּלדנ'ת רעתרִיעבֿע ראנדוֹמ דאתא צוֹוּלדנ'ת רעתרִיעבֿע ראנדוֹמ דאתא פֿוֹר שאלת צוֹוּלדנ'ת שענד נעתווֹרכּ פּאצכּעת צפּ פִֿילע לוֹצאל צרצ פִֿילע צריִפּתוֹגראפּהִיצ עררוֹר נוּמבּער %d צוּררענת דִירעצתוֹריִ וֹפֿ תהע שיִשלִינוּכּס [דעפֿאוּלת ִיש פּארענת דִירעצתוֹריִ וֹפֿ ִינפּוּת פִֿילע]. צוּררענת דִירעצתוֹריִ וֹפֿ תהע שיִשלִינוּכּס אש ִית וִילל בּע שעענ וֹנ רוּנתִימע  [דעפֿאוּלת ִיש פּארענת דִירעצתוֹריִ וֹפֿ ִינפּוּת פִֿילע]. ציִגוִינ_צוֹנבֿ_פּאתה() פֿאִילעד דעלעתע דעבִֿיצע מאפּ ִיפֿ ִית אלרעאדיִ עכּסִישתש דעשתִינאתִיוֹנ וּנרעאצהאבּלע דעבִֿיצע צוֹוּנת עכּסצעעדש לִימִית דעבִֿיצע תרעע מוּשת בּע שוּפּפּלִיעד (שעע `דעבִֿיצעתרעע' צוֹממאנד) דִישאבּלע הִינתִינג דִישכּ `%s' נוֹת פֿוֹוּנד דִישכּ דוֹעש נוֹת עכּסִישת, שוֹ פֿאללִינג בּאצכּ תוֹ פּארתִיתִיוֹנ דעבִֿיצע %s דִישכּ מוֹדוּלע תוֹ וּשע (בִּיוֹשדִישכּ וֹר נאתִיבֿע). תהִיש וֹפּתִיוֹנ ִיש וֹנליִ אבֿאִילאבּלע וֹנ בִּיוֹש תארגעת. דִישכּ רעאד פֿאִילש את וֹפֿפֿשעת %lld, לענגתה %lld דִישכּבּוֹוֹת.ִימג שִיזע מוּשת בּע %u בּיִתעש דוֹ נוֹת ִינשתאלל בּוֹוֹתשעצתוֹר דוֹ נוֹת פּרוֹבּע פֿוֹר פִֿילעשיִשתעמש ִינ דעבִֿיצע דוֹמאִינ נאמע צוֹמפּוֹנענת ִיש תוֹוֹ לוֹנג דוֹנ'ת וּפּדאתע לעד שתאתע דוֹנ'ת וּפּדאתע תהע `בּוֹוֹת-דעבִֿיצע'/`בּוֹוֹת*' נבֿראמ בֿארִיאבּלעש. תהִיש וֹפּתִיוֹנ ִיש וֹנליִ אבֿאִילאבּלע וֹנ עפִֿי אנד ִיעעע1275 תארגעתש. דוֹנע עמבּעד פִֿילע אש א מעמדִישכּ ִימאגע
ִימפּלִיעש `-פּ (מעמדִישכּ)/בּוֹוֹת/גרוּבּ' אנד וֹבֿעררִידעש אניִ פּרעפִֿיכּס שוּפּפּלִיעד פּרעבִֿיוֹוּשליִ, בּוּת תהע פּרעפִֿיכּס ִיתשעלפֿ צאנ בּע וֹבֿעררִידדענ בּיִ לאתער וֹפּתִיוֹנש עמבּעד פִֿילע אש אנ עארליִ צוֹנפִֿיג עמבּעד פִֿילע אש פּוּבּלִיצ כּעיִ פֿוֹר שִיגנאתוּרע צהעצכִּינג עמבּעדדִינג ִיש נוֹת פּוֹששִיבּלע, בּוּת תהִיש ִיש רעקוִּירעד פֿוֹר ראִיד אנד לבֿמ ִינשתאלל עמבּעדדִינג ִיש נוֹת פּוֹששִיבּלע, בּוּת תהִיש ִיש רעקוִּירעד פֿוֹר צרוֹשש-דִישכּ ִינשתאלל ענאבּלע ארצש (בִּיג-ענדִיאנ מִיפּש מאצהִינעש, מוֹשתליִ שגִי) בּוֹוֹת. דִישאבּלעש הפֿש+, אפּמ, שפּארצ64 אנד בּוֹוֹת אש דִישכּ ִימאגע פֿוֹר ִי386-פּצ ענאבּלע שפּארצ בּוֹוֹת. דִישאבּלעש הפֿש+, אפּמ, ארצש אנד בּוֹוֹת אש דִישכּ ִימאגע פֿוֹר ִי386-פּצ ענאבּלִינג %s שוּפּפּוֹרת ... ענתער: בּוֹוֹת, `ע': וֹפּתִיוֹנש, `צ': צמד-לִינע ענבִֿירוֹנמענת בּלוֹצכּ תוֹוֹ שמאלל עררוֹר: %s.
 עכּספּעצת גרוּבּ ִימאגעש וּנדער תהע דִירעצתוֹריִ דִיר/%s ִינשתעאד וֹפֿ תהע %s דִירעצתוֹריִ פֿאִילעד תוֹ צוֹפּיִ גרוּבּ תוֹ תהע פּרעפּ פּארתִיתִיוֹנ פֿאִילעד תוֹ געת צאנוֹנִיצאל פּאתה וֹפֿ `%s' פֿאִילעד תוֹ רעאד תהע שעצתוֹרש וֹפֿ תהע צוֹרע ִימאגע פֿאִילוּרע רעאדִינג שעצתוֹר 0כּס%llx פֿרוֹמ `%s' פֿאִילוּרע תוֹ רעאד פּאששווֹרד פֿאִילוּרע ורִיתִינג שעצתוֹר 0כּס%llx תוֹ `%s' פֿאלשע פֿאוּלתיִ ראמ (בּאדראמ) פִֿילע `%s' נוֹת פֿוֹוּנד פִֿילענאמע עכּספּעצתעד פִֿילענאמע וֹר תעמפּוֹ אנד נוֹתעש עכּספּעצתעד פִֿילעשיִשתעמ `%s' דוֹעש נוֹת שוּפּפּוֹרת לאבּעלש פִֿילעשיִשתעמ `%s' דוֹעשנ'ת שוּפּפּוֹרת בּלוֹצכּלִישתש פִֿילעשיִשתעמ וֹנ %s ִיש נעִיתהער הפֿש נוֹר הפֿש+ פִֿירמוארע ִימאגע ִיש תוֹוֹ בִּיג פֿוֹרצע אוּתוֹהִינת פֿוֹוּר ארגוּמענתש עכּספּעצתעד פֿושתארת.ִימג דוֹעשנ'ת מאתצה תהע כּנוֹונ גוֹוֹד בֿערשִיוֹנ. פּרוֹצעעד את יִוֹוּר וֹונ רִישכּ גענעראתע אנ ִימאגע ִינ פֿוֹרמאת גִיבֿע א שהוֹרת וּשאגע מעששאגע גִיבֿע תהִיש העלפּ לִישת גִיבֿענ ארגוּמענת ִיש א שיִשתעמ דעבִֿיצע, נוֹת א פּאתה גרוּבּ-מכִּימאגע ִיש צוֹמפִּילעד וִיתהוֹוּת כּסז שוּפּפּוֹרת גרוּבּ> האנג פֿוֹר שעצש שעצוֹנדש (דעפֿאוּלת 3600) העכּס פִֿילע ִיגנוֹרע בִּיתמאפּ שתרִיכּעש והענ לוֹאדִינג ִינצוֹררעצת תערמִינאל דִימענשִיוֹנש שפּעצִיפִֿיצאתִיוֹנ ִינִיתרד אלרעאדיִ לוֹאדעד ִינשתאלל פֿוֹנתש [דעפֿאוּלת=%s] ִינשתאלל גרוּבּ פֿוֹר תארגעת פּלאתפֿוֹרמ [דעפֿאוּלת=%s] ִינשתאלל גרוּבּ ִימאגעש וּנדער תהע דִירעצתוֹריִ דִיר/%s ִינשתעאד וֹפֿ תהע %s דִירעצתוֹריִ ִינשתאלל תהעמעש [דעפֿאוּלת=%s] ִינשתאלל דעבִֿיצע ִישנ'ת שפּעצִיפִֿיעד ִינשתאלל עבֿענ ִיפֿ פּרוֹבּלעמש ארע דעתעצתעד ִינשתאלל וֹנליִ לוֹצאלעש [דעפֿאוּלת=אלל] ִינשתאלל וֹנליִ מוֹדוּלעש אנד תהעִיר דעפּענדענצִיעש [דעפֿאוּלת=אלל] ִינבֿאלִיד פּבּכּדפֿ2 פּאששווֹרד ִינבֿאלִיד ארצה-דעפּענדענת עלפֿ מאגִיצ ִינבֿאלִיד ארצה-ִינדעפּענדענת עלפֿ מאגִיצ ִינבֿאלִיד ארגוּמענת ִינבֿאלִיד בּלוֹצכּ שִיזע ִינבֿאלִיד צוֹלוֹר שפּעצִיפִֿיצאתִיוֹנ `%s' ִינבֿאלִיד דעבִֿיצע תרעע ִינבֿאלִיד ענבִֿירוֹנמענת בּלוֹצכּ ִינבֿאלִיד פִֿילע נאמע `%s' ִינבֿאלִיד פֿוֹנת ראנגע ִינבֿאלִיד לִינע פֿוֹרמאת: %s ִינבֿאלִיד מוֹדִינפֿוֹ פִֿילע `%s' ִינבֿאלִיד פּאראמעתער %s ִינבֿאלִיד שכִּיפּ בֿאלוּע %lld ִינבֿאלִיד בֿארִיאבּלע נאמע `%s' ִינבֿאלִיד בִֿידעוֹ מוֹדע שפּעצִיפִֿיצאתִיוֹנ `%s' ִינבֿאלִיד זִימאגע ִיוֹצתל געת_ארראיִ_ִינפֿוֹ עררוֹר: %s ִיוֹצתל געת_דִישכּ_ִינפֿוֹ עררוֹר: %s ִיוֹצתל ראִיד_בֿערשִיוֹנ עררוֹר: %s כּערנעל ִימאגע ִיש תוֹוֹ בִּיג (0כּס%x > 0כּס%x) לִישת נעתווֹרכּ אדדרעששעש לִישת נעתווֹרכּ צארדש לִישת נעתווֹרכּ רוֹוּתעש לש פּאתה לזוֹפּ פִֿילע צוֹררוּפּתעד מאכּע תהע דרִיבֿע אלשוֹ בּוֹוֹתאבּלע אש פֿלוֹפּפּיִ (דעפֿאוּלת פֿוֹר פֿדכּס דעבִֿיצעש). מאיִ בּרעאכּ וֹנ שוֹמע בִּיוֹשעש. מִיששִינג `%c' שיִמבּוֹל מִיששִינג מאנדאתוֹריִ וֹפּתִיוֹנ פֿוֹר `%s' מוֹדוּלע `%s' ִישנ'ת לוֹאדעד מוֹדוּלע ִישנ'ת לוֹאדעד נאמע נעעד אנ ִימאגע אנד מוֹוּנתפּוִֹינת נוֹ אפּמ פֿוֹוּנד נוֹ דהצפּ ִינפֿוֹ פֿוֹוּנד נוֹ דהצפּ וֹפּתִיוֹנ %d פֿוֹוּנד נוֹ דהצפּ וֹפּתִיוֹנש פֿוֹוּנד נוֹ דנש רעצוֹרד פֿוֹוּנד נוֹ דנש רעפּליִ רעצעִיבֿעד נוֹ דנש שערבֿערש צוֹנפִֿיגוּרעד נוֹ עפִֿי רוֹוּתִינעש ארע אבֿאִילאבּלע פֿוֹר יִוֹוּר פּלאתפֿוֹרמ נוֹ עפִֿי רוֹוּתִינעש ארע אבֿאִילאבּלע והענ רוּננִינג ִינ בִּיוֹש מוֹדע נוֹ ִיעעע1275 רוֹוּתִינעש ארע אבֿאִילאבּלע פֿוֹר יִוֹוּר פּלאתפֿוֹרמ נוֹ שגִי רוֹוּתִינעש ארע אבֿאִילאבּלע פֿוֹר יִוֹוּר פּלאתפֿוֹרמ נוֹ `/' ִינ צאנוֹנִיצאל פִֿילענאמע נוֹ צוֹממאנד ִיש שפּעצִיפִֿיעד נוֹ צוֹמפּרעששִיוֹנ ִיש אבֿאִילאבּלע פֿוֹר יִוֹוּר פּלאתפֿוֹרמ נוֹ דעצריִפּתִיוֹנ כּעיִ אבֿאִילאבּלע נוֹ הִינתש אבֿאִילאבּלע פֿוֹר יִוֹוּר פּלאתפֿוֹרמ. עכּספּעצת רעדוּצעד פּערפֿוֹרמאנצע נוֹ נעתווֹרכּ צארד פֿוֹוּנד נוֹ ראנדוֹמ נוּמבּער גענעראתוֹר ִיש אבֿאִילאבּלע פֿוֹר יִוֹוּר וֹש נוֹ שערבֿער ִיש שפּעצִיפִֿיעד נוֹ שוּצה פּארתִיתִיוֹנ נוֹ שוִּיתאבּלע בִֿידעוֹ מוֹדע פֿוֹוּנד נוֹ שיִמבּוֹל תאבּלע נוֹ תערמִינאל שפּעצִיפִֿיעד נוֹ תערמִינאתוֹר ִינ תהע צוֹרע ִימאגע נוֹנ-שעצתוֹר-אלִיגנעד דאתא ִיש פֿוֹוּנד ִינ תהע צוֹרע פִֿילע נוֹת א דִירעצתוֹריִ נוֹת א פּרִימאריִ פּארתִיתִיוֹנ נוֹת א רעגוּלאר פִֿילע נוֹת ִינ פֿוּנצתִיוֹנ בּוֹדיִ וֹנע ארגוּמענת עכּספּעצתעד וֹנליִ ִיפּבֿ4 וֹנליִ ִיפּבֿ6 וֹתהער שוֹפֿתוארע ִיש וּשִינג תהע עמבּעדדִינג ארעא, אנד תהערע ִיש נוֹת ענוֹוּגה רוֹוֹמ פֿוֹר צוֹרע.ִימג.  שוּצה שוֹפֿתוארע ִיש וֹפֿתענ תריִִינג תוֹ שתוֹרע דאתא ִינ א ואיִ תהאת אבֿוִֹידש דעתעצתִיוֹנ.  וע רעצוֹממענד יִוֹוּ ִינבֿעשתִיגאתע וֹוּת וֹפֿ מעמוֹריִ וֹוּתפּוּת א גענעראתעד ִימאגע תוֹ פִֿילע [דעפֿאוּלת=שתדוֹוּת] וֹוּתפּוּת פִֿילע מוּשת בּע שפּעצִיפִֿיעד וֹוּתפּוּת גענעראתעד צוֹנפִֿיג תוֹ פִֿילע [דעפֿאוּלת=שתדוֹוּת] וֹבֿערפֿלוֹו ִיש דעתעצתעד פּאששווֹרדש דוֹנ'ת מאתצה פּערפֿוֹרמ א בּוֹוֹתפּ אוּתוֹצוֹנפִֿיגוּראתִיוֹנ פּהיִשִיצאל בֿוֹלוּמע %s נוֹת פֿוֹוּנד פּרע-לוֹאד שפּעצִיפִֿיעד מוֹדוּלעש מוֹדוּלעש פּרעפֿער ִיפּבֿ4 פּרעפֿער ִיפּבֿ6 פּרעמאתוּרע ענד וֹפֿ פִֿילע פּרעמאתוּרע ענד וֹפֿ פִֿילע %s פּרעשש צאפּשלוֹצכּ כּעיִ פּרעשש ִינשערת כּעיִ פּרעשש נוּמלוֹצכּ כּעיִ פּרעשש שצרוֹלללוֹצכּ כּעיִ פּרעשש שיִשרק פּרעשש לעפֿת אלת פּרעשש לעפֿת צתרל פּרעשש לעפֿת שהִיפֿת פּרעשש רִיגהת אלת פּרעשש רִיגהת צתרל פּרעשש רִיגהת שהִיפֿת פּרִינת פּרוֹגראמ בֿערשִיוֹנ פּרִינת תהע בֿערשִיוֹנ ִינפֿוֹרמאתִיוֹנ אנד עכּסִית פּרִינת תהִיש מעששאגע אנד עכּסִית פּרִינת בֿערבּוֹשע מעששאגעש. פּוּבּלִיצ כּעיִ %08x נוֹת פֿוֹוּנד רעאד עררוֹר את וֹפֿפֿשעת %llu: %s רעאד תעכּסת פֿרוֹמ פִֿילע. רעלאתִיבֿע שוּבּדִירעצתוֹריִ וֹנ נעתווֹרכּ שערבֿער רעלוֹצאתִיוֹנ 0כּס%x ִיש נוֹת ִימפּלעמענתעד יִעת רעשערבֿעד ראמ רעתרִיעבֿע דהצפּ וֹפּתִיוֹנ אנד שאבֿע ִית ִינתוֹ בֿאר. ִיפֿ בֿאר ִיש - תהענ פּרִינת תהע בֿאלוּע. רוֹוֹת דִירעצתוֹריִ אש ִית וִילל בּע שעענ וֹנ רוּנתִימע [דעפֿאוּלת=/]. רוֹוֹת דִירעצתוֹריִ וֹפֿ תפֿתפּ שערבֿער רוֹוֹת דִירעצתוֹריִ וֹפֿ תהע שיִשלִינוּכּס דִישכּ [דעפֿאוּלת=/]. רוֹוּתע לוֹוֹפּ דעתעצתעד שאבֿע רוֹמ ִימאגעש ִינ דִיר [וֹפּתִיוֹנאל] שאבֿע וֹוּתפּוּת ִינ פִֿילע [רעקוִּירעד] שעלעצת פֿאצע ִינדעכּס שערִיאל פּוֹרת `%s' ִישנ'ת פֿוֹוּנד שעת [נאמע=בֿאלוּע ...] שעת צאפּשלוֹצכּ מוֹדע שעת פֿוֹנת אשצענת שעת פֿוֹנת דעשצענת שעת פֿוֹנת פֿאמִיליִ נאמע שעת פֿוֹנת ראנגע שעת פֿוֹנת שִיזע שעת ִינפּוּת פִֿילענאמע פֿוֹר 32-בִּית פּארת. שעת ִינפּוּת פִֿילענאמע פֿוֹר 64-בִּית פּארת. שעת ִינפּוּת פִֿילענאמע. דעפֿאוּלת ִיש שתדִינ שעת ִינשערת מוֹדע שעת נוּמלוֹצכּ מוֹדע שעת וֹוּתפּוּת פִֿילענאמע. דעפֿאוּלת ִיש שתדוֹוּת שעת פּאוּשע מוֹדע שעת פּרעפִֿיכּס דִירעצתוֹריִ [דעפֿאוּלת=%s] שעת שצרוֹלללוֹצכּ מוֹדע שעת תהע לאבּעל תוֹ רענדער שעת תהע פּרוֹגראמ נאמע שִיזע שתרעתצה|נוֹרמאל שיִמבּוֹל `%s' נוֹת פֿוֹוּנד תעמפּוֹראריִ תערמִינאל %s ִישנ'ת פֿוֹוּנד וֹר ִית'ש נוֹת האנדלעד בּיִ תערמִינפֿוֹ תערמִינאל `%s' ִישנ'ת פֿוֹוּנד תהע ִיד וֹפֿ בּוֹוֹתלוֹאדער. תהִיש וֹפּתִיוֹנ ִיש וֹנליִ אבֿאִילאבּלע וֹנ עפִֿי אנד מאצש. תהע פּרעפּ פּארתִיתִיוֹנ ִיש נוֹת עמפּתיִ. ִיפֿ יִוֹוּ ארע שוּרע יִוֹוּ ואנת תוֹ וּשע ִית, רוּנ דד תוֹ צלעאר ִית: `%s' תהע ארגוּמענת `%s' רעקוִּירעש אנ ִינתעגער תהע צהוֹשענ פּארתִיתִיוֹנ ִיש נוֹת א פּרעפּ פּארתִיתִיוֹנ תהע דעבִֿיצע.מאפּ ענתריִ `%s' ִיש ִינבֿאלִיד. ִיגנוֹרִינג ִית. פּלעאשע צוֹררעצת וֹר דעלעתע יִוֹוּר דעבִֿיצע.מאפּ תהע דרִיבֿע %s ִיש דעפִֿינעד מוּלתִיפּלע תִימעש ִינ תהע דעבִֿיצע מאפּ %s תהע דרִיבֿע נאמע `%s' ִינ דעבִֿיצע.מאפּ ִיש ִינצוֹררעצת. וּשִינג %s ִינשתעאד. פּלעאשע וּשע תהע פֿוֹרמ [הפֿצ]ד[0-9]* (ע.ג. `הד0' וֹר `צד') תהע פִֿירשת שעצתוֹר וֹפֿ תהע צוֹרע פִֿילע ִיש נוֹת שעצתוֹר-אלִיגנעד תהע ִינשתאללאתִיוֹנ דעבִֿיצע ִיש רעמוֹבֿאבּלע. תהִיש וֹפּתִיוֹנ ִיש וֹנליִ אבֿאִילאבּלע וֹנ עפִֿי. תהע פּארתִיתִיוֹנ תיִפּע 0כּס%x ִישנ'ת בֿאלִיד תהע שעצתוֹרש וֹפֿ תהע צוֹרע פִֿילע ארע תוֹוֹ פֿראגמענתעד תהע שִיזע וֹפֿ `%s' ִיש נוֹת %u תהע שִיזע וֹפֿ `%s' ִיש תוֹוֹ לארגע תהע שִיזע וֹפֿ `%s' ִיש תוֹוֹ שמאלל תהִיש עלפֿ פִֿילע ִיש נוֹת וֹפֿ תהע רִיגהת תיִפּע תהִיש גפּת פּארתִיתִיוֹנ לאבּעל צוֹנתאִינש נוֹ בִּיוֹש בּוֹוֹת פּארתִיתִיוֹנ; עמבּעדדִינג ווֹנ'ת בּע פּוֹששִיבּלע תהִיש לדמ האש נוֹ עמבּעדדִינג פּארתִיתִיוֹנ; עמבּעדדִינג ווֹנ'ת בּע פּוֹששִיבּלע תהִיש משדוֹש-שתיִלע פּארתִיתִיוֹנ לאבּעל האש נוֹ פּוֹשת-מבּר גאפּ; עמבּעדדִינג ווֹנ'ת בּע פּוֹששִיבּלע תהרעע ארגוּמענתש עכּספּעצתעד תִימע וֹוּת וֹפּענִינג `%s' תִימעוֹוּת רעאדִינג `%s' תִימעוֹוּת: צוֹוּלד נוֹת רעשוֹלבֿע הארדוארע אדדרעשש תוֹוֹ דעעפּ נעשתִינג וֹפֿ שיִמלִינכּש תראנשלאתוֹר `%s' פֿוֹר פּאתה `%s' האש שעבֿעראל נוֹנ-וֹפּתִיוֹנ ווֹרדש, את לעאשת `%s' אנד `%s' תראנשלאתוֹר `%s' פֿוֹר פּאתה `%s' ִיש גִיבֿענ וֹנליִ וֹפּתִיוֹנש, צאננוֹת פִֿינד דעבִֿיצע פּארת תראנשלאתוֹר צוֹממאנד לִינע ִיש עמפּתיִ פֿוֹר פּאתה `%s' תווֹ ארגוּמענתש עכּספּעצתעד תיִפּע וּנאבּלע תוֹ ִידענתִיפֿיִ א פִֿילעשיִשתעמ ִינ %s; שאפֿעתיִ צהעצכּ צאנ'ת בּע פּערפֿוֹרמעד וּנאלִיגנעד דעבִֿיצע שִיזע וּנעכּספּעצתעד עפִֿי עררוֹר וּנעכּספּעצתעד ענד וֹפֿ פִֿילע וּנכּנוֹונ ארגוּמענת `%s' וּנכּנוֹונ צוֹמפּרעששִיוֹנ %d
 וּנכּנוֹונ דעבִֿיצע תיִפּע %s
 וּנכּנוֹונ פִֿילעשיִשתעמ וּנכּנוֹונ כִּינד וֹפֿ ראִיד דעבִֿיצע `%s' וּנכּנוֹונ רעגעכּספּ עררוֹר וּנכּנוֹונ תארגעת פֿוֹרמאת %s
 וּנכּנוֹונ תערמִינפֿוֹ תיִפּע `%s' וּנרעצוֹגנִישעד דהצפּ וֹפּתִיוֹנ פֿוֹרמאת שפּעצִיפִֿיצאתִיוֹנ `%s' וּנרעצוֹגנִישעד נעתווֹרכּ אדדרעשש `%s' וּנרעצוֹגנִישעד נעתווֹרכּ ִינתערפֿאצע `%s' וּנרעצוֹגנִיזעד נוּמבּער וּנרעשוֹלבֿאבּלע אדדרעשש %s וּנשעת [נאמע ...] וּנשוּפּפּוֹרתעד התתפּ עררוֹר %d: %s וּנשוּפּפּוֹרתעד התתפּ רעשפּוֹנשע וּנשוּפּפּוֹרתעד ראִיד בֿערשִיוֹנ: %d.%d וּנשוּפּפּוֹרתעד גזִיפּ פֿוֹרמאת וּנשוּפּפּוֹרתעד פּלאתפֿוֹרמ %s
 וּנשוּפּפּוֹרתעד שערִיאל פּוֹרת פֿלוֹו צוֹנתרוֹל וּנשוּפּפּוֹרתעד שערִיאל פּוֹרת פּארִיתיִ וּנשוּפּפּוֹרתעד שערִיאל פּוֹרת שפּעעד וּנשוּפּפּוֹרתעד שערִיאל פּוֹרת שתוֹפּ בִּיתש נוּמבּער וּנשוּפּפּוֹרתעד שערִיאל פּוֹרת ווֹרד לענגתה וּשע צוֹלוֹר פֿוֹר בּאצכּגרוֹוּנד וּשע צוֹלוֹר פֿוֹר לאבּעל וּשע צוֹלוֹר פֿוֹר לאבּעל בּאצכּגרוֹוּנד וּשע צוֹלוֹר פֿוֹר תעכּסת וּשע דִיר אש תהע עפִֿי שיִשתעמ פּארתִיתִיוֹנ רוֹוֹת. וּשע דִיר פֿוֹר פּפּצ מאצ ִינשתאלל. וּשע פִֿילע אש פֿוֹנת (פּפֿ2). וּשע פִֿילע אש פֿוֹנת פֿוֹר לאבּעל וּשע פִֿילע אש תהע בּוֹוֹת ִימאגע [דעפֿאוּלת=%s] וּשע פִֿילע אש תהע צוֹרע ִימאגע [דעפֿאוּלת=%s] וּשע פִֿילע אש תהע דעבִֿיצע מאפּ [דעפֿאוּלת=%s] וּשע פִֿילע אש כּסוֹררִישוֹ [וֹפּתִיוֹנאל] וּשע גרוּבּ פִֿילעש ִינ תהע דִירעצתוֹריִ דִיר [דעפֿאוּלת=%s] וּשע שתרִינג אש פּרוֹדוּצת נאמע וּשע שתרִינג אש פּרוֹדוּצת בֿערשִיוֹנ וּשע ִידענתִיפִֿיער פִֿילע עבֿענ ִיפֿ וּוִּיד ִיש אבֿאִילאבּלע וּשע ִימאגעש אנד מוֹדוּלעש וּנדער דִיר [דעפֿאוּלת=%s/<פּלאתפֿוֹרמ>] וּשע תהעמעש וּנדער דִיר [דעפֿאוּלת=%s] וּשע תראנשלאתִיוֹנש וּנדער דִיר [דעפֿאוּלת=%s] בֿארִיאבּלע `%s' ִישנ'ת שעת בִֿישוּאלליִ-וֹרדערעד וּתפֿ-8 ואִית וּנתִיל א דעבּוּגגער וִילל אתתאצה וִילל נוֹת פּרוֹצעעד וִיתה בּלוֹצכּלִישתש ורִיתע וֹוּתפּוּת תוֹ פִֿילע [דעפֿאוּלת=שתדוֹוּת]. ורוֹנג עלִי מאגִיצ וֹר בֿערשִיוֹנ כּסנוּ_וּוִּיד דעבִֿיצע כּסז פִֿילע צוֹררוּפּתעד וֹר וּנשוּפּפּוֹרתעד בּלוֹצכּ וֹפּתִיוֹנש יִוֹוּ צאנ'ת דעלעתע תהִיש אדדרעשש יִוֹוּ נעעד תוֹ לוֹאד תהע כּערנעל פִֿירשת יִוֹוּר בִּיוֹש בּוֹוֹת פּארתִיתִיוֹנ ִיש תוֹוֹ שמאלל; עמבּעדדִינג ווֹנ'ת בּע פּוֹששִיבּלע יִוֹוּר צוֹרע.ִימג ִיש וּנוּשוּאלליִ לארגע.  ִית ווֹנ'ת פִֿית ִינ תהע עמבּעדדִינג ארעא יִוֹוּר עמבּעדדִינג ארעא ִיש וּנוּשוּאלליִ שמאלל.  צוֹרע.ִימג ווֹנ'ת פִֿית ִינ ִית.                                                                                                                                                                                                                                                                             boot/grub/locale/en@piglatin.mo                                                                     0000600 0001750 0001750 00000410002 13417732100 0015451 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                       /     )    S      n  #   n      n     o     1o     Io  $   `o     o  6   o     o     o  	   o     o     o     p     -p     Ep     [p  .   hp  .   p  %   p     p     p    p    r    	s     t  8   +t  '   dt  7   t  F   t  v   u  +   u     u      u     u  !   u     v  ,   1v     ^v     vv  $   v     v  *   v     v     
w     w     "w     :w  
   Zw  	   ew     ow     w  ,   w  ,   w  ,   w  '    x  -   Hx      vx  (   x  (   x  )   x     y     3y     Sy     `y     iy  "   ry  4   y     y     y  7   y     z      z  1   6z     hz     z  %   z  '   z  %   z  '   z     &{     +{     -{     K{     `{     u{     z{     {     {     {     {     {     {     {  3   |     6|  $   <|     a|     y|     |      |     |     |     |     |  -   }     E}  !   b}     }     }     }  #   }     }  `   v~  Z   ~     2     M     i     k     o                      0     3        /     G     a     x                    Ҁ                         !     '  %   6     \     {                    ׁ                       *   8  3   c  1     E   ɂ  C     <   S  1     2                  .     N      k               Ǆ                  7   ?  1   w       +   ȅ            #   1     U  5   p          Ć        -         0     Q     q  "     8                    	   6  #   @     d                    Ո       )        %     D     b  "     P             	  H     &   g            !     ,   ϊ                 	   )  !   3  *   U       '             Ջ            $        >     P     b     }            
   Ҍ  
   ݌       1        -     ;     H     a  3   }  >     $             ,     I     a     |       +        ܎       o     #               $               '   ;  9   c            z   Ԑ  "   O     r     y  8        Ƒ  
   ݑ                    /     ˒  +             ,     A     W  "   j            (        ؓ  #     &     ?   ;  '   {  @                             '  "   9  0   \                 7                            #     /     5  0   <     m                 2     %             .  *   =  6   h  +        ˗            !   ͘  d     e   T  d     i     o     H        B     U     k     |                    ֛  #             1     I  1   [  )                       ՜  /             #     :  5   W            K   ȝ       &             1     F     c     g  7   m  D               '     P        m       	                  Ġ     ؠ     i  '        "  +   1     ]     n  )          9   Ѣ          "     ?     [     p            $        أ       "        (     *     6  (   C     l     p     v  "   ~  +     -   ͤ               #     4     F     X  O   h          Υ                 %        E  )   d  !     "        Ӧ       +        2     I     Y     h  !   z               ѧ     ݧ                0     C     W     u            4             	          3     N     i                  !   ٩       4     M   J  2        ˪       *     8   .     g     t                    ҫ  3   ߫  $     +   8     d     y                    Ĭ                     4     6  D   N         f     m     u  7     ;   ̯          (  !   G     i       s             +     H     Y     l                    ı     ȱ     α     w     0     C     W     ^     j            '     
                            .     <     @     R  H   o  L                  4     D  %   S     y       #        е          
           *     K      j       "     (                %        3  2   M            #     *   Ʒ                 #        /     4  	   F  	   P  "   Z  ;   }  #     <   ݸ          (     F  .   T  	          `           !     )   7     a     e     k     s  q                       ,     C     V     l            "                       ,     C     Y     m       #     a        !     >  g   Z     ½     G     a  -   ~       !          "     '     Q   >               ƿ     ڿ                    8     U     r                                          :  #   U     y            -               "     b   =  )                    ,        @     Y  	   ^  "   h  %                    
          &     )        7  5   J  ^          $     %        D  ^     _   V  }        4  )     '     >   =  D   |  !     '     -     #   9     ]  )   }       )          )     ,   5     b                      E     $   (     M  A   e  )                  
     %      D     e  q   z       :   	     D     b  `   q                    &     <     X  0   m            #               )   &  &   P  #   w  -                             3  )   O     y  %     %     ,     '     :   *     e  -     0     /          .   #  '   R     z       '     $     "                  :  2   H  Q   {  *                )     o   1            6   t                 0           !     "   /  #   R     v                 !          
          <   8     u       %     >        
                    =     V  d   i  *     (     ,   "     O     h  0     6                            (     .  0   H     y  !               $                  2     P     a  $   ~  "     $                        -     N     c     u                                '        <     \  $   u  +     "          )             ,     J     j       '                    <         H     i  %   q                      m        c     ~                 +     3     1   E     w  '     -          '     '     .   4  	   c     m                                   -     H     b     }  *     ?          B      p   C       /   ?     o       .     O     )        C     Y  	   h  <   r       5                  -     C     ^  :   x       1                  +     1     D     K     Q     `     i                      	                             )     <     V     l                 
     
     	          !     )             (  P   :                 n     F   P  N          "               .   .  .   ]  /     W     -     -   B  $   p  #     0     6        !     /     B     U  (   c  1     )                       )     C  !   Z     |                  %          &        F     `  0   ~                       7     .   V       4     #                  2  '   G     o                 %                  .     E     ^     }            ,                            9     L     _  #   t            _     B   ,     o                                &   *     Q     n     |       N     m        `  &   z            7               ;   0  V   l  +     "          &   ,  !   S     u  r                    /     H     F   A  w     N         O  (   g            I     )     $   ,  ,   Q  '   ~       %                            (  $   :  '   _  *     (                    J        g            -     +          $        7  "   @  +   c            -     J        9    U %   t "    9             "   0    S    d     w                            "    7    O %   j                 %           6    I    ]    e [   y     !           $    8    =    Z    g    z                 /    7    4   T /            -        @   8    y 3                   	        / 1   O                     	    	           	 1   	    	 0   
    L
    a
 !   w
    
 J   
 "       $    0    <    R    k    ~                                        %    2 &   H    o                 '    &       ? L   L 9        0       " !   6    X    w                                 #     #   D $   h         &        !               2    G    L    [ 	   q 7   {     D    ]    %   p ,    [    ;    w   [ 7    K    #   W /   {             &    U   ) @    Q           +    A +   V     R    L    .   ?    n     F                       )    A    Y     l             2    !   
 #   ,    P    d    |                     $       ;    Z (   x #                    )   $    N    k     '    '    '        0   5    f     -    8    !    '   (    P    h !         &            .       C !   a B    F    E    B   S t   )     )   5     _     ~       0          D   ! 	   L!    V!    d!    p! &   !    !    !    !    ! ?   " @   F" 3   "    "    " c  " g  4$ h  % "   ' J   (' 7   s' I   ' [   '    Q( 8   (    %) (   :)    c) )   y) %   ) 9   )    *    !* ,   :* !   g* 4   *    * 
   *    *    * *   +    ?+    M+ %   Z+    + @   + ;   + @   , 6   P, C   , /   , 9   , 7   5- 8   m- )   - )   -    - 
   	. 
   . -   . D   M. 
   .    . =   . 
   .    . A   / )   Y/    / .   / 1   / .   / 1   0    H0    O0 (   Q0    z0    0    0    0    0 )   0    1    %1    81    M1    `1 K   s1    1 4   1    1     2    >2 -   T2    2 !   2    2    2 ;   2 )   :3 0   d3    3 &   3    3 .   3    +4    4    f5 "   5 #   6    26    66    >6    ^6    f6    s6 '   6 F   6 J    7    K7 #   k7    7 !   7 #   7    7    8    (8    G8    W8    s8    8    8    8 4   8 )   8    9    $9 "   B9     e9    9    9    9    9    9 ;   : D   D: B   : c   : ^   0; W   ; H   ; I   0< /   z< )   < 1   < +   = .   2= 0   a= *   = )   = +   = ,   > ,   @> Q   m> F   > 0   ? C   7? -   {? ,   ? 4   ? (   @ I   4@ +   ~@ *   @ 1   @ D   A .   LA -   {A "   A 2   A I   A .   IB    xB &   B    B /   B +   B    C -   8C *   fC    C    C 8   C *   C (   %D '   ND 1   vD o   D    E    5E ^   RE 4   E    E    F '   F C   5F    yF    F !   F    F +   F 7   F     !G 4   BG    wG    G #   G     G .   G    #H    9H !   OH !   qH     H %   H    H    H    H 9   I    FI    YI "   jI "   I <   I H   I 0   6J    gJ $   J #   J #   J ,   J    K ?   8K '   xK %   K    K 0   gL    L +   L 6   L    M "   :M 3   ]M M   M "   M +   N    .N 1   N 	   O    O L   4O $   O    O    O     O &   O    P &   P 9   
Q     DQ    eQ "   Q    Q )   Q    Q    Q 7   R     MR 0   nR 4   R W   R 5   ,S X   bS    S    S    S    S    T 0   1T C   bT    T    T    T C   T 	   U    #U    3U    HU    bU    rU    zU D   U    U    U %   U     V D   @V 5   V    V    V ;   V B   )W 4   lW &   W    W '  W .   Y    6Y    Y    VZ    Z    {[ f   \    \    \    \    \    \    \    ]     9] +   Z] &   ]    ]    ] ?   ] 7   "^    Z^    c^    g^    ^ A   ^    ^    ^ (   _ F   1_ &   x_ &   _ e   _ 2  ,` .   _a &   a    a '   a    a 	   b N   b a   Zb    b    b 8   b k   c ,   oc    c    c    c &   c    c     d    d 7   e    e 9   e     f %   9f 5   _f #   f J   f    g %   "g "   Hg    kg    g    g    g .   g    h "   )h ,   Lh    yh    }h    h 7   h    h 	   h 	   h /   h <   !i ;   ^i !   i    i    i    i    j    j n   0j    j     j    j    j    k 1   +k )   ]k =   k 0   k 1   k #   (l    Ll 8   kl    l    l    l    l ,   m #   5m     Ym    zm    m +   m "   m    m    n &   -n $   Tn    yn    n O   n *   n    &o     Bo #   co #   o !   o !   o *   o /   p /   Jp "   zp I   p h   p A   Pq "   q &   q 8   q M   r    cr    ur     r    r !   r    r D   s 3   Ks 8   s    s    s    s    t    t "   2t )   Ut '   t    t    t    t i   t   Nu    w 	   w .   w J   x Q   bx )   x -   x 1   y    >y )   [y    y    %z '   Cz    kz    z    z    z "   z    z    { 	   {    !{ 
  |    }    $}    ?}    H} )   V} %   }    } :   }    ~    ~    '~    C~    J~    h~    z~    ~ $   ~ e   ~ `   $     *            3    "   & !   I .   k &    $            .    '   B +   j     -    4   Ձ %   
    0 2   B $   u A       ܂ "    -    8   9    r    v     /       ă    ˃         /    R   . 0    S        '       @ ?   P                8 ,   V 6        	    	   ʆ    Ԇ                Ç    և            * )   F '   p .       ǈ             '    E    b    }     0        '   m (           \     " (   C @   l     .   ʌ     .    7   = u   u #    !       1    K    ] '   } &    '   ̎ &    &    %   B     h     +       Ǐ     (    #   " 0   F    w     )    =   ֐ "       7 1   Q     8       >     [ #   | B    &       
     +    0   I    z !            
    3   ē 6       / J   L     $    2   B 2   u            ,       f ;   n 7    N    U   1 2    ;    @    4   7 ,   l :    &   ԛ 6    ,   2 ;   _ >    (   ڜ "    $   &     K    l N    3   ҝ     ]   & :    '    %    $    *   2 ,   ]         %   C L   i )            '   { "       ơ     #       ' B   E "    +    -   ע          :   < 9   w 2    >    *   # "   N +   q     $    7   ۤ     4   ' 3   \ :    5   ˥ R    +   T ?    @    @       B A   W 5       ϧ     9    2   = 0   p     )       ٨ F    q   4 7    	   ީ     4       & "   Ǫ    L       @    D    M C   V (    .   ì /    0   "    S -   l     )    .           - #   = P   a %    !   خ 8    Q   3 
        	    +        ̯         ;    6   а ;        C !   d >    O   ű 	           2    N    h "   q >       Ӳ -    (       D -   Z          $   ɳ     )    -   / +   ] .    !       ڴ     )       <    Z    r         &    $   ٵ     $    .   B )   q      +    2    )    	   E 7   O     &    *   ŷ         8   + -   d (        T   ָ )   + 	   U 3   _            й          #    "    #   Һ "    "    =   < B   z <        7   
 A   B 
    4    4   ļ @       : #   F    j &    %    &   ֽ %    %   # $   I !   n          :    Y       K a   g    ɿ    b 8   $    ]    x >    c    5   7    m         N    %    J   "    m         "    !    L   	    V A   o %                           &    : !   F    h                     "        )       9 !   Q    s      	                            1    3   5    i     p    (   
 )   3 &   ]     h    t        0       =    E @   ^ @    B    |   # E    A    7   ( 4   ` F    O       ,    ?    W    o /    :    <    "   ) "   L    o !        ,        +    +   8 #   d 4        5    !    %   4 ?   Z +    *        "    J   3 @   ~ !    F    +   ( &   T *   {     4    )    $   #    H )   e 0                 "    (   >    g    | "    >             %    '   :    b    y     /    "             ! Z    %    /   %    U %   q     &    '    4    &   ;    b    v $    j        !    8       	 #   & K   J         P    {    9    /    "    5   " .   X !           S    Z -   E A   s g    b        s   *     A    $       " d   1 9    5    @    3   G     { 1            !           0 3   G 5   { 8    8    %   #    I    ] g   } (    &       5 C   Q :        .        -    4   B    w !    :    e    "   X *   { 5    /    M       Z -   y 0            +   	    5 !   P !   r         $            %   + 2   Q     ,    *    &    1       I    g             ~       ? .   [ %            )                .    O    n     !    @    O    E   [ ?    )         ;   , $   h R        F       E    e &   }         -    H       M     d                            D   ' (   l ?            +    $   < f   a ,                "   7    Z    s                                (    ?    W    h 5    '        !     (   "    K 2   h 0        p    P   N (    ?        0   " *   S    ~ +                       $    A    V 0   j 0    2            4   -    b )   w     !                       4 P   @ &    g         6    >       # Q        P    k    0   j  C     *     /   
 /   : ;   j r    X    p   r      !       & 8   C '   | {    m     B            b       Z    w !                    0   +    \     y %    B    -    /   1    a    z     %         &           ; /   Y '    &    5    .   	 !   =	    _	 )   |	    	 <   	 *   	 #   *
 (   N
 8   w
 8   
 7   
 +   ! B   M &    )    D    L   & -   s 3    $        0    *   J 3   u &        ?    (   ' -   P Z   ~ _    f   9 a       V      s                 r           M  (  q  t     )   K          ]  U          (           @   h  K  c    k          C    O              \               A            B        H           S   4        w   A   R      [                     +           i        W        0  e  d                          $                 A  f               /  v      ?       a    1      5  v                      #            j       ~              g          X  "  )      5  v  #  ~                w  .      B       }                  u         z                    _             ?    *             F          o                                                                J                       ~  Q                  l                      r  t               r    8                  Z  <      z      ;   t   T              '                     j  p    3  <            $      n  0      2     	                     b                            N         g                p    j      ^                                      o  O    I          L  '                !  U  W  C                     D               P      v  k      V           M  =  u                       a            }      ~    `      e                   \                              l                        x  "  V  6    ,      2  w  #    k  z                   O      %                               G       *      b  N  Z    ,  N   D  N           V            L  v     2    ?  T        G           !  I  &    W          x      9     w    Y      p         0                ;                    z                                   u  z             ;     x          \    "  (            I  7  &          *  b           {      	              L       W  T         +         c     Z             Q          .  y  2          4  :          S            -      \                       _        T                        r                                 X              8    #     3   d                  8                     R        g      A    d                      U                                       f                  (             ^         F                `         `                             "   r                     !      K    =   G            !              N                                         '    l  u    >  <         >  ^       7               M                                                   a  W      &                       ~             ,                [             )          3                                 h          Z                      1          M    /           Z                  5       J    i                            ,                    I  #   i                 l  g       ;    4      B                                 }        :        :                 %                              H              _               y   U            c                                	  "                f            /  e        C    C                       
        /     {    &  -         Q  +      &                    L  X          S        q  P    0  '         E      `  i         }        +            	                |               D          3                9    >   |            |         7     
   "    s   <  9            F       T                R   ,                         -      w          (      l                }  V        j  c    f             J                       .    P                    p            *  ?     n                    [    (    :              D                    f  0     n     q   Q                |    y      {  6   @                 @  
    E                     x                                     F    G     
    b    Y                      t     ]                 y         q  -             &    A      =  7  =    ^                                            >                    m  4       `               M  s         t  Q        {     4  e  ^                          P      $  )  6        U                           .    G      H  !   [        )      >    q           9           S  d        O      9               p         X      R  B  E   %     E  n         C        8   K      S       {        /                                     h      5  *  *  _          1   
      /                                    %     :              g        H    .             	              H        ,             '        Y  1    +                    m      -                                  E                 h                          o         F      I          k        ]                a      2    h   %    .         a              j       
          '  n                             -            k   o    +        u       <   %                        ]          e              b         @      =        $   s    \  m                        J    d     !          )          R               X                    3          @      J                        $    6          $        i  Y      7   6               Y                   y            B                8    |     #  s        ?       1           L           5              ;  K        o   P    	            [                           D                   _                  m    ]           m             x           c  O                    total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s doesn't exist. Please specify --target or --directory %s doesn't look like an EFI partition.
 %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: not found %s: option '%c%s' doesn't allow an argument
 %s: option '%s' is ambiguous; possibilities: %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- --ppc PATH|--x86 FILE -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add PUBKEY_FILE to trusted keys. Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Bless DIR of HFS or HFS+ partition for PPC macs. Bless FILE of HFS or HFS+ partition for intel macs. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't create file: %s Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check if CPU supports Physical Address Extension. Check if FILE can be booted as i386 PAE Xen unprivileged guest kernel Check if FILE can be booted as x86_64 Xen unprivileged guest kernel Check if FILE can be used as Xen x86 privileged guest kernel Check if FILE can be used as x86 multiboot kernel Check if FILE can be used as x86 multiboot2 kernel Check if FILE is ARM EFI file Check if FILE is ARM Linux Check if FILE is ARM64 EFI file Check if FILE is ARM64 Linux Check if FILE is BIOS bootsector Check if FILE is IA64 EFI file Check if FILE is IA64 Linux Check if FILE is MIPS Linux Check if FILE is MIPSEL Linux Check if FILE is POWERPC Linux Check if FILE is SPARC64 Linux Check if FILE is XNU (Mac OS X kernel) hibernated image Check if FILE is hiberfil.sys in hibernated state Check if FILE is i386 EFI file Check if FILE is i386 XNU (Mac OS X kernel) Check if FILE is i386 kFreeBSD Check if FILE is i386 kNetBSD Check if FILE is of specified type. Check if FILE is x86 Linux Check if FILE is x86 Linux supporting 32-bit protocol Check if FILE is x86 kFreeBSD Check if FILE is x86 kNetBSD Check if FILE is x86_64 EFI file Check if FILE is x86_64 XNU (Mac OS X kernel) Check if FILE is x86_64 kFreeBSD Check if FILE is x86_64 kNetBSD Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear bit at BYTE:BIT in CMOS. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find a free BootNNNN slot Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Default server is ${net_default_server} Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not apply any reed-solomon codes when embedding core.img. This option is only available on x86 BIOS targets. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. EFI bootloader id isn't specified. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enable/disable RTS/CTS. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Evaluate arguments as GRUB commands Execute syslinux config in new context Execute syslinux config in new context taking only menu entries Execute syslinux config in same context Execute syslinux config in same context taking only menu entries Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FONTS FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File size: %s
 File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Generates a bootable CD/USB/floppy image.  Arguments other than options to this program are passed to xorriso, and indicate source files, source directories, or any of the mkisofs options listed by the output of `%s'. Generating grub configuration file ... Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s Glue 32-bit and 64-bit binary into Apple universal one. Graft point syntax (E.g. /boot/grub/grub.cfg=./grub.cfg) is accepted HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS INSTALL_DEVICE must be system device filename.
%s copies GRUB images into %s.  On some platforms, it may also install GRUB into the boot sector. If FILENAME is `-', the default value %s is used.

There is no `delete' command; if you want to delete the whole environment
block, use `rm %s'. Import ZFS wrapping key stored in FILE. Incorrect VDEV Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Installing for %s platform.
 Insufficient privileges to access firmware, assuming BIOS Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s LOCALES Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List Xen storage. List all files. List available video modes. If resolution is given show only modes matching it. List coreboot tables. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load DTB file. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load Truecrypt ISO. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load module. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... M MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MENU_ENTRY is a number, a menu item title or a menu item identifier. Please note that menu items in
submenus or sub-submenus require specifying the submenu components and then the
menu item component. The titles should be separated using the greater-than
character (>) with no extra spaces. Depending on your shell some characters including > may need escaping. More information about this is available
in the GRUB Manual in the section about the 'default' command.  MODULE MODULES Mac-style bless on HFS or HFS+ Mail xorriso support requests to <bug-xorriso@gnu.org>. Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NOT RUNNING:  NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Netboot directory for %s created. Configure your DHCP server to point to %s
 Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OPTIONS FILE OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Option -- switches to native xorriso command mode. Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] PUBKEY_ID Paletted  Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Prepares GRUB network boot images at net_directory/subdir assuming net_directory being TFTP root. Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot into firmware setup menu. Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove PUBKEY_ID from trusted keys. Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Render Apple .disk_label. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING STRING ... Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Script `%s' contains no commands and will do nothing
 Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set bit at BYTE:BIT in CMOS. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the base frequency. Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting GRUB_TIMEOUT to a non-zero value when GRUB_HIDDEN_TIMEOUT is set is no longer supported. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show CBMEM console content. Show a help message. Show a long list with more detailed information. Show boot time statistics. Show contents of FILE in hex. Show coreboot boot time statistics. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show raw dump of the CMOS contents. Show raw dump of the PCI configuration space. Show the contents of a file. Show the current mappings. Show the list of trusted keys. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Skip signature-checking of the environment file. Skip signature-checking of the public key file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Sorry, no parttool is available for %s
 Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Storage information for `%s' does not include type Storage information for `%s' indicates neither a plain partition nor a plain disk Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Switch to native disk drivers. If no modules are specified default set (pata,ahci,usbms,ohci,uhci,ehci) is used Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 T TARGET THEMES Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This VDEV is a RAIDZ%llu
 This VDEV is a mirror This entry can be booted by any user. This requires setting GRUB_DEFAULT=saved in %s/default/grub.\n Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Transform syslinux config into GRUB one. Translate SET1 characters to SET2 in STRING. Translate to lower case. Translate to upper case. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown platform `%s-%s' Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized compression `%s' Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME VDEV element number %d isn't correct
 VDEV element number %d:
 VDEV with %d children
 Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. You've found a bug Your embedding area is unusually small.  core.img won't fit in it. Your xorriso doesn't support `--grub2-boot-info'. Some features are disabled. Please use xorriso 1.2.9 or later. Your xorriso doesn't support `--grub2-boot-info'. Your core image is too big. Boot as disk is disabled. Please use xorriso 1.2.9 or later. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] [-s|--skip-sig] [variable_name_to_whitelist] [...] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [-s|--skip-sig] FILE SIGNATURE_FILE [PUBKEY_FILE] [-s|--skip-sig] PUBKEY_FILE [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [DIR] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTIONS] [SET1] [SET2] [STRING] [OPTION] SOURCE... [OPTION] [INSTALL_DEVICE] [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `%s' is miscompiled: its start address is 0x%llx instead of 0x%llx: ld.gold bug? `%s' is not a local disk `cryptomount' command fails: %s `loopback' command fails: %s `nvsetenv' failed. 
You will have to set `boot-device' variable manually.  At the IEEE1275 prompt, type:
  %s
 `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found assume input is a pxelinux configuration file. assume input is a syslinux configuration file. assume input is an isolinux configuration file. attempt to install to encrypted disk without cryptodisk enabled. Set `%s' in file `%s'. attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: available targets: bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format bless for ppc-based macs bless for x86-based macs blocklist FILE blocklists are incomplete blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't compress `%s' to `%s' can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s can't set %dx%d font size: Freetype error %d: %s cannot compress the kernel image cannot copy `%s' to `%s': %s cannot delete `%s': %s cannot find EFI directory cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot find locale `%s' cannot get translator command line for path `%s': %s cannot make temporary directory: %s cannot make temporary file: %s cannot open OS file `%s': %s cannot open `%s': %s cannot open configuration file `%s': %s cannot open directory `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu compress GRUB files [optional] connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find IEEE1275 device path for %s.
You will have to set `boot-device' variable manually couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d current directory of the syslinux [default is parent directory of input file]. current directory of the syslinux as it will be seen on runtime  [default is parent directory of input file]. cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit device tree must be supplied (see `devicetree' command) disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. disk read fails at offset %lld, length %lld diskboot.img size must be %u bytes do not install bootsector do not probe for filesystems in DEVICE domain name component is too long don't update LED state don't update the `boot-device'/`Boot*' NVRAM variables. This option is only available on EFI and IEEE1275 targets. done embed FILE as a memdisk image
Implies `-p (memdisk)/boot/grub' and overrides any prefix supplied previously, but the prefix itself can be overridden by later options embed FILE as an early config embed FILE as public key for signature checking embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enable ARCS (big-endian mips machines, mostly SGI) boot. Disables HFS+, APM, sparc64 and boot as disk image for i386-pc enable sparc boot. Disables HFS+, APM, ARCS and boot as disk image for i386-pc enabling %s support ... enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to copy Grub to the PReP partition failed to get canonical path of `%s' failed to read the sectors of the core image failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' is too big file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists filesystem on %s is neither HFS nor HFS+ firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification initrd already loaded install FONTS [default=%s] install GRUB for TARGET platform [default=%s] install GRUB images under the directory DIR/%s instead of the %s directory install THEMES [default=%s] install device isn't specified install even if problems are detected install only LOCALES [default=all] install only MODULES and their dependencies [default=all] invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid argument invalid block size invalid color specification `%s' invalid device tree invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid modinfo file `%s' invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' invalid zImage ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no EFI routines are available for your platform no EFI routines are available when running in BIOS mode no IEEE1275 routines are available for your platform no SGI routines are available for your platform no `/' in canonical filename no command is specified no compression is available for your platform no decryption key available no hints available for your platform. Expect reduced performance no network card found no random number generator is available for your OS no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected only ipv4 only ipv6 other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found plain Image kernel not supported - rebuild with CONFIG_(U)EFI_STUB enabled pre-load specified modules MODULES prefer ipv4 prefer ipv6 premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print TARGET print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory as it will be seen on runtime [default=/]. root directory of TFTP server root directory of the syslinux disk [default=/]. route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the label to render set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the ID of bootloader. This option is only available on EFI and Macs. the PReP partition is not empty. If you are sure you want to use it, run dd to clear it: `%s' the argument `%s' requires an integer the chosen partition is not a PReP partition the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive %s is defined multiple times in the device map %s the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected EFI error unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported platform %s
 unsupported serial port flow control unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for label use COLOR for label background use COLOR for text use DIR as the EFI System Partition root. use DIR for PPC MAC install. use FILE as font (PF2). use FILE as font for label use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] use themes under DIR [default=%s] use translations under DIR [default=%s] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists write output to FILE [default=stdout]. wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your LDM Embedding Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub 2.02~beta2
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-12-24 21:18+0100
Last-Translator: Automatically generated
Language-Team: none
Language: en@piglatin
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=(n != 1);
               otaltay emorymay: %d iBKay
     oNay eferredpray odemay availableway
     eferredPray odemay: %ux%u
   EDIDway ecksumchay invalidway   EDIDway ersionvay: %u.%u
   ailedFay otay initializeway ideovay adapterway   oNay infoway availableway   EVBay infoway:   ersionvay: %d.%d  OEMway oftwaresay evray: %d.%d
   orway:   (eftmostlay)  (edialmay)  (ightmostray)  - artitionPay artstay atway %llu%sKiB  - ectorSay izesay %uB  - otalTay izesay %llu%sKiB  - otalTay izesay unknownway  [OPTIONway...] %.*say: ARGPway_ELPHay_FMTay arameterpay ustmay ebay ositivepay %.*say: ARGPway_ELPHay_FMTay arameterpay equiresray away aluevay %.*say: Unknownway ARGPway_ELPHay_FMTay arameterpay %ds %ds emainingray. %s appearsway otay ontaincay away %s ilesystemfay ichwhay isnway'tay ownknay otay eserveray acespay orfay OSDay-ylestay ootbay.  Installingway UBGRay erethay ouldcay esultray inway ILESYSTEMFay ESTRUCTIONDay ifway aluablevay ataday isway overwrittenway ybay ubgray-etupsay (--ipskay-fsay-obepray isablesday isthay eckchay, useway atway your ownway iskray) %s appearsway otay ontaincay away %s artitionpay apmay andway LDMay ichwhay isnway'tay ownknay otay ebay away afesay ombinationcay.  Installingway UBGRay erethay ouldcay esultray inway ILESYSTEMFay ESTRUCTIONDay ifway aluablevay ataday isway overwrittenway ybay ubgray-etupsay (--ipskay-fsay-obepray isablesday isthay eckchay, useway atway your ownway iskray) %s appearsway otay ontaincay away %s artitionpay apmay ichwhay isnway'tay ownknay otay eserveray acespay orfay OSDay-ylestay ootbay.  Installingway UBGRay erethay ouldcay esultray inway ILESYSTEMFay ESTRUCTIONDay ifway aluablevay ataday isway overwrittenway ybay ubgray-etupsay (--ipskay-fsay-obepray isablesday isthay eckchay, useway atway your ownway iskray) %s oesday otnay upportsay UUIDsway %s oesnday'tay existway. easePlay ecifyspay --argettay orway --irectoryday %s oesnday'tay ooklay ikelay anway EFIway artitionpay.
 %s eneratesgay away eyboardkay ayoutlay orfay UBGRay usingway ompckbcay\n %s isway eprecatedday. Useway etsay ayloadgfxpay=%s eforebay inuxlay ommandcay insteadway.
 %s isway eprecatedday. AVGay odemay %d isnway'tay ecognizedray. Useway etsay ayloadgfxpay=IDTHxHEIGHTWay[EPTHxDay] eforebay inuxlay ommandcay insteadway.
 %s isway otnay yet upportedsay ybay ubgray-onfigmkcay.\n %s, ithway urdHay %s %s, ithway urdHay %s (ecoveryray odemay) %s, ithway inuxLay %s %s, ithway inuxLay %s (ecoveryray odemay) %s, ithway enXay %s andway inuxLay %s %s, ithway enXay %s andway inuxLay %s (ecoveryray odemay) %s, ithway enXay ypervisorhay %s, ithway eeBSDkFray %s %s, ithway eeBSDkFray %s (ecoveryray odemay) %s, ithway ernelkay %s (iavay %s) %s, ithway ernelkay %s (iavay %s, ecoveryray odemay) %s: ASHHay ISMATCHMay
 %s: OKway
 %s: EADRay ERRORway
 %s: ooTay anymay argumentsway
 %s: You ustmay unray isthay asway ootray\n %s: errorway: %s: infoway: %s: invalidway optionway -- ‘%c’
 %s: otnay oundfay %s: optionway ‘%c%s’ oesnday'tay allowway anway argumentway
 %s: optionway ‘%s’ isway ambiguousway; ossibilitiespay: %s: optionway ‘--%s’ oesnday'tay allowway anway argumentway
 %s: optionway ‘--%s’ equiresray anway argumentway
 %s: optionway ‘-Way %s’ oesnday'tay allowway anway argumentway
 %s: optionway ‘-Way %s’ isway ambiguousway
 %s: optionway ‘-Way %s’ equiresray anway argumentway
 %s: optionway equiresray anway argumentway -- ‘%c’
 %s: optionway equiresray anway argumentway -- ‘%s’\n %s: unrecognizedway optionway ‘%c%s’
 %s: unrecognizedway optionway ‘--%s’
 %s: arningway: (32-itbay) (64-itbay) (OGRAMPRay ERRORway) oNay ersionvay ownknay!? (OGRAMPRay ERRORway) Optionway ouldshay avehay eenbay ecognizedray!? (onway %s) - abelLay ‘%s’ - astLay odificationmay imetay %d-%02d-%02d %02d:%02d:%02d %s --OREMay-- --ppcay ATHPay|--xay86 ILEFay -hay ASHHay [-cay ILEFay [-pay EFIXPRay]] [ILEFay1 [ILEFay2 ...]] -lay | -ray | [-say] ubdevgray osdiskway. .5 16-itbay otectedpray interfaceway upportedsay
 16-itbay otectedpray interfaceway unsupportedway
 32-itbay otectedpray interfaceway upportedsay
 32-itbay otectedpray interfaceway unsupportedway
 =ALVay > ACPIway onnay-olatilevay oragestay AMRay ACPIway eclaimableray AMRay ACPIway utdownshay ailedfay ADDRway ADDRway ALUEVay [ASKMay] ADDRway [IZESay] ADDRway1,ASKMay1[,ADDRway2,ASKMay2[,...]] ADDRESSway ERVERDNSSay APMway isabledday
 APMway isengagedday
 APMway enabledway
 APMway engagedway
 ARGPway_ELPHay_FMTay: %s aluevay isway esslay anthay orway equalway otay %s ASCIIway Acceptway OSDay-ylestay CRay/NLay inelay endingsway. Activeway inputway erminalstay: Activeway outputway erminalstay: Adapterway ‘%s’:
 Addway UBKEYPay_ILEFay otay ustedtray eyskay. Addway away DNSay erversay Addway away etworknay addressway. Addway away etworknay outeray. Advancedway optionsway orfay %s Advancedway optionsway orfay %s (ithway enXay ypervisorhay) Allowway otay interruptway ithway ESCway. Askway orfay ilefay amenay otay ebootray omfray. Assumeway inputway isway exhay. Assumeway inputway isway assphrasepay. Assumeway inputway isway awray. Attemptingway otay ecryptday astermay eykay... Attemptingway otay installway UBGRay otay away iskday ithway ultiplemay artitionpay abelslay orway othbay artitionpay abellay andway ilesystemfay.  isThay isway otnay upportedsay yet. Attemptingway otay installway UBGRay otay away iskday ithway ultiplemay artitionpay abelslay.  isThay isway otnay upportedsay yet. Attemptingway otay installway UBGRay otay away artitionlesspay iskday orway otay away artitionpay.  isThay isway away ADBay ideaway. Availableway inputway erminalstay: Availableway outputway erminalstay: Bay Bay/say IOSBay_UMPDay [INTway10_UMPDay] OCKBLay YTEBay:ITBay ackgroundBay imageway odemay. aseBay irectoryday orfay ashhay istlay. essBlay IRDay ofway HFSay orway HFSay+ artitionpay orfay PPCay acsmay. essBlay ILEFay ofway HFSay orway HFSay+ artitionpay orfay intelway acsmay. ootBay IOSBay-asedbay ystemsay. ootBay anway operatingway ystemsay. ootBay intoway inglesay odemay. ootBay ithway ebugday essagesmay. ootBay ithway erbosevay essagesmay. ootingBay ‘%s’ ootingBay away ommandcay istlay ootingBay inway indblay odemay ootpathBay: %s
 ootpathBay: unavailableway
 eakBray intoway GDBay ACGay  OLORCay OMMANDCay [ARGSway] UCPay Idleway oesnday'tay owslay ownday ocessorpray
 UCPay Idleway owsslay ownday ocessorpray
 CSay5536 atway %d:%d.%d
 anCay'tay eatecray ilefay: %s anCay'tay enableway OMRay areaway. angeChay onfiguredcay evicesday. angeChay artitionpay ypetay eckChay Altway eykay. eckChay ontrolCay eykay. eckChay iftShay eykay. eckChay orfay UCPay eaturesfay. eckChay asheshay ofway ilesfay ithway ashhay istlay ILEFay. eckChay ifway UCPay upportssay 64-itbay (onglay) odemay (efaultday). eckChay ifway UCPay upportssay ysicalPhay Addressway Extensionway. eckChay ifway ILEFay ancay ebay ootedbay asway iway386 AEPay enXay unprivilegedway uestgay ernelkay eckChay ifway ILEFay ancay ebay ootedbay asway xay86_64 enXay unprivilegedway uestgay ernelkay eckChay ifway ILEFay ancay ebay usedway asway enXay xay86 ivilegedpray uestgay ernelkay eckChay ifway ILEFay ancay ebay usedway asway xay86 ultibootmay ernelkay eckChay ifway ILEFay ancay ebay usedway asway xay86 ultibootmay2 ernelkay eckChay ifway ILEFay isway ARMway EFIway ilefay eckChay ifway ILEFay isway ARMway inuxLay eckChay ifway ILEFay isway ARMway64 EFIway ilefay eckChay ifway ILEFay isway ARMway64 inuxLay eckChay ifway ILEFay isway IOSBay ootsectorbay eckChay ifway ILEFay isway IAway64 EFIway ilefay eckChay ifway ILEFay isway IAway64 inuxLay eckChay ifway ILEFay isway IPSMay inuxLay eckChay ifway ILEFay isway IPSELMay inuxLay eckChay ifway ILEFay isway OWERPCPay inuxLay eckChay ifway ILEFay isway ARCSPay64 inuxLay eckChay ifway ILEFay isway UXNay (acMay OSway Xay ernelkay) ibernatedhay imageway eckChay ifway ILEFay isway iberfilhay.yssay inway ibernatedhay atestay eckChay ifway ILEFay isway iway386 EFIway ilefay eckChay ifway ILEFay isway iway386 UXNay (acMay OSway Xay ernelkay) eckChay ifway ILEFay isway iway386 eeBSDkFray eckChay ifway ILEFay isway iway386 etBSDkNay eckChay ifway ILEFay isway ofway ecifiedspay ypetay. eckChay ifway ILEFay isway xay86 inuxLay eckChay ifway ILEFay isway xay86 inuxLay upportingsay 32-itbay otocolpray eckChay ifway ILEFay isway xay86 eeBSDkFray eckChay ifway ILEFay isway xay86 etBSDkNay eckChay ifway ILEFay isway xay86_64 EFIway ilefay eckChay ifway ILEFay isway xay86_64 UXNay (acMay OSway Xay ernelkay) eckChay ifway ILEFay isway xay86_64 eeBSDkFray eckChay ifway ILEFay isway xay86_64 etBSDkNay eckChay eykay odifiermay atusstay. eckChay etherwhay userway isway inway USERLISTway. ecksChay UBGRay iptscray onfigurationcay ilefay orfay yntaxsay errorsway. earClay itbay atway YTEBay:ITBay inway OSCMay. earClay ethay eenscray. earedClay activeway agflay onway %d. 
 ommandsCay: ompareCay ILEFay ithway ocallay ilefay OCALLay. ompareCay ilefay ‘%s’ ithway ‘%s’:
 ompareCay otway ilesfay. omputeCay UXNay UUIDway ofway ethay eviceday. omputeCay orway eckchay ashhay ecksumchay. onfigureCay erialsay ortpay. ontinueCay oopslay onvertCay ommoncay ontfay ilefay ormatsfay intoway PFay2 opyCay ILEFay otay ocallay ilefay OCALLay. opyCay ILEFay otay andardstay outputway. ouldCay otnay ocatelay AFPSWay iverdray ouldnCay'tay indfay away eefray ootNNNNBay otslay ouldnCay'tay indfay ysicalphay olumevay ‘%s’. omeSay odulesmay aymay ebay issingmay omfray orecay imageway. ouldnCay'tay oadlay ashay256 ouldnCay'tay oadlay ashay512 eateCray IOSBay-ikelay ucturesstray orfay ackwardbay ompatibilitycay ithway existingway OSway. eateCray away ankblay environmentway ockblay ilefay. urrentCay erminfotay ypestay: EVICEDay EVICEDay [ARTITIONPay[+/-[YPETay]]] ... EVICEDay ustmay ebay anway OSway eviceday (eway.gay. /evday/asday). EVICEDay_AMENay IRDay IRECTORYDay [OSBundleRequiredway] ERVERDNSSay ebugDay ooltay orfay ilesystemfay iverdray. eclareDay emorymay egionsray asway aultyfay (adrambay). ecompressorDay isway ootay igbay efaultDay erversay isway ${etnay_efaultday_erversay} efineDay away enumay entryway. efineDay away ubmenusay. eleteDay away etworknay addressway. eleteDay away etworknay outeray. eleteDay ethay ecifiedspay oopbacklay ivedray. eleteDay ariablesvay. etermineDay iverdray. etermineDay ilesystemfay UUIDway. etermineDay ilesystemfay abellay. etermineDay ilesystemfay ypetay. etermineDay artitionpay apmay ypetay. eviceDay %s: evidDay: %s
 evidDay: unavailableway irectDay olorcay, askmay: %d/%d/%d/%d  ospay: %d/%d/%d/%d isableDay ACPIway. isableDay SMPay. isableDay allway ootbay outputway. isableDay/enableway ARTSMay (0/1). iscardingDay improperlyway estednay artitionpay (%s,%s,%s%d) iskDay achecay atisticsstay: itshay = %lu (%lu.%02lu%%), issesmay = %lu
 iskDay ountcay ustmay ecedepray isksday istlay.
 isplayDay AFPSWay ersionvay. isplayDay ARTSMay ealthhay atusstay. isplayDay away inelay ofway exttay. isplayDay ocklistblay ofway ILEFay. isplayDay outputway onway allway onsolescay. isplayDay owerpay odemay. isplayDay ethay usageway ofway isthay ommandcay andway exitway. isplayDay isthay elphay andway exitway. isplayDay/etsay urrentcay atetimeday. oDay otnay applyway anyway eedray-olomonsay odescay enwhay embeddingway orecay.imgway. isThay optionway isway onlyway availableway onway xay86 IOSBay argetstay. oDay otnay outputway ethay ailingtray ewlinenay. oDay otnay intpray essagesmay. oDay otnay obepray anyway oppyflay ivedray. oDay otnay useway APMway otay althay ethay omputercay. oDay othingnay, uccessfullysay. oDay othingnay, unsuccessfullyway. onDay'tay isplayday ootbay iagnosticday essagesmay. onDay'tay oadlay osthay ablestay ecifiedspay ybay ommacay-eparatedsay istlay. onDay'tay ebootray, ustjay althay. onDay'tay opstay afterway irstfay errorway. onDay'tay updateway EBDAway. ayMay ixfay ailuresfay orway angshay onway omesay IOSesBay utbay akesmay itway ineffectiveway ithway OSway otnay eceivingray RSDPay omfray UBGRay. EFIway ootloaderbay idway isnway'tay ecifiedspay. ENVVARway ENVVARway [ENVVARway] ... ERRORway: onay alidvay eyboardkay ayoutlay oundfay. eckChay ethay inputway.
 ESCway atway anyway imetay exitsway. EXPRESSIONway EXPRESSIONway ] Elapsedway imetay: %d.%03d say 
 Elapsedway imetay: %d.%03d econdssay 
 Embeddingway isway otnay ossiblepay.  UBGRay ancay onlyway ebay installedway inway isthay etupsay ybay usingway ocklistsblay.  oweverHay, ocklistsblay areway UNRELIABLEway andway eirthay useway isway iscouragedday. Emulateway away eystrokekay equencesay Enableway interpretationway ofway ackslashbay escapesway. Enableway/isableday RTSay/CTSay. Enterway ZFSay asswordpay:  Enterway inway KDBay onway ootbay. Enterway ormalnay odemay. Enterway assphrasepay orfay %s%s%s (%s):  Enterway asswordpay:  Enterway usernameway:  Errorway inway arsingpay ommandcay inelay argumentsway
 Evaluateway anway expressionway. Evaluateway argumentsway asway UBGRay ommandscay Executeway yslinuxsay onfigcay inway ewnay ontextcay Executeway yslinuxsay onfigcay inway ewnay ontextcay akingtay onlyway enumay entriesway Executeway yslinuxsay onfigcay inway amesay ontextcay Executeway yslinuxsay onfigcay inway amesay ontextcay akingtay onlyway enumay entriesway Exitway ailedfay Exitway omfray UBGRay. Exitway omfray oopslay Exitway omfray ormalnay odemay. Exportway ariablesvay. Exportway ersionvay 1 ablestay otay ethay OSway. Exportway ersionvay 2 andway ersionvay 3 ablestay otay ethay OSway. ILEFay ILEFay [ARGway ...] ILEFay [ARGSway...] ILEFay | EMPOTay [ITCHPay1 URATIONDay1] [ITCHPay2 URATIONDay2] ...  ILEFay... ILEFay1 ILEFay2 ILENAMEFay OMMANDCay ILESYSTEMFay [ARIABLEVay] ILEFay|omptpray ONTSFay ORMATFay AFPSWay otocolpray asnway'tay ableway otay indfay ethay interfaceway AFPSWay evisionray: %x
 OMFRay-OTay[,OMFRay-OTay] OMFRay[Kay|May|Gay] OTay[Kay|May|Gay] FTay_Initway_eeTypeFray ailsfay ailedFay otay ootbay othbay efaultday andway allbackfay entriesway.
 ailedFay otay eatecray ‘eviceday-appermay’ eetray allingFay ackbay otay ‘%s’ ileFay izesay: %s
 ileFay ystemsay ‘%s’ oesnday'tay upportsay embeddingway ilesFay ifferday atway ethay offsetway %llu: 0x%x [%s], 0x%x [%s]
 ilesFay ifferday inway izesay: %llu [%s], %llu [%s]
 ilesystemFay annotcay ebay accessedway ilesystemFay ypetay %s illFay ybridhay MBRay ofway GPTay ivedray EVICEDay. ecifiedSpay artitionspay illway ebay away artpay ofway ybridhay MBRay. Upway otay 3 artitionspay areway allowedway. YPETay isway anway MBRay ypetay. + eansmay atthay artitionpay isway activeway. Onlyway oneway artitionpay ancay ebay activeway. inalizeFay oadinglay ofway EFIway emulatorway. irstFay ytray ethay eviceday INTHay ifway urrentlycay unningray onway ARCway. Ifway INTHay endsway inway ommacay, alsoway ytray ubpartitionssay irstFay ytray ethay eviceday INTHay ifway urrentlycay unningray onway IOSBay. Ifway INTHay endsway inway ommacay, alsoway ytray ubpartitionssay irstFay ytray ethay eviceday INTHay ifway urrentlycay unningray onway EFIway. Ifway INTHay endsway inway ommacay, alsoway ytray ubpartitionssay irstFay ytray ethay eviceday INTHay ifway urrentlycay unningray onway IEEEway1275. Ifway INTHay endsway inway ommacay, alsoway ytray ubpartitionssay irstFay ytray ethay eviceday INTHay ifway irectday ardwarehay accessway isway upportedsay. Ifway INTHay endsway inway ommacay, alsoway ytray ubpartitionssay irstFay ytray ethay eviceday INTHay. Ifway INTHay endsway inway ommacay, alsoway ytray ubpartitionssay ixFay ideovay oblempray. oundFay %s onway %s (%s)\n oundFay %s onway %s\n oundFay UGNay achMay: %s oundFay urdHay odulemay: %s oundFay etBSDNay ernelkay: %s\n oundFay ackgroundbay: %s\n oundFay initrdway imageway: %s\n oundFay ernelkay odulemay irectoryday: %s\n oundFay ernelkay ofway eeBSDFray: %s\n oundFay inuxlay imageway: %s\n oundFay emethay: %s\n eetypeFray Errorway %d oadinglay yphglay 0x%x orfay Uway+0x%x%s eezeFray ATAway ecuritysay ettingssay untilway esetray. idayFray Gay UGNay UBGRay  ersionvay %s UBGRay ootBay enuMay UBGRay oesnday'tay owknay owhay otay althay isthay achinemay yet! UBGRay emulatorway. UBDEVICEGRay=ANPLay9DEVICE arbageGay inway ARGPway_ELPHay_FMTay: %s enerateGay UBGRay eyboardkay ayoutlay omfray inuxLay onsolecay oneway. enerateGay PBKDFay2 asswordpay ashhay. enerateGay away ubgray onfigcay ilefay enerateGay away andalonestay imageway (ontainingcay allway odulesmay) inway ethay electedsay ormatfay eneratesGay away ootablebay CDay/USBway/oppyflay imageway.  Argumentsway otherway anthay optionsway otay isthay ogrampray areway assedpay otay orrisoxay, andway indicateway ourcesay ilesfay, ourcesay irectoriesday, orway anyway ofway ethay isofsmkay optionsway istedlay ybay ethay outputway ofway ‘%s’. eneratingGay ubgray onfigurationcay ilefay ... etGay crcay32 ecksumchay ofway ILEFay. etGay iskday achecay infoway. etGay/etsay ATAway iskday arameterspay. iBGay iBGay/say ueGlay 32-itbay andway 64-itbay inarybay intoway Appleway universalway oneway. aftGray ointpay yntaxsay (Eway.gay. /ootbay/ubgray/ubgray.cfgay=./ubgray.cfgay) isway acceptedway ASHHay INTHay altHay ethay ystemsay, ifway ossiblepay usingway APMway. altsHay ethay omputercay.  isThay ommandcay oesday otnay orkway onway allway irmwarefay implementationsway. andleHay Nay ytesbay inway outputway ilefay. elloHay orldWay erculesHay  IDway IMAGEway1 [IMAGEway2 ...] OUNTPOINTMay IMAGEway_ATHPay OMMANDSCay INSTALLway_EVICEDay ustmay ebay ystemsay eviceday ilenamefay.
%s opiescay UBGRay imagesway intoway %s.  Onway omesay atformsplay, itway aymay alsoway installway UBGRay intoway ethay ootbay ectorsay. Ifway ILENAMEFay isway ‘-’, ethay efaultday aluevay %s isway usedway.

ereThay isway onay ‘eleteday’ ommandcay; ifway you antway otay eleteday ethay olewhay environmentway
ockblay, useway ‘rmay %s’. Importway ZFSay appingwray eykay oredstay inway ILEFay. Incorrectway EVVDay Incorrectway irtualvay eviceday: onay ypetay availableway Insertway away odulemay. Installway UBGRay onway your ivedray. Installationway inishedfay. oNay errorway eportedray. Installingway orfay %s atformplay.
 Insufficientway ivilegespray otay accessway irmwarefay, assumingway IOSBay Invalidway ackbay eferenceray Invalidway aracterchay assclay amenay Invalidway ollationcay aracterchay Invalidway ommandcay %s.
 Invalidway ontentcay ofway \{\} Invalidway eviceday ‘%s’.
 Invalidway iskday ountcay.
 Invalidway ecedingpray egularray expressionway Invalidway angeray endway Invalidway egularray expressionway Invokeway userway onfigurationcay outingray. Kay ERNELKay ARGSway EYBOARDKay_EYKay eyboardKay eykay otay uicklyqay ootbay isthay entryway. iBKay iBKay/say OCALESLay eafLay irtualvay eviceday (ilefay orway iskday) egacyLay ‘askway’ arameterpay onay ongerlay upportedsay. egendLay: askmay/ositionpay=edray/eengray/ueblay/eservedray engthLay ofway eneratedgay ashhay engthLay ofway altsay istLay DNSay erverssay istLay IPCay evicesday. istLay enXay oragestay. istLay allway ilesfay. istLay availableway ideovay odesmay. Ifway esolutionray isway ivengay owshay onlyway odesmay atchingmay itway. istLay orebootcay ablestay. istLay evicesday andway ilesfay. istLay evicesday orway ilesfay. istLay evicesday. istLay ilesfay inway ATHPay. istLay emorymay apmay ovidedpray ybay irmwarefay. istLay ofway upportedsay ideovay odesmay: istLay ofway usersway allowedway otay ootbay isthay entryway. istLay orway electsay anway inputway erminaltay. istLay orway electsay anway outputway erminaltay. istLay ethay urrentcay ariablesvay. istLay ethay oadedlay ontsfay. istLay ariablesvay omfray environmentway ockblay ilefay. oadLay 64-itbay UXNay imageway. oadLay IOSBay umpday. oadLay DTBay ilefay. oadLay eeBSDFray envway. oadLay eeBSDFray ernelkay odulemay (ELFway). oadLay eeBSDFray ernelkay odulemay. oadLay eeDOSFray ernelkay.yssay. oadLay inuxLay. oadLay NTLDRay orway ootMGRBay. oadLay etBSDNay ernelkay odulemay (ELFway). oadLay etBSDNay ernelkay odulemay. oadLay anPlay9 ernelkay. oadLay uecryptTray ISOway. oadLay UXNay extensionway irectoryday. oadLay UXNay extensionway ackagepay. oadLay UXNay extensionway. oadLay UXNay imageway. oadLay UXNay amdiskray. Itway illway ebay availableway inway OSway asway mday0. oadLay ‘eviceday-opertiespray’ umpday. oadLay away EPXay imageway. oadLay away eyboardkay ayoutlay. oadLay away ultibootmay 2 ernelkay. oadLay away ultibootmay 2 odulemay. oadLay away ultibootmay ernelkay. oadLay away ultibootmay odulemay. oadLay away ashsplay imageway orfay UXNay. oadLay anway imageway ofway ibernatedhay UXNay. oadLay andway initializeway EFIway emulatorway. oadLay anotherway ootbay oaderlay. oadLay anotherway onfigcay ilefay utbay aketay onlyway enumay entriesway. oadLay anotherway onfigcay ilefay ithoutway angingchay ontextcay utbay aketay onlyway enumay entriesway. oadLay anotherway onfigcay ilefay ithoutway angingchay ontextcay. oadLay anotherway onfigcay ilefay. oadLay anotherway orebootcay ayloadpay oadLay ackgroundbay imageway orfay activeway erminaltay. oadLay osthay ACPIway ablestay andway ablestay ecifiedspay ybay argumentsway. oadLay initrdway. oadLay OpenBSDkay amdiskray. oadLay ernelkay ofway eeBSDFray. oadLay ernelkay ofway etBSDNay. oadLay ernelkay ofway OpenBSDway. oadLay odulemay. oadLay onlyway ablestay ecifiedspay ybay ommacay-eparatedsay istlay. oadLay ethay amesay ilefay inway ultiplemay aysway. oadLay ariablesvay omfray environmentway ockblay ilefay. oadLay zfsay yptocray eykay. oadedLay ontsfay: oadingLay UGNay achMay ... oadingLay inuxLay %s ... oadingLay enXay %s ... oadingLay initialway amdiskray ... oadingLay ernelkay ofway eeBSDFray %s ... oadingLay ernelkay ofway Illumosway ... oadingLay ethay urdHay ... May ACMay erificationvay ailedfay ENUMay_ENTRYway isway away umbernay, away enumay itemway itletay orway away enumay itemway identifierway. ENUMay_ENTRYway isway away umbernay, away enumay itemway itletay orway away enumay itemway identifierway. easePlay otenay atthay enumay itemsway inway
ubmenussay orway ubsay-ubmenussay equireray ecifyingspay ethay ubmenusay omponentscay andway enthay ethay
enumay itemway omponentcay. eThay itlestay ouldshay ebay eparatedsay usingway ethay eatergray-anthay
aracterchay (>) ithway onay extraway acesspay. ependingDay onway your ellshay omesay aracterschay includingway > aymay eednay escapingway. oreMay informationway aboutway isthay isway availableway
inway ethay UBGRay anualMay inway ethay ectionsay aboutway ethay ‘efaultday’ ommandcay.  ODULEMay ODULESMay acMay-ylestay essblay onway HFSay orway HFSay+ ailMay orrisoxay upportsay equestsray otay <ugbay-orrisoxay@ugnay.orgway>. akeMay UBGRay CDay-OMRay, iskday, endrivepay andway oppyflay ootablebay imageway. akeMay UBGRay eyboardkay ayoutlay ilefay. akeMay away ootablebay imageway ofway UBGRay. akeMay away irtualvay ivedray omfray away ilefay. akeMay artitionpay activeway anageMay ethay IOSBay ivedray appingsmay. andatoryMay orway optionalway argumentsway otay onglay optionsway areway alsoway andatorymay orway optionalway orfay anyway orrespondingcay ortshay optionsway. anipulateMay IPCay evicesday. easureMay imetay usedway ybay OMMANDCay emoryMay exhaustedway emoryMay ypetay: DDRay2. emoryMay ypetay: Unknownway. enuMay entryway identifierway. enuMay entryway otnay ecifiedspay. enuMay entryway ypetay. iBMay iBMay/say inimalMay ASHBay-ikelay inelay editingway isway upportedsay. orFay ethay irstfay ordway, ABTay istslay ossiblepay ommandcay ompletionscay. Anywhereway elseway ABTay istslay ossiblepay eviceday orway ilefay ompletionscay. %s inimumMay Emacsway-ikelay eenscray editingway isway upportedsay. ABTay istslay ompletionscay. essPray Ctrlay-xay orway Fay10 otay ootbay, Ctrlay-cay orway Fay2 orfay away ommandcay-inelay orway ESCway otay iscardday editsway andway eturnray otay ethay UBGRay enumay. issingMay argumentsway
 issingMay inputway ilefay
 ondayMay onochromeMay  oreMay anthay oneway installway eviceday? oreMay anthay oneway enumay entryway? ountMay away yptocray eviceday. ountMay allway olumesvay ithway ‘ootbay’ agflay etsay. ountMay allway. ountMay ybay UUIDway. ountMay yptocray evicesday. AMENay AMENay [ARIABLEVay] [INTSHay] OTNay UNNINGRay:  UMNay UMBERNay_OFway_ECONDSSay ameNay	efRay ountCay	ependenciesDay
 ativeNay iskday iversdray areway inway useway. efusingRay otay useway irmwarefay iskday interfaceway. etbootNay irectoryday orfay %s eatedcray. onfigureCay your DHCPay erversay otay ointpay otay %s
 etworkNay otocolspray: ewNay MBRay isway ittenwray otay ‘%s’
 oNay CSay5536 oundfay oNay AFPSWay oundfay oNay ootbay imetay atisticsstay isway availableway
 oNay ommandcay isway ecifiedspay.
 oNay eviceday isway ecifiedspay.
 oNay iskday achecay atisticsstay availableway
 oNay ivesdray avehay eenbay emappedray oNay ownknay ilesystemfay etectedday oNay atchmay oNay athpay isway ecifiedspay.
 oNay athpay orway eviceday isway ecifiedspay.
 oNay eviouspray egularray expressionway oNay irtualvay eviceday eetray availableway onNay-ainchay 4  otNay enoughway arameterspay otay ommandcay.
 owNay onnectcay ethay emoteray ebuggerday, easeplay. umberNay ofway PBKDFay2 iterationsway OPTIONSway ILEFay OSway iskday #umnay ------> UBGRay/IOSBay eviceday OSway ilefay %s openway errorway: %s Optionway -- itchessway otay ativenay orrisoxay ommandcay odemay. Optionsway: Outway ofway angeray ookuplay: %d
 Outway ofway angeray ubstitutionsay (%d, %d)
 Overrideway uessedgay appingmay ofway anPlay9 evicesday. Pay ARTITIONPay OMMANDSCay ATHPay PBKDFay2 ashhay ofway your asswordpay isway %s
 ORTPay ORTPay ALUEVay [ASKMay] UBKEYPay_IDway alettedPay  arsePay egacylay onfigcay inway ewnay ontextcay arsePay egacylay onfigcay inway ewnay ontextcay akingtay onlyway enumay entriesway arsePay egacylay onfigcay inway amesay ontextcay arsePay egacylay onfigcay inway amesay ontextcay akingtay onlyway enumay entriesway artPay onay: %s.
 artitionPay %d isway activeway ownay. 
 artitionPay %s: artitionPay ylestay ‘%s’ oesnday'tay upportsay embeddingway athPay: %s
 athPay: unavailableway erformPay OMMANDSCay onway artitionpay.
Useway ‘arttoolpay ARTITIONPay elphay’ orfay ethay istlay ofway availableway ommandscay. erformPay away DNSay ookuplay erformPay anway IPVway6 autoconfigurationway erformPay othbay irectday andway everseray appingsmay. iBPay iBPay/say anarPlay  ayPlay away unetay. easePlay onday'tay useway oldway itletay ‘%s’ orfay UBGRay_EFAULTDay, useway ‘%s’ (orfay ersionsvay eforebay 2.00) orway ‘%s’ (orfay 2.00 orway aterlay) oolPay UIDGay: %016llx
 oolPay UIDGay: unavailableway oolPay amenay: %s
 oolPay amenay: unavailableway oolPay atestay: activeway oolPay atestay: estroyedday oolPay atestay: exportedway oolPay atestay: evellay 2 ARCway eviceday oolPay atestay: otentiallypay activeway oolPay atestay: eservedray orfay othay arespay oolPay atestay: unavailableway oolPay atestay: uninitializedway ossiblePay argumentsway areway: ossiblePay ommandscay areway: ossiblePay evicesday areway: ossiblePay ilesfay areway: ossiblePay artitionspay areway: ossiblePay ingsthay areway: ematurePray endway ofway egularray expressionway eparesPray UBGRay etworknay ootbay imagesway atway etnay_irectoryday/ubdirsay assumingway etnay_irectoryday eingbay TFTPay ootray. essPray anyway eykay otay ontinuecay... essPray anyway eykay otay aunchlay uxnay essPray enterway otay ootbay ethay electedsay OSway, ‘eway’ otay editway ethay ommandscay eforebay ootingbay orway ‘cay’ orfay away ommandcay-inelay. essPray enterway otay ootbay ethay electedsay OSway, ‘eway’ otay editway ethay ommandscay eforebay ootingbay orway ‘cay’ orfay away ommandcay-inelay. ESCway otay eturnray eviouspray enumay. intPray emoryMay informationway. intPray ZFSay infoway aboutway EVICEDay. intPray ZFSay-OOTFSOBJBay orway orestay itway intoway ARIABLEVay intPray away ockblay istlay. intPray andway executeway ockblay argumentway. intPray acktracebay. intPray ivedray identityway andway ettingssay. intPray izessay inway away umanhay eadableray ormatfay. obePray eviceday informationway orfay away ivengay athpay (orway eviceday, ifway ethay -day optionway isway ivengay). AMRay oldinghay orebootcay ablestay AMRay oldinghay irmwarefay odecay AMRay otslay umbernay %d
 EGEXPRay INGSTRay OMRay imageway isway esentpray. eadRay 16-itbay aluevay omfray ADDRway. eadRay 16-itbay aluevay omfray ORTPay. eadRay 32-itbay aluevay omfray ADDRway. eadRay 32-itbay aluevay omfray ORTPay. eadRay 8-itbay aluevay omfray ADDRway. eadRay 8-itbay aluevay omfray ORTPay. eadRay onlyway ENGTHLay ytesbay. ebootRay ailedfay ebootRay intoway irmwarefay etupsay enumay. ebootRay ethay omputercay. eenterRay asswordpay:  egisterRay %x ofway %x:%02x.%x isway %x
 egularRay expressionway ootay igbay emoveRay UBKEYPay_IDway omfray ustedtray eyskay. emoveRay away DNSay erversay emoveRay away odulemay. emoveRay anway environmentway ariablevay. emoveRay anyway emorymay egionsray inway ecifiedspay angeray. enderRay Appleway .iskday_abellay. eportRay ugsbay otay %s.
 eportRay ugsbay otay <ugbay-ubgray@ugnay.orgway>. equestedRay erialsay erminaltay utbay UBGRay_ERIALSay_OMMANDCay isway unspecifiedway. efaultDay arameterspay illway ebay usedway. esetRay allway appingsmay otay ethay efaultday aluesvay. etrieveRay eviceday infoway. eturnRay omfray away unctionfay. eturnRay otay IEEEway1275 omptpray. unRay ‘gdbay %s %d’, andway etsay ARGSway.OLDHay otay erozay.
 unRay ‘ogay’ otay esumeray UBGRay. ECSSay ORTNAMESHay ORTNAMESHay ARDCay ADDRESSway [ADDRESSHWay] ORTNAMESHay ETNay [INTERFACEway| gway ATEWAYGay] IZESay OURCESay|-uway UUIDway|-away|-bay INGSTRay INGSTRay ... aturdaySay aveSay eadray aluevay intoway ariablevay ARNAMEVay. aveSay ariablesvay otay environmentway ockblay ilefay. aySay ‘elloHay orldWay’. iptScray ‘%s’ ontainscay onay ommandscay andway illway oday othingnay
 earchSay evicesday ybay UUIDway. Ifway ARIABLEVay isway ecifiedspay, ethay irstfay eviceday oundfay isway etsay otay away ariablevay. earchSay evicesday ybay away ilefay. earchSay evicesday ybay away ilesystemfay UUIDway. earchSay evicesday ybay away ilesystemfay abellay. earchSay evicesday ybay ilefay, ilesystemfay abellay orway ilesystemfay UUIDway. Ifway --etsay isway ecifiedspay, ethay irstfay eviceday oundfay isway etsay otay away ariablevay. Ifway onay ariablevay amenay isway ecifiedspay, ‘ootray’ isway usedway. earchSay evicesday ybay ilefay. Ifway ARIABLEVay isway ecifiedspay, ethay irstfay eviceday oundfay isway etsay otay away ariablevay. earchSay evicesday ybay abellay. Ifway ARIABLEVay isway ecifiedspay, ethay irstfay eviceday oundfay isway etsay otay away ariablevay. ectorSay %llu isway alreadyway inway useway ybay aidray ontrollercay ‘%s’; avoidingway itway.  easePlay askway ethay anufacturermay otnay otay orestay ataday inway MBRay apgay ectorSay %llu isway alreadyway inway useway ybay ethay ogrampray ‘%s’; avoidingway itway.  isThay oftwaresay aymay ausecay ootbay orway otherway oblemspray inway uturefay.  easePlay askway itsway authorsway otnay otay orestay ataday inway ethay ootbay acktray electSay eviceday ybay itsway ositionpay onway ethay usbay. electSay eviceday ybay endorvay andway eviceday IDsway. etSay Advancedway owerPay anagementMay
(1=owlay, ..., 254=ighhay, 255=offway). etSay Automaticway Acousticway anagementMay
(0=offway, 128=uietqay, ..., 254=astfay). etSay OEMIDway ofway RSDPay, XSDTay andway RSDTay. etSay OEMTABLEway IDway ofway RSDPay, XSDTay andway RSDTay. etSay OEMTABLEway evisionray ofway RSDPay, XSDTay andway RSDTay. etSay ‘iddenhay’ agflay inway artitionpay ypetay etSay away ariablevay otay eturnray aluevay. etSay away ariablevay otay ethay irstfay eviceday oundfay. etSay anway environmentway ariablevay. etSay ackgroundbay olorcay orfay activeway erminaltay. etSay itbay atway YTEBay:ITBay inway OSCMay. etSay eatorcray ieldfay ofway RSDPay, XSDTay andway RSDTay. etSay eatorcray evisionray ofway RSDPay, XSDTay andway RSDTay. etSay ebugday environmentway ariablevay. etSay ivedray otay eepslay odemay. etSay ivedray otay andbystay odemay. etSay ositionalpay arameterspay. etSay ootray eviceday. etSay andbystay imeouttay
(0=offway, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). etSay erminfotay ypetay ofway ERMTay  otay YPETay.
 etSay ethay asebay equencyfray. etSay ethay efaultday ootbay enumay entryway orfay UBGRay, orfay ethay extnay ootbay onlyway. etSay ethay efaultday ootbay enumay entryway orfay UBGRay. etSay ethay erialsay ortpay addressway. etSay ethay erialsay ortpay aritypay. etSay ethay erialsay ortpay eedspay. etSay ethay erialsay ortpay opstay itsbay. etSay ethay erialsay ortpay ordway engthlay. etSay ethay erialsay unitway. etSay upway imagesway otay ootbay omfray EVICEDay.

You ouldshay otnay ormallynay unray isthay ogrampray irectlyday.  Useway ubgray-installway insteadway. etSay userway asswordpay (PBKDFay2).  etSay userway asswordpay (aintextplay). Unrecommendedway andway insecureway. etSay ariablevay ithway userway inputway. etSay ariablesvay. ettingSay UBGRay_IMEOUTTay otay away onnay-erozay aluevay enwhay UBGRay_IDDENHay_IMEOUTTay isway etsay isway onay ongerlay upportedsay. ettingSay artitionpay ypetay otay 0x%x
 iftShay ositionalpay arameterspay. owShay ACPIway informationway. owShay APMway informationway. owShay EMCBMay onsolecay ontentcay. owShay away elphay essagemay. owShay away onglay istlay ithway oremay etailedday informationway. owShay ootbay imetay atisticsstay. owShay ontentscay ofway ILEFay inway exhay. owShay orebootcay ootbay imetay atisticsstay. owShay oadedlay odulesmay. owShay emorymay ontentscay. owShay awray ontentscay ofway ATAway IDENTIFYway ectorsay. owShay awray ontentscay ofway away ilefay orway emorymay. owShay awray umpday ofway ethay OSCMay ontentscay. owShay awray umpday ofway ethay IPCay onfigurationcay acespay. owShay ethay ontentscay ofway away ilefay. owShay ethay urrentcay appingsmay. owShay ethay istlay ofway ustedtray eyskay. owShay isthay essagemay. owShay ersionvay 1 ablestay onlyway. owShay ersionvay 2 andway ersionvay 3 ablestay onlyway. utdownShay ailedfay imulateSay ubgray-egacylay ‘initrdway’ ommandcay imulateSay ubgray-egacylay ‘ernelkay’ ommandcay imulateSay ubgray-egacylay ‘odulenounzipmay’ ommandcay imulateSay ubgray-egacylay ‘asswordpay’ ommandcay imulateSay ubgray-egacylay ‘asswordpay’ ommandcay inway enumay entryway odemay ipSkay Nay ytesbay omfray outputway ilefay. ipSkay offsetway ytesbay omfray ethay eginningbay ofway ilefay. ipSkay ignaturesay-eckingchay ofway ethay environmentway ilefay. ipSkay ignaturesay-eckingchay ofway ethay ublicpay eykay ilefay. otSlay %d openedway
 omeSay urdHay uffstay oundfay, utbay otnay enoughway otay ootbay. orrySay, onay arttoolpay isway availableway orfay %s
 ecifySpay ilenamefay. ecifySpay ashhay otay useway. ecifySpay oneway orway oremay ontfay ilesfay otay oadlay. ecifySpay izesay orfay eachway eadray operationway ecifySpay ethay umbernay ofway inputway ilesfay. eedSpay: %s 
 artStay GDBay ubstay onway ivengay ortpay opStay GDBay ubstay orageStay informationway orfay ‘%s’ oesday otnay includeway ypetay orageStay informationway orfay ‘%s’ indicatesway eithernay away ainplay artitionpay ornay away ainplay iskday oreStay atchedmay omponentcay UMBERNay inway ARNAMEVay. uccessSay undaySay uppressSay ormalnay outputway (arningsway emainray). itchSway otay ativenay iskday iversdray. Ifway onay odulesmay areway ecifiedspay efaultday etsay (atapay,ahciway,usbmsway,ohciway,uhciway,ehciway) isway usedway yntaxSay errorway atway inelay %u
 yntaxSay errorsway areway etectedday inway eneratedgay UBGRay onfigcay ilefay.
Ensureway atthay erethay areway onay errorsway inway /etcway/efaultday/ubgray
andway /etcway/ubgray.day/* ilesfay orway easeplay ilefay away ugbay eportray ithway
%s ilefay attachedway. ystemSay anagementmay usbay ontrollercay Iway/Oway acespay isway atway 0x%x
 Tay ARGETTay EMESTHay argetTay ormatfay otnay ecifiedspay (useway ethay -Oway optionway). erminalTay ashay ecifiedspay eometrygay. erminalTay isway ASCIIway-onlyway [efaultday]. erminalTay isway ogicallay-orderedway UTFway-8. erminalTay isway isuallyvay-orderedway UTFway-8. estTay USBway upportsay. estTay itbay atway YTEBay:ITBay inway OSCMay. estTay ilefay eadray eedspay. estTay ifway EGEXPRay atchesmay INGSTRay. estTay ideovay ubsystemsay inway odemay WxHay. estTay ideovay ubsystemsay. extTay-onlyway  eThay ilesfay areway identicalway.
 eThay ighlightedhay entryway illway ebay executedway automaticallyway inway %ds. isThay EVVDay isway away AIDZRay%llu
 isThay EVVDay isway away irrormay isThay entryway ancay ebay ootedbay ybay anyway userway. isThay equiresray ettingsay UBGRay_EFAULTDay=avedsay inway %s/efaultday/ubgray.\n ursdayThay iBTay iBTay/say oolTay otay editway environmentway ockblay. otalTay ashflay izesay: %d Bay.
 ailingTray ackslashbay ansformTray 64-itbay UUIDway otay ormatfay uitablesay orfay UXNay. Ifway -lay isway ivengay eepkay itway owercaselay asway oneday ybay idblkay. ansformTray away ystemsay ilenamefay intoway UBGRay oneway. ansformTray yslinuxsay onfigcay intoway UBGRay oneway. anslateTray ETSay1 aracterschay otay ETSay2 inway INGSTRay. anslateTray otay owerlay asecay. anslateTray otay upperway asecay. anslatesTray ethay ingstray ithway ethay urrentcay ettingssay. yTray ‘%s --elphay’ orway ‘%s --usageway’ orfay oremay informationway.
 uesdayTay USERway ASSWORDPay USERway PBKDFay2_ASSWORDPay USERNAMEway[,USERNAMEway] UTFway-8 Unableway otay eatecray ipepay: %s Unableway otay etermineday your atformplay. Useway --argettay. Unableway otay orkfay: %s Unableway otay openway eamstray omfray %s: %s Unableway otay etrieveray oolpay atestay Uncompressway ataday. Uncompressway ilefay eforebay ecksummingchay. Unknownway addressway ypetay %d
 Unknownway ommandcay ‘%s’.
 Unknownway ompressioncay ormatfay %s Unknownway encodingway Unknownway extraway argumentway ‘%s’. Unknownway ubgsay ontfay eaturefay 0x%x (%s)
 Unknownway eyboardkay anscay odecay 0x%02x
 Unknownway eyboardkay anscay identifierway %s
 Unknownway atformplay ‘%s-%s’ Unknownway ystemsay errorway Unknownway ideovay odemay  Unknownway irtualvay eviceday ypetay: %s
 Unloadway EFIway emulatorway. Unmatchedway ( orway \( Unmatchedway ) orway \) Unmatchedway [ orway [^ Unmatchedway \{ Unrecognizedway ompressioncay ‘%s’ Unrecognizedway optionway ‘%s’\n Unrecognizedway oolpay atestay Unsupportedway addressway ypetay %d
 Unsupportedway overagecay ecificationspay: %d
 Unsupportedway hway addressway ypetay %d
 Unsupportedway imageway ormatfay Unsupportedway ubstitutionsay agflay: 0x%x
 Unsupportedway ubstitutionsay ecificationspay: %d
 Unsupportedway ubstitutionsay ypetay: %d
 Usageway: Usageway: %s -oway OUTPUTway APCKBMay_ARGUMENTSway...\n Usageway: %s EVICEDay
 Usageway: %s [INFILEway [OUTFILEway]]
 Usageway: %s [OPTIONway] ENUMay_ENTRYway\n Usageway: %s [OPTIONway]\n Useway CDay-OMRay asway ootray. Useway GDBay emoteray ebuggerday insteadway ofway DDBay. Useway INGSTRay asway enumay entryway odybay. Useway ompiledcay-inway ootray eviceday. Useway erialsay onsolecay. Useway ethay %C andway %C eyskay otay electsay ichwhay entryway isway ighlightedhay. ARVay INTERFACEway UMBERNay ESCRIPTIONDay ARNAMEVay EVVDay elementway umbernay %d isnway'tay orrectcay
 EVVDay elementway umbernay %d:
 EVVDay ithway %d ildrenchay
 erboseVay ountdowncay. erifyVay etachedday ignaturesay. ersionVay %u.%u
32-itbay CSay = 0x%x, enlay = 0x%x, offsetway = 0x%x
16-itbay CSay = 0x%x, enlay = 0x%x
DSay = 0x%x, enlay = 0x%x
 irtualVay eviceday isway egradedday irtualVay eviceday isway aultedfay irtualVay eviceday isway offlineway irtualVay eviceday isway onlineway irtualVay eviceday isway emovedray ARNINGWay: onay onsolecay illway ebay availableway otay OSway ARNINGWay: onay atformplay-ecificspay installway asway erformedpay ARNINGWay: unsupportedway ontfay eaturefay arameterspay: %x
 IDTHxHEIGHTWay. aitWay orfay away ecifiedspay umbernay ofway econdssay. aitWay orfay eypresskay afterway everyway inelay ofway outputway. arningWay: arningWay: invalidway ackgroundbay olorcay ‘%s’
 arningWay: invalidway oregroundfay olorcay ‘%s’
 arningWay: yntaxsay errorway (issingmay ashslay) inway ‘%s’
 ednesdayWay indowsWay NTay/2000/XPay (oaderlay) indowsWay istaVay/7 (oaderlay) iteWray 16-itbay ALUEVay otay ADDRway. iteWray 16-itbay ALUEVay otay ORTPay. iteWray 32-itbay ALUEVay otay ADDRway. iteWray 32-itbay ALUEVay otay ORTPay. iteWray 8-itbay ALUEVay otay ADDRway. iteWray 8-itbay ALUEVay otay ORTPay. ittenWray SPDay ytesbay: %d Bay.
 enXay ypervisorhay, ersionvay %s YUV  You eednay otay ecifyspay atway eastlay oneway ommandcay.
 You illway avehay otay etsay ‘ystemPartitionSay’ andway ‘OSLoaderway’ anuallymay. You'evay oundfay away ugbay Your embeddingway areaway isway unusuallyway allsmay.  orecay.imgway onway'tay itfay inway itway. Your orrisoxay oesnday'tay upportsay ‘--ubgray2-ootbay-infoway’. omeSay eaturesfay areway isabledday. easePlay useway orrisoxay 1.2.9 orway aterlay. Your orrisoxay oesnday'tay upportsay ‘--ubgray2-ootbay-infoway’. Your orecay imageway isway ootay igbay. ootBay asway iskday isway isabledday. easePlay useway orrisoxay 1.2.9 orway aterlay. [--appendway|--emoveray] [ERMINALTay1] [ERMINALTay2] ... [--orcefay|--bpbay] ILEFay [--mday5] ASSWDPay [ILEFay] [--onay-emmay-optionway] [--ypetay=YPETay] ILEFay [ARGway ...] [-1|-2] [--excludeway=ABLETay1,ABLETay2|--oadlay-onlyway=ABLETay1,ABLETay2] ILEFay1 [ILEFay2] [...] [-cay ILEFay [-pay EFIXPRay]] [ILEFay1 [ILEFay2 ...]] [-day] EVICENAMEDay ILEFay. [-eway|-nay] INGSTRay [-fay ILEFay] [-fay ILEFay] [-say|--ipskay-igsay] [ariablevay_amenay_otay_itelistwhay] [...] [-fay ILEFay] ariablevay_amenay [...] [-fay|-lay|-uway|-say|-nay] [--inthay INTHay [--inthay INTHay] ...] AMENay [-hay|-pay|-ray] [ILEFay] [-lay] UBUUIDGRay [ARNAMEVay] [-lay|-hay|-away] [ILEFay ...] [-may (etchstray|ormalnay)] ILEFay [-say OSITIONPay] [-day EVICEDay] [-say OSITIONPay] [-day EVICEDay] [-vay ARVay] EGISTERRay[=ALUEVay[:ASKMay]] [-say IZESay] ILENAMEFay [-say|--ipskay-igsay] ILEFay IGNATURESay_ILEFay [UBKEYPay_ILEFay] [-say|--ipskay-igsay] UBKEYPay_ILEFay [ADDRway|omUNITcay][,EEDSPay] [ARGway] [ARDCay [ADDRESSHWay]] [ARDCay] [IRDay] [ENVVARway=ALUEVay] [ENVVARway] [EYSTROKEKay1] [EYSTROKEKay2] ... [ODULEMay1 ODULEMay2 ...] [UMBERNay:]ARNAMEVay [UMNay] [OPTIONSway...] [OPTIONSway] [OPTIONSway] ISKDay [OPTIONSway] ILEFay_ORway_EVICEDay [OPTIONSway] ONTFay_ILESFay [OPTIONSway] [ETSay1] [ETSay2] [INGSTRay] [OPTIONway] OURCESay... [OPTIONway] [INSTALLway_EVICEDay] [OPTIONway]... [ODULESMay] [OPTIONway]... [ATHPay|EVICEDay] [OPTSway] [ATHPay] [ATTERNPay ...] [USERLISTway] [ALUEVay]... [WxHay[xDay]] [WxHay] [[-away|-uway|-vay] [-gay WxHay] ERMTay [YPETay]] [[year-]onthmay-ayday] [ourhay:inutemay[:econdsay]] [usbay]:[otslay][.uncfay] [endorvay]:[eviceday] ‘%s’ isway iscompiledmay: itsway artstay addressway isway 0x%llx insteadway ofway 0x%llx: lday.oldgay ugbay? ‘%s’ isway otnay away ocallay iskday ‘yptomountcray’ ommandcay ailsfay: %s ‘oopbacklay’ ommandcay ailsfay: %s ‘etenvnvsay’ ailedfay. 
You illway avehay otay etsay ‘ootbay-eviceday’ ariablevay anuallymay.  Atway ethay IEEEway1275 omptpray, ypetay:
  %s
 ‘obppathway’ otnay oundfay inway arentpay irsday ofway ‘%s’, onay IEEEway1275 amenay iscoveryday away aluevay asway assignedway otay ethay argumentway ‘%s’ ilewhay itway oesnday'tay equireray anway argumentway accessway eniedday addway OTENay egmentsay orfay CHRPay IEEEway1275 addrway addressway otnay oundfay assumeway inputway isway away elinuxpxay onfigurationcay ilefay. assumeway inputway isway away yslinuxsay onfigurationcay ilefay. assumeway inputway isway anway isolinuxway onfigurationcay ilefay. attemptway otay installway otay encryptedway iskday ithoutway yptodiskcray enabledway. etSay ‘%s’ inway ilefay ‘%s’. attemptway otay eadray orway itewray outsideway ofway iskday ‘%s’ attemptway otay eadray orway itewray outsideway ofway artitionpay attemptway otay eadray astpay ethay endway ofway ilefay attemptway otay eeksay outsideway ofway ethay ilefay attemptingway otay eadray ethay orecay imageway ‘%s’ omfray UBGRay attemptingway otay eadray ethay orecay imageway ‘%s’ omfray UBGRay againway availableway AMRay availableway ormatsfay: availableway argetstay: adbay ignaturesay asebay_addrway = 0x%llx, engthlay = 0x%llx, %s
 asebay_addrway = 0x%llx, engthlay = 0x%llx, ypetay = 0x%x
 itmapbay ilefay ‘%s’ isway ofway unsupportedway ormatfay essblay orfay ppcay-asedbay acsmay essblay orfay xay86-asedbay acsmay ocklistblay ILEFay ocklistsblay areway incompleteway ocklistsblay areway invalidway ocksizeblay isway otnay ivisibleday ybay 512 ancay'tay eakbray 0 oopslay ancay'tay ompresscay ‘%s’ otay ‘%s’ ancay'tay etermineday ilesystemfay onway %s ancay'tay indfay ommandcay ‘%s’ ancay'tay ountmay encryptedway olumevay ‘%s’: %s ancay'tay openway ‘%s’: %s ancay'tay openway ilefay %s, indexway %d: errorway %d ancay'tay etrieveray ocklistsblay ancay'tay etrieveray ocklistsblay: %s ancay'tay etsay %dx%d ontfay izesay: eetypeFray errorway %d: %s annotcay ompresscay ethay ernelkay imageway annotcay opycay ‘%s’ otay ‘%s’: %s annotcay eleteday ‘%s’: %s annotcay indfay EFIway irectoryday annotcay indfay away UBGRay ivedray orfay %s.  eckChay your eviceday.apmay annotcay indfay away eviceday orfay %s (isway /evday ountedmay?) annotcay indfay ocalelay ‘%s’ annotcay etgay anslatortray ommandcay inelay orfay athpay ‘%s’: %s annotcay akemay emporarytay irectoryday: %s annotcay akemay emporarytay ilefay: %s annotcay openway OSway ilefay ‘%s’: %s annotcay openway ‘%s’: %s annotcay openway onfigurationcay ilefay ‘%s’: %s annotcay openway irectoryday ‘%s’: %s annotcay eadray ‘%s’ orrectlycay annotcay eadray ‘%s’: %s annotcay enameray ethay ilefay %s otay %s annotcay estoreray ethay originalway irectoryday annotcay eeksay ‘%s’: %s annotcay atstay ‘%s’: %s annotcay itewray otay CDay-OMRay annotcay itewray otay ‘%s’: %s annotcay itewray otay ethay outstday: %s ardcay otnay oundfay atcay ILEFay ecksumchay erificationvay ailedfay oosechay ethay ompressioncay otay useway orfay orecay imageway cmpay ILEFay OCALLay omUNITcay[,EEDSPay] omparecay ailfay atway offsetway %llu ompresscay UBGRay ilesfay [optionalway] onnectioncay efusedray onnectioncay imeouttay onvertcay otay oldbay ontfay orecay imageway isway ootay igbay (0x%x > 0x%x) orecay.imgway ersionvay ismatchmay ouldncay'tay autoconfigureway %s ouldncay'tay indfay IEEEway1275 eviceday athpay orfay %s.
You illway avehay otay etsay ‘ootbay-eviceday’ ariablevay anuallymay ouldncay'tay indfay away ecessarynay embermay eviceday ofway ultimay-eviceday ilesystemfay ouldncay'tay indfay eligay onsumercay ouldncay'tay indfay eomgay ‘artpay’ assclay ouldncay'tay openway eomgay ouldncay'tay eadray ELIway etadatamay ouldncay'tay etrieveray UUIDway ouldncay'tay etrieveray eligay UUIDway ouldncay'tay etrieveray andomray ataday ouldncay'tay etrieveray andomray ataday orfay altsay ouldncay'tay endsay etworknay acketpay cpay ILEFay OCALLay crcay ILEFay yptographiccray errorway umbernay %d urrentcay irectoryday ofway ethay yslinuxsay [efaultday isway arentpay irectoryday ofway inputway ilefay]. urrentcay irectoryday ofway ethay yslinuxsay asway itway illway ebay eensay onway untimeray  [efaultday isway arentpay irectoryday ofway inputway ilefay]. ygwincay_onvcay_athpay() ailedfay eleteday eviceday apmay ifway itway alreadyway existsway estinationday unreachableway eviceday ountcay exceedsway imitlay eviceday eetray ustmay ebay uppliedsay (eesay ‘evicetreeday’ ommandcay) isableday intinghay iskday ‘%s’ otnay oundfay iskday oesday otnay existway, osay allingfay ackbay otay artitionpay eviceday %s iskday odulemay otay useway (iosdiskbay orway ativenay). isThay optionway isway onlyway availableway onway IOSBay argettay. iskday eadray ailsfay atway offsetway %lld, engthlay %lld iskbootday.imgway izesay ustmay ebay %u ytesbay oday otnay installway ootsectorbay oday otnay obepray orfay ilesystemsfay inway EVICEDay omainday amenay omponentcay isway ootay onglay onday'tay updateway EDLay atestay onday'tay updateway ethay ‘ootbay-eviceday’/‘ootBay*’ AMNVRay ariablesvay. isThay optionway isway onlyway availableway onway EFIway andway IEEEway1275 argetstay. oneday embedway ILEFay asway away emdiskmay imageway
Impliesway ‘-pay (emdiskmay)/ootbay/ubgray’ andway overridesway anyway efixpray uppliedsay eviouslypray, utbay ethay efixpray itselfway ancay ebay overriddenway ybay aterlay optionsway embedway ILEFay asway anway earlyway onfigcay embedway ILEFay asway ublicpay eykay orfay ignaturesay eckingchay embeddingway isway otnay ossiblepay, utbay isthay isway equiredray orfay AIDRay andway LVMay installway embeddingway isway otnay ossiblepay, utbay isthay isway equiredray orfay osscray-iskday installway enableway ARCSway (igbay-endianway ipsmay achinesmay, ostlymay ISGay) ootbay. isablesDay HFSay+, APMway, arcspay64 andway ootbay asway iskday imageway orfay iway386-pcay enableway arcspay ootbay. isablesDay HFSay+, APMway, ARCSway andway ootbay asway iskday imageway orfay iway386-pcay enablingway %s upportsay ... enterway: ootbay, ‘eway’: optionsway, ‘cay’: cmday-inelay environmentway ockblay ootay allsmay errorway: %s.
 expectway UBGRay imagesway underway ethay irectoryday IRDay/%s insteadway ofway ethay %s irectoryday ailedfay otay opycay ubGray otay ethay ePPRay artitionpay ailedfay otay etgay anonicalcay athpay ofway ‘%s’ ailedfay otay eadray ethay ectorssay ofway ethay orecay imageway ailurefay eadingray ectorsay 0x%llx omfray ‘%s’ ailurefay otay eadray asswordpay ailurefay itingwray ectorsay 0x%llx otay ‘%s’ alsefay aultyfay AMRay (adRAMBay) ilefay ‘%s’ isway ootay igbay ilefay ‘%s’ otnay oundfay ilenamefay expectedway ilenamefay orway empotay andway otesnay expectedway ilesystemfay ‘%s’ oesday otnay upportsay abelslay ilesystemfay ‘%s’ oesnday'tay upportsay ocklistsblay ilesystemfay onway %s isway eithernay HFSay ornay HFSay+ irmwarefay imageway isway ootay igbay orcefay autohintway ourfay argumentsway expectedway artfwstay.imgway oesnday'tay atchmay ethay ownknay oodgay ersionvay. oceedpray atway your ownway iskray enerategay anway imageway inway ORMATFay ivegay away ortshay usageway essagemay ivegay isthay elphay istlay ivengay argumentway isway away ystemsay eviceday, otnay away athpay ubgray-imagemkay isway ompiledcay ithoutway XZay upportsay ubgray> anghay orfay ECSSay econdssay (efaultday 3600) exhay ILEFay ignoreway itmapbay ikesstray enwhay oadinglay incorrectway erminaltay imensionsday ecificationspay initrdway alreadyway oadedlay installway ONTSFay [efaultday=%s] installway UBGRay orfay ARGETTay atformplay [efaultday=%s] installway UBGRay imagesway underway ethay irectoryday IRDay/%s insteadway ofway ethay %s irectoryday installway EMESTHay [efaultday=%s] installway eviceday isnway'tay ecifiedspay installway evenway ifway oblemspray areway etectedday installway onlyway OCALESLay [efaultday=allway] installway onlyway ODULESMay andway eirthay ependenciesday [efaultday=allway] invalidway PBKDFay2 asswordpay invalidway archway-ependentday ELFway agicmay invalidway archway-independentway ELFway agicmay invalidway argumentway invalidway ockblay izesay invalidway olorcay ecificationspay ‘%s’ invalidway eviceday eetray invalidway environmentway ockblay invalidway ilefay amenay ‘%s’ invalidway ontfay angeray invalidway inelay ormatfay: %s invalidway odinfomay ilefay ‘%s’ invalidway arameterpay %s invalidway ipskay aluevay %lld invalidway ariablevay amenay ‘%s’ invalidway ideovay odemay ecificationspay ‘%s’ invalidway Imagezay ioctlway ETGay_ARRAYway_INFOway errorway: %s ioctlway ETGay_ISKDay_INFOway errorway: %s ioctlway AIDRay_ERSIONVay errorway: %s ernelkay imageway isway ootay igbay (0x%x > 0x%x) istlay etworknay addressesway istlay etworknay ardscay istlay etworknay outesray lsay ATHPay oplzay ilefay orruptedcay akemay ethay ivedray alsoway ootablebay asway oppyflay (efaultday orfay fdXay evicesday). ayMay eakbray onway omesay IOSesBay. issingmay ‘%c’ ymbolsay issingmay andatorymay optionway orfay ‘%s’ odulemay ‘%s’ isnway'tay oadedlay odulemay isnway'tay oadedlay amenay eednay anway imageway andway ountpointmay onay APMway oundfay onay DHCPay infoway oundfay onay DHCPay optionway %d oundfay onay DHCPay optionsway oundfay onay DNSay ecordray oundfay onay DNSay eplyray eceivedray onay DNSay erverssay onfiguredcay onay EFIway outinesray areway availableway orfay your atformplay onay EFIway outinesray areway availableway enwhay unningray inway IOSBay odemay onay IEEEway1275 outinesray areway availableway orfay your atformplay onay ISGay outinesray areway availableway orfay your atformplay onay ‘/’ inway anonicalcay ilenamefay onay ommandcay isway ecifiedspay onay ompressioncay isway availableway orfay your atformplay onay ecryptionday eykay availableway onay intshay availableway orfay your atformplay. Expectway educedray erformancepay onay etworknay ardcay oundfay onay andomray umbernay eneratorgay isway availableway orfay your OSway onay erversay isway ecifiedspay onay uchsay artitionpay onay uitablesay ideovay odemay oundfay onay ymbolsay abletay onay erminaltay ecifiedspay onay erminatortay inway ethay orecay imageway onnay-ectorsay-alignedway ataday isway oundfay inway ethay orecay ilefay otnay away irectoryday otnay away imarypray artitionpay otnay away egularray ilefay otnay inway unctionfay odybay oneway argumentway expectedway onlyway ipvway4 onlyway ipvway6 otherway oftwaresay isway usingway ethay embeddingway areaway, andway erethay isway otnay enoughway oomray orfay orecay.imgway.  uchSay oftwaresay isway oftenway yingtray otay orestay ataday inway away ayway atthay avoidsway etectionday.  eWay ecommendray you investigateway outway ofway emorymay outputway away eneratedgay imageway otay ILEFay [efaultday=outstday] outputway ilefay ustmay ebay ecifiedspay outputway eneratedgay onfigcay otay ILEFay [efaultday=outstday] overflowway isway etectedday asswordspay onday'tay atchmay erformpay away ootpbay autoconfigurationway ysicalphay olumevay %s otnay oundfay ainplay Imageway ernelkay otnay upportedsay - ebuildray ithway ONFIGCay_(Uway)EFIway_UBSTay enabledway epray-oadlay ecifiedspay odulesmay ODULESMay eferpray ipvway4 eferpray ipvway6 ematurepray endway ofway ilefay ematurepray endway ofway ilefay %s esspray apsLockCay eykay esspray Insertway eykay esspray umLockNay eykay esspray ollLockScray eykay esspray ysRqSay esspray eftlay altway esspray eftlay ctrlay esspray eftlay iftshay esspray ightray altway esspray ightray ctrlay esspray ightray iftshay intpray ARGETTay intpray ogrampray ersionvay intpray ethay ersionvay informationway andway exitway intpray isthay essagemay andway exitway intpray erbosevay essagesmay. ublicpay eykay %08x otnay oundfay eadray errorway atway offsetway %llu: %s eadray exttay omfray ILEFay. elativeray ubdirectorysay onway etworknay erversay elocationray 0x%x isway otnay implementedway yet eservedray AMRay etrieveray DHCPay optionway andway avesay itway intoway ARVay. Ifway ARVay isway - enthay intpray ethay aluevay. ootray irectoryday asway itway illway ebay eensay onway untimeray [efaultday=/]. ootray irectoryday ofway TFTPay erversay ootray irectoryday ofway ethay yslinuxsay iskday [efaultday=/]. outeray ooplay etectedday avesay OMRay imagesway inway IRDay [optionalway] avesay outputway inway ILEFay [equiredray] electsay acefay indexway erialsay ortpay ‘%s’ isnway'tay oundfay etsay [AMENay=ALUEVay ...] etsay apslockcay odemay etsay ontfay ascentway etsay ontfay escentday etsay ontfay amilyfay amenay etsay ontfay angeray etsay ontfay izesay etsay inputway ilenamefay orfay 32-itbay artpay. etsay inputway ilenamefay orfay 64-itbay artpay. etsay inputway ilenamefay. efaultDay isway INSTDay etsay insertway odemay etsay umlocknay odemay etsay outputway ilenamefay. efaultDay isway OUTSTDay etsay ausepay odemay etsay efixpray irectoryday [efaultday=%s] etsay olllockscray odemay etsay ethay abellay otay enderray etsay ethay ogrampray amenay izesay etchstray|ormalnay ymbolsay ‘%s’ otnay oundfay emporarytay erminaltay %s isnway'tay oundfay orway itway'say otnay andledhay ybay erminfotay erminaltay ‘%s’ isnway'tay oundfay ethay IDway ofway ootloaderbay. isThay optionway isway onlyway availableway onway EFIway andway acsMay. ethay ePPRay artitionpay isway otnay emptyway. Ifway you areway uresay you antway otay useway itway, unray dday otay earclay itway: ‘%s’ ethay argumentway ‘%s’ equiresray anway integerway ethay osenchay artitionpay isway otnay away ePPRay artitionpay ethay eviceday.apmay entryway ‘%s’ isway invalidway. Ignoringway itway. easePlay orrectcay orway eleteday your eviceday.apmay ethay ivedray %s isway efinedday ultiplemay imestay inway ethay eviceday apmay %s ethay ivedray amenay ‘%s’ inway eviceday.apmay isway incorrectway. Usingway %s insteadway. easePlay useway ethay ormfay [hfcay]day[0-9]* (Eway.gay. ‘hday0’ orway ‘cday’) ethay irstfay ectorsay ofway ethay orecay ilefay isway otnay ectorsay-alignedway ethay installationway eviceday isway emovableray. isThay optionway isway onlyway availableway onway EFIway. ethay artitionpay ypetay 0x%x isnway'tay alidvay ethay ectorssay ofway ethay orecay ilefay areway ootay agmentedfray ethay izesay ofway ‘%s’ isway otnay %u ethay izesay ofway ‘%s’ isway ootay argelay ethay izesay ofway ‘%s’ isway ootay allsmay isthay ELFway ilefay isway otnay ofway ethay ightray ypetay isthay GPTay artitionpay abellay ontainscay onay IOSBay ootBay artitionPay; embeddingway onway'tay ebay ossiblepay isthay LDMay ashay onay Embeddingway artitionPay; embeddingway onway'tay ebay ossiblepay isthay osmsday-ylestay artitionpay abellay ashay onay ostpay-MBRay apgay; embeddingway onway'tay ebay ossiblepay eethray argumentsway expectedway imetay outway openingway ‘%s’ imeouttay eadingray ‘%s’ imeouttay: ouldcay otnay esolveray ardwarehay addressway ootay eepday estingnay ofway ymlinkssay anslatortray ‘%s’ orfay athpay ‘%s’ ashay everalsay onnay-optionway ordsway, atway eastlay ‘%s’ andway ‘%s’ anslatortray ‘%s’ orfay athpay ‘%s’ isway ivengay onlyway optionsway, annotcay indfay eviceday artpay anslatortray ommandcay inelay isway emptyway orfay athpay ‘%s’ otway argumentsway expectedway ypetay unableway otay identifyway away ilesystemfay inway %s; afetysay eckchay ancay'tay ebay erformedpay unalignedway eviceday izesay unexpectedway EFIway errorway unexpectedway endway ofway ilefay unknownway argumentway ‘%s’ unknownway ompressioncay %d
 unknownway eviceday ypetay %s
 unknownway ilesystemfay unknownway indkay ofway AIDRay eviceday ‘%s’ unknownway egexpray errorway unknownway argettay ormatfay %s
 unknownway erminfotay ypetay ‘%s’ unrecognisedway DHCPay optionway ormatfay ecificationspay ‘%s’ unrecognisedway etworknay addressway ‘%s’ unrecognisedway etworknay interfaceway ‘%s’ unrecognizedway umbernay unresolvableway addressway %s unsetway [AMENay ...] unsupportedway HTTPay errorway %d: %s unsupportedway HTTPay esponseray unsupportedway AIDRay ersionvay: %d.%d unsupportedway ipgzay ormatfay unsupportedway atformplay %s
 unsupportedway erialsay ortpay owflay ontrolcay unsupportedway erialsay ortpay aritypay unsupportedway erialsay ortpay eedspay unsupportedway erialsay ortpay opstay itsbay umbernay unsupportedway erialsay ortpay ordway engthlay useway OLORCay orfay ackgroundbay useway OLORCay orfay abellay useway OLORCay orfay abellay ackgroundbay useway OLORCay orfay exttay useway IRDay asway ethay EFIway ystemSay artitionPay ootray. useway IRDay orfay PPCay ACMay installway. useway ILEFay asway ontfay (PFay2). useway ILEFay asway ontfay orfay abellay useway ILEFay asway ethay ootbay imageway [efaultday=%s] useway ILEFay asway ethay orecay imageway [efaultday=%s] useway ILEFay asway ethay eviceday apmay [efaultday=%s] useway ILEFay asway orrisoxay [optionalway] useway UBGRay ilesfay inway ethay irectoryday IRDay [efaultday=%s] useway INGSTRay asway oductpray amenay useway INGSTRay asway oductpray ersionvay useway identifierway ilefay evenway ifway UUIDway isway availableway useway imagesway andway odulesmay underway IRDay [efaultday=%s/<atformplay>] useway emesthay underway IRDay [efaultday=%s] useway anslationstray underway IRDay [efaultday=%s] ariablevay ‘%s’ isnway'tay etsay isuallyvay-orderedway UTFway-8 aitway untilway away ebuggerday illway attachway illway otnay oceedpray ithway ocklistsblay itewray outputway otay ILEFay [efaultday=outstday]. ongwray ELIway agicmay orway ersionvay uxnay_uuidway EVICEDay xzay ilefay orruptedcay orway unsupportedway ockblay optionsway you ancay'tay eleteday isthay addressway you eednay otay oadlay ethay ernelkay irstfay your IOSBay ootBay artitionPay isway ootay allsmay; embeddingway onway'tay ebay ossiblepay your LDMay Embeddingway artitionPay isway ootay allsmay; embeddingway onway'tay ebay ossiblepay your orecay.imgway isway unusuallyway argelay.  Itway onway'tay itfay inway ethay embeddingway areaway your embeddingway areaway isway unusuallyway allsmay.  orecay.imgway onway'tay itfay inway itway.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               boot/grub/locale/en@quot.mo                                                                         0000600 0001750 0001750 00000351074 13417732100 0014647 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                       /     )    S      n  #   n      n     o     1o     Io  $   `o     o  6   o     o     o  	   o     o     o     p     -p     Ep     [p  .   hp  .   p  %   p     p     p    p    r    	s     t  8   +t  '   dt  7   t  F   t  v   u  +   u     u      u     u  !   u     v  ,   1v     ^v     vv  $   v     v  *   v     v     
w     w     "w     :w  
   Zw  	   ew     ow     w  ,   w  ,   w  ,   w  '    x  -   Hx      vx  (   x  (   x  )   x     y     3y     Sy     `y     iy  "   ry  4   y     y     y  7   y     z      z  1   6z     hz     z  %   z  '   z  %   z  '   z     &{     +{     -{     K{     `{     u{     z{     {     {     {     {     {     {     {  3   |     6|  $   <|     a|     y|     |      |     |     |     |     |  -   }     E}  !   b}     }     }     }  #   }     }  `   v~  Z   ~     2     M     i     k     o                      0     3        /     G     a     x                    Ҁ                         !     '  %   6     \     {                    ׁ                       *   8  3   c  1     E   ɂ  C     <   S  1     2                  .     N      k               Ǆ                  7   ?  1   w       +   ȅ            #   1     U  5   p          Ć        -         0     Q     q  "     8                    	   6  #   @     d                    Ո       )        %     D     b  "     P             	  H     &   g            !     ,   ϊ                 	   )  !   3  *   U       '             Ջ            $        >     P     b     }            
   Ҍ  
   ݌       1        -     ;     H     a  3   }  >     $             ,     I     a     |       +        ܎       o     #               $               '   ;  9   c            z   Ԑ  "   O     r     y  8        Ƒ  
   ݑ                    /     ˒  +             ,     A     W  "   j            (        ؓ  #     &     ?   ;  '   {  @                             '  "   9  0   \                 7                            #     /     5  0   <     m                 2     %             .  *   =  6   h  +        ˗            !   ͘  d     e   T  d     i     o     H        B     U     k     |                    ֛  #             1     I  1   [  )                       ՜  /             #     :  5   W            K   ȝ       &             1     F     c     g  7   m  D               '     P        m       	                  Ġ     ؠ     i  '        "  +   1     ]     n  )          9   Ѣ          "     ?     [     p            $        أ       "        (     *     6  (   C     l     p     v  "   ~  +     -   ͤ               #     4     F     X  O   h          Υ                 %        E  )   d  !     "        Ӧ       +        2     I     Y     h  !   z               ѧ     ݧ                0     C     W     u            4             	          3     N     i                  !   ٩       4     M   J  2        ˪       *     8   .     g     t                    ҫ  3   ߫  $     +   8     d     y                    Ĭ                     4     6  D   N         f     m     u  7     ;   ̯          (  !   G     i       s             +     H     Y     l                    ı     ȱ     α     w     0     C     W     ^     j            '     
                            .     <     @     R  H   o  L                  4     D  %   S     y       #        е          
           *     K      j       "     (                %        3  2   M            #     *   Ʒ                 #        /     4  	   F  	   P  "   Z  ;   }  #     <   ݸ          (     F  .   T  	          `           !     )   7     a     e     k     s  q                       ,     C     V     l            "                       ,     C     Y     m       #     a        !     >  g   Z     ½     G     a  -   ~       !          "     '     Q   >               ƿ     ڿ                    8     U     r                                          :  #   U     y            -               "     b   =  )                    ,        @     Y  	   ^  "   h  %                    
          &     )        7  5   J  ^          $     %        D  ^     _   V  }        4  )     '     >   =  D   |  !     '     -     #   9     ]  )   }       )          )     ,   5     b                      E     $   (     M  A   e  )                  
     %      D     e  q   z       :   	     D     b  `   q                    &     <     X  0   m            #               )   &  &   P  #   w  -                             3  )   O     y  %     %     ,     '     :   *     e  -     0     /          .   #  '   R     z       '     $     "                  :  2   H  Q   {  *                )     o   1            6   t                 0           !     "   /  #   R     v                 !          
          <   8     u       %     >        
                    =     V  d   i  *     (     ,   "     O     h  0     6                            (     .  0   H     y  !               $                  2     P     a  $   ~  "     $                        -     N     c     u                                '        <     \  $   u  +     "          )             ,     J     j       '                    <         H     i  %   q                      m        c     ~                 +     3     1   E     w  '     -          '     '     .   4  	   c     m                                   -     H     b     }  *     ?          B      p   C       /   ?     o       .     O     )        C     Y  	   h  <   r       5                  -     C     ^  :   x       1                  +     1     D     K     Q     `     i                      	                             )     <     V     l                 
     
     	          !     )             (  P   :                 n     F   P  N          "               .   .  .   ]  /     W     -     -   B  $   p  #     0     6        !     /     B     U  (   c  1     )                       )     C  !   Z     |                  %          &        F     `  0   ~                       7     .   V       4     #                  2  '   G     o                 %                  .     E     ^     }            ,                            9     L     _  #   t            _     B   ,     o                                &   *     Q     n     |       N     m        `  &   z            7               ;   0  V   l  +     "          &   ,  !   S     u  r                    /     H     F   A  w     N         O  (   g            I     )     $   ,  ,   Q  '   ~       %                            (  $   :  '   _  *     (                    J        g            -     +          $        7  "   @  +   c            -     J        9    U %   t "    9             "   0    S    d     w                            "    7    O %   j                 %           6    I    ]    e [   y     !           $    8    =    Z    g    z                 /    7    4   T /            -        @   8    y 3                   	        / 1   O                     	    	           	 1   	    	 0   
    L
    a
 !   w
    
 J   
 "       $    0    <    R    k    ~                                        %    2 &   H    o                 '    &       ? L   L 9        0       " !   6    X    w                                 #     #   D $   h         &        !               2    G    L    [ 	   q 7   {     D    ]    %   p ,    [    ;    w   [ 7    K    #   W /   {             &    U   ) @    Q           +    A +   V     R    L    .   ?    n     F                       )    A    Y     l             2    !   
 #   ,    P    d    |                     $       ;    Z (   x #                    )   $    N    k     '    '    '        0   5    f     -    8    !    '   (    P    h !         &            .       C !   a B    F    E    B   S p   #         +     L     g       $          6        !    ! 	   !    #!    0!    P!    c!    {!    ! .   ! .   ! %   !    ""    &"   5"   :#   ?$    G% 8   a% '   % 7   % F   % v   A& +   &    &     &    ' !   ('    J' ,   g'    '    ' $   '    ' *   (    -(    @(    H(    X(    p( 
   ( 	   (    (    ( 0   ( 0   ) 0   5) +   f) 1   ) $   ) ,   ) ,   * -   C* #   q* #   *    *    *    * "   * 4   *    0+    8+ 7   I+    +    + 1   +    +    + %   + '   , %   B, '   h,    ,    ,    ,    ,    ,    ,    ,    ,    -    "-    4-    B-    R-    _- 3   l-    - $   -    -    -    -     .    0.    A.    X.    m. -   .    . !   .    .    /    #/ #   8/    \/ `   / Z   E0    0    0    0    0    0    0    0    1    1 0   81 3   i1    1    1    1    1     2    2    -2    D2    Z2    h2    2    2    2    2 %   2    2    2    3    3    .3    I3    _3    n3    3    3 *   3 3   3 1   	4 E   ;4 C   4 <   4 1   5 2   45    g5    5    5    5     5    5    6    96    U6    s6    6 7   6 1   6    7 +   :7    f7    7 #   7    7 5   7    8    68     S8 -   t8     8    8    8 "   8 8   !9    Z9    y9    9 	   9 #   9 %   9    9    :    /:    O:    f: )   u:    :    :    : "   : T   ;    r;    ; H   ; &   ;    <    $< !   +< ,   M<    z<    <    < 	   < !   < *   <    < '   =    >=    S=    e=    = $   =    =    =    =    =    >    2> 
   P> 
   [>    f> 1   y>    >    >    >    > 3   > >   /? $   n?    ?    ?    ?    ?    ?    @ +   .@    Z@    v@ o   @ #   A    (A    ?A $   ^A    A    A '   A 9   A    B    4B z   RB "   B    B    B 8   C    DC 
   [C    fC    sC    C    C    ID +   fD    D    D    D    D "   D    E    E (   -E    VE #   nE &   E ?   E '   E @   !F    bF    nF    ~F    F    F "   F 0   F    G    G    G 7   .G    fG    nG    zG    G    G    G    G 0   G    G    G    H    'H 2   >H )   qH    H    H .   H 6   H +   )I    UI    sI    I !   WJ d   yJ e   J d   DK i   K o   L H   L    L    L    L    M    M    /M    IM    `M #   yM    M    M    M 1   M )   N    AN    HN    JN    _N /   nN    N    N    N 5   N    O    6O K   RO    O &   |P    P    P    P    P    P 7   P D   3Q    xQ    }Q '   Q P   Q    Q    R 	   &R    0R    3R    RR    fR    R '   S    S +   S    S    T )   $T    NT 9   kT    T    T    T    T    
U    "U    <U $   QU    vU    U "   U    U    U    U (   U    
V    V    V "   V /   ?V -   oV    V    V    V    V    V    V O   
W    ZW    pW    W    W    W %   W    W )   X !   0X "   RX    uX    X +   X    X    X    X    
Y !   Y    >Y    ZY    sY    Y     Y    Y    Y    Y    Y    Z    3Z    GZ 4   WZ "   Z    Z    Z    Z    Z    [    ([    A[     ^[ !   [    [ 4   [ M   [ 2   >\    q\    \ *   \ 8   \    ]    ]    1]    I]    `]    x] 3   ] $   ] +   ]    
^    ^    -^    B^    W^    j^     ^    ^    ^    ^    ^ D   ^   9_    a    a    a 7   >a ;   va    a    a !   a    b    )b s   Ib    b    b    b    c    c    ,c    Cc    ]c    nc    rc    xc    !d    d    d    e    e    e    2e    Le +   ce 
   e    e    e    e    e    e    e    e     f H   f L   ff    f    f    f    f %   g    +g    Eg #   ^g    g    g    g    g     g    g     h    =h "   Jh (   mh    h    h %   h    h 2   h    2i    ;i #   Ti *   xi    i    i    i #   i    i    i 	   i 	   j "   j ;   /j #   kj <   j    j    j    j 2   k 	   9k    Ck d   Uk    k !   k )   k    l    l    %l    -l }   :l    l    l    l    l    	m    m    2m    Gm    fm "   m    m    m    m    m    	n    n    3n    Ln #   an a   n    n    o o    o    o    p    7p -   Tp    p !   p    p "   p '   p Q   q    fq    q    q    q    q    q    q    r    +r    Hr    dr    r    r     r    r    r     r    s #   +s    Os    cs    ts -   s    s    s "   s b   t )   vt    t    t    t 0   t    u    7u 	   <u "   Fu %   iu    u    u    u 
   u    u &   u )   u    v 9   ,v ^   fv    v $   v %   w    *w ^   w _   @x    x    "y )   y '   z >   /z D   nz !   z '   z -   z '   +{    S{ )   s{    { )   {    { )   | ,   +|    X|    x|    |    |    | E   | $   }    C} A   [} )   }    }    }     ~    ~     :~    [~ q   p~    ~ :   ~    :    X `   g                    2    N 0   c         #   ̀         )    &   F #   m -           ܁            ) )   E    o )    )    0   ӂ +    >   0    o -    0    /        .   - '   \         '    $   ӄ "           '    D 6   R U    *   ߅    
     )    o   C        ̆ 6               Ƈ 0   ͇      !    "   A #   d                Έ !        
   %    0 <   J         %    >   ݉        %    )    /    O    h d   { *    (    ,   4    a    z 0    >   ċ                .    B    H 0   b     !       Ȍ     $           5    P    n      $    "   ō $           *    ?     S    t                 !   ̎            % '   B    j     $    +   ȏ "        )       H    Z    x         '               % <   9     v     %       ő    ޑ         m   #            ƒ         +    3   ? 1   s     '    -   ۓ    	 +    +   > 2   j 	           Ô    ܔ            0    L    g             *    G       / B   B t        /           Η .    O    )   c         	    <        5       M    _    w         :        1       B    ^    u    {                        њ             	           $    =     R    s                Л    כ    ޛ 
    
    	        !    )   4    ^    r T       ٜ #         v   ; N    R       T "   b         .    .   ˞ /    _   * 1    -    $    #    4   3 :   h            Ġ    נ (    1    -   @    n                ɡ !        #        :    [ )   w     &            0        I $   j         7   ģ .       + 8   G #            ä     +    "   )    L    k     %       ʥ                0    O    ^    g ,               Ц                1 #   F    j     c    B       E #   a                ʨ     &       +    H    V    _ N   } m   ̩    : &   T    {     ;            ;    V   N +    "   ѫ     &    !   5    W z   n             /    H    F   / w   v N       = 0   U         I    )    (   " ,   K +   x     )                       2 $   D +   i .    (   ı             J   .    y         -   Ĳ +        $   $    I "   R +   u         -   ҳ J        K    g %    "    9   ϴ    	     ! "   B    e    v $           µ    ܵ        
    "    @    U    m )           Ŷ         %       E    \    o         [        %       9    V    j    o                ĸ    ڸ         /    7   N 4    /             -   $    R @   n     3   ź            "    ?    O    e 1           ǻ    ߻         	    	   '    1     1       3 0   Q         !       Ͻ J    "   7    Z    f    r                ž    ׾                    (    8    I    [    h &   ~            ٿ         '   & &   N    u L    9       	 0   '    X !   l                                 (    =    L #   Z #   ~ $            &        !       @    T    l             	    7        D    a   T )    ,    _    ;   m     7   - K   e #    /        !   $ !   F &   h U    @    Q   &    x         +        b    T   p 2            F       [    q                     $           4    N 6   m %    '                   /    M    g         $            (    #   C    g             )               % '   @ '   h '        0           # -   A 8   o !    '            !   %     G &   h         .        !    B   ) F   l E    B       V      s                 r           M  (  q  t     )   K          ]  U          (           @   h  K  c    k          C    O              \               A            B        H           S   4        w   A   R      [                     +           i        W        0  e  d                          $                 A  f               /  v      ?       a    1      5  v                      #            j       ~              g          X  "  )      5  v  #  ~                w  .      B       }                  u         z                    _             ?    *             F          o                                                                J                       ~  Q                  l                      r  t               r    8                  Z  <      z      ;   t   T              '                     j  p    3  <            $      n  0      2     	                     b                            N         g                p    j      ^                                      o  O    I          L  '                !  U  W  C                     D               P      v  k      V           M  =  u                       a            }      ~    `      e                   \                              l                        x  "  V  6    ,      2  w  #    k  z                   O      %                               G       *      b  N  Z    ,  N   D  N           V            L  v     2    ?  T        G           !  I  &    W          x      9     w    Y      p         0                ;                    z                                   u  z             ;     x          \    "  (            I  7  &          *  b           {      	              L       W  T         +         c     Z             Q          .  y  2          4  :          S            -      \                       _        T                        r                                 X              8    #     3   d                  8                     R        g      A    d                      U                                       f                  (             ^         F                `         `                             "   r                     !      K    =   G            !              N                                         '    l  u    >  <         >  ^       7               M                                                   a  W      &                       ~             ,                [             )          3                                 h          Z                      1          M    /           Z                  5       J    i                            ,                    I  #   i                 l  g       ;    4      B                                 }        :        :                 %                              H              _               y   U            c                                	  "                f            /  e        C    C                       
        /     {    &  -         Q  +      &                    L  X          S        q  P    0  '         E      `  i         }        +            	                |               D          3                9    >   |            |         7     
   "    s   <  9            F       T                R   ,                         -      w          (      l                }  V        j  c    f             J                       .    P                    p            *  ?     n                    [    (    :              D                    f  0     n     q   Q                |    y      {  6   @                 @  
    E                     x                                     F    G     
    b    Y                      t     ]                 y         q  -             &    A      =  7  =    ^                                            >                    m  4       `               M  s         t  Q        {     4  e  ^                          P      $  )  6        U                           .    G      H  !   [        )      >    q           9           S  d        O      9               p         X      R  B  E   %     E  n         C        8   K      S       {        /                                     h      5  *  *  _          1   
      /                                    %     :              g        H    .             	              H        ,             '        Y  1    +                    m      -                                  E                 h                          o         F      I          k        ]                a      2    h   %    .         a              j       
          '  n                             -            k   o    +        u       <   %                        ]          e              b         @      =        $   s    \  m                        J    d     !          )          R               X                    3          @      J                        $    6          $        i  Y      7   6               Y                   y            B                8    |     #  s        ?       1           L           5              ;  K        o   P    	            [                           D                   _                  m    ]           m             x           c  O                    total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s doesn't exist. Please specify --target or --directory %s doesn't look like an EFI partition.
 %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: not found %s: option '%c%s' doesn't allow an argument
 %s: option '%s' is ambiguous; possibilities: %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- --ppc PATH|--x86 FILE -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add PUBKEY_FILE to trusted keys. Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Bless DIR of HFS or HFS+ partition for PPC macs. Bless FILE of HFS or HFS+ partition for intel macs. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't create file: %s Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check if CPU supports Physical Address Extension. Check if FILE can be booted as i386 PAE Xen unprivileged guest kernel Check if FILE can be booted as x86_64 Xen unprivileged guest kernel Check if FILE can be used as Xen x86 privileged guest kernel Check if FILE can be used as x86 multiboot kernel Check if FILE can be used as x86 multiboot2 kernel Check if FILE is ARM EFI file Check if FILE is ARM Linux Check if FILE is ARM64 EFI file Check if FILE is ARM64 Linux Check if FILE is BIOS bootsector Check if FILE is IA64 EFI file Check if FILE is IA64 Linux Check if FILE is MIPS Linux Check if FILE is MIPSEL Linux Check if FILE is POWERPC Linux Check if FILE is SPARC64 Linux Check if FILE is XNU (Mac OS X kernel) hibernated image Check if FILE is hiberfil.sys in hibernated state Check if FILE is i386 EFI file Check if FILE is i386 XNU (Mac OS X kernel) Check if FILE is i386 kFreeBSD Check if FILE is i386 kNetBSD Check if FILE is of specified type. Check if FILE is x86 Linux Check if FILE is x86 Linux supporting 32-bit protocol Check if FILE is x86 kFreeBSD Check if FILE is x86 kNetBSD Check if FILE is x86_64 EFI file Check if FILE is x86_64 XNU (Mac OS X kernel) Check if FILE is x86_64 kFreeBSD Check if FILE is x86_64 kNetBSD Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear bit at BYTE:BIT in CMOS. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find a free BootNNNN slot Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Default server is ${net_default_server} Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not apply any reed-solomon codes when embedding core.img. This option is only available on x86 BIOS targets. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. EFI bootloader id isn't specified. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enable/disable RTS/CTS. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Evaluate arguments as GRUB commands Execute syslinux config in new context Execute syslinux config in new context taking only menu entries Execute syslinux config in same context Execute syslinux config in same context taking only menu entries Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FONTS FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File size: %s
 File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Generates a bootable CD/USB/floppy image.  Arguments other than options to this program are passed to xorriso, and indicate source files, source directories, or any of the mkisofs options listed by the output of `%s'. Generating grub configuration file ... Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s Glue 32-bit and 64-bit binary into Apple universal one. Graft point syntax (E.g. /boot/grub/grub.cfg=./grub.cfg) is accepted HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS INSTALL_DEVICE must be system device filename.
%s copies GRUB images into %s.  On some platforms, it may also install GRUB into the boot sector. If FILENAME is `-', the default value %s is used.

There is no `delete' command; if you want to delete the whole environment
block, use `rm %s'. Import ZFS wrapping key stored in FILE. Incorrect VDEV Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Installing for %s platform.
 Insufficient privileges to access firmware, assuming BIOS Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s LOCALES Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List Xen storage. List all files. List available video modes. If resolution is given show only modes matching it. List coreboot tables. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load DTB file. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load Truecrypt ISO. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load module. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... M MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MENU_ENTRY is a number, a menu item title or a menu item identifier. Please note that menu items in
submenus or sub-submenus require specifying the submenu components and then the
menu item component. The titles should be separated using the greater-than
character (>) with no extra spaces. Depending on your shell some characters including > may need escaping. More information about this is available
in the GRUB Manual in the section about the 'default' command.  MODULE MODULES Mac-style bless on HFS or HFS+ Mail xorriso support requests to <bug-xorriso@gnu.org>. Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NOT RUNNING:  NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Netboot directory for %s created. Configure your DHCP server to point to %s
 Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OPTIONS FILE OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Option -- switches to native xorriso command mode. Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] PUBKEY_ID Paletted  Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Prepares GRUB network boot images at net_directory/subdir assuming net_directory being TFTP root. Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot into firmware setup menu. Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove PUBKEY_ID from trusted keys. Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Render Apple .disk_label. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING STRING ... Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Script `%s' contains no commands and will do nothing
 Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set bit at BYTE:BIT in CMOS. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the base frequency. Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting GRUB_TIMEOUT to a non-zero value when GRUB_HIDDEN_TIMEOUT is set is no longer supported. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show CBMEM console content. Show a help message. Show a long list with more detailed information. Show boot time statistics. Show contents of FILE in hex. Show coreboot boot time statistics. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show raw dump of the CMOS contents. Show raw dump of the PCI configuration space. Show the contents of a file. Show the current mappings. Show the list of trusted keys. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Skip signature-checking of the environment file. Skip signature-checking of the public key file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Sorry, no parttool is available for %s
 Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Storage information for `%s' does not include type Storage information for `%s' indicates neither a plain partition nor a plain disk Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Switch to native disk drivers. If no modules are specified default set (pata,ahci,usbms,ohci,uhci,ehci) is used Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 T TARGET THEMES Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This VDEV is a RAIDZ%llu
 This VDEV is a mirror This entry can be booted by any user. This requires setting GRUB_DEFAULT=saved in %s/default/grub.\n Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Transform syslinux config into GRUB one. Translate SET1 characters to SET2 in STRING. Translate to lower case. Translate to upper case. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown platform `%s-%s' Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized compression `%s' Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME VDEV element number %d isn't correct
 VDEV element number %d:
 VDEV with %d children
 Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. You've found a bug Your embedding area is unusually small.  core.img won't fit in it. Your xorriso doesn't support `--grub2-boot-info'. Some features are disabled. Please use xorriso 1.2.9 or later. Your xorriso doesn't support `--grub2-boot-info'. Your core image is too big. Boot as disk is disabled. Please use xorriso 1.2.9 or later. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] [-s|--skip-sig] [variable_name_to_whitelist] [...] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [-s|--skip-sig] FILE SIGNATURE_FILE [PUBKEY_FILE] [-s|--skip-sig] PUBKEY_FILE [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [DIR] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTIONS] [SET1] [SET2] [STRING] [OPTION] SOURCE... [OPTION] [INSTALL_DEVICE] [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `%s' is miscompiled: its start address is 0x%llx instead of 0x%llx: ld.gold bug? `%s' is not a local disk `cryptomount' command fails: %s `loopback' command fails: %s `nvsetenv' failed. 
You will have to set `boot-device' variable manually.  At the IEEE1275 prompt, type:
  %s
 `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found assume input is a pxelinux configuration file. assume input is a syslinux configuration file. assume input is an isolinux configuration file. attempt to install to encrypted disk without cryptodisk enabled. Set `%s' in file `%s'. attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: available targets: bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format bless for ppc-based macs bless for x86-based macs blocklist FILE blocklists are incomplete blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't compress `%s' to `%s' can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s can't set %dx%d font size: Freetype error %d: %s cannot compress the kernel image cannot copy `%s' to `%s': %s cannot delete `%s': %s cannot find EFI directory cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot find locale `%s' cannot get translator command line for path `%s': %s cannot make temporary directory: %s cannot make temporary file: %s cannot open OS file `%s': %s cannot open `%s': %s cannot open configuration file `%s': %s cannot open directory `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu compress GRUB files [optional] connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find IEEE1275 device path for %s.
You will have to set `boot-device' variable manually couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d current directory of the syslinux [default is parent directory of input file]. current directory of the syslinux as it will be seen on runtime  [default is parent directory of input file]. cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit device tree must be supplied (see `devicetree' command) disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. disk read fails at offset %lld, length %lld diskboot.img size must be %u bytes do not install bootsector do not probe for filesystems in DEVICE domain name component is too long don't update LED state don't update the `boot-device'/`Boot*' NVRAM variables. This option is only available on EFI and IEEE1275 targets. done embed FILE as a memdisk image
Implies `-p (memdisk)/boot/grub' and overrides any prefix supplied previously, but the prefix itself can be overridden by later options embed FILE as an early config embed FILE as public key for signature checking embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enable ARCS (big-endian mips machines, mostly SGI) boot. Disables HFS+, APM, sparc64 and boot as disk image for i386-pc enable sparc boot. Disables HFS+, APM, ARCS and boot as disk image for i386-pc enabling %s support ... enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to copy Grub to the PReP partition failed to get canonical path of `%s' failed to read the sectors of the core image failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' is too big file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists filesystem on %s is neither HFS nor HFS+ firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification initrd already loaded install FONTS [default=%s] install GRUB for TARGET platform [default=%s] install GRUB images under the directory DIR/%s instead of the %s directory install THEMES [default=%s] install device isn't specified install even if problems are detected install only LOCALES [default=all] install only MODULES and their dependencies [default=all] invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid argument invalid block size invalid color specification `%s' invalid device tree invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid modinfo file `%s' invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' invalid zImage ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no EFI routines are available for your platform no EFI routines are available when running in BIOS mode no IEEE1275 routines are available for your platform no SGI routines are available for your platform no `/' in canonical filename no command is specified no compression is available for your platform no decryption key available no hints available for your platform. Expect reduced performance no network card found no random number generator is available for your OS no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected only ipv4 only ipv6 other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found plain Image kernel not supported - rebuild with CONFIG_(U)EFI_STUB enabled pre-load specified modules MODULES prefer ipv4 prefer ipv6 premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print TARGET print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory as it will be seen on runtime [default=/]. root directory of TFTP server root directory of the syslinux disk [default=/]. route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the label to render set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the ID of bootloader. This option is only available on EFI and Macs. the PReP partition is not empty. If you are sure you want to use it, run dd to clear it: `%s' the argument `%s' requires an integer the chosen partition is not a PReP partition the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive %s is defined multiple times in the device map %s the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected EFI error unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported platform %s
 unsupported serial port flow control unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for label use COLOR for label background use COLOR for text use DIR as the EFI System Partition root. use DIR for PPC MAC install. use FILE as font (PF2). use FILE as font for label use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] use themes under DIR [default=%s] use translations under DIR [default=%s] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists write output to FILE [default=stdout]. wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your LDM Embedding Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub 2.02~beta2
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-12-24 21:18+0100
Last-Translator: Automatically generated
Language-Team: none
Language: en@quot
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=(n != 1);
               total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s doesn't exist. Please specify --target or --directory %s doesn't look like an EFI partition.
 %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- ‘%c’
 %s: not found %s: option ‘%c%s’ doesn't allow an argument
 %s: option ‘%s’ is ambiguous; possibilities: %s: option ‘--%s’ doesn't allow an argument
 %s: option ‘--%s’ requires an argument
 %s: option ‘-W %s’ doesn't allow an argument
 %s: option ‘-W %s’ is ambiguous
 %s: option ‘-W %s’ requires an argument
 %s: option requires an argument -- ‘%c’
 %s: option requires an argument -- ‘%s’\n %s: unrecognized option ‘%c%s’
 %s: unrecognized option ‘--%s’
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label ‘%s’ - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- --ppc PATH|--x86 FILE -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter ‘%s’:
 Add PUBKEY_FILE to trusted keys. Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Bless DIR of HFS or HFS+ partition for PPC macs. Bless FILE of HFS or HFS+ partition for intel macs. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting ‘%s’ Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't create file: %s Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check if CPU supports Physical Address Extension. Check if FILE can be booted as i386 PAE Xen unprivileged guest kernel Check if FILE can be booted as x86_64 Xen unprivileged guest kernel Check if FILE can be used as Xen x86 privileged guest kernel Check if FILE can be used as x86 multiboot kernel Check if FILE can be used as x86 multiboot2 kernel Check if FILE is ARM EFI file Check if FILE is ARM Linux Check if FILE is ARM64 EFI file Check if FILE is ARM64 Linux Check if FILE is BIOS bootsector Check if FILE is IA64 EFI file Check if FILE is IA64 Linux Check if FILE is MIPS Linux Check if FILE is MIPSEL Linux Check if FILE is POWERPC Linux Check if FILE is SPARC64 Linux Check if FILE is XNU (Mac OS X kernel) hibernated image Check if FILE is hiberfil.sys in hibernated state Check if FILE is i386 EFI file Check if FILE is i386 XNU (Mac OS X kernel) Check if FILE is i386 kFreeBSD Check if FILE is i386 kNetBSD Check if FILE is of specified type. Check if FILE is x86 Linux Check if FILE is x86 Linux supporting 32-bit protocol Check if FILE is x86 kFreeBSD Check if FILE is x86 kNetBSD Check if FILE is x86_64 EFI file Check if FILE is x86_64 XNU (Mac OS X kernel) Check if FILE is x86_64 kFreeBSD Check if FILE is x86_64 kNetBSD Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear bit at BYTE:BIT in CMOS. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file ‘%s’ with ‘%s’:
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find a free BootNNNN slot Couldn't find physical volume ‘%s’. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Default server is ${net_default_server} Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not apply any reed-solomon codes when embedding core.img. This option is only available on x86 BIOS targets. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. EFI bootloader id isn't specified. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enable/disable RTS/CTS. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Evaluate arguments as GRUB commands Execute syslinux config in new context Execute syslinux config in new context taking only menu entries Execute syslinux config in same context Execute syslinux config in same context taking only menu entries Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FONTS FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create ‘device-mapper’ tree Falling back to ‘%s’ File size: %s
 File system ‘%s’ doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Generates a bootable CD/USB/floppy image.  Arguments other than options to this program are passed to xorriso, and indicate source files, source directories, or any of the mkisofs options listed by the output of ‘%s’. Generating grub configuration file ... Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s Glue 32-bit and 64-bit binary into Apple universal one. Graft point syntax (E.g. /boot/grub/grub.cfg=./grub.cfg) is accepted HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS INSTALL_DEVICE must be system device filename.
%s copies GRUB images into %s.  On some platforms, it may also install GRUB into the boot sector. If FILENAME is ‘-’, the default value %s is used.

There is no ‘delete’ command; if you want to delete the whole environment
block, use ‘rm %s’. Import ZFS wrapping key stored in FILE. Incorrect VDEV Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Installing for %s platform.
 Insufficient privileges to access firmware, assuming BIOS Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device ‘%s’.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s LOCALES Leaf virtual device (file or disk) Legacy ‘ask’ parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List Xen storage. List all files. List available video modes. If resolution is given show only modes matching it. List coreboot tables. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load DTB file. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load Truecrypt ISO. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load ‘device-properties’ dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load module. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... M MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MENU_ENTRY is a number, a menu item title or a menu item identifier. Please note that menu items in
submenus or sub-submenus require specifying the submenu components and then the
menu item component. The titles should be separated using the greater-than
character (>) with no extra spaces. Depending on your shell some characters including > may need escaping. More information about this is available
in the GRUB Manual in the section about the ‘default’ command.  MODULE MODULES Mac-style bless on HFS or HFS+ Mail xorriso support requests to <bug-xorriso@gnu.org>. Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with ‘boot’ flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NOT RUNNING:  NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Netboot directory for %s created. Configure your DHCP server to point to %s
 Network protocols: New MBR is written to ‘%s’
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OPTIONS FILE OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Option -- switches to native xorriso command mode. Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] PUBKEY_ID Paletted  Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style ‘%s’ doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use ‘parttool PARTITION help’ for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Please don't use old title ‘%s’ for GRUB_DEFAULT, use ‘%s’ (for versions before 2.00) or ‘%s’ (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Prepares GRUB network boot images at net_directory/subdir assuming net_directory being TFTP root. Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, ‘e’ to edit the commands before booting or ‘c’ for a command-line. Press enter to boot the selected OS, ‘e’ to edit the commands before booting or ‘c’ for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot into firmware setup menu. Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove PUBKEY_ID from trusted keys. Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Render Apple .disk_label. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run ‘gdb %s %d’, and set ARGS.HOLD to zero.
 Run ‘go’ to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING STRING ... Saturday Save read value into variable VARNAME. Save variables to environment block file. Say ‘Hello World’. Script ‘%s’ contains no commands and will do nothing
 Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, ‘root’ is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller ‘%s’; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program ‘%s’; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set ‘hidden’ flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set bit at BYTE:BIT in CMOS. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the base frequency. Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting GRUB_TIMEOUT to a non-zero value when GRUB_HIDDEN_TIMEOUT is set is no longer supported. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show CBMEM console content. Show a help message. Show a long list with more detailed information. Show boot time statistics. Show contents of FILE in hex. Show coreboot boot time statistics. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show raw dump of the CMOS contents. Show raw dump of the PCI configuration space. Show the contents of a file. Show the current mappings. Show the list of trusted keys. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy ‘initrd’ command Simulate grub-legacy ‘kernel’ command Simulate grub-legacy ‘modulenounzip’ command Simulate grub-legacy ‘password’ command Simulate grub-legacy ‘password’ command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Skip signature-checking of the environment file. Skip signature-checking of the public key file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Sorry, no parttool is available for %s
 Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Storage information for ‘%s’ does not include type Storage information for ‘%s’ indicates neither a plain partition nor a plain disk Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Switch to native disk drivers. If no modules are specified default set (pata,ahci,usbms,ohci,uhci,ehci) is used Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 T TARGET THEMES Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This VDEV is a RAIDZ%llu
 This VDEV is a mirror This entry can be booted by any user. This requires setting GRUB_DEFAULT=saved in %s/default/grub.\n Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Transform syslinux config into GRUB one. Translate SET1 characters to SET2 in STRING. Translate to lower case. Translate to upper case. Translates the string with the current settings. Try ‘%s --help’ or ‘%s --usage’ for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command ‘%s’.
 Unknown compression format %s Unknown encoding Unknown extra argument ‘%s’. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown platform ‘%s-%s’ Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized compression ‘%s’ Unrecognized option ‘%s’\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME VDEV element number %d isn't correct
 VDEV element number %d:
 VDEV with %d children
 Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color ‘%s’
 Warning: invalid foreground color ‘%s’
 Warning: syntax error (missing slash) in ‘%s’
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set ‘SystemPartition’ and ‘OSLoader’ manually. You've found a bug Your embedding area is unusually small.  core.img won't fit in it. Your xorriso doesn't support ‘--grub2-boot-info’. Some features are disabled. Please use xorriso 1.2.9 or later. Your xorriso doesn't support ‘--grub2-boot-info’. Your core image is too big. Boot as disk is disabled. Please use xorriso 1.2.9 or later. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] [-s|--skip-sig] [variable_name_to_whitelist] [...] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [-s|--skip-sig] FILE SIGNATURE_FILE [PUBKEY_FILE] [-s|--skip-sig] PUBKEY_FILE [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [DIR] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTIONS] [SET1] [SET2] [STRING] [OPTION] SOURCE... [OPTION] [INSTALL_DEVICE] [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] ‘%s’ is miscompiled: its start address is 0x%llx instead of 0x%llx: ld.gold bug? ‘%s’ is not a local disk ‘cryptomount’ command fails: %s ‘loopback’ command fails: %s ‘nvsetenv’ failed. 
You will have to set ‘boot-device’ variable manually.  At the IEEE1275 prompt, type:
  %s
 ‘obppath’ not found in parent dirs of ‘%s’, no IEEE1275 name discovery a value was assigned to the argument ‘%s’ while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found assume input is a pxelinux configuration file. assume input is a syslinux configuration file. assume input is an isolinux configuration file. attempt to install to encrypted disk without cryptodisk enabled. Set ‘%s’ in file ‘%s’. attempt to read or write outside of disk ‘%s’ attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image ‘%s’ from GRUB attempting to read the core image ‘%s’ from GRUB again available RAM available formats: available targets: bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file ‘%s’ is of unsupported format bless for ppc-based macs bless for x86-based macs blocklist FILE blocklists are incomplete blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't compress ‘%s’ to ‘%s’ can't determine filesystem on %s can't find command ‘%s’ can't mount encrypted volume ‘%s’: %s can't open ‘%s’: %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s can't set %dx%d font size: Freetype error %d: %s cannot compress the kernel image cannot copy ‘%s’ to ‘%s’: %s cannot delete ‘%s’: %s cannot find EFI directory cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot find locale ‘%s’ cannot get translator command line for path ‘%s’: %s cannot make temporary directory: %s cannot make temporary file: %s cannot open OS file ‘%s’: %s cannot open ‘%s’: %s cannot open configuration file ‘%s’: %s cannot open directory ‘%s’: %s cannot read ‘%s’ correctly cannot read ‘%s’: %s cannot rename the file %s to %s cannot restore the original directory cannot seek ‘%s’: %s cannot stat ‘%s’: %s cannot write to CD-ROM cannot write to ‘%s’: %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu compress GRUB files [optional] connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find IEEE1275 device path for %s.
You will have to set ‘boot-device’ variable manually couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom ‘part’ class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d current directory of the syslinux [default is parent directory of input file]. current directory of the syslinux as it will be seen on runtime  [default is parent directory of input file]. cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit device tree must be supplied (see ‘devicetree’ command) disable hinting disk ‘%s’ not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. disk read fails at offset %lld, length %lld diskboot.img size must be %u bytes do not install bootsector do not probe for filesystems in DEVICE domain name component is too long don't update LED state don't update the ‘boot-device’/‘Boot*’ NVRAM variables. This option is only available on EFI and IEEE1275 targets. done embed FILE as a memdisk image
Implies ‘-p (memdisk)/boot/grub’ and overrides any prefix supplied previously, but the prefix itself can be overridden by later options embed FILE as an early config embed FILE as public key for signature checking embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enable ARCS (big-endian mips machines, mostly SGI) boot. Disables HFS+, APM, sparc64 and boot as disk image for i386-pc enable sparc boot. Disables HFS+, APM, ARCS and boot as disk image for i386-pc enabling %s support ... enter: boot, ‘e’: options, ‘c’: cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to copy Grub to the PReP partition failed to get canonical path of ‘%s’ failed to read the sectors of the core image failure reading sector 0x%llx from ‘%s’ failure to read password failure writing sector 0x%llx to ‘%s’ false faulty RAM (BadRAM) file ‘%s’ is too big file ‘%s’ not found filename expected filename or tempo and notes expected filesystem ‘%s’ does not support labels filesystem ‘%s’ doesn't support blocklists filesystem on %s is neither HFS nor HFS+ firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification initrd already loaded install FONTS [default=%s] install GRUB for TARGET platform [default=%s] install GRUB images under the directory DIR/%s instead of the %s directory install THEMES [default=%s] install device isn't specified install even if problems are detected install only LOCALES [default=all] install only MODULES and their dependencies [default=all] invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid argument invalid block size invalid color specification ‘%s’ invalid device tree invalid environment block invalid file name ‘%s’ invalid font range invalid line format: %s invalid modinfo file ‘%s’ invalid parameter %s invalid skip value %lld invalid variable name ‘%s’ invalid video mode specification ‘%s’ invalid zImage ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing ‘%c’ symbol missing mandatory option for ‘%s’ module ‘%s’ isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no EFI routines are available for your platform no EFI routines are available when running in BIOS mode no IEEE1275 routines are available for your platform no SGI routines are available for your platform no ‘/’ in canonical filename no command is specified no compression is available for your platform no decryption key available no hints available for your platform. Expect reduced performance no network card found no random number generator is available for your OS no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected only ipv4 only ipv6 other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found plain Image kernel not supported - rebuild with CONFIG_(U)EFI_STUB enabled pre-load specified modules MODULES prefer ipv4 prefer ipv6 premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print TARGET print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory as it will be seen on runtime [default=/]. root directory of TFTP server root directory of the syslinux disk [default=/]. route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port ‘%s’ isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the label to render set the program name size stretch|normal symbol ‘%s’ not found temporary terminal %s isn't found or it's not handled by terminfo terminal ‘%s’ isn't found the ID of bootloader. This option is only available on EFI and Macs. the PReP partition is not empty. If you are sure you want to use it, run dd to clear it: ‘%s’ the argument ‘%s’ requires an integer the chosen partition is not a PReP partition the device.map entry ‘%s’ is invalid. Ignoring it. Please correct or delete your device.map the drive %s is defined multiple times in the device map %s the drive name ‘%s’ in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. ‘hd0’ or ‘cd’) the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of ‘%s’ is not %u the size of ‘%s’ is too large the size of ‘%s’ is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening ‘%s’ timeout reading ‘%s’ timeout: could not resolve hardware address too deep nesting of symlinks translator ‘%s’ for path ‘%s’ has several non-option words, at least ‘%s’ and ‘%s’ translator ‘%s’ for path ‘%s’ is given only options, cannot find device part translator command line is empty for path ‘%s’ two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected EFI error unexpected end of file unknown argument ‘%s’ unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device ‘%s’ unknown regexp error unknown target format %s
 unknown terminfo type ‘%s’ unrecognised DHCP option format specification ‘%s’ unrecognised network address ‘%s’ unrecognised network interface ‘%s’ unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported platform %s
 unsupported serial port flow control unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for label use COLOR for label background use COLOR for text use DIR as the EFI System Partition root. use DIR for PPC MAC install. use FILE as font (PF2). use FILE as font for label use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] use themes under DIR [default=%s] use translations under DIR [default=%s] variable ‘%s’ isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists write output to FILE [default=stdout]. wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your LDM Embedding Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it.                                                                                                                                                                                                                                                                                                                                                                                                                                                                     boot/grub/locale/eo.mo                                                                              0000600 0001750 0001750 00000126152 13417732100 0013634 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                                ,      )     )     )     )    )    *     +      +     ,  !   ,     A,  $   V,     {,  *   ,     ,     ,     ,  
   ,  	   ,     -     -  7   -     T-  1   ]-     -     -     -     -     -     -     -  $   .     '.     ?.     X.  !   u.     .  `   /  Z   /     /     /     0     0     60     P0     g0     0     0     0     0     0     0     0     1     1     -1     H1  	   Z1  #   d1     1     1     1     1     1     1  &   2     E2  !   L2  ,   n2     2     2     2  !   2     2     2     3     #3     53     P3     l3     3  
   3  
   3     3     3     3     3  $   4     04     M4     e4     4     4  +   4     4  #   4      5     75  $   V5     {5     5  '   5  9   5     6     ,6     J6     Q6     e6  
   |6     6     6  +   07     \7     q7     7     7     7  (   7     7     7     8     8     48  "   F8  0   i8     8     8     8  7   8     8     8     	9     9  2   09     c9     x9     9     9  !   z:  d   :  e   ;  d   g;  i   ;  H   6<     <     <     <  )   <     <     <     =     =     ;=     W=     t=     y=  '   ~=  P   =     =     >     ">     6>     G>     \>     r>  "   >     >     >     >     >     >     ?     ?  %   .?  )   T?  !   ~?  "   ?     ?     ?  +   ?     "@     9@     I@  !   [@     }@     @     @     @      @     @     A     /A     KA     _A     oA     A     A     A     A     A     B  !   B     @B  M   ZB  2   B     B  *   B  8    C     YC     fC     ~C     C  3   C  $   C  +   D     2D     @D     ^D     eD  !   mD     D     D     D     D     D     E     QF     XF     ]F     uF     F     F     F     F      F  "   G     2G     ;G     NG     SG     XG  "   jG  #   G     G     G  	   G  )   G     H     H     &H     =H     SH     gH     H     H  g   H     I     I     I  !   I  "   I  '   J     :J     HJ     eJ     J     J     J     J     J     K     !K     4K     EK  -   eK  )   K     K     K     K     K     K  &    L  )   'L     QL  ^   dL     L  $   L  %   M     (M  ^   M  _   :N  >   N  D   N  !   O  '   @O  -   hO  )   O     O  )   O  )   P  ,   1P     ^P     ~P     P     P     P  E   P  $   $Q     IQ     fQ     Q     Q      Q     Q  q   Q     dR  :   R     R     R     R     S     S     3S  0   HS     yS     S     S  )   S  &   S     T     0T     KT     ^T  )   zT  %   T  %   T  ,   T  '   U  :   EU     U  -   U     U     U  '   U     V  )   #V      MV  !   nV  "   V  #   V     V     V  !   W     *W     @W  <   ZW     W     W  0   W     W     W     X     X  $   "X     GX     ^X     {X     X     X  '   X     X     X     X  '   X  -   %Y     SY  '   \Y  '   Y  .   Y  	   Y     Y     Z     Z     9Z     UZ     pZ  *   Z  /   Z     Z  .   Z  O   +[  )   {[     [     [  	   [     [  5   [     (\     :\     R\     h\     \     \     \     \     \     \  	   \     \     \     ]     ]     7]     >]     E]  
   S]  
   ^]  !   i]  )   ]     ]     ]  0   ]  6   #^     Z^     i^     ^      ^     ^     ^     ^     _     _     8_     Q_     Z_     i_     y_  #   _     _     _     _     _  "   _  &   !`  H   H`  F   `     `     `     `     `     a     a  %   a     Ea     _a     va     a     a     a  [   a     b     3b     Kb     bb     xb  1   b     b     b     b     c     c     /c     Ec     ^c     zc     c     c  	   c  7   c  /   d     7d     Rd     pd     d  F   d     d     e     e     ,e     Ke  (   ie  #   e  '   e  '   e  '   f  0   .f  !   _f    f     8h     Eh     Ih  5  Uh  5  i     j     j     j  !   k     'k  "   ;k     ^k  '   xk     k     k     k  
   k     k     k     k  4   
l     ?l  4   Gl     |l     l     l     l     l     l     l  $   l     m     4m     Mm  /   dm     m     n  S   n     n     o     1o     7o     Vo     lo  !   o  !   o     o     o     o     p      p     5p     Jp  $   gp      p     p  	   p  (   p      p     q  *   *q     Uq     kq  %   q  *   q     q  !   q  0   q     +r  	   7r     Ar  %   ^r     r     r     r     r  #   r  "   r     s     4s     Rs     ds     {s     s  !   s      s  '   s     	t     &t     ?t  !   ]t     t  (   t  !   t  #   t     u     u  (   5u     ^u     tu  .   u  D   u      v     v     9v     Bv     Zv     tv  	   |v     v  4   'w     \w     tw     w     w     w  -   w     w     x     x     )x     Bx  ,   Wx  :   x     x     x     x  7   x  
   #y     .y     @y     Sy  8   gy     y     y     y     y      z  [   z  \   K{  [   {  `   |  R   e|     |     |     |  0   }     E}     N}     b}  !   p}  *   }  &   }     }     }  &   }  O   ~  !   j~     ~     ~     ~     ~     ~     ~  #        1     G     ^      x                  .     0     #   H  #   l            /   ΀            $   1  +   V  %     %        ΁       #        &  $   D     i                         ւ               &     @  $   ]       Q     6        &  &   E  I   l          ˄            ;   '  %   c  .              ˅            #     *        J     a     z          /          $     )     D     W     w  &          (   ۈ  +        0     8     K     P     V  3   i  3        щ       	     -        ,     8     J     Z     j     z                    >            !     '   ?  &   g                    ߌ               <  !   [     }                 6   ۍ  -        @     X     j  
   q     |  .     0          k        e  +     .        ޏ  m     m   *  O     M     $   6  *   [  0     +          &     /   *  0   Z  +     #     $   ۓ             ^   7  -     !   Ĕ  !     !        *  $   I     n       &     B   -  "   p               Ö     ږ       .     '   7     _     {  .     .   Ǘ               /     E  +   c  (     1     5     )      =   J  %     4               4        F  *   O  %   z  &     %   ǚ  #          '   %  '   M     u       2        ݛ  $     -   
     8     >     L     c  5   i       #        ߜ            #        >     S     [  $   h  )          '     $     @        M      V  !   w        !        ܞ        "     1   @     r  2     Y     4        O     h     {        ;                       +     I     `     f     x                              ӡ                         $     1  !   =  ,   _  %          +   Ѣ  4        2      D     e       #        ƣ            %        C     ^     j     {  !     #        Ҥ                  +   )  &   U  I   |  A   ƥ                    .     E     L  $   X     }               Ϧ            t     
                  ȧ  !     :   
     E     X     p  
                  ɨ               #     @     Y  >   b  5     !   ש  !     $        @  G   W               Ҫ  !     #     '   /  $   W  8   |  ,     2     ;        Q         
                      L   x     -   -       &                                         5             W         9  8     p         +      f                 o      1       D   P                                      2   [  B   X          $       O      I         \  v                    0   b                      ;     u  N      6  =   R                                                          w                    S            X   s                   [                  O    `            |       ?   ]              y  A   r       %  \                       C   V   h                            g                      !        	                        :      *                               h  (   {          e         T          ^      P  T   M                               @       d                     @  x            G       q       8  }  i          	      1                           B    m  7            %         n   w   Y   e                            .               b      #          H               C                                L        )  Z                    U      i   '            F          7          "      G   <   >                                 2          Q     A     U  Y  q                 4         Z        v                                  S   9              >    :   4            +    R   #          p      3  }     !                                            j             l      $    t     _    .                   W   _         ;                           ~                   c   ~     H            `                       k                    6       (  z                                  c            5           t       z    {  n                          K            ,                            f   D    V              M  ?    m                  k   ]     Q             r              K  &  )          a                 N   d   E               
      ,             s      /                   u   I           F      J  y   o           ^     /        <                      0  E    |  "                                  *      a         3       =       J                       l  g   j     '           [OPTION...] %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: error: %s: info: %s: warning: - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. > ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR1,MASK1[,ADDR2,MASK2[,...]] ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Allow to interrupt with ESC. Ask for file name to reboot from. Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: BLOCK Base directory for hash list. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list COLOR Change configured devices. Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check key modifier status. Clear the screen. Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute or check hash checksum. Configure serial port. Continue loops Copy FILE to local file LOCAL. Create a blank environment block file. DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] Debug tool for filesystem driver. Define a menu entry. Define a submenu. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Disk count must precede disks list.
 Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. ENVVAR ENVVAR [ENVVAR] ... ESC at any time exits. EXPRESSION EXPRESSION ] Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Enable interpretation of backslash escapes. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FROM[K|M|G] TO[K|M|G] Failed to boot both default and fallback entries.
 Falling back to `%s' Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found NetBSD kernel: %s\n Found kernel of FreeBSD: %s\n Freeze ATA security settings until reset. Friday GNU GRUB  version %s GRUB emulator. Generate a grub config file Get crc32 checksum of FILE. Get/set ATA disk parameters. HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World IMAGE_PATH COMMANDS Insert a module. Invalid command %s.
 Invalid device `%s'.
 Invalid disk count.
 Invoke user configuration routing. List DNS servers List PCI devices. List all files. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Loaded fonts: Loading kernel of Illumos ... MODULE MODULES Make a virtual drive from a file. Manage the BIOS drive mappings. Manipulate PCI devices. Menu entry identifier. Menu entry type. Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Monday NAME NAME [VARIABLE] [HINTS] NUMBER_OF_SECONDS No command is specified.
 No device is specified.
 No known filesystem detected No path is specified.
 No path or device is specified.
 Not enough parameters to command.
 Options: PARTITION COMMANDS PATH PORT PORT VALUE [MASK] Parse legacy config in new context Parse legacy config in same context Part no: %s.
 Partition %s: Path: %s
 Perform both direct and reverse mappings. Play a tune. Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Press any key to continue... Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print a block list. Print and execute block argument. Print drive identity and settings. Print sizes in a human readable format. REGEXP STRING Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot the computer. Reenter password:  Remove a module. Remove an environment variable. Remove any memory regions in specified range. Reset all mappings to the default values. Retrieve device info. Return from a function. SIZE STRING Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Shift positional parameters. Show ACPI information. Show APM information. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show the contents of a file. Show the current mappings. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Specify filename. Specify hash to use. Specify one or more font files to load. Sunday Suppress normal output (warnings remain). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. The files are identical.
 The highlighted entry will be executed automatically in %ds. Thursday Tool to edit environment block. Translates the string with the current settings. Tuesday USER PASSWORD USER PBKDF2_PASSWORD UTF-8 Uncompress file before checksumming. Unknown command `%s'.
 Unknown extra argument `%s'. Unload EFI emulator. Usage: Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use serial console. VARNAME WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. You need to specify at least one command.
 [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [ADDR|comUNIT][,SPEED] [ARG] [ENVVAR=VALUE] [ENVVAR] [NUMBER:]VARNAME [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] `cryptomount' command fails: %s `loopback' command fails: %s attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again blocklist FILE can't find command `%s' can't open `%s': %s cannot compress the kernel image cannot open OS file `%s': %s cannot open `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot write to `%s': %s cat FILE cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu core image is too big (0x%x > 0x%x) couldn't open geom cp FILE LOCAL crc FILE device count exceeds limit diskboot.img size must be %u bytes do not probe for filesystems in DEVICE embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install error: %s.
 false filename expected give this help list grub> hex FILE install even if problems are detected invalid environment block invalid file name `%s' invalid line format: %s invalid parameter %s invalid skip value %lld ls PATH make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. module isn't loaded no command is specified no server is specified no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a regular file one argument expected out of memory output file must be specified premature end of file premature end of file %s print this message and exit print verbose messages. read error at offset %llu: %s set [NAME=VALUE ...] temporary the first sector of the core file is not sector-aligned the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small two arguments expected unable to identify a filesystem in %s; safety check can't be performed unexpected end of file unknown argument `%s' unknown filesystem unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use GRUB files in the directory DIR [default=%s] you need to load the kernel first Project-Id-Version: grub-2.0.0-pre4
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2012-04-05 21:52+0200
Last-Translator: Kristjan SCHMIDT <kristjan.schmidt@googlemail.com>
Language-Team: Esperanto <translation-team-eo@lists.sourceforge.net>
Language: eo
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=(n != 1)
  [OPCIOJ...] %ds %ds restas. ‘%s’ ŝajne enhavas ‘%s’-dosiersistemon kiu ne estas konata pro rezervado de loko por DOS-eca praŝargo. Instalo de Grubo en ĝin povas rezultiĝi en DOSIERSISTEMA DETRUO se valoraj datumoj anstataŭiĝas fare de ‘grub-setup’ (‘--skip-fs-probe’ malŝaltas tiun kontrolon, uzu ĝin proprariske) ‘%s’ ŝajne enhavas ‘%s’-subdisktabelon kiu ne estas konata pro rezervado de loko por DOS-eca praŝargo. Instalo de Grubo en ĝin povas rezultiĝi en DOSIERSISTEMA DETRUO se valoraj datumoj anstataŭiĝas fare de ‘grub-setup’ (‘--skip-fs-probe’ malŝaltas tiun kontrolon, uzu ĝin proprariske) %s, kun Hurdo %s %s, kun Hurdo %s (riparreĝimo) %s, kun Linukso %s %s, kun Linukso %s (riparreĝimo) %s, kun kFreeBSD %s %s, kun kFreeBSD %s (riparreĝimo) %s, kun kerno %s (per %s) %s, kun kerno %s (per %s, riparreĝimo) %s: Haketo-miskongruo
 %s: Akcepti
 %s: LEGERARO
 %s: eraro: %s: informoj: %s: averto: - Etikedo “%s” - Laste modifiĝis je %d-%02d-%02d %02d:%02d:%02d %s --PLI-- [-c DOSIERO [-p PREFIKSO]] [DOSIERO1 [DOSIERO2 ...]] -l | -r | [-s] grubdev osdisk. > ACPI-elŝalto malsukcesis ADDR ADDR VALORO [MASKO] ADR1,MASKO1[,ADR2,MASKO2[,...]] ASKIO Akcepti DOS-specajn CR/NL-linfinojn. Aktivaj enigoterminaloj: Aktivaj eligoterminaloj: Interrompebla per ESK. Demandi por dosiernomo el kiu okazu restartigo. Provas instali Grubon al disko kun pluraj subdisketikedoj aŭ kun kaj subdisketikedo kaj dosiersistemo. Tio ankoraŭ ne estas subtenata. Provas instali Grubon al disko kun pluraj subdisketikedoj aŭ kun kaj subdisketikedo kaj dosiersistemo. Tio ankoraŭ ne estas subtenata. Provas instali Grubon al sensubdiska disko aŭ al subdisko. Tio estas MALBONA ideo. Disponeblaj enigoterminaloj: Haveblaj eligoterminaloj: BLOKO Baza dosierujo por haketlisto. Startigi operaciumon. Praŝargi en unuopan reĝimon. Praŝargi kun sencimigo-mesaĝoj. Praŝargi kun ampleksaj mesaĝoj. Ŝargas na ‘%s’ Praŝargas komandliston KOLORO Ŝanĝi agorditajn aparatojn. Kontroli Alt-klavon. Kontroli stirklavon. Kontroli majuskligan klavon. Kontroli por ĉefprocesoraj trajtoj. Kontroli staton de klavmodifilo. Vakigi la ekranon. Komandoj: Kompari DOSIERO-n kun loka dosiero LOKA. Kompari dosieron '%s' kun '%s':
 Kompari du dosierojn. Kalkuli aŭ kontroli haketan kontrolsumon. Agordi serian pordon. Daŭrigi iteraciojn Kopii DOSIERO-n al loka dosiero LOKA. Krei malplenan ĉirkaŭaĵan blokdosieron. APARATO APARATO [SUBDISKO[+/-[TIPO]]] ... APARATO estu operaciuma aparato (ekz. /dev/sda). APARAT_NOMO DOSIERUJO DOSIERUJO [OSBundleRequired] Sencimigilo por dosiersistema pelilo. Difini menueron. Difini submenuon. Forigi variablojn. Determini pelilon. Determini na UUID de dosiersistemo. Determini dosiersisteman etikedon. Determini dosiersisteman tipon. Determini subdiskmapan tipon. Aparato ‘%s’: Aparat-identigilo: %s
 Elŝalti na ACPI. Elŝalti na SMP. Elŝalti ĉiun praŝargan eligon. Elŝalti/Enŝalti na SMART (0/1) Diskonombro estu antaŭ la diskolisto.
 Kontroli sanstaton de SMART. Montri linion da teksto. Montri blokliston de DOSIERO. Montri eligon sur ĉiuj konzoloj. Montri energi-reĝimon. Montri la uzon de tiu komando kaj eliri. Montri ĉi tiun helpon kaj eliri. Ne eligi finajn malplenajn liniojn. Ne presi mesaĝojn. Ne sondi ajnan disketilon. Ne uzi na APM por haltigi la komputilon. Fari nenion, sukcese. Fari nenion, nesukcese. Ne montri dumpraŝargajn diagnozajn mesaĝojn. Ne ŝargi gastigajn tabelojn specifitajn per perkome disigita listo. Ne restartigi, nur haltigi. Ne ĉesi post la unua eraro. ĈIRKVAR ĈIRKVAR [ĈIRKVAR] ... ‘Esk’ ĉiam elirigas. ESPRIMO ESPRIMO ] Enkorpigo ne eblas. Uzante tiujn agordojn Grubo instaleblas nur se bloklistoj estas uzataj. Tamen, bloklistoj estas MALFIDINDAJ kaj ilia uzo estas malkonsilata. Aktivigi interpretadon de retro-stangaj kombinaĵoj. Entajpu ZFS-pasvorton:  Eniri KDB dum praŝargo. Starti normalreĝimon. Entajpu pasvorton: Enigu uzantnomon:  Eraro dum analizo de komandliniaj argumentoj
 Taksi esprimon. Eliri el Grubo. Eliri iteraciojn Foriri el normalreĝimo. Eksporti variablojn. Eksporti versio-1-tabelojn al la operaciumo. Eksporti versio-2- kaj versio-3-tabelojn al la operaciumo. DOSIERO DOSIERO [ARG ...] DOSIERO [ARGS...] DOSIERO | RAPIDO [GRADO1 DAŬRO1] [GRADO2 DAŬRO2] ...  DOSIERO... DOSIERO1 DOSIERO2 DOSIERNOMO KOMANDO DE[K|M|G] AL[K|M|G] Praŝargo de kaj defaŭlta kaj refala eroj malsukcesis.
 Refalas al ‘%s’ Ne eblis atingi dosiersistemon Dosiersistema tipo: ‘%s’ Plenigi hibridan MBR de GPT-aparato APARATO. Elektitaj subdiskoj estos parto de hibrida MBR. Rajtas esti maksimume 3 subdiskoj. TIPO estas MBR-tipo. + signifas ke subdisko estas aktiva. Nur unu subdisko povas esti aktiva. Finigi ŝargadon de EFI-imitilo. Unue provi la aparaton SUGESTO (je ARC). Se SUGESTO finas je komo, provi ankaŭ subdiskojn. Unue provi la aparaton SUGESTO (je BIOS). Se SUGESTO finas je komo, provi ankaŭ subdiskojn. Unue provi la aparaton SUGESTO (je EFI). Se SUGESTO finas je komo, provi ankaŭ subdiskojn. Unue provi la aparaton SUGESTO (je IEEE1275). Se SUGESTO finas je komo, provi ankaŭ subdiskojn. Unue provi la aparaton SUGESTO. Se SUGESTO finas je komo, provi ankaŭ subdiskojn. Korekti videobildan problemon. Trovis kernon de NetBSD: %s\n Trovis kernon de FreeBSD: %s\n Frostigi sekurecagordojn de ATA ĝis restartigo. Vendredo GNU GRUB  versio %s GRUB-imitilo. Generi agordan dosieron de Grubo. Akiri ‘crc32’-kontrolsumon de DOSIERO. Akiri/agordi parametrojn de ATA-disko. HAKETO SUGESTO Haltigi la sistemon, se eblas per APM. Haltigi la komputilon. Tiu ĉi komando funkcias ne kun ĉiuj firm-programaĵoj. Trakti N bajtojn en elira dosiero Saluton mondo BILDO_VOJO-KOMANDOJ Enmeti modulon. Nevalida komando ‘%s’.
 Nevalida aparato ‘%s’.
 Nevalida diskonombro.
 Alvoki enkursigon de uzantagordado. Listigi DNS-servilojn Listigi PCI-aparatojn. Listigi ĉiujn dosierojn. Listigi aparatojn kaj dosierojn. Listigi aparatojn aŭ dosierojn. Listigi aparatojn. Listigi dosierojn en VOJO. Listigi memormapon provizitan de firmprogramo. Listo de uzantoj kiuj rajtas startigi tiun eron. Listigi aŭ elekti enigoterminalon. Listigi aŭ elekti eligoterminalon. Listigi la nunajn variablojn. Listigi la ŝargitajn tiparojn. Listigi variablojn el ĉirkaŭaĵa blokdosiero. Ŝargi 64-bitan XNU-bildon. Ŝargi BIOS-nekropsion Ŝarĝado de ĉirkaŭaĵo de FreeBSD Ŝarĝado de kerna modulo de FreeBSD (ELF). Ŝarĝado de kerna modulo de FreeBSD. Ŝarĝado de 'kernel.sys' de FreeBSD. Ŝarĝado de Linukso. Ŝarĝado de NTLDR na BootMGR Ŝargi kernmodulon de NetBSD (ELF). Ŝargi kernmodulon de NetBSD. Ŝargi dosierujon de XNU-etendaĵoj. Ŝargi XNU-aldonpakaĵon. Ŝargi XNU-aldonaĵon. Ŝargi XNU-bildon. Ŝargi PXE-bildon. Ŝargi klavarfasonon. Ŝargi multiboot-2-kernon. Ŝargi multiboot-2-modulon. Ŝargi multiboot-kernon. Ŝargi multiboot-modulon. Ŝargi salutŝildon por XNU. Ŝargi kaj pravalorizi EFI-imitilon. Ŝargi alian praŝargilon. Ŝargi alian agordodosieron sen ŝanĝo de kunteksto sed kun nur menu-elektebloj. Ŝargi alian agordodosieron sen ŝanĝi la kuntekston. Ŝargi alian agordan dosieron. Ŝargi fonbildon por aktiva terminalo. Ŝargi gastigajn ACPI-tabelojn kaj tabelojn specifigitajn per argumentoj. Ŝarĝado de initrd. Ŝarĝado de kerno de FreeBSD. Ŝarĝado de kerno de NetBSD. Ŝarĝado de kerno de OpenBSD. Ŝargi nur la tabelojn donitajn en komo-dispartigita listo. Ŝargi la saman dosieron plurmaniere. Ŝargi variablojn el ĉirkaŭaĵa blokdosiero. Ŝargitaj tiparoj: Ŝarĝado de kerno de Ilumoso... MODULO MODULOJ Fari virtualan aparaton el dosiero. Mastrumi la mapigojn de BIOS-datumportilo. Manipuli PCI-aparatojn Identigilo de menuenigo. Tipo de menuenigo. Minimuma ‘BASH’-eca linimodifado estas subtenata. Por la unua vorto, TABO listigas eblajn komandojn. Aliloke TABO listigas eblajn aparatojn aŭ dosierojn. %s Minimuma Emacs-eca ekranmodifado estas subtenata. ‘Tabo’ listigas kompletaĵojn. Premu ‘Stir-x’ aŭ ‘F10’ por praŝargi, ‘Stir-c’ aŭ ‘F2’ por komandlinio aŭ ‘Esk’ por forĵeti modifojn kaj reiri al la GRUB-menuo. Lundo NOMO NOMO [VARIABLO] [SUGESTOJ] NOMBRO_DA_SEKUNDOJ Neniu komando estas specifita.
 Neniu aparato estas specifita.
 Detektis neniun konatan dosiersistemon Neniu vojo estas specifita.
 Neniu vojo aŭ aparato estas specifita.
 La komando ne havas sufiĉe da parametroj.
 Opcioj: SUBDISKAJ KOMANDOJ VOJO PORDO PORDVALORO [MASKO] Sintakse analizi heredaĵagordojn en nova kunteksto Sintakse analizi heredaĵagordojn en sama kunteksto Parto-nr.: %s.
 Subdisko ‘%s’: Vojo: %s
 Plenumi mapigojn kaj direktajn kaj inversajn. Ludi sonon. Eblaj argumentoj: Eblaj komandoj: Eblaj aparatoj: Eblaj dosieroj: Eblaj subdiskoj: Eblaj aĵoj: Premu klavon por daŭrigi ... Premu ‘enigi’ por praŝargi la elektitan operaciumon, ‘e’ por modifi la komandojn antaŭ praŝargo aŭ ‘c’ por komandlinio. Premu ‘enigi’ por praŝargi la elektitan operaciumon, ‘e’ por modifi la komandojn antaŭ praŝargo aŭ ‘c’ por komandlinio. ‘Esk’ por reiri al antaŭa menuo. Montri memoro-informojn. Presi liston de blokoj. Eldoni kaj lanĉi blokargumenton. Montri identon kaj agordojn de aparato. Montri grandojn en home legebla formo. REGEXP SIGNOĈENO Legi 16-bitan valoron de ADDR. Legi 16-bitan valoron el PORDO. Legi 32-bitan valoron de ADDR. Legi 32-bitan valoron el PORDO. Legi 8-bitan valoron de ADDR. Legi 8-bitan valoron el PORDO. Legi nur bajtojn de longo LENGTH. Restartigi la komputilon. Reenigu pasvorton:  Forigi modulon. Forigi ĉirkaŭaĵan variablon. Forigi ĉiujn memorregionojn en la specifita amplekso. Agordi ĉiujn mapigojn al defaŭltaj valoroj. Ricevi aparatinformojn. Reiri de funkcio. GRANDO SIGNOĈENO Sabato Konservi legitan valoron en variablon VARNOMO. Konservi variablojn al ĉirkaŭaĵa blokdosiero. Diri "Saluton mondo". Serĉi aparatojn per UUID. Se VARIABLO estas specifita, la unue trovita aparato estas agordita al variablo. Serĉu aparatojn per dosiero. Serĉu aparatojn per UUID de dosiersistemo. Serĉu aparatojn per etikedo de dosiersistemo. Serĉi aparatojn per dosiero, dosiersistema etikedo aŭ UUID de dosiersistemo. Se --set estas specifita la unue trovita dosiero estas agordota al variablo. Se neniu variablo-nomo estas specifita, "ĉefuzanto" estas uzota. Serĉi aparatojn perdosiere. Se VARIABLO estas specifita, la unue trovita aparato estas agordita al variablo. Serĉi aparatojn peretikede. Se VARIABLO estas specifita, la unue trovita aparato estas agordita al variablo. Agordi altnivelan energi-mastrumadon
(1=malalta, ..., 254=alta, 255=malaktiva). Agordi Aŭtomatan Akustikan Mastrumadon
(0=for, 128=kvieta, ..., 254=rapida). Agordi OEMID de RSDP, XSDT kaj RSDT. Agordi OEMTABLE ID de RSDP, XSDT kaj RSDT. Agordi OEMTABLE-revizion de RSDP, XSDT kaj RSDT. Agordi variablon al la unue trovita aparato Agordi ĉirkaŭaĵan variablon. Ŝargi fonbildon por aktiva terminalo. Agordi kampon 'creator' de RSDP, XSDT kaj RSDT. Agordi revizion 'creator' de RSDP, XSDT kaj RSDT Agordi variablon de sencimiga ĉirkaŭaĵo. Agordi aparaton al dormeta reĝimo. Agordi aparaton al atendada reĝimo. Agordi poziciajn parametrojn. Agordi radikan aparaton. Agordi limtempon de preteco
(0=neaktiva, 1=5 sek, 2=10 sek, ..., 240=20 min, 241=30 min, ...). Agordi ‘terminfo’-tipon de TERM al TIPO.
 Agordi la adreson de seria pordo. Agordi la parecon de seria pordo. Agordi la rapidon de seria pordo. Agordi la seriajn stop-bitojn. Agordi la vortlongon de seria pordo. Agordi la serian unuon. Agordi bildojn kiuj praŝargiĝu de APARATO.

Normale vi ne lanĉu ĉi tiun programon rekte. Uzu ‘grub-install’ anstataŭe. Agordi pasvorton por uzanto (PBKDF2).  Agordi uzantpasvorton (simpla teksto). Nerekomendate kaj nesekure. Agordi variablon kun uzanto-enigo. Agordi variablojn. Ŝovi poziciajn parametrojn. Montri ACPI-informojn. Montri APM-informojn. Montri helpan mesaĝon. Montri longan liston kun pli detalaj informoj. Montri la enhavon de dosiero deksesume. Montri ŝargitajn modulojn. Montri la enhavon de memoro. Montri krudan enhavon de ATA-IDENTIFY-sektoro. Montri krudajn enhavojn de dosiero aŭ memoro. Montri la enhavon de dosiero. Montri la nunajn mapigojn. Montri tiun mesaĝon. Montri nur versio-1-tabelojn. Montri nur versio-2- kaj versio-3-tabelojn. Simuli initrd-komandon de grub-heredaĵo Simuli komandon »kernel« kiel en grub-heredaĵo Simuli ‘modulenounzip’-komandon de grub-heredaĵo Sumuli pasvort-komandon de grub-heredaĵo Simuli pasvortkomandon de grub-heredaĵo en reĝimo menuenigo Transsalti N bajtojn de elira dosiero Transsalti "offset" da bajtoj komence de la dosiero. Specifi dosiernomon. Specifi uzendan haketon. Specifigi unu aŭ plurajn ŝargotajn tipardosierojn. Dimanĉo Subpremi normalan eligon (avertoj restos). Terminalo havas specifitan geometrion Terminalo estas nur-ASKIA [defaŭlte]. Terminalo estas UTF-8 en logika ordo. Terminalo estas UTF-8 en vida ordo. Testi USB-subtenon. Testi ĉu REGESPR egalas al SIGNOĈENO. Testi video-subsistemon en reĝimo AxL. Testi video-subsistemon. La dosieroj estas identaj.
 La elektita ero estos aŭtomate lanĉata post %ds. Ĵaŭdo Ilo por modifi ĉirkaŭaĵan blokon. Tradukas la signoĉenon per la nunaj agordoj. Mardo UZANTPASVORTO UZANTO PBKDF2_PASVORTO UTF-8 Malkompaktigi dosieron antaŭ kalkulo de kontrolsumo. Nekonata komando ‘%s’.
 Nekonata aldona argumento ‘%s’. Malŝargi EFI-imitilon. Uzado: Uzi KD-ROM-on kiel radikon. Uzi GDB-sencimigilon anstataŭ DDB. Uzi serian konzolon. VARNOMO LARĜOxALTO. Atendi specifan nombron da sekundoj. Atendi klavofrapon post ĉiu eliga linio. Averto: Averto: nevalida malfonkoloro ‘%s’
 Averto: nevalida fonkoloro ‘%s’
 Atenton: sintaksa eraro (mankanta oblikvo (‘/’) en ‘%s’
 Merkredo Skribi 16-bitan valoron al ADDR. Skribi 16-bitan VALOROn al PORDO. Skribi 32-bitan valoron al ADDR. Skribi 32-bitan VALOROn al PORDO. Skribi 8-bitan valoron al ADDR. Skribi 8-bitan VALOROn al PORDO. Vi specifu almenaŭ unu komandon.
 [--append|--remove] [TERMINALO1] [TERMINALO2] ... [--md5] PASVORTO [DOSIERO] [--no-mem-option] [--type=SPECO] DOSIERO [ARG ...] [-1|-2] [--exclude=TABELO1,TABELO2|--load-only=tabelo1,tabelo2] DOSIERO1 [DOSIERO2] [...] [-c DOSIERO [-p PREFIKSO]] [DOSIERO1 [DOSIERO2 ...]] [-d] APARATNOMO DOSIERO. [-e|-n] SIGNOĈENO [-f DOSIERO] [-f DOSIERO] variabla_nomo [...] [-f|-l|-u|-s|-n] [--hint SUGESTO [--hint SUGESTO] ...] NOMO [-h|-p|-r] [DOSIERO] [-l] GRUBUUID [VARNOMO] [-l|-h|-a] [DOSIERO ...] [-m (stretch|normal)] DOSIERO [ADR|comUNIT][,RAPIDO] [ARG] [ĈIRKVAR=VALORO] [ENVVAR] [NUMERO:]VARNOMO [OPCIOJ...] [OPCIOJ] [OPCIOJ] DISKO [OPCIOJ] DOSIERO_AŬ_APARATO [OPCIOJ] TIPAR_DOSIEROJ [OPCIO]... [VOJO|APARATO] [OPCIOJ] [VOJO] [ŜABLONO ...] [UZANTLISTO] [VALORO]... [[-a|-u|-v] [-g LxA] TERM [TIPO]] [[jaro-]monato-tago] [horo:minuto[:sekundo]] `cryptomount'-komando malsukcesis: %s `loopback'-komando fiaskis: %s provas legi la kernbildon ‘%s’ el Grubo provas relegi la kernbildon ‘%s’ el Grubo denove blocklist DOSIERO ne eblas trovi komandon ‘%s’ ne eblas malfermi na `%s': %s ne eblas densigi la kernbildon ne eblas malfermi OS-dosieron %s:%s ne eblas malfermi na '%s': %s ne eblas legi ‘%s’ korekte ne eblas legi na '%s': %s ne eblas alinomi la dosieron %s al %s ne eblas skribi al '%s':%s cat DOSIERO cmp DOSIERO LOKA comUNIT[,RAPIDO] komparado fiaskis je deŝovo %llu kernbildo tro grandas (0x%x > 0x%x) ne eblas malfermi na Geom cp DOSIERO LOKA crc DOSIERO nombro da aparatoj superas limon grando de ‘diskboot.img’ estu %u bajtoj ne sondi por dosiersistemoj en APARATO enkorpigo ne eblas, sed tio estas postulata por instaldo per RAID kaj LVM enkorpigo ne eblas, sed tio estas postulata por krucdiska instalo eraro: %s.
 false atendis dosiernomon montri ĉi tiun helpon grubo> hex DOSIERO Instali eĉ se detektiĝis problemoj nevalida ĉirkaŭaĵa bloko nevalida dosiernomo ‘%s’ nevalida linia formo: %s nevalida parametro %s nevalida transsalt-valoro %lld ls VOJO igi la diskilon praŝargebla ankaŭ kiel disketilon (defaŭlto por fdX-aparatoj). Eblas kadukiĝi je kelkaj BIOS-oj. neŝargita neniu komando estas specifita neniu servilo estas specifita neniu terminalo estas specifita ĉenfinilo mankas en la kernbildo ne-sektor-aliniigitaj datumoj troviĝis en la kern-dosiero ne estas dosierujo ne estas regula dosiero atendis unu argumenton memormanko elig-dosiero estu specifita neatendita fino de dosiero neatendita fino de dosiero %s montri tiun mesaĝon kaj eliri eldoni ampleksajn mesaĝojn. legeraro je deŝovo %llu: %s agordi [NOMO=VALORO ...] dumtempe la unua sektoro de la kern-dosiero ne estas sektor-alliniigita la sektoroj de la kern-dosiero estas tro fragmentitaj la grando de ‘%s’ ne estas %u la grando de ‘%s’ tro grandas la grando de ‘%s’ tro malgrandas atendis du argumentojn ne eblas rekoni dosiersistemon en ‘%s’; sekurkontrolo ne lanĉeblas neatendita fino de dosiero nekonata argumento '%s' Nekonata dosiersistemo nesubtenata pareco de seria pordo nesubtenata rapideco de seria pordo nesubtenata nombro da seriaj stop-bitoj nesubtenata vortlongo de seria pordo Uzi DOSIERO-n kiel la praŝargilan bildon [defaŭlte=%s] Uzi DOSIERO-n kiel kernbildon [defaŭlte=%s] uzi DOSIERO-n kiel aparatdosierujon [defaŭlte=%s] Uzi GRUB-dosierojn en la dosierujo DOSIERUJO [defaŭlte=%s] unue vi ŝargu la kernon                                                                                                                                                                                                                                                                                                                                                                                                                       boot/grub/locale/es.mo                                                                              0000600 0001750 0001750 00000327415 13417732100 0013645 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                       x     #    G      _  #   _      _     _     _     `  $   `     =`  6   Q`     `     `  	   `     `     `     `     `     `     a  .    a  .   Oa  %   ~a     a     a    a    b    c     d  7   d  F   e  v   be  +   e     f      f     7f  !   If     kf  ,   f     f     f  $   f     g  *   #g     Ng     ag     ig     yg     g  
   g  	   g     g  ,   g  ,   h  ,   <h  '   ih  -   h      h  (   h  (   	i  )   2i     \i     |i     i     i     i  "   i  4   i     j     j  7   (j     `j  1   ij     j     j  %   j  '   j  %   k  '   1k     Yk     ^k     `k     ~k     k     k     k     k     k     k     k     l     l     (l  3   5l     il  $   ol     l     l     l     l     l     l     m  -   )m     Wm  !   tm     m     m     m  #   m      n  `   n  Z   n     Do     _o     {o     }o     o     o     o     o     o     o     o     p     %p     ?p     [p     hp     p     p     p     p     p     p     p  %   p     	q     (q     <q     Sq     nq     q     q     q     q  *   q  3   q     .r  "   Ir  8   lr     r     r  	   r  #   r     s      s     3s     Ss     ss     s  )   s     s     s      t  P   t     ot     t  H   t  &   t     	u     !u  !   (u  ,   Ju     wu     u     u  	   u  !   u  *   u     u     v     (v     :v     Tv  $   lv     v     v     v     v     v     w  
   %w  
   0w     ;w  1   Nw     w     w     w     w  3   w  >   x  $   Cx     hx     x     x     x     x     x  +   y     /y     Ky  #   iy     y     y  $   y     y     z  '   z  9   Fz     z     z  z   z     2{     9{  8   M{     {  
   {     {     {     {     {     |  +   |     |     |     |  "   }     5}     F}  (   W}     }     }     }     }     }     }  "   }  0   ~     A~     F~     U~  7   d~     ~     ~     ~     ~     ~     ~  0   ~          /     A     W  2   n  %               *     6     +   M     y            !   {  d     e     d   h  i   ͂  o   7  H                       *     =     S     m       #             ߄       1   	  )   ;     e     l     n       /             х       5        ;     Z  K   v          ކ                           '   $  P   L            	   ȇ     ҇     Շ       '     +   0     \     m  )             ʈ                    0     F  $   [            "        Љ     ҉     މ  (               "     +   A  -   m               Ê     Ԋ       O        F     \     t            %        Ӌ  )     !     "   >     a     }  +             ׌       !             7     P     \      s                                4         U     t                    Ԏ                #  !   D     f  4     M     2        6     P  *   n  8        Ґ     ߐ               %  3   =  $   q  +             ב                    "      >     _     }            D               7      ;   8     t       !        Փ       s                       Ŕ     ؔ                    0     4     :                    Ö     ʖ     ֖            '   %  
   M     X     g     }                      H   ͗          )     E     U  %   d            #                       $      ;     \      {       "     (   ̙       %        7  2   Q            #     *   ʚ               
  #        3     8  	   J  	   T  "   ^  ;     #     <             ,     J  .   X  	          `          !     )   ;     e     i     o     w  q             
     !     0     G     Z     p            "   Þ                    0     G     ]     q       #        ß       g        d            -         N  !   b       "     '     Q        2     N     h     |                    ڢ               0     L     d      r                     ܣ                 -   <     j       "     b     )        H     ^     v  ,             ץ  	   ܥ  "     %   	     /     4     I     P  &   Y  )          ^          $   6  %   [       ^   4  _     }        q  )   (  '   R  >   z  D     !     '      -   H  #   v       )          )     )   +  ,   U                    ֬       E     $   H  A   m  )        ٭               -      L     m  q          :        L     j     y               ͯ            0        E     c     x  )     &        ߰               *  )   F     p  %     %     ,   ̱  '     :   !     \  -   {       .               '     $   7  "   \                 *               )     o               6   ]            0         ε  !     "     #   4     X     j            !        ߶  
           <     %   W  >   }          ŷ     ɷ     Ϸ            d     *     0     6   ܸ               )     >     R     X  0   r       !        ع       $        ,     E     \     z       $     "   ͺ  $             *      >     _     t                         һ       '        /     O  $   h  +     "        ܼ  )                  =     ]     r  '             ͽ       <         ;     \     d     w  m                   5     O     h  +     3     1          '   "  -   J     x  '     '     .     	         
     &     ?     [     w                                *     ?   J  B     p        >  /               .   $  O   S  )               	          5        P     b     z            :                   *     0     C     J     Y     b                      	                                 1     8     ?  
   M  
   X  	   c     m  !   s  )                         F   "  N   i       "               -      -   .  $   \  #     0     6                  .  (   <  1   e  )               !        	           >  %   V     |  &                     7     .   H  4   w                           %   .     T     i     ~                           ,        /     >     N     j     }       #               B        @     \     |                 &             !     /     8     V  &   p                      ;     V   *  "     &     !                  	  /   '  H   W  F     w     N   _  (               I     $   I  '   n       %                         $     '   :  *   b                 J             5     P  -   d  +          $          "     +     J   A  %                "              !     B     \     s                      %             +     I  %   f                           [        B  !   V     x                                             )     ?     Y     v                                        ,  1   L     ~                                1          0        5     J  !   `       "                                 '     <     H     W     g     x                 &                       6     T  '   i  &          L             0  !   D     f                                                #   .  #   R  $   v            &          !             (     =     B     Q  	   g  7   q       %     [     w   E  7     K     #   A  /   e                 &     U     @   i  Q                  +  +   @     l  R     L     .   )     X     o  F   t                              .      A     b     w       2     !     #        %     9     Q     b                           (     #   8     \     u            )               '     '   @  '   h       0               -     8   G            !                     .        L  !   j  B     E     B       X  $     (        ?  '   Z       /           R        >     D     X     q  &                         3   
  3   >  *   r            F    G    F  >       E     J     y   )  '          '          (        =  1   W            +          3         4  	   I     S     i       
          !     1     0     1   G  /   y  2     $     0     0   2  1   c  #     #     
     	     	     4     D   1     v     ~  P          :     #   %     I  (   L  +   u  (     +               &        (     @  
   W     b     ~  3                              2   !     T  /   Z                                  ' 2   B !   u ;        "        *   0    [ j    \   d "    !                   )    0 ;   9 &   u "        )    $       ,    K $   ]              $                4    1   K    } !    %                   2 )   P N   z @    5   
 6   @ L   w     '    	    	 .   
	 &   9	    `	 '   v	    	    	    	 7   	 (   
 '   E
 1   m
 f   
         Q   8 -            &    R       ^ 
   t         F    6    #   (    L    l         2            *    .   > *   m )        !    +    ?        `    r -        :    Q    9   ^     !        )    (       H '   e         $        /    (   6 *   _ *    1    N       6 #   V    z     -   $ [   R 5    
             &       D ,    @   5    v         &        !   
 :   ,    g                     *    0       2    :    S :   l 
                         0       9    Q    ]    p @    /    '       ! 4   : F   o 7    *        <  8 "   u        &        C     m   t                 /     G     g  "     *     3     #   	!     -!    N! <   d! ?   !    !    !    !    " 1   "    M"     _" "   " P   " %   " +   # L   F# 4   # ,   # )   #    $    #$    )$    .$ 0   :$ X   k$ %   $ 
   $ 	   $    $ &   %    4% <   O% 7   %    %    % 6   %    /& '   L& "   t&    &    &    &    & )   	'    3'    K' 3   i'    '    '    ' 2   '    '    ' *   ' 5   !( 5   W(    (    (    (    (    (    )    )     )     )    ) $   * @   0* #   q* =   * 0   * /   +    4+    T+ :   r+ #   +    +    + +   , (   7,    `,    ,    , *   , '   ,    , &   - #   9-    ]-    w- G   - *   -    . #   . !   =. !   _.    .    . $   . "   . #   	/ "   -/ T   P/ g   / =   0 %   K0 !   q0 1   0 R   0    1 (   &1    O1    l1    1 J   1 ,   1 4   2 -   R2    2    2    2    2 %   2 !   2    3    63    J3    L3 X   h3    3    3 F   3 I   4 6   c4 %   4 /   4    4 .   5    >5    5 !   5    6    6    66 &   T6 ,   {6    6    6    6    6   7    8    8    8 
   8 )   
9     49    U9 =   s9    9    9    9    9     9    :    :    0: d   O:    : <   :    ; !   #; 8   E;    ~; &   ; 8   ;    ; 2   <    K< $   `< 1   < !   < 3   < 0   = )   >= -   h=    = *   = -   = ;   > 	   I>    S> %   q> +   >    >    >    > '   >    ?    ?    %? 	   .? 7   8? b   p? 7   ? c   @    o@ #   @    @ 4   @ 	   @    @ |   A    A #   A -   A    A    A    A    B    B    B    B    B     B    C    4C    QC -   nC (   C 2   C     C "   D    <D    ZD    uD    D    D    D &   D *   E %   1E    WE    E #   F 0   F 2   F    G 3   4G    hG 6   G 9   G n   G    aH    H    H    H    H &   H #   I &   5I #   \I %   I "   I    I    I 3   I    0J    GJ     eJ #   J    J    J     J >   J "   6K    YK _   rK ~   K :   QL %   L    L (   L 2   L '   &M    NM    WM /   dM (   M    M    M    M    M 9   M 8   #N    \N f   qN    N 7   N ;   0O    lO i   UP j   P    *Q    Q 5   R =   S ^   BS g   S %   	T +   /T 8   [T 6   T &   T 5   T    (U 1   HU 2   zU @   U -   U "   V $   ?V $   dV    V k   V 8   W Z   KW 8   W )   W &   	X (   0X .   YX 2   X    X    X +   `Y K   Y 6   Y    Z '   !Z "   IZ    lZ "   Z +   Z    Z 8   Z 2   /[    b[ %   [ 3   [ 9   [ #   \    9\    X\ 0   n\ 6   \    \ #   \ #   ] *   /] %   Z] @   ] $   ] 8   ]    ^ Q   3^ !   ^    ^ 4   ^ 5   ^ -   -_    [_ 3   k_    _ ;   _    _    _ 2   `    4` "   `    ` H   a    ,b    .b >   7b *   vb 2   b +   b *    c    +c (   Ec *   nc .   c 2   c    c    d    'd :   Ed A   d @   d    e    
e    e +   e    @e    _e x   ~e ;   e ,   3f >   `f    f    f    f    f    f (   f 1   g )   Hg #   rg &   g    g )   g "   g    h %   8h    ^h $   xh <   h $   h &   h    &i    Di ,   `i    i    i    i    i    i    i    j #   6j .   Zj ,   j    j ,   j 1   k &   4k    [k +   `k    k 1   k %   k    k    l .   'l 2   Vl 0   l    l ;   l &   m    3m    Fm    ]m    ym @   m !   @n )   bn &   n %   n 6   n I   o C   Zo    o +   o H   o    #p (   *p ,   Sp 5   p 
   p )   p &   p *   q &   =q *   dq &   q )   q %   q    r    !r    =r (   Br C   kr Q   r    s    s /   $t    Tt    lt 8   t U   t 3   u #   Mu    qu    u %   u E   u    u    v    +v    Dv    bv I   v    v "   v    w    w 	   +w    5w    Qw -   gw    w    w 	   w    w 
   w    w     w    x    2x    Jx 
   jx    ux    |x    x 
   x    x    x ,   x (   x    #y    :y &   Uy $   |y j   y >   z    Kz 1   [z 
   z    z 1   z 1   z .   { #   D{ 1   h{ :   {    {    {    { 0   | 9   <| 2   v|    | %   | ,   |    } 2   ,} %   _} 0   }    } 5   } ,   	~ 0   6~ +   g~ I   ~ C   ~ N   ! .   p     %        '    ,   &    S )   q !    "    /           & 3   2 9   f         0   Ɂ            ! 5   ?    u     `    (    2   =    p %        #   ˃ 8    '   (    P    a    m     '       τ ,           + A   F m    /    ,   & 6   S !        2    F    N   , a   {    ݇ j    ;    $   &    K _   W .    %        )   *    T    Z    r     8    6    >    *   Y         Y    '    )   >    h ?    4   Ȍ     6       = -   I :   w \    &       6 =   T ?       Ҏ *        #   7    [     w     '    $   ُ 3    !   2     T    u 7       ͐            !    )    ?    Ƒ )   ߑ "   	    ,    H ,   O    | %    &    "    (    '   , $   T 6   y     -   Г $    !   #    E +   ^         ,   Ĕ F       8    L    j                  A    *   Ֆ P        Q    j (    %    -   ח            <    [    u             '   ؘ +        , %   F )   l      0            &   " .   I    x )    3        \    "   X    { 5    )   ɛ '    !       = #   T (   x (    +   ʜ          >   2 >   q ;        $   	 F   .    u 0    .            :    &   N    u D   ~ "   ß (    n       ~ B    _   K (    @   ԡ     (   3 *   \ (    m    F    x   e    ޣ          A   = ,    k    v    D       ԥ     f    "   ]             #   ֦     .    *   I     t '    ?    &    $   $    I    _    y         $   Ǩ     %   	 '   / 8   W 1       ©    ک )       " >   : '   y (    =   ʪ ;    ?   D $    F    %    %    J   < I    "   Ѭ     $    *   4 '   _     6       ӭ !    R    O   h T           #       `  %  q      1    W    V                5  :  v  )           n  M  p               :   %  \                    6        `   d           K      S                  {            O            r     ?      t  '  8  9  k              s            ^  o                  S  a                                  L    k  `      
              3      <          U  3    R   e  .       "      G      ,   {       ^                            <  k  B  =   Q     .   X  !  C     K                    m                      
    j           e  2                  d   
     y    0                            V  x                  #  P       )         k  A           A                 {             _            N  L                       K    F     $                       i     O                        P  (    9   	       #  '  c   0  !               I    !                                         %                       i    q        o                  h             l  z                          i    X  f         
                                       <        s        !         @        v     |                        C        ,          *    T                   w      	   -      f   R  ;                                          y           G      #   g                     1             u      D         '   /  @   q    R                O      0  D            T             A      [  ]                    L   O                  ,    }              t     )          g  .    ,          4   ]  l        q           l  >                   w  D                }     &         x          M  \              \                                     4  ?            N  o      ~      d  *      r          e      /                   X    C                                         l      v              ^                            p    r     L         %             7  3      G  f  7    .                     H  s    Z                  r                            (                   W    (          h  8  w          S              ]           n          (  u               a      d  7            c              ]                        "                j  w               7                1        t          ?   u                    Q  M                        +       Z                        h       U  /            n                      '               I           z    W                              *       =  z          {             E        4  m      j      9           Y         3          6      S    2              &              u    c  s              i    \    5       Z      b              A      Q          k           G     v  F        x                      F  o                        a      &      x  -  `  _  B  ]      1   h  s         U               J  2          -   ?  ~    T      g     L               [  &  =          <    R      2                     J               I      f      N            F            W         )                    [                  u  5           ?    _           t             P                         U              o             ;            b  N    
           $          -                   i         \  K  Y  Z                                  w       8      E  |  *            M          /      I  @     b          z                   T  |                   j     ^                   ;          I      y            J               6         n     $        $       (      H      V  b  H   "  8           D  >     %      !    "  >  1     Y     3                           .  [  $  c        :    @  m  m    H  2     l             E                 	          9    ~                     g  }    |  	      +      *              >  D        O              C  :        f              M              =                9  Y            6   p      -             /      v     #               d  0  r  y   a                <   N   J             b          Z            A       :        S                         ,    K   +                     a      h           c      6                       }  E         5   ;      C       [       @          >                                                  W      ^         )          =        g      Q       F      e   X       J                  E  0           ~       Y               '  T      B       x      Q  	  H    e                             m   p   +  X      _  G                     P          4  7    +            B      V  p    V            t      U        5                   R    _       j    ;          4             "                 &   n      `    q   8   P  B                           total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: option '%c%s' doesn't allow an argument
 %s: option '%s' is ambiguous; possibilities: %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File size: %s
 File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS Import ZFS wrapping key stored in FILE. Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List coreboot tables. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... M MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MODULE MODULES Mail xorriso support requests to <bug-xorriso@gnu.org>. Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Option -- switches to native xorriso command mode. Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] PUBKEY_ID Paletted  Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot into firmware setup menu. Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Render Apple .disk_label. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show CBMEM console content. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show the contents of a file. Show the current mappings. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Switch to native disk drivers. If no modules are specified default set (pata,ahci,usbms,ohci,uhci,ehci) is used Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 T TARGET Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This entry can be booted by any user. This requires setting GRUB_DEFAULT=saved in %s/default/grub.\n Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. Your embedding area is unusually small.  core.img won't fit in it. Your xorriso doesn't support `--grub2-boot-info'. Some features are disabled. Please use xorriso 1.2.9 or later. Your xorriso doesn't support `--grub2-boot-info'. Your core image is too big. Boot as disk is disabled. Please use xorriso 1.2.9 or later. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `cryptomount' command fails: %s `loopback' command fails: %s `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format blocklist FILE blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s cannot compress the kernel image cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot get translator command line for path `%s': %s cannot open OS file `%s': %s cannot open `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. diskboot.img size must be %u bytes do not probe for filesystems in DEVICE domain name component is too long don't update LED state done embed FILE as an early config embed FILE as public key for signature checking embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enable ARCS (big-endian mips machines, mostly SGI) boot. Disables HFS+, APM, sparc64 and boot as disk image for i386-pc enable sparc boot. Disables HFS+, APM, ARCS and boot as disk image for i386-pc enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to get canonical path of `%s' failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification install GRUB images under the directory DIR/%s instead of the %s directory install even if problems are detected invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid block size invalid color specification `%s' invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no `/' in canonical filename no command is specified no decryption key available no network card found no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found pre-load specified modules MODULES premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory of TFTP server route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the argument `%s' requires an integer the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for label use COLOR for label background use COLOR for text use DIR as the EFI System Partition root. use FILE as font (PF2). use FILE as font for label use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub 2.00+20130519
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-06-01 14:56+0200
Last-Translator: Miguel Ángel Arruga Vivas <rosen644835@gmail.com>
Language-Team: Spanish <es@li.org>
Language: es
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=(n != 1);
               memoria total: %d KiB
     No hay un modo preferido disponible
     Modo preferido: %ux%u
   comprobación de suma EDID no válida   versión EDID: %u.%u
   No se pudo inicializar el adaptador de vídeo   No hay información disponible   Información VBE:   versión: %d.%d  Revisión del software del vendedor: %d.%d
   o:   (margen izquierdo)  (altura de minúsculas)  (margen derecho)  - La partición comienza en %llu%sKiB  - Tamaño del sector %uB  - Tamaño total %llu%sKiB  - Tamaño total desconocido  [OPCIÓN...] %.*s: El parámetro ARGP_HELP_FMT debe ser positivo %.*s: El parámetro ARGP_HELP_FMT necesita un valor %.*s: Parámetro ARGP_HELP_FMT desconocido %d s faltan %d s. Parece que %s contiene un sistema de ficheros %s del que se sabe que no reserva espacio para un arranque tipo DOS.  Instalar GRUB ahí puede provocar la DESTRUCCIÓN DEL SISTEMA DE FICHEROS si algún dato importante es sobrescrito por grub-setup (--skip-fs-probe deshabilita esta comprobación, úselo bajo su responsabilidad) Parece que %s contiene un mapa de particiones %s y LDM y no se tiene constancia de que sea una combinación segura.  Instalar GRUB ahí puede provocar la DESTRUCCIÓN DEL SISTEMA DE FICHEROS si algún dato importante es sobrescrito por grub-setup (--skip-fs-probe deshabilita esta comprobación, úselo bajo su responsabilidad) Parece que %s contiene un mapa de particiones %s del que se sabe que no reserva espacio para un arranque tipo DOS.  Instalar GRUB ahí puede provocar la DESTRUCCIÓN DEL SISTEMA DE FICHEROS si algún dato importante es sobrescrito por grub-setup (--skip-fs-probe deshabilita esta comprobación, úselo bajo su responsabilidad) %s no soporta UUID %s genera una distribución de teclado para GRUB usando «ckbcomp»\n %s está obsoleto. Use «set gfxpayload=%s» antes de la orden «linux».
 %s está obsoleto. No se reconoce el modo VGA %d. Use «set gfxpayload=ANCHOxALTO[xPROFUNDO] antes de la orden «linux»
 grub-mkconfig todavía no soporta %s.\n %s, con Hurd %s %s, con Hurd %s (modo de recuperación) %s, con Linux %s %s, con Linux %s (modo de recuperación) %s, con Xen %s y Linux %s %s, con Xen %s y Linux %s (modo de recuperación) %s, con el hipervisor Xen %s, con kFreeBSD %s %s, con kFreeBSD %s (modo de recuperación) %s, con núcleo %s (vía %s) %s, con núcleo %s (vía %s, modo de recuperación) %s: EL HASH DIFIERE
 %s: BIEN
 %s: ERROR DE LECTURA
 %s: Demasiados parámetros
 %s: Debe ejecutarse como root\n %s: error: %s: información: %s: opción no válida -- «%c»
 %s: la opción «%c%s» no permite un parámetro
 %s: la opción «%s» es ambigua; posibilidades: %s: la opción «--%s» no permite un parámetro
 %s: la opción «--%s» necesita un parámetro
 %s: la opción «-W %s» no permite un parámetro
 %s: la opción «-W %s» es ambigua
 %s: la opción «-W %s» necesita un parámetro
 %s: la opción necesita un parámetro -- «%c»
 %s: la opción necesita un parámetro -- «%s»\n %s: opción «%c%s» no reconocida
 %s: opción «--%s» no reconocida
 %s: aviso: (32 bits) (64 bits) (ERROR DEL PROGRAMA) ¿¡Ninguna versión conocida!? (ERROR DEL PROGRAMA) ¿¡Deberían haberse reconocido las opciones!? (en %s) - Etiqueta «%s» - Fecha de la última modificación %7$s %3$02d/%2$02d/%1$d %4$02d:%5$02d:%6$02d --MÁS-- -h HASH [-c FICHERO [-p PREFIJO]] [FICHERO1 [FICHERO2 ..]] -l | -r | [-s] disco_grub disco_so. ,5 Interfaz protegida de 16 bits permitida
 Interfaz protegida de 16 bits no permitida
 Interfaz protegida de 32 bits permitida
 Interfaz protegida de 32 bits no permitida
 =VALOR es> Almacenamiento ACPI no volátil en RAM RAM reclamable por ACPI Falló el apagado ACPI DIRECCIÓN DIRECCIÓN VALOR [MÁSCARA] DIRECCIÓN [TAMAÑO] DIRECCIÓN1,MÁSCARA1[,DIRECCIÓN2,MÁSCARA2[,...]] DIRECCIÓN SERVIDOR_DNS APM deshabilitada
 APM desactivada
 APM habilitada
 APM activada
 ARGP_HELP_FMT: el valor %s es menor o igual que %s ASCII Acepta saltos de línea en formato DOS (CR/NL). Terminales de entrada activos: Terminales de salida activos: Adaptador «%s»:
 Añade un servidor DNS Añade una dirección de red. Añade una ruta de red. Opciones avanzadas para %s Opciones avanzadas para %s (con el hipervisor Xen) Permite la interrupción con ESC. Pregunta por un nombre de fichero para reiniciar desde él. Asume que la entrada es hex. Asume que la entrada es una clave. Asume que la entrada es raw. Intentando descifrar la clave principal... Intentando instalar GRUB en un disco con múltiples etiquetas de partición o con etiqueta de partición y sistema de ficheros.  Todavía no está soportado. Intentando instalar GRUB en un disco con múltiples etiquetas de partición.  Todavía no está soportado. Intentando instalar GRUB en un disco sin particiones o en una partición.  Es una MALA idea. Terminales de entrada disponibles: Terminales de salida disponibles: B B/s VOLCADO_BIOS [VOLCADO_INT10] BLOQUE BYTE:BIT Modo de imagen de fondo. (Entre paréntesis su traducción) Directorio base para la lista de hash. Arranca un sistema basado en BIOS. Arranca un sistema operativo. Arranca en modo no-multiusuario (single). Arranca con mensajes de depuración. Arranca con mensajes prolijos. Arrancando «%s» Arrancando con una lista de órdenes Arrancando en modo ciego Ruta de arranque: %s
 Ruta de arranque: no disponible
 Salta (con un punto de parada) a GDB CGA  COLOR ORDEN [PARÁMETROS] Poner en espera a la CPU no ralentiza al procesador
 Poner en espera a la CPU ralentiza al procesador
 CS5536 en %d:%d.%d
 No se puede activar el área ROM. Cambia los dispositivos configurados. Cambia el tipo de partición Comprueba la tecla «Alt». Comprueba la tecla «Control». Comprueba la tecla «Shift». Comprueba las características de la CPU. Comprueba el hash de los ficheros con el FICHERO con la lista de valores hash. Comprueba si la CPU soporta el modo de 64 bits (predeterminada). Comprueba el estado de los modificadores del teclado. Comprobar si el usuario está en la LISTA_DE_USUARIOS. Comprueba el fichero de configuración de GRUB buscando errores de sintaxis. Limpia la pantalla. Desactivada la marca de activa en %d. 
 Órdenes: Compara el FICHERO con el fichero local LOCAL. Compara el fichero «%s» con «%s»:
 Compara dos ficheros. Calcula el UUID de XNU del dispositivo. Calcula o comprueba el hash. Configura puerto serie. Continúa bucles Convierte formatos de ficheros de fuentes comunes a PF2 Copia el FICHERO al fichero local LOCAL. Copia el FICHERO a la salida estándar. No se ha podido encontrar el controlador de FPSWA No se pudo encontrar el volumen físico «%s». Algunos módulos pueden faltar en la imagen principal. No se pudo cargar sha256 No se pudo cargar sha512 Crea estructuras tipo BIOS por compatibilidad con sistemas operativos existentes. Crea un fichero de bloques de entorno limpio. Tipos actuales de «terminfo»: DISPOSITIVO DISPOSITIVO [PARTICION[+/-[TIPO]]] ... DISPOSITIVO debe ser un dispositivo del sistema operativo (por ejemplo /dev/sda2). NOMBRE_DE_DISPOSITIVO DIRECTORIO DIRECTORIO [OSBundleRequired] SERVIDOR_DNS Herramienta de depuración para controladores de sistemas de archivos. Declara regiones de memoria como defectuosas (badram). El descompresor es demasiado grande Define una entrada en el menú. Define un sub-menú. Borra una dirección de red. Borra una ruta de red. Borra la unidad de imagen en memoria especificada. Borra variables. Determina el controlador. Determina el UUID del sistema de ficheros. Determina la etiqueta del sistema de ficheros. Determina el tipo del sistema de ficheros. Determina el tipo de mapa de particiones. Dispositivo %s: Identificador de dispositivo: %s
 Identificador de dispositivo: no disponible Color en memoria, máscara: %d/%d/%d/%d  posición: %d/%d/%d/%d Deshabilita ACPI. Deshabilita SMP. Desactiva toda la salida durante el arranque. Desactivar/activar SMART (0/1). Descartando partición impropiamente embebida (%s,%s,%s%d) Estadísticas de la caché del disco: aciertos = %lu (%lu.%02lu%%), fallos = %lu
 El número de discos debe preceder a la lista de discos.
 Muestra la versión de FPSWA. Muestra el estado de salud SMART. Muestra una línea de texto. Muestra una lista de bloques del fichero. Muestra la salida en todas las consolas. Muestra el modo de energía. Muestra el uso de esta orden y termina. Muestra esta ayuda y finaliza. Muestra/cambia la fecha actual. No imprime el salto de línea final. No imprime mensajes. No prueba ninguna unidad de discos extraíbles. No usa la APM para detener el ordenador. No hace nada, con respuesta satisfactoria. No hace nada, sin respuesta satisfactoria. No muestra mensajes de diagnóstico del arranque. No carga las tablas de máquinas especificadas en la lista separada por comas. No reinicia, simplemente apaga. No se detiene ante el primer error. No actualizar EBDA. Puede solucionar fallos o cuelgues en algunas BIOS pero se vuelve inefectivo con sistemas operativos que no reciben RSDP de GRUB. VARIABLE_DE_ENTORNO VARIABLE_DE_ENTORNO [VARIABLE_DE_ENTORNO] ... ERROR: no se ha encontrado ninguna distribución de teclado válida. Compruebe la entrada.
 Se puede salir en cualquier momento pulsando «ESC». EXPRESIÓN EXPRESIÓN ] Tiempo transcurrido: %d.%03d s 
 Tiempo transcurrido: %d.%03d segundos
 El embebido no es posible.  GRUB podrá ser instalado con esta configuración únicamente usando listas de bloques.  No obstante, las listas de bloques son INSEGURAS y su uso está desaconsejado. Emula una secuencia de pulsaciones de teclas Activa la interpretación de secuencias escapadas por una barra. Introduzca la clave ZFS:  Entra en el KDB al arrancar. Entrar en el modo normal. Introduzca la clave para %s%s%s (%s):  Introduzca la contraseña:  Introduzca el nombre de usuario:  Error procesando los parámetros de la línea de órdenes
 Evalúa una expresión. Falló al salir Sale de GRUB. Sale de bucles Salir del modo normal. Exporta variables. Exporta la versión 1 de las tablas al SO. Exporta las versiones 2 y 3 de las tablas al SO. FICHERO FICHERO [PARÁMETRO ...] FICHERO [PARÁMETROS...] FICHERO | TEMPO [TONO1 DURACIÓN1] [TONO2 DURACIÓN2] ...  FICHERO... FICHERO1 FICHERO2 FICHERO ORDEN SISTEMA_DE_FICHEROS [VARIABLE] FICHERO|prompt FORMATO El protocolo FPSWA no pudo encontrar la interfaz Revisión de FPSWA: %x
 DE-A[,DE-A] DE[K|M|G] A[K|M|G] falló FT_Init_FreeType No se pudo arrancar la entrada predeterminada ni la de reserva.
 No se pudo crear el árbol de «device-mapper» Arrancando la entrada de reserva «%s» Tamaño del fichero: %s
 El sistema de ficheros «%s» no permite el embebido Los ficheros difieren en el desplazamiento %llu: 0x%x [%s], 0x%x [%s]
 Los ficheros difieren en tamaño: %llu [%s], %llu [%s]
 No se puede acceder al sistema de ficheros Sistema de ficheros de tipo %s Rellena el registro de arranque híbrido de la unidad GPT DISPOSITIVO. Las particiones especificadas formarán parte del registro de arranque híbrido. Se permiten hasta 3 particiones. TIPO es un tipo del registro de arranque. + significa que esa partición está activada. Sólo una partición puede estar activada. Termina de cargar el emulador EFI. Prueba primero el dispositivo INDICACIÓN si se está corriendo sobre ARC. Si INDICACIÓN termina en una coma, prueba también subparticiones Prueba primero el dispositivo INDICACIÓN si se está corriendo sobre BIOS. Si INDICACIÓN termina en una coma, prueba también subparticiones Prueba primero el dispositivo INDICACIÓN si se está corriendo sobre EFI. Si INDICACIÓN termina en una coma, prueba también subparticiones Prueba primero el dispositivo INDICACIÓN si se está corriendo sobre IEEE1275. Si INDICACIÓN termina en una coma, prueba también subparticiones Prueba primero el dispositivo INDICACIÓN si está permitido el acceso directo al hadware. Si INDICACIÓN termina en una coma, prueba también subparticiones Prueba primero el dispositivo INDICACIÓN. Si INDICACIÓN termina en una coma, prueba también subparticiones Repara problemas de vídeo. Encontrado %s en %s (%s)\n Encontrado %s en %s\n Encontrado GNU Mach: %s Encontrado módulo del Hurd: %s Encontrado núcleo NetBSD: %s\n Encontrado fondo de pantalla: %s\n Encontrada imagen de memoria inicial: %s\n Encontrado directorio de módulos del núcleo: %s\n Encontrado núcleo de FreeBSD: %s\n Encontrada imagen de linux: %s\n Encontrado tema: %s\n Error de Freetype %d cargando el símbolo 0x%x para U+0x%x%s Congela las configuraciones de seguridad ATA hasta el reinicio. Viernes G GNU GRUB  versión %s Menú de arranque de GRUB ¡GRUB todavía no sabe como parar esta máquina! Emulador de GRUB. DISPOSITIVOGRUB=DISPOSITIVOPLAN9 Incongruencia en ARGP_HELP_FMT: %s Genera una distribución de teclado de GRUB a partir de una de consola de Linux. Genera un hash de contraseña PBKDF2. Genera un fichero de configuración de grub Crea una imagen (que contiene todos los módulos) en el formato seleccionado Obtiene una comprobación de suma crc32 del FICHERO. Obtiene información de la caché del disco. Obtiene/cambia parámetros del disco ATA. GiB GiB/s HASH INDICACIÓN Detiene el sistema, si es posible usando la APM. Detiene el ordenador.  Esta orden no funciona en todas las implementaciones de firmware. Maneja N bytes del fichero de salida. Hola mundo Hercules  IDENTIFICADOR IMAGEN1 [IMAGEN2 ...] PUNTO_DE_MONTADO RUTA_DE_LA_IMAGEN ÓRDENES Importa una clave de cobertura ZFS almacenada en el FICHERO. Dispositivo virtual incorrecto: ningún tipo disponible Inserta un módulo. Instala GRUB en su dispositivo. Instalación terminada. No se notificó ningún error. Referencia pasada no válida Nombre de clase de carácter no válido Carácter de ordenación inválido Orden %s no válida.
 Contenido de \{\} no válido Dispositivo «%s» no válido.
 Número de discos no válido.
 Expresión regular predecesora no válida Fin de rango no válido Expresión regular no válida Invoca la configuración de encaminado del usuario. K NÚCLEO PARÁMETROS TECLA Tecla para arrancar rápidamente con esta entrada. KiB KiB/s Dispositivo hoja virtual (fichero o disco) El parámetro de GRUB1 «ask» ya no está soportado. Leyenda: máscara/posición=rojo/verde/azul/reservado Longitud del hash generado Longitud del 'salt' Enumera los servidores DNS Enumerar los dispositivos PCI. Enumera todos los ficheros. Enumera los modos de vídeo disponibles. Si se proporciona una resolución muestra únicamente los modos que se adecuen a ella. Enumera las tablas de coreboot. Enumera dispositivos y ficheros. Enumera dispositivos o ficheros. Lista de dispositivos. Enumera los archivos en la RUTA.     Enumerar los mapeados de memoria proporcionados por el firmware. Lista de modos de vídeo admitidos: Lista de usuarios con permiso para arrancar con esta entrada. Selecciona un terminal de entrada o los enumera. Selecciona un terminal de salida o los enumera. Enumera las variables actuales. Enumera las fuentes cargadas. Muestra las variables de un fichero de bloques de entorno. Carga una imagen de 64 bits de XNU. Carga un volcado de la BIOS. Carga el entorno de FreeBSD. Carga módulo del núcleo de FreeBSD (ELF). Carga un módulo del núcleo de FreeBSD. Carga el kernel.sys de FreeDOS. Carga Linux. Carga NTLDR o BootMGR. Carga módulo del núcleo de NetBSD (ELF). Carga un módulo del núcleo de NetBSD. Carga el núcleo de Plan9. Carga un directorio de extensión XNU. Carga un paquete de extensión XNU. Carga una extensión XNU. Carga una imagen de XNU. Carga un disco de memoria de XNU. Estará disponible en el SO como md0. Carga un volcado de «device-properties». Carga una imagen PXE. Carga una distribución de teclado. Carga un núcleo «multiboot 2». Carga un módulo «multiboot 2». Carga un núcleo «multiboot». Carga un módulo «multiboot». Carga una imagen de inicio para XNU. Carga una imagen de XNU hibernado. Carga e inicializa el emulador EFI. Salta a otro cargador de arranque. Carga otro fichero de configuración pero tomando únicamente sus entradas de menú. Carga otro fichero de configuración tomando únicamente sus entradas de menú sin cambiar de contexto. Carga otro fichero de configuración sin cambiar de contexto. Carga otro fichero de configuración. Carga otro "payload" de coreboot. Carga la imagen de fondo para el terminal activo. Carga las tablas ACPI de la máquina y las tablas especificadas en los argumentos. Carga initrd. Carga una imagen de memoria de kOpenBSD. Carga el núcleo de FreeBSD. Carga el núcleo de NetBSD. Carga el núcleo de OpenBSD. Carga únicamente las tablas especificadas en la lista separada por comas. Carga el mismo fichero de múltiples formas. Carga variables de un fichero de bloques de entorno. No se pudo cargar la clave de cifrado de zfs. Fuentes cargadas: Cargando GNU Mach... Cargando Linux %s... Cargando Xen %s... Cargando imagen de memoria inicial... Cargando núcleo de FreeBSD %s... Cargando núcleo de Illumos... Cargando el Hurd... M falló la verificación MAC ENTRADA_DEL_MENÚ es un número, un título de un elemento del menú o un identificador. MÓDULO MÓDULOS Envíe las peticiones de soporte para xorriso a <bug-xorriso@gnu.org>. Crea una imagen arrancable de GRUB desde CD-ROM, disco duro y extraíble. Genera un fichero de distribución de teclado de GRUB. Genera una imagen arrancable de GRUB. Crea una unidad virtual a partir de un fichero. Cambia una partición a activa Gestiona los mapas de dispositivos de la BIOS. Los argumentos obligatorios u opcionales para las opciones largas son también obligatorios u opcionales para las opciones cortas correspondientes. Manipula dispositivos PCI. Mide el tiempo usado por la ORDEN Memoria agotada Tipo de memoria: DDR2. Tipo de memoria: Desconocido. Identificador de la entrada del menú. No se ha especificado una entrada del menú. Tipo de entrada de menú. MiB MiB/s Se soporta una edición de línea mínima al estilo de BASH. «TAB» enumera las posibles órdenes a completar para la primera palabra. En cualquier otro lado «TAB» muestra una lista de posibles dispositivos o ficheros a completar. %s Se soporta una edición de pantalla mínima al estilo de Emacs. «TAB» enumera las posibles palabras a completar. Pulse «Ctrl-x» o «F10» para arrancar, «Ctrl-c» o «F2» para una línea de órdenes o «ESC» para descartar las ediciones y volver al menú de GRUB. Faltan parámetros
 Falta un archivo de entrada
 Lunes Monocromo  ¿Más de un dispositivo de instalación? ¿Más de una entrada del menú? Monta un dispositivo cifrado. Monta todos los volúmenes con la etiqueta «boot» activada. Monta todos. Monta por UUID. Monta un dispositivo cifrado. NOMBRE NOMBRE [VARIABLE] [INDICACIONES] NÚMERO NÚMERO_DE_SEGUNDOS Nombre	Núm Ref.	Dependencias
 Los controladores de disco nativos están en uso. Rechazando usar la interfaz de disco del firmware. Protocolos de red: El nuevo registro de arranque (MBR) se escribirá en «%s»
 No se encontró ningún CS5536 No se ha encontrado ningún FPSWA No hay estadísticas disponibles del tiempo de arranque
 Ninguna orden especificada.
 No se ha especificado un dispositivo.
 No hay estadísticas disponibles de la caché del disco
 No se han remapeado unidades No se han detectado sistemas de ficheros conocidos Ninguna coincidencia No se ha especificado ninguna ruta.
 No se ha especificado una ruta o un dispositivo.
 Ninguna expresión regular previa Ningún árbol de dispositivos virtuales disponible Non-chain 4 (modo no encadenado de 256 colores)  Parámetros insuficientes para la orden.
 Conecte ahora el depurador remoto, por favor. Número de iteraciones PBKDF2 Disco del SO ------> Dispositivo GRUB/BIOS error de apertura en el fichero del SO %s: %s La opción -- cambia al modo de órdenes nativo de xorriso. Opciones: Búsqueda fuera de rango: %d
 Sustitución fuera de rango (%d, %d)
 Fuerza el mapeado de dispositivos de Plan9. P PARTICIÓN ÓRDENES RUTA El hash PBKDF2 de su contraseña es %s
 PUERTO PUERTO VALOR [MÁSCARA] ID_CLAVE Indexado  Procesa la configuración de GRUB1 en un nuevo contexto Procesa la configuración de GRUB1 en un nuevo contexto tomando únicamente las entradas del menú Procesa la configuración de GRUB1 en el mismo contexto Procesa la configuración de GRUB 1 en el mismo contexto tomando únicamente las entradas del menú Número de pieza: %s.
 La partición %d ahora es activa. 
 Partición %s: El tipo de particiones «%s» no permite el embebido Ruta: %s
 Ruta: no disponible Realiza las ÓRDENES en la partición.
Use «parttool PARTICIÓN help»' para obtener una lista de las órdenes disponibles. Realiza una busqueda DNS Realiza una autoconfiguración IPV6 Realizar ambos mapeados, directos e inversos. PiB PiB/s Planar Toca una melodía. Por favor, no use el antiguo título «%s» en GRUB_DEFAULT, use «%s» (para versiones previas a la 2.00) o «%s» (para la 2.00 y posteriores) GUID del "pool": %016llx
 GUID del "pool": no disponible Nombre del "pool": %s
 Nombre del "pool": no disponible Estado del "pool": activo Estado del "pool": destruido Estado del "pool": exportado Estado del "pool": dispositivo ARC de nivel 2 Estado del "pool": potencialmente activo Estado del "pool": reservado para arranque rápido Estado del "pool": no disponible Estado del "pool": no inicializado Los parámetros posibles son: Las órdenes posibles son: Los dispositivos posibles son: Los ficheros posibles son: Las particiones posibles son: Objetos posibles: Fin prematuro de la expresión regular Presione cualquier tecla para continuar... Pulse cualquier tecla para lanzar xnu Pulse «Intro» para arrancar el SO seleccionado, «e» para editar los órdenes antes de arrancar o «c» para una línea de órdenes. Pulse «Intro» para arrancar el SO seleccionado, «e» para editar las órdenes antes de arrancar o «c» para una línea de órdenes. «ESC» para volver al menú anterior. Imprime información de la memoria. Imprime información ZFS acerca del DISPOSITIVO. Imprime ZFS-BOOTFSOBJ o lo almacena en la VARIABLE Imprime una lista de bloques. Imprime y ejecuta el bloque pasado como parámetro. Imprime pila de llamadas Imprime la identidad y la configuración de la unidad. Imprime los tamaños en un formato legible por un humano. Comprueba la información del dispositivo para una ruta dada (o dispositivo, si se proporciona la opción -d). RAM con las tablas de coreboot RAM con código del firmware Zócalo de RAM número %d
 EXPR_REGULAR CADENA La imagen ROM está presente. Lee un valor de 16 bits de DIRECCIÓN. Lee un valor de 16 bits del PUERTO. Lee un valor de 32 bits de DIRECCIÓN. Lee un valor de 32 bits del PUERTO. Lee un valor de 8 bits de DIRECCIÓN. Lee un valor de 8 bits del PUERTO. Lee únicamente LONGITUD bytes. Falló el reinicio Reinicia en el menú de configuración del firmware Reinicia el ordenador. Reintroduzca la contraseña:  Registro %x de %x:%02x.%x es %x
 Expresión regular demasiado grande Elimina un servidor DNS Elimina un módulo. Elimina una variable de entorno. Elimina cualquier región de memoria en el rango especificado. Pinta la «.disk_label.» de Apple Notifique errores a %s.
 Notifique los errores a <bug-grub@gnu.org>.
Notifique los errores de traducción a <es@li.org>. Se ha solicitado un terminal serie pero GRUB_SERIAL_COMMAND no está especificado. Se usarán los parámetros predeterminados. Reinicia todos los mapeados a los valores predeterminados. Obtiene información del dispositivo. Vuelve de una función. Vuelve a la línea de órdenes IEEE1275. Ejecute «gdb %s %d», y cambie ARGS.HOLD a cero.
 Ejecute «go» para continuar con GRUB. SEGUNDOS NOMBRE_CORTO NOMBRE_CORTO TARJETA DIRECCIÓN [DIRECCIÓN_HW] NOMBRE_CORTO RED [INTERFAZ| gw PASARELA] TAMAÑO FUENTE|-u UUID|-a|-b CADENA Sábado Guarda el valor leído en la variable NOMBRE_DE_VARIABLE. Guarda las variables a un fichero de bloques de entorno. Dice «Hola mundo». Busca dispositivos por UUID. Si se especifica VARIABLE, se cambiará al primer dispositivo encontrado. Busca dispositivos por fichero. Busca dispositivos por el UUID del sistema de ficheros. Busca dispositivos por la etiqueta del sistema de ficheros. Busca dispositivos por fichero, la etiqueta del sistema de ficheros o el UUID. En caso de especificar --set, el primer dispositivo encontrado se almacena en una variable. Si no se especifica un nombre de variable se usará «root». Busca dispositivos por fichero. Si se especifica VARIABLE, se cambiará al primer dispositivo encontrado. Busca dispositivos por etiqueta. Si se especifica VARIABLE, se cambiará al primer dispositivo encontrado. El sector %llu está actualmente en uso por el controlador raid «%s»; evitándolo.  Por favor, pida al fabricante que no almacene datos en el espacio posterior al sector de arranque. El sector %llu está actualmente en uso por el programa «%s»; evitándolo.  Este programa puede causar problemas de arranque o de otro tipo en el futuro.  Por favor, pida a los autores que no almacenen datos en la pista de arranque. Selecciona un dispositivo por su posición en el bus. Selecciona un dispositivo por ID de fabricante y dispositivo. Cambia la Gestión Avanzada de Energía (APM en inglés)
(1=baja, ..., 254=alta, 255=apagada). Cambia la Gestión Automática de Sonido (AAM en ingés)
(0=apagado, 128=silencioso, ..., 254=rápido). Establece OEMID en RSDP, XSDT y RSDT. Establece OEMTABLE ID en RDSP, XSDT y RSDT. Establece la revisión de OEMTABLE en RDSP, XSDT y RSDT. Cambia la etiqueta «hidden» en el tipo de partición Cambia una variable al valor devuelto. Cambia una variable al primer dispositivo encontrado. Cambia una variable de entorno. Cambia el color de fondo para el terminal activo. Establece el campo 'creador' en RDSP, XSDT y RSDT. Establece la revisión del campo 'creador' en RDSP, XSDT y RSDT. Cambia la variable de entorno de depuración. Cambia la unidad a estado dormido. Cambia la unidad a estado de espera. Cambia los parámetros posicionales. Cambia el dispositivo raíz. Cambia el plazo de finalización del estado de espera
(0=apagado, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Establece el tipo del TERMINAL de «terminfo» en TIPO.
 Cambia la entrada predeterminada del menú de GRUB, únicamente para el próximo arranque. Establece la entrada del menú predeterminada para GRUB. Establece la dirección del puerto serie. Establece la paridad del puerto serie. Establece la velocidad del puerto serie. Establece los bits de parada del puerto serie. Establece la longitud de palabra del puerto serie. Establece la unidad serie. Configura las imágenes para arrancar desde DISPOSITIVO.

Normalmente no debería ejecutar este programa directamente.  Use grub-install. Cambia la contraseña del usuario (PBKDF2). Cambia la contraseña del usuario (texto plano). No recomendado e inseguro. Cambia la variable a partir de la entrada del usuario. Cambia variables. Cambiando el tipo de partición a 0x%x
 Rota los parámetros posicionales. Muestra la información ACPI. Muestra la información de la APM. Muestra los contenidos de la consola CBMEM. Muestra un mensaje de ayuda. Muestra una larga lista con información más detallada. Muestra los contenidos del FICHERO en hexadecimal. Muestra los módulos cargados. Muestra los contenidos de la memoria. Muestra el contenido crudo del sector ATA IDENTIFY. Muestra el contenido crudo de un fichero o de la memoria. Muestra el contenido de un fichero. Muestra los mapeados actuales. Muestra este mensaje. Muestra únicamente las tablas de la versión 1. Muestra únicamente las tablas de las versiones 2 y 3. Falló al apagar Simula la orden «initrd» de GRUB1 Simula la orden «kernel» de GRUB1 Simula la orden «modulenounzip» de GRUB1 Simula la orden «password» de GRUB1 Simula la orden «pasword» de GRUB1 en modo de entrada de menú Salta N bytes del archivo de salida. Descarta bytes de desplazamiento del inicio del fichero. Abierto zócalo %d
 Se han encontrado algunas partes del Hurd, pero no las suficientes para arrancar. Especifique el nombre de fichero. Especifica el hash a usar. Especifique uno o más ficheros de fuentes a cargar. Especifica el tamaño para cada operación de lectura Especifica el número de ficheros de entrada. Velocidad: %s 
 Inicia el soporte de GDB en el puerto proporcionado Para el soporte de GFB Almacena la componente correspondiente NÚMERO en VARIABLE. Éxito Domingo Silencia la salida normal (los avisos permanecen). Utiliza los controladores de disco nativos. Si no se especifíca ningún módulo se utilizará el conjunto por defecto (pata, ahci, usbms, ohci, ehci) Error de sintaxis en la línea %u
 Se han detectado errores de sintaxis en el fichero de
configuración de GRUB generado.
Asegurese de que no hay errores en /etc/default/grub
en los ficheros /etc/grub.d/* o, por favor, abra una
notificación de errores con el fichero %s adjunto. El espacio del sistema de gestión de control del bus I/O está en 0x%x
 T OBJETIVO No se ha especificado el formato objetivo (use la opción -O). El terminal ha especificado su geometría. El terminal es únicamente ASCII [predeterminado]. El terminal es UTF-8 lógicamente ordenado. El terminal es UTF-8 visualmente ordenado. Comprueba el soporte USB. Comprueba el bit de la CMOS en BYTE:BIT. Prueba la velocidad de lectura de fichero. Comprueba si la EXPR_REGULAR acepta la CADENA. Prueba el subsistema de vídeo con modo ANCHOxALTO Prueba el subsistema de vídeo. Solo texto  Los ficheros son idénticos.
 La entrada marcada se ejecutará automáticamente en %d s. Esta entrada puede ser usada por cualquier usuario para arrancar. Esto requere establecer GRUB_DEFAULT=saved en %s/default/grub.\n Jueves TiB TiB/s Herramienta para editar bloques de entorno. Tamaño total de flash: %d B.
 Barra invertida extra al final Transforma el UUID de 64 bits a un formato adecuado para XNU. Será en minúsculas si se proporciona -l como hace blkid. Transforma un nombre de fichero del sistema en uno de GRUB. Traduce la cadena con las opciones actuales. Pruebe «%s --help» o «%s --usage» para más información.
 Martes USUARIO CONTRASEÑA USUARIO CONTRASEÑA_PBKDF2 USUARIO[,USUARIO] UTF-8 No se pudo crear una tubería (pipe): %s Imposible determinar su plataforma. Use --target. No se pudo bifurcar (fork) el proceso: %s No se pudo abrir el flujo de %s: %s Imposible obtener el estado del "pool" Descomprime datos. Descomprime fichero antes de comprobarlo. Tipo de dirección %d desconocido
 Orden «%s» desconocida.
 Formato de compresión %s desconocido Codificación desconocida Parámetro extra «%s» desconocido. Se desconoce la característica gsub 0x%x de la fuente (%s)
 Código de tecla 0x%02x desconocido
 Identificador de tecla %s desconocido
 Error desconocido del sistema Modo de vídeo desconocido  Tipo de dispositivo virtual desconocido: %s
 Descarga el emulador EFI. ( o \( desemparejado ) o \) desemparejado [ o [^ desemparejado \{ desemparejado Opción «%s» no reconocida\n Estado del "pool" no reconocido Tipo de dirección %d no soportado
 Especificación de cobertura no soportada: %d
 Tipo de dirección hardware %d no soportado
 Formato de imagen no soportado Etiqueta de sustitución no soportada: 0x%x
 Especificación de sustitución no soportada: %d
 Tipo de sustitución no soportado: %d
 Uso: Uso: %s -o SALIDA ARGUMENTOS_DE_CKBMAP...\n Uso: %s DISPOSITIVO
 Uso: %s [FICHERO_DE_ENTRADA [FICHERO_DE_SALIDA]]
 Uso: %s [OPCIÓN] ENTRADA_DEL_MENÚ\n Uso: %s [OPCIÓN]\n Usa el CD-ROM como raíz. Usar el depurador remoto de GDB en vez de DDB. Usa CADENA como el cuerpo de la entrada del menú. Usa el dispositivo raíz compilado internamente. Usa la consola serie. Use las teclas %C y %C para seleccionar la entrada marcada. VARIABLE INTERFAZ NÚMERO DESCRIPCIÓN NOMBRE_DE_VARIABLE Cuenta atrás prolija. Verifica la firma extraida. Versión %u.%u
32-bit CS = 0x%x, longitud = 0x%x, desplazamiento = 0x%x
16-bit CS = 0x%x, longitud = 0x%x
DS = 0x%x, longitud = 0x%x
 El dispositivo virtual está degradado (falta algún componente) El dispositivo virtual ha fallado El dispositivo virtual está desconectado El dispositivo virtual está conectado El dispositivo virtual se ha retirado AVISO: no habrá ninguna consola disponible para el SO AVISO: no se ha realizado una instalación específica para la plataforma AVISO: parámetros de características de fuente no soportados: %x
 ANCHURAxALTURA. Espera el número de segundos especificado. Espera una pulsación de tecla después de la impresión de cada línea. Aviso: Aviso: color de fondo «%s» no válido
 Aviso: color de principal «%s» no válido
 Aviso: error de sintaxis (falta una barra) en «%s»
 Miércoles Windows NT/2000/XP (cargador de arranque) Windows Vista/7 (cargador de arranque) Escribe el VALOR de 16 bits en DIRECCIÓN. Escribe el VALOR de 16 bits al PUERTO. Escribe el VALOR de 32 bits en DIRECCIÓN. Escribe el VALOR de 32 bits al PUERTO. Escribe el VALOR de 8 bits en DIRECCIÓN. Escribe el VALOR de 8 bits al PUERTO. Bytes SPD escritos: %d B.
 Hipervisor Xen, versión %s YUV  Se debe especificar al menos una orden.
 Tendrá que fijar «SystemPartition» and «OSLoader» manualmente. Su área de embebido es excepcionalmente pequeña.  core.img no entrará en ella. Su xorriso no admite «--grub2-boot-info». Algunas características están deshabilitadas. Por favor, use xorriso 1.2.9 o una versión posterior. Su xorriso no admite «--grub2-boot-info». El arranque como disco está deshabilitado. Por favor, use xorriso 1.2.9 o una versión posterior.< [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FICHERO [--md5] CONTRASEÑA [FICHERO] [--no-mem-option] [--type=TIPO] FICHERO [PARÁMETRO ...] [-1|-2] [--exclude=TABLA1,TABLA2|--load-only=TABLA1,TABLA2] FICHERO1 [FICHERO2] [...] [-c FICHERO [-p PREFIJO]] [FICHERO1 [FICHERO2 ...]] [-d] NOMBRE_DE_DISPOSITIVO FICHERO. [-e|-n] CADENA [-f FICHERO] [-f FICHERO] nombre_de_variable [...] [-f|-l|-u|-s|-n] [--hint INDICACIÓN [--hint INDICACIÓN] ...] NOMBRE [-h|-p|-r] [FICHERO] [-l] UUID_DE_GRUB [VARIABLE] [-l|-h|-a] [FICHERO ...] [-m (stretch|normal)] FICHERO [-s POSICIÓN] [-d DISPOSITIVO] [-s POSICIÓN] [-d DISPOSITIVO] [-v VARIABLE] REGISTRO[=VALOR[:MÁSCARA]] [-s TAMAÑO] FICHERO [DIRECCION|comNÚMERO][,VELOCIDAD] [PARÁMETRO] [TARJETA [DIRECCIÓN_HW]] [TARJETA] [VARIABLE_DE_ENTORNO=VALOR] [VARIABLE_DE_ENTORNO] [PULSACIÓNDETECLA1] [PULSACIÓNDETECLA2] ... [MODULO1 MODULO2 ...] [NÚMERO:]VARIABLE [NÚMERO] [OPCIONES...] [OPCIONES] [OPCIONES] DISCO [OPCIONES] FICHERO_O_DISPOSITIVO [OPCIONES] FICHEROS_DE_FUENTES [OPCIÓN]... [MÓDULOS] [OPCIÓN]... [RUTA|DISPOSITIVO] [OPCIONES] [RUTA] [PATRÓN ..] [LISTA_DE_USUARIOS] [VALOR]... [ANCHOxALTO[xPROFUNDO]] [ANCHOxALTO] [[-a|-u|-v] [-g ANCHOxALTO] TERMINAL [TIPO]] [[año-]mes-dia] [hora:minuto[:segundo]] [bus]:[zócalo][.func] [fabricante]:[dispositivo] la orden «cryptmount» ha fallado: %s la orden «loopback» ha fallado: %s no se encontró 'obppath' en los directorios superiores a %s, no se ha descubierto ningún nombre IEEE1275 se asignó un valor al parámetro «%s» cuando no lo requiere acceso denegado añade un segmento «NOTE» para el CHRP IEEE1275 dirección dirección no encontrada intento de leer o escribir fuera del disco «%s» intento de leer o escribir fuera de la partición intento de leer más allá del fin del fichero intento de buscar fuera del fichero intentado leer la imagen principal «%s» de GRUB intentado leer de nuevo la imagen principal «%s» de GRUB RAM disponible formatos disponibles: firma incorrecta dirección_base = 0x%llx, longitud = 0x%llx, %s
 dirección_base = 0x%llx, longitud = 0x%llx, tipo = 0x%x
 no está soportado el formato de la imágen «%s» blocklist FICHERO las listas de bloques no son válidas el tamaño de bloque no es divisible por 512 no se puede salir de 0 bucles no se pudo determinar el sistema de ficheros en %s no se puede encontrar la orden «%s» no se puede montar el volumen cifrado «%s»: %s no se puede abrir «%s»: %s no se puede abrir el fichero %s, índice %d: error %d no se pudieron obtener las listas de bloques no se pudieron obtener las listas de bloques: %s no se puede comprimir la imagen del núcleo no se pudo encontrar una unidad de GRUB para %s.  Compruebe su device.map no se pudo encontrar un dispositivo para %s (¿está montado /dev?) no se pudo obtener la línea de órdenes del traductor para la ruta «%s»: %s no se puede abrir el fichero del SO «%s»: %s no se puede abrir «%s»: %s no se puede leer «%s» correctamente no se puede leer «%s»: %s no se pudo renombrar el fichero %s a %s no se puede restituir el directorio original no se puede buscar «%s»: %s no se puede hacer stat() sobre «%s»: %s no se puede escribir en el CD-ROM no se puede escribir en «%s»: %s no se puede escribir en la salida estándar: %s tarjeta no encontrada cat FICHERO falló la verificación de la suma de comprobación selecciona la compresión a usar para la imagen principal cmp FICHERO LOCAL comNÚMERO[,VELOCIDAD] falló la comparación en el desplazamiento %llu conexión rechazada conexión expirada convertir a fuente en negrita la imagen principal es demasiado grande (0x%x > 0x%x) versión incorrecta de core.img no se pudo auto-configurar %s no se pudo encontrar el dispositivo miembro necesario de un sistema de ficheros multidispositivo no se pudo encontrar el cliente «geli» no se pudo encontrar la clase «part» de «geom» no se pudo abrir «geom» no se pudieron leer los metadatos ELI no se pudo obtener el UUID no se pudo obtener el UUID «geli» no se pudieron obtener datos aleatorios para el «salt» no se pudo enviar el paquete por la red cp FICHERO LOCAL crc FICHERO error criptográfico número %d falló cygwin_conv_path() borra el mapa de dispositivos si existe destino no alcanzable el número de dispositivos supera el límite deshabilita indicaciones disco «%s» no encontrado no existe el disco, por lo que se usa la partición de reserva %s módulo de disco a usar (biosdisk o native). Esta opción únicamente está disponible en objetivos con BIOS. el tamaño de diskboot.img debe ser de %u bytes no busca sistemas de ficheros en DISPOSITIVO la componente del nombre de dominio es demasiado larga no actualiza el estado de los LED hecho embebe el FICHERO como una configuración temprana embebe el FICHERO como una clave pública para comprobación de firmas el embebido no es posible, pero se requiere para la instalación en RAID y LVM el embebido no es posible, pero esto es necesario para una instalación en múltiples particiones habilíta el arranque ARCS (máquinas mips «big-endian», principalmente SGI). Deshabilita HFS+, APM, sparc64 y el arranque como una imágen de disco en i386-pc activa el arranque sparc. Deshabilita HFS+, APM, ARCS y el arranque como una imágen de disco para i386-pc intro: arrancar, «e»: opciones, «c»: línea de órdenes bloque de entorno demasiado pequeño error: %s.
 se esperaban las imágenes de GRUB en el directorio DIRECTORIO/%s en vez de en el directorio %s no se pudo obtener la ruta canónica de «%s» fallo leyendo sector 0x%llx de «%s» falló al leer la contraseña fallo escribiendo sector 0x%llx en «%s» falso RAM defectuosa (BadRAM) fichero «%s» no encontrado nombre de fichero esperado se esperaba un nombre de fichero o un tempo y unas notas el sistema de ficheros «%s» no soporta las etiquetas el sistema de ficheros «%s» no soporta las listas de bloques la imagen del firmware es demasiado grande fuerza auto-indicaciones se esperaban cuatro argumentos fwstart.img no coincide con la versión buena conocida. Continúe bajo su responsabilidad genera una imagen en el FORMATO deseado proporciona un mensaje corto sobre el uso proporciona esta lista de ayuda el parámetro pasado es un dispositivo del sistema, no una ruta «grub-mkimage» está compilado sin soporte para XZ grub_es> espera durante SEGUNDOS segundos (predeterminado 3600) hex FICHERO ignora los mapas de bits existentes al cargar especificación incorrecta de las dimensiones del terminal instala las imágenes de GRUB bajo el directorio DIRECTORIO/%s en vez de en el directorio %s instala aunque se encuentren problemas contraseña PBKDF2 no válida número mágico ELF dependiente de la arquitectura no válido número mágico independiente de la arquitectura ELF no válido tamaño de bloque no válido especificación de color «%s» no válida bloque de entorno no válido nombre de fichero «%s» no válido rango de fuentes no válido formato de línea no válido: %s parámetro %s no válido valor de desplazamiento %lld no válido nombre de variable «%s» no válido especificación de modo de vídeo «%s» no válida error de ioctl GET_ARRAY_INFO: %s error de ioctl GET_DISK_INFO: %s error en ioctl RAID_VERSION: %s la imagen del núcleo es demasiado grande (0x%x > 0x%x) enumera las direcciones de red enumera las tarjetas de red enumera las rutas de red ls RUTA fichero lzop corrupto hace que la unidad sea arrancable como disco extraíble (predeterminado para dispositivos fdX). Puede provocar fallos en algunas BIOS. Falta el símbolo «%c» falta una opción obligatoria para «%s» el módulo «%s» no está cargado el módulo no está cargado nombre se necesita una imagen y un punto de montado no se encontró la APM no se ha encontrado información DHCP no se ha encontrado la opción DHCP %d no se han encontrado opciones DHCP no se ha encontrado ningún registro DNS no se ha recibido ninguna respuesta DNS no se han configurado servidores DNS ninguna barra «/» en el nombre canónico del fichero no se ha especificado una orden no hay ninguna clave de descifrado disponible no se han encontrado tarjetas de red no se ha especificado un servidor no existe tal partición no se encontró un modo de vídeo apropiado ninguna tabla de símbolos no se ha especificado terminal ninguna finalización en la imagen principal se han encontrado datos no alineados al sector en el fichero principal no es un directorio no es una partición primaria no es un fichero normal fuera del cuerpo de una función se esperaba un parámetro otro programa está usando el área de embebido, y no hay espacio suficiente para core.img.  Dicho programa intenta almacenar datos habitualmente evitando ser detectado.  Le recomendamos que investigue sin memoria imprimir la imagen generada en el FICHERO [predeterminado=stdout] el fichero de salida debe ser especificado salida del fichero generado de configuración al FICHERO [predeterminado=stdout] desbordamiento detectado las contraseñas no coinciden realizar una autoconfiguración de bootp no se encontró el volumen físico %s pre-carga los módulos MÓDULOS especificados fin prematuro del fichero fin prematuro del fichero %s pulse la tecla «Bloq Mayús» pulse la tecla «Insert» pulse la tecla «Bloq Num» pulse la tecla «Bloq Despl» pulse «Pet Sis» pulse la tecla «Alt» pulse la tecla «Ctrl» de la izquierda presione la tecla «Shift» de la izquierda pulse la tecla «Alt Gr» pulse la tecla «Ctrl» de la derecha presione la tecla «Shift» de la derecha imprime la versión del programa imprime la información de la versión y termina imprime este mensaje y termina imprime mensajes prolijos. no se encontró la clave pública %08x error de lectura en el desplazamiento %llu: %s lee texto del FICHERO. directorio relativo en el servidor de red la reubicación 0x%x no está implementada todavía RAM reservada obtiene la opción DHCP y la almacena en VARIABLE. Si VARIABLE es «-» se imprime el valor. directorio raíz del servidor TFTP ruta cíclica detectada almacena las imagenes ROM en el DIRECTORIO [opcional] almacena la salida en FICHERO [requerida] seleccione el índice de la tipografía Puerto serie «%s» no encontrado set [NOMBRE=VALOR ...] cambia el estado de las mayúsculas cambia el espacio superior entre líneas cambia el espacio inferior entre líneas cambia el nombre de la familia tipográfica cambia el rango de fuentes cambia el tamaño de las fuentes establece el fichero de entrada para la partición de 32 bits. establece el fichero de entrada para la partición de 64 bits. establece el fichero de salida. El predeterminado es STDOUT cambia el modo de inserción cambia el modo del teclado numérico establece el nombre del archivo de salida. El predeterminado es STDOUT cambia el modo de pausa cambia el directorio prefijo [predeterminado=%s] cambia el estado del bloqueo de desplazamiento cambia el nombre del programa tamaño stretch(estirada)|normal(en la esquina superior izquierda) no se ha encontrado el símbolo «%s» temporal no se ha encontrado el terminal %s o no es manejado por «terminfo» no se encuentra el terminal «%s» el parámetro «%s» necesita un entero. La entrada «%s» de device.map no es válida. Ignorándola. Por favor, corríjala o bórrela de su device.map El nombre de unidad «%s» en device.map es incorrecto. Usando %s. Por favor, use el formato [hfc]d[0-9]* (Por ejemplo: «hd0» o «cd») el primer sector del fichero principal no está alineado al sector el dispositivo de instalación es extraíble. Esta opción únicamente está disponible en EFI. el tipo de partición 0x%x no es válido los sectores del fichero principal están demasiado fragmentados el tamaño de «%s» no es %u el tamaño de «%s» es demasiado grande el tamaño de «%s» es demasiado pequeño este fichero ELF no es del tipo adecuado esta etiqueta de partición GPT no contiene ninguna Partición de Arranque BIOS; el embebido no será posible este LDM no tiene Partición de Embebido; el embebido no será posible esta etiqueta de partición de tipo msdos no tiene espacio después del sector de arranque; el embebido no será posible se esperaban tres parámetros expiró el plazo abriendo «%s» expiró el plazo leyendo «%s» expiración del plazo: no se pudo resolver la dirección hardware demasiada profundidad de enlaces simbólicos el traductor «%s» tiene varias palabras que no son opciones para la ruta «%s», al menos «%s» y «%s» el traductor «%s» tiene únicamente opciones para la ruta «%s», no se pudo encontrar el parámetro del dispositivo la línea de órdenes del traductor está vacía para la ruta «%s» se esperaban dos parámetros tipo imposible identificar un sistema de ficheros en %s; no se puede realizar la comprobación de seguridad tamaño de dispositivo desalineado final de fichero inesperado parámetro «%s» desconocido compresión %d desconocida
 tipo de dispositivo %s desconocido
 sistema de ficheros desconocido Dispositivo de RAID «%s» de tipo desconocido error de expresiones regulares desconocido formato objetivo %s desconocido
 tipo de «terminfo» «%s» desconocido especificación de formato de opción DHCP «%s» no reconocida dirección de red «%s» no reconocida interfaz de red «%s» no reconocida número no reconocido dirección %s irresoluble unset [NOMBRE ...] error HTTP %d no soportado: %s respuesta HTTP no soportada versión de RAID no soportada: %d.%d formato de gzip no soportado paridad del puerto serie no soportada velocidad del puerto serie no soportada número de bits de parada del puerto serie no soportados longitud de palabra del puerto serie no soportada usa COLOR para el fondo usa el COLOR para la etiqueta usa el COLOR para el fondo de la etiqueta usa COLOR para el texto usa DIRECTORIO como la raíz de la partición del sistema EFI. usa el FICHERO como tipografías (PF2). usa FICHERO como fuente para la etiqueta usa el FICHERO como la imagen de arranque [predeterminado=%s] usa el FICHERO como la imagen principal [predeterminado=%s] usa el FICHERO como el mapa de dispositivos [predeterminado=%s] usar FICHERO como xorriso [opcional] usa los ficheros de GRUB del directorio DIRECTORIO [predeterminado=%s] usa la CADENA como nombre de producto Usa CADENA como versión del producto usa el fichero de identificación, incluso aunque el UUID esté disponible usa imágenes y módulos en el DIRECTORO [predeterminado=%s/<plataforma>] no se ha fijado la variable «%s» UTF-8 visualmente ordenado espera hasta que se una un depurador no se procederá con las listas de bloques versión o número mágico ELI erroneos xnu_uuid DISPOSITIVO fichero xz corrupto u opciones de bloque no soportadas no puede borrar esta dirección se debe cargar primero el núcleo su Partición de Arranque BIOS es demasiado pequeña; el embebido no será posible su core.img es extraordinariamente grande.  No entrará en el área de embebido su área de embebido es extraordinariamente pequeña.  core.img no entrará en ella.                                                                                                                                                                                                                                                    boot/grub/locale/fi.mo                                                                              0000600 0001750 0001750 00000321726 13417732100 0013633 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                       x     #    G      _  #   _      _     _     _     `  $   `     =`  6   Q`     `     `  	   `     `     `     `     `     `     a  .    a  .   Oa  %   ~a     a     a    a    b    c     d  7   d  F   e  v   be  +   e     f      f     7f  !   If     kf  ,   f     f     f  $   f     g  *   #g     Ng     ag     ig     yg     g  
   g  	   g     g  ,   g  ,   h  ,   <h  '   ih  -   h      h  (   h  (   	i  )   2i     \i     |i     i     i     i  "   i  4   i     j     j  7   (j     `j  1   ij     j     j  %   j  '   j  %   k  '   1k     Yk     ^k     `k     ~k     k     k     k     k     k     k     k     l     l     (l  3   5l     il  $   ol     l     l     l     l     l     l     m  -   )m     Wm  !   tm     m     m     m  #   m      n  `   n  Z   n     Do     _o     {o     }o     o     o     o     o     o     o     o     p     %p     ?p     [p     hp     p     p     p     p     p     p     p  %   p     	q     (q     <q     Sq     nq     q     q     q     q  *   q  3   q     .r  "   Ir  8   lr     r     r  	   r  #   r     s      s     3s     Ss     ss     s  )   s     s     s      t  P   t     ot     t  H   t  &   t     	u     !u  !   (u  ,   Ju     wu     u     u  	   u  !   u  *   u     u     v     (v     :v     Tv  $   lv     v     v     v     v     v     w  
   %w  
   0w     ;w  1   Nw     w     w     w     w  3   w  >   x  $   Cx     hx     x     x     x     x     x  +   y     /y     Ky  #   iy     y     y  $   y     y     z  '   z  9   Fz     z     z  z   z     2{     9{  8   M{     {  
   {     {     {     {     {     |  +   |     |     |     |  "   }     5}     F}  (   W}     }     }     }     }     }     }  "   }  0   ~     A~     F~     U~  7   d~     ~     ~     ~     ~     ~     ~  0   ~          /     A     W  2   n  %               *     6     +   M     y            !   {  d     e     d   h  i   ͂  o   7  H                       *     =     S     m       #             ߄       1   	  )   ;     e     l     n       /             х       5        ;     Z  K   v          ކ                           '   $  P   L            	   ȇ     ҇     Շ       '     +   0     \     m  )             ʈ                    0     F  $   [            "        Љ     ҉     މ  (               "     +   A  -   m               Ê     Ԋ       O        F     \     t            %        Ӌ  )     !     "   >     a     }  +             ׌       !             7     P     \      s                                4         U     t                    Ԏ                #  !   D     f  4     M     2        6     P  *   n  8        Ґ     ߐ               %  3   =  $   q  +             ב                    "      >     _     }            D               7      ;   8     t       !        Փ       s                       Ŕ     ؔ                    0     4     :                    Ö     ʖ     ֖            '   %  
   M     X     g     }                      H   ͗          )     E     U  %   d            #                       $      ;     \      {       "     (   ̙       %        7  2   Q            #     *   ʚ               
  #        3     8  	   J  	   T  "   ^  ;     #     <             ,     J  .   X  	          `          !     )   ;     e     i     o     w  q             
     !     0     G     Z     p            "   Þ                    0     G     ]     q       #        ß       g        d            -         N  !   b       "     '     Q        2     N     h     |                    ڢ               0     L     d      r                     ܣ                 -   <     j       "     b     )        H     ^     v  ,             ץ  	   ܥ  "     %   	     /     4     I     P  &   Y  )          ^          $   6  %   [       ^   4  _     }        q  )   (  '   R  >   z  D     !     '      -   H  #   v       )          )     )   +  ,   U                    ֬       E     $   H  A   m  )        ٭               -      L     m  q          :        L     j     y               ͯ            0        E     c     x  )     &        ߰               *  )   F     p  %     %     ,   ̱  '     :   !     \  -   {       .               '     $   7  "   \                 *               )     o               6   ]            0         ε  !     "     #   4     X     j            !        ߶  
           <     %   W  >   }          ŷ     ɷ     Ϸ            d     *     0     6   ܸ               )     >     R     X  0   r       !        ع       $        ,     E     \     z       $     "   ͺ  $             *      >     _     t                         һ       '        /     O  $   h  +     "        ܼ  )                  =     ]     r  '             ͽ       <         ;     \     d     w  m                   5     O     h  +     3     1          '   "  -   J     x  '     '     .     	         
     &     ?     [     w                                *     ?   J  B     p        >  /               .   $  O   S  )               	          5        P     b     z            :                   *     0     C     J     Y     b                      	                                 1     8     ?  
   M  
   X  	   c     m  !   s  )                         F   "  N   i       "               -      -   .  $   \  #     0     6                  .  (   <  1   e  )               !        	           >  %   V     |  &                     7     .   H  4   w                           %   .     T     i     ~                           ,        /     >     N     j     }       #               B        @     \     |                 &             !     /     8     V  &   p                      ;     V   *  "     &     !                  	  /   '  H   W  F     w     N   _  (               I     $   I  '   n       %                         $     '   :  *   b                 J             5     P  -   d  +          $          "     +     J   A  %                "              !     B     \     s                      %             +     I  %   f                           [        B  !   V     x                                             )     ?     Y     v                                        ,  1   L     ~                                1          0        5     J  !   `       "                                 '     <     H     W     g     x                 &                       6     T  '   i  &          L             0  !   D     f                                                #   .  #   R  $   v            &          !             (     =     B     Q  	   g  7   q       %     [     w   E  7     K     #   A  /   e                 &     U     @   i  Q                  +  +   @     l  R     L     .   )     X     o  F   t                              .      A     b     w       2     !     #        %     9     Q     b                           (     #   8     \     u            )               '     '   @  '   h       0               -     8   G            !                     .        L  !   j  B     E     B       X  *     /   1     a  "          *          :        9     A     P     a  /   q                       5     *   4  (   _            Y    G    P  @       I     T        K  *          *        D  +   a  '     6     "          .   /  '   ^  5     $                    6     
   P     [  &   g  -     =     -     *   (  .   S  0     +     +     ,     &   8  %   _                 %     3        	       ;   *     f  F   r  4          &     )     &   B  )   i            1     .                  #     7  $   E     j     }                 9        	 &       6    P    k    ~         "    >    #   " (   F '   o !        ,        ^    Z    #   O $   s                         &    )        %    F #   _                     #       !    2    7    = %   R #   x     '                   (    D    ^ @   } E    #    /   ( >   X     %    	    5    /   	    A	    Y	 -   r	    	    	 1   	 2   	 "   )
 '   L
 d   t
 &   
 %     e   & $                ?    
   /    :    > 	   [ 4   e *    !                   , +   A    m     )    )    )        	   0    :     M 6   n         0    0    5   < H   r T           &    A     U +   v     2         !   	 -   +    Y #   r 2    "    &    3    M   G )    -                I            $ 	   ,    6     P    q !   / 7   Q              )            0   2    c    s                 .    ;       B    K    e =                            # :   )    d +   } "        >    0   ) %   Z     .    @    1    %   4    Z    y !   P y   r     y   s |    {   j X       ?    R    q         .            3    /   O         ;    C    	   0     :     =     Q  9   h            "     B     +   1!    ]! I   x! #   !    !    " 	   "    )"    5"    A" ;   G" Z   " &   "    # 	   #    # )   $#    N# 6   b# =   #    #    # /   $    2$    J$ #   h$    $    $    $    $ /    %    0% $   N% &   s%    %    %    % A   % 	   &    & '   & .   F& -   u& &   &    &    &    &    ' x   )'    '    '     '    ' $   ( 1   7(     i( B   ( #   ( $   (    )    3) /   P)    )    )    )     )    )    *    *    (*    A*    a*    {*    *    *    *    * Q   * $   B+    g+    {+    +    +    +    +    ,    -,     I,    j, :   , T   , 7   -    R-    p- %   - F   -    -    . (   ). '   R. (   z. C   . %   . ,   /    :/    Q/    e/ /   {/    /     / 1   / .   0    A0    S0    V0 E   t0    0    0 A   0 F   1 *   T1     1 '   1    1    1    1    2 !   2    2    2    2    3 "   3    >3 	   S3    ]3    i3    `4    U5    k5 	   5    5     5    5    5 2   5    *6    96    L6    c6    h6    6    6    6 k   6    %7 )   ?7    i7    }7 8   7    7    7 /   8 .   48 )   c8    8    8 )   8 )   8 !   9    09 -   <9    j9 !   9 6   9 0   9 9   :    N:    Z: (   w: &   :    :    :    : $   :    ;    	;    ;    7; /   @; H   p; /   ; H   ;    2<    B<    _< "   h< 
   <    < p   <     = !   1= 2   S= 	   =    =    =    =    =    U>    l>    >    >    >    >    >    > (   ? (   ;?    d?    ?    ?    ?    ?    ?    @    &@ .   @@ .   o@ 5   @    @    lA    3B $   IB 0   nB    B #   B    B )   B *   C R   DC '   C *   C    C    C    D !   1D %   SD !   yD %   D     D $   D    E !   E *   @E    kE    E     E &   E    E    F    F 5   0F    fF    F    	G p   G (   H    9H    LH    ^H 6   {H 2   H    H 	   H +   H -   $I    RI    WI 
   lI    wI -   I .   I    I n   I     dJ =   J 3   J   J q   L o   zL    L    pM *   N 2   3N X   fN R   N -   O 1   @O /   rO &   O    O 5   O    P &   6P ,   ]P +   P '   P    P    P    Q    +Q [   =Q %   Q O   Q *   R    :R    SR    qR    R    R    R    R $   nS O   S '   S    T    T    9T    UT    jT %   ~T    T /   T /   T    U    4U -   MU -   {U    U    U    U    U +   V    EV *   `V *   V 1   V ,   V ?   W !   UW 3   wW    W B   W    W %   X =   @X *   ~X *   X    X )   X    Y <    Y    ]Y 	   fY 0   pY    Y    -Z    HZ G   [    T[    W[ 8   ][ (   [ '   [ )   [ ,   \    >\ %   O\    u\ 2   \ *   \    \    ]    ] H   7] 8   ] I   ]    ^ 	   ^    ^ )   !^ &   K^    r^    ^ 6   _ .   D_ >   s_    _    _    _ !   _    `    ` D   0`    u` )   `     `    ` :   `    2a    Na    la    a /   a -   a 0   a /   +b    [b    yb $   b    b    b    b    b 
   c !   c    2c    Lc !   gc %   c    c    c "   c    d 	   %d .   /d    ^d 0   rd %   d    d    d /   d '   .e ,   Ve    e A   e     e    f    f $   %f    Jf    f    f    g    $g    ?g C   Zg 5   g 8   g    h    h =   ;h 	   yh ,   h ,   h E   h    #i    /i    Mi '   hi *   i '   i *   i &   j )   5j "   _j    j    j 5   j J   j O   "k    rk    l -   l    m    3m ;   Om W   m 7   m    n    4n    Gn !   Un 7   wn    n    n    n    n    o ?   :o    zo    o    o    o    o    o    o +   o    %p    =p    Sp    Yp    ip    vp    p    p    p    p    p    q    q    q 	   2q 	   <q    Fq &   Lq 5   sq    q    q *   q (   r _   *r D   r    r .   r    s    s <   .s .   ks '   s $   s 1   s ;   t !   Ut    wt    t (   t 3   t *   u    :u !   Mu $   ou 2   u :   u )   v 4   ,v )   av 1   v )   v #   v 8   w O   Dw ?   w ?   w 8   x "   Mx ,   px "   x &   x 3   x    y !   :y #   \y +   y )   y    y    y '   y /    z    Pz    iz -   ~z    z    z !   z '   z $   { 3   ?{ [   s{ )   { *   {     $| '   E| '   m| -   | 6   | )   |    $}    <}    I}    ^} )   ~}    } !   }    }    } B   ~ u   [~ &   ~ 4   ~ '   -    U    o (   v <    O    \   ,     p   & F       ށ     G   
 :   R 6       Ă <            )    G    g 1    0    5    %       @    Y M   w    ń         2    *   K    v $   |     1    0    =    *   O "   z (    '   Ɔ     '       - "   K    n             "   އ +       -    M    l <       ǈ                 x   0     /   É             , (   1    Z    k                ݊     B       ^    {            Ջ             "   > 0   a                ׌             :    #   3 7   W         &        (       ,     J    k                ڏ '    )    *   E &   p '    (                    ?    ] %   }     ,    (        S   $    x     4    &        "        C    W "   k !           ˓     5    4   + )   `         +       ۔ "           %    9    >    M    l C   x $    (    a   
    l 8    R   = "    +    '   ߗ &    &   . *   U X    K   ٘ h   %     )    1   ֙ <    -   E ^   s b   Қ 1   5    g     ^                   :    R     m '    +        #    5     $   V &   {            ϝ                0     E    f (         .   ̞ *    .   & .   U +    #    %   ԟ 2    ,   - -   Z 9    4          "    @   ; G   | "   ġ      &       / %   H    n 9   }        ע J    E   @ O           #       `  %  q      1    W    V                5  :  v  )           n  M  p               :   %  \                    6        `   d           K      S                  {            O            r     ?      t  '  8  9  k              s            ^  o                  S  a                                  L    k  `      
              3      <          U  3    R   e  .       "      G      ,   {       ^                            <  k  B  =   Q     .   X  !  C     K                    m                      
    j           e  2                  d   
     y    0                            V  x                  #  P       )         k  A           A                 {             _            N  L                       K    F     $                       i     O                        P  (    9   	       #  '  c   0  !               I    !                                         %                       i    q        o                  h             l  z                          i    X  f         
                                       <        s        !         @        v     |                        C        ,          *    T                   w      	   -      f   R  ;                                          y           G      #   g                     1             u      D         '   /  @   q    R                O      0  D            T             A      [  ]                    L   O                  ,    }              t     )          g  .    ,          4   ]  l        q           l  >                   w  D                }     &         x          M  \              \                                     4  ?            N  o      ~      d  *      r          e      /                   X    C                                         l      v              ^                            p    r     L         %             7  3      G  f  7    .                     H  s    Z                  r                            (                   W    (          h  8  w          S              ]           n          (  u               a      d  7            c              ]                        "                j  w               7                1        t          ?   u                    Q  M                        +       Z                        h       U  /            n                      '               I           z    W                              *       =  z          {             E        4  m      j      9           Y         3          6      S    2              &              u    c  s              i    \    5       Z      b              A      Q          k           G     v  F        x                      F  o                        a      &      x  -  `  _  B  ]      1   h  s         U               J  2          -   ?  ~    T      g     L               [  &  =          <    R      2                     J               I      f      N            F            W         )                    [                  u  5           ?    _           t             P                         U              o             ;            b  N    
           $          -                   i         \  K  Y  Z                                  w       8      E  |  *            M          /      I  @     b          z                   T  |                   j     ^                   ;          I      y            J               6         n     $        $       (      H      V  b  H   "  8           D  >     %      !    "  >  1     Y     3                           .  [  $  c        :    @  m  m    H  2     l             E                 	          9    ~                     g  }    |  	      +      *              >  D        O              C  :        f              M              =                9  Y            6   p      -             /      v     #               d  0  r  y   a                <   N   J             b          Z            A       :        S                         ,    K   +                     a      h           c      6                       }  E         5   ;      C       [       @          >                                                  W      ^         )          =        g      Q       F      e   X       J                  E  0           ~       Y               '  T      B       x      Q  	  H    e                             m   p   +  X      _  G                     P          4  7    +            B      V  p    V            t      U        5                   R    _       j    ;          4             "                 &   n      `    q   8   P  B                           total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: option '%c%s' doesn't allow an argument
 %s: option '%s' is ambiguous; possibilities: %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File size: %s
 File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS Import ZFS wrapping key stored in FILE. Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List coreboot tables. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... M MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MODULE MODULES Mail xorriso support requests to <bug-xorriso@gnu.org>. Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Option -- switches to native xorriso command mode. Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] PUBKEY_ID Paletted  Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot into firmware setup menu. Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Render Apple .disk_label. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show CBMEM console content. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show the contents of a file. Show the current mappings. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Switch to native disk drivers. If no modules are specified default set (pata,ahci,usbms,ohci,uhci,ehci) is used Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 T TARGET Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This entry can be booted by any user. This requires setting GRUB_DEFAULT=saved in %s/default/grub.\n Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. Your embedding area is unusually small.  core.img won't fit in it. Your xorriso doesn't support `--grub2-boot-info'. Some features are disabled. Please use xorriso 1.2.9 or later. Your xorriso doesn't support `--grub2-boot-info'. Your core image is too big. Boot as disk is disabled. Please use xorriso 1.2.9 or later. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `cryptomount' command fails: %s `loopback' command fails: %s `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format blocklist FILE blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s cannot compress the kernel image cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot get translator command line for path `%s': %s cannot open OS file `%s': %s cannot open `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. diskboot.img size must be %u bytes do not probe for filesystems in DEVICE domain name component is too long don't update LED state done embed FILE as an early config embed FILE as public key for signature checking embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enable ARCS (big-endian mips machines, mostly SGI) boot. Disables HFS+, APM, sparc64 and boot as disk image for i386-pc enable sparc boot. Disables HFS+, APM, ARCS and boot as disk image for i386-pc enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to get canonical path of `%s' failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification install GRUB images under the directory DIR/%s instead of the %s directory install even if problems are detected invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid block size invalid color specification `%s' invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no `/' in canonical filename no command is specified no decryption key available no network card found no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found pre-load specified modules MODULES premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory of TFTP server route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the argument `%s' requires an integer the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for label use COLOR for label background use COLOR for text use DIR as the EFI System Partition root. use FILE as font (PF2). use FILE as font for label use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub 2.00+20130519
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-05-22 12:52+0300
Last-Translator: Jorma Karvonen <karvonen.jorma@gmail.com>
Language-Team: Finnish <translation-team-fi@lists.sourceforge.net>
Language: fi
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=n != 1;
           muistia yhteensä: %d kibitavua
     Ensisijaista tilaa ei ole käytettävissä
     Ensisijainen tila: %ux%u
   EDID-tarkistussumma virheellinen   EDID-versio: %u.%u
   Videosovittimen alustaminen epäonnistui   Tietoa ei ole saatavilla   VBE-tiedot:  versio: %d.%d  OEM-ohjelmistoversio: %d.%d
   tai:   (vasemmaisin)  (sisäpuolinen)  (oikeammaisin)  - Osiotaulu alkaa osoitteesta %llu%s kibitavua  - Sektorikoko %uB  - Kokonaiskoko %llu%s kibitavua  - Kokonaiskoko tuntematon [VALITSIN...] %.*s: ARGP_HELP_FMT-parametrin on oltava positiivinen %.*s: ARGP_HELP_FMT-parametri vaatii arvon %.*s: Tuntematon ARGP_HELP_FMT-parametri %d s %d s jäljellä. %s vaikuttaa sisältävän %s-tiedostojärjestelmän, jonka ei tiedetä varaavan tilaa DOS-tyyliselle alkulataukselle. GRUB-ohjelman asentaminen sinne voi aiheuttaa TIEDOSTOJÄRJESTELMÄN TUHOUTUMISEN, jos grub-setup korvaa arvokasta tietoa (valitsin --skip-fs-probe ottaa pois käytöstä tämän tarkistuksen, käytä sitä omalla vastuullasi) %s vaikuttaa sisältävän %s-osiokuvauksen ja LDM:n, jonka tiedetään olevan turvaton yhdistelmä. GRUB-ohjelman asentaminen sinne voi aiheuttaa TIEDOSTOJÄRJESTELMÄN TUHOUTUMISEN, jos grub-setup korvaa arvokasta tietoa (valitsin --skip-fs-probe ottaa pois käytöstä tämän tarkistuksen, käytä sitä omalla vastuullasi) %s vaikuttaa sisältävän %s-osiokuvauksen, jonka ei tiedetä varaavan tilaa DOS-tyyliselle alkulataukselle. GRUB-ohjelman asentaminen sinne voi aiheuttaa TIEDOSTOJÄRJESTELMÄN TUHOUTUMISEN, jos grub-setup korvaa arvokasta tietoa (valitsin --skip-fs-probe ottaa pois käytöstä tämän tarkistuksen, käytä sitä omalla vastuullasi) %s ei tue UUID-tunnisteita %s tuottaa näppäimistösijoittelun ckbcomp:ia käyttävälle GRUB:lle\n %s on vanhentunut. Käytä sen sijaan ”set gfxpayload=%s” ennen linux-komentoa.
 %s on vanhentunut. VGA-tilaa %d ei tunnistettu. Käytä sen sijaan ”set gfxpayload=LEVEYSxKORKEUS[xSYVYYS]” ennen linux-komentoa.
 grub-mkconfig ei vielä tue kohdetta %s.\n %s, jakeluversiolla Hurd %s %s, jakeluversiolla Hurd %s (toipumistila) %s, jakeluversiolla Linux %s %s, jakeluversiolla Linux %s (toipumistila) %s, jakeluversioilla Xen %s ja Linux %s %s, jakeluversioilla Xen %s ja Linux %s (toipumistila) %s, jakeluversiolla Xen hypervisor %s, jakeluversiolla kFreeBSD %s %s, jakeluversiolla kFreeBSD %s (toipumistila) %s, jakeluversiolla ydin %s (%s-kautta) %s, jakeluversiolla ydin %s (%s-kautta, toipumistila) %s: HAJAKOODAUSTÄSMÄÄMÄTTÖMYYS
 %s: VALMIS
 %s: LUKUVIRHE
 %s: Liian monta argumenttia
 %s: Sinun on suoritettava tämä root-käyttäjänä\n %s: virhe: %s: tiedot: %s: virheellinen valitsin -- ’%c’
 %s: valitsin ’%c%s’ ei salli argumenttia
 %s: valitsin ’%s’ ei ole yksiselitteinen; mahdollisuudet: %s: valitsin ’--%s’ ei salli argumenttia
 %s: valitsin ’--%s’ vaatii argumentin
 %s: valitsin ’-W %s’ ei salli argumenttia
 %s: valitsin ’-W %s’ ei ole yksiselitteinen
 %s: valitsin ’-W %s’ vaatii argumentin
 %s: valitsin vaatii argumentin -- ’%c’
 %s: valitsin vaatii argumentin -- ”%s”\n %s: tunnistamaton valitsin ’%c%s’
 %s: unnistamaton valitsin ’--%s’
 %s: varoitus: (32-bittinen) (64-bittinen) (OHJELMAVIRHE) Versiota ei tiedetä!? (OHJELMAVIRHE) Valitsin pitäisi olla tunnistettu!? (kohteella %s) - Nimiö ”%s” - Viimeinen muokkausaika %3$d.%2$d.%1$d %4$d:%5$d:%6$d %7$s --LISÄÄ-- -h HAJAKOODAUS [-c TIEDOSTO [-p ETULIITE]] [TIEDOSTO1 [TIEDOSTO2 ...]] -l | -r | [-s] grub-laite käyttöjärjestelmälevy. ,5 16-bittinen suojattu rajapinta tuettu
 16-bittinen suojattu rajapinta tukematon
 32-bittinen suojattu rajapinta tuettu
 32-bittinen suojattu rajapinta tukematon
 =ARVO > ACPI ei-lyhytkestoinen tallennuspaikka-RAM-muisti ACPI uudelleen käyttöön otettava RAM-muisti ACPI-sulkeutuminen epäonnistui OSOITE OSOITE ARVO [PEITE] OSOITE [KOKO] OSOITE,PEITE1[,OSOITE2,PEITE2[,...]] OSOITE DNSPALVELIN APM otettu pois käytöstä
 APM irrotettu
 APM otettu käyttöön
 APM liitetty
 ARGP_HELP_FMT: %s-arvo on pienempi tai yhtäsuuri kuin %s ASCII Hyväksy DOS-tyyliset CR/NL-riviloput. Aktivoi syötepäätteet: Aktivoi tulostepäätteet: Sovitin ”%s”:
 Lisää DNS-palvelin Lisää verkko-osoite. Lisää verkkoreitti. Lisävalitsimet kohteelle ”%s” Lisävalitsimet kohteelle %s (Xen hypervisor -jakeluversiolla) Salli keskeytys ESC-näppäimellä. Kysy tiedostonimeä, josta alkuladataan. Otaksu, että syöte on heksadesimaali. Otaksu, että syöte on salasana. Otaksu, että syöte on raaka. Yritettiin purkaa master-avaimen salausta... Yritetään asentaa GRUB levyasemalle, jossa on useita osionimiöitä tai sekä osionimiö että tiedostojärjestelmä. Tätä ei vielä tueta. Yritetään asentaa GRUB levyasemalle, jossa on useita osionimiöitä. Tätä ei vielä tueta. Yritetään asentaa GRUB osioimattomalle levyasemalle tai osiolle. Tämä on HUONO ajatus. Saatavilla olevat syötepäätteet: Saatavilla olevat tulostepäätteet: B B/s BIOS_DUMP [INT10_DUMP] LOHKO BYTE:BIT Taustakuvatila. Perushakemisto hajakoodausluettelolle. Alkulataa BIOS-perustainen järjestelmä. Alkulataa käyttöjärjestelmä. Alkulataa yhteen tilaan. Alkulataa vianjäljitysviesteillä. Alkulataa laveilla viesteillä. Alkuladataan ”%s” Alkuladataan komentoluettelo Alkulataa sokkona Alkulatauspolku: %s
 Alkulatauspolku: ei ole saatavilla
 Hyppää GDB:hen CGA  VÄRI KOMENTO [ARGUMENTIT] CPU Idle-tila ei hidasta prosessoria
 CPU Idle-tila hidastaa prosessorin
 CS5536 osoitteessa %d:%d.%d
 Ei voida ottaa käyttöön ROM-aluetta. Vaihda asetettuja laitteita. Vaihda osiotyyppi Tarkista Alt-näppäin. Tarkista Control-näppäin. Tarkista vaihtonäppäin. Tarkista suoritinominaisuudet. Tarkista tiedostohajakoodaukset hajakoodausluettelo-TIEDOSTOlla. Tarkista, että tukeeko prosessori 64-bittistä (long)tilaa (oletus). Tarkista muokkausnäppäinten tila. Tarkista onko käyttäjä USERLIST-luettelossa. Tarkista GRUB-skriptiasetustiedosto syntaksivirheiden varalta. Tyhjennä näyttö. Nollattu aktiivilippu kohteessa %d. 
 Komennot: Vertaa TIEDOSTOa paikalliseen tiedostoon PAIKALLINEN. Vertaa tiedostoa ”%s” tiedostoon ”%s”:
 Vertaa kahta tiedostoa. Laske laitteen XNU UUID. Laske tai tarkista hajakoodaustarkistussumma. Aseta sarjaportti. Jatka silmukoita Muunna yleiset kirjasintiedostomuodot PF2-muotoon Kopioi TIEDOSTO paikalliseen tiedotoon PAIKALLINEN Kopioi TIEDOSTO vakiotulosteeseen. FPSWA-ajurin paikantaminen epäonnistui Fyysisen taltion ”%s” löytäminen epäonnistui. Jotkut moduulit voivat puuttua ydinlevykuvasta. Sha256-algoritmian lataus epäonnistui Sha512-algoritmin lataus epäonnistui Luo BIOS-kaltainen rakenne olemassa olevan käyttöjärjestelmän taaksepäinyhteensopivuutta varten. Luo tyhjä ympäristölohkotiedosto. Nykyiset terminfo-tyypit: LAITE LAITE [OSIO[+/-[TYYPPI]]] ... LAITTEEN on oltava käyttöjärjestelmälaite (esim. /dev/sda). LAITE_NIMI DIR HAKEMISTO [OSBundleRequired] DNSSERVER Vianjäljitystyökalu tiedostojärjestelmäajurille. Esittele muistialueet viallisena (badram). Tiivistyksen purkaja on liian iso Määritä valikkorivi. Määritä alivalikko. Poista verkko-osoite. Poista verkkoreitti. Poista määritelty silmukkalaitelevyasema. Poista muuttujat. Määrittele ajuri. Määrittele tiedostojärjestelmän UUID. Määrittele tiedostojärjestelmänimiö. Määrittele tiedostojärjestelmätyyppi. Määrittele osiokuvaustyyppi. Laite %s: Laitetunniste: %s
 Laitetunniste: ei ole saatavilla Ohjausväri, peite: %d/%d/%d/%d  sijainti: %d/%d/%d/%d Ota ACPI pois käytöstä. Ota SMP pois käytöstä. Ota pois käytöstä kaikki alkulataustulosteet. Ota pois käytöstä/ota käyttöön SMART (0/1) Hylätään väärin sisäkkäiset osiot (%s,%s,%s%d) Levyvälimuistitilasto: osumia = %lu (%lu.%02lu%%), ohilaukauksia = %lu
 Valinnaisen levylukumäärän on oltava sitä käytettäesä levyluettelon edessä.
 Näytä FPSWA-versio. Näytä SMART-terveystila. Näytä tekstirivi. Näytä TIEDOSTOn lohkoluettelo. Näytä tuloste kaikissa pääteikkunoissa. Näytä virtatila. Näytä tämän komennon käyttöopaste ja poistu. Näytä tämä opaste ja poistu. Näytä/aseta nykyinen päiväys. Älä tulosta perässä olevia rivinvaihtoja. Älä tulosta viestejä. Älä koesta mitään levykeasemaa. Älä käytä APM:ia tietokoneen pysäyttämiseen. Älä tee mitään, onnistuneesti. Älä tee mitään, epäonnistuneesti. Älä näytä alkulatauksen diagnostiikkaviestejä. Älä lataa pilkulla erotetulla luetteloilla määriteltyä tietokonetauluja. Älä alkulataa uudelleen, vain pysähdy. Älä pysähdy ensimmäisen virheen jälkeen. Älä päivitä EBDA:ta. Saattaa korjata virheet tai jää roikkumaan joissain BIOS:seissa, mutta on tehoton käyttöjärjestelmillä, jotka eivät vastaanota RSDP:tä GRUB:sta. ENVAR ENVVAR [ENVVAR] ... VIRHE: kevollista näppäimistöasettelua ei löytynyt. Tarkista syöte.
 Poistuu aina ESC-näppäimellä. LAUSEKE LAUSEKE ] Kulunut aika: %d.%03d s 
 Kulunut aika: %d.%03d sekuntia 
 Upottaminen ei ole mahdollista.  GRUB voidaan asentaa tällä asetuksella vain käyttäen lohkoluetteloja.  Lohkoluettelot ovat kuitenkin EPÄLUOTETTAVIA ja niiden käyttöä ei suositella. Matki näppäinlyöntisekvenssiä Ota käyttöön kenoviivakoodinvaihtomerkkien tulkinta. Kirjoita ZFS-salasana:  Siirry KDB:hen alkulautauksessa. Siirry normaalitilaan. Kirjoita salasana kohteelle %s%s%s (%s):  Kirjoita salasana:  Kirjoita käyttäjänimi:  Virhe jäsennettäessä komentoriviargumentteja
 Arvioi lauseke. Poistuminen epäonnistui Poistu GRUB:sta. Poistu silmukoista Poistu normaalitilasta. Vie muuttujat. Vie version 1 taulut käyttöjärjestelmään. Vie version 2 ja version 3 taulut käyttöjärjestelmään. TIEDOSTO TIEDOSTO [ARGUMENTTI ...] TIEDOSTO [ARGUMENTIT ...] TIEDOSTO | TAHTI [PISTEJAKO1 KESTO1] [PISTEJAKO2 KESTO2] ...  TIEDOSTO... TIEDOSTO1 TIEDOSTO2 TIEDOSTONIMI KOMENTO TIEDOSTOJÄRJESTELMÄ [MUUTTUJA] TIEDOSTO|kehote MUOTO FPSWA-yhteyskäytäntö ei kykene löytämään rajapintaa FPSWA-korjausversio: %x
 KOHTEESTA-KOHTEESEEN[,KOHTEESTA-KOHTEESEEN] KOHTEESTA[K|M|G] KOHTEESEEN[K|M|G] FT_Init_FreeType epäonnistuu Sekä oletus- että varmistuslevyjen alkulataus epäonnistui.
 Epäonnistunut ”device-mapper”-puun luominen Palataan takaisin kohteeseen ”%s” Tiedostokoko: %s
 Tiedostojärjestelmä ”%s” ei tue upotusta Tiedostot eroavat siirrososoitteessa %llu: 0x%x [%s], 0x%x [%s]
 Tiedostot ovat erikokoisia: %llu [%s], %llu [%s]
 Tiedostojärjestelmään ei päästä Tiedostojärjestelmätyyppi %s Täytä GPT-aseman LAITE hybridi-MBR. Määritellyt osiot ovat osa hybridi-MBR:ää. Korkeintaan 3 osiota sallitaan. TYYPPI on MBR-tyyppi. + tarkoittaa, että osio on aktiivinen. Vain yksi osio voi olla aktiivinen. Päätä EFI-emulaattorin lataus. Yritä ensimmäiseksi laitteella VIHJE, jos suoritetaan kohteella ARC. Jos VIHJE loppuu pilkkuun, yritä myös aliosioita Yritä ensimmäiseksi laitteella VIHJE, jos suoritetaan tällä hetkellä BIOS:ssa. Jos VIHJE loppuu pilkkuun, yritä myös aliosioita Yritä ensimmäiseksi laitteella VIHJE, jos suoritetaan kohteella EFI. Jos VIHJE loppuu pilkkuun, yritä myös aliosioita Ensimmäinen yritys laitteelle VIHJE, jos suoritetaan kohteella IEEE1275. Jos VIHJE loppuu pilkkuun, yritä myös aliosioita Ensimmäinen yritys laitteelle VIHJE, jos suoraa laitepääsyä tuetaan. Jos VIHJE loppuu pilkkuun, yritä myös aliosioita Ensimmäinen yritys laitteelle VIHJE. Jos VIHJE loppuu pilkkuun, yritä myös aliosioita Korjaa videopulma. Löytyi %s kohteelta %s (%s)\n Löytyi %s kohteella %s\n GNU Mach löytyi: %s Hurd-moduuli löytyi: %s NetBSD-käyttöjärjestelmäydin löytyi: %s\n Tausta löytyi: %s\n Löytyi initrd-levykuva: %s\n Käyttöjärjestelmämoduulihakemisto löytyi: %s\n FreeBSD-käyttöjärjestelmäydin löytyi: %s\n Linux-levykuva löytyi: %s\n Teema löytyi: %s\n Freetype-virhe %d ladattaessa glyph 0x%x kohteelle U+0x%x%s Jäädytä ATA-turvallisuusasetukset uudelleenkäynnistykseen asti. Perjantai Gi GNU GRUB -versio %s GRUB-alkulatausvalikko GRUB ei vielä tiedä, kuinka tämä kone pysäytetään! GRUB-emulaattori. GRUBDEVICE=PLAN9DEVICE Roskaa kohteessa ARGP_HELP_FMT: %s Tuota GRUB-näppäimistöasettelu Linux-pääteikkuna-asettelusta. Tuota PBKDF2-salasanahajakoodausmerkkijono. Tuota grub config-tiedosto Tuota erillinen levykuva (sisältäen kaikki moduulit) valitussa muodossa Hae TIEDOSTOn crc32-tarkistussumma. Hae levyvälimuistitiedot. Hae/aseta ATA-levyparametrit. gibitavua gibitavua/s HAJAKOODAUS VIHJE Pysäytä järjestelmä, jos mahdollista käyttäen APM:ia. Pysäyttää tietokoneen.  Tämä komento ei toimi kaikissa mikro-ohjelmistototeutuksissa. Käsittele N tavua tulostetiedostossa. Hei Maailma Hercules  TUNNISTE LEVYKUVA1 [LEVYKUVA2 ...] LIITÄNTÄPISTE IMAGE_PATH KOMENNOT Tuo ZFS-käärinavain, joka on tallennettu TIEDOSTOon. Virheellinen virtuaalilaite: tyyppiä ei ole käytettävissä Lisää moduuli. Asenna GRUB levyasemaasi. Asennus on päättynyt. Virheitä ei löytynyt. Virheellinen paluuviite Virheellinen merkkiluokkanimi Virheellinen tietojen keräysmerkki Virheellinen komento %s.
 Virheellinen \{\}-sisältö Virheellinen laite ”%s”.
 Virheellinen levylukumäärä.
 Virheellinen edeltävä säännöllinen lauseke Virheellinen lukualueen loppu Virheellinen säännöllinen lauseke Kutsu esiin käyttäjäasetusreititys. Ki YDIN ARGUMENTIT NÄPPÄIMISTÖ_NÄPPÄIN Näppäimistönäppäin tämän rivin nopeaa alkulatausta varten. kibitavua kibitavua/s Lehtivirtuaalilaite (tiedosto tai levy) Perinne-”ask”-parametriä ei enää tueta. Selite: mask/position=red/green/blue/reserved Tuotetun hajakoodausmerkkijonon pituus Salt-siemenen pituus Luettele DNS-palvelimet Luettele PCI-laitteet. Luettele kaikki tiedostot. Luettele käytettävissä olevat videotilat. Jos resoluutio on annettu, näytä vain tiloja, jotka täsmäävät siihen. Luettele coreboot-taulukot. Luettele laitteet ja tiedostot. Luettele laitteet tai tiedostot. Luettele laitteet. Luettele tiedostot PATH-muuttujassa. Luettele mikro-ohjelmiston tarjoama muistikuvaus. Tuettujen videotilojen luettelo: Luettelo käyttäjistä, joiden sallitaan alkuladata tämä kohde. Luettele tai valitse syötepääte. Luettele tai valitse tulostepääte. Luettele nykyiset muuttujat. Luettele ladatut kirjasimet. Luettele muuttujat ympäristölohkotiedostosta. Lataa 64-bittinen XNU-levykuva. Lataa BIOS-vedos. Lataa FreeBSD-ymp. Lataa FreeBSD-ydinmoduuli (ELF). Lataa FreeBSD-ydinmoduuli. Lataa FreeDOS-kernel.sys. Lataa Linux. Lataa NTLDR tai BootMGR. Lataa NetBSD-ydinmoduuli (ELF). Lataa NetBSD-ydinmoduuli. Lataa Plan9-ydin. Lataa XNU-laajennushakemisto. Lataa XNU-laajennuspakkaus. Lataa XNU-laajennus. Lataa XNU-levykuva. Lataa XNU-ramlevy. Käyttöjärjestelmässä se on käytettävissä nimellä md0. Lataa ”device-properties”-vedos. Lataa PXE-levykuva. Lataa näppäimistösijoittelu. Lataa monialkulataus 2 -ydin. Lataa monialkulataus 2 moduuli. Lataa monialkulatausydin. Lataa monialkulatausmoduuli. Lataa tervetulokuva XNU:lle. Lataa XNU-lepotilalevykuva. Lataa ja alusta EFI-emulaattori. Lataa toinen alkulatauslataaja. Lataa toinen config-tiedosto, mutta hae vain valikkorivit. Lataa toinen config-tiedosto muuttamatta asiayhteyttä, mutta hae vain valikkorivit. Lataa toinen config-tiedosto muuttamatta asiayhteyttä. Lataa toinen config-tiedosto. Lataa toinen coreboot-kuorma Lataa taustakuva aktiivipäätteelle. Lataa tietokoneen ACPI-taulut ja argumenttien määrittelemät taulut. Lataa initrd-tiedosto. Lataa kOpenBSD-ramlevy. Lataa FreeBSD-käyttöjärjestelmäydin. Lataa NetBSD-käyttöjärjestelmäydin. Lataa OpenBSD-käyttöjärjestelmäydin. Lataa vain pilkulla erotetulla luettelolla määriteltyjä tauluja. Lataa sama tiedosto useilla tavoilla. Lataa muuttujat ympäristölohkotiedostosta. Lataa zfs-salausavain. Ladatut kirjasimet: Ladataan GNU Mach ... Ladataan Linux %s käyttöjärjestelmäydin ... Ladataan Xen %s ... Ladataan alustavaa ramlevyä ... Ladataan FreeBSD %s käyttöjärjestelmäydin ... Ladataan Illumos-käyttöjärjestelmäydin ... Ladataan Hurd ... Mi MAC-todentaminen epäonnistui VALIKKORIVI on numero tai valikkoriviotsikko tai valikkorivitunniste. MODUULI MODUULIT Sähköposti-xorriso-tuki vaatii osoitteen <bug-xorriso@gnu.org>. Tee GRUB CD-ROM-, levy-, muistitikku- ja levykealkuladattava levykuva. Tee GRUB-näppäimistösijoittelutiedosto. Tee alkuladattava GRUB-levykuva. Tee tiedostosta virtuaalinen levyasema. Tee osiosta aktiivinen Hallinnoi BIOS-asemakuvauksia. Pakolliset tai valinnaiset argumentit pitkille valitsimille ovat pakollisia tai valinnaisia myös kaikille vastaaville lyhyille valitsimille. Käsittele PCI-laitteita. KOMENNON käyttämä mitattu aika Muisti loppui Muistityyppi: DDR2. Muistityyppi: Tuntematon. Valikkorivin tunniste. Valikkoriviä ei ole määritelty. Valikkorivin tyyppi. mebitavua mebitavua/s Minimaalista BASH-kaltaista rivimuokkausta tuetaan. Hae ensimmäiselle sanalle SARKAIN-painikkeella luettelot mahdollisista komentojen täydennyksistä. Kaikkialla muualla SARKAIN-painike luettelee mahdolliset laite- tai tiedostotäydennykset. %s Minimaalista Emacs-kaltaista näyttömuokkausta tuetaan. SARKAIN-painike luettelee täydennykset. Alkulataa näppäimillä Ctrl-x tai F10, komentoriville näppäimillä Ctrl-c tai F2 tai hylkää muokkaukset ja palaa valikkoon ESC-painikkeella. Puuttuvat argumentit
 Puuttuva syötetiedosto
 Maanantai Kaksivärinäyttö  Enemmän kuin yksi asennuslaite? Enemmän kuin yksi valikkorivi? Liitä salauslaite. Liitä kaikki taltiot ”boot”-lippu asetettuna. Liitä kaikki. UUID:n liittämä. Liitä salauslaitteet. NIMI NIMI [MUUTTUJA] [VIHJEET] NUM SEKUNTIEN_MÄÄRÄ Nimi	Viitelaskuri	Riippuvuudet
 Kotoperäiset levyajurit ovat käytössä. Kieltäydytään käyttämästä mikro-ohjelmistolevyrajapintaa. Verkkoyhteyskäytännöt: Uusi MBR on kirjoitettu levylle ”%s”
 CS5536 ei löytynyt FPSWAta ei löytynyt Alkulatausaikaiset tilastot eivät ole käytettävissä
 Komentoa ei ole määritelty.
 Laitetta ei ole annettu.
 Levyvälimuistitilasto ei ole käytettävissä
 Yhtään kiintolevyä ei ole kuvattu uudelleen Tuntematon tiedostojärjestelmä havaittu Ei täsmäystä Polkua ei ole määritelty.
 Polkua tai laitetta ei ole määritelty.
 Ei edellistä säännöllistä lauseketta Ei virtuaalilaitepuuta saatavilla Ei-ketju 4  Komennolle ei ole riittävästi parametreja.
 Yhdistä nyt etävikajäljitin. PBKDF2-iteraatioiden lukumäärä Käyttöjärjestelmälevy #num ------> GRUB/BIOS-laite Käyttöjärjestelmätiedoston %s avausvirhe: %s Valitsin -- vaihtaa alkuperäiseen xorriso-komentotilaan. Valitsimet: Hakualueen ulkopuolella: %d
 Korvautumisalueen ulkopuolella (%d, %d)
 Ohita Plan9-laitteiden arvattu kuvaus. Pi OSIOKOMENNOT POLKU Salasanasi PBKDF2-hajakoodaus on %s
 PORTTI PORTTI ARVO [PEITE] JULKISEN_AVAIMEN_TUNNISTE Pakattu  Jäsennä perinneasetus uudessa asiayhteydessä Jäsennä perinneasetus uudessa asiayhteydessä ottaen vain valikkorivit Jäsennä perinneasetus samassa asiayhteydessä Jäsennä perinneasetus samassa asiayhteydessä ottaen vain valikkorivit Osanumero: %s.
 Osio %d on nyt aktiivinen. 
 Osio %s: Osiotyyli ”%s” ei tue upotusta Polku: %s
 Polku: ei ole saatavilla Suorita KOMENNOT osiolla.
Käytä ”parttool OSIO help” käytettävissä olevien komentojen luetteloimiseksi. Suorita DNS-haku Suorita automaattinen IPV6-asetus Suorita sekä suorat että käänteiset kuvaukset. pebitavua pebitavua/s Planar  Soita sävelmä. Älä käytä vanhaa otsikkoa ”%s” GRUB_DEFAULT-määrittelyksi, käytä ”%s” (versioille ennen 2.00) tai ”%s” (versiolla 2.00 ja myöhäisemmille) Varanto-GUID: %016llx
 Varanto-GUID: ei saatavilla Varantonimi: %s
 Varantonimi: ei saatavilla Varantotila: aktiivinen Varantotila: tuhottu Varantotila: viety Varantotila: taso 2 ARC-laite Varantotila: potentiaalisesti aktiivinen Varantotila: varattu kuumalle varaosalle Varantotila: ei saatavilla Varantotila: alustamaton Mahdollisia argumentteja ovat: Mahdollisia komentoja ovat: Mahdollisia laitteita ovat: Mahdollisia tiedostoja ovat: Mahdollisia osioita ovat: Mahdollisia asioita ovat: Ennenaikainen säännöllisen lausekkeen loppu Jatka painamalla mitä tahansa näppäintä... Käynnistä xnu painamalla mitä tahansa näppäintä Paina enter-näppäintä valitun käyttöjärjestelmän alkulataamiseksi, ”e” komentojen muokkaukseen ennen alkulatausta ja ”c” komentoriville. Paina enter-näppäintä valitun käyttöjärjestelmän alkulataamiseksi, ”e” komentojen muokkaukseen ennen alkulatausta ja ”c” komentoriville. Palaa edelliseen valikkoon ESC-näppäimellä. Tulosta muistitiedot. Tulosta ZFS-tiedot laitteesta LAITE. Tulosta ZFS-BOOTFSOBJ tai tallenna se MUUTTUJAan Tulosta lohkoluettelo. Tulosta ja suorita lohkoargumentti. Tulosta paluujälki. Tulosta aseman identiteetti ja asetukset. Tulosta koot ihmisen luettavassa muodossa. Koesta laitetiedot annetulle polulle (tai laitteelle, jos valitsin -d on annettu). coreboot-taulukkoja pitävä RAM-muisti mikro-ohjelmistokoodia pitävä RAM-muisti RAM-välinumero %d
 REGEXP-lauseke MERKKIJONO ROM-levykuva on läsnä. Lue 16-bittinen arvo OSOITTEESTA. Lue 16-bittinen arvo portista PORTTI. Lue 32-bittinen arvo OSOITTEESTA. Lue 32-bittinen arvo portista PORTTI. Lue 8-bittinen arvo OSOITTEESTA. Lue 8-bittinen arvo portista PORTTI. Lue vain LENGTH-tavua. Uudelleenkäynnistys epäonnistui Alkulataa mikro-ohjelmistoasetusvalikkoon. Alkulataa tietokone uudelleen. Kirjoita salasana uudelleen:  Rekisteri %x / %x:%02x.%x on %x
 Säännöllinen lauseke on liian suuri Poista DNS-palvelin Poista moduuli. Poista ympäristömuuttuja. Poista kaikki muistialueet määritellyltä alueelta. Renderoi Apple .disk_label. Ilmoita vioista (englanniksi) osoitteeseen %s.
Ilmoita käännösvirheistä osoitteeseen <translation-team-fi@lists.sourceforge.net>.
 Ilmoita vioista (englanniksi) osoitteeseen <bug-grub@gnu.org>. Ilmoita käännösvirheistä osoitteeseen <translation-team-fi@lists.sourceforge.net>. Pyydettiin sarjapääteikkuna, mutta GRUB_SERIAL_COMMAND on määrittelemätön. Käytetään oletusparametreja. Palauta kaikki kuvaukset oletusarvoihin. Nouda laitetiedot. Palaa funktiosta. Palaa IEEE1275 -kehotteelle. Suorita ”gdb %s %d”, ja aseta ARGS.HOLD nollaksi.
 Suorita ”go” GRUB:in aloittamiseksi uudelleen. SEKUNTIA LYHYTNIMI LYHYTNIMI KORTTI OSOITE [LAITTEISTO-OSOITE] LYHYTNIMI NET [RAJAPINTA] gw YHDYSKÄYTÄVÄ] KOKO SOURCE|-u UUID|-a|-b MERKKIJONO Lauantai Tallenna luettu arvo muuttujaan MUUTTUJANIMI. Tallenna muuttujat ympäristölohkotiedostoon. Sano ”Hei Maailma”. Etsi laitteita UUID:n avulla. Jos MUUTTUJA on määritelty, ensimmäinen löydetty laite asetetaan muuttujaan. Etsi laitteita tiedoston avulla. Etsi laitteita tiedostojärjestelmän UUID-tunnisteen avulla. Etsi laitteita tiedostojärjestelmänimiön avulla. Etsi laitteita tiedoston, tiedostojärjestelmänimiön tai tiedostojärjestelmän UUID-tunnisteen avulla. Jos valitsin --set on määritelty, ensimmäinen löydetty laite asetetaan muuttujaan. Jos mitään muuttujanimeä ei ole määritelty, käytetään arvoa ”root”. Etsi laitteita tiedoston avulla. Jos MUUTTUJA on määritelty, ensimmäinen löydetty laite asetetaan muuttujaan. Etsi laitteita nimiön avulla. Jos MUUTTUJA on määritelty, ensimmäinen löydetty laite asetetaan muuttujaan. Sektori %llu on jo raid-ohjaimen ”%s” käyttämä, vältä sektoria. Pyydä valmistajaa olemaan tallentamatta tietoja MBR-väliin Sektori %llu on jo ohjelman ”%s” käyttämä, vältä sektoria. Tämä ohjelmisto saattaa aiheuttaa alkulatauksen tai muita pulmia tulevaisuudessa. Valitse laite sen väyläsijainnin avulla. Valitse laite myyjä- ja laitetunnisteiden avulla. Aseta kehittynyt virranhallinta (APM)
(1=matala, ..., 254=korkea, 255=pois käytöstä). Aseta automaattinen akustinen hallinta (AAM)
(0=pois, 128=hiljaa, ..., 254=nopea). Aseta RSDP:n, XSDT:n ja RSDT:n OEMID-kenttä. Aseta RSDP:n, XSDT:n ja RSDT:n OEMTABLE-tunniste. Aseta RSDP:n, XSDT:n ja RSDT:n OEMTABLE-versio. Aseta ”hidden”-lippu osiotyypissä Aseta muuttuja paluuarvoon. Aseta muuttuja ensimmäiseen löydettyyn laitteeseen. Aseta ympäristömuuttuja. Aseta taustaväri aktiivipäätteelle. Aseta RSDP:n, XSDT:n ja RSDT:n luojakenttä. Aseta RSDP:n, XSDT:n ja RSDT:n luojaversio. Aseta vianjäljitysympäristömuuttuja. Aseta asema lepotilaan. Aseta asema valmiustilaan. Aseta sijaintiparametrit. Aseta juurilaite. Aseta valmiustila-aikakatkaisu
(0=pois, 1=5 s, 2=10 s, ..., 240=20 min., 241=30 min., ...). Aseta TERM-terminfo-tyypiksi TYYPPI.
 Aseta oletusalkulatausvalikkorivi GRUB:lle, vain seuraavaa alkulatausta varten. Aseta oletusalkulatausvalikkorivi GRUB:lle Aseta sarjaporttiosoite. Aseta sarjaportin pariteetti. Aseta sarjaporttinopeus. Aseta sarjaportin stop-bitit. Aseta sarjaportin sanapituus. Aseta sarjayksikkö. Aseta levykuvat alkulatamaan laitteesta LAITE.

Tätä ohjelmaa ei pitäisi normaalisti suorittaa itse.  Käytä sen sijaan ohjelmaa grub-install. Aseta käyttäjäsalasana (PBKDF2).  Aseta käyttäjän salasana (pelkkänä tekstinä). Ei suositella turvattomana. Aseta muuttuja käyttäjäsyötteellä. Aseta muuttujat. Asetetaan osiotyypiksi 0x%x
 Vaihda sijaintiparametreja. Näytä ACPI-tiedot. Näytä APM-tiedot. Näytä CBMEM-pääteikkunasisältö. Näytä opasteviesti. Näytä pitkä luettelo yksityiskohtatiedoilla. Näytä TIEDOSTOn sisältö heksadesimaalisena. Näytä ladatut moduulit. Näytä muistisisältö. Näytä ATA IDENTIFY-sektorin raakasisältö. Näytä tiedoston tai muistin raakasisältö. Näytä tiedoston sisältö. Näytä nykyiset kuvaukset. Näytä tämä viesti. Näytä vain versio 1:n taulut. Näytä vain version 2 ja version 3 taulut. Sulkeutuminen epäonnistui Simuloi grub-legacy ”initrd” -komentoa Simuloi grub-legacy ”kernel” -komentoa Simuloi grub-legacy ”modulenounzip” -komentoa Simuloi grub-legacy ”password” -komentoa Simuloi grub-legacy ”password” -komentoa valikkorivitilassa Ohita N tavua tulostetiedostosta. Hyppää siirrososoitetavujen yli tiedoston alusta. Väli %d avattu
 Löytyi jotain Hurd-materiaalia, mutta ei kylliksi alkulataukseen. Määrittele tiedostonimi. Määritä käytettävä hajakoodaus. Määritä yksi tai useampia kirjasintiedostoja ladattavaksi. Määritä koko jokaiselle lukutoiminnolle Määritä syötetiedostojen lukumäärä. Nopeus: %s 
 Käynnistä GDB-tynkä annetussa portissa Pysäytä GDB-tynkä Tallenna täsmäävä komponentti-NUMERO muuttujaan VARNAME. Onnistui Sunnuntai Vaienna normaalituloste (varoitukset jäävät). Vaihda alkuperäisiin levyajureihin. Jos yhtään moduulia ei ole määritelty, käytetään oletusjoukkoa (pata,ahci,usbms,ohci,uhci,ehci) Syntaksivirhe rivillä %u
 Syntaksivirheita havaittu tuotettaessa GRUB-asetustiedostoa.
Varmista, että tiedostoissa /etc/default/grub ja /etc/grub.d/*
ei ole mitään virheitä tai tee vikailmoitus tiedosto %s
liitteenä. Järjestelmähallintaväyläohjain siirräntätila on osoitteessa 0x%x
 Ti KOHDE Kohdemuotoa ei ole määritelty (käytä valitsinta -O). Päätteellä on määritelty geometria. Pääte on vain ASCII-pääte [oletus]. Pääte on loogisesti järjestetty UTF-8. Pääte on visuaalisesti järjestetty UTF-8. Koesta USB-tuki. Testaa bitti BYTE:BIT CMOS-muistissa. Testaa tiedoston lukunopeus Koesta, jos REGEXP-lauseke täsmää MERKKIJONOon. Koesta video-alijärjestelmä WxH-tilassa. Koesta video-alijärjestelmä. Vain teksti  Tiedostot ovat identtiset.
 Korostettu valikkorivi suoritetaan automaattisesti %d sekunnin kuluttua. Kuka tahansa käyttäjä voi alkuladata tämän kohteen. Tämä vaatii asetuksen GRUB_DEFAULT=saved tiedostossa %s/default/grub.\n Torstai tebitavua tebitavus/s Työkalu ympäristölohkon muokkaamiseen. Flash-muistin kokonaiskoko: %d tavua.
 Jäljessä oleva kenoviiva Muunna 64-bittiset UUID:t XNU:lle sopivaan muotoon. Jos valitsin -l on annettu, pidä se pienenä kirjaimena kuten blkid tekee. Muunna järjestelmätiedostonimi GRUB-tiedostonimeksi. Käännä merkkijonot nykyisillä asetuksilla. Lisätietoja komennolla ’%s --help’ tai ’%s --usage’.
 Tiistai KÄYTTÄJÄ SALASANA KÄYTTÄJÄ PBKDF2_SALASANA KÄYTTÄJÄNIMI[,KÄYTTÄJÄNIMI] UTF-8 Ei kyetä luomaan putkea: %s Ei kyetä määrittelemään alustaasi. Käytä valitsinta --target. Ei kyetä fork-kutsumaan: %s Ei kyetä avamaan virtaa kohteelta %s: %s Ei kyetä noutamaan varantotilaa Pura tiedoston tiivistys. Pura tiedoston tiivistys ennen tarkistussumman laskemista. Tuntematon osoitetyyppi %d
 Tuntematon komento ”%s”.
 Tuntematon tiivistysmuoto %s Tuntematon koodaus Tuntematon ylimääräinen argumentti ”%s”. Tuntematon gsub-kirjasinominaisuus 0x%x (%s)
 Tuntematon näppäimistön etsintäkoodi 0x%02x
 Tuntematon näppäimistön etsintätunniste %s
 Tuntematon järjestelmävirhe Tuntematon videotila  Tuntematon virtuaalilaitetyyppi: %s
 Poista EFI-emulaattorilataus. Pariton ( tai \( Pariton ) tai \) Pariton [ tai [^ Pariton \{ Tunnistamaton valitsin ”%s”\n Tunnistamaton varantotila Tukematon osoitetyyppi %d
 Tukematon peittomäärittely: %d
 Tukematon laitteisto-osoitetyyppi %d
 Tukematon levykuvamuoto Tukematon korvauslippu: 0x%x
 Tukematon korvausmäärittely: %d
 Tukematon korvaustyyppi: %d
 Käyttö: Käyttö: %s -o TULOSTE CKBMAP_ARGUMENTIT...\n Käyttö: %s LAITE
 Käyttö: %s [SYÖTETIEDOSTO [TULOSTETIEDOSTO]]
 Käyttö: %s [VALITSIN] VALIKKORIVI\n Käyttö: %s [VALITSIN]\n Käytä CD-ROM:ia juurena. Käytä GDB-etävianjäljitintä eikä DDB:tä. Käytä MERKKIJONOa valikkorivirunkona. Käytä sisäänkäännettyä root-laitetta. Käytä sarjapääteikkunaa. Käytä näppäimiä %C ja %C valitsemaan korostettu valikkorivi. MUUTTUJA RAJAPINTA NUMERO KUVAUS MUUTTUJANIMI Lavea loppulaskenta. Varmista ulkopuolinen allekirjoitus. Versio %u.%u
32-bittinen CS = 0x%x, pituus = 0x%x, siirrososoite = 0x%x
16-bittinen CS = 0x%x, pituus = 0x%x
DS = 0x%x, pituus = 0x%x
 Virtuaalilaite on taantunut Virtuaalilaite vioittui Virtuaalilaite ei ole verkossa Virtuaalilaite on verkossa Virtuaalilaite poistettiin VAROITUS: pääteikkunaa ei ole saatavissa käyttöjärjestelmään VAROITUS: alustakohtaista asennusta ei ole suoritettu VAROITUS: tukemattomat kirjasinominaisuusparametrit: %x
 LEVEYSxKORKEUS. Odota tietty sekuntimäärä. Odota näppäimen painallusta jokaisen tulosterivin jälkeen. Varoitus: Varoitus: virheellinen taustaväri ”%s”
 Varoitus: virheellinen edustaväri ”%s”
 Varoitus: syntaksivirhe (puuttuu /-merkki) värinimiparissa ”%s”
 Keskiviikko Windows NT/2000/XP (-lataaja) Windows Vista/7 (-lataaja) Kirjoita 16-bittinen ARVO OSOITTEESEEN. Kirjoita 16-bittinen ARVO porttiin PORTTI. Kirjoita 32-bittinen ARVO OSOITTEESEEN. Kirjoita 32-bittinen ARVO porttiin PORTTI. Kirjoita 8-bittinen ARVO OSOITTEESEEN. Kirjoita 8-bittinen ARVO porttiin PORTTI. Kirjoitettu SPD-tavuja: %d tavua.
 Xen hypervisor, versio %s YUV  Sinun on määriteltävä vähintään yksi komento.
 Sinun on asetettava ”SystemPartition” ja ”OSLoader” manuaalisesti. Upotettava alueesi on epätavallisen pieni.  Tiedosto core.img ei mahdu siihen. Xorriso-ohjelmasi ei tue valitsinta ”--grub2-boot-info”. Jotkut ominaisuudet ovat poissa käytöstä. Käytä xorriso-ohjelmaversiota 1.2.9 tai sitä myöhäisempää. Xorriso-ohjelmasi ei tue valitsinta ”--grub2-boot-info”. Ydinvedoskuvasi on liian suuri. Alkulataus levynä on otettu pois käytöstä. Käytä xorriso-ohjelmaversiota 1.2.9 tai sitä myöhäisempää. [--append|--remove] [PÄÄTE1] [PÄÄTE2] ... [--force|--bpb] TIEDOSTO [--md5] SALASANA [TIEDOSTO] [--no-mem-option] [--type=TYYPPI] TIEDOSTO [ARGUMENTTI ...] [-1|-2] [--exclude=TAULU1,TAULU2|--load-only=TAULU1,TAULU2] TIEDOSTO1 [TIEDOSTO2] [...] [-c TIEDOSTO [-p ETULIITE]] [TIEDOSTO1 [TIEDOSTO2 ...]] [-d] LAITENIMI TIEDOSTO. [-e|-n] MERKKIJONO [-f TIEDOSTO] [-f TIEDOSTO] muuttuja_nimi [...] [-f|-l|-u|-s|-n] [--hint VIHJE [--hint VIHJE] ...] NIMI [-h|-p|-r] [TIEDOSTO] [-l] GRUBUUID [MUUTTUJANIMI] [-l|-h|-a] [TIEDOSTO ...] [-m (stretch|normal)] TIEDOSTO [-s SIJAINTI]... [POLKU|LAITE] [-s SIJAINTI] [-d LAITE] [-v MUUTTUJA] REKISTERI[=ARVO[:PEITE]] [-s KOKO] TIEDOSTONIMI [OSOITE|comYKSIKKÖ][,NOPEUS] [ARGUMENTTI] [KORTTI [LAITTEISTO-OSOITE]] [KORTTI] [ENVVAR=ARVO] [ENVVAR] [NÄPPÄINLYÖNTI1] [NÄPPÄINLYÖNTI2] ... [MODUULI1 MODUULI2 ...] [NUMERO:]MUUTTUJANIMI [NUM] [VALITSIMET...] [VALITSIMET] [VALITSIMET] LEVY [VALITSIN] TIEDOSTO_TAI_LAITE [VALITSIMET] KIRJASIN_TIEDOSTOT [VALITSIN]... [MODUULIT] [VALITSIN]... [POLKU|LAITE] [VALITSIMET] [POLKU] [MALLI ...] [KÄYTTÄJÄLUETTELO] [ARVO]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] PÄÄTE [TYYPPI]] [[vuosi-]kuukausi-päivä] [tunti:minuutti[:sekunti]] [väylä]:[väli][.funktio] [myyjä]:[laite] ”cryptomount”-komento epäonnistuu: %s ”loopaback”-komento epäonnistui: %s ”obppath” ei löytynyt kohteen ”%s” äitihakemistoista, ei ole havaittu IEEE1275-nimeä arvo liitettiin argumenttiin ”%s” vaikka se ei vaadi argumenttia pääsy kielletty lisää NOTE-segmentti kohteelle CHRP IEEE1275 osoite osoitetta ei löytynyt yritetään lukea tai kirjoittaa levyn ”%s” ulkopuolella yritys lukea tai kirjoittaa osion ulkopuolelle yritys lukea tiedoston lopun jäljestä yritys etsiä tiedoston ulkopuolella yritetään lukea ydinlevykuvaa ”%s” GRUB:sta yritetään lukea ydinlevykuvaa ”%s” GRUB:sta uudelleen käytettävissä oleva RAM-muisti käytettävissä olevat muodot: virheellinen allekirjoitus base_addr = 0x%llx, pituus = 0x%llx, %s
 base_addr = 0x%llx, pituus = 0x%llx, tyyppi = 0x%x
 bittikartta ”%s” on tukematonta muotoa blocklist TIEDOSTO lohkoluettelot ovat virheellisiä lohkokoko on jaollinen numerolla 512 break 0 -silmukasta uloshyppääminen epäonnistui ei voi määrittellä tiedostojärjestelmää kohteessa %s ei kyetä löytämään komentoa ”%s” salaustaltion ”%s” liittäminen epäonnistui: %s ei voi avata tulostekohdetta ”%s”: %s ei voida avata tiedostoa %s, indeksi %d: virhe %d lohkoluetteloiden noutaminen epäonnistui ei voida noutaa lohkoluetteloja: %s ei voi tiivistää käyttöjärjestelmäytimen levykuvaa ei voida löytää GRUB-levyasemaa kohteelle %s. Tarkista device.map-tiedostosi ei voida löytää laitetta kohteelle %s (onko /dev -liitetty?) ei kyetä saamaan translator-komentoriviä polulle ”%s”: %s ei voi avata käyttöjärjestelmätiedostoa ”%s”: %s ei voi avata kohdetta ”%s”: %s ei voida lukea ydinlevykuvaa ”%s” oikein ei voi lukea kohdetta ”%s”: %s ei voi nimeä tiedostoa %s nimellä %s alkuperäisen hakemiston palauttaminen epäonnistui ”%s”-haku epäonnistui: %s ei voida stat-kutsua ”%s”: %s ei voida kirjoittaa CD-ROM -levylle ei voida kirjoittaa kohteeseen ”%s”: %s ei voida kirjoittaa vakiotulosteeseen: %s korttia ei löytynyt cat TIEDOSTO tarkistussummatodentaminen epäonnistui valitse ydinlevykuvalle käytettävä tiivistys cmp TIEDOSTO PAIKALLINEN comYKSIKKÖ[,NOPEUS] vertailu epäonnistui siirrososoitteessa %llu yhteys kielletty yhteysaikavalvonta muunna vahvennetuksi kirjasimeksi ydinlevykuva on liian iso (0x%x > 0x%x) core.img -versiotäsmäämättömyys kohteen %s asettaminen automaattisesti epäonnistui monilaitetiedostojärjestelmän välttämättömän jäsenlaiteen löytäminen epäonnistui geli-kuluttajan löytäminen epäonnistui geom ”part” -luokan avaus epäonnistui geom-laitteen avaus epäonnistui ELI-metatietojen lukeminen epäonnistui UUID-tunnisteen noutaminen epäonnistui geli UUID -tunnisteen noutaminen epäonnistui satunnaisdatan noutaminen salt-siemeneksi epäonnistui verkkopaketin lähettäminen epäonnistui cp TIEDOSTO PAIKALLINEN crc TIEDOSTO salausvirhenumero %d cygwin_conv_path() epäonnistui poista laitekuvaus, jos se on jo olemassa kohde saavuttamaton laitelukumäärä ylittää rajan ota vihjeet pois käytöstä levyä ”%s” ei löytynyt levyä ei ole olemassa, joten palataan takaisin osiolaitteeseen %s käytettävä levyasemamoduuli (biosdisk tai alkuperäinen). Tämä valitsin on käytettävissä vain BIOS-kohteella. diskboot.img:n koon on oltava %u tavua älä koesta tiedostojärjestelmiä laitteessa LAITE verkkotunnuskomponentti on liian pitkä älä päivitä LED-tilaa valmis upota TIEDOSTO kuin aikaisena asetuksena upota TIEDOSTO julkisena avaimena allekirjoitustarkistukseen upottaminen ei ole mahdollista, mutta sitä vaaditaan RAID- ja LVM-asennuksessa upottaminen ei ole mahdollista, mutta sitä vaaditaan asennuksessa kahdelle eri levyasemalle ota käyttöön ARCS (big-endian mips-koneet, useimmiten SGI) -alkulataus. Ottaa pois käytöstä HFS+, APM, sparc64 ja alkulatauksen levykuvana i386-pc:lle ota käyttöön sparc-alkulataus. Ottaa pois käytöstä HFS+, APM, ARCS ja alkulatauksen levykuvana i386-pc:lle enter-näppäin: alkulataus, ”e”: valitsimet, ”c”: komentorivi ympäristölohko on liian pieni virhe: %s.
 oleta GRUB-levykuvien olevan hakemiston DIR/%s alla eikä %s-hakemiston sääntöjen mukaisen ”%s”-polun saaminen epäonnistui häiriö luettaessa sektoria 0x%llx kohteesta ”%s” häiriö salasanan lukemisessa häiriö kirjoitettaessa sektoria 0x%llx kohteeseen ”%s” epätosi viallinen RAM-muisti (BadRAM) tiedostoa ”%s” ei löytynyt odotettiin tiedostonimeä otaksuttiin tiedostonimeä tai tahtia ja nuotteja tiedostojärjestelmä ”%s” ei tue nimiöitä tiedostojärjestelmä ”%s” ei tue lohkoluetteloja mikro-ohjelmistolevykuva on liian iso pakota automaattivihjeet odotettiin neljä argumenttia fwstart.img ei täsmää tunnettuun hyvään versioon, etene omalla riskillä tuota levykuva muodossa MUOTO anna lyhyt käyttöviesti anna tämä opasteluettelo annettu argumentti on järjestelmälaite, ei polku grub-mkimage on käännetty ilman XZ-tukea grub> jumittuu SECS sekuntia (oletus 3600) hex TIEDOSTO ohiys bittikartta-strikes-määrittelyt ladatessa virheellinen pääteikkunamittasuhdemäärittely asenna GRUB-levykuvat hakemistoon DIR/%s eikä %s-hakemistoon asenna myös silloin kun havaittiin pulmia vääränmuotoinen PBKDF2-salasana virheellinen arch-riippuvainen ELF magic virheellinen arch-riippumaton ELF magic virheellinen lohkokoko virheellinen värimäärittely ”%s” virheellinen ympäristölohko virheellinen tiedostonimi ”%s” virheellinen kirjasinlukualue virheellinen rivimuoto: %s virheellinen parametri %s virheellinen ohitusarvo %lld virheellinen muuttujanimi ”%s” virheellinen videotilamäärittely ”%s” ioctl GET_ARRAY_INFO -virhe: %s ioctl GET_DISK_INFO -virhe: %s ioctl RAID_VERSION -virhe: %s käyttöjärjestelmäydinlevykuva on liian iso (0x%x > 0x%x) luettele verkko-osoitteet luettele verkkokortit luettele verkkoreitit ls POLKU lzop-tiedosto turmeltunut tee levyasemasta alkukäynnistettävä myös levykkeenä (oletus fdX-laitteille). Saattaa rikkoutua joissakin BIOS:eissa puuttuva ”%c”-symboli puuttuva pakollinen valitsin kohteelle ”%s” moduulia ”%s” ei ole ladattu moduulia ei ole ladattu nimi tarvitsee levykuvan ja liitäntäpisteen APM ei löytynyt DHCP-tietoja ei löytynyt DHCP-valitsinta %d ei löytynyt DHCP-valitsimia ei löytynyt DNS-tietuetta ei löytynyt ei vastaanotettu DNS-vastausta DNS-palvelimia ei ole asetettu kauttaviiva ”/” puuttu sääntöjenmukaisesta tiedostonimestä komentoa ei ole määritelty salausavainta ei ole saatavilla verkkokorttia ei löytynyt palvelinta ei ole määritelty sellaista osiota ei ole sopivaa videotilaa ei löytynyt ei symbolitaulua päätettä ei ole määritelty ei päätöslohkoa ydinlevykuvassa ei-sektoritasattua dataa löytyi ydintiedostosta ei ole hakemisto ei ole ensisijainen osio ei ole tavallinen tiedosto ei ole funktion sisällä odotettiin yhtä argumenttia jokin toinen ohjelmisto käyttää upotusaluetta ja siinä ei ole kylliksi tilaa core.img -tiedostolle. Sellainen ohjelmisto yrittää usein tallentaa tietoja välttääkseen havaitsemista. Suosittelemme tutkimaan asiaa muisti loppui tulosta tuotettu levykuva tiedostoon [oletus=vakiotuloste] tulostetiedosto on määriteltävä tulostetuotettu asetus TIEDOSTOon [oletus=vakiotuloste] ylivuoto havaittu salasanat eivät täsmää suorita automaattinen alkulatausasetus fyysistä taltiota %s ei löydy esilataa määritellyt moduulit MODUULIT ennenaikainen tiedoston loppu ennenaikainen tiedoston %s loppu paina CapsLock-näppäintä paina Insert-näppäintä paina NumLock-näppäintä paina ScrollLock-näppäintä paina sysRq-näppäintä paina vasemmanpuoleita alt-näppäintä paina vasemmanpuoleista ctrl-näppäintä paina vasemmanpuoleista vaihtonäppäintä paina oikeanpuoleista alt-näppäintä paina oikeanpuoleista ctrl-näppäintä paina oikeanpuoleista vaihtonäppäintä tulosta ohjelman versio tulosta versiotiedot ja poistu tulosta tämä viesti ja poistu tulosta laveilla viesteillä. julkista avainta %08x ei löydy lukuvirhe siirrososoitteessa %llu: %s lue teksti TIEDOSTOsta. verkkopalvelimelle suhteellinen alihakemisto relocation 0x%x ei ole vielä toteutettu varattu RAM-muisti nouda DHCP-valitsin ja tallenna se MUUTTUJAan. Jos MUUTTUJA on - niin tulosta arvo. TFTP-palvelimen juurihakemisto reittisilmukka havaittu tallenna ROM-levykuvat hakemistoon DIR [valinnainen] tallenna tuloste TIEDOSTOon [vaadittu] valitse face-indeksi sarjaporttia ”%s” ei löytynyt set [NIMI=ARVO ...] aseta capslock-tila aseta kirjasinsukulinja ylöspäin aseta kirjasinsukulinja alaspäin aseta kirjasinperheen nimi aseta kirjasinlukualue aseta kirjasinkoko aseta syötetiedostonimi 32-bittiselle komponentille. aseta syötetiedostonimi 64-bittiselle komponentille aseta syötetiedostonimi. Oletus on STDIN aseta insert-tila aseta numlock-tila aseta tulostetiedostonimi. Oletus on STDOUT aseta pause-tila aseta prefix-hakemisto [oletus=%s] aseta scrolllock-tila aseta ohjelman nimi koko stretch|normal symbolia ”%s” ei löytynyt tilapäinen pääteikkuna %s ei löytynyt tai terminfo ei ole käsitellyt sitä pääteikkunaa ”%s” ei löytynyt argumentti ”%s” vaatii kokonaisluvun rivi device.map ”%s” on virheellinen. Ohita se. Korjaa tai poista se device.map-tiedostostasi levyasemanimi ”%s” tiedostossa device.map on virheellinen. Sen sijasta käytetään %s. Käytä muotoa [hfc]d[0-9]* (Esim.: ”hd0” tai ”cd”) ydintiedoston ensimmäinen sektori ei ole sektoritasattu asennuslaite on irrotettava. Tämä valitsin on käytettävissä vain EFI-osiolla. osiotyyppi 0x%x ei ole kelvollinen ydintiedoston sektorit ovat liian hajallaan alkulatauspolun ”%s” koko ei ole %u ydinpolun ”%s” koko on liian suuri ydinpolun ”%s” koko on liian pieni tämä ELF-tiedosto ei ole oikeaa tyyppiä tämä GPT-osionimiö ei sisällä BIOS-alkulatausosiota; upottaminen ei ole mahdollista tällä LDM:llä ei ole upotettavaa osiota; upottaminen ei ole mahdollista! tässä msdos-tyylisessä osionimiössä ei ole MBR:n jälkeistä aukkoa; upottaminen ei ole mahdollista odotettiin kolmea argumenttia aikavalvonta avattaessa kohdetta ”%s” aikavalvonta laukesi luettaessa kohdetta ”%s” aikavalvonta: laitteisto-osoiteen ratkaiseminen epäonnistui symboliset linkit liian syvässä sisäkkäin translator ”%s” polulle ”%s” on useita ei-valitsinsanoja, ainakin ”%s” ja ”%s” translator ”%s” polulle ”%s” annetaan vain valitsimia, laiteosan löytäminen epäonnistui translator-komentorivi on tyhjä polulle ”%s” odotettiin kahta argumenttia tyyppi tiedostojärjestelmän tunnistaminen levyasemassa %s epäonnistui; turvatarkistus epäonnistui tasaamaton laitekoko odottamaton tiedoston loppu tuntematon argumentti ”%s” tuntematon tiivitys %d
 tuntematon laitetyyppi %s
 tuntematon tiedostojärjestelmä väärän tyyppinen RAID-laite ”%s” tuntematon säännöllisen lausekkeen virhe tuntematon kohdemuoto %s
 tuntematon terminfo-tyyppi ”%s” tunnistamaton DHCP-valitsinmuotomäärittely ”%s” tunnistamaton verkko-osoite ”%s” tunnistamaton verkkorajapinta ”%s” tunnistamaton numero ratkaisematon osoite %s unset [NIMI ...] tukematon HTTP-virhe %d: %s tukematon HTTP-vastaus tukematon RAID-versio: %d.%d tukematon gzip-muoto tukematon sarjaportin pariteetti tukematon sarjaporttinopeus tukematon sarjaportin stop-bittimäärä tukematon sarjaportin sanapituus käytä COLOR-muuttuja-asetusta taustavärinä käytä COLOR-muuttuja-asetusta nimiössä käytä COLOR-muuttuja-asetusta nimiötaustana käytä COLOR-muuttuja-asetusta tekstivärinä käytä DIR EFI-järjestelmäosion juurena. käytä TIEDOSTOa kirjasimena (PF2) käytä TIEDOSTOa nimiön kirjasimena käytä TIEDOSTOa alkulatauslevykuvana [oletus=%s] käytä TIEDOSTOa ydinlevykuvana [oletus=%s] käytä TIEDOSTOa laitekuvauksena [oletus=%s] käytä TIEDOSTOa niin kuin xorriso-ohjelma [valinnainen] käytä GRUB-tiedostoja hakemistossa DIR [oletus=%s] käytä MERKKIJONOa tuotenimenä Käytä MERKKIJONOa tuoteversiona. käytä tunnistetiedostoa vieläpä kun UUID on käytettävissä käytä levykuvia ja moduuleja hakemiston DIR alla [oletus=%s/<alusta>] muuttujaa ”%s” ei ole asetettu visuaalisesti järjestetty UTF-8 odota kunnes vianjäljittäjä liittyy ei jatka lohkoluetteloja väärä ELI-maaginen luku tai versio xnu_uuid LAITE xz-tiedosto vaurioitunut tai tukemattomat lohkovalitsimet et voi poistaa tätä osoitetta sinun on ladattava ydin ensin sinun BIOS-alkulatausosiosi on liian pieni; upottaminen ei ole mahdollista tiedostosi core.img on epätavallisen iso. Se ei sovi upotusalueelle. upotettava alueesi on epätavallisen pieni.  Tiedosto core.img ei mahdu siihen.                                           boot/grub/locale/fr.mo                                                                              0000600 0001750 0001750 00000367422 13417732100 0013647 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                            |'    N      Pi  #   Qi      ui     i     i     i  $   i     j  6   j     Pj     Wj  	   cj     mj     zj     j     j     j     j  .   j  .   k  %   Fk     lk     pk    k    l    m     n  8   n  '   n  7   o  F   Do  v   o  +   p     .p      ?p     `p  !   rp     p  ,   p     p     p  $   q     0q  *   Lq     wq     q     q     q     q  
   q  	   q     q     r  ,   r  ,   Fr  ,   sr  '   r  -   r      r  (   s  (   @s  )   is     s     s     s     s     s  "   s  4   t     Jt     Rt  7   _t     t     t  1   t     t     u  %   
u  '   0u  %   Xu  '   ~u     u     u     u     u     u     u     u     v     v     8v     Jv     Xv     hv     uv  3   v     v  $   v     v     v     w     !w     2w     Iw     ^w  -   vw     w  !   w     w     w     x  #   )x     Mx  `   x  Z   6y     y     y     y     y     y     y     y     y     z  0   )z  3   Zz     z     z     z     z     z     {     {     1{     G{     U{     l{     {{     {     {  %   {     {     {     {     |     |     6|     L|     [|     n|     |  *   |  3   |  1   |  1   (}  2   Z}     }      }     }  1   }     ~  #   <~     `~  "   {~  8   ~     ~     ~  	     #        4     R     e                 )                  2  "   P  P   s     Ā     ـ  H     &   7     ^     v  !   }  ,        ́     ؁     ܁  	     !     *   %     P  '   h                    т  $                   2     M     i       
     
          1   ˃                    1  3   M  >     $                       1     L     l  +             ȅ  o     #   V     z       $        Ն       '     9   3     m       z             &  8   :     s  
                       ܈     x  +             ى            "        :     K  (   \       #             ͊     ݊            "     0   9     j     o     ~  7        ŋ     ͋     ً                       0        J     ^     p       2     %   Ќ            *     6   E  +   |          ƍ     ٍ  !     d   ̎  e   1  d     i     o   f  H   ֐          2     H     Y     l                 #   ̑               &  1   8  )   j                      /                     5   4     j       K     &             4     I     f     j  D   p            '     P        8     W  	   c     m     p               4  '   Ŗ       +        (     9  )   U                    ϗ                 $   '     L     ^  "   y                 (                    "     +     -   A     o                      O   ʙ          0     H     _     m  %          )   ƚ  !     "        5     Q  +   h                    ʛ  !   ܛ               3     ?      V     w                    ל            4        L     k     }               ˝                  !   ;     ]  4   w  M     2        -     G  *   e  8        ɟ     ֟                    4  3   A  $   u  +        Ơ     ۠                    &      B     c                 D            ȣ     ϣ     ף  7     ;   .     j       !        ˤ       s        u                    Υ                    &     *     0     ٦                         ̧            '     
   C     N     ]     s     x                      H   Ѩ  L        g     z            %        ۩       #        2     O     l     u                 ̪       "     (        F     b  %   o       2               #     *   (     S     U     h  #   m            	     	     "     ;   ߬  #     <   ?     |            .     	          `        b  !   w  )        î     Ǯ     ͮ     ծ  q        T     h                         ί            "   !     D     \     v                    ϰ       #        !     >  g   Z     ±     G     a  -   ~       !          "     '     Q   >               Ƴ     ڳ                    8     U     r               ´      д                     :     U     i     z  -        ȵ       "     b     )   |               Զ  ,             5  	   :  "   D  %   g                 
          &   ·  )          5   &  ^   \       $   ո  %           ^   ӹ  _   2  }          )   ǻ  '     >     D   X  !     '     -     #        9  )   Y       )        ʽ  )     ,        >     ^     w            E     $     A   )  )   k               ο                )  q   >       :             &  `   5                                 0   1     b            )     &                  4     G  )   c       %     %     ,     '     :   >     y  -     0          .        6     H  '   ]  $     "                    *        /     7  )   >  o   h            6                    0         #  !   D  "   f  #                         !        4  
   J     U  <   o            %     >        A     J     N     T     t       d     *     (   0  ,   Y            0     6              (     6     K     _     e  0          !               $        9     R     i            $     "     $        "     ;     P      d                                             .  '   K     s       $     +     "           )   '     Q     c                 '                  .  <   B             %                         m   ,                           +     3   H  1   |       '     -          '     '   C  .   k  	                                 -     I     d                 *     ?        $  B   7  p   z       /   v            .     O      )   P     z       	          5                  '     =     X  :   r       1                  %     +     >     E     K     Z     c                      	                             #     6     P     f                 
     
     	          !     )             "     4     M     m  n     F     N   @       "               -     -     $   3  #   X  0   |  6                    (     1   <  )   n                           !   
     ,     @      \     }  %          &               0   .      _                 7     .        5  4   M  #                                 1     F  %   f                                          ,   :     g     v                           #              :  B   T                                   4  &   R     y                      &             $     ?     O  ;   c  V     +     "   "     E  &   _  !          r        2     7  /   U  H     F     w     N          (             9  I   E  )     $     ,     '        3  %   L     r     x            $     '     *        *     D     S  J   k                 -     +   /     [  $   a       "     +               -     J   =            %     "     9        F      ^  "                                       ,     ?     W     q            %                       +  %   H     n                      [        $  !   8     Z     s                                             !  /   ;  7   k  4     /             %  -   =     k  @          3             )     ;     X     h     ~  1                               	   6  	   @     J       1        L  0   j            !          "        (     4     @     V     o                                                       )  &   ?     f                      '     &        6  L   C  9          0          !   -     O     n                                        	  #     #   ;  $   _            &          !                  &     +     :  	   P  7   Z       D     ]     %   O  ,   u  [     ;     w   :  7     K     #   6 /   Z             &    U    @   ^ Q           
      +   5    a R   ~ L    .       M    d F   i                             8     K    l         2    !    #       /    C    [    l                         (   2 #   [                 )           %    = '   X '    '        0        	    ;	 -   Y	 8   	 !   	 '   	    

    "
 !   9
     [
 &   |
    
    
 .   
    
 !    B   = E    B      	 )    &        $       A 0   \      O        >       F >   R &                   
 B    9   [ (            ]   P  2 Z   "    :    *   < N   g ^        7        %        &   %    L 0   h         )    &    :        S    t         4            '       6 5   K :    5    3    6   & *   ] 4    5    6    '   * '   R    z 
    
    '    9            M   &    t     ?    %        .    2   6 .   i 2            &               1    9    Q '   b                     =        .        O    n                     .     %   >  2   d        !          4        (! v   ! s   [" #   " "   "    #    #     #    9# 	   >#     H# /   i# 9   # :   # +   $ %   :$ #   `$ )   $ (   $    $ #   $    %    /% #   I%    m%    |%    %    % (   % !   %    % %   % $   #& )   H&    r& #   & $   & )   & $   ' G   (' O   p' N   ' E   ( H   U( +   ( 6   ( -   ) >   /) ,   n) *   ) :   ) =   * P   ?*    *    *    * '   * <   *    4+ &   L+ 7   s+    +    + ;   + +   , &   D, %   k, 3   , o   ,    5-    R- k   o- 1   -    .    *. )   9. ^   c.    .    .    . 
   . 4   . @   2/     s/ 0   /    /    /    /    0 ,   60    c0    |0 +   0 1   0 ,   0 )   '1    Q1 $   f1 -   1 ?   1    1    2 -   !2 #   O2 A   s2 N   2 ?   3    D3 *   _3    3 &   3 .   3     3 -   4    L4 1   l4    4 -   (5    V5 '   t5 1   5    5    5 9   6 X   A6 '   6 -   6    6    7    7 I   7 #   8 
   18    <8    I8 %   h8    8    `9 T   9    9    9    :    3: +   J:    v:    : 8   :    : /   ;    3;    D;    R;    f;    }; B   ; P   ;    )<    1<    C< 9   [<    <    <    <    <    <    <    < 1   <    '=    >=    L=    `= H   {= ;   =     >    > F   /> K   v> B   > (   ?    .? Q  N? +   @    @    A    +B    B    C    dD    D    E     E    4E    KE    eE    E (   E ,   E     E    F    4F =   KF >   F    F    F    F    F 7   G    ;G (   KG *   tG Q   G ,   G '   H G   FH -   H 0   H .   H 2   I    OI    UI X   ]I    I    I -   I }   I '   rJ    J 	   J    J $   J    J    J    K :   L    L :   L    
M    M $   ;M    `M &   M !   M    M    M %   M     "N .   CN    rN !   N 6   N    N    N    N 7   
O    BO    HO    PO 2   XO 2   O 5   O    O    P    'P !   AP    cP c   P     P )   Q )   .Q    XQ "   vQ Q   Q "   Q ;   R 0   JR 0   {R !   R    R A   R    0S    NS    mS     S &   S     S !   S    T    T %   9T    _T !   T    T (   T "   T    U    !U c   6U 0   U    U #   U    V    %V    EV    aV #   ~V "   V (   V ,   V T   W n   pW D   W *   $X :   OX 7   X N   X "   Y $   4Y    YY    sY    Y    Y P   Y 1   
Z @   <Z #   }Z    Z    Z    Z    Z (   [ !   +[     M[    n[    [    [ \   [ W  \    \^    c^ "   k^ A   ^ N   ^ /   _ #   O_ /   s_    _ +   _    _ "   s` &   `    `    `    `    a !   &a    Ha    `a    fa    na    @b    c    #c    ?c    Ec >   Qc <   c "   c K   c    <d    Md %   ^d    d    d    d    d    d    d s   d T   ^e    e I   e    f    ,f ;   Df    f %   f 1   f 2   f *   'g    Rg    hg 5   g )   g 9   g    h (   'h 4   Ph    h    h N   h A    i 6   Bi 
   yi    i #   i >   i    j    	j    j )   $j    Nj    Sj    hj    j :   j a   j 8   4k _   mk    k )   k    l D   "l    gl    ul    l    m ,   /m D   \m    m    m 	   m    m    m    en    ~n    n    n    n    n    n -   o &   Co 1   jo    o     o    o    o %   p    Ap     `p    p )   p $   p %   p    q    q ,   r <   r 1   r    *s )   Gs    qs 2   s 5   s l   s $   at :   t    t    t    t "   u     1u "   Ru     uu !   u    u    u    u O   v    _v %   yv !   v "   v    v    v %   w C   4w    xw    w *   w {   w B   Yx 1   x    x    x ?   y *   Ey    py    ty +   }y (   y    y    y    y    y    z .   	z =   8z    vz A   z    z )   ]{ >   { D   {    |    }    }    ~    ~ F    V   	 [   ` ]    '    6   B 5   y <    .    8    &   T ;   { %    ;   ݂ :    2   T "    !    &   ̃ "    Z    2   q Z    3    "   3 #   V #   z *    +   Ʌ !        /    Y    5   @    v h    (    &     #   G !   k (        >   ҈ /       A #   ` 1    8    !    '       9 (   N 6   w     3    3    :   & 5   a O    &    -    B   <     J             7   ' 9   _ )       Í .   Ӎ     6    	   Q    [ A   d     "   7    Z H   J             1    '   א 1    .   1 /   ` #    #    (   ؑ B    2   D    w         D           ! C   7 H   {    ē    ʓ    Г +   ؓ        # w   8 ;    ;    D   (    m     <    ]   ڕ    8    >    U    s     "    <    ,    '     )   H    r A       З             , '   = (   e     !    "   Ϙ         -        N    k             %   ֙             7 7   W +    !    4   ݚ 9    .   L    { 2    !    5   ߛ )       ?    \ 6   y /    ,        =   ) !   g     *           ֝     "       & '    (   Ҟ (    &   $ %   K N   q S    O       d &   u L        ;    ;   2 I   n            ߡ '    $   " '   G $   o &    #       ߢ         +    I   K     M            /           ץ 1    U   ( 4   ~        ͦ    ݦ "    :       H    ]    u     !    E   Χ     A   ( %   j                Ѩ    ٨     	               1    B    H 	   V    `    q     +       ө &        %   & 	   L    V    _    k             +    -   ت          $   @ /   e ,    ~   « k   A [       	 *       C    K B   ` =    -    +    ;   ; D   w        ˮ     )    2    @   R            ů #   ׯ $    -     <   N 3    8    ,    8   % $   ^ :    -    3    P     )   q 5    (   Ѳ (    K   # G   o *    W    4   : /   o J    $    3    *   C #   n *    0    (    0       H )   g 1       ö    ֶ -    7       H    Z )   n )       ·    շ     /    (   > +   g h    (    4   %    Z (   s      %    2    A    &   X         "        9   ݺ     /   0 ,   `      I    j    @   c 2    )   ׼ ;    %   = '   c         4   " I   W [    \       Z i    )   \ L            N    -   Q 6    1    1    !    3   <    p    u !        *    H    N   < <    3        ^       u '        ?    4       L 1   R     3    4    '    &   ! 9   H O    &    3    1   - 0   _ F         :    <   3    p     /    *        #    #   ;    _ $            $    3        4 #   F "   j !    0                	   6    @    V     ,    &   C    j     2        #    !        #   6    Z    u 4    B    9   
 4   D 1   y     4    (     `   )     ^       	    & '   C    k     '    T           +    F &   \                     <    -    B       P &   o -    !    )           !    2    N /   m !        #             !   > &   `      !    &         *       =    \ !   { ,         /    6       R R   a H    "    5        V ,   q +    ,    *       " *   7 '   b &    '    $        =    =   Y 7        +    8       Q 4   k ,            +    !    
   ? H   J "    X    n    *   ~ 1    o    K   K     Q   J Y    +    ?   " .   b '    '    )    t    M    {       J 2   c 1    A    $   
    /     E   O         k    %       D    Z    t     "        .    (       B #   [ >    '    )           #    = )   M !   w )        #    "    "   ) 2   L *    %    "    2       & 8   E 0   ~ $    /    ;    5   @ @   v 4    D    %   1 )   W ?    Q    9    >   M )        '    +    4   & '   [     ;    "    #    R    R   q M                                   O            u  A        /   Z    *  +  +                 9    ]      P       !       	  E         m                 D    c     h         `      L  S     f      v             =            l      T        @          \                       k                    e            "                U        r  7       V  :      {    %        U           ?      N             G         {                             @  ^         I        #                                 &          `                         Y   b    u      '  B  )          S          Y          N      Y      j  @  D        0    z          T                    C        P    #                                        J    s      z          Q               H   }        c           e   !                             W     !   \    o         k       9      \  J  E              b            m       -    f                  	   w      5  X               C          4         W    >      Y           A          g         I          S  D                %               w      R        F       0      y    Q                 Z  g    a                  0     ;        )  X  W            X  J                         1     &       4  g    R                   _                    m            X         x        G  z       <      H  #                    R  7      k                      '           ^  /      ;          o  "  #                                                       3         q            Z      @      2                     j           K                  d               <                  1  `                         %         |  >  x             y  R        {              >           I             Q          r   "    .  v  h      3           q   y   :   r        ;            8                      	    P        M  M      z          f    e  p  y       <      2                  5        &                .     d  +  *         ~  4                 n  6    ,  D   W                       s                {            9     [        Q             J        p      0                b                W  u   ~                                  i     M  A    )    B                         :  -                         O          ,              L      z  w                  F                   a    r        M     |     [         >  F      	                       x  `         6   .  +           ,          U  
                  6      w       &  ?    J                         '    /        5              9  :  {       N                 /      6  ^            S    n                                       m    s  ~                                  I  [               |  V                       -           *  \    b     $  N    L  3     R            U                             o           K    _     B            3  P  L                                       ^  j  n                         K         F             
       |                           8        T          
  #  ,   (  =      i                            f              l  <  7  T   ]  x  d                        8  k                    t                           K                       2        +  q      K       '                   t  [    l  ;             X  C   G    F    %  -            *      _    j      Z  v            7    Q   B                     l   }  
  3      $                 C      e  @        P     h  E        a         h  
  "     V       N  ]                    2                      &  (   i                     :  d                 t        g    u           b                   x                             v      t                '  	  V        5    ?      f        U      g  c         1    s   )                          i                             H    =                          n      a    $                                6  j  (            !      \   .  ?                                                             y                             E     G          1                              $         k  m          -    E      [        I  .              |    }    ,    a   A    =                    `              ?             B                8            o  }                        Z                  2       i   ]           O          q                   $              e                          =      ;      w      0                    V    L      4                      ~  H  (            p  /  }         "     1  (                           l       )             >                       Y                 d              4    C  O               q  <            O                              c        h  G     9                                               o                                                                 D      u         t         5                   c               %  H      p                                             7    _           T    A                ~      v  s           r                         !  ^    p  _      ]  S      *  n    8       M                    total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s doesn't exist. Please specify --target or --directory %s doesn't look like an EFI partition.
 %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: not found %s: option '%c%s' doesn't allow an argument
 %s: option '%s' is ambiguous; possibilities: %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- --ppc PATH|--x86 FILE -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Bless DIR of HFS or HFS+ partition for PPC macs. Bless FILE of HFS or HFS+ partition for intel macs. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't create file: %s Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check if CPU supports Physical Address Extension. Check if FILE can be used as x86 multiboot kernel Check if FILE can be used as x86 multiboot2 kernel Check if FILE is ARM EFI file Check if FILE is BIOS bootsector Check if FILE is IA64 EFI file Check if FILE is hiberfil.sys in hibernated state Check if FILE is i386 EFI file Check if FILE is of specified type. Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find a free BootNNNN slot Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Default server is ${net_default_server} Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not apply any reed-solomon codes when embedding core.img. This option is only available on x86 BIOS targets. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enable/disable RTS/CTS. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Evaluate arguments as GRUB commands Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FONTS FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File size: %s
 File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Generating grub configuration file ... Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s Graft point syntax (E.g. /boot/grub/grub.cfg=./grub.cfg) is accepted HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS INSTALL_DEVICE must be system device filename.
%s copies GRUB images into %s.  On some platforms, it may also install GRUB into the boot sector. If FILENAME is `-', the default value %s is used.

There is no `delete' command; if you want to delete the whole environment
block, use `rm %s'. Import ZFS wrapping key stored in FILE. Incorrect VDEV Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s LOCALES Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List coreboot tables. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load DTB file. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load Truecrypt ISO. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load module. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... M MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MENU_ENTRY is a number, a menu item title or a menu item identifier. Please note that menu items in
submenus or sub-submenus require specifying the submenu components and then the
menu item component. The titles should be separated using the greater-than
character (>) with no extra spaces. Depending on your shell some characters including > may need escaping. More information about this is available
in the GRUB Manual in the section about the 'default' command.  MODULE MODULES Mac-style bless on HFS or HFS+ Mail xorriso support requests to <bug-xorriso@gnu.org>. Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NOT RUNNING:  NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Netboot directory for %s created. Configure your DHCP server to point to %s
 Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OPTIONS FILE OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Option -- switches to native xorriso command mode. Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] PUBKEY_ID Paletted  Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot into firmware setup menu. Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Render Apple .disk_label. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING STRING ... Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Script `%s' contains no commands and will do nothing
 Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set bit at BYTE:BIT in CMOS. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting GRUB_TIMEOUT to a non-zero value when GRUB_HIDDEN_TIMEOUT is set is no longer supported. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show CBMEM console content. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show the contents of a file. Show the current mappings. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Skip signature-checking of the environment file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Switch to native disk drivers. If no modules are specified default set (pata,ahci,usbms,ohci,uhci,ehci) is used Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 T TARGET THEMES Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This VDEV is a RAIDZ%llu
 This VDEV is a mirror This entry can be booted by any user. This requires setting GRUB_DEFAULT=saved in %s/default/grub.\n Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Transform syslinux config into GRUB one. Translate SET1 characters to SET2 in STRING. Translate to lower case. Translate to upper case. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown platform `%s-%s' Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized compression `%s' Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME VDEV element number %d isn't correct
 VDEV element number %d:
 VDEV with %d children
 Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. You've found a bug Your embedding area is unusually small.  core.img won't fit in it. Your xorriso doesn't support `--grub2-boot-info'. Some features are disabled. Please use xorriso 1.2.9 or later. Your xorriso doesn't support `--grub2-boot-info'. Your core image is too big. Boot as disk is disabled. Please use xorriso 1.2.9 or later. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [-s|--skip-sig] FILE SIGNATURE_FILE [PUBKEY_FILE] [-s|--skip-sig] PUBKEY_FILE [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [DIR] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTIONS] [SET1] [SET2] [STRING] [OPTION] SOURCE... [OPTION] [INSTALL_DEVICE] [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `%s' is not a local disk `cryptomount' command fails: %s `loopback' command fails: %s `nvsetenv' failed. 
You will have to set `boot-device' variable manually.  At the IEEE1275 prompt, type:
  %s
 `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format bless for ppc-based macs bless for x86-based macs blocklist FILE blocklists are incomplete blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't compress `%s' to `%s' can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s can't set %dx%d font size: Freetype error %d: %s cannot compress the kernel image cannot copy `%s' to `%s': %s cannot delete `%s': %s cannot find EFI directory cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot find locale `%s' cannot get translator command line for path `%s': %s cannot make temporary directory: %s cannot make temporary file: %s cannot open OS file `%s': %s cannot open `%s': %s cannot open directory `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu compress GRUB files [optional] connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. disk read fails at offset %lld, length %lld diskboot.img size must be %u bytes do not install bootsector do not probe for filesystems in DEVICE domain name component is too long don't update LED state don't update the `boot-device'/`Boot*' NVRAM variables. This option is only available on EFI and IEEE1275 targets. done embed FILE as an early config embed FILE as public key for signature checking embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enable ARCS (big-endian mips machines, mostly SGI) boot. Disables HFS+, APM, sparc64 and boot as disk image for i386-pc enable sparc boot. Disables HFS+, APM, ARCS and boot as disk image for i386-pc enabling %s support ... enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to copy Grub to the PReP partition failed to get canonical path of `%s' failed to read the sectors of the core image failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification initrd already loaded install FONTS [default=%s] install GRUB for TARGET platform [default=%s] install GRUB images under the directory DIR/%s instead of the %s directory install THEMES [default=%s] install device isn't specified install even if problems are detected install only LOCALES [default=all] install only MODULES and their dependencies [default=all] invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid argument invalid block size invalid color specification `%s' invalid device tree invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid modinfo file `%s' invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' invalid zImage ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no EFI routines are available for your platform no EFI routines are available when running in BIOS mode no IEEE1275 routines are available for your platform no SGI routines are available for your platform no `/' in canonical filename no command is specified no compression is available for your platform no decryption key available no hints available for your platform. Expect reduced performance no network card found no random number generator is available for your OS no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected only ipv4 only ipv6 other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found pre-load specified modules MODULES prefer ipv4 prefer ipv6 premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory as it will be seen on runtime [default=/]. root directory of TFTP server root directory of the syslinux disk [default=/]. route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the ID of bootloader. This option is only available on EFI and Macs. the PReP partition is not empty. If you are sure you want to use it, run dd to clear it: `%s' the argument `%s' requires an integer the chosen partition is not a PReP partition the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive %s is defined multiple times in the device map %s the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected EFI error unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported platform %s
 unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for label use COLOR for label background use COLOR for text use DIR as the EFI System Partition root. use DIR for PPC MAC install. use FILE as font (PF2). use FILE as font for label use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] use themes under DIR [default=%s] use translations under DIR [default=%s] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists write output to FILE [default=stdout]. wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub 2.02-pre1
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-12-20 17:42-0400
Last-Translator: David Prévot <david@tilapin.org>
Language-Team: French <traduc@traduc.org>
Language: fr
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Generator: Lokalize 1.4
Plural-Forms: nplurals=2; plural=(n > 1);
               mémoire totale : %d Kio
     Pas de mode préféré disponible
     Mode préféré : %ux%u
   Somme de contrôle EDID incorrecte   Version d'EDID : %u.%u
   Échec d'initialisation de l'adaptateur vidéo   Aucun renseignement disponible   renseignements VBE :   version : %d.%d  révision de logiciel OEM : %d.%d
   ou :   (initiale, ou finale pour les écritures de droite à gauche)  (médiane)  (finale, ou initiale pour les écritures de droite à gauche)  - La partition commence à %llu%s Kio  - Taille de secteur %u o  - Taille totale %llu%s Kio  - Taille totale inconnue  [OPTION ...] %.*s : le paramètre FMT_AIDE_ARGP doit être strictement positif %.*s : le paramètre FMT_AIDE_ARGP nécessite une valeur %.*s : paramètre FMT_AIDE_ARGP inconnu %d s Plus que %d s. %s a l'air de contenir un système de fichiers %s qui pourrait ne pas réserver de place pour un amorçage de type DOS. Installer GRUB à cet endroit risque de DÉTRUIRE le système de fichiers si des données importantes sont écrasées lors de l'installation de GRUB (--skip-fs-probe désactive ce contrôle, à utiliser à vos risques et périls) %s a l'air de contenir un plan de partition %s et un LDM, ce qui n'est pas souvent une association fiable. Installer GRUB à cet endroit risque de DÉTRUIRE le système de fichiers si des données importantes sont écrasées lors de l'installation de GRUB (--skip-fs-probe désactive ce contrôle, à utiliser à vos risques et périls) %s a l'air de contenir un plan de partition %s qui pourrait ne pas réserver de place pour un amorçage de type DOS. Installer GRUB à cet endroit risque de DÉTRUIRE le système de fichiers si des données importantes sont écrasées lors de l'installation de GRUB (--skip-fs-probe désactive ce contrôle, à utiliser à vos risques et périls) %s ne prend pas en charge les UUID %s n'existe pas. Veuillez utiliser --target ou --directory %s ne ressemble pas à une partition EFI.
 %s crée un fichier de disposition de clavier pour GRUB en utilisant ckbcomp\n %s est obsolète. Utilisez plutôt « set gfxpayload=%s » avant la commande « linux ».
 %s est obsolète. Le mode VGA %d n'est pas reconnu. Utilisez plutôt « set gfxpayload=LARGxHAUT[xPROF] » avant la commande « linux ».
 %s n'est pas encore pris en charge par grub-mkconfig.\n %s, avec Hurd %s %s, avec Hurd %s (mode de dépannage) %s, avec Linux %s %s, avec Linux %s (mode de dépannage) %s, avec Xen %s et Linux %s %s, avec Xen %s et Linux %s (mode de dépannage) %s, avec hyperviseur Xen %s, avec kFreeBSD %s %s, avec kFreeBSD %s (mode de dépannage) %s, avec le noyau %s (à l'aide de %s) %s, avec le noyau %s (à l'aide de %s, mode de dépannage) %s : hachage non correspondant
 %s : succès
 %s : erreur de lecture
 %s : trop d'arguments
 %s : seul le superutilisateur peut exécuter cela\n %s : erreur : %s : information : %s : option incorrecte — « %c »
 %s : non disponible %s : l'option « %c%s » n'accepte pas d'argument
 %s : l'option « %s » est ambiguë ; possibilités : %s : l'option « --%s » n'accepte pas d'argument
 %s : l'option « --%s » nécessite un argument
 %s : l'option « -W %s » n'accepte pas d'argument
 %s : l'option « -W %s » est ambiguë
 %s : l'option « -W %s » nécessite un argument
 %s : l'option nécessite un argument — « %c »
 %s : l'option nécessite un argument — « %s »\n %s : option « %c%s » non reconnue
 %s : option « --%s » non reconnue
 %s : attention : (32 bits) (64 bits) (Erreur du programme) version inconnue. (Erreur du programme) l'option aurait due être reconnue. (sur %s) - Étiquette « %s » - Dernière date de modification %7$s %3$02d/%2$02d/%1$d %4$02d:%5$02d:%6$02d — Plus — --ppc CHEMIN|--x86 FICHIER -h HACHAGE [-c FICHIER [-p PRÉFIXE]] [FICHIER1 [FICHIER2 ...]] -l | -r | [-s] périph_grub dique_se. ,5 Interface 16 bits protégée prise en charge
 Interface 16 bits protégée non prise en charge
 Interface 32 bits protégée prise en charge
 Interface 32 bits protégée non prise en charge
 =VAL > RAM de stockage non volatile de l'ACPI RAM de l'ACPI récupérable Échec d'arrêt avec l'ACPI ADRESSE ADRESSE VALEUR [MASQUE] ADRESSE [TAILLE] ADRESSE1,MASQUE1[,ADRESSE2,MASQUE2] ... ADRESSE SERVEURDNS APM désactivée
 APM débrayée
 APM activée
 APM embrayée
 FMT_AIDE_ARGP : la valeur %s est inférieure ou égale à %s ASCII Accepter les fins de ligne de type DOS RC/PAL. Terminaux actifs en entrée : Terminaux actifs en sortie : Adaptateur « %s » :
 Ajouter un serveur DNS Ajouter une adresse réseau. Ajouter une route réseau. Options avancées pour %s Option avancée pour %s (avec hyperviseur Xen) Permettre l'interruption avec Échap. Demander le nom du fichier sur lequel redémarrer. Entrée supposée hexadécimale. Mot de passe supposé en entrée. Entrée supposée brute. Tentative de déchiffrement de la clef principale… Tentative d'installation de GRUB sur un disque ayant plusieurs étiquettes de partition, ou à la fois une étiquette de partition et un système de fichier. Ce n'est pas encore possible. Tentative d'installation de GRUB sur un disque ayant plusieurs étiquettes de partition. Ce n'est pas encore possible. Tentative d'installation de GRUB sur un disque sans partition ou sur une partition. C'est une très mauvaise idée. Terminaux disponibles en entrée : Terminaux disponibles en sortie :  o  o/s SVGRD_BIOS [SVGRD_INT10] BLOC OCTET:BIT Mode de l'image d'arrière-plan. Répertoire de base pour la liste des hachages. RÉP bless de partition HFS ou HFS+ pour les Mac PowerPC. FICHIER bless de partition HFS ou HFS+ pour les Mac Intel. Démarrer le système en utilisant le BIOS. Démarrer un système d'exploitation. Démarrer en mode mono-utilisateur. Démarrer avec les messages de débogage. Démarrer en affichant plus de messages. Démarrage de « %s » Démarrage d'une liste de commandes Démarrage en mode aveugle Chemin d'amorçage : %s
 Chemin d'amorçage : indisponible
 Pause dans GDB CGA  COULEUR COMMANDE [ARGUMENTS] La veille ne ralentit pas le processeur
 La veille ralentit le processeur
 CS5536 à %d:%d.%d
 Impossible de créer le fichier : %s Impossible d'activer la zone de ROM. Modifier les périphériques configurés. Modifier le type de partition Vérifier l'état de la touche Alt. Vérifier l'état de la touche Ctrl. Vérifier l'état de la touche majuscule. Tester les capacités du processeur. Comparer les hachages de fichiers avec le FICHIER de liste de hachages. Vérifier si le processeur accepte le mode 64 bits (long, option par défaut). Vérifier si le processeur accepte l’extension d’adresses physiques (PAE). Vérifier si FICHIER peut être utilisé comme un noyau Multiboot x86 Vérifier si FICHIER peut être utilisé comme un noyau Multiboot 2 x86 Vérifier si FICHIER est un fichier EFI ARM Vérifier si FICHIER est un secteur d’amorçage BIOS Vérifier si FICHIER est un fichier EFI IA-64 Vérifier si FICHIER est hiberfil.sys en état d’hibernation Vérifier si FICHIER est un fichier EFI i386 Vérifier si FICHIER est du type indiqué. Vérifier l'état des touches spéciales (Maj, Alt, Ctrl). Vérifier si l'utilisateur fait partie de LISTE_UTILISATEURS. Vérifie les erreurs de syntaxe dans le fichier de configuration de script GRUB. Effacer l'écran. Attribut actif effacé de %d. 
 Commandes : Comparer FICHIER avec le fichier LOCAL. Comparer le fichier « %s » par rapport à « %s » :
 Comparer deux fichiers. Calculer l'UUID XNU du périphérique. Calculer ou vérifier la somme de contrôle du hachage. Configurer le port série. Continuer les boucles Convertir les formats de fichier de police habituels en PF2 Copier FICHIER vers le fichier local LOCAL. Copier FICHIER sur la sortie standard. Impossible de trouver le pilote FPSWA Impossible de trouver un emplacement BootNNNN libre Impossible de trouver le volume physique « %s ». Certains modules risquent de manquer dans l'image de base. Impossible de charger sha256 Impossible de charger sha512 Créer des structures de type BIOS pour compatibilité ascendante avec le système d'exploitation existant. Créer un fichier de bloc d'environnement vierge. Types de terminfo actuels : PÉRIPHÉRIQUE PÉRIPHÉRIQUE [PARTITION[+/-[TYPE]]] ... PÉRIPHÉRIQUE doit être un périphérique du système d'exploitation (par exemple /dev/sda). NOM_PÉRIPH RÉP RÉPERTOIRE [OSBundleRequired] SERVEURDNS Outil de débogage du pilote de système de fichier. Déclarer des régions de mémoire comme défectueuses (badram). Le décompresseur est trop grand Le serveur par défaut est ${net_default_server} Définir une entrée de menu. Définir un sous-menu. Supprimer une adresse réseau. Supprimer une route réseau. Supprimer le périphérique boucle indiqué. Supprimer les variables. Déterminer le pilote utilisé. Déterminer l'UUID du système de fichiers. Déterminer l'étiquette du système de fichiers. Déterminer le type de système de fichiers. Déterminer le type de plan de partition. Périphérique %s : Identifiant de périphérique : %s
 Identifiant de périphérique : indisponible Couleur directe, masque : %d/%d/%d/%d  position : %d/%d/%d/%d Désactiver l'ACPI. Désactiver le SMP. Désactiver toutes les sorties au démarrage. Désactiver ou activer SMART (0/1). Abandon de partition imbriquée de façon incorrecte (%s,%s,%s%d) Statistiques de cache du disque : atteints = %lu (%lu.%02lu%%), ratés = %lu
 Le décompte des disques doit précéder la liste des disques.
 Afficher la version FPSWA. Afficher l'état de santé d'après SMART. Afficher une ligne de texte. Affiche la liste des blocs de FICHIER. Afficher les messages sur toutes les consoles. Afficher le mode d'alimentation. Afficher l'aide de cette commande et quitter. Afficher cette aide et quitter. Afficher ou définir la date et l'heure actuelle. N’appliquer aucun des codes Reed-Solomon lors de l’embarquage de core.img. Cette option n'est disponible que sur les cibles BIOS x86. Ne pas afficher le changement de ligne final. Ne pas afficher les messages. N'examiner aucun lecteur de disquettes. Ne pas utiliser l'APM pour arrêter l'ordinateur. Ne rien faire, avec succès. Ne rien faire, avec échec. Ne pas afficher les messages de diagnostic au démarrage. Ne pas charger les tables d'hôte indiquées dans la liste, séparées par des virgules. Ne pas redémarrer, arrêter seulement. Ne pas s'arrêter après la première erreur. Ne pas mettre à jour l'EBDA. Cela peut corriger des dysfonctionnements sur certains BIOS, mais est souvent inefficace si le système d'exploitation ne reçoit pas de RSDP du GRUB. VAR_ENV VAR_ENV [VAR_ENV] ... Erreur : pas de disposition de clavier disponible. Vérifiez l'entrée.
 Échap à tout moment pour quitter. EXPRESSION EXPRESSION ] Temps écoulé : %d,%03d s 
 Temps écoulé : %d,%03d secondes 
 L'embarquage est impossible. GRUB ne peut être installé sur cette configuration qu'en utilisant les listes de blocs. Cependant, les listes de blocs ne sont PAS fiables et leur utilisation est déconseillée. Émuler une séquence de frappe Activer l'interprétation des séquences d'échappement par barre oblique inversée. Activer ou désactiver RTS/CTS Entrez le mot de passe ZFS :  Entrer dans KDB au démarrage. Passer en mode normal. Entrez le mot de passe pour %s%s%s (%s) :  Entrez le mot de passe :  Entrez le nom d'utilisateur :  Erreur d'analyse des arguments de la ligne de commandes
 Évaluer une expression. Évaluer les arguments comme des commandes GRUB Échec de sortie Quitter GRUB. Sortir des boucles. Sortir du mode normal. Exporter les variables. Exporter les tables en version 1 vers le système d'exploitation. Exporter les tables en version 2 et version 3 vers le système d'exploitation. FICHIER FICHIER [ARG ...] FICHIER [ARGUMENTS ...] FICHIER | MESURE [DEGRÉ1 DURÉE1] [DEGRÉ2 DURÉE2] ...  FICHIER ... FICHIER1 FICHIER2 FICHIER COMMANDE SYS_FIC [VARIABLE] FICHIER|prompt POLICES FORMAT Le protocole FPSWA n'a pas pu trouver l'interface Révision FPSWA : %x
 DE-À[,DE-À] DE[K|M|G] À[K|M|G] échec de FT_Init_FreeType Échec de démarrage de l'entrée par défaut et des entrées de repli.
 Échec de création de l'arborescence « device-mapper » Repli vers « %s » Taille de fichier : %s
 Le système de fichiers « %s » ne prend pas en charge l'embarquage Les fichiers sont différents à la position %llu : 0x%x [%s], 0x%x [%s]
 Les fichiers sont de tailles différentes : %llu [%s], %llu [%s]
 Le système de fichiers est inaccessible Type de système de fichiers %s Remplir le secteur d'amorçage principal (MBR) hybride du disque GPT PÉRIPHÉRIQUE. Les partitions indiquées feront partie du secteur d'amorçage principal hybride. Jusqu'à trois partitions sont permises. TYPE est un type de secteur d'amorçage principal. + signifie que la partition est active. Une seule partition peut être active. Terminer le chargement de l'émulateur EFI. Essayer d'abord le CONSEIL (« hint ») de périphérique seulement si exécuté sur une plate-forme ARC. Si CONSEIL se finit par une virgule, essayer aussi les sous-partitions. Essayer d'abord le CONSEIL (« hint ») de périphérique si exécuté sur une plate-forme BIOS. Si CONSEIL se finit par une virgule, essayer aussi les sous-partitions. Essayer d'abord le CONSEIL (« hint ») de périphérique seulement si exécuté sur une plate-forme EFI. Si CONSEIL se finit par une virgule, essayer aussi les sous-partitions. Essayer d'abord le CONSEIL (« hint ») de périphérique si exécuté sur une plate-forme IEEE1275. Si CONSEIL se finit par une virgule, essayer aussi les sous-partitions. Essayer d'abord le CONSEIL (« hint ») de périphérique seulement si exécuté sur une plate-forme permettant un accès matériel direct. Si CONSEIL se finit par une virgule, essayer aussi les sous-partitions. Essayer d'abord le CONSEIL (« hint ») de périphérique. Si CONSEIL se finit par une virgule, essayer aussi les sous-partitions. Corriger un problème vidéo. %s trouvé sur %s (%s)\n %s trouvé sur %s\n GNU Mach trouvé : %s Module Hurd trouvé : %s Noyau NetBSD trouvé : %s\n Arrière-plan trouvé : %s\n Image mémoire initiale trouvée : %s\n Répertoire de modules noyau trouvé : %s\n Noyau de FreeBSD trouvé : %s\n Image Linux trouvée : %s\n Thème trouvé : %s\n Erreur %d de Freetype en chargeant glyphe 0x%x pour U+0x%x%s Figer les paramètres de sécurité ATA jusqu'au redémarrage. vendredi  G GNU GRUB  version %s Menu de démarrage GRUB GRUB ne sait pas encore comment arrêter cette machine. Émulateur GRUB PÉRIPHÉRIQUE_GRUB=PÉRIPHÉRIQUE_PLAN9 Rien d'utilisable dans FMT_AIDE_ARGP : %s Générer une disposition de clavier GRUB à partir de celle de la console Linux. Générer un hachage PBKDF2 du mot de passe. Créer un fichier de configuration GRUB Créer une image autonome (contenant tous les modules) au format choisi Création du fichier de configuration GRUB… Calculer la somme de contrôle CRC32 de FICHIER. Obtenir les renseignements de cache du disque. Obtenir ou définir les paramètres ATA du disque.  Gio  Gio/s La syntaxe de point de greffe (par exemple /boot/grub/grub.cfg=./grub.cfg) est acceptée HACHAGE CONSEIL Arrêter le système, si possible avec l'APM. Arrête l'ordinateur. Cette commande ne fonctionne pas avec toutes les implémentations de microprogramme (« firmware »). Traiter N octets du fichier de sortie. Bonjour à tous Hercules  IDENTIFIANT IMAGE1 [IMAGE2 ...] POINT_DE_MONTAGE CHEMIN_IMAGE COMMANDES PÉRIPHÉRIQUE_INSTALLATION doit être un nom de fichier de périphérique système.
%s copie les images GRUB sur %s. Sur certaines plates-formes, cela pourrait aussi installer GRUB sur le secteur d'amorçage. Si FICHIER est « - », la valeur par défaut %s est utilisée.

Il n’y a pas de commande « delete ». Si vous voulez supprimer tous
l’environnement, utilisez « rm %s ». Importer la clef de chiffrement ZFS stockée dans FICHIER. VDEV incorrect Périphérique virtuel incorrect : pas de type disponible Charger un module. Installer GRUB sur le disque. Installation terminée, sans erreur. Référence arrière incorrecte Nom de classe de caractères incorrect Caractère de collation incorrect Commande %s incorrecte.
 Contenu de \{\} incorrect Périphérique « %s » incorrect.
 Décompte de disques incorrect.
 Expression rationnelle précédente incorrecte Fin d'intervalle incorrecte Expression rationnelle incorrecte Accomplir la configuration de routage par utilisateur.  k NOYAU ARGUMENTS TOUCHE_CLAVIER Touche clavier pour démarrer rapidement cette entrée.  Kio  Kio/s LOCALES Périphérique virtuel feuille (fichier ou disque) L'ancien paramètre « ask » n'est plus permis. Légende : masque/position=rouge/vert/bleu/réservé Longueur du hachage généré. Longueur du salage. Afficher les serveurs DNS Afficher les périphériques PCI. Afficher tous les fichiers. Afficher les modes vidéo. Si une résolution est donnée, n'afficher que les modes correspondants. Afficher les tables de coreboot. Afficher les périphériques et fichiers. Afficher les périphériques ou fichiers. Afficher les périphériques. Afficher les fichiers dans CHEMIN. Afficher la carte de mémoire transmise par le microprogramme (« firmware »). Liste des mode vidéo possibles : Liste d'utilisateurs autorisés à démarrer cette entrée. Afficher ou sélectionner un terminal d'entrée. Afficher ou sélectionner un terminal de sortie. Afficher les variables actuelles. Afficher les polices chargées. Afficher les variables depuis un fichier de bloc d'environnement. Charger l'image 64 bits XNU. Charger la sauvegarde du BIOS. Charger le fichier DTB. Charger l'environnement FreeBSD. Charger le module noyau FreeBSD (ELF). Charger le module noyau FreeBSD. Charger de kernel.sys de FreeDOS. Charger Linux. Charger NTLDR ou BootMGR. Charger le module noyau NetBSD (ELF). Charger le module noyau NetBSD. Charger un noyau de type Plan 9. Charger l’ISO Truecrypt. Charger le répertoire d'extensions XNU. Charger le paquet d'extension XNU. Charger l'extension XNU. Charger l'image XNU. Charger le disque mémoire XNU. Il sera disponible dans le système d'exploitation sous le nom md0. Charger la sauvegarde « device-properties ». Charger une image PXE. Charger une disposition de clavier. Charger un noyau Multiboot 2. Charger un module Multiboot 2. Charger un noyau Multiboot. Charger un module Multiboot. Charger l'image d'accueil pour XNU. Charger l'image d'hibernation XNU. Charger et initialiser l'émulateur EFI. Charger un autre gestionnaire de démarrage. Charger un autre fichier de configuration, mais ne prendre que les entrées de menu. Charger un autre fichier de configuration sans modifier le contexte, mais ne prendre que les entrées de menu. Charger un autre fichier de configuration sans modifier le contexte. Charger un autre fichier de configuration. Charger une autre charge utile (« payload ») coreboot. Charger l'image d'arrière-plan pour le terminal actif. Charger les tables ACPI de l'hôte et les tables indiquées par les arguments. Charger l'image mémoire initiale. Charger le disque mémoire kOpenBSD. Charger le noyau FreeBSD. Charger le noyau NetBSD. Charger le noyau OpenBSD. Charger un module. Ne charger que les tables indiquées dans la liste, séparées par des virgules. Charger le même fichier de différentes façons. Charger les variables depuis un fichier de bloc d'environnement. Charger la clef de chiffrement ZFS. Polices chargées : Chargement de GNU Mach… Chargement de Linux %s… Chargement de Xen %s… Chargement du disque mémoire initial… Chargement du noyau FreeBSD %s… Chargement du noyau d'Illumos… Chargement du Hurd…  M échec de vérification de MAC ENTRÉE_MENU est un numéro, un titre d'entrée de menu ou un identifiant d'entrée de menu. ENTRÉE_MENU est un numéro, un titre d'entrée de menu ou un identifiant d'entrée de menu.
Veuillez noter que les entrées de menu dans les sous-menus et sous-sous-menus nécessitent d’indiquer le composant de sous-menu puis le composant d’entrée de menu.
Les titres devrait être séparés en utilisant le caractères supérieur (>) sans espace supplémentaire.
Suivant l’interpréteur de commandes, certains caractères, y compris >, ont besoin d’être protégés.
Plus de renseignements à ce sujet sont disponibles dans le manuel de GRUB à la section sur la commande « default ». MODULE MODULES bless de type mac pour HFS ou HFS+ Envoyer les demandes d'aide sur xorriso à <bug-xorriso@gnu.org>. Faire une image GRUB amorçable de CD, de disque, de clef USB ou de disquette. Faire un ficher de disposition de clavier GRUB. Faire une image de GRUB amorçable. Faire un disque virtuel à partir d'un fichier. Activer la partition Gérer les correspondances de disques BIOS. Les arguments obligatoires ou facultatifs des options longues sont aussi obligatoires ou facultatifs pour les options courtes correspondantes. Manipuler les périphériques PCI. Mesurer le temps utilisé par COMMANDE Mémoire épuisée Type de mémoire : DDR2. Type de mémoire : inconnu. Identifiant d'entrée de menu. Aucune entrée de menu indiquée. Type d'entrée de menu.  Mio  Mio/s Édition de ligne basique de type Bash possible. Pour le premier mot, Tab affiche les complètements de commande possibles. Ailleurs, Tab affiche les complètements de périphériques ou fichiers possibles. %s Édition basique à l'écran de type Emacs possible. Tab affiche les complètements. Appuyez sur Ctrl-x ou F10 pour démarrer, Ctrl-c ou F2 pour une invite de commandes ou Échap pour revenir au menu GRUB. Arguments manquants
 Fichier d'entrée manquant
 lundi Monochrome  Plus d'un disque d'installation, alors qu'un seul est attendu. Plus d'une entrée de menu, alors qu'une seule est attendue. Monter un périphérique chiffré. Monter tous les volumes avec l'attribut d'amorçage (« boot ») défini. Tous les monter. Monter par UUID. Monter les périphériques chiffrés. NOM NOM [VARIABLE] [CONSEILS] Non exécuté :  NUM NOMBRE_DE_SECONDES Nom	Nombre Réf.	Dépendances
 Utilisation des pilotes natifs du disque. Refus d'utiliser l'interface disque du microprogramme (« firmware »). répertoire Netboot créé pour %s. Configurez le serveur DHCP pour pointer vers %s
 Protocoles réseau : Le nouveau secteur d'amorçage principal (MBR) est écrit sur « %s »
 Pas de CS5536 disponible Pas de FPSWA disponible Aucune statistique de temps de démarrage n'est disponible
 Aucune commande indiquée.
 Aucun périphérique n'est indiqué.
 Aucune statistique de cache du disque disponible
 Aucune correspondance de disque n'a été refaite. Aucun système de fichiers connu détecté Pas de correspondance Aucun chemin indiqué.
 Aucun chemin ni aucun périphérique n'est indiqué.
 Pas d'expression rationnelle précédente Pas d'arborescence de périphériques virtuels disponible Non-chain 4  Paramètres manquants pour la commande.
 Veuillez connecter le débogueur distant maintenant. Nombre d'itérations PBKDF2 OPTIONS FICHIER disque nº num du système d'exploitation ------> périphérique GRUB ou BIOS erreur d'ouverture du fichier %s de système d'exploitation : %s L'option -- bascule en mode natif de commande xorriso. Options : Recherche hors limites : %d
 Substitution hors limites (%d, %d)
 Redéfinir l'équivalent supposé des périphériques Plan 9.  P PARTITION COMMANDES CHEMIN Le hachage PBKDF2 du mot de passe est %s
 PORT PORT VALEUR [MASQUE] IDENTIFIANT_CLEF_PUBLIQUE Palette de couleurs  Analyser l'ancienne configuration dans le nouveau contexte Analyser l'ancienne configuration dans le nouveau contexte en ne prenant que les entrées de menu Analyser l'ancienne configuration dans le même contexte Analyser l'ancienne configuration dans le même contexte en ne prenant que les entrées de menu Numéro de modèle : %s.
 La partition %d est maintenant active. 
 Partition %s : Le style de partition « %s » ne prend pas en charge l'embarquage Chemin : %s
 Chemin : indisponible Exécuter les COMMANDES sur une partition.
Utiliser « parttool PARTITION help » pour obtenir la liste des commandes disponibles. Effectuer une résolution DNS Effectuer une configuration IPV6 automatique Activer les correspondances dans les deux sens (directe et inverse).  Pio  Pio/s Par plan  Émettre un son. Veuillez ne pas utiliser l'ancien titre « %s » pour GRUB_DEFAULT, utilisez « %s » (avant la version 2.00) ou « %s » (depuis la version 2.00) GUID du pool : %016llx
 GUID du pool : indisponible Nom du pool : %s
 Nom du pool : indisponible État du pool : actif État du pool : détruit État du pool : exporté État du pool : périphérique ARC niveau 2 État du pool : potentiellement actif État du pool : réservé pour échange à chaud État du pool : indisponible État du pool : non initialisé Les arguments possibles sont : Les commandes possibles sont : Les périphériques possibles sont : Les fichiers possibles sont : Les partitions possibles sont : Les choses possibles sont : Fin prématurée d'expression rationnelle Appuyez une touche pour continuer… Appuyez une touche pour démarrer XNU Appuyez sur Entrée pour démarrer le système sélectionné, « e » pour éditer les commandes avant de démarrer ou « c » pour obtenir une invite de commandes. Appuyez sur Entrée pour démarrer le système sélectionné, « e » pour éditer les commandes avant de démarrer ou « c » pour obtenir une invite de commandes. Échap pour revenir au menu précédent. Afficher les renseignements sur la mémoire. Afficher les renseignements ZFS à propos de PÉRIPHÉRIQUE. Afficher ZFS-BOOTFSOBJ ou la sauver dans VARIABLE Afficher une liste de blocs. Afficher et exécuter l'argument de bloc. Afficher la pile d'appel. Afficher les paramètres et l'identité du disque. Afficher les tailles au format lisible par un humain. Examiner les renseignements du périphérique pour un chemin (ou un périphérique avec l'option -d) donné. RAM contenant les tables de coreboot RAM contenant le code de microprogramme (« firmware ») Connecteur de RAM numéro %d
 EXPR_RAT CHAÎNE Une image ROM est présente. Lire la valeur 16 bits d'ADRESSE. Lire la valeur 16 bits du PORT. Lire la valeur 32 bits d'ADRESSE. Lire la valeur 32 bits du PORT. Lire la valeur 8 bits d'ADRESSE. Lire la valeur 8 bits du PORT. Lire seulement LONGUEUR octets. Échec de redémarrage Redémarrer dans le menu de configuration de microprogramme (« firmware »). Redémarrer l'ordinateur. Entrez de nouveau le mot de passe :  Registre %x de %x:%02x.%x est %x
 Expression rationnelle trop grosse Retirer un serveur DNS Retirer un module. Retirer une variable d'environnement. Retirer toutes les régions de mémoire dans l'intervalle indiqué. Fournir le .disk_label Apple. Signaler les bogues à %s.
 Signaler les bogues à <bug-grub@gnu.org>. Un terminal série est demandé, mais GRUB_SERIAL_COMMAND n'est pas indiqué. Les paramètres par défaut seront utilisés. Réinitialiser toutes les correspondances aux valeurs par défaut. Récupérer les renseignements du périphérique. Terminer une fonction. Retourner à l'invite IEEE1275. Exécutez « gdb %s %d », et configurez ARGS.HOLD à zéro.
 Exécuter « go » pour revenir à GRUB. SEC NOMCOURT NOMCOURT CARTE ADRESSE [ADRESSEMATÉRIELLE] NOMCOURT RÉS [INTERFACE| gw PASSERELLE] TAILLE SOURCE|-u UUID|-a|-b CHAÎNE CHAÎNE ... samedi Sauver la valeur lue dans la variable NOM_VAR. Sauver les variables dans un fichier de bloc d'environnement. Dire « Bonjour à tous ». Le script « %s » ne contient pas de commande et ne fera rien
 Chercher des périphériques par UUID. Si VARIABLE est indiquée, le premier périphérique trouvé est enregistré dans une variable. Chercher les périphériques par fichier. Chercher les périphériques par UUID de système de fichiers. Chercher les périphériques par étiquette de système de fichiers. Chercher des périphériques par nom de fichier, étiquette ou UUID de système de fichiers. Si --set est indiqué, le premier périphérique trouvé est enregistré dans une variable. Si aucun nom de variable n'est indiqué, « root » est utilisé. Chercher des périphériques par fichier. Si VARIABLE est indiquée, le premier périphérique trouvé est enregistré dans une variable. Chercher des périphériques par étiquette. Si VARIABLE est indiquée, le premier périphérique trouvé est enregistré dans une variable. Le secteur %llu est déjà utilisé par le contrôleur RAID « %s » ; à éviter. Veuillez demander au fabriquant de ne pas sauver de données dans la piste d'amorçage Le secteur %llu est déjà utilisé par le programme « %s » ; à éviter. Ce logiciel risque de poser des problèmes d'amorçage ou autre à l'avenir. Veuillez demander à ses auteurs de ne pas sauver de données dans la piste d'amorçage Sélectionner le périphérique en fonction de sa position sur le bus. Sélectionner le périphérique par identifiants de constructeur et de périphérique. Définir la gestion étendue de l'alimentation (APM)
(1=basse, ..., 254=haute, 255=arrêt). Définir la gestion acoustique automatique (AAM)
(0=arrêt, 128=silencieux, ..., 254=rapide). Définir l'OEMID de RSDP, XSDT et RSDT. Définir l'identifiant OEMTABLE de RSDP, XSDT et RSDT. Définir la révision OEMTABLE de RSDP, XSDT et RSDT. Définir l'attribut « caché » dans le type de partition Définir une variable pour renvoyer la valeur. Définir une variable au premier périphérique trouvé. Définir une variable d'environnement. Définir la couleur d'arrière-plan pour le terminal actif. Définir un bit à OCTET:BIT du CMOS. Définir l'identifiant du fabriquant de RSDP, XSDT et RSDT. Définir la révision du fabriquant de RSDP, XSDT et RSDT. Définir la variable d'environnement de débogage. Placer le lecteur en mode sommeil. Placer le lecteur en mode veille. Définir les paramètres positionnels. Définir le périphérique racine. Définir le délai de veille
(0=off, 1=5 s, 2=10 s, ..., 240=20 min, 241=30 min, ...). Définir le type de terminfo du TERMINAL à TYPE.
 Configurer l'entrée de menu par défaut pour GRUB, seulement pour le prochain démarrage. Configurer l'entrée de menu par défaut pour GRUB. Définir l'adresse du port série. Définir la parité du port série. Définir la vitesse du port série. Définir les bits d'arrêt du port série. Définir la taille de trame du port série. Définir le port série (unité). Préparer les images pour démarrer depuis PÉRIPHÉRIQUE.

Vous ne devriez normalement pas exécuter ce programme directement. Utilisez plutôt grub-install. Définir un mot de passe utilisateur (PBKDF2).  Définir le mot de passe utilisateur (texte en clair). Non recommandé et non sécurisé. Définir la variable avec la saisie de l'utilisateur. Définir les variables. Définir GRUB_TIMEOUT à une valeur non nulle si GRUB_HIDDEN_TIMEOUT est définie n’est plus possible. Changement du type de partition à 0x%x
 Décaler les paramètres positionnels. Afficher les renseignements d'ACPI. Montrer les renseignements d'APM. Afficher le contenu de la console CBMEM. Afficher un message d'aide. Afficher une longue liste de renseignements plus détaillées. Afficher le contenu de FICHIER en hexadécimal. Afficher les modules chargés. Afficher le contenu de la mémoire. Afficher le contenu brut du secteur ATA IDENTIFY. Afficher le contenu brut d'un fichier ou de la mémoire. Afficher le contenu d'un fichier. Afficher les correspondances actuelles. Afficher ce message. N'afficher que les tables en version 1. N'afficher que les tables en version 2 et version 3. Échec d'arrêt Simuler la commande « initrd » de l'ancien GRUB Simuler la commande « kernel » de l'ancien GRUB Simuler la commande « modulenounzip » de l'ancien GRUB Simuler la commande « password » de l'ancien GRUB Simuler la commande « password » de l'ancien GRUB en mode d'entrée de menu Sauter N octets du fichier de sortie. Sauter plusieurs octets au début du fichier. Sauter la vérification de signature du fichier d’environnement. Emplacement de clef %d ouvert
 Certains morceaux du Hurd sont disponibles, mais pas assez pour démarrer. Indiquer le nom de fichier. Indiquer le hachage à utiliser. Indiquer un ou plusieurs fichiers de police à charger. Indiquer la taille pour toutes les opérations de lecture Indiquer le nombre de fichiers d'entrée. Vitesse : %s 
 Démarrer la session GDB sur le port indiqué. Arrêter la session GDB Sauver le composant NOMBRE correspondant dans NOM_VAR. Réussite dimanche Supprimer la sortie normale (les avertissements sont conservés). Basculer vers les pilotes natifs de disque. Si aucun module n'est indiqué, l'ensemble par défaut (pata,ahci,usbms,ohci,uhci,ehci) est utilisé Erreur de syntaxe à la ligne %u
 Des erreurs de syntaxe sont détectées dans le fichier de configuration
de GRUB. Veuillez vérifier qu'il n'y a pas d'erreur dans les fichiers
/etc/default/grub et /etc/grub.d/*. Sinon veuillez signaler un bogue
en joignant le fichier %s. L'espace d'E/S du contrôleur de bus du système de gestion est à 0x%x
  T CIBLE THÈMES Format cible non indiqué (utiliser l'option -O). Le terminal a la géométrie indiquée. Le terminal est en ASCII seulement [par défaut]. Le terminal est en UTF-8 ordonné logiquement. Le terminal est en UTF-8 ordonné visuellement. Tester la prise en charge de l'USB. Tester un bit à OCTET:BIT du CMOS. Tester la vitesse de lecture du fichier. Tester si l'expression rationnelle EXPR_RAT correspond à CHAÎNE. Tester le sous-système vidéo en mode LARG×HAUT. Tester le sous-système vidéo. Texte seul  Les fichiers sont identiques.
 L'entrée sélectionnée sera exécutée automatiquement dans %d s. Ce VDEV est un RAIDZ%llu
 Ce VDEV est un miroir Cette entrée peut être démarrée par n'importe quel utilisateur. Cela nécessite de configurer GRUB_DEFAULT=saved dans %s/default/grub.\n jeudi  Tio  Tio/s Outil pour éditer un bloc d'environnement. Taille flash totale : %d o.
 Barre oblique finale Transformer un UUID 64 bits au format convenable pour XNU. Si -l est donnée, le garder en minuscule comme avec blkid. Transformer un nom de fichier système vers le format GRUB. Transformer une configuration syslinux vers le format GRUB. Convertir les caractères d’ENSEMBLE1 vers ENSEMBLE2 dans CHAÎNE. Convertir en minuscule. Convertir en majuscule. Traduit la chaîne en fonction de la configuration actuelle. Utilisez « %s --help » ou « %s --usage » pour obtenir de plus amples renseignements.
 mardi UTILISATEUR MOTDEPASSE UTILISATEUR MOTDEPASSE_PBKDF2 UTILISATEUR[,UTILISATEUR] UTF-8 Impossible de créer le tube : %s Impossible de déterminer la plate-forme. Utilisez --target. Impossible de bifurquer (« fork ») : %s Impossible d'ouvrir le flux de %s : %s Impossible de récupérer l'état du pool Décompresser les données. Décompresser le fichier avant de calculer la somme de contrôle. type %d d'adresse inconnu
 Commande « %s » inconnue.
 Format de compression %s inconnu Encodage inconnu Argument facultatif « %s » inconnu. fonctionnalité gsub 0x%x inconnue (%s)
 Code de touche 0x%02x inconnu
 Identifiant de touche %s inconnu
 Plate-forme « %s-%s » inconnue Erreur système inconnue Mode vidéo inconnu  Type de périphérique virtuel inconnu : %s
 Décharger l'émulateur EFI. ( ou \( sans correspondance ) ou \) sans correspondance [ ou [^ sans correspondance \{ sans correspondance Compression « %s » non reconnue\n Option « %s » non reconnue\n État du pool non reconnu type %d d'adresse non valable
 Spécification de couverture non prise en charge : %d
 type %d d'adresse matérielle non valable
 Format d'image non pris en charge Attribut de substitution non pris en charge : 0x%x
 Spécification de substitution non prise en charge : %d
 Type de substitution non pris en charge : %d
 Utilisation : Utilisation : %s -o SORTIE ARGUMENTS_CKBMAP ...\n Utilisation : %s PÉRIPHÉRIQUE
 Utilisation : %s [FICHIER_ENTRÉE [FICHIER_SORTIE]]
 Utilisation : %s [OPTION] ENTRÉE_MENU\n Utilisation : %s [OPTION]\n Utiliser le CD comme racine. Utiliser le débogueur distant GDB à la place de DDB. Utiliser CHAÎNE comme corps d'entrée de menu. Utiliser le périphérique racine intégré. Utiliser la console série. Utilisez les touches %C et %C pour sélectionner une entrée. VAR INTERFACE NUMÉRO DESCRIPTION NOM_VAR L'élément %d du VDEV n'est pas correct
 Élément %d du VDEV :
 VDEV avec %d enfants
 Décompte détaillé. Vérifier la signature détachée. Version %u.%u
CS 32 bits = 0x%x, longueur = 0x%x, position = 0x%x
CS 16 bits = 0x%x, longueur = 0x%x
DS = 0x%x, longueur = 0x%x
 Le périphérique virtuel est dégradé Le périphérique virtuel est en défaut Le périphérique virtuel est hors ligne Le périphérique virtuel est en ligne Le périphérique virtuel est retiré Attention : aucune console ne sera disponible pour ce système d'exploitation Attention : aucune installation spécifique à la plate-forme n'a été effectuée Attention : paramètres de fonctionnalité de police non pris en charge : %x
 LARGEURxHAUTEUR. Attendre le temps indiqué en seconde. Rester en attente d'appui sur une touche avant d'afficher la ligne suivante. Attention : Attention : couleur d'arrière-plan « %s » incorrecte
 Attention : couleur de premier plan « %s » incorrecte
 Attention : erreur de syntaxe (barre oblique manquante) dans « %s »
 mercredi Windows NT/2000/XP (chargeur) Windows Vista/7 (chargeur) Écrire la VALEUR 16 bits sur ADRESSE. Écrire la VALEUR 16 bits sur PORT. Écrire la VALEUR 32 bits sur ADRESSE. Écrire la VALEUR 32 bits sur PORT. Écrire la VALEUR 8 bits sur ADRESSE. Écrire la VALEUR 8 bits sur PORT. Octets SPD écrits : %d o.
 Hyperviseur Xen, version %s YUV  Vous devez indiquer au moins une commande.
 Veuillez définir « SystemPartition » et « OSLoader » vous-même. Vous avez découvert un bogue La zone d'embarquage est exceptionnellement petite. core.img n'y tiendra pas. Cette version de xorriso ne permet pas d'utiliser « --grub2-boot-info ». Certaines fonctionnalités sont désactivées. Veuillez utiliser au moins la version 1.2.9 de xorriso. Cette version de xorriso ne permet pas d'utiliser « --grub2-boot-info ». L'image de base est trop grande. Le démarrage en tant que disque est désactivé. Veuillez utiliser au moins la version 1.2.9 de xorriso. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FICHIER [--md5] MOT_DE_PASSE [FICHIER] [--no-mem-option] [--type=TYPE] FICHIER [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FICHIER1 [FICHIER2] [...] [-c FICHIER [-p PRÉFIXE]] [FICHIER1 [FICHIER2 ...]] [-d] NOM_PÉRIPH FICHIER. [-e|-n] CHAÎNE [-f FICHIER] [-f FICHIER] nom_de_variable [...] [-f|-l|-u|-s|-n] [--hint CONSEIL [--hint CONSEIL] ...] NOM [-h|-p|-r] [FICHIER] [-l] UUIDGRUB [NOM_VAR] [-l|-h|-a] [FICHIER ...] [-m (stretch|normal)] FICHIER [-s POSITION] [-d PÉRIPHÉRIQUE] [-s POSITION] [-d PÉRIPHÉRIQUE] [-v VAR] REGISTRE[=VALEUR[:MASQUE]] [-s TAILLE] FICHIER [-s|--skip-sig] FICHIER FICHIER_SIGNATURE [FICHIER_CLEF_PUBLIQUE] [-s|--skip-sig] FICHIER_CLEF_PUBLIQUE [ADRESSE|comUNITÉ][,VITESSE] [ARG] [CARTE [ADRESSEMATÉRIELLE]] [CARTE] [RÉP] [VAR_ENV=VALEUR] [VAR_ENV] [SEQ_FRAPPE1] [SEQ_FRAPPE2] ... [MODULE1 MODULE2 ...] [NOMBRE:]NOM_VAR [NUM] [OPTIONS ...] [OPTIONS] [OPTIONS] DISQUE [OPTIONS] FICHIER_OU_PERIPH [OPTIONS] FICHIERS_POLICE [OPTIONS] [ENSEMBLE1] [ENSEMBLE2] [CHAÎNE] [OPTION] SOURCE ... [OPTION] [PÉRIPHÉRIQUE_INSTALLATION] [OPTIONS] ... [MODULES] [OPTIONS] ... [CHEMIN|PÉRIPHÉRIQUE] [OPTIONS] [CHEMIN] [MOTIF ...] [LISTE_UTILISATEURS] [VALEUR] ... [LARGxHAUT[xPROF]] [LARGxHAUT] [[-a|-u|-v] [-g LARGxHAUT] TERMINAL [TYPE]] [[année-]mois-jour] [heure:minute[:seconde]] [bus]:[connecteur][.fonc] [constructeur]:[périphérique] « %s » n'est pas un disque local échec de la commande « cryptomount » : %s échec de la commande « loopback » : %s Échec de « nvsetenv »
Veuillez définir la variable « boot-device » vous-même. À l'invite IEEE1275, entrez :
  %s
 « obppath » non disponible dans les répertoire parents de « %s », pas de recherche de nom IEEE1275 une valeur a été affectée à l'argument « %s » alors qu'il n'a pas besoin d'argument accès refusé ajouter le segment NOTE pour CHRP IEEE1275 adresse adresse indisponible tentative de lecture ou d'écriture en dehors du disque « %s » tentative de lecture ou d'écriture en dehors de la partition tentative de lecture après la fin du fichier tentative de recherche en dehors du fichier tentative de lecture de l'image de base « %s » par GRUB nouvelle tentative de lecture de l'image de base « %s » par GRUB RAM disponible formats disponibles : mauvaise signature adr_base = 0x%llx, longueur = 0x%llx, %s
 adr_base = 0x%llx, longueur = 0x%llx, type = 0x%x
 le fichier image « %s » n'est pas d'un format pris en charge bless pour les Mac PowerPC bless pour les Mac x86 blocklist FICHIER les listes de blocs sont incomplets les listes de blocs sont incorrectes la taille de bloc n'est pas divisible par 512 l'argument de break doit être un entier strictement positif impossible de compresser « %s » vers « %s » impossible de déterminer le système de fichiers sur %s impossible de trouver la commande « %s » impossible de monter le volume chiffré « %s » : %s impossible d'ouvrir « %s » : %s impossible d'ouvrir le fichier %s, index %d : erreur %d impossible de récupérer les listes de blocs impossible de récupérer les listes de blocs : %s impossible de définir la taille de police %dx%d : erreur %d de Freetype : %s impossible de compresser l'image du noyau impossible de copier « %s » vers « %s » : %s impossible de supprimer « %s » : %s impossible de trouver le répertoire EFI impossible de trouver un périphérique GRUB pour %s. Vérifiez device.map. impossible de trouver un périphérique pour %s (/dev est-il monté ?) impossible de trouver la locale « %s » impossible d'obtenir la ligne de commande de traducteur pour le chemin « %s » : %s impossible de créer un répertoire temporaire : %s impossible de créer un ficher temporaire : %s impossible d'ouvrir le fichier « %s » du système d'exploitation : %s impossible d'ouvrir « %s » : %s impossible d'ouvrir le répertoire « %s » : %s impossible de lire « %s » correctement impossible de lire « %s » : %s impossible de renommer le fichier %s en %s impossible de restaurer le répertoire d'origine impossible de parcourir « %s » : %s impossible d'obtenir l'état de « %s » : %s impossible d'écrire sur le CD impossible d'écrire sur « %s » : %s impossible d'écrire sur la sortie standard : %s carte indisponible cat FICHIER échec de vérification de somme de contrôle choisir la compression à utiliser pour l'image de base cmp FICHIER LOCAL comUNITÉ[,VITESSE] échec de comparaison à la position %llu compresser les fichiers GRUB [facultatif] connexion refusée délai de connexion dépassé convertir en police grasse L'image de base est trop grande (0x%x > 0x%x) la version de core.img ne correspond pas impossible de configurer %s automatiquement impossible de trouver un périphérique membre nécessaire d'un système de fichiers multipériphérique impossible de trouver l'utilisateur geli impossible de trouver la classe « part » de GEOM impossible d'ouvrir GEOM impossible de lire les métadonnées ELI impossible de récupérer l'UUID impossible de récupérer l'UUID geli impossible de récupérer les données aléatoires impossible de récupérer les données aléatoires pour le salage impossible d'envoyer un paquet réseau cp FICHIER LOCAL crc FICHIER erreur cryptographique numéro %d échec de cygwin_conv_path()  effacer la carte de périphériques si elle existe déjà destination inaccessible le nombre de périphériques dépasse la limite désactiver l'optimisation (« hinting ») disque « %s » non disponible le disque n'existe pas, donc repli vers le périphérique de partition %s le module de disque à utiliser (biosdisk ou native). Cette option n'est disponible que sur la cible BIOS. échec de lecture du disque à la position %lld, longueur %lld la taille de diskboot.img doit être de %u octets ne pas installer le secteur d’amorçage ne pas chercher de systèmes de fichiers sur PÉRIPHÉRIQUE composant de nom de domaine trop long ne pas mettre à jour l'état de la DEL ne pas mettre à jour les variables NVRAM « boot-device » ou « Boot* ». Cette option n'est disponible que sur les cibles EFI et IEEE1275. fait embarquer FICHIER comme une configuration de départ embarquer FICHIER comme clef publique pour la vérification de signatures l'embarquage est impossible, il est pourtant nécessaire pour les installations RAID et LVM l'embarquage est impossible, il est pourtant nécessaire pour les installations interdisques activer le démarrage ARCS (machines MIPS gros-boutistes, surtout SGI). Désactiver HFS+, APM, sparc64 et démarrer comme une image disque pour i386-pc activer le démarrage SPARC. Désactiver HFS+, APM, ARCS et démarrer comme une image disque pour i386-pc activation de la prise en charge de %s… Entrée : démarrage, « e » : option, « c » : invite de commandes bloc d'environnement trop petit erreur : %s.
 chercher les images GRUB dans le répertoire RÉP/%s au lieu du répertoire %s échec de copie de GRUB sur la partition PReP impossible d'obtenir le chemin canonique de « %s » échec de lecture des secteurs de l'image de base échec de lecture du secteur 0x%llx de « %s » échec de lecture du mot de passe échec d'écriture du secteur 0x%llx sur « %s » faux RAM défectueuse (BadRAM) fichier « %s » non disponible nom de fichier attendu nom de fichier ou mesure et notes attendus le système de fichier « %s » ne prend pas en charge les étiquettes le système de fichier « %s » ne prend pas en charge les listes de blocs  l'image de microprogramme (« firmware ») est trop grande forcer l'optimisation (« hinting ») automatique quatre arguments attendus fwstart.img ne correspond pas à la bonne version connue. Poursuivez à vos risques et périls générer une image au FORMAT afficher un court message d'utilisation afficher cette liste d'aide l'argument donné est un périphérique système, pas un chemin grub-mkimage est compilé sans prise en charge de XZ grub> suspendre pendant SEC secondes (3600 par défaut) hex FICHIER ne pas utiliser les tracés bitmap déjà existants spécification des dimensions de terminal incorrecte image mémoire initiale déjà chargée installer les POLICES [%s par défaut] installer GRUB pour la plate-forme CIBLE [%s par défaut] installer les images GRUB dans le répertoire RÉP/%s au lieu du répertoire %s installer les THÈMES [%s par défaut] le périphérique d'installation n'est pas indiqué installer même si des problèmes sont détectés n’installer que les LOCALES [tout par défaut] n’installer que les MODULES et leurs dépendances [tout par défaut] mot de passe PBKDF2 non conforme numéro magique ELF dépendant de l'architecture incorrect numéro magique ELF indépendant de l'architecture incorrect argument incorrect taille de bloc incorrecte spécification de couleur « %s » incorrecte arborescence de périphériques incorrecte bloc d'environnement incorrect nom de fichier « %s » incorrect intervalle de caractères incorrect format de ligne incorrect : %s fichier modinfo « %s » incorrect paramètre %s incorrect valeur de saut %lld incorrecte nom de variable « %s » incorrect spécification « %s » de mode vidéo incorrecte zImage incorrecte erreur d'ioctl GET_ARRAY_INFO : %s erreur d'ioctl GET_DISK_INFO : %s erreur d'ioctl RAID_VERSION : %s L'image de noyau est trop grande (0x%x > 0x%x) afficher les adresses réseau afficher les cartes réseau afficher les routes réseau ls CHEMIN fichier lzop corrompu rendre aussi le disque amorçable, comme une disquette (par défaut pour les périphériques fdX). Ce paramètre risque de poser des problèmes avec certains BIOS. symbole « %c » manquant option obligatoire pour « %s » manquante le module « %s » n'est pas chargé le module n'est pas chargé nom une image et un point de montage sont nécessaires pas d'APM disponible aucun renseignement DHCP disponible aucune option %d DHCP disponible aucune option DHCP disponible aucun enregistrement DNS disponible aucune réponse DNS reçue aucun serveur DNS configuré pas de routine EFI disponible pour cette plate-forme pas de routine EFI disponible lors d’une exécution en mode BIOS pas de routine IEEE1275 disponible pour cette plate-forme pas de routine SGI disponible pour cette plate-forme pas de « / » dans le nom de fichier canonique aucune commande n'est indiquée pas de compression disponible pour cette plate-forme pas de clef de déchiffrement disponible pas de conseil (« hint ») disponible pour cette plate-forme. Performances réduites attendus aucune carte réseau disponible aucun générateur de nombres aléatoires n’est disponible pour ce système d’exploitation aucun serveur n'est indiqué cette partition n'existe pas aucun mode vidéo approprié disponible aucune table de symbole aucun terminal indiqué pas de terminateur dans l'image de base données non alignées sur des secteurs trouvées dans le fichier de l'image de base pas un répertoire pas une partition primaire pas un fichier normal n'est pas dans le corps d'une fonction un argument attendu IPv4 seulement IPv6 seulement un autre logiciel utilise la zone d'embarquage, et il n'y a pas assez de place pour core.img. Ce genre de logiciel essaye souvent de sauver des données de façon à éviter les détections. Vous devriez examiner cela mémoire épuisée envoyer l'image générée dans FICHIER [stdout par défaut] le fichier de destination doit être indiqué envoyer la configuration créée vers FICHIER [stdout par défaut] un dépassement est détectée les mots de passe ne correspondent pas effectuer une configuration bootp automatique volume physique %s non disponible précharger les modules MODULES indiqués IPv4 préférée IPv6 préférée fin prématurée de fichier fin prématurée du fichier %s appuyez sur la touche de verrouillage majuscule appuyez sur la touche d'insertion appuyez sur la touche Verr Num appuyez sur la touche Arrêt défil appuyez sur la touche Syst appuyez sur la touche Alt gauche appuyez sur la touche Ctrl gauche appuyez sur la touche majuscule gauche appuyez sur la touche Alt droite appuyez sur la touche Ctrl droite appuyez sur la touche majuscule droite afficher la version du programme afficher la version du logiciel et quitter afficher ce message et quitter afficher les messages bavards. clef publique %08x non disponible erreur de lecture à la position %llu : %s lire le texte depuis le FICHIER. sous-répertoire relatif sur le serveur réseau la délocalisation 0x%x n'est pas encore implémentée RAM réservée récupérer l'option DHCP et la sauver dans VAR. Si VAR est -, afficher la valeur. répertoire racine tel qu’il sera vu en fonctionnement [/ par défaut] répertoire racine du serveur TFTP répertoire racine du disque syslinux [/ par défaut] boucle de route détectée sauver les images ROM dans RÉP [facultatif] sauver la sortie dans FICHIER [nécessaire] sélectionner l'indice de police d'écriture le port série « %s » est indisponible set [NOM=VALEUR ...] définir le mode de verrouillage majuscule définir le talus de tête de la police définir le talus de pied de la police définir le nom de famille de la police définir l'intervalle de caractères définir la taille de police définir le nom de fichier d'entrée pour la partie 32 bits. définir le nom de fichier d'entrée pour la partie 64 bits. définir le nom de fichier d'entrée. STDIN par défaut définir le mode d'insertion définir le mode de verrouillage numérique définir le nom de fichier de sortie. STDOUT par défaut définir le mode de pause définir le répertoire de préfixe [%s par défaut] définir le mode de verrouillage défilement définir le nom du programme taille « stretch » (étiré) ou « normal » symbole « %s » non disponible temporaire Le terminal %s est indisponible ou n'est pas pris en charge par terminfo terminal « %s » non disponible l'IDENTIFIANT du chargeur d'amorçage. Cette option n'est disponible que sur EFI et Mac. la partition PReP n'est pas vide. Si vous voulez vraiment l'utiliser, utilisez dd pour l'effacer : « %s » l'argument « %s » nécessite un entier la partition choisie n'est pas une partition PReP L'entrée « %s » de device.map est incorrecte. Elle est ignorée. Veuillez corriger ou supprimer device.map le disque %s est défini plusieurs fois dans la carte de périphériques %s Le nom de périphérique « %s » dans device.map est incorrect. Utilisation de %s à la place. Veuillez utiliser le format [hfc]d[0-9]* (par exemple « hd0 » ou « cd ») le premier secteur du fichier de l'image de base n'est pas aligné sur un secteur le périphérique d'installation est amovible. Cette option n'est disponible que sur EFI. le type de partition 0x%x n'est pas valable les secteurs du fichier de l'image de base sont trop dispersés la taille de « %s » n'est pas égale à %u la taille de « %s » est trop grande la taille de « %s » est trop petite ce fichier ELF n'est pas du type adéquat cette étiquette de partition GPT ne contient pas de partition d'amorçage BIOS ; l'embarquage ne sera pas possible ce LDM n'a pas de partition d'embarquage ; l'embarquage ne sera pas possible cette étiquette de partition de type MSDOS n'a pas d'espace dans la piste d'amorçage ; l'embarquage ne sera pas possible trois arguments attendus délai dépassé lors de l'ouverture de « %s » délai dépassé lors de la lecture de « %s » délai dépassé : impossible de résoudre l'adresse matérielle trop de niveaux de liens symboliques plusieurs arguments fournis au traducteur « %s » pour le chemin « %s » ne sont pas des options, au moins « %s » et « %s » seules des options ont été fournies au traducteur « %s » pour le chemin « %s », impossible de trouver la partie relative au périphérique. la ligne de commande de traducteur est vide pour le chemin « %s » deux arguments attendus type impossible d'identifier le système de fichiers sur %s ; impossible d'effectuer un contrôle de sécurité taille de périphérique non alignée erreur EFI inattendue fin de fichier inattendue argument « %s » inconnu compression %d inconnue
 type de périphérique %s inconnu
 système de fichiers inconnu type de périphérique RAID « %s » inconnu Erreur d'expression rationnelle inconnue format cible %s inconnu
 type « %s » de terminfo inconnu spécification « %s » de format d'option DHCP non reconnue adresse réseau « %s » non reconnue interface réseau « %s » non reconnue nombre non reconnu adresse %s non résoluble unset [NOM ...] erreur %d HTTP non prise en charge : %s réponse HTTP non prise en charge version RAID non prise en charge : %d.%d format gzip non pris en charge plate-forme %s non prise en charge
 parité de port série non valable vitesse de port série non valable nombre de bits d'arrêt du port série non valable taille de trame du port série non valable utiliser COULEUR pour l'arrière-plan utiliser COULEUR pour l'étiquette utiliser COULEUR pour l'arrière-plan d'étiquette utiliser COULEUR pour le texte utiliser RÉP comme racine de la partition système EFI. Utiliser RÉP pour l’installation Mac PowerPC. utiliser FICHIER comme police (PF2). utiliser FICHIER comme police pour l'étiquette utiliser FICHIER comme image de démarrage [%s par défaut] utiliser FICHIER comme image de base [%s par défaut] utiliser FICHIER comme carte de périphériques [%s par défaut] utiliser FICHIER à la place de xorriso [facultatif] utiliser les fichiers GRUB dans le répertoire RÉP [%s par défaut] utiliser CHAÎNE comme nom de produit utiliser CHAÎNE comme version de produit utiliser le ficher d'identifiant même si l'UUID est disponible utiliser les images et modules présents dans RÉP [%s/<plate-forme> par défaut] utiliser les thèmes présents dans RÉP [%s par défaut] utiliser les traductions présentes dans RÉP [%s par défaut] la variable « %s » n'est pas définie UTF-8 ordonné visuellement attendre qu'un débogueur soit attaché refus de continuer avec les listes de blocs écrire la sortie vers FICHIER [stdout par défaut]. mauvaise version ou numéro magique ELI xnu_uuid PÉRIPHÉRIQUE fichier XZ corrompu ou options de bloc non prises en charge impossible d'effacer cette adresse le noyau doit d'abord être chargé la partition d'amorçage BIOS est trop petite ; l'embarquage ne sera pas possible core.img est exceptionnellement grand. Il ne tiendra pas dans la zone d'embarquage la zone d'embarquage est exceptionnellement petite. core.img n'y tiendra pas.                                                                                                                                                                                                                                               boot/grub/locale/gl.mo                                                                              0000600 0001750 0001750 00000324745 13417732100 0013643 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                       v     #    |G      H_  #   I_      m_     _     _     _  $   _     _  6   `     H`     O`  	   [`     e`     r`     `     `     `     `  .   `  .   a  %   >a     da     ha    wa    |b    c     d  7   d  F   d  v   "e  +   e     e      e     e  !   	f     +f  ,   Hf     uf     f  $   f     f  *   f     g     !g     )g     9g     Qg  
   qg  	   |g     g  ,   g  ,   g  ,   g  '   )h  -   Qh      h  (   h  (   h  )   h     i     <i     \i     ii     ri  "   {i  4   i     i     i  7   i      j  1   )j     [j     zj  %   }j  '   j  %   j  '   j     k     k      k     >k     Sk     hk     mk     k     k     k     k     k     k     k  3   k     )l  $   /l     Tl     ll     l     l     l     l     l  -   l     m  !   4m     Vm     km     m  #   m     m  `   Hn  Z   n     o     o     ;o     =o     Ao     Xo     ^o     go     ~o     o     o     o     o     o     p     (p     ?p     Up     cp     zp     p     p     p  %   p     p     p     p     q     .q     Dq     Sq     fq     wq  *   q  3   q     q  "   	r  8   ,r     er     wr  	   r  #   r     r     r     r     s     3s     Js  )   Ys     s     s     s  P   s     /t     Dt  H   Yt  &   t     t     t  !   t  ,   
u     7u     Cu     Gu  	   du  !   nu  *   u     u     u     u     u     v  $   ,v     Qv     cv     uv     v     v     v  
   v  
   v     v  1   w     @w     Nw     [w     tw  3   w  >   w  $   x     (x     ?x     \x     tx     x     x  +   x     x     y  #   )y     My     dy  $   y     y     y  '   y  9   z     @z     Yz  z   wz     z     z  8   {     F{  
   ]{     h{     u{     {     {     K|  +   h|     |     |     |  "   |     |     }  (   }     @}     X}     d}     t}     }     }  "   }  0   }     ~     ~     ~  7   $~     \~     d~     p~     ~     ~     ~  0   ~     ~     ~            2   .  %   a            *     6     +        9     W     j  !   ;  d   ]  e     d   (  i     o     H   g          Ã     ك                    -     D  #   ]                 1   Ʉ  )        %     ,     .     C  /   R                 5   Ņ            K   6                    І     Ԇ     چ     ߆  '     P        ]     |  	                    '   ȇ  +             -  )   I     s               È     ؈            $        @     R  "   m                 (        ԉ     ؉  "   މ  +     -   -     [     t                 O                  4     K     Y  %   m       )     !   ܋  "        !     =  +   T                 !        ی                     3     T     o                    Ѝ  4             4     F     ^     y               Ǝ        !        &  4   @  M   u  2   Ï            *   .  8   Y                    ΐ       3     $   1  +   V                         ϑ                     =     R     T  D   l       7     ;        ,     L  !   k            s   Ó     7     O     l     }                    ה                         T     g     {                    Ɩ  '   ݖ  
                  5     :     R     V     h  H        Η                 %        B     \  #   u               Ә     ܘ                 3     T  "   a  (          %   ə       2   	     <     E  #   ^  *                    #   ǚ            	     	     "     ;   9  #   u  <        ֛            .     	   ?     I  `   [       !   ќ  )             !     '     /  q   <               ٝ                    (     =     \  "   {               О                    )     B  #   W     {       g                    -   ؠ       !        <  "   M  '   p  Q                        4     B     X     u               ̢                     *     K     `      s               ã     ԣ  -        "     <  "   P  b   s  )   ֤                .  ,   I     v       	     "     %                         &     )   8     b  ^   u     Ԧ  $     %        9  ^     _   K  }        )  )     '   
  >   2  D   q  !     '   ت  -      #   .     R  )   r       )     )     ,        :     Z     s            E     $      A   %  )   g               ʭ                %  q   :       :   ɮ          "     1     Q     n                 0   ̯               0  )   F  &   p               ϰ       )        (  %   8  %   ^  ,     '     :   ٱ       -   3     a  .   q            '   ǲ  $     "        7     C     `  *   n            )     o   ҳ     B     [  6        L     N  0   U        !     "   ɵ  #             "     @     V  !   u       
          <   Ҷ  %     >   5     t     }                      d   ӷ  *   8  0   c  6        ˸     Ӹ               
       0   *     [  !   n            $                       2     C  $   `  "     $        ͺ                     ,     >     P     b     o            '               $      +   E  "   q       )        ż     ׼               *  '   >     f            <                        /  m   J          Ӿ                  +   :  3   f  1        ̿  '   ڿ  -        0  '   9  '   a  .     	                            /     K     g                      *     ?     B   B  p          /               .     O     )   [            	          5                  2     H     c  :   }                                             8     N     _     e  	   r     |                                     
     
     	        %  !   +  )   M     w                 F     N   !     p  "   ~            -     -     $     #   9  0   ]  6                    (     1     )   O     y       !                     %        4  &   H     o             7     .      4   /     d                      %             !     6     M     f                 ,                       "     5     H  #   ]            B                  4     G     b     y  &                              &   (     O     g            ;     V     "   9  &   \  !                    /     H     F   X  w     N     (   f            I     $     '   &     N  %   g                      $     '     *        E     _     n  J                    -     +   J     v  $   |       "     +     J     %   D     j        "                             +     >     V     k       %                    %        D     [     n            [          !        0     I     ]     b                                             .     F     b     x                           1        6     F     ^     q               ^  1   l       0               !        :     W     m                                                       .     @  &   V     }                      '     &   &     M  L   Z            !                  ,     I     ^     p                      #     #     $        0     @  &   Q     x  !                              	     7        >  %   X  [   ~  w     7   R  K     #     /        *     E     c  &     U     @     Q   ?                 +          R     L   q  .               F   	     P     f     }                                    &  2   A  !   t  #                                 /     O     g       (     #             
          =  )   P     z       '     '     '        %  0   D     u       -     8             -  !   D      f            .          !     B   !  E   d  B         %     /        "  .   <     k  1     *     7             "  	   ;     E  #   ^                      2     1     .   G     v     z  N    K    L  $     q  <     H     {     1          #          %        .  .   H  :   w       (          3        @     Y     f     {  "     	     	     !     0     /      0   P  ,     1     #     -     -   2  .   `  #     %     
               .     4   %     Z     b  >   t       >        	     (  .   +  2   Z  .     1               )             7     M     V     p  -               
               4        .  ,   4     a                               ,    !   J 6   l +    ,    %    $   "    G k    W   U #    "                           ! !   9    [    w #    %                    1    G )   ]                 *    &        #    %   ?    e             $    @    J   4 +    .    U       0 !   E    g *   n '            6       1	    K	 6   \	 (   	 $   	 .   	 c   
    t
    
 E   
 /   
    (    C '   O ?   w             	    E    7   @ "   x                 8       ?    T *   n .    *    )        
   -    8 5   V         %        >    E   2 3   x     "        &   
 (   1    Z ,   u     $            +    %   H &   n *    6    K       C    ] |   }         H    #   ^ 
            &        '    :           "    < 0   S         ?               '    6    F    \ '   q 5                =       B    N    b    v         3                     \   8 .            8    A   % 6   g +           "               )        : [       $    C    \ $   p                 ,    #   3    W    w 8    9                  	     !  .   8     g      v       8     $     +   ! V   ;! 0   ! +   ! +   !    "    "    %" 
   *" +   5" I   a" &   " 	   " 
   "    " $   "    # 8   ## <   \#    #     # :   # !   $ %   *$ #   P$    t$    $    $    $ -   $    %    4% 3   R%    %    %    % 1   %    %    % 7   % -   & 7   F&    ~&    &    &    &    & v    ' &   w'    ' #   '    '    ' 0   ( &   B( D   i( +   ( *   (    ) !   #) A   E)    )    )    ) *   ) $   *    )*    D*    R* )   k* #   *    * $   * !   *    +    2+ A   D+ 2   +    +    + !   + "   ,     0,     Q, &   r, &   , $   , "   , I   - i   R- @   - (   - /   &. )   V. J   .    . #   .    .    /    7/ ?   T/ .   / >   /    0    !0    :0    P0    f0    z0 $   0 !   0    0    0 +   0 _   "1    1 P   1 Q   1 -   -2 %   [2 (   2    2 0   2    2    3 "   3    3    3    3 "   4 *   :4    e4    4    4    4    g5    H6    [6    x6 
   }6 (   6    6    6 J   6    :7    H7     Y7    z7    7    7    7    7 l   7    E8 !   Y8    {8    8 B   8    8 (   
9 <   39     p9 6   9    9    9 )   9 #   $: =   H: *   : (   : ,   :    ; ,   %; )   R; 6   |; 	   ; "   ; -   ; 2   <    A<    C<    W< *   \<    <    <    < 
   < 0   < V   < 1   H= W   z=    = %   =    	> 9   >    R>    `>    >    ? %   )? *   O?    z?    ~?    ?    ?    ?     @    8@    X@    k@    @    @    @ +   @ &   A 2   ,A !   _A     A    A    A    A    A    B    0B &   IB &   pB &   B    B    XC     D *   6D 1   aD    D (   D    D 7   D 5   2E i   hE .   E     F    "F    =F    JF !   iF    F !   F    F     F    G    *G    @G 1   RG    G    G     G (   G    H    H "   0H F   SH "   H    H '   H z   H ?   yI (   I    I    I 8   J $   UJ    zJ 	   J &   J '   J    J    J    J    J )   K 5   ,K    bK s   vK $   K 5   L 9   EL    L w   }M w   M    mN    N 4   O 1   O P   +P \   |P '   P -   Q 6   /Q 6   fQ 1   Q >   Q !   R ,   0R 3   ]R 8   R 2   R '   R ,   %S $   RS     wS a   S /   S `   *T B   T &   T &   T (   U +   EU 2   qU    U    U /   ZV P   V .   V    
W -   %W "   SW    vW    W "   W    W 8   W &   )X    PX    mX 1   X 7   X    X    Y    1Y (   FY .   oY    Y '   Y '   Y .   Y )   .Z E   XZ %   Z =   Z    [ 9   [    O[    o[ @   [ 2   [ .   \    0\ $   A\    f\ /   z\    \    \ 0   \    \    ]    ] K   ^    ^    ^ ;   ^ $   _ )   7_ ,   a_ ,   _ $   _    _ +    ` $   ,` 1   Q` !   ` 
   `    ` 6   ` 0   a H   6a    a    a    a *   a    a    a u   a 7   ob 4   b ;   b    c    c    6c    Qc    cc )   ic ?   c    c '   c (   d    Bd 7   Wd &   d    d &   d    d )   e ?   =e '   }e )   e *   e    e -   f    Ef     cf     f     f    f #   f $   g )   'g 1   Qg /   g    g -   g 5    h *   6h    ah 1   oh    h 6   h -   h    $i    Ai ,   ]i -   i '   i    i ;   i !   2j    Tj    \j    rj n   j &   k    (k (   Dk %   mk    k 3   k Q   k L   9l    l +   l B   l    m ,   m 5   9m 1   om 	   m    m    m &   m #   n &   /n #   Vn %   zn "   n    n    n    n +   n E   +o T   qo    o    Hp /   p    q    3q 2   Rq ]   q 6   q    r    9r    Gr "   Ur A   xr    r !   r    r    s    +s F   Ks    s "   s    s    s 	   s    s    t    t    6t    Mt    dt    jt 
   xt    t "   t    t    t    t    u    u    u    &u 
   6u    Au    Vu !   cu (   u    u    u     u    v d    v I   v    v *   v    
w    w +   ,w )   Xw '   w     w 2   w :   w    9x    Jx    bx *   px 3   x 5   x    y &   "y 1   Iy    {y 3   y $   y +   y    z 4   7z .   lz 2   z ,   z L   z D   H{ @   { 1   {     | (   |    F| .   f| )   |    |    |    | &   }    @}    `}    x} =   } @   }    ~    ~ $   /~    T~    h~    {~ 3   ~ #   ~ "   ~ `    *   p 0        %    !    &   2 =   Y *           Ԁ         +       D '   a         C    l    .   n 8    3   ւ    
    & 0   , H   ] T    j       f \    2   R #    
    O    7    &   <    c +   ~            Ȇ     -    2   5 :   h '       ˇ     T        U "   q     <    2        3   "    V )   c :    O   ȉ .       G 1   e 3       ˊ (    #    '   5 %   ]         &   Ë *    0        F    g     4       ی            !    )    H    Ӎ "    "       1    M )   R    | "    "        ӎ %    '    "   B )   e     1       ׏ #        (   5    ^ #   u %    >               1    L    k        F =   R '    F            .   6 !   e                ٓ            )    7    K    `    }             +   ޔ    
    ( #   D )   h     %    0   ѕ     U       f     (    '   ˖      "       7    T (   q )       ė (        B   ( B   k D            D   +    p 4           ٙ     '        (    H 6   Q     %    \   Κ    + D    X    )   N ?   x     '   ֜ (    *   ' t   R R   ǝ r        !    &   ̞ :    =   . ]   l d   ʟ 9   /    i     a    #        "   /    R $   o !    3    '    #    $   6 D   [ *    *   ˢ     "       1 %   H "   n %    !    %   ٣ '    6   ' /   ^         #        ;    +   7 ,   c <    :   ͥ >    )   G =   q #    '   Ӧ F    B   B %        '   Ƨ ,    "       > E   S     !    _   ۨ S   ; U                   w         g        X            S       U  ^  |                    2  e  K  H  ^    1                          /  6    C              "                              O         F  r   O      b  '      ^      Q  A      G     
  ,                                                      s                        y  L    I    '   /    =          l   l  5          ;      z   <  .          ^  v              J             H  Q    J       4            O  w  8  o    Q        
       m                     2  3       4       g                 (         X  &           0            8            e      Z   j      r      !  Q         A  ,              6   K  2      n  ]      )     y                   c              d    d  h  s     @      P  ;            &    ?     3  n  q        /  v     R  m              )   [   @        >      -  s    v      s    S  ,       f          Z  0                 @    T    {            i      
         i  J          M       Z        $  N  *     0          o                     5            9   !  _  ?                 N          {      #  "    *  1    7  Y           -              N   P   #  m  f           O     p              `  -                        I       W             7  r  Y    }  )              w      h       ?           _                                      u    E  ]               5                                j  k  |   ,  L      k      G  P  ]       
           j  [     [           (  !                                                                     	  +              @               k    O    z     9  ]              4        *  b       1    )                    %                                      v       ,  V               E   L                                 M  &                    \        ;                            '    0      F      a                 q  ?                          n                        %                (  Z     A      )                          :    {   c       5     W      l  ;   T      Y  (  Z                <    b   7   f      M  +            S    0            9  t          B            <     D          5          S  u     B  3             3           }  @  `                       /            H                  9  z  =                     L          /   1             \                      -       [                    !                {              7  I   &    9         A      U      K  M                 e                        `  m    _   `                          e            _  |          :        I          >            (                 i            Y      b      j   p    n                 e      
  _  4          >  q   P  E    g                 K       *  %        X                }                           o  a  N  -      %     x          H   	                1           4      z      V         t         "   =                        W                       c                                   \                            ?         d        X                               6  .    f      :   E  s              	            H          S      g        K  D            }               o                       D                         a    J    ^   G  $                  i    j                p          ~          T           L  G          c                                   +           k        Y             l           C        q          *   8        <         T      q                 N     <  !             2   h  8        p                  6      y                     ~                          :  B       u    D              8                 #      l    F  w        V          x      u      W      R                 3    P            E      V   >                g      k                             .    b                               U                    r        m              =  2  "            c  y      A   G               R             B    a      \  ]  C  W      $      M                            V  \              >     .                                 p   	        v      F      n        +    :  d  6      x             J      t  "                    I            U                                            C        t          h          B  D  .                     ;        x               %      U                Q      C   	         F                              o  [  7    a      =                   #        r    $      R          `       &  R    T                    #  |        '  d      '            i   u  +     h        t            ~           f  $  X              ~                   total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: option '%c%s' doesn't allow an argument
 %s: option '%s' is ambiguous; possibilities: %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File size: %s
 File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS Import ZFS wrapping key stored in FILE. Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List coreboot tables. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... M MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MODULE Mail xorriso support requests to <bug-xorriso@gnu.org>. Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Option -- switches to native xorriso command mode. Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] PUBKEY_ID Paletted  Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot into firmware setup menu. Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Render Apple .disk_label. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show CBMEM console content. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show the contents of a file. Show the current mappings. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Switch to native disk drivers. If no modules are specified default set (pata,ahci,usbms,ohci,uhci,ehci) is used Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 T TARGET Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This entry can be booted by any user. This requires setting GRUB_DEFAULT=saved in %s/default/grub.\n Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. Your embedding area is unusually small.  core.img won't fit in it. Your xorriso doesn't support `--grub2-boot-info'. Some features are disabled. Please use xorriso 1.2.9 or later. Your xorriso doesn't support `--grub2-boot-info'. Your core image is too big. Boot as disk is disabled. Please use xorriso 1.2.9 or later. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `cryptomount' command fails: %s `loopback' command fails: %s `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format blocklist FILE blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s cannot compress the kernel image cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot get translator command line for path `%s': %s cannot open OS file `%s': %s cannot open `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. diskboot.img size must be %u bytes do not probe for filesystems in DEVICE domain name component is too long don't update LED state done embed FILE as an early config embed FILE as public key for signature checking embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enable ARCS (big-endian mips machines, mostly SGI) boot. Disables HFS+, APM, sparc64 and boot as disk image for i386-pc enable sparc boot. Disables HFS+, APM, ARCS and boot as disk image for i386-pc enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to get canonical path of `%s' failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification install GRUB images under the directory DIR/%s instead of the %s directory install even if problems are detected invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid block size invalid color specification `%s' invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no `/' in canonical filename no command is specified no decryption key available no network card found no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory of TFTP server route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the argument `%s' requires an integer the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for label use COLOR for label background use COLOR for text use DIR as the EFI System Partition root. use FILE as font (PF2). use FILE as font for label use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub-2.00+20130519
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-09-26 11:40+0200
Last-Translator: Anton Meixome <meixome@certima.net>
Language-Team: Galician <proxecto@trasno.net>
Language: gl
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=(n != 1);
X-Generator: Virtaal 0.7.0
X-Launchpad-Export-Date: 2013-07-03 10:56+0000
               memorial total: %d KiB
     Non hai dispoñíbel ningún modo favorito
     Modo favorito: %ux%u
   a suma de comprobación EDID non é correcta   Versión de EDID: %u.%u
   Fallou a inicialización do adaptador de vídeo   Non hai ningunha suxestión dispoñíbel   VBE info:   versión: %d.%d  OEM software rev: %d.%d
   ou:   (de esquerda a dereita)  (medial)  (de dereita a esquerda)  - A partición comeza en %llu%sKiB  - Tamaño do sector %uB  - Tamaño total %llu%sKiB  - Tamaño total descoñecido  [OPCIÓN...] %.*s: ARGP_HELP_FMT o parámetro debe ser positivo %.*s: ARGP_HELP_FMT o parámetro require un valor %.*s: Descoñécese o parámetro ARGP_HELP_FMT %ds %ds restantes. parece que %s contén un sistema de ficheiros %s que non se sabe se reserva ningún espazo para un arranque de tipo DOS. Instalar GRUB pode conducir á DESTRUCIÓN do SISTEMA_DE_FICHEIROS se datos valiosos se sobrescriben coa instalación de grub (--skip-fs-probe desactiva esta comprobación, utilícea segundo o seu propio criterio) %s parece conter un mapa de partición %s e LDM que non se sabe se ten unha combinación segura. Instalar o GRUB alí pode conducir á DESTRUCIÓN do SISTEMA_ DE_FICHEIROS se determinados datos valiosos se sobrescriben coa instalación do grub (--skip-fs-probe desactiva esta comprobación; utilícea segundo o seu propio criterio) %s parece conter un mapa de partición %s que non se sabe se reserva espazo para o arranque de estilo DOS. Instalar o GRUB alí pode conducir á DESTRUCIÓN do SISTEMA_ DE_FICHEIROS se datos valiosos se sobrescriben coa instalación do grub (--ignore-fs-examine desactiva esta comprobación; utilícea segundo o seu propio criterio) %s non é compatíbel con UUID %s xera un deseño de teclado para GRUB utilizando ckbcomp\n %s é obsoleto. Utilice gfxpayload=%s antes da orde linux no seu lugar.
 %s é obsoleto. O modo VGA %d xa non se recoñece. Utilice gfxpayload=LARGOxALTO[xFONDO] antes da orde linux no seu lugar.
 %s aínda non é compatíbel con grub-mkconfig.\n %s, co Hurd %s %s, co Hurd %s (modo restauración) %s, con Linux %s %s, con Linux %s (modo restauración) %s, con Xen %s e Linux %s %s, con Xen %s e Linux %s (modo restauración) %s, co hipervisor (VMM ou monitor de máquina virtual) Xen %s, con kFreeBSD %s %s, con kFreeBSD %s (modo restauración) %s, con núcleo %s (vía %s) %s, con núcleo %s (vía %s, modo de restauración) %s: NON COINCIDE O HASH
 %s: Aceptar
 %s: ERRO DE LECTURA
 %s: Demasiados argumentos
 %s: Debe executar isto como root\n %s: erro: %s: info: %s: opción incorrecta -- «%c»
 %s: a opción «%c%s» non permite un argumento
 %s: a opción «%s» é ambigua; posibilidades: %s: a opción «--%s» non permite un argumento
 %s: a opción «--%s» require un argumento
 %s: a opción «-W %s» non permite un argumento
 %s: a opción «-W %s» é ambigua
 %s: a opción «-W %s» require un argumento
 %s: a opción require un argumento -- «%c»
 %s: a opción require un argumento -- «%s»\n %s: opción non recoñecida '%c%s'
 %s: opción non recoñecida «--%s»
 %s: aviso: (32-bit) (64-bit) (ERRO DE PROGRAMA) Non se coñece a versión!? (ERRO DE PROGRAMA) Deberíase ter sido recoñecida!? (en %s) - Etiqueta «%s» - Hora da última modificación %d-%02d-%02d %02d:%02d:%02d %s --MÁIS INFORMACIÓN-- -h HASH [-c FICHEIRO [-p PREFIXO]] [FICHEIRO1 [FICHEIRO2 ...]] -l | -r | [-s] grubdev osdisk. ,5 compatíbel coa interface protexida de 16 bit
 non compatíbel coa interface protexida de 16 bit
 compatíbel coa interface protexida de 32 bit
 non compatíbel coa inteface protexida de 32 bit
 =VAL > RAM non volátil de almacenamento da ACPI RAM reclamábel da ACPI Fallou o apagado ACPI ENDEREZO ENDEREZO VALOR [MÁSCARA] ENDEREZO [TAMAÑO] ENDEREZO1,MASCARA1[,ENDEREZO2,MASCARA2[,...]] ADDRESS DNSSERVER Desactivado o APM
 Sen o APM
 Activado o APM
 Co APM
 ARGP_HELP_FMT: %s o valor é menor que ou igual a %s ASCII Aceptar os finais de liña estilo-DOS CR/NL. Terminais de entrada activos: Terminais de saída activos: Adaptador «%s»:
 Engadir un servidor de DNS Engadir un enderezo de rede. Engadir unha ruta de rede. Opcións avanzadas para %s Opcións avanzadas de %s (co hipervisor Xen) Permitir a interrupción con ESC. Preguntar polo nome do ficheiro desde o que reiniciar. Suponse que a entrada está en hexadecimal. Suponse que a entrada é unha frase de paso. Suponse que a entrada está en bruto. Tentando descifrar a chave mestra... Tentando instalar o GRUB nun disco con múltiplas etiquetas de partición ou tanto con etiquetas de partición e sistema de ficheiros. Aínda non se permite iso. Tentar instalar o GRUB nun disco con múltiplas etiquetas de partición. Isto aínda non é quen de facelo. Tentar instalar o GRUB nun disco sen particionar ou nunha partición. É moi MALA idea. Terminais de entrada dispoñíbeis: Terminais de saída dispoñíbeis: B B/s BIOS_DUMP [INT10_DUMP] BLOQUE BYTE:BIT Modo de imaxe de fondo. Cartafol base da lista de hashes. Sistema de inicio por BIOS. Arrancar un sistema operativo. Arrancar no modo de usuario único. Arrancar con mensaxes de depuración. Arrancar con mensaxes prolixas. Arranque de «%s» Arranque dunha lista de ordes Arranque no modo cego Ruta de arranque: %s
 Ruta de arranque: non está dispoñíbel
 Alto dentro do GDB CGA  COR ORDE [ARGUMENTOS] A CPU inactiva non ralentiza o procesador
 A CPU inactiva ralentiza o procesador
 CS5536 en %d:%d.%d
 Non se pode activar a área da ROM. Cambiar os dispositivos configurados. Cambiar o tipo de partición Comprobar a tecla Alt. Comprobar a tecla Control. Comprobar a tecla Maiús. Comprobar as funcionalidades da CPU. Comprobar os hashes de ficheiros co FICHEIRO da lista de hashes. Probar se a CPU é compatíbel co modo (predeterminado) de 64 bit (longo). Comprobar o estado do modificador de tecla. Comprobar se o usuario está na LISTAUSUARIOS. Comproba o ficheiro de configuración do script de GRUB en busca de erros de sintaxe. Despexar a pantalla. Despexada a marca activa en %d. 
 Ordes: Comparar FICHEIRO co ficheiro local LOCAL. Comparar o ficheiro «%s» con «%s»:
 Comparar dous ficheiros. Contar UUID XNU do dispositivo. Calcular ou comprobar a suma de comprobación do hash. Configurar o porto serie. Continuar bucles Converter os formatos comúns de tipos de letra en PF2 Copiar FICHEIRO no ficheiro local LOCAL. Copiar FICHEIRO na saída estándar. Non foi posíbel localizar o controlador FPSWA Non foi posíbel atopar o volume físico «%s». Algúns módulos da imaxe do núcleo deben faltar. Non foi posíbel cargar sha256 Non foi posíbel cargar sha512 Crear estruturas tipo BIOS para retrocompatibilidade co SO existente. Crear un ficheiro baleiro de bloque de entorno. Tipos de terminfo actuais: DISPOSITIVO DISPOSITIVO [PARTICIÓN[+/-[TIPO]]] ... O DISPOSITIVO debe ser un de sistema operativo (i.e. /dev/sda). NOME_DO_DISPOSITIVO CARTAFOL CARTAFOL [OSBundleRequired] DNSSERVER Ferramenta de depuración para o controlador do sistema de ficheiros. Declarar rexións de memoria como defectuosas (badram). O descompresor é demasiado grande Defina unha entrada de menú. Defina un submenú. Eliminar un enderezo de rede. Retirar unha ruta de rede. Eliminar o controlador de bucle de retorno especificado. Eliminar variábeis. Determinar o controlador. Determinar o UUID do sistema de ficheiros. Determinar a etiqueta do sistema de ficheiros. Determinar o tipo de sistema de ficheiros. Determinar o tipo de mapa de particións. Dispositivo %s: Devid: %s
 DevId: non está dispoñíbel Cor directa, máscara:  %d/%d/%d/%d  pos: %d/%d/%d/%d Desactivar ACPI. Desactivar SMP. Desactivar toda a saída de arranque. Desactivar/activar SMART (0/1). Descartando a partición aniñada impropiamente (%s, %s, %s%d) Estatísticas da caché de disco = %lu (%lu.%02lu%%), perdidos = %lu
 A conta de discos debe preceder a lista de discos.
 Presentar a versión FPSWA. Amosar o estado de sanidade SMART. Presentar unha liña de texto. Amosar a lista de bloqueo do FICHEIRO. Presentar a saída en todas as consolas. Amosar o modo de enerxía. Presentar a utilización desta orde e saír. Presentar esta axuda e saír. Amosar/definir a data e hora actual. Non amosar nova liña ao final. Non imprimir mensaxes. Non probar ningún dispositivo de disquete. Non usar APM para deter o computador. Non fai nada, resultado satisfactorio. Non fai nada, resultado non satisfactorio. Non presentar as mensaxes de diagnóstico do arranque. Non carga as táboas do servidor especificadas en lista separada por comas. Non reiniciar, só deter. Non parar tras o primeiro erro. Non actualizar EBDA. Podería corrixir fallos ou paradas nalgúns BIOS, pero faise ineficaz se o SO non recibe RSDP do GRUB. ENVVAR ENVVAR [ENVVAR] ... ERRO: non se atopou un deseño de teclado correcto. Comprobe a entrada.
 ESC en calquera momento para saír. EXPRESIÓN EXPRESIÓN ] Tempo transcorrido: %d.%03d s 
 Tempo transcorrido: %d.%03d segundos 
 Non é posíbel a incorporación. GRUB só se pode instalar nesta configuración mediante o uso de listas de bloques. Porén, as listas de bloques non son FIÁBEIS e non se recomenda o seu uso. Emular a secuencia de atallo de teclado Activar que se interpreten os escapes coa barra invertida. Escriba o contrasinal ZFS:  Entrar no KDB ao iniciar. Entrar no modo normal. Introducir frase de contrasinal de %s%s%s (%s):  Introduza o contrasinal:  Escriba o seu nome de usuario:  Produciuse un erro ao procesar os argumentos da liña de ordes
 Avaliar unha expresión. Fallou a saída Saír do GRUB. Saír de bucles Saír do modo normal. Exportar variábeis. Exportar a versión 1 das táboa ao SO. Exportar a versión 2 e versión 3 das táboas ao SO. FICHEIRO FICHEIRO [ARG ...] FICHEIRO [ARGUMENTOS...] FICHEIRO | TEMPO [PITCH1 DURACIÓN1] [PITCH2 DURACIÓN2] ...  FICHEIRO... FICHEIRO1 FICHEIRO2 NOMEDOFICHEIRO ORDE SISTEMAFICHEIROS [VARIÁBEL] FICHEIRO|prompt FORMATO O protocolo FPSWA non foi quen de atoar a interface Revisión de FPSWA: %x
 DESDE-ATA[,DESDE-ATA] DE[K|M|G] A[K|M|G] Fallou FT_Init_FreeType Produciuse un fallo no arranque de ambas as entradas, a predeterminada e a proba de fallos.
 Fallou ao crear a árbore do «device-mapper» Volta a «%s» Tamaño do ficheiro: %s
 O sistema de ficheiro «%s» non admite a incorporación Os ficheiros difiren no desprazamento %llu: 0x%x [%s], 0x%x [%s]
 Os ficheiros difiren en tamaño: %llu [%s], %llu [%s]
 Non se pode acceder ao sistema de ficheiros Sistema de ficheiros de tipo %s Completar o MBR híbrido da unidade GPT do DISPOSITIVO. As particións especificadas serán unha parte do MBR híbrido. Permítense ata tres particións. O TIPO é un forma de MBR. + significa que esa partición está activa. Soamente pode estar activan unha partición. Finalizar a carga do emulador EFI. Proba primeiro o dispositivo SUXESTIÓN se se estiver a executar en ARC. Se SUXESTIÓN remata en coma, probe tamén as subparticións Proba primeiro o dispositivo SUXESTIÓN se se estiver a executar no BIOS. Se SUXESTIÓN remata en coma, probe tamén as subparticións Proba primeiro o dispositivo SUXESTIÓN se se estiver a executar en EFI. Se SUXESTIÓN remata en coma, probe tamén as subparticións Proba primeiro o dispositivo SUXESTIÓN se se estiver a executar en IEEE1275. Se SUXESTIÓN remata en coma, probe tamén as subparticións Proba primeiro o dispositivo SUXESTIÓN se admitir o acceso directo ao hardware. Se SUXESTIÓN remata en coma, probe tamén as subparticións Primeiro, tente o HINT do dispositivo. Se HINT termina en coma, tente tamén subparticións Corrixir o problema de vídeo. Atopouse %s en %s (%s)\n Atopouse %s en %s\n Atopouse o micronúcleo GNU Mach: %s Atopouse o módulo Hurd: %s Atopouse o núcleo NetBSD: %s\n Atopouse o fondo: %s\n Atopouse a imaxe initrd: %s\n Atopouse o cartafol do módulo núcleo: %s\n Atopouse o núcleo de FreeBSD: %s\n Atopouse a imaxe de linux: %s\n Atopouse o tema: %s\n Erro %d de Freetype ao cargar o glifo 0x%x para U+0x%x%s Conxelar a configuración ATA de seguranza ata reiniciar. Venres G Versión do GNU GRUB %s Menú de arranque GRUB GRUB aínda non sabe como deter esta máquina! emulador GRUB. DISPOSITIVOGRUB=DISPOSITIVOPLAN9 Lixo en ARGP_HELP_FMT: %s Xerar un deseño de teclado GRUB a partir do da consola. Xerar o hash dun contrasinal PBKDF2. Xerar un ficheiro de configuración do GRUB Xerar unha imaxe independente (que conteña todos os módulos) no formato seleccionado Obter a suma de comprobación CRC32 do FICHEIRO. Obter información sobre a caché do disco. Obter/estabelecer parámetros ATA do disco. GiB GiB/s HASH SUXESTIÓN Deter o sistema, se é posíbel usando APM. Detén o equipo. Esta orde non funciona en todas os sistemas de firmware. Manexar N bytes no ficheiro de saída. Ola mundo Hércules  ID IMAXE1 [IMAXE2 ...] PUNTO_DE_MONTAXE ORDES de IMAGE_PATH Importar a chave ZFS de embalaxe almacenada no FICHEIRO. Dispositivo virtual incorrecto: non hai un tipo dispoñíbel Insira un módulo. Instalar o GRUB na súa unidade. A instalación finalizou. Non se informou de ningún erro. Referencia cara atrás incorrecta Nome de clase de carácter incorrecto Carácter de ordenación incorrecto A orde %s é incorrecta.
 O contido de \{\} é incorrecto Dispositivo incorrecto «%s».
 Conta de disco incorrecta.
 A expresión regular precedente é incorrecta Fin de intervalo incorrecto Expresión regular incorrecta Invocar a configuración de enrutamento do usuario. K ARGUMENTOS DO NÚCLEO TECLA Tecla para arrancar rapidamente con esta entrada. KiB KiB/s Dispositivo virtual como folla (sexa ficheiro ou disco) O antigo parámetro «ask» xa non se admite. Lenda: máscara/posición=vermello/verde/azul/reservado Tamaño do hash xerado Tamaño do salgado (salt) Listas os servidores de DNS Lista os dispositivos PCI. Lista todos os ficheiros. Relacione os modos de vídeos dispoñíbeis. No caso de dar a resolución, amosar só os modos que sexan coincidentes. Listar táboas do arranque do núcleo. Lista dispositivos e ficheiros. Lista de dispositivos ou ficheiros. Listar dispositivos. Listar ficheiros nA RUTA. Lista o mapa de memoria fornecido polo firmware. Lista de modos de vídeo compatíbeis: Lista de usuarios aos que se lles permite arrancar con esta entrada. Liste ou seleccione un terminal de entrada. Liste ou seleccione un terminal de saída. Listar as variábeis actuais. Lista os tipos de letra cargados. Lista de variábeis procedentes do ficheiro de bloque de entorno. Cargar imaxe XNU de 64-bit. Cargar o envorcado do BIOS. Cargar o entorno FreeBSD. Cargar o módulo do núcleo FreeBSD (ELF). Cargar o módulo do núcleo FreeBSD. Cargar FreeDOS kernel.sys. Cargar Linux. Cargar NTLDR ou BootMGR. Cargar o módulo do núcleo NetBSD (ELF). Cargar o módulo do núcleo NetBSD. Cargar o núcleo de Plan9. Cargar o cartafol de extensión XNU. Cargar paquete de extensión XNU. Cargar extensión XNU. Cargar imaxe XNU. Cargar o disco de memoria XNU. Está dispoñíbel no SO como md0. Cargar o envorcado «propiedades-do-dispositivo». Cargar unha imaxe PXE. Cargar un mapa de teclado. Cargar o núcleo multiarranque 2. Cargar un módulo multiarranque 2. Cargar un núcleo multiarranque. Cargar un módulo multiarranque. Cargar unha imaxe de benvida para XNU. Cargar unha imaxe de hibernación XNU. Cargar e inicializar o emulador EFI. Cargar outro cargador de arranque. Cargar outro ficheiro de configuración e tomar só as entradas de menú. Cargar outro ficheiro de configuración sen cambiar o contexto e tomar del soamente as entradas de menú. Cargar outro ficheiro de configuración sen cambiar de contexto. Cargar outro ficheiro de configuración. Cargar outra carga útil en arranque do núcleo Cargar imaxe de fondo no terminal activo. Cargar as táboas ACPI do servidor e as especificadas mediante argumentos. Cargar initrd. Cargar o disco de memoria kOpenBSD. Cargar o núcleo de FreeBSD. Cargar o núcleo de NetBSD. Cargar o núcleo de OpenBSD. Só carga as táboas especificadas en lista separada por comas. Carga o mesmo ficheiro de múltiplas maneiras. Carga variábeis procedentes do ficheiro de bloque de entorno. Cargar a chave de cifrado zfs. Tipos de letra cargados: Cargando GNU Mach ... Cargando Linux %s ... Cargando Xen %s ... Cargando o ramdisk inicial ... Cargando o núcleo de FreeBSD %s ... Cargando o núcleo de Illumos ... Cargando o Hurd ... M Produciuse un fallo na comprobación do MAC ENTRADA_DE_MENÚ é un número, un elemento do menú ou un identificador dun elemento do menú. MÓDULO O enderezo de correo para solicitudes de apoio técnico a <bug-xorriso@gnu.org>. Facer imaxe de do GRUB en CD-ROM, disco, dispositivo USB ou disquete arrancábel. Facer un ficheiro co deseño do teclado GRUB. Facer unha imaxe arrancábel de GRUB. Facer unha unidade virtual cun ficheiro. Facer activa a partición Xestionar o controlador de asignacións do BIOS. Os parámetros obrigatorios ou opcionais das opcións longas son tamén obrigatorios ou opcionais para calquera das opcións curtas que se correspondan. Manipular dispositivos PCI. Medida de tempo utilizado por ORDE Esgotouse a memoria Tipo de memoria: DDR2. Tipo de memoria: Descoñecida. Identificador da entrada de menú. A entrada do menú non está especificada. Tipo de entrada de menú. MiB MiB/s aAdmítese unha liña de edición mínima tipo BASH. Para a primeira palabra, TAB lista as posíbeis ordes de compleción. En calquera outra posición, TAB lista os dispositivos posíbeis ou os ficheiros que completar. %s É compatíbel co modo mínimo de edición en pantalla estilo Emacs. Completado de listas con TAB. Prema Ctrl-x ou F10 para iniciar, Ctrl-c ou F2 para a liña de ordes ou ESC para descartar cambios e volver ao menú do GRUB. Faltan argumentos
 Falta o ficheiro de entrada
 Luns Monocromo  Máis ca un dispositivo de instalación? Máis ca unha entrada do menú? Monta un dispositivo cifrado. Montar todos os volumes que teñan unha indicación «boot» estabelecida. Montar todos. Montar por UUID. Montar os dispositivos cifrados. NOME NOME [VARIABEL] [SUXESTIONS] NÚMERO NÚMERO_DE_SEGUNDOS Nome	Contador Ref	Dependencias
 Están a utilizarse os controladores nativos do disco. Desbótase utilizar a interface do disco de firmware. Protocolos de rede: Escribiuse un novo MBR en «%s»
 No foi posíbel atopar CS5536 Non se atopou FPSWA Non hai estatísticas dispoñíbeis sobre a duración do arranque
 Sen ordes especificadas.
 Non se especificou ningún dispositivo.
 Non hai estatísticas dispoñíbeis sobre a caché do disco
 Non se reasignaron controladores Non se detectou ningún sistema de ficheiros coñecido Non hai coincidencias Non se especificou a ruta.
 Non se especificou ruta nin dispositivo.
 Non hai expresión regular anterior Non hai ningunha árbore virtual de dispositivos dispoñíbel Non-chain 4 (modo de vídeo de 256 cores)  Non hai parámetros abondo para a orde.
 Agora conecte o depurador remoto, por favor. Número de iteracións PBKDF2 SO disco #núm ------> dispositivo GRUB/BIOS Erro na apertura do ficheiro do SO %s: %s Opción -- troca o modo de ordes ao nativo de xorriso. Opcións: Fóra do intervalo de procura: %d
 Fóra do intervalo de substitución (%d, %d)
 Sobrescribir a suposición dos dispositivos Plan9. P ORDES DE PARTICIÓN RUTA O hash do PBKDF2 do seu contrasinal é %s
 PORT PORTO VALOR [MÁSCARA] IDDECHAVEPÚBLICA En paleta  Procesa a configuración legada en novo contexto A análise da configuración legada en contexto novo collendo só as entradas do menú Procesa a configuración legada no mesmo contexto A análise da configuración legada no mesmo contexto collendo só as entradas do menú Parte núm: %s.
 A partición %d está activa agora. 
 Partición %s: O estilo de partición «%s» non admite a incorporación Camiño : %s
 Camiño: non está dispoñíbel Leva a efecto as ORDES na partición.
Utilice a «axuda da ferramenta partool para PARTICIÓN» para obter a lista das ordes dispoñíbeis. Realizar unha procura de DNS Realizar unha autoconfiguración IPV6 Realizar asignacións directas e inversas. PiB PiB/s Planar  Afinar. Non use o vello título «%s» para GRUB_DEFAULT, utilice «%s» (para versións anteriores á 2.00) ou «%s» (para a 2.00 ou posteriores) GUID do grupo: %016llx
 GUID do grupo: non dispoñíbel Nome do grupo: %s
 Nome do grupo: non dispoñíbel Estado do grupo: activo Estado do grupo: estragado Estado do grupo: exportado Estado do grupo: dispositivo ARC de nivel 2 Estado do grupo: potencialmente activo Estado do grupo: reservado para repoñer en quente Estado do grupo: non dispoñíbel Estado do grupo: desinicializado Os argumentos posíbeis son: As ordes posíbeis son: Os dispositivos posíbeis son: Os ficheiros posíbeis son: As particións posíbeis son: As cousas posíbeis son: Remate de expresión regular prematuro Prema calquera tecla para continuar... Prema calquera chave para arrincar xnu Prema a tecla Intro para arrincar o sistema operativo seleccionado, «e» para editar as ordes antes de arrancar ou «c» para obter unha liña de ordes. Prema a tecla Intro para arrancar o sistema operativo seleccionado, «e» para editar as ordes antes de arrancar ou «c» para obter unha liña de ordes. ESC para volver ao menú anterior. Imprime información da memoria. Imprimir info de ZFS verbo do DISPOSITIVO. Imprimir ZFS-BOOTFSOBJ ou almacenala en VARIÁBEL Imprimir unha lista de bloques. Imprimir e executar argumento de bloque. Imprimir traza marcha atrás. Imprime a identidade do controlador e a configuración. Imprime os tamaños nun formato lexíbel por humanos. Comproba a información do dispositivo nunha ruta dada (ou nun dispositivo, no caso de ter a opción -d). RAM que contén táboas do arranque de núcleo RAM que contén código firmware Rañura da RAM número %d
 CADEA REGEXP A imaxe da ROM está presente. Le o valor de 16 bit de ENDEREZO. Ler o valor de 16 bit de PORT. Le o valor de 32 bit de ENDEREZO. Ler o valor de 32 bit de PORT. Le o valor de 8 bit de ENDEREZO. Ler o valor de 8 bit de PORT. Ler só LENGTH bytes. Fallou o reinicio Reiniciar no menú de configuración do firmware. Reiniciar o computador. Reescribir o contrasinal:  Rexistro %x de %x:%02x.%x é %x
 A expresión regular é demasiado grande Retirar un servidor de DNS Retirar un módulo. Retirar unha variábel de entorno. Retirar calquera rexión de memoria dentro dun intervalo especificado. Renderizar a .disk_label de Apple. Informe dos erros a %s.
 Informe dos erros a <bug-grub@gnu.org>. Solicitouse o terminal serie pero non está especificado GRUB_SERIAL_COMMAND. Utilizaranse os parámetros predeterminados. Restabelecer todas as asignacións nos valores predeterminados. Recuperar a información do dispositivo. Volver desde unha función. Volver ao indicador IEEE1275. Execute «gdb %s %d» e estabeleza os ARGS.HOLD a cero.
 Executar «go» para retomar o GRUB. SEGS NOMECURTO NOMECURTO TARXETA ENDEREZO [HWADDRESS] NOMECURTO REDE [INTERFACE] gw PASARELA] TAMAÑO ORIXE|-u UUID|-a|-b CADEA Sábado Gardar o valor lido na variábel VARNAME. Garda as variábeis no ficheiro de bloque de entorno. Diga «Ola mundo». Buscar dispositivos por UUID. Se se especificou VARIÁBEL, o primeiro dispositivo atopado gárdase nunha variábel. Buscar dispositivos por un ficheiro. Buscar dispositivos por UUID de sistema de ficheiros. Buscar dispositivos por etiqueta de sistema de ficheiros. Buscar dispositivos por ficheiro, etiqueta de sistema de ficheiros ou UUID de sistema de ficheiros. Se --set estiver especificado, o primeiro dispositivo encontrado estabelécese como variábel. Se o nome da variábel non se especifica, úsase «root». Buscar dispositivos por ficheiro. Se se especificou VARIÁBEL, o primeiro dispositivo atopado gárdase nunha variábel. Buscar dispositivos por etiqueta. Se se especificou VARIÁBEL, o primeiro dispositivo atopado gárdase nunha variábel. O sector %llu xa o utiliza o controlador de raid «%s»; evítase. Pregúntelle ao fabricante para non almacenar datos na fenda MBR O sector %llu xa o utiliza o programa «%s»; evítase. Este software pode provocar no arranque ou noutros sitios problemas no futuro. Consúltelles aos seus autores para non almacenar datos no sector de inicio Selecciona o dispositivo pola súa posición no bus. Selecciona o dispositivo por fabricante e por ID. Estabelecer o xestor avanzado de enerxía
(1=baixo, ..., 254=alto, 255=apagado). Estabelecer o xestor automático de acústica
(0=apagado, 128=silencioso, ..., 254=rápido). Estabelecer OEMID de RSDP, XSDT e RSDT. Estabelecer OEMTABLE ID de RSDP, XSDT e RSDT. Estabelecer a revisión OEMTABLE de RSDP, XSDT e RSDT. Estabelecer a marca «agochada» no tipo de partición Estabelecer unha variábel para devolver o valor. Estabeleza unha variábel para o primeiro dispositivo atopado. Defina unha variábel de entorno. Estabelecer cor de fondo no terminal activo. Estabelecer o campo creador para RSDP, CSDT e RSDT. Estabelecer a revisión do creador de RSDP, CSDT e RSDT. Estabelecer a variábel do entorno de depuración. Estabelecer a unidade en modo dormente. Estabelecer o controlador do modo de espera. Estabelecer parámetros posicionais. Estabelecer o dispositivo raíz. Estabelecer a caducidade do tempo de espera
(0=apagado, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Estabelecer o tipo terminfo de TERM como TYPE.
 Estabelecer a entrada predeterminada do menú de arranque no GRUB, só para o seguinte arranque. Estabelecer a entrada predeterminada do menú de arranque no GRUB. Estabelecer o enderezo do porto serie. Estabelecer a paridade do porto serie. Estabelecer a velocidade do porto serie. Estabelecer o bit de parada do porto serie. Estabelecer a lonxitude da palabra no porto serie. Estabelecer a unidade serie. Configurar imaxes de arranque desde o DISPOSITIVO.

Non debería executar este programa directamente de modo ordinario. Utilice grub-install maiormente. Estabelecer o contrasinal de usuario (PBKDF2).  Estabelecer o contrasinal de usuario (texto simple). Non recomendado e inseguro. Estabelecer a variábel co usuario de entrada. Estabelecer as variábeis. Estabelecendo o tipo de partición como 0x%x
 Modificar parámetros posicionais. Amosar a información da ACPI. Amosar a información APM. Amosar o contido da consola CBMEM. Amosa unha mensaxe de axuda. Amosa unha lista longa con información máis detallada. Amosar os contidos do FICHEIRO en hex. Amosar os módulos cargados. Amosar contido da memoria. Amosar o contido en bruto do sector ATA IDENTIFY. Amosar os contidos en bruto dun ficheiro ou da memoria. Amosar o contido dun ficheiro. Amosar as asignacións actuais. Amosar esta mensaxe. Amosa soamente as táboas da versión 1. Amosa soamente as táboas das versións 2 e 3. Fallou o apagado Simula a antiga orde de grub «initrd» Simula a antiga orde de grub «kernel» Simula a antiga orde de grub «modulenounzip» Simula a antiga orde de grub «password» Simula a antiga orde de grub «password» no modo de entrada de menú Saltar N bytes do ficheiro de saída. Omitir o desprazamento de octetos desde o comezo do ficheiro. Rañura %d aberta
 Atopouse algo máis de Hurd pero non chega para arrancar. Especifique o nome do ficheiro. Especificar o hash para usar. Especifique un ou máis ficheiros de tipos de letra para cargar. Especifica o tamaño de cada operación de lectura Especificar o número de ficheiros de entrada. Velocidade: %s 
 Arrancar o servizo GDB no porto dado Deter o servizo GDB Gardar o compoñente de NÚMERO EN NOMEVARIBEL. Correcto Domingo Suprimir a saída normal (permanecen os avisos). Trocar para utilizar controladores de disco nativos. De non especificar módulos, utilizarase o conxunto predeterminado (pata, ahci, usbms, ohci, uhci, ehci) Erro sintáctico na liña %u
 Detectáronse erros sintácticos no ficheiro de configuración do GRUB xerado.
Asegúrese de que non hai erros en /etc/default/grub
e nos ficheiros /etc/grub.d/* ou escriba un informe de erro co
%s ficheiro anexado. O espazo do sistema de xestión do controlador de bus de E/S está en 0x%x
 T DESTINO Formato de destino non especificado (utilice a opción -O). O terminal especificou a xeometría. O terminal só é ASCII [predeterminado]. O terminal é un UTF-8 ordenado loxicamente. O terminal é un UTF-8 visualmente ordenado. Comprobar se é compatíbel con USB. Probar bit en BYTE:BIT no CMOS. Velocidade de lectura do ficheiro de proba. Probar se REGEXP coincide con CADEA. Probar o subsistema de vídeo en modo LARGOxALTO. Comprobar o subsistema de vídeo. Só texto  Os ficheiros son idénticos.
 A entrada realzada executarase automaticamente en %ds. Calquera usuario pode arrancar con esta entrada. Isto require a opción GRUB_PREDETERMINADO=gardada en %s/default/grub.\n Xoves TiB TiB/s Ferramenta para editar bloques de entorno. Tamaño total da flash: %d B.
 Barra invertida na fin de liña Transformar o UUID de 64 bits a formato adecuado para XNU. No caso de dar -l mantelo en minúsculas como o dá blkid. Transformar un nome de ficheiro do sistema nun de GRUB. Traduza a cadea que contén a configuración actual. Probe '%s --help' ou '%s --usage' para máis información.
 Martes CONTRASINAL DE USUARIO USUARIO CONTRASINAL_PBKDF2 USUARIO[,USUARIO] UTF-8 Non é posíbel crear a canalización: %s Non é posíbel determinar a súa plataforma. Utilice --target. Non é posíbel ramificar: %s Non é posíbel abrir o fluxo de %s: %s Non foi posíbel obter o estado do grupo Datos sen comprimir. Descomprimir o ficheiro antes da suma de comprobación. O tipo de enderezo %d é descoñecido
 Orde «%s» descoñecida.
 Formato de compresión descoñecido %s Codificación descoñecida O argumento extra «%s» é descoñecido. Descoñécese a funcionalidade 0x%x (%s) do tipo de letra gsub
 Código de teclado descoñecido 0x%02x
 Identificador do teclado descoñecido %s
 Produciuse un erro descoñecido do sistema Modo de vídeo descoñecido  Tipo de dispositivo virtual descoñecido: %s
 Non se cargou o emulador EFI. Non hai coincidencia con ( ou \C Non hai coincidencia con ) ou \) Non hai coincidencia con [ ou [^ Non hai coincidencia \{ A opción «%s» non se recoñece\n O estado do grupo é irrecoñecíbel O tipo %d de enderezo non é compatíbel
 Especificación de cobertura non compatíbel: %d
 O tipo %d de enderezo de hw non é compatíbel
 Formato de imaxe incompatíbel Marca de substitución non compatíbel: 0x%x
 Especificación de substitución non compatíbel: %d
 Tipo de substitución non compatíbel: %d
 Utilización: Utilización: %s -o SAÍDA ARGUMENTOS_CKBMAP...\n Utilización: %s DISPOSITIVO
 Utilización: %s [FICHEIRO_ENTRADA [FICHEIRO_SAÍDA]]
 Utilización: %s [OPCIÓN] ENTRADA_DE_MENÚ\n Utilización: %s [OPCIÓN]\n Utilizar o CDROM como root. Usar o depurador remoto GDB en lugar do DDB. Utilice CADEA como corpo da entrada de menú. Utilizar o dispositivo raíz integrado. Usar a consola serie. Use as teclas %C e %C para seleccionar que entrada realzar. VAR INTERFACE NÚMERO DESCRICIÓN VARNAME Conta atrás prolixa. Comprobar a sinatura extraída. Versión %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 O dispositivo virtual no está óptimo Falta o dispositivo virtual O dispositivo virtual está desconectado O dispositivo virtual está conectado Retirouse o dispositivo virtual AVISO: non haberá consola para o sistema operativo AVISO: non se realizou ningunha instalación específica para ningunha plataforma AVISO: parámetros de funcionalidades do tipo de letra non compatíbeis: %x
 LARGURAxALTURA. Agardar un número específico de segundos. Agardar por cada tecla presionada despois de cada liña de saída. Aviso: Aviso: a cor de fondo «%s» non é válida
 Aviso: a cor de primeiro plano «%s» non é válida
 Aviso: erro de sintaxe (falta a barra) en «%s»
 Mércores Windows NT/2000/XP (cargador) Windows Vista/7 (cargador) Escribe o VALOR de 16 bit de ENDEREZO. Escribir o VALOR de 16 bit en PORT. Escribe o VALOR de 32 bit de ENDEREZO. Escribir o VALOR de 32 bit en PORT. Escribe o VALOR de 8 bit de ENDEREZO. Escribir o VALOR de 8 bit en PORT. Bytes SPD escritos: %d B.
 Hipervisor Xen, versión %s YUV  Cómpre especificar cando menos unha orde.
 Terá que estabelecer «SystemPartition» e «OSLoader» manualmente. A súa área de incorporación é estrañamente pequena. A core.img no caberá nela. O seu xorriso non admite «--grub2-boot-info». Algunhas funcionalidades están desactivadas. Utilice xorriso 1.2.9 ou posterior. O seu xorriso non admite «--grub2-boot-info». A imaxe principal é demasiado grande. Arrancar como disco está desactivado. Utilice xorriso 1.2.9 ou posterior. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FICHEIRO [--md5] CONTRASINAL [FICHEIRO] [--no-mem-option] [--type=TIPO] FICHEIRO [ARG ...] [-1|-2] [--exclude=TÁBOA1,TÁBOA2|--load-only=TÁBOBA1, TÁBOA2] FICHEIRO1 [FICHEIRO2] [...] [-c FICHEIRO [-p PREFIXO]] [FICHEIRO1 [FICHEIRO2 ...]] [-d] NOMEDISPOSITIVO FICHEIRO. [-e|-n] CADEA [-f FICHEIRO] [-f FICHEIRO] nome_variábel [...] [-f|-l|-u|-s|-n] [--hint SUXESTIÓN [--hint SUXESTIÓN] ...] NOME [-h|-p|-r] [FICHEIRO] [-l] UUIDDOGRUB [NOMEDAVARIÁBEL] [-l|-h|-a] [FICHEIRO ...] [-m (stretch|normal)] FICHEIRO [-s POSICIÓN] [-d DISPOSITIVO] [-s POSICIÓN] [-d DISPOSITIVO] [-v VAR] [REXISTRO][=VALOR[:MÁSCARA]] [-s TAMAÑO] NOMEDOFICHEIRO [ENDEREZO|comUNIDADE][,VELOCIDADE] [ARG] [TARXETA [HWADDRESS]] [TARXETA] [ENVVAR=VALOR] [VARIABELENTORNO] [KEYSTROKE1] [KEYSTROKE2] ... [MÓDULO1,MÓDULO2...] [NÚMERO:]NOMEVARIABEL [NUM] [OPCIÓNS...] [OPCIÓNS] [OPCIÓNS] DISCO [OPCIÓNS] FICHEIRO_OU_DISPOSITIVO [OPCIÓNS] FICHEIROS_LETRAS [OPCIÓN]... [MÓDULOS] [OPCIÓN]... [RUTA|DISPOSITIVO] [OPCS] [RUTA] [MODELO ...] [LISTAUSUARIOS] [VALOR]... [LARGOxALTO[xFONDO]] [LARGOxALTO] [[-a|-u|-v] [-g WxH] TERM [TIPO]] [[ano-]mes-día] [hora:minuto[:segundo]] [bus]:[rañuña][.func] [fabricante]:[dispositivo] a orde «cryptomount» falla: %s a orde «loopback» falla: %s non se atopou «obppath» nos cartafoles superiores de «%s», non se descubre ningún nome IEEE1275 asignouse un valor ao argumento «%s» malia que non require un argumento acceso denegado engadir o segmento NOTA para CHRP IEEE1275 enderezo non se atopou o enderezo tenta ler ou escribir fóra do disco «%s» tenta ler ou escribir fóra da partición intenta ler pasado o remate do ficheiro tenta procurar fóra do ficheiro tentando ler a imaxe principal «%s» desde o GRUB tentando ler a imaxe principal «%s» desde o GRUB de novo RAM dispoñíbel formatos dispoñíbeis: mala sinatura ender_base = 0x%llx, tamaño = 0x%llx, %s
 ender_base = 0x%llx, tamaño = 0x%llx, tipo = 0x%x
 o ficheiro bitmap «%s» ten un formato incompatíbel FICHEIRO da lista de bloqueo as listas de bloques non son correctas o tamaño do bloque non se pode dividir entre 512 non pode romper 0 bucles non se pode determinar o sistema de ficheiros de %s non é posíbel atopar a orde «%s» non pode montar o volume cifrado «%s»: %s non se puido abrir «%s»: %s non se pode abrir o ficheiro %s, índice %d: erro %d non é posíbel recuperar as listas de bloques non é posíbel recuperar as listas de bloques: %s non é posíbel comprimir a imaxe do núcleo non foi posíbel atopar unha unidade GRUB para %s. Comprobe o seu device.map non foi posíbel atopar un dispositivo para %s (está montado /dev?) non pode obter liña de ordes de tradutor para a ruta «%s»: %s non é posíbel abrir o ficheiro do SO «%s»: %s non se pode abrir «%s»: %s non é posíbel ler correctamente «%s» non foi posíbel ler «%s»: %s non é posíbel renomear o ficheiro de %s a %s non se pode restaurar o cartafol orixinal non se pode procurar «%s»: %s non pode iniciar «%s»: %s non se pode escribir no CDROM non é posíbel escribir en «%s»: %s non pode escribir na stdout: %s non se atopou a tarxeta cat FICHEIRO produciuse un fallo na verificación da suma de comprobación escoller a compresión que se vai utilizar nas imaxes principais cmp FICHEIRO LOCAL comUNIDADE[,VELOCIDADE] comparar fallo no desprazamento %llu conexión rexeitada conexión esgotada converter en letra grosa a imaxe principal é demasiado grande (0x%x > 0x%x) non coincide a versión da core.img non foi posíbel autoconfigurar %s non foi posíbel atopar un dispositivo membro necesario do sistema de ficheiros multidispositivo non foi posíbel atopar un consumidor geli non foi posíbel atopar a clase «part» do geom non foi posíbel abrir o geom non foi posíbel ler os metadatos ELI non foi posíbel recuperar o UUID non foi posíbel recuperar o UUID geli non se poden recuperar datos aleatorios para o salgado (salt) non foi posíbel enviar un paquete de rede cp FICHEIRO LOCAL FICHEIRO crc erro de cifrado número %d fallou a cygwin_conv_path() eliminar o mapa do dispositivo se xa existe non se pode acadar o destino a conta do dispositivo excede o límite desactivar o suavizado Non se atopou o disco «%s» o disco non existe, volvendo atrás ao dispositivo da partición %s módulo do disco para utilizar (biodisco ou nativo). Esta opción só está dispoñíbel no BIOS de destino. o tamaño de diskboot.img debe ser de %u bytes non facer probas de sistemas de ficheiros no DISPOSITIVO o compoñente de nome de dominio é demasiado longo non actualizar o estado LED feito incorpora FICHEIRO como configuración adiantada incorpora FICHEIRO como chave pública para a comprobación de sinaturas a incorporación non é posíbel pero resulta requirida para instalación RAID e LVM non é posíbel a incorporación pero resulta requirido para a instalación entre particións (cross-disk) activa o arranque ARCS (máquinas mips tipo big-endian, maiormente SGI). Desactiva HFS+, APM, sparc64 e arranca como imaxe de disco en PC i386 activar arranque sparc. Desactiva HFS+, APM, ARCS e arranca como imaxe de disco para PC i386 intro: arranque, «e»: opcións, «c»: liña cmd bloque de entorno demasiado pequeno erro: %s.
 esperábanse as imaxes do GRUB no cartafol CARTAFOL//%s en lugar do cartafol %s produciuse un fallo ao obter a ruta canónica de «%s» fallo ao ler o sector 0x%llx de «%s» fallo ao ler o contrasinal fallo ao escribir o sector 0x%llx de «%s» falso RAM defectuosa (BadRAM) non se atopou o ficheiro «%s» agardábase o nome do ficheiro nome do ficheiro ou tempo e notas esperábeis o sistema de ficheiros «%s» non admite etiquetas o sistema de ficheiros «%s» non admite listas de bloques a imaxe do firmware é demasiado grande forzar o autosuavizado agardábanse catro argumentos fwstart.img non acha a versión boa coñecida. Proceda segundo o seu propio criterio xerar unha imaxe en FORMATO dar unha mensaxe curta sobre o uso dar esta lista de axuda o argumento dado é un dispositivo do sistema, non unha ruta grub-mkimage compílase sen compatibilidade con XZ grub> agardar durante SEGS segundos (predeterminado 3600) FICHEIRO hex ignorar os bitmap prefacturados ao cargar a especificación de dimensións do terminal é incorrecta instalar as imaxes do GRUB no cartafol DIR/%s en lugar de facelo no cartafol %s instalar incluso no caso de detectar problemas contrasinal PBKDF2 inpropiado incorrecto ELF máxico dependente da arquitectura incorrecto ELF máxico independente da arquitectura tamaño de bloque incorrecto especificación de cor incorrecta «%s» o bloque de entorno non é correcto o nome do ficheiro «%s» é incorrecto intervalo de tipo de letra incorrecto formato de liña incorrecto: %s o parámetro %s non é correcto o valor %lld de escape non é correcto non é correcto o nome da variábel «%s» a especificación de vídeo «%s» é incorrecta erro de ioctl GET_ARRAY_INFO: %s erro de ioctl GET_DISK_INFO: %s erro de ioctl RAID_VERSION: %s a imaxe do núcleo é demasiado grande (0x%x > 0x%x) listar enderezos de rede listar tarxetas de rede listas rutas de rede ls RUTA O ficheiro lzop está corrupto facer a unidade tamén ser arrancábel como disquete (o predeterminado con dispositivos fdX). A unidade pode estropearse con algúns BIOS. falta o símbolo «%c» falta a opción obrigatoria «%s» o módulo «%s» non está cargado o módulo non está cargado nome necesita unha imaxe e un punto de montaxe non se atopu APM non se atopou información de DHCP non se atopou a opción %d de DHCP non se atoparon opcións de DHCP non se atopou ningún rexistro de DNS Non se recibiu ningunha resposta de DNS non se configuraron servidores DNS falta «/» no nome canónico do ficheiro sen orde especificada non hai ningunha chave de descifrado dispoñíbel non se atopou a tarxeta de rede non se especificou ningún servidor non existe tal partición non se atopou o modo apropiado de vídeo sen táboa de símbolo non se especificou ningún terminal non hai terminador na imaxe principal atopáronse datos do sector non aliñado no ficheiro principal non é un cartafol non é unha partición primaria non é un ficheiro regular non está no corpo da función agardábase un argumento xa outro software está a usar a área de incorporación, e non sitio para o core.img. Tal software adoita tentar gardar datos de formas que evitan a detección. Recomendámoslle que investigue sen memoria imprime unha imaxe xerada no FICHEIRO [predeterminado=stdout] debe especificarse o ficheiro de saída imprime unha configuración xerada no FICHEIRO [predeterminado=stdout] detectouse desbordamento os contrasinais non coinciden realizar unha configuración automática bootp non se atopou o volume físico %s remate do ficheiro prematuro fin do ficheiro prematura %s premer a tecla de BloqM premer a tecla de inserción premer a tecla de BloqNúm premer a tecla de BloqD premer PetSis premer Alt esquerda premer Ctrl esquerda premer a maiúscula esquerda premer Alt dereita premer Ctrl dereita premer a maiúscula dereita imprimir versión do programa imprimir a versión da información e saír imprimir esta mensaxe e saír imprimir mensaxes prolixas. non se atopou a chave pública %08x erro de lectura no desprazamento %llu: %s ler o texto do FICHEIRO. cartafol relativo no servidor de rede a relocación 0x%x aínda non está implementada RAM reservada recuperar a opción DHCP e gardala en VAR. Se VAR xa está - entón imprimir o valor. cartafol raíz no servidor TFTP detectouse o bucle de rutas gardar imaxes ROM no CARTAFOL [opcional] gardar a saída en FICHEIRO [requirido] seleccionar o índice da faciana non se atopou o porto serie «%s» estabelecer [NOME=VALOR ...] definir o modo de BloqMaiús estabelecer a medida ascendente da letra estabelecer a medida descendente da letra estabelecer o nome da familia estabelecer o intervalo do tipo de letra estabelecer tamaño de letra estabelecer o nome do ficheiro de entrada para a parte de 32 bits. estabelecer o nome do ficheiro de entrada para a parte de 64 bits. estabelecer o nome de ficheiro de entrada. O predeterminado é STDIN definir o modo de inserción definir o modo de BloqNúm estabelecer o nome do ficheiro de saída. O predeterminado é STDOUT definir o modo de pausa estabeleza o prefixo do cartafol [predeterminado=%s] definir o modo de BloqDespr estabelecer o nome do programa tamaño stretch(=%ESTENDIDA%)|normal(=%NORMAL%) non se atopou o símbolo «%s» temporal non se atopou o terminal %s ou non o manexa o terminfo non se atopou o terminal «%s» o argumento «%s» require un enteiro a entrada «%s» do device.map é incorrecta. Ignórase. Corrixa ou elimine o seu device.map o nome da unidade «%s» en device.map é incorrecto. Utilice %s no seu lugar. Utilice a forma [hfc]d[0-9]* (i.e. «hd0» ou «cd») o primeiro sector do ficheiro principal non está aliñado co sector o dispositivo de instalación é retirábel. Esta opción só está dispoñíbel en EFI. o tipo de partición 0x%x non é correcto os sectores do ficheiro principal están demasiado fragmentados o tamaño de «%s» non é %u o tamaño de «%s» é demasiado grande o tamaño de «%s» é demasiado pequeno este ficheiro ELF non é do tipo apropiado esta etiqueta de partición GPT non contén unha partición de arranque do BIOS; non será posíbel a incorporación este LDM non ten partición de incorporación; a incorporación non será posíbel esta etiqueta de partición con estilo msdos non ten o salto posterior ao MBR; non será posíbel a incoporaciónl agardábanse tres argumentos esgotouse o tempo ao abrir «%s» esgotouse o tempo de lectura de «%s» esgotado: non foi posíbel resolver o enderezo de hardware demasiada profundiade do aniñamento de ligazóns simbólicas o tradutor «%s» na ruta «%s» ten varias palabras sen opción, cando menos «%s» e «%s» o tradutor «%s» para a ruta «%s» dáse só con opcións, non pode  atopar a parte do dispositivo a liña de ordes de tradutor está baleira na ruta «%s» agardábanse dous argumentos tipo non é posíbel identificar un sistema de ficheiros en %s; non se pode facer a proba de seguranza tamaño de dispositivo non aliñado remate de ficheiro inesperado o argumento «%s» é descoñecido compresión descoñecida %d
 tipo de dispositivo descoñecido %s
 sistema de ficheiros descoñecido o dispositivo RAID  «%s» é dun tipo descoñecido Erro de expresión regular descoñecido formato de destino descoñecido %s
 tipo de terminfo descoñecido «%s» non se recoñece a especificación «%s» do formato de opción DHCP non se recoñece o enderezo de rede «%s» a interface de rede «%s» é descoñecida número non recoñecido non se pode resolver o enderezo %s sen definir [NOME ...] O erro HTTP %d: %s non é compatíbel A resposta HTTP non é compatíbel versión de RAID incompatíbel: %d.%d O formato gzip non é compatíbel paridade do porto serie incompatíbel velocidade do porto serie incompatíbel número de bits de parada do porto serie incompatíbel largura de palabra do porto serie incompatíbel utilizar COR de fondo utilizar COR para etiqueta utilizar COR para fondo de etiqueta utilizar COR para texto utilice CARTAFOL como a raíz da partición do sistema EFI. utilizar FICHEIRO como tipo de letra (PF2). utilizar FICHEIRO como fonte para a etiqueta utilizar FICHEIRO como imaxe de arranque [predeterminado=%s] utilizar FICHEIRO como imaxe principal [predeterminado=%s] utilice FICHEIRO como mapa de dispositivos [predeterminado=%s] utilizar FICHEIRO como xorriso [opcional] utilice os ficheiros GRUB no cartafol DIR [predeterminado=%s] utilizar CADEA como nome de produto utilizar CADEA como versión de produto utilizar o ficheiro identificador incluso se o UUID está dispoñíbel utilice imaxes e módulos baixo DIR [predeterminado=%s/<platform>] a variábel «%s» non está definida UTF-8 visualmente ordenado agardar ata que un depurador o enganche non se procederá mediante listas de bloques non é o ELI máxico ou a versión DISPOSITIVO xnu_uuid O ficheiro xz está corrupto ou ten opcións de bloque incompatíbeis non pode eliminar este enderezo cómpre cargar o núcleo primeiro a súa partición de arranque do BIOS é demasiado pequena, non será posíbel a incorporación o seu core.img é inusualmente longo. Non se vai axustar á área de incorporación a súa área de incorporación é estrañamente pequena. Core.img non vai caber nela.                            boot/grub/locale/hu.mo                                                                              0000600 0001750 0001750 00000102635 13417732100 0013645 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                       a     $    ,                                    !           ,   0      ]   $   r         *      
      	      7         +!     J!     O!     a!     !  $   !     !     !  !   !     !  Z   "     "     "     #     #     =#     W#     n#     #     #     #     #     #     #     	$     !$     <$  	   N$  #   X$     |$     $     $     $     $  &   $     %  !   "%  ,   D%     q%     }%     %  !   %     %     %     %     %     &     -&     H&  
   f&     q&     &     &     &  $   &     &     &     '  +   9'     e'  #   '     '     '  $   '      (     (  '   6(  9   ^(     (     (     (     (     (  
   )     )     )  +   )     )     )     
*     *  (   ,*     U*     m*     }*     *     *     *     *  7   *     +     
+     +     '+  2   =+     p+     +     +  !   r,  H   ,     ,  )   ,     -     /-     K-     h-     m-  '   r-  P   -     -     
.     .     /.     D.     Z.  "   o.     .     .  O   .     /     /     3/  %   G/  !   m/  "   /     /     /  +   /     0     (0     80  !   J0     l0     0     0      0     0     0     1     !1     51     E1     ]1     x1     1     1     1  !   1     2  2   2     Q2  *   k2  8   2     2     2     2     3  3   #3  $   W3  +   |3     3     3     3     3      4     "4     74     >4     ^4     v4     4     05     5     6     6     -6  "   F6     i6     r6     6     6  "   6  #   6     6  )   6     7     (7     @7     W7     m7     7     7     7     7  !   7  "   8  '   %8     M8     [8     s8     8     8  -   8  )   8     9     '9     ?9  &   F9  )   m9  ^   9     9  $   :  %   5:  ^   [:  _   :  >   ;  D   Y;  !   ;  '   ;  -   ;     <  )   6<     `<  )   }<  ,   <     <     <     =     (=     C=  E   T=  $   =     =     =     =     >      2>     S>  q   h>     >  :   >     2?     P?     _?     |?     ?     ?  0   ?     ?     @     !@     <@     O@  -   n@     @     @  '   @  !   @  "   A  #   0A     TA     fA  !   A     A  <   A     A  0   B     KB     YB     nB  $   tB     B     B     B  '   B     B     C     C     #C  '   1C  -   YC  '   C  '   C  .   C  *   D  /   1D     aD  .   wD  )   D     D  	   D     D  5   E     =E     SE     nE     E     E     E     E     E     E     E     E  
   E  
   F  !   F  )   /F  0   YF  6   F     F      F     F     G     G     +G     GG     UG     ^G  "   yG  F   G     G     G     G     H     H     .H  1   NH     H  7   H  /   H     I     !I     ?I  F   ]I      I    I     K     K     K  ;  K  B  L     <N  0   TN  "   N  ;   N     N  3   N  (   3O  @   \O  	   O  	   O  ?   O  #   O     P     P  !   /P     QP  *   WP     P     P  3   P     P  g   Q      Q      R     >R     DR  "   \R  %   R  %   R  "   R     R  &   S     -S     KS     jS  &   S  2   S     S  
   S  3   T     ;T  8   [T     T     T  ,   T  *   T     U  %   #U  7   IU     U     U      U  :   U     U     V     V  #   6V  ,   ZV  *   V  /   V     V     V     V  %   W  '   5W  8   ]W  #   W  *   W  (   W  8   X  *   GX     rX     X  1   X  :   X     Y  "   7Y  @   ZY  K   Y  #   Y  #   Z     /Z     ;Z     ZZ  
   pZ     {Z     Z  4   D[      y[     [     [     [  1   [     \     :\     Q\     h\     \     \     \  ;   \     \     \     ]     ]  =   5]     s]     ]    ]  *   ^  e   ^     A_  =   \_     _  #   _  /   _     `     `  =   `  ]   K`  &   `     `     `     `  !   a     9a  1   Ta     a     a  t   a  $   3b  %   Xb  #   ~b  :   b  4   b  4   c  "   Gc  )   jc  5   c  &   c     c     d  &   .d      Ud     vd     d  %   d     d  (   d  $   e     =e     \e  "   ze     e     e     e     e  $   f  /   <f  %   lf  L   f  )   f  0   	g  F   :g     g     g     g     g  L   g  )   <h  4   fh     h     h     h      h  '   i     *i     @i  (   Fi     oi     i     i  5  wj     k  
   k     k     k  %   l     (l     4l     Il     Nl  8   cl  A   l     l  A   l     /m     Dm     `m     ym     m     m     m  .   m     
n  -    n  <   Nn  :   n     n     n     n     o  &   0o  =   Wo  C   o      o     o     p  8   &p  /   _p     p  $   q  1   4q  2   fq     q     r  :   r  P   r  2   (s  8   [s  >   s  3   s  5   t  $   =t  =   bt  A   t  2   t  /   u  *   Eu  $   pu     u  Y   u  6   v  #   Ev  '   iv  (   v  (   v  (   v     w     +w  3   w  a   w  3   Zx     x      x     x  "   x     y  =   'y  $   ey  #   y  +   y     y  (   y  0   z     Lz  &   az  9   z     z  #   z  %   {     +{  8   H{  )   {     {  B   {  4   |  <   @|     }|     |     |  E   |     |  .   }     J}  0   V}     }     }     }     }  $   }  :   
~  7   E~  7   }~  D   ~  '   ~  1   "     T  1   l  -          
          5        B     Y     u                    ǀ     ݀            
        (     =  $   J  +   o  ;     A   ׁ       %   )  '   O     w       /        ΂  	   ݂  %     +     R   9  
     	     #        Ń     у       =     )   D  6   n  -        ӄ            Z   "     }     d   `                      X         ^       j   V      F   O              '   4                       `  T  ~             	  #            )       P     >             	   =        '          _     8   a           7        (         
                       J                 u   =                    B  C  +  E             [        1                 F                    q   $    H   ;  @   %                   G                          3     t   i                        v          ]                   h   L   2       !                                      {          9  R                          0       ]  .   4      *               n   U   -           o         }                U       -  ,                                 8  l      Z              .          M        |          /                     y   Q   !   :      z             :                    x      ?            e                       I      0           )  E            s   P              
      ,                       C   6  6         $   K              <       2        "      X  5   w   >   &                p   \   G                        ;                L  Q      I      [                  m         <         S  b   7                 _              N          *            r      N        T                      @     H              B           %  A     K      &      +            J   A  Y   c             k              #                        ?               Y  3           "  a            5         D   1         M             ^  O                f   Z  g   R       9           \    W                (                   V  D  W   S       /        - Total size unknown %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: error: %s: info: - Last modification time %d-%02d-%02d %02d:%02d:%02d %s -l | -r | [-s] grubdev osdisk. ADDR ADDR VALUE [MASK] ADDR1,MASK1[,ADDR2,MASK2[,...]] ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Ask for file name to reboot from. Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: BLOCK Base directory for hash list. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting a command list Change configured devices. Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check key modifier status. Clear the screen. Commands: Compare FILE with local file LOCAL. Compare two files. Compute or check hash checksum. Configure serial port. Continue loops Copy FILE to local file LOCAL. Create a blank environment block file. DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] Debug tool for filesystem driver. Define a submenu. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Disk count must precede disks list.
 Display a line of text. Display blocklist of FILE. Display output on all consoles. Display the usage of this command and exit. Display this help and exit. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. ENVVAR ENVVAR [ENVVAR] ... ESC at any time exits. EXPRESSION EXPRESSION ] Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Enable interpretation of backslash escapes. Enter in KDB on boot. Enter normal mode. Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Exit from GRUB. Exit from loops Exit from normal mode. Export variables. FILE FILE [ARG ...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FROM[K|M|G] TO[K|M|G] Failed to boot both default and fallback entries.
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Freeze ATA security settings until reset. GNU GRUB  version %s Get crc32 checksum of FILE. Get/set ATA disk parameters. HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. IMAGE_PATH COMMANDS Insert a module. Invalid command %s.
 Invalid device `%s'.
 Invalid disk count.
 Invoke user configuration routing. List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List devices and files. List devices or files. List files in PATH. List memory map provided by firmware. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file without changing context. Load another config file. Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading the Hurd ... MODULE Manage the BIOS drive mappings. Manipulate PCI devices. Menu entry type. Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. NAME [VARIABLE] [HINTS] NUMBER_OF_SECONDS No command is specified.
 No device is specified.
 Not enough parameters to command.
 Options: PARTITION COMMANDS PORT PORT VALUE [MASK] Parse legacy config in new context Parse legacy config in same context Partition %s: Perform both direct and reverse mappings. Play a tune. Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Press any key to continue... Print a block list. Print and execute block argument. Print drive identity and settings. Print sizes in a human readable format. REGEXP STRING Read only LENGTH bytes. Reboot the computer. Remove a module. Remove an environment variable. Remove any memory regions in specified range. Reset all mappings to the default values. Retrieve device info. Return from a function. STRING Save read value into variable VARNAME. Save variables to environment block file. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Shift positional parameters. Show ACPI information. Show APM information. Show a help message. Show a long list with more detailed information. Show loaded modules. Show the contents of a file. Show the current mappings. Show this message. Skip N bytes from output file. Skip offset bytes from the beginning of file. Specify filename. Specify hash to use. Specify one or more font files to load. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. The highlighted entry will be executed automatically in %ds. Tool to edit environment block. Translates the string with the current settings. USER PASSWORD USER PBKDF2_PASSWORD UTF-8 Uncompress file before checksumming. Unknown command `%s'.
 Unload EFI emulator. Usage: Use GDB remote debugger instead of DDB. Use serial console. VARNAME Verbose countdown. WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 You need to specify at least one command.
 [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [ADDR|comUNIT][,SPEED] [ARG] [ENVVAR=VALUE] [ENVVAR] [NUMBER:]VARNAME [OPTIONS...] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [PATTERN ...] [USERLIST] [VALUE]... [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again blocklist FILE cannot compress the kernel image cannot read `%s' correctly cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu cp FILE LOCAL crc FILE device count exceeds limit diskboot.img size must be %u bytes embedding is not possible, but this is required for cross-disk install error: %s.
 hex FILE invalid skip value %lld ls PATH no terminal specified no terminator in the core image non-sector-aligned data is found in the core file read error at offset %llu: %s the first sector of the core file is not sector-aligned the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small unable to identify a filesystem in %s; safety check can't be performed will not proceed with blocklists Project-Id-Version: grub 1.97+20110101
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2011-04-19 00:47+0200
Last-Translator: Gabor Kelemen <kelemeng@gnome.hu>
Language-Team: Hungarian <translation-team-hu@lists.sourceforge.net>
Language: hu
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Generator: KBabel 1.11.4
Plural-Forms:  nplurals=2; plural=(n != 1);
  – Teljes méret ismeretlen %ds %ds van hátra. %s úgy tűnik, hogy %s fájlrendszert tartalmaz, amely nem tart fenn helyet a DOS-stílusú rendszerindításnak. A GRUB oda telepítése a FÁJLRENDSZER MEGSEMMISÜLÉSÉT okozhatja, ha a grub-setup értékes adatokat ír felül (a --skip-fs-probe kihagyja ezt az ellenőrzést, saját felelősségre használja). %s úgy tűnik, hogy %s partíció-térképet tartalmaz, amely nem tart fenn helyet a DOS-stílusú rendszerindításnak. A GRUB oda telepítése a FÁJLRENDSZER MEGSEMMISÜLÉSÉT okozhatja, ha a grub-setup értékes adatokat ír felül (a --skip-fs-probe kihagyja ezt az ellenőrzést, saját felelősségre használja). %s, Linux %s verzióval %s, Linux %s verzióval (helyreállítási mód) %s, Xen %s és Linux %s verzióval %s, Xen %s és Linux %s verzióval (helyreállítási mód) %s, kFreeBSD %s verzióval %s, kFreeBSD %s verzióval (helyreállítási mód) %s, %s kernellel (%s közvetítésével) %s, %s kernellel (%s közvetítésével, helyreállítási mód) %s: hiba: %s: info: - Utolsó módosítás ideje: %d. %02d. %02d. %02d:%02d:%02d %s -l | -r | [-s] grubeszköz oslemez. CÍM CÍM ÉRTÉK [MASZK] CÍM1,MASZK1[,CÍM2,MASZK2[,…]] ASCII DOS-stílusú CR/NL sorvégek elfogadása. Aktív beviteli terminálok: Aktív kimeneti terminálok: Fájlnév bekérése, amelyből újra kell indulni. Kísérlet a GRUB telepítésére több partíciócímkével vagy partíciócímkével és fájlrendszerrel egyaránt rendelkező lemezre. Ez még nem támogatott. Kísérlet a GRUB telepítésére partíciók nélküli lemezre vagy partícióra. Ez egy ROSSZ ötlet. Elérhető beviteli terminálok: Elérhető kimeneti terminálok: BLOKK Hashlista alapmappája. Operációs rendszer elindítása. Indítás egy felhasználós módban. Indítás hibakeresési üzenetekkel. Indítás részletes üzenetekkel. Parancslista indítása Beállított eszközök módosítása. Alt billentyű ellenőrzése. Ctrl billentyű ellenőrzése. Shift billentyű ellenőrzése. CPU szolgáltatásainak ellenőrzése. Billentyűmódosító állapotának ellenőrzése. A képernyő törlése. Parancsok: A FÁJL összehasonlítása a HELYI helyi fájllal. Két fájl összehasonlítása. Hash ellenőrzőösszeg kiszámolása és ellenőrzése. Soros port beállítása. Ciklusok folytatása A FÁJL átmásolása a HELYI helyi fájlba. Üres környezetblokk-fájl létrehozása. ESZKÖZ ESZKÖZ [PARTÍCIÓ[+/-[TÍPUS]]] … Az ESZKÖZNEK OS eszköznek kell lennie (pl. /dev/sda). ESZKÖZ_NÉV KVT KÖNYVTÁR [OSCsomagSzükséges] Hibakeresési eszköz a fájlrendszer-illesztőprogramhoz. Almenü definiálása. Változók törlése. Meghajtó meghatározása. Fájlrendszer UUID meghatározása. Fájlrendszer címkéjének meghatározása. Fájlrendszer típusának meghatározása. Partíciótérkép típusának meghatározása. %s eszköz: ACPI letiltása. SMP letiltása. Minden indítási kimenet letiltása. SMART letiltása/engedélyezése (0/1). A lemezszámnak meg kell előznie a lemezek listáját.
 Egy sornyi szöveg megjelenítése. A FÁJL blokklistájának megjelenítése. Kimenet megjelenítése minden konzolon. A parancs használatának megjelenítése és kilépés. Ezen súgó megjelenítése és kilépés. Ne írja ki a záró új sort. Ne írjon ki üzeneteket. Ne vizsgálja meg a hajlékonylemez-meghajtókat. Ne használja az APM-et a számítógép leállítására. Nem csinál semmit, sikeresen. Nem csinál semmit, sikertelenül. Ne jelenítsen meg rendszerindítási diagnosztikai üzeneteket. Ne töltse be a vesszőkkel elválasztott listán megadott gazdatáblákat. Ne induljon újra, csak álljon le. Ne álljon meg az első hiba után. KÖRNYVÁLT KÖRNYVÁLT. [KÖRNYVÁLT] … Az ESC mindig kilép. KIFEJEZÉS KIFEJEZÉS ] Beágyazás nem lehetséges. A GRUB ezen telepítés során kizárólag blokklisták segítségével települhet, viszont a blokklisták NEM MEGBÍZHATÓAK és használatuk nem javallott. Visszaper-escapek értelmezésének engedélyezése. Indításkor belépés a KDB-be. Belépés a normál módba. Adja meg a jelszót:  Adja meg a felhasználónevet:  Hiba a parancssori argumentumok feldolgozásakor
 Kifejezés kiértékelése. Kilépés a GRUB-ból. Kilépés ciklusokból Kilépés a normál módból. Változók exportálása. FÁJL FÁJL [ARG…] FÁJL | TEMPÓ [MAGASSÁG1 HOSSZ1] [MAGASSÁG2 HOSSZ2] …  FÁJL… FÁJL1 FÁJL2 FÁJLNÉV PARANCS ETTŐL[K|M|G] EDDIG[K|M|G] Az alap és tartalék bejegyzések indítása is sikertelen.
 A fájlrendszer nem érhető el Fájlrendszer típusa: %s A GPT meghajtó eszközének feltöltése hibrid MBR-el. A megadott partíciók részei lesznek a hibrid MBR-nek. Maximum 3 partíció engedélyezett. Típusa MBR típus. A + jelzi, hogy az adott partíció aktív. Egyszerre csak egy partíció lehet aktív. EFI-emulátor betöltésének befejezése. Elsőnek próbálja a TIPP eszközt. Ha a TIPP vesszőre végződik, próbálja az alpartíciókat is Videoprobléma javítása. ATA biztonsági beállítások fagyasztása újraindításig. GNU GRUB  %s verzió A FÁJL crc32 ellenőrző-összege. ATA lemezparaméterek lekérése/beállítása. HASH TIPP A rendszer leállítása, ha lehet akkor APM használatával. A számítógép leállítása. Ez a parancs nem működik minden firmware-megvalósításon. N bájt kezelése a kimeneti fájlban. KÉP_ÚTVONAL PARANCSOK Modul betöltése. Érvénytelen parancs: %s.
 Érvénytelen eszköz: „%s”.
 Érvénytelen lemezszám.
 Felhasználói beállításirányítás hívása. PCI eszközök felsorolása. Minden fájl felsorolása. Elérhető videomódok felsorolása. Ha meg van adva felbontás, akkor csak az arra illeszkedő módok felsorolása. Eszközök és fájlok felsorolása. Eszközök vagy fájlok felsorolása. Fájlok felsorolása az ÚTVONALON. A firmware által biztosított memóriatérkép kiírása. Bemeneti terminál felsorolása vagy kiválasztása. Kimeneti terminál felsorolása vagy kiválasztása. Aktuális változók felsorolása. Betöltött betűkészletek felsorolása. Változók felsorolása a környezeti blokkfájlból. 64 bites XNU rendszerkép betöltése. BIOS-kiíratás betöltése. FreeBSD környezet betöltése. FreeBSD kernelmodul betöltése (ELF). FreeBSD kernelmodul betöltése. Linux betöltése. NTLDR vagy BootMGR betöltése. NetBSD kernelmodul (ELF) betöltése. NetBSD kernelmodul betöltése. XNU kiterjesztéskönyvtár betöltése. XNU kiterjesztéscsomag betöltése. XNU kiterjesztés betöltése. XNU rendszerkép betöltése. Billentyűzetkiosztás betöltése Multiboot 2 kernel betöltése. Multiboot 2 modul betöltése. Multiboot kernel betöltése. Multiboot modul betöltése. Indítókép betöltése az XNU-hoz. EFI-emulátor betöltése és előkészítése. Másik rendszerbetöltő betöltése. Másik konfigurációs fájl betöltése a kontextus módosítása nélkül. Másik konfigurációs fájl betöltése. Háttérkép betöltése az aktív terminálhoz. Gazda ACPI-táblák és a paraméterben megadott táblák betöltése. Initrd betöltése. A FreeBSD kernel betöltése. A NetBSD kernel betöltése. Az OpenBSD kernel betöltése. Csak a vesszőkkel elválasztott listán megadott gazdatáblák betöltése. Ugyanazon fájl betöltése több módon. Változók betöltése a környezeti blokkfájlból. GNU Mach betöltése… Linux %s betöltése… Xen %s betöltése… Kiinduló ramdisk betöltése… A FreeBSD %s kernelének betöltése… A Hurd betöltése… MODUL A BIOS meghajtótársítások kezelése. PCI-eszközök kezelése. Menübejegyzés típusa. Minimális BASH-szerű szerkesztés támogatott. Az első szóhoz a TAB felsorolja a lehetséges parancskiegészítéseket. Bárhol máshol a TAB felsorolja a lehetséges eszköz- vagy fájlkiegészítéseket. %s Minimális Emacs-szerű képernyőszerkesztés támogatott. A TAB felsorolja a kiegészítési lehetőségeket. Nyomja meg a Ctrl-x kombinációt vagy az F10-et az indításhoz, a Ctrl-c kombinációt vagy az F2-t a parancssorhoz, vagy az ESC-t a szerkesztések eldobásához és a visszatéréshez a menübe. NÉV [VÁLTOZÓ] [TIPPEK] MÁSODPERC Nincs megadva parancs.
 Nincs megadva eszköz.
 Nincs elég paraméter a parancshoz.
 Kapcsolók: PARTÍCIÓ PARANCSOK PORT PORT ÉRTÉK [MASZK] Örökölt beállítások feldolgozása új kontextusban Örökölt beállítások feldolgozása ugyanabban a kontextusban %s partíció: Közvetlen és fordított társítások végrehajtása egyaránt. Dallam lejátszása. A lehetséges paraméterek: A lehetséges parancsok: A lehetséges eszközök: A lehetséges fájlok: A lehetséges partíciók: A lehetséges dolgok: Nyomjon meg egy billentyűt a folytatáshoz… Blokklista kiírása. Blokkargumentum kiírása és végrehajtása. Meghajtó azonosítójának és beállításainak kiírása. Méretek kiírása emberek által olvasható formátumban. REGEXP KARAKTERLÁNC Csak HOSSZ bájt beolvasása. Számítógép újraindítása. Modul eltávolítása. Környezeti változó eltávolítása. Memóriaterületek eltávolítása a megadott tartományból. Minden társítás visszaállítása az alapértelmezett értékre. Eszközinformációk lekérése. Visszatérés függvényből. KARAKTERLÁNC Beolvasott érték mentése a VÁLTOZÓNÉV változóba, Változók mentése a környezeti blokkfájlba. Eszközök keresése UUID alapján. Ha a VÁLTOZÓ meg van adva, akkor az elsőként megtalált eszköz bekerül a változóba. Eszközök keresése fájl alapján. Eszközök keresése fájlrendszer-UUID alapján. Eszközök keresése fájlrendszercímke alapján. Eszközök keresése fájl alapján. Ha a VÁLTOZÓ meg van adva, akkor az elsőként megtalált eszköz bekerül a változóba. Eszközök keresése címke alapján. Ha a VÁLTOZÓ meg van adva, akkor az elsőként megtalált eszköz bekerül a változóba. Az APM beállítása
(1=alacsony, …, 254=magas, 255=ki). Automatikus zajkezelés (AAM) beállítása
(0=ki, 128=csendes, ..., 254=gyors). Az RSDP, XSDT és RSDT OEMID-jának beállítása. Az RSDP, XSDT és RSDT OEMTABLE ID-jának beállítása. Az RSDP, XSDT és RSDT OEMTABLE revíziójának beállítása. Változó beállítása a visszatérési értékre. Változó beállítása az első talált eszközhöz. Környezeti változó beállítása. Az RSDP, XSDT és RSDT létrehozó mezőjének beállítása. Az RSDP, XSDT és RSDT létrehozó revíziójának beállítása. Hibakeresési környezeti változó beállítása. Meghajtó energiatakarékos módba kapcsolása. Meghajtó készenléti módba kapcsolása. Pozícióparaméterek beállítása. Gyökéreszköz beállítása. Készenléti időkorlát beállítása
(0=ki, 1=5mp, 2=10mp, …, 240=20p, 241=30p, …). A TERM terminfo típusának beállítása a TÍPUSRA.
 Soros port címének beállítása. Soros port paritásának beállítása. Soros port sebességének beállítása. Soros port stop bitjeinek beállítása. Soros port szóhosszának beállítása. A soros egység beállítása. Képfájlok beállítása az ESZKÖZRŐL indulásra.

Ezt a programot általában nem kell közvetlenül futtatnia. Használja a grub-install programot. Felhasználó jelszavának beállítása (PBKDF2).  A felhasználói jelszó (egyszerű szöveg) beállítása. Nem biztonságos, így nem ajánlott. Változó beállítása a felhasználói bevitelre. Változók beállítása. Pozícióparaméterek eltolása. ACPI információ mutatása APM-információk megjelenítése. Súgóüzenet megjelenítése. Hosszú lista megjelenítése részletesebb információkkal. Betöltött modulok megjelenítése. Fájl tartalmának megjelenítése. Az aktuális társítások megjelenítése. Ezen üzenet kiírása. N bájt átugrása a kimeneti fájlból. Eltolásbájtok kihagyása a fájl kezdetétől. Fájlnév megadása. Használandó hash-eljárás megadása Adjon meg legalább egy betöltendő betűkészletfájlt. A terminál csak ASCII [alap]. A terminál logikai sorrendű UTF-8 A terminál vizuális sorrendű UTF-8 USB-támogatás tesztelése. Teszteli, hogy a REGEXP illeszkedik-e a KARAKTERLÁNCRA. Videoalrendszer tesztelése SzxM módban. Videoalrendszer tesztelése. A kijelölt bejegyzés automatikusan elindul %d másodperc múlva. Környezetblokk szerkesztésére szolgáló eszköz. Lefordítja a karakterláncot a jelenlegi beállításokkal. FELHASZNÁLÓ JELSZÓ FELHASZNÁLÓ PBKDF2_JELSZÓ UTF-8 Tömörítse ki a fájlokat az ellenőrzőösszeg számolása előtt. Ismeretlen parancs: „%s”.
 EFI-emulátor eltávolítása a memóriából. Használat: GDB távoli hibakereső használata DDB helyett. Soros konzol használata. VÁLTOZÓNÉV Részletes visszaszámlálás. SZÉLESSÉGxMAGASSÁG. Várakozás a megadott másodpercig. Várakozás billentyűnyomásra minden kimeneti sor után. Figyelmeztetés: érvénytelen háttérszín: „%s”
 Figyelmeztetés: érvénytelen előtérszín: „%s”
 Figyelmeztetés: szintaktikai hiba (hiányzó perjel) itt: „%s”
 Legalább egy parancsot meg kell adni.
 [--append|--remove] [TERMINÁL1] [TERMINÁL2] … [--md5] JELSZÓ [FÁJL] [--no-mem-option] [--type=TÍPUS] FÁJL [ARG …] [-c FÁJL [-p ELŐTAG]] [FÁJL1 [FÁJL2 …]] [-e|-n] KARAKTERLÁNC [-f FÁJL] [-f FÁJL] változónév […] [-f|-l|-u|-s|-n] [--hint TIPP [--hint TIPP] …] NÉV [-l|-h|-a] [FÁJL …] [-m (stretch|normal)] FÁJL [CÍM|comEGYSÉG][,SEBESSÉG] [ARG] [KÖRNYVÁLT=ÉRTÉK] [KÖRNYEZETI VÁLTOZÓ] [SZÁM:]VÁLTOZÓNÉV [OPCIÓK…] [KAPCSOLÓK] LEMEZ [KAPCSOLÓK] FÁJL_VAGY_ESZKÖZ [MINTA…] [FELHASZNÁLÓLISTA] [ÉRTÉK]… [[-a|-u|-v] [-g SzxM] TERM [TÍPUS]] [[év-]hónap-nap] [óra:perc[:másodperc]] kísérlet a(z) „%s” magkép beolvasására a GRUB-ból kísérlet a(z) „%s” magkép beolvasására a GRUB-ból újra blocklist FÁJL a rendszermagkép nem tömöríthető „%s” nem olvasható be megfelelően cmp FÁJL HELYI comEGYSÉG[,SEBESSÉG] összehasonlítási hiba a(z) %llu eltolásnál cp FÁJL HELYI crc FÁJL az eszközszám túllépi a korlátot a diskboot.img mérete %u bájt kell legyen A beágyazás nem lehetséges, noha ez szükséges a lemezek közti telepítéshez hiba: %s.
 hex FÁJL érvénytelen ugrási érték: %lld ls ÚTVONAL nincs megadva terminál nincs befejező a magképben a magfájlban nem szektorokhoz igazított adatok találhatók olvasási hiba a(z) %llu eltolásnál: %s a magfájl első szektora nincs szektorokhoz igazítva a magfájl szektorai túlzottan töredezettek „%s” mérete nem %u „%s” mérete túl nagy „%s” mérete túl kicsi nem azonosítható fájlrendszer ezen: %s, a biztonsági ellenőrzés nem hajtható végre nem folytatom a blokklistákkal                                                                                                    boot/grub/locale/id.mo                                                                              0000600 0001750 0001750 00000042630 13417732100 0013623 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                             ,    <      X    Y     ^  !   p       7                    !        7     Q     h                                             6     H     [  !   b                                
   #     .     <     I     b     ~       +          #        "  $   9     ^     x  '     9               
   &     1  +   >     j                                               )        I     ^  '   {  P               "        0     B     R  %   j  +                    !             3     ?     ]     y                                2   !     T  8   n                      3     +   /     [     p                          }                 )                        /     E     Y     r            "     '                  0  )   A     k  &     )     ^     ^   1  _     >     D   /   !   t   '      -            )   !  ,   6!     c!     |!     !  E   !     !     "     '"     B"      a"     "  :   "     "     "  0   #     6#     K#     h#     #  -   #     #     #     #  <   #     ;$     I$  '   P$     x$     $  '   $  -   $  '   $  '   %  .   E%  B   t%     %  	   %     %     %     %     &     &  )   -&  0   W&  6   &      &     &  "   &     '  1   >'  7   p'  /   '     '     '     (  F   /(    v(  &   *     '+  &   ;+     b+  :   y+     +     +     +  ,   +     ,     2,     M,     f,  $   ,     ,     ,     ,     ,     -  $   -     A-     R-  	   i-  "   s-     -     -     -     -     -     .     7.     D.     V.      h.  !   .     .  #   .  2   .  !   /  $   ?/     d/  /   |/     /  %   /  %   /  Y   0     r0     0     0  
   0  )   0      0     1     $1     <1     V1     h1     o1  !   1     1     1  /   1     1     2  /   .2  W   ^2     2     2  %   2     2     3     /3  4   O3  /   3     3     3     3      3     4     24     >4     [4     t4     4     4     4     4  %   4     5  4   15     f5  F   5     5     5     5     6  O   %6  *   u6     6     6  !   6     6     6     7     7  "   7     8     "8  3   .8     b8  !   w8  "   8  #   8      8  !   9     #9  (   A9     j9  *   9  0   9     9     9     :  %   :     A:  .   _:  *   :  v   :  q   0;  t   ;  K   <  M   c<  #   <  )   <  -   <  %   -=  ,   S=  ,   =     =     =     =  Q   =     G>     _>     |>     >     >     >  N   >  %   6?     \?  >   u?     ?     ?     ?     @  #   @     >@     Z@     m@  <   @     @     @  )   @     
A     !A  6   >A  A   uA  +   A  )   A  >   B  ?   LB     B     B     B     B     B     B  
   C  (   C  /   6C  4   fC  %   C  %   C  &   C  $   D  5   3D  ;   iD  0   D     D     D     E  i   .E     ^          I                           {   /   |   +                 2      4   k   [      U   d      3   "   9            1      0   c                 B          Y          =   x   .   Z      :   ?          5                                 Q                     _             M      -                ,            V             K   L      e          C      i   $   ;          X       b                           p   w          F                                    t   }   @           R   '         6      P       r         s   `                               	                     S   !   J         7                                 y   v             *         D   u       \             (       #          E                         a   T                     m          G   8      O       h   
   f       >           q   o      %   W       n                ~          z   j   g   ]             l   A                       <   H   )             &   N    %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with kFreeBSD %s - Last modification time %d-%02d-%02d %02d:%02d:%02d %s -l | -r | [-s] grubdev osdisk. ADDR ADDR VALUE [MASK] Ask for file name to reboot from. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting a command list Change configured devices. Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check key modifier status. Clear the screen. Compare two files. DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DIRECTORY [OSBundleRequired] Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Display a line of text. Display output on all consoles. Display the usage of this command and exit. Display this help and exit. Do not output the trailing newline. Do not print messages. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. ESC at any time exits. EXPRESSION EXPRESSION ] Enable interpretation of backslash escapes. Enter in KDB on boot. Enter password:  Enter username:  Evaluate an expression. Exit from GRUB. FILE FILE1 FILE2 Filesystem cannot be accessed Filesystem type %s Fix video problem. Freeze ATA security settings until reset. GNU GRUB  version %s Get/set ATA disk parameters. Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. ID Invalid device `%s'.
 Invoke user configuration routing. List PCI devices. List all files. List devices and files. List memory map provided by firmware. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load Linux. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load a multiboot 2 kernel. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load another boot loader. Load another config file without changing context. Load another config file. Load host ACPI tables and tables specified by arguments. Load initrd. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load variables from environment block file. Loading Linux %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... MODULE Manage the BIOS drive mappings. Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s NUMBER_OF_SECONDS No device is specified.
 PARTITION COMMANDS Partition %s: Perform both direct and reverse mappings. Play a tune. Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Press any key to continue... Print a block list. Print drive identity and settings. Print sizes in a human readable format. Read only LENGTH bytes. Reboot the computer. Remove a module. Reset all mappings to the default values. Retrieve device info. Save read value into variable VARNAME. Save variables to environment block file. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set a variable to return value. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set drive to sleep mode. Set drive to standby mode. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Show a help message. Show a long list with more detailed information. Show loaded modules. Show the contents of a file. Show the current mappings. Show this message. Skip offset bytes from the beginning of file. Specify filename. Test USB support. Test video subsystem. The highlighted entry will be executed automatically in %ds. USER PASSWORD Usage: Use GDB remote debugger instead of DDB. Use serial console. Verbose countdown. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Your embedding area is unusually small.  core.img won't fit in it. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [ENVVAR] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [PATTERN ...] [[year-]month-day] [hour:minute[:second]] attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again cannot compress the kernel image cannot read `%s' correctly diskboot.img size must be %u bytes no terminator in the core image non-sector-aligned data is found in the core file the first sector of the core file is not sector-aligned the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small unable to identify a filesystem in %s; safety check can't be performed Project-Id-Version: grub 1.97+20100124
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2010-01-25 16:30+0700
Last-Translator: Arif E. Nugroho <arif_endro@yahoo.com>
Language-Team: Indonesian <translation-team-id@lists.sourceforge.net>
Language: id
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
 %s sepertinya berisi sebuah sistem berkas %s yang tidak diketahui untuk mereserve ruang untuk boot gaya-DOS. Memasang GRUB disana dapat berakibat KERUSAKAN SISTEM BERKAS jika data berharga dipaksa tulis oleh grub-setup (--skip-fs-probe menonaktifkan pemeriksaan ini, gunakan sesuai resiko anda) %s, dengan Linux %s %s, dengan Linux %s (mode penyembuhan) %s, dengan kFreeBSD %s - Waktu modifikasi terakhir %d-%02d-%02d %02d:%02d:%02d %s -l | -r | [-s] grubdev osdisk. ALAMAT ALAMAT NILAI [TOPENG] Tanya untuk nama berkas untuk direboot dari. Boot sistem operasi. Boot kedalam mode tunggal. Boot dengan pesan debug. Boot dengan pesan detail. Mem-boot dari sebuah daftar perintah Ubah konfigurasi perangkat. Periksa tombol Alt. Periksa tombol Control. Periksa tombol Shift. Periksa kapabilitas CPU. Periksa keadaan tombol pemodifikasi. Bersihkan layar. Bandingkan dua berkas. PERANGKAT PERANGKAT [PARTISI[+/-[TIPE]]] ... DIREKTORI [OSBundleRequired] Tentukan driver. Tentukan UUID sistem berkas. Tentukan nama sistem berkas. Tentukan tipe sistem berkas. Tentukan tipe peta partisi. Perankat %s: No-aktifkan ACPI. Non-aktifkan SMP. Tampilkan seluruh keluaran boot. Nonaktifkan/aktifkan SMART (0/1). Tampilkan baris dari teks. Tampilkan keluaran di semua konsol. Tampilkan penggunaan dari perintah ini dan keluar. Tampilkan bantuan ini dan keluar. Jangan keluarkan akhiran baris baru. Jangan tampilkan pesan. Jangan gunakan APM untuk menghentikan komputer. Tidak melakukan apapun, sukses. Tidak melakukan apapun, tidak sukses. Jangan tampilkan pesan diagnosa boot. Jangan muat tabel komputer yang dispesifikasikan oleh daftar yang dipisahkan dengan koma. Jangan reboot, hanya hentikan. ESC di waktu apapun keluar. EKSPRESI EKSPRESI ] Aktifkan interpretasi 'escape backslash'. Masuk dalam KDB pada waktu boot. Masukan kata sandi   :  Masukan nama pengguna:  Evaluasi sebuah ekspresi. Keluar dari GRUB. BERKAS BERKAS1 BERKAS2 Sistem berkas tidak dapat diakses Tipe sistem berkas %s Perbaiki masalah video. Hentikan konfigurasi keamanan ATA sampai reset. GNU GRUB  versi %s Get/set parameter disk ATA. Hentikan sistem, jika memungkinkan gunakan APM. Hentikan komputer. Perintah ini mungkin tidak bekerja di semua implementasi 'firmware'. ID Perangkat `%s' tidak valid.
 Panggil konfigurasi routing pengguna. Tampilkan perangkat PCI. Tampilkan seluruh berkas. Tampilkan perangkat dan berkas. Tampilkan peta memori yang disediakan oleh firmware. Tampilkan variabel dari berkas blok lingkungan. Muat image 64-bit XNU. Muat BIOS 'dump'. Muat lingkungan FreeBSD. Muat modul kernel (ELF) FreeBSD. Muat modul kernel FreeBSD. Muat Linux. Muat ekstensi direktori XNU. Muat paket ekstensi XNU. Muat ekstensi XNU. Muat image XNU. Muat sebuah kernel multiboot 2. Muat sebuah kernel multiboot. Muat sebuah modul multiboot. Muat sebuah gambar singkat untuk XNU. Muat 'boot loader' lain. Muat berkas konfigurasi lain tanpa mengubah konteks. Muat berkas konfigurasi lain. Muat tabel ACPI komputer dan tabel yang dispesifikasikan oleh argumen. Muat initrd. Muat kernel dari FreeBSD. Muat kernel dari NetBSD. Muat kernal dari OpenBSD. Hanya muat tabel yang dispesifikasikan oleh daftar yang dipisahkan dengan koma. Muat variabel dari berkas blok lingkungan. Memuat Linux %s ... Memuat inisial ramdisk ... Memuat kernel dari FreeBSD %s ... MODUL Pelihara pemetaan drive BIOS. Penyuntingan minimal bergaya BASH didukung. Untuk kata pertama, TAB menampilkan pelengkapan perintah yang memungkin. Dimanapun TAB menampilkan perangkat yang memungkinkan atau pelengkapan berkas. %s JUMLAH_DARI_DETIK Perangkat tidak dispesifikasikan.
 PERINTAH PARTISI Partisi %s: Lakukan baik pemetaan secara langsung dan terbalik. Mainkan sebuah nada. Argumen yang memungkinkan adalah: Perintah yang memungkinkan adalah: Perangkat yang memungkinkan adalah: Berkas yang memungkinkan adalah: Partisi yang memungkinkan adalah: Hal yang memungkinkan adalah: Tekan tombol apapun untuk melanjutkan... Tampilkan daftar blok. Tampilkan konfigurasi dan identitas drive. Tampilkan ukuran dalam format yang mudah dibaca. Baca saja PANJANG bytes. Reboot komputer. Hapus sebuah modul. Reset seluruh pemetaan ke nilai baku. Dapatkan informasi perangkat. Simpan nilai terbaca kedalam variabel NAMAVAR. Simpan variabel ke berkas blok lingkungan. Cari perangkat dengan UUID. Jika VARIABEL dispesifikasikan, perangkat pertama yang ditemukan diset ke sebuah variabel. Cari perangkat dengan berkas. Jika VARIABEL dispesifikasikan, perangkat pertama yang ditemukan diset ke variabel. Cari perangkat berdasarkan nama. Jika VARIABEL dispesifikasikan, perangkat pertama yang ditemukan diset ke variabel. Set Advanced Power Management
(1=rendah, ..., 254=tinggi, 255=tidak nyala). Set Automatic Acoustic Management
(0=tidak nyala, 128=pelan, ..., 254=cepat). Set OEMID dari RSDP, XSDT dan RSDT. Set OEMTABLE ID dari RSDP, XSDT dan RSDT. Set revisi OEMTABLE dari RSDP, XSDT dan RSDT. Set sebuah variabel ke nilai kembali. Set bagian pembuat dari RSDP, XSDT dan RSDT. Set revisi pembuat dari RSDP, XSDT dan RSDT. Set drive ke mode tidur. Set drive ke mode standby. Set perangkat root. Set waktu habis standby
(0=tidak nyala, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set alamat port serial. Set pariti dari port serial. Set kecepatan port serial. Set stop bit dari port serial. Set panjang kata port serial. Set satuan serial. Set kata sandi pengguna (teks-terbuka). Tidak direkomendasikan dan tidak aman. Set variabel dengan masukan pengguna. Tampilkan pesan bantuan. Tampilkan sebuah daftar panjang dengan informasi yang lengkap. Tampilkan modul termuat. Tampilkan isi dari berkas. Tampilkan pemetaan saat ini. Tampilkan pesan ini. Lewati byte ofset dari awal berkas. Spesifikasikan nama berkas. Coba dukungan USB. Coba subsistem video. Masukan yang disoroti akan diboot secara otomatis dalam %ds. KATA SANDI PENGGUNA Penggunaan: Gunakan GDB remote debugger daripada DDB. Gunakan konsol serial. Hitung mundur secara detail. Tunggu selama jumlah dari detik yang dispesifikasikan. Tunggu untuk penekanan tombol setelah setiap baris dari keluaran. Peringatan: nama belakang tidak valid `%s'
 Peringatan: warna depan tidak valid `%s'
 Peringatan: kesalahan dalam sintaks (hilang slash) dalam `%s'
 Penempatan anda sangat kecil. core.img tidak akan masuk disana. [-e|-n] KATA-KATA [-f BERKAS] [-f BERKAS] nama_variabel [...] [ENVVAR] [PILIHAN] DISK [PILIHAN] BERKAS_ATAU_PERANGKAT [POLA ...] [[tahun-]bulan-hari] [jam:menit[:detik]] mencoba untuk membaca image core `%s' dari GRUB mencoba untuk membaca image core `%s' dari GRUB lagi tidak dapat mengkompress image kernel tidak dapat membaca `%s' secara benar besar diskboot.img seharusnya %u bytes tidak ada pengakhir dalam image core sektor-tidak-selaras data ditemukan dalam berkas core sektor pertama dari berkas core tidak selaras secara sektor sektor dari berkas core terlalu terpotong potong ukuran dari `%s' bukan %u ukuran dari `%s' terlalu besar ukuran dari `%s' terlalu kecil tidak dapat mengidentifikasikan sebuah sistem berkas dalam %s; pemeriksaan keamanan tidak dapat dilakukan                                                                                                         boot/grub/locale/it.mo                                                                              0000600 0001750 0001750 00000315253 13417732100 0013647 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                       v     #    |G      H_  #   I_      m_     _     _     _  $   _     _  6   `     H`     O`  	   [`     e`     r`     `     `     `     `  .   `  .   a  %   >a     da     ha    wa    |b    c     d  7   d  F   d  v   "e  +   e     e      e     e  !   	f     +f  ,   Hf     uf     f  $   f     f  *   f     g     !g     )g     9g     Qg  
   qg  	   |g     g  ,   g  ,   g  ,   g  '   )h  -   Qh      h  (   h  (   h  )   h     i     <i     \i     ii     ri  "   {i  4   i     i     i  7   i      j  1   )j     [j     zj  %   }j  '   j  %   j  '   j     k     k      k     >k     Sk     hk     mk     k     k     k     k     k     k     k  3   k     )l  $   /l     Tl     ll     l     l     l     l     l  -   l     m  !   4m     Vm     km     m  #   m     m  `   Hn  Z   n     o     o     ;o     =o     Ao     Xo     ^o     go     ~o     o     o     o     o     o     p     (p     ?p     Up     cp     zp     p     p     p  %   p     p     p     p     q     .q     Dq     Sq     fq     wq  *   q  3   q     q  "   	r  8   ,r     er     wr  	   r  #   r     r     r     r     s     3s     Js  )   Ys     s     s     s  P   s     /t     Dt  H   Yt  &   t     t     t  !   t  ,   
u     7u     Cu     Gu  	   du  !   nu  *   u     u     u     u     u     v  $   ,v     Qv     cv     uv     v     v     v  
   v  
   v     v  1   w     @w     Nw     [w     tw  3   w  >   w  $   x     (x     ?x     \x     tx     x     x  +   x     x     y  #   )y     My     dy  $   y     y     y  '   y  9   z     @z     Yz  z   wz     z     z  8   {     F{  
   ]{     h{     u{     {     {     K|  +   h|     |     |     |  "   |     |     }  (   }     @}     X}     d}     t}     }     }  "   }  0   }     ~     ~     ~  7   $~     \~     d~     p~     ~     ~     ~  0   ~     ~     ~            2   .  %   a            *     6     +        9     W     j  !   ;  d   ]  e     d   (  i     o     H   g          Ã     ك                    -     D  #   ]                 1   Ʉ  )        %     ,     .     C  /   R                 5   Ņ            K   6                    І     Ԇ     چ     ߆  '     P        ]     |  	                    '   ȇ  +             -  )   I     s               È     ؈            $        @     R  "   m                 (        ԉ     ؉  "   މ  +     -   -     [     t                 O                  4     K     Y  %   m       )     !   ܋  "        !     =  +   T                 !        ی                     3     T     o                    Ѝ  4             4     F     ^     y               Ǝ        !        &  4   @  M   u  2   Ï            *   .  8   Y                    ΐ       3     $   1  +   V                         ϑ                     =     R     T  D   l       7     ;        ,     L  !   k            s   Ó     7     O     l     }                    ה                         T     g     {                    Ɩ  '   ݖ  
                  5     :     R     V     h  H        Η                 %        B     \  #   u               Ә     ܘ                 3     T  "   a  (          %   ə       2   	     <     E  #   ^  *                    #   ǚ            	     	     "     ;   9  #   u  <        ֛            .     	   ?     I  `   [       !   ќ  )             !     '     /  q   <               ٝ                    (     =     \  "   {               О                    )     B  #   W     {       g                    -   ؠ       !        <  "   M  '   p  Q                        4     B     X     u               ̢                     *     K     `      s               ã     ԣ  -        "     <  "   P  b   s  )   ֤                .  ,   I     v       	     "     %                         &     )   8     b  ^   u     Ԧ  $     %        9  ^     _   K  }        )  )     '   
  >   2  D   q  !     '   ت  -      #   .     R  )   r       )     )     ,        :     Z     s            E     $      A   %  )   g               ʭ                %  q   :       :   ɮ          "     1     Q     n                 0   ̯               0  )   F  &   p               ϰ       )        (  %   8  %   ^  ,     '     :   ٱ       -   3     a  .   q            '   ǲ  $     "        7     C     `  *   n            )     o   ҳ     B     [  6        L     N  0   U        !     "   ɵ  #             "     @     V  !   u       
          <   Ҷ  %     >   5     t     }                      d   ӷ  *   8  0   c  6        ˸     Ӹ               
       0   *     [  !   n            $                       2     C  $   `  "     $        ͺ                     ,     >     P     b     o            '               $      +   E  "   q       )        ż     ׼               *  '   >     f            <                        /  m   J          Ӿ                  +   :  3   f  1        ̿  '   ڿ  -        0  '   9  '   a  .     	                            /     K     g                      *     ?     B   B  p          /               .     O     )   [            	          5                  2     H     c  :   }                                             8     N     _     e  	   r     |                                     
     
     	        %  !   +  )   M     w                 F     N   !     p  "   ~            -     -     $     #   9  0   ]  6                    (     1     )   O     y       !                     %        4  &   H     o             7     .      4   /     d                      %             !     6     M     f                 ,                       "     5     H  #   ]            B                  4     G     b     y  &                              &   (     O     g            ;     V     "   9  &   \  !                    /     H     F   X  w     N     (   f            I     $     '   &     N  %   g                      $     '     *        E     _     n  J                    -     +   J     v  $   |       "     +     J     %   D     j        "                             +     >     V     k       %                    %        D     [     n            [          !        0     I     ]     b                                             .     F     b     x                           1        6     F     ^     q               ^  1   l       0               !        :     W     m                                                       .     @  &   V     }                      '     &   &     M  L   Z            !                  ,     I     ^     p                      #     #     $        0     @  &   Q     x  !                              	     7        >  %   X  [   ~  w     7   R  K     #     /        *     E     c  &     U     @     Q   ?                 +          R     L   q  .               F   	     P     f     }                                    &  2   A  !   t  #                                 /     O     g       (     #             
          =  )   P     z       '     '     '        %  0   D     u       -     8             -  !   D      f            .          !     B   !  E   d  B         %   {  ,                  	  0   !  "   R  8   u  
          
          #             &      E     f  5   t  3     ,               C    1  b  O         E     C   C       /        ;  &   K     r  '          0               *   !     L  0   g                      '          	        %  +   E  ,   q  +     +     /     !   &  ,   H  ,   u  -     $     $             &     /  3   8  D   l            0     	     3        9     X  '   [  +     '     +               (   
     3  !   K     m     q  	     %                              3        9  0   ?     p                              	  ,   !  "   N  (   q       "          *         w    u   8                                  #   9    ]    } !                   	    '    @ #   W    {             $             !       *    H    g    }     %    8    G    ,   W )    N               . !   7 !   Y    {                 1       # #   @ #   d _           	 R    	 *   s	    	    	 "   	 B   	    +
    7
    ;
 	   X
 1   b
 8   
    
    
             = (   W         !    %         .    
   A 
   L    W 7   n         "        ;    A   C <                    '   6 (   ^ *        +                8 %   Y         ,    F       #    B    _         Z       n             "        (    @               0 '   N    v     ;                       *    G 7   \ ;                1       %    -    9    J    a    m B   u                 >   
 2   I    |     (    :    ;    #   O    s     +   { t    u    t    y        \       k                             %   *    P    p     :    7                   3 A   D              L        &   6 O   ] !    +                   $    ) 0   . V   _ "        	        &         *   .  5   Y            2     #     #   ! "   9!    \!    t!    !    ! *   !    !    " -   -"    [" 
   ]"    h" $   n"    "    " *   " +   " 1   "    &#    C#    V#    h#    z# o   #    #    $    .$    C$    S$ 2   m$ "   $ 1   $ (   $ )   %    H%    d% 4   %    %    %    % )   % #   )&    M&    j&    w& (   & "   &    & %   & "   '    7'    P' =   g' "   '    ' #   '    (     (    =(    X( !   s(    ( $   (    ( G   ( ^   >) >   ) &   )     * 4   $* E   Y*    *    *    *    *    * B   + %   R+ 4   x+    +    +    +    +    ,    #, $   C, !   h,    ,    ,    , O   ,    
- I   - K   [- '   - "   - !   -    . +   /. k   [.    . &   .    /    /    */    H/    h/    /    /    /    /    X0    1    01    H1    P1 "   _1    1    1 .   1    1    1    2    !2    &2    >2    B2    T2 T   n2    2 #   2    2    3 2   &3    Y3    v3 5   3 "   3 &   3    4    )4 &   G4 '   n4 ,   4    4 '   4    4    5 #   25 ,   V5 5   5    5    5 '   5 1   6    96    ;6    N6 #   W6    {6    6    6 	   6 6   6 X   6 9   A7 [   {7    7     7    8 0   8    G8    U8 g   o8    8 )   8 (   9    ?9    C9    I9    R9 ~   e9    9    9    :    ":    =:    P:    f:     |: !   : #   :    :    :    ;    7;    O;    f;    {;    ; (   ; "   ; !   ; Z   < {   t< !   < '   = /   :=    j= #   =    = .   = 0   = [   > $   p> #   >    >    >    >    >    ?    .?    L?    l?    ?    ?    ? 0   ?    @    @     4@ "   U@    x@    @ #   @ C   @    A    %A %   <A o   bA -   A      B    !B    9B 3   TB !   B    B 	   B (   B (   B    
C    C    %C    -C -   4C 3   bC    C j   C    D .   3D 3   bD    D j   hE o   E    CF    F 6   G 4   G K   (H S   tH "   H *   H 2   I 2   II *   |I -   I #   I 3   I .   -J 6   \J +   J #   J %   J    	K    )K Q   @K (   K T   K 6   L '   GL &   oL (   L )   L 5   L    M    8M $   M P   M ,   8N    eN '   zN    N    N    N '   N    O 2   :O *   mO    O    O 3   O 5   P    :P    YP    uP !   P %   P    P )   P )   Q 0   >Q +   oQ ?   Q    Q ,   Q    (R F   8R    R    R 2   R 6   R $   S    CS "   RS    uS 7   S    S    S -   S    S     }T    T 8   dU    U 	   U <   U (   U -   V &   =V '   dV    V !   V %   V )   V 0   W    HW 
   gW    rW :   W 4   W I   W    CX    LX    PX 1   VX    X    X t   X 1   .Y .   `Y ?   Y    Y    Y    Y    Y    Z    Z <   9Z    vZ &   Z (   Z    Z -   Z     $[    E[ &   `[    [ &   [ -   [ #   [ $   \    :\    X\ (   u\    \    \    \    \    
]    "]    B] #   b] )   ] ,   ]    ] *   ] -   (^ (   V^    ^ '   ^    ^    ^    ^    ^    _ *   "_ #   M_ ,   q_    _ =   _ "   _    `    `    9` q   V`    `    `    `    a    -a <   Ea S   a 7   a    b ,    b 9   Mb    b -   b 2   b 3   b 
   (c    3c    Sc    pc     c    c     c    c    d    .d    Gd    cd -   hd C   d O   d    *e    e 1   [f    f    f .   f W   f +   ?g    kg    g 	   g    g 5   g    g    h    h    /h    Jh =   eh    h    h    h    h    h    h    i    i    -i    Ci    Ti    Zi 	   gi    qi    i    i    i    i 	   i 
   i    i    
j    j 	   %j    /j !   5j +   Wj    j    j &   j #   j c   j K   [k    k (   k    k    k :   k <   4l +   ql 0   l 1   l <    m    =m    Mm    bm ,   sm 5   m 1   m    n    n 2   ,n #   _n ,   n #   n .   n    o 3   o #   So '   wo ,   o A   o 7   p H   Fp 9   p    p &   p    q '   )q /   Qq "   q %   q    q     q .   r    :r    Mr    Vr 4   ur    r    r &   r    r    s    !s .   As $   ps *   s L   s %   t ,   3t    `t     xt    t     t /   t %   u    ,u    ;u    Du    _u /   u    u (   u    u    v ;   #v X   _v 4   v #   v #   w    5w    Sw +   Yw ?   w K   w L   x    ^x W   x 0   ?y #   py    y @   y 3   y /   z    Fz 1   dz    z    z    z    z $   z -   { -   0{ $   ^{    {    { P   {    { &   |    D| <   \| 6   |    | +   |    } '   } 3   3} >   g} +   }    } 4   } ;   "~    ^~ #   {~    ~    ~ "   ~    ~        3    S    r             0            =    V    f    r         %   !    G    `    t #   y     !       ρ            "    @ 8   ^     *       ݂         2   -    `    | %    <               * (   ?    h        O D   ` )    ;   υ         *   ;    f             	   Æ    ͆    ۆ            
        4    E    W     k '           ԇ      %       4 +   L .   x     N           # (   > "   g             ʉ              !   ; "   ] #    5    5   ڊ 7        H    i 9        4   ۋ        /    M    Q    ` 
   y A       ƌ #    \       b C    W   0 (    /        &    '   ( '   P `   x I   ُ b   #             9   ِ &    U   : Z    3           4 b   9            ђ        	    ( )   @    j &    !    4   ͓ '    )   *    T    l     !        #   ٔ     *    ,   D 8   q 9            '       @ (   X *    '    0   Ԗ ,    /   2 !   b 4    "    &   ܗ :    ;   > "   z     +    &    "       + @   ; &   | &    ?   ʙ P   
 O   [                w         g        X            S       U  ^  |                    2  e  K  H  ^    1                          /  6    C              "                              O         F  r   O      b  '      ^      Q  A      G     
  ,                                                      s                        y  L    I    '   /    =          l   l  5          ;      z   <  .          ^  v              J             H  Q    J       4            O  w  8  o    Q        
       m                     2  3       4       g                 (         X  &           0            8            e      Z   j      r      !  Q         A  ,              6   K  2      n  ]      )     y                   c              d    d  h  s     @      P  ;            &    ?     3  n  q        /  v     R  m              )   [   @        >      -  s    v      s    S  ,       f          Z  0                 @    T    {            i      
         i  J          M       Z        $  N  *     0          o                     5            9   !  _  ?                 N          {      #  "    *  1    7  Y           -              N   P   #  m  f           O     p              `  -                        I       W             7  r  Y    }  )              w      h       ?           _                                      u    E  ]               5                                j  k  |   ,  L      k      G  P  ]       
           j  [     [           (  !                                                                     	  +              @               k    O    z     9  ]              4        *  b       1    )                    %                                      v       ,  V               E   L                                 M  &                    \        ;                            '    0      F      a                 q  ?                          n                        %                (  Z     A      )                          :    {   c       5     W      l  ;   T      Y  (  Z                <    b   7   f      M  +            S    0            9  t          B            <     D          5          S  u     B  3             3           }  @  `                       /            H                  9  z  =                     L          /   1             \                      -       [                    !                {              7  I   &    9         A      U      K  M                 e                        `  m    _   `                          e            _  |          :        I          >            (                 i            Y      b      j   p    n                 e      
  _  4          >  q   P  E    g                 K       *  %        X                }                           o  a  N  -      %     x          H   	                1           4      z      V         t         "   =                        W                       c                                   \                            ?         d        X                               6  .    f      :   E  s              	            H          S      g        K  D            }               o                       D                         a    J    ^   G  $                  i    j                p          ~          T           L  G          c                                   +           k        Y             l           C        q          *   8        <         T      q                 N     <  !             2   h  8        p                  6      y                     ~                          :  B       u    D              8                 #      l    F  w        V          x      u      W      R                 3    P            E      V   >                g      k                             .    b                               U                    r        m              =  2  "            c  y      A   G               R             B    a      \  ]  C  W      $      M                            V  \              >     .                                 p   	        v      F      n        +    :  d  6      x             J      t  "                    I            U                                            C        t          h          B  D  .                     ;        x               %      U                Q      C   	         F                              o  [  7    a      =                   #        r    $      R          `       &  R    T                    #  |        '  d      '            i   u  +     h        t            ~           f  $  X              ~                   total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: option '%c%s' doesn't allow an argument
 %s: option '%s' is ambiguous; possibilities: %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File size: %s
 File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS Import ZFS wrapping key stored in FILE. Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List coreboot tables. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... M MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MODULE Mail xorriso support requests to <bug-xorriso@gnu.org>. Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Option -- switches to native xorriso command mode. Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] PUBKEY_ID Paletted  Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot into firmware setup menu. Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Render Apple .disk_label. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show CBMEM console content. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show the contents of a file. Show the current mappings. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Switch to native disk drivers. If no modules are specified default set (pata,ahci,usbms,ohci,uhci,ehci) is used Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 T TARGET Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This entry can be booted by any user. This requires setting GRUB_DEFAULT=saved in %s/default/grub.\n Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. Your embedding area is unusually small.  core.img won't fit in it. Your xorriso doesn't support `--grub2-boot-info'. Some features are disabled. Please use xorriso 1.2.9 or later. Your xorriso doesn't support `--grub2-boot-info'. Your core image is too big. Boot as disk is disabled. Please use xorriso 1.2.9 or later. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `cryptomount' command fails: %s `loopback' command fails: %s `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format blocklist FILE blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s cannot compress the kernel image cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot get translator command line for path `%s': %s cannot open OS file `%s': %s cannot open `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. diskboot.img size must be %u bytes do not probe for filesystems in DEVICE domain name component is too long don't update LED state done embed FILE as an early config embed FILE as public key for signature checking embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enable ARCS (big-endian mips machines, mostly SGI) boot. Disables HFS+, APM, sparc64 and boot as disk image for i386-pc enable sparc boot. Disables HFS+, APM, ARCS and boot as disk image for i386-pc enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to get canonical path of `%s' failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification install GRUB images under the directory DIR/%s instead of the %s directory install even if problems are detected invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid block size invalid color specification `%s' invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no `/' in canonical filename no command is specified no decryption key available no network card found no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory of TFTP server route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the argument `%s' requires an integer the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for label use COLOR for label background use COLOR for text use DIR as the EFI System Partition root. use FILE as font (PF2). use FILE as font for label use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub-2.00+20130519
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-06-10 11:02+0200
Last-Translator: Milo Casagrande <milo@milo.name>
Language-Team: Italian <tp@lists.linux.it>
Language: it
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8-bit
Plural-Forms: nplurals=2; plural=(n!=1);
               memoria totale: %d KiB
     Nessuna modalità preferita disponibile
     Modalità preferita: %ux%u
   Checksum EDID non valido   Versione EDID: %u.%u
   Inizializzazione adattatore video non riuscita   Nessuna informazione disponibile   Info VBE:   versione: %d.%d  Rev. software OEM: %d.%d
   oppure:   (più a sinistra)  (mediano)  (più a destra)  - La partizione inizia a %llu%sKiB  - Dimensione settore %uB  - Dimensione totale %llu%sKiB  - Dimensione totale sconosciuta  [OPZIONE...] %.*s: il parametro ARGP_HELP_FMT deve essere positivo %.*s: il parametro ARGP_HELP_FMT richiede un valore %.*s: parametro ARGP_HELP_FMT non conosciuto %ds %ds rimanenti. Sembra che %s contenga un file system %s di cui non è noto se sia in grado di riservare dello spazio per l'avvio in stile DOS. Installare GRUB qui potrebbe portare alla DISTRUZIONE del file system se dati importanti vengono sovrascritti da grub-setup (--skip-fs-probe disabilita questo controllo, usare a proprio rischio). Sembra che %s contenga una mappa delle partizioni %s e LDM di cui non è noto se sia una combinazione sicura. Installare GRUB qui potrebbe portare alla DISTRUZIONE del file system se dati importanti vengono sovrascritti da grub-setup (--skip-fs-probe disabilita questo controllo, usare a proprio rischio). Sembra che %s contenga una mappa delle partizioni %s di cui non è noto se sia in grado di riservare dello spazio per l'avvio in stile DOS. Installare GRUB qui potrebbe portare alla DISTRUZIONE del file system se dati importanti vengono sovrascritti da grub-setup (--skip-fs-probe disabilita questo controllo, usare a proprio rischio). %s non supporta gli UUID %s genera una disposizione di tastiera per GRUB utilizzando ckbcomp\n %s è deprecata, utilizzare "set gfxpayload=%s" prima del comando.
 %s è deprecata, la modalità VGA %d non è riconosciuta, usare "set gfxpayload=LARGHEZZAxALTEZZA[xPROFONDITÀ] prima del comando.
 %s non è ancora supportato da grub-mkconfig.\n %s, con Hurd %s %s, con Hurd %s (modalità ripristino) %s, con Linux %s %s, con Linux %s (modalità ripristino) %s, con Xen %s e Linux %s %s, con Xen %s e Linux %s (modalità ripristino) %s, con hypervisor Xen %s, con kFreeBSD %s %s, con kFreeBSD %s (modalità ripristino) %s, con kernel %s (via %s) %s, con kernel %s (via %s, modalità ripristino) %s: HASH NON CORRISPONDENTE
 %s: OK
 %s: ERRORE LETTURA
 %s: troppi argomenti
 %s: è necessario eseguirlo come root\n %s: errore: %s: info: %s: opzione non valida -- "%c"
 %s: l'opzione "%c%s" non accetta argomenti
 %s: l'opzione "%s" è ambigua; possibilità: %s: l'opzione "--%s" non accetta argomenti
 %s: l'opzione "--%s" richiede un argomento
 %s: l'opzione "-W %s" non accetta un argomento
 %s: l'opzione "-W %s" è ambigua
 %s: l'opzione "-W %s" richiede un argomento
 %s: l'opzione richiede un argomento -- "%c"
 %s: l'opzione richiede un argomento -- "%s"\n %s: opzione "%c%s" non riconosciuta
 %s: opzione "--%s" non riconosciuta
 %s: avviso: (32 bit) (64 bit) (ERRORE DEL PROGRAMMA) Nessuna versione conosciuta. (ERRORE DEL PROGRAMMA) L'opzione dovrebbe essere stata riconosciuta. (su %s) - Etichetta "%s" - Ultima modifica %d-%02d-%02d %02d.%02d.%02d %s --ALTRO-- -h HASH [-c FILE [-p PREFISSO]] [FILE1 [FILE2 ...]] -l | -r | [-s] devgrub discoos ,5 Interfaccia 16 bit protetta supportata
 Interfaccia 16 bit protetta non supportata
 Interfaccia 32 bit protetta supportata
 Interfaccia 32 bit protetta non supportata
 =VAL > Archivio non volatile della RAM per ACPI RAM ACPI riutilizzabile Arresto tramite ACPI non riuscito IND IND VALORE [MASCHERA] IND [DIM] IND1,MASCHERA1[,IND2,MASCHERA2[,...]] IND SERVERDNS APM disabilitato
 APM disattivato
 APM abilitato
 APM attivato
 ARGP_HELP_FMT: il valore %s è minore o uguale a %s ASCII Accetta terminatori di riga in stile DOS (CR/NL) Terminali di input attivi: Terminali di output attivi: Adattatore "%s":
 Aggiunge un server DNS Aggiunge un indirizzo di rete Aggiunge una rotta di rete Opzioni avanzate per %s Opzioni avanzate per %s (con hypervisor Xen) Consente di essere fermato con ESC Chiede il nome del file da cui riavviare Assume l'input come hex Assume l'input come una passphrase Assume l'input come raw Tentativo di decifrazione chiave master... Tentativo di installare GRUB su un disco con molteplici etichette di partizioni o sia con etichetta di partizione e file system. Tale pratica non è ancora supportata. Tentativo di installare GRUB su un disco con molteplici etichette di partizioni. Tale pratica non è ancora supportata. Tentativo di installare GRUB su un disco privo di partizioni o su una partizione. Tale pratica non è raccomandabile. Terminali di input disponibili: Terminali di output disponibili: B B/s DUMP_BIOS [DUMP_INT10] BLOCCO BYTE:BIT Modalità immagine di sfondo Directory di base per l'elenco hash Avvia un sistema basato su BIOS Avvia un sistema operativo Avvia in modalità singolo utente Avvia con messaggi di debug Avvia con messaggi prolissi Avvio di "%s" in corso Avvio di un elenco di comandi Avvia in modalità blind Percorso di avvio: %s
 Percorso di avvio: non disponibile
 Attiva breakpoint in GDB CGA  COLORE COMANDO [ARG] CPU Idle non rallenta il processore
 CPU Idle rallenta il processore
 CS5536 in %d:%d.%d
 Impossibile abilitare l'area ROM. Modifica i device configurati Modifica il tipo di partizione Verifica il tasto Alt Verifica il tasto Control Verifica il tasto Maiusc Verifica le caratteristiche della CPU Verifica gli hash dei file con gli hash presenti in FILE Verifica se la CPU supporta la modalità (lunga) a 64 bit (predefinito) Verifica lo stato dei modificatori dei tasti Verifica che l'utente sia in ELENCOUTENTI Verifica la presenza di errori di sintassi nello script di configurazione GRUB Pulisce lo schermo Pulito il flag attivo su %d.
 Comandi: Confronta FILE con un file LOCALE Confronta il file "%s" con "%s":
 Confronta due file Calcola l'UUID XNU di DEVICE Calcola o verifica l'hash Configura la porta seriale Continua i cicli Converte il formato del file del carattere in PF2 Copia FILE su un file LOCALE Copia il file sullo standard output Impossibile trovare il driver FPSWA Impossibile trovare il volume fisico "%s": potrebbero mancare alcuni moduli dall'immagine core. Impossibile caricare sha256 Impossibile caricare sha512 Crea strutture simil BIOS per retro-compatibilità con sistemi operativi esistenti Crea un file di blocco dell'ambiente vuoto Tipologie di terminfo correnti: DEVICE DEVICE [PARTIZIONE[+/-[TIPO]]] ... DEVICE deve essere un device del sistema operativo (come /dev/sda) NOME_DEVICE DIR DIRECTORY [OSBundleRequired] SERVERDNS Strumento di debug per il driver del file system. Dichiara regioni della memoria come danneggiate (badram) L'estrattore è troppo grande Definisce una voce di menù Definisce un sotto-menù Elimina un indirizzo di rete Elimina una rotta di rete Elimina l'unità di loopback specificata Elimina le variabili Determina il driver Determina lo UUID del file system Determina l'etichetta del file system Determina il tipo di file system Determina il tipo della mappa delle partizioni Device %s: Devid: %s
 Devid: non disponibile Colore diretto, maschera: %d/%d/%d/%d  pos: %d/%d/%d/%d Disabilita ACPI Disabilita SMP Disabilita tutto l'output di avvio Disabilita/Abilita SMART (0/1) Scartata partizione non correttamente annidata (%s,%s,%s%d) Statistiche cache del disco: hit = %lu (%lu.%02lu%%), miss = %lu
 Il conteggio dei dischi deve precedere l'elenco dei dischi.
 Visualizza la versione FPSWA Visualizza lo stato SMART Visualizza una riga di testo Visualizza la blocklist di FILE Visualizza l'output su tutte le console Visualizza la modalità di alimentazione Visualizza l'uso di questo comando ed esce Visualizza questo aiuto ed esce Visualizza/Imposta la data e l'ora correnti Non visualizza l'a capo finale Non stampa alcun messaggio Non esamina alcuna unità floppy Non usa APM per arrestare il computer Non fa nulla, successo Non fa nulla, insuccesso Non visualizza messaggi diagnostici di avvio Non carica le tabelle host specificate come elenco separato da virgole Non riavvia, arresta solamente Non si ferma al primo errore Non aggiorna EBDA: potrebbe risolvere dei problemi o dei blocchi con alcuni BIOS, ma non è efficace con sistemi operativi che non ricevono RSDP da GRUB VARAMB VARAMB [VARAMB] ... ERRORE: non è stata trovata alcuna disposizione di tastiera valida. Controllare l'input.
 ESC esce in qualsiasi momento. ESPRESSIONE ESPRESSIONE ] Tempo trascorso: %d.%03d s. 
 Tempo trascorso: %d.%03d secondi 
 L'embed non è possibile. GRUB può essere installato con questa configurazione solo usando blocklist. Le blocklist non sono comunque affidabili e ne viene sconsigliato l'uso. Simula la pressione di sequenze di tasti Abilita l'interpretazione delle sequenze di escape con backslash Inserire password ZFS: Entra in KDB all'avvio Entra nella modalità normale Inserire la passphrase per %s%s%s (%s): Inserire la password: Inserire il nome utente:  Errore nell'analizzare gli argomenti della riga di comando
 Valuta un'espressione Chiusura non riuscita Esce da GRUB Esce dai cicli Esce dalla modalità normale Esporta le variabili Espone la versione 1 delle tabelle al sistema operativo Espone le versioni 2 e 3 delle tabelle al sistema operativo FILE FILE [ARG ...] FILE [ARG ...] FILE | TEMPO [TONO1 DURATA1] [TONO2 DURATA2] ...  FILE... FILE1 FILE2 NOMEFILE COMANDO FILESYSTEM [VARIABILE] FILE|prompt FORMATO Il protocollo FPSWA non è stato in grado di trovare l'interfaccia Revisione FPSWA: %x
 DA-A[,DA-A] DA[K|M|G] A[K|M|G] FT_Init_FreeType non riuscita Caricamento delle voci predefinita e di ripiego non riuscito.
 Creazione dell'albero "device-mapper" non riuscita Viene usato "%s" come ripiego Dimensione file: %s
 Il file system "%s" non supporta l'embed I file differiscono all'offset %llu: 0x%x [%s], 0x%x [%s]
 I file differiscono nella dimensione: %llu [%s], %llu [%s]
 Impossibile accedere al file system File system di tipo %s Riempie l'MBR ibrido dell'unità GPT DEVICE: le partizioni specificate saranno parte di un MBR ibrido; sono consentite fino a 3 partizioni; TIPO è un tipo di MBR; + indica che la partizione è attiva, solo una partizione può essere attiva Finalizza il caricamento dell'emulatore EFI Prima prova il device SUGG se in esecuzione su ARC, se SUGG termina con una virgola, prova anche le sotto-partizioni Prima prova il device SUGG se in esecuzione su BIOS, se SUGG termina con una virgola, prova anche le sotto-partizioni Prima prova il device SUGG se in esecuzione su EFI, se SUGG termina con una virgola, prova anche le sotto-partizioni Prima prova il device SUGG se in esecuzione su IEEE1275, se SUGG termina con una virgola, prova anche le sotto-partizioni Prima prova il device SUGG se l'accesso diretto all'hardware è supportato, se SUGG termina con una virgola, prova anche le sotto-partizioni Prima prova il device SUGG, se SUGG termina con una virgola, prova anche le sotto-partizioni Corregge problemi video Trovato %s su %s (%s)\n Trovato %s su %s\n Trovato GNU Mach: %s Trovato modulo Hurd: %s Trovato kernel NetBSD: %s\n Trovato sfondo: %s\n Trovata immagine initrd: %s\n Trovata directory moduli kernel: %s\n Trovato kernel di FreeBSD: %s\n Trovata immagine linux: %s\n Tema trovato: %s\n Errore Freetype %d nel caricare il glifo 0x%x per U+0x%x%s Blocca le impostazioni di sicurezza ATA fino a un reset venerdì G GNU GRUB versione %s Menù avvio GRUB GRUB non ha ancora informazioni su come spegnere questo computer. Emulatore GRUB GRUBDEVICE=PLAN9DEVICE Dati errati in ARGP_HELP_FMT: %s Genera disposizione di tastiera GRUB a partire da quella della console Linux Genera hash password PBKDF2 Genera un file di configurazione GRUB. Genera un'immagine autonoma (contenente tutti i moduli) nel formato selezionato Calcola il checksum crc32 di FILE Recupera informazioni sulla cache del disco Recupera/Imposta parametri ATA GiB GiB/s HASH SUGG Arresta il sistema, utilizzando APM se possibile Arresta il computer: questo comando non funziona con tutte le implementazioni firmware Gestisce N byte nel file di output Hello World Hercules  ID IMMAGINE1 [IMMAGINE2 ...] PUNTODIMOUNT PERCORSO_IMG COMANDI Importa chiavi wrap ZFS archiviate in FILE Device virtuale non corretto: nessun tipo disponibile Inserisce un modulo Installa GRUB sull'unità. Installazione completata, nessun errore segnalato. Riferimento all'indietro non valido Nome classe di caratteri non valido Carattere di collazione non valido Comando %s non valido.
 Contenuto di \{\} non valido Device "%s" non valido.
 Conteggio dischi non valido.
 Espressione regolare precedente non valida Limite massimo non valido Espressione regolare non valida Invoca il routing della configurazione utente K KERNEL ARG TASTO Tasto rapido per avviare questa voce KiB KiB/s Dispositivo virtuale foglia (file o disco) Parametro legacy "ask" non più supportato. Legenda: masc/posizione=rosso/verde/blu/riservato Lunghezza dell'hash generato Lunghezza del salt Elenca server DNS Elenca device PCI Elenca tutti i file Elenca le modalità video disponibili; se viene fornita la risoluzione, mostra solo le modalità corrispondenti Elenca le tabelle coreboot Elenca device e file Elenca device o file Elenca i device Elenca i file in PERCORSO Elenca la mappa della memoria fornita dal firmware Elenco modalità video supportate: Elenco di utenti abilitati ad avviare questa voce Elenca o seleziona un terminale di input Elenca o seleziona un terminale di output Elenca le variabili attuali Elenca i caratteri caricati Elenca le variabili dal file a blocchi dell'ambiente Carica un'immagine XNU 64-bit Carica un dump BIOS Carica ambiente FreeBSD Carica un modulo del kernel FreeBSD (ELF) Carica un modulo del kernel FreeBSD Carica kernel.sys di FreeDOS Carica Linux Carica NTLDR o BootMGR Carica un modulo del kernel NetBSD (ELF) Carica un modulo del kernel NetBSD Carica kernel Plan9 Carica una directory d'estensione XNU Carica un pacchetto estensione XNU Carica un'estensione XNU Carica un'immagine XNU Carica un ramdisk XNU, sarà disponibile nel sistema come md0 Carica il dump "device-properties" Carica un'immagine PXE Carica una disposizione di tastiera Carica un kernel multiboot 2 Carica un modulo multiboot 2 Carica un kernel multiboot Carica un modulo multiboot Carica un'immagine splash per XNU Carica un'immagine XNU ibernata Carica e inizializza l'emulatore EFI Carica un altro boot loader Carica un altro file di configurazione, ma prende solo le voci di menù Carica un altro file di configurazione senza cambiare contesto ma prende solo le voci di menù Carica un altro file di configurazione senza cambiare contesto Carica un altro file di configurazione Carica un altro payload coreboot Carica un'immagine di sfondo per il terminale attivo Carica le tabelle ACPI dell'host e quelle specificate dagli argomenti Carica initrd Carica ramdisk kOpenBSD Carica il kernel FreeBSD Carica il kernel NetBSD Carica il kernel OpenBSD Carica solo le tabelle specificate come elenco separato da virgole Carica lo stesso file in modi diversi Carica le variabili dal file a blocchi dell'ambiente Carica chiave cifratura ZFS Caratteri caricati: Caricamento GNU Mach... Caricamento Linux %s... Caricamento Xen %s... Caricamento ramdisk iniziale... Caricamento kernel per FreeBSD %s... Caricamento kernel per Illumos... Caricamento Hurd... M verifica MAC non riuscita VOCE_MENÙ è un numero, il titolo o un identificatore di un elemento del menù MODULO Inviare richieste di supporto relative a xorriso a <bug-xorriso@gnu.org>. Crea un'immagine avviabile di GRUB da CD-ROM, disco, chiavetta USB o floppy Crea file disposizione tastiera di GRUB Crea un'immagine avviabile di GRUB Crea un drive virtuale da un file Rende la partizione attiva Gestisce le mappature delle unità del BIOS Argomenti obbligatori od opzionali per le opzioni lunghe lo sono anche per le corrispondenti opzioni corte. Gestisce device PCI Misura il tempo utilizzato per COMANDO Memoria esaurita Tipo di memoria: DDR2. Tipo di memoria: sconosciuto. Identificatore di voce di menù Voce di menù non specificata. Tipo di voce di menù MiB MiB/s Supporto minimale per modifica in stile BASH. Per la prima parola, TAB elenca i completamenti del comando. In altre parti elenca i completamenti possibili per device o file. %s Supporto minimale per modifica in stile Emacs. TAB elenca i completamenti. Premere Ctrl-x o F10 per avviare, Ctrl-c o F2 per la riga di comando, Esc per annullare le modifiche e tornare al menù. Argomenti mancanti
 File di input mancante
 lunedì Monocromatico  Più di un device d'installazione? Più di una voce di menù? Monta un device crypto Monta tutti i volumi col flag "boot" impostato Monta tutto Monta in base allo UUID Monta dispositivi cifrati NOME NOME [VARIABILE] [SUGG] NUM NUMERO_DI_SECONDI Nome	Cont rif	Dipendenze
 Sono in uso driver disco nativi: l'interfaccia disco firmware non verrà utilizzata. Protocolli di rete: Il nuovo MBR viene scritto in "%s"
 Nessun CS5536 trovato Nessun FPWSA trovato Nessuna statistica disponibile sui tempi di avvio
 Nessun comando specificato.
 Nessun device specificato.
 Nessuna statistica disponibile della cache del disco
 Nessuna unità è stata ri-mappata Nessun file system conosciuto rilevato Nessuna corrispondenza Nessun percorso specificato.
 Nessun percorso o device specificato.
 Nessuna espressione regolare precedente Nessun albero di device virtuali disponibile Non-chain 4  Parametri del comando non sufficienti.
 Collegare il debugger remoto. Numero di iterazioni PBKDF2 Disco #num ------> Device GRUB/BIOS Errore nell'aprire il file di sistema %s: %s L'opzione -- passa alla modalità comandi di xorriso. Opzioni: Lookup fuori intervallo: %d
 Sostituzione fuori intervallo (%d, %d)
 Scavalca la mappatura ipotizzata dei device Plan9 P PARTIZIONE COMANDI PERCORSO L'hash PBKDF2 della password è %s
 PORTA PORTA VALORE [MASCHERA] ID_CHIAVE_PUB Tavolozza Analizza configurazioni grub-legacy nel nuovo contesto Analizza configurazioni grub-legacy nel nuovo contesto utilizzando solo le voci di menù Analizza configurazioni grub-legacy nello stesso contesto Analizza configurazioni grub-legacy nello stesso contesto utilizzando solo le voci di menù Parte n° %s.
 La partizione %d è ora attiva.
 Partizione %s: La partizione in stile "%s" non supporta l'embed Percorso: %s
 Percorso: non disponibile Esegue COMANDI sulla partizione.
Usare "parttool PARTIZIONE help" per l'elenco dei comandi disponibili. Esegue un lookup DNS Esegue una configurazione automatica IPV6 Esegue mappature sia dirette sia inverse PiB PiB/s Planare  Riproduce un suono Non usare il vecchio titolo "%s" per GRUB_DEFAULT, utilizzare "%s" (per versioni prima di 2.00) o "%s" (per 2.00 o successive) GUID pool: %016llx
 GUID pool: non disponibile Nome pool: %s
 Nome pool: non disponibile Stato pool: attivo Stato pool: distrutto Stato pool: esportato Stato pool: device ARC livello 2 Stato pool: potenzialmente attivo Stato pool: riservato per hot spare Stato pool: non disponibile Stato pool: non inizializzato Possibili argomenti sono: Possibili comandi sono: Possibili device sono: Possibili file sono: Possibili partizioni sono: Possibili cose sono: Fine prematura dell'espressione regolare Premere un tasto per continuare... Premere un tasto per lanciare xnu "Invio" avvia il sistema selezionato; "e" modifica i comandi; "c" va alla riga di comando. "Invio" avvia il sistema selezionato; "e" modifica i comandi; "c" va alla riga di comando; "Esc" torna al menù precedente. Stampa informazioni sulla memoria Stampa informazioni ZFS riguardo DEVICE Stampa ZFS-BOOTFSOBJ o lo archivia in VARIABILE Stampa una blocklist Stampa ed esegue l'argomento BLOCCO Stampa backtrace Stampa informazioni e impostazioni dell'unità Stampa le dimensioni in un formato comprensibile Cerca informazioni sul device per un percorso fornito (o device se usato con l'opzione -d). RAM che contiene le tabelle coreboot RAM che contiene il codice firmware Slot RAM n° %d
 REGEXP STRINGA Immagine ROM presente. Legge un valore 16 bit da IND Legge un valore 16 bit da PORTA Legge un valore 32 bit da IND Legge un valore 32 bit da PORTA Legge un valore 8 bit da IND Legge un valore 8 bit da PORTA Legge solo LUNGHEZZA byte Riavvio non riuscito Riavvia nel menù di configurazione del firmware Riavvia il computer Reinserire la password: Registro %x di %x:%02x.%x è %x
 Espressione regolare troppo grande Rimuove un server DNS Rimuove un modulo Rimuove una variabile dell'ambiente Rimuove qualsiasi regione della memoria nell'intervallo specificato Visualizza .disk_label Apple Segnalare i bug a %s.
 Segnalare i bug a <bug-grub@gnu.org>. Richiesto terminale seriale, ma GRUB_SERIAL_COMMAND non è specificata. Verranno usati i parametri predefiniti. Ripristina le mappature ai valori predefiniti Recupera informazioni sul device Ritorna da una funzione Ritorna al prompt IEEE1275 Eseguire "gdb %s %d" e impostare ARGS.HOLD a zero.
 Esegue "go" per ripristinare GRUB SEC NOMEBREVE NOMEBREVE SCHEDA INDIRIZZO [INDIRIZZOHW] NOMEBREVE RETE [INTERFACCIA| gw GATEWAY] DIM SORGENTE|-u UUID|-a|-b STRINGA sabato Salva il valore letto nella variabile NOMEVAR Salva le variabili sul file a blocchi dell'ambiente Dice "Hello World" Cerca i device per UUID: se VARIABILE è specificata, il primo device trovato è impostato a una variabile Cerca i device tramite un file Cerca i device tramite un UUID del file system Cerca i device tramite un'etichetta del file system Cerca i device per file, etichetta del file system o UUID del file system. Se è specificato --set, il primo device trovato è impostato a una variabile, se non è indicata alcuna variabile, viene usata "root" Cerca i device per file: se VARIABILE è specificata, il primo device trovato è impostato a una variabile Cerca i device per etichetta: se VARIABILE è specificata, il primo device trovato è impostato a una variabile Il settore %llu è già in uso dal controller RAID "%s", viene saltato. Informare il costruttore e avvisarlo di non archiviare dati nell'intervallo del MBR. Il settore %llu è già in uso dal programma "%s", viene saltato. Questo software potrebbe causare problemi di avvio, o altri, nel futuro. Informare gli autori e avvisarli di non archiviare dati nell'intervallo del MBR. Seleziona il device in base alla sua posizione nel bus Seleziona il device tramite ID fornitore e ID device Imposta "Advanced Power Management"
(1=basso, ..., 254=elevato, 255=spento) Imposta "Automatic Acoustic Management"
(0=spento, 128=silenzioso, ..., 254=veloce) Imposta OEMID di RSDP, XSDT e RSDT Imposta l'ID OEMTABLE di RSDP, XSDT e RSDT Imposta la revisione OEMTABLE di RSDP, XSDT e RSDT Imposta il flag "hidden" sul tipo della partizione Imposta una variabile al valore di ritorno Imposta una variabile al primo device trovato Imposta una variabile dell'ambiente Imposta un colore di sfondo per il terminale attivo Imposta il campo creatore di RSDP, XSDT e RSDT Imposta la revisione del creatore di RSDP, XSDT e RSDT Imposta la variabile di debug dell'ambiente Imposta l'unità in modalità pausa Imposta l'unità in modalità standby Imposta i parametri posizionali Imposta il device root Imposta il timeout di standby
(0=spento, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...) Imposta il tipo TERM di terminfo a TIPO
 Imposta la voce di menù d'avvio predefinita per GRUB, solo per il successivo avvio. Imposta la voce di menù d'avvio predefinita per GRUB. Imposta l'indirizzo della porta seriale Imposta la parità della porta seriale Imposta la velocità della porta seriale Imposta i bit di stop della porta seriale Imposta la lunghezza della parola della porta seriale Imposta l'unità seriale Imposta le immagini affinché vengano avviate da DEVICE.

Questo programma non dovrebbe essere eseguito direttamente. Usare grub-install. Imposta la password utente (PBKDF2)  Imposta la password per l'utente (testo in chiaro): non consigliato e non sicuro Imposta la variabile con l'input dell'utente Imposta le variabili Impostazione tipo di partizione a 0x%x
 Cambia i parametri posizionali Mostra informazioni ACPI Mostra le informazioni APM Mostra il contenuto della console CBMEM Mostra un messaggio di aiuto Mostra un elenco con informazioni più dettagliate Mostra il contenuto di FILE in esadecimale Mostra i moduli caricati Mostra il contenuto di memoria Mostra il contenuto grezzo del settore ATA IDENTIFY Mostra il contenuto grezzo di un file o della memoria Mostra il contenuto di un file Mostra le mappature attuali Mostra questo messaggio Mostra solo le tabelle versione 1 Mostra solo le tabelle versione 2 e 3 Arresto non riuscito Simula il comando "initrd" di grub-legacy Simula il comando "kernel" di grub-legacy Simula il comando "modulenounzip" di grub-legacy Simula il comando "password" di grub-legacy Simula il comando "password" di grub-legacy nelle voci di menù Salta N byte dal file di output Salta un offset di byte dall'inizio del file Slot %d aperto
 Trovati alcuni elementi di Hurd, ma troppo pochi per eseguire il boot. Specifica il nome del file Specifica l'hash da usare Specifica uno o più file di caratteri da caricare Specifica la dimensione per ogni operazione di lettura Specifica il numero di file di input Velocità: %s
 Avvia stub GDB sulla porta fornita Ferma stub GDB Archivia il corrispondente componente NUMERO in NOMEVAR Successo domenica Elimina l'output normale (gli avvisi restano) Passa ai driver disco nativi; se nessun modulo è specificato viene usato l'insieme predefinito (pata,ahci,usbms,ohci,uhci,ehci) Errore di sintassi alla riga %u
 Errori di sintassi sono stati rilevati nel file di configurazione
di GRUB generato. Assicurarsi che non vi siano errori in
/etc/default/grub e /etc/grub.d/* o segnalare un bug allegando
il file %s. Lo spazio I/O del bus di controllo di sistema è a 0x%x
 T OBIETTIVO Formato dell'obiettivo non specificato (usare l'opzione -O). Il terminale ha la geometria specificata Il terminale è solamente ASCII [predefinito] Il terminale è UTF-8 in ordine logico Il terminale è UTF-8 in ordine visuale Verifica il supporto USB Verifica il bit BYTE:BIT nel CMOS Verifica la velocità di lettura file Verifica che REGEXP corrisponda a STRINGA Verifica il sottosistema video in modalità W×H Verifica il sottosistema video Solo testo I file sono identici.
 La voce selezionata verrà avviata automaticamente in %ds. Questa voce può essere avviata da tutti gli utenti. Ciò necessita l'impostazione di GRUB_DEFAULT=saved in %s/default/grub.\n giovedì TiB TiB/s Strumento per modificare il blocco dell'ambiente. Dimensione totale flash: %d B.
 Backslash finale Trasforma UUID 64-bit in un formato adatto per XNU; se viene passato -l mantiene tutto minuscolo come fatto da blkid Trasforma il nome file di sistema in uno di GRUB. Traduce la stringa con le impostazioni attuali Provare "%s --help" o "%s --usage" per ulteriori informazioni.
 martedì UTENTE PASSWORD UTENTE PASSWORD_PBKDF2 NOMEUTENTE[,NOMEUTENTE] UTF-8 Impossibile creare pipe: %s Impossibile determinare la piattaforma. Utilizzare --target. Impossibile eseguire fork: %s Impossibile aprire lo stream da %s: %s Impossibile recuperare lo stato del pool Decomprime i dati Estrae il file prima di calcolare il checksum Tipo d'indirizzo %d sconosciuto
 Comando "%s" sconosciuto.
 Formato di compressione %s sconosciuto Codifica sconosciuta Argomento aggiuntivo "%s" sconosciuto. Caratteristica 0x%x di gsub sconosciuta (%s)
 Codice numerico 0x%02x sconosciuto
 Identificatore tasto %s sconosciuto
 Errore di sistema sconosciuto Modalità video sconosciuta  Tipo di device virtuale sconosciuto: %s
 Rimuove l'emulatore EFI ( o \( senza corrispondenza ) o \) senza corrispondenza [ o [^ senza corrispondenza \{ senza corrispondenza Opzione "%s" non riconosciuta\n Stato del pool non riconosciuto Tipo d'indirizzo %d non supportato
 Specifica di coverage non supportata: %d
 Tipo d'indirizzo hardware %d non supportato
 Formato immagine non supportato Flag di sostituzione non supportato: 0x%x
 Specifica di sostituzione non supportata: %d
 Tipo di sostituzione non supportato: %d
 Uso: Uso: %s -o OUTPUT ARGOMENTI_CKBMAP...\n Uso: %s DEVICE
 Uso: %s [FILE_IN [FILE_OUT]]
 Uso: %s [OPZIONE] VOCE_MENÙ\n Uso: %s [OPZIONE]\n Usa CD-ROM come root Usa il debugger remoto GDB al posto di DDB Usa STRINGA come testo per il menù Usa un device di root compilato internamente Usa console seriale Usare i tasti %C e %C per selezionare la voce da evidenziare. VAR INTERFACCIA NUMERO DESCRIZIONE NOMEVAR Conto alla rovescia esplicito Verifica la firma scollegata Versione %u.%u
32 bit CS = 0x%x, lung = 0x%x, offset = 0x%x
16 bit CS = 0x%x, lung = 0x%x
DS = 0x%x, lung = 0x%x
 Device virtuale degradato Device virtuale danneggiato Device virtuale offline Device virtuale online Device virtuale rimosso ATTENZIONE: nessuna console sarà disponibile per il sistema Attenzione: non è stata eseguita alcuna installazione specifica per la piattaforma Attenzione: parametri del carattere non supportati: %x
 LARGHEZZAxALTEZZA Attende per un determinato numero di secondi Attende la pressione di un tasto dopo ogni riga di output Attenzione: Attenzione: colore di sfondo "%s" non valido
 Attenzione: colore di primo piano "%s" non valido
 Attenzione: errore di sintassi (manca "/") in "%s"
 mercoledì Windows NT/2000/XP (caricatore) Windows Vista/7 (caricatore) Scrive il VALORE 16 bit in IND Scrive il VALORE 16 bit su PORTA Scrive il VALORE 32 bit in IND Scrive il VALORE 32 bit su PORTA Scrive il VALORE 8 bit in IND Scrive il VALORE 8 bit su PORTA Byte SPD scritti: %d B.
 Hypervisor Xen, versione %s YUV  È necessario specificare almeno un comando.
 È necessario impostare manualmente "SystemPartition" e "OSLoader". L'area di embed è troppo piccola. Il file core.img non può esservi contenuto. Questa versione di xorriso non supporta "--grub2-boot-info": alcune funzionalità sono disabilitate. Utilizzare xorriso 1.2.9 o successivi. Questa versione di xorriso non supporta "--grub2-boot-info": l'immagine core è troppo grande, l'avvio come disco è disabilitato. Usare xorriso 1.2.9 o successivi. [--append|--remove] [TERMINALE1] [TERMINALE2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TIPO] FILE [ARG ...] [-1|-2] [--exclude=TABELLA1,TABELLA2|--load-only=TABELLA1,TABELLA2] FILE1 [FILE2] [...] [-c FILE [-p PREFISSO]] [FILE1 [FILE2 ...]] [-d] NOMEDEVICE FILE [-e|-n] STRINGA [-f FILE] [-f FILE] nome_variabile [...] [-f|-l|-u|-s|-n] [--hint SUGG [--hint SUGG] ...] NOME [-h|-p|-r] [FILE] [-l] UUIDGRUB [NOMEVAR] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSIZIONE] [-d DEVICE] [-s POSIZIONE] [-d DEVICE] [-v VAR] REGISTRO[=VAL[:MASCHERA]] [-s DIMENSIONE] NOMEFILE [IND|comUNITÀ][,VELOCITÀ] [ARG] [SCHEDA [INDIRIZZOHW]] [SCHEDA] [VARAMB=VALORE] [VARAMB] [TASTO1] [TASTO2] ... [MODULO1 MODULO2 ...] [NUMERO:]NOMEVAR [NUM] [OPZIONI...] [OPZIONI] [OPZIONI] DISCO [OPZIONI] FILE_O_DEVICE [OPZIONI] FILE_CARATTERE [OPZIONE]... [MODULI] [OPZIONE]... [PERCORSO|DEVICE] [OPZIONI] [PERCORSO] [MODELLO ...] [ELENCOUTENTI] [VALORE]... [LxA[xP]] [WxH] [[-a|-u|-v] [-g LxA] TERM [TIPO]] [[anno-]mese-giorno] [ore:minuti[:secondi]] [bus]:[slot][.func] [fornitore]:[device] comando "cryptomount" non riuscito: %s comando "loopback" non riuscito: %s "obppath" non trovato nelle directory superiori di "%s", scoperta dei nomi IEEE1275 non disponibile è stato assegnato un valore all'argomento "%s" benché non ne richieda uno accesso negato Aggiunge segmento NOTA per CHRP IEEE1275 ind indirizzo non trovato tentativo di leggere o scrivere al di fuori del disco "%s" tentativo di leggere o scrivere al di fuori della partizione tentativo di leggere oltre la fine del file tentativo di posizionamento al di fuori del file tentativo di leggere l'immagine core "%s" da GRUB tentativo di leggere nuovamente l'immagine core "%s" da GRUB RAM disponibile Formati disponibili: firma non valida indirizzo base = 0x%llx, lungh = 0x%llx, %s
 indirizzo base = 0x%llx, lungh = 0x%llx, tipo = 0x%x
 il formato del file bitmap "%s" non è supportato blocklist FILE blocklist non valide la dimensione del blocco non è divisibile per 512 impossibile interrompere zero cicli impossibile determinare il file system su %s impossibile trovare il comando "%s" impossibile montare il volume cifrato "%s": %s impossibile aprire "%s": %s impossibile aprire il file %s, indice %d: errore %d impossibile recuperare le blocklist impossibile recuperare le blocklist: %s impossibile comprimere l'immagine del kernel impossibile trovare un'unità GRUB per %s, controllare device.map impossibile trovare un device per %s (/dev è montato?) Impossibile recuperare mount da riga di comando per il percorso "%s": %s impossibile aprire il file "%s" del sistema operativo: %s impossibile aprire "%s": %s Impossibile leggere "%s" correttamente impossibile leggere "%s": %s impossibile rinominare il file %s in %s impossibile ripristinare la directory originale impossibile eseguire seek "%s": %s impossibile eseguire stat su "%s": %s impossibile scrivere sul CD-ROM impossibile scrivere su "%s": %s impossibile scrivere sullo standard output: %s scheda non trovata cat FILE verifica checksum non riuscita Sceglie la compressione da usare per l'immagine core cmp FILE LOCALE comUNITÀ[,VELOCITÀ] confronto non riuscito all'offset %llu connessione rifiutata connessione scaduta Converte in carattere grassetto l'immagine core è troppo grande (0x%x > 0x%x) versione core.img non corrispondente impossibile configurare automaticamente %s impossibile trovare un device membro necessario per file system multi-device impossibile trovare utilizzatore geli impossibile trovare la classe "part" di geom impossibile aprire geom impossibile leggere metadati ELI impossibile recuperare UUID impossibile recuperare UUID geli impossibile recuperare dati casuali per il salt impossibile inviare pacchetto di rete cp FILE LOCALE crc FILE errore di cifratura n° %d cygwin_conv_path() non riuscita Elimina la mappa dei dispositivi se esiste già destinazione non raggiungibile il conteggio dei device supera il limite Disabilita l'hinting disco "%s" non trovato il disco non esiste, viene usato il device di partizione %s Modulo disco da usare ("biosdisk" o "native"), quest'opzione è disponibile solo su BIOS la dimensione di diskboot.img deve essere di %u byte Non esamina i file system in DEVICE il nome del dominio è troppo lungo non aggiorna lo stato dei LED fatto Incorpora FILE come configurazione primaria Incorpora FILE come chiave pubblica per la verifica della firma L'embed non è possibile, ma è richiesto per l'installazione su RAID e LVM L'embed non è possibile, ma è richiesto per l'installazione su più dischi Abilita avvio ARCS (macchine mips big-endian, principalmente SGI), disabilita HFS+, APM, sparc64 e avvia come immagine disco per PC i386 Abilita avvio sparc, disabilita HFS+, APM, ARCS e avvia come immagine disco per PC i386 Invio: avvia; "e": opzioni; "c": riga di comando blocco dell'ambiente troppo piccolo errore: %s.
 Si aspetta le immagini GRUB nella directory DIR/%s invece che %s recupero del percorso canonico di "%s" non riuscito lettura del settore 0x%llx da "%s" non riuscita lettura password non riuscita scrittura del settore 0x%llx su "%s" non riuscita falso RAM difettosa (BadRAM) file "%s" non trovato atteso nome di file nome file oppure tempo e note attesi il file system "%s" non supporta le etichette il file system "%s" non supporta le blocklist l'immagine firmware è troppo grande Forza l'autohint attesi quattro argomenti fwstart.img non corrisponde alla versione consciuta, procedere a proprio rischio Genera un'immagine nel FORMATO Visualizza un breve messaggio di aiuto Visualizza questo aiuto l'argomento fornito è un device di sistema, non un percorso grub-mkimage è stato compilato senza il supporto a XZ grub> Si ferma per SEC secondi (predefinito 3600) hex FILE Ignora le bitmap durante il caricamento specifiche di dimensioni del terminale non corrette installa le immagini GRUB nella directory DIR/%s invece che %s Installa anche se vengono rilevati problemi password PBKDF2 non valida numero magic ELF basato sull'architettura non valido numero magico ELF indipendente dall'architettura non valido dimensione blocco non valida specifica di colore "%s" non valida blocco dell'ambiente non valido nome di file "%s" non valido intervallo di caratteri non valido formato riga non valido: %s parametro %s non valido valore di salto %lld non valido nome variabile "%s" non valido modalità video "%s" non valida errore ioctl GET_ARRAY_INFO: %s errore ioctl GET_DISK_INFO: %s errore ioctl RAID_VERSION: %s l'immagine kernel è troppo grande (0x%x > 0x%x) Elenca gli indirizzi di rete Elenca le schede di rete Elenca le rotte ls PERCORSO file lzop danneggiato Rende l'unità avviabile anche come un floppy (predefinito per i device fdX); potrebbe provocare malfunzionamenti con alcuni BIOS. simbolo "%c" mancante manca l'opzione obbligatoria per "%s" modulo "%s" non caricato modulo non caricato nome immagine e punto di mount necessari APM non trovato nessuna informazione DHCP trovata opzione DHCP %d non trovata nessuna opzione DHCP trovata nessun record DNS trovato nessuna risposta DNS ricevuta nessun server DNS configurato nessun carattere di slash (/) nel nome canonico del file nessun comando specificato nessuna chiave di decifrazione disponibile nessuna scheda di rete trovata nessun server specificato partizione inesistente non è stata trovata alcuna modalità video adatta nessuna tabella dei simboli nessun terminale specificato Nessun terminatore nell'immagine core Trovati dati non allineati rispetto al settore nel file core non una directory non una partizione primaria non un file regolare non all'interno del corpo della funzione atteso un solo argomento Altro software sta utilizzando l'area di embed e non c'è abbastanza spazio per core.img. Tale software solitamente archivia dati senza possibilità di rilevamento. È consigliato verificare la situazione. memoria esaurita Fornisce in output su FILE un'immagine generata [predefinito=stdout] deve essere specificato un file di output Invia la configurazione creata su FILE [predefinito=stdout] rilevato overflow le password non corrispondono Esegue una configurazione automatica bootp volume fisico %s non trovato fine file prematura fine prematura del file %s preme BlocMaiusc preme Ins preme BlocNum preme BlocScorr preme SysRq preme Alt sinistro preme Ctrl sinistro preme Maiusc sinistro preme Alt destro preme Ctrl destro preme Maiusc destro Stampa la versione del programma Stampa informazioni di versione ed esce Stampa questo messaggio ed esce Stampa messaggi prolissi chiave pubblica %08x non trovata errore di lettura all'offset %llu: %s Legge del testo da FILE sotto-directory relativa sul server di rete la rilocazione 0x%x non è ancora implementata RAM riservata Recupera l'opzione DHCP e la salva in VAR, se VAR è - allora stampa il valore directory root del server TFTP rilevato ciclo nella rotta Salva le immagini ROM in DIR [opzionale] Salva l'output su FILE [richiesto] Seleziona l'indice del carattere porta seriale "%s" non trovata set [NOME=VALORE ...] imposta la modalità blocmaiusc Imposta il tratto ascendente Imposta il tratto discendente Imposta la famiglia del carattere Imposta l'intervallo dei caratteri Imposta la dimensione del carattere Imposta il nome del file di input per la parte 32-bit Imposta il nome del file di input per la parte 64-bit Imposta il nome del file di input, predefinito è STDIN imposta la modalità inserimento imposta la modalità blocnum Imposta il nome del file di output, predefinito è STDOUT imposta la modalità pausa Imposta il prefisso della directory [predefinito=%s] imposta la modalità blocscorr Imposta il nome del programma dim stretch|normal simbolo "%s" non trovato temporaneo il terminale %s non è stato trovato o non è gestito da terminfo terminale "%s" non trovato l'argomento "%s" richiede un intero La voce "%s" di device.map non è valida, viene ignorata. Correggere o eliminare device.map. Il nome "%s" dell'unità in device.map non è corretto, viene usato %s al suo posto. Utilizzare la forma [hfc]d[0-9]* (es.: "hd0" o "cd") Il primo settore del file core non è allineato rispetto al settore Il dispositivo d'installazione è rimovibile, questa opzione è disponibile solo su EFI il tipo di partizione 0x%x non è valido I settori del file core sono troppo frammentati La dimensione di "%s" non è %u La dimensione di "%s" è troppo grande La dimensione di "%s" è troppo piccola questo file ELF non è di tipo corretto questa etichetta della partizione GPT non contiene BIOS Boot Partition, l'embed non è possibile questo LDM non ha una partizione per l'embed; l'embed non sarà possibile L'etichetta della partizione stile msdos non ha un intervallo dopo l'MBR, l'embed non è possibile attesi tre argomenti tempo scaduto nell'aprire "%s" tempo scaduto nel leggere "%s" tempo scaduto: impossibile risolvere l'indirizzo hardware troppi collegamenti simbolici annidati Mount "%s" per il percorso "%s" presenta molte parole non-opzioni, almeno "%s" e "%s" Mount "%s" per il percorso "%s" presenta solo opzioni, impossibile trovare la parte device Mount da riga di comando vuoto per il percorso "%s" attesi due argomenti tipo Impossibile identificare un file system in %s; non è possibile eseguire un controllo di sicurezza dimensione device non allineata fine file non attesa argomento "%s" sconosciuto compressione %d sconosciuta
 tipo di device %s sconosciuto
 file system sconosciuto tipologia di device RAID "%s" sconosciuta errore regexp sconosciuto formato %s dell'obiettivo sconosciuto
 tipo di terminfo "%s" sconosciuto specificazione di formato DHCP "%s" non riconosciuta indirizzo di rete "%s" non riconosciuto interfaccia di rete "%s" non riconosciuta numero non riconosciuto indirizzo %s non risolvibile unset [NOME ...] errore HTTP %d non supportato: %s risposta HTTP non supportata versione RAID non supportata: %d.%d formato gzip non supportato parità della porta seriale non supportata velocità della porta seriale non supportata numero di bit di stop della porta seriale non supportati lunghezza della parola della porta seriale non supportata Usa COLORE per lo sfondo Usa COLORE per l'etichetta Usa COLORE per lo sfondo dell'etichetta Usa COLORE per il testo Usa DIR come radice EFI System Partition Utilizza FILE come tipo di carattere (PF2) Usa FILE come carattere per l'etichetta Usa FILE come immagine di avvio [predefinito=%s] Usa FILE come immagine core [predefinito=%s] Usa FILE come mappa dei device [predefinito=%s] Usa FILE come xorriso [opzionale] Usa i file GRUB nella directory DIR [predefinito=%s] Usa STRINGA come nome del prodotto Usa STRINGA come versione del prodotto Usa il file identificativo anche se è disponibile lo UUID Usa immagini e moduli in DIR [predefinito=%s/<piattaforma>] la variabile "%s" non è impostata UTF-8 in ordine visuale Attende fino al collegamento di un debugger impossibile procedere con le blocklist versione o numero magic ELI errato xnu_uuid DEVICE file xz danneggiato o opzioni a livello di blocco non supportate impossibile eliminare questo indirizzo è necessario caricare il kernel prima BIOS Boot Partition è troppo piccola, l'embed non è possibile l'immagine core è stranamente grande. Non può essere mantenuta nell'area embed L'area di embed è troppo piccola. Il file core.img non può esservi contenuto.                                                                                                                                                                                                                                                                                                                                                      boot/grub/locale/ja.mo                                                                              0000600 0001750 0001750 00000055336 13417732100 0013630 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                             \  7        x  
   y  	                         $     !              &     D     \     v                                              ;     M     k     ~            !     ,                  8     T     o  
                                    +         L  #   h       $               '     9   &     `     ~       +                                 *  "   A  0   d       7                                                (     F     ^  )   p                           '     P        k                 %     +             $  !   4     V     r     ~                      2        )  8   C     |                 3     +        0     E     Z     m                                                             !     !     "!  )   0!     Z!     g!     !     !     !     !     !     !     "     "  "   0"     S"     a"     w"     "     "     "  )   "     "     #  &   #  )   C#  ^   m#     #  $   #  %   $  ^   1$  _   $  >   $  D   /%  !   t%  '   %  -   %     %     &  )   )&  ,   S&     &     &  E   &     &     '     3'     N'      m'     '  :   '     '     '     (     '(     <(     Y(     t(  -   (     (     (     (     (     )     #)  <   =)     z)  $   )     )     )     )     )  '   )     *     .*  '   6*  .   ^*  .   *  )   *     *  	   *     *  5   +     S+     i+     +     +     +     +     +     +  )   +      ,  "   ',     J,     O,  1   [,  7   ,  /   ,     ,     -     .-     L-     c-     -  (   -  #   -     -  !   .    '.     /     /     /      0     /0     40  >   F0  -   0     0  3   0  1   0  9   1  $   Y1  6   ~1  '   1  '   1     2      "2     C2     b2  -   ~2     2  &   2  (   2  B   3  '   U3     }3  !   3  N   3     3  .   4  3   C4  0   w4  6   4     4     4     5  0   5  *   N5  %   y5  *   5  9   5  -   6  $   26  '   W6  D   6  6   6  6   6  3   27  `   f7  -   7     7  +   7  E   (8     n8  $   8  ,   8     8     8  $    9  C   %9  U   i9     9  7   9     9     :  6   :  $   G:    l:  *   ;  $   $<  .   I<  /   x<  -   <  $   <  J   <  &   F=  6   m=  8   =     =     =  I   =     1>  %   >  '   >  0   
?  3   ;?  Q   o?  B   ?  ,   @  .   1@  <   `@  7   @     @  !   @  '   A  ,   7A  /   dA  -   A  T   A  0   B  c   HB     B  (   B  '   B  (   C  W   ?C  <   C     C     C     D  )   &D  ,   PD     }D     D  ,   D  5   D     E     #E     DF  "   \F  .   F     F     F     F  6   F     G     &G  "   CG  "   fG  "   G  +   G     G  6   G  *   /H  *   ZH  .   H     H  $   H  "   H  $   
I     /I     NI  9   mI  !   I     I  1   I  6   J     9J  -   J  ?   J  B   3K     vK     
L  O   L  U   L  *   AM  0   lM  <   M  !   M     M  ;   N  ;   WN  9   N  <   N  r   
O  6   }O  6   O  0   O  ?   P  6   \P  *   P  r   P  0   1Q     bQ     ~Q  0   Q  *   Q  -   Q  $   'R  E   LR     R  6   R  $   R  B   S  0   PS  ,   S  I   S     S  H   T  4   ]T  
   T     T  -   T  6   T  $   U     @U     HU  K   gU  .   U  )   U     V  	   V     (V  5   FV     |V     V     V     V     V     V     V     V     W  0   %W  G   VW     W     W  `   W  W   X  E   pX  -   X  &   X  &   Y     2Y  H   OY  B   Y  T   Y  H   0Z  *   yZ  9   Z            H                 g   s   <            ,   o       l      x                              J                  Y   r   Z          6           w         )          *      D   K   j      k                                             $             p          m          }   A          &      .   d       Q      V   :       M   L   z   O          F                           	   "   ?                      b      ~   t   E   ]   1                   W                     3      i          v      n             4   8   -      a                       !                   u          y                 B                              9      |   7         %   {                              h         #   
            R         +         [      /                @                U            _      '          c                      \      I                           C              e   f                    N       (                      q       =   G         ;       0          `                                              2                  S   T                            5          >   X   ^   P          %s: error: %s: info: -l | -r | [-s] grubdev osdisk. ACPI shutdown failed ADDR ADDR VALUE [MASK] Accept DOS-style CR/NL line endings. Ask for file name to reboot from. BLOCK Base directory for hash list. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Booting a command list Can't enable ROM area. Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check key modifier status. Clear the screen. Compare file `%s' with `%s':
 Compare two files. Compute or check hash checksum. Configure serial port. DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Display a line of text. Display output on all consoles. Display the usage of this command and exit. Display this help and exit. Do not output the trailing newline. Do not print messages. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't stop after first error. ENVVAR ESC at any time exits. Enable interpretation of backslash escapes. Enter in KDB on boot. Enter normal mode. Enter password:  Evaluate an expression. Exit from GRUB. Exit from normal mode. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Fix video problem. Found GNU Mach: %s Found NetBSD kernel: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freeze ATA security settings until reset. Generate a grub config file Get disk cache info. Get/set ATA disk parameters. HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Invalid device `%s'.
 List PCI devices. List all files. List devices and files. List memory map provided by firmware. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load Linux. Load XNU image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load another boot loader. Load another config file without changing context. Load another config file. Load host ACPI tables and tables specified by arguments. Load initrd. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load variables from environment block file. Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading the Hurd ... MODULE Make GRUB keyboard layout file. Manage the BIOS drive mappings. Manipulate PCI devices. Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s NAME [VARIABLE] [HINTS] Network protocols: No device is specified.
 PORT PORT VALUE [MASK] Partition %s: Perform both direct and reverse mappings. Play a tune. Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Press any key to continue... Print a block list. Print backtrace. Print drive identity and settings. REGEXP STRING ROM image is present. Read only LENGTH bytes. Reboot the computer. Remove a module. Remove an environment variable. Reset all mappings to the default values. Retrieve device info. STRING Save read value into variable VARNAME. Save variables to environment block file. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set a variable to return value. Set an environment variable. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set drive to sleep mode. Set drive to standby mode. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Show APM information. Show a help message. Show loaded modules. Show the contents of a file. Show the current mappings. Show this message. Skip offset bytes from the beginning of file. Specify filename. Specify hash to use. Test USB support. Test if REGEXP matches STRING. Test video subsystem. The files are identical.
 The highlighted entry will be executed automatically in %ds. USER PASSWORD Uncompress file before checksumming. Unload EFI emulator. Usage: Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use serial console. VARNAME Wait for a specified number of seconds. Warning: syntax error (missing slash) in `%s'
 [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-l|-h|-a] [FILE ...] [ADDR|comUNIT][,SPEED] [ARG] [ENVVAR=VALUE] [NUMBER:]VARNAME [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [PATTERN ...] [[year-]month-day] [hour:minute[:second]] cannot compress the kernel image diskboot.img size must be %u bytes done error: %s.
 non-sector-aligned data is found in the core file the first sector of the core file is not sector-aligned the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small two arguments expected unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length variable `%s' isn't set you need to load the kernel first Project-Id-Version: grub 2.0.0-pre6
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2012-10-11 05:55+0900
Last-Translator: Takeshi Hamasaki <hmatrjp@users.sourceforge.jp>
Language-Team: Japanese <translation-team-ja@lists.sourceforge.net>
Language: ja
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=1; plural=0;
 %s: エラー: %s: 情報: -l | -r | [-s] grubdev osdisk. ACPI シャットダウン失敗 ADDR ADDR VALUE [MASK] DOSスタイルのCR/NL行末コードを受け付けます。 再起動するファイル名を確認する BLOCK ハッシュリストのベースディレクトリ BIOSベースのシステムを起動します。 オペレーティングシステムを起動します。 シングルモードで起動する デバッグメッセージを表示して起動する コマンドリストを起動します ROM領域を有効にできません。 Alt キーを検査する。 Control キーを検査する。 Shift キーを検査する。 CPUの仕様を確認する キー修飾子の状態をチェックする 画面表示を消す ファイル `%s' と `%s' を比較:
 2つのファイルを比較します。 ハッシュチェックサムを計算または確認します。 シリアルポートを設定します DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE は OS のデバイスでなければいけません (例: /dev/sda)。 ドライバーを決定する ファイルシステムのUUIDを決定する ファイルシステムのラベルを決定する ファイルシステムの形式を決定する パーティションマップの形式を決定する デバイス %s: ACPIを使用しない SMPを使用しない すべての起動時の出力を表示しない SMART を無効/有効にします。(0/1) 1行のテキストを表示する。 すべての端末の出力を表示する このコマンドの使用法を表示して終了する このヘルプを表示して終了する。 末尾の改行を出力しない。 メッセージを表示しません。 コンピュータを停止するのに APM を使用しません。 何もしないでください。成功しました。 何もしないでください。失敗しました。 起動時の診断メッセージを表示しない カンマ区切りのリストで指定されたホストテーブルをロードしません。 最初のエラーの後停止しません。 ENVVAR ESC キーでいつでも終了します。 バックスラッシュによるエスケープを有効にする。 起動時にKDBに入る ノーマルモードに入ります パスワードを入力してください:  式を評価する GRUBを終了する ノーマルモードを抜けます バージョン1 テーブルをOSにエクスポートします。 バージョン2, バージョン3 テーブルをOSにエクスポートします。 FILE FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 ファイルシステムにアクセスできません ファイルシステムの種類 %s GPTドライブ DEVICE のハイブリッドMBRを埋めます。指定したパーティションがハイブリッドMBRの一部になります。３パーティションまで利用が可能です。TYPEはMBRのタイプを示します。＋はパーティションがアクティブな事を示します。アクティブになれるのはただ一つのパーティションのみです。 ビデオ出力の問題を修正する。 GNU Mach を見つけました: %s\n NetBSD カーネルを見つけました: %s\n FreeBSD カーネルを見つけました: %s\n Linux イメージを見つけました: %s\n テーマを見つけました: %s\n リセットするまで ATA セキュリティ設定を凍結します。 grub 設定ファイルを生成する ディスクキャッシュ情報を取得します。 ATA ディスクの設定値を取得/設定します。 HASH HINT APM が使えるなら、コンピュータを停止してください。 コンピュータを停止します。このコマンドはすべてのファームウェア実装で動作するとは限りません。 無効なデバイス `%s' です。
 PCIデバイスをリスト表示する すべてのファイルをリスト表示する デバイスとファイルをリスト表示する ファームウエアによって規定されたメモリマップを表示する 環境ブロックファイルから変数をリスト表示する 64ビットXNUイメージをロードする BIOSのダンプリストをロードする。 FreeBSDのカーネルモジュールをロードする(ELF) FreeBSDのカーネルモジュールをロードする Linuxをロードする XNUイメージをロードする キーボード配列を読み込む。 multiboot 2のカーネルをロードする multiboot 2のモジュールをロードする 他のブートローダーをロードする コンテキストを変更せずに他の設定ファイルをロードします。 他の設定ファイルをロードします。 引数で指定されたテーブルとホスト ACPI テーブルをロードしてください。 initrdをロードする FreeBSDのカーネルをロードする NetBSDのカーネルをロードする OpenBSDのカーネルをロードする カンマ区切りのリストで指定されたテーブルのみロードします。 環境ブロックファイルから変数をロードする GNU Mach をロード中... Linux %s をロード中... Xen %s をロード中... 初期 RAM ディスクをロード中... FreeBSD %s のカーネルをロード中... the Hurd をロード中... MODULE GRUB キーボード配列を作成する。 BIOS ドライブマッピングを管理します。 PCI デバイスを操作する BASH に似た最小限の行編集機能がサポートされています。最初の単語では、TAB で利用可能なコマンド補完の一覧が表示されます。その他には、TAB で利用可能なデバイスまたはファイル補完の一覧が表示されます。%s NAME [VARIABLE] [HINTS] ネットワークプロトコル: デバイスが指定されていません。
 PORT PORT VALUE [MASK] パーティション %s: 直接と反転マッピングの両方をおこなう 曲を鳴らす 利用可能な引数一覧: 利用可能なコマンド一覧: 利用可能なデバイス一覧: 利用可能なファイル一覧: 利用可能なパーティション一覧: 利用可能なものの一覧: 続けるには何かキーを押してください... ブロックリストを表示します。 バックトレースを表示します。 ドライブ ID と設定を印刷します。 REGEXP STRING ROMイメージが存在します。 LENGTH バイトだけ読み出す コンピュータを再起動する モジュールを削除する 環境変数を削除する。 全てのマッピングを既定値にリセットする デバイス情報を取得する STRING 読出し値を変数VARNAMEに保存します。 環境ブロックファイルに変数を保存する デバイスをUUID名で探す。VARIABLE が指定されれば、最初に見つかったデバイスが変数にセットされます。 デバイスをファイルで検索する。 デバイスをファイルシステム UUID で検索する。 デバイスをファイルシステムラベルで検索する。 デバイスをファイル名で探す。VARIABLE が指定されれば、最初に見つかったデバイスが変数にセットされます。 デバイスをラベル名で探す。VARIABLE が指定されれば、最初に見つかったデバイスが変数にセットされます。 Advanced Power Management を設定します。
(1=low, ..., 254=high, 255=off) Automatic Acoustic Management を設定します。
(0=off, 128=quiet, ..., 254=fast) RSDP, XSDT, RSDT の OEMID を設定する RSDP, XSDT, RSDT の OEMTABLE ID を設定する RSDP, XSDT, RSDT の OEMTABLE リビジョンを設定する 戻り値に変数を設定する 環境変数を設定する。 RSDP, XSDT, RSDT の製造者フィールドを設定する RSDP, XSDT, RSDT の製造者リビジョンを設定する ドライブをスリープモードに設定します。 ドライブをスタンバイモードに設定します。 スタンバイのタイムアウトを設定します。
(0=off, 1=5秒, 2=10秒, ..., 240=20分, 241=30分, ...) シリアルポートのアドレスを設定します シリアルポートのパリティを設定します シリアルポートの速度を設定します シリアルポートのストップビットを設定します シリアルポートのワード長を設定します シリアルユニットを設定します ユーザーパスワード（プレーンテキスト）を設定する。非推奨で安全ではありません ユーザー入力により変数を設定する APM情報を表示する。 ヘルプを表示します。 ロードされたモジュールを表示する ファイルの内容を表示します。 現在のマッピングを表示します。 このメッセージを表示する ファイルの始めからoffsetバイトをスキップします。 ファイル名を指定する 利用するハッシュを指定してください。 USBのサポートをテストする REGEXP が STRING に一致するかどうかの検査を行う。 ビデオのサブシステムをテストする 2つのファイルは同じものです。
 ハイライトされた項目が %d 秒後に自動実行されます。 ユーザーパスワード チェックサムを計算する前にファイルを解凍します。 EFI エミュレーターをアンロードする。 使い方: 使用法: %s [OPTION]\n CDROM をルートとして使用します。 DDBの代わりにGDBリモートデバッガを使う シリアルコンソールを使う VARNAME 指定した秒数の間待つ 警告：入力エラー `%s'の（スラッシュが抜けています）
 [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-e|-n] 文字列 [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-l|-h|-a] [FILE ...] [ADDR|comUNIT][,SPEED] [ARG] [ENVVAR=VALUE] [NUMBER:]VARNAME [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [PATTERN ...] [[年-]月-日] [時:分[:秒]] カーネルイメージを圧縮できません diskboot.img のサイズは %u バイトである必要があります 完了 エラー: %s。
 セクター順に整列していないデータがコアファイル中に見つかりました コアファイルの最初のセクターがセクター順に整列していません コアファイルのセクターがひどく断片化しています `%s' のサイズが %u ではありません `%s' のサイズが大きすぎます `%s' のサイズが小さすぎます 2つの引数が必要です サポートされていないシリアルポートのパリティです サポートされていないシリアルポートの速度です サポートされていないシリアルポートのストップビット値です サポートされていないシリアルポートのワード長です 変数 `%s' が設定されていません まずカーネルをロードする必要があります                                                                                                                                                                                                                                                                                                   boot/grub/locale/lt.mo                                                                              0000600 0001750 0001750 00000117026 13417732100 0013650 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                            ,  -  <      "      "     #     -#     E#  $   \#     #     #     #     #     #     #     #  1   #     $  %   >$  '   d$  %   $  '   $     $     $     $     %     '%     ,%     >%     J%     X%  $   e%     %     %     %     %     %     %     &  #   -&     Q&     l&     &     &     &     &     &     &     &     '     '  %   '     E'     d'     x'     '     '     '     '  *   '  3   (     9(     T(     r(     (  P   (     (     )  H    )     i)  !   p)     )     )     )  $   )     )     )     *     +*     F*  
   d*     o*  1   *     *     *     *     +     +  #   7+     [+     r+  $   +     +     +  9   +     &,  z   D,  
   ,     ,     ,     ,  +   -     @-  "   U-     x-     -     -  "   -  0   -     .     
.  7   .     Q.     Y.     e.  6   {.  +   .     .  !   /  d   /  e   60  d   0  i   1  o   k1  H   1     $2  )   72     a2     p2     2     2     2  '   2  P   2  	   %3  '   /3     W3  (   d3  "   3  -   3     3     3  O    4     P4     h4  %   v4     4  )   4  !   4  "   5     *5  +   A5     m5     }5  !   5  M   5  2   6     86  8   R6  3   6  $   6     6     6     
7  !   7     37     K7     h7     {7     7     7     7     7  '   7  
   8     8     8     68     H8  H   e8     8     8     8  #   8      9     29  (   ?9  %   h9     9     9     9  "   9  ;   9  #   :  <   ;:     x:  	   :     :  `   :     ;     ;     ;     ,;     C;     R;     i;     |;     ;     ;     ;  "   ;     <      <  g   :<     <     '=     A=  -   ^=     =  "   =  '   =     =     >     >     />     L>     i>     >     >     >     >     >     ?     ?     /?     J?     c?     x?  &   ?  )   ?  ^   ?     /@  $   I@  %   n@     @  ^   GA  _   A  )   B  '   0B  >   XB  D   B  !   B  '   B  -   &C     TC  )   tC  )   C  ,   C     C     D  E   )D     oD  :   D     D     D     D     E  0   'E     XE     mE  )   E  &   E     E     E     F  )    F  %   JF  %   pF  ,   F  '   F  -   F     G     )G     ;G  '   PG  *   xG  6   G     G     G  !   
H     ,H  
   BH     MH  <   gH  %   H  d   H  0   /I     `I     nI     I     I  $   I     I      I     J     $J     <J     CJ     bJ     jJ  m   }J     J     K     K     8K  '   RK     zK     K     K     K     K     L      L     :L  /   ?L     oL  .   L  O   L  )   M     .M     DM  	   SM     ]M  5   {M     M     M     M     M     M     N     )N     8N     QN  	   _N     iN  )   oN     N     N  -   N  $   N     O  (    O  1   IO     {O     O     O     O     O  B   O     4P     OP  (   fP  '   P  %   P     P     P     P     Q  $   Q  '   BQ     jQ     Q  %   Q     Q     Q     Q     Q     R     -R     ?R     OR     eR     uR     R     R     R     R     R     R     S      S     5S     AS     PS     `S     qS     S     S  &   S     S     S     S     S     T     T     .T     DT  &   ^T  @   T     T     T     T     U     $U     CU  (   aU  #   U     U     U  !   U  E   V  f  IV  -   W  "   W  !   X     #X  &   :X     aX     X     X  "   X     X  
   X     X  <   X  "   -Y  '   PY  )   xY  '   Y  )   Y  
   Y  /   Y  -   /Z     ]Z     yZ     Z     Z     Z     Z  -   Z     Z     [     9[     N[  !   l[     [     [  *   [     [     \     /\     F\     M\  "   Z\     }\     \      \     \     \  *   \  )   ]     A]     Y]  9   y]  (   ]  (   ]  ,   ^  F   2^  K   y^  +   ^  )   ^     _  0   0_  b   a_  %   _  %   _  A   `  
   R`  &   ]`     `     `     `  3   `      `     a  #   1a      Ua  #   va      a  (   a  @   a     %b     Eb     ]b     vb  (   b  (   b     b  /   b  %   *c  #   Pc  %   tc  >   c     c     c  
   d     d     d     d  I   d     Ie  #   fe     e     e     e  .   e  =   e     7f     >f  8   Vf  	   f     f     f  :   f  ,    g    -g  '   Ch     kh     h     i     "j     j  r   bk     k  A   k     7l  "   Ll  %   ol     l  	   l  2   l  R   l     ,m  3   <m  	   pm  7   zm  1   m  :   m     n     <n  p   Vn  "   n     n  K   o  &   Oo  C   vo  1   o  2   o     p  /   >p     np  "   p  '   p  e   p  <   9q  %   vq  F   q  ?   q  )   #r     Mr     _r     |r  '   r     r  )   r     r     s      )s     Js     `s  #   ms  )   s     s  &   s     s     t  /   *t  k   Zt     t  1   t     u  &   u  )   Au     ku  .   ~u  )   u     u  	   u     u  J   v  s   \v  P   v  y   !w     w     w     w  h   w     7x     Fx     Wx  !   tx     x  #   x     x  !   x  $   y  3   9y  %   my  2   y  #   y  "   y     z     z      }{  *   {  2   {     {  -   |  )   G|  E   q|     |     |  )   |  +   }  )   @}  +   j}  (   }  *   }     }     ~     %~  #   9~     ]~  @   |~     ~     ~  /   ~  1     ~   ?  "     A     4   #     X  o   I  q     5   +  E   a  P     U     9   N  ?     <   ȃ  ,     3   2  9   f  <     *   ݄  .     o   7  2     N   څ  4   )     ^     x       1               3     0   O            '     6   ׇ  5     5   D  <   z  7     6        &     :     Q  -   p  8     T   ׉     ,  .   G  9   v          Ί     ۊ  ?     4   0     e  *        B     Z     y  )     ,          +        /     J     j  ,   v  
          z   ɍ     D  !   d              )   Ȏ  (     +     (   G  +   p  '     *   ď            3        E  8   c  _     2        /     G     W  "   c  A        ȑ     ܑ               %     C     X  "   k                 6   ʒ  !        #  6   =  #   t       -     7              <      Z     {  &     N     $         1  H   R  -     +   ɕ  	     -        -     F  )   \  ,     %     (   ٖ  -        0     K     g     t  !             ŗ     ߗ          	     $     >     ]  %   z       "           !        &  '   D  (   l  (     6     *     *      "   K      n  1     %     &     #     %   2     X     s  "     O     (        ,     I     h  +   }  )     :   Ӝ  0     '   ?  1   g       \             [                 r                     Y               u                         S      M   b     I  +            *     ?   [                              |  ^  #               %                   i       f   W     E  U      0     .               y          =             S   R                >      1   B          R   Y      n    o         F            *                           j     ;        G      z   4             i  '             m               /      F      7      x   5   O                $  /  I          @   K               p                       x       J   4  c  g           l          V  9       2   >                   C      B  l    -  	          D                         X  (                r          u  t           s  d  =  
           ;   a  @     j                 \   H   m   }               L      {       A   J  P    w   N      h                                    
  `   E                                       &                      W     %              :           Z   ]   Q         g     +      3              X   <  1                  P      &             }     G      T                k          v   o     :   f  y  K   _         "       U      8  7     A               v  q   ^         #                 e              a   )      h          (   C      ~           D                                     b      )   ,              q             w          ]          _  M     n                                   `      O                \         z  t         {      0              Z     V                 .           L        $               c      !          |      ~  '      !      6        -       6   9          "    3  	                     Q             N        T  s   k       ?         2      p                               ,                e  8   <   d   5                               H       No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available %ds %ds remaining. %s does not support UUIDs %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] APM disabled
 APM enabled
 Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Allow to interrupt with ESC. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Available input terminals: Available output terminals: BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Base directory for hash list. Boot an operating system. Bootpath: %s
 Bootpath: unavailable
 CGA  COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't enable ROM area. Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check key modifier status. Compare file `%s' with `%s':
 Compare two files. Compute or check hash checksum. Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DIR Define a menu entry. Define a submenu. Delete the specified loopback drive. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable/enable SMART (0/1). Display SMART health status. Display a line of text. Display power mode. Display/set current datetime. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't load host tables specified by comma-separated list. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d seconds 
 Emulate a keystroke sequence Enable interpretation of backslash escapes. Enter ZFS password:  Enter passphrase for %s%s%s (%s):  Enter password:  Evaluate an expression. Exit from GRUB. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILESYSTEM [VARIABLE] Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Freeze ATA security settings until reset. GRUB Boot Menu Get disk cache info. Get/set ATA disk parameters. HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Hercules  Import ZFS wrapping key stored in FILE. KEYBOARD_KEY Keyboard key to quickly boot this entry. Leaf virtual device (file or disk) Legend: mask/position=red/green/blue/reserved List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List devices and files. List devices. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the loaded fonts. List variables from environment block file. Load BIOS dump. Load a keyboard layout. Load and initialize EFI emulator. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load host ACPI tables and tables specified by arguments. Load only tables specified by comma-separated list. Load the same file in multiple ways. Loaded fonts: MAC verification failed MODULE Make a virtual drive from a file. Manipulate PCI devices. Measure time used by COMMAND Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry type. Monochrome  Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. NAME [VARIABLE] [HINTS] NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Network protocols: New MBR is written to `%s'
 No CS5536 found No disk cache statistics available
 No virtual device tree available Non-chain 4  Now connect the remote debugger, please. OS disk #num ------> GRUB/BIOS device PARTITION COMMANDS PORT PORT VALUE [MASK] Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Planar  Play a tune. Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print drive identity and settings. Print sizes in a human readable format. RAM holding firmware code RAM slot number %d
 ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot the computer. Remove a module. Retrieve device info. Return to IEEE1275 prompt. Run `go' to resume GRUB. SOURCE|-u UUID|-a|-b STRING Save read value into variable VARNAME. Save variables to environment block file. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set a variable to return value. Set a variable to the first device found. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set drive to sleep mode. Set drive to standby mode. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Show ACPI information. Show APM information. Show a help message. Show a long list with more detailed information. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show the contents of a file. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Skip offset bytes from the beginning of file. Slot %d opened
 Specify filename. Specify hash to use. Specify one or more font files to load. Store matched component NUMBER in VARNAME. System management bus controller I/O space is at 0x%x
 Test USB support. Test bit at BYTE:BIT in CMOS. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This entry can be booted by any user. Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Translates the string with the current settings. USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] Unable to retrieve pool state Uncompress file before checksumming. Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unrecognized pool state Usage: Use STRING as menu entry body. VARNAME Verbose countdown. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed Wait for a specified number of seconds. Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 YUV  [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [NUMBER:]VARNAME [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [PATTERN ...] [WxH[xD]] [WxH] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] attempt to read or write outside of disk `%s' attempt to read past the end of file available RAM base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 can't find command `%s' cannot open `%s': %s cannot read `%s': %s cannot write to CD-ROM checksum verification failed couldn't find a necessary member device of multi-device filesystem couldn't read ELI metadata don't update LED state enter: boot, `e': options, `c': cmd-line failure reading sector 0x%llx from `%s' failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels invalid PBKDF2 password invalid file name `%s' invalid video mode specification `%s' missing `%c' symbol module `%s' isn't loaded no APM found no command is specified no decryption key available no such partition no symbol table no terminal specified not a directory not a regular file one argument expected physical volume %s not found premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift relocation 0x%x is not implemented yet reserved RAM set capslock mode set insert mode set numlock mode set pause mode set scrolllock mode symbol `%s' not found terminal `%s' isn't found this ELF file is not of the right type this LDM has no Embedding Partition; embedding won't be possible too deep nesting of symlinks two arguments expected unknown argument `%s' unrecognized number unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length variable `%s' isn't set wrong ELI magic or version you need to load the kernel first your core.img is unusually large.  It won't fit in the embedding area Project-Id-Version: grub 2.00+20130519
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-06-02 22:59+0300
Last-Translator: Rimas Kudelis <rq@akl.lt>
Language-Team: Lithuanian <komp_lt@konferencijos.lt>
Language: lt
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
     Nė viena pageidaujama veiksena negalima
     Pageidaujama veiksena: %u×%u
   netinkama EDID kontrolinė suma   EDID versija: %u.%u
   Nepavyko inicijuoti vaizdo adapterio   Jokia informacija neprieinama %d sek. liko %d sek. %s nepalaiko UUID identifikatorių %s: MAIŠOS NESUTAMPA
 %s: GERAI
 %s: SKAITYMO KLAIDA
 -h MAIŠA [-c FAILAS [-p PREFIKSAS]] [FAILAS1 [FAILAS2 ...]] -l | -r | [-s] grub_įr os_diskas. 16 bitų apsaugotoji sąsaja palaikoma
 16 bitų apsaugotoji sąsaja nepalaikoma
 32 bitų apsaugotoji sąsaja palaikoma
 32 bitų apsaugotoji sąsaja nepalaikoma
 =REIKŠMĖ ACPI išliekamoji užimta operatyvioji atmintis ACPI lentelių užimama operatyvioji atmintis Išjungti per ACPI nepavyko ADRESAS ADRESAS REIKŠMĖ [KAUKĖ] ADRESAS [DYDIS] APM išjungtas
 APM įgalintas
 Leisti DOS stiliaus CR/NL eilučių pabaigas. Aktyvūs įvesties terminalai: Aktyvūs išvesties terminalai: Adapteris „%s“:
 Leisti nutraukti Gr klavišu. Įvestį laikyti šešioliktaine. Įvestį laikyti slaptafraze. Įvestį laikyti neapdorota. Bandoma iššifruoti pagrindinį raktą... Galimi įvesties terminalai: Galimi išvesties terminalai: BIOS_DUMP [INT10_DUMP] BLOKAS BAITAS:BITAS Bazinis maišų sąrašo aplankas. Paleisti operacinę sistemą. Paleidimo kelias: %s
 Paleidimo kelias: nepasiekiamas
 CGA  KOMANDA [ARGUMENTAI] Procesoriaus atlaisvinimas jo nesulėtina
 Procesoriaus atlaisvinimas jį sulėtina
 CS5536 rasta: %d:%d.%d
 Negalima įgalinti ROM srities. Patikrinti „Alt“ (arba „Lyg3“) klavišo būseną. Patikrinti „Vald“ klavišo būseną. Patikrinti „Lyg2“ klavišo būseną. Patikrinti centrinio procesoriaus galimybes. Palyginti failų maišas su nurodytomis maišų sąrašo faile FAILAS. Patikrinti, ar centrinis procesorius palaiko 64 bitų veikseną (numatyta). Patikrinti modifikavimo klavišų būseną. Failų „%s“ ir „%s“ palyginimas:
 Palyginti du failus. Apskaičiuoti arba patikrinti maišos reikšmę. Nepavyko aptikti fizinio tomo „%s“. Kai kurių modulių pagrindiniame atvaizdyje gali trūkti. Nepavyko įkelti „sha256“ modulio Nepavyko įkelti „sha512“ modulio Kurti BIOS tipo struktūras atbuliniam suderinamumui su esama OS. ĮRENGINYS ĮRENGINYS [SKAIDINYS[+/-[TIPAS]]] ... APLANKAS Aprašyti meniu elementą. Aprašyti submeniu. Pašalinti nurodytą kilpinės jungties įrenginį. Nustatyti naudotiną tvarkyklę. Nustatyti failų sistemos UUID. Nustatyti failų sistemos etiketę. Nustatyti failų sistemos tipą. Nustatyti skaidinių schemos tipą. Įrenginio identifikatorius: %s
 Įrenginio idtifikatorius: nepasiekiamas Tiesioginės spalvos, kaukė: %d/%d/%d/%d, pozicija: %d/%d/%d/%d Išjungti/įjungti SMART (0/1). Parodyti SMART būklę. Parodyti teksto eilutę. Rodyti maitinimo veikseną. Parodyti arba nustatyti datą ir laiką. Neišvesti eilutės pabaigos failo gale. Nerodyti pranešimų. Netikrinti lanksčiųjų diskelių įrenginių. Nenaudoti APM kompiuteriui išjungti. Nieko nedaryti, grąžinti sėkmę. Nieko nedaryti, grąžinti nesėkmę. Neįkelti lentelių, nurodytų kableliais atskirtame sąraše. Nesustoti po pirmos klaidos. Nenaujinti EBDA. Tai gali pašalinti nesklandumus ar strigtis, pasitaikančias su kai kuriomis BIOS realizacijomis, tačiau neefektyvu, nes OS negauna RSDP struktūros iš GRUB. IŠRAIŠKA IŠRAIŠKA ] Sugaišta laiko: %d.%03d sek.
 Emuliuoti klavišų paspaudimus Įgalinti kaitos sekų su kairiniu pasviruoju brūkšniu interpretavimą. Įveskite ZFS slaptažodį:  Įveskite %s%s%s (%s) slaptafrazę: Įveskite slaptažodį:  Vykdyti išraišką. Išeiti iš GRUB. Eksportuoti pirmosios versijos lenteles į OS. Eksportuoti antrosios ir trečiosios versijų lenteles į OS. FAILAS FAILAS [ARGUMENTAS ...] FAILAS | TEMPAS [TONAS1 TRUKMĖ1] [TONAS2 TRUKMĖ2] ...  FAILAS... FAILAS1 FAILAS2 FAILŲ_SISTEMA [KINTAMASIS] Failai skiriasi ties poslinkiu %llu: 0x%x [%s], 0x%x [%s]
 Skiriasi failų dydis: %llu [%s], %llu [%s]
 Užpildyti GPT disko ĮRENGINYS hibridinį paleidimo įrašą (MBR). Nurodytieji skaidiniai bus hibridinio paleidimo įrašo dalis. Galima nurodyti iki trijų skaidinių. TIPAS yra MBR tipas. „+“ reiškia, jog skaidinys bus aktyvus. Tik vienas skaidinys gali būti aktyvus. Užbaigti EFI emuliatoriaus įkėlimą. Pirma išbandyti PATARIAMĄ įrenginį, jeigu veikiama ARC veiksenoje. Jeigu PATARIMAS baigiasi kableliu, bus išbandyti ir įrenginio skaidiniai Pirma išbandyti PATARIAMĄ įrenginį, jeigu veikiama BIOS veiksenoje. Jeigu PATARIMAS baigiasi kableliu, bus išbandyti ir įrenginio skaidiniai Pirma išbandyti PATARIAMĄ įrenginį, jeigu veikiama EFI veiksenoje. Jeigu PATARIMAS baigiasi kableliu, bus išbandyti ir įrenginio skaidiniai Pirma išbandyti PATARIAMĄ įrenginį, jeigu veikiama IEEE1275 veiksenoje. Jeigu PATARIMAS baigiasi kableliu, bus išbandyti ir įrenginio skaidiniai Pirma išbandyti PATARIAMĄ įrenginį, jeigu palaikoma tiesioginė prieiga prie įrenginių. Jeigu PATARIMAS baigiasi kableliu, bus išbandyti ir įrenginio skaidiniai Pirma išbandyti PATARIAMĄ įrenginį. Jeigu PATARIMAS baigiasi kableliu, bus išbandyti ir įrenginio skaidiniai Pašalinti problemą su vaizdu. Įrašyti ATA saugumo nuostatas iki bus atkurta pradinė būsena. GRUB paleidimo meniu Gauti disko podėlio informaciją. Gauti/nustatyti ATA disko parametrus. MAIŠA PATARIMAS Išjungti sistemą, jeigu įmanoma, naudojant APM. Išjungti kompiuterį. Ši komanda veikia ne su visa programine aparatine įranga. „Hercules“  Importuoti ZFS gaubiantįjį raktą laikomą FAILE. KLAVIŠAS Klaviatūros klavišas, iškviečiantis šį elementą. Virtualus įrenginys–lapas (failas arba diskas) Legenda: kaukė/pozicija=raudona/žalia/mėlyna/rezervuota Išvardinti PCI įrenginius. Išvardinti visus failus. Išvardinti galimas vaizdo veiksenas. Jeigu nurodyta skiriamoji geba, vardinti tik ją atitinkančias veiksenas. Išvardinti įrenginius ir failus. Išvardinti įrenginius. Parodyti aparatinės programinės įrangos pateiktą atminties žemėlapį. Palaikomų vaizdo veiksenų sąrašas: Sąrašas naudotojų, kuriems leidžiama iškviesti šį elementą. Išvardinti arba pasirinkti įvesties terminalą. Išvardinti arba pasirinkti išvesties terminalą. Išvardinti įkeltus šriftus. Išvardinti kintamuosius aplinkos blokų faile. Įkelti BIOS išklotinę. Įkelti klaviatūros išdėstymą. Įkelti ir inicijuoti EFI emuliatorių. Įkelti kitą konfigūracijos failą, nekeičiant konteksto, tačiau iš jo imti tik meniu elementus. Įkelti kitą konfigūracijos failą, nekeičiant konteksto. Įkelti kitą konfigūracijos failą. Įkelti kompiuterio ACPI lenteles ir lenteles, nurodytas argumentuose. Įkelti tik lenteles, nurodytas kableliais atskirtame sąraše. Įkelti tą patį failą keliais būdais. Įkelti šriftai: nepavyko patikrinti MAC kodo MODULIS Sukurti virtualų įrenginį iš failo. Manipuliuoti PCI įrenginiais. Paskaičiuoti, kiek laiko vykdoma KOMANDA Atminties tipas: DDR2. Atminties tipas: nežinomas. Meniu elemento identifikatorius. Meniu elemento tipas. Vienspalvė  Prijungti kriptografinį įrenginį Prijungti visus tomus su paleidimo žyme. Prijungti viską. Prijungti pagal UUID identifikatorių. VARDAS [KINTAMASIS] [PATARIMAI] SEKUNDŽIŲ_SKAIČIUS Pavadinimas	Nuorodų skaičius	Priklausomybės
 Naudojamos prigimtinės disko tvarkyklės. Aparatinės programinės įrangos disko sąsaja nebus naudojama. Tinklo protokolai: Naujas paleidimo įrašas įrašytas į „%s“
 CS5536 nerasta Disko podėlio statistika neprieinama
 Virtualių įrenginių medis neprieinamas „Non-chain 4“  Dabar prašom prijungti nuotolinę derintuvę. OS disko Nr. ------> GRUB/BIOS įrenginys SKAIDINYS KOMANDOS PRIEVADAS PRIEVADAS REIKŠMĖ [KAUKĖ] Analizuoti senosios GRUB versijos konfigūracinį failą naujame kontekste Analizuoti senosios GRUB versijos konfigūracinį failą naujame kontekste, tačiau iš jo imti tik meniu elementus Analizuoti senosios GRUB versijos konfigūracinį failą tame pačiame kontekste Analizuoti senosios GRUB versijos konfigūracinį failą tame pačiame kontekste, tačiau iš jo imti tik meniu elementus Dalies Nr.: %s.
 Kelias: %s
 Kelias: nepasiekiamas Vykdyti KOMANDAS su skaidiniu.
Naudokite „parttool SKAIDINYS help“ galimų komandų sąrašui gauti. Plokštuminė  Groti melodiją. Tomų grupės GUID: %016llx
 Tomų grupės GUID: nepasiekiamas Tomų grupės vardas: %s
 Tomų grupės vardas: nepasiekiamas Tomų grupės būsena: aktyvi Tomų grupės būsena: sunaikinta Tomų grupės būsena: eksportuojama Tomų grupės būsena: antrojo lygio ARC įrenginys Tomų grupės būsena: galimai aktyvi Tomų grupės būsena: laikoma karštajam rezervui Tomų grupės būsena: nepasiekiama Tomų grupės būsena: neiniciuota Spauskite „Įvesti“ („Enter“) pasirinktai OS paleisti, „e“, jeigu norite paredaguoti komandas, arba „c“ komandinei eilutei iškviesti. Spauskite „Įvesti“ („Enter“) pasirinktai OS paleisti, „e“, jeigu norite paredaguoti komandas, arba „c“ komandinei eilutei iškviesti. Paspaudę „Gr“ („Escape“), grįšite į ankstesnį meniu. Parodyti atminties informaciją. Parodyti ZFS informaciją apie ĮRENGINĮ. Parodyti ZFS-BOOTFSOBJ, arba priskirti KINTAMAJAM. Spausdinti blokų sąrašą. Parodyti disko identifikatorių ir nuostatas. Dydžius nurodyti suprantamesniu formatu. operatyvioji atmintis, kurioje laikoma aparatinė programinė įranga OA lizdo numeris %d
 Yra prieinamas ROM atvaizdis. Nuskaityti 16 bitų reikšmę iš ADRESO. Nuskaityti 16 bitų reikšmę iš PRIEVADO. Nuskaityti 32 bitų reikšmę iš ADRESO. Nuskaityti 32 bitų reikšmę iš PRIEVADO. Nuskaityti 8 bitų reikšmę iš ADRESO. Nuskaityti 8 bitų reikšmę iš PRIEVADO. Skaityti tik ILGIS baitų. Iš naujo paleisti kompiuterį. Pašalinti modulį. Nuskaityti įrenginio informaciją. Grįžti į IEEE1275 sąsają. Kai norėsite tęsti GRUB darbą, įvykdykite komandą „go“. ŠALTINIS|-u UUID|-a|-b EILUTĖ Įrašyti nuskaitytą reikšmę į KINTAMĄJĮ. Įrašyti kintamuosius į aplinkos blokų failą. Ješkoti įrenginių pagal UUID identifikatorių. Jeigu nurodytas KINTAMASIS, jam bus priskirtas pirmasis surastas įrenginys. Ieškoti įrenginių pagal failą. Ieškoti įrenginių pagal failų sistemos UUID identifikatorių. Ieškoti įrenginių pagal failų sistemos etiketę. Ieškoti įrenginių pagal failą, failų sistemos etiketę arba jos UUID identifikatorių. Nurodžius --set, parametrą, šiam kintamajam bus priskirtas pirmasis surastas įrenginys. Nenurodžius kintamojo vardo, bus naudojamas „root“. Ieškoti įrenginių pagal failą. Jeigu nurodytas KINTAMASIS, jam bus priskirtas pirmasis surastas įrenginys. Ieškoti įrenginių pagal etiketę. Jeigu nurodytas KINTAMASIS, jam bus priskirtas pirmasis surastas įrenginys. Parinkti įrenginį pagal jo poziciją magistralėje. Pasirinkti įrenginį pagal gamintojo ir įrenginio identifikatorius. Nustatyti energijos valdymo lygį
(1=žemas, ..., 254=aukštas, 255=išjungtas). Nustatyti automatinį akustinį valdymą
(0=išjungtas, 128=tylus, ..., 254=greitas). Nustatyti RSDP, XSDT ir RSDT struktūrų OEMID reikšmę. Nustatyti RSDP, XSDT ir RSDT struktūrų OEMTABLE ID reikšmę. Nustatyti RSDP, XSDT ir RSDT struktūrų OEMTABLE reviziją. Priskirti grąžinamą reikšmę kintamajam. Pirmąjį surastą įrenginį priskirti kintamajam. Nustatyti RSDP, XSDT ir RSDT struktūrų kūrėjo lauką. Nustatyti RSDP, XSDT ir RSDT struktūrų kūrėjo reviziją. Nurodyti diskui pereiti į miego būseną. Nurodyti diskui pereiti į budėjimo būseną. Nustatyti laiką iki bus pereita į budėjimo būseną
(0=išjungta, 1=5s, 2=10s, ..., 240=20m, 241=30m, ... ). Nustatyti naudotojo slaptažodį (PBKDF2 maišą). Nustatyti naudotojo slaptažodį (atviru tekstu). Nesaugu ir nerekomenduojama. Nustatyti kintamojo reikšmę į naudotojo įvestį. Rodyti ACPI informaciją. Rodyti APM informaciją. Rodyti pagalbinį pranešimą. Rodyti ilgą sąrašą su išsamesne informacija. Išvardinti įkeltus modulius. Rodyti atminties turinį. Rodyti neapdorotą ATA IDENTIFY sektoriaus turinį. Rodyti neapdorotą failo arba atminties turinį. Rodyti failo turinį. Rodyti šį pranešimą. Rodyti tik pirmosios versijos lenteles. Rodyti tik antrosios ir trečiosios versijų lenteles. Imituoti senosios GRUB versijos „initrd“ komandą Imituoti senosios GRUB versijos „kernel“ komandą Imituoti senosios GRUB versijos „modulenounzip“ komandą Imituoti senosios GRUB versijos „password“ komandą Praleisti nurodytą kiekį baitų nuo failo pradžios. Atvertas %d lizdas
 Nurodyti failo vardą. Nurodykite naudotiną maišą. Nurodyti vieną ar daugiau įkeltinų failų. Įrašyti atitikusį komponentą NUMERIS į KINTAMĄJĮ. Sistemos valdymo magistralės valdiklio įvesties/išvesties erdvė yra adresu 0x%x
 Išbandyti USB palaikymą. Patikrinti bito BAITAS:BITAS reikšmę CMOS'e. Išbandyti vaizdo posistemę PLOTIS×AUKŠTIS veiksenoje. Išbandyti vaizdo posistemę. Tik tekstas  Failai yra vienodi.
 Pasirinktasis elementas bus paleistas automatiškai už %d sek. Šį elementą gali iškviesti bet kuris naudotojas. Transformuoti 64 bitų UUID identifikatorių į XNU tinkamą formatą. Nurodžius „-l“ parametrą, grąžinamą reikšmę sudarys mažosios raidės, kaip „blkid“ atveju. Išverčia eilutę pagal esamas nuostatas. NAUDOTOJAS SLAPTAŽODIS NAUDOTOJAS PBKDF2_SLAPTAŽODIS NAUDOTOJAS[,NAUDOTOJAS] Nepavyko sužinoti tomų grupės būsenos Išskleisti failą prieš tikrinant maišą. Nežinoma vaizdo veiksena  Nežinomas virtualaus įrenginio tipas: %s
 Iškelti EFI emuliatorių. Nežinoma tomų grupės būsena Naudojimas: Naudoti EILUTĘ kaip meniu elemento tekstą. KINTAMASIS Detali atbulinė atskaita. Versija %u.%u
32 bitų CS = 0x%x, ilgis = 0x%x, poslinkis = 0x%x
16 bitų CS = 0x%x, ilgis = 0x%x
DS = 0x%x, ilgis = 0x%x
 Virtualus įrenginys defektyvus Virtualus įrenginys neprijungtas Virtualus įrenginys pasiekiamas Virtualus įrenginys pašalintas Palaukti nurodytą sekundžių skaičių. Įrašyti 16 bitų REIKŠMĘ į ADRESĄ. Nusiųsti 16 bitų REIKŠMĘ į PRIEVADĄ.  Įrašyti 32 bitų REIKŠMĘ į ADRESĄ. Nusiųsti 32 bitų REIKŠMĘ į PRIEVADĄ.  Įrašyti 8 bitų REIKŠMĘ į ADRESĄ. Nusiųsti 8 bitų REIKŠMĘ į PRIEVADĄ.  Įrašyta SPD baitų: %d B.
 YUV  [--append|--remove] [TERMINALAS1] [TERMINALAS2] ... [--md5] SLAPTAŽODIS [FAILAS] [--no-mem-option] [--type=TIPAS] FAILAS [ARGUMENTAS ...] [-1|-2] [--exclude=LENTELĖ1,LENTELĖ2|--load-only=LENTELĖ1,LENTELĖ2] FAILAS1 [FAILAS2] [...] [-c FAILAS [-p PREFIKSAS]] [FAILAS1 [FAILAS2 ...]] [-d] ĮRENGINYS FAILAS. [-n|-n] EILUTĖ [-f FAILAS] [-f FAILAS] kintamojo_vardas [...] [-f|-l|-u|-s|-n] [--hint PATARIMAS [--hint PATARIMAS] ...] VARDAS [-h|-p|-r] [FAILAS] [-l] GRUBUUID [KINTAMASIS] [-l|-h|-a] [FAILAS ...] [APLINKOS_KINTAMASIS] [KLAVIŠAS1] [KLAVIŠAS2] ... [NUMERIS:]KINTAMASIS [PARINKTYS] DISKAS [PARINKTYS] FAILAS_ARBA_ĮRENGINYS [ŠABLONAS ...] [PLOTISxAUKŠTIS[xGYLIS]] [PLOTISxAUKŠTIS] [[metai-]mėnuo-diena] [valandos:minutės[:sekundės]] [magistralė]:[lizdas][.funkcija] [gamintojas]:[įrenginys] bandoma skaityti arba rašyti už disko „%s“ ribų bandyti skaityti už failo pabaigos laisva operatyvioji atmintis bazinis_adresas = 0x%llx, ilgis = 0x%llx, %s
 bazinis_adresas = 0x%llx, ilgis = 0x%llx, tipas = 0x%x
 nepavyko rasti komandos „%s“ nepavyko atverti „%s“: %s nepavyko nuskaityti „%s“: %s rašyti į CD-ROM negalima kontrolinės sumos patikrinti nepavyko nepavyko rasti reikiamo įrenginio–nario kelių įrenginių failų sistemoje nepavyko nuskaityti ELI metaduomenų nekeisti šviesos diodo būsenos „įvesti“: paleisti, „e“: parinktys, „c“: komandinė eilutė klaida skaitant sektorių 0x%llx iš „%s“ klaida rašant sektorių 0x%llx į „%s“ neigiamas sugedusi operatyvioji atmintis („BadRAM“) failas „%s“ nerastas tikėtasi failo vardo tikėtasi failo vardo arba tempo ir natų failų sistema „%s“ nepalaiko etikečių negalima slaptažodžio PBKDF2 maiša netaisyklingas failo vardas – „%s“ negalimas vaizdo veiksenos aprašas: „%s“ trūksta „%c“ simbolio modulis „%s“ neįkeltas APM nerastas nenurodyta jokia komanda iššifravimo raktas neprieinamas tokio skaidinio nėra nėra simbolių lentelės nenurodytas terminalas tai nėra aplankas tai nėra paprastas failas tikėtasi vieno argumento nepavyko rasti fizinio tomo %s priešlaikinė failo pabaiga priešlaikinė failo „%s“ pabaiga nuspausti klavišą „Didž“ nuspausti klavišą „Įterpti“ nuspausti klavišą „Skaitm“ nuspausti klavišą „Slinkti“ nuspauti klavišą „Sist“ nuspausti kairįjį klavišą „Alt“ nuspausti kairįjį klavišą „Vald“ nuspausti kairįjį klavišą „Lyg2“ nuspausti dešinįjį klavišą „Alt“ („Lyg3“) nuspausti dešinįjį klavišą „Vald“ nuspausti dešinįjį klavišą „Lyg2“ perkėlimas 0x%x dar nerealizuotas rezervuota operatyvioji atmintis nustatyti didžiųjų raidžių klavišo būseną nustatyti įterpimo klavišo būseną nustatyti skaitmenų klavišo būseną nustatyti pauzės klavišo būseną nustatyti slinkties klavišo būseną simbolis „%s“ nerastas terminalas „%s“ nerastas šis ELF failas yra netinkamo tipo šis loginio disko tvarkytuvas neturi įtaisymo skaidinio; įtaisymas negalimas per giliai įdėtos simbolinės nuorodos tikėtasi dviejų argumentų nežinomas argumentas „%s“ nežinomas skaičius nepalaikomas nuosekliojo prievado lyginumas nepalaikomas nuosekliojo prievado greitis nepalaikomas nuosekliojo prievado pabaigos bitų skaičius nepalaikomas nuosekliojo prievado žodžio ilgis kintaojo „%s“ reikšmė nenustatyta netinkamas ELI magiškasis skaičius arba versija pirma turite įkelti branduolį jūsų „core.img“ failas neįprastai didelis. Jis nesutilps į įtaisymui skirtą erdvę                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           boot/grub/locale/nl.mo                                                                              0000600 0001750 0001750 00000316633 13417732100 0013647 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                       t     #    \G      (_  #   )_      M_     n_     _     _  $   _     _  6   _     (`     /`  	   ;`     E`     R`     r`     `     `     `  .   `  .   `  %   a     Da     Ha    Wa    \b    ac     id  7   d  F   d  v   e  +   ye     e      e     e  !   e     f  ,   (f     Uf     mf  $   f     f  *   f     f     g     	g     g     1g  
   Qg  	   \g     fg  ,   g  ,   g  ,   g  '   	h  -   1h      _h  (   h  (   h  )   h     h     i     <i     Ii     Ri  "   [i  4   ~i     i     i  7   i      j  1   	j     ;j  %   Zj  '   j  %   j  '   j     j     j     j     k     0k     Ek     Jk     \k     hk     k     k     k     k     k  3   k     l  $   l     1l     Il     bl     ql     l     l     l  -   l     l  !   m     3m     Hm     dm  #   ym     m  `   %n  Z   n     n     n     o     o     o     5o     ;o     Do     [o     yo     o     o     o     o     o     p     p     2p     @p     Wp     fp     kp     qp  %   p     p     p     p     p     q     !q     0q     Cq     Tq  *   lq  3   q     q  "   q  8   	r     Br     Tr  	   qr  #   {r     r     r     r     r     s     's  )   6s     `s     s     s  P   s     t     !t  H   6t  &   t     t     t  !   t  ,   t     u      u     $u  	   Au  !   Ku  *   mu     u     u     u     u     u  $   	v     .v     @v     Rv     mv     v     v  
   v  
   v     v  1   v     w     +w     8w     Qw  3   mw  >   w  $   w     x     x     9x     Qx     lx     x  +   x     x     x  #   y     *y     Ay  $   `y     y     y  '   y  9   y     z     6z  z   Tz     z     z  8   z     #{  
   :{     E{     R{     l{     {     (|  +   E|     q|     |     |  "   |     |     |  (   |     }     5}     A}     Q}     a}     x}  "   }  0   }     }     }     }  7   ~     9~     A~     M~     ^~     t~     ~  0   ~     ~     ~     ~     ~  2     %   >     d     y  *     6     +             4     G  !     d   :  e     d     i   j  o   Ԃ  H   D                    ǃ     ڃ          
     !  #   :     ^     |       1     )   ؄          	             /   /     _     n       5        ؅       K        _     {                           '     P        :     Y  	   e     o     r       '     +   ͇          
  )   &     P     g                    ͈       $             /     J     L     X  (   e            "     +     -             .     =     N     `  O   p          ֊                 %   '     M  )   l  !     "        ۋ       +        :     Q     a  !   s               ʌ     ֌                )     <     Z     v       4        ύ                     3     N     g             !          4     M   /  2   }          ʏ  *     8        L     Y     p            3     $     +        <     Q     _     t                     ّ                 D   &     k     r  7   z  ;               !   -     O     e  s                  .     ?     R     h                              ]          )     =     D     P     n       '     
   ǖ     Җ                              *  H   G                    ϗ  %   ޗ            #   7     [     x                     ֘        "     (   9     b  %   ~       2               #     *   7     b     d     w  #   |            	     "     ;     #      <   D                 .     	          `        g  !   |  )        Ȝ     ̜     Ҝ     ڜ  q        Y     m                         ӝ            "   &     I     a     {                    Ԟ       #        &     C  g   _     ǟ     L     f  -          !   Š       "     '     Q   C               ˡ     ߡ                     =     Z     w               Ǣ      բ                     ?     Z     n       -        ͣ       "     b     )                  ٤  ,        !     :  	   ?  "   I  %   l                      &     )          ^           $     %          ^     _     }   V     Ԩ  )     '     >   ݩ  D     !   a  '     -     #   ٪       )        G  )   d  )     ,                       9     T  E   e  $     A   Ь  )        <     Y     u                Э  q        W  :   t          ͮ     ܮ               0     F     b  0   w          Ư     ۯ  )     &        B     _     z       )        Ӱ  %     %   	  ,   /  '   \  :          -   ޱ       .        K     ]  '   r  $     "                    *        D     L  )   S  o   }            6               0          1  !   R  "   t  #             ͵            !         B  
   X     c  <   }  %     >             (     ,     2     R     k  d   ~  *     0     6   ?     v     ~                      0   ո       !        ;     Y  $   j                    ݹ       $     "   0  $   S     x                º     ׺                         5     M  '   j            $   ˻  +     "        ?  )   F     p                    ռ  '             0     M  <   a                ǽ     ڽ  m        c     ~               ˾  +     3     1   E     w  '     -        ۿ  '     '     .   4  	   c     m                                   -     H     b     }  *     ?     B     p   0       /   ,     \     q  .     O     )        0     F  	   U     _  5   }                           :   (     c     v                                             
       	        '     6     O     d     z                 
     
     	          !     )        "     6     H     h  F     N          "   )     L     Q  -   c  -     $     #     0     6   9     p     ~       (     1     )        $     3  !   J     l             %          &             4      R  7   s  .     4             ,     A     \     q  %                                 0     ?     H  ,   e                                #        ,     F  B   `                              $  &   @     g                      &                  -     =  ;   Q  V     "     &     !   .     P     g     l  /     H     F     w   J  N     (        :     V  I   b  $     '          %        8     >     R     f  $   x  '     *             
       J   1     |            -     +        !  $   '     L  "   U  +   x  J     %              -  "   N     q                                         .  %   I     o            %                       -     5  [   I       !                            *     7     J     b     x                                   #     :     L     i     y       1                  	          1     G     	  1        I  0   g            !          "        %     ;     T     g     x                                               &   $     K     g                 '     &          L   (     u       !                            ,     >     N     _     t       #     #     $               &        F  !   U     w                      	     7          %   &  [   L  w     7      K   X  #     /                  1  &   O  U   v  @     Q        _     x       +          R     L   ?  .               F             4     K     a     y                            2     !   B  #   d                                        5     T  (   r  #                         )        H     `  '   {  '     '          0        C     ^  -   |  8               !         4     U     p  .          !     B     E   2  B   x      &   o  !                    ,        5  8   M  	          
                                 3  3   ?  3   s  *               ^    8  F  \         I     ^   A       5   5     k     {                 )             '  "   ;     ^  (   y                      #     	             ,  )   I  5   s  )     &     *     $   %  '   J  '   r  (                    	     	     /   !  <   Q            4          ?     /   !  /   Q  4     /     4             #  #   %     I  !   _                 %                            (  ;   <     x  #   ~                                   5  0   Q       8     '     ,     $   + +   P    | i    j               )    +    /    F    K !   T    v %         !        $       = !   P    r                         '    "       9     P    q                 %    G    ?   _ (    2    ?       ; #   J    n ,   z #        #    *       6    P ;   f +    ,    $    U    	    v	    	 `   	 '   
    +
    E
 "   N
 H   q
    
    
    
 
   
 6   
 2   $    W    p             %            %   : &   ` "                     7   	    A    T !   f     6    F    2   %    X     k     "            8        3 )   T &   ~         -            #   ; C   _ )                +    H        	   9    C #   O #   s     !   K /   m             (           - 6   F    }                     0    =   ,    j    r     4    
                   "    1 /   :    j    }         H    /       <    Q (   f <    7    *       /    G &   ; q   b r    q   G u       / X           +    D    X    n          )    %    !       5    P 7   e 4                    /       1    @    ] B   y %    %    M    +   V     $                    )    N     $   T     y  	          %          5     +   !    0!    B! =   a!    !    !    !    !    "    ""    ;" *   U"    "    "    "    "    " <   "    
#    # /   # 7   D# 5   |#    #    #    #    $    $ ]   -$    $    $    $    $ !   $ 0   % !   G% 0   i% '   % (   %    %    & *   &&    Q&    m&    ~& %   &    & )   &    
'    ' $   /'    T'    s'    '    '    '    ' >   ' '   0(    X(    m(    (    (    (    (      ) %   !) $   G)    l) @   ) ^   ) @   ** "   k* (   * 8   * ?   *    0+    P+    o+    +    + @   + -   + *   +, "   V,    y,    ,    ,    , !   , "   ,    -    3-    H-    J- ?   b-    -    - :   - Q   - +   >. %   j. *   .    . #   . p   .    f/     /     /    /    /    /     0    0    (0    ,0    20    0    1    1    1    1 $   1    	2 %   #2 :   I2    2    2 #   2    2    2    2    2 #   3 U   *3    3 #   3    3    3 .   3    4    (4 2   B4 !   u4 .   4    4    4    4     5 ,   -5 '   Z5 $   5    5 4   5 /   5 I   $6    n6 $   v6 '   6 )   6    6    6    7 '   7    /7    57    K7 6   ^7 T   7 8   7 V   #8    z8    8    8 &   8    8    8 m   9    o9 $   9 1   9    9    9    9    9 {   :    :    :    :    :    :    :    ; "   );    L; '   k;    ;    ;    ;    ;    	<    #<    =<    W< (   n< &   < #   < w   <    Z=    = #   > /   3>    c> $   {>    > (   > $   > P   ?    T?    t?    ?    ?    ? #   ? #   ? #   @ #   4@ "   X@ "   {@    @    @ .   @    @    A !   -A    OA    oA    A #   A .   A     A j   B y   B t   B 3   pC    C    C #   C /    D    0D    OD 
   XD '   cD +   D    D    D 
   D    D .   D +   E    AE v   XE &   E 3   E 3   *F    ^F    ,G w   G    $H    H 3   I :   I E   J I   NJ '   J -   J 2   J *   !K )   LK /   vK !   K 7   K 4    L 6   5L '   lL    L "   L !   L    L M   M 4   `M J   M +   M *   N ,   7N ,   dN ,   N /   N    N |   O -   O E   O )   O    (P #   >P "   bP    P    P    P    P -   P ,   Q    BQ    YQ 0   tQ 0   Q     Q    Q    R "   (R /   KR    {R /   R /   R 6   R 1   +S C   ]S $   S 3   S    S G   T    WT    mT    T &   T $   T    T $   T    U =   .U    lU    sU 7   zU    U    NV    lV +   fW    W    W 2   W (   W (   W '   X '   FX    nX +   X "   X E   X %   Y    CY    \Y    jY B   Y 0   Y F   Y 	   BZ    LZ    PZ -   VZ    Z    Z u   Z @   .[ 3   o[ 6   [    [    [     [ "   \    @\    F\ <   a\ !   \ )   \    \    
] 7   "]    Z]    q] #   ]    ]    ] -   ]    ^    -^    E^    [^ #   s^    ^    ^    ^    ^    ^    ^    _    )_ +   H_ '   t_     _ (   _ .   _ %   ` 	   ;` 5   E`    {` .   `     `    ` '   ` 4   !a 1   Va 6   a    a 7   a !   b    9b    Ab #   Vb v   zb (   b $   c    ?c    \c    xc I   c D   c @   'd    hd &   wd 1   d    d .   d ,   e 3   :e    ne    we    e )   e )   e )   e )   (f (   Rf (   {f #   f    f    f ,   f D   g L   Yg y   g     h /   h    h    h 5   i U   Ri 7   i    i    i    j    j 4   8j    mj    j    j    j    j D   j    2k    Lk 
   ik    tk    k    k    k #   k    k     l    l 
   l 
   %l    0l    @l    Zl    wl    l    l    l    l    l    l 	   l    l %   l )   m    Am    Vm )   mm &   m Z   m M   n    gn /   |n    n    n 0   n -   n *   (o &   So .   zo 6   o    o    o    p )   #p 2   Mp 7   p    p    p %   p    
q *   (q    Sq 1   qq    q -   q    q #   
r -   .r A   \r <   r A   r 1   s    Os    hs    s %   s $   s    s %   t    ,t     Kt ,   lt    t    t #   t -   t    u    u '   4u    \u &   tu    u '   u %   u $   v P   +v    |v "   v    v    v    v    w C   *w "   nw    w    w    w    w >   w    (x $   @x    ex    zx :   x e   x .   8y -   gy #   y    y    y ,   y ?   z P   Kz Z   z    z d   { /   {    | 
   3| 7   >| *   v| +   |    | 0   |    }    %}    >}    \} 0   w} ,   } 1   }    ~    %~    ;~ G   [~ *   ~ $   ~    ~ 5    ;   >    z -            &    <    0   >    o >    @   ɀ    
         >    U    q                ؁ *            ?    ] )   z            ς         g       m $           ƃ    ݃ /           $    <    [    u         "   ʄ     +       1    L    b "   |         "   ʅ =       +    7    Q    i              M    )    V   (     "    &    "           %    B    b    {            ŉ    ۉ                3    J    b     x         &   Պ         !   1 )   S    } M       ݋      %    $   =    b $   z             Ό !    $       6     Q -   r -    ;   ΍    
    & =   >    | '           ڎ     (       & 	   D F   N     *    f   ߏ    F ?   א R       j 7           ߑ     +    Q   K C    W       9 3   Y 2    >    ,    g   , I    1   ޔ        0 X   5            ɕ             !   , %   N    t     ,       ږ            (    B "   S    v $        -   ڗ -    3   6 0   j          &   ט     7    *   Q /   | 2    /   ߙ =    /   M 2   } %    '   ֚ 2    ?   1     q     &    $   ћ 1       ( A   :    |      ?    Q    L   N                v         e        U            R       R  [  z                    /  c  H  G  [    0                          -  3    A                                       
    N         C  q   L        `  &      \      O  >      G       +                                                      q                      ~  v  I    H    '   ,    <          k   j  4          8      y   9  ,          \  t              G             F  N    I       3            M  t  5  m    O        
       l                     1  0       4       f                 (       
  U  &           .            8            b      Y   h      o        P         >  )              6   J  /      k  [      (     x                   a              b    a  f  p     =      N  9            #    <     2  k  n        .  s     P  j              )   Z   >        <      *  p    t      q    P  ,       d          W  -             }    =    Q    x            f      	         g  H          L       X        !  M  '     0           n     ~                3            9      \  >                 L          y              (  /    6  X           G              M   O   !  k  e           L     n              ^  +                        F       T             4  o  V    z  &              t      g       =           ]                     ~                 r    C  Z               2                                h  i  {   )  J      h      D  M  \                  g  X     X           %  !                                                                       (              @               i    N    x     7  [              1        '  _       .    '        	            $                                      s       *  T               E   K                                K  %                    Y        :  
                          $    -      C      _                 o  <                          m         }               %                %  W     @      &                          8    z   `       5     U  |    j  ;   Q      W  '  X               ;    a   7   c      J  )            Q    /            6  q          ?            9     B          2          Q  t     ?  0             3           {  ?  _   |                    ,            E                  6  w  :                     K          /   .             Z                      -       Y                                    x              4    #    8         ?      S      H  J                 b                        ]  k    ^   ^                          d            ]  y        ~  9        F          ;            &      }           g            W      _      i   m    l                 c        \  1          ;  p   M  D    d                 J       )  "        V                |                           l  ^  K  ,       #     v          H                    1           2      w      T         r         "   ;                        V                       b                                   [                           ?         c        V                       	        4  +    c      :   B  r              	            E          P      e  @      I  D            z               m                      A                         ^          ]   E  !                  f    g                m          {          S           I  F          a                                   (           j        V             i          B      *  o          *   5        <         R      n                 K     :               2   e  6        n                  3      v              	      {                          7  B       s    A              7                 "      i    E  u        S          u      r      T      Q                 1                  B      U   =                d      h                             -    `                                S                  p        j              :  0  !            `  w      A   D               O             A    `      Y  Z  @  U      $      L                            S  Z              >     .                                 o           u      F      l        *    7  b  5      u             I      r                      G            T           
                               @        q          e              C  +                     8        w               "      R                N      C            D                              l  Y  5    _      =                   #        p    #      O          ]       $  P    R                       y        %  a      $            h   s  +     f        s            }           d  "  W              |                   total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: option '%c%s' doesn't allow an argument
 %s: option '%s' is ambiguous; possibilities: %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File size: %s
 File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS Import ZFS wrapping key stored in FILE. Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List coreboot tables. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... M MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MODULE MODULES Mail xorriso support requests to <bug-xorriso@gnu.org>. Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Option -- switches to native xorriso command mode. Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] PUBKEY_ID Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot into firmware setup menu. Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Render Apple .disk_label. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show CBMEM console content. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show the contents of a file. Show the current mappings. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Switch to native disk drivers. If no modules are specified default set (pata,ahci,usbms,ohci,uhci,ehci) is used Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 T TARGET Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This entry can be booted by any user. This requires setting GRUB_DEFAULT=saved in %s/default/grub.\n Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. Your embedding area is unusually small.  core.img won't fit in it. Your xorriso doesn't support `--grub2-boot-info'. Some features are disabled. Please use xorriso 1.2.9 or later. Your xorriso doesn't support `--grub2-boot-info'. Your core image is too big. Boot as disk is disabled. Please use xorriso 1.2.9 or later. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `cryptomount' command fails: %s `loopback' command fails: %s `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format blocklist FILE blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s cannot compress the kernel image cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot get translator command line for path `%s': %s cannot open OS file `%s': %s cannot open `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. diskboot.img size must be %u bytes do not probe for filesystems in DEVICE domain name component is too long don't update LED state done embed FILE as an early config embed FILE as public key for signature checking embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enable ARCS (big-endian mips machines, mostly SGI) boot. Disables HFS+, APM, sparc64 and boot as disk image for i386-pc enable sparc boot. Disables HFS+, APM, ARCS and boot as disk image for i386-pc enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to get canonical path of `%s' failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification install GRUB images under the directory DIR/%s instead of the %s directory install even if problems are detected invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid block size invalid color specification `%s' invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no `/' in canonical filename no command is specified no decryption key available no network card found no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found pre-load specified modules MODULES premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory of TFTP server route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the argument `%s' requires an integer the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for label use COLOR for label background use COLOR for text use DIR as the EFI System Partition root. use FILE as font (PF2). use FILE as font for label use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub-2.00+20130519
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-05-29 13:24+0200
Last-Translator: Benno Schulenberg <benno@vertaalt.nl>
Language-Team: Dutch <vertaling@vrijschrift.org>
Language: nl
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Generator: Lokalize 1.0
Plural-Forms: nplurals=2; plural=(n != 1);
               totaal geheugen: %d KiB
     Geen voorkeursmodus aanwezig
     Voorkeursmodus: %ux%u
   EDID-controlesom is ongeldig   EDID-versie: %u.%u
   Initialiseren van video-adapter is mislukt   Geen info beschikbaar   VBE-info:   versie: %d.%d  OEM-softwarerevisie: %d.%d
      of:   (uiterst links)  (centrum)  (uiterst rechts)  - Partitie begint op %llu%sKiB  - Sectorgrootte is %uB  - Totale grootte is %llu%sKiB  - Totale grootte is onbekend  [OPTIE...] %.*s: Parameter in ARGP_HELP_FMT moet positief zijn %.*s: Parameter in ARGP_HELP_FMT vereist een waarde %.*s: Onbekende parameter in ARGP_HELP_FMT %ds Nog %d seconden. %s blijkt een %s-bestandssysteem te bevatten waarvan bekend is dat er geen ruimte voor DOS-achtig opstarten wordt gereserveerd.  Installeren van GRUB daarin kan VERNIELING VAN HET BESTANDSSYSTEEM tot gevolg hebben als waardevolle gegevens worden overschreven door grub-setup.  (Optie '--skip-fs-probe' schakelt deze controle uit, op uw eigen risico.) %s blijkt een %s-partitietabel én een LDM te bevatten; dit is geen veilige combinatie.  Installeren van GRUB daarin kan VERNIELING VAN HET BESTANDSSYSTEEM tot gevolg hebben als waardevolle gegevens overschreven worden door 'grub-setup'.  (Optie '--skip-fs-probe' schakelt deze controle uit, op uw eigen risico.) %s blijkt een %s-partitietabel te bevatten waarvan bekend is dat er geen ruimte voor DOS-achtig opstarten wordt gereserveerd.  Installeren van GRUB daarin kan VERNIELING VAN HET BESTANDSSYSTEEM tot gevolg hebben als waardevolle gegevens worden overschreven door grub-setup.  (Optie '--skip-fs-probe' schakelt deze controle uit, op uw eigen risico.) %s ondersteunt geen UUID's %s genereert een toetsenbordindeling voor GRUB met behulp van 'ckbcomp'\n %s wordt afgeraden. Gebruik in plaats daarvan 'set gfxpayload=%s' vóór de 'linux'-opdracht.
 %s wordt afgeraden. VGA-modus %d wordt niet herkend. Gebruik in plaats daarvan 'set gfxpayload=BREEDTExHOOGTE[xDIEPTE]' vóór de 'linux'-opdracht.
 %s wordt nog niet ondersteund door 'grub-mkconfig'.\n %s, met Hurd %s %s, met Hurd %s (herstelmodus) %s, met Linux %s %s, met Linux %s (herstelmodus) %s, met Xen %s en Linux %s %s, met Xen %s en Linux %s (herstelmodus) %s, met Xen-hypervisor %s, met kFreeBSD %s %s, met kFreeBSD %s (herstelmodus) %s, met kernel %s (via %s) %s, met kernel %s (via %s, herstelmodus) %s: NIET-OVEREENKOMENDE HASH
 %s: OK
 %s: LEESFOUT
 %s: Te veel argumenten
 %s: U moet dit uitvoeren als root\n %s: fout: %s: informatie: %s: ongeldige optie -- '%c'
 %s: optie '%c%s' staat geen argument toe
 %s: optie '%s' is niet eenduidig; mogelijkheden zijn: %s: optie '--%s' staat geen argument toe
 %s: optie '--%s' vereist een argument
 %s: optie '-W %s' staat geen argument toe
 %s: optie '-W %s' is niet eenduidig
 %s: optie '-W %s' vereist een argument
 %s: optie vereist een argument -- '%c'
 %s: optie vereist een argument -- '%s'\n %s: onbekende optie '%c%s'
 %s: onbekende optie '--%s'
 %s: waarschuwing: (32-bits) (64-bits) **Interne programmafout**: geen versie bekend!? **Interne programmafout**: optie had herkend moeten worden!? (op %s) - Label "%s" - Laatst gewijzigd op %d-%02d-%02d %02d:%02d:%02d %s --Meer-- -h HASH [-c BESTAND [-p VOORVOEGSEL]] [BESTAND1 [BESTAND2 ...]] -l | -r | [-s] GRUBAPPARAAT BEHEERSYSTEEMSCHIJF 16-bits beveiligde interface wordt ondersteund
 16-bits beveiligde interface wordt niet ondersteund
 32-bits beveiligde interface wordt ondersteund
 32-bits beveiligde interface wordt niet ondersteund
 =WAARDE > door ACPI gebruikte persistente RAM herbruikbare ACPI-RAM uitschakeling via ACPI is mislukt ADRES ADRES WAARDE [MASKER] ADRES [GROOTTE] ADRES1,MASKER1[,ADRES2,MASKER2[,...]] ADRES DNS-SERVER APM is uitgeschakeld
 APM wordt niet gebruikt
 APM is ingeschakeld
 APM wordt gebruikt
 ARGP_HELP_FMT: waarde voor '%s' is kleiner of gelijk aan %s ASCII DOS-regeleinden (CR+LF) accepteren. Actieve invoerterminals: Actieve uitvoerterminals: Adapter '%s':
 Een DNS-server toevoegen Een netwerkadres toevoegen. Een netwerkroute toevoegen. Geavanceerde opties voor %s Geavanceerde opties voor %s (met Xen-hypervisor) Afbreken met ESC toestaan. Vragen om naam van bestand waarvan herstart moet worden. Aannemen dat de invoer hexadecimaal is. Aannemen dat de invoer een wachtwoordzin is. Aannemen dat de invoer onbewerkt is. Poging tot ontsleutelen van hoofdsleutel... Poging om GRUB op een schijf te installeren met meerdere partitielabels of met zowel partitielabel als een bestandssysteem.  Dit wordt nog niet ondersteund. Poging om GRUB op een schijf te installeren met meerdere partitielabels.  Dit wordt nog niet ondersteund. Poging om GRUB op een schijf zonder partities te installeren, of op een partitie.  Dit is een SLECHT idee. Beschikbare invoerterminals: Beschikbare uitvoerterminals: B B/s BIOS-DUMP [INT10-DUMP] BLOK BYTE:BIT Modus voor achtergrondafbeelding. Basismap voor hash-lijst. Een BIOS-gebaseerd systeem opstarten. Een besturingssysteem opstarten. Opstarten in ééngebruikermodus. Opstarten met debug-meldingen. Opstarten met uitgebreide meldingen. Opstarten van '%s' Opstarten van een opdrachtenlijst Opstarten in blinde modus. Opstartpad: %s
 Opstartpad: (niet beschikbaar)
 In GDB inbreken CGA  KLEUR OPDRACHT [ARGUMENTEN] 'CPU Idle' vertraagt de processor niet
 'CPU Idle' vertraagt de processor
 CS5536 is op %d:%d.%d
 Kan ROM-gebied niet inschakelen. Ingestelde apparaten wijzigen. Partitietype wijzigen Alt-toets controleren. Control-toets controleren. Shift-toets controleren. Beschikbare CPU-functies achterhalen. Hashes van bestanden controleren aan de hand van dit hash-lijstbestand. Controleren of de CPU 64-bits ("lang") ondersteunt (standaard). Toestand van toetsaanpasser controleren. Controleren of gebruiker in GEBRUIKERSLIJST staat. Controleert een GRUB-scriptconfiguratiebestand op syntaxfouten. Scherm wissen. De 'actief'-vlag op %d is gewist. 
 Opdrachten: BESTAND met lokaal bestand DEZE vergelijken. Bestand '%s' vergelijken met '%s':
 Twee bestanden vergelijken. De XNU-UUID van APPARAAT berekenen. Hash-controlesom berekenen of controleren. Seriële poort instellen. Doorgaan met een lus. Gewone indelingen van lettertypebestanden omzetten naar PF2 BESTAND naar lokaal bestand DEZE kopiëren. Dit BESTAND naar standaarduitvoer kopiëren. Kan FPSWA-stuurprogramma niet vinden Kan fysiek volumen '%s' niet vinden.  Mogelijk ontbreken er modules in de core-image. Kan sha256 niet laden Kan sha512 niet laden BIOS-achtige structuren aanmaken voor terugwaartse compatibiliteit met bestaande beheersystemen. Een leeg omgevingsblokbestand aanmaken. Huidige 'terminfo'-types: APPARAAT APPARAAT [PARTITIE[+/-[TYPE]]] ... APPARAAT moet een besturingssyssteemnaam hebben (bijvoorbeeld /dev/sda). APPARAATNAAM MAP MAP [OSBundleRequired] DNS-SERVER Debug-gereedschap voor bestandssysteem-stuurprogramma. Geheugengebieden als slecht ('badram') declareren. Decompressor is te groot Een menu-item definiëren. Een submenu definiëren. Een netwerkadres verwijderen. Een netwerkroute verwijderen. Het gegeven lus-apparaat verwijderen. Variabelen verwijderen. Stuurprogramma achterhalen. UUID van bestandssysteem achterhalen. Label van bestandssysteem achterhalen. Soort bestandssysteem achterhalen. Soort partitietabel achterhalen. Apparaat %s: Apparaat-ID: %s
 Apparaat-ID: (niet beschikbaar) Direct-color, masker: %d/%d/%d/%d  positie: %d/%d/%d/%d ACPI uitschakelen. SMP uitschakelen. Alle opstartuitvoer onderdrukken. SMART in-/uitschakelen  (1/0). Onjuist geneste partitie (%s,%s,%s%d) wordt weggelaten Schijfcache-statistieken: treffers = %lu (%lu.%02lu%%), missers = %lu
 Schijvenaantal moet voorafgaan aan schijvenlijst.
 FPSWA-versie tonen SMART-gezondheidstoestand tonen. Een regel tekst tonen. De blokkenlijst van BESTAND tonen. Uitvoer op alle consoles tonen. Energiemodus tonen. Gebruikssamenvatting van deze opdracht tonen en stoppen. Deze hulptekst tonen en stoppen. De huidige datum en tijd tonen/instellen. Het laatste regeleinde niet weergeven. Geen meldingen tonen. Geen floppy-apparaten polsen. Geen APM gebruiken om de computer te stoppen. Niets doen, met succes. Niets doen, met mislukking. Geen diagnostische meldingen tonen. Host-tabellen die bestaan uit een kommagescheiden lijst niet laden. Niet herstarten, computer alleen stoppen. Niet stoppen na de eerste fout. EBDA niet bijwerken. Dit kan storingen en vastlopers op sommige BIOS'en verhelpen, maar maakt het functieloos bij besturingssystemen die geen RSDP van GRUB ontvangen. OMGEVINGSVARIABELE OMGEVINGSVARIABELE [OMGEVINGSVARIABELE ...] FOUT: Geen geldige toetsenbordindeling gevonden.  Controleer de invoer.
 ESC annuleert op elk moment. EXPRESSIE EXPRESSIE ] Verstreken tijd: %d.%03d seconden 
 Verstreken tijd: %d.%03d seconden 
 Inbedden is niet mogelijk.  GRUB kan in deze configuratie alleen worden geïnstalleerd met bloklijsten.  Bloklijsten zijn echter ONBETROUWBAAR en het gebruik ervan wordt ontraden. Een reeks toetsaanslagen emuleren Verwerking van 'backslash escapes' inschakelen. Voer ZFS-wachtwoord in:  KDB binnengaan bij opstarten. Op normale modus overgaan. Voer wachtwoordzin in voor %s%s%s (%s):  Voer wachtwoord in:  Voer gebruikersnaam in:  Fout tijdens ontleden van de opdrachtregelargumenten.
 Een expressie evalueren. Afsluiten is mislukt GRUB verlaten. Een lus verlaten. Normale modus verlaten. Variabelen exporteren. Versie-1-tabellen naar beheersysteem exporteren. Versie-2- en versie-3-tabellen naar beheersysteem exporteren. BESTAND BESTAND [ARGUMENT...] BESTAND [ARGUMENT...] BESTAND | TEMPO [HOOGTE1 DUUR1 [HOOGTE2 DUUR2] ...]  BESTAND... BESTAND1 BESTAND2 BESTANDSNAAM OPDRACHT BESTANDSSYSTEEM [VARIABELE] BESTAND|prompt INDELING Het FPSWA-protocol kan de interface niet vinden FPSWA-revisie: %x
 VAN-TOT[,VAN-TOT] VAN[K|M|G] TOT[K|M|G] FT_Init_FreeType() is mislukt Het opstarten van zowel het standaard- als het terugvalitem is mislukt.
 Aanmaken van apparaattoewijzingsboom is mislukt Terugvallend op '%s' Bestandsgrootte: %s
 Bestandssysteem '%s' kent geen inbedding Bestanden verschillen op positie %llu: 0x%x [%s], 0x%x [%s]
 Bestanden verschillen in grootte: %llu [%s], %llu [%s]
 Toegang tot bestandssysteem is onmogelijk. Bestandssysteemsoort %s Hybride MBR van GPT-APPARAAT vullen.  Opgegeven partities zullen onderdeel zijn van de hybride MBR.  Maximaal drie partities zijn toegestaan.  TYPE is een MBR-soort; + betekent dat de partitie actief is; slechts één partitie kan actief zijn. Het laden van de EFI-emulator afmaken. Eerst apparaat HINT proberen, wanneer draaiend op ARC.  Als HINT eindigt op een komma, ook subpartities proberen. Eerst apparaat HINT proberen, wanneer draaiend op BIOS.  Als HINT eindigt op een komma, ook subpartities proberen. Eerst apparaat HINT proberen, wanneer draaiend op EFI.  Als HINT eindigt op een komma, ook subpartities proberen. Eerst apparaat HINT proberen, wanneer draaiend op IEE1275.  Als HINT eindigt op een komma, ook subpartities proberen. Eerst apparaat HINT proberen wanneer directe hardwaretoegang ondersteund wordt.  Als HINT eindigt op een komma, ook subpartities proberen. Eerst apparaat HINT proberen.  Als HINT eindigt op een komma, ook subpartities proberen. Videoprobleem oplossen. %s gevonden op %s (%s)\n %s gevonden op %s\n GNU Mach gevonden: %s Hurd-module gevonden: %s Kernel van NetBSD gevonden: %s\n Gevonden achtergrond: %s\n Initiële RAM-schijf-image gevonden: %s\n Map voor kernelmodules gevonden: %s\n Kernel van FreeBSD gevonden: %s\n Linux-image gevonden: %s\n Gevonden thema: %s\n Freetype-fout %d bij laden van glyph 0x%x voor U+0x%x%s ATA-beveiligingsinstellingen bevriezen tot herstart. vrijdag G GNU GRUB  versie %s GRUB Opstartmenu GRUB weet nog niet hoe deze machine te stoppen! GRUB-emulator. GRUB-APPARAAT=PLAN9-APPARAAT Rommel in ARGP_HELP_FMT: %s Een GRUB-toetsenbordindeling genereren vanuit Linux-console één. Een PBKDF2-wachtwoord-hash genereren. Een GRUB-configuratiebestand aanmaken Een complete image (inclusief alle modules) genereren in de gekozen indeling. De CRC32-controlesom van BESTAND berekenen. Schijfcache-informatie ophalen. ATA-schijfparameters tonen/instellen GiB GiB/s HASH HINT Het systeem stoppen, zo mogelijk met APM. Stopt de computer.  Deze opdracht werkt niet met alle firmware-implementaties. N bytes in uitvoerbestand verwerken. Hallo wereld Hercules  ID IMAGE1 [IMAGE2 ...] AANKOPPELINGSPUNT IMAGE-PAD OPDRACHTEN De ZFS-inpaksleutel opgeslagen in BESTAND importeren. Onjuist virtueel apparaat: geen type bekend Een module laden. GRUB installeren op uw schijf. Installatie is afgerond. Er werden geen fouten gerapporteerd. Ongeldige terugverwijzing Ongeldige tekenklassenaam Ongeldig samengesteld teken Ongeldige opdracht: %s.
 Ongeldige inhoud van \{\} Ongeldig apparaat '%s'.
 Ongeldig schijvenaantal.
 Ongeldige voorafgaande reguliere expressie Ongeldig bereikeinde Ongeldige reguliere expressie K KERNEL ARGUMENTEN TOETS Toetsenbordtoets waarmee dit item direct gestart kan worden. KiB KiB/s Feitelijk virtueel apparaat (bestand of schijf) Verouderde parameter 'ask' wordt niet meer ondersteund. Legenda: masker/positie=rood/groen/blauw/gereserveerd Lengte van gegenereerde hash Lengte van startwaarde ('salt') DNS-servers tonen. PCI-apparaten tonen. Alle bestanden tonen. Beschikbare videomodi tonen.  Als een resolutie gegeven is, alleen overeenkomende modi tonen. De coreboot-tabellen tonen. Apparaten en bestanden tonen. Apparaten of bestanden tonen. Apparaten tonen. De bestanden in de map PAD tonen. Geheugentoewijzing geleverd door firmware tonen. Lijst van ondersteunde videomodi: Lijst van gebruikers die dit item mogen starten. Een invoerterminal tonen of selecteren. Een uitvoerterminal tonen of selecteren. De huidige variabelen tonen. De geladen lettertypes tonen. Variabelen uit omgevingsblokbestand tonen. Een 64-bit XNU-image laden. BIOS-dump laden. Een FreeBSD-omgeving laden. Een FreeBSD-kernelmodule (ELF) laden. Een FreeBSD-kernelmodule laden. Het kernel.sys-bestand van FreeDOS laden. Linux laden. NTLDR of BootMGR laden. Een NetBSD-kernelmodule (ELF) laden. Een NetBSD-kernelmodule laden. Een Plan9-kernel laden. Een XNU-extensiemap laden. Een XNU-extensiepakket laden. Een XNU-extensie laden. Een XNU-image laden. Een XNU-RAM-schijf laden.  Het zal beschikbaar zijn als 'md0'. Een dump van 'device-properties' laden. Een PXE-image laden. Een toetsenbordindeling laden. Een multiboot-2-kernel laden. Een multiboot-2-module laden. Een multiboot-kernel laden. Een multiboot-module laden. Een XNU-splash-afbeelding laden. Een image van een slapende XNU laden. EFI-emulator laden en initialiseren. Een andere boot-loader laden. Nog een configuratiebestand laden, maar alleen menu-items nemen. Nog een configuratiebestand laden zonder de context te wijzigen, maar alleen menu-items nemen. Nog een configuratiebestand laden zonder de context te wijzigen. Nog een configuratiebestand laden. Een andere payload van 'coreboot' laden. De achtergrondafbeelding voor de actieve terminal laden. Host-ACPI-tabellen laden, en tabellen opgegeven via argumenten. Een initiële RAM-schijf laden. Een kOpenBSD-RAM-schijf laden. Een FreeBSD-kernel laden. Een NetBSD-kernel laden. Een OpenBSD-kernel laden. Alleen tabellen die bestaan uit een kommagescheiden lijst laden. Hetzelfde bestand op meerdere manieren laden. Variabelen uit omgevingsblokbestand laden. De ZFS-versleutelingsleutel laden. Geladen lettertypes: Laden van GNU Mach... Laden van Linux %s... Laden van Xen %s... Laden van initiële RAM-schijf... Laden van kernel van FreeBSD %s... Laden van kernel van Illumos... Laden van de Hurd... M MAC-controle is mislukt MENU-ITEM is het nummer, de titel, of het ID van een menu-item. MODULE MODULES Stuur hulpvragen over 'xorriso' aan <bug-xorriso@gnu.org>. Een opstartbare GRUB-image maken voor CD-rom, USB-stick, harde schijf, en floppy. Een GRUB-toetsenbordindelingsbestand maken. Een opstartbare image maken van GRUB. Van een bestand een virtuele schijf maken. Partitie actief maken De BIOS-schijftoewijzingen beheren. Een argument dat verplicht of optioneel is voor een lange optie,
is dat ook voor de overeenkomstige korte optie. PCI-apparaten manipuleren. De tijd meten die OPDRACHT duurt Onvoldoende geheugen beschikbaar Geheugentype: DDR2. Geheugentype: (onbekend). Menu-itemnaam. Geen menu-item gegeven. Menu-itemsoort. MiB MiB/s Minimale Bash-achtige regelbewerking is mogelijk.  Voor het eerste woord toont TAB de mogelijke opdrachten.  Elders toont TAB de mogelijke apparaten of bestanden.  %s Minimale Emacs-achtige tekstbewerking is mogelijk.  TAB toont de mogelijke completeringen.  Druk op Ctrl-x of F10 om op te starten, Ctrl-c of F2 voor een opdrachtregel, of ESC voor het vorige menu. Ontbrekende argumenten
 Invoerbestand ontbreekt
 maandag Monochroom  Meer dan één installatie-apparaat? Meer dan één menu-item? Een versleuteld apparaat aankoppelen. Alle volumens aankoppelen die 'opstart'-vlag gezet hebben. Alles aankoppelen. Aankoppelen via UUID. Versleutelde apparaten aankoppelen. NAAM NAAM [VARIABELE] [HINTS] NUMMER AANTAL_SECONDEN Naam	Verwijzingen	Afhankelijkheden
 De eigen schijfstuurprogramma's worden gebruikt.  De firmware-interface is afgewezen. Netwerkprotocollen: Nieuwe MBR is geschreven naar '%s'
 Geen CS5536 gevonden Geen FPSWA gevonden Er zijn geen opstart-statistieken beschikbaar
 Geen opdracht gegeven.
 Geen apparaat opgegeven.
 Er zijn geen schijfcache-statistieken beschikbaar
 Er zijn geen schijven herverwezen Er is geen bekend bestandssysteem gedetecteerd Geen overeenkomsten Geen pad gegeven.
 Geen pad of apparaat gegeven.
 Geen eerdere reguliere expressie Er is geen virtueleapparatenboom beschikbaar Te weinig parameters voor de opdracht.
 Sluit nu de debugger op afstand aan. Aantal PBKDF2-iteraties beheersyteemschijfnummer ------> GRUB-/BIOS-apparaat beheersysteemfout bij openen van bestand %s: %s Optie '--' schakelt over naar de standaard opdrachtenmodus van 'xorriso'. Opties: Het gezochte valt buiten bereik: %d
 Vervanging valt buiten bereik (%d, %d)
 Een Plan9-apparaatovereenkomst aanpassen. P PARTITIE OPDRACHTEN PAD de PBKDF2-hash van uw wachtwoord is %s
 POORT POORT WAARDE [MASKER] PUBLIEKESLEUTEL-ID Een verouderde configuratie ontleden in nieuwe context Een verouderde configuratie ontleden in nieuwe context, maar alleen menu-items nemen Een verouderde configuratie ontleden in dezelfde context Een verouderde configuratie ontleden in dezelfde context, maar alleen menu-items nemen Onderdeelnummer: %s.
 Partitie %d is nu actief. 
 Partitie %s: Partitiestijl '%s' kent geen inbedding Pad: %s
 Pad: (niet beschikbaar) Voert OPDRACHTEN uit op partitie.
Gebruik 'parttool PARTITIE help' voor een lijst van beschikbare opdrachten. Een DNS-lookup uitvoeren Een IPv6-autoconfiguratie uitvoeren. Zowel directe als inverse verwijzingen uitvoeren. PiB PiB/s Planar  Een deuntje afspelen. Gebruik niet de oude titel '%s' voor GRUB_DEFAULT; gebruik of '%s' (voor versies vóór 2.00) of '%s' (voor 2.00 of later). Pool-GUID: %016llx
 Pool-GUID: (niet beschikbaar) Pool-naam: %s
 Pool-naam: (niet beschikbaar) Pool-status: actief Pool-status: vernietigd Pool-status: geëxporteerd Pool-status: niveau-2 ARC-apparaat Pool-status: potentieel actief Pool-status: gereserveerd als vervanger Pool-status: (niet beschikbaar) Pool-status: ongeïnitialiseerd Mogelijke argumenten zijn: Mogelijke opdrachten zijn: Mogelijke apparaten zijn: Mogelijke bestanden zijn: Mogelijke partities zijn: Mogelijke dingen zijn: Voortijdig einde van reguliere expressie Druk op een toets om verder te gaan... Druk op een toets om XNU te starten Druk op Enter om het geselecteerde systeem te starten, 'e' om de opdrachten te bewerken, of 'c' voor een opdrachtregel. Druk op Enter om het geselecteerde systeem te starten, 'e' om de opdrachten te bewerken, of 'c' voor een opdrachtregel.  Druk op ESC voor het vorige menu. Geheugeninformatie tonen. ZFS-informatie tonen over APPARAAT. Het ZFS-BOOTFSOBJ tonen of opslaan in VARIABELE Een blokkenlijst tonen. Een blokargument tonen en uitvoeren. Een backtrace tonen. Schijfidentiteit en -instellingen tonen. Grootten in leesbare vorm weergeven. Naar apparaatinformatie zoeken voor een gegeven pad (of apparaat met optie '-d') RAM die coreboot-tabellen bevat RAM die firmware bevat RAM-sleufnummer %d
 REGEXP TEKENREEKS ROM-image is aanwezig. Een 16-bits waarde lezen van ADRES. Een 16-bits waarde lezen uit POORT. Een 32-bits waarde lezen van ADRES. Een 32-bits waarde lezen uit POORT. Een 8-bits waarde lezen van ADRES. Een 8-bits waarde lezen uit POORT. Dit aantal bytes lezen. Herstarten is mislukt Herstarten naar instellingenmenu van firmware. Computer herstarten. Voer wachtwoord opnieuw in:  Register %x van %x:%02x.%x is %x
 Reguliere expressie is te groot Een DNS-server verwijderen Een module verwijderen. Een omgevingsvariabele verwijderen. Geheugengebieden in deze bereiken verwijderen. Een Apple .disk_label weergeven. Rapporteer gebreken in het programma aan %s;
meld fouten in de vertaling aan <vertaling@vrijschrift.org>.
 Rapporteer gebreken in het programma aan <bug-grub@gnu.org>;
meld fouten in de vertaling aan <vertaling@vrijschrift.org>. Een seriële terminal werd verzocht maar GRUB_SERIAL_COMMAND is niet gegeven.  Standaard parameters worden gebruikt. Alle verwijzingen op de standaardwaarden instellen. Apparaatinformatie ophalen. Terugkeren uit een functie. Naar de IEEE1275-prompt terugkeren. Voer 'gdb %s %d' uit, en zet ARGS.HOLD op nul.
 Typ 'go' om GRUB te hervatten. SECONDEN KORTE-NAAM KORTE-NAAM KAART ADRES [HARDWARE-ADRES] KORTE-NAAM NETWERK [INTERFACE | gw GATEWAY] GROOTTE BRON|-u UUID|-a|-b TEKENREEKS zaterdag Ingelezen waarde in variabele VARNAAM opslaan. Variabelen in omgevingsblokbestand opslaan. "Hallo wereld" melden. Apparaten op UUID zoeken.  Als VARIABELE opgegeven is, wordt de naam van het eerstgevonden apparaat daaraan toegekend. Apparaten zoeken aan hand van bestand. Apparaten zoeken aan hand van bestandssysteem-UUID. Apparaten zoeken aan hand van bestandssysteemlabel. Apparaten op bestand, label of UUID zoeken.  Als '--set' gegeven is, dan wordt het eerstgevonden apparaat toegekend aan een variabele; als geen variabelenaam gegeven is, dan wordt hiervoor 'root' gebruikt. Apparaten doorzoeken naar bestand.  Als VARIABELE opgegeven is, wordt de naam van het eerstgevonden apparaat daaraan toegekend. Apparaten op label zoeken.  Als VARIABELE opgegeven is, wordt de naam van het eerstgevonden apparaat daaraan toegekend. Sector %llu wordt reeds gebruikt door de RAID-controller '%s'; de sector wordt ontweken.  Vraag de fabrikant om geen gegevens in het MBR-gat op te slaan. Sector %llu wordt reeds gebruikt door het programma '%s'; de sector wordt ontweken.  Deze software kan in de toekomst (opstart-)problemen veroorzaken.  Vraag de auteurs om geen gegevens in het opstartspoor op te slaan. Apparaat selecteren via de positie ervan op de bus. Apparaat selecteren via ID's van producent en/of apparaat. Advanced Power Management instellen
(1=laag, ..., 254=hoog, 255=uit). Automatic Acoustic Management instellen
(0=uit, 128=stil, ..., 254=snel). OEMID van RSDP, XSDT en RSDT instellen. OEMTABLE-ID van RSDP, XSDT en RSDT instellen. OEMTABLE-revisie van RSDP, XSDT en RSDT instellen. De 'verborgen'-vlag in partitietype zetten De afsluitwaarde aan variabele toekennen. Eerstgevonden apparaat aan variabele toekennen. Een omgevingsvariabele instellen. De achtergrondkleur voor de actieve terminal instellen. Het 'creator'-veld van RSDP, XSDT en RSDT instellen. De 'creator'-revisie van RSDP, XSDT en RSDT instellen. Een debug-omgevingsvariabele instellen. Schijf in slaaptoestand zetten. Schijf in standby-toestand zetten. Positionele parameters instellen. Root-apparaat instellen. Standby-wachttijd instellen
(0=uit, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Het 'terminfo'-type van TERMINAL op TYPE instellen.
 Het standaardmenu-item voor GRUB instellen, alleen voor de volgende start. Het standaardmenu-item voor GRUB instellen. Het adres van de seriële poort instellen. De pariteit van de seriële poort instellen. De snelheid van de seriële poort instellen. De stopbits van de seriële poort instellen. De woordlengte van de seriële poort instellen. De seriële eenheid instellen. Images instellen om op te starten vanaf APPARAAT.

Dit programma gebruikt u normaliter niet direct.  Gebruik 'grub-install'. Gebruikerswachtwoord instellen (met PBKDF2).  Gebruikerswachtwoord instellen (platte tekst). Afgeraden en onveilig. Variabele met gebruikersinvoer instellen. Variabelen instellen. Instellen van partitietype op 0x%x
 Positionele parameters opschuiven. ACPI-informatie tonen. APM-informatie tonen. Inhoud van CBMEM-console tonen. Een hulptekst tonen. Een lijst met uitgebreidere informatie tonen. De inhoud van BESTAND in hexadecimaal tonen. Geladen modules tonen. Inhoud van geheugen tonen. Onbewerkte inhoud van ATA IDENTIFY-sector tonen. Onbewerkte inhoud van bestand of geheugen tonen. De inhoud van een bestand tonen. De huidige verwijzingen tonen. Deze tekst tonen. Alleen de versie-1-tabellen tonen. Alleen de versie-2- en versie-3-tabellen tonen. Uitschakeling is mislukt Een 'initrd'-opdracht van grub-legacy simuleren Een 'kernel'-opdracht van grub-legacy simuleren Een 'modulenounzip'-opdracht van grub-legacy simuleren Een 'password'-opdracht van grub-legacy simuleren Een 'password'-opdracht van grub-legacy in menu-itemmodus simuleren N bytes in uitvoerbestand overslaan. Dit aantal bytes vanaf begin van bestand overslaan. Sleuf %d is geopend
 Enige Hurd-dingen zijn gevonden, maar niet genoeg om te kunnen starten. Bestandsnaam opgeven. Te gebruiken hash. Te laden lettertypebestanden. Grootte opgeven voor elke leesoperatie Te gebruiken aantal invoerbestanden. Snelheid: %s
 GDB-stub starten op de gegeven poort GDB-stub stoppen Overeenkomende component (met dit NUMMER) opslaan in VARNAAM. Gelukt zondag Gewone uitvoer onderdrukken (maar waarschuwingen niet). Naar originele schijfstuurprogramma's overschakelen. Als er geen modules gegeven zijn, dan wordt de standaardset (pata,ahci,usbms,ohci,uhci,ehci) gebruikt. Syntaxfout in regelnummer %u
 Er zijn syntaxfouten gevonden in het aangemaakte GRUB-configuratiebestand.
Verzeker u ervan dat er geen fouten zitten in het bestand /etc/default/grub
noch in de bestanden in /etc/grub.d/.  Rapporteer anders een fout, met het
bestand %s als bijlage. I/O-ruimte van SMBus-controller is op 0x%x
 T DOEL Doelindeling is niet gegeven (gebruik optie '-O'). De terminal heeft de gegeven afmetingen. De terminal is alleen-ASCII [standaard]. De terminal is logisch-geordende UTF-8. De terminal is visueel-geordende UTF-8. USB-ondersteuning testen. Een bit testen op positie BYTE:BIT in CMOS. Leessnelheid van bestanden testen. Controleren of reguliere expressie REGEXP overeenkomt met TEKENREEKS. Video-subsysteem testen in modus BxH. Video-subsysteem testen. Alleen tekst  De bestanden zijn identiek.
 Over %d seconden wordt het geselecteerde item automatisch gestart. Dit item kan gestart worden door elke gebruiker. Dit vereist het instellen van GRUB_DEFAULT=saved in %s/default/grub.\n donderdag TiB TiB/s Gereedschap om omgevingsblok mee te bewerken. Totale flash-grootte: %d B.
 Backslash aan het eind Een 64-bit UUID geschikt maken voor XNU.  Als optie '-l' gegeven is, dan alleen in kleine letters zoals 'blkid' doet. Een bestandsnaam uit het systeem omzetten naar eentje voor GRUB. Vertaalt de tekenreeks met de huidige instellingen. Typ '%s --help' of '%s --usage' voor meer informatie.
 dinsdag GEBRUIKERSNAAM WACHTWOORD GEBRUIKERSNAAM PBKDF2-WACHTWOORD GEBRUIKERSNAAM[,GEBRUIKERSNAAM...] UTF-8 Kan geen pijp aanmaken: %s Kan uw platform niet achterhalen.  Gebruik optie '--target'. Kan geen nieuw proces starten: %s Kan gegevensstroom uit %s niet openen: %s Kan pool-status niet verkrijgen Gegevens decomprimeren. Bestand decomprimeren vóór berekenen van controlesom. Onbekend adrestype %d
 Opdracht '%s' is onbekend.
 Onbekende compressiespecificatie %s (onbekende codering) Onbekend extra argument '%s'. Onbekende 'gsub'-lettertypefunctie 0x%x (%s)
 Onbekende scancode 0x%02x
 Onbekende toetsnaam %s
 Onbekende systeemfout (onbekende videomodus)  Onbekend virtueel apparaattype: %s
 De EFI-emulator de-activeren. Ongepaarde ( of \( Ongepaarde ) of \) Ongepaarde [ of [^ Ongepaarde \{ Onbekende optie '%s'\n Onbekende pool-status Niet-ondersteund adrestype %d
 Niet-ondersteunde dekkingsspecificatie: %d
 Niet-ondersteund hardware-adrestype %d
 Niet-ondersteunde image-indeling Niet-ondersteunde vervangingsvlag: 0x%x
 Niet-ondersteunde vervangingsspecificatie: %d
 Niet-ondersteund vervangingstype: %d
 Gebruik:  Gebruik:  %s -o UITVOERBESTAND CKBMAP-ARGUMENTEN...\n Gebruik:  %s APPARAAT
 Gebruik:  %s [INVOERBESTAND [UITVOERBESTAND]]
 Gebruik:  %s [OPTIE] MENU-ITEM\n Gebruik:  %s [OPTIE]\n Een CD-ROM als root-apparaat gebruiken. GDB-debugger op afstand gebruiken in plaats van DDB. Deze TEKENREEKS gebruiken als body van menu-item. Het bij compilatie aangegeven root-apparaat gebruiken. Een seriële console gebruiken. Gebruik de %C- en %C-toetsen om een item te selecteren. VAR INTERFACE NUMMER OMSCHRIJVING VARNAAM Uitgebreid aftellen. Een losse vingerafdruk controleren. Versie %u.%u
32-bit CS = 0x%x, lengte = 0x%x, positie = 0x%x
16-bit CS = 0x%x, lengte = 0x%x
DS = 0x%x, lengte = 0x%x
 Virtueel apparaat is beperkt functioneel Virtueel apparaat is in fouttoestand Virtueel apparaat is offline Virtueel apparaat is online Virtueel apparaat is verwijderd WAARSCHUWING: er zal geen console beschikbaar zijn voor het beheersysteem WAARSCHUWING: er werd geen platformspecifieke installatie uitgevoerd WAARSCHUWING: niet-ondersteunde lettertypefunctieparameters: %x
 BREEDTExHOOGTE Een opgegeven aantal seconden wachten. Op een toetsaanslag wachten na elke uitvoerregel. Waarschuwing: Waarschuwing: ongeldige achtergrondkleur '%s'
 Waarschuwing: ongeldige voorgrondkleur '%s'
 Waarschuwing: syntaxfout (ontbrekende '/') in '%s'
 woensdag Windows NT/2000/XP (lader) Windows Vista/7 (lader) Deze 16-bits WAARDE schrijven naar ADRES. Deze 16-bits WAARDE schrijven naar POORT. Deze 32-bits WAARDE schrijven naar ADRES. Deze 32-bits WAARDE schrijven naar POORT. Deze 8-bits WAARDE schrijven naar ADRES. Deze 8-bits WAARDE schrijven naar POORT. Aantal geschreven SPD-bytes: %d B.
 Xen-hypervisor, versie %s YUV  U dient ten minste één opdracht te geven.
 U zult 'SystemPartition' en 'OSLoader' met de hand moeten instellen. Uw inbeddingsruimte is ongebruikelijk klein; core.img zal er niet in passen. Uw 'xorriso' ondersteunt '--grub2-boot-info' niet. Sommige functies zijn uitgeschakeld. Gebruik xorriso-1.2.9 of nieuwer. Uw 'xorriso' ondersteunt '--grub2-boot-info' niet. Uw core-image is te groot. Opstarten als schijf is uitgeschakeld. Gebruik xorriso-1.2.9 of nieuwer. [--append|--remove] [TERMINAL1 [TERMINAL2 ...]] [--force|--bpb] BESTAND [--md5] WACHTWOORD [BESTAND] [--no-mem-option] [--type=TYPE] BESTAND [ARGUMENT...] [-1|-2] [--exclude=TABEL1,TABEL2|--load-only=TABEL1,TABEL2] BESTAND1 [BESTAND2] [...] [-c BESTAND [-p VOORVOEGSEL]] [BESTAND1 [BESTAND2 ...]] [-d] APPARAATNAAM BESTAND [-e|-n] TEKENREEKS [-f BESTAND] [-f BESTAND] VARIABELENAAM... [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT]...] NAAM [-h|-p|-r] [BESTAND] [-l] GRUB-UUID [VARNAAM] [-l|-h|-a] [BESTAND ...] [-m (stretch|normal)] BESTAND [-s POSITIE] [-d APPARAAT] [-s POSITIE] [-d APPARAAT] [-v VARIABELE] REGISTER[=WAARDE[:MASKER]] [-s GROOTTE] BESTANDSNAAM [ADRES|comNUMMER][,SNELHEID] [ARGUMENT] [KAART [HARDWARE-ADRES]] [KAART] [OMGEVINGSVARIABELE=WAARDE] [OMGEVINGSVARIABELE] [TOETSAANSLAG1] [TOETSAANSLAG2 ...] [MODULE1 MODULE2 ...] [NUMMER:]VARNAAM [NUMMER] [OPTIE...] [OPTIE...] [OPTIES] SCHIJF [OPTIES] BESTAND|APPARAAT [OPTIES] LETTERTYPEBESTANDEN [OPTIE...] [MODULES] [OPTIE...] [PAD|APPARAAT] [OPTIES] [PAD] [PATROON ...] [GEBRUIKERSLIJST] [WAARDE...] [BxH[xD]] [BxH] [[-a|-u|-v] [-g BxH] TERMINAL [TYPE]] [[jaar-]maand-dag] [uur:minuut[:seconde]] [BUS]:[SLEUF][.FUNC] [PRODUCENT]:[APPARAAT] het 'cryptomount'-commando is mislukt: %s het 'loopback'-commando is mislukt: %s 'obppath' is niet gevonden in de omvattende mappen van '%s'; geen IEEE1275-naamsherleiding er werd een waarde gegeven voor argument '%s' terwijl het geen waarde vereist toegang is geweigerd een 'NOTE'-segment toevoegen voor CHRP IEEE1275 adres adres is niet gevonden poging tot lezen of schrijven buiten schijf '%s' poging tot lezen of schrijven buiten partitie poging tot lezen voorbij einde van bestand poging tot springen buiten het bestand poging om de core-image '%s' uit GRUB te lezen poging om de core-image '%s' uit GRUB opnieuw te lezen beschikbare RAM Beschikbare indelingen zijn: onjuiste vingerafdruk basisadres = 0x%llx, lengte = 0x%llx, %s
 basisadres = 0x%llx, lengte = 0x%llx, type = 0x%x
 bitkaartbestand '%s' heeft een niet-ondersteunde opmaak blocklist BESTAND bloklijsten zijn ongeldig blokgrootte is niet deelbaar door 512 kan niet nul lussen verbreken kan bestandssysteem op %s niet achterhalen kan opdracht '%s' niet vinden kan versleuteld volumen '%s' niet aankoppelen: %s kan '%s' niet openen: %s kan bestand %s niet openen, index %d: fout %d kan bloklijsten niet verkrijgen kan bloklijsten niet verkrijgen: %s de kernel-image kan niet worden gecomprimeerd Kan geen GRUB-schijf vinden voor %s.  Controleer uw 'device.map'. kan geen apparaat vinden voor %s (is /dev wel aangekoppeld?) kan de translator-opdrachtregel voor pad '%s' niet verkrijgen: %s kan bestand '%s' op beheersysteem niet openen: %s kan '%s' niet openen: %s kan '%s' niet foutloos lezen kan '%s' niet lezen: %s kan bestand %s niet naar %s hernoemen kan de originele map niet herstellen kan niet springen in '%s': %s kan status van '%s' niet opvragen: %s kan niet naar CD-rom schrijven kan niet schrijven naar '%s': %s kan niet naar standaarduitvoer schrijven: %s kaart is niet gevonden cat BESTAND controle van controlesom is mislukt te gebruiken soort compressie voor core-image cmp BESTAND DEZE comNUMMER[,SNELHEID] vergelijking is mislukt op positie %llu verbinding is geweigerd verbindingstijdslimiet is overschreden lettertype omzetten naar vet de core-image is te groot (0x%x > 0x%x) Versie van core.img komt niet overeen kan %s niet automatisch configureren kan een benodigd deelapparaat van een multi-apparaat-bestandssysteem niet vinden kan GELI-consument niet vinden kan GEOM 'part'-klasse niet vinden kan GEOM niet openen kan ELI-metagegevens niet lezen kan UUID niet verkrijgen kan GELI-UUID niet verkrijgen kan geen willekeurige gegevens verkrijgen voor startwaarde ('salt') kan netwerkpakketje niet verzenden cp BESTAND DEZE crc BESTAND versleutelingsfout, nummer %d cygwin_conv_path() is mislukt de apparaattoewijzingstabel verwijderen als deze reeds bestaat doel is niet bereikbaar aantal apparaten overschrijdt limiet hinting uitschakelen schijf '%s' is niet gevonden schijf bestaat niet; teruggevallen op partitie-apparaat %s te gebruiken schijfmodule ('biosdisk' of 'native'); deze optie is alleen beschikbaar op een BIOS-doel de grootte van diskboot.img moet %u bytes zijn niet naar bestandssystemen zoeken op APPARAAT component van domeinnaam is te lang LED-toestand niet bijwerken voltooid BESTAND inbedden als een vroege configuratie BESTAND inbedden als publieke sleutel voor vingerafdrukcontrole inbedding is niet mogelijk, maar dit is wel vereist bij RAID- en LVM-installatie inbedding is niet mogelijk, maar dit is wel vereist bij installatie over meerdere schijven ARCS-opstart inschakelen (big-endian MIPS-machines, meest SGI) -- schakelt HFS+, APM, sparc64 en opstarten als schijf-image voor i386-pc uit SPARC-opstart inschakelen -- schakelt HFS+, APM, ARCS en opstarten als schijf-image voor i386-pc uit Enter: starten, 'e': opties, 'c': opdrachtregel omgevingsblok is te klein fout: %s.
 GRUB-images zoeken onder MAP/%s in plaats van de map %s kan canoniek pad van '%s' niet achterhalen lezen van sector 0x%llx van '%s' is mislukt lezen van wachtwoord is mislukt schrijven van sector 0x%llx naar '%s' is mislukt onwaar beschadigde RAM (BadRAM) bestand '%s' is niet gevonden bestandsnaam werd verwacht bestandsnaam of tempo plus tonen werden verwacht bestandssysteem '%s' ondersteunt geen labels bestandssysteem '%s' ondersteunt geen bloklijsten de firmware-image is te groot autohinting afdwingen vier argumenten werden verwacht fwstart.img is niet de bekend-goede versie; doorgaan is op eigen risico een image in de gegeven indeling genereren een korte gebruikssamenvatting tonen deze hulptekst tonen gegeven argument is een systeemapparaat, niet een pad 'grub-mkimage' is gecompileerd zonder ondersteuning voor XZ grub> dit aantal seconden pauzeren (standaard 3600) hex BESTAND voorgebakken bitkaarten negeren onjuiste opgave van terminalafmetingen GRUB-images installeren onder MAP/%s in plaats van de map %s ook installeren als er problemen gevonden worden ongeldig PBKDF2-wachtwoord ongeldig architectuur-afhankelijk magisch getal in ELF-bestand ongeldig architectuur-onafhankelijk magisch getal in ELF-bestand ongeldige blokgrootte ongeldige kleurindicatie '%s' ongeldig omgevingsblok ongeldige bestandsnaam '%s' ongeldig lettertypebereik ongeldige regelopmaak: %s ongeldige parameter %s ongeldige sprongwaarde %lld ongeldige variabelenaam '%s' ongeldige specificatie '%s' van videomodus ioctl(GET_ARRAY_INFO)-fout: %s ioctl(GET_DISK_INFO)-fout: %s ioctl(RAID_VERSION)-fout: %s de kernel-image is te groot (0x%x > 0x%x) Netwerkadressen tonen Netwerkkaarten tonen Netwerkroutes tonen ls PAD LZOP-bestand is beschadigd de schijf ook opstartbaar maken als floppy (standaard voor fdX-apparaten); kan falen op sommige BIOS'en ontbrekend '%c'-symbool verplichte optie voor '%s' ontbreekt module '%s' is niet geladen module is niet geladen naam een image en een aankoppelingspunt zijn vereist geen APM gevonden geen DHCP-info gevonden DHCP-optie %d is niet gevonden geen DHCP-opties gevonden geen DNS-record gevonden geen DNS-antwoord ontvangen geen DNS-servers geconfigureerd geen '/' in canonieke bestandsnaam geen opdracht opgegeven er is geen onsleutelingssleutel beschikbaar geen netwerkkaart gevonden geen server opgegeven die partitie bestaat niet geen geschikte videomodus gevonden geen symbolentabel geen terminal opgegeven de core-image bevat geen eindteken niet-sector-uitgelijnde gegevens gevonden in het core-bestand is geen map is geen primaire partitie is geen normaal bestand valt niet binnen een functie één argument werd verwacht Andere software gebruikt het inbeddingsgebied en er is niet genoeg ruimte voor 'core.img'.  Zulke software probeert meestal om gegevens op te slaan op een manier die niet gedetecteerd wordt.  We raden u aan om dit nader te onderzoeken. onvoldoende geheugen beschikbaar een gegenereerde image uitvoeren naar BESTAND [standaard is standaarduitvoer] er moet een uitvoerbestand gegeven worden gegenereerd configuratiebestand uitvoeren naar BESTAND [standaard is standaarduitvoer] overloop is gedetecteerd de wachtwoorden komen niet overeen een 'bootp'-autoconfiguratie uitvoeren fysiek volumen %s is niet gevonden de gegeven MODULES vooraf laden voortijdig einde van bestand voortijdig einde van bestand %s CapsLock-toets indrukken Insert-toets indrukken NumLock-toets indrukken ScrollLock-toets indrukken SysRq-toets indrukken linker Alt indrukken linker Ctrl indrukken linker Shift indrukken rechter Alt indrukken rechter Ctrl indrukken rechter Shift indrukken programmaversie tonen programmaversie tonen en stoppen deze hulptekst tonen en stoppen uitgebreide meldingen tonen publieke sleutel %08x is niet gevonden leesfout op positie %llu: %s tekst lezen uit BESTAND relatieve submap op netwerkserver relocatie 0x%x is nog niet geïmplenteerd gereserveerde RAM een DHCP-optie ophalen en opslaan in VAR; als VAR '-' is, dan de waarde tonen hoofdmap van TFTP-server lus in de routering gedetecteerd ROM-images opslaan in MAP [optioneel] uitvoer opslaan in BESTAND [vereist] index van sublettertype seriële poort '%s' is niet gevonden set [NAAM=WAARDE ...] CapsLock-modus instellen stokken van lettertype instellen staarten van lettertype instellen naam van lettertypefamilie instellen lettertypebereik instellen grootte van lettertype instellen invoerbestandsnaam voor 32-bit deel instellen invoerbestandsnaam voor 64-bit deel instellen invoerbestandsnaam instellen [standaard is standaardinvoer] Insert-toetsmodus instellen NumLock-modus instellen uitvoerbestandsnaam instellen (standaard is standaarduitvoer) Pause-toetsmodus instellen de voorvoegmap instellen [standaard %s] ScrollLock-modus instellen de programmanaam instellen grootte stretch (=uitgerekt) | normal (=normaal) symbool '%s' is niet gevonden tijdelijk terminal '%s' is niet gevonden of wordt niet behandeld door 'terminfo' terminal '%s' is niet gevonden het argument '%s' vereist een geheel getal het item '%s' in 'device.map' is ongeldig; het wordt genegeerd; corrigeer of verwijder uw 'device.map' apparaatnaam '%s' in 'device.map' is onjuist; daarvoor in de plaats wordt %s gebruikt; gebruik de vorm [hfc]d[0-9]* (bijvoorbeeld 'hd0' of 'cd') de eerste sector van het core-bestand is niet sector-uitgelijnd het installatie-apparaat is verwijderbaar; deze optie is alleen beschikbaar op EFI partitietype 0x%x is ongeldig de sectoren van het core-bestand zijn te gefragmenteerd de grootte van '%s' is niet %u de grootte van '%s' is te groot de grootte van '%s' is te klein dit ELF-bestand is niet van het juiste type dit GPT-partitielabel bevat geen BIOS-opstartpartitie; inbedding is niet mogelijk deze LDM heeft geen inbeddende partitie; inbedding is niet mogelijk dit MSDOS-achtige partitielabel heeft geen ruimte na de MBR; inbedding is niet mogelijk drie argumenten werden verwacht tijdslimiet is overschreden tijdens openen van '%s' tijdslimiet is overschreden tijdens lezen van '%s' tijdslimiet is overschreden: kan hardware-adres niet herleiden te diepe nesting van symbolische koppelingen translator '%s' voor pad '%s' bevat meerdere argumenten die geen opties zijn, in elk geval '%s' en '%s' translator '%s' voor pad '%s' bevat alleen opties, geen apparaatcomponent de translator-opdrachtregel is leeg voor pad '%s' twee argumenten werden verwacht type bestandssysteem in %s wordt niet herkend; veiligheidscontrole kan niet worden uitgevoerd onuitgelijnde apparaatgrootte onverwacht einde van bestand onbekend argument '%s' onbekende compressie %d
 onbekend apparaattype %s
 onbekend bestandssysteem onbekend soort RAID-apparaat '%s' Onbekende fout in reguliere expressie onbekende doelindeling %s
 onbekend 'terminfo'-type '%s' onbekende DHCP-optie-opmaakspecificatie '%s' onbekend netwerkadres '%s' onbekende netwerkinterface '%s' niet-herkend getal niet-herleidbaar adres %s unset [NAAM ...] niet-ondersteunde HTTP-fout %d: %s niet-ondersteund HTTP-antwoord niet-ondersteunde RAID-versie: %d.%d niet-ondersteunde GZIP-indeling niet-ondersteunde pariteit van seriële poort niet-ondersteunde snelheid van seriële poort niet-ondersteund aantal stopbits van seriële poort niet-ondersteunde woordlengte van seriële poort KLEUR gebruiken voor achtergrond KLEUR gebruiken voor label KLEUR gebruiken voor label-achtergrond KLEUR gebruiken voor tekst deze MAP gebruiken als hoofdmap van EFI-systeempartitie dit BESTAND gebruiken als lettertype (PF2) dit BESTAND gebruiken als lettertype voor label BESTAND als opstart-image gebruiken [standaard %s] BESTAND als core-image gebruiken [standaard %s] BESTAND als apparaattoewijzingstabel gebruiken [standaard %s] dit BESTAND gebruiken als 'xorriso' [optioneel] de GRUB-bestanden uit MAP gebruiken [standaard %s] TEKENREEKS gebruiken voor productnaam TEKENREEKS gebruiken voor productversie ID-bestand gebruiken zelfs als UUID beschikbaar is images en modules onder MAP gebruiken [standaard %s/<platform>] variabele '%s' is niet ingesteld visueel-geordende UTF-8 wachten tot een debugger zich aanhecht zal niet verder gaan met bloklijsten foutief magisch getal of verkeerde versie van ELI xnu_uuid APPARAAT XZ-bestand is beschadigd of gebruikt niet-ondersteunde blokopties kan dit adres niet verwijderen u dient eerst de kernel te laden uw BIOS-opstartpartitie is te klein; inbedding is niet mogelijk Uw core.img is ongebruikelijk groot.  Het zal niet in de inbeddingsruimte passen. Uw inbeddingsgebied is ongebruikelijk klein; core.img zal er niet in passen.                                                                                                      boot/grub/locale/pa.mo                                                                              0000600 0001750 0001750 00000177526 13417732100 0013644 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                              w  )      7  #   7      7     7     7  $    8     %8     98     @8     V8     c8     g8     v8     8  !   8     8     8     8     8     9     9  
   ?9  	   J9     T9  ,   p9  ,   9  '   9  -   9       :  (   A:     j:     :     :     :     :  "   :     :     :  7   ;     9;  1   B;     t;  %   ;  '   ;  %   ;  '   <     /<     1<     F<     [<     `<     r<     ~<     <     <     <     <     <     <     <     =     =     .=  -   F=  !   t=     =     =     =  #   =      >     >     7>     N>     T>     ]>     t>     >     >     >     >     >     ?     ?     '?     >?     C?     I?  %   X?     ~?     ?     ?     ?     ?     ?     @     @  3   0@     d@  	   v@     @     @     @     @     @     @     A     !A  !   (A  ,   JA     wA     A     A  	   A  !   A     A     A  $   A     B     .B     @B     [B     wB  
   B  
   B     B  1   B     B     B     C     !C  >   =C     |C     C     C     C     C  +   C     (D     DD     bD     yD  $   D     D     D  '   D  9   E     UE     nE     E     E     E  
   E     E     E     E     F  "   F     AF     RF  (   cF     F     F     F     F  "   F  0   F     #G     (G     7G  7   FG     ~G     G     G     G     G     G     G     G     G     H     H  *   4H  +   _H     H     H     H     H     H     H     	I     I     6I  #   OI     sI     I  )   I     I     I     I  /   I     "J     9J     XJ     tJ     J     J     J  '   J  P   J     )K  	   5K     ?K     BK     aK  +   uK     K     K  )   K     K     L     *L     @L     UL     gL     L     L  -   L     L     L     L     M     M     +M     BM  %   PM     vM  )   M  !   M  "   M     N      N  +   7N     cN     zN     N     N     N     N     N     N  M   O  2   PO     O     O     O  3   O  $   O  +   !P     MP     [P     pP     P     P     P     P     P     P     P  !   Q     <Q     RQ     rQ     Q     Q     Q     Q     Q     Q     Q     R  
   'R     2R     AR     WR     \R     tR     xR     R     R     R     R     R  #   R     S     <S     YS     bS      yS     S      S     S  "   S  %   
T     0T     JT     ST     fT  #   kT     T     T     T  	   T     T  )   T     T     U     U     #U     :U     IU     `U     sU     U     U     U     U     U     U     V     (V     EV  g   aV     V  "   V  '    W     (W     BW     PW     fW     W     W     W     W     W     W     
X     %X     6X  -   VX     X  "   X  )   X     X     X     Y     Y     Y     3Y     :Y     CY     VY  $   pY  %   Y  )   Y  >   Y  D   $Z  !   iZ  )   Z     Z  )   Z  ,   Z     )[     I[     b[     }[  E   [  A   [  )   \     @\     U\  :   r\     \     \     \     \     ]  0   ]     M]     b]  &   x]     ]     ]     ]     ]  )   ^     0^  -   @^     n^     ~^     ^  '   ^  "   ^     ^     ^     ^     _     _     1_  
   G_     R_  %   l_     _  *   _  0   _     _     _     `     "`     6`     <`  !   V`     x`     `  $   `     `     `     `     a     +a     @a      Ta     ua     a     a     a     a     a  )   a     b     b     2b     Rb     gb     {b     b     b  m   b     c     3c     Mc     gc     c     c  '   c     c  	   c     c     c     d     4d     Pd     kd     d  *   d  ?   d  /   d     &e     ;e  .   Qe  O   e  )   e     e     f  	   f     )f  5   Gf     }f     f     f     f     f     f     f     f     g     g     2g     Cg     Ig  	   Vg     `g     og     g     g     g     g     g     g  
   g  
   g  	   g     	h  !   h  )   1h     [h     oh     h     h     h  -   h     h     h  (   h  1   i     Pi      _i     i  %   i     i  &   i      i  7   j  .   Rj     j     j     j     j     j  %   k     )k     @k     Yk     xk     k     k     k     k     k     k     k     l     !l     4l     Ol     ]l     fl     l  &   l     l     l     l  ;   m  &   =m     dm     {m  (   m     m     m     m     m     m     m  '   n  *   6n     an     {n     n     n     n  -   n     o  $   	o     .o  "   7o  %   Zo     o     o     o     o     o     o  %   
p     0p     Op     mp     p     p     p     p     p     p     p     	q     q     )q     Aq     ]q     oq     q     q     q     q     q     q     r     #r     1r     Or     dr  !   zr     r     r     r     r     r     s     s     3s     ?s     Ns     ^s     os     s     s     s  &   s     s     s     t      t     >t     Rt     gt     yt     t     t     t     t     t     t     t     t  	   u     u     3u     Qu     ou     u     u     u     u     u     u     u     v     *v     >v     Ov     ov     v  (   v  #   v     v     
w  !   w    <w  6   x  N   %y  +   ty     y  Y   y  .   z     Ez  ,   Sz     z     z     z  5   z      z  ?   z  0   >{  +   o{     {  !   {  *   {  j   {     j|     ||      |  V   |  U   }  R   e}  `   }  0   ~  O   J~  )   ~  )   ~     ~     	       E   -     s       D          1          V   =  `     V     `   L       9     2             !     3     ?     _     q  (             ̂       6     <   (     e  +     [     Q     <   Y  6     6   ̈́  `     9   e  <        ܅             8   	  O   B  >     ?   ц  =     I   O  6     K   Ї       /   5     e  	   j     t  X     R   ܈  N   /  /   ~  /     )   މ  2     /   ;  7   k       )   +     U  9   l  3     H   ڋ  5   #  &   Y  >     >          !     h   -       	     .     	   ۍ  S     )   9      c  @     "   Ŏ  "     1     9   =  9   w       
         ͏  F        5     G  =   X  %     ]     %     <   @  3   }  I     ,     ^   (  D     V   ̒  6   #  Q   Z  Q     8     ;   7  S   s     ǔ  H   J  G        ە       E        <     O  4   d  "     +     (          "   0  j   S  -     -     &     C   A  R     a   ؘ     :     G     ^  7   m               љ                         5  !   G  '   i       f     J     M   b  ,     9   ݛ  /     (   G  '   p  3     .   ̜  )     N   %  (   t       t        2  #   N  #   r  }          3   +  ;   _  9     M   ՟  	   #     -  y   2          b     |                 a   ɡ  /   +  P   [  i     3         J     k  *          /   ԣ            a     :     #     -   ޤ  -     9   :  @   t  #     e   ٥  >   ?  i   ~  O     R   8  8     :   ħ  o     7   o  %     &   ͨ  .     )   #  '   M  9   u  7          m     @     F   S            ^   A  o     $     H   5  H   ~  ;   ǭ  E     *   I     t       D     J   ߮  I   *  9   t  :     &     8     C   I  ,             Ͱ  E     A   1  ?   s       '   ͱ  ?     	   5     ?     W     [  ,   m  D     "   ߲  0     7   3  X   k  U   ĳ  F         a  4     R     I   
  S   T       S     3     ;   G       %     	     H   Ķ               $     >  $   M  I   r          ͷ       &        *  .   C  '   r  .     -   ɸ  1     /   )  -   Y  #     )     ,   չ  Q     K   T      6     V   ܻ  g   3  7        Ӽ  *     F     F   S  E     3     7     9   L  (     C     "     D     g   [  =   ÿ  I     Z   K  /     Q        (     8     E     Z     a       3     N     V     b   u  w        P  @     ]     N   v  M     ]     Q   q  G     S     0   _  w          [     /     6   #     Z  V     "   C  *   f  ,     2     m     <   _  8     c     6   9  5   p  ,     ?     X     -   l  ]     -     #   &  *   J  e   u  I        %     2  =   B       0     6          :        T       W     l   C       "                    :     M   S  :     )     k     0   r  (     ;     (     ,   1  *   ^  A     %     %     %        =  9   W       0     &     $     &        F  :   b  5          "          @     3     9     9   ;  9   u       @               !   *     L  F   k  F     E     3   ?     s  g   x  s     /   T            .     O     )   6     `                 :                   *  "   H     k                                                            +     @     V     p     w       
     
     	          !     )               )   1     [  ,   `  `          &     1   ,  :   ^       ]     E        L  I     e      Z     y     t   [  L     ?     Y   ]  F     T     j   S  D     F     B   J  )          6               ?     5   V  3     9     4     J   /     z       D     )     X      C   Y  &     +          [     4          I   (     r  @     	          +     .     Y   D  f     F     -   L  F   z  <     *     d   )       J          ]     Z   F  #     %           -     %   :  +   `  8     %     $     #        4  +   <  +   h  O     0     	     S         s  4     6     Y      1   Z  V     3     <     Z   T  /     E     )   %  <   O  &     F     "     =     0   [  H     7     0     %   >  #   d  $     '                    &   %     L     j  &     /     M     D   .  ?   s       =     #        ,  )   A  0   k        0     (     +     6   C     z       1          4     9     9   J  7          0     -     )   (  -   R  ,     #     9             +  7   <  1   t  F     `     S   N  8          d                                    `  d  G  g  M  7  Y   
      w   1   '   ,  z  )                o       u  /                  M        "               H                                         /               #                     .     &          >     U         ^            2       c       Z       Z           P        b           ?       a   W  ;  (                  	       T             d    z   K  $       G         g   	           )  k             s   <  H     B  A   V      L           @   x   4          V           !  F                        Y            "         =  #             R   %           R    U  Q              y      ~                 U    D  j                 s             H                                      5                             [          &           o      C                  m  $      7               O         C      e        K         B           o      4              ^                      3  S     q         F          b  v        %                     6  w      I      W    k     }           x              q  t  $   #          _  ?        N       e  \               .    1            N  Q    2                         r                 \  F  '  w    k         K  m                 C  5  q          _         I              7                       u  j          m       y  P  S             	   |      :         A         ^   E       ]     *                _     2           l        1                                   *   O    ;   P   M       d                 I         h  N       /      :         )                                      *  p  ]          "        {  X      L                    |                         9                    n     @  J   
      ~    r  &  i                        R                              Q                   D  {   p                  !   Y  h     >          t   J          X      e           A  D   i    -  +    8                  x  \                                       ]  s     J    @            c       T        [  l         n   ,         {  b   r               >      <                  8  a  8   v   B   :            `                  4            =     g  3    z    -   u           i      0   <  '  X      5              }                  l              E                  }              +   `           (           y               f     W   c      -  ;  f                      p  
         S           L    V     v  a                   .  (              6   h           t      [                             0     E              f  +  !                 ~           9            =   6    T                    O  ?      n                            Z  0    ,                  3                                 G   9                    |       j                 %                      total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID version: %u.%u
   Failed to initialize video adapter   No info available   or:   - Total size unknown  [OPTION...] %ds %ds remaining. %s does not support UUIDs %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen hypervisor %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: option '%c%s' doesn't allow an argument
 %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option requires an argument -- '%c'
 %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 > ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ASCII Active input terminals: Active output terminals: Adapter `%s':
 Advanced options for %s Advanced options for %s (with Xen hypervisor) Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Available input terminals: Available output terminals: BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Booting `%s' Booting a command list Bootpath: %s
 Bootpath: unavailable
 CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check if CPU supports 64-bit (long) mode (default). Clear the screen. Commands: Compare file `%s' with `%s':
 Compare two files. Compute or check hash checksum. Configure serial port. Continue loops Couldn't load sha256 Couldn't load sha512 DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Define a menu entry. Define a submenu. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Display FPSWA version. Display SMART health status. Display a line of text. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. ENVVAR ENVVAR [ENVVAR] ... ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d seconds 
 Enter ZFS password:  Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FORMAT FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Falling back to `%s' File system `%s' doesn't support embedding Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found linux image: %s\n Found theme: %s\n Freeze ATA security settings until reset. Friday GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUBDEVICE=PLAN9DEVICE Generate PBKDF2 password hash. Generate a grub config file Get disk cache info. Get/set ATA disk parameters. HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Invalid character class name Invalid command %s.
 Invalid device `%s'.
 Invalid disk count.
 Invalid range end Invalid regular expression KERNEL ARGS KEYBOARD_KEY Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List PCI devices. List all files. List devices and files. List devices or files. List devices. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load Linux. Load NTLDR or BootMGR. Load Plan9 kernel. Load XNU image. Load a keyboard layout. Load another boot loader. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load initrd. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... MAC verification failed MODULE MODULES Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Memory exhausted Menu entry identifier. Menu entry not specified. Menu entry type. Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NUM NUMBER_OF_SECONDS Network protocols: New MBR is written to `%s'
 No FPSWA found No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Options: PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] Partition %s: Path: %s
 Path: unavailable Perform both direct and reverse mappings. Planar  Play a tune. Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: unavailable Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Print a block list. Print drive identity and settings. Print sizes in a human readable format. RAM holding firmware code REGEXP STRING ROM image is present. Read 16-bit value from PORT. Read 32-bit value from PORT. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot the computer. Reenter password:  Regular expression too big Remove a module. Remove an environment variable. Remove any memory regions in specified range. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Reset all mappings to the default values. Retrieve device info. Run `go' to resume GRUB. SECS SIZE SOURCE|-u UUID|-a|-b STRING Saturday Say `Hello World'. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Select device by its position on the bus. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set a variable to the first device found. Set an environment variable. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial unit. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Show ACPI information. Show APM information. Show a help message. Show a long list with more detailed information. Show loaded modules. Show memory contents. Show raw contents of a file or memory. Show the contents of a file. Show the current mappings. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Skip offset bytes from the beginning of file. Slot %d opened
 Specify filename. Specify hash to use. Specify one or more font files to load. Specify the number of input files. Success Sunday Syntax error at line %u
 TARGET Test USB support. Test video subsystem. Text-only  The files are identical.
 This entry can be booted by any user. Thursday Transform a system filename into GRUB one. Translates the string with the current settings. Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unsupported image format Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use serial console. VARNAME Verbose countdown. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WIDTHxHEIGHT. Wait for a specified number of seconds. Warning: Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to PORT. Write 32-bit VALUE to PORT. Write 8-bit VALUE to PORT. Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [ADDR|comUNIT][,SPEED] [ARG] [CARD] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] access denied addr address not found attempt to read or write outside of disk `%s' available RAM available formats: base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 blocklist FILE can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d cannot compress the kernel image cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot open OS file `%s': %s cannot open `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed cmp FILE LOCAL comUNIT[,SPEED] connection refused connection timeout convert to bold font core.img version mismatch couldn't open geom couldn't read ELI metadata cp FILE LOCAL crc FILE cryptographic error number %d cygwin_conv_path() failed delete device map if it already exists destination unreachable disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s do not probe for filesystems in DEVICE don't update LED state done enter: boot, `e': options, `c': cmd-line error: %s.
 failure to read password false faulty RAM (BadRAM) file `%s' not found filename expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists firmware image is too big force autohint generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading install even if problems are detected invalid PBKDF2 password invalid file name `%s' invalid font range invalid line format: %s invalid parameter %s invalid variable name `%s' invalid video mode specification `%s' ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s ls PATH lzop file corrupted missing `%c' symbol module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no command is specified no decryption key available no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image not a directory not a primary partition not a regular file one argument expected out of memory output file must be specified overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. reserved RAM root directory of TFTP server route loop detected set [NAME=VALUE ...] set capslock mode set font family name set font range set font size set numlock mode set scrolllock mode set the program name size stretch|normal symbol `%s' not found temporary terminal `%s' isn't found the size of `%s' is too large the size of `%s' is too small two arguments expected type unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown regexp error unknown target format %s
 unrecognized number unset [NAME ...] unsupported RAID version: %d.%d unsupported gzip format unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length variable `%s' isn't set xnu_uuid DEVICE you need to load the kernel first Project-Id-Version: grub 2.0.0-pre6
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2012-05-19 19:45+0530
Last-Translator: A S Alam <aalam@users.sf.net>
Language-Team: Punjabi <punjabi-l10n@lists.sourceforge.net>
Language: pa
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=n != 1;
X-Generator: Lokalize 1.4
               ਕੁੱਲ ਮੈਮੋਰੀ: %d KiB
     ਕੋਈ ਪਸੰਦੀਦਾ ਮੋਡ ਉਪਲੱਬਧ ਨਹੀਂ
     ਪਸੰਦੀਦਾ ਮੋਡ: %ux%u
   EDID ਵਰਜਨ: %u.%u
   ਵਿਡੀਓ ਅਡੈਪਟਰ ਸ਼ੁਰੂ ਕਰਨ ਲਈ ਫੇਲ੍ਹ ਹੈ   ਕੋਈ ਜਾਣਕਾਰੀ ਨਹੀਂ   ਜਾਂ:   - ਕੁੱਲ ਆਕਾਰ ਅਣਜਾਣ [ਚੋਣ...] %ds %ds ਬਾਕੀ। %s UUID ਲਈ ਸਹਾਇਕ ਨਹੀਂ ਹੈ। %s, ਲੀਨਕਸ %s ਨਾਲ %s, ਲੀਨਕਸ %s ਨਾਲ (ਰਿਕਵਰੀ ਮੋਡ) %s, Xen ਹਾਈਪਰਵਾਈਜ਼ਰ ਨਾਲ %s: ਹੈਸ਼ ਮਿਲਦਾ ਨਹੀਂ
 %s:  ਠੀਕ ਹੈ
 %s: ਪੜ੍ਹਨ ਗਲਤੀ
 %s: ਬਹੁਤ ਆਰਗੂਮੈਂਟ
 %s: ਇਹ ਚਲਾਉਣ ਲਈ ਤੁਹਾਨੂੰ ਰੂਟ ਹੋਣਾ ਚਾਹੀਦਾ ਹੈ\n %s: ਗਲਤੀ: %s: ਜਾਣਕਾਰੀ: %s: ਗਲਤ ਚੋਣ -- '%c'
 '%s: ਚੋਣ '%c%s' ਇੱਕ ਆਰਗੂਮੈਂਟ ਨਹੀਂ ਲੈਂਦੀ
 %s: ਚੋਣ '--%s' ਇੱਕ ਆਰਗੂਮੈਂਟ ਨਹੀਂ ਲੈਂਦੀ
 %s: ਚੋਣ '--%s' ਲਈ ਇੱਕ ਆਰਗੂਮੈਂਟ ਚਾਹੀਦਾ
 %s: ਚੋਣ '-W %s' ਲਈ ਇੱਕ ਆਰਗੂਮੈਂਟ ਨਹੀਂ ਚਾਹੀਦਾ
 %s: ਚੋਣ '-W %s' ਸਧਾਰਨ ਹੈ।
 %s: ਚੋਣ ਲਈ ਆਰਗੂਮੈਂਟ ਚਾਹੀਦਾ ਹੈ --'%c'
 %s: ਬੇ-ਪਛਾਣ ਚੋਣ '%c%s'
 %s: ਬੇ-ਪਛਾਣ ਚੋਣ '--%s'
 %s: ਚੇਤਾਵਨੀ: (32-ਬਿੱਟ) (64-ਬਿੱਟ) (PROGRAM ERROR) ਕੋਈ ਜਾਣਿਆ ਵਰਜਨ ਨਹੀਂ!? (%s ਉੱਤੇ) - ਲੇਬਲ `%s' - ਆਖਰੀ ਸੋਧ ਸਮਾਂ %d-%02d-%02d %02d:%02d:%02d %s --ਹੋਰ-- -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. 16-ਬਿੱਟ ਸੁਰੱਖਿਅਤ ਇੰਟਰਫੇਸ ਸਹਾਇਕ ਹੈ
 16-ਬਿੱਟ ਸੁਰੱਖਿਅਤ ਇੰਟਰਫੇਸ ਗ਼ੈਰ-ਸਹਾਇਕ ਹੈ
 32-ਬਿੱਟ ਸੁਰੱਖਿਅਤ ਇੰਟਰਫੇਸ ਸਹਾਇਕ ਹੈ
 32-ਬਿੱਟ ਸੁਰੱਖਿਅਤ ਇੰਟਰਫੇਸ ਗ਼ੈਰ-ਸਹਾਇਕ ਹੈ
 > ACPI ਵਲੋਂ ਮੁੜ-ਦਾਅਵੇ-ਯੋਗ RAM ACPI ਬੰਦ ਕਰਨਾ ਫੇਲ੍ਹ ਹੈ ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM ਬੰਦ ਕਰੋ
 APM ਰੁੱਝਿਆ ਨਹੀ ਹੈ
 APM ਚਾਲੂ ਹੈ
 APM ਰੁੱਝਿਆ ਹੈ
 ASCII ਸਰਗਰਮ ਇੰਪੁੱਟ ਟਰਮੀਨਲ: ਉਪਲੱਬਧ ਆਉਟਪੁੱਟ ਟਰਮੀਨਲ: ਅਡੈਪਟਰ `%s':
 % ਲਈ ਤਕਨੀਕੀ ਚੋਣਾਂ %s ਲਈ ਤਕਨੀਕੀ ਚੋਣਾਂ (Xen ਹਾਈਪਰਵਾਈਜ਼ਰ ਨਾਲ) ਮੁੜ-ਚਾਲੂ ਕਰਨ ਲਈ ਫਾਇਲ ਨਾਂ ਪੁੱਛੋ। ਇੰਪੁੱਟ ਨੂੰ ਹੈਕਸਾ ਮੰਨੋ। ਇੰਪੁੱਟ ਨੂੰ ਵਾਕ ਮੰਨੋ। ਇੰਪੁੱਟ ਨੂੰ ਰਾਅ ਮੰਨੋ। ...ਮਾਸਟਰ ਕੁੰਜੀ ਡਿ-ਕ੍ਰਿਪਟ ਦੀ ਕੋਸ਼ਿਸ਼ ਜਾਰੀ ਉਪਲੱਬਧ ਇੰਪੁੱਟ ਟਰਮੀਨਲ: ਉਪਲੱਬਧ ਆਉਟਪੁੱਟ ਟਰਮੀਨਲ: BIOS_DUMP [INT10_DUMP] ਬਲਾਕ BYTE:BIT ਬੈਕਗਰਾਊਂਡ ਚਿੱਤਰ ਮੋਡ। ਹੈਸ਼ ਲਿਸਟ ਲਈ ਮੁੱਢਲੀ ਡਾਇਰੈਕਟਰੀ। BIOS-ਅਧਾਰਿਤ ਸਿਸਟਮ ਬੂਟ ਕਰੋ। ਓਪਰੇਟਿੰਗ ਸਿਸਟਮ ਬੂਟ ਕਰੋ। ਸਿੰਗਲ ਮੋਡ ਵਿੱਚ ਬੂਟ ਕਰੋ। ਡੀਬੱਗ ਸੁਨੇਹਿਆਂ ਨਾਲ ਬੂਟ ਕਰੋ। `%s' ਬੂਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ ਕਮਾਂਡ ਸੂਚੀ ਬੂਟ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ ਬੂਟ-ਪਾਥ: %s
 ਬੂਟ-ਪਾਥ: ਨਾ-ਉਪਲੱਬਧ
 CGA  ਰੰਗ COMMAND [ARGS] CPU ਆਈਡਲ ਪਰੋਸੈਸਰ ਨੂੰ ਹੌਲੀ ਨਹੀਂ ਕਰਦਾ
 CPU ਆਈਡਲ ਪਰੋਸੈਸਰ ਨੂੰ ਹੌਲੀ ਕਰਦਾ ਹੈ
 ROM ਖੇਤਰ ਚਾਲੂ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ। ਸੰਰਚਿਤ ਜੰਤਰ ਬਦਲੋ। ਪਾਰਟੀਸ਼ਨ ਕਿਸਮ ਬਦਲੋ ਆਲਟ ਸਵਿੱਚ ਵੇਖੋ। ਕੰਟਰੋਲ ਸਵਿੱਚ ਵੇਖੋ। ਸਿਫ਼ਟ ਸਵਿੱਚ ਵੇਖੋ। CPU ਫੀਚਰਾਂ ਲਈ ਚੈੱਕ ਕਰੋ। ਚੈੱਕ ਕਰੋ ਕਿ ਕੀ CPU 64-ਬਿੱਟ (ਲੰਮਾ) ਮੋਡ ਲਈ ਸਹਾਇਕ ਹੈ (ਡਿਫਾਲਟ)। ਸਕਰੀਨ ਸਾਫ਼ ਕਰੋ। ਕਮਾਂਡਾਂ: `%s' ਫਾਇਲ ਦੀ `%s' ਨਾਲ ਤੁਲਨਾ:
 ਦੋ ਫਾਇਲਾਂ ਦੀ ਤੁਲਨਾ। ਹੈਸ਼ ਚੈਕ-ਸਮ ਕੱਢੋ ਜਾਂ ਚੈਕ ਕਰੋ। ਸੀਰੀਅਲ ਪੋਰਟ ਸੰਰਚਨਾ। ਲੂਪਾਂ ਨਾਲ ਜਾਰੀ sha256 ਲੋਡ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ sha512 ਲੋਡ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ ਜੰਤਰ DEVICE [PARTITION[+/-[TYPE]]] ... ਜੰਤਰ OS ਜੰਤਰ ਹੋਣਾ ਚਾਹੀਦਾ ਹੈ (ਜਿਵੇਂ ਕਿ /dev/sda)। DEVICE_NAME ਡਾਇ ਡਾਇਰੈਕਟਰੀ [OSBundleRequired] DNSSERVER ਫਾਇਲ-ਸਿਸਟਮ ਡਰਾਇਵਰ ਲਈ ਡੀਬੱਗ ਟੂਲ। ਮੇਨੂ ਐਂਟਰੀ ਦਿਉ। ਸਬ-ਮੇਨੂ ਦਿਉ। ਦਿੱਤਾ ਲੂਪ-ਬੈਕ ਜੰਤਰ ਹਟਾਉ। ਵੇਰੀਬਲ ਹਟਾਓ। ਡਰਾਇਵਰ ਜਾਣੋ। ਫਾਇਲ ਸਿਸਟਮ UUID ਜਾਣੋ। ਫਾਇਲ ਸਿਸਟਮ ਲੇਬਲ ਜਾਣੋ। ਫਾਇਲ ਸਿਸਟਮ ਕਿਸਮ ਜਾਣੋ। ਜੰਤਰ %s: Devid: %s
 Devid: ਨਾ-ਉਪਲੱਬਧ ਸਿੱਧਾ ਰੰਗ, ਮਾਸਕ: %d/%d/%d/%d  pos: %d/%d/%d/%d ACPI ਬੰਦ। SMP ਬੰਦ। ਸਭ ਬੂਟ ਆਉਟਪੁੱਟ ਬੰਦ ਕਰੋ। SMART ਬੰਦ/ਚਾਲੂ (0/1)। ਡਿਸਕ ਕੈਸ਼ ਅੰਕੜੇ: ਸਹੀ = %lu (%lu.%02lu%%), ਖੁੰਝੇ = %lu
 FPSWA ਵਰਜਨ ਵੇਖਾਉ। ਸਮਾਰਟ ਹੈਲਥ ਹਾਲਤ ਵੇਖਾਉ। ਟੈਕਸਟ ਦੀ ਲਾਈਨ ਵੇਖੋ। ਸਭ ਕਨਸੋਲ ਉੱਤੇ ਆਉਟਪੁੱਟ ਵੇਖੋ। ਪਾਵਰਡ ਮੋਡ ਵੇਖਾਉ। ਇਸ ਕਮਾਂਡ ਦੀ ਵਰਤੋਂ ਵੇਖਾਉ ਅਤੇ ਬੰਦ ਕਰੋ। ਇਹ ਮੱਦਦ ਵੇਖਾਉ ਅਤੇ ਬੰਦ ਕਰੋ। ਮੌਜੂਦਾ ਸਮਾਂ-ਮਿਤੀ ਵੇਖਾਓ/ਸੈੱਟ ਕਰੋ। ਸੁਨੇਹੇ ਪਰਿੰਟ ਨਾ ਕਰੋ। ਕਿਸੇ ਫਲਾਪੀ ਡਰਾਇਵ ਦੀ ਖੋਜ ਨਾ ਕਰੋ। APM ਨੂੰ ਕੰਪਿਊਟਰ ਬੰਦ ਕਰਨ ਨਾ ਵਰਤੋਂ। ਕੁਝ ਨਾ ਕਰੋ, ਸਫ਼ਲ ਰਿਹਾ। ਕੁਝ ਨਾ ਕਰੋ, ਅਸਫ਼ਲ ਰਿਹਾ। ਬੂਟ ਜਾਂਚ-ਪੜਤਾਲ ਸੁਨੇਹੇ ਨਾ ਵੇਖਾਉ। ਕਾਮਿਆਂ ਨਾਲ ਵੱਖ ਕੀਤੀ ਲਿਸਟ ਤੋਂ ਹੋਸਟ ਟੇਬਲ ਲੋਡ ਨਾ ਕਰੋ। ਮੁੜ-ਚਾਲੂ ਨਾ ਕਰੋ, ਸਿਰਫ਼ ਰੋਕੋ। ਪਹਿਲੀ ਗਲਤੀ ਦੇ ਬਾਅਦ ਨਾ ਰੁਕੋ। ENVVAR ENVVAR [ENVVAR] ... ਕਿਸੇ ਵੀ ਸਮੇਂ ਬਾਹਰ ਜਾਣ ਲਈ ESC। ਸਮੀਕਰਨ ਸਮੀਕਰਨ ] ਬਾਕੀ ਸਮਾਂ: %d.%03d ਸਕਿੰਟ 
 ZFS ਪਾਸਵਰਡ ਦਿਉ:  ਸਧਾਰਨ ਮੋਡ 'ਚ ਜਾਉ। %s%s%s (%s) ਲਈ ਸ਼ਬਦ ਦਿਉ:  ਪਾਸਵਰਡ ਦਿਓ:  ਯੂਜ਼ਰ ਨਾਂ ਦਿਉ:  ਕਮਾਂਡ ਲਾਈਨ ਆਰਗੂਮੈਂਟ ਪਾਰਸ ਕਰਨ ਵਿੱਚ ਗਲਤੀ।
 ਬਾਹਰ ਜਾਣ ਲਈ ਫੇਲ੍ਹ ਗਰੱਬ ਤੋਂ ਬਾਹਰ ਆਉ। ਲੂਪਾਂ ਤੋਂ ਬਾਹਰ ਸਧਾਰਨ ਮੋਡ ਵਿੱਚੋਂ ਬਾਹਰ ਆਉ। ਵਰਜਨ 1 ਟੇਬਲ ਨੂੰ OS ਲਈ ਐਕਸਪੋਰਟ ਕਰੋ। OS ਲਈ ਵਰਜਨ 2 ਅਤੇ ਵਰਜਨ 3 ਟੇਬਲ ਐਕਸਪੋਰਟ ਕਰੋ। ਫਾਇਲ ਫਾਇਲ [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  ...ਫਾਇਲ ਫਾਇਲ1 ਫਾਇਲ2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt ਫਾਰਮੈਟ FPSWA ਰੀਵਿਜ਼ਨ: %x
 FROM-TO[,FROM-TO] ਤੋਂ[K|M|G] ਤੱਕ[K|M|G] FT_Init_FreeType ਫੇਲ੍ਹ ਹੈ `%s' ਲਈ ਫਾਲਬੈਕ ਫਾਇਲ ਸਿਸਟਮ `%s' ਇੰਬੈਡ ਕਰਨ ਲਈ ਸਹਾਇਕ ਨਹੀਂ ਹੈ ਫਾਇਲ ਆਕਾਰ ਵਿੱਚ ਅੰਤਰ: %llu [%s], %llu [%s]
 ਫਾਇਲ-ਸਿਸਟਮ ਵਰਤਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ ਫਾਇਲ ਸਿਸਟਮ ਕਿਸਮ %s ਵਿਡੀਓ ਸਮੱਸਿਆ ਠੀਕ ਕਰੋ। %2$s (%3$s) ਉੱਤੇ %1$s ਲੱਭਿਆ\n %2$s ਉੱਤੇ %1$s ਲੱਭਿਆ\n ਗਨੂ ਮੈਸ਼ ਲੱਭਿਆ: %s ਹੁਰਡ ਮੋਡੀਊਲ ਲੱਭਿਆ: %s ਬੈਕਗਰਾਊਂਡ ਲੱਭੀ: %s\n initrd ਈਮੇਜ਼ ਲੱਭਿਆ: %s\n ਕਰਨਲ ਮੋਡੀਊਲ ਡਾਇਰੈਕਟਰੀ ਲੱਭੀ: %s\n linux ਈਮੇਜ਼ ਲੱਭਿਆ: %s\n ਥੀਮ ਲੱਭਿਆ: %s\n ATA ਸੁਰੱਖਿਆ ਸੈਟਿੰਗ ਮੁੜ-ਸੈੱਟ ਕਰਨ ਤੱਕ ਫਰੀਜ਼ ਕਰੋ। ਸ਼ੁੱਕਰਵਾਰ ਗਨੂ ਗਰਬ ਵਰਜਨ %s ਗਰੱਬ ਬੂਟ ਮੇਨੂ ਗਰੱਬ ਨਹੀਂ ਜਾਣਦਾ ਹੈ ਕਿ ਇਹ ਮਸ਼ੀਨ ਨੂੰ ਕਿਵੇਂ ਰੋਕਣਾ ਹੈ! GRUBDEVICE=PLAN9DEVICE PBKDF2 ਪਾਸਵਰਡ ਹੈਸ਼ ਬਣਾਉ। grub ਸੰਰਚਨਾ ਫਾਇਲ ਤਿਆਰ ਕਰੋ ਡਿਸਕ ਕੈਸ਼ ਜਾਣਕਾਰੀ ਲਵੋ। ATA ਡਿਸਕ ਪੈਰਾਮੀਟਰ ਲਵੋ/ਸੈੱਟ ਕਰੋ। ਹੈਸ਼ HINT ਜੇ APM ਦੀ ਵਰਤੋਂ ਕਰਕੇ ਸੰਭਵ ਹੋਵੇ ਤਾਂ ਸਿਸਟਮ ਬੰਦ ਕਰੋ। ਕੰਪਿਊਟਰ ਬੰਦ ਕਰਦੀ ਹੈ। ਇਹ ਕਮਾਂਡ ਸਭ ਫਿਰਮਵੇਅਰ ਸਥਾਪਨ ਨਾਲ ਕੰਮ ਨਹੀਂ ਕਰਦੀ ਹੈ। ਹੈਲੋ ਵਰਲਡ ਹਰੀਕੁਲਸ  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS ਗਲਤ ਵਰਚੁਅਲ ਜੰਤਰ: ਕੋਈ ਕਿਸਮ ਉਪਲੱਬਧ ਨਹੀਂ ਮੋਡੀਊਲ ਸ਼ਾਮਿਲ ਕਰੋ। ਆਪਣੀ ਡਰਾਇਵ ਉੱਤੇ ਗਰਬ ਇੰਸਟਾਲ ਕਰੋ ਇੰਸਟਾਲੇਸ਼ਨ ਪੂਰੀ ਹੋਈ। ਕੋਈ ਗਲਤੀ ਨਹੀਂ ਮਿਲੀ। ਗਲਤ ਕਰੈਕਟਰ ਕਲਾਸ ਨਾਂ ਗਲਤ ਕਮਾਂਡ %s।
 ਗਲਤ ਜੰਤਰ `%s'।
 ਗਲਤ ਡਿਸਕ ਗਿਣਤੀ।
 ਗਲਤ ਅੰਤ ਰੇਜ਼ ਗਲਤ ਰੈਗੂਲਰ ਸਮੀਕਰਨ KERNEL ARGS KEYBOARD_KEY ਸੰਕੇਤ: ਮਾਸਕ/ਸਥਿਤੀ=ਲਾਲ/ਹਰਾ/ਨੀਲਾ/ਰਾਖਵਾਂ ਤਿਆਰ ਕੀਤੇ ਹੈਸ਼ ਦੀ ਲੰਬਾਈ ਸਾਲਟ ਦੀ ਲੰਬਾਈ PCI ਜੰਤਰਾਂ ਦੀ ਸੂਚੀ। ਸਭ ਫਾਇਲਾਂ ਦੀ ਸੂਚੀ ਜੰਤਰ ਅਤੇ ਫਾਇਲਾਂ ਵੇਖੋ। ਜੰਤਰ ਜਾਂ ਫਾਇਲਾਂ ਦੀ ਸੂਚੀ। ਜੰਤਰ ਦੀ ਸੂਚੀ। ਫਿਰਮਵੇਅਰ ਵਲੋਂ ਦਿੱਤੇ ਮੈਮੋਰੀ ਮੈਪ ਵੇਖਾਓ। ਸਹਾਇਕ ਵਿਡੀਓ ਮੋਡ ਦੀ ਸੂਚੀ: ਇਹ ਐਂਟਰੀ ਨੂੰ ਬੂਟ ਕਰਨ ਦੇ ਯੋਗ ਯੂਜ਼ਰ ਦੀ ਸੂਚੀ। ਇੰਪੁੱਟ ਟਰਮੀਨਲ ਵੇਖਾਉ ਜਾਂ ਚੁਣੋ। ਆਉਟਪੁੱਟ ਟਰਮੀਨਲ ਵੇਖਾਉ ਜਾਂ ਚੁਣੋ। ਮੌਜੂਦਾ ਵੇਰੀਬਲ ਵੇਖਾਓ। ਲੋਡ ਕੀਤੇ ਫੋਂਟ ਦੀ ਸੂਚੀ। ਇੰਵਾਇਰਨਮੈਂਟ ਬਲਾਕ ਫਾਇਲ ਤੋਂ ਵੇਰੀਬਲ ਲੋਡ ਕਰੋ। 64-ਬਿੱਜ਼ XNU ਈਮੇਜ਼ ਲੋਡ ਕਰੋ। BIOS ਡੰਪ ਲੋਡ ਕਰੋ। ਲੀਨਕਸ ਲੋਡ ਕਰੋ। NTLDR ਜਾਂ BootMGR ਲੋਡ ਕਰੋ। Plan9 ਕਰਨਲ ਲੋਡ ਕਰੋ। XNU ਈਮੇਜ਼ ਲੋਡ ਕਰੋ। ਕੀਬੋਰਡ ਲੇਆਉਟ ਲੋਡ ਕਰੋ। ਹੋਰ ਬੂਟ ਲੋਡਰ ਲੋਡ ਕਰੋ। ਬਿਨਾਂ ਪਰਸੰਗ ਬਦਲੇ ਬਿਨਾਂ, ਪਰ ਕੇਵਲ ਮੇਨੂ ਐਟਰੀਆਂ ਨਾਲ ਹੋਰ ਸੰਰਚਨਾ ਫਾਇਲ ਲੋਡ ਕਰੋ। ਬਿਨਾਂ ਪਰਸੰਗ ਬਦਲੇ ਹੋਰ ਸੰਰਚਨਾ ਫਾਇਲ ਲੋਡ ਕਰੋ। ਹੋਰ ਸੰਰਚਨਾ ਫਾਇਲ ਲੋਡ ਕਰੋ। ਹੋਰ ਕੋਰਬੂਟ ਪਲੇਅਲੋਡ ਲੋਡ ਕਰੋ initrd ਲੋਡ ਕਰੋ। ਕਾਮਿਆਂ-ਨਾਲ ਵੱਖ ਕੀਤੀ ਸੂਚੀ ਰਾਹੀਂ ਦਿੱਤੇ ਟੇਬਲ ਹੀ ਲੋਡ ਕਰੋ ਇੱਕੋ ਫਾਇਲ ਨੂੰ ਕੋਈ ਢੰਗਾਂ ਨਾਲ ਲੋਡ ਕਰੋ। ਇੰਵਾਇਰਨਮੈਂਟ ਬਲਾਕ ਫਾਇਲ ਤੋਂ ਵੇਰੀਬਲ ਲੋਡ ਕਰੋ। ਲੋਡ ਕੀਤੇ ਫੋਂਟ: ...ਗਨੂ ਮੈਸ਼ ਲੋਡ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ ਲੀਨਕਸ %s ਲੋਡ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ ... Xen %s ਲੋਡ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ... initial ramdisk ਲੋਡ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ ... MAC ਜਾਂਚ ਫੇਲ੍ਹ ਹੋਈ ਮੋਡੀਊਲ ਮੋਡੀਊਲ GRUB ਕੀਬੋਰਡ ਲੇਆਉਟ ਫਾਇਲ ਬਣਾਉ। ਗਰਬ ਦਾ ਬੂਟ ਹੋਣਯੋਗ ਈਮੇਜ਼ ਬਣਾਉ। ਫਾਇਲ ਤੋਂ ਵਰਚੁਅਲ ਡਰਾਇਵ ਬਣਾਉ। ਪਾਰਟੀਸ਼ ਨੂੰ ਐਕਟਿਵ ਬਣਾਓ BIOS ਡਰਾਇਵ ਮੈਪਿੰਗ ਪਰਬੰਧ। ਮੈਮੋਰੀ ਖਤਮ ਹੋਈ ਮੇਨੂ ਐਂਟਰੀ ਪਛਾਣਕਰਤਾ। ਮੇਨੂ ਐਂਟਰੀ ਨਹੀਂ ਦਿੱਤੀ ਗਈ। ਮੇਨੂ ਐਂਟਰੀ ਕਿਸਮ। ਸੋਮਵਾਰ ਇਕਹੇਰਾ ਰੰਗ  ਇੱਕ ਤੋਂ ਵੱਧ ਇੰਸਟਾਲ ਜੰਤਰ ਹਨ? ਇੱਕ ਤੋਂ ਵੱਧ ਮੇਨੂ ਐਂਟਰੀਆਂ? ਕ੍ਰਿਪਟੂ ਜੰਤਰ ਮਾਊਂਟ ਕਰੋ। ਸਭ ਮਾਊਂਟ। UUID ਰਾਹੀਂ ਮਾਊਂਟ। ਕ੍ਰਿਪਟੂ ਜੰਤਰ ਮਾਊਂਟ ਕਰੋ। ਨਾਂ NAME [VARIABLE] [HINTS] NUM NUMBER_OF_SECONDS ਨੈਟਵਰਕ ਪਰੋਟੋਕਾਲ: ਨਵਾਂ MBR `%s' ਉੱਤੇ ਲਿਖਿਆ ਗਿਆ ਹੈ
 FPSWA ਨਹੀਂ ਲੱਭਿਆ ਕਮਾਂਡ ਨਹੀਂ ਦਿੱਤੀ।
 ਕੋਈ ਜੰਤਰ ਨਹੀਂ ਦਿੱਤਾ।
 ਕੋਈ ਡਿਸਕ ਕੈਸ਼ ਅੰਕੜੇ ਉਪਲੱਬਧ ਨਹੀਂ ਹਨ
 ਕੋਈ ਡਰਾਇਵ ਮੁੜ-ਮੈਪ ਨਹੀਂ ਕੀਤੀ ਗਈ ਹੈ ਅਣਜਾਣ ਫਾਇਲ ਸਿਸਟਮ ਕਿਸਮ ਖੋਜੀ ਕੋਈ ਮੇਲ ਨਹੀਂ ਕੋਈ ਪਾਥ ਨਹੀਂ ਦਿੱਤਾ।
 ਕੋਈ ਪਾਥ ਜਾਂ ਜੰਤਰ ਨਹੀਂ ਦਿੱਤਾ ਹੈ।
 ਕੋਈ ਪਿਛਲਾ ਨਿਯਮਤ ਸਮੀਕਰਨ ਨਹੀਂ ਕੋਈ ਵਰਚੁਅਲ ਜੰਤਰ ਟਰੀ ਉਪਲੱਬਧ ਨਹੀਂ ਗੈਰ-ਚੇਨ 4  ਕਮਾਂਡ ਲਈ ਲੋੜੀਦੇ ਪੈਰਾਮੀਟਰ ਨਹੀਂ।
 OS ਡਿਸਕ #num ------> GRUB/BIOS ਜੰਤਰ OS ਫਾਇਲ %s ਖੋਲ੍ਹਣ 'ਚ ਗਲਤੀ: %s ਚੋਣਾਂ: ਪਾਰਟੀਸ਼ਨ ਕਮਾਂਡ ਪਾਥ ਤੁਹਾਡੇ ਪਾਸਵਰਡ ਦਾ PBKDF2 ਹੈਸ਼ %s ਹੈ
 PORT PORT VALUE [MASK] ਪਾਰਟੀਸ਼ਨ %s: ਪਾਥ: %s
 ਪਾਥ: ਨਾ-ਉਪਲੱਬਧ ਸਿੱਧੀ ਅਤੇ ਉਲਟ ਮੈਪਿੰਗ ਵਰਤੋਂ। ਪਲੇਨਰ  ਟਿਊਨ ਚਲਾਉ। ਪੂਲ GUID: %016llx
 ਪੂਲ GUID: ਨਾ-ਮੌਜੂਦ ਪੂਲ ਨਾਂ: %s
 ਪੂਲ ਨਾਂ: ਨਾ-ਉਪਲੱਬਧ ਪੂਲ ਹਾਲਤ: ਸਰਗਰਮ ਪੂਲ ਹਾਲਤ: ਨਸ਼ਟ ਕੀਤਾ ਪੂਲ ਹਾਲਤ: ਐਕਸਪੋਰਟ ਪੂਲ ਹਾਲਤ: ਨਾ-ਉਪਲੱਬਧ ਸੰਭਾਵਿਤ ਆਰਗੂਮੈਂਟ: ਸੰਭਾਵਿਤ ਕਮਾਂਡ ਹਨ: ਸੰਭਾਵਿਤ ਜੰਤਰ: ਸੰਭਾਵਿਤ ਫਾਇਲਾਂ: ਸੰਭਾਵਿਤ ਪਾਰਟੀਸ਼ਨ: ਜਾਰੀ ਰੱਖਣ ਲਈ ਕੋਈ ਵੀ ਸਵਿੱਚ ਦੱਬੋ... xnu ਚਲਾਉਣ ਲਈ ਕੋਈ ਵੀ ਸਵਿੱਚ ਦੱਬੋ। ਚੁਣੇ ਓਪਰੇਟਿੰਗ ਸਿਸਟਮ (OS) ਵਿੱਚ ਬੂਟ ਕਰਨ ਲਈ Enter, ਬੂਟ ਕਰਨ ਤੋਂ ਪਹਿਲਾਂ ਕਮਾਂਡ ਸੋਧਣ ਲਈ `e' ਜਾਂ ਕਮਾਂਡ-ਲਾਈਨ ਲਈ `c' ਦੱਬੋ। ਬਲਾਕ ਲਿਸਟ ਪਰਿੰਟ ਕਰੋ। ਡਰਾਇਵ ਪਛਾਣ ਅਤੇ ਸੈਟਿੰਗ ਪਰਿੰਟ ਕਰੋ। ਮਨੁੱਖੀ ਪੜਨਯੋਗ ਫਾਰਮੈਟ 'ਚ ਆਕਾਰ ਪਰਿੰਟ ਕਰੋ। RAM ਕੋਲ ਫਿਰਮਵੇਅਰ ਕੋਡ ਹੈ REGEXP STRING ROM ਈਮੇਜ਼ ਮੌਜੂਦ ਹੈ। ਪੋਰਟ ਤੋਂ 16-ਬਿੱਟ ਮੁੱਲ ਪੜ੍ਹੋ। ਪੋਰਟ ਤੋਂ 32-ਬਿੱਟ ਮੁੱਲ ਪੜ੍ਹੋ। ਪੋਰਟ ਤੋਂ 8-ਬਿੱਟ ਮੁੱਲ ਪੜ੍ਹੋ। ਕੇਵਲ LENGTH ਬਾਈਟ ਪੜ੍ਹੋ। ਮੁੜ-ਚਾਲੂ ਕਰਨ ਲਈ ਫੇਲ੍ਹ ਕੰਪਿਊਟਰ ਮੁੜ-ਚਾਲੂ ਕਰੋ। ਪਾਸਵਰਡ ਮੁੜ-ਦਿਓ:  ਨਿਯਮਤ ਸਮੀਕਰਨ ਬਹੁਤ ਵੱਡੀ ਹੈ ਮੋਡੀਊਲ ਹਟਾਉ। ਇੰਵਾਇਰਨਮੈਂਟ ਵੇਰੀਬਲ ਹਟਾਉ। ਦਿੱਤੀ ਰੇਜ਼ ਵਿੱਚ ਕੋਈ ਵੀ ਮੈਮੋਰੀ ਖੇਤਰ ਹਟਾਉ। ਬੱਗ ਜਾਣਕਾਰੀ %s ਨੂੰ ਭੇਜੋ।
 ਬੱਗ ਜਾਣਕਾਰੀ <bug-grub@gnu.org> ਨੂੰ ਭੇਜੋ ਸਭ ਮੈਪਿੰਗ ਲਈ ਡਿਫਾਲਟ ਮੁੱਲ ਸੈੱਟ ਕਰੋ। ਜੰਤਰ ਜਾਣਕਾਰੀ ਲਵੋ। GRUB ਨੂੰ ਮੁੜ-ਪ੍ਰਾਪਤ ਕਰਨ ਲਈ `go' ਚਲਾਉ। ਸਕਿੰਟ ਆਕਾਰ SOURCE|-u UUID|-a|-b STRING ਸ਼ਨਿੱਚਰਵਾਰ `Hello World' ਕਹੋ। ਜੰਤਰ ਫਾਇਲ ਨਾਲ ਲੱਭੋ। ਫਾਇਲ-ਸਿਸਟਮ UUID ਰਾਹੀਂ ਜੰਤਰ ਲੱਭੋ। ਫਾਇਲ-ਸਿਸਟਮ ਲੇਬਲ ਰਾਹੀਂ ਜੰਤਰ ਲੱਭੋ। ਜੰਤਰ ਨੂੰ ਬਸ ਉੱਤੇ ਇਸ ਦੀ ਸਥਿਤੀ ਨਾਲ ਚੁਣੋ। ਤਕਨੀਕੀ ਪਾਵਰ ਪਰਬੰਧ ਸੈੱਟ ਕਰੋ
(1=ਘੱਟ, ..., 254=ਵੱਧ, 255=ਬੰਦ) ਆਟੋਮੈਟਿਕ ਅਕੁਟਿਕ ਪਰਬੰਧ ਸੈੱਟ ਕਰੋ
(0=ਬੰਦ, 128=ਸ਼ਾਤ, ..., 254=ਤੇਜ਼)। RSDP, XSDT ਅਤੇ RSDT ਦਾ OEMID ਸੈੱਟ ਕਰੋ। ਪਹਿਲੇ ਲੱਭੇ ਜੰਤਰ ਲਈ ਵੇਰੀਬਲ ਸੈੱਟ ਕਰੋ। ਇੰਵਾਇਰਨਮੈਂਟ ਵੇਰੀਬਲ ਸੈੱਟ ਕਰੋ। RSDP, XSDT ਅਤੇ RSDT ਲਈ ਕਰੀਏਟਰ ਖੇਤਰ ਦਿਉ। RSDP, XSDT ਅਤੇ RSDT ਲਈ ਕਰੀਏਟਰ ਰੀਵਿਜ਼ਨ ਸੈੱਟ ਕਰੋ ਡੀਬੱਗ ਇੰਵਾਇਰਨਮੈਂਟ ਵੇਰੀਬਲ ਦਿਉ। ਸਲੀਪ ਮੋਡ ਲਈ ਡਰਾਇਵ ਸੈੱਟ ਕਰੋ। ਸਟੈਂਡਬਾਏ ਮੋਡ ਲਈ ਡਰਾਇਵ ਸੈੱਟ ਕਰੋ। ਰੂਟ ਜੰਤਰ ਸੈੱਟ ਕਰੋ। ਸਟੈਂਡਬਾਏ ਸਮਾਂ-ਸਮਾਪਤੀ ਸੈੱਟ
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). ਗਰਬ ਲਈ ਮੂਲ ਬੂਟ ਮੇਨੂ ਐਂਟਰੀ ਸੈੱਟ ਕਰੋ, ਕੇਵਲ ਅਗਲੇ ਬੂਟ ਲਈ ਹੀ। ਗਰਬ ਲਈ ਮੂਲ ਬੂਟ ਮੇਨੂ ਐਂਟਰੀ ਸੈੱਟ ਕਰੋ। ਸੀਰੀਅਲ ਯੂਨਿਟ ਦਿਉ। ਯੂਜ਼ਰ ਪਾਸਵਰਡ (PBKDF2) ਦਿਉ।  ਯੂਜ਼ਰ ਪਾਸਵਰਡ ਦਿਉ (ਪਲੇਨ-ਟੈਕਸਟ)। ਗ਼ੈਰ-ਸਿਫਾਰਸ਼ੀ ਅਤੇ ਅਸੁਰੱਖਿਅਤ ਯੂਜ਼ਰ ਇੰਪੁੱਟ ਨਾਲ ਵੇਰੀਬਲ ਸੈੱਟ ਕਰੋ। ਵੇਰੀਬਲ ਸੈੱਟ। ACPI ਜਾਣਕਾਰੀ ਵੇਖੋ। APM ਜਾਣਕਾਰੀ ਵੇਖਾਉ। ਮੱਦਦ ਸੁਨੇਹਾ ਵੇਖਾਉ। ਹੋਰ ਵੇਰਵੇ ਸਮੇਤ ਜਾਣਕਾਰੀ ਲਈ ਲੰਮੀ ਸੂਚੀ ਵੇਖੋ। ਲੋਡ ਕੀਤੇ ਮੋਡੀਊਲ ਵੇਖਾਉ। ਮੈਮੋਰੀ ਸਮੱਗਰੀ ਵੇਖਾਉ। ਫਾਇਲ ਜਾਂ ਮੈਮੋਰੀ ਦੀ ਕੱਚੀ ਸਮੱਗਰੀ ਵੇਖਾਉ। ਫਾਇਲ ਦੀ ਸਮੱਗਰੀ ਵੇਖੋ। ਮੌਜੂਦਾ ਮੈਪਿੰਗ ਵੇਖੋ। ਇਹ ਸੁਨੇਹਾ ਵੇਖਾਉ। ਕੇਵਲ ਵਰਜਨ 1 ਟੇਬਲ ਹੀ ਵੇਖੋ। ਕੇਵਲ ਵਰਜਨ 2 ਅਤੇ ਵਰਜਨ 3 ਟੇਬਲ ਹੀ ਵੇਖੋ। ਬੰਦ ਕਰਨਾ ਫੇਲ੍ਹ ਹੈ ਫਾਇਲ ਦੇ ਸ਼ੁਰੂ ਤੋਂ ਆਫਸੈੱਟ ਬਾਈਟ ਛੱਡੋ। ਸਲਾਟ %d ਖੁੱਲ੍ਹੀ ਹੈ
 ਫਾਇਲ-ਨਾਂ ਦਿਉ। ਵਰਤਣ ਲਈ ਹੈਸ਼ ਦਿਉ। ਲੋਡ ਕਰਨ ਲਈ ਇੱਕ ਜਾਂ ਵੱਧ ਫੋਂਟ ਫਾਇਲਾਂ ਦਿਉ। ਇੰਪੁੱਟ ਫਾਇਲਾਂ ਦੀ ਗਿਣਤੀ ਦਿਉ। ਸਫ਼ਲ ਐਤਵਾਰ ਲਾਈਨ %u ਉੱਤੇ ਸੰਟੈਕਸ ਗਲਤੀ
 ਟਾਰਗੇਟ USB ਸਹਿਯੋਗ ਟੈਸਟ ਕਰੋ। ਵਿਡੀਓ ਸਬ-ਸਿਸਟਮ ਟੈਸਟ। ਕੇਵਲ ਟੈਕਸਟ  ਫਾਇਲਾਂ ਇਕੋ ਜੇਹੀਆਂ ਹਨ।
 ਇਹ ਐਂਟਰੀ ਨੂੰ ਕਿਸੇ ਵੀ ਯੂਜ਼ਰ ਵਲੋਂ ਬੂਟ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ। ਵੀਰਵਾਰ ਸਿਸਟਮ ਫਾਇਲ-ਨਾਂ ਨੂੰ ਗਰਬ ਵਿੱਚ ਬਦਲੋ। ਲਾਈਨਾਂ ਨੂੰ ਮੌਜੂਦਾ ਸੈਟਿੰਗ ਨਾਲ ਅਨੁਵਾਦ ਕਰੋ। ਮੰਗਲਵਾਰ ਯੂਜ਼ਰ ਪਾਸਵਰਡ USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 ਪਾਈਪ ਬਣਾਉਣ ਲਈ ਅਸਮਰੱਥ: %s %s ਤੋਂ ਸਟਰੀਮ ਖੋਲ੍ਹਣ ਲਈ ਅਸਮਰੱਥ: %s ਪੂਲ ਹਾਲਤ ਲੈਣ ਲਈ ਅਸਮਰੱਥ ਅਣ-ਕੰਪਰੈਸ ਡਾਟਾ। ਚੈਕ-ਸਮ ਕਰਨ ਤੋਂ ਪਹਿਲਾਂ ਫਾਇਲ ਅਣ-ਕੰਪਰੈਸ ਕਰੋ। ਅਣਜਾਣ ਐਡਰੈਸ ਕਿਸਮ %d
 ਅਣਜਾਣ ਕਮਾਂਡ `%s'।
 ਅਣਜਾਣ ਕੰਪਰੈਸ਼ਨ ਫਾਰਮੈਟ %s ਅਣਜਾਣ ਇੰਕੋਡਿੰਗ ਅਣਜਾਣ ਸਿਸਟਮ ਗਲਤੀ ਅਣਜਾਣ ਵਿਡੀਓ ਮੋਡ  ਅਣਜਾਣ ਵਰਚੁਅਲ ਜੰਤਰ ਕਿਸਮ: %s
 ਨਾ ਮਿਲਦੇ ( ਜਾਂ \( ਨਾ ਮਿਲਦੇ ) ਜਾਂ \) ਨਾ ਮਿਲਦੇ [ ਜਾਂ [^ ਨਾ-ਮਿਲਦੇ \{ ਗ਼ੈਰ-ਸਹਾਇਕ ਈਮੇਜ਼ ਫਾਰਮੈਟ ਵਰਤੋਂ: ਵਰਤੋ: %s -o OUTPUT CKBMAP_ARGUMENTS...\n ਵਰਤੋਂUsage: %s ਜੰਤਰ
 ਵਰਤੋ: %s [INFILE [OUTFILE]]
 ਵਰਤੋ: %s [OPTION] MENU_ENTRY\n ਵਰਤੋ: %s [OPTION]\n CD-ROM ਨੂੰ ਰੂਟ ਵਜੋਂ ਵਰਤੋਂ। ਸੀਰੀਅਥ ਕਨਸੋਲ ਵਰਤੋਂ। VARNAME ਵਰਬੋਸ ਗਿਣਤੀ। ਵਰਜਨ %u.%u
32-ਬਿੱਟ CS = 0x%x, len = 0x%x, ਆਫਸੈਟ = 0x%x
16-ਬਿੱਟ CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 ਵਰਚੁਅਲ ਜੰਤਰ ਡੀ-ਗਰੇਡ ਕੀਤਾ ਵਰਚੁਅਲ ਜੰਤਰ ਖਰਾਬ ਹੈ ਵਰਚੁਅਲ ਜੰਤਰ ਆਫਲਾਈਨ ਹੈ ਵਰਚੁਅਲ ਜੰਤਰ ਆਨਲਾਈਨ ਹੈ ਵਰਚੁਅਲ ਜੰਤਰ ਹਟਾਇਆ ਗਿਆ WIDTHxHEIGHT ਦਿੱਤੇ ਸਕਿੰਟ ਲਈ ਉਡੀਕੋ ਜੀ। ਚੇਤਾਵਨੀ: ਬੁੱਧਵਾਰ Windows NT/2000/XP (ਲੋਡਰ) Windows Vista/7 (ਲੋਡਰ) ਪੋਰਟ ਉੱਤੇ 16-ਬਿੱਟ ਮੁੱਲ ਲਿਖੋ। ਪੋਰਟ ਉੱਤੇ 32-ਬਿੱਟ ਮੁੱਲ ਲਿਖੋ। ਪੋਰਟ ਉੱਤੇ 8-ਬਿੱਟ ਮੁੱਲ ਲਿਖੋ। Xen ਹਾਈਪਰਵਾਈਜ਼ਰ, ਵਰਜਨ %s YUV  ਤੁਹਾਨੂੰ ਘੱਟੋ-ਘੱਟ ਇੱਕ ਕਮਾਂਡ ਦੇਣਾ ਪਵੇਗੀ।
 ਤੁਹਾਨੂੰ `SystemPartition' ਅਤੇ `OSLoader' ਖੁਦ ਸੈੱਟ ਕਰਨਾ ਪਵੇਗਾ। [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [ਫਾਇਲ] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME ਫਾਇਲ। [-e|-n] ਲਾਈਨ [-f ਫਾਇਲ] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] ਨਾਂ [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [ਫਾਇਲ ...] [-m (stretch|normal)] ਫਾਇਲ [ADDR|comUNIT][,SPEED] [ARG] [CARD] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [NUMBER:]VARNAME [NUM] [OPTIONS...] [ਚੋਣਾਂ] [OPTIONS] ਡਿਸਕ [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [ਪਾਥ] [ਪੈਟਰਨ ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] ਅਸੈੱਸ ਪਾਬੰਦੀ ਹੈ addr ਐਡਰੈਸ ਨਹੀਂ ਲੱਭਿਆ ਡਿਸਕ `%s' ਤੋਂ ਬਾਹਰ ਪੜਨ ਜਾਂ ਲਿਖਣ ਦੀ ਕੋਸ਼ਿਸ਼ ਉਪਲੱਬਧ RAM ਉਪਲੱਬਧ ਫਾਰਮੈਟ: base_addr = 0x%llx, ਲੰਬਾਈ = 0x%llx, %s
 base_addr = 0x%llx, ਲੰਬਾਈ = 0x%llx, type = 0x%x
 blocklist FILE %s ਉੱਤੇ ਫਾਇਲ-ਸਿਸਟਮ ਜਾਣਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ ਕਮਾਂਡ `%s' ਲੱਭੀ ਨਹੀਂ ਜਾ ਸਕਦੀ। ਇੰਕ੍ਰਿਪਟ ਕੀਤੇ ਵਾਲੀਅਮ `%s' ਨੂੰ ਮਾਊਂਟ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ: %s `%s' ਨੂੰ ਖੋਲ੍ਹਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ: %s ਫਾਇਲ %s, ਇੰਡੈਕਸ %d ਖੋਲੀ ਨਹੀਂ ਜਾ ਸਕਦੀ: ਗਲਤੀ %d ਕਰਨਲ ਈਮੇਜ਼ ਕੰਪਰੈਸ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ %s ਲਈ ਗਰਬ ਡਰਾਇਵ ਲੱਭੀ ਨਹੀਂ ਜਾ ਸਕਦੀ। ਆਪਣੀ device.map ਵੇਖੋ %s ਲਈ ਜੰਤਰ ਲੱਭਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ ਹੈ (ਕੀ /dev ਮਾਊਂਟ ਹੈ?) OS ਫਾਇਲ `%s' ਖੋਲ੍ਹੀ ਨਹੀਂ ਜਾ ਸਕਦੀ: %s `%s' ਖੋਲ੍ਹਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ: %s `%s' ਨੂੰ ਠੀਕ ਤਰ੍ਹਾਂ ਪੜਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ `%s' ਨੂੰ ਪੜ੍ਹਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ: %s ਫਾਇਲ %s ਦਾ ਨਾਂ %s ਬਦਲਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ ਅਸਲੀ ਡਾਇਰੈਕਟਰੀ ਰੀ-ਸਟੋਰ ਨਹੀਂ ਕੀਤੀ ਜਾ ਸਕਦੀ CD-ROM ਉੱਤੇ ਲਿਖਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ `%s' ਉੱਤੇ ਲਿਖਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ: %s stdout ਲਈ ਲਿਖਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ: %s ਕਾਰਡ ਨਹੀਂ ਲੱਭਿਆ cat FILE ਚੈਕਸਮ ਜਾਂਚ ਫੇਲ੍ਹ ਹੋਈ cmp FILE LOCAL comUNIT[,SPEED] ਕੁਨੈਕਸ਼ਨ ਤੋਂ ਇਨਕਾਰ ਕੀਤਾ ਕੁਨੈਕਸ਼ਨ ਸਮਾਂ-ਸਮਾਪਤ ਗੂੜੇ ਫੋਂਟ ਵਿੱਚ ਬਦਲੋ core.img ਵਰਜਨ ਮਿਲਦਾ ਨਹੀਂ ਹੈ geom ਖੋਲ੍ਹਿਆ ਨਹੀਂ ਸਕਿਆ ELI ਮੇਟਾਡਾਟਾ ਪੜਿਆ ਨਹੀਂ ਜਾ ਸਕਿਆ cp FILE LOCAL crc FILE ਕ੍ਰਿਪਟੋਗਰਾਫਿਕ ਗਲਤੀ ਨੰਬਰ %d cygwin_conv_path() ਫੇਲ੍ਹ ਹੈ ਜੰਤਰ ਮੈਪ ਜੇ ਮੌਜੂਦ ਹੋਵੇ ਤਾਂ ਹਟਾ ਦਿਉ ਟਿਕਾਣਾ ਵਰਤਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ ਹਿੰਟਿੰਗ ਬੰਦ ਹੈ ਡਿਸਕ `%s' ਨਹੀਂ ਲੱਭੀ ਡਿਸਕ ਮੌਜੂਦ ਨਹੀਂ ਹੈ, ਪਾਰਟੀਸ਼ਨ ਜੰਤਰ %s ਉੱਤੇ ਵਾਪਸ ਆਇਆ ਜਾ ਰਿਹਾ ਹੈ ਜੰਤਰ ਵਿੱਚ ਫਾਇਲ-ਸਿਸਟਮ ਲਈ ਜਾਂਚ ਨਾ ਕਰੋ LED ਹਾਲਤ ਅੱਪਡੇਟ ਨਾ ਕਰੋ ਸਮਾਪਤ enter: ਬੂਟ, `e': ਚੋਣਾਂ, `c': ਕਮਾਂਡ-ਲਾਈਨ ਗਲਤੀ: %s
 ਪਾਸਵਰਡ ਪੜ੍ਹਨ ਲਈ ਫੇਲ੍ਹ ਹੈ ਗਲਤ ਖਰਾਬ RAM (BadRAM) ਫਾਇਲ `%s' ਨਹੀਂ ਲੱਭੀ ਫਾਇਲ-ਨਾਂ ਦੀ ਲੋੜ ਸੀ ਫਾਇਲ ਸਿਸਟਮ `%s' ਲੇਬਲ ਲਈ ਸਹਾਇਕ ਨਹੀਂ ਹੈ ਫਾਇਲ-ਸਿਸਟਮ `%s' ਬਲਾਕ-ਲਿਸਟ ਲਈ ਸਹਾਇਕ ਨਹੀਂ ਹੈ ਫਿਰਮਵੇਅਰ ਈਮੇਜ਼ ਬਹੁਤ ਵੱਡਾ ਹੈ ਆਟੋ-ਹਿੰਟ ਲਈ ਮਜ਼ਬੂਰ ਫਾਰਮੈਟ ਵਿੱਚ ਈਮੇਜ਼ ਤਿਆਰ ਕੀਤਾ ਸੰਖੇਪ ਵਰਤੋਂ ਸੁਨੇਹਾ ਦਿਉ ਇਹ ਮੱਦਦ ਸੂਚੀ ਦਿਉ ਦਿੱਤਾ ਆਰਗੂਮੈਂਟ ਸਿਸਟਮ ਜੰਤਰ ਹੈ ਨਾ ਕਿ ਪਾਥ grub> ਸਕਿੰਟ ਸਕਿੰਟਾਂ ਲਈ ਰੋਕੋ (ਮੂਲ 3600) hex FILE ਲੋਡ ਕਰਨ ਦੇ ਦੌਰਾਨ ਬਿਟਮੈਪ ਅਣਡਿੱਠਾ ਕਰੋ ਭਾਵੇਂ ਸਮੱਸਿਆ ਆਵੇ ਤਾਂ ਵੀ ਇੰਸਟਾਲ ਕਰੋ ਗਲਤ PBKDF2 ਪਾਸਵਰਡ ਗਲਤ ਫਾਇਲ ਨਾਂ `%s' ਗਲਤ ਫੋਂਟ ਰੇਜ਼ ਗਲਤ ਲਾਈਨ ਫਾਰਮੈਟ: %s ਗਲਤ ਪੈਰਾਮੀਟਰ %s ਗਲਤ ਵੇਰੀਬਲ ਨਾਂ `%s' ਗਲਤ ਵਿਡੀਓ ਮੋਡ ਹਦਾਇਤ `%s' ioctl GET_ARRAY_INFO ਗਲਤੀ: %s ioctl GET_DISK_INFO ਗਲਤੀ: %s ioctl RAID_VERSION ਗਲਤੀ: %s ls PATH lzop ਫਾਇਲ ਨਿਕਾਰਾ ਹੈ ਨਾ-ਮੌਜੂਦ `%c' ਨਿਸ਼ਾਨ ਮੋਡੀਊਲ `%s' ਲੋਡ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ ਮੋਡੀਊਲ ਲੋਡ ਨਹੀਂ ਹੈ ਨਾਂ ਈਮੇਜ਼ ਅਤੇ ਮਾਊਂਟ-ਪੁਆਇੰਟ ਚਾਹੀਦਾ ਹੈ APM ਨਹੀਂ ਲੱਭਿਆ DHCP ਜਾਣਕਾਰੀ ਨਹੀਂ ਲੱਭੀ ਕੋਈ ਕਮਾਂਡ ਨਹੀਂ ਦਿੱਤੀ ਕੋਈ ਡਿ-ਕ੍ਰਿਪਟਸ਼ਨ ਕੁੰਜੀ ਉਪਲੱਬਧ ਨਹੀਂ ਇੰਝ ਦਾ ਕੋਈ ਭਾਗ ਨਹੀਂ ਕੋਈ ਢੁੱਕਵਾਂ ਵਿਡੀਓ ਮੋਡ ਨਹੀਂ ਲੱਭਿਆ ਕੋਈ ਸਿੰਬਲ ਟੇਬਲ ਨਹੀਂ ਕੋਈ ਟਰਮੀਨਲ ਨਹੀਂ ਦਿੱਤਾ। ਕੋਰ ਈਮੇਜ਼ ਵਿੱਚ ਕੋਈ ਟਰਮੀਨੇਟਰ ਨਹੀਂ ਹੈ ਡਾਇਰੈਕਟਰੀ ਨਹੀਂ ਹੈ ਕੋਈ ਪ੍ਰਾਈਮਰੀ ਪਾਰਟੀਸ਼ਨ ਨਹੀਂ ਨਿਯਮਤ ਫਾਇਲ ਨਹੀਂ ਇੱਕ ਆਰਗੂਮੈਂਟ ਚਾਹੀਦੀ ਸੀ ਮੈਮੋਰੀ ਖਤਮ ਹੋਈ ਆਉਟਪੁੱਟ ਫਾਇਲ ਦੇਣਾ ਲਾਜ਼ਮੀ ਹੈ ਓਵਰਫਲੋ ਖੋਜਿਆ ਪਾਸਵਰਡ ਮੇਲ ਨਹੀਂ ਖਾ ਰਿਹਾ ਬੂਟ ਆਟੋ-ਸੰਰਚਨਾ ਕਰੋ ਫਿਜ਼ੀਕਲ ਵਾਲੀਅਮ %s ਨਹੀਂ ਲੱਭਿਆ ਫਾਇਲ ਦਾ ਅੰਤ ਅਚਾਨਕ ਹੈ। ਫਾਇਲ %s ਦਾ ਅਧੂਰਾ ਅੰਤ CapsLock ਸਵਿੱਚ ਦੱਬੋ Insert ਸਵਿੱਚ ਦੱਬੋ NumLock ਸਵਿੱਚ ਦੱਬੋ ScrollLock ਸਵਿੱਚ ਦੱਬੋ SysRq ਦੱਬੋ ਖੱਬੀ alt ਦੱਬੋ ਖੱਬੀ ctrl ਦੱਬੋ ਖੱਬੀ ਸਿਫਟ ਦੱਬੋ ਸੱਜੀ alt ਦੱਬੋ ਸੱਜੀ ctrl ਦੱਬੋ ਸੱਜੀ ਸਿਫਟ ਦੱਬੋ ਪਰੋਗਰਾਮ ਵਰਜਨ ਛਾਪੋ ਵਰਜਨ ਜਾਣਕਾਰੀ ਛਾਪੋ ਅਤੇ ਬੰਦ ਕਰੋ ਇਹ ਸੁਨੇਹਾ ਛਾਪੋ ਅਤੇ ਬੰਦ ਕਰੋ ਵੇਰਵੇ ਸਮੇਤ ਸੁਨੇਹੇ ਛਾਪੋ। ਰਾਖਵੀਂ RAM TFP ਸਰਵਰ ਲਈ ਰੂਟ ਡਾਇਰੈਕਟਰੀ ਰੂਟ ਲੂਪ ਖੋਜਿਆ set [NAME=VALUE ...] capslock ਮੋਡ ਸੈੱਟ ਕਰੋ ਫੋਂਟ ਫੈਮਲੀ ਨਾਂ ਦਿਓ ਫੋਂਟ ਰੇਜ਼ ਦਿਓ ਫੋਂਟ ਆਕਾਰ ਸੈੱਟ ਕਰੋ numlock ਮੋਡ ਸੈੱਟ ਕਰੋ scrolllock ਮੋਡ ਸੈੱਟ ਕਰੋ ਪਰੋਗਰਾਮ ਨਾਂ ਸੈੱਟ ਕਰੋ ਸਾਈਜ਼ stretch|normal ਸਿੰਬਲ `%s' ਨਹੀਂ ਲੱਭਿਆ ਆਰਜ਼ੀ ਟਰਮੀਨਲ `%s' ਨਹੀਂ ਲੱਭਿਆ `%s' ਦਾ ਆਕਾਰ ਬਹੁਤ ਵੱਡਾ ਹੈ `%s' ਦਾ ਆਕਾਰ ਬਹੁਤ ਛੋਟਾ ਹੈ ਦੋ ਆਰਗੂਮੈਂਟ ਦੀ ਲੋੜ ਹੈ ਕਿਸਮ ਫਾਇਲ ਦਾ ਅਸਧਾਰਨ ਅੰਤ ਅਣਜਾਣ ਆਰਗੂਮੈਂਟ `%s' ਅਣਜਾਣ ਕੰਪਰੈਸ਼ਨ %d
 ਅਣਜਾਣ ਜੰਤਰ ਕਿਸਮ %s
 ਅਣਜਾਣ ਫਾਇਲ ਸਿਸਟਮ ਅਣਜਾਣ regexp ਗਲਤੀ ਅਣਜਾਣ ਟਾਰਗੇਟ ਫਾਰਮੈਟ %s
 ਬੇਪਛਾਣ ਨੰਬਰ unset [NAME ...] ਗ਼ੈਰ-ਸਹਾਇਕ ਰੇਡ ਵਰਜਨ: %d.%d ਗ਼ੈਰ-ਸਹਾਇਕ gzip ਫਾਰਮੈਟ ਗ਼ੈਰ-ਸਹਾਇਕ ਸੀਰੀਅਲ ਪੋਰਟ ਸਪੀਡ ਗ਼ੈਰ-ਸਹਾਇਕ ਸੀਰੀਅਲ ਪੋਰਟ ਸਟਾਪ ਬਿੱਟ ਨੰਬਰ ਗ਼ੈਰ-ਸਹਾਇਕ ਸੀਰੀਅਲ ਪੋਰਟ ਸ਼ਬਦ ਲੰਬਾਈ ਵੇਰੀਬਲ `%s' ਸੈਟ ਨਹੀਂ ਹੈ। xnu_uuid ਜੰਤਰ ਤੁਹਾਨੂੰ ਪਹਿਲਾਂ ਕਰਨਲ ਲੋਡ ਕਰਨ ਦੀ ਲੋੜ ਹੈ।                                                                                                                                                                           boot/grub/locale/pl.mo                                                                              0000600 0001750 0001750 00000322163 13417732100 0013644 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                       x     #    G      _  #   _      _     _     _     `  $   `     =`  6   Q`     `     `  	   `     `     `     `     `     `     a  .    a  .   Oa  %   ~a     a     a    a    b    c     d  7   d  F   e  v   be  +   e     f      f     7f  !   If     kf  ,   f     f     f  $   f     g  *   #g     Ng     ag     ig     yg     g  
   g  	   g     g  ,   g  ,   h  ,   <h  '   ih  -   h      h  (   h  (   	i  )   2i     \i     |i     i     i     i  "   i  4   i     j     j  7   (j     `j  1   ij     j     j  %   j  '   j  %   k  '   1k     Yk     ^k     `k     ~k     k     k     k     k     k     k     k     l     l     (l  3   5l     il  $   ol     l     l     l     l     l     l     m  -   )m     Wm  !   tm     m     m     m  #   m      n  `   n  Z   n     Do     _o     {o     }o     o     o     o     o     o     o     o     p     %p     ?p     [p     hp     p     p     p     p     p     p     p  %   p     	q     (q     <q     Sq     nq     q     q     q     q  *   q  3   q     .r  "   Ir  8   lr     r     r  	   r  #   r     s      s     3s     Ss     ss     s  )   s     s     s      t  P   t     ot     t  H   t  &   t     	u     !u  !   (u  ,   Ju     wu     u     u  	   u  !   u  *   u     u     v     (v     :v     Tv  $   lv     v     v     v     v     v     w  
   %w  
   0w     ;w  1   Nw     w     w     w     w  3   w  >   x  $   Cx     hx     x     x     x     x     x  +   y     /y     Ky  #   iy     y     y  $   y     y     z  '   z  9   Fz     z     z  z   z     2{     9{  8   M{     {  
   {     {     {     {     {     |  +   |     |     |     |  "   }     5}     F}  (   W}     }     }     }     }     }     }  "   }  0   ~     A~     F~     U~  7   d~     ~     ~     ~     ~     ~     ~  0   ~          /     A     W  2   n  %               *     6     +   M     y            !   {  d     e     d   h  i   ͂  o   7  H                       *     =     S     m       #             ߄       1   	  )   ;     e     l     n       /             х       5        ;     Z  K   v          ކ                           '   $  P   L            	   ȇ     ҇     Շ       '     +   0     \     m  )             ʈ                    0     F  $   [            "        Љ     ҉     މ  (               "     +   A  -   m               Ê     Ԋ       O        F     \     t            %        Ӌ  )     !     "   >     a     }  +             ׌       !             7     P     \      s                                4         U     t                    Ԏ                #  !   D     f  4     M     2        6     P  *   n  8        Ґ     ߐ               %  3   =  $   q  +             ב                    "      >     _     }            D               7      ;   8     t       !        Փ       s                       Ŕ     ؔ                    0     4     :                    Ö     ʖ     ֖            '   %  
   M     X     g     }                      H   ͗          )     E     U  %   d            #                       $      ;     \      {       "     (   ̙       %        7  2   Q            #     *   ʚ               
  #        3     8  	   J  	   T  "   ^  ;     #     <             ,     J  .   X  	          `          !     )   ;     e     i     o     w  q             
     !     0     G     Z     p            "   Þ                    0     G     ]     q       #        ß       g        d            -         N  !   b       "     '     Q        2     N     h     |                    ڢ               0     L     d      r                     ܣ                 -   <     j       "     b     )        H     ^     v  ,             ץ  	   ܥ  "     %   	     /     4     I     P  &   Y  )          ^          $   6  %   [       ^   4  _     }        q  )   (  '   R  >   z  D     !     '      -   H  #   v       )          )     )   +  ,   U                    ֬       E     $   H  A   m  )        ٭               -      L     m  q          :        L     j     y               ͯ            0        E     c     x  )     &        ߰               *  )   F     p  %     %     ,   ̱  '     :   !     \  -   {       .               '     $   7  "   \                 *               )     o               6   ]            0         ε  !     "     #   4     X     j            !        ߶  
           <     %   W  >   }          ŷ     ɷ     Ϸ            d     *     0     6   ܸ               )     >     R     X  0   r       !        ع       $        ,     E     \     z       $     "   ͺ  $             *      >     _     t                         һ       '        /     O  $   h  +     "        ܼ  )                  =     ]     r  '             ͽ       <         ;     \     d     w  m                   5     O     h  +     3     1          '   "  -   J     x  '     '     .     	         
     &     ?     [     w                                *     ?   J  B     p        >  /               .   $  O   S  )               	          5        P     b     z            :                   *     0     C     J     Y     b                      	                                 1     8     ?  
   M  
   X  	   c     m  !   s  )                         F   "  N   i       "               -      -   .  $   \  #     0     6                  .  (   <  1   e  )               !        	           >  %   V     |  &                     7     .   H  4   w                           %   .     T     i     ~                           ,        /     >     N     j     }       #               B        @     \     |                 &             !     /     8     V  &   p                      ;     V   *  "     &     !                  	  /   '  H   W  F     w     N   _  (               I     $   I  '   n       %                         $     '   :  *   b                 J             5     P  -   d  +          $          "     +     J   A  %                "              !     B     \     s                      %             +     I  %   f                           [        B  !   V     x                                             )     ?     Y     v                                        ,  1   L     ~                                1          0        5     J  !   `       "                                 '     <     H     W     g     x                 &                       6     T  '   i  &          L             0  !   D     f                                                #   .  #   R  $   v            &          !             (     =     B     Q  	   g  7   q       %     [     w   E  7     K     #   A  /   e                 &     U     @   i  Q                  +  +   @     l  R     L     .   )     X     o  F   t                              .      A     b     w       2     !     #        %     9     Q     b                           (     #   8     \     u            )               '     '   @  '   h       0               -     8   G            !                     .        L  !   j  B     E     B     }  X  .     "        (     E     d  /   z       >     	     	          
   &  %   1     W  ,   n  #          .     5     %   0     V     [  U  m  <    U        V  ?   q  \          7          /        &  0   F  (   w  9           "     3     #   R  3   v                      (        $     0     @  -   \  2     -     #     .     '   >  &   f  &     &               
             (  #   4  4   X            ;     	     7     ;   #     _  :   b  >     :     >     
   V     a     c     ~  *                    #             #     4     E     U  7   g       9                      (    :    Q !   j @    .    !        $   >    c )   }     m   F `           5    U    W    [    u    z     !    #        -    %   ' -   M    {             #                    +   4 &   `     "    #                   %    = 4   Y 8    #    9    J   %    p $    
    #               	 &   #	    J	    f	 7   x	     	 %   	 .   	 k   &
 "   
 "   
 K   
 &   $    K    a #   m G            "    
    2   ! 0   T                     '           '    ; #   Z    ~                 8       2    B &   Q    x ?    H    /   !    Q    k     !    ,        7    *   > +   i 4        !    ,    .   9 1   h <    W    (   / )   X        9 0   O S    A    
       !    .    H    a    $ A   @     '                    :       H    \ !   x             $    )   
    4    9    K B   _                         1       *    <    J #   ^ B    /            ,    ;   H 5    /            "               /        ^ v                        &       3    I )   g '            =    A   -     o     w     y       2          #     !   
! @   ,!    m! $   ! O   ! &   " #   (" %   L"    r"    v"    |" 
   " 2   " c   " )   ##    M# 	   ]#    g# $   j#    # 2   # 3   #    $    $$ 1   ?$    q$    $    $    $    $ !   $    % ,   ;%    h%    % /   %    %    %    % .   %    &    & .   "& 8   Q& ?   & !   &    &    & !   ' %   A' y   g' "   ' '   ( )   ,(    V( &   t( K   ( )   ( 9   ) ;   K) ;   ) (   ) &   ) :   * %   N*    t* %   * %   *    *    *    +    -+ $   I+    n+    + )   + (   + "   +    , J   6, #   ,    ,    ,    ,    ,    -    *- )   E- +   o- !   -    - @   - Y   . 9   x.     .    . ,   . ?    /    `/    w/     /    /     / K   / )   @0 /   j0 "   0    0    0    0    1 &   +1 (   R1 %   {1    1    1 "   1 :   1    2    $2 W   ,2 O   2 &   2    2 %   3    A3 '   Z3    3    4 #   %4    I4    ]4    t4    4    4    4    4    4 )  4   6    7    .7    G7    U7 *   g7    7 $   7 6   7    8    8 $   18    V8    \8    y8    8 !   8 P   8    9    9    19    G9 *   \9    9    9 (   9 !   9 ,   :    /:    >: &   U: (   |: .   :    : $   : +   ;    2; -   I;    w; :   ;    ;    ; $   ; 1   <    P<    R< 	   e<    o<    <    <    < 
   < ;   < Y   = ?   ^= ]   =    = !   >    0> ,   =>    j>    y> `   >    >    	? ,   )?    V?    Z?    `?    i?    |?    @    @    /@    ?@    X@    k@    @ $   @    @ (   @    	A    !A    =A    QA    eA    {A    A    A *   A .   A -   B    4B    B !   C &   C /   C    D '   *D    RD -   mD 8   D ]   D #   2E    VE    vE    E    E +   E '   E +   F '   >F *   fF &   F !   F    F ,   F    "G    ?G -   VG    G    G    G    G 4   G !   H (   9H 7   bH h   H 7   I !   ;I    ]I !   pI =   I    I    I    I ,   I *   ,J    WJ    _J    wJ    }J 9   J 0   J !   J x   K $   K 3   K 7   K    L y   M |   |M    M    N -   O 3   O a   O _   TP "   P 3   P -   Q    9Q '   YQ 5   Q     Q +   Q )   R ,   .R ,   [R     R $   R    R    R    	S     S P   S 4   T     @T '   aT &   T +   T ,   T    	U    (U &   U \   U D   NV    V    V    V    V    V %   W    =W B   ZW *   W    W     W 2   X 0   9X    jX    X    X $   X *   X    Y 0   1Y 0   bY 7   Y 2   Y F   Y &   EZ +   lZ    Z ?   Z    Z    Z 7   [ -   O[ $   }[    [ *   [    [ 0   [    )\ 	   0\ 5   :\    p\    \    ] 2   ]    $^    &^ -   *^     X^ ,   y^ 2   ^ 2   ^    _     #_ !   D_ 3   f_ &   _    _    _    _ 9   _ ?   8` <   x`    `    `    ` 6   ` !   `    !a s   5a ;   a 1   a L   b    db    kb    ~b    b    b $   b >   b %   c 7   Bc    zc    c )   c    c    c    d    $d !   7d $   Yd (   ~d (   d    d    d )    e    *e    Ie    _e    ue    e    e    e    e *   e ,   f    <f *   [f .   f )   f 
   f /   f    g 2   5g !   hg    g     g *   g *   g '   h    Ah ?   \h    h    h    h    h    h "   i    i !   i "   i    	j =   )j 9   gj 2   j    j #   j <   k    Lk -   Sk /   k 6   k    k    k    l (   $l '   Ml (   ul '   l '   l &   l    m    0m    Mm ,   Rm 9   m >   m    m    n .   1o    `o    uo 1   o W   o -   p    Cp    `p 	   np    xp A   p    p     p    q    !q !   <q J   ^q    q "   q 
   q    q    r !   r    5r    Mr    gr    }r    r 
   r    r    r    r    r    r    s    #s    +s    7s    Ds    [s    js 
   ~s $   s 2   s    s    s .   t +   Ct S   ot J   t    u %   u    Bu    Hu +   ^u (   u    u    u 2   u :   %v    `v    nv    v -   v 5   v 3   v    )w    8w *   Sw    ~w +   w $   w 7   w    %x 3   Cx &   wx *   x &   x N   x E   ?y E   y &   y    y #   z    4z (   Rz ,   {z (   z $   z    z    { -   4{    b{    w{ .   { (   {    {    { .   |    3| %   J| #   p| &   |    | /   | d   	} *   n} ,   }    } (   }    ~ %   .~ 4   T~ +   ~    ~    ~    ~ %   ~ ,       A +   S         9    g    3   M +    %       Ӏ     '    4   " T   W N        `    4           1 A   > 7    ,         ,       3    :    O    i &    *    /   ҄            3 `   S     4   ΅     >    1   ^     *        !   ʆ (    @    (   V     7    :   ·    	 &        G    a             )   ǈ     +    !   :     \    } (       Ɖ    ߉                .     !   ˊ             # &   )    P    c                ԋ #    '       =     R    s         ,                7   /    g    {            Ǎ         I        	 R   *    }          %   Ϗ ,       "    <    Y    q                Ő    Ր            	        . 4   J -         &   Α "        *   - 0   X     T            ,   ( %   U    { %           Г                8    M :   c :    D   ٔ        6 D   K     *       Ε                 
   2 D   =     '    ^   Ȗ    ' 9    Y    %   ; +   a            Ø (   ޘ ]    D   e U         -    -   L I   z 1   Ě g    M   ^ 8            `    !   h                Ӝ     %    &   .    U    r ,            ם     %       3 #   E     i #        4   ˞ .     6   / 4   f            ͟     8       ? $   ^ 2    ,    1    /    7   E %   } &    0   ʡ O       K    k      4    )   ߢ    	 3       R     r L    I    H   *        #       `  %  q      1    W    V                5  :  v  )           n  M  p               :   %  \                    6        `   d           K      S                  {            O            r     ?      t  '  8  9  k              s            ^  o                  S  a                                  L    k  `      
              3      <          U  3    R   e  .       "      G      ,   {       ^                            <  k  B  =   Q     .   X  !  C     K                    m                      
    j           e  2                  d   
     y    0                            V  x                  #  P       )         k  A           A                 {             _            N  L                       K    F     $                       i     O                        P  (    9   	       #  '  c   0  !               I    !                                         %                       i    q        o                  h             l  z                          i    X  f         
                                       <        s        !         @        v     |                        C        ,          *    T                   w      	   -      f   R  ;                                          y           G      #   g                     1             u      D         '   /  @   q    R                O      0  D            T             A      [  ]                    L   O                  ,    }              t     )          g  .    ,          4   ]  l        q           l  >                   w  D                }     &         x          M  \              \                                     4  ?            N  o      ~      d  *      r          e      /                   X    C                                         l      v              ^                            p    r     L         %             7  3      G  f  7    .                     H  s    Z                  r                            (                   W    (          h  8  w          S              ]           n          (  u               a      d  7            c              ]                        "                j  w               7                1        t          ?   u                    Q  M                        +       Z                        h       U  /            n                      '               I           z    W                              *       =  z          {             E        4  m      j      9           Y         3          6      S    2              &              u    c  s              i    \    5       Z      b              A      Q          k           G     v  F        x                      F  o                        a      &      x  -  `  _  B  ]      1   h  s         U               J  2          -   ?  ~    T      g     L               [  &  =          <    R      2                     J               I      f      N            F            W         )                    [                  u  5           ?    _           t             P                         U              o             ;            b  N    
           $          -                   i         \  K  Y  Z                                  w       8      E  |  *            M          /      I  @     b          z                   T  |                   j     ^                   ;          I      y            J               6         n     $        $       (      H      V  b  H   "  8           D  >     %      !    "  >  1     Y     3                           .  [  $  c        :    @  m  m    H  2     l             E                 	          9    ~                     g  }    |  	      +      *              >  D        O              C  :        f              M              =                9  Y            6   p      -             /      v     #               d  0  r  y   a                <   N   J             b          Z            A       :        S                         ,    K   +                     a      h           c      6                       }  E         5   ;      C       [       @          >                                                  W      ^         )          =        g      Q       F      e   X       J                  E  0           ~       Y               '  T      B       x      Q  	  H    e                             m   p   +  X      _  G                     P          4  7    +            B      V  p    V            t      U        5                   R    _       j    ;          4             "                 &   n      `    q   8   P  B                           total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: option '%c%s' doesn't allow an argument
 %s: option '%s' is ambiguous; possibilities: %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File size: %s
 File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS Import ZFS wrapping key stored in FILE. Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List coreboot tables. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... M MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MODULE MODULES Mail xorriso support requests to <bug-xorriso@gnu.org>. Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Option -- switches to native xorriso command mode. Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] PUBKEY_ID Paletted  Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot into firmware setup menu. Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Render Apple .disk_label. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show CBMEM console content. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show the contents of a file. Show the current mappings. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Switch to native disk drivers. If no modules are specified default set (pata,ahci,usbms,ohci,uhci,ehci) is used Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 T TARGET Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This entry can be booted by any user. This requires setting GRUB_DEFAULT=saved in %s/default/grub.\n Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. Your embedding area is unusually small.  core.img won't fit in it. Your xorriso doesn't support `--grub2-boot-info'. Some features are disabled. Please use xorriso 1.2.9 or later. Your xorriso doesn't support `--grub2-boot-info'. Your core image is too big. Boot as disk is disabled. Please use xorriso 1.2.9 or later. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `cryptomount' command fails: %s `loopback' command fails: %s `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format blocklist FILE blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s cannot compress the kernel image cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot get translator command line for path `%s': %s cannot open OS file `%s': %s cannot open `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. diskboot.img size must be %u bytes do not probe for filesystems in DEVICE domain name component is too long don't update LED state done embed FILE as an early config embed FILE as public key for signature checking embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enable ARCS (big-endian mips machines, mostly SGI) boot. Disables HFS+, APM, sparc64 and boot as disk image for i386-pc enable sparc boot. Disables HFS+, APM, ARCS and boot as disk image for i386-pc enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to get canonical path of `%s' failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification install GRUB images under the directory DIR/%s instead of the %s directory install even if problems are detected invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid block size invalid color specification `%s' invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no `/' in canonical filename no command is specified no decryption key available no network card found no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found pre-load specified modules MODULES premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory of TFTP server route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the argument `%s' requires an integer the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for label use COLOR for label background use COLOR for text use DIR as the EFI System Partition root. use FILE as font (PF2). use FILE as font for label use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub 2.00+20130519
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-05-22 19:54+0200
Last-Translator: Jakub Bogusz <qboosh@pld-linux.org>
Language-Team: Polish <translation-team-pl@lists.sourceforge.net>
Language: pl
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
                   pamięć całkowita: %d KiB
     Tryb preferowany niedostępny
     Preferowany tryb: %ux%u
   błędna suma kontrolna EDID   Wersja EDID: %u.%u
   Nie udało się zainicjować karty graficznej   Informacje niedostępne   informacje VBE: wersja %d.%d  wer.oprogramowania OEM: %d.%d
     lub:   (lewego)  (środkowego)  (prawego)  - partycja zaczyna się od %llu%sKiB  - rozmiar sektora %uB  - całkowity rozmiar w sektorach: %llu%sKiB  - całkowity rozmiar jest nieznany  [OPCJA...] %.*s: Parametr ARGP_HELP_FMT musi być dodatni %.*s: Parametr ARGP_HELP_FMT wymaga podania wartości %.*s: Nieznany parametr ARGP_HELP_FMT %d s Pozostało: %d s. %s zawiera system plików %s, który nie jest znany z rezerwowania miejsca na uruchamianie w stylu systemu DOS. Instalowanie programu GRUB może spowodować USZKODZENIE SYSTEMU PLIKÓW, jeśli ważne dane zostaną zastąpione przez program grub-setup (parametr --skip-fs-probe wyłącza to sprawdzanie; należy go używać na własne ryzyko) %s zawiera mapę partycji %s oraz LDM, co nie jest znane jako bezpieczne połączenie. Instalowanie programu GRUB może spowodować USZKODZENIE SYSTEMU PLIKÓW, jeśli ważne dane zostaną zastąpione przez program grub-setup (parametr --skip-fs-probe wyłącza to sprawdzanie; należy go używać na własne ryzyko) %s zawiera mapę partycji %s, która nie jest znana z rezerwowania miejsca na uruchamianie w stylu systemu DOS. Instalowanie programu GRUB może spowodować USZKODZENIE SYSTEMU PLIKÓW, jeśli ważne dane zostaną zastąpione przez program grub-setup (parametr --skip-fs-probe wyłącza to sprawdzanie; należy go używać na własne ryzyko) %s nie obsługuje UUID-ów %s generuje układ klawiatury dla GRUB-a przy użyciu ckbcomp\n %s jest przestarzały. Zamiast tego należy ustawić gfxpayload=%s przed polecenim "linux".
 %s jest przestarzały. Tryb VGA %d nie został rozpoznany. Zamiast tego należy ustawić gfxpayload=SZERxWYS[xGŁĘB] przed poleceniem "linux".
 %s nie jest jeszcze obsługiwany przez grub-mkconfig.\n %s, za pomocą systemu Hurd %s %s, za pomocą systemu Hurd %s (tryb ratunkowy) %s, za pomocą systemu Linux %s %s, za pomocą systemu Linux %s (tryb ratunkowy) %s, za pomocą systemu Xen %s i Linux %s %s, za pomocą systemu Xen %s i Linux %s (tryb ratunkowy) %s, za pomocą hipernadzorcy Xen %s, za pomocą systemu kFreeBSD %s %s, za pomocą systemu kFreeBSD %s (tryb ratunkowy) %s, za pomocą jądra %s (przez %s) %s, za pomocą jądra %s (przez %s, tryb ratunkowy) %s: NIEZGODNOŚĆ SKRÓTU
 %s: OK
 %s: BŁĄD ODCZYTU
 %s: Za dużo argumentów
 %s: To musi być uruchomione jako root\n %s: błąd: %s: informacja: %s: błędna opcja -- "%c"
 %s: opcja "%c%s" nie może mieć argumentów
 %s: opcja "%s" jest niejednoznaczna; możliwości: %s: opcja "--%s" nie może mieć argumentów
 %s: opcja "%s" musi mieć argument
 %s: opcja "-W %s" nie może mieć argumentów
 %s: opcja "-W %s" jest niejednoznaczna
 %s: opcja "-W %s" musi mieć argument
 %s: opcja musi mieć argument -- "%c"
 %s: opcja musi mieć argument - "%s"\n %s: nieznana opcja "%c%s"
 %s: nieznana opcja "--%s"
 %s: uwaga: (32-bitowy) (64-bitowy) (BŁĄD PROGRAMU) Nieznana wersja!? (BŁĄD PROGRAMU) Opcja powinna zostać rozpoznana!? (na %s) - etykieta "%s" - czas ostatniej modyfikacji %d-%02d-%02d %02d:%02d:%02d %s --DALEJ-- -h SKRÓT [-c PLIK [-p PRZEDROSTEK]] [PLIK1 [PLIK2...]] -l | -r | [-s] urządzenie_gruba dysk_systemu_operacyjnego. ,5 interfejs 16-bitowego trybu chronionego jest obsługiwany
 interfejs 16-bitowego trybu chronionego nie jest obsługiwany
 interfejs 32-bitowego trybu chronionego jest obsługiwany
 interfejs 32-bitowego trybu chronionego nie jest obsługiwany
 =WARTOŚĆ > RAM na dane nieulotne ACPI RAM dostępny dla ACPI Wyłączenie przez ACPI nie powiodło się ADRES ADRES WARTOŚĆ [MASKA] ADRES [ROZMIAR] ADRES1,MASKA1[,ADRES2,MASKA2[,...]] ADRES SERWER_DNS APM wyłączony
 APM odłączony
 APM włączony
 APM podłączony
 ARGP_HELP_FMT: wartość %s jest mniejsza lub równa %s ASCII Akceptuje znaki końca wiersza CR/NL w stylu systemu DOS. Aktywne terminale wejściowe: Aktywne terminale wyjściowe: Karta "%s":
 Dodaje serwer DNS Dodaje adres sieciowy. Dodaje trasę sieciową. Opcje zaawansowane dla systemu %s Opcje zaawansowane dla systemu %s (z użyciem hipernadzorcy Xen) Zezwala na przerwanie za pomocą klawisza Esc. Pyta, z jakiego pliku uruchomić. Zakłada wejście szesnastkowe. Zakłada, że wejście jest hasłem. Zakłada surowe wejście. Próba odszyfrowania klucza głównego... Próba zainstalowania programu GRUB na dysku z wieloma etykietami partycji lub zarówno z etykietą, jak i systemem plików. To nie jest jeszcze obsługiwane. Próba zainstalowania programu GRUB na dysku z wieloma etykietami partycji. To nie jest jeszcze obsługiwane. Próba zainstalowania programu GRUB na dysku bez partycji lub na partycji. To jest ZŁY pomysł. Dostępne terminale wejściowe: Dostępne terminale wyjściowe: B B/s ZRZUT_BIOSU [ZRZUT_INT10] BLOK BAJT:BIT Tryb obrazu w tle. Podstawowy katalog dla listy sum. Uruchamia system oparty na BIOS-ie. Uruchamia system operacyjny. Uruchamia w trybie pojedynczego użytkownika. Uruchamia z komunikatami debugowania. Uruchamia z większą ilością komunikatów. Uruchamianie "%s" Uruchamianie listy poleceń Uruchamia w trybie ślepym Ścieżka rozruchowa: %s
 Ścieżka rozruchowa: niedostępna
 Zatrzymuje w GDB CGA  KOLOR POLECENIE [ARGUMENTY] Stan bezczynności nie spowalnia procesora
 Stan bezczynności spowalnia procesor
 CS5536 pod %d:%d.%d
 Nie można włączyć obszaru ROM. Zmienia skonfigurowane urządzenia. Zmienia typ partycji Sprawdza klawisz Alt. Sprawdza klawisz Ctrl. Sprawdza klawisz Shift. Sprawdza funkcje procesora. Sprawdza skróty plików z listą skrótów z PLIKU. Sprawdza flagę 64-bitowego trybu procesora (domyślne). Sprawdza stan klawisza modyfikacji. Sprawdza, czy użytkownik jest na LIŚCIE_UŻYTKOWNIKÓW. Sprawdza plik konfiguracyjny skryptu GRUB-a pod kątem błędów składni. Czyści ekran. Usunięto flagę aktywności z %d. 
 Polecenia: Porównuje PLIK z LOKALNYM plikiem. Porównuje plik "%s" z "%s":
 Porównuje dwa pliki. Liczy UUID XNU urządzenia. Oblicza lub sprawdza sumę kontrolną. Konfiguruje port szeregowy. Kontynuuje pętle Konwertuje fonty z popularnych formatów plików do PF2 Kopiuje PLIK do LOKALNEGO pliku. Kopiuje PLIK na standardowe wyjście. Nie udało się zlokalizować sterownika FPSWA Nie udało się odnaleźć wolumenu fizycznego "%s". Na obrazie core może brakować niektórych modułów. Nie udało się załadować sha256 Nie udało się załadować sha512 Tworzy struktury BIOS-owe dla wstecznej kompatybilności z istniejącym OS. Tworzy pusty plik blokowy środowiska. Obecne typy terminfo: URZĄDZENIE URZĄDZENIE [PARTYCJA[+/-[TYP]]]... URZĄDZENIE musi być urządzeniem systemu operacyjnego (np. /dev/sda). NAZWA_URZĄDZENIA KATALOG KATALOG [zmienna OSBundleRequired] SERWER_DNS Narzędzie debugowania sterownika systemu plików. Określa obszary pamięci jako wadliwe (badram). Dekompresor zbyt duży Określa wpis menu. Określa podmenu. Usuwa adres sieciowy. Usuwa trasę sieciową. Usuwa podany wpis urządzenia loopback. Usuwa zmienne. Określa sterownik. Określa UUID systemu plików. Określa etykietę systemu plików. Określa typ systemu plików. Określa typ mapy partycji. Urządzenie %s: ID urządzenia: %s
 ID urządzenia: niedostępny Bezpośredni kolor, maska: %d/%d/%d/%d  poz: %d/%d/%d/%d Wyłącza ACPI. Wyłącza SMP. Wyłącza całe wyjście uruchamiania. Wyłącza/włącza SMART (0/1). Porzucanie niewłaściwie zagnieżdżonej partycji (%s,%s,%s%d) Statystyki bufora dysku: trafienia = %lu (%lu.%02lu%%), chybienia = %lu
 Licznik dysku musi poprzedzać listę dysków.
 Wyświetla wersję FPSWA. Wyświetla stan SMART. Wyświetla wiersz tekstu. Wyświetla listę blokową PLIKU. Wyświetla wyjście na wszystkich konsolach. Wyświetla tryb zasilania. Wyświetla użycie tego polecenia i kończy działanie. Wyświetla tę pomoc i kończy działanie. Wyświetla/ustawia bieżącą datę i czas. Bez wyświetlania końcowych znaków nowych wierszy. Bez wyświetlania komunikatów. Bez wykrywania napędu dyskietek. Bez używania APM do wyłączania komputera. Nic nie robi, pomyślnie kończąc działanie. Nic nie robi, niepomyślnie kończąc działanie. Bez wyświetlania komunikatów diagnostycznych uruchamiania. Bez wczytywania tablic komputera podanych przez listę tablic oddzielonych przecinkami. Nie uruchamia ponownie, tylko wyłącza. Bez zatrzymywania po pierwszym błędzie. Bez aktualizowania EBDA. Może naprawić niektóre błędy lub awarie w niektórych BIOS-ach, ale jest bezużyteczne w systemach operacyjnych nie pobierających RSDP z programu GRUB. ZMIENNA_ŚRODOWISKOWA ZMIENNA_ŚRODOWISKOWA [ZMIENNA_ŚRODOWISKOWA]... BŁĄD: nie znaleziono poprawnego układu klawiatury. Proszę sprawdzić wejście.
 Wciśnięcie klawisza Esc w każdej chwili powoduje zakończenie. WYRAŻENIE WYRAŻENIE ] Minął czas: %d.%03d s 
 Minął czas: %d.%03d s
 Osadzanie nie jest możliwe. Program GRUB może być instalowany z tymi ustawieniami tylko używając list blokowania. Jednakże, listy blokowania są NIEPEWNE, a ich używanie jest niezalecane. Emuluje sekwencję klawiszy Włącza interpretowanie sekwencji sterujących lewego ukośnika. Hasło ZFS:  Przechodzi do KDB podczas uruchamiania. Przechodzi do zwykłego trybu. Hasło dla %s%s%s (%s):  Hasło:  Nazwa użytkownika:  Błąd podczas przetwarzania parametrów wiersza poleceń
 Oblicza wyrażenie. Wyjście nie powiodło się Kończy działanie programu GRUB. Kończy działanie pętli Wychodzi ze zwykłego trybu. Eksportuje zmienne. Eksportuje tablice w wersji 1 do OS. Eksportuje tablic w wersjach 2 i 3 do OS. PLIK PIK [PARAMETR...] PLIK [ARGUMENTY...] PLIK | TEMPO [TONACJA1 CZAS_TRWANIA1] [TONACJA2 CZAS_TRWANIA2]...  PLIK... PLIK1 PLIK2 NAZWA_PLIKU POLECENIE SYSTEM_PLIKÓW [ZMIENNA] PLIK|prompt FORMAT Protokół FPSWA nie mógł odnaleźć interfejsu Wersja FPSWA: %x
 OD-DO[,OD-DO] OD[K|M|G] DO[K|M|G] FT_Init_FreeType nie powiodło się Uruchomienie domyślnych i zapasowych wpisów się nie powiodło.
 Nie udało się utworzyć drzewa device-mappera Powracanie do "%s" Rozmiar pliku: %s
 System plików "%s" nie obsługuje osadzania Pliki różnią się na pozycji %llu: 0x%x [%s], 0x%x [%s]
 Pliki różnią się rozmiarem: %llu [%s], %llu [%s]
 Nie można uzyskać dostępu do systemu plików Typ systemu plików %s Wypełnia hybrydę MBR napędu GPT URZĄDZENIA. Podane partycje będą częścią hybrydy MBR. Dozwolone jest do 3 partycji. TYP jest typem MBR. + oznacza, że partycja jest aktywna. Tylko jedna partycja może być aktywna. Kończy wczytywanie emulatora EFI. Najpierw wypróbowuje WSKAZÓWKĘ urządzenia, jeśli uruchomiono przez ARC. Jeśli WSKAZÓWKA kończy się przecinkiem, próbuje także podpartycje Najpierw wypróbowuje WSKAZÓWKĘ urządzenia, jeśli uruchomiono przez BIOS. Jeśli WSKAZÓWKA kończy się przecinkiem, próbuje także podpartycje Najpierw wypróbowuje WSKAZÓWKĘ urządzenia, jeśli uruchomiono przez EFI. Jeśli WSKAZÓWKA kończy się przecinkiem, próbuje także podpartycje Najpierw wypróbowuje WSKAZÓWKĘ urządzenia, jeśli uruchomiono przez IEEE1275. Jeśli WSKAZÓWKA kończy się przecinkiem, próbuje także podpartycje Najpierw wypróbowuje WSKAZÓWKĘ urządzenia, jeśli obsługiwany jest bezpośredni dostęp do sprzętu. Jeśli WSKAZÓWKA kończy się przecinkiem, próbuje także podpartycje Najpierw wypróbowuje WSKAZÓWKĘ urządzenia. Jeśli WSKAZÓWKA kończy się przecinkiem, próbuje także podpartycje Naprawia problem obrazu. Znaleziono %s na %s (%s)\n Znaleziono %s na %s\n Znaleziono system GNU Mach: %s Znaleziono moduł Hurda: %s Znaleziono jądro systemu NetBSD: %s\n Znaleziono tło: %s\n Znaleziono obraz initrd: %s\n Znaleziono katalog modułów jądra: %s\n Znaleziono jądro systemu FreeBSD: %s\n Znaleziono obraz Linuksa: %s\n Znaleziono motyw: %s\n Błąd Freetype %d podczas ładowania glifu 0x%x dla U+0x%x%s Zatrzymuje ustawienia bezpieczeństwa ATA do czasu przywrócenia. Piątek G GNU GRUB  wersja %s Menu startowe GRUB-a GRUB nie wie jeszcze, jak wytrzymać tę maszynę! Emulator GRUB-a. URZĄDZENIE_GRUBA=URZĄDZENIE_PLAN9 Błędne dane w ARGP_HELP_FMT: %s Generuje układ klawiatury GRUB-a z układu dla konsoli Linuksa. Generuje skrót hasła PBKDF2. Generuje plik konfiguracyjny GRUB-a. Generuje samodzielny (zawierający wszystkie moduły) obraz w wybranym formacie Uzyskuje sumę kontrolną CRC32 PLIKU. Pobiera informacje o buforze dysku. Uzyskuje/ustawia parametry dysku ATA. GiB GiB/s SUMA WSKAZÓWKA Wyłącza komputer, jeśli to możliwe używa APM. Wyłącza komputer. To polecenie nie działa ze wszystkimi implementacjami oprogramowania sprzętu. Obsługuje N bajtów w pliku wyjściowym. Witaj, Świecie Hercules  ID OBRAZ1 [OBRAZ2 ...] PUNKT_MONTOWANIA ŚCIEŻKA_DO_OBRAZU POLECENIA Importuje klucz obudowujący ZFS zapisany w PLIKU. Niepoprawne urządzenie wirtualne; typ niedostępny Wstawia moduł. Instaluje GRUB-a na dysku. Instalacja zakończona. Nie zgłoszono błędów. Błędne odniesienie wstecz Błędna nazwa klasy znaków Błędny znak sortowany Nieprawidłowe polecenie %s.
 Błędna zawartość \{\} Nieprawidłowe urządzenie "%s".
 Nieprawidłowy licznik dysku.
 Błędne poprzedzające wyrażenie regularne Błędny koniec zakresu Błędne wyrażenie regularne Wywołuje trasowanie konfiguracji użytkownika. k JĄDRO ARGUMENTY KLAWISZ Klawisz do szybkiego wystartowania tego wpisu. KiB KiB/s Końcowe urządzenie wirtualne (plik lub dysk) Przestarzały parametr "ask" nie jest już obsługiwany. Legenda: maska/pozycja=czerwień/zieleń/błękit/zarezerwowane Długość wygenerowanego skrótu Długość zarodka Wyświetla listę serwerów DNS Wyświetla listę urządzeń PCI. Wyświetla listę wszystkich plików. Wyświetla listę dostępnych trybów obrazu. Jeśli podano rozdzielczość, to wyświetla tylko tryby pasujące do niej. Wyświetla listę tablic coreboot. Wyświetla listę urządzeń i plików. Wyświetla listę urządzeń lub plików. Wyświetla listę urządzeń. Wyświetla listę plików w ŚCIEŻCE. Wyświetla listę map pamięci dostarczanych przez oprogramowanie sprzętu. Lista obsługiwanych trybów graficznych: Lista użytkowników, którzy mogą uruchamiać ten wpis. Wyświetla listę terminali wejściowych lub wybiera jeden. Wyświetla listę terminali wyjściowych lub wybiera jeden. Wyświetla listę bieżących zmiennych. Wyświetla listę wczytanych czcionek. Wyświetla listę zmiennych z pliku blokowego środowiska. Wczytuje 64 bitowy obraz systemu XNU. Wczytuje zrzut BIOS-u. Wczytuje środowisko systemu FreeBSD. Wczytuje moduł jądra FreeBSD (ELF). Wczytuje moduł jądra FreeBSD. Wczytuje kernel.sys FreeDOS-a. Wczytuje system Linux. Wczytuje NTLDR lub BootMGR. Wczytuje moduł jądra NetBSD (ELF). Wczytuje moduł jądra NetBSD. Wczytuje jądro Plan9. Wczytuje katalog rozszerzeń systemu XNU. Wczytuje pakiet rozszerzeń systemu XNU. Wczytuje rozszerzenie systemu XNU. Wczytuje obraz systemu XNU. Wczytuje ramdysk XNU. Będzie dostępny dla systemu operacyjnego jako md0. Wczytuje zrzut "device-properties". Wczytuje obraz PXE. Wczytuje układ klawiatury. Wczytuje jądro Multiboot 2. Wczytuje moduł Multiboot 2. Wczytuje jądro Multiboot. Wczytuje moduł Multiboot. Wczytuje obraz powitalny dla systemu XNU. Wczytuje obraz zahibernowanego systemu XNU. Wczytuje i inicjuje emulator EFI. Wczytuje inny program startowy. Wczytuje inny plik konfiguracji, ale przyjmuje tylko wpisy menu. Wczytuje inny plik konfiguracji bez zmieniania kontekstu, ale przyjmuje tylko wpisy menu. Wczytuje inny plik konfiguracji bez zmieniania kontekstu. Wczytuje inny plik konfiguracji. Wczytuje inny payload coreboot. Wczytuje obraz tła dla aktywnego terminala. Wczytuje tablice ACPI komputera i tablice podane w parametrach. Wczytuje obraz initrd. Wczytuje ramdysk kOpenBSD. Wczytuje jądro systemu FreeBSD. Wczytuje jądro systemu NetBSD. Wczytuje jądro systemu OpenBSD. Wczytuje tylko tablice podane przez listę tablic oddzielonych przecinkami. Wczytuje ten sam plik na różne sposoby. Wczytuje zmienne z pliku blokowego środowiska. Wczytuje klucz kryptograficzny zfs Wczytane fonty: Wczytywanie systemu GNU Mach... Wczytywanie systemu Linux %s... Wczytywanie systemu Xen %s... Wczytywanie początkowego dysku RAM... Wczytywanie jądra systemu FreeBSD %s... Wczytywanie jądra systemu Illumos... Wczytywanie systemu Hurd... M weryfikacja MAC nie powiodła się WPIS_MENU to numer, tytuł lub identyfikator wpisu z menu. MODUŁ MODUŁY Prośby o wsparcie dotyczące xorriso prosimy wysyłać na adres <bug-xorriso@gnu.org>. Tworzy uruchamialny obraz płyty CD, dysku, pendrive'a lub dyskietki z GRUB-em. Tworzy plik układu klawiatury GRUB-a. Tworzy rozruchowy obraz GRUB-a. Tworzy urządzenie wirtualne z pliku. Czyni partycję aktywną Zarządza mapowaniami napędów BIOS-u. Argumenty obowiązkowe lub opcjonalne dla długich opcji są również obowiązkowe lub opcjonalne dla odpowiednich krótkich opcji. Manipuluje urządzeniami PCI. Mierzenie czasu wykonania POLECENIA Pamięć wyczerpana Rodzaj pamięci: DDR2. Rodzaj pamięci: nieznany. Identyfikator wpisu menu. Nie podano wpisu menu. Typ wpisu menu. MiB MiB/s Obsługiwane jest minimalne modyfikowanie wierszy w stylu powłoki Bash. Naciśnięcie klawisza Tab wyświetla listę możliwych uzupełnień polecenia po wpisaniu pierwszego słowa. W innych miejscach naciśnięcie klawisza Tab wyświetla listę możliwych uzupełnień urządzeń lub plików. %s Obsługiwane jest minimalne modyfikowanie ekrany w stylu programu Emacs. Naciśnięcie klawisza Tab wyświetla uzupełnienia. Naciśnięcie Ctrl-X uruchamia, Ctrl-C lub F2 powoduje przejście do wiersza poleceń, a Esc odrzuca zmiany i powoduje powrót do menu programu GRUB. Za mało argumentów
 Brak pliku wejściowego
 Poniedziałek Monochromatyczny  Więcej niż jedno urządzenie instalacji? Więcej niż jeden wpis menu? Montuje urządzenie kryptograficzne. Montuje wszystkie wolumeny z ustawioną flagą "boot". Montuje wszystko. Montuje wg UUID-a. Montuje urządzenia kryptograficzne. NAZWA NAZWA [ZMIENNA] [WSKAZÓWKI] LICZBA LICZBA_SEKUND Nazwa	Liczba użyć	Zależności
 Używane są natywne sterowniki dysku. Odmowa użycia interfejsu firmware dysku. Protokoły sieciowe: Zapisano nowy MBR do "%s"
 Nie znaleziono CS5536 Nie znaleziono FPSWA Brak dostępnych statystyk czasu rozruchu
 Nie podano polecenia.
 Nie podano urządzenia.
 Brak dostępnych statystyk bufora dysku
 Nie przemapowano żadnych dysków Nie wykryto żadnego znanego systemu plików Nic nie pasuje Nie podano ścieżki.
 Nie podano ścieżki ani urządzenia.
 Brak poprzedniego wyrażenia regularnego Brak dostępnego drzewa urządzeń wirtualnych Nie-chain 4  Za mało parametrów dla polecenia.
 Teraz proszę podłączyć zdalny debugger. Liczba iteracji PBKDF2 Numer dysku OS ---> Urządzenie GRUB-a/BIOS-u błąd otwarcia pliku OS %s: %s Opcja -- przełącza do natywnego trybu polecenia xorriso. Opcje: Wyszukiwanie spoza zakresu: %d
 Podstawienie spoza zakresu (%d, %d)
 Nadpisuje odgadnięte mapowania urządzeń Plan9. P PARTYCJA POLECENIA ŚCIEŻKA skrót PBKDF2 hasła to %s
 PORT PORT WARTOŚĆ [MASKA] ID_KLUCZA_PUBLICZNEGO Z paletą  Przetwarza przestarzałą konfigurację w nowym kontekście Przetwarza przestarzałą konfigurację w nowym kontekście, przyjmując tylko wpisy menu Przetwarza przestarzałą konfigurację w tym samym kontekście Przetwarza przestarzałą konfigurację w tym samym kontekście, przyjmując tylko wpisy menu Nr części: %s.
 Partycja %d jest teraz aktywna. 
 Partycja %s: Partycje typu "%s" nie obsługują osadzania Ścieżka: %s
 Ścieżka: niedostępna Wykonuje POLECENIA na partycji.
"parttool PARTYCJA help" wyświetli listę dostępnych poleceń. Wykonuje zapytanie DNS Wykonuje autokonfigurację IPV6 Wykonuje bezpośrednie i odwrotne mapowania. PiB PiB/s Planowy  Odtwarza dźwięk. Proszę nie używać starego tytułu "%s" dla GRUB_DEFAULT, ale "%s" (dla wersji starszych niż 2.00) lub "%s" (dla 2.00 lub nowszych) GUID puli: %016llx
 GUID puli: niedostępny Nazwa puli: %s
 Nazwa puli: niedostępna Stan puli: aktywna Stan puli: zniszczona Stan puli: wyeksportowana Stan puli: urządzenie ARC poziomu 2 Stan puli: potencjalnie aktywna Stan puli: zarezerwowana dla hot spare'a Stan puli: niedostępna Stan puli: nie zainicjowana Możliwe parametry: Możliwe polecenia: Możliwe urządzenia: Możliwe pliki: Możliwe partycje: Możliwe są: Przedwczesny koniec wyrażenia regularnego Naciśnięcie dowolnego klawisza kontynuuje... Naciśnięcie dowolnego klawisza uruchomi xnu Naciśnięcie klawisza Enter uruchamia wybrany system operacyjny, "e" modyfikuje polecenia przed uruchomieniem, a "c" przechodzi do wiersza poleceń. Naciśnięcie klawisza Enter uruchamia wybrany system operacyjny, "e" modyfikuje polecenia przed uruchomieniem, a "c" przechodzi do wiersza poleceń. Klawisz Esc powoduje przejście do poprzedniego menu. Wyświetla informacje o pamięci. Wypisuje informacje ZFS o URZĄDZENIU. Wypisuje ZFS-BOOTFSOBJ lub zapisuje do ZMIENNEJ Wyświetla listę bloków. Wyświetla i wykonuje parametr blokowy. Wyświetla stos wywołań. Wyświetla tożsamość i ustawienia napędu. Wyświetla rozmiary w formacie czytelnym dla człowieka. Wyszukanie informacji o urządzeniu dla podanej ścieżki (lub urządzenia, jeśli podano -d) RAM przechowujący tablice coreboot RAM przechowujący kod firmware Slot RAM numer %d
 WYRAŻENIE_REGULARNE CIĄG Obraz ROM jest dostępny. Odczytuje spod ADRESU wartość 16-bitową. Odczytuje z PORTU wartość 16-bitową. Odczytuje spod ADRESU wartość 32-bitową. Odczytuje z PORTU wartość 32-bitową. Odczytuje spod ADRESU wartość 8-bitową. Odczytuje z PORTU wartość 8-bitową. Odczytuje tylko bajty DŁUGOŚCI. Restart nie powiódł się Przeładowuje do menu konfiguracji firmware. Ponownie uruchamia komputer. Potwierdzenie hasła:  Rejestr %x urządzenia %x:%02x.%x zawiera %x
 Wyrażenie regularne zbyt duże Usuwa serwer DNS Usuwa moduł. Usuwa zmienną środowiskową. Usuwa wszystkie obszary pamięci w podanym zakresie. Renderowanie .disk_label Apple'a. Prosimy zgłaszać błędy na adres %s.
 Prosimy zgłaszać błędy na adres <bug-grub@gnu.org>. Żądano terminala szeregowego, ale nie podano GRUB_SERIAL_COMMAND. Użyte zostaną parametry domyślne. Przywraca wszystkie mapowania do domyślnych wartości. Pobiera informacje o urządzeniu. Powraca z funkcji. Wraca do znaku zachęty IEEE1275. Proszę uruchomić "gdb %s %d" i ustawić ARGS.HOLD na zero.
 Wpisanie "go" wznowi GRUB-a. SEK KRÓTKA_NAZWA KRÓTKA_NAZWA KARTA ADRES [ADRES_SPRZĘTOWY] KRÓTKA_NAZWA SIEĆ [INTERFEJS| gw BRAMKA] ROZMIAR ŹRÓDŁO|-u UUID|-a|-b CIĄG Sobota Zapisuje odczytaną wartość do zmiennej NAZWA_ZMIENNEJ. Zapisuje zmienne do pliku blokowego środowiska. Wypisuje tekst "Witaj, Świecie". Wyszukuje urządzenia według UUID. Jeśli podano ZMIENNĄ, pierwsze odnalezione urządzenie jest ustawiane na ZMIENNĄ. Wyszukuje urządzenia według pliku. Wyszukuje urządzenia według UUID systemu plików. Wyszukuje urządzenia według etykiety systemu plików. Wyszukuje urządzenia według pliku, etykiety systemu plików lub UUID systemu plików. Jeśli podano --set, pierwsze odnalezione urządzenie jest ustawiane na ZMIENNĄ. Jeśli nie podano nazwy zmiennej, to zostanie użyta "root". Wyszukuje urządzenia według pliku. Jeśli podano ZMIENNĄ, pierwsze odnalezione urządzenie jest ustawiane na ZMIENNĄ. Wyszukuje urządzenia według etykiety. Jeśli podano ZMIENNĄ, pierwsze odnalezione urządzenie jest ustawiane na ZMIENNĄ. Sektor %llu jest już używany przez kontroler RAID "%s"; pominięto go. Proszę skontaktować się z producentem, aby nie zapisywał danych w odstępie za MBR Sektor %llu jest już używany przez program "%s"; pominięto go. To oprogramowanie może powodować w przyszłości problemy z uruchomieniem systemu lub innego rodzaju. Proszę poprosić autorów o nie zapisywanie danych na ścieżce rozruchowej Wybiera urządzenie wg położenia na szynie. Wybiera urządzenie wg ID producenta i urządzenia. Ustawia APM (Zaawansowane zarządzanie zasilaniem)
(1=niskie, ..., 254=wysokie, 255=wyłączone). Ustawia AAM (Automatyczne zarządzanie akustyką)
(0=wyłączone, 128=ciche, ..., 254=szybkie). Ustawia OEMID z RSDP, XSDT i RSDT. Ustawia identyfikator OEMTABLE z RSDP, XSDT i RSDT. Ustawia wersję OEMTABLE z RSDP, XSDT i RSDT. Ustawia flagę partycji ukrytej Ustawia zmienną na wartość zwrotną. Ustawia zmienną na pierwsze odnalezione urządzenie. Ustawia zmienną środowiskową. Ustawia kolor tła dla aktywnego terminala. Ustawia pole twórcy z RSDP, XSDT i RSDT. Ustawia wersję twórcy z RSDP, XSDT i RSDT. Ustawia zmienną środowiskową debugowania. Ustawia napęd w tryb uśpienia. Ustawia napęd w trybie oczekiwania. Ustawia parametry pozycyjne. Ustawia urządzenie główne. Ustawia czas oczekiwania przed przejściem do stanu oczekiwania
(0=wyłączone, 1=5 sekund, 2=10 sekund, ..., 240=20 minut, 241=30 minut, ...). Ustawia TYP terminfo TERMINALA.
 Ustawia domyślny wpis rozruchowy dla GRUB-a tylko dla następnego uruchomienia. Ustawia domyślny wpis menu rozruchowego dla GRUB-a. Ustawia adres portu szeregowego. Ustawia parzystość portu szeregowego. Ustawia prędkość portu szeregowego. Ustawia bity zatrzymania portu szeregowego. Ustawia długość słowa portu szeregowego. Ustawia jednostkę szeregową. Ustawia obrazy do uruchomienia z URZĄDZENIA.

Zwykle ten problem nie powinien być bezpośrednio uruchamiany. Proszę użyć programu grub-install zamiast tego. Ustawia hasło użytkownika (PBKDF2).  Ustawia hasło użytkownika (w zwykłym tekście). Niezalecane i potencjalnie niebezpieczne. Ustawia zmienną za pomocą danych wprowadzonych przez użytkownika. Ustawia zmienne. Ustawia typ partycji na 0x%x
 Przesuwa parametry pozycyjne. Wyświetla informacje ACPI. Wyświetla informacje APM. Wyświetla zawartość konsoli CBMEM. Wyświetla komunikat pomocy. Wyświetla długą listę z bardziej szczegółowymi informacjami. Wyświetla szesnastkowo zawartość PLIKU. Wyświetla wczytane moduły. Wyświetla zawartość pamięci. Pokazuje surową zawartość sektora IDENTIFY ATA. Pokazuje surową zawartość pliku lub pamięci. Wyświetla zawartość pliku. Wyświetla bieżące mapowania. Wyświetla ten komunikat. Wyświetla tylko tablice w wersji 1. Wyświetla tylko tablice w wersjach 2 i 3. Zamknięcie nie powiodło się Symuluje polecenie "initrd" programu grub-legacy Symuluje polecenie "kernel" programu grub-legacy Symuluje polecenie "modulenounzip" programu grub-legacy Symuluje polecenie "password" programu grub-legacy Symuluje polecenie "password" programu grub-legacy w trybie wpisu menu Pomija N bajtów z pliku wyjściowego. Pomija bajty wyrównania z początku pliku. Slot %d otwarty
 Znaleziono elementy systemu Hurd, ale za mało do uruchomienia. Podaje nazwę pliku. Podaje sumę do użycia. Podaje jeden lub więcej plików czcionek do wczytania. Określa rozmiar dla każdej operacji odczytu Podaje liczbę plików wejściowych. Szybkość: %s 
 Uruchamia zaślepkę GDB na podanym porcie Zatrzymuje zaślepkę GDB Zapisuje NUMER dopasowanego elementu w ZMIENNEJ. Sukces Niedziela Ogranicza zwykłe wyjście (ostrzeżenia pozostają). Przełącza na natywne sterowniki dysku. Jeśli nie podano modułów, używany jest zestaw domyślny (pata,ahci,usbms,ohci,uhci,ehci) Błąd składni w linii %u
 W wygenerowanym pliku konfiguracyjnym GRUB-a wykryto błędy składni.
Proszę się upewnić, że w plikach /etc/default/grub oraz /etc/grub.d/*
nie ma błędów lub wypełnić raport o błędzie z załączonym plikiem %s. Przestrzeń we/wy kontrolera SM-bus jest pod 0x%x
 T CEL Nie określono formatu docelowego (opcji -O). Terminal posiada podane wymiary. Terminal obsługuje tylko ASCII [domyślne]. Terminal obsługuje logicznie porządkowane UTF-8. Terminal obsługuje wizualnie porządkowane UTF-8. Testuje obsługę USB. Sprawdza bit BAJT:BIT w CMOS-ie. Testuje szybkość odczytu pliku. Testuje, czy WYRAŻENIE_REGULARNE pasuje do CIĄGU. Testuje podsystem obrazu w trybie SxW. Testuje podsystem obrazu. Tylko tekst Pliki są identyczne.
 Wyróżniony wpis zostanie wykonany automatycznie za %ds. Ta pozycja może być uruchomiona przez dowolnego użytkownika. To wymaga ustawienia GRUB_DEFAULT=saved w %s/default/grub.\n Czwartek TiB TiB/s Narzędzie do modyfikacji pliku blokowego środowiska. Całkowity rozmiar flasha: %d B.
 Kończący znak "\" Przekształca 64-bitowy UUID do formatu odpowiedniego dla XNU. Jeśli podano -l, zachowuje małe litery, jak blkid. Przekształca nazwę pliku w systemie na nazwę dla GRUB-a. Tłumaczy ciąg za pomocą bieżących ustawień. Polecenie "%s --help" lub "%s --usage" pozwoli uzyskać więcej informacji.
 Wtorek UŻYTKOWNIK HASŁO UŻYTKOWNIK HASŁO_PBKDF2 UŻYTKOWNIK[,UŻYTKOWNIK] UTF-8 Nie udało się utworzyć potoku: %s Nie udało się określić platformy. Proszę użyć --target. Nie udało się utworzyć procesu: %s Nie udało się otworzyć strumienia z polecenia %s: %s Nie można pobrać stanu puli Dekompresuje dane. Dekompresuje plik przed sprawdzeniem sum. Nieznany typ adresu %d
 Nieznane polecenie "%s".
 Nieznany format kompresji %s Nieznane kodowanie Nieznany dodatkowy parametr "%s". Nieznana cecha fontu gsub 0x%x (%s)
 Nieznany kod skaningowy klawisza 0x%02x
 Nieznany identyfikator kodu klawisza %s
 Nieznany błąd systemowy Nieznany tryb obrazu  Nieznany typ urządzenia wirtualnego: %s
 Usuwa emulator EFI z pamięci. Niesparowane ( lub \( Niesparowane ) lub \) Niesparowane [ lub [^ Niesparowane \{ Nieznana opcja "%s"\n Nieznany stan puli Nie obsługiwany typ adresu %d
 Nie obsługiwane określenie pokrycia: %d
 Nie obsługiwany typ adresu sprzętowego %d
 Nie obsługiwany format obrazu Nie obsługiwana flaga podstawienia: 0x%x
 Nie obsługiwane określenie podstawienia: %d
 Nie obsługiwany rodzaj podstawienia: %d
 Składnia: Składnia: %s -o WYJŚCIE ARGUMENTY_CKBMAP...\n Składnia: %s URZĄDZENIE
 Składnia: %s [PLIK_WEJŚCIOWY [PLIK_WYJŚCIOWY]]
 Składnia: %s [OPCJA] WPIS_MENU\n Składnia: %s [OPCJA]\n Używa napędu CD-ROM jako root. Używa zdalnego debuggera GDB zamiast DDB. Użycie ŁAŃCUCHA jako ciała wpisu menu. Używa wkompilowanego urządzenia root. Używa konsoli szeregowej. Należy użyć klawiszy %C i %C, aby wybrać wyróżniony wpis. ZMIENNA INTERFEJS NUMER OPIS NAZWA_ZMIENNEJ Widoczne odliczanie. Sprawdza oddzielony podpis. Wersja %u.%u
32-bitowy CS = 0x%x, długość = 0x%x, offset = 0x%x
16-bitowy CS = 0x%x, długość = 0x%x
DS = 0x%x, długość = 0x%x
 Urządzenie wirtualne zdegradowane Urządzenie wirtualne zawiodło Urządzenie wirtualne odłączone Urządzenie wirtualne podłączone Urządzenie wirtualne usunięte UWAGA: konsola nie będzie dostępna dla systemu operacyjnego UWAGA: nie wykonano instalacji specyficznej dla platformy UWAGA: nie obsługiwane parametry cechy fontu: %x
 SZEROKOŚĆxWYSOKOŚĆ Czeka przez podaną liczbę sekund. Czeka na naciśnięcie klawisza po każdym wierszu wyjścia. Uwaga: Ostrzeżenie: nieprawidłowy kolor tła "%s"
 Ostrzeżenie: nieprawidłowy kolor tekstu "%s"
 Ostrzeżenie: błąd składni (brak ukośnika) w "%s"
 Środa Windows NT/2000/XP (loader) Windows Vista/7 (loader) Zapisuje WARTOŚĆ 16-bitową pod ADRES. Zapisuje WARTOŚĆ 16-bitową do PORTU. Zapisuje WARTOŚĆ 32-bitową pod ADRES. Zapisuje WARTOŚĆ 32-bitową do PORTU. Zapisuje WARTOŚĆ 8-bitową pod ADRES. Zapisuje WARTOŚĆ 8-bitową do PORTU. Zapisano bajty SPD: %d B.
 Hipernadzorca Xen, wersja %s YUV  Należy podać co najmniej jedno polecenie.
 Należy ręcznie ustawić "SystemPartition" i "OSLoader". Obszar osadzania jest niezwykle mały, nie pomieści core.img. Zainstalowana wersja xorriso nie obsługuje "--grub2-boot-info". Niektóre opcje są wyłączone. Proszę użyć xorriso 1.2.9 lub nowszego. Zainstalowana wersja xorriso nie obsługuje "--grub2-boot-info". Obraz core jest zbyt duży. Rozruch jako dysk jest wyłączony. Proszę użyć xorriso 1.2.9 lub nowszego. [--append|--remove] [TERMINAL1] [TERMINAL2]... [--force|--bpb] PLIK [--md5] HASŁO [PLIK] [--no-mem-option] [--type=TYP] PLIK [PARAMETR...] [-1|-2] [--exclude=TABLICA1,TABLICA2|--load-only=TABLICA1,TABLICA2] PLIK1 [PLIK2] [...] [-c PLIK [-p PRZEDROSTEK]] [PLIK1 [PLIK2...]] [-d] NAZWA_URZĄDZENIA PLIK. [-e|-n] CIĄG [-f PLIK] [-f PLIK] nazwa_zmiennej [...] [-f|-l|-u|-s|-n] [--hint WSKAZÓWKA [--hint WSKAZÓWKA]...] NAZWA [-h|-p|-r] [PLIK] [-l] UUID_GRUBA [NAZWA_ZMIENNEJ] [-l|-h|-a] [PLIK...] [-m (stretch|normal)] PLIK [-s POŁOŻENIE] [-d URZĄDZENIE] [-s POŁOŻENIE] [-d URZĄDZENIE] [-v ZMIENNA] REJESTR[=WARTOŚĆ[:MASKA]] [-s ROZMIAR] NAZWA_PLIKU [ADRES|comJEDNOSTKA][,PRĘDKOŚĆ] [PARAMETR] [KARTA [ADRES_SPRZĘTOWY]] [KARTA] [ZMIENNA_ŚRODOWISKOWA=WARTOŚĆ] [ZMIENNA_ŚRODOWISKOWA] [KLAWISZ1] [KLAWISZ2] ... [MODUŁ1 MODUŁ2 ...] [NUMER:]NAZWA_ZMIENNEJ [LICZBA] [OPCJE...] [OPCJE] [OPCJE] DYSK [OPCJE] PLIK_LUB_URZĄDZENIE [OPCJE] PLIKI_FONTÓW [OPCJA]... [MODUŁY] [OPCJA]... [PLIK|URZĄDZENIE] [OPCJE] [ŚCIEŻKA] [WZORZEC...] [LISTA_UŻYTKOWNIKÓW] [WARTOŚĆ]... [SZERxWYS[xGŁĘB]] [SZERxWYS] [[-a|-u|-v] [-g SxW] TERMINAL [TYP]] [[rok-]miesiąc-dzień] [godzina:minuta[:sekunda]] [szyna]:[slot][.funkcja] [producent]:[urządzenie] polecenie "cryptomount" nie powiodło się: %s polecenie "loopback" nie powiodło się: %s nie znaleziono "obppath" w katalogach powyżej %s ani przy wykrywaniu nazw IEEE1275 przypisano argumentowi "%s" wartość, podczas gdy nie wymaga on wartości brak dostępu dodaje segment NOTE dla CHRP IEEE1275 adres nie znaleziono adresu próba odczytu lub zapisu poza dyskiem "%s" próba odczytu lub zapisu poza partycją próba odczytu za końcem pliku próba ustawienia poza plikiem próba odczytania obrazu core "%s" z programu GRUB ponowna próba odczytania obrazu core "%s" z programu GRUB RAM dostępny dostępne formaty: błędny podpis adres_pocz = 0x%llx, długość = 0x%llx, %s
 adres_pocz = 0x%llx, długość = 0x%llx, typ = 0x%x
 plik bitmapy "%s" nie jest w obsługiwanym formacie blocklist PLIK listy bloków są błędne rozmiar bloku nie jest podzielny przez 512 nie można przerwać 0 pętli nie można określić systemu plików na %s nie można odnaleźć polecenia "%s" nie można zamontować zaszyfrowanego wolumenu "%s": %s nie można otworzyć "%s": %s nie można otworzyć pliku %s, indeks %d: błąd %d nie udało się odczytać list bloków nie udało się odczytać list bloków: %s nie można skompresować obrazu jądra nie można odnaleźć urządzenia GRUB-a dla %s. Proszę sprawdzić device.map nie można odnaleźć urządzenia dla %s (czy /dev jest zamontowany?) nie można uzyskać linii poleceń translatora dla ścieżki "%s": %s nie można otworzyć pliku OS "%s": %s nie można otworzyć "%s": %s nie można poprawnie odczytać "%s" nie można odczytać "%s": %s nie można zmienić nazwy pliku %s na %s nie można przywrócić pierwotnego katalogu nie można przemieścić się w "%s": %s nie można wykonać stat na "%s": %s nie można zapisać na CD-ROM nie można zapisać do "%s": %s nie można pisać na standardowe wyjście: %s nie znaleziono karty cat PLIK weryfikacja sumy kontrolnej nie powiodła się wybiera rodzaj kompresji dla obrazu core cmp PLIK LOKALNY comJEDNOSTKA[,PRĘDKOŚĆ] porównanie się nie powiodło w offsecie %llu połączenie odrzucone przekroczony limit czasu połączenia przekształca do fontu pogrubionego obraz core jest za duży (0x%x > 0x%x) niezgodność wersji core.img nie udało się automatycznie skonfigurować %s nie udało się odnaleźć wymaganego urządzenia składowego systemu plików na wielu urządzeniach nie udało się odnaleźć konsumenta geli nie udało się odnaleźć klasy "part" geom nie udało się otworzyć geom nie udało się odczytać metadanych ELI nie udało się uzyskać UUID-a nie udało się odczytać UUID-a geli nie udało się odczytać danych losowych na zarodek nie udało się wysłać pakietu sieciowego cp PLIK LOKALNY crc PLIK błąd kryptograficzny numer %d cygwin_conv_path() nie powiodło się usuwa mapę urządzeń, jeśli już istnieje cel nieosiągalny licznik urządzenia przekracza ograniczenie wyłącza hinting nie znaleziono dysku "%s" dysk nie istnieje, więc próba przejścia do partycji %s moduł dysku do użycia (biosdisk lub natywny). Ta opcja jest dostępna tylko na platformach z BIOS-em. rozmiar pliku diskboot.img musi wynosić %u bajtów nie wykrywa systemów plików w URZĄDZENIU element nazwy domeny jest zbyt długi pomija uaktualnienie stanu diod gotowe osadza plik jako wczesną konfigurację osadza PLIK jako klucz publiczny do kontroli podpisu osadzanie nie jest możliwe, ale jest wymagane przy instalacji na RAID-ie lub LVM-ie osadzanie nie jest możliwe, ale jest wymagane dla instalacji na wielu dyskach włącza rozruch ARCS (maszyny mips big-endian, głównie SGI); wyłącza HFS+, APM, sparc64 i rozruch jako obraz dysku dla i386-pc włącza rozruch typu sparc; wyłącza HFS+, APM, ARCS oraz rozruch jako obraz dysku dla i386-pc Enter: uruchomienie, "e": opcje, "c": linia poleceń blok środowiska zbyt mały błąd: %s.
 oczekuje obrazów GRUB-a poniżej KATALOGU/%s zamiast katalogu %s nie udało się uzyskać znormalizowanej ścieżki "%s" błąd podczas odczytu sektora 0x%llx z "%s" nie udało się odczytać hasła błąd podczas zapisu sektora 0x%llx na "%s" fałsz wadliwy RAM (BadRAM) nie znaleziono pliku "%s" oczekiwano nazwy pliku oczekiwano nazwy pliku lub tempa i nut system plików "%s" nie obsługuje etykiet system plików "%s" nie obsługuje list bloków obraz firmware jest za duży wymusza autohinting oczekiwano czterech argumentów fwstart.img nie pasuje do żadnej znanej dobrej wersji. Ewentualna kontynuacja na własne ryzyko generuje obraz w FORMACIE wyświetla krótką informację o składni polecenia wyświetla ten tekst pomocy podany argument jest urządzeniem systemowym, a nie ścieżką grub-mkimage został skompilowany bez obsługi XZ grub> zatrzymuje na SEK sekund (domyślnie 3600) hex PLIK ignoruje bitmapy przy wczytywaniu błędne określenie wymiarów terminala instaluje obrazy GRUB-a poniżej KATALOGU/%s zamiast katalogu %s instaluje nawet, jeśli wykryto problemy błędne hasło PBKDF2 błędny znacznik magiczny ELF zależny od architektury błędny znacznik magiczny ELF niezależny od architektury błędny rozmiar bloku nieprawidłowe określenie koloru "%s" błędny blok środowiska nieprawidłowa nazwa pliku "%s" błędny zakres fontu błędny format linii: %sn błędny parametr %s nieprawidłowa wartość pominięcia %lld błędna nazwa zmiennej "%s" błędne określenie trybu graficznego "%s" błąd ioctl-a GET_ARRAY_INFO: %s błąd ioctl-a GET_DISK_INFO: %s błąd ioctl-a RAID_VERSION: %s obraz jądra jest za duży (0x%x > 0x%x) wypisuje adresy sieciowe wypisuje karty sieciowe wypisuje listę tras ls ŚCIEŻKA plik lzop uszkodzony sprawia, żeby napęd był uruchamialny także jako dyskietka (domyślne dla urządzeń fdX). Może źle działać z niektórymi BIOS-ami. brak symbolu "%c" brak obowiązkowej opcji dla "%s" moduł "%s" nie jest załadowany nie wczytano modułu nazwa wymagany jest obraz i punkt montowania nie znaleziono APM nie znaleziono informacji DHCP nie znaleziono opcji DHCP %d nie znaleziono opcji DHCP nie znaleziono rekordu DNS nie otrzymano odpowiedzi DNS brak skonfigurowanych serwerów DNS brak "/" w znormalizowanej nazwie pliku nie podano polecenia niedostępny klucz deszyfrujący nie znaleziono karty sieciowej nie podano serwera partycja nie istnieje nie znaleziono pasującego trybu graficznego brak tablicy symboli nie podano terminala brak odstępu w obrazie core odnaleziono dane nie wyrównane do sektora w pliku core to nie jest katalog to nie jest partycja główna to nie jest zwykły plik poza ciałem funkcji oczekiwano jednego argumentu inne oprogramowanie używa obszaru osadzania i nie ma wystarczająco dużo miejsca na core.img. Takie oprogramowanie zwykle próbuje zapisać dane w sposób zapobiegający wykryciu. Zalecamy to wyjaśnić brak pamięci zapisuje wygenerowany obraz do PLIKU [domyślnie na standardowe wyjście] plik wyjściowy musi być podany zapisuje wygenerowaną konfigurację do PLIKU [domyślnie na standardowe wyjście] wykryto przepełnienie hasła nie zgadzają się wykonuje autokonfigurację bootp nie znaleziono wolumenu fizycznego %s załadowanie na początku podanych MODUŁÓW przedwczesny koniec pliku przedwczesny koniec pliku %s wciska klawisz CapsLock wciska klawisz Insert wciska klawisz NumLock wciska klawisz ScrollLock wciska SysRq wciska lewy Alt wciska lewy Ctrl wciska lewy Shift wciska prawy Alt wciska prawy Ctrl wciska prawy Shift wyświetla wersję programu wyświetla informację o wersji i kończy działanie wyświetla ten komunikat i kończy działanie wyświetla więcej komunikatów. nie znaleziono klucza publicznego %08x błąd odczytu w offsecie %llu: %s czyta tekst z PLIKU. podkatalog względny na serwerze sieciowym relokacja 0x%x jeszcze nie jest zaimplementowana RAM zarezerwowany pobiera opcję DHCP i zapisuje do ZMIENNEJ. Jeśli ZMIENNA to -, wypisuje wartość. katalog główny serwera TFTP wykryto pętlę na trasie zapisuje obrazy ROM do KATALOGU [opcjonalne] zapisuje wyjście do PLIKU [wymagane] wybiera indeks fontu nie znaleziono portu szeregowego "%s" set [NAZWA=WARTOŚĆ ...] ustawia tryb CapsLock ustawia podniesienie fontu ustawia opuszczenie fontu ustawia nazwę rodziny fontu ustawia zakres fontu ustawia rozmiar fontu ustawia nazwę pliku wejściowego dla części 32-bitowej. ustawia nazwę pliku wejściowego dla części 64-bitowej. ustawia nazwę pliku wejściowego. Domyślny to standardowe wejście ustawia tryb wstawiania ustawia tryb NumLock ustawia nazwę pliku wyjściowego. Domyślny to standardowe wyjście ustawia tryb pauzy ustawia katalog przedrostka [domyślny=%s] ustawia tryb ScrollLock określa nazwę programu rozmiar stretch|normal nie znaleziono symbolu "%s" tymczasowy nie znaleziono terminala %s lub nie jest obsługiwany przez terminfo nie znaleziono terminala "%s" argument "%s" wymaga liczby całkowitej wpis device.map "%s" jest błędny - zignorowano go. Proszę poprawić lub usunąć device.map nazwa napędu "%s" w device.map jest błędna. Zamiast niej użyto %s. Proszę użyć postaci [hfc]d[0-9]* (np. "hd0" lub "cd") pierwszy sektor pliku core nie jest wyrównany do sektora urządzenie instalacji jest wymienne. Ta opcja jest dostępna tylko na platformach z EFI. typ partycji 0x%x jest nieprawidłowy sektory pliku core są zbyt pofragmentowane rozmiar "%s" nie wynosi %u rozmiar "%s" jest za duży rozmiar "%s" jest za mały ten plik ELF jest jest właściwego typu ta etykieta partycji GPT nie ma BIOS-wej partycji rozruchowej; osadzanie nie będzie możliwe ten LDM nie ma partycji osadzającej; osadzanie nie będzie możliwe ta etykieta partycji typu MSDOS nie ma przerwy za MBR; osadzanie nie będzie możliwe oczekiwano trzech argumentów przekroczony limit czasu przy otwieraniu "%s" przekroczony limit czasu podczas odczytu "%s" przekroczony limit czasu: nie udało się rozwiązać adresu sprzętowego za duże zagnieżdżenie dowiązań symbolicznych translator "%s" dla ścieżki "%s" ma kilka parametrów nie będących opcjami, co najmniej "%s" i "%s" translator "%s" dla ścieżki "%s" ma tylko opcje, nie znaleziono urządzenia linia poleceń translatora dla ścieżki "%s" jest pusta oczekiwano dwóch argumentów typ nie można zidentyfikować systemu plików w %s; nie można wykonać sprawdzania bezpieczeństwa niewyrównany rozmiar urządzenia nieoczekiwany koniec pliku nieznany argument "%s" nieznana kompresja %d
 nieznany typ urządzenia %s
 nieznany system plików nieznany rodzaj urządzenia RAID "%s" nieznany błąd wyrażenia regularnego nieznany format docelowy %s
 nieznany typ terminfo "%s" nieznane określenie formatu opcji DHCP "%s" nieznany adres sieciowy "%s" nieznany interfejs sieciowy "%s" nierozpoznana liczba adres niemożliwy do rozwiązania: %s unset [NAZWA ...] nie obsługiwany błąd HTTP %d: %s nie obsługiwana odpowiedź HTTP nie obsługiwana wersja RAID: %d.%d nie obsługiwany format gzip nie obsługiwany tryb parzystości portu szeregowego nie obsługiwana prędkość portu szeregowego nie obsługiwana liczba bitów stopu portu szeregowego nie obsługiwana długość słowa portu szeregowego używa KOLORU dla tła używa KOLORU dla etykiety używa KOLORU dla tła etykiety używa KOLORU dla tekstu używa KATALOGU jako głównego partycji systemowej EFI. używa PLIKU jako fontu (PF2). używa PLIKU jako fontu dla etykiety używa PLIKU jako obrazu startowego [domyślny=%s] używa PLIKU jako obrazu core [domyślny=%s] używa PLIKU jako mapy urządzeń [domyślnie=%s] używa PLIKU jako programu xorriso [opcjonalne] używa plików programu GRUB w KATALOGU [domyślnie=%s] używa ŁAŃCUCHA jako nazwy produktu używa ŁAŃCUCHA jako wersji produktu używa pliku ID nawet jeśli dostępny jest UUID używa obrazów i modułów umieszczonych w KATALOGU [domyślny=%s/<platforma>] zmienna "%s" nie jest ustawiona wizualnie porządkowane UTF-8 czeka na podłączenie debuggera nie zostanie kontynuowane za pomocą list blokowania błędny znacznik magiczny lub wersja ELI xnu_uuid URZĄDZENIE plik xz uszkodzony lub nie obsługiwane opcje bloku tego adresu nie można usunąć najpierw należy wczytać jądro BIOS-owa partycja rozruchowa jest zbyt mała; osadzanie nie będzie możliwe ten core.img jest niezwykle duży. Nie zmieści się w obszarze osadzenia obszar osadzania jest niezwykle mały. core.img nie zmieści się w nim.                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/locale/pt_BR.mo                                                                           0000600 0001750 0001750 00000201027 13417732100 0014232 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                                /      p?  #   q?      ?     ?  $   ?     ?     
@     @     @     *@  .   7@  .   f@  %   @     @     @     @  F   @  v   /A  +   A     A      A     B  !   B     8B  ,   UB     B     B  $   B     B  *   B     C     .C     6C     FC     ^C  
   ~C  	   C     C  ,   C  ,   C  '   	D  -   1D      _D  (   D  (   D  )   D     D     E     <E     IE     RE  "   [E  4   ~E     E     E     E  1   E     F  %   "F  '   HF  %   pF  '   F     F     F     F     F     F     G     G     $G     0G     PG     bG     pG  3   }G     G  $   G     G     G     H     H     -H     BH  -   ZH     H     H     H     H  #   H     I     *I     FI     ]I     cI     lI     I     I     I     I     I     J      J     -J     DJ     RJ     iJ     xJ     }J     J  %   J     J     J     J     K     K     3K     BK     UK     fK  *   ~K  3   K     K     K  	   
L  #   L     8L     VL     iL     L     L     L     L  P   L     LM     aM  H   vM     M  !   M     M     M     M  	   N  *   N     JN     _N     qN     N  $   N     N     N     N     O     #O     >O  
   \O  
   gO     rO  1   O     O     O     O     O  >   P     FP     ]P     zP     P     P  +   P     P     Q  #   ,Q     PQ     gQ  $   Q     Q     Q  '   Q  9   	R     CR     \R  z   zR     R     R     S  
   'S     2S     ?S     _S  +   |S     S     S     S  "   S     	T     T     +T     CT     OT     _T     vT  "   T  0   T     T     T     T  7   T     7U     ?U     KU     aU  0   hU     U     U     U  6   U  +   V     8V     KV  !   W  d   >W  e   W  d   	X  i   nX  o   X  H   HY     Y     Y     Y     Y     Y     Y     Z     %Z  #   >Z     bZ     Z     Z  )   Z     Z     Z     Z     Z     [     +[     G[     \[     y[     ~[  '   [  P   [     [     \  +   \     7\     H\     d\     {\     \     \     \  $   \     ]     ]     3]     ?]  (   L]  "   u]  +   ]  -   ]     ]     ^     ^  O   %^     u^     ^     ^     ^  %   ^     ^  )   _  !   5_  "   W_     z_  +   _     _     _     _  !   _     `     4`     M`     Y`      p`     `     `     `     `     `     a  4   a     Ra     da     |a     a     a     a     a      b  !   "b     Db  M   ^b  2   b     b  8   b     2c     ?c     Vc     nc     c  3   c  $   c  +   c     "d     0d     Ed     Zd     md      d     d     d     d  D   d     :e     Ae  7   Ie     e  !   e     e  s   e     Vf     nf     f     f     f     f     f     f     g     g     g     8g     Rg  
   ig     tg     g     g     g     g     g  H   g     h     /h     Kh     [h     jh  #   h     h     h     h      h  (   i  %   7i     ]i     fi     yi     ~i     i  "   i  ;   i  #   i  <   j     Uj     cj  	   qj     {j  `   j  )   j     k  q   %k     k     k     k     k     k     k     l     &l     El  "   dl     l     l  #   l     l     l  g   m     ~m     n     n  -   :n     hn  "   |n  '   n     n     n     n     o     o     6o     So     po     o     o     o     o     o      p     p     ,p  -   Lp     zp  "   p  )   p     p     p     q     %q  	   *q  %   4q     Zq     _q     tq     {q  &   q  )   q     q  ^   q     Gr  $   ar  %   r     r  ^   _s  _   s  )   t  '   Ht  >   pt  D   t  !   t  '   u  -   >u     lu  )   u     u  )   u  ,   u     *v     Cv     ^v  E   ov  A   v  )   v     !w  :   >w     yw     w     w     w     w  0   w     x     7x     Lx  )   bx  &   x     x     x     x     x  )   y     Dy  %   Ty  %   zy  ,   y  '   y  :   y  -   0z     ^z  .   nz     z     z  '   z     z     	{  *   {     B{     J{  )   Q{     {{  0   {     {     {     {  !   |     $|  
   :|     E|  <   _|  %   |     |     |     |  d   |  0   \}     }     }     }     }     }  0   }     ~  $   !~     F~     ]~     {~     ~     ~      ~     ~     ~     ~          !     .     I     a     z                                        -     5  m   H          р                    8  '   F  -   n       	             ˁ                     8     T     o            /        ڂ       .     O   4  )             ă  	   Ӄ     ݃  5        1     C     [     q                              ˄     ܄       	                  !     7     Q     X     _  
   m  
   x  	          )             х  N        2     @     E  -   W  -     $     #   ؆          
  (     1   F     x                    χ                    3     <     Y     h     x  B        Έ                    *  &   3     Z     u            (        Ή  '   ډ  %        (     .     B     V  $   h  '             ͊            +        D  $   J     o  J   x     Ë      ۋ  "              @     W  %   o                    ӌ     ی       !        %     >     R     W     d     w                    ۍ                    #     6     L     Z     x  "             Ύ                         2     >     M     ]     n     ~            &        ޏ  &        !     .  !   L     n                         ͐                    
  	         *  %   D  &   j  @        ґ                    !     7     J     _  #   y               ɒ       (     #   /     S     r            .          !     E   $    j  %   E  )   k       (     "   ܖ                    +  2   9  0   l  +        ɗ     Η     ޗ  P        E  3   Ә       )        C  *   V       3        љ       -         .  3   K                      (   ʚ  	               /   .  /   ^  )     0     "     *     *   7  +   b  $     $     
   ؜  	     	     +     8   #     \     d     s  ;   |  )     &     +   	  &   5  +   \            '             Ҟ  	               1   *     \     s       0        Ɵ  )   ̟               /     @     Z     v  2        Š  %     '   	     1  *   Q  "   |  !             ء     ޡ       '      "   (     K     k  %     !        ˢ     ڢ       -        H     U     Z     ^  ,   s  '        ȣ  )   ܣ  %        ,     G     ^     v  #     ?     =     )   1     [  	   j  +   t                ٥       *     %   ;  +   a  c     "     "     L   7       '          
   ̧     ק       :        =     Z     n       +        Ҩ       ,     ,   &  )   S  (   }            #   ͩ  9        +     =  0   N  #     J          #   	     -  %   G     m  !          #               (     +   E     q       :     L         1  !   R     t       0        F  
   c     n  #   {       1          !        &  (   =     f     w                    Ư     ۯ  %     )        @     H     `  >   x  
        °     ԰       6        3     G     Y  ?   o  5              ,     z   3  {     z   *          %  e             ;     V     l               ¶       1     "   3     V     t  E        з     ܷ                 /   9  &   i  *               .   Ÿ  Z        O     [  6   ^               ɹ  %     "        1     H  '   d               ĺ     ֺ  ,   ܺ  ,   	  1   6  9   h               ѻ  g     "   S      v            0   ʼ  %     :   !  ,   \  +          5   ҽ          $     ;  .   X  (     !        Ҿ       -     '   ,     T  +   p  !             ֿ  @        ,     E     e                 1     %     )   :  -   d  e     @     )   9  G   c                           K   3  +     7                       (     ?  $   _  !               ^        8     @  K   I  (     1     ,                                    !   8  "   Z     }            '          $             *     <     A     Z     b      v  W          !        %     ?  !   W  3   y            #     4     +   :  /   f  	                         2     Q     3   a  R                         e   5  /                  g     ~                           +     $   E  /   j        !     #     *     +   ,     X             ,     1          6   #  $   Z  #                                 .     M     h       #                         !   #  ;   E       #     8     #          #   8     \  
   e  '   p                      7     5        1     D  #     7     :   (     c     Y       7   o  ;     [     ^   ?  #     ,     /     *     =   J  "     0     3     '     (   8     a  \   {  V     .   /  $   ^  B     *                        :  9   W  2               /     6   3  "   j            #     '          )     )   I  0   s  +     F     8        P  J   `       5     =     %   ?     e  D   v            7          8        D  !   X  3   z  '                    <     5   \                 |     /   S                 #          <     )     1   I     {  &                    -        @     _     |                               /     4  +   I  #   u            (          	          t   +  %     &     (     %     $   <     a  1   p  @                         %   4  !   Z  %   |  !     $              
     %  /   )     Y     q  7     `     3   "  !   V     x       $     5          %        )  #   B     f     r     z       7          	          
        '  !   8     Z  "   r  
     	               
     	          (             ,  O   G       	          '     )     #        ?     _     o  2     ;     +     !   !     C  $   c  *     #     '     /        /     ;     Z     l       i     4         5  '   U     }       +     *               
   +  9   6  
   p  #   {  (                         ,   $  0   Q            !          6        /  ,   5     b  R   n       -     /     &   6     ]     |  0                    
        %     =  '   T  !   |                 '     "        !      A  ,   b                              	     #  )   9  !   c  0                            !     <     Z     k                              
  '   &  $   N  2   s             +     !        #     ;     Q     h     }                 !          !     "     (   <  E   e  .               $        #      ?  '   `  #     '               '   	  )   1  ,   [  1     $     $            $ >   9 &   x (    N       P                          	   S           Q  K      r                        b         e     f              Q     k  e  	  d   ]                   0                      [       {   g      h      @       N               7           s   H     V                  Y     *         C         S                  h        d          T    >      l       *   &       ,        +         E        O  [   |            3      f                  H       J          B   Q      A     t       1   V                  -      b        D               q                                       j     i          A       [            L          6      Z                        #       5              s  @  ,                      K       \       3         '  >                             ;     P  g                    v    I  2             T      ]           }                  %                 4                  #              x    q             x    G        =  Z       K      A  o            
     n            O         $  B     '           P   \          U          >               o  p    M           /   @  %   j            8     *    a           w          .          k    R               {                 )     <    `     j  k   7          {  h                    !      $     }             (             Y      e       w                              ~             (               +      n               i        2            r   
             X      
        `       8    .                                           ?       |     _    ?  t  u  ?         o       a  5         H                      c  U                  %    2    G     <  Y     l      ^   9            g           z                      ^  l                                   "         0        f  R      3    i      =          D                           }    b     )           :        /  F           9     X   -                  c                 m                  6          T                                    :                    ~  E       1                                           4        5           '                   d      	  s  a    m    w          z                                   .                 -                 !                S      (         c      `                        4      N          y           X          ^          /  u                    J  B      p                  I   ,                          L    I                                                  C             N      ~  <       G            \      !  y                  Z          |        ;   6                         1  _          :           v                 O                    9      x          #      n            u   +  p                ]      t  D                           0        8         V      =                            _   U     $      F        W       ;                   )             7      L                                    "   R         y           r                      &  &  v  m      C           W  "  J    E      F          z                              M              M    W  q                     total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   Failed to initialize video adapter   No info available   or:   (leftmost)  (rightmost)  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s does not support UUIDs %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: option '%c%s' doesn't allow an argument
 %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' --MORE-- -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM enabled
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Available input terminals: Available output terminals: BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check key modifier status. Clear the screen. Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute or check hash checksum. Configure serial port. Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Declare memory regions as faulty (badram). Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Display FPSWA version. Display SMART health status. Display a line of text. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. ENVVAR ENVVAR [ENVVAR] ... ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d seconds 
 Emulate a keystroke sequence Enable interpretation of backslash escapes. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Evaluate an expression. Exit failed Exit from GRUB. Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILESYSTEM [VARIABLE] FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freeze ATA security settings until reset. Friday GNU GRUB  version %s GRUB Boot Menu GRUB emulator. Garbage in ARGP_HELP_FMT: %s Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Hello World ID Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid preceding regular expression Invalid range end Invalid regular expression KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MODULE MODULES Mail xorriso support requests to <bug-xorriso@gnu.org>. Make a bootable image of GRUB. Make a virtual drive from a file. Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all. Mount by UUID. NAME NAME [VARIABLE] [HINTS] NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No command is specified.
 No disk cache statistics available
 No drives have been remapped No match No previous regular expression No virtual device tree available Now connect the remote debugger, please. OS disk #num ------> GRUB/BIOS device Options: PARTITION COMMANDS PATH PORT PORT VALUE [MASK] Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %s: Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform both direct and reverse mappings. Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Premature end of regular expression Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print drive identity and settings. Print sizes in a human readable format. RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot the computer. Regular expression too big Remove a module. Remove an environment variable. Remove any memory regions in specified range. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Reset all mappings to the default values. Retrieve device info. Return to IEEE1275 prompt. Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set drive to sleep mode. Set drive to standby mode. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Show ACPI information. Show APM information. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show the contents of a file. Show the current mappings. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip offset bytes from the beginning of file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Start GDB stub on given port Stop GDB stub Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). TARGET Target format not specified (use the -O option). Test USB support. Test bit at BYTE:BIT in CMOS. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This entry can be booted by any user. Thursday Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Translates the string with the current settings. Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to determine your platform. Use --target. Unable to retrieve pool state Uncompress file before checksumming. Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized option `%s'\n Unrecognized pool state Unsupported image format Usage: Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use STRING as menu entry body. Use serial console. VARNAME Verbose countdown. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Xen hypervisor, version %s YUV  [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [ADDR|comUNIT][,SPEED] [ARG] [CARD] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] a value was assigned to the argument `%s' while it doesn't require an argument access denied addr address not found attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file available RAM available formats: base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 can't find command `%s' cannot open `%s': %s cannot read `%s': %s cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s cat FILE checksum verification failed cmp FILE LOCAL comUNIT[,SPEED] connection refused couldn't find a necessary member device of multi-device filesystem couldn't find geom `part' class couldn't open geom couldn't read ELI metadata cp FILE LOCAL crc FILE delete device map if it already exists device count exceeds limit disk `%s' not found don't update LED state done enter: boot, `e': options, `c': cmd-line error: %s.
 failure reading sector 0x%llx from `%s' failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels four arguments expected generate an image in FORMAT give a short usage message give this help list grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE install GRUB images under the directory DIR/%s instead of the %s directory invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid color specification `%s' invalid file name `%s' invalid line format: %s invalid video mode specification `%s' list network addresses list network cards list network routes ls PATH lzop file corrupted missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name no APM found no DHCP info found no DHCP options found no DNS servers configured no command is specified no decryption key available no such partition no symbol table no terminal specified not a directory not a regular file one argument expected out of memory output file must be specified physical volume %s not found pre-load specified modules MODULES premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit relocation 0x%x is not implemented yet reserved RAM root directory of TFTP server save ROM images in DIR [optional] serial port `%s' isn't found set capslock mode set insert mode set numlock mode set pause mode set scrolllock mode set the program name size stretch|normal symbol `%s' not found temporary terminal `%s' isn't found the argument `%s' requires an integer this ELF file is not of the right type this LDM has no Embedding Partition; embedding won't be possible too deep nesting of symlinks two arguments expected type unaligned device size unknown argument `%s' unknown filesystem unknown regexp error unknown target format %s
 unrecognised network interface `%s' unrecognized number unsupported gzip format unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use FILE as xorriso [optional] variable `%s' isn't set wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your core.img is unusually large.  It won't fit in the embedding area Project-Id-Version: grub 2.0.0-pre6
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2012-10-09 23:36-0300
Last-Translator: Luiz Fernando Ranghetti <elchevive@opensuse.org>
Language-Team: Brazilian Portuguese <ldpbr-translation@lists.sourceforge.net>
Language: pt_BR
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=(n != 1)
X-Generator: Lokalize 1.4
               memória total: %d KiB
     Nenhum modo preferencial disponível
     Modo preferencial: %ux%u
   Falha ao iniciar o adaptador de vídeo   Nenhuma informação disponível   ou:   (mais a esquerda)  (mais a direita)  [OPÇÃO...] %.*s: o parâmetro ARGP_HELP_FMT deve ser positivo %.*s: o parâmetro ARGP_HELP_FMT requer um valor %.*s: parâmetro ARGP_HELP_FMT desconhecido %d s %d s restantes. %s não suporta UUIDs %s está obsoleto. Ao invés, use 'set gfxpayload=%s' antes do comando 'linux'.
 %s está obsoleto. O modo VGA %d não é reconhecido. Ao invés, use 'set gfxpayload=LARGURAxALTURA[xPROFUNDIDADE' antes do comando 'linux'.
 %s ainda não está suportado pelo grub-mkconfig.\n %s, com o Hurd %s %s, com o Hurd %s (modo de recuperação) %s, com o Linux %s %s, com o Linux %s (modo de recuperação) %s, com o Xen %s e Linux %s %s, com o Xen %s e Linux %s (modo de recuperação) %s, com o hipervisor Xen %s, com o kFreeBSD %s %s, com o kFreeBSD %s (modo de recuperação) %s, com o kernel %s (via %s) %s, com o kernel %s (via %s, modo de recuperação) %s: HASH COINCIDE
 %s: OK
 %s: ERRO DE LEITURA
 %s: Excesso de argumentos
 %s: você deve executar isto como root\n %s: erro: %s: informação: %s: opção inválida -- '%c'
 %s: a opção '%c%s' não permite um argumento
 %s: a opção '--%s' não permite um argumento
 %s: a opção '--%s' requer um argumento
 %s: a opção '-W %s' não permite um argumento
 %s: a opção '-W %s' é ambígua
 %s: a opção '-W %s' requer um argumento
 %s: a opção requer um argumento -- '%c'
 %s: a opção requer um argumento -- '%s'\n %s: opção não reconhecida '%c%s'
 %s: opção não reconhecida '--%s'
 %s: aviso: (32 bits) (64 bits) (PROGRAMA ERRO) Nenhuma versão conhecida!? (PROGRAMA ERRO) A opção deveria ter sido reconhecida!? (em %s) - Rótulo '%s' --MAIS-- -h HASH [-c ARQUIVO [-p PREFIXO]] [ARQUIVO1 [ARQUIVO2 ...]] -l | -r | [-s] dispositivo_grub disco_so. Interface 16 bits protegida suportada
 Interface 16 bits protegida não suportada
 Interface 32 bits protegida suportada
 Interface 32 bits protegida não suportada
 =VALOR > Armazenamento RAM não volátil da ACPI RAM recuperável da ACPI Falhar ao desligar via ACPI ENDEREÇO VALOR DO ENDEREÇO [MÁSCARA] ENDEREÇO [TAMANHO] ENDEREÇO1,MÁSCARA1[,ENDEREÇO2,MÁSCARA2[,...]] ENDEREÇO SERVIDOR_DNS APM desabilitado
 APM habilitado
 ARGP_HELP_FMT: o valor %s é menor ou igual a %s ASCII Aceitar finais de linha CR/NL estilo DOS. Terminais de entrada ativos: Terminais de saída ativos: Adaptador '%s':
 Adicionar um servidor DNS Adicionar uma rota da rede. Opções avançadas para %s Opções avançadas para %s (com o hipervisor Xen) Permitir interromper com ESC. Assumir que a entrada é hexadecimal. Assumir que a entrada é frase secreta. Assumir que a entrada é bruta. Tentando descriptografar a chave mestre... Terminais de entrada disponíveis: Terminais de saída disponíveis: BIOS_DUMP [INT10_DUMP] BLOCO BYTE:BIT Modo de imagem de fundo. O diretório base para a lista de hash. Iniciar o sistema baseado na BIOS. Iniciar um sistema operacional. Iniciar no modo único. Iniciar com mensagens de depuração. Iniciar com mensagens detalhadas. Iniciando '%s' Iniciando uma lista de comandos Caminho de inicialização: %s
 Caminho de inicialização: não disponível
 Parar no GDB CGA  COR COMANDO [ARGUMENTOS] A CPU inativa não desacelera o processador
 A CPU inativa desacelera o processador
 CS5536 em %d:%d.%d
 Não foi possível habilitar a área ROM. Alterar os dispositivos configurados. Alterar tipo de partição Verificar a tecla Alt. Verificar a tecla Ctrl. Verificar a tecla Shift. Verifica as funcionalidades da CPU. Verifica os hashes dos arquivos com a lista de hash em ARQUIVO. Verifica se a CPU suporta o modo (padrão) de 64-bit (longo). Verificar o status da tecla modificadora. Limpar a tela. Comandos: Comparar ARQUIVO com o arquivo local LOCAL. Comparar arquivo '%s' com '%s':
 Comparar dois arquivos. Computar ou verificar o hash. Configurar porta serial. Copiar ARQUIVO para o arquivo local LOCAL. Copiar ARQUIBO para a saída padrão. Não foi possível encontrar o driver FPSWA Não foi possível encontrar o volume físico '%s'. Alguns módulos poderão faltar na imagem core. Não foi possível carregar sha256 Não foi possível carregar sha512 Criar estruturas parecidas com a BIOS para compatibilidade com SO existente. DISPOSITIVO DISPOSITIVO [PARTIÇÃO[+/-[TIPO]]] ... NOME_DO_DISPOSITIVO DIRETÓRIO DIRETÓRIO [OSBundleRequired] SERVIDOR_DNS Declarar regiões da memória como problemática (badram). Definir uma entrada do menu. Definir um submenu. Remover um endereço da rede. Remover uma rota da rede. Remover a unidade de loopback especificada. Remover variáveis. Determinar driver. Determinar o UUID do de sistema de arquivos. Determinar o rótulo do sistema de arquivos. Determinar o tipo de sistema de arquivos. Determinar o tipo de mapa da partição. Dispositivo %s: ID do dispositivo: %s
 ID do dispositivo: não disponível Cor direta, máscara: %d/%d/%d/%d  posição: %d/%d/%d/%d Desabilitar ACPI. Desabilitar SMP. Desabilitar todas as saídas de inicialização. Habilitar/desabilitar o SMART (0/1) Estatísticas de cache do disco: acertos = %lu (%lu.%02lu%%), erros = %lu
 Exibir a versão do FPSWA. Exibir o status da saúde do SMART. Exibe uma linha de texto. Exibir a saída em todos os consoles. Exibir o modo de energia. Exibe o uso desse comando e sair. Exibe esta ajuda e sai. Exibir/definir a data e hora atual. Não exibir a nova linha final. Não exibir mensagens. Não testar nenhuma unidade de disquete. Não usar o APM para desligar o computador. Não fazer nada, sucesso. Não fazer nada, sem sucesso. Não exibir mensagens de diagnósticos da inicialização. Não carregar tabelas de host especificado por lista separada por vírgulas. Não reiniciar, apenas desligar. Não parar após o primeiro erro. Não atualizar EBDA. Pode corrigir as falhas ou travamentos em algumas BIOS, mas, torna-se ineficaz em um SO que não recebe RSDP do GRUB. VARIÁVEL_DO_AMBIENTE VARIÁVEL_DO_AMBIENTE [VARIÁVEL_DO_AMBIENTE]... ESC em qualquer momento sai. EXPRESSÃO EXPRESSÃO ] Tempo decorrido: %d.%03d segundos 
 Emula um sequencia de teclas Habilitar a interpretação invertida de escapes. Digitar a senha ZFS:  Entrar no KDB na inicialização. Entrar no modo normal. Digitar frase secreta para %s%s%s (%s):  Digite a senha:  Digitar nome de usuário:  Avaliar uma expressão. Falha ao sair Sair do GRUB. Sair do modo normal. Exportar variáveis. Exportar tabelas versão 1 para o SO. Exportar tabelas versão 2 e 3 para o SO. ARQUIVO ARQUIVO [ARGUMENTO ...] ARQUIVO [ARGUMENTOS...] ARQUIVO | TEMPO [TIMBRE1 DURAÇÃO1] [TIMBRE2 DURAÇÃO2] ...  ARQUIVO... ARQUIVO1 ARQUIVO2 SISTEMA_DE_ARQUIVOS [VARIÁVEL] FORMATO O protocolo FPSWA não conseguiu encontrar a interface FPSWA revisão: %x
 DE-PARA[,DE-PARA] DE[K|M|G] PARA[K|M|G] Os arquivos diferem no deslocamento %llu: 0x%x [%s], 0x%x [%s]
 Os arquivos diferem no tamanho: %llu [%s], %llu [%s]
 Tipo de sistema de arquivos %s Preencha a MBR híbrida do DISPOSITIVO da unidade GPT. Partições especificadas serão uma parte da MBR híbrida. Até 3 partições são permitidas. TIPO é um tipo de MBR. + significa que a partição está ativa. Somente uma partição pode estar ativa. Finalizar o carregamento do emulador de EFI. Tentar primeiro a DICA do dispositivo se executando no ARC. Se a DICA terminar em vírgula, tentar também subpartições. Tentar primeiro a DICA do dispositivo se executando na BIOS. Se a DICA terminar em vírgula, tentar também subpartições. Tentar primeiro a DICA do dispositivo se executando no EFI. Se a DICA terminar em vírgula, tentar também subpartições. Tentar primeiro a DICA do dispositivo se executando em IEEE1275. Se a DICA terminar em vírgula, tentar também subpartições. Tentar primeiro a DICA do dispositivo se o acesso direto ao hardware for suportado. Se a DICA terminar em vírgula, tentar também subpartições. Tentar primeiro a DICA do dispositivo. Se a DICA terminar em vírgula, tentar também subpartições. Corrigir problema de vídeo. %s encontrado em %s (%s)\n Encontrado %s em %s\n GNU Mach encontrado: %s Módulo do Hurd encontrado: %s Kernel NetBSD encontrado: %s\n Plano de fundo encontrado: %s\n Imagem initrd encontrada: %s\n Diretório de módulos do kernel encontrado: %s\n Kernel do FreeBSD encontrado: %s\n Imagem Linux encontrada: %s\n Tema encontrado: %s\n Congelar as configurações de segurança do ATA até ser reiniciado. Sexta-feira GNU GRUB versão %s Menu de inicialização GRUB Emulador do GRUB. Lixo no ARGP_HELP_FMT: %s Obter a soma de verificação crc32 do ARQUIVO. Obter informações do cache do disco. Obter/definir os parâmetros ATA do disco. HASH DICA Desligar o sistema, se possível usando o APM. Desliga o computador. Este comando não funciona em todas as implementações de firmware. Olá mundo! ID Dispositivo virtual incorreto: nenhum tipo disponível Inserir um módulo. Instalar o GRUB na sua unidade. Referência anterior inválida Nome de classe de caractere inválido Caractere de ordenação inválido Comando inválido %s.
 Conteúdo inválido de \{\} Expressão regular precedente inválida Fim de intervalo inválido Expressão regular inválida KERNEL ARGUMENTOS TECLA Tecla para iniciar rapidamente esta entrada. Dispositivo virtual folha (arquivo ou disco) O parâmetro antigo 'ask' não é mais suportado. Legenda: máscara/posição=vermelho/verde/azul/reservado Listar servidores DNS Listar dispositivos PCI. Listar todos os arquivos. Lista os modos de vídeo disponíveis. Se a resolução for dada exibe apenas os modos correspondentes. Listar os dispositivos e arquivos. Listar dispositivos ou arquivos. Lista de dispositivos. Listar arquivos no CAMINHO. Listar mapa de memória fornecido pelo firmware. Lista dos modos de vídeo suportados: Lista de usuários com permissão de iniciar esta entrada. Listar ou selecionar um terminal de entrada. Listar ou selecionar um terminal de saída. Listar as fontes carregadas. Listar as variáveis do arquivo de bloco de ambiente. Carregar imagem XNU 64 bit. Carregar dump da BIOS. Carregar o ambiente FreeBSD. Carregar o módulo do kernel do FreeBSD (ELF). Carregar o módulo do kernel do FreeBSD. Carregar o kernel.sys do FreeBSD. Carregar Linux Carregar o NTLDR ou BootMGR. Carregar o módulo do kernel do NetBSD (ELF). Carregar o módulo do kernel do NetBSD. Carregar o kernel do Plan9. Carregar o diretório de extensões do XNU. Carregar pacote de extensão XNU. Carregar extensão XNU. Carregar imagem XNU. Carregar ramdisk do XNU. Ela estará disponível no SO como md0. Carregar uma imagem PXE. Carregar um leiaute de teclado. Carregar um kernel multiboot 2. Carregar um módulo multiboot 2 Carregar um kernel multiboot. Carregar um módulo multiboot. Carregar uma imagem de apresentação para o XNU. Carregar uma imagem do XNU hibernado. Carregar e inicializar o emulador de EFI. Carregar outro carregador de inicialização. Carregar outro arquivo de configuração sem alterar o contexto mas obter apenas as entradas de menu. Carregar outro arquivo de configuração sem alterar o contexto. Carregar outro arquivo de configuração. Carregar tabelas de host ACPI e tabelas especificadas pelos argumentos. Carregar initrd. Carregar ramdisk do kOpenBSD. Carregar o kernel do FreeBSD. Carregar o kernel do NetBSD. Carregar o kernel do OpenBSD. Carregar apenas as tabelas especificadas pela lista separada por vírgulas. Carregar o mesmo arquivo de várias formas. Carregar as variáveis do arquivo de bloco de ambiente. Fontes carregadas: Carregando o GNU Mach... Carregando o Linux %s... Carregando o XEN %s... Carregando o ramdisk inicial... Carregando o kernel do FreeBSD %s... Carregando o kernel do Illumos... Carregando o Hurd... falha na verificação do MAC ENTRADA_DO_MENU é um número, um título de item do menu ou um identificador de item do menu. MÓDULO MÓDULOS Envie um e-mail de pedido de suporte do xorriso para <bug-xorriso@gnu.org>. Fazer uma imagem inicializável do GRUB. Fazer uma unidade virtual a partir de um arquivo. Gerenciar os mapeamento de unidades da BIOS. Os argumentos obrigatórios ou opcionais para as opções longas também são obrigatórios ou opcionais para qualquer versão curta correspondente. Manipular dispositivos PCI. Tempo medido usado pelo COMANDO Memória esgotada Tipo de memória: DDR2. Tipo de memória: desconhecido. Identificador de entrada do menu. Entrada do menu não especificada. Tipo de entrada do menu. Segunda-feira Monocromático Mais de um dispositivo de instalação? Mais de uma entrada do menu? Montar um dispositivo criptografado. Montar tudo. Montar pelo UUID. NOME NOME [VARIÁVEL] [DICAS] NÚMERO NÚMERO_DE_SEGUNDOS Nome	Contador Ref	Dependências
 Unidades de disco nativas estão em uso. Recusando usar firmware da interface de disco. Protocolos de rede: A nova MBR está escrita em '%s'
 Nenhum CS5536 encontrado. Nenhum FPSWA encontrado Nenhum comando foi especificado.
 Nenhuma estatística de cache do disco disponível
 Nenhuma unidade foi remapeada. Sem correspondência Nenhuma expressão regular anterior Nenhuma árvore de dispositivos virtuais disponível Agora conecte o depurador remoto por favor. OS disco #número ------> Dispositivo GRUB/BIOS Opções: COMANDOS DA PARTIÇÃO CAMINHO PORTA PORTA VALOR [MÁSCARA] Analisar a configuração antiga no novo contexto. Analisar a configuração antiga no novo contexto apenas para as entradas de menu Analisar a configuração antiga no mesmo contexto. Analisar a configuração antiga no mesmo contexto apenas para as entradas de menu Número da parte: %s.
 Partição %s: Caminho: %s
 Caminho: não disponível Executa COMANDOS na partição.
Use 'parttool PARTIÇÃO help' para a lista de comandos disponíveis. Executar ambos os mapeamentos direto e inverso. Reproduzir um tom. Por favor, não use o título antigo '%s' para o GRUB_DEFAULT, use '%s' (para versões antes da 2.00) ou '%s' (para a 2.00 ou posterior) GUID da fila: %016llx
 GUID da fila: não disponível Nome da fila: %s
 Nome da fila: não disponível Estado da fila: ativo Estado da fila: destruído Estado da fila: exportado Estado da fila: dispositivo de nível 2 ARC Estado da fila: potencialmente ativa Estado da fila: reservado para disco de reserva Estado da fila: não disponível Estado da fila: não inicializada Fim prematuro da expressão regular Pressione qualquer tecla para continuar... Pressione qualquer tecla para iniciar o xnu Pressione 'Enter' para iniciar o SO selecionado, 'e' para editar os comandos antes da inicialização or 'c' para linha de comando. Pressione 'Enter' para iniciar o SO selecionado, 'e' para editar os comandos antes da inicialização or 'c' para a linha de comando. ESC para retornar ao menu anterior. Exibir informação de memória. Exibir informação ZFS sobre o DISPOSITIVO. Exibir ZFS-BOOTFSOBJ ou armazená-lo na VARIÁVEL Imprimir uma lista de bloco. Configurações e identidade da unidade de impressão. Imprimir tamanhos de forma legível. RAM armazenando código de firmware Número de slot da RAM %d
 EXPRESSÃO_REGULAR TEXTO A imagem ROM está presente. Ler valor 16 bit do ENDEREÇO; Ler valor 16 bit da PORTA. Ler valor 32 bit do ENDEREÇO. Ler valor 32 bit da PORTA. Ler valor 8 bit do ENDEREÇO. Ler valor 8 bit da PORTA. Ler apenas o COMPRIMENTO dos bytes. Falha ao reiniciar Reiniciar o computador. Expressão regular muito grande Remover um módulo. Remover uma variável do ambiente Remover qualquer região da memória na faixa especificada. Relate os erros para %s.
 Relate erros em <bug-grub@gnu.org>. Redefinir todos os mapeamentos para os valores padrões. Obter informações do dispositivo. Retorna ao prompt IEEE1275. Execute 'go' para continuar o GRUB. SEGUNDOS NOME_CURTO NOME_CURTO REDE [INTERFACE| gw GATEWAY] TAMANHO ORIGEM|-u UUID|-a|-b TEXTO Sábado Salvar o valor lido para dentro da variável NOMEDAVAR. Salvar as variáveis no arquivo de bloco de ambiente. Diz 'Olá mundo!'. Procurar dispositivos pelo UUID. Se a VARIÁVEL estiver especificada, o primeiro dispositivo encontrado é definido para uma variável. Procurar dispositivos pelo arquivo. Procurar dispositivos pelo UUID do sistema de arquivos. Procurar dispositivos pelo rótulo do sistema de arquivos. Procurar dispositivos pelo arquivo, sistema de arquivos ou UUID do sistema de arquivos. Se '--set' for especificado, o primeiro dispositivo encontrado é definido para uma variável. Se nenhum nome de variável for especificado, 'root' é usado. Procurar dispositivos pelo arquivo. Se a VARIÁVEL estiver especificada, o primeiro dispositivo encontrado é definido para uma variável. Procurar dispositivos pelo rótulo. Se a VARIÁVEL estiver especificada, o primeiro dispositivo encontrado é definido para uma variável. Selecionar dispositivo por sua posição no barramento. Selecionar dispositivo pelo fabricante e ID do dispositivo. Definir o gerenciamento avançado de energia (APM)
(1=baixo, ..., 254=alto, 255=desligado). Definir o gerenciamento acústico automático
(0=desligado, 128=silencioso, ..., 254=rápido). Definir OEMID de RSDP, XSDT e RSDT. Definir ID do OEMTABLE de RSDP, XSDT e RSDT. Definir revisão OEMTABLE de RSDP, XSDT e RSDT. Definir uma variável para retornar valor. Definir uma variável para o primeiro dispositivo encontrado. Definir uma variável do ambiente. Definir o campo do criador de RSDP, XSDT e RSDT. Definir a revisão do criador de RSDP, XSDT e RSDT. Definir a unidade para o modo suspenso. Definir a unidade para o modo de espera. Definir dispositivo raiz. Definir o tempo limite de espera
(0=desligado, 1=5s, 2=10s, ..., 240=20min, 241=30min, ...). Definir a entrada do menu padrão para o GRUB, para a próxima inicialização apenas. Definir a entrada do menu padrão para o GRUB. Definir senha de usuário (PBKDF2).  Definir senha de usuário (texto puro). Desaconselhado e inseguro. Definir variável com entrada do usuário. Definir variáveis. Exibir informações ACPI. Exibir informações APM. Exibe uma mensagem de ajuda. Exibir uma lista longa com informações mais detalhadas. Exibir o conteúdo do ARQUIVO no modo hexadecimal. Exibir os módulos carregados. Exibir o conteúdo da memória. Exibir o conteúdo bruto do setor ATA IDENTIFY. Exibir os conteúdos brutos de um arquivo ou memória. Exibe os conteúdos de um arquivo. Exibe os mapeamentos atuais. Exibir esta mensagem. Exibir apenas as tabelas versão 1. Exibir apenas as tabelas versão 2 e 3. Falhar ao desligar Simular o comando 'initrd' do grub-legacy Simular o comando 'kernel' do grub-legacy Simular o comando 'modulenounzip' do grub-legacy Simular o comando 'password' do grub-legacy Simular o comando 'password' do grub-legacy no modo de entrada do menu Ignorar os deslocamentos de bytes do início do arquivo. Slot %d aberto
 Algumas partes do Hurd encontrado, mas não o suficiente para inicializar. Especificar um nome de arquivo. Especifica o hash (soma de verificação) a utilizar. Especificar um ou mais arquivos de fontes a serem carregados. Iniciar o stub GDB na porta fornecida Parar o stub GDB Armazenar NÚMERO de componente correspondente em NOME_DE_VARIÁVEL. Sucesso Domingo Suprimir a saída normal (as advertências permanecem). DESTINO Formato de destino não especificado (use a opção -O). Testar suporte USB. Bit de teste em BYTE:BIT na CMOS. Testa se a EXPRESSÃO_REGULAR corresponde ao TEXTO. Testar subsistema de vídeo no modo LxA Testar subsistema de vídeo. Somente texto Os arquivos são idênticos.
 A entrada destacada será executada automaticamente em %d s. Esta entrada pode ser iniciada por qualquer usuário. Quinta-feira Tamanho total da flash: %d B.
 Remover barra invertida Transforma UUID de 64 bit num formato adequado ao XNU. Se '-l' for usado mantem as letras minúsculas como feito pelo blkid. Traduzir o texto com as configurações atuais. Terça-feira SENHA DO USUÁRIO USUÁRIO SENHA_PBKDF2 NOME_DE_USUÁRIO[,NOME_DE_USUÁRIO] UTF-8 Não foi possível determinar sua plataforma. Usar --target. Não foi possível obter o estado da fila Descompactar o arquivo antes de verificar o hash. Comando desconhecido '%s'
 Formato de compressão desconhecido %s Codificação desconhecida Erro de sistema desconhecido Modo de vídeo desconhecido  Tipo de dispositivo virtual desconhecido: %s
 Descarregar o emulador de EFI. ( ou \( sem correspondência ) ou \) sem correspondência [ ou [^ sem correspondência \{ sem correspondência Opção não reconhecida '%s'\n Estado da fila não reconhecido Formato de imagem não suportado Uso: Uso: %s DISPOSITIVO
 Uso: %s [ARQUIVO_ENTRADA [ARQUIVO_SAÍDA]]
 Uso: %s [OPÇÃO] ENTRADA_DO_MENU\n Uso: %s [OPÇÃO]\n Usar CD-ROM como root. Use TEXTO como corpo da entrada do menu. Usar console serial. NOMEDAVAR Contagem regressiva detalhada. Versão %u.%u
32 bit CS = 0x%x, comp. = 0x%x, desloc. = 0x%x
16 bit CS = 0x%x, comp. = 0x%x
DS = 0x%x, comp. = 0x%x
 O dispositivo virtual está degradado O dispositivo virtual está com falhas O dispositivo virtual está desconectado O dispositivo virtual está conectado O dispositivo virtual está removido LARGURAxALTURA Aguardar por um número de segundos especificado. Aguardar pressionamento de tecla depois de cada linha de saída. Aviso: Quarta-feira Windows NT/2000/XP (carregador) Windows Vista/7 (carregador) Gravar VALOR 16 bit para o ENDEREÇO. Gravar VALOR 16 bit para a PORTA. Gravar VALOR 32 bit para o ENDEREÇO. Gravar VALOR 32 bit para a PORTA. Gravar VALOR 8 bit para o ENDEREÇO. Gravar VALOR 8 bit para a PORTA. Hipervisor xen, versão %s YUV [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] ARQUIVO [--md5] SENHA [ARQUIVO] [--no-mem-option] [--type=TIPO] ARQUIVO [ARGUMENTO ...] [-1|-2] [--excluir=TABELA1,TABELA2|--carregar somente=TABELA1,TABELA2] ARQUIVO1 [ARQUIVO2] [...] [-c ARQUIVO [-p PREFIXO]] [ARQUIVO1 [ARQUIVO2 ...]] [-d] NOME_DO_DISPOSITIVO ARQUIVO. [-e|-n] TEXTO [-f ARQUIVO] [-f ARQUIVO] nome_da_variável [...] [-f|-l|-u|-s|-n] [--hint DICA [--hint DICA] ...] NOME [-h|-p|-r] [ARQUIVO] [-l] UUID_DO_GRUB [NOME_DA_VARIÁVEL] [-l|-h|-a] [ARQUIVO ...] [ENDEREÇO|comUNIDADE][,VELOCIDADE] [ARGUMENTO] [PLACA] [VARIÁVEL_DO_AMBIENTE=VALOR] [VARIÁVEL_DO_AMBIENTE] [COMBINAÇÃO_DE_TECLAS1] [COMBINAÇÃO_DE_TECLAS2] ... [NÚMERO:]NOME_DA_VARIÁVEL [NÚMERO] [OPÇÕES...] [OPÇÕES] [OPÇÕES] DISCO [OPÇÕES] ARQUIVO_OU_DISPOSITIVO [OPÇÃO]... [MÓDULOS] [OPÇÃO]... [CAMINHO|DISPOSITIVO] [OPÇÕES] [CAMINHO] [PADRÃO ...] [LISTA_DE_USUÁRIOS] [VALOR]... [LxA[xP]] [LxA] [[ano-]mês-dia] [hora:minuto[:segundo]] [barramento]:[slot][.func] [fabricante]:[dispositivo] um valor foi atribuído ao argumento '%s' enquanto ele não requer um argumento acesso negado endereço endereço não encontrado tentar ler ou gravar fora do disco '%s' tentar ler ou escrever fora da partição tentar ler após o final do arquivo tentar procurar fora do arquivo RAM disponível formatos disponíveis: endereço_base = 0x%llx, comprimento = 0x%llx, %s
 endereço_base = 0x%llx, comprimento = 0x%llx, tipo = 0x%x
 não foi possível encontrar o comando '%s' não foi possível abrir '%s': %s não foi possível ler '%s': %s não foi possível procurar '%s': %s não foi possível obter o status '%s': %s não foi possível gravar no CD-ROM não foi possível gravar para '%s': %s não foi possível gravar na saída padrão: %s cat ARQUIVO falha na soma de verificação cmp ARQUIVO LOCAL comUNIDADE[,VELOCIDADE] conexão recusada não foi possível encontrar um dispositivo membro necessário do sistema de arquivos multi-dispositivos. não foi possível encontrar a classe 'part' do geom não foi possível abrir o geom Não foi possível ler os metadados ELI cp ARQUIVO LOCAL crc ARQUIVO remover mapa de dispositivos se já existir o contador de dispositivo excedeu o limite disco '%s' não encontrado não atualizar o estado do LED concluído 'Enter': inicializa, 'e': opções, 'c': linha de comando erro: %s.
 falha ao ler o setor 0x%llx de '%s' falha ao gravar o setor 0x%llx para '%s' falso RAM com problemas (BadRAM) arquivo '%s' não encontrado é esperado o nome de arquivo é esperado nome de arquivo ou tempo e notas o sistema de arquivos '%s' não suporta rótulos quatro argumentos esperados gerar uma imagem no FORMATO fornece uma breve mensagem de uso fornece esta lista de ajuda grub-mkimage está compilado sem suporta a arquivos XZ grub> desliga por SEGUNDOS segundos (padrão 3600) hex ARQUIVO instalar as imagens do GRUB no diretório DIRETÓRIO/%s ao invés do diretório %s senha PBKDF2 inválida magia ELF dependente de arquitetura inválida magia ELF independente de arquitetura inválida especificação de cor inválida: '%s' nome de arquivo inválido '%s' formato de linha inválido: %s especificação de modo de vídeo inválida '%s' listar os endereços de rede listar as placas de rede listar as rotas da rede ls CAMINHO arquivo lzop corrompido símbolo '%c' faltando faltando opção obrigatória para '%s' módulo '%s' não está carregado O módulo não está carregado nome APM não encontrado nenhuma informação de DHCP encontrada nenhuma opção de DHCP encontrada nenhum servidor DNS configurado nenhuma comando foi especificado nenhuma chave de descriptografia disponível nenhuma partição nenhuma tabela de símbolo nenhum terminal especificado não é um diretório não é um arquivo comum é esperado um parâmetro memória insuficiente o arquivo de saída deve ser especificado volume físico %s não encontrado pré-carregar os módulos MÓDULOS especificados fim prematuro do arquivo fim de arquivo prematuro %s pressionar a tecla CapsLock pressionar a tecla Insert pressionar a tecla NumLock pressionar a tecla ScrollLock pressionar SysRq pressionar o Alt esquerdo pressionar o Ctrl esquerdo pressionar o Shift esquerdo pressionar o Alt direito pressionar o Ctrl direito pressionar o Shift direito exibe a versão do programa exibir a informação da versão e sair exibir esta mensagem de ajuda e sair realocação de 0x%x ainda não está implementada RAM reservada diretório raiz do servidor TFTP salvar imagens ROM no DIRETÓRIO [opcional] porta serial '%s' não encontrada definir o modo CapsLock definir o modo Insert definir o modo NumLock definir o modo Pause definir o modo ScrollLock definir o nome do programa tamanho stretch|normal símbolo '%s' não foi encontrado temporário terminal '%s' não foi encontrado o argumento '%s' requer um inteiro este arquivo ELF não é do tipo correto este LDM não tem partição de embutir; não será possível embutir encadeamento de link simbólico muito profundo são esperados dois argumentos tipo tamanho de dispositivo não alinhado argumento desconhecido '%s' sistema de arquivos desconhecido erro desconhecido na expressão regular formato de destino desconhecido %s
 interface de rede não reconhecida '%s' número não reconhecido formato gzip não suportado paridade de porta serial não suportada velocidade de porta serial não suportada bit de parada de porta serial não suportada tamanho de palavra de porta serial não suportada usar ARQUIVO como xorriso [opcional] a variável '%s' não está definida versão ou magia ELI incorretas xnu_uuid DISPOSITIVO arquivo xz corrompido ou com opções de bloco não suportadas você não pode remover este endereço você precisa carregar o kernel primeiro seu core.img está maior que de costume. Ele não caberá na área de embutir.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          boot/grub/locale/ru.mo                                                                              0000600 0001750 0001750 00000415630 13417732100 0013661 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                       x     #    G      _  #   _      _     _     _     `  $   `     =`  6   Q`     `     `  	   `     `     `     `     `     `     a  .    a  .   Oa  %   ~a     a     a    a    b    c     d  7   d  F   e  v   be  +   e     f      f     7f  !   If     kf  ,   f     f     f  $   f     g  *   #g     Ng     ag     ig     yg     g  
   g  	   g     g  ,   g  ,   h  ,   <h  '   ih  -   h      h  (   h  (   	i  )   2i     \i     |i     i     i     i  "   i  4   i     j     j  7   (j     `j  1   ij     j     j  %   j  '   j  %   k  '   1k     Yk     ^k     `k     ~k     k     k     k     k     k     k     k     l     l     (l  3   5l     il  $   ol     l     l     l     l     l     l     m  -   )m     Wm  !   tm     m     m     m  #   m      n  `   n  Z   n     Do     _o     {o     }o     o     o     o     o     o     o     o     p     %p     ?p     [p     hp     p     p     p     p     p     p     p  %   p     	q     (q     <q     Sq     nq     q     q     q     q  *   q  3   q     .r  "   Ir  8   lr     r     r  	   r  #   r     s      s     3s     Ss     ss     s  )   s     s     s      t  P   t     ot     t  H   t  &   t     	u     !u  !   (u  ,   Ju     wu     u     u  	   u  !   u  *   u     u     v     (v     :v     Tv  $   lv     v     v     v     v     v     w  
   %w  
   0w     ;w  1   Nw     w     w     w     w  3   w  >   x  $   Cx     hx     x     x     x     x     x  +   y     /y     Ky  #   iy     y     y  $   y     y     z  '   z  9   Fz     z     z  z   z     2{     9{  8   M{     {  
   {     {     {     {     {     |  +   |     |     |     |  "   }     5}     F}  (   W}     }     }     }     }     }     }  "   }  0   ~     A~     F~     U~  7   d~     ~     ~     ~     ~     ~     ~  0   ~          /     A     W  2   n  %               *     6     +   M     y            !   {  d     e     d   h  i   ͂  o   7  H                       *     =     S     m       #             ߄       1   	  )   ;     e     l     n       /             х       5        ;     Z  K   v          ކ                           '   $  P   L            	   ȇ     ҇     Շ       '     +   0     \     m  )             ʈ                    0     F  $   [            "        Љ     ҉     މ  (               "     +   A  -   m               Ê     Ԋ       O        F     \     t            %        Ӌ  )     !     "   >     a     }  +             ׌       !             7     P     \      s                                4         U     t                    Ԏ                #  !   D     f  4     M     2        6     P  *   n  8        Ґ     ߐ               %  3   =  $   q  +             ב                    "      >     _     }            D               7      ;   8     t       !        Փ       s                       Ŕ     ؔ                    0     4     :                    Ö     ʖ     ֖            '   %  
   M     X     g     }                      H   ͗          )     E     U  %   d            #                       $      ;     \      {       "     (   ̙       %        7  2   Q            #     *   ʚ               
  #        3     8  	   J  	   T  "   ^  ;     #     <             ,     J  .   X  	          `          !     )   ;     e     i     o     w  q             
     !     0     G     Z     p            "   Þ                    0     G     ]     q       #        ß       g        d            -         N  !   b       "     '     Q        2     N     h     |                    ڢ               0     L     d      r                     ܣ                 -   <     j       "     b     )        H     ^     v  ,             ץ  	   ܥ  "     %   	     /     4     I     P  &   Y  )          ^          $   6  %   [       ^   4  _     }        q  )   (  '   R  >   z  D     !     '      -   H  #   v       )          )     )   +  ,   U                    ֬       E     $   H  A   m  )        ٭               -      L     m  q          :        L     j     y               ͯ            0        E     c     x  )     &        ߰               *  )   F     p  %     %     ,   ̱  '     :   !     \  -   {       .               '     $   7  "   \                 *               )     o               6   ]            0         ε  !     "     #   4     X     j            !        ߶  
           <     %   W  >   }          ŷ     ɷ     Ϸ            d     *     0     6   ܸ               )     >     R     X  0   r       !        ع       $        ,     E     \     z       $     "   ͺ  $             *      >     _     t                         һ       '        /     O  $   h  +     "        ܼ  )                  =     ]     r  '             ͽ       <         ;     \     d     w  m                   5     O     h  +     3     1          '   "  -   J     x  '     '     .     	         
     &     ?     [     w                                *     ?   J  B     p        >  /               .   $  O   S  )               	          5        P     b     z            :                   *     0     C     J     Y     b                      	                                 1     8     ?  
   M  
   X  	   c     m  !   s  )                         F   "  N   i       "               -      -   .  $   \  #     0     6                  .  (   <  1   e  )               !        	           >  %   V     |  &                     7     .   H  4   w                           %   .     T     i     ~                           ,        /     >     N     j     }       #               B        @     \     |                 &             !     /     8     V  &   p                      ;     V   *  "     &     !                  	  /   '  H   W  F     w     N   _  (               I     $   I  '   n       %                         $     '   :  *   b                 J             5     P  -   d  +          $          "     +     J   A  %                "              !     B     \     s                      %             +     I  %   f                           [        B  !   V     x                                             )     ?     Y     v                                        ,  1   L     ~                                1          0        5     J  !   `       "                                 '     <     H     W     g     x                 &                       6     T  '   i  &          L             0  !   D     f                                                #   .  #   R  $   v            &          !             (     =     B     Q  	   g  7   q       %     [     w   E  7     K     #   A  /   e                 &     U     @   i  Q                  +  +   @     l  R     L     .   )     X     o  F   t                              .      A     b     w       2     !     #        %     9     Q     b                           (     #   8     \     u            )               '     '   @  '   h       0               -     8   G            !                     .        L  !   j  B     E     B       X  1   D  E   v  7     H        =  O   Y  +     O     
   %     0     M     e  4     #     '     /        5  h   L  D     ;        6     ;    R    d    N  %   \  `     m        Q  >        Q  8   `       9          C     #   A     e  <   x  9     b     &   R     y       3     t        I     [  -   u  O     \     O   P K    P    :   = E   x B    c    5   e 5    !            E    ]   Q 	        S       ! G   2 7   z     U    Z    U   f Z           ) A   + /   m 6    
    (        7   "    Z    v              D       $	 S   *	 /   ~	 1   	    	 !   	 +   
 /   F
 9   v
 [   
 1    E   > _    Y    B   > W               x 1   
 3   <    p    s     y         3    =    =   % ;   c N    Q    S   @     0    -               ?    [    ` #   i 4    /    "    8    =   N &    &    *    (    /   . V   ^     N   M _    t       q F        =    ,   # #   P 8   t R    =        > i   ^ ?    E    3   N     .   , .   [     C    !   [    } 4           V    r !   y     U    L    6   O )    $    )    -    K   - $   y $    :    @    <   ? 8   |     
        \       R     k  6     0     ^     q   J! `   ! $   " R   B" +   " 6   " C   " +   <# `   h# J   # G   $ L   \$ -   $ E   $ O   % F   m% H   % U   % j   S& J   & I   	'    S' '   :( U   b( }   ( B   6)    y)    ) /   ) 9   ) ^  * 0   j+ u   + !   , *   3, .   ^, ?   ,    , 0   , X   - &   u- 1   -    -    - 4   . 2   6. C   i. H   .    .    .     / `   @/    /    /     / 6   /    0    )0 L   60    0    0    0 9   0 |   1 A   ~1 )   1    1 [   2 b   c2 L   2 4   3 )   H3   r3 ;   5 "  C5 #  f6 "  7 '  8 @  9    ; 2   ;    -<    L<    f< "   < $   <    < $   < 9   = %   A= #   g=    = a   = i   >    u>    >    > $   > N   >    ? 4   ,?    a? \   ? 0   ? 5   @    E@ M   @ =   A @   ZA    A 	   A    A    A V   A `   B >   ~B    B 	   B    B A   B '   !C a   IC a   C    D :   ,D ;   gD 6   D =   D 8   E $   QE *   vE .   E 4   E U   F .   [F @   F b   F    .G    1G #   MG c   qG    G 	   G O   G ]   6H    H .   I    EI !   YI 3   {I 4   I    I #   J ?   J C   J /   CK 5   sK s   K D   L r   bL C   L E   M 5   _M B   M a   M 2   :N !   mN .   N 7   N 1   N &   (O    OO (   iO 6   O 0   O "   O ;   P 7   YP ,   P "   P l   P 2   NQ "   Q ;   Q (   Q ,   	R &   6R *   ]R :   R Y   R L   S 3   jS p   S    T a   T <   U 0   DU `   uU r   U    IV <   dV $   V #   V $   V ]   W ^   mW V   W 5   #X $   YX #   ~X #   X !   X M   X .   6Y +   eY    Y    Y    Y    Y    YZ    fZ i   sZ    Z E   q[ 6   [ C   [ ,   2\ L   _\ $  \ 0   ] D   ^ #   G^    k^ *   ^ 1   ^ $   ^    _    &_ 	   -_ ]  7_   ` *   +b /   Vb    b    b G   b .   b ;   ,c ]   hc     c #   c ;   d    Gd 2   Nd 
   d    d :   d    d "   e (   e    e    f A   f $   ]f *   f =   f J   f K   6g    g    g 8   g S   g K   Hh    h E   h N   h ,   6i <   ci 4   i [   i    1j )   Ej :   oj ^   j    	k 1   k    >k ,   Gk    tk &   }k 	   k    k `   k    $l a   l    m &   m 0   m    m U   n 	   bn    ln    n $   2o G   Wo Q   o    o 	   o    p "   p    9p    q !   q    ;q %   Pq +   vq -   q 7   q F   r D   Or \   r 1   r @   #s &   ds "   s (   s    s "   s $   t S   >t I   t B   t    u 5  u 6   4w D   kw h   w +   x G   Ex )   x t   x T   ,y    y :   .z ?   iz    z 4   z "   z F   { D   f{ F   { D   { E   7| C   }| E   | ?   } d   G} .   } .   } .   
~ C   9~    }~    ~ 7   ~ [   ~ -   N G   | V        a    @   G '    6    l    J   T         O   Ă B       W    d         o    R    (   b     2   ; L   n R    d      s    )    ߈ F   W    _   ^ Y    c    )   | /    ;   ֌ C    K   V b    5    K   ; Z    g    D   J K    G   ۏ 7   # 3   [     B   5    x \    F   n L    L    d   O Q    F       M =   2    p b    "   a ?    ;   Ė +     *   , ;   W 9    e   ͗ `   3 5    3   ʘ _    b   ^ 1    =    +   1 <   ] A    ;   ܚ F    F   _ M    H    n   = C    Y       J    d !    3    f   B Q    >       : J   Q )    j   Ɵ    1    @ h   W     =    ^  ϡ    .         [   ǣ >   # A   b H    H    4   6 D   k 2    M    >   1 (   p         g   Ҧ _   : Z            	    P    )   f 4       Ũ Z    K       :     %   Ϫ ,    A   "    d 1   j f    /    9   3 @   m     X   ˬ .   $ .   S 3    )    L    J   - C   x S    6    ,   G P   t (   ů            (    E 0   Y 8    8   ð \    O   Y D    G    Y   6 C       Բ K    4   < U   q G   ǳ 3    P   C R    k    `   S Y    a    C   p     1   ж =       @ F    6   + @   b ;    :   ߸ T       o r       o >    l   ɺ    6 ]   T a        
    '    $   ɼ D    >   3 D   r >    C    =   : &   x )       ɾ H   ξ Z       r         ?            A   + {   m =    *   '    R    g /   u S        +       ;    U -   t v    "    -   <    j .   }     :        ;    !   H (   j                 9    ,   % $   R 5   w     
        )       
         - %   6 G   \ &    3    K    H   K        0     5    
        Y   0 V    8    D    L   _ _        "   , '   O <   w G    [       X 2   k 4    6    X   
 4   c U    -    P    >   m B    2    Y   " \   | v    ;   P -    @    1    @   - X   n 7    7    B   7 3   z 2             B    i   P (         U    (   Z ?    5    E    2   ? Y   r     :    7    '    @    )   ] .    Z    <    '   N    v /    ;    Y    4   I A   ~ !    !    e       j ;   	 Q   E L    A       & M   9 e    x    ~   f     {    ^    1   y     b    M   ! B   o 3    <       # $   , !   Q $   s @    O    ^   ) T    3    2       D 5    P    &   _ r    6       0 e   6     k    C    f   Y L    9    v   G z    (   9 ;   b 4    )    .    .   , ,   [ 7    ;    U    %   R $   x #    ?    9    3   ; =   o              *    N    )    "   G    j D   q     0    *    +   ( $   T "   y *    N    "    4   9 -   n     "    <    6    "   R C   u i       # "   7    Z    w ,    l   %   (    N ;    m    -    $    M    0   " A   S 4    7    $    "   ' #   J &   n                            < ;   \ X    I    ;   ; 0   w ?    .    R    U   j /        3    >    T   % >   z 0    B    !   - $   O ,   t *    2    0    ,   0 R   ] R    N     *   R  #   }  Q     &     M    &   h &            %        W    )   c I           a `   D     3   g X    &    -    )   I 0   s n    }        ,     I   M E    u    V   S	    	    Z
 X    ,   t         <   F ,    .    .    6    6   E >   | N    6   
 -   A U   o =    E    '   I (   q     9    0    9    2   R _    _    w   E d    1   " 3   T <    5    o    L   k _    x    p    p    \   s u    U   F W    d    }   Y 5    3    E   A O    P       ( s   F 9    <    V   1                #       `  %  q      1    W    V                5  :  v  )           n  M  p               :   %  \                    6        `   d           K      S                  {            O            r     ?      t  '  8  9  k              s            ^  o                  S  a                                  L    k  `      
              3      <          U  3    R   e  .       "      G      ,   {       ^                            <  k  B  =   Q     .   X  !  C     K                    m                      
    j           e  2                  d   
     y    0                            V  x                  #  P       )         k  A           A                 {             _            N  L                       K    F     $                       i     O                        P  (    9   	       #  '  c   0  !               I    !                                         %                       i    q        o                  h             l  z                          i    X  f         
                                       <        s        !         @        v     |                        C        ,          *    T                   w      	   -      f   R  ;                                          y           G      #   g                     1             u      D         '   /  @   q    R                O      0  D            T             A      [  ]                    L   O                  ,    }              t     )          g  .    ,          4   ]  l        q           l  >                   w  D                }     &         x          M  \              \                                     4  ?            N  o      ~      d  *      r          e      /                   X    C                                         l      v              ^                            p    r     L         %             7  3      G  f  7    .                     H  s    Z                  r                            (                   W    (          h  8  w          S              ]           n          (  u               a      d  7            c              ]                        "                j  w               7                1        t          ?   u                    Q  M                        +       Z                        h       U  /            n                      '               I           z    W                              *       =  z          {             E        4  m      j      9           Y         3          6      S    2              &              u    c  s              i    \    5       Z      b              A      Q          k           G     v  F        x                      F  o                        a      &      x  -  `  _  B  ]      1   h  s         U               J  2          -   ?  ~    T      g     L               [  &  =          <    R      2                     J               I      f      N            F            W         )                    [                  u  5           ?    _           t             P                         U              o             ;            b  N    
           $          -                   i         \  K  Y  Z                                  w       8      E  |  *            M          /      I  @     b          z                   T  |                   j     ^                   ;          I      y            J               6         n     $        $       (      H      V  b  H   "  8           D  >     %      !    "  >  1     Y     3                           .  [  $  c        :    @  m  m    H  2     l             E                 	          9    ~                     g  }    |  	      +      *              >  D        O              C  :        f              M              =                9  Y            6   p      -             /      v     #               d  0  r  y   a                <   N   J             b          Z            A       :        S                         ,    K   +                     a      h           c      6                       }  E         5   ;      C       [       @          >                                                  W      ^         )          =        g      Q       F      e   X       J                  E  0           ~       Y               '  T      B       x      Q  	  H    e                             m   p   +  X      _  G                     P          4  7    +            B      V  p    V            t      U        5                   R    _       j    ;          4             "                 &   n      `    q   8   P  B                           total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: option '%c%s' doesn't allow an argument
 %s: option '%s' is ambiguous; possibilities: %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File size: %s
 File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS Import ZFS wrapping key stored in FILE. Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List coreboot tables. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... M MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MODULE MODULES Mail xorriso support requests to <bug-xorriso@gnu.org>. Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Option -- switches to native xorriso command mode. Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] PUBKEY_ID Paletted  Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot into firmware setup menu. Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Render Apple .disk_label. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show CBMEM console content. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show the contents of a file. Show the current mappings. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Switch to native disk drivers. If no modules are specified default set (pata,ahci,usbms,ohci,uhci,ehci) is used Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 T TARGET Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This entry can be booted by any user. This requires setting GRUB_DEFAULT=saved in %s/default/grub.\n Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. Your embedding area is unusually small.  core.img won't fit in it. Your xorriso doesn't support `--grub2-boot-info'. Some features are disabled. Please use xorriso 1.2.9 or later. Your xorriso doesn't support `--grub2-boot-info'. Your core image is too big. Boot as disk is disabled. Please use xorriso 1.2.9 or later. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `cryptomount' command fails: %s `loopback' command fails: %s `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format blocklist FILE blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s cannot compress the kernel image cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot get translator command line for path `%s': %s cannot open OS file `%s': %s cannot open `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. diskboot.img size must be %u bytes do not probe for filesystems in DEVICE domain name component is too long don't update LED state done embed FILE as an early config embed FILE as public key for signature checking embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enable ARCS (big-endian mips machines, mostly SGI) boot. Disables HFS+, APM, sparc64 and boot as disk image for i386-pc enable sparc boot. Disables HFS+, APM, ARCS and boot as disk image for i386-pc enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to get canonical path of `%s' failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification install GRUB images under the directory DIR/%s instead of the %s directory install even if problems are detected invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid block size invalid color specification `%s' invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no `/' in canonical filename no command is specified no decryption key available no network card found no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found pre-load specified modules MODULES premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory of TFTP server route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the argument `%s' requires an integer the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for label use COLOR for label background use COLOR for text use DIR as the EFI System Partition root. use FILE as font (PF2). use FILE as font for label use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub 2.00+20130519
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-05-21 20:32+0400
Last-Translator: Yuri Kozlov <yuray@komyakino.ru>
Language-Team: Russian <gnu@mx.ru>
Language: ru
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Generator: Lokalize 1.4
Plural-Forms:  nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);
               всего памяти: %d КиБ
     Предпочтительный режим недоступен
     Предпочтительный режим: %ux%u
   некорректная контрольная сумма для EDID   версия EDID: %u.%u
   Не удалось инициализировать видеоадаптер   Информация недоступна   Информация VBE: версия: %d.%d издание ПО OEM: %d.%d
   или:   (крайний слева)  (серединный)  (крайний справа)  - Раздел начинается с %llu%sКиБ  - Размер сектора %uБ  - Общий размер %llu%sКиБ  - Общий размер неизвестен  [ПАРАМЕТР…] %.*s: значение параметра ARGP_HELP_FMT должно быть положительным %.*s: параметр ARGP_HELP_FMT требует значение %.*s: неизвестный параметр ARGP_HELP_FMT %dс осталось %dс. Кажется, что %s содержит файловую систему %s, на которой неизвестно о наличии места для загрузчика в стиле DOS. Установка GRUB в этом случае может привести к ПОВРЕЖДЕНИЮ ФАЙЛОВОЙ СИСТЕМЫ, если важные данные будут перезаписаны grub-setup (параметр --skip-fs-probe выключает эту проверку, но вас предупредили) Кажется, что %s содержит карту разделов %s и LDM, что не является безопасной комбинацией. Установка GRUB в этом случае может привести к ПОВРЕЖДЕНИЮ ФАЙЛОВОЙ СИСТЕМЫ, если важные данные будут перезаписаны grub-setup (параметр --skip-fs-probe выключает эту проверку, но вас предупредили) Кажется, что %s содержит карту разделов %s, на которой неизвестно о наличии места для загрузчика в стиле DOS. Установка GRUB в этом случае может привести к ПОВРЕЖДЕНИЮ ФАЙЛОВОЙ СИСТЕМЫ, если важные данные будут перезаписаны grub-setup (параметр --skip-fs-probe выключает эту проверку, но вас предупредили) %s не поддерживает UUID %s генерирует раскладку клавиатуры GRUB с помощью ckbcomp\n %s устарел. Используйте вместо него set gfxpayload=%s до команды linux.
 %s устарел. Режим VGA %d не распознан. Используйте вместо него set gfxpayload=ШИРИНАxВЫСОТА[xГЛУБИНА] до команды linux.
 %s пока не поддерживается grub-mkconfig.\n %s, с Hurd %s %s, с Hurd %s (режим восстановления) %s, с Linux %s %s, с Linux %s (режим восстановления) %s, с Xen %s и Linux %s %s, с Xen %s и Linux %s (режим восстановления) %s, с гипервизором Xen %s, с kFreeBSD %s %s, с kFreeBSD %s (режим восстановления) %s, с ядром %s (с использованием %s) %s, с ядром %s (с использованием %s, режим восстановления) %s: НЕСОВПАДЕНИЕ ХЭША
 %s: OK
 %s: ОШИБКА ЧТЕНИЯ
 %s: Слишком много аргументов
 %s: Вы должны запускать программу имея права суперпользователя\n %s: ошибка: %s: информация: %s: неверный параметр «%c»
 %s: у параметра «%c%s» не может быть аргумента
 %s: двусмысленный параметр «%s»; возможные варианты: %s: у параметра «--%s» не может быть аргумента
 %s: для параметра «--%s» требуется аргумент
 %s: у параметра «-W %s» не может быть аргумента
 %s: двусмысленный параметр «-W %s»
 %s: параметру «-W %s» требуется аргумент
 %s: параметру требуется аргумент «%c»
 %s: параметр должен использоваться с аргументом — «%s»\n %s: неизвестный параметр «%c%s»
 %s: неизвестный параметр «--%s»
 %s: предупреждение: (32-бит) (64-бит) (ОШИБКА ПРОГРАММЫ) Версия неизвестна!? (ОШИБКА ПРОГРАММЫ) Параметр должен быть распознан!? (на %s) - Метка «%s» - Время последнего изменения %d-%02d-%02d %02d:%02d:%02d %s --ДАЛЬШЕ-- -h ХЭШ [-c ФАЙЛ [-p ПРЕФИКС]] [ФАЙЛ1 [ФАЙЛ2 …]] -l | -r | [-s] устройство_grub диск_ос. ,5 поддерживается 16-битный защищённый интерфейс
 16-битный защищённый интерфейс не поддерживается
 поддерживается 32-битный защищённый интерфейс
 32-битный защищённый интерфейс не поддерживается
 =ЗНАЧЕНИЕ > память долговременного хранения ACPI память, регенерируемая ACPI Не удалось выключить через ACPI АДРЕС АДРЕС ЗНАЧЕНИЕ [МАСКА] АДРЕС [РАЗМЕР] АДРЕС1,МАСКА1[,АДРЕС2,МАСКА2[,…]] АДРЕС СЕРВЕР_DNS APM запрещён
 APM не активирован
 APM разрешён
 APM активирован
 ARGP_HELP_FMT: значение %s меньше или равно %s ASCII Использовать DOS-стиль CR/NL для окончаний строк. Активные терминалы ввода: Активные терминалы вывода: Адаптер «%s»:
 Добавить сервер DNS Добавить сетевой адрес. Добавить сетевой маршрут. Дополнительные параметры для %s Дополнительные параметры для %s (с гипервизором Xen) Разрешить прерывание по ESC. Запросить имя файла для перезагрузки. Предполагать, что ввод в шестнадцатеричной системе. Предполагать, что ввод является ключевой фразой. Предполагать, что ввод не обработан. Выполняется попытка расшифровать мастер-ключ… Попытка установить GRUB на диск с несколькими разметками разделов или с разметкой разделов и файловой системой. Лучше этого НЕ ДЕЛАТЬ. Попытка установить GRUB на диск с несколькими разметками разделов. Это пока не поддерживается. Попытка установить GRUB на диск без разделов или на раздел. Лучше этого НЕ ДЕЛАТЬ. Доступные терминалы ввода: Доступные терминалы вывода: Б Б/с ДАМП_BIOSа [ДАМП_INT10] БЛОК БАЙТ:БИТ Режим фонового изображения. Базовый каталог для списка хэшей. Загрузить систему, указанную в BIOS Загрузить операционную систему. Загрузиться в однопользовательский режим. Загружаться с выводом отладочных сообщений. Показывать подробные сообщения при загрузке. Загружается «%s» Загружается список команд Загрузка в слепом режиме Bootpath: %s
 Bootpath: недоступен
 Прерваться в GDB CGA  ЦВЕТ КОМАНДА [АРГУМЕНТЫ] CPU Idle не замедляет процессор
 CPU Idle замедляет процессор
 CS5536 по адресу %d:%d.%d
 Не удалось включить область ROM. Изменить настроенные устройства. Изменить тип раздела Проверить клавишу Alt. Проверить клавишу Control. Проверить клавишу Shift. Проверить возможности ЦП. Проверить хэши файлов по списку хэшей из ФАЙЛА. Проверить, поддерживается ли процессором 64-битный («длинный») режим (по умолчанию). Проверить состояние модификаторов клавиш. Проверьте, что пользователь в СПИСКЕ_ПОЛЬЗОВАТЕЛЕЙ. Проверяет файл сценария настройки GRUB на синтаксические ошибки. Очистить экран. Флаг активности на разделе %d сброшен. 
 Команды: Сравнить ФАЙЛ с ЛОКАЛЬНЫМ_ФАЙЛОМ. Сравнить файл «%s» с «%s»:
 Сравнить два файла. Вычислить XNU UUID для устройства. Вычислить и проверить хэш контрольной суммы. Настроить последовательный порт. Продолжить циклы Преобразует файлы шрифтов распространённых форматов в PF2 Скопировать ФАЙЛ в ЛОКАЛЬНЫЙ_ФАЙЛ. Скопировать ФАЙЛ в стандартный вывод. Не удалось найти драйвер FPSWA Невозможно найти физический том «%s». Некоторые модули в базовом образе могут отсутствовать. Невозможно загрузить sha256 Невозможно загрузить sha512 Создать BIOS-подобные структуры для обратной совместимости с существующей ОС. Создать пустой файл блока окружения. Текущие типы terminfo: УСТРОЙСТВО УСТРОЙСТВО [РАЗДЕЛ[+/-[ТИП]]] … УСТРОЙСТВО должно задаваться в формате операционной системы (например, /dev/sda). ИМЯ_УСТРОЙСТВА КАТ КАТАЛОГ [OSBundleRequired] СЕРВЕР_DNS Инструмент отладки драйвера файловой системы. Объявить области памяти как сбойную (badram). Декомпрессор слишком большой Определить пункт меню. Определить подменю. Удалить сетевой адрес. Удалить сетевой маршрут. Удалить указанный привод обратной петли. Удалить переменные. Определить драйвер. Определить UUID файловой системы. Определить метку файловой системы. Определить тип файловой системы. Определить тип карты разделов. Устройство %s: Devid: %s
 Devid: недоступен Явно заданный цвет, маска: %d/%d/%d/%d  положение: %d/%d/%d/%d Выключить ACPI. Выключить SMP. Выключить вывод при загрузке. Выключить/включить SMART (0/1). Отбрасывается неправильно вложенный раздел (%s,%s,%s%d) Статистика дискового кэша: попаданий = %lu (%lu.%02lu%%), промахов = %lu
 Количество дисков должно быть перед списком дисков.
 Показать версию FPSWA. Показать состояние работоспособности по SMART. Показать строку текста. Показать список блоков ФАЙЛА. Выводить сообщения на всех консолях. Показать режим питания. Показать справку по этой команде и закончить работу. Показать эту справку и закончить работу. Показать/настроить текущую дату/время. Не выдавать конечный символ новой строки. Не показывать сообщения. Не проверять дисководы гибких дисков. Не использовать APM для останова компьютера. Ничего не делать, успешное завершение. Ничего не делать, неудачное завершение. Не выводить отладочные загрузочные сообщения. Не загружать таблицы компьютера, указанные через запятую. Не перезагружаться, а выполнить останов. Не останавливаться после первой ошибки. Не обновлять EBDA. Может помочь при ошибках и подвисаниях с некоторыми BIOS, но не оказывает влияния, если ОС не принимает RSDP от GRUB. ПЕРЕМЕННАЯ_ОКРУЖЕНИЯ ПЕРЕМЕННАЯ_ОКРУЖЕНИЯ [ПЕРЕМЕННАЯ_ОКРУЖЕНИЯ] … ОШИБКА: допустимая раскладка клавиатуры не найдена. Проверьте ввод.
 Для выхода нажмите ESC в любой момент. ВЫРАЖЕНИЕ ВЫРАЖЕНИЕ ] Затраченное время: %d.%03d с 
 Затраченное время: %d.%03d секунд 
 Встраивание невозможно. При имеющихся параметрах GRUB можно установить только с помощью списка блоков (blocklists). Однако, список блоков является НЕНАДЁЖНЫМ механизмом и его лучше не использовать. Эмулировать набор нажатий Включить обработку экранирующих символов обратной косой черты. Введите пароль ZFS:  Войти в KDB при загрузке. Войти в нормальный режим. Введите ключевую фразу для %s%s%s (%s):  Введите пароль:  Введите имя пользователя:  Ошибка при разборе аргументов командной строки
 Вычислить выражение. Не удалось выполнить выход Выйти из GRUB. Выйти из циклов Выйти из нормального режима. Экспортировать переменные. Экспортировать таблицы версии 1 в ОС. Экспортировать таблицы версии 2 и 3 в ОС. ФАЙЛ ФАЙЛ [АРГУМЕНТ …] ФАЙЛ [АРГУМЕНТЫ…] ФАЙЛ | ТЕМП [ТОН1 ДЛИТЕЛЬНОСТЬ1] [ТОН2 ДЛИТЕЛЬНОСТЬ2] …  ФАЙЛ… ФАЙЛ1 ФАЙЛ2 ИМЯ_ФАЙЛА КОМАНДА ФАЙЛОВАЯ_СИСТЕМА [ПЕРЕМЕННАЯ] ФАЙЛ|prompt ФОРМАТ Протоколом FPSWA не удалось найти интерфейс Редакция FPSWA: %x
 ИЗ-В[,ИЗ-В] С[K|M|G] ПО[K|M|G] FT_Init_FreeType завершилась с ошибкой Не удалось загрузиться согласно пунктам по умолчанию и резервному.
 Не удалось создать дерево «device-mapper» Откат к резервному «%s» Размер файла: %s
 Файловая система «%s» не поддерживает встраивание Файлы различаются начиная со смещения %llu: 0x%x [%s], 0x%x [%s]
 Файлы различаются по размеру: %llu [%s], %llu [%s]
 Файловая система недоступна Тип файловой системы %s Укомплектовать GPT гибридным MBR для УСТРОЙСТВА. Указанные разделы будут частью гибридного MBR. Можно указать до 3 разделов. В ТИПЕ задаётся тип MBR. Символ + означает, что раздел активный. Активным может быть только один раздел. Завершить загрузку эмулятора EFI. Сначала попробовать устройство согласно ПОДСКАЗКЕ, если в данный момент работает в ARC. Если ПОДСКАЗКА заканчивается запятой, то также попробовать подразделы. Сначала попробовать устройство согласно ПОДСКАЗКЕ, если в данный момент работает в BIOS. Если ПОДСКАЗКА заканчивается запятой, то также попробовать подразделы. Сначала попробовать устройство согласно ПОДСКАЗКЕ, если в данный момент работает в EFI. Если ПОДСКАЗКА заканчивается запятой, то также попробовать подразделы. Сначала попробовать устройство согласно ПОДСКАЗКЕ, если в данный момент работает в IEEE1275. Если ПОДСКАЗКА заканчивается запятой, то также попробовать подразделы. Сначала попробовать устройство согласно ПОДСКАЗКЕ, если поддерживается прямой доступ к оборудованию. Если ПОДСКАЗКА заканчивается запятой, то также попробовать подразделы. Сначала попробовать устройство согласно ПОДСКАЗКЕ. Если ПОДСКАЗКА заканчивается запятой, то также попробовать подразделы. Исправить проблему с видео. Найден %s на %s (%s)\n Найден %s на %s\n Найден GNU Mach: %s Найден модуль Hurd: %s Найдено ядро NetBSD: %s\n Найден фон: %s\n Найден образ initrd: %s\n Найден каталог модулей ядра: %s\n Найдено ядро FreeBSD: %s\n Найден образ linux: %s\n Найдена тема: %s\n Ошибка Freetype %d при загрузке образа символа 0x%x для U+0x%x%s Зафиксировать настройки безопасности ATA до перезагрузки. Пятница Г GNU GRUB, версия %s Загрузочное меню GRUB GRUB пока не знает как остановить эту машину! Эмулятор GRUB. УСТРОЙСТВО_GRUB=УСТРОЙСТВО_PLAN9 Мусор в ARGP_HELP_FMT: %s Генерирует раскладку клавиатуры GRUB из консоли Linux. Генерирует хэш пароля PBKDF2. Генерирует файл настройки grub Сгенерировать автономный образ (содержащий все модули) в заданном формате Вычислить контрольную сумму crc32 для ФАЙЛА. Получить информацию о кэше диска. Получить/Задать параметры ATA-диска. ГиБ ГиБ/с ХЭШ ПОДСКАЗКА Остановить систему, если возможно, с помощью APM. Остановить компьютер. Эта команда работает не везде. Обработать N байт выходного файла. Привет, мир Hercules  ID ОБРАЗ1 [ОБРАЗ2 …] ТОЧКА_МОНТИРОВАНИЯ ПУТЬ_К_ОБРАЗУ КОМАНДЫ Импортировать обёрточный ключ ZFS, хранящийся в ФАЙЛЕ. Некорректное виртуальное устройство: тип недоступен Вставить модуль. Устанавливает GRUB на устройство. Установка завершена. Ошибок нет. Неправильная обратная ссылка Неправильное имя класса символов Неправильный символ сравнения Неверная команда %s.
 Неверное содержимое \{\} Неверное устройство «%s».
 Неверное количество дисков.
 Неверное предшествующее регулярное выражение Неверный конец диапазона Неправильное регулярное выражение Выполнить пользовательскую настройку маршрутизации. К АРГУМЕНТЫ ЯДРА КЛАВИША_КЛАВИАТУРЫ Клавиша клавиатуры для быстрого запуска этого пункта. КиБ КиБ/с Виртуальное устройство-лист (файл или диск) Устаревший параметр «ask» больше не поддерживается. Обозначения: маска/положение=красный/зеленый/синий/зарезервированный Длина генерируемого хэша Длина соли Список серверов DNS Вывести список устройств PCI. Показать список всех файлов. Список доступных видео-режимов. Если указано разрешение, то показываются только подходящие режимы. Список таблиц coreboot. Вывести список устройств и файлов. Вывести список устройств или файлов. Вывести список устройств. Вывести список файлов в ПУТИ. Показать карту памяти, предоставляемую микропрограммой (firmware). Список поддерживаемых видео-режимов: Список пользователей, которым разрешено загружать этот пункт. Показать или выбрать терминал ввода. Показать или выбрать терминал вывода. Показать текущие переменные. Вывести список загруженных шрифтов. Показать список переменных из файла блока окружения. Загрузить 64-битный образ XNU. Загрузить дамп BIOS. Загрузить окружение FreeBSD. Загрузить модуль ядра FreeBSD (ELF). Загрузить модуль ядра FreeBSD. Загрузить FreeBSD kernel.sys. Загрузить Linux. Загрузить NTLDR или BootMGR. Загрузить модуль ядра NetBSD (ELF). Загрузить модуль ядра NetBSD. Загрузить ядро Plan9. Загрузить каталог расширений XNU. Загрузить пакет расширения XNU. Загрузить расширение XNU. Загрузить образ XNU. Загрузить виртуальный диск XNU. Он будет доступен в ОС как md0. Загрузить дамп «device-properties». Загрузить образ PXE. Загрузить раскладку клавиатуры. Загрузить ядро multiboot 2. Загрузить модуль multiboot 2. Загрузить ядро multiboot. Загрузить модуль multiboot. Загрузить образ заставки для XNU. Загрузить образ XNU, находящегося в спящем режиме. Загрузить и инициализировать эмулятор EFI. Загрузить другой загрузчик. Загрузить другой файл настройки, но взять только пункты меню. Загрузить другой файл настройки без смены контекста, но взять только пункты меню. Загрузить другой файл настройки без смены контекста. Загрузить другой файл настройки. Загрузить другой coreboot payload Загрузить фоновое изображение на активный терминал. Загружать таблицы ACPI машины и таблицы, указанные в параметрах. Загрузить initrd. Загрузить виртуальный диск kOpenBSD. Загрузить ядро FreeBSD. Загрузить ядро NetBSD. Загрузить ядро OpenBSD. Загружать только таблицы, указанные через запятую. Загрузить один и тот же файл несколькими способами. Загрузить переменные из файла блока окружения. Загрузить ключ шифрования zfs. Загруженные шрифты: Загружается GNU Mach … Загружается Linux %s … Загружается Xen %s … Загружается начальный виртуальный диск … Загружается ядро FreeBSD %s … Загружается ядро Illumos … Загружается Hurd … М ошибка сверки MAC ПУНКТ_МЕНЮ задаётся номером, заголовком или идентификатором пункта меню. МОДУЛЬ МОДУЛИ Отправляйте запросы поддержки xorriso по адресу <bug-xorriso@gnu.org>. Создать загрузочный образ GRUB для компакт-диска, диска, USB-накопителя или дискеты. Создаёт файл раскладки клавиатуры GRUB. Создаёт загрузочный образ GRUB. Создать виртуальный привод из файла. Сделать раздел активным Управлять BIOS переназначениями устройств. Обязательные или необязательные аргументы для длинных параметров также являются обязательными или необязательными для соответствующих коротких параметров. Управлять устройствами PCI. Замерить время, затраченное КОМАНДОЙ Закончилась память Тип памяти: DDR2. Тип памяти: неизвестен. Идентификатор пункта меню. Пункт меню не задан. Тип пункта меню. МиБ МиБ/с Поддерживается несколько BASH-подобных команд редактирования строки. Есть вывод списка команд по TAB для дополнения. Также есть везде, где возможно, вывод списка по TAB для устройств или файлов. %s Поддерживается несколько Emacs-подобных команд редактирования на экране. Есть списки дополнений по TAB. Нажмите Ctrl-x или F10 для загрузки, Ctrl-c или F2 для получения командной строки или ESC для отмены изменений и возврата в меню GRUB. Отсутствуют аргументы
 Отсутствует входной файл
 Понедельник Монохромный  Более одного устройства для установки? Более одного пункта меню? Смонтировать крипто-устройство. Смонтировать все тома с установленным флагом «boot». Смонтировать всё. Смонтировать по UUID. Смонтировать крипто-устройства. ИМЯ ИМЯ [ПЕРЕМЕННАЯ] [ПОДСКАЗКА] НОМЕР ЧИСЛО_СЕКУНД Имя	Счётчик ссылок	Зависимости
 Используются родные дисковые драйверы. Использование микропрограммного интерфейса диска отклоняется. Сетевые протоколы: Новый MBR записан в «%s»
 CS5536 не найден FPSWA не найден Нет статистики по времени загрузки
 Не указана команда.
 Не указано устройство.
 Нет статистики по дисковому кэшу
 Преобразованные устройства отсутствуют Обнаружена неизвестная файловая система Нет совпадения Не указан путь.
 Не указан путь или устройство.
 Отсутствует предыдущее регулярное выражение Недоступно дерево виртуальных устройств Non-chain 4  Недостаточно параметров для команды.
 Теперь подключитесь удалённым отладчиком. Количество итераций PBKDF2 диск #ном ОС ------> устройство GRUB/BIOS Ошибка открытия файла ОС %s: %s Параметр -- переключает в родной режим команд xorriso. Параметры: Поиск вне диапазона: %d
 Подстановка вне диапазона (%d, %d)
 Заменить предугаданное соответствие устройств Plan9. П КОМАНДЫ РАБОТЫ С РАЗДЕЛАМИ ПУТЬ Хэш PBKDF2 вашего пароля: %s
 ПОРТ ПОРТ ЗНАЧЕНИЕ [МАСКА] PUBKEY_ID Из палитры  Разобрать старый формат настройки в новом контексте Разобрать старый формат настройки в новом контексте, взяв только пункты меню Разобрать старый формат настройки в том же контексте Разобрать старый формат настройки в том же контексте, взяв только пункты меню Номер по каталогу: %s.
 Раздел %d сделан активным. 
 Раздел %s: Стиль раздела «%s» не поддерживает встраивание Path: %s
 Path: недоступен Выполнить КОМАНДЫ для раздела.
Список возможных команд доступен по команде «parttool РАЗДЕЛ help». Выполнить поиск в DNS Выполнить автоматическую настройку IPV6 Выполнить прямые и обратные переназначения. ПиБ ПиБ/с Планарный  Проиграть мелодию. Не используйте старое название «%s» для GRUB_DEFAULT, используйте «%s» (для версий старее 2.00) или «%s» (для 2.00 или новее) Пул GUID: %016llx
 Пул GUID: недоступен Имя пула: %s
 Имя пула: недоступно Состояние пула: активен Состояние пула: разрушен Состояние пула: экспортирован Состояние пула: уровень 2 устройства ARC Состояние пула: потенциально активен Состояние пула: зарезервирован как горячая замена Состояние пула: недоступен Состояние пула: не инициализирован Возможные параметры: Возможные команды: Возможные устройства: Возможные файлы: Возможные разделы: Возможные элементы: Преждевременный конец регулярного выражения Нажмите любую клавишу для продолжения… Нажмите любую клавишу для запуска xnu Нажмите «enter» для загрузки выбранной ОС, «e» для редактирования команд до загрузки или «c» для получения командной строки. Нажмите «enter» для загрузки выбранной ОС, «e» для редактирования команд до загрузки или «c» для получения командной строки. По ESC осуществляется возврат в предыдущее меню. Показать информацию о памяти. Показать информацию ZFS об УСТРОЙСТВЕ. Показать ZFS-BOOTFSOBJ или сохранить его значение в ПЕРЕМЕННОЙ Показать список блоков. Показать и выполнить блочный аргумент. Показать стек вызовов. Показать идентификационную информацию и настройки устройства. Показать размеры в понятном человеку формате. Собирает информацию об устройстве для заданного пути (или устройства, если указан параметр -d). память, содержащая таблицы coreboot память, содержащая микропрограмму Слот памяти № %d
 РЕГУЛЯРНОЕ_ВЫРАЖЕНИЕ СТРОКА Обнаружен образ ROM. Прочитать 16-битное значение по АДРЕСУ. Прочитать 16-битное значение из ПОРТА. Прочитать 32-битное значение по АДРЕСУ. Прочитать 32-битное значение из ПОРТА. Прочитать 8-битное значение по АДРЕСУ. Прочитать 8-битное значение из ПОРТА. Прочитать только ЗАДАННОЕ число байт. Не удалось выполнить перезагрузку Перезагрузить машину в меню настройки микропрограммы. Перезагрузить компьютер. Повторно введите пароль:  Регистр %x у %x:%02x.%x равен %x
 Регулярное выражение слишком велико Удалить сервер DNS Удалить модуль. Удалить переменную окружения. Удалить все области памяти в указанном диапазоне. Сгенерировать Apple .disk_label. Сообщения об ошибках отправляйте на %s.
 Сообщения об ошибках отправляйте на <bug-grub@gnu.org>. Запрашивается последовательный терминал, но GRUB_SERIAL_COMMAND не задана. Будут использованы параметры по умолчанию. Сбросить все переназначения в значения по умолчанию. Получить информацию об устройстве. Вернуться из функции. Вернуться в приглашение IEEE1275. Запустите «gdb %s %d», и установите значение ARGS.HOLD равным нулю.
 Введите «go» для возобновления работы GRUB. СЕКУНД КОРОТКОЕ_ИМЯ КОРОТКОЕ_ИМЯ КАРТА АДРЕС [АППАРАТНЫЙ_АДРЕС] КОРОТКОЕ_ИМЯ СЕТЬ [ИНТЕРФЕЙС| gw ШЛЮЗ] РАЗМЕР ИСТОЧНИК|-u UUID|-a|-b СТРОКА Суббота Сохранить прочитанное значение в переменную ИМЯ_ПЕРЕМЕННОЙ. Сохранить переменные в файл блока окружения. Сказать «Привет, мир». Искать устройства по UUID. Если указана ПЕРЕМЕННАЯ, то ей присвоится первое найденное устройство. Искать устройства по файлу. Искать устройства по UUID файловой системы. Искать устройства по метке файловой системы. Искать устройства по файлу, по метке или UUID файловой системы. Если указан параметр --set, то переменной присвоится первое найденное устройство. Если имя переменной не указано, то используется «root». Искать устройства по файлу. Если указана ПЕРЕМЕННАЯ, то ей присвоится первое найденное устройство. Искать устройства по метке. Если указана ПЕРЕМЕННАЯ, то ей присвоится первое найденное устройство. Сектор %llu уже используется raid-контроллером «%s»; пропускаем его. Попросите производителя не хранить данные в промежутке MBR Сектор %llu уже используется программой «%s»; пропускаем его. Данное ПО в будущем может создать проблемы с загрузкой. Попросите его авторов не хранить данные на загрузочной дорожке Выбрать устройство по его расположению на шине. Выбрать устройство по производителю и ID устройства. Настроить Advanced Power Management
(1=мин, …, 254=макс, 255=выкл). Настроить Automatic Acoustic Management
(0=выкл, 128=тихо, …, 254=быстро). Задать OEMID в RSDP, XSDT и RSDT. Задать OEMTABLE ID в RSDP, XSDT и RSDT. Задать ревизию OEMTABLE в RSDP, XSDT и RSDT. Установить флаг «hidden» в типе раздела Задать переменную для возврата значения. Задать переменную для первого найденного устройства. Задать переменную окружения. Назначить цвет фона активного терминала. Задать название создавшей программы в RSDP, XSDT и RSDT. Задать версию редакции создавшей программы в RSDP, XSDT и RSDT. Задать переменную окружения отладки. Перевести устройство в спящий (sleep) режим. Перевести устройство в дежурный режим. Задать позиционные параметры. Задать корневое устройство. Настроить задержку до перехода в дежурный режим (standby)
(0=выкл, 1=5с, 2=10с, …, 240=20мин, 241=30мин, …). Задать тип terminfo type для TERM  равным TYPE.
 Назначает пункт меню в GRUB для загрузки по умолчанию, только для следующей загрузки. Назначает пункт меню GRUB для загрузки по умолчанию. Задать адрес последовательного порта. Задать чётность последовательного порта. Задать скорость последовательного порта. Задать количество стоп-битов последовательного порта. Задать длину слова последовательного порта. Задать номер последовательного порта. Установка образов для загрузки с УСТРОЙСТВА.

Обычно не нужно вызывать эту программу вручную. Вместо неё используйте grub-install. Задать пароль пользователя (PBKDF2).  Задать пароль пользователя (в открытом виде). Не рекомендуется и небезопасно. Задать переменную с введёнными данными пользователя. Задать переменные. Назначение типа раздела равным 0x%x
 Сдвинуть позиционные параметры. Показать информацию ACPI. Показать информацию APM. Показать содержимое консоли CBMEM. Показать справочное сообщение. Показать длинный список с более подробной информацией. Показать содержимое ФАЙЛА в шестнадцатеричном коде. Показать загруженные модули. Показать содержимое памяти. Показать необработанное содержимое сектора ATA IDENTIFY. Показать необработанное содержимое файла или памяти. Показать содержимое файла. Показать текущие переназначения. Показать это сообщение. Показать только таблицы версии 1. Показать только таблицы версии 2 и 3. Не удалось выполнить выключение Имитировать команду «initrd» как в grub-legacy Имитировать команду «kernel» как в grub-legacy Имитировать команду «modulenounzip» как в grub-legacy Имитировать команду «password» как в grub-legacy Имитировать команду «password» как в grub-legacy в режиме пункта меню Пропустить N байт из выходного файла. Пропустить указанное число байт от начала файла. Открыт слот %d
 Найдены некоторые компоненты Hurd, но их недостаточно для загрузки системы. Указать имя файла. Использовать указанный хэш. Указать один или несколько файлов шрифтов для загрузки. Укажите объём данных каждой операции чтения Задать количество входных файлов. Скорость: %s 
 Запустить заглушку GDB на указанном порту Остановить заглушку GDB Сохранить совпавший компонент с НОМЕРОМ в ИМЯ_ПЕРЕМЕННОЙ. Успешно Воскресенье Не показывать обычные сообщения (только предупреждения). Перейти на родные дисковые драйверы. Если модули не указаны, то используется набор по умолчанию (pata,ahci,usbms,ohci,uhci,ehci) Синтаксическая ошибка в строке %u
 В сгенерированном файле настроек GRUB обнаружены синтаксические ошибки.
Убедитесь, что в файлах /etc/default/grub
и /etc/grub.d/* ошибки отсутствуют или пошлите сообщение об ошибке
в прикреплённым файлом %s. Контроллер системной шины управления вводом-выводом находится по адресу 0x%x
 Т ЦЕЛЬ Целевой формат не указан (используйте параметр -O). Терминал имеет указанные размеры. Терминал только в ASCII [по умолчанию]. Терминал в логически упорядоченной UTF-8. Терминал в визуально упорядоченной UTF-8. Протестировать поддержку USB. Проверить бит по адресу БАЙТ:БИТ в CMOS. Тест скорости чтения файла. Проверить, совпадает ли РЕГВЫР со СТРОКОЙ. Тест видеоподсистемы в режиме ШxВ. Тест видеоподсистемы. Только-текст  Файлы одинаковы.
 Выделенный пункт будет выполнен автоматически через %dс. Этот пункт может быть загружен любым пользователем. Для этого требуется строка GRUB_DEFAULT=saved в %s/default/grub.\n Четверг ТиБ ТиБ/с Инструмент редактирования блока окружения. Общий размер флэш: %d Б.
 Обратная косая черта в конце Преобразовать 64-бит UUID в формат, пригодный для XNU. Если указан -l, то оставить в нижнем регистре, как это делает blkid. Преобразовать системное имя файла в имя файла GRUB. Перевести строку с текущими настройками. Попробуйте «%s --help» или «%s --usage» для получения более подробного описания.
 Вторник ПАРОЛЬ ПОЛЬЗОВАТЕЛЯ ПОЛЬЗОВАТЕЛЬ ПАРОЛЬ_PBKDF2 ИМЯ_ПОЛЬЗОВАТЕЛЯ[,ИМЯ_ПОЛЬЗОВАТЕЛЯ] UTF-8 Не удалось создать канал: %s Не удалось определить вашу платформу. Используйте --target. Не удалось выполнить fork: %s Не удалось открыть поток из %s: %s Не удалось получить состояние пула Расжать данные. Расжать файл перед проверкой контрольной суммы. Неизвестный тип адреса %d
 Неизвестная команда «%s».
 Неизвестный формат сжатия %s Неизвестная кодировка Неизвестный дополнительный параметр «%s». Неизвестное шрифтовое свойство gsub 0x%x (%s)
 Неизвестный скан-код клавиатуры 0x%02x
 Неизвестный скан-идентификатор клавиатуры %s
 Неизвестная системная ошибка Неизвестный видео-режим Неизвестный тип виртуального устройства: %s
 Выгрузить эмулятор EFI. Непарная ( или \( Непарная ) или \) Непарная [ или [^ Непарная \{ Неизвестный параметр «%s»\n Нераспознанное состояние пула Неподдерживаемый тип адреса %d
 Неподдерживаемая подстановочная зона действия: %d
 Неподдерживаемый тип аппаратного адреса %d
 Неподдерживаемый формат изображения Неподдерживаемый флаг подстановки: 0x%x
 Неподдерживаемое подстановочное обозначение: %d
 Неподдерживаемый тип подстановки: %d
 Использование: Использование: %s -o ВЫВОД АРГУМЕНТЫ_CKBMAP…\n Использование: %s УСТРОЙСТВО
 Использование: %s [ВХОДНОЙ_ФАЙЛ [ВЫХОДНОЙ_ФАЙЛ]]
 Использование: %s [ПАРАМЕТР] ПУНКТ_МЕНЮ\n Использование: %s [ПАРАМЕТР]\n Использовать компакт-диск в качестве корня. Использовать удалённый отладчик GDB вместо DDB. Использовать СТРОКУ в качестве содержимого элемента меню. Использовать вкомпилированное корневое устройство. Использовать консоль на последовательном порту. Используйте клавиши %C и %C для перемещения по пунктам. ПЕРЕМЕННАЯ ИНТЕРФЕЙС НОМЕР ОПИСАНИЕ ИМЯ_ПЕРЕМЕННОЙ Детальный обратный отсчёт. Проверить отсоединённую подпись. Версия %u.%u
32-битный CS = 0x%x, длина = 0x%x, смещение = 0x%x
16-битный CS = 0x%x, длина = 0x%x
DS = 0x%x, длина = 0x%x
 Виртуальное устройство деградировано Сбой виртуального устройства Виртуальное устройство не в работе Виртуальное устройство в работе Виртуальное устройство удалено ПРЕДУПРЕЖДЕНИЕ: консоль в ОС будет недоступна ПРЕДУПРЕЖДЕНИЕ: никаких специальных установок для платформы не произведено ПРЕДУПРЕЖДЕНИЕ: неподдерживаемые параметры свойств шрифта: %x
 ШИРИНАxВЫСОТА. Подождать указанное число секунд. Ждать нажатия любой клавиши после каждой выводимой строки. Предупреждение: Предупреждение: неправильный цвет фона (background) «%s»
 Предупреждение: неправильный цвет текста (foreground) «%s»
 Предупреждение: синтаксическая ошибка (отсутствует косая черта) в «%s»
 Среда Windows NT/2000/XP (загрузчик) Windows Vista/7 (загрузчик) Записать 16-битное ЗНАЧЕНИЕ по АДРЕСУ. Записать 16-битное ЗНАЧЕНИЕ в ПОРТ. Записать 32-битное ЗНАЧЕНИЕ по АДРЕСУ. Записать 32-битное ЗНАЧЕНИЕ в ПОРТ. Записать 8-битное ЗНАЧЕНИЕ по АДРЕСУ. Записать 8-битное ЗНАЧЕНИЕ в ПОРТ. Записано байт SPD: %d Б.
 Гипервизор Xen, версия %s YUV  Вам нужно указать хотя бы одну команду.
 Вам нужно установить «SystemPartition» и «OSLoader» вручную. Встраиваемая область необычно маленького размера. core.img не влезет в неё. Имеющийся xorriso не поддерживает  «--grub2-boot-info». Некоторые возможности отключены. Используйте xorriso 1.2.9 или новее. Имеющийся xorriso не поддерживает  «--grub2-boot-info». Базовый образ слишком большой. Загрузка с диска отключена. Используйте xorriso 1.2.9 или новее. [--append|--remove] [ТЕРМИНАЛ1] [ТЕРМИНАЛ2] … [--force|--bpb] ФАЙЛ [--md5] ПАРОЛЬ [ФАЙЛ] [--no-mem-option] [--type=ТИП] ФАЙЛ [АРГУМЕНТ …] [-1|-2] [--exclude=ТАБЛИЦА1,ТАБЛИЦА2|--load-only=ТАБЛИЦА1,ТАБЛИЦА2] ФАЙЛ1 [ФАЙЛ2] […] [-c ФАЙЛ [-p ПРЕФИКС]] [ФАЙЛ1 [ФАЙЛ2 …]] [-d] ИМЯ_УСТРОЙСТВА ФАЙЛ. [-e|-n] СТРОКА [-f ФАЙЛ] [-f ФАЙЛ] имя_переменной […] [-f|-l|-u|-s|-n] [--hint ПОДСКАЗКА [--hint ПОДСКАЗКА] …] ИМЯ [-h|-p|-r] [ФАЙЛ] [-l] GRUBUUID [ИМЯ_ПЕРЕМЕННОЙ] [-l|-h|-a] [ФАЙЛ …] [-m (stretch|normal)] ФАЙЛ [-s ПОЗИЦИЯ] [-d УСТРОЙСТВО] [-s ПОЗИЦИЯ] [-d УСТРОЙСТВО] [-v ПЕРЕМЕННАЯ] РЕГИСТР[=ЗНАЧЕНИЕ[:МАСКА]] [-s РАЗМЕР] ИМЯФАЙЛА [АДРЕС|comНОМЕР][,СКОРОСТЬ] [АРГУМЕНТ] [КАРТА [АППАРАТНЫЙ_АДРЕС]] [КАРТА] [ПЕРЕМЕННАЯ_ОКРУЖЕНИЯ=ЗНАЧЕНИЕ] [ПЕРЕМ_ОКРУЖ] [НАБОРНАЖАТИЙ1] [НАБОРНАЖАТИЙ2] … [МОДУЛЬ1 МОДУЛЬ2 …] [НОМЕР:]ИМЯ_ПЕРЕМЕННОЙ [НОМЕР] [ПАРАМЕТРЫ…] [ПАРАМЕТРЫ] [ПАРАМЕТРЫ] ДИСК [ПАРАМЕТРЫ] ФАЙЛ_ИЛИ_УСТРОЙСТВО [ПАРАМЕТРЫ] ФАЙЛЫ_ШРИФТА [ПАРАМЕТР]… [МОДУЛИ] [ПАРАМЕТР]… [ПУТЬ|УСТРОЙСТВО] [ПАРАМЕТРЫ] [ПУТЬ] [ШАБЛОН …] [СПИСОК_ПОЛЬЗОВАТЕЛЕЙ] [ЗНАЧЕНИЕ]… [ШxВ[xГ]] [ШхВ] [[-a|-u|-v] [-g ШxВ] TERM [ТИП]] [[год-]месяц-день] [часы:минуты[:секунды]] [шина]:[слот][.функция] [производитель]:[устройство] команда «cryptomount» завершилась с ошибкой: %s команда «loopback» завершилась с ошибкой: %s «obppath» не найден в родительских каталогах «%s», обнаружение имени по IEEE1275 отсутствует для аргумента «%s» назначено значение, но это не требуется для аргумента доступ запрещён добавить сегмент NOTE в CHRP IEEE1275 адрес адрес не найден попытка чтения или записи вне пределов диска «%s» попытка чтения или записи вне пределов раздела попытка чтения за концом файла попытка перемещения за пределы файла попытка прочитать базовый образ «%s» из GRUB повторная попытка прочитать базовый образ «%s» из GRUB доступная память Доступные форматы: некорректная подпись базовый_адрес = 0x%llx, длина = 0x%llx, %s
 базовый_адрес = 0x%llx, длина = 0x%llx, тип = 0x%x
 Файл битовой карты «%s» неподдерживаемого формата blocklist ФАЙЛ некорректный список блоков размер блока не делится на 512 невозможно разорвать 0 циклов невозможно определить тип файловой системы на %s не удалось найти команду «%s» не удалось смонтировать шифрованный том «%s»: %s не удалось открыть «%s»: %s не удалось открыть файл %s, индекс %d: ошибка %d не удалось получить список блоков не удалось получить список блоков: %s не удалось сжать образ ядра не удалось найти привод GRUB для %s. Проверьте device.map не удалось найти устройство для %s (/dev смонтирован?) не удалось получить командную строку транслятора для пути «%s»: %s не удалось открыть файл ОС «%s»: %s не удалось открыть «%s»: %s не удалось прочитать «%s» правильно не удалось прочитать «%s»: %s не удалось переименовать файл %s в %s не удалось восстановить первоначальный каталог невозможно сместиться в «%s»: %s невозможно выполнить stat «%s»: %s невозможно записать на компакт-диск невозможно записать в «%s»: %s не удалось записать в stdout: %s карта не найдена cat ФАЙЛ ошибка при сверке контрольной суммы выбрать алгоритм сжатия, применяемый для базового образа cmp ФАЙЛ ЛОКАЛЬНЫЙ_ФАЙЛ comНОМЕР[,СКОРОСТЬ] сравнение по смещению %llu завершилось неудачно в соединении отказано истекло время ожидания соединения преобразовать в жирный шрифт базовый образ слишком большой (0x%x > 0x%x) Несоответствие версии core.img не удалось выполнить автоматическую настройку %s невозможно найти необходимое устройство-компонент в файловой системе с несколькими устройствами не удалось найти потребителя geli не удалось найти класс geom «part» не удалось открыть geom невозможно прочитать метаданные ELI не удалось получить UUID не удалось получить geli UUID не удалось получить произвольные данные для соли не удалось послать сетевой пакет cp ФАЙЛ ЛОКАЛЬНЫЙ_ФАЙЛ crc ФАЙЛ номер ошибки шифрования %d cygwin_conv_path() завершилась с ошибкой удалить карту устройств, если она уже существует пункт назначения недоступен превышен предел счётчика устройств отключить хинтинг диск «%s» не найден диск не существует, переходим обратно к разделу диска %s используемый дисковый модуль (biosdisk или native). Этот параметр доступен только для BIOS цели. размер diskboot.img должен быть %u байт не проверять файловые системы на УСТРОЙСТВЕ компонент доменного имени слишком длинен не обновлять состояние светодиодов завершено встраивать ФАЙЛ как файл ранней настройки встраивать ФАЙЛ как открытый ключ для проверки подписи встраивание невозможно, но оно необходимо при установке на RAID и LVM встраивание невозможно, но оно необходимо для междисковой установки включить ARCS (машины с big-endian mips, в основном SGI) boot. Выключить HFS+, APM, sparc64 и boot из дискового образа для i386-pc включить sparc boot. Выключить HFS+, APM, ARCS и boot из дискового образа для i386-pc «enter»: загрузка, «e»: параметры, «c»: командная строка блок окружения слишком мал ошибка: %s.
 образы GRUB находятся в каталоге КАТ/%s, а не в каталоге %s не удалось получить канонический путь «%s» ошибка при чтении сектора 0x%llx на «%s» не удалось прочитать пароль ошибка записи в сектор 0x%llx на «%s» ложь сбойная память (BadRAM) файл «%s» не найден ожидается имя файла ожидается имя файла или темп и ноты файловая система «%s» не поддерживает метки файловая система «%s» не поддерживает списки блоков размер образа микропрограммы слишком большой принудительный автохинтинг ожидается четыре аргумента fwstart.img не подходит ни под одну проверенную версию. Продолжаем на ваш страх и риск генерировать образ в ФОРМАТЕ показать короткую справку по использованию показать эту справку указанный аргумент является системным устройством, а не путём grub-mkimage собран без поддержки XZ grub> остановиться на заданное число СЕКУНД (по умолчанию 3600) hex ФАЙЛ игнорировать заданный в битовой карте размер при загрузке неверное задание размеров терминала устанавливать образы GRUB в каталог КАТ/%s, а не в каталог %s установить даже если обнаружены проблемы некорректный формат пароля PBKDF2 неверный архитектурно-зависимый отличительный идентификатор ELF неверный архитектурно-независимый отличительный идентификатор ELF неверный размер блока неправильное указание цвета «%s» неправильный блок окружения неверное имя файла «%s» неверный диапазон шрифта неверный формат строки: %s некорректный параметр %s неверное значение пропуска %lld некорректное имя переменной «%s» неправильное указание видео-режима экрана «%s» ошибка ioctl GET_ARRAY_INFO: %s ошибка ioctl GET_DISK_INFO: %s ошибка ioctl RAID_VERSION: %s образ ядра слишком большой (0x%x > 0x%x) вывести список сетевых адресов вывести список сетевых карт вывести список сетевых маршрутов ls ПУТЬ файл lzop повреждён сделать устройство загрузочным как дискета (по умолчанию для устройств fdX). Может не работать с некоторыми BIOS. отсутствует символ «%c» отсутствует обязательный параметр для «%s» модуль «%s» не загружен модуль не загружен имя требуется образ и точка монтирования APM не найден информация о DHCP не найдена параметр DHCP %d не найден параметры DHCP не найдены не найдена DNS-запись не получен ответ DNS не настроены серверы DNS в каноническом имени файла отсутствует «/» команда не указана недоступен ключ расшифровки сетевая карта не найдена сервер не указан нет такого раздела не найден подходящий видео-режим отсутствует таблица символов не указан терминал в базовом образе нет метки окончания в базовом файле найдены не выровненные посекторно данные не каталог не основной раздел не обычный файл не в функции ожидается один аргумент другое ПО использует встраиваемую область, и в ней недостаточно места для core.img. Подобное ПО таким способом часто пытается сохранить данные, чтобы их не обнаружили. Мы рекомендуем вам исследовать это недостаточно памяти записать сгенерированный образ в ФАЙЛ [по умолчанию: на стандартный вывод] требуется указать выходной файл вывести сгенерированные настройки в ФАЙЛ [по умолчанию stdout] обнаружено переполнение пароли не совпадают выполнить автоматическую настройку по bootp физический том %s не найден заранее загрузить указанные МОДУЛИ преждевременный конец файла преждевременный конец файла %s нажать клавишу CapsLock нажать клавишу Insert нажать клавишу NumLock нажать клавишу ScrollLock нажать SysRq нажать левый alt нажать левый ctrl нажать левый shift нажать правый alt нажать правый ctrl нажать правый shift показать номер версии программы показать информацию о версии и завершить работу показать эту справку и закончить работу показывать подробные сообщения. открытый ключ %08x не найден ошибка при чтении по смещению %llu: %s прочитать текст из ФАЙЛА. относительный подкаталог на сетевом сервере возможность перемещения 0x%x ещё не реализована зарезервированная память получить параметр DHCP и сохранить его в ПЕРЕМЕННУЮ. Если значение ПЕРЕМЕННОЙ равно -, то показать значение. корневой каталог сервера TFTP обнаружено зацикливание маршрута сохранить образы ROM в КАТАЛОГ [необязательный] сохранить вывод в ФАЙЛ [требуется] выбрать индекс начертания последовательный порт «%s» не найден set [ИМЯ=ЗНАЧЕНИЕ …] включить режим capslock назначить подъём шрифта назначить спуск шрифта назначить гарнитуру шрифта назначить диапазон шрифта назначить размер шрифта задать имя входного файла для 32-битной части. задать имя входного файла для 64-битной части. задать имя входного файла. По умолчанию STDIN включить режим вставки включить режим numlock задать имя выходного файла. По умолчанию STDOUT включить режим паузы назначить префикс-каталог [по умолчанию %s] включить режим scrolllock задать имя программы размер stretch|normal символ «%s» не найден временный терминал %s не найден или не поддерживается terminfo терминал «%s» не найден для аргумента «%s» требуется целое число некорректная запись «%s» в device.map. Игнорируется. Исправьте или удалите device.map некорректное имя устройства «%s» в device.map. Вместо него будет использовано %s. Используйте формат [hfc]d[0-9]* (например «hd0» или «cd») первый сектор базового файла не выровнен посекторно устройство, на которое производится установка, является переносным. Этот параметр доступен только для EFI. некорректный тип раздела 0x%x секторы базового файла слишком фрагментированы размер «%s» не равен %u размер «%s» слишком велик размер «%s» слишком мал ELF-файл неправильного типа метка раздела GPT не имеет BIOS Boot Partition; встраивание невозможно данный LDM не содержит встраиваемого раздела; встраивание невозможно метка раздела в стиле msdos не имеет промежутка после MBR; встраивание невозможно ожидается три аргумента истекло время ожидания при открытии «%s» истекло время ожидания при чтении «%s» истекло время ожидания: невозможно определить аппаратный адрес слишком большая вложенность символьных ссылок транслятору «%s» для пути «%s» передаётся несколько слов, не параметров, по крайней мере «%s» и «%s» транслятору «%s» для пути «%s» переданы только параметры, не удалось найти часть, относящуюся к устройству командная строка транслятора для пути «%s» пуста ожидается два аргумента тип не удалось определить файловую систему в %s; невозможно выполнить безопасную проверку невыровненный размер устройства неожиданный конец файла неизвестный аргумент «%s» неизвестный тип сжатия %d
 неизвестный тип устройства %s
 неизвестная файловая система неизвестный тип RAID-устройства «%s» неизвестная ошибка в регулярном выражении неизвестный целевой формат %s
 неизвестный terminfo-тип «%s» неопознанный формат указания параметра DHCP «%s» нераспознанный сетевой адрес «%s» нераспознанный сетевой интерфейс «%s» нераспознанное число неопределимый адрес %s unset [ИМЯ …] неподдерживаемая ошибка HTTP %d: %s неподдерживаемый ответ HTTP неподдерживаемая версия RAID: %d.%d неподдерживаемый формат gzip неподдерживаемая чётность последовательного порта неподдерживаемая скорость последовательного порта неподдерживаемое количество стоп-битов последовательного порта неподдерживаемая длина слова последовательного порта Использовать ЦВЕТ для фона использовать ЦВЕТ для метки использовать ЦВЕТ для фона метки использовать ЦВЕТ для текста использовать КАТАЛОГ в качестве корня системного раздела EFI. использовать ФАЙЛ как файл со шрифтом (PF2). использовать ФАЙЛ в качестве файла шрифта для метки использовать ФАЙЛ в качестве загрузочного образа [по умолчанию %s] использовать ФАЙЛ в качестве базового образа [по умолчанию %s] использовать ФАЙЛ в качестве карты устройств [по умолчанию %s] в качестве xorriso использовать ФАЙЛ [необязательный] использовать файлы GRUB в каталоге, заданном в КАТ [по умолчанию %s] использовать СТРОКУ в качестве имени продукта использовать СТРОКУ в качестве версии продукта использовать файл идентификации даже если доступен UUID использовать образы и модули из КАТАЛОГА [по умолчанию %s/<платформа>] переменная «%s» не определена визуально упорядоченная UTF-8 подождать пока подключиться отладчик не будет продолжена с использованием blocklists неверный отличительный символ ELI или версия xnu_uuid УСТРОЙСТВО файл xz повреждён или имеются неподдерживаемые параметры блока вы не можете удалить этот адрес сначала вам нужно загрузить ядро BIOS Boot Partition слишком мал; встраивание невозможно данный core.img необычно большого размера. Он не влезет во встраиваемую область встраиваемая область необычно маленького размера. core.img не влезет в неё.                                                                                                         boot/grub/locale/sl.mo                                                                              0000600 0001750 0001750 00000301612 13417732100 0013643 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                       0     !    C      pY  #   qY      Y     Y     Y     Y  $    Z     %Z  6   9Z     pZ     wZ  	   Z     Z     Z     Z  .   Z  .   Z  %   [     A[     E[    T[    Y\    ^]     f^  7   ^  F   ^  v   ^  +   v_     _      _     _  !   _     `  ,   %`     R`     j`  $   `     `  *   `     `     `     a     a     .a  
   Na  	   Ya     ca  ,   a  ,   a  '   a  -   b      /b  (   Pb  (   yb  )   b     b     b     c     c     "c  "   +c  4   Nc     c     c  7   c     c  1   c     d  %   *d  '   Pd  %   xd  '   d     d     d     d     d      e     e     e     ,e     8e     Xe     je     xe     e     e  3   e     e  $   e     f     f     2f     Af     Rf     if     ~f  -   f     f  !   f     g     g     4g  #   Ig     mg  `   g  Z   Vh     h     h     h     h     i     i     %i     Ci     [i     ui     i     i     i     i     i     i     
j     !j     0j     5j     ;j  %   Jj     pj     j     j     j     j     j     j     k     k  *   6k  3   ak     k  "   k  8   k     l     l  	   ;l  #   El     il     l     l     l     l     l  )    m     *m     Im     gm  P   m     m     m  H    n  &   In     pn     n  !   n  ,   n     n     n     n  	   o  !   o  *   7o     bo     zo     o     o     o  $   o     o     
p     p     7p     Sp     np  
   p  
   p     p  1   p     p     p     q     q  3   7q  >   kq  $   q     q     q     r     r     6r     Vr  +   jr     r     r  #   r     r     s  $   *s     Os     is  '   s  9   s     s      t  z   t     t     t  8   t     t  
   u     u     u     <u     u  +   u     !v     6v     Lv  "   _v     v     v  (   v     v     v     v     w     w     (w  "   :w  0   ]w     w     w     w  7   w     w     w     w     x     $x     0x  0   7x     hx     |x     x     x  2   x  %   x     y  *   )y  6   Ty  +   y     y     y     y  !   z  d   z  e   @{  d   {  i   |  o   u|  H   |     .}     A}     W}     h}     {}     }     }     }  #   }     }     ~     5~  1   G~  )   y~     ~     ~     ~  /   ~     ~          $  5   A     w       K                  /     L     Q  '   V  P   ~     π       	                  &  '   :  +   b            )                       5     J     b     x  $             Ă  "   ߂            (     "   D  +   g  -             ڃ                 O        l                 %          )     !   ,  "   N     q       +        Ѕ            !   	     +     G     `     l                     ҆                  4   0     e                    ɇ                     3  !   T     v  M     2   ވ          +  *   I  8   t               щ             3     $   L  +   q                    Պ                     :     X     m  D        ʋ     ы  7   ً  ;        M     m  !             Č  s        X     p                    Ǎ     ލ          	          k     r     ~            '   ͏  
                   %     *     B     F     X  H   u          ѐ                    &  #   ?     c                          ޑ             "   +  (   N     w  %          2   Ӓ            #   (  *   L     w       #               "   ʓ  ;     #   )  <   M                 .   Ĕ  	          `        p  !     )        ѕ     ٕ  q        X     l                         Җ            "   %     H     `     z                    ӗ       #        %     B  g   ^     Ƙ     K     e  -          !   ę       "     '     Q   B                    К                     =     Z     v                    ͛                       -   @     n  "     b     )        2     H     `  ,   {            	   Ɲ  "   Н  %                  3     :  &   C  )   j       ^          $      %   E     k  ^     _   }  }   ݠ     [  )     '   <  >   d  D     !     '   
  -   2  #   `       )        Σ  )     )     ,   ?     l                    ۤ  E     $   2  A   W  )        å                     6     W  q   l     ަ  :        6     T     c                    ͧ  0             1     F  )   \  &             ʨ            )        >  %   N  %   t  ,     '   ǩ  :        *  -   I     w  .             Ȫ  '   ݪ  "        (     E  *   S     ~       )             Ы  6          0   Ȭ        !     "   <  #   _                 !   ҭ       
   
       <   /  %   l                    Ԯ  d     *   L  0   w                    ӯ            0        8  !   K     m       $             ڰ                  $   =  "   b  $                   ӱ          	          -     ?     L     g       '        Ĳ       $     +   "  "   N     q  )   x               ҳ            '        C     b       <         д            m        z               ɵ       +     3   (  1   \       '     -   Ķ       '     '   #  .   K  	   z                    շ               )     D     _     y       *     ?   ĸ  B     /   G     w       .     O   ѹ  )   !     K     a  	   p     z  5        κ                    )     @     F     Y     `     o     x                 	        Ļ     ӻ                    1     8     ?  
   M  
   X  	   c     m  !   s  )             Ӽ            N   "     q  "               -     -     $     #   :  0   ^  6        ƾ     Ծ  (     1     )   B     l     {  !              ȿ       %        '  &   ;     b        7     .     4        =     Z     o            %                       &     ?     ^     m     v                                #   	     -     G  B   a                              %  &   A     h                      &                  .     >  ;   R  V     "     &     !   /     Q     h     m  H     F     (        D     `  I   l  '          %             #     7     K  $   ]  '     *                    J        a     }       -     +          $        1  "   :  +   ]  J     %                "   3      V     w                                 %        A     `     ~                           [        Q  !   e                                             $     8     N     h                                        %  1   E     w                                1          0        .     C  !   Y     {  "                                       5     A     P     `     q                 &                    '   3  &   [       L               !        0     O     a     ~                                $             -  &   >     e  !   t                           	     7        +  %   E  [   k  w     7   ?  K   w  #     /             2     P  &   n  U     @     Q   ,     ~            +          R     L   ^  .               F        =     S     j                                      2   .  !   a  #                                      <     T     s  (     #     )     '     '   0  '   X       0     -     8        7     O  !   f                  .          !   !  B   C  E     B     P    '   `  #          $          *        6  ?   R                                1     .   $  $   S     x     |  l    I    ^  B       >     L     {   J  "          "          %   +     Q  -   j            &          .        3     M     Y     l  (                     (     (     &   =  )   d        &     &     '     !   %  !   G     i  
   x  
     '     6               6        ;  D   D       &     &     &     &     	   D     N     Q     p                      %          !        %     8     X  /   x       *                            /     F     Z  .   s       9     (     )   $     N  0   m       j   =  t              <     ]     v     {       !                    &     )   /     Y     j                                     0     -   $     R  $   o                                @   '  <   h       0     >        5  3   F     z  /                     1        9     U  *   d  -     $           ]        a     }  j     )        .     G  "   O  2   r                      9     2     "   I     l                 (             
  %     '   D  #   l  #                    ;        $     5     E      c  9     M     0        =     X     w                  '         (   0 !   Y    { .    .            /   - R   ]                     P       '    E    K !   S    u      9   8    r         '            5       A    N    f             %    *               + I   D                          &           2    @    T >   r ,         -    =   -	 :   k	 (   	    	    	 %   
    
    j             j           5    O    d    {             %           ,    H ;   ^ 1                >       ;    O    h C         "    B   
 &   M '   t %    
        ,    N     &   O    v 	        #        .    /       (    6 .   R                             #   6    Z    r .                 *    )    7   G                      u       f             P        1   < #   n $            3       %    C    c "   {                 "       $    A    V    t         )    "               :    U    p             $    "    W   ) D    (    "    )    J   <                     R    '   H 3   p                      !       >    ]    y )    N            A    V   U -        $            4  r   R                    !    *!    E!    ]!    v!    !    F" 
   '# 	   2# ,   <# $   i#    # 4   #    #    #    #    $    $    <$    E$     U$ b   v$    $    $    
%     $%    E%    [% -   x%    % !   %    %    %    
&     *& #   K&    o&    & +   &    & &   & #   ' 5   4' 
   j'    u'     ' ,   '    '    ' &   '    (    ( /   3( G   c( 0   ( H   (    %)    4)    R) )   _)    )    ) \   )     * #   * )   7* 	   a*    k*    *     + "    +    C+ !   ]+     + !   + "   + .   + ,   , 6   A, $   x, "   ,    ,    ,    ,    ,    -    &-     9- /   Z- (   -    -    Q. !   %/    G/ 3   f/    / !   /    / (   / -   0 Z   A0     0    0 
   0    0 %   0 !   1 %   ?1 !   e1 $   1     1    1    1     2    2    42    N2    e2     u2 4   2 '   2 6   2 l   *3 /   3 !   3    3    3 2   4 0   L4    }4 	   4 0   4 !   4    4    4    4     5 9   5 1   A5    s5 n   5    5 .   6 0   I6    z6 q   w7 o   7    Y8    8 /   9 ,   9 P   +: Y   |: 6   : <   ; C   J; ,   ; -   ; .   ; (   < )   A< B   k< F   < 0   <    &= '   F=    n=    = ]   = '   > F   ,> ,   s>    >     >     > +   ? '   .?    V?    o? #   ? M   @ *   a@    @ %   @     @    @    A    A .   :A 3   iA    A    A +   A /   A    /B    IB    fB $   }B (   B    B "   B "   C )   %C $   OC <   tC '   C ,   C    D 9   D    TD    kD 1   D !   D    D    D A   E    SE    hE /   pE    E    E 5   F    F 3   F "   F     G "   ?G    bG    G !   G )   G (   G    H    ,H    8H +   MH +   yH    H     H +   H    H y   I @   I &   I    I     J    J #   (J    LJ     RJ J   sJ    J $   J ,   J    *K 1   <K    nK    K    K    K    K (   K #   L -   3L    aL    zL $   L    L    L    L    L    M    !M $   ;M    `M #   |M *   M    M $   M "   N    *N    IN ,   RN    N 0   N $   N    N 0   O 4   4O "   iO +   O    O 6   O #   
P    .P     @P    aP     P    Q    %Q    CQ     aQ (   Q 5   Q 5   Q    R $   (R 0   MR 
   ~R (   R *   R >   R    S    "S    BS $   _S #   S $   S #   S #   S "   T    8T    ST    qT    vT D   T u   T /   QU    U    U 3   U o   U 7   XV    V    V    V %   V 6   V    #W !   9W    [W    uW    W    W !   W 	   W    W    W $   W    $X 
   AX    LX    \X    hX     yX    X    X    X    X    X    X    	Y    Y 	   ,Y    6Y #   <Y )   `Y    Y    Y #   Y     Y G   Y    DZ !   WZ    yZ    Z *   Z (   Z "   Z    [ =   .[ E   l[    [    [ *   [ 4   \ ,   ;\    h\     {\     \    \ /   \    ] 3   #]    W] 4   s] ,   ]     ] B   ] 9   9^ =   s^ '   ^    ^ !   ^    _ (   4_     ]_    ~_    _    _    _    _    `    '` +   4`    ``    v` %   `    `    `    ` '   `    a !   :a K   \a    a $   a    a $   b    (b    Bb 0   ab $   b    b    b    b    b ,   c    Fc     Zc    {c    c 8   c Z   c )   ?d )   id $   d    d    d 1   d D   
e D   Oe 2   e    e    e 6   e #   $f    Hf $   \f    f    f "   f    f 2   f '   g 5   8g +   ng    g !   g T   g    *h #   @h    dh *   ~h .   h    h &   h    i '   i "   ;i 4   ^i '   i    i %   i 2   i    ,j    Lj    cj    j    j    j !   j !   j '   k    9k    Yk    xk    k    k    k    k     k n   l    ul    l    l    l    l "   l    l    m "   4m    Wm    wm    m    m %   m    m     n     n    :n (   Pn    yn    n %   n E   n    o    o    1o    Go    \o    wo    Np 2   ep $   p 9   p    p    q !   $q ,   Fq )   sq    q    q    q    q    r    r    ;r    Rr    lr    r    r    r    r    r '   s     ;s    \s    ys )   s    s    s `   s    Ot    mt "   t #   t    t %   t    u #   &u    Ju    eu    u    u    u .   u    u $   v 0   8v    iv %   v    v    v    v    v "   v    w <    w    ]w #   }w    w    !x 0   x Q   x    +y $   Ky    py    y    y    y O   y <   )z T   fz    z    z    z 8   { &   O{ Q   v{ U   { 1   |    P|    o| X   u|    |    |    }    }    3}    M}    g}     }    }    } 0   }     ~ "   .~    Q~    g~    ~    ~    ~     ~    ~ !   ~ !    7   ; )   s 4    1    .    5   3 &   i .    5    6    !   ,    N .   a #    &       ہ =    !   *     L D   m _    w       +    T                             a      \           Z        :       H  L  o          U                        _                        I           O                               J   d                   i                       G           1                R    Q      u                   I    h              $  /                                              .              l    g                  p  u       }        e                i          @  [    Y                d      (  \     t                O      y  {        E                    :  
      =   [  <   %  r                     
  t       P      z   F      I                  |        o   #      l  )        >    5        B             G    w    x  y                                 !               2            n  k              \    9  |     L  )          	  
                  F      *  A  Q                           i      ~         $  7              F      U    j            >        V               A  5              ;                 1                     ]              @       !        /                   `     .   s  N              W                         S        #        )      F                          }      J     "  M                 "   `    H  	  b  ;       `  C          #            9        |      f   v              Q         N             h               =         l         "      *       '  M                     1    T      k      5       &     k          z        A       !               <      n      V                   )   0        E   H              u                %     M             ,           >   C          %         ,                7    $    f  K  Z      '                                      	         g   4  t              a                                        R         ]           ^             "                          *  #  V    ~                c                    ,    B        6    :  b     f  ,  K  n      4                !  =            	    m   c           "            y    .    r  Y        M          '                           -                                  ^                                p  J  k                             1        -  (  }       T                @    {  &                  3  w                       {            )                                D  6  [    S      z            j  c                 v                                               _  B  .            /      m            L   3       ^             0      P     h            =    p     p  g                 8       ?   v                         X  #                       8  ?               K  $      N                                  7   (  g                   9   I  Y    |                   q               U  P       S     a         n         ]         q           -        4            b               Y         U             R  S    6            G      Q      9  C          &                      J      W                        <      -  ;              3          O  $  j                           ~   @                        d          T     x   d       0  '  P    O  2     q              `  h                   H           +                                     \  6  R                                     D          f      s  Z  X           v          N        ]      w   X  0      4    7      '           C      X      
    Z             j               r      -  E                    :  m                       A     e           !  &                    b                   m               K               &        u     W  o    %                             B              *                       x    D              i  ?                       c      /             ^  ?  }      8  E  l            q      
   _  3                	      e        .  {                               s           >         (   t           %      G                     a                   *           +                             _                        2   L                         [   r          +                     5           D      8                   V      W                    2               ,     o        s     /             ;       +  w  <  (            z      x                      y  ~  0     e                         total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: option '%c%s' doesn't allow an argument
 %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS Import ZFS wrapping key stored in FILE. Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MODULE MODULES Mail xorriso support requests to <bug-xorriso@gnu.org>. Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Option -- switches to native xorriso command mode. Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot the computer. Reenter password:  Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show the contents of a file. Show the current mappings. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Specify the number of input files. Start GDB stub on given port Stop GDB stub Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 TARGET Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This entry can be booted by any user. Thursday Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Translates the string with the current settings. Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME Verbose countdown. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. Your embedding area is unusually small.  core.img won't fit in it. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `cryptomount' command fails: %s `loopback' command fails: %s a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format blocklist FILE blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists: %s cannot compress the kernel image cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot get translator command line for path `%s': %s cannot open OS file `%s': %s cannot open `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. diskboot.img size must be %u bytes do not probe for filesystems in DEVICE domain name component is too long don't update LED state done embed FILE as an early config embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification install GRUB images under the directory DIR/%s instead of the %s directory install even if problems are detected invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid color specification `%s' invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no `/' in canonical filename no command is specified no decryption key available no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found pre-load specified modules MODULES premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. read error at offset %llu: %s relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory of TFTP server route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the argument `%s' requires an integer the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use DIR as the EFI System Partition root. use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub-2.0.0-pre6
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2012-12-11 21:02+0100
Last-Translator: Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Language-Team: Slovenian <translation-team-sl@lists.sourceforge.net>
Language: sl
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0);
X-Launchpad-Export-Date: 2012-12-03 07:20+0000
X-Generator: Poedit 1.5.4
X-Poedit-SourceCharset: utf-8
               skupni pomnilnik: %d KiB
      Prednostni način ni na voljo
      Prednostni način: %ux%u
    Nadzorna vsota EDID je neveljavna    Različica EDID: %u.%u
   Začenjanje vmesnika videa je spodletelo   Podrobnosti niso na voljo   VBE info:   različica: %d.%d  predelava programa OEM: %d.%d
   ali: (najbolj levo) (sredinsko) (najbolj desno)  - Skupna velikost je neznana  [MOŽNOST ...] %.*s: parameter ARGP_HELP_FMT mora biti pozitiven %.*s: parameter ARGP_HELP_FMT zahteva vrednost %.*s: neznan parameter ARGP_HELP_FMT %ds %ds preostalo. Videti je, da vsebuje %s datotečni sistem %s, za katerega ni znano, ali rezervira prostor za zagon v slogu sistema DOS. Nameščanje nalagalnika GRUB na to mesto lahko povzroči UNIČENJE DATOTEČNEGA SISTEMA, kadar program grub-setup prepiše pomembne podatke (možnost --skip-fs-probe onemogoči to preverjanje, zato možnost uporabljate na lastno odgovornost). Videti je, da vsebuje %s preslikavo razdelkov %s in LDM, kar pa ni varna kombinacija. Nameščanje nalagalnika GRUB na to mesto lahko povzroči UNIČENJE DATOTEČNEGA SISTEMA, kadar program grub-setup prepiše pomembne podatke (možnost --skip-fs-probe onemogoči to preverjanje, zato možnost uporabljate na lastno odgovornost). Videti je, da vsebuje %s preslikavo razdelkov %s, ki, za zagon v slogu sistema DOS, ne rezervira prostora. Nameščanje nalagalnika GRUB na to mesto lahko povzroči UNIČENJE DATOTEČNEGA SISTEMA, kadar program grub-setup prepiše pomembne podatke (možnost --skip-fs-probe onemogoči to preverjanje, zato možnost uporabljate na lastno odgovornost). %s ne podpira vrednosti UUID %s ustvari razporeditev tipkovnice za GRUB z uporabo ckbcomp\n %s je zastarel. Namesto tega pred ukazom linux uporabite set gfxpayload=%s.
 %s je zastarel. Način VGA %d ni prepoznan. Namesto tega pred ukazom linux uporabite gfxpayload=ŠIRINAxVIŠINA[xGLOBINA].
 grub-mkconfig še ne podpira %s.\n %s, s Hurd %s %s, s Hurd %s (obnovitveni način) %s, z Linuxom %s %s, z Linuxom %s (obnovitveni način) %s, s Xen %s in Linux %s %s, s Xen %s in Linux %s (obnovitveni način) %s, s hipervizorjem Xen %s, s kFreeBSD %s %s, s kFreeBSD %s (obnovitveni način) %s, z jedrom %s (preko %s) %s, z jedrom %s (preko %s, obnovitveni način) %s: NEUJEMANJE RAZPRŠIL
 %s: v redu
 %s: NAPAKA BRANJA
 %s: preveč argumentov
 %s: ukaz zahteva skrbniška dovoljenja\n %s: napaka: %s: podrobnosti: %s: neveljavna možnost -- '%c'
 %s: možnost '%c%s' ne dovoli argumenta
 %s: možnost '--%s' ne dovoli argumenta
 %s: možnost '--%s' zahteva argument.
 %s: možnost '-W %s' ne dovoli argumenta
 %s: možnost '-W %s' je dvoumna
 %s: možnost '-W %s' zahteva argument
 %s: možnost zahteva argument -- '%c'
 %s: možnost zahteva argument -- `%s'\n %s: neprepoznana možnost '%c%s'
 %s: neprepoznana možnost '--%s'
 %s: opozorilo: (32-bitni) (64-bitni) (NAPAKA PROGRAMA) Ni znane različice!? (NAPAKA PROGRAMA) Možnost bi morala biti prepoznana!? (na %s)  - Oznaka `%s' - Čas zadnje spremembe %d-%02d-%02d %02d:%02d:%02d %s --VEČ-- -h RAZPRŠILO [-c DATOTEKA [-p PRIPONA]] [DATOTEKA1 [DATOTEKA2 ...]] -l | -r | [-s] grubdev osdisk. 32-bitni zaščiten vmesnik je podprt
 16-bitni zaščiten vmesnik ni podprt
 32-bitni zaščiten vmesnik je podprt
 32-bitni zaščiten vmesnik ni podprt
 =VREDNOST  > obstojni pomnilnik RAM za ACPI dodeljiv RAM za ACPI Izklop ACPI je spodletel ADDR ADDR VREDNOST [MASKA] ADDR [VELIKOST] NASLOV1,MASKA1[,NASLOV2,MASKA2[,...]] NASLOV STREŽNIKDNS Upravljanje APM je onemogočeno.
 APM je izklopljen
 Upravljanje APM je omogočeno.
 Upravljanje APM je vklopljeno.
 ARGP_HELP_FMT: vrednost %s je manj ali enaka %s ASCII Sprejmi končanje vrstic CR/NL v slogu DOS Dejavni terminali vnosa: Dejavni terminali izhoda: Vmesnik `%s':
 Dodaj strežnik DNS Dodaj omrežni naslov. Dodaj omrežno pot. Napredne možnosti za %s Napredne možnosti za %s (s hipervizorjem Xen) Dovoli prekinitev s tipko ESC. Vprašaj po imenu datoteke za ponoven zagon računalnika. Predpostavi, da je vhod šestnajstiški. Predpostavi, da je vhod šifrirana fraza. Predpostavi, da je vhod surov. Poteka poskus odšifriranja glavnega ključa ... Izvaja se poskus nameščanja nalagalnika GRUB na disk z več oznakami razdelkov, ali z oznako zagonskega razdelka in datotečnega sistema. To še ni podprto. Izvaja se poskus nameščanja nalagalnika GRUB na disk z več oznakami razdelkov. Možnost še ni podprta. Izvaja se poskus nameščanja nalagalnika GRUB na disk brez razdelkov ali neposredno na razdelek. To je SLABA ideja. Razpoložljivi terminali vnosa Razpoložljivi terminali izhoda: BIOS_IZPIS [INT10_IZPIS] BLOK BAJT:BIT Način slike ozadja. Osnovna mapa za seznam razpršil. Zaženi v načinu BIOS. Zaženi operacijski sistem. Zaženi v enojni način. Zaženi s sporočili razhroščevanja. Zaženi s podrobno izpisanimi sporočili. Zaganjanje ` %s' Zaganjanje seznama ukazov Zaganjanje v slepem načinu Pot zagona: %s
 Pot zagona: ni na voljo
 Prelomi v GDB CGA  BARVA UKAZ [ARGUMENTI] Nedejavna CPE ne upočasni delovanja procesorja
 Nedejavna CPE upočasni delovanje procesorja
 Naprava CS5536 pri %d:%d.%d
 Ni mogoče omogočiti področja ROM. Spremeni nastavljene naprave. Spremeni vrsto razdelka Preverite tipko Alt. Preverite tipko Control. Preverite tipko Shift. Preveri zmožnosti CPE. Preveri razpršila datotek z datoteko seznama razpršil DATOTEK: Preveri, ali CPE podpira 64-bitni (dolgi) način (privzeto). Preverite stanje pomožnih tipk Preveri ali je uporabnik na SEZNAMU_UPORABNIKOV. Preveri nastavitveno datoteko skripta GRUB za napake skladnje. Počisti zaslon. Zastavica dejavnosti pogona na %d je počiščena.
 Ukazi: Primerja DATOTEKO s krajevno datoteko KRAJEVNO. Primerjaj datoteko `%s' z `%s':
 Primerjaj dve datoteki. Izračunaj UUID XNU naprave. Izračunaj ali preveri navzorno vsoto razpršila. Nastavitev zaporednih vrat. Nadaljuj zanke Pretvori pogoste vrste datotek pisav v PF2 Kopira DATOTEKO v krajevno datoteko KRAJEVNO. Kopira DATOTEKO na standardni izhod. Ni mogoče najti gonilnika FPSWA Ni mogoče najti fizičnega nosilca `%s'. Nekateri moduli morda manjkajo iz osnovnega odtisa. Ni mogoče naložiti sha256 Ni mogoče naložiti sha512 Ustvari strukture, podobne strukturam BIOS, za povratno združljivost z obstoječim operacijskim sistemom. Ustvari bločno datoteko praznega okolja. Trenutne vrste terminfo: NAPRAVA NAPRAVA [RAZDELEK[+/-[VRSTA]]] ... NAPRAVA mora biti naprava OS (na primer /dev/sda). IME_NAPRAVE MAPA MAPA [OSBundleRequired] STREŽNIK_DNS Orodje razhroščevanja za gonilnik datotečnega sistema. Določi odseke pomnilnika kot pokvarjene (badram). Program za odpakiranje je prevelik Določi vnos menija. Določi podrejeni meni. Izbriši omrežni naslov. Izbriši omrežno pot. Izbriši določeni pogon povratne zanke. Izbriše spremenljivke Določite gonilnik. Določitev UUID datotečnega sistema. Določitev oznake datotečnega sistema. Določi vrsto datotečnega sistema. Določi vrsto preslikave razdelkov. Naprava %s: ID naprave: %s
 ID naprave: ni na voljo Neposredna barva, maska: %d/%d/%d/%d  položaj: %d/%d/%d/%d Onemogoči ACPI. Onemogoči SMP. Onemogoči vse izhode zagona. Onemogoči/Omogoči SMART (0/1). Zavračanje nepravilno gnezdenega razdelka (%s, %s, %s%d) Statistika predpomniknka diska: zadetki = %lu (%lu.%02lu%%), zgrešeno = %lu
 Število diskov mora biti pred seznamom diskov.
 Prikaži različico FPSWA. Prikaži stanje zdravja SMART. Prikaži vrstico besedila. Pokaže seznam blokov DATOTEKE. Prikaži izpis na vseh konzolah. Prikaz način porabe. Prikaži uporabo tega ukaza in končaj. Prikaži to pomoč in končaj. Prikaži/nastavi trenutni datum in čas. Ne izpisuj sledeče nove vrstice. Ne izpisuj sporočil. Ne preizkušaj kateregakoli disketnega pogona. Ne uporabljaj APM za ustavljanje računalnika. Ne počni ničesar, uspešno. Ne počni ničesar, neuspešno. Ne prikazuj zagonskih diagnostičnih sporočil. Ne naloži preglednic gostitelja, navedenih v seznamu z vejico ločenih vrednosti. Ne zaženi znova, zgolj ustavi. Ne zaustavi po prvi napaki Ne posodobi polja EBDA. Možnost lahko odpravi napake in zastoje v delovanju na nekaterih sistemih BIOS, vendar jih naredi neučinkovite, ker operacijski sistem ne sprejema podatkov RSDP iz nalagalnika GRUB. ENVVAR ENVVAR [ENVVAR] ... NAPAKA: veljavne razporeditve tipkovnice ni bilo mogoče najti. Preverite vhod.
 ESC kadarkoli konča program. IZRAZ IZRAZ ] Pretečeni čas: %d.%03d sekund 
 Vgrajevanje ni mogoče. Nalagalnik GRUB je v tem primeru mogoče namestiti s seznami blokov. Seznami blokov so NEZANESLJIVI, zato je njihova uporaba odsvetovana. Posnemaj zaporedje pritiska tipk Omogoči tolmačenje leve poševnice kot ubežnega znaka. Vnesite geslo ZFS: Vstopi v KDB ob zagonu. Vstopi v običajni način. Vnesite šifrirno frazo za %s%s%s (%s): Vnesite geslo:  Vnesite uporabniško ime:  Napaka pri razčlenjevanju argumentov ukazne vrstice
 Oceni izraz. Končanje je spodletelo Končaj zaganjalnik GRUB. Izhod iz zank Zapusti običajni način. Izvozi spremenljivke. Izvozi preglednice različice 1 v OS. Izvozi preglednice različice 2 in 3 v OS. DATOTEKA DATOTEKA [ARG ...] DATOTEKA [ARGUMENTI ...] DATOTEKA | TEMPO [VIŠINA_TONA1 TRAJANJE1] [VIŠINA_TONA2 TRAJANJE2] ...  DATOTEKA ... DATOTEKA1 DATOTEKA2 IMEDATOTEKE UKAZ DATOTEČNISISTEM [SPREMENLJIVKA] DATOTEKA|poziv VRSTA Protokol FPSWA ni mogel najti vmesnika Predelava FPSWA: %x
 OD-DO[,OD-DO] OD[K|M|G] DO[K|M|G] FT_Init_FreeType je spodletel Zaganjanje tako privzetih kot povratnih vnosov je spodletelo.
 Drevesa `device-mapper' ni mogoče ustvariti uporaba zasilne možnosti : `%s' Datotečni sistem `%s' ne podpira vstavljanja Datoteki sta različni pri odmiku %llu: 0x%x [%s], 0x%x [%s]
 Datoteki se razlikujeta v velikosti: %llu [%s], %llu [%s]
 Do datotečnega sistema ni mogoč dostop Vrsta datotečnega sistema %s Zapolnite hibridni MBR pogona NAPRAVE GPT. Navedeni razdelki bodo del hibridnega zapisa MBR. Dovoljeni so do 3 razdelki. VRSTA je vrsta MBR. Znak + pomeni, da je razdelek dejaven. Dejaven je lahko le en razdelek. Končaj nalaganje posnemovalnika EFI. Najprej preizkusi napravo NAMIG, če se izvaja na ARC. V primeru, da se NAMIG konča z vejico, preizkusi tudi podrejene razdelke. Najprej preizkusi napravo NAMIG, če se trenutno izvaja na BIOS. V primeru, da se NAMIG konča z vejico, preizkusi tudi podrejene razdelke. Najprej preizkusi napravo NAMIG, če se trenutno izvaja na EFI. V primeru, da se NAMIG konča z vejico, preizkusi tudi podrejene razdelke. Najprej preizkusi napravo NAMIG, ali se trenutno izvaja na IEEE1275. V primeru, da se NAMIG konča z vejico, preizkusi tudi podrejene razdelke. Najprej preizkusi napravo NAMIG, če je podprt neposreden dostop do strojne opreme. V primeru, da se NAMIG konča z vejico, preizkusi tudi podrejene razdelke. Najprej preizkusi napravo NAMIG. V primeru, da se NAMIG konča z vejico, preizkusi tudi podrejene razdelke Popravi težavo z videom. Najden je %s na %s (%s)\n Najden je %s na %s\n Najden je GNU Mach: %s Najden je modul Hurd: %s Najdeno je jedro NetBSD: %s\n Najdeno je ozadje: %s\n Najden je odtis initrd: %s\n Najdena je mapa jedrnega modula: %s\n Najdeno je jedro FreeBSD: %s\n Najden je odtis linux: %s\n Najdena je tema: %s\n Napaka Freetype %d med nalaganjem pismenke 0x%x za U+0x%x%s Zamrzni varnostne nastavitve ATA do ponastavitve. petek Različica GNU GRUB %s Zagonski meni GRUB Z nalagalnikom GRUB še ni mogoče ustaviti tega računalnika! Posnemovalnik GRUB. NAPRAVAGRUB=NAPRAVAPLAN9 Smeti v ARGP_HELP_FMT: %s Ustvari razporeditev tipkovnice GRUB iz razporeditve konzole Linux. Ustvari geslo razpršila PBKDF2. Ustvari nastavitveno datoteko grub Ustvari samostojen odtis (ki vsebuje vse module) v izbrani obliki. Pridobi nadzorno vsoto crc32 DATOTEKE. Pridobi podatke o predpomnilniku diska. Pridobi/Nastavi parametre diskov ATA. RAZPRŠILO NAMIG Ustavi sistem z uporabo APM, če je mogoče. Ustavi računalnik. Ukaz ne deluje na vseh izvedbah programske strojne opreme. Upravljaj N bajtov v izhodni datoteki. Pozdravljen svet Hercules  ID ODTIS1 [ODTIS2 ...] TOČKA_PRIKLOPA POT_ODTISA UKAZI Uvozi ključ ovijanja ZFS shranjen v DATOTEKO. Nepravilna navidezna naprava: ni vrste na voljo Vstavi modul. Namesti GRUB na vaš pogon. Namestitev je končana. Ni poročil o napakah. Neveljaven povratni sklic Neveljavno ime razreda znaka. Neveljaven znak zbiranja Neveljaven ukaz %s.
 Neveljavna vsebina \{\} Neveljavna naprava `%s'.
 Neveljavno število diskov.
 Neveljaven predhodni logični izraz Neveljaven konec obsega Neveljavni logični izraz Uveljavi usmerjanje po nastavitvah uporabnika. ARGUMENTI JEDRA TIPKA Tipka za hiter zagon tega vnosa. Navidezna naprava leaf (datoteka ali disk) Opuščen parameter `ask' ni več podprt. Legenda: maska/položaj=rdeče/zeleno/modro/rezervirano Dolžina ustvarjenega razpršila Dolžina soli Izpiši strežnike DNS Izpiši naprave PCI. Natisni vse datoteke. Izpiši vse razpoložljive načine videa. V primeru podane ločljivosti so prikazani le načini, ki se z njo ujemajo. Izpiši naprave in datoteke. Izpiše naprave ali datoteke. Izpiši naprave. Izpiše datoteke v POTI. Navedi preslikavo pomnilnika, zagotovljenega s strani programske strojne opreme. Seznam podprtih načinov videa: Seznamov uporabnikov, ki lahko zaženejo ta vnos. Izpiše ali izbere vhodni terminal. Izpiše ali izbere izhodni terminal. Izpiše trenutne spremenljivke. Izpiše naložene pisave. Izpiši spremenljivke iz okoljske bločne datoteke. Naloži odtis 64-bitnega XNU. Naloži izpis nalagalnika BIOS. Naloži okolje FreeBSD. Naloži modul jedra FreeBSD (ELF). Naloži modul jedra FreeBSD. Naloži kernel.sys FreeBSD. Naloži Linux. Naloži NTLDR ali BootMGR. Naloži jedrni modul NetBSD (ELF). Naloži jedrni modul NetBSD. Naloži jedro Plan9. Naloži razširitev mape XNU. Naloži paket razširitve XNU. Naloži razširitev XNU. Naloži odtis XNU. Naloži ramdisk XNU. Na voljo bo kot md0. Naloži izpis `device-properties'. Naloži odtis PXE. Naloži razporeditev tipk. Naloži jedro multiboot 2. Naloži modul multiboot 2. Naloži jedro multiboot. Naloži modul multiboot. Naloži pozdravno sliko za XNU. Naloži odtis XNU v mirovanju. Naloži in začni posnemovalnik EFI. Naloži drugi zagonski nalagalnik. Naloži dodatno nastavitveno datoteko brez spreminjanja vsebine, vzemi pa vnose menija. Naloži dodatno datoteko z nastavitvami brez spreminjanja konteksta. Naloži dodatno datoteko z nastavitvami. Naloži drugo obremenitev coreboot Naloži sliko ozadja za dejavni terminal. Naloži gostiteljeve preglednice ACPI in preglednice navedene z argumenti. Naloži initrd. Naloži ramdisk kOpenBSD. Naloži jedro FreeBSD. Naloži jedro NetBSD. Naloži jedro OpenBSD. Naloži le preglednice gostitelja, navedene v seznamu z vejico ločenih vrednosti. Naloži isto datoteko na več načinov. Naloži spremenljivke iz okoljske bločne datoteke. Naloži ključi šifriranja zfs. Naložene pisave: Zaganjanje GNU Mach ... Nalaganje Linuxa %s ... Nalaganje Xen %s ... Nalaganje začetnega ramdiska ... Nalaganje jedra FreeBDS %s ... Nalaganje jedra Illumos ... Zaganjanje Hurd ... Potrjevanje veljavnosti MAC je spodletelo VNOS_MENIJA je število, naslov predmeta menija ali določilo predmeta menija. MODUL MODULI Zahteve po podpori za xorriso pošljite na <bug-xorriso@gnu.org>. Ustvari nosilec CD, disk, ključ USB ali disketni zagonljiv odtis z nalagalnikom GRUB. Naredi datoteko razporeditve tipkovnice GRUB. Naredi zagonljiv odtis GRUB. Ustvari navidezni pogon iz datoteke. Naredi razdelek dejaven Uredi preslikave pogona BIOS. Obvezni ali izbirni argumenti dolgih možnosti so obvezni ali izbirni tudi za morebitne ustrezne kratke možnosti. Upravljaj naprave PCI. Izmeri čas, ki ga uporabi UKAZ Pomnilnik je izčrpan Vrsta pomnilnika: DDR2. Vrsta pomnilnika: neznana. Določilo vnosa menija. Vnos menija ni določen. Vrsta vnosa menija. Podprt je enostaven način urejanja, podoben BASH. Za prvo besedo TABULATOR izpiše mogoča dokončanja ukazov. Povsod drugod TABULATOR našteje mogoča dokončanja naprav ali datotek. %s Podprt je enostaven način urejanja, podoben Emacs. Tipka TAB izpiše možnosti dopolnjevanja. Pritisnite tipki Ctrl-x ali F10 za zagon, Ctrl-c ali F2 za ukazno vrstico ali ESC za zavračanje urejanja in vrnitev v meni GRUB. ponedeljek Enobarvno Ali obstaja več kot ena naprava namestitve? Ali obstaja več kot en vnos menija? Priklopi šifrirno napravo. Priklopi vse nosilce z nastavljeno zastavico `boot'. Priklopi vse. Priklopi po UUID. Priklopi šifrirne naprave. IME IME [SPREMENLJIVKA] [NAMIGI] ŠTEVILO ŠTEVILO_SEKUND Ime	Sklicno število	Odvisnosti
 Lastni gonilniki diska so v uporabi. Zavračanje uporabe vmesnika programske strojne opreme diska. Omrežni protokoli: Novi MBR ja zapisan na `%s'
 Ni najdene naprave CS5536 Protokola FPSWA ni mogoče najti Ni navedenega ukaza.
 Nobena naprava ni navedena.
 Statistika predpomnjenja diskov ni na voljo.
 Pogoni niso bili preslikani Ni zaznanega datotečnega sistema Ni zadetkov Nobena pot ni določena.
 Ni določene naprave ali poti.
 Ni predhodnega logičnega izraza Drevo navideznih naprav ni na voljo Ne-verižni način 4 Ni dovolj parametrov za ukaz.
 Sedaj povežite oddaljen razhroščevalnik. Število ponovitev PBKDF2 OS disk #št ------> naprava GRUB/BIOS Napaka odpiranje datoteke OS %s: %s Možnost -- preklopi na lasten način ukazov xorriso. Možnosti: Iskanje izven obsega: %d
 Zamenjava izven obsega (%d, %d)
 Prepiši predvideno preslikavo naprav Plan9. RAZDELEK UKAZI POT Razpršilo PBKDF2 vašega gesla je %s
 VRATA VREDNOST VRAT [MASKA] Razčleni opuščeno nastavitev v novi vsebini. Razčleni opuščeno nastavitev v novi vsebini in vzame le vnose menija Razčleni opuščeno nastavitev v enaki vsebini. Razčleni opuščeno nastavitev v enaki vsebini in vzame le vnose menija Del št.: %s.
 Razdelek %d je zdaj dejaven.
 Razdelek %s: Slog razdelka `%s' ne podpira vstavljanja Pot: %s
 Pot: ni na voljo Izvedi UKAZE na razdelku.
Uporabi `parttool RAZDELEK help' za seznam razpoložljivih ukazov. Izvedi iskanje DNS Izvajanje samodejne nastavitve IPV6 Izvedi neposredne in povratne preslikave. Ravninsko Predvajaj melodijo. Za GRUB_DEFAULT ne uporabite starega naslova `%s', uporabite `%s' (za različice pred 2.00) ali `%s' (od različice 2.00 naprej) GUID zaloge vrednosti: %016llx
 GUID zaloge vrednosti: ni na voljo Ime zaloge vrednosti: %s
 Ime zaloge vrednosti: ni na voljo Stanje zaloge vrednosti: dejavno Stanje zaloge vrednosti: uničeno Stanje zaloge vrednosti: izvoženo Stanje zaloge vrednosti: naprava ARC stopnje 2 Stanje zaloge vrednosti: potencialno dejavna Stanje zaloge vrednosti: rezervirano za vročo rezervo Stanje zaloge vrednosti: ni na voljo Stanje zaloge vrednosti: nezačeto Mogoči argumenti so: Mogoči ukazi so: Mogoče naprave so: Mogoče datoteke so: Mogoči razdelki so: Mogoče stvari so: Prehiter konec logičnega izraza Pritisnite katerokoli tipko za nadaljevanje ... Pritisnite katerokoli tipko za zagon xnu Za zagon izbranega operacijskega sistema pritisnite vnosno tipko, za urejanje ukazov pred zagonom pritisnite tipko `e' , za ukazno vrstico pa pritisnite `c'. Za zagon izbranega operacijskega sistema pritisnite vnosno tipko, za urejanje ukazov pred zagonom pritisnite tipko `e' , za ukazno vrstico pritisnite `'c'. S pritiskom na ubežno tipko, se pojavi predhodni meni. Izpiši podrobnosti o pomnilniku. Izpiši podatke ZFS o NAPRAVI. Izpiši ZFS-BOOTFSOBJ ali ga shrani v SPREMENLJIVKO Izpiši seznam blokov. Izpiši in izvedi argument bloka. Izpiši povratno sled. Izpiši identiteto in nastavitve pogona. Izpiši velikosti v človeku berljivi obliki. Napravi poizvedbo o podatkih naprave za dano pot (ali napravo, če je podana možnost -d). strojna programska oprema za RAM Številka %d mesta RAM
 REGEXP NIZ Prisoten je odtis ROM. Preberi 16-bitno vrednost in NASLOVA. Preberi 16-bitno vrednost z VRAT. Preberi 32-bitno vrednost in NASLOVA. Preberi 32-bitno vrednost z VRAT. Preberi 8-bitno vrednost in NASLOVA. Preberi 8-bitno vrednost z VRAT. Beri le bajte DOLŽINE. Ponovni zagon je spodletel Znova zaženite računalnik. Ponovno vnesite geslo: Logični izraz je predolg Odstrani strežnik DNS Odstrani modul. Odstrani okoljsko spremenljivko. Odstrani vsa območja pomnilnika v navedenem obsegu. Poročila o hroščih pošljite na %s.
 Poročila o hroščih pošljite na <bug-grub@gnu.org>. Zahtevan je zaporedni terminal, vendar GRUB_SERIAL_COMMAND ni določen. Uporabljeni bodo privzeti parametri. Ponastavi vse preslikave na privzete vrednosti. Pridobitev podrobnosti o napravi. Vrni se iz funkcije. Vrni se na poziv IEEE1275. Zaženi `gdb %s %d' in nastavi ARGS.HOLD na nič.
 Zaženite `go' za nadaljevanje nalagalnika GRUB. SEKUND KRATKOIME KRATKOIME NASLOV KARTICE [NASLOV_STROJNE_OPREME] KRATKOIME NET [VMESNIK|gw PREHOD] VELIKOST VIR|-u UUID|-a|-b NIZ sobota Shrani vrednost branja v spremenljivko IME_SPREMENLJIVKE. Shrani spremenljivke v okoljsko bločno datoteko. Recite 'Pozdravljen svet'. Poišči naprave po UUID. Če je SPREMENLJIVKA navedena, bo prva najdena naprava nastavljena na spremenljivko. Poišči naprave po datoteki Poišči naprave po UUID datotečnega sistema. Poišči naprave po oznaki datotečnega sistema. Poišči naprave po datoteki, oznaki datotečnega sistema ali UUID datotečnega sistema. Če je določena možnost --set, je prva najdena naprava nastavljena na spremenljivko. V primeru, da ime spremenljivke ni navedeno, je uporabljena `korenska mapa`. Išči naprave po datotekah. Če je SPREMENLJIVKA navedena, bo prva najdena naprava nastavljena na spremenljivko. Išči naprave po oznakah. Če je SPREMENLJIVKA navedena, bo prva najdena naprava nastavljena na spremenljivko. Odsek %llu je že v uporabi nadzornika raid `%s', zato bo izpuščen. Pošljite zahtevo proizvajalcu, da podatkov ne shranjujejo na mestu zapisa MBR. Odsek %llu je že v uporabi programa `%s', zato bo izpuščen. Program lahko v prihodnosti povzroči težave z zagonom ali druge težave. Pošljite zahtevo programerjem, da podatkov ne shranjujejo na mestu zagonske sledi.  Izberite napravo z njenim položajem na vodilu. Izberite napravo po ponudniku in ID naprave. Nastavi napredno upravljanje porabe
(1=nizko, ..., 254=visoko, 255=izključeno). Nastavi samodejno akustično upravljanje
(0 = izklopljeno, 128 = tiho, ..., 254 = hitro). Nastavi OEMID podatkovnih struktur RSDP, XSDT in RSDT. Nastavi OEMTABLE ID podatkovnih struktur RSDP, XSDT in RSDT. Nastavi predelavo OEMTABLE podatkovnih struktur RSDP, XSDT in RSDT. Nastavi zastavico `skrito' v vrsti razdelkov Nastavi spremenljivko na vračanje vrednosti. Nastavi spremenljivko za prvo najdeno napravo. Nastavi vrednost okoljske spremenljivke. Nastavi barvo ozadja za dejavni terminal. Nastavi polje ustvarjalca podatkovnih struktur RSDP, XSDT in RSDT. Nastavi predelavo ustvarjalca podatkovnih struktur RSDP, XSDT in RSDT. Nastavi spremenljivko razhroščevalnega okolja. Nastavi pogon v pripravljenost. Nastavi pogon v način pripravljenosti. Nastavi parametre položajev. Nastavi korensko napravo. Nastavi zakasnitev pripravljenosti.
(0=izklopljeno, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Nastavi vrsto terminfo IZRAZA v VRSTA.
 Nastavi privzeti vnos zagonskega menija za GRUB le za naslednji zagon. Nastavi privzeti vnos menija zagona za GRUB. Nastavi naslov zaporednih vrat. Nastavi parnost zaporednih vrat. Nastavi hitrost zaporednih vrat. Nastavi zaustavitvene bite zaporednih vrat. Nastavi dolžino besed zaporednih vrat. Nastavi zaporedno enoto. Nastavi odtise za zagon iz NAPRAVE.

Tega programa ni priporočljivo zagnati neposredno. Ta se izvede preko ukaza grub-install. Nastavi geslo uporabnika (PBKDF2).  Nastavi uporabniško geslo (običajno besedilo). Nepriporočljivo in nevarno. Nastavi spremenljivko z vnosom uporabnika. Nastavi spremenljivke. Nastavljanje vrste razdelkov na 0x%x
 Zamakni parametre položajev ... Pokaži podrobnosti ACPI. Pokaži podrobnosti APM. Prikaži sporočilo pomoči. Prikaži dolg seznam s podrobnejšimi podatki. Pokaže vsebino DATOTEKE v šestnajstiškem zapisu. Pokaži naložene module. Pokaži vsebino pomnilnika. Pokaži surovo vsebino odseka ATA IDENTIFY. Pokaži surovo vsebino datoteke ali pomnilnika. Pokaži vsebino datoteke. Pokaži trenutne preslikave. Pokaži to sporočilo. Pokaži le preglednice različice 1. Pokaži le preglednice različic 2 in 3. Izklop je spodletel Simulira ukaz `initrd' grub-legacy Simulira ukaz `kernel' grub-legacy Simulira ukaz `modulenounzip' grub-legacy Simulira ukaz `password' grub-legacy Simulira ukaz `password' grub-legacy v načinu vnosa menijev Preskoči N bajtov iz izhodne datoteke. Preskoči bajte odmika na začetku datoteke. Mesto %d je odprto
 Najdenih je nekaj stvari Hurd, vendar ne dovolj za zagon. Navedite ime datoteke. Navedite razpršilo za uporabo. Navedite eno ali več datotek pisav za nalaganje. Določi število vhodnih datotek. Zaženi GDB na danih vratih Zaustavi nastavek GDB Shramba se ujema s sestavnim delom ŠTEVILO v IMENU_SPREMENLJIVKE Uspešno zaključeno nedelja Prepreči običajen izpis (opozorila ostanejo). Napaka skladnje v vrstici %u
 V ustvarjeni nastavitveni datoteki GRUB so zaznane napake
 skladnje. Prepričajte se, da v datotekah /etc/default/grub in
/etc/grub.d/* ni napak ali pa pošljite poročilo o hrošču s pripeto
datoteko %s. Prostor V/I nadzornika upravljanja vodila je na 0x%x
 CILJ Ciljna oblika ni določena (uporabite možnost -O). Terminal ima določeno geometrijo. Terminal je le ASCII [privzeto]. Terminal je logično urejen UTF-8. Terminal je vidno urejen UTF-8. Preizkusi podporo za USB. Preizkusi bit na BAJT:BIT v CMOS. Preizkusi, ali je REGEXP skladen z NIZEM. Preizkusi video podsistem v načinu WxH. Preizkusi video podsistem. Le besedilo Datoteki sta enaki.
 Osvetljen vnos bo v %ds samodejno izvršen. Ta vnos lahko zažene katerikoli uporabnik. četrtek Orodje za urajanje bloka okolja. Celotna velikost bliskovnega pogona: %d B.
 Sledeča povratna poševnica Pretvori 64-bitni UUID v zapis, primeren za XNU. Če je -l podan, ga obdrži v pisavi malih črk, kot bi to storil blkid. Preoblikuj sistemski datotečni sistem v datotečni sistem GRUB. Prevede niz s trenutnimi nastavitvami. torek UPORABNIŠKO GESLO USER PBKDF2_PASSWORD UPORABNIŠKO_IME[,UPORABNIŠKO_IME] UTF-8 Napaka med ustvarjanjem cevi: %s Ni mogoče določiti vašega okolja. Uporabiti je treba argument --target. Ni mogoča razvejitev: %s Pretoka iz %s ni mogoče odpreti: %s Ni mogoče pridobiti stanja zaloge vrednosti Razširi podatke. Razširi datoteko pred izračunom nadzorne vsote. Neznana vrsta naslova %d
 Neznan ukaz `%s'.
 Neznana vrsta stiskanja %s Neznano kodiranje Neznan dodaten argument `%s'. Neznana zmožnost pisave gsub 0x%x (%s)
 Neznana koda pritiska tipke 0x%02x
 Neznano določilo preiskovanja tipkovnice %s
 Neznana sistemska napaka Neznan način videa Neznana vrsta navidezne naprave: %s
 Razloži posnemovalnik EFI. Neujemajoči ( ali \( Neujemajoči ) ali \) Neujemajoči [ ali [^ Neujemajoči \{ Nepoznana možnost `%s'\n Neprepoznano stanje zaloge vrednosti Nepodprta vrsta naslova %d
 Nepodprto določilo pokritosti: %d
 Nepodprta vrsta naslova strojne opreme %d
 Nepodprta vrsta odtisa Nepodprta zastavica zamenjave: 0x%x
 Nepodprto določilo zamenjave: %d
 Nepodprta vrsta zamenjave: %d
 Uporaba: Uporaba: %s -o OUTPUT CKBMAP_ARGUMENTI ...\n Uporaba: %s NAPRAVA
 Uporaba: %s [VHODNA DATOTEKA[IZHODNA DATOTEKA]]
 Uporaba: %s [MOŽNOST] VNOS_MENIJA\n Uporaba: %s [MOŽNOST]\n Uporabi nosilec CDROM s skrbniškimi dovoljenji. Uporabi GDB oddaljeni razhroščevalnik namesto DDB. Uporabi NIZ kot telo vnosa menija. Uporabi kodno prevedeno skrbniško napravo. Uporabi zaporedno konzolo. Uporabite tipki %C in %C za izbiro poudarjenega vnosa. SPREMENLJIVKA VMESNIK ŠTEVILO OPIS IME_SPREMENLJIVKE Odštevanje s podrobnim izpisom. Različica %u.%u
32-bitni CS = 0x%x, dolžina = 0x%x, odmik = 0x%x
16-bitni CS = 0x%x, dolžina = 0x%x
DS = 0x%x, dolžina = 0x%x
 Navidezna naprava je degradirana Navidezna naprava je pokvarjena Navidezna naprava ni povezana Navidezna naprava je povezana Navidezna naprava je odstranjena OPOZORILO: na bolje ne bo nobena konzola OPOZORILO: za okolje določena namestitev ni izvedena OPOZORILO: nepodprti parametri zmožnosti pisave: %x
 ŠIRINAxVIŠINA. Počakajte navedeno število sekund. Čakaj na pritisk tipke po vsaki vrstici izhoda. Opozorilo: Opozorilo: neveljavna barva ozadja `%s'
 Opozorilo: neveljavna barva ospredja `%s'
 Opozorilo: skladenjska napaka (manjkajoča poševnica) v `%s'
 sreda Windows NT/2000/XP (nalagalnik) Windows Vista/7 (nalagalnik) Zapiši 16-bitno VREDNOST na NASLOV. Zapiši 16-bitno VREDNOST na VRATA. Zapiši 32-bitno VREDNOST na NASLOV. Zapiši 32-bitno VREDNOST na VRATA. Zapiši 8-bitno VREDNOST na NASLOV. Zapiši 8-bitno VREDNOST na VRATA. Zapisani bajti SPD: %d B.
 Xen hipervizor, različica %s YUV  Navesti je treba vsaj en ukaz.
 Možnosti `SystemPartition' in `OSLoader' bo treba nastaviti ročno. Vaše področje vstavljanja je nenavadno majhno, zato datoteke core.img v določeno področje ne bo mogoče vstaviti. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] DATOTEKA [--md5] PASSWD [DATOTEKA] [--no-mem-option] [--type=VRSTA] DATOTEKA [ARG ...] [-1|-2] [--exclude=PREGLEDNICA1,PREGLEDNICA2|--load-only=PREGLEDNICA1,PREGLEDNICA2] DATOTEKA1 [DATOTEKA2] [...] [-c DATOTEKA [-p PREDPONA]] [DATOTEKA1 [DATOTEKA2 ...]] [-d] IME_NAPRAVE DATOTEKA . [-e|-n] NIZ [-f DATOTEKA] [-f DATOTEKA] ime_spremenljivke [...] [-f|-l|-u|-s|-n] [--hint NAMIG [--hint NAMIG] ...] IME [-h|-p|-r] [DATOTEKA] [-l] GRUBUUID [IME_SPREMENLJIVKE] [-l|-h|-a] [DATOTEKA ...] [-m (stretch|normal)] DATOTEKA [NASLOV|comUNIT][,HITROST] [ARG] [KARTICA [NASLOV_STROJNE_OPREME]] [KARTICA] [ENVVAR=VREDNOST] [OKOLJSPRE] [PRITISKTIPKE1] [[PRITISKTIPKE2] ... [ŠTEVILO:]IME_SPREMENLJIVKE [ŠTEVILO] [MOŽNOSTI ...] [MOŽNOSTI] [MOŽNOSTI] DISK [MOŽNOSTI] DATOTEKA_ALI_NAPRAVA [MOŽNOSTI] DATOTEKE_PISAVE [MOŽNOST] ... [MODULI] [MOŽNOST] ...[POT|NAPRAVA] [MOŽNOSTI] [POT] [VZOREC ...] [SEZNAMUPORABNIKOV] [VREDNOST] ... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] IZRAZ [VRSTA]] [[leto-]mesec-dan] [ura:minuta[:sekunda]] [vodilo]:[mesto][.funk] [ponudnik]:[naprava] ukaz `cryptomount' je spodletel: %s ukaz `loopback' je spodletel: %s vrednost je bila dodeljena argumentu `%s', čeprav ne zahteva argumenta dostop je zavrnjen dodaj odsek NOTE za CHRP IEEE1275 naslov naslova ni mogoče najti poskus branja ali pisanja zunaj diska `%s' poskus branja ali pisanje izven razdelka poskus branja preko konca datoteke poskus iskanja izven datoteke izvaja se poskus branja odtisa jedra `%s 'iz nalagalnika GRUB ponovno se izvaja poskus branja odtisa jedra `%s 'iz nalagalnika GRUB razpoložljivi RAM razpoložljive vrste: base_addr = 0x%llx, dolžina = 0x%llx, %s
 base_addr = 0x%llx, dolžina = 0x%llx, vrsta = 0x%x
 datoteka bitne slike `%s' je nepodprte vrste blocklist DATOTEKA seznami blokiranja so neveljavni velikost blokov ni deljiva s 512 ni mogoče zlomiti 0 zank datotečnega sistema na %s ni mogoče določiti ni mogoče najti ukaza `%s' šifriranega nosilca `%s' ni mogoče priklopiti: %s ni mogoče odpreti `%s': %s ni mogoče odpreti datoteke %s, kazalo %d: napaka %d seznamov blokiranja ni mogoče pridobiti: %s ni mogoče stisniti odtisa jedra ni mogoče najti pogona GRUB za %s. Preverite datoteko device.map. ni mogoče najti naprave za %s (Ali je /dev priklopljen?) ni mogoče dobiti ukazne vrstice prevajalnika za pot `%s': %s Ni mogoče odpreti datoteke OS `%s': %s ni mogoče odpreti `%s': %s `%s' ni mogoče pravilno prebrati ni mogoče prebrati `%s': %s datoteke %s ni mogoče preimenovati v %s izvorne mape ni mogoče obnoviti ni mogoče iskati `%s': %s. ni mogoče stat `%s': %s ni mogoče zapisati za CD-ROM ni mogoče pisati v `%s': %s. Ni mogoče pisati v stdout: %s kartice ni mogoče najti cat DATOTEKA preverjanje potrditvene vsote je spodletelo cmp DATOTEKA KRAJEVNO comUNIT[,HITROST] spodletela primerjava pri odmiku %llu Povezava je zavrnjena Povezava je zakasnela pretvori v krepko pisavo osnovni odtis je prevelik (0x%x > 0x%x) neujemanje različice core.img ni mogoče samodejno nastaviti %s ni mogoče najti zahtevane naprave člana datotečnega sistema več naprav. stranke geli ni mogoče najti ni mogoče najti razreda geom `part' ni mogoče odpreti geom ni mogoče prebrati metapodatkov ELI UUID ni mogoče pridobiti ni mogoče pridobiti UUID geli naključnih podatkov za sol ni mogoče pridobiti ni mogoče poslati omrežnega paketa cp DATOTEKA KRAJEVNO crc DATOTEKA napaka šifriranja številka %d cygwin_conv_path() je spodletel izbriši preslikavo naprave, če že obstaja cilj je nedosegljiv število naprav presega omejitev onemogoči glajenje diska `%s' ni mogoče najti disk ne obstaja, zato bo uporabljena naprava razdelka %s diskovni modul za uporabo (biosdisk ali lastni). Ta možnost je na voljo le na cilju BIOS. velikost diskboot.img mora biti %u bajtov ne zaznaj datotečnih sistemov na NAPRAVI sestavni del imena domene je predolg ne posodobi stanja LED končano vstavi DATOTEKO kot zgodnjo nastavitveno datoteko vstavljanje ni mogoče, to pa je zahtevano za namestitev RAID in LVM vstavljanje ni mogoče, to pa je zahtevano za namestitev preko diska vnesite: boot, `e': možnosti, `c': ukazna vrstica blok okolja je premajhen napaka: %s.
 pričakuj odtise GRUB v mapi MAPA/%s namesto v mapi %s napaka branja odseka 0x%llx od `%s' napaka branja gesla napaka pisanja odseka 0x%llx na `%s' napak okvarjen RAM (BadRAM) datoteke`%s' ni bilo mogoče najti pričakovano je ime datoteke pričakovano je ime datoteke oziroma tempo in note datotečni sistem `%s' ne podpira oznak datotečni sistem `%s' ne podpira seznamov blokiranja odtis strojne programske opreme je prevelik vsili samodejno glajenje pričakovani so štirje argumenti fwstart.img se ne ujema z znano dobro različico. Nadaljujete na lastno odgovornost. ustvari odtis v VRSTI izpiši kratko sporočilo o uporabi pridobi ta seznam pomoči dani argument je sistemska naprava, ne pot grub-mkimage je kodno preveden brez podpore XZ grub > odloži za SECS sekund (privzeto 3600) hex DATOTEKA prezri črke bitne slike med nalaganjem nepravilno določilo mer terminala namesti odtise GRUB v mapi MAPA/%s namesto v mapi %s namesti tudi, kadar so zaznane težave. neveljavno geslo PBKDF2 neveljaven okoljsko odvisen ELF magic neveljavna od arhitekture neodvisna čarovnija ELF neveljavno določilo barve `%s' neveljaven blok okolja neveljavno ime datoteke `%s' Neveljaven obseg pisav neveljavna oblika vrstice: %s neveljaven parameter %s neveljavna vrednost preskoka %lld neveljavno ime spremenljivke `%s' Neveljavno določilo načina videa `%s' napaka ioctl GET_ARRAY_INFO: %s napaka ioctl GET_DISK_INFO: %s napaka ioctl RAID_VERSION: %s Pokaži omrežne naslove Pokaži omrežne kartice Pokaži omrežne poti ls POT Datoteka lzop je bila pokvarjena naredi pogon zagonljiv tudi kot disketo (privzeto za naprave fdX). Na nekaterih sistemih BIOS se lahko okvari. manjka simbol `%c' Manjka obvezna možnost za `%s' modul `%s' ni naložen modul ni naložen ime potrebuje odtis in točko priklopa Sistema APM ni mogoče najti podatkov DHCP ni mogoče najti možnosti DHCP %d ni mogoče najti možnosti DHCP ni mogoče najti zapisa DNS ni mogoče najti odgovor DNS ni prejet ni nastavljenega strežnika DNS brez `/' v kanoničnem imenu datoteke ukaz ni določen ključ odšifiranja ni na voljo ni določenega strežnika ni takšnega razdelka ni mogoče najti ustreznega video modula ni preglednice simbolov ni navedenega terminala brez zaključnega bita v odtisu jedra v datoteki jedra so bili najdeni podatki, ki niso poravnani z odsekom ni mapa ni osnovni razdelek ni običajna datoteka ni v telesu funkcije pričakovan je en argument drugi programi že uporabljajo vstavljeno področje, zato ni dovolj prostora za core.img. Taki programi pogosto poskušajo shraniti programe na način, ki se izogiba zaznavanju. Priporočamo vam, da to raziščete. primanjkuje pomnilnika shrani ustvarjen odtis v DATOTEKO[privzeto=stdout] določena mora biti izhodna datoteka izhod je ustvaril nastavitev v DATOTEKI [privzeto=stdout] zaznana je prekoračitev gesli se ne ujemata izvedi samostojno nastavite bootp fizičnega nosilca %s ni bilo mogoče najti. predhodno naloži določene module MODULE predčasen konec datoteke predčasen konec datoteke %s pritisnite tipko CapsLock pritisnite tipko Insert pritisnite tipko NumLock pritisnite tipko ScrollLock pritisnite tipko SysRq pritisnite levo tipko Alt pritisnite levo tipko Ctrl pritisnite levo tipko Shift pritisnite desno tipko Alt pritisnite desno tipko Ctrl pritisnite desno tipko Shift izpiši različico programa izpiši podatke o različici in končaj izpiši to sporočilo in končaj izpiši podrobna sporočila. napaka branja na odmiku %llu:%s relativna podmapa na omrežnem strežniku selitev 0x%x še ni podprta rezerviran RAM pridobi možnost DHCP in jo shrani v SPREMENLJIVKO. Če SPREMENLJIVKA obstaja, izpiši vrednost. korenska mapa strežnika TFTP zaznana je bila zanka poti shrani odtise ROM v MAPI [izbirno] shrani izhod v DATOTEKO [zahtevano] izbor kazala sloga pisave zaporednih vrat `%s' ni mogoče najti set [IME=VREDNOST ...] zakleni način zaklepa velikih črk nastavi zviševanje pisave nastavi zniževanje pisave nastavi ime družine pisave nastavi obseg pisave nastavi velikost pisave nastavi vhodno ime datoteke. Privzeto je STDIN nastavi način vstavljanja nastavi način zaklepa številčnice nastavi izhodno ime datoteke. Privzeto je STDOUT nastavi način premora določitev mape predpon [privzeta=%s] nastavi način zaklepa drsenja nastavi ime programa velikost razteg|običajno simbola `%s' ni bilo mogoče najti začasno terminala %s ni mogoče najti ali pa ga ne upravlja terminfo terminala `%s' ni mogoče najti Argument `%s' zahteva celo število vnos `%s' v datoteki device.map je neveljaven, zato bo prezrt. Pred nadaljevanjem je treba popraviti ali izbrisati to datoteko. ime pogona `%s' v datoteki device.map je nepravilno. Namesto tega bo uporabljen %s. Uporabite obliko [hfc]d[0-9]* (Npr. `hd0' or `cd') prvi sektor datoteke jedra ni poravnan z odseki. namestitvena naprava je odstranljiva. Ta možnost je na voljo le na sistemih EFI. vrsta razdelka 0x%x ni veljavna odseki jedra so preveč razdrobljeni velikost `%s' ni %u velikost `%s' je prevelika velikost `%s' je premajhna ta datoteka ELF ni prave vrste ta razdelek GPT ne vsebuje zagonskega razdelka BIOS. Vstavljanje ne bo mogoče. ta LDM nima vstavljenega razdelka, vstavljanje ne bo mogoče ta oznaka razdelka v slogu msdos nima oznake za MBR, zato vstavljanje ne bo mogoče. pričakovani so trije argumenti zakasnitev med odpiranjem `%s' zakasnitev med branjem `%s' zakasnitev: ni mogoče razrešiti naslova strojne opreme pregloboko gnezdenje simbolnih povezav prevajalnik `%s' za pot `%s' ima več besed, ki niso možnosti, vsaj `%s' in `%s' prevajalniku `%s' za pot `%s' so podane le možnosti in ni mogoče najti dela naprave ukazna vrstica prevajalnika je prazna za pot `%s' pričakovana sta dva argumenta vrsta ni mogoče določiti datotečnega sistema %s; varnostnega preverjanja ni mogoče izvesti neporavnana velikost naprave nepričakovan konec datoteke neznan argument `%s' Neznano stiskanje %d
 neznana vrsta naprave %s
 neznani datotečni sistem neznana vrsta naprave RAID `%s' neznana napaka logičnega izraza neznana vrsta cilja %s
 neznana vrsta terminfo `%s' neprepoznana možnost DHCP določila oblike `%s' neprepoznan omrežni naslov `%s' neprepoznani omrežni vmesnik `%s' neprepoznano število nerazrešljiv naslov %s unset [IME ...] nepodprta napaka HTTP %d: %s nepodprt odziv HTTP nepodprta različica RAID: %d.%d nepodprta oblika gzip nepodprta parnost zaporednih vrat nepodprta hitrost zaporednih vrat nepodprto število zaustavitvenih bitov zaporednih vrat nepodprta dolžina besede zaporednih vrat uporabi MAPO kot korensko mapo razdelka sistema EFI. Uporabi DATOTEKO kot zagonski odtis [privzeto=%s] Uporabi DATOTEKO kot odtis jedra [privzeto=%s] uporabi DATOTEKO kot preslikavo naprave [privzeto=%s] uporabi DATOTEKO kot xorriso [izbirno] uporabi datoteke GRUB v mapi DIR [privzeto=%s] uporabi datoteko določila tudi, če je UUID na voljo uporabi odtise in module v MAPI [privzeto=%s/<okolje>] spremenljivka `%s' ni nastavljena vidno urejen UTF-8 počakaj dokler se ne pripne razhroščevalnik ne bo nadaljevanja s seznami blokov napačna čarovnija ali različica ELI xnu_uuid NAPRAVA datoteka xz je pokvarjena ali pa so možnosti bloka nepodprte tega naslova ni mogoče izbrisati najprej je treba naložiti jedro vaš zagonski razdelek BIOS je premajhen. Vstavljanje ne bo mogoče. vaša datoteka core.img je nenavadno velika in je ne bo mogoče vstaviti v določeno področje. vaše področje vstavljanja je neobičajno majhno, zato datoteke core.img v določeno področje ne bo mogoče vstaviti.                                                                                                                       boot/grub/locale/sv.mo                                                                              0000600 0001750 0001750 00000106613 13417732100 0013661 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                                      p)  #   q)      )     )     )     )     )     *     *  .   &*  .   U*  %   *     *     *    *  +   +     +      +      ,  !   2,     T,  ,   q,     ,     ,  $   ,     ,  *   -     7-     ?-     O-     g-  
   -  	   -     -  '   -      -  (   .  (   *.  )   S.     }.     .     .     .     .  "   .     .     /  7   /     L/     U/     W/     \/     h/     z/     /  3   /     /     /     /      0     0      0     70     L0  -   d0  !   0  #   0     0     `1     {1     1     1     1     1     1     1     2     2     12     G2     L2     R2     a2     u2     2     2     2     2     2  	   2  #   2     3     73     J3     j3     3     3     3     3     3  !   3     4     4     !4  	   >4     H4     ]4     o4     4     4     4     4  
   4     4     4     5     5     ;5     R5     j5     5     5     5     5     5     6  '   06     X6     q6     6  
   6     6     6     6     6     	7  "   7     ?7     P7     a7     y7     7     7     7     7     7     7     7     7     7     
8     8     &8     D8     W8     m8     ~8     8     8     8     8  #   8     9     39     K9     ]9     d9     y9     9     9  P   9     :  	   :     (:     +:     J:     [:     w:     :     :     :     :     :     :     ;     ;     1;     ?;  !   S;  "   u;     ;     ;     ;  !   ;     <      <     9<     E<      \<     }<     <     <     <     <     <     <     =     0=  *   J=     u=     =     =     =     =  $   =     >     >     (>     =>     P>      l>     >     >     >     >     >  !   >     ?     &?     >?     O?     b?     x?     !@     (@     4@     R@  
   i@     t@     @     @     @     @     @     @     @     @     A     1A     NA     WA      nA     A     A     A     A     A     A     A  	   A     A     B  q   $B     B     B     B     B     B     C     C     :C     VC     pC     C     C     C     C     C     C     C  "   D     6D     ND  	   gD     qD     vD     D     D     D     D     D  )   D     E      E     =E     YE     tE      E     E     E     E     E     F     "F  0   7F     hF     }F     F     F     F  '   F     F     F     G     G     &G  
   8G     CG  <   ]G     G     G     G     G     G     G  0   G     H     1H     JH     aH     H     H     H     H     H     H     H     I     $I     DI     YI  '   mI     I     I  '   I  -   I     J  '   J  '   >J  .   fJ  	   J     J     J     J     J     K     &K  *   +K  B   VK  /   K     K     K  )   K     L     4L  	   CL     ML     kL     }L     L     L  	   L     L     L     L     L     M     M  
   M  	   (M     2M  !   8M  )   ZM     M     M     M     M  0   M  6   M     #N     1N     DN     SN  %   kN     N  &   N      N     N     O     O     2O     RO     iO     O     O     O     O     O     O     O     O     P  "   $P     GP     LP     XP     qP     P     P     P  +   P     P      Q  %   	Q     /Q     GQ     ^Q     vQ     Q     Q     Q     Q     Q     Q     R     R     R     ;R     HR     bR     zR     R     R     R     R  1   R     S     +S     CS     VS     dS     S     S     S     S     S     S      T     T     !T     0T     @T     QT     aT     rT     T  &   T     T     T     T     U     U     4U     IU  	   NU     XU  %   rU  7   U  /   U      V     V     9V     WV     nV  F   sV     V     V     V      W     W     $W  '   <W     dW     |W     W  !   W  j  W  #   7Y  *   [Y     Y     Y      Y  	   Y     Y     Z  2   Z  1   BZ  $   tZ     Z     Z    Z  (   [     [  '   \     +\  (   <\     e\  3   \     \     \  +   \     ]  2   (]     []     c]     p]  $   ]     ]  	   ]     ]  (   ]  !   ^  )   )^  )   S^  *   }^     ^     ^     ^     ^     ^     _     _     '_  7   6_     n_     v_     x_     |_     _     _     _  :   _     _     _     `     6`     E`     ^`     }`     `  /   `  *   `  )   a     :a  #   a  #   a     b     b     b     ;b  '   Zb  '   b     b     b     b     b     b     b     c     c     9c     Nc     gc     c     c  
   c  $   c     c     c  )   d     <d  $   Sd     xd     d     d     d     d  
   d     d     e  	   e     &e     =e     Ue     qe     e     e     e  	   e     e     e  '   e      !f     Bf     Vf  !   hf     f  "   f     f  $   f     g     $g  /   @g     pg      g     g     g  	   g  "   g      h     h     .h  "   Fh     ih     zh     h     h     h     h     h     h     h     i  	   i     i     )i     >i     Ei  #   ^i     i     i     i     i     i     i     	j      j  '   @j  !   hj     j     j     j     j     j     j  '   k  \   .k     k  	   k     k  -   k     k     k     l     l     3l     Hl     ]l     ol     l     l     l     l     l  (   l  (   m     Am     [m  !   tm  &   m      m      m     m     n  %   +n     Qn     qn     n     n     n     n     n      o  #   5o  *   Yo     o     o     o     o     o  (   	p     2p     Ep     \p     sp     p  $   p  !   p     p      q     q  $   q  !   3q     Uq     jq     q     q     q     q     r     r     r     r     r     r     s     ,s     1s     @s     Ts     ms     s     s     s     s     s     s  )   t     Et     Nt     bt     kt     pt     t     t     t     t     t  ~   t     pu     u     u     u     u     u  +   u  (   #v     Lv     hv     v     v     v     v     v     v  ]   w  l   `w     w  #   w     x     x     x     3x     ;x     Cx     Wx     vx  -   x     x  "   x  #   x  %   y  &   =y  %   dy     y  '   y     y     y     y     
z  3   %z     Yz     pz     z     z     z  0   z     z     {     {     #{     ({     9{     E{  ?   ]{     {     {     {     {     {     {  7   {     5|     R|     g|     ~|     |     |     |     |     |     
}     }      .}  #   O}     s}     }  1   }     }     }  "   }  5   ~     T~  %   ]~  &   ~  .   ~     ~     ~     ~  !         =     ^     y  #   ~  U     /        (     <  &   T     {                    ŀ     ր            	                  1     G  
   d     o     ~  	                )                  
       2   %  7   X                    Ƃ  ,          *   *  %   U     {            '   ȃ            $   *     O     W     e     z                    Ą  .   ބ       	     &         G     `     v  "     /               $             6     L     c     x                    Ն                 *        H     [     z               ɇ     ܇  %     6        P     `     z                 "   Έ                +     B     Z     u                         Ή            (     %   4  !   Z     |                    ؊  	   ݊       "     4   (  1   ]             !   Ћ            T        g     |                    ˌ  1     !        9      H  !   i     Q   u                                     f                =     B                    0   T           U      M        7   5   x     	                  _   g                                     ]       2     p            
               y             "                |  u                           r  -                      a  p      R                ?                            y               4  i    N      a   f          Q              o   A      J     <          Y      g   8           \  (                   E   c   w      d                      2      )  [     m                             D    r   %                             P   ^                                           {                t  }                     4          :           O                          |      >         b   V     %  c  W         ^                        O          H                            i     t       I                             X           6        +  Z                   +     K                 N    !    3      /          C  .  s                         X   d                      #           (  ?             ~         1   `   #      C     G  Y          $   [          _        l  e     6           $        &             
  q     L  I        x                              8      1                              \      M                     >           v     @       H         -                 q       j     {        E         w  @      o  9               7  '     k  h                                          )   V            /  0               s        h           Z                         ;              e                  D       :               K          '  A     	   =        B                    k   9  .   }         n                    *              T                 ,       v  <       S       j   ,     n       l                 "  F        3     5      R          m      L   ]                              F  *     !                  z                W  U  `  J                 P             ;      G     S          ~            &      z                              b                        total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID version: %u.%u
   No info available   or:   - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: option '--%s' requires an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- > ADDR ADDR [SIZE] ADDRESS DNSSERVER APM disabled
 APM enabled
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Ask for file name to reboot from. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Available input terminals: Available output terminals: BLOCK BYTE:BIT Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode CGA  COLOR COMMAND [ARGS] CS5536 at %d:%d.%d
 Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Clear the screen. Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute or check hash checksum. Configure serial port. Copy FILE to local file LOCAL. Copy FILE to standard output. Couldn't load sha256 Couldn't load sha512 DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete variables. Determine driver. Determine filesystem type. Device %s: Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Display FPSWA version. Display a line of text. Display output on all consoles. Display this help and exit. Display/set current datetime. Do not print messages. Do not probe any floppy drive. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't reboot, just halt. Don't stop after first error. ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d seconds 
 Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Evaluate an expression. Exit failed Exit from GRUB. Exit from normal mode. FILE FILE [ARG ...] FILE [ARGS...] FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FORMAT Falling back to `%s' Filesystem cannot be accessed Filesystem type %s Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Friday GNU GRUB  version %s GRUB Boot Menu Garbage in ARGP_HELP_FMT: %s Generate a grub config file Halts the computer.  This command does not work on all firmware implementations. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT Insert a module. Install GRUB on your drive. Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 List DNS servers List PCI devices. List all files. List devices and files. List devices or files. List devices. List files in PATH. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. Load 64-bit XNU image. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load XNU extension. Load XNU image. Load a PXE image. Load a keyboard layout. Load a splash image for XNU. Load another boot loader. Load another config file. Load background image for active terminal. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load the same file in multiple ways. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... MODULE MODULES Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manipulate PCI devices. Memory exhausted Memory type: DDR2. Memory type: Unknown. Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Monday Monochrome  More than one install device? Mount a crypto device. Mount all. Mount by UUID. Mount crypto devices. NAME NUMBER_OF_SECONDS Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No command is specified.
 No device is specified.
 No known filesystem detected No match No path is specified.
 No path or device is specified.
 Options: PARTITION COMMANDS PATH PORT PORT VALUE [MASK] Partition %d is active now. 
 Partition %s: Path: %s
 Path: unavailable Perform a DNS lookup Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Press any key to continue... Press any key to launch xnu Print Memory information. Print a block list. Reboot failed Reboot the computer. Reenter password:  Remove a DNS server Remove a module. Remove an environment variable. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Return from a function. Run `go' to resume GRUB. SHORTNAME SIZE SOURCE|-u UUID|-a|-b STRING Saturday Say `Hello World'. Search devices by a file. Set an environment variable. Set background color for active terminal. Set root device. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set user password (PBKDF2).  Set variables. Show ACPI information. Show APM information. Show a help message. Show a long list with more detailed information. Show loaded modules. Show the contents of a file. Show this message. Shutdown failed Specify filename. Specify one or more font files to load. Success Sunday Syntax error at line %u
 TARGET Test USB support. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. Thursday Tuesday USER PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown system error Unknown video mode  Unrecognized option `%s'\n Unsupported image format Usage: Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use serial console. WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to PORT. Write 8-bit VALUE to PORT. Xen hypervisor, version %s YUV  You need to specify at least one command.
 Your embedding area is unusually small.  core.img won't fit in it. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-h|-p|-r] [FILE] [-l|-h|-a] [FILE ...] [ARG] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [PATH] [PATTERN ...] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [vendor]:[device] access denied addr address not found attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: blocklist FILE can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d cannot compress the kernel image cannot open `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s cat FILE cmp FILE LOCAL connection refused couldn't open geom cp FILE LOCAL crc FILE cygwin_conv_path() failed disk `%s' not found diskboot.img size must be %u bytes done error: %s.
 failure to read password file `%s' not found filename expected generate an image in FORMAT give a short usage message grub-mkimage is compiled without XZ support grub> hex FILE install even if problems are detected invalid PBKDF2 password invalid file name `%s' invalid line format: %s invalid parameter %s invalid variable name `%s' list network addresses list network cards list network routes ls PATH module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DNS servers configured no command is specified no server is specified no such partition no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file out of memory output file must be specified overflow is detected passwords don't match physical volume %s not found press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. reserved RAM serial port `%s' isn't found set [NAME=VALUE ...] set the program name size temporary terminal `%s' isn't found the argument `%s' requires an integer the first sector of the core file is not sector-aligned the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unset [NAME ...] unsupported gzip format use FILE as the boot image [default=%s] variable `%s' isn't set xnu_uuid DEVICE you can't delete this address you need to load the kernel first Project-Id-Version: grub 2.0.0-pre4
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2012-04-02 20:47+0100
Last-Translator: Daniel Nylander <po@danielnylander.se>
Language-Team: Swedish <tp-sv@listor.tp-sv.se>
Language: sv
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8bit
               totalt minne: %d KiB
     Inget föredraget läge tillgängligt
     Föredraget läge: %ux%u
   EDID version: %u.%u
   Ingen information tillgänglig   eller:   - Total storlek är okänd  [FLAGGA...] %.*s: ARGP_HELP_FMT-parametern måste vara positiv %.*s: ARGP_HELP_FMT-parametern kräver ett värde %.*s: Okänd ARGP_HELP_FMT-parameter %ds %ds återstår. %s verkar innehålla ett %s filsystem som inte kan reservera plats för DOS-liknande uppstart. Installeras GRUB där kan det innebära att FILSYSTEMET FÖRSTÖRS om viktiga data skrivs över av grub-setup (flaggan --skip-fs-probe avaktivera denna kontroll, använd den på egen risk). %s stöds ännu inte av grub-mkconfig.\n %s, med Hurd %s %s, med Hurd %s (återställningsläge) %s, med Linux %s %s, med Linux %s (återställningsläge) %s, med Xen %s och Linux %s %s, med Xen %s och Linux %s (återställningsläge) %s, med Xen hypervisor %s, med kFreeBSD %s %s, med kFreeBSD %s (återställningsläge) %s, med kärnan %s (via %s) %s, med kärnan %s (via %s, återställningsläge) %s: OK
 %s: LÄSFEL
 %s: För många argument
 %s: Du måste köra detta som root\n %s: fel: %s: info: %s: ogiltig flagga -- "%c"
 %s: flaggan "--%s" kräver ett argument
 %s: flaggan "-W %s" är tvetydig
 %s: flaggan "-W %s" kräver ett argument
 %s: flaggan kräver ett argument -- "%c"
 %s: flaggan kräver ett argument -- "%s"\n %s: okänd flagga "%c%s"
 %s: okänd flagga "--%s"
 %s: varning: (32-bitars) (64-bitars) (PROGRAMFEL) Ingen version!? (på %s) - Etikett "%s" - Senaste ändringsdatum %d-%02d-%02d %02d.%02d.%02d %s --MER-- > ADR ADR [STORLEK] ADRESS DNSSERVER APM inaktiverad
 APM aktiverad
 ARGP_HELP_FMT: %s värdet är mindre än eller lika med %s ASCII Aktiva inmatningsterminaler: Aktiva utmatningsterminaler: Adapter "%s":
 Lägg till en DNS-server Lägg till en nätverksadress. Lägg till en nätverksrutt. Avancerade flaggor för %s Avancerade flaggor för %s (med Xen hypervisor) Fråga efter filnamn att starta upp från. Försöker att dekryptera huvudnyckeln... Försöker installera GRUB på en disk med flera partitionsetiketter eller både partitionsetikett och filsystem. Detta stöds ännu inte. Tillgängliga inmatningsterminaler: Tillgängliga utmatningsterminaler: BLOCK BYTE:BIT Starta upp ett operativsystem. Starta upp i enanvändarläge. Starta upp med felsökningsmeddelanden. Starta upp med informativa meddelanden. Startar upp "%s" Starta en kommandolista Startar upp i blindläge CGA  FÄRG KOMMANDO [ARG] CS5536 på %d:%d.%d
 Ändra konfigurerade enheter. Ändra partitionstyp Kontrollera Alt-tangent. Kontrollera Control-tangent. Kontrollera Shift-tangent. Töm skärmen. Kommandon: Jämför FIL med lokala filen LOKAL. Jämför filen "%s" med "%s":
 Jämför två filer. Beräkna eller kontrollera kontrollsumma. Konfigurera serieport. Kopiera FIL till lokala filen LOKAL. Kopiera FIL till standard ut. Kunde inte läsa in sha256 Kunde inte läsa in sha512 ENHET ENHET [PARTITION[+/-[TYP]]] ... ENHETSNAMN KAT KATALOG [OSBundleRequired] DNSSERVER Definiera en menypost. Definiera en undermeny. Ta bort en nätverksadress. Ta bort en nätverksrutt. Ta bort variabler. Fastställ drivrutin. Fastställ filsystemstyp. Enhet %s: Inaktivera ACPI. Inaktivera SMP. Inaktivera all utskrift under uppstart. Inaktivera/aktivera SMART (0/1). Visa FPSWA-version. Visa en rad text. Visa utskrift på alla konsoller. Visa denna hjälp och avsluta. Visa/ställ in aktuellt datum/tid. Skriv inte ut meddelanden. Leta inte efter någon diskettenhet. Gör ingenting, lyckas. Gör ingenting, misslyckas. Visa inte uppstartsmeddelanden för diagnostik. Starta inte om, stanna bara. Stoppa inte efter första felet. ESC när som helst avslutar. UTTRYCK UTTRYCK ] Förfluten tid: %d.%03d sekunder 
 Ange ZFS-lösenord:  Ange i KDB vid uppstart. Gå in i normalt läge. Ange lösenfras för %s%s%s (%s):  Ange lösenord:  Ange användarnamn:  Evaluera ett uttryck. Avslutning misslyckades Avsluta GRUB. Avsluta från normalt läge. FIL FIL [ARG ...] FIL [ARG...] FIL... FIL1 FIL2 FILNAMN KOMMANDO FILSYSTEM [VARIABEL] FORMAT Faller tillbaka på "%s" Filsystemet går inte att komma åt Filsystemstyp %s Hittade %s på %s (%s)\n Hittade %s på %s\n Hittade GNU Mach: %s Hittade Hurd module: %s Hittade NetBSD-kärna: %s\n Hittade bakgrund: %s\n Hittade initrd-avbildning: %s\n Hittade katalog för kärnmoduler: %s\n Hittade kärna för FreeBSD: %s\n Hittade linux-avbildning: %s\n Hittade tema: %s\n Fredag GNU GRUB  version %s GRUB uppstartsmeny Skräp i ARGP_HELP_FMT: %s Generera en konfigurationsfil för grub Stoppar datorn.  Detta kommando fungerar inte på alla implementationer av fast programvara. Hello World Hercules  ID AVBILDNING1 [AVBILDNING2 ...] MONTERINGSPUNKT Infoga en modul. Installera GRUB på din enhet. Ogiltigt kommando %s.
 Ogiltigt innehåll i \{\} Ogiltig enhet "%s".
 Ogiltigt diskantal.
 Lista DNS-servrar Lista PCI-enheter. Lista alla filer. Lista enheter och filer. Lista enheter eller filer. Lista enheter. Lista filer i SÖKVÄG. Lista eller välj en inmatningsterminal. Lista eller välj en utmatningsterminal. Lista aktuella variabler. Lista inlästa typsnitt. Läs in 64-bitars XNU-avbildning. Läs in kärnmodul för FreeBSD (ELF). Läs in kärnmodul för FreeBSD. Läs in kernel.sys för FreeDOS. Läs in Linux. Läs in NTLDR eller BootMGR. Läs in kärnmodul för NetBSD (ELF). Läs in kärnmodul för NetBSD. Läs in kärna för Plan9. Läs in XNU-utökning. Läs in XNU-avbildning. Läs in en PXE-avbildning. Läs in en tangentbordslayout. Läs in en startbild för XNU. Läs in en annan starthanterare. Läs in en annan konfigurationsfil. Läs in bakgrundsbild för aktiv terminal. Läs in initrd. Läs in ramdisk för kOpenBSD. Läs in kärna för FreeBSD. Läs in kärna för NetBSD. Läs in kärna för OpenBSD. Läs in samma fil på flera olika sätt. Inlästa typsnitt: Läser in GNU Mach ... Läser in Linux %s ... Läser in Xen %s ... Läser in initial ramdisk ... Läser in kärna för FreeBSD %s ... Läser in kärna för Illumos ... Läser in Hurd ... MODUL MODULER Gör en startbar avbildning av GRUB. Gör en virtuell enhet av en fil. Gör partition aktiv Manipulera PCI-enheter. Slut på minne Minnestyp: DDR2. Minnestyp: Okänt. Minimal Bash-liknande radeditering stöds. För det första ordet kan tabulator-tangenteten användas för att visa kompletteringsalternativ. I övriga fall visa tabulator-tangenten möjliga enheter eller filnamn för komplettering. %s Måndag Monokrom Fler än en installationsenhet? Montera en krypterad enhet. Montera alla. Montera efter UUID. Montera krypterade enheter. NAMN ANTAL_SEKUNDER Nätverksprotokoll: Ny MBR skrivs till "%s"
 Ingen CS5536 hittades Ingen FPSWA hittades Inget kommando har angivits.
 Ingen enhet har angivits.
 Inget känt filsystem hittades Ingen träff Ingen sökväg har angivits.
 Ingen sökväg eller enhet har angivits.
 Flaggor: PARTITIONSKOMMANDON SÖKVÄG PORT PORTVÄRDE [MASK] Partition %d är aktiv nu. 
 Partition %s: Sökväg: %s
 Sökväg: inte tillgänglig Genomför ett DNS-uppslag Använd inte gamla titeln "%s" för GRUB_DEFAULT, använd "%s" (för versioner före 2.00) eller "%s" (för 2.00 eller senare) Möjliga argument är: Möjliga kommandon är: Möjliga enheter är: Möjliga filer är: Möjliga partitioner är: Möjliga saker är: Tryck på en tangent för att fortsätta... Tryck på en tangent för att starta xnu Skriv ut minnesinformation. Skriv ut en blocklista. Omstart misslyckades Starta om datorn. Ange lösenordet igen:  Ta bort en DNS-server Ta bort en modul. Ta bort en miljövariabel. Rapportera fel till %s.
Skicka synpunkter på översättningen till <tp-sv@listor.tp-sv.se>.
 Rapportera fel till <bug-grub@gnu.org>.
Skicka synpunkter på översättningen till <tp-sv@listor.tp-sv.se>. Återgå från en funktion. Kör "go" för att återuppta GRUB. KORTNAMN STORLEK KÄLLA|-u UUID|-a|-b STRÄNG Lördag Säg "Hello World". Sök efter enheter med en fil. Ställ in en miljövariabel. Ställ in bakgrundsfärg för aktiv terminal. Ange rotenhet. Ställ in adress för serieporten. Ställ in paritet för serieporten. Ställ in hastighet för serieporten. Ställ in stoppbitar för serieporten. Ställ in ordlängd för serieporten. Ställ in serieenhet. Ställ in användarlösenord (PBKDF2).  Ställ in variabler. Visa ACPI-information. Visa APM-information. Visa ett hjälpmeddelande. Visa en lång lista med mer detaljerad information. Visa inlästa moduler. Visa innehållet av en fil. Visa detta meddelande. Avstängning misslyckades Ange filnamn. Ange en eller flera typsnittsfiler att läsa in. Lyckades Söndag Syntaxfel på rad %u
 MÅL Testa USB-stöd. Endast text Filerna är identiska.
 Markerat val kommer att startas upp automatiskt om %d sekunder. Torsdag Tisdag ANVÄNDARLÖSENORD ANVÄNDARNAMN[,ANVÄNDARNAMN] UTF-8 Kunde inte skapa rör: %s Kunde inte fastställa din plattform. Använd --target. Kunde inte grena process: %s Okänd adresstyp %d
 Okänt kommando "%s".
 Okänt komprimeringsformat %s Okänd teckenkodning Okänt systemfel Okänt grafikläge Okänd flagga "%s"\n Avbildningsformatet stöds inte Användning: Användning: %s ENHET
 Användning: %s [INFIL [UTFIL]]
 Användning: %s [FLAGGA] MENYPOST\n Användning: %s [FLAGGA]\n Använd CD-ROM som rot. Använd fjärrfelsökaren GDB istället för DDB. Använd seriekonsoll. BREDDxHÖJD. Vänta ett angivet antal sekunder. Vänta på tangenttryckning efter varje utskriftsrad. Varning: Varning: ogiltig bakgrundsfärg "%s"
 Varning: ogiltig förgrundsfärg "%s"
 Varning: syntaxfel (saknar snedstreck) i "%s"
 Onsdag Windows NT/2000/XP (inläsare) Windows Vista/7 (inläsare) Skriv 16-bitars VÄRDE till PORT. Skriv 8-bitars VÄRDE till PORT. Xen hypervisor, version %s YUV  Du måste ange minst ett kommando.
 Ditt utrymme för inbäddning är ovanligt litet. core.img kommer inte att få plats. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FIL [--md5] LÖSENORD [FIL] [-c FIL [-p PREFIX]] [FIL1 [FIL2 ...]] [-d] ENHETSNAMN FIL. [-e|-n] STRÄNG [-f FIL] [-f FIL] variabelnamn [...] [-h|-p|-r] [FIL] [-l|-h|-a] [FIL ...] [ARG] [FLAGGOR...] [FLAGGOR] [FLAGGOR] DISK [FLAGGOR] FIL_ELLER_ENHET [FLAGGA]... [MODULER] [FLAGGA]... [SÖKVÄG|ENHET] [SÖKVÄG] [MÖNSTER ...] [VÄRDE]... [BxH[xD]] [BxH] [[-a|-u|-v] [-g BxH] TERM [TYP]] [[år-]månad-dag] [timme:minut[:sekund]] [tillverkare]:[enhet] åtkomst nekas adr adressen hittades inte försöker läsa kärnavbildningen "%s" från GRUB försöker läsa kärnavbildningen "%s" från GRUB igen tillgängligt RAM tillgängliga format: blocklist FIL kan inte hitta kommandot "%s" kan inte montera krypterade volymen "%s": %s kan inte öppna "%s": %s kan inte öppna filen %s, index %d: fel %d kan inte komprimera kärnavbildningen kan inte öppna "%s": %s kan inte läsa "%s" korrekt kan inte läsa "%s": %s kan inte byta namn på filen %s till %s kan inte skriva till CD-ROM kan inte skriva till "%s": %s kan inte skriva till standard ut: %s cat FIL cmp FIL LOKAL anslutningen nekades kan inte öppna geom cp FIL LOKAL crc FIL cygwin_conv_path() misslyckades disken "%s" hittades inte storleken på diskboot.img måste vara %u byte färdigt fel: %s.
 misslyckades med att läsa lösenordet filen "%s" hittades inte filnamn förväntades generera en avbildning i FORMAT ge ett kort användningsmeddelande grub-mkimage har kompilerats utan stöd för XZ grub> hex FIL installera även om problem uppstår ogiltigt PBKDF2-lösenord ogiltigt filnamn "%s" ogiltigt radformat: %s ogiltig parameter %s ogiltigt variabelnamn "%s" lista nätverksadresser lista nätverkskort lista nätverksrutter ls SÖKVÄG modulen "%s" är inte inläst modulen är inte inläst namn behöver en avbildning och monteringspunkt ingen APM hittades inga DNS-servrar konfigurerade inget kommandot angivet ingen server har angivits ingen sådan partition finns ingen symboltabell ingen terminal angiven ingen terminering i kärnavbildningen data som inte är sektorjusterad hittades i kärnfilen inte en katalog inte en primär partition inte en vanlig fil slut på minne utmatningsfil måste anges stackspill upptäcktes lösenorden stämmer inte överens fysiska volymen %s hittades inte tryck CapsLock-tangenten tryck Insert-tangenten tryck NumLock-tangenten tryck ScrollLock-tangenten tryck SysRq tryck vänster alt tryck vänster ctrl tryck vänster shift tryck höger alt tryck höger ctrl tryck höger shift skriv ut programversion skriv ut versionsinformation och avsluta skriv ut detta meddelande och avsluta skriv ut informativa meddelanden. reserverat RAM serieporten "%s" hittades inte set [NAMN=VÄRDE ...] ställ in programnamnet stor temporär terminalen "%s" hittades inte argumentet "%s" kräver ett heltal första sektorn i kärnfilen är inte sektorjusterad sektorerna för kärnfilen är för fragmenterade storleken för "%s" är inte %u storleken på "%s" är för stor storleken på "%s" är för liten två argument förväntades typ kunde inte identifiera ett filsystem på %s; säkerhetskontroll kan inte genomföras okänt argument "%s" okänd komprimering %d
 okänd enhetstyp %s
 okänt filsystem unset [NAMN ...] gzip-formatet stöds inte använd FIL som uppstartsavbildning [standard=%s] variabeln "%s" är inte inställd xnu_uuid ENHET du kan inte ta bort denna adress du måste läsa in kärnan först                                                                                                                      boot/grub/locale/tr.mo                                                                              0000600 0001750 0001750 00000145202 13417732100 0013653 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                       R         <%      1  #   1     1     1  6    2     72     >2     ^2     v2     2  .   2  .   2  %   2     3     !3    03    54      =5     ^5  !   p5     5  ,   5     5  $   5     6  *   26     ]6     e6     u6  
   6  	   6     6  ,   6  ,   6  '   7  -   @7      n7  (   7  (   7  )   7     8     +8     K8     X8     a8  "   j8  4   8  7   8  1   8     ,9     K9  %   N9  '   t9  %   9  '   9     9     9     :     :     :     8:     F:  3   S:     :  $   :     :     :     :     :     ;  -   #;  !   Q;     s;  Z   ;     V<     q<     <     <     <     <     <     <     <     <     =     5=     L=  %   R=     x=     =     =     =     =     =     >     >     *>     E>  	   W>  #   a>     >     >     >     >     >     >     ?     0?  &   E?     l?  !   s?  ,   ?     ?     ?     ?  !   ?     @     #@     =@     O@     a@     |@     @     @  
   @     @     @     @     A  >   ,A  $   kA     A     A     A     A  +   A     #B     ?B  #   ]B     B     B  $   B     B     B  '   C  9   :C     tC     C     C     C     C  
   C     C     C  +   D     D     D     D     D     E  (   E     FE     ^E     jE     zE     E     E     E     E  7   E     E     F     F     $F     8F  2   NF     F  6   F  +   F     F     G     $G  !   G  H   H     `H     sH     H     H     H  #   H     H     I  )   !I     KI     RI     gI     I     I     I     I     I     I     I  '   I  P   J     ^J     }J     J     J  )   J     J     J     K     (K     =K     UK     kK     K  "   K     K     K     K     K     K  O   K     KL     cL     zL     L  %   L     L  !   L  "   M     &M     BM  +   YM     M     M     M  !   M     M     M     N      N     @N     [N     yN     N     N     N     N     N     O      O     9O  !   VO     xO  2   O     O  *   O  8   
P     CP     PP     hP     P  3   P  $   P  +   P     Q     *Q     ?Q     TQ     gQ      Q     Q     Q     Q     Q  s   Q     lR     R     R     R     R     R     R     qS     *T     1T     6T     NT     `T     sT     T     T     T     T  #   T     U     "U     +U  "   JU     mU     vU     U     U  "   U  #   U     U  	   U     U  )   V     >V     BV     HV  q   UV     V     V     V     W      W     9W     NW  g   kW     W     XX     rX  !   X  "   X  '   X     X     Y     Y     /Y     =Y     RY     eY     Y     Y     Y  -   Y  )   Y     Z     3Z     KZ     dZ     iZ     nZ     uZ  &   ~Z  )   Z  ^   Z     .[  $   H[  %   m[  ^   [  _   [  >   R\  D   \  !   \  '   \  -    ]     N]  )   n]     ]  )   ]  ,   ]     ^     ,^     E^     `^     {^  E   ^  $   ^     ^     _     0_     K_      j_     _  q   _     `  :   /`     j`     `     `     `     `     `  0   `     'a     <a  &   Ra     ya     a     a     a     a  -   a     !b     3b  '   Hb     pb     |b     b     b     b  0   b  !   b  "   c  #   %c     Ic     [c  !   zc     c     c  <   c     	d     d     d     d  0   <d  6   md     d     d     d     d     d     d  $   d     e     8e     Oe     de      xe     e     e     e     e     e     f     &f  '   ;f     cf  <   wf     f     f  m   f  1   =g     og  '   }g  -   g     g  '   g  '   h  .   ,h  	   [h     eh     h     h  *   h  B   h  /   #i     Si  .   ii  )   i     i  	   i     i  5   i     /j     Aj     Wj     rj     j     j     j     j     j     j  	   j     j     j     j     k     )k     Ck     Jk  
   Xk  
   ck  !   nk  )   k     k     k  0   k  6   l     Bl     Pl     cl      rl     l     l     l     l     l     l     m      m     3m     Mm     [m     dm     m  "   m     m     m  F   m  (   n     Bn     Nn     Tn  J   fn     n  $   n     n     n     n     o     'o     <o     To     qo  !   yo     o     o     o     o     o     o     p  1   'p     Yp     ip     p     p     p     p     p     p     p     q     q     &q     7q     Gq     Xq     jq  &   q     q     q  !   q     q     r     r     *r     8r     Ir     ]r     rr  w   wr  7   r  K   's  /   ss     s     s     s     s     t  F   t     ]t     st     t     t     t     t     t  #   u     7u     Pu     du     u      u  .   u  !   u    v  $   w     w     w  I   x     Xx  -   ax     x     x     x  /   x  =   y  *   Ay     ly  
   py  (  {y  ;  z     {      |      |     2|  *   M|     x|  #   |  &   |  5   |  
   }     }     *}  	   G}  
   Q}     \}  .   z}  0   }  0   }  1   ~      =~  0   ^~  /   ~  0   ~  !   ~  !        4     @     I  %   R  7   x  9     3             =  '   @  (   h  '     (          %        
       !   %     G     _  A   u       -                  "     8     M  4   m  (        ˂  a   c  #   Ń  &                       -     2     Q     q  %          !   Ʉ       9     8   *  "   c  )             ͅ                 &   9     `  	   q  3   {  +        ۆ  -        (     @  )   V            +        ԇ     ڇ  -     	   '     1     9  7   V                    Έ  #     #     #   ,  &   P  
   w            2     +     H     1   W  $     #     )   Ҋ       +        ?  $   ^  (          (     .           !   ;  +   ]  8                     -        ?     R  	   Z     d  ?        P     f                 7             	           0     E     Y     v     |  7        ͏     ֏            "   	  L   ,     y  A     /   ͐               4  2     h   Q          Ԓ                (  '   D     l       8        ӓ     ؓ  )           $   9  &   ^                      *     S   Ɣ  (        C     R     f  '   v       !     %   ڕ                .     F     `  5   y                    і       j     "   q  %             Η  F     #   3  &   W  )   ~       $   ǘ  0             <     Y  (   m  "             ə  '     !        1     N     k            *     %     (     #   /  )   S  $   }  (     G   ˛  *     ,   >  X   k     Ĝ     Ӝ            2   ,  &   _  /             ͝            $     %   :     `     u       ,     [   ɞ     %     @     U     p                   Q  	   q     {                 !                       %  7   C  ,   {            &   Ѣ                      =   2  >   p               ģ  <   ٣               !     5  !   Ѥ                    '     :  .   J     y                  +     -   G  ;   u          ŧ     ا               2     N     j       !     5     4        "     7  4   M                 	     1     -   Ω  j        g  ,     ,     k   ު  m   J  Q     N   
  )   Y  2     5     0     0         N  4   o  8     *   ݭ        -   )  !   W     y  V     1     ,     .   E  -   t  $     6   ǯ            '     I   ٰ  +   #     O     f                 3   ѱ          "  1   <  "   n  !             ǲ  !   ܲ  ,        +     >  B   ]  
     %        ѳ     ݳ       9     )   #  0   M  -   ~       %   ´  (             ,  A   =  	                    1     N        5     ;     N     j            /        ٶ               '  #   >     b             "     
     +          4   5     j  C        Ƹ     θ       ;   i            ;   ޹       &   "  &   I  @   p  
             ܺ       &     H   ;  /          8   ̻  +        1  
   @      K  <   l               Ӽ                         /     8     Q     b     p       "        ƽ                          %  &   1  '   X            >     E        *     >     Y  +   i  "             ̿     ݿ       '        %     ;      U     v  	     "          #               F     7   R  
               K          )     	   -     7     R     l                      !        
       !   '     I  #   d       )     -                       /     F     Z     o                                               "   )      L     m  4   }                          '     ?     Y     p     v  8     T   G  <                       %     :  V   ?                 $        
  $   &     K  +   k            "          %     7   ,     d          (        d   R           $    $  a   Q                  N         1   }                         ;                 A  6              Z   :           n     |       j                 8     y       M   '        S                  5  *  1                    7        ?                   7   3      *           D   
                         2           5           v       m             #  Y                _            Z                 :             +  l  {                      !          .                        I          ^  `  9  2  z    Q       ;  O  a                G          s  8        '       =                 /      R           q             y  1      %  ~      $            E                           i                    [              4               0        7  F  M      \  2                     f     V   /  |    
       H         t     w          G         D                          :   %            )              !                     k          I                 r              X   E   W         F     ~   r   B      T      K        e  L        U  p                           n                  W  9       C             +            >  <                 '   o          k       ^     @         !                                   O          \            b        C  `     D        L         /                 e                     6   b                         l   &                 -   t      i     ]     +         Q   (                                  U                     4             -                x               Y  4          d          N                                     P       ;     C     @    =                             s   "  R    G     H                    &   N           0                 P               J                        S   T    q    M     g       E        *  "                    f     3      ]   c          P  &  #  	                      )          >         I  0           <           >     }   A                         J             F           v         A   u                  K                @        B           	                  5       m             L                                      {            .               ,   ?  z   -  g  p        9  ,           h              8          ,        X             w         %       B  h             x   ?   j          K              o  [       6  )  O        u                  V  c   (         _  H  .            <          #                         =  	  3   
   J       "                       total memory: %d KiB
   EDID version: %u.%u
   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   - Partition start at %llu%sKiB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: error: %s: info: %s: invalid option -- '%c'
 %s: option '%c%s' doesn't allow an argument
 %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? - Last modification time %d-%02d-%02d %02d:%02d:%02d %s -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 > ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR1,MASK1[,ADDR2,MASK2[,...]] APM disabled
 APM enabled
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Add a DNS server Add a network address. Advanced options for %s Advanced options for %s (with Xen hypervisor) Ask for file name to reboot from. Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK Base directory for hash list. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting a command list COLOR CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check key modifier status. Clear the screen. Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute or check hash checksum. Configure serial port. Continue loops Copy FILE to local file LOCAL. Couldn't load sha256 Couldn't load sha512 Create a blank environment block file. DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] Debug tool for filesystem driver. Define a submenu. Delete a network address. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. ENVVAR ENVVAR [ENVVAR] ... ESC at any time exits. EXPRESSION EXPRESSION ] Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Enable interpretation of backslash escapes. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. FILE FILE [ARG ...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FPSWA revision: %x
 FROM[K|M|G] TO[K|M|G] Failed to boot both default and fallback entries.
 File size: %s
 Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found linux image: %s\n Found theme: %s\n Freeze ATA security settings until reset. Friday GNU GRUB  version %s Generate a grub config file Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World IMAGE_PATH COMMANDS Insert a module. Installation finished. No error reported. Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid regular expression Invoke user configuration routing. KiB KiB/s List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file without changing context. Load another config file. Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading the Hurd ... MAC verification failed MODULE Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Memory type: DDR2. Memory type: Unknown. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Monday NAME NAME [VARIABLE] [HINTS] NUMBER_OF_SECONDS Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No match No previous regular expression Not enough parameters to command.
 Options: PARTITION COMMANDS PORT PORT VALUE [MASK] Parse legacy config in new context Parse legacy config in same context Partition %s: Path: %s
 Perform a DNS lookup Perform both direct and reverse mappings. PiB PiB/s Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Press any key to continue... Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print a block list. Print and execute block argument. Print drive identity and settings. Print sizes in a human readable format. REGEXP STRING ROM image is present. Read only LENGTH bytes. Reboot failed Reboot the computer. Reenter password:  Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Reset all mappings to the default values. Retrieve device info. Return from a function. Run `go' to resume GRUB. SECS SIZE STRING Saturday Save read value into variable VARNAME. Save variables to environment block file. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Shift positional parameters. Show ACPI information. Show APM information. Show a help message. Show a long list with more detailed information. Show loaded modules. Show memory contents. Show raw contents of a file or memory. Show the contents of a file. Show the current mappings. Show this message. Shutdown failed Skip N bytes from output file. Skip offset bytes from the beginning of file. Specify filename. Specify hash to use. Specify one or more font files to load. Speed: %s 
 Start GDB stub on given port Success Sunday TARGET Target format not specified (use the -O option). Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. The files are identical.
 The highlighted entry will be executed automatically in %ds. Thursday TiB TiB/s Tool to edit environment block. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unrecognized option `%s'\n Unsupported address type %d
 Unsupported image format Usage: Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use GDB remote debugger instead of DDB. Use serial console. Use the %C and %C keys to select which entry is highlighted. VARNAME Verbose countdown. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Xen hypervisor, version %s You need to specify at least one command.
 Your embedding area is unusually small.  core.img won't fit in it. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [ADDR|comUNIT][,SPEED] [ARG] [CARD] [ENVVAR=VALUE] [ENVVAR] [NUMBER:]VARNAME [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] access denied address not found attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: blocklist FILE cannot compress the kernel image cannot read `%s' correctly cannot read `%s': %s card not found cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu connection refused connection timeout core.img version mismatch cp FILE LOCAL crc FILE device count exceeds limit disk `%s' not found diskboot.img size must be %u bytes don't update LED state done embedding is not possible, but this is required for cross-disk install enter: boot, `e': options, `c': cmd-line error: %s.
 false filename expected fwstart.img doesn't match the known good version. proceed at your own risk grub> hang for SECS seconds (default 3600) hex FILE invalid PBKDF2 password invalid file name `%s' invalid font range invalid parameter %s invalid skip value %lld ioctl RAID_VERSION error: %s ls PATH missing mandatory option for `%s' name no APM found no DNS servers configured no command is specified no such partition no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory one argument expected out of memory passwords don't match premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit read error at offset %llu: %s reserved RAM save ROM images in DIR [optional] set capslock mode set font family name set font range set font size set numlock mode set scrolllock mode set the program name size the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unknown argument `%s' unknown device type %s
 unknown filesystem unsupported RAID version: %d.%d unsupported gzip format unsupported serial port parity unsupported serial port speed unsupported serial port word length use COLOR for background use COLOR for label use COLOR for label background use COLOR for text will not proceed with blocklists xz file corrupted or unsupported block options you need to load the kernel first Project-Id-Version: grub 2.00+20130519
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-08-01 23:49+0200
Last-Translator: Volkan Gezer <vlkngzr@gmail.com>
Language-Team: Turkish <gnu-tr-u12a@lists.sourceforge.net>
Language: tr
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=1; plural=0;
X-Generator: Lokalize 1.5
               toplam bellek: %d KiB
   EDID sürümü: %u.%u
   Bilgi mevcut değil   VBE bilgisi:   sürüm: %d.%d  OEM yazılım gözden geçirmesi: %d.%d
   veya:   - %llu%sKiB konumunda bölümlee başlaması  - Toplam boyut %llu%sKiB  - Toplam boyut bilinmiyor  [SEÇENEK...] %.*s: ARGP_HELP_FMT parametresi pozitif olmalı %.*s: ARGP_HELP_FMT parametresi ile bir değer vermek gerekir %.*s: ARGP_HELP_FMT parametresi bilinmiyor %ds %ds kaldı %s, DOS-türevi başlangıç için yedek alan ayırmayan bir %s dosya sistemini içeriyor. Buraya GRUB yükleme, eğer değişken veri grub-setup (--skip-fs-probe bu denetimi etkisizleştirir, kendi seçiminizi yapın) tarafından üzerine yazılmışsa FILESYSTEM DESTRUCTION sonucunu verebilir. %s içeriyor gibi bir %s bölüm haritası DOS-stili başlatma için alan ayırması bilimeyen. GRUBu oraya yüklemek DOSYA SİSTEMİ BOZULMASI sonucunu ortaya çıkarabilir eğer değer verisi grub-yükle tarafından üstüne yazılmışsa (--skip-fs-probe  bu taramayı kapatır, risk kendi sorumluluğunuzdadır) %s, Hurd %s ile (kurtarma kipi) %s, Linux %s ile %s, Linux %s ile (kurtarma kipi) %s, Xen ile %s ve Linux %s %s, Xen %s ve Linux %s ile (kurtarma kipi) %s, kFreeBSD %s ile kFreeBSD ile %s, %s (kurtarma kipi) %s çekirdeği ile  %s (%s üzerinden) %s çekirdeği ile  %s (%s üzerinden, kurtarma kipi) %s: Tamam
 %s: OKUMA HATASI
 %s: Çok fazla argüman var
 %s: hata: %s: bilgi: %s: geçersiz seçenek -- %c
 %s: seçenek `%c%s' argümansız kullanılır
 %s: `--%s' seçeneği argümansız kullanılır
 %s: `%s' seçeneği bir argümanla kullanılır
 %s: `-W %s' seçeneği argümansız kullanılır
 %s: `-W %s' seçeneği belirsiz
 %s: `%s' seçeneği bir argümanla kullanılır
 %s: seçenek bir argümanla kullanılır -- %c
 %s: seçenek bir argüman gerektiriyor -- `%s'\n %s: `%c%s' seçeneği bilinmiyor
 %s: `--%s' seçeneği bilinmiyor
 %s: uyarı: (32-bit) (64-bit) (PROGRAM HATASI) Sürüm bilinmiyor!? (PROGRAM HATASI) Bu tanınan bir seçenek olmalıydı!? - Son değişiklik zamanı %d-%02d-%02d %02d:%02d:%02d %s -h HASH [-c DOSYA [-p ÖNEK]] [DOSYA1 [DOSYA2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit korunmuş arayüz destekleniyor
 16-bit korunmuş arayüz desteklenmiyor
 32-bit korunmuş arayüz destekleniyor
 32-bit korunmuş arayüz desteklenmiyor
 > ACPI kapatılması  başarısız oldu ADDR ADDR DEĞERİ [MASKE] ADDR1,MASKE1[,ADDR2,MASKE2[,...]] APM etkisizleştirildi
 APM etkinleştirildi
 ARGP_HELP_FMT: %s değeri %s değerinden küçük ya da ona eşit ASCII DOS tarzı CR/NL satır sonlarını kabul et. Etkin girdi uçbirimleri: Etkin çıktı uçbirimleri: Bir DNS sunucusu ekle Bir ağ adresi ekle. %s için gelişmiş seçenekler %s için gelişmiş seçenekler (Xen hypervisor ile) Yeniden başlatılacak dosya ismini sor. GRUB'u birden çok bölümlendirme kısmı veya bölümlendirme kısmı ve dosyası olan diske yükleme girişimi yapılıyor. Bu henüz sağlanmıyor. GRUB'u bölümlendirilmemiş bir diske veya bölüme yükleme çalışması. Bu KÖTÜ bir fikir. Kullanılabilir girdi uçbirimleri: Kullanılabilir çıktı uçbirimleri: B B/s BIOS_DUMP [INT10_DUMP] BLOK Hash listesi için temel dizin Bir işletim sistemini başlat. Tekli kipte başlat. Hata iletileriyle birlikte önyükle. Ayrıntılı olarak başlat. Bir komut listesini önyüklüyor RENK Kullanılmayan CPU görevleri işlemciyi yavaşlatmıyor
 Kullanılmayan CPU görevleri işlemciyi yavaşlatıyor
 ROM bölgesi etkinleştirilemiyor. Yapılandırılan aygıtları değiştir. Bölüm türünü değiştir Alt tuşunu denetle. Kontrol tuşunu denetle. Üst karakter tuşunu denetle. CPU özelliklerini kontrol et. Anahtar düzenleyici durumunu denetle. Ekranı temizle. Komutlar: DOSYA'yı YEREL yerel dosyası ile karşılaştır. `%s' dosyasını `%s' ile karşılaştır:
 İki dosyayı karşılaştır. Hash sağlamasını hesapla ya da kontrol et. Seri portu yapılandır Döngülere devam et. DOSYA'yı YEREL yerel dosyasına kopyala. Sha256 yüklenemedi Sha512 yüklenemedi Boş bir çevresel öbek dosyası oluştur. AYGIT AYGIT [BÖLÜM[+/-[TÜR]]] ... AYGIT bir OS aygıtı olmalı (ör /dev/sda). AYGIT_ADI DİZİN DIRECTORY [OSBundleRequired] Dosya sistemi sürücüsü için hata ayıklama aracı. Bir alt menü tanımla. Bir ağ adresi sil. Değişkenleri sil. Sürücü belirleyin. Dosya sistemi UUID'sini belirleyin. Dosya sistemi etiketini belirleyin. Dosya sistemi türünü belirleyin. Bölme haritası türünü belirleyin. Aygıt %s: ACPI'i etkisizleştir. SMP'i etkisizleştir. Tüm önyükleme çıkışlarını etkisizleştir. SMART'ı etkisizleştir/etkinleştir (0/1). Disk önbellek istatistikleri: isabet = %lu (%lu.%02lu%%), kaçan = %lu
 Disk sayısı disk listesinden önce gelmelidir.
 Metnin bir satırını görüntüle. Yasaklı DOSYA listesini gösterir. Tüm konsolların çıktısını göster. Enerji kipini göster. Bu komutun kullanımını göster ve çık. Bu yardımı göster ve çık. Şimdiki zamanı görüntüle/ayarla Yeni satır takibinden çıktı üretme. İletileri yazdırma. Hiçbir disket sürücüsünü inceleme. Bilgisayarı durdurmak için APM kullanmayın. Hiçbir şey yapma, başarılı. Hiçbir şey yapma, başarısız. Önyükleme tanısal iletilerini gösterme. Virgülle ayrılmış ana makine tablolarını yükleme. Yeniden başlatma, sadece kapat. İlk hatadan sonra durma. ORTAM_DEĞİŞKENİ ORATM_DEĞİŞKENİ [ORATM_DEĞİŞKENİ] ... ESC her an mevcut. ANLATIM ANLATIM ] İçe gömme mümkün değil. Bu kurulumsa GRUB sadece blocklist kullanarak yüklenebilir. Bununla birlite blocklist sağlıksızdır ve kullanılmamaları tavsiye edilir. Sola eğik çizgi boşlukları açıklamalarını etkinleştir. ZFS parolası girin:  Başlangıçta KDB'de gir. Normal kipe gir. Parola gir:  Kullanıcı adı gir:  Konut satırı argümanlarını ayrıştırmada sorun.
 Bir anlatım değerlendir. Çıkış başarısız GRUB'dan çık. Döngülerden çık. Normal kipten çık Değişkenleri dışa aktar. DOSYA DOSYA [PARAMETRELER ...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  DOSYA... DOSYA1 DOSYA2 DOSYA ADI KOMUTU FPSWA revizyon: %x
 BAŞLANGIÇ[K|M|G] BİTİŞ[K|M|G] Varsayılan ve son çare girdilerinin hiçbiri ile sistem başlatılamadı.
 Dosya boyutu: %s
 Dosyalar şu denkleştirmede farklı: %llu: 0x%x [%s], 0x%x [%s]
 Dosya boyutları farklı: %llu [%s], %llu [%s]
 Dosya sistemine ulaşılamadı Dosya sistemi türü %s AYGIT sürücü GPT'nin MBR hibritini doldur. Belirli bölüm mbr hibritinin bir parçası olacaktır. 3 bölüme kadar izin verilir. TÜR bir MBR türüdür. + bölümün etkin olduğunu gösterir. Sadece bir bölüm etkin olabilir. EFI modülatörünün yüklenmesini sonuçlandır. Öncelikle cihazın İPUCU'nu deneyin. Eğer İPUCU virgül ile biterse ayrıca alt bölümleri deneyin. Video problemini düzelt. Bulunan Hurd modülü: %s Bulunan NetBSD çekirdeği: %s\n Bulunan arka plân: %s\n Bulunan initrd imajı: %s\n Bulunan çekirdek modülü dizini: %s\n Bulunan linux imajı: %s\n Bulunan tema: %s\n Sıfırlanana kadar ATA güvenlik ayarlarını dondurun. Cuma GNU GRUB sürümü %s Bir grub yapılandırma dosyası oluştur DOSYA nın crc32 kontrol değeri Disk önbelleği hakkında bilgi al. ATA disk değiştirgelerini al/ayarla. GiB GiB/s HASH İPUCU Sistemi durdur, mümkünse APM kullanarak. Bilgisayarı durdurur. Bu komut tüm aygıt yazılım uygulamalarında çalışmaz. Çıkış dosyasındaki N bayt'ı işle. Merhaba Dünya IMAGE_PATH KOMUTLAR Bir birim ekle. Kurulum tamamlandı. Hata bildirilmedi. Geriye başvuru geçersiz Geçersiz karakter sınıfı adı Geçersiz karşılaştırma karakteri Geçersiz komut %s.
 \{\} içeriği geçersiz Geçersiz aygıt `%s'.
 Geçersiz disk sayımı.
 Geçersiz düzenli ifade Kullanıcı yapılandırma yönlendirmesini çağır. KiB KiB/s DNS sunucuları listesi PCI aygıtlarını listele. Tüm dosyaları listele. Mümkün olan video modlarını listele.Eğer çözünürlük belirtilmişse sadece uyan modları göster. Aygıtları ve dosyaları listele. Aygıtları ya da dosyaları listele. Aygıtları listele PATH'teki dosyaları listele. Gömülü yazılım tarafından sağlanan bellek haritasını listele. Desteklenen video modları listesi: Bir girdi uçbirimi listele veya seç. Bir çıktı uçbirimi listele veya seç. Mevcut değişkenleri listele. Yüklenmiş yazı tiplerini listele. Ortam öbek dosyasından değişkenleri listele. 64-bit XNU kalıbını yükle. BIOS dökümünü yükleyin. FreeBSD env yükle. FreeBSD çekirdek birimini yükle (ELF). FreeBSD çekirdek birimini yükle. Linux'u yükle. NTLDR veya BootMGR'yi yükle. NetBSD çekirdek birimini yükle (ELF). NetBSD çekirdek birimini yükle. XNU uzantı dizinini yükle. XNU uzantı paketini yükle. XNU uzantısı yükle. XNU kalıbını yükle. Bir klavye düzeni yükle. Çoklu önyükleme 2 çekirdeğini yükle. Çoklu önyükleme 2 birimini yükle. Çoklu önyükleme çekirdeğini yükle. Çoklu önyükleme birimini yükle. XNU için bir açılış kalıbı kullan. EFI taklitçisini yükle ve başlat. Başka bir başlangıç yükleyici ekle. İçeriği değiştirmeksizin diğer yapılandırma dosyasını yükle. Başka bir yapılandırma dosyası yükle. Arka plan resmini aktif konsol için yükle. Ana makine ACPI tablolarını ve değişkenler tarafından belirtilen tabloları yükle. initrd yükle. FreeBSD çekirdeğini yükle. NetBSD çekirdeğini yükle. OpenBSD çekirdeğini yükle. Yalnızca virgülle ayrılmış tabloları yükle. Çoklu yollarla aynı dosyayı yükle. Ortam öbek dosyasından değişkenleri yükle. Yüklü yazı tipleri: GNU Mach Yükleniyor ... Linux Yükleniyor %s... Xen %s yükleniyor ... Başlangıç ramdiski yükleniyor... FreeBSD %s çekirdeği yükleniyor... Hurd yükleniyor ... MAC doğrulaması başarısız BİRİM BIOS sürücüsü eşleştirmelerini yönet. Uzun seçeneklerdeki argümanlar zorunlu olsun olmasın kısa seçeneklerde de geçerlidir. PCI aygıtlarını işlet. Bellek türü: DDR2. Bellek türü: Bilinmiyor. Menü girdisi türü. MiB MiB/s En küçük  BASH benzeri satır düzeni desteklenir. İlk kelime için, SEKME mümkün olan komutları listeler. Herhangi bir yerde bile SEKME ile var olan aygıt veya dosyalar listelenir. %s En düşük seviye Emac benzeri ekran düzenlemesi desteklenir. Liste tamamlamaları için SEKME tuşuna basın. Açılış yapmak için CTRL+X veya F10 tuşuna basın, komut satırı için CTRL+C veya F2 tuşuna basın veya ESC tuşu ile düzenlemeyi iptal edip GRUB menüsüne dönün. Pazartesi İSİM İSİM[ÖNTANIMLI][İPUCU] NUMBER_OF_SECONDS Ağ protokolleri: Yeni MBR `%s' konumuna yazıldı
 CS5536 bulunamadı FPSWA bulunamadı Hiçbir komut belirlenmedi.
 Hiçbir aygıt belirlenmedi.
 Kullanılabilir disk önbellek istatistiği bulunmuyor
 Hiçbir sürücü tekrardan eşleştirilmedi Eşleşme yok Önceki düzenli ifade yok Komut vermek için yeterli girdi yok.
 Seçenekler: BÖLÜM KOMUTLARI KAPI KAPI DEĞERİ [MASKE] Yeni bağlamdaki yapılandırma kalıntılarını ayrıştır Aynı bağlamdaki yapılandırma kalıntılarını ayrıştır Bölüm %s: Yol: %s
 Bir DNS araması yap Hem doğrudan hem de karşıt eşleştirmeleri çalıştır. PİB PiB/s Bir melodi yürüt. Lütfen GRUB_DEFAULT için eski `%s' başlığını kullanmayın, `%s' (2.00 sürümlerinden öncesi için) veya `%s' (2.00 veya sonrası için) kullanın. Olası bağımsız değişkenler: Olası komutlar: Olası aygıtlar: Olası dosyalar: Olası bölümler: Olası şeyler: Devam etmek için herhangi bir tuşa basın... Seçilen İşletim Sistemine girmek için Enter'a, önyüklemeden önce komutları düzenlemek için `e' tuşuna veya komut satırı için `c' tuşuna basın. Seçilen İşletim Sistemine girmek için Enter'a, önyüklemeden önce komutları düzenlemek için `e' tuşuna veya komut satırı için `c' tuşuna basın. Önceki menüye dönmek için ESC'ye basın. Bellek bilgilerini yazdır. Bir öbek listesi yazdır. Blok argümanını yazdır ve çalıştır. Sürücü kimliğini ve ayarlarını yazdır. Boyutları kullanıcının okuyabileceği biçimde bastır. REGEXP ARAMA METNİ ROM imajı hazır. Sadece LENGTH baytları oku. Yeniden başlatma başarısız Bilgisayarı yeniden başlat. Parolanızı tekrar girin:  Düzenli ifade çok büyük Bir DNS sunucusunu kaldır Birimi kaldır. Bir çevresel değişken kaldır. Belirtilen aralıktaki tüm hafıza bölgelerini sil. Tüm eşleştirmeleri öntanımlı değerlere getir. Aygıt bilgisini al. Bir fonksiyonla dön. GRUB'a devam etmek için `go' komutunu çalıştır. SN BOYUT DİZİ Cumartesi Okunan değeri VARNAME değişkeni içine kaydet. Ortam öbek dosyasına değişkenleri kaydet. Aygıtları UUID göre ara. Eğer DEĞİŞKEN belirli ise bulunan ilk aygıt değişken olarak ayarlanır. Dosyaya göre aygıtlar ara. Dosya sistemi UUID'sine göre aygıtlar ara. Dosya sistemi etiketine göre aygıtlar ara. Aygıtları dosya göre ara. Eğer DEĞİŞKEN belirli ise bulunan ilk aygıt değişken olarak ayarlanır. Aygıtları etikete göre ara. Eğer DEĞİŞKEN belirli ise bulunan ilk aygıt değişken olarak ayarlanır. Gelişmiş Güç Yönetimi'ni Ayarla
(1=düşük, ..., 254=yüksek, 255=kapalı). Otomatik Akustik Yönetimini Ayarla
(0=kapalı, 128=sessiz, ..., 254=hızlı). RSDP, XSDT ve RSDT'nin OEMID'sini ayarla. RSDP, XSDT ve RSDT'nin OEMTABLE kimliğini ayarla. RSDP, XSDT ve RSDT'nin OEMTABLE düzeltmesini ayarla. Döndürülen değere bir değişken ayarlayın. İlk aygıt bulunduğunda bir değişken ayarla. Bir çevresel değişken ayarla. RSDP, XSDT ve RSDT'nin oluşturucu alanını ayarla. RSDP, XSDT ve RSDT'nin oluşturucu düzeltmesini ayarla. Hata ayıklama ortamı değişkeni ayarla. Sürücüyü uyku kipine ayarla. Sürücüyü hazırda beklet durumuna ayarla. Pozisyonal parametreleri belirle. Kök aygıtı ayarla. Bekleme zaman aşımı ayarla
(0=kapalı, 1=5sn, 2=10sn, ..., 240=2dk, 241=30dk, ...). TERMİNAL'in terminfo tipini TÜR olarak ayarla.
 Dizisel bağlantı noktası adresini ayarla. Dizisel bağlantı noktası eşliğini ayarla. Dizisel bağlantı noktası hızını ayarla. Seri yuva durdurma bitlerini ayarla. Dizisel bağlantı noktası kelime uzunluğunu ayarla. Seri birimini ayarla. Kalıpları DEVICE'den önyükleme yapmak için yapılandır.

Normal olarak bu programı çalıştırmanız önerilmez. Bunu yerine grub-install Kullanın. Kullanıcı parolası ayarla (PBKDF2).  Kullanıcı parolasını ayarla (düz metin). Önerilmez ve güvensizdir. Değişkeni kullanıcı girdisi ile ayarla. Değişkenleri ayarla. Konumsal parametreler kaydır. ACPI bilgisini göster. APM bilgisini göster. Bir yardım iletisi göster. Daha ayrıntılı bilgi ile uzun bir liste göster. Yüklenen birimleri göster. Bellek içeriği göster. Bir dosya veya belleğin ham içeriğini göster. Bir dosyanın içeriğini göster. Güncel eşleştirmeleri göster. Bu iletiyi göster. Kapatma başarısız çıktı dosyasından N byte atla Dosyanın başlangıcındaki uzak bayta git. Dosya adı belirt. Kullanılacak hash'i belirtin. Yüklemek için bir ya da daha fazla yazı tipi dosyası belirtin. Hız: %s 
 GDB stub'ı belirtilen portta başlat Başarılı Pazar HEDEF Hedef biçimi belirtilmemiş (-O seçeneğini kullanın). Konsol sadece ASCII olarak tanımlıdır. Konsol mantıksal olarak UTF-8 olarak emredildi. Konsol görsel olarak UTF-8 olarak emredildi. USB desteğini sına. REGEXP'in METNE uygunluğunu test et. WxH kipinde video alt sistemini test et. Video alt sistemini sına. Dosyalar aynı.
 İşaretli girdi %ds içinde otomatik olarak çalıştırılacak. Perşembe TİB TiB/s Ortam bloğu düzenleme aracı. Diziyi kullanılan ayarları kullanarak çevirir. Daha fazla bilgi için `''%s --help' veya `%s --usage' komutlarını deneyin.
 Salı KULLANICI PAROLASI KULLANICI PBKDF2_ŞİFRESİ KULLANICIADI[,KULLANICIADI] UTF-8 Sıkıştırılmamış veri. Doğrulama yapılmadan önce dosyayı çıkart. %d bilinmeyen adres türü
 Bilinmeyen komut `%s'.
 Bilinmeyen sistem hatası Bilinmeyen video modu  Bilinmeyen sanal aygıt türü: %s
 EFI emülatörünü kaldır. `%s' tanımlanmamış seçenek\n %d desteklenmeyen adres türü
 Desteklenmeyen görüntü formatı Kullanım: Kullanım: %s [SEÇENEK] MENÜ_GİRDİSİ\n Kullanım: %s [SEÇENEK]\n DDB yerine GDB uzak hata ayıklayıcısını kullan. Sıralı konsol kullan. Vurgulanacak girdiyi seçmek için %C ve %C tuşlarını kullanın. VARNAME Geri sayımı ayrıntıla. Sürüm %u.%u
32-bit CS = 0x%x, uzunluk = 0x%x, başlangıç = 0x%x
16-bit CS = 0x%x, uzunluk = 0x%x
DS = 0x%x, uzunluk = 0x%x
 UYARI: yazı tipi özellik parametresi desteklenmiyor : %x
 GENİŞLİK X YÜKSEKLİK Belirlenen saniye kadar bekle. Her çıktı satırından sonra tuşa basılmasını bekle. Uyarı: Uyarı: geçersiz '%s' arkaplan rengi
 Uyarı: geçersiz '%s' ön plan rengi
 Uyarı: `%s' içerisinde söz dizimi hatası (eksik / işareti)
 Çarşamba Windows NT/2000/XP (yükleyici) Windows Vista/7 (yükleyici) Xen hypervisor, sürüm %s En az bir komut belirlemeniz gerekir.
 Yerleştirilmiş alan anormal küçüklükte. core.img sığmayacaktır. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--md5] ŞİFRE [DOSYA] [--no-mem-option] [--type=TÜR] DOSYA [PARAMETRELER ...] [-c DOSYA [-p ÖNEK]] [DOSYA1 [DOSYA2 ...]] [-e|-n] STRING [-f DOSYA] [-f DOSYA] değişken_adı [...] [-f|-l|-u|-s|-n] [--ipucu İPUCU[--ipucu İPUCU] ...] İSİM [-h|-p|-r] [DOSYA] [-l|-h|-a] [DOSYA ...] [-m (stretch|normal)] DOSYA [ADDR|comAYGIT][,HIZ] [ARG] [KART] [ORTAM_DEĞİŞKENİ=DEĞER] [ENVVAR] [NUMARA:]DEĞİŞKEN_ADI [SEÇENEKLER...] [SEÇENEKLER] [SEÇENEKLER] DİSK [SEÇENEKLER] DOSYA_VEYA_AYGIT [SEÇENEKLER] YAZITİPİ_DOSYALARI [SEÇENEK]... [MODÜLLER] [SEÇENEK]... [YOL|AYGIT] [YOL] [ÖRÜNTÜ ...] [KULLANICILİSTESİ] [DEĞER]... [[-a|-u|-v] [-g WxH] TERMİNAL [TÜR]] [[yıl-]ay-gün] [saat:dakika[:saniye]] erişim engellendi adres bulunamadı GRUB'daki çekirdek kalıp olan `%s' okunmaya çalışılıyor GRUB'daki çekirdek kalıp olan `%s' tekrar okunmaya çalışılıyor kullanılabilir RAM kullanılabilir biçimler: blocklist DOSYA çekirdek görüntüsü sıkıştırılamaz `%s' düzgün biçimde okunamıyor `%s' okunamadı: %s kart bulunamadı cmp DOSYA KONUMU comAYGIT[,HIZ] %llu. ofsette karşılaştırma hatası bağlantı reddedildi bağlantı zaman aşımı core.img sürüm uyuşmazlığı cp DOSYA LOKAL crc DOSYA aygıt sayısı sınırı aşıyor disk `%s' bulunamadı diskboot.img boyutu %u bayt olmalı LED durumunu güncelleme bitti gömme mümkün değil, fakat bu çapraz-disk yüklemesi için gerekli enter: önyükle, `e': seçenekler, `c': komut-satırı hata: %s.
 yanlış dosya adı gerekli fwstart.img bilinen iyi sürümle eşleşmiyor. kendi riskinizle devam edin grub> SANİYE saniye bekler (öntanımlı 3600) hex DOSYA PBKDF2 parolası geçersiz `%s' geçersiz dosya adı geçersiz yazı tipi aralığı %s geçersiz parametre geçersiz atlama değeri %lld ioctl RAID_VERSION hatası: %s ls PATH `%s' için zorunlu seçenek eksik isim hiçbir APM bulunamadı DNS sunucusu yapılandırılmadı hiçbir komut belirlenmedi böyle bir bölüm bulunmamaktadır uçbirim belirlenmedi bu çekirdek kalıpta sonlandırıcı yok non-sector-aligned verisi ana dosyada bulundu bir dizin değil bir argüman bekleniyor bellek yetersiz parolalar eşleşmiyor erken dosya sonu %s CapsLock tuşuna bas Insert tuşuna bas NumLock tuşuna bas ScrollLock tuşuna bas sol alt'a bas sol ctrl'ye bas sol shift'e bas sağ alt'a bas sağ ctrl'ye bas sağ shift'e bas program sürümünü yazdır sürüm bilgisini yazdır ve çık %llu ofsetinde okuma hatası: %s ayrılmış RAM ROM kalıplarını DİZİNe kaydet [isteğe bağlı] capslock durumunu ayarla yazı tipi ailesi adını ayarla yazı tipi aralığını ayarla yazı tipi boyutunu ayarla numlock durumunu ayarla scrollock durumunu ayarla program adını ayarla boyut device.map içindeki `%s' sürücü adı geçersiz. Bunun yerine %s kullanılıyor. Lütfen şu biçimi kullanın: [hfc]d[0-9]* (örn. `hd0' veya `cd') çekirdek dosyanın ilk bölümü bölüm-hizalı değil kurulum aygıtı kaldırılabilir. Bu seçenek sadece EFI üzerinde kullanılabilir. çekirdek dosyasının bölümleri çok fazla parçalanmış `%s'nin boyutu %u değil `%s' boyutu çok büyük `%s' boyutu çok küçük iki argüman gerekli tür dosya sistemini %s de kimliklendirmek imkansızdır; güvenlik denetimi yürütülemez bilinmeyen argüman '%s' %s bilinmeyen aygıt türü
 bilinmeyen dosya sistemi desteklenmeyen RAID sürümü: %d.%d desteklenmeyen gzip biçimi desteklenmeyen seri port benzerliği desteklenmeyen seri port hızı desteklenmeyen seri port sözcük uzunluğu arkaplan için RENK kullan etiket için RENK kullan arkaplan etiketi için RENK kullan metin için RENK kullan engelli listeleri ile devam etmeyecek xz dosyası bozuk veya desteklenmeyen blok seçenekleri önce kerneli yüklemelisiniz                                                                                                                                                                                                                                                                                                                                                                                               boot/grub/locale/uk.mo                                                                              0000600 0001750 0001750 00000471015 13417732100 0013651 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                            |'    N      Pi  #   Qi      ui     i     i     i  $   i     j  6   j     Pj     Wj  	   cj     mj     zj     j     j     j     j  .   j  .   k  %   Fk     lk     pk    k    l    m     n  8   n  '   n  7   o  F   Do  v   o  +   p     .p      ?p     `p  !   rp     p  ,   p     p     p  $   q     0q  *   Lq     wq     q     q     q     q  
   q  	   q     q     r  ,   r  ,   Fr  ,   sr  '   r  -   r      r  (   s  (   @s  )   is     s     s     s     s     s  "   s  4   t     Jt     Rt  7   _t     t     t  1   t     t     u  %   
u  '   0u  %   Xu  '   ~u     u     u     u     u     u     u     u     v     v     8v     Jv     Xv     hv     uv  3   v     v  $   v     v     v     w     !w     2w     Iw     ^w  -   vw     w  !   w     w     w     x  #   )x     Mx  `   x  Z   6y     y     y     y     y     y     y     y     y     z  0   )z  3   Zz     z     z     z     z     z     {     {     1{     G{     U{     l{     {{     {     {  %   {     {     {     {     |     |     6|     L|     [|     n|     |  *   |  3   |  1   |  1   (}  2   Z}     }      }     }  1   }     ~  #   <~     `~  "   {~  8   ~     ~     ~  	     #        4     R     e                 )                  2  "   P  P   s     Ā     ـ  H     &   7     ^     v  !   }  ,        ́     ؁     ܁  	     !     *   %     P  '   h                    т  $                   2     M     i       
     
          1   ˃                    1  3   M  >     $                       1     L     l  +             ȅ  o     #   V     z       $        Ն       '     9   3     m       z             &  8   :     s  
                       ܈     x  +             ى            "        :     K  (   \       #             ͊     ݊            "     0   9     j     o     ~  7        ŋ     ͋     ً                       0        J     ^     p       2     %   Ќ            *     6   E  +   |          ƍ     ٍ  !     d   ̎  e   1  d     i     o   f  H   ֐          2     H     Y     l                 #   ̑               &  1   8  )   j                      /                     5   4     j       K     &             4     I     f     j  D   p            '     P        8     W  	   c     m     p               4  '   Ŗ       +        (     9  )   U                    ϗ                 $   '     L     ^  "   y                 (                    "     +     -   A     o                      O   ʙ          0     H     _     m  %          )   ƚ  !     "        5     Q  +   h                    ʛ  !   ܛ               3     ?      V     w                    ל            4        L     k     }               ˝                  !   ;     ]  4   w  M     2        -     G  *   e  8        ɟ     ֟                    4  3   A  $   u  +        Ơ     ۠                    &      B     c                 D            ȣ     ϣ     ף  7     ;   .     j       !        ˤ       s        u                    Υ                    &     *     0     ٦                         ̧            '     
   C     N     ]     s     x                      H   Ѩ  L        g     z            %        ۩       #        2     O     l     u                 ̪       "     (        F     b  %   o       2               #     *   (     S     U     h  #   m            	     	     "     ;   ߬  #     <   ?     |            .     	          `        b  !   w  )        î     Ǯ     ͮ     ծ  q        T     h                         ί            "   !     D     \     v                    ϰ       #        !     >  g   Z     ±     G     a  -   ~       !          "     '     Q   >               Ƴ     ڳ                    8     U     r               ´      д                     :     U     i     z  -        ȵ       "     b     )   |               Զ  ,             5  	   :  "   D  %   g                 
          &   ·  )          5   &  ^   \       $   ո  %           ^   ӹ  _   2  }          )   ǻ  '     >     D   X  !     '     -     #        9  )   Y       )        ʽ  )     ,        >     ^     w            E     $     A   )  )   k               ο                )  q   >       :             &  `   5                                 0   1     b            )     &                  4     G  )   c       %     %     ,     '     :   >     y  -     0          .        6     H  '   ]  $     "                    *        /     7  )   >  o   h            6                    0         #  !   D  "   f  #                         !        4  
   J     U  <   o            %     >        A     J     N     T     t       d     *     (   0  ,   Y            0     6              (     6     K     _     e  0          !               $        9     R     i            $     "     $        "     ;     P      d                                             .  '   K     s       $     +     "           )   '     Q     c                 '                  .  <   B             %                         m   ,                           +     3   H  1   |       '     -          '     '   C  .   k  	                                 -     I     d                 *     ?        $  B   7  p   z       /   v            .     O      )   P     z       	          5                  '     =     X  :   r       1                  %     +     >     E     K     Z     c                      	                             #     6     P     f                 
     
     	          !     )             "     4     M     m  n     F     N   @       "               -     -     $   3  #   X  0   |  6                    (     1   <  )   n                           !   
     ,     @      \     }  %          &               0   .      _                 7     .        5  4   M  #                                 1     F  %   f                                          ,   :     g     v                           #              :  B   T                                   4  &   R     y                      &             $     ?     O  ;   c  V     +     "   "     E  &   _  !          r        2     7  /   U  H     F     w     N          (             9  I   E  )     $     ,     '        3  %   L     r     x            $     '     *        *     D     S  J   k                 -     +   /     [  $   a       "     +               -     J   =            %     "     9        F      ^  "                                       ,     ?     W     q            %                       +  %   H     n                      [        $  !   8     Z     s                                             !  /   ;  7   k  4     /             %  -   =     k  @          3             )     ;     X     h     ~  1                               	   6  	   @     J       1        L  0   j            !          "        (     4     @     V     o                                                       )  &   ?     f                      '     &        6  L   C  9          0          !   -     O     n                                        	  #     #   ;  $   _            &          !                  &     +     :  	   P  7   Z       D     ]     %   O  ,   u  [     ;     w   :  7     K     #   6 /   Z             &    U    @   ^ Q           
      +   5    a R   ~ L    .       M    d F   i                             8     K    l         2    !    #       /    C    [    l                         (   2 #   [                 )           %    = '   X '    '        0        	    ;	 -   Y	 8   	 !   	 '   	    

    "
 !   9
     [
 &   |
    
    
 .   
    
 !    B   = E    B      	 8    ?   U /    9        K       g j    	               ( 7   B %   z 0    5        E    F   d 7               W      9    S    !   N g   p        i 8   ]     2        3        =   6 #   t     6    1    T    .   i     "    5    n       r     7        i    X   \  i     L   ! j   l! >   ! M   " N   d" D   " 1   " 1   *#    \#    z#    # A   # X   # 	   9$    C$ I   W$    $    $ G   $ 3   %    L% S   O% X   % S   % X   P&    &    & D   & -   ' L   0'    }' *   '    ' ;   '    (    +(    A(    U(    m( I   (    ( K   ( >   ) @   ^)    )    ) +   ) /   * /   1* Q   a* B   * V   * W   M+ 4   + @   + H   ,   d,    -    Y. @   // B   p/    /    /    /    /    / 1   / 6   &0 `   ]0 \   0 D   1 ;   `1 \   1 ]   1 f   W2    2 2   2 J   3 &   \3 :   3 D   3    4 
   4 #   4 d   74 _   4 $   4 1   !5 :   S5 7   5 $   5 "   5 #   6 $   26 /   W6 r   6    6    7 i   8 j   }8 ;   8 ]   $9 <   9    9 <   C: V   : L   : i   $;    ;     < ?   7<    w< ?   < 2   < %   < -    = V   N= /   = ?   = J   > ;   `> X   > 7   > E   -?    s? 1   @ 1   N@    @ U   =A !   A    A 0   A X   A    PB    lB !   {B    B ]   B Y   C =   fC 8   C '   C "   D .   (D 3   WD 8   D    D "   D 8   E >   ?E :   ~E 6   E    E    F .   !F [   PF    F    F k   F 7   EG T   }G    G `   SH 6   H K   H )   7I 6   aI K   I A   I ^   &J U   J O   J    +K T   L 1   aL (   L X   L L   M L   bM l   M    N Z   N P   *O   {O !   P I   P    P *   Q 
   Q    Q )   Q 3   Q }   R O   S    S 3   |T &   T =   T .   U .   DU    sU 1   U n   U 1   2V <   dV 3   V    V    V 2   W &   7W b   ^W k   W    -X    6X     VX X   wX    X    X $   X ,   Y    BY    RY    _Y L   lY !   Y    Y    Y    Z `   #Z G   Z $   Z    Z q   [ W   [ L   [ 2   %\ )   X\   \ C   ^    b^    [_    U`    Na 6  Lb    c 2   gd "   d    d    d &   d &    e    Ge (   ee =   e '   e '   e    f n   <f c   f    g    !g    $g &   >g ^   eg    g ,   g !   
h    ,h ,   h 5   h y   i :   i B   i I   	j O   Sj    j 	   j    j    Uk    \k V   mk    k L   ^l    l 	   l    l =   l (   m \  :m K  n Q   o    5p ]   Qp    p 7   p R   q 8   Yq ;   q 8   q (   r &   0r 0   Wr 6   r N   r <   s 5   Ks ^   s    s    s    s G   t    Vt 	   ]t    gt K   tt h   t o   )u ,   u    u 3   u 5   v 4   Hv    }v 6   rw A   w 4   w 1    x H   Rx b   x A   x h   @y h   y j   z >   }z 5   z _   z 8   R{ %   { $   { 4   { ;   | 5   G| *   }|    | ,   | :   | 4   .} &   c} 3   } ?   } ?   } 0   >~ &   o~    ~ 6    &   R ?   y ,    0    *    .   B H   q H    L    P   P {        i    D   ( 1   m `    ~         [    (    '   # (   K $   t     E   : V    9   ׆ $    $   6 $   [ "    g    /    ,   ;     h     @       ͈ 5  T         9    u   ތ    T N    R   G N    ,    F      ] *   r X    "        +   7 1   c (           ܑ 	        )   +   8 9   d         D   Ȗ )    K   7 _             K     
   l ,   w     
       ǘ 9       !    ٙ $    ,            W    $   w 5    W   қ J   * ?   u        ˜ 8    R   # O   v    Ɲ <       ! *       ў 5    T   # Y   x    ҟ -    4    N   I     1       ͠ <   ֠     &       C    ^ _   q    ѡ h   h    Ѣ    q 1       ã m   ԣ    B     P    q    H I   h I        	           !    @    4 )   R    | -    '   ɧ '    1    :   K <    d   è -   ( 9   V "            ҩ             - O   N Q    P      A d  _ 3   ĭ 6    e   / +    E    B    R   J Y        .    8   ɰ .    *   1     \ H   } B   Ʊ H   	 B   R G    A   ݲ K    2   k i    3    !   < 4   ^ @    !   Դ     3    `   I #    ?   ε N       ] Q   & >   x )    :    q    T            W    L   `         
   ׹         Z    R   Y 2       ߺ    w 0   ( H   Y P          ƾ     4  8   m ]    m   { _    i   I 3    Q    M   9 M    Q    q   ' 7    T    H   & a   o e    T   7 9    G    P    3   _     S   .     ]    @   | D    F    Z   I M    >      1 C   6    z q    5   ~     J   o J    (    (   . 1   W =    \    c   $ F    ,    N    T   K '    9    /    8   2 =   k $    U    U   $ \   z W    }   / P    c    Y   b     t    %   O 6   u ]    Q   
 I   \     J    2   
 o   = 
        v       < 7   " 8  Z        ,    /    F m   O W    o    H    L    *    F   F @    _    J   . 4   y     -    o       a !   { r    R       c    p 	   w S    4    7   
    B W    \   i m    M   4 O    `    o   3     #    (    +       - U   3 }    A    D   I P         Z     +   [ (    5    #    @   
 ;   K 0    /    .    0    &   H H   o ,    C    C   ) C   m :    +    4    2   M 7    K    J    >   O E    G    7       T Q   n .    S    E   C 1    V    s    H    X    W   ( `    3        :   / #   j 2    3    >       4 ^    :   E >    :    8    @   3 v   t M       9 U   T v       ! H   ; P    q       G -   T *    F    B    F   7 B   ~ E    A    ,   I )   v     K    V    "   H    k     L   ?   E            A     {     =   | *            -    S   4     *            )    j   , '    [    8    8   T     .            4    #   $ M   H !    &                    5   7 .   m =    $    E    $   E 1   j     
        '                1   " O   T (    %    .    1   "	 .   T	    	    <
    
 !   b m        "    f   " _    C    U   - J    [        *     K #   l @    K    n    1    1        /    5   3 7   i 8    7    U    6   h O    /    T    >   t B    h    8   _ ?    /    3    p   < ]    4    t   @ L    F    9   I /    >    @    -   3 B   a J    ;    ;   + <   g ?    d    "   I    l \   y U    (   , )   U :    <    )    I   ! =   k J    4    W   )     8   L 7    I    ;    )   C .   m @    P    K   . '   z     8    !    S   
  +   ^  R          '     \   %!    !    a" G   " E   *# E   p# I   # B    $    C$    $ [   $ g   Y%    %    W&   &    ' *   ( T   ( 7   )    <) g   Q) F   ) I    * U   J* K   * 3   * X    +    y+ *   + %   + -   + <   + _   ;, }   , F   - <   `- @   -    - :   . Z   . 1   / `   O/ 8   /    / I   /    90 Y   F0 U   0 $   0 3   1 q   O1 o   1 /   12 E   a2 V   2 o   2 r   n3 *   3 Y   4 ]   f4 '   4 .   4 @   5 8   \5 4   5 2   5 4   5 2   26 /   e6 +   6 ;   6 6   6 L   47 (   7 '   7 &   7 %   7 >   8 ;   ^8 =   8 C   8    9 "   (9    K9 +   @: P   l: /   : (   : 
   ; E   !;    g; .   ; 0   ; /   ; '   < ,   9< 0   f< S   < Z   < X   F= S   = :   = "   .> Q   Q> 9   >    > 5   b?    ? "   4@ &   W@ E   ~@ *   @ (   @ M   A g   fA    A )   A '   B "   ;B .   ^B    B    B   B    D ]   D L   E g   OE )   E &   E F   F 4   OF G   F    F    F 0   F 3   )G *   ]G (   G )   G ,   G    H !   !H "   CH #   fH #   H $   H %   H >   H R   8I Q   I ;   I :   J 8   TJ 5   J P   J I   K *   ^K    K    4L 5   L G   L <   2M w   oM g   M 4   ON @   N %   N (   N 7   O 5   LO ?   O 2   O .   O m   $P m   P ^    Q 4   _Q '   Q j   Q *   'R H   RR *   R 0   R    R    S )   S    =S l   PS /   S    S    T U   xU ;   U    
V d   V     W e   W    ZX 4   Y V   @Y ,   Y 4   Y 0   Y 9   *Z    dZ |    [    }[ :   \ S   T\ X   \ z   ] i   |]    ]    ^ _   d_ :   _    _    ` 5   ` )   ` 0   ` +   -a '   Ya .   a .   a 7   a `   b :   xb *   b x   b =   Wc B   c #   c >   c    ;d X   Rd 4   d 5   d 0   e 3   Ge Q   {e u   e    Cf a   f /   4g 3   dg :   g 5   g u   	h V   h 6   h A   i r   Oi d   i m   'j e   j t   j B   pk D   k |   k v   ul M   l W   :m B   m 2   m E   n \   Nn F   n H   n    ;o q   Uo 9   o @   p    Bp    p    yq                                O            u  A        /   Z    *  +  +                 9    ]      P       !       	  E         m                 D    c     h         `      L  S     f      v             =            l      T        @          \                       k                    e            "                U        r  7       V  :      {    %        U           ?      N             G         {                             @  ^         I        #                                 &          `                         Y   b    u      '  B  )          S          Y          N      Y      j  @  D        0    z          T                    C        P    #                                        J    s      z          Q               H   }        c           e   !                             W     !   \    o         k       9      \  J  E              b            m       -    f                  	   w      5  X               C          4         W    >      Y           A          g         I          S  D                %               w      R        F       0      y    Q                 Z  g    a                  0     ;        )  X  W            X  J                         1     &       4  g    R                   _                    m            X         x        G  z       <      H  #                    R  7      k                      '           ^  /      ;          o  "  #                                                       3         q            Z      @      2                     j           K                  d               <                  1  `                         %         |  >  x             y  R        {              >           I             Q          r   "    .  v  h      3           q   y   :   r        ;            8                      	    P        M  M      z          f    e  p  y       <      2                  5        &                .     d  +  *         ~  4                 n  6    ,  D   W                       s                {            9     [        Q             J        p      0                b                W  u   ~                                  i     M  A    )    B                         :  -                         O          ,              L      z  w                  F                   a    r        M     |     [         >  F      	                       x  `         6   .  +           ,          U  
                  6      w       &  ?    J                         '    /        5              9  :  {       N                 /      6  ^            S    n                                       m    s  ~                                  I  [               |  V                       -           *  \    b     $  N    L  3     R            U                             o           K    _     B            3  P  L                                       ^  j  n                         K         F             
       |                           8        T          
  #  ,   (  =      i                            f              l  <  7  T   ]  x  d                        8  k                    t                           K                       2        +  q      K       '                   t  [    l  ;             X  C   G    F    %  -            *      _    j      Z  v            7    Q   B                     l   }  
  3      $                 C      e  @        P     h  E        a         h  
  "     V       N  ]                    2                      &  (   i                     :  d                 t        g    u           b                   x                             v      t                '  	  V        5    ?      f        U      g  c         1    s   )                          i                             H    =                          n      a    $                                6  j  (            !      \   .  ?                                                             y                             E     G          1                              $         k  m          -    E      [        I  .              |    }    ,    a   A    =                    `              ?             B                8            o  }                        Z                  2       i   ]           O          q                   $              e                          =      ;      w      0                    V    L      4                      ~  H  (            p  /  }         "     1  (                           l       )             >                       Y                 d              4    C  O               q  <            O                              c        h  G     9                                               o                                                                 D      u         t         5                   c               %  H      p                                             7    _           T    A                ~      v  s           r                         !  ^    p  _      ]  S      *  n    8       M                    total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s doesn't exist. Please specify --target or --directory %s doesn't look like an EFI partition.
 %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: not found %s: option '%c%s' doesn't allow an argument
 %s: option '%s' is ambiguous; possibilities: %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- --ppc PATH|--x86 FILE -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Bless DIR of HFS or HFS+ partition for PPC macs. Bless FILE of HFS or HFS+ partition for intel macs. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't create file: %s Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check if CPU supports Physical Address Extension. Check if FILE can be used as x86 multiboot kernel Check if FILE can be used as x86 multiboot2 kernel Check if FILE is ARM EFI file Check if FILE is BIOS bootsector Check if FILE is IA64 EFI file Check if FILE is hiberfil.sys in hibernated state Check if FILE is i386 EFI file Check if FILE is of specified type. Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find a free BootNNNN slot Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Default server is ${net_default_server} Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not apply any reed-solomon codes when embedding core.img. This option is only available on x86 BIOS targets. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enable/disable RTS/CTS. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Evaluate arguments as GRUB commands Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FONTS FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File size: %s
 File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Generating grub configuration file ... Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s Graft point syntax (E.g. /boot/grub/grub.cfg=./grub.cfg) is accepted HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS INSTALL_DEVICE must be system device filename.
%s copies GRUB images into %s.  On some platforms, it may also install GRUB into the boot sector. If FILENAME is `-', the default value %s is used.

There is no `delete' command; if you want to delete the whole environment
block, use `rm %s'. Import ZFS wrapping key stored in FILE. Incorrect VDEV Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s LOCALES Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List coreboot tables. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load DTB file. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load Truecrypt ISO. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load module. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... M MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MENU_ENTRY is a number, a menu item title or a menu item identifier. Please note that menu items in
submenus or sub-submenus require specifying the submenu components and then the
menu item component. The titles should be separated using the greater-than
character (>) with no extra spaces. Depending on your shell some characters including > may need escaping. More information about this is available
in the GRUB Manual in the section about the 'default' command.  MODULE MODULES Mac-style bless on HFS or HFS+ Mail xorriso support requests to <bug-xorriso@gnu.org>. Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NOT RUNNING:  NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Netboot directory for %s created. Configure your DHCP server to point to %s
 Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OPTIONS FILE OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Option -- switches to native xorriso command mode. Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] PUBKEY_ID Paletted  Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot into firmware setup menu. Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Render Apple .disk_label. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING STRING ... Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Script `%s' contains no commands and will do nothing
 Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set bit at BYTE:BIT in CMOS. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting GRUB_TIMEOUT to a non-zero value when GRUB_HIDDEN_TIMEOUT is set is no longer supported. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show CBMEM console content. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show the contents of a file. Show the current mappings. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Skip signature-checking of the environment file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Switch to native disk drivers. If no modules are specified default set (pata,ahci,usbms,ohci,uhci,ehci) is used Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 T TARGET THEMES Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This VDEV is a RAIDZ%llu
 This VDEV is a mirror This entry can be booted by any user. This requires setting GRUB_DEFAULT=saved in %s/default/grub.\n Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Transform syslinux config into GRUB one. Translate SET1 characters to SET2 in STRING. Translate to lower case. Translate to upper case. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown platform `%s-%s' Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized compression `%s' Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME VDEV element number %d isn't correct
 VDEV element number %d:
 VDEV with %d children
 Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. You've found a bug Your embedding area is unusually small.  core.img won't fit in it. Your xorriso doesn't support `--grub2-boot-info'. Some features are disabled. Please use xorriso 1.2.9 or later. Your xorriso doesn't support `--grub2-boot-info'. Your core image is too big. Boot as disk is disabled. Please use xorriso 1.2.9 or later. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [-s|--skip-sig] FILE SIGNATURE_FILE [PUBKEY_FILE] [-s|--skip-sig] PUBKEY_FILE [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [DIR] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTIONS] [SET1] [SET2] [STRING] [OPTION] SOURCE... [OPTION] [INSTALL_DEVICE] [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `%s' is not a local disk `cryptomount' command fails: %s `loopback' command fails: %s `nvsetenv' failed. 
You will have to set `boot-device' variable manually.  At the IEEE1275 prompt, type:
  %s
 `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format bless for ppc-based macs bless for x86-based macs blocklist FILE blocklists are incomplete blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't compress `%s' to `%s' can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s can't set %dx%d font size: Freetype error %d: %s cannot compress the kernel image cannot copy `%s' to `%s': %s cannot delete `%s': %s cannot find EFI directory cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot find locale `%s' cannot get translator command line for path `%s': %s cannot make temporary directory: %s cannot make temporary file: %s cannot open OS file `%s': %s cannot open `%s': %s cannot open directory `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu compress GRUB files [optional] connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. disk read fails at offset %lld, length %lld diskboot.img size must be %u bytes do not install bootsector do not probe for filesystems in DEVICE domain name component is too long don't update LED state don't update the `boot-device'/`Boot*' NVRAM variables. This option is only available on EFI and IEEE1275 targets. done embed FILE as an early config embed FILE as public key for signature checking embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enable ARCS (big-endian mips machines, mostly SGI) boot. Disables HFS+, APM, sparc64 and boot as disk image for i386-pc enable sparc boot. Disables HFS+, APM, ARCS and boot as disk image for i386-pc enabling %s support ... enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to copy Grub to the PReP partition failed to get canonical path of `%s' failed to read the sectors of the core image failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification initrd already loaded install FONTS [default=%s] install GRUB for TARGET platform [default=%s] install GRUB images under the directory DIR/%s instead of the %s directory install THEMES [default=%s] install device isn't specified install even if problems are detected install only LOCALES [default=all] install only MODULES and their dependencies [default=all] invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid argument invalid block size invalid color specification `%s' invalid device tree invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid modinfo file `%s' invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' invalid zImage ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no EFI routines are available for your platform no EFI routines are available when running in BIOS mode no IEEE1275 routines are available for your platform no SGI routines are available for your platform no `/' in canonical filename no command is specified no compression is available for your platform no decryption key available no hints available for your platform. Expect reduced performance no network card found no random number generator is available for your OS no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected only ipv4 only ipv6 other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found pre-load specified modules MODULES prefer ipv4 prefer ipv6 premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory as it will be seen on runtime [default=/]. root directory of TFTP server root directory of the syslinux disk [default=/]. route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the ID of bootloader. This option is only available on EFI and Macs. the PReP partition is not empty. If you are sure you want to use it, run dd to clear it: `%s' the argument `%s' requires an integer the chosen partition is not a PReP partition the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive %s is defined multiple times in the device map %s the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected EFI error unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported platform %s
 unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for label use COLOR for label background use COLOR for text use DIR as the EFI System Partition root. use DIR for PPC MAC install. use FILE as font (PF2). use FILE as font for label use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] use themes under DIR [default=%s] use translations under DIR [default=%s] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists write output to FILE [default=stdout]. wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub 2.02-pre1
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-12-20 17:49+0200
Last-Translator: Yuri Chornoivan <yurchor@ukr.net>
Language-Team: Ukrainian <translation-team-uk@lists.sourceforge.net>
Language: uk
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Generator: Lokalize 1.5
Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;
               загалом пам’яті: %d КіБ
     Пріоритетний режим недоступний
     Пріоритетний режим: %ux%u
   Некоректна контрольна сума EDID   Версія EDID: %u.%u
   Не вдалося ініціалізувати відеоадаптер   Дані недоступні   Дані VBE:   версія: %d.%d  мод. програмного забезпечення OEM: %d.%d
   або   (найлівіший)  (середній)  (найправіший)  - Розділ починається з %llu%s КіБ  - Розмір сектора: %u Б  - Загальний розмір %llu%s КіБ  - Загальний розмір невідомий  [ПАРАМЕТР...] %.*s: параметр ARGP_HELP_FMT має бути додатним %.*s: параметр ARGP_HELP_FMT потребує значення %.*s: невідомий параметр ARGP_HELP_FMT %dс Залишилося %d с. %s містить файлову систему %s. Невідомо, чи підтримується цією файловою системою надання місця для завантажувача у стилі DOS. Встановлення GRUB у цю файлову систему може призвести до РУЙНУВАННЯ ФАЙЛОВОЇ СИСТЕМИ, якщо важливі дані цієї системи буде перезаписано grub-setup (--skip-fs-probe вимикає цю перевірку, ви можете скористатися цим параметром, якщо вважаєте, що пошкодження є неможливими). %s містить карту розділів %s і LDM. Невідомо, чи є безпечною таке поєднання. Встановлення GRUB на цю карту розділів може призвести до РУЙНУВАННЯ ФАЙЛОВОЇ СИСТЕМИ, якщо важливі дані цієї системи буде перезаписано grub-setup (--skip-fs-probe вимикає цю перевірку, ви можете скористатися цим параметром, якщо вважаєте, що пошкодження є неможливими). %s містить карту розділів %s. Невідомо, чи підтримується цією картою розділів надання місця для завантажувача у стилі DOS. Встановлення GRUB на цю карту розділів може призвести до РУЙНУВАННЯ ФАЙЛОВОЇ СИСТЕМИ, якщо важливі дані цієї системи буде перезаписано grub-setup (--skip-fs-probe вимикає цю перевірку, ви можете скористатися цим параметром, якщо вважаєте, що пошкодження є неможливими). У %s не передбачено підтримки UUID %s не існує. Будь ласка, вкажіть --target або --directory %s не є розділом EFI.
 %s створює розкладку клавіатури для GRUB за допомогою ckbcomp\n %s вважається застарілим. Замість нього скористайтеся set gfxpayload=%s до команди linux.
 %s вважається застарілим. Режим VGA %d не розпізнається. Замість нього скористайтеся set gfxpayload=ШИРИНАxВИСОТА[xГЛИБИНА] перед командою linux.
 %s ще не підтримується grub-mkconfig.\n %s, з Hurd %s %s, з Hurd %s (режим відновлення) %s, з Linux %s %s, з Linux %s (режим відновлення) %s, з Xen %s і Linux %s %s, з Xen %s і Linux %s (режим відновлення) %s, з гіпервізором Xen %s, з kFreeBSD %s %s, з kFreeBSD %s (режим відновлення) %s, з ядром %s (за допомогою %s) %s, з ядром %s (за допомогою %s, режим відновлення) %s: НЕВІДПОВІДНІСТЬ ХЕШІВ
 %s: ГАРАЗД
 %s: ПОМИЛКА ЧИТАННЯ
 %s: занадто багато аргументів
 %s: вам слід віддати цю команду від імені адміністратора (root)\n %s: помилка: %s: інформація: %s: некоректний параметр — «%c»
 %s: не знайдено %s: додавання аргументів до параметра «%c%s» не передбачено
 %s: неоднозначний параметр «%s»; можливі варіанти: %s: додавання аргументів до параметра «--%s» не передбачено
 %s: до параметра «--%s» слід додати аргумент
 %s: додавання аргументів до параметра «-W %s» не передбачено
 %s: параметр «-W %s» не є однозначним
 %s: до параметра «-W %s» слід додати аргумент
 %s: до параметра слід додати аргумент — «%c»
 %s: параметр потребує аргументу -- «%s»\n %s: невідомий параметр «%c%s»
 %s: невідомий параметр «--%s»
 %s: попередження: (32-бітове) (64-бітове) (ПОМИЛКА ПРОГРАМИ) Невідома версія!? (ПОМИЛКА ПРОГРАМИ) Параметр має розпізнаватися!? (на %s) - Мітка «%s» - Час останньої зміни — %d-%02d-%02d %02d:%02d:%02d %s --БІЛЬШЕ-- --ppc ШЛЯХ|--x86 ФАЙЛ -h ХЕШ [-c ФАЙЛ [-p ПРЕФІКС]] [ФАЙЛ1 [ФАЙЛ2 ...]] -l | -r | [-s] пристрій_grub диск_ОС. ,5 Підтримується 16-бітовий захищений інтерфейс
 Не підтримується 16-бітовий захищений інтерфейс
 Підтримується 32-бітовий захищений інтерфейс
 Не підтримується 32-бітовий захищений інтерфейс
 =ЗНАЧЕННЯ > пам’ять для сталого сховища даних ACPI відновлювана пам’ять ACPI Помилка під час вимикання за допомогою ACPI АДРЕСА АДРЕСА ЗНАЧЕННЯ [МАСКА] АДРЕСА [РОЗМІР] АДРЕСА1,МАСКА1[,АДРЕСА2,МАСКА2[,...]] АДРЕСА СЕРВЕР_DNS APM вимкнено
 APM вільний
 APM увімкнено
 APM зайнятий
 ARGP_HELP_FMT: значення %s є меншим або рівним %s ASCII Приймати завершення рядків CR/NL у стилі DOS. Активні термінали введення даних: Активні термінали виведення даних: Адаптер «%s»:
 Додати сервер DNS Додати мережеву адресу. Додати мережевий маршрут. Додаткові параметри для %s Додаткові параметри для %s (з гіпервізором Xen) Дозволити перервати за допомогою ESC. Запитати про назву файла для перезавантаження. Вважати вхідні дані шістнадцятковим значенням. Вважати вхідні дані паролем. Вважати вхідні дані необробленими. Спроба розшифрування основного ключа... Спроба встановлення GRUB на диск з декількома мітками розділів або з міткою розділу і файловою системою. У поточній версії ще не передбачено такої можливості. Спроба встановлення GRUB на диск з декількома мітками розділів. У поточній версії ще не передбачено такої можливості. Спроба встановлення GRUB на диск без розділів або на певний розділ диска. Вам НЕ ВАРТО виконувати подібні маніпуляції. Доступні термінали введення даних: Доступні термінали виведення даних: Б Б/с ДАМП_BIOS [ДАМП_INT10] БЛОК БАЙТ:БІТ Режим фонового зображення. Базовий каталог списку хешів. Схвалити КАТАЛОГ розділу HFS або HFS+ для Mac на основі PPC. Схвалити ФАЙЛ розділу HFS або HFS+ для Mac на основі Intel. Завантажити систему, засновану на BIOS. Завантажити операційну систему. Завантажити систему у режимі єдиного користувача. Завантаження з показом діагностичних повідомлень. Показувати докладні повідомлення під час завантаження. Завантаження «%s» Завантаження списку команд Завантаження системи у «сліпому» режимі Шлях завантаження: %s
 Шлях завантаження: недоступний
 Перервати роботу і перемкнутись на GDB CGA  КОЛІР КОМАНДА [ПАРАМЕТРИ] Режим бездіяльності процесора не уповільнює процесор
 Режим бездіяльності процесора уповільнює процесор
 CS5536 за адресою %d:%d.%d
 Не вдалося створити файл: %s Не вдалося увімкнути область ROM. Змінити налаштовані пристрої. Змінити тип розділу Перевірити стан Alt. Перевірити стан Ctrl. Перевірити стан Shift. Перевірити можливості ЦП. Перевірити хеші файлів за допомогою списку хешів у файлі ФАЙЛ. Перевірити, чи процесор підтримує 64-бітовий режим (long) (типова поведінка). Перевірити, чи передбачено у процесорі підтримку розширення фізичних адрес (PAE). Перевірити, чи можна використовувати ФАЙЛ як ядро multiboot x86 Перевірити, чи можна використовувати ФАЙЛ як ядро multiboot2 x86 Перевірити, чи є ФАЙЛ файлом ARM EFI Перевірити, чи є ФАЙЛ завантажувальним сектором BIOS Перевірити, чи є ФАЙЛ файлом IA64 EFI Перевірити, чи є ФАЙЛ файлом hiberfil.sys у стані призупинення роботи системи Перевірити, чи є ФАЙЛ файлом i386 EFI Перевірити, чи належить ФАЙЛ до вказаного типу. Перевірити стан модифікатора клавіатури. Перевірити, чи є запис користувача у СПИСКУ_КОРИСТУВАЧІВ. Виконує перевірку файла налаштування скриптів GRUB на синтаксичні помилки. Спорожнити екран. Занулено активний прапорець на %d. 
 Команди: Порівняти ФАЙЛ з ЛОКАЛЬНИМ_ФАЙЛОМ. Порівняння файла «%s» з «%s»:
 Порівняти два файла. Обчислити UUID XNU пристрою. Обчислити або перевірити хеш контрольної суми. Вказати послідовний порт. Продовжити виконання команд циклу Перетворити типові формати шрифтів на PF2 Копіювати ФАЙЛ у ЛОКАЛЬНИЙ_ФАЙЛ. Копіювати ФАЙЛ до стандартного виведення даних. Не вдалося виявити драйвер FPSWA Не вдалося знайти вільного слоту BootNNNN Не вдалося знайти фізичний том «%s». Можливо, у основному образі не вистачає якихось модулів. Не вдалося завантажити sha256 Не вдалося завантажити sha512 Створити BIOS-подібні конструкції для зворотної сумісності з вже встановленими операційними системами. Створити блоковий файл порожнього середовища. Поточні типи terminfo: ПРИСТРІЙ ПРИСТРІЙ [РОЗДІЛ[+/-[ТИП]]] ... ПРИСТРІЙ має бути пристроєм ОС (наприклад, /dev/sda). НАЗВА_ПРИСТРОЮ КАТАЛОГ КАТАЛОГ [OSBundleRequired] СЕРВЕР_DNS Інструмент діагностики драйвера файлової системи. Позначити діапазони пам’яті як пошкоджені (badram). Розпакувальний є занадто великим Типовим сервером є ${net_default_server} Визначити запис меню. Визначити підменю. Вилучити адресу у мережі. Вилучити мережевий маршрут. Вилучити диск зворотної петлі. Вилучити змінні. Визначити драйвер. Визначити UUID файлової системи. Визначити мітку файлової системи. Визначити тип файлової системи. Визначити тип карти розділів. Пристрій %s: Ід. пристрою: %s
 Ід. пристрою: недоступний Безпосередній колір, маска: %d/%d/%d/%d  позиція: %d/%d/%d/%d Вимкнути ACPI. Вимкнути SMP. Вимкнути виведення всіх повідомлень під час завантаження. Вимкнути або увімкнути SMART (0/1). Відкидаємо помилково вкладений розділ (%s,%s,%s%d) Статистичні дані дискового кешу: відповідники = %lu (%lu %02lu%%), помилки = %lu
 Перед списком дисків слід вказати кількість дисків.
 Показати дані щодо версії FPSWA. Показати дані щодо працездатності за SMART. Показати рядок тексту. Показати список блоків ФАЙЛа. Показувати повідомлення у всіх консолях. Показати дані щодо режиму живлення. Показати довідку з цієї команди і завершити роботу. Показати ці довідкові дані і завершити роботу. Показати або встановити поточну дату і час. Не застосовувати коди Ріда-Соломона, якщо виконується вбудовування core.img. Цим параметром можна скористатися лише для BIOS x86. Не виводити кінцевий символ завершення рядка. Не показувати повідомлень. Не шукати на дискетах. Не використовувати APM для вимикання комп’ютера. Нічого не виконувати, успішне завершення. Нічого не виконувати, невдале завершення. Не показувати діагностичні повідомлення при завантаженні. Не завантажувати таблиці комп’ютера, вказані за допомогою списку значень, відокремлених комами. Не виконувати перезавантаження, просто вимкнути. Не зупиняти виконання після першої помилки. Не оновлювати EBDA. Може допомогти у разі помилок чи підвисань для деяких BIOS, але ні на що не впливає, якщо операційна система не отримує RSDP від GRUB. ЗМІННА_СЕРЕДОВИЩА ЗМІННА_СЕРЕДОВИЩА [ЗМІННА_СЕРЕДОВИЩА] ... ПОМИЛКА: не знайдено відповідної розкладки клавіатури. Перевірте вхідні дані.
 Щоб вийти, натисніть ESC. ВИРАЗ ВИРАЗ ] Витрачено часу: %d.%03d с 
 Витрачено часу: %d.%03d секунд 
 Вбудовування неможливе. GRUB можна встановити на таку конфігурацію лише з використанням списків блоків (blocklists). Використання списків блоків може ПРИЗВЕСТИ ДО НЕСТАБІЛЬНОЇ РОБОТИ, не радимо ними користуватися. Імітувати натискання послідовності клавіш Увімкнути обробку екранування за допомогою символу зворотної похилої риски. Увімкнути або вимкнути RTS/CTS. Введіть пароль до ZFS:  Увійти до KDB під час завантаження. Увійти у звичайний режим. Введіть пароль до %s%s%s (%s):  Введіть пароль:  Введіть ім’я користувача:  Помилка під час спроби обробки параметрів командного рядка
 Обчислити значення виразу. Обробити аргументи як команди GRUB Не вдалося завершити роботу Вийти з GRUB. Вийти з циклів Вийти зі звичайного режиму. Експортувати змінні. Експортувати таблиці версії 1 до операційної системи. Експортувати таблиці версії 2 або 3 до операційної системи. ФАЙЛ ФАЙЛ [ПАРАМЕТР ...] ФАЙЛ [ПАРАМЕТРИ...] ФАЙЛ | ТЕМП [ТОН1 ТРИВАЛІСТЬ1] [ТОН2 ТРИВАЛІСТЬ2] ...  ФАЙЛ... ФАЙЛ1 ФАЙЛ2 НАЗВА_ФАЙЛА КОМАНДА ФАЙЛОВА_СИСТЕМА [ЗМІННА] ФАЙЛ|prompt ШРИФТИ ФОРМАТ Протоколу FPSWA не вдалося знайти інтерфейс Модифікація FPSWA: %x
 З-ДО[,З-ДО] З[K|M|G] ДО[K|M|G] Помилка FT_Init_FreeType Не вдалося завантажити типовий та резервний записи.
 Не вдалося створити ієрархію «device-mapper» Повертаємося до «%s» Розмір файла: %s
 У файловій системі «%s» не передбачено підтримки вбудовування Розбіжність виявлено за адресою %llu: 0x%x [%s], 0x%x [%s]
 Не збігаються розміри файлів: %llu [%s], %llu [%s]
 Файлова система недоступна Тип файлової системи %s Заповнити гібридний запис MBR пристрою GPT ПРИСТРІЙ. Вказані розділи будуть частиною гібридного запису MBR. Можна використовувати до 3 розділів. ТИП є типом MBR. «+» означає, що розділ є активним. Активним може бути лише один розділ. Завершити завантаження емулятора EFI. Спершу спробувати пристрій ПІДКАЗКА у разі використання ARC. Якщо запис ПІДКАЗКА завершується комою, також спробувати вкладені розділи. Спершу спробувати пристрій ПІДКАЗКА у разі використання BIOS. Якщо запис ПІДКАЗКА завершується комою, також спробувати вкладені розділи. Спершу спробувати пристрій ПІДКАЗКА у разі використання EFI. Якщо запис ПІДКАЗКА завершується комою, також спробувати вкладені розділи. Спершу спробувати пристрій ПІДКАЗКА у разі використання IEEE1275. Якщо запис ПІДКАЗКА завершується комою, також спробувати вкладені розділи. Спершу спробувати пристрій ПІДКАЗКА у разі підтримки безпосереднього доступу до обладнання. Якщо запис ПІДКАЗКА завершується комою, також спробувати вкладені розділи. Спершу спробувати пристрій ПІДКАЗКА. Якщо запис ПІДКАЗКА завершується комою, також спробувати пошук на вкладених розділах. Виправити проблему з відео. Виявлено %s на %s (%s)\n Виявлено %s на %s\n Виявлено GNU Mach: %s Виявлено модуль Hurd: %s Виявлено ядро NetBSD: %s\n Виявлено тло: %s\n Виявлено образ initrd: %s\n Виявлено каталог модулів ядра: %s\n Виявлено ядро FreeBSD: %s\n Виявлено образ linux: %s\n Виявлено тему: %s\n Помилка Freetype %d під час спроби завантаження гліфа 0x%x для U+0x%x%s Зафіксувати параметри безпеки ATA до перезавантаження. п’ятниця Г GNU GRUB, версія %s Меню завантаження GRUB GRUB ще невідомий спосіб вимикання цього комп’ютера! Імітатор GRUB.   ПРИСТРІЙ_GRUB=ПРИСТРІЙ_PLAN9 Мотлох у ARGP_HELP_FMT: %s Створити клавіатурну розкладку GRUB на основі розкладки для консолі Linux. Створити хеш пароля PBKDF2. Створити файл налаштувань grub Створити окремий образ (що містить всі модулі) у вибраному форматі Створюємо файл налаштувань grub... Визначити контрольну суму crc32 ФАЙЛа. Отримати відомості щодо дискового кешу. Отримати або встановити параметри диска ATA. ГіБ ГіБ/с Можна використовувати синтаксичні конструкції приєднання (наприклад /boot/grub/grub.cfg=./grub.cfg) ХЕШ ПІДКАЗКА Вимкнути систему, якщо можливо, за допомогою APM. Завершує роботу комп’ютера. Ця команда працює не для всіх реалізацій мікропрограм. Обробити N байтів з файла виведених даних. Привіт, світе Hercules  ІД ОБРАЗ1 [ОБРАЗ2 ...] ТОЧКА_МОНТУВАННЯ АДРЕСА_ОБРАЗУ КОМАНДИ Значенням параметра ПРІСТРІЙ_ДЛЯ_ВСТАНОВЛЕННЯ має бути назва файла системного пристрою.
%s копіює образи GRUB до %s. На деяких платформах також може бути встановлено GRUB до сектора завантаження. Якщо буде вказано НАЗВУ_ФАЙЛА «-», буде використано типове значення, %s.

Команди «delete» не передбачено. Якщо вам потрібно вилучити увесь блок середовища,
скористайтеся командою «rm %s». Імпортувати ключ ZFS, що зберігається у ФАЙЛі. Некоректний VDEV Некоректний віртуальний пристрій: тип недоступний Вставити модуль. Встановити GRUB на ваш пристрій. Встановлення завершено. Помилок не виявлено. Некоректне зворотне посилання Некоректна назва класу символів Некоректний символ порівняння Некоректна команда %s.
 Некоректний вміст \{\} Некоректний пристрій «%s».
 Некоректна кількість дисків.
 Помилка у попередньому формальному виразі Некоректне завершення діапазону Помилка у формальному виразі Виконати налаштування маршрутизації користувачем. К ЯДРО АРГУМЕНТИ КЛАВІША Клавіша для завантаження цього пункту. КіБ КіБ/с ЛОКАЛІ Віртуальній пристрій-лист (файл або диск) Підтримки застарілого параметра «ask» вже не передбачено. Позначення: маска/позиція=червоний/зелений/синій/додатковий Довжина створеного хешу Довжина солі Показати список серверів DNS. Показати список пристроїв PCI. Показати список всіх файлів. Показати список доступних відеорежимів. Якщо буде вказано роздільну здатність, у списку залишаться лише режими, які їй відповідають. Показати список таблиць coreboot. Показати список пристроїв і файлів. Список пристроїв або файлів. Показати список пристроїв. Показати список файлів у каталозі ШЛЯХ. Показати карту пам’яті, надану мікропрограмою (firmware). Список підтримуваних відеорежимів: Список користувачів, які можуть завантажувати цей пункт. Показати список або вибрати термінал для введення даних. Показати список або вибрати термінал для виведення даних. Показати список поточних змінних. Список завантажених шрифтів. Показати список змінних з блокового файла оточення. Завантажити 64-бітовий образ XNU. Завантажити дамп BIOS. Завантажити файл DTB. Завантажити середовище FreeBSD. Завантажити модуль ядра FreeBSD (ELF). Завантажити модуль ядра FreeBSD. Завантажити kernel.sys FreeDOS. Завантажити Linux. Завантажити NTLDR або BootMGR. Завантажити модуль ядра NetBSD (ELF). Завантажити модуль ядра NetBSD. Завантажити ядро Plan9. Завантажити образ ISO з Truecrypt. Завантажити каталог розширення XNU. Завантажити пакунок розширення XNU. Завантажити розширення XNU. Завантажити образ XNU. Завантажити диск у пам’яті XNU. У операційній системі буде показано як md0. Завантажити дамп «device-properties». Завантажити образ PXE. Завантажити розкладку клавіатури. Завантажити ядро multiboot 2. Завантажити модуль multiboot 2. Завантажити ядро multiboot. Завантажити модуль multiboot. Завантажити вітальне зображення для XNU. Завантажити образ XNU приспаної системи. Завантажити і ініціалізувати емулятор EFI. Завантажити інший інструмент завантаження. Завантажити інший файл налаштування, використати лише пункти меню. Завантажити інший файл налаштування без зміни контексту, використати лише пункти меню. Завантажити інший файл налаштування без зміни контексту. Завантажити інший файл налаштування. Завантажити інші дані coreboot Завантажити зображення тла для активного термінала. Завантажувати таблиці ACPI комп’ютера і таблиці, вказані параметрами. Завантажити initrd. Завантажити диск даних оперативної пам’яті kOpenBSD. Завантажити ядро FreeBSD. Завантажити ядро NetBSD. Завантажити ядро OpenBSD. Завантажити модуль. Завантажувати лише таблиці, вказані за допомогою списку значень, відокремлених комами. Завантажити файл у декілька способів. Завантажити змінні з блокового файла оточення. Завантажити ключ шифрування zfs. Завантажені шрифти: Завантаження GNU Mach… Завантаження Linux %s… Завантаження Xen %s… Завантаження початкового диска у оперативній пам’яті… Завантаження ядра FreeBSD %s… Завантаження ядра Illumos... Завантаження Hurd… М Помилка під час перевірки MAC-адреси ПУНКТ_МЕНЮ є номером, назвою пункту меню або ідентифікатором пункту меню. ПУНКТ_МЕНЮ є номером, заголовком пункту меню або ідентифікатором пункту меню. Будь ласка, зауважте, що для пунктів
у підменю та підпідменю слід вказувати компонент підменю, а потім компонент меню.
Заголовки слід відокремлювати символом «більше» (>) без додаткових пробілів.
Залежно від використаної командної оболонки, можливо доведеться екранувати
деякі з символів >. Докладніше про це можна дізнатися з підручника з GRUB,
розділ щодо команди «default».  МОДУЛЬ МОДУЛІ Схвалення у стилі Mac на HFS або HFS+ Запити щодо підтримки xorriso слід надсилати на адресу <bug-xorriso@gnu.org>. Створити придатний до завантаження образ GRUB на компакт-диску, карті пам’яті або дискеті. Створити файл розкладки клавіатури для GRUB. Створити придатний до завантаження образ GRUB. Створити віртуальний диск на основі файла. Зробити розділ активним Керувати відображеннями BIOS пристроїв. Обов’язкові і додаткові аргументи до довгих форм запису параметрів є також об’язковими або додатковими для всіх відповідних скорочених форм запису. Керувати пристроями PCI. Виміряти час, використаний на виконання КОМАНДИ Пам’ять вичерпано Тип пам’яті: DDR2. Тип пам’яті: невідомий. Ідентифікатор пункту меню. Не вказано пункт меню. Тип запису меню. МіБ МіБ/с Передбачено підтримку декількох BASH-подібних команд редагування рядків. Натискання клавіші TAB під час введення першого слова призведе до показу можливих варіантів завершення команди. Для інших слів натискання TAB призведе до показу списку можливих варіантів завершення назви пристрою або файла. %s Передбачено підтримку декількох команд Emacs-подібного редагування рядків. Натискання клавіші TAB призводить до показу списку можливих варіантів завершення, натискання Ctrl-X або F10 — до завантаження, Ctrl-C або F2 — до переходу у режим командного рядка, ESC — до відкидання внесених змін і повернення до меню GRUB. Не вистачає аргументів
 Не вказано файла вхідних даних
 понеділок Чорно-білий  Декілька пристроїв для встановлення? Декілька пунктів меню? Змонтувати пристрій з шифруванням даних. Змонтувати всі томи зі встановленим прапорцем «boot». Змонтувати всі. Змонтувати за UUID. Змонтувати пристрої з шифруванням даних. НАЗВА НАЗВА [ЗМІННА] [ПІДКАЗКИ] НЕ ЗАПУЩЕНО:  ЧИСЛО КІЛЬКІСТЬ СЕКУНД Назва	К-ть посилань	Залежності
 Використовуються типові драйвери диска. У використанні інтерфейсу мікропрограми диска відмовлено. Створено каталог завантаження з мережі, %s. Налаштуйте ваш сервер DHCP так, щоб його було спрямовано на %s
 Мережеві протоколи: Новий MBR записано до «%s»
 Не виявлено CS5536 FPSWA не знайдено Статистичні дані часу завантаження недоступні
 Не вказано команди.
 Не вказано жодного пристрою.
 Статистичні дані щодо кешу на диску недоступні
 Не було перепризначено жодного пристрою Виявлено невідому файлову систему Не знайдено Не вказано шлях.
 Не вказано шляху або пристрою.
 Не виявлено попереднього формального виразу Ієрархія віртуальних пристроїв недоступна Неланцюжковий 4  Недостатньо параметрів команди.
 Зараз, будь ласка, встановіть зв’язок з віддаленого засобу діагностики. Кількість ітерацій PBKDF2 ПАРАМЕТРИ ФАЙЛ Диск ОС #num ------> пристрій GRUB/BIOS Помилка під час спроби відкриття файла ОС, %s: %s Параметр -- перемикає у режим типових команд xorriso. Параметри: Пошук поза діапазоном: %d
 Заміна поза діапазоном (%d, %d)
 Перевизначити вгадану карту пристроїв Plan9. П КОМАНДИ РОБОТИ З РОЗДІЛАМИ ШЛЯХ Хеш PBKDF2 вашого пароля дорівнює %s
 ПОРТ ПОРТ ЗНАЧЕННЯ [МАСКА] ІД_ВІДКР_КЛЮЧА З палітри  Обробити застарілі налаштування у новому контексті Обробити застарілі налаштування у новому контексті, використати лише записи меню Обробити застарілі налаштування у тому самому контексті Обробити застарілі налаштування у тому самому контексті, використати лише записи меню Номер частини: %s.
 Розділ %d зараз є активним. 
 Розділ %s: У стилі розділів «%s» не передбачено підтримки вбудовування Шлях: %s
 Шлях: недоступний Виконати КОМАНДИ обробки розділу.
Скористайтеся командою «parttool РОЗДІЛ help», щоб ознайомитися з доступними командами. Виконати пошук DNS Виконати автоматичне налаштовування IPV6 Виконати прямі і зворотні відображення. ПіБ ПіБ/с Площинний  Відтворити звук. Будь ласка, не користуйтеся застарілим заголовком «%s» для GRUB_DEFAULT, скористайтеся «%s» (у версіях до 2.00) або «%s» (у 2.00 та новіших версіях) GUID сховища: %016llx
 GUID сховища: недоступне Назва сховища: %s
 Стан сховища: недоступне Стан сховища: активне Стан сховища: знищено Стан сховища: експортоване Стан сховища: пристрій ARC рівня 2 Стан сховища: потенційно активне Стан сховища: зарезервовано для гарячого резервування Стан сховища: недоступне Стан сховища: неініціалізоване Можливі параметри: Можливі команди: Можливі пристрої: Можливі файли: Можливі розділи: Можливі елементи: Неочікуване завершення формального виразу Натисніть будь-яку клавішу, щоб продовжити... Натисніть будь-яку клавішу, щоб запустити xnu Натисніть Enter, щоб почати завантаження позначеної ОС. Натисніть «e», щоб змінити команду до завантаження системи, «c» — щоб перейти у режим командного рядка. Натисніть Enter, щоб почати завантаження позначеної ОС. Натисніть «e», щоб змінити команду до завантаження системи, «c» — щоб перейти у режим командного рядка. Esc — повернутися до попереднього меню. Показати дані щодо пам’яті. Вивести дані ZFS щодо ПРИСТРОЮ. Вивести ZFS-BOOTFSOBJ або записати його значення в ЗМІННУ        Показати список блоків. Вивести і виконати блоковий параметр. Вивести дані зворотного трасування. Показати профіль пристрою та його параметри. Показати розміри у зручному для читання форматі. Визначити дані щодо пристрою за вказаним шляхом (або пристроєм, якщо вказано параметр -d). пам’ять з таблицями coreboot пам’ять з кодом мікропрограми Слот пам’яті з номером %d
 ФОРМАЛЬНИЙ_ВИРАЗ РЯДОК Виявлено образ ROM. Прочитати 16-бітове значення за АДРЕСОЮ. Прочитати 16-бітове значення з ПОРТу. Прочитати 32-бітове значення за АДРЕСОЮ. Прочитати 32-бітове значення з ПОРТу. Прочитати 8-бітове значення за АДРЕСОЮ. Прочитати 8-бітове значення з ПОРТу. Прочитати лише ВКАЗАНУ кількість байтів. Не вдалося перезавантажити Перезавантажитися до меню налаштовування мікропрограми. Перезавантажити комп’ютер. Повторіть пароль:  Регістр %x з %x:%02x.%x дорівнює %x
 Занадто об’ємний формальний вираз Вилучити сервер DNS Вилучити модуль. Вилучити змінну середовища. Вилучити всі ділянки пам’яті у вказаному діапазоні. Показати Apple .disk_label. Повідомляйте про вади на адресу %s.
 Про вади повідомляйте на адресу <bug-grub@gnu.org>. Надіслано запит щодо послідовного термінала, але не визначено GRUB_SERIAL_COMMAND. Буде використано типові параметри. Відновити типові значення всіх відображень. Отримати відомості щодо пристрою. Повернутися з функції. Повернутися до запрошення IEEE1275. Віддайте команду «gdb %s %d» і встановіть нульове значення ARGS.HOLD.
 Віддайте команду «go», щоб відновити роботу GRUB. СЕК СКОРОЧЕНА_НАЗВА СКОРОЧЕНА_НАЗВА КАРТКА АДРЕСА [АПАРАТНА_АДРЕСА] СКОРОЧЕНА_НАЗВА МЕРЕЖА [ІНТЕРФЕЙС| gw ШЛЮЗ] РОЗМІР ДЖЕРЕЛО|-u UUID|-a|-b РЯДОК РЯДОК ... субота Надати змінній НАЗВА_ЗМІННОЇ прочитане значення. Зберегти змінні до блокового файла оточення. Повідомити «Привіт, світе». У скрипті «%s» не міститься команд. Його виконання не призведе до жодних наслідків.
 Шукати пристрої за UUID. Якщо вказано ЗМІННУ, їй буде надано значення першого знайденого пристрою. Шукати пристрої за файлом. Шукати пристрої за UUID файлової системи. Шукати пристрої за міткою файлової системи. Шукати пристрої за файлом, міткою файлової системи або унікальним ідентифікатором файлової системи (UUID). Якщо вказано параметр --set, змінній буде надано значення першого знайденого пристрою. Якщо назви змінної не буде вказано, буде використано назву «root». Шукати пристрої за файлом. Якщо вказано ЗМІННУ, їй буде надано значення першого знайденого пристрою. Шукати пристрої за міткою. Якщо вказано ЗМІННУ, їй буде надано значення першого знайденого пристрою. Сектор %llu вже використано контролером raid «%s»; пропускаємо його. Будь ласка, надішліть виробникові пристрою для зберігання даних прохання не зберігати дані у області MBR. Сектор %llu вже використано програмою «%s»; пропускаємо його. Вказана програма може призвести до проблем з завантаженням або інших проблем у роботі системи. Будь ласка, попросіть авторів програми не зберігати дані у області завантаження. Виберіть пристрій за його розташуванням на каналі. Вибрати пристрій за ідентифікаторами виробника і пристрою. Налаштувати Advanced Power Management
(1=мін, ..., 254=макс, 255=вимкн). Налаштувати Automatic Acoustic Management
(0=вимкн, 128=тихо, ..., 254=швидко). Встановити OEMID у RSDP, XSDT та RSDT. Встановити ідентифікатор OEMTABLE у RSDP, XSDT та RSDT. Встановити модифікацію OEMTABLE у RSDP, XSDT та RSDT. Встановити прапорець «hidden» у типі розділу Встановити змінну для повернутого значення. Встановити для змінної значення першого знайденого пристрою. Встановити змінну середовища. Встановити колір тла для активного термінала. Встановити біт за адресою БАЙТ:БІТ у CMOS. Встановити поле програми для створення у RSDP, XSDT та RSDT. Встановити версію програми для створення у RSDP, XSDT та RSDT. Встановити зневаджувальну змінну середовища. Перевести пристрій у режим сну. Перевести пристрій у режим очікування. Встановити значення позиційних параметрів. Вказати кореневий пристрій. Встановити затримку переходу у режим очікування
(0=вимкн, 1=5с, 2=10с, ..., 240=20хв, 241=30хв, ...). Встановити значення типу terminfo ТЕРМІНАЛА ТИП.
 Встановити типовий пункт меню завантаження для GRUB лише для наступного завантаження. Встановити типовий пункт меню завантаження для GRUB. Вказати адресу послідовного порту. Вказати парність послідовного порту. Вказати швидкість послідовного порту. Вказати кількість стоп-бітів послідовного порту. Вказати довжину слова послідовного порту. Вказати номер послідовного порту. Визначення образів для завантаження з ПРИСТРОЮ.

За типових умов вам не слід запускати цю програму безпосередньо. Скористайтеся краще grub-install. Встановити пароль користувача (PBKDF2).  Визначити пароль користувача (незашифрованим). Небезпечно і не рекомендується. Визначити значення змінної за введеними користувачем даними. Встановити значення змінних. Підтримки встановлення ненульового значення для GRUB_TIMEOUT, якщо встановлено GRUB_HIDDEN_TIMEOUT, не передбачено. Встановлення типу розділу у значення 0x%x
 Зсунути значення позиційних параметрів. Показати дані щодо ACPI. Показати відомості APM. Показати вміст консолі CBMEM. Показати довідкове повідомлення. Показати довгий список з додатковими відомостями. Показати вміст файла ФАЙЛ у шістнадцятковому форматі. Показати список завантажених модулів. Показати вміст пам’яті. Показати вміст сектора ATA IDENTIFY без обробки. Показати вміст файла або пам’яті без обробки. Показати вміст файла. Показати поточні відображення. Показати це повідомлення. Показати лише таблиці версії 1. Показати лише таблиці версії 2 і 3. Не вдалося вимкнути Імітувати команду «initrd» попередньої версії grub Імітувати команду «kernel» попередньої версії grub Імітувати команду «modulenounzip» попередньої версії grub Імітувати команду «password» попередньої версії grub Імітувати команду «password» попередньої версії grub у режимі пункту меню Пропустити N байтів з файла виведених даних. Пропустити вказану кількість байтів на початку файла. Пропустити перевірку підписів файла середовища. Відкрито слот %d
 Виявлено деякі частини Hurd, але їх недостатньо для завантаження. Вказати назву файла. Вказати хеш для використання. Вказати один або декілька файлів для завантаження. Вкажіть розмір для кожної з дій щодо читання Вказати кількість файлів вхідних даних. Швидкість: %s 
 Запустити заглушку GDB на вказаному порті Зупинити роботу заглушки GDB Зберегти компонент з номером НОМЕР до змінної НАЗВА_ЗМІННОЇ. Успіх неділя Придушити звичайні повідомлення (показувати лише попередження). Перемкнутися на природні драйвери дисків. Якщо модулів не вказано, використовується типова послідовність (pata,ahci,usbms,ohci,uhci,ehci). Синтаксична помилку у рядку %u
 Виявлено синтаксичні помилки у файлі налаштувань GRUB.
Переконайтеся, що у файлах /etc/default/grub і /etc/grub.d/*
немає помилок, будь ласка, створіть звіт щодо вади з
долученням файла %s. Простір введення-виведення контролера каналу керування системою починається з 0x%x
 Т ПРИЗНАЧЕННЯ ТЕМИ Формат призначення не вказано (скористайтеся параметром -O). Термінал має відповідні геометричні параметри. У терміналі можна використовувати лише ASCII [типове значення]. Термінал з логічним впорядкуванням UTF-8. Термінал з візуальним впорядкуванням UTF-8. Перевірка підтримки USB. Тестувати біт за адресою БАЙТ:БІТ у CMOS. Тестувати швидкість читання файла. Перевірити відповідність ФОРМАЛЬНОГО ВИРАЗУ РЯДКУ. Перевірити відеопідсистему у режимі ВxШ. Перевірити відеопідсистему. Лише текст  Вміст файлів є тотожним.
 Обробку позначеного пункту буде автоматично виконано за %d с. Цей VDEV є RAIDZ%llu
 Цей VDEV є дзеркалом Систему цього пункту може завантажувати будь-який користувач. Потребує встановлення GRUB_DEFAULT=saved у %s/default/grub.\n четвер ТіБ ТіБ/с Інструмент для редагування блоку середовища. Загальний об’єм запису: %d Б.
 Кінцевий символ похилої риски Перетворити 64-бітове значення UUID у формат, що відповідає XNU. Якщо вказано -l, залишати літери малими, як у даних blkid. Перетворити назву файла у системі на назву у GRUB. Перетворити налаштування syslinux на налаштування GRUB. Виконати у РЯДКУ перетворення символів з НАБОРУ1 до НАБОРУ2. Перетворити на символи нижнього регістру. Перетворити на символи верхнього регістру. Перекладає рядок відповідно до поточних параметрів. Виконайте команду «%s --help» або «%s --usage», щоб дізнатися більше.
 вівторок ПАРОЛЬ КОРИСТУВАЧА КОРИСТУВАЧ ПАРОЛЬ_PBKDF2 КОРИСТУВАЧ[,КОРИСТУВАЧ] UTF-8 Не вдалося створити канал передавання даних: %s Не вдалося визначити вашу платформу. Скористайтеся параметром --target. Не вдалося створити розгалуження: %s Не вдалося відкрити потік даних з %s: %s Не вдалося отримати дані щодо стану сховища Розпакувати дані. Розпакувати файл до обчислення контрольної суми. Невідомий тип адреси, %d
 Невідома команда «%s».
 Невідомий формат стискання %s Невідоме кодування Невідомий додатковий параметр «%s». Невідома деталь шрифту gsub, 0x%x (%s)
 Невідомий код клавіші 0x%02x
 Невідома назва клавіші, %s
 Невідома платформа, «%s-%s» Невідома системна помилка Невідоме відео режим Невідомий тип віртуального пристрою: %s
 Вивантажити емулятор EFI. Неврівноважена послідовність ( або \( Неврівноважена послідовність ) або \) Неврівноважена послідовність [ або [^ Неврівноважена послідовність \{ Невідоме стискання, «%s» Нерозпізнаний параметр «%s»\n Нерозпізнаний стан сховища Непідтримуваний тип адреси, %d
 Непідтримувана специфікація покриття: %d
 Непідтримуваний тип апаратної адреси, %d
 Непідтримуваний формат зображень Непідтримуваний прапорець заміни: 0x%x
 Непідтримувана специфікація заміни: %d
 Непідтримуваний тип заміни: %d
 Використання: Використання: %s -o ВИВЕДЕННЯ АРГУМЕНТИ_CKBMAP...\n Використання: %s ПРИСТРІЙ
 Використання: %s [ВХІДНИЙ_ФАЙЛ [ВИХІДНИЙ_ФАЙЛ]]
 Використання: %s [ПАРАМЕТР] ПУНКТ_МЕНЮ\n Використання: %s [ПАРАМЕТР]\n Використовувати компакт-диск як кореневу теку. Використати віддалений інструмент зневаджування GDB замість DDB. Використати РЯДОК як текст пункту меню. Використовувати вбудований кореневий пристрій. Використовувати консоль на послідовному порті. Скористайтеся клавішами %C і %C для позначення пункту. ЗМІННА ІНТЕРФЕЙС НОМЕР ОПИС НАЗВА_ЗМІННОЇ Елемент номер %d VDEV є помилковим
 Елемент номер %d VDEV:
 VDEV з %d дочірніми об’єктами
 Докладний зворотний відлік. Перевідкрити від’єднаний підпис. Версія %u.%u
32-бітовий CS = 0x%x, довжина = 0x%x, відступ = 0x%x
16-бітовий CS = 0x%x, довжина = 0x%x
DS = 0x%x, довжина = 0x%x
 Віртуальний пристрій має погіршені характеристики Дефектний віртуальний пристрій Віртуальний пристрій недоступний Віртуальний пристрій доступний Віртуальний пристрій вилучено УВАГА: консоль не буде доступною ОС УВАГА: не було виконано специфічного для платформи встановлення УВАГА: непідтримувані параметри шрифту: %x
 ШИРИНАxВИСОТА. Очікувати протягом вказаної кількості секунд. Очікувати на натискання клавіші після кожного виведеного рядка. Попередження: Попередження: помилковий колір тла «%s»
 Попередження: некоректний колір тексту «%s»
 Попередження: синтаксична помилка (немає похилої риски) у «%s»
 середа Windows NT/2000/XP (завантажувач) Windows Vista/7 (завантажувач) Записати 16-бітове ЗНАЧЕННЯ за АДРЕСОЮ. Записати 16-бітове ЗНАЧЕННЯ до ПОРТу. Записати 32-бітове ЗНАЧЕННЯ за АДРЕСОЮ. Записати 32-бітове ЗНАЧЕННЯ до ПОРТу. Записати 8-бітове ЗНАЧЕННЯ за АДРЕСОЮ. Записати 8-бітове ЗНАЧЕННЯ до ПОРТу. Записаних байтів SPD: %d Б.
 Гіпервізор Xen, версія %s YUV  Вам слід вказати принаймні одну команду.
 Вам слід встановити «SystemPartition» і «OSLoader» вручну. Вами виявлено ваду Ваша область вбудовування є надзвичайно малою. core.img не вміститься у цій області. У вашому xorriso не передбачено підтримки «--grub2-boot-info». Деякі з можливостей вимкнено. Будь ласка, скористайтеся xorriso 1.2.9 або новішою версією. У вашому xorriso не передбачено підтримки «--grub2-boot-info». Основний ядра образ є надто великим. Завантаження у форматі диска вимкнено. Будь ласка, скористайтеся xorriso 1.2.9 або новішою версією. [--append|--remove] [ТЕРМІНАЛ1] [ТЕРМІНАЛ2] ... [--force|--bpb] ФАЙЛ [--md5] ПАРОЛЬ [ФАЙЛ] [--no-mem-option] [--type=ТИП] ФАЙЛ [ПАРАМЕТР ...] [-1|-2] [--exclude=ТАБЛИЦЯ1,ТАБЛИЦЯ2|--load-only=ТАБЛИЦЯ1,ТАБЛИЦЯ2] ФАЙЛ1 [ФАЙЛ2] [...] [-c ФАЙЛ [-p ПРЕФІКС]] [ФАЙЛ1 [ФАЙЛ2 ...]] [-d] НАЗВА_ПРИСТРОЮ ФАЙЛ. [-e|-n] РЯДОК [-f ФАЙЛ] [-f ФАЙЛ] назва_змінної [...] [-f|-l|-u|-s|-n] [--hint ПІДКАЗКА [--hint ПІДКАЗКА] ...] НАЗВА [-h|-p|-r] [ФАЙЛ] [-l] UUID_GRUB [НАЗВА_ЗМІННОЇ] [-l|-h|-a] [ФАЙЛ ...] [-m (stretch|normal)] ФАЙЛ [-s ПОЗИЦІЯ] [-d ПРИСТРІЙ] [-s ПОЗИЦІЯ] [-d ПРИСТРІЙ] [-v ЗМІННА] РЕГІСТР[=ЗНАЧЕННЯ[:МАСКА]] [-s РОЗМІР] НАЗВА_ФАЙЛА [-s|--skip-sig] ФАЙЛ ФАЙЛ_ПІДПИСУ [ФАЙЛ_ВІДКРИТОГО_КЛЮЧА] [-s|--skip-sig] ФАЙЛ_ВІДКРИТОГО_КЛЮЧА [АДРЕСА|одинОБМІНУ][,ШВИДКІСТЬ] [ПАРАМЕТР] [КАРТКА [АПАРАТНА_АДРЕСА]] [КАРТКА] [КАТАЛОГ] [ЗМІННА_СЕРЕДОВИЩА=ЗНАЧЕННЯ] [ЗМІННА_СЕРЕДОВИЩА] [КОМБІНАЦІЯ_КЛАВІШ1] [КОМБІНАЦІЯ_КЛАВІШ2] ... [МОДУЛЬ1 МОДУЛЬ2 ...] [НОМЕР:]НАЗВА_ЗМІННОЇ [ЧИСЛО] [ПАРАМЕТРИ...] [ПАРАМЕТРИ] [ПАРАМЕТРИ] ДИСК [ПАРАМЕТРИ] ФАЙЛ_АБО_ПРИСТРІЙ [ПАРАМЕТРИ] ФАЙЛИ_ШРИФТІВ [ПАРАМЕТРИ] [НАБІР1] [НАБІР2] [РЯДОК] [ПАРАМЕТР] ДЖЕРЕЛО... [ПАРАМЕТР] [ПРІСТРІЙ_ДЛЯ_ВСТАНОВЛЕННЯ] [ПАРАМЕТР]... [МОДУЛІ] [ПАРАМЕТР]... [ФАЙЛ|ПРИСТРІЙ] [ПАРАМЕТРИ] [ШЛЯХ] [ШАБЛОН ...] [СПИСОК_КОРИСТУВАЧІВ] [ЗНАЧЕННЯ]... [ШxВ[xГ]] [ШxВ] [[-a|-u|-v] [-g ВxШ] ТЕРМІНАЛ [ТИП]] [[рік-]місяць-день] [години:хвилини[:секунди]] [канал]:[слот][.функція] [виробник]:[пристрій] «%s» не є локальним диском помилка команди «cryptomount»: %s помилка команди «loopback»: %s помилка «nvsetenv». 
Вам слід встановити значення змінної «boot-device» вручну. У полі запиту IEEE1275 введіть:
  %s
 Не знайдено «obppath» у батьківських каталогах «%s», немає засобу визначення назв IEEE1275 спроба надання аргументу «%s» певного значення, хоча цей аргумент не потрібен доступ заборонено додати сегмент НОТАТКА для відкритої мікропрограми CHRP IEEE1275 адреса адресу не знайдено спроба читання або запису області поза межами диска «%s» спроба читання або запису блоку даних поза розділом спроба читання даних за кінцем файла спроба встановлення позиції поза межами файла спроба читання основного образу «%s» з GRUB повторна спроба читання основного образу «%s» з GRUB доступна пам’ять доступні формати: некоректний підпис базова_адреса = 0x%llx, довжина = 0x%llx, %s
 базова_адреса = 0x%llx, довжина = 0x%llx, тип = 0x%x
 підтримки формату растрового зображення «%s» не передбачено схвалити для Mac на основі PPC схвалити для Mac на основі x86 blocklist ФАЙЛ списки блоків є неповними списки блоків є некоректними розмір блоку не є кратним до 512 розгортання 0 циклів неможливе не вдалося стиснути «%s» до «%s» не вдалося визначити тип файлової системи на %s не вдалося знайти команду «%s» не вдалося змонтувати шифрований том «%s»: %s не вдалося відкрити «%s»: %s не вдалося відкрити файл %s, індекс %d: помилка %d не вдалося отримати список блоків не вдалося отримати список блоків: %s не вдалося встановити розмір шрифту %dx%d: помилка Freetype %d: %s не вдалося стиснути образ ядра не вдалося скопіювати «%s» до «%s»: %s не вдалося вилучити «%s»: %s не вдалося знайти каталог EFI не вдалося знайти диск GRUB для %s. Перевірте правильність device.map не вдалося знайти пристрій для %s (чи змонтовано /dev?) не вдалося знайти локаль «%s» не вдалося отримати рядок команди відображення для шляху «%s»: %s не вдалося створити тимчасовий каталог: %s не вдалося створити тимчасовий файл: %s не вдалося відкрити файл ОС %s: %s не вдалося відкрити «%s»: %s не вдалося відкрити каталог «%s»: %s не вдалося правильно прочитати «%s» не вдалося прочитати %s: %s не вдалося перейменувати файл %s на %s не вдалося відновити початковий каталог не вдалося виконати seek для «%s»: %s не вдалося виконати stat для «%s»: %s запис на компакт-диск неможливий не вдалося виконати запис до «%s»: %s не вдалося виконати запис до стандартного виведення: %s не знайдено картки cat ФАЙЛ помилка під час спроби перевірки контрольної суми виберіть режим стискання для основного образу cmp ФАЙЛ ЛОКАЛЬНИЙ_ФАЙЛ одинОБМІНУ[,ШВИДКІСТЬ] помилка порівняння у позиції %llu стискати файли GRUB [необов'язкове] у з'єднанні відмовлено перевищено час очікування на з’єднання перетворити на напівжирний стиль основний образ є занадто великим (0x%x > 0x%x) невідповідність версій core.img не вдалося виконати автоматичне налаштування %s не вдалося знайти пристрою з потрібним вам номером у файловій системі, що зберігається на декількох пристроях не вдалося знайти споживача geli не вдалося знайти клас «part» geom не вдалося відкрити дані щодо геометрії не вдалося прочитати метадані ELI не вдалося отримати UUID не вдалося отримати UUID geli не вдалося отримати випадкові дані не вдалося отримати випадкові дані для солі не вдалося надіслати пакет даних мережею cp ФАЙЛ ЛОКАЛЬНИЙ_ФАЙЛ crc ФАЙЛ помилка шифрування з номером %d помилка cygwin_conv_path() вилучити карту пристроїв, якщо вона вже існує призначення недоступне перевищено обмеження на кількість пристроїв вимкнути гінтінґ не знайдено диска «%s» диска не існує, повертаємося до пристрою розділу %s модуль диска, який слід використовувати (biosdisk або native). Цим параметром можна скористатися лише у системі призначення з BIOS. спроба читання даних з диска зазнала невдачі на позиції %lld, довжина %lld розмір diskboot.img має дорівнювати %u байтів не встановлювати сектор завантаження не шукати файлові системи на ПРИСТРОЇ компонент назви домену є занадто довгим не змінювати стан блоку індикаторів не оновлювати змінні NVRAM «boot-device»/«Boot*». Цим параметром можна скористатися лише для EFI і IEEE1275. виконано вбудувати ФАЙЛ як файл попереднього налаштування вбудувати ФАЙЛ як відкритий ключ для перевірки підписів вбудовування неможливе, але без нього не обійтися під час встановлення на RAID та LVM вбудовування неможливе, але без нього не обійтися під час встановлення на декілька дисків увімкнути завантаження ARCS (для комп’ютерів mips зі зворотним порядком байтів, зокрема SGI). Вимикає образи завантаження HFS+, APM, sparc64 і boot для i386-pc. увімкнути завантаження sparc. Вимикає дискові образи HFS+, APM, ARCS і boot для i386-pc вмикаємо підтримку %s ... enter: завантаження, «e»: параметри, «c»: кмд-рядок занадто малий блок середовища помилка: %s.
 шукати образи GRUB у каталозі КАТАЛОГ/%s замість каталогу %s не вдалося скопіювати Grub до розділу PReP не вдалося отримати канонічний шлях «%s» не вдалося прочитати сектори основного образу помилка під час читання сектора 0x%llx з «%s» не вдалося прочитати пароль помилка під час спроби запису сектора 0x%llx до «%s» false помилка у пам’яті (BadRAM) файл «%s» не знайдено слід вказати назву файла слід вказати файл або ритм і ноти у файловій системі %s не передбачено підтримки міток у файловій системі %s не передбачено підтримки списків блоків (blocklists) образ мікропрограми є занадто великим примусовий автоматичний гінтінґ мало бути вказано чотири аргументи fwstart.img не належить до випробованої версії. Подальше користування може призвести до помилок. створити образ у форматі ФОРМАТ отримати коротке повідомлення щодо використання показати ці довідкові дані вказаний аргумент є системним пристроєм, а не шляхом grub-mkimage зібрано без підтримки XZ grub> затриматися на СЕК секунд (типово, на 3600) hex ФАЙЛ ігнорувати растрові штрихи під час завантаження некоректне визначення розмірностей термінала initrd вже завантажено встановити ШРИФТИ [типово %s] Встановити GRUB для платформи ПРИЗНАЧЕННЯ [типове значення — %s] встановити образи GRUB у каталозі КАТАЛОГ/%s замість каталогу %s встановити ТЕМИ [типово %s] не вказано пристрою для встановлення. встановити, навіть якщо буде виявлено проблеми встановити лише вказані ЛОКАЛІ [типово буде встановлено всі] встановити лише вказані МОДУЛІ та їхні залежності [типово усі] некоректний пароль PBKDF2 некоректна залежна від архітектури позначка у ELF некоректна незалежне від архітектури позначка у ELF некоректний аргумент некоректний розмір блоку некоректне визначення кольору, «%s» некоректна ієрархія пристроїв некоректний блок середовища некоректна назва файла, «%s» некоректний діапазон шрифту некоректний формат рядка: %s некоректний файл modinfo, «%s» некоректний параметр, %s некоректне значення пропуску %lld некоректна назва змінної, «%s» некоректна специфікація відеорежиму, «%s» некоректний образ zImage Помилка GET_ARRAY_INFO ioctl: %s Помилка GET_DISK_INFO ioctl: %s Помилка RAID_VERSION ioctl: %s образ ядра є надто великим (0x%x > 0x%x) показати список мережевих адрес показати список мережевих карток показати список мережевих маршрутів ls ШЛЯХ файл lzop пошкоджено уможливити завантаження з пристрою, як з дискети (типова поведінка для пристроїв fdX). Може призвести до непрацездатності з деякими BIOS. не вистачає символу «%c» не вказано обов’язкового параметра для «%s» модуль «%s» не завантажено модуль не завантажено назва слід вказати образ і точку монтування не знайдено APM не знайдено даних щодо DHCP не знайдено параметра %d DHCP не знайдено параметрів DHCP не знайдено запису DHCP не отримано відповіді DNS не налаштовано серверів DNS на вашій платформі не передбачено процедур EFI у режимі BIOS не можна використовувати процедури EFI на вашій платформі не передбачено процедур IEEE1275 на вашій платформі не передбачено процедур SGI у повній назві немає символу «/» не вказано команди на вашій платформі не передбачено стискання не вказано ключа розшифрування підказок для вашої платформи не передбачено. Швидкодія може зменшитися. мережевої картки не знайдено у вашій операційній системі не передбачено засобу створення псевдовипадкових чисел не вказано сервера такого розділу немає не знайдено відповідного відеорежиму немає таблиці символів не вказано терміналів у основному образі немає мітки завершення у базовому файлі виявлено невирівняні за секторами дані не є каталогом не є основним розділом не є звичайним файлом поза кодом функції очікувався один аргумент лише ipv4 лише ipv6 область вбудовування використано іншим програмним забезпеченням. Для core.img залишилося недостатньо місця. Подібне зберігання даних часто пов’язане зі спробою приховати втручання у систему. Рекомендуємо вам виконати докладніше розслідування цього інциденту. нестача пам'яті вивести створений образ до файла ФАЙЛ [типовий=stdout] має бути вказано файл для виведення даних вивести створені налаштування до файла ФАЙЛ [типово=stdout] виявлено переповнення паролі не збігаються виконати автоматичне налаштування bootp не знайдено фізичного тому %s попередньо завантажити вказані МОДУЛІ перевага ipv4 перевага ipv6 завчасне завершення файла завчасне завершення файла %s натиснути клавішу CapsLock натиснути клавішу Insert натиснути клавішу NumLock натиснути клавішу ScrollLock натиснути SysRq натиснути лівий alt натиснути лівий ctrl натиснути лівий shift натиснути правий alt натиснути правий ctrl натиснути правий shift вивести дані щодо версії програми показати дані щодо версії і завершити роботу показати це повідомлення і завершити роботу показати докладні повідомлення. не знайдено відкритого ключа %08x помилка читання з позиції %llu: %s прочитати текст з файла ФАЙЛ. відносний підкаталог на мережевому сервері зміну розташування 0x%x ще не реалізовано зарезервована пам’ять отримати значення параметра DHCP і зберегти його до ЗМІННОЇ. Якщо ЗМІННОЮ є -, вивести значення. кореневий каталог, так, як його буде показано під час роботи [типово /]. кореневий каталог сервера TFTP кореневий каталог диска syslinux [типово /]. виявлено циклічну маршрутизацію зберегти образи ROM до каталогу КАТАЛОГ [необов’язковий параметр] зберегти виведені дані до ФАЙЛа [обов’язковий параметр] встановити індекс гарнітури не знайдено послідовного порту «%s» set [НАЗВА=ЗНАЧЕННЯ ...] встановити режим capslock встановити верхню межу шрифту встановити нижню межу шрифту встановити назву гарнітури шрифту встановити діапазон шрифту встановити розмір шрифту встановити назву файла вхідних даних для 32-бітової частини. встановити назву файла вхідних даних для 64-бітової частини. встановити назву файла вхідних даних. Типовим є STDIN. встановити режим вставлення встановити режим numlock встановити назву файла для виведення даних. Типовим є STDOUT. встановити режим паузи встановити каталог префікса [типовий=%s] встановити режим scrolllock встановити назву програми розмір stretch|normal не знайдено символ «%s» тимчасова термінала %s не знайдено або terminfo не працює з цим терміналом не знайдено термінала «%s» ідентифікатор інструмента завантаження. Цим параметром можна скористатися лише у системах з EFI і на Mac. розділ PReP не є порожнім. Якщо вам справді хочеться ним скористатися, віддайте команду dd, щоб спорожнити його: «%s» разом з аргументом «%s» слід вказати ціле число вибраний розділ не є розділом PReP запис device.map «%s» є некоректним. Будь ласка, виправте його або вилучіть ваш device.map диск %s визначається декілька разів у карті пристроїв %s назва диска «%s» у device.map є некоректною. Використовуємо замість неї %s. Будь ласка, використовуйте формат [hfc]d[0-9]* (наприклад «hd0» або «cd») перший сектор базового файла не вирівняно за секторами пристрій для встановлення є портативним. Цим параметром можна скористатися лише у системах з EFI. тип розділу 0x%x є некоректним сектори основного файла занадто фрагментовані розмір «%s» не дорівнює %u розмір «%s» є занадто великим розмір «%s» є занадто малим тип цього файла ELF не є належним ця мітка розділу GPT не містить розділу для завантаження BIOS, — вбудовування неможливе у цього LDM немає розділу для вбудовування, — вбудовування неможливе ця мітка розділу у форматі msdos не містить проміжку після MBR, — вбудовування неможливе мало бути вказано три аргументи перевищення часу очікування на відкриття «%s» перевищення часу очікування під час читання «%s» перевищення часу очікування: не вдалося визначити апаратну адресу занадто високий рівень вкладеності символічних посилань у відображенні «%s» для шляху «%s» вказано декілька слів, непов’язаних з параметрами, принаймні «%s» і «%s». у відображенні «%s» для шляху «%s» вказано лише параметри, не вдалося знайти частину визначення пристрою для шляху «%s» рядок команди відображення є порожнім мало бути вказано два аргументи тип не вдалося визначити файлову систему на %s; виконання перевірки безпеки неможливе невирівняний об’єм пристрою неочікувана помилка EFI несподіваний кінець файла невідомий аргумент, «%s» невідоме стискання %d
 невідомий тип пристрою %s
 невідома файлова система невідомий тип пристрою RAID, «%s» невідома помилка під час обробки формального виразу невідомий формат призначення %s
 невідомий тип terminfo, «%s» непридатне до розпізнавання визначення формату параметра DHCP, «%s» нерозпізнана адреса у мережі, «%s» нерозпізнаний інтерфейс мережі, «%s» нерозпізнане число непридатна до визначення адреса %s unset [НАЗВА ...] непідтримуване повідомлення про помилку HTTP, %d: %s непідтримувана відповідь HTTP непідтримувана версія RAID: %d.%d Непідтримуваний формат gzip непідтримувана платформа %s
 непідтримувана парність послідовного порту непідтримувана швидкість передавання даних послідовним портом непідтримуване значення кількості бітів зупинки роботи з послідовним портом непідтримуваний розмір слова (word) послідовного порту використати КОЛІР для тла використати КОЛІР для мітки використати КОЛІР для тла мітки використати КОЛІР для тексту використати КАТАЛОГ як кореневий каталог системного розділу EFI. використовувати КАТАЛОГ для встановлення PPC MAC. використати ФАЙЛ (PF2) як шрифт. використати ФАЙЛ як шрифт для мітки використати ФАЙЛ як образ для завантаження [типове значення=%s] використати ФАЙЛ як образ теки ядра [типове значення=%s] використовувати ФАЙЛ яка карту пристрою [типове значення=%s] використовувати ФАЙЛ як xorriso [необов’язковий параметр] використовувати файли GRUB у каталозі КАТАЛОГ [типове значення=%s] використати РЯДОК як назву продукту використати РЯДОК як версію продукту використовувати файл ідентифікатора, навіть якщо доступним буде UUID використовувати образи і модулі у КАТАЛОЗІ [типово=%s/<платформа>] використовувати теми у КАТАЛОЗІ [типово %s] використовувати переклади у КАТАЛОЗІ [типово %s] значення змінної «%s» не встановлено візуально впорядковане UTF-8. зачекати на долучення зневадника         не буде продовжено з використанням списків блоків вивести дані до файла ФАЙЛ [типово stdout] помилкова контрольна сума або версія ELI xnu_uuid ПРИСТРІЙ файл xz пошкоджено або вказано непідтримувані параметри блоку ви не можете вилучити цю адресу спочатку вам слід завантажити ядро розміри вашого розділу для завантаження BIOS є занадто малими, — вбудовування неможливе ваш файл core.img є доволі великим. Його не вдасться записати до області вбудовування. ваша область вбудовування є надзвичайно малою. core.img не вміститься у цій області.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    boot/grub/locale/vi.mo                                                                              0000600 0001750 0001750 00000343605 13417732100 0013653 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                       v     #    |G      H_  #   I_      m_     _     _     _  $   _     _  6   `     H`     O`  	   [`     e`     r`     `     `     `     `  .   `  .   a  %   >a     da     ha    wa    |b    c     d  7   d  F   d  v   "e  +   e     e      e     e  !   	f     +f  ,   Hf     uf     f  $   f     f  *   f     g     !g     )g     9g     Qg  
   qg  	   |g     g  ,   g  ,   g  ,   g  '   )h  -   Qh      h  (   h  (   h  )   h     i     <i     \i     ii     ri  "   {i  4   i     i     i  7   i      j  1   )j     [j     zj  %   }j  '   j  %   j  '   j     k     k      k     >k     Sk     hk     mk     k     k     k     k     k     k     k  3   k     )l  $   /l     Tl     ll     l     l     l     l     l  -   l     m  !   4m     Vm     km     m  #   m     m  `   Hn  Z   n     o     o     ;o     =o     Ao     Xo     ^o     go     ~o     o     o     o     o     o     p     (p     ?p     Up     cp     zp     p     p     p  %   p     p     p     p     q     .q     Dq     Sq     fq     wq  *   q  3   q     q  "   	r  8   ,r     er     wr  	   r  #   r     r     r     r     s     3s     Js  )   Ys     s     s     s  P   s     /t     Dt  H   Yt  &   t     t     t  !   t  ,   
u     7u     Cu     Gu  	   du  !   nu  *   u     u     u     u     u     v  $   ,v     Qv     cv     uv     v     v     v  
   v  
   v     v  1   w     @w     Nw     [w     tw  3   w  >   w  $   x     (x     ?x     \x     tx     x     x  +   x     x     y  #   )y     My     dy  $   y     y     y  '   y  9   z     @z     Yz  z   wz     z     z  8   {     F{  
   ]{     h{     u{     {     {     K|  +   h|     |     |     |  "   |     |     }  (   }     @}     X}     d}     t}     }     }  "   }  0   }     ~     ~     ~  7   $~     \~     d~     p~     ~     ~     ~  0   ~     ~     ~            2   .  %   a            *     6     +        9     W     j  !   ;  d   ]  e     d   (  i     o     H   g          Ã     ك                    -     D  #   ]                 1   Ʉ  )        %     ,     .     C  /   R                 5   Ņ            K   6                    І     Ԇ     چ     ߆  '     P        ]     |  	                    '   ȇ  +             -  )   I     s               È     ؈            $        @     R  "   m                 (        ԉ     ؉  "   މ  +     -   -     [     t                 O                  4     K     Y  %   m       )     !   ܋  "        !     =  +   T                 !        ی                     3     T     o                    Ѝ  4             4     F     ^     y               Ǝ        !        &  4   @  M   u  2   Ï            *   .  8   Y                    ΐ       3     $   1  +   V                         ϑ                     =     R     T  D   l       7     ;        ,     L  !   k            s   Ó     7     O     l     }                    ה                         T     g     {                    Ɩ  '   ݖ  
                  5     :     R     V     h  H        Η                 %        B     \  #   u               Ә     ܘ                 3     T  "   a  (          %   ə       2   	     <     E  #   ^  *                    #   ǚ            	     	     "     ;   9  #   u  <        ֛            .     	   ?     I  `   [       !   ќ  )             !     '     /  q   <               ٝ                    (     =     \  "   {               О                    )     B  #   W     {       g                    -   ؠ       !        <  "   M  '   p  Q                        4     B     X     u               ̢                     *     K     `      s               ã     ԣ  -        "     <  "   P  b   s  )   ֤                .  ,   I     v       	     "     %                         &     )   8     b  ^   u     Ԧ  $     %        9  ^     _   K  }        )  )     '   
  >   2  D   q  !     '   ت  -      #   .     R  )   r       )     )     ,        :     Z     s            E     $      A   %  )   g               ʭ                %  q   :       :   ɮ          "     1     Q     n                 0   ̯               0  )   F  &   p               ϰ       )        (  %   8  %   ^  ,     '     :   ٱ       -   3     a  .   q            '   ǲ  $     "        7     C     `  *   n            )     o   ҳ     B     [  6        L     N  0   U        !     "   ɵ  #             "     @     V  !   u       
          <   Ҷ  %     >   5     t     }                      d   ӷ  *   8  0   c  6        ˸     Ӹ               
       0   *     [  !   n            $                       2     C  $   `  "     $        ͺ                     ,     >     P     b     o            '               $      +   E  "   q       )        ż     ׼               *  '   >     f            <                        /  m   J          Ӿ                  +   :  3   f  1        ̿  '   ڿ  -        0  '   9  '   a  .     	                            /     K     g                      *     ?     B   B  p          /               .     O     )   [            	          5                  2     H     c  :   }                                             8     N     _     e  	   r     |                                     
     
     	        %  !   +  )   M     w                 F     N   !     p  "   ~            -     -     $     #   9  0   ]  6                    (     1     )   O     y       !                     %        4  &   H     o             7     .      4   /     d                      %             !     6     M     f                 ,                       "     5     H  #   ]            B                  4     G     b     y  &                              &   (     O     g            ;     V     "   9  &   \  !                    /     H     F   X  w     N     (   f            I     $     '   &     N  %   g                      $     '     *        E     _     n  J                    -     +   J     v  $   |       "     +     J     %   D     j        "                             +     >     V     k       %                    %        D     [     n            [          !        0     I     ]     b                                             .     F     b     x                           1        6     F     ^     q               ^  1   l       0               !        :     W     m                                                       .     @  &   V     }                      '     &   &     M  L   Z            !                  ,     I     ^     p                      #     #     $        0     @  &   Q     x  !                              	     7        >  %   X  [   ~  w     7   R  K     #     /        *     E     c  &     U     @     Q   ?                 +          R     L   q  .               F   	     P     f     }                                    &  2   A  !   t  #                                 /     O     g       (     #             
          =  )   P     z       '     '     '        %  0   D     u       -     8             -  !   D      f            .          !     B   !  E   d  B         6     2     #   ;  *   _       6     "     H      
   I     T     a     w  +          "     &          ;   -  ?   i  1                              }  >     \        4  9        !  ,   3     `  -   s       8               0   +  #   \  =                         Z     
   m  	   x  (     8     :     8     8   X  9     +     9     3   1  8   e  ,     ,             	       F     H   b  
          :     	    E    )   R    | 2    9    2    9       Y    e 5   g     "        $        3   /    c                 5        8    3   F (   z              #        <   7    t ?    *    <       9 %   V    |    1     *   3    ^    {    }         	        (    ;    (   '	 5   P	 /   	 /   	    	 1   
 /   6
 #   f
 3   
    
    
    
    
 F   
 ?   9    y !    3    $           !    ; $   S [   x L    /   ! O   Q L        .       . .   6 ,   e     (                 :   , /   g ,    7    r       o     W    3       /    M +   Z B                     ;    4   N %                 "    7   %    ] '   o ,    -    .    -   !    O    ` #   t ?        
    2       " S   ; L    >    /    .   K $   z '    A    )   	 <   3 /   p (    0    $    /    =   O *    1    F    ^   1 7    +            0    Y    !   h         %    %            G       <    V "   s ,            F    $   9    ^    t     )        -    5    	   D    N    i V                         3     J  6   Y                      P     .   J!    y!    ! 8   ! H   ! C   3" >   w"     " 3  " /   $    ;$    $    ~%    &    & |   ' '    (    ((    G(    a(    z(    (    (    ( 1   ( &    )    G)    e) /   }) G   ) 
   )     *    *    * 8   4*    m*    * (   * \   * )   !+    K+ `   g+ .   + (   + &    ,    G,    K,    Q,    V, A   _, o   , #   -    5- 	   I-    S- !   V- !   x- >   - >   -    . !   (. @   J.    .    . )   .    . -   / %   3/ '   Y/ )   /    / *   / H   /    90    ;0    M0 K   ^0    0    0 5   0 E   0 <   01 "   m1    1    1 "   1 %   1 {   	2     2 +   2 .   2    3 0   3 I   K3 6   3 N   3 4   4 5   P4 #   4 #   4 <   4    5    #5 $   ;5 )   `5 #   5    5    5    5 )   5 #   6    ?6 (   X6    6    6    6 @   6 #   7    17    B7 9   ^7 8   7 7   7 4   	8 !   >8    `8 -   ~8 ,   8 Q   8 i   +9 L   9 (   9 E   : ?   Q: L   :    :    :     ;    ';     G; [   h; :   ; 7   ;    7<    Q<    j<    <    < &   < ,   < )   =    1=    F=     H= y   i=    = J   = ]   7> +   > 0   > -   > 0    ? .   Q?    ? !   L@ "   n@    @    @ )   @    @ *   @    )A    <A    @A *  FA V  qB    C    C 	   C    D ,   D "   ?D    bD @   D    D    D    D    E    E    "E    'E #   7E    [E    E %   E    F    4F D   KF    F    F E   F 3   G 5   DG    zG    G 3   G 2   G 2   H ,   BH #   oH 4   H    H -   H $   I G   9I    I !   I 4   I 5   I    J    J    5J =   EJ    J +   J    J    J @   J \   K @   lK ]   K    L '   #L    KL 4   [L    L #   L    L    RM +   _M A   M    M    M    M    M    M    N    N    N    N %   O &   )O "   PO /   sO 3   O -   O (   P )   .P !   XP "   zP "   P    P !   P    Q *   Q 1   IQ 5   {Q    Q    tR "   bS .   S 6   S    S /   	T    9T 8   QT E   T    T    WU    uU    U ,   U    U +   U %   V +   ?V %   kV *   V $   V    V     V ;   W     VW    wW %   W #   W    W #   W &   X 6   AX    xX    X /   X    X B   rY #   Y    Y !   Y A   Z (   SZ    |Z    Z ;   Z ,   Z 
   Z    [    [     [ /   ,[ 6   \[ (   [    [    a\ 3   ~\ 4   \    \    ]    p^    ^ 0  _ -   ` 2   a o   Ma p   a '   .b 6   Vb =   b /   b 1   b 8   -c    fc ?   c 8   c A   c (   ?d *   hd *   d    d    d k   d 0   ae x   e 8   f .   Df 3   sf -   f 7   f 3   g    Ag    ag $   h A   6h /   xh    h ,   h $   h    i    &i ;   Ci .   i ?   i F   i 0   5j )   fj L   j >   j .   k /   Kk !   {k .   k 4   k    l /   l /   Hl 6   xl 1   l V   l +   8m -   dm    m ]   m    m #   n 9   9n 1   sn ,   n    n 2   n    o 9   ,o    fo    so T   o    o     mp   p S   q    q    q K   q 6   Er ;   |r 7   r 4   r !   %s $   Gs (   ls -   s 3   s '   s    t #   2t X   Vt L   t L   t 
   Iu    Tu    Xu .   ^u 5   u !   u    u F   v 3   v }   #w    w    w     w )   w    x .   x R   Fx    x /   x 4   x    y 5   -y %   cy    y #   y    y -   y 9   z *   Nz &   yz     z    z :   z    { $   8{ /   ]{ $   {    { +   { *   { )   | I   I| 7   | &   | @   | E   3} @   y}    } :   }    ~ 0    ~ 6   Q~    ~    ~ /   ~ 5   ~ ?   ' +   g <             !    !    {   A %                 %   ? [   e l    W   . 
    :    8   ̂     5    =   H O    	   փ          (    "   F (   i "    '    !   ݄     #       8 5   = N   s H            /   Q          ;    ]    =   V !           ƈ     Ո 5       ,    C    _    z      P        %   %    K #   Z    ~ "                               *    = ,   U #        /                       9 	   I    S #   Y +   }         (   ݌ %    f   , l         $       A    M 0   m '    5   Ǝ <    0   9 <   j     *        )    =    P   X     "    /        B   , (   o 7       Б >    .   . ,   ] #    J    ?    J   9 +        '   ϓ      0    2   I    | 2       Δ "    1   	    ;    T -   b ,           ֕ &    !       < !   Y #   { #        Ö f    2   K (   ~     :        '    ;   9    u         ,        4    )   ; :   e     !    N   љ q     +    :    #    %    	   C 7   M J    k   Л    <     `    7        $    E Q   Q 8    (   ܞ      %   &    L    P %   d     '    7   ǟ B       B     \    }         2   7    j O    Y   ء    2 5   8    n M   | G   ʢ @    9   S     4    A   ڣ '    #   D '   h )    (    *        ,   - &   Z 8           ٥     *       ?    ^ &   z         1  Ӧ     +   ! %   M    s     #        "   Ѩ &    #        ? ,   ` &    G        '    #   :    ^ !   x 6       Ѫ     +   
 `   6     &    !   ݫ           7    T ;   e 4    A   ֭ 
       # (   > +   g &    )                        7    C    S    d    v         "    4   ϯ 1    #   6 #   Z "   ~ !    5   ð 9       3 l   B &    6   ֱ -    .   ;    j /           ϲ            *    C    a 9   z 9    :       )    B 9   ]     0               "    1 &   I    p Z   v /   ѵ 0    r   2     ]   f Y   ķ )    ;   H !    "    "   ɸ 3    b     [    p   ߹    P (   e $    ?    '            T   2             .     #   O     s ,    &    +    5    +   J '   v &    I   ž 1    +   A    m )        D   ¿ 7    *   ? .   j =    7    <    =   L                 ?    ,   $ 5   Q F    <    H    4   T J    (    6    H   4 T   } %        ?    +   U .        C    )   
 -   4 x   b H    `   $                w         g        X            S       U  ^  |                    2  e  K  H  ^    1                          /  6    C              "                              O         F  r   O      b  '      ^      Q  A      G     
  ,                                                      s                        y  L    I    '   /    =          l   l  5          ;      z   <  .          ^  v              J             H  Q    J       4            O  w  8  o    Q        
       m                     2  3       4       g                 (         X  &           0            8            e      Z   j      r      !  Q         A  ,              6   K  2      n  ]      )     y                   c              d    d  h  s     @      P  ;            &    ?     3  n  q        /  v     R  m              )   [   @        >      -  s    v      s    S  ,       f          Z  0                 @    T    {            i      
         i  J          M       Z        $  N  *     0          o                     5            9   !  _  ?                 N          {      #  "    *  1    7  Y           -              N   P   #  m  f           O     p              `  -                        I       W             7  r  Y    }  )              w      h       ?           _                                      u    E  ]               5                                j  k  |   ,  L      k      G  P  ]       
           j  [     [           (  !                                                                     	  +              @               k    O    z     9  ]              4        *  b       1    )                    %                                      v       ,  V               E   L                                 M  &                    \        ;                            '    0      F      a                 q  ?                          n                        %                (  Z     A      )                          :    {   c       5     W      l  ;   T      Y  (  Z                <    b   7   f      M  +            S    0            9  t          B            <     D          5          S  u     B  3             3           }  @  `                       /            H                  9  z  =                     L          /   1             \                      -       [                    !                {              7  I   &    9         A      U      K  M                 e                        `  m    _   `                          e            _  |          :        I          >            (                 i            Y      b      j   p    n                 e      
  _  4          >  q   P  E    g                 K       *  %        X                }                           o  a  N  -      %     x          H   	                1           4      z      V         t         "   =                        W                       c                                   \                            ?         d        X                               6  .    f      :   E  s              	            H          S      g        K  D            }               o                       D                         a    J    ^   G  $                  i    j                p          ~          T           L  G          c                                   +           k        Y             l           C        q          *   8        <         T      q                 N     <  !             2   h  8        p                  6      y                     ~                          :  B       u    D              8                 #      l    F  w        V          x      u      W      R                 3    P            E      V   >                g      k                             .    b                               U                    r        m              =  2  "            c  y      A   G               R             B    a      \  ]  C  W      $      M                            V  \              >     .                                 p   	        v      F      n        +    :  d  6      x             J      t  "                    I            U                                            C        t          h          B  D  .                     ;        x               %      U                Q      C   	         F                              o  [  7    a      =                   #        r    $      R          `       &  R    T                    #  |        '  d      '            i   u  +     h        t            ~           f  $  X              ~                   total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: option '%c%s' doesn't allow an argument
 %s: option '%s' is ambiguous; possibilities: %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File size: %s
 File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS Import ZFS wrapping key stored in FILE. Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List coreboot tables. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... M MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MODULE Mail xorriso support requests to <bug-xorriso@gnu.org>. Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Option -- switches to native xorriso command mode. Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] PUBKEY_ID Paletted  Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot into firmware setup menu. Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Render Apple .disk_label. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show CBMEM console content. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show the contents of a file. Show the current mappings. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Switch to native disk drivers. If no modules are specified default set (pata,ahci,usbms,ohci,uhci,ehci) is used Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 T TARGET Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This entry can be booted by any user. This requires setting GRUB_DEFAULT=saved in %s/default/grub.\n Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. Your embedding area is unusually small.  core.img won't fit in it. Your xorriso doesn't support `--grub2-boot-info'. Some features are disabled. Please use xorriso 1.2.9 or later. Your xorriso doesn't support `--grub2-boot-info'. Your core image is too big. Boot as disk is disabled. Please use xorriso 1.2.9 or later. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `cryptomount' command fails: %s `loopback' command fails: %s `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format blocklist FILE blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s cannot compress the kernel image cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot get translator command line for path `%s': %s cannot open OS file `%s': %s cannot open `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. diskboot.img size must be %u bytes do not probe for filesystems in DEVICE domain name component is too long don't update LED state done embed FILE as an early config embed FILE as public key for signature checking embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enable ARCS (big-endian mips machines, mostly SGI) boot. Disables HFS+, APM, sparc64 and boot as disk image for i386-pc enable sparc boot. Disables HFS+, APM, ARCS and boot as disk image for i386-pc enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to get canonical path of `%s' failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification install GRUB images under the directory DIR/%s instead of the %s directory install even if problems are detected invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid block size invalid color specification `%s' invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no `/' in canonical filename no command is specified no decryption key available no network card found no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory of TFTP server route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the argument `%s' requires an integer the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for label use COLOR for label background use COLOR for text use DIR as the EFI System Partition root. use FILE as font (PF2). use FILE as font for label use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub-2.00+20130519
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-05-23 08:25+0700
Last-Translator: Trần Ngọc Quân <vnwildman@gmail.com>
Language-Team: Vietnamese <translation-team-vi@lists.sourceforge.net>
Language: vi
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=1; plural=0;
X-Poedit-SourceCharset: UTF-8
X-Generator: Poedit 1.5.5
               tổng dung lượng bộ nhớ: %d KiB
     Không có chế độ mong chờ sẵn dùng
     Chế độ mong muốn: %ux%u
   tổng kiểm tra EDID không hợp lệ   phiên bản EDID: %u.%u
  Gặp lỗi khi khởi tạo bộ điều hợp video  Không có thông tin sẵn dùng   ttin VBE:   phiên bản: %d.%d  phiên bản phần mềm OEM: %d.%d
   hoặc:  (cực tả) (đa phương tiện) (cực hữu)  - Phân vùng bắt đầu tại %llu%sKiB  - Kích thước cung từ %uB  - Tổng kích thước %llu%sKiB  - Không hiểu tổng kích thước  [TÙY_CHỌN...] %.*s: tham số “ARGP_HELP_FMT” phải là số dương %.*s: tham số “ARGP_HELP_FMT” yêu cầu một giá trị %.*s: Không hiểu tham số “ARGP_HELP_FMT” %ds còn lại %ds. Có vẻ là %s chứa một hệ thống tập tin %s mà (theo thông tin hiện thời) không dành riêng sức chứa cho sự khởi động kiểu DOS. Vì thế việc cài đặt GRUB vào đó có thể gây ra HỆ THỐNG TẬP TIN BỊ HỦY nếu dữ liệu quan trọng bị ghi đè bởi tiến trình cài đặt GRUB (grub-setup). Tuỳ chọn “--skip-fs-probe” tắt hàm kiểm tra này: hãy tự chịu trách nhiệm khi sử dụng nó. Có vẻ là %s chứa một ánh xạ phân vùng %s và LDM cái mà (theo thông tin hiện thời) không biết có phải là tổ hợp an toàn hay không. Vì thế việc cài đặt GRUB vào đó có thể gây ra BỘ PHÁ HỦY HỆ THỐNG TẬP TIN nếu dữ liệu quan trọng bị ghi đè bởi tiến trình cài đặt GRUB (grub-setup) (tuỳ chọn “--skip-fs-probe” tắt hàm kiểm tra này, hãy tự chịu trách nhiệm khi sử dụng nó) Có vẻ là %s chứa một ánh xạ phân vùng %s mà (theo thông tin hiện thời) không dành riêng chứa cho bộ khởi động kiểu DOS. Vì thế việc cài đặt GRUB vào đó có thể gây ra BỘ PHÁ HỦY HỆ THỐNG TẬP TIN BỊ HỦY nếu dữ liệu quan trọng bị ghi đè bởi tiến trình cài đặt GRUB (grub-setup) (Tuỳ chọn “--skip-fs-probe” tắt hàm kiểm tra này, hãy tự chịu trách nhiệm khi sử dụng nó) %s không hỗ trợ UUIDs %s tạo giao diện bàn phím cho GRUB sử dụng ckbcomp\n %s đã lỗi thời. Sử dụng set gfxpayload=%s trước lệnh linux để thay thế.
 không tán thành sử dụng %s. Chế độ VGA %d không được chấp nhận. Sử dụng đặt gfxpayload=RỘNGxCAO[xSÂU] trước câu lệnh linux để thay thế.
 %s vẫn chưa được hỗ trợ bởi grub-mkconfig.\n %s, với Hurd %s %s, với Hurd %s (chế độ phục hồi) %s, với Linux %s %s, với Linux %s (chế độ phục hồi) %s, với Xen %s và Linux %s %s, với Xen %s và Linux %s (chế độ phục hồi) %s, với bộ ảo hóa Xen %s, với kFreeBSD %s %s, với kFreeBSD %s (chế độ phục hồi) %s, với kernel %s (thông qua %s) %s, với kernel %s (thông qua %s, chế độ phục hồi) %s: KHÔNG KHỚP MÃ BĂM
 %s: OK
 %s: LỖI ĐỌC
 %s: Quá nhiều đối số
 %s: Bạn phải chạy chương trình này với tư cách siêu người dùng (root)\n %s: lỗi: %s: ttin: %s: tùy chọn không hợp lệ -- %c
 %s: tùy chọn “%c%s” không cho phép đối số
 %s: tùy chọn “%s” chưa rõ ràng; khả năng là: %s: tùy chọn “--%s” không cho phép đối số
 %s: tùy chọn “--%s” yêu cầu một đối số
 %s: tùy chọn “-W %s” không cho phép đối số
 %s: tùy chọn “-W %s” vẫn mơ hồ
 %s: tùy chọn “-W %s” yêu cầu một đối số
 %s: tùy chọn yêu cầu một đối số -- %c
 %s: tùy chọn yêu cầu một tham số -- “%s”\n %s: không nhận ra tùy chọn “%c%s”
 %s: không nhận ra tùy chọn “--%s”
 %s: cảnh báo: (32-bit) (64-bit) (LỖI CHƯƠNG TRÌNH) Không có phiên bản nào được biết!? (LỖI CHƯƠNG TRÌNH) Tùy chọn vẫn chưa được thừa nhận!? (trên %s) - Nhãn “%s” - Sửa đổi cuối cùng %d-%02d-%02d %02d:%02d:%02d %s --THÊM-- -h BĂM [-c TẬP-TIN [-p TIỀN-TỐ]] [TẬP-TIN1 [TẬP-TIN2 ...]] -l | -r | [-s] grubdev đĩa_chứa_HĐH. .5 giao diện bảo vệ 16-bit được hỗ trợ
 giao diện bảo vệ 16-bit không được hỗ trợ
 giao diện bảo vệ 32-bit được hỗ trợ
 giao diện bảo vệ 32-bit không được hỗ trợ
 =GIÁ-TRỊ > RAM cho APCI sử dụng ở chế độ ngủ đông ACPI có thể cải tạo RAM Tắt máy kiểu ACPI gặp lỗi ĐỊA_CHỈ ĐỊA_CHỈ GIÁ_TRỊ [BỘ_LỌC] ĐỊA-CHỈ [KÍCH-THƯỚC] ĐCHỈ1, MẶT-NẠ1[,ĐCHỈ2, MẶT-NẠ2[,...]] ĐỊA-CHỈ MÁY-CHỦ-DNS APM bị tắt
 APM đã bị bỏ gắn
 APM được bật
 APM được gắn
 ARGP_HELP_FMT: giá trị %s nhỏ hơn hay bằng %s ASCII Chấp nhận kiểu xuống dòng kiểu-DOS là CR/NL. Thiết bị cuối đầu vào đang kích hoạt: Thiết bị cuối đầu ra sẵn có: Bộ tiếp hợp “%s”:
 Thêm máy chủ DNS Thêm một địa chỉ mạng. Thêm một định tuyến mạng. Tùy chọn nâng cao cho %s Các tùy chọn cấp cao cho %s (với bộ ảo hóa Xen) Cho phép ngắt bằng ESC. Yêu cầu tên tập tin từ đó cần khởi động lại. Coi đầu vào dạng thập lục phân. Coi đầu vào là passpharse (mật khẩu cho tập tin). Coi đầu vào dạng thô. Đang thử giải mã khóa chủ... Đang thử cài đặt GRUB vào một đĩa với đa nhãn phân vùng, hoặc cả hai nhãn phân vùng và hệ thống tập tin. Tính năng này chưa được hỗ trợ. Đang thử cài đặt GRUB vào một đĩa với nhiều nhãn phân vùng. Đặc tính này vẫn chưa được hỗ trợ. Đang thử cài đặt GRUB vào một đĩa không có phân vùng hoặc một phân vùng. Đây là một ý kiến TỒI. Thiết bị cuối đầu vào sẵn có: terminal xuất sẵn dùng: B B/s BIOS_DUMP [INT10_DUMP] KHỐI BYTE:BÍT Chế độ ảnh nền/ Thư mục cơ sở cho danh sách băm. Khởi động hệ thống ở chế độ BIOS cơ bản. Khởi động một hệ điều hành. Khởi động vào chế độ người dùng đơn. Khởi động với thông điệp gỡ lỗi. Khởi động với thông điệp chi tiết. Đang khởi động “%s” Đang khởi động một danh sách câu lệnh Khởi động trong chế độ khuyết tật Đường dẫn khởi động: %s
 Đường dẫn khởi động: không sẵn sàng
 Ngắt vào GDB CGA  MÀU LỆNH [CÁC-ĐỐI-SỐ] CPU ở trạng thái Idle không giảm tốc độ xử lý xuống
 CPU ở trạng thái Idle giảm tốc độ xử lý xuống
 CS5536 tại %d:%d.%d
 Không thể cho phép vùng ROM. Thay đổi các thiết bị được cấu hình. Thay đổi kiểu của phân vùng Kiểm tra phím Alt. Kiểm tra phím Control. Kiểm tra phím Shift. Kiểm tra có các tính năng CPU. Kiểm tra mã băm của các tập tin với mã băm được liệt kê trong TẬP-TIN Kiểm tra xem CPU có hỗ trợ chế độ 64-bit (long) (mặc định). Kiểm tra trạng thái về phím bổ trợ. Kiểm tra xem tài khoản có ở trong DANH-SÁCH-NGƯỜI-DÙNG hay không. Kiểm tra tập tin cấu hình “GRUB script” xem có lỗi gì không. Xoá màn hình. Đã xóa bỏ cờ hoạt động trên %d. 
 Lệnh: So sánh TẬP-TIN với tập tin CỤC-BỘ. So sánh tập tin “%s” với “%s”:
 So sánh hai tập tin. Tính toán XNU UUID của thiết bị. Tính hay kiểm tra mã băm. Cấu hình cổng nối tiếp. Tiếp tục vòng lặp Chuyển đổi định dạng phông chữ chung sang PF2 Sao chép TẬP-TIN tới tập tin CỤC-BỘ. Xuất TẬP-TIN ra đầu ra tiêu chuẩn. Không thể cấp phát điểu khiển (driver) FPSWA Không thể tìm thấy vùng vật lý “%s”. Một số mô-đun có lẽ đã bị thếu trong ảnh lõi. Không thể tải sha256 Không thể tải sha512 Tạo cấu trúc giống-BIOS để tương thích ngược với các HĐH sẵn có. Tạo khối môi trường có nội dung trắng. Kiểu terminfo hiện tại: THIẾT_BỊ THIẾT_BỊ [PHÂN_VÙNG[+/-[KIỂU]]] ... THIẾT-BỊ phải là một thiết bị OS (ví dụ /dev/sda). TÊN-THIẾT-BỊ TMỤC THƯ_MỤC [bó_HĐH_yêu_cầu] MÁY-CHỦ-DNS Công cụ gỡ lỗi cho ổ đĩa hệ thống tập tin. Khai báo vùng bộ nhớ bị hỏng (hỏng ram). Tập tin đã giải nén quá lớn Định nghĩa một mục menu. Định nghĩa menu con Xóa một địa chỉ mạng. Xóa một định tuyến mạng. Xóa ổ đĩa (loopback) vòng ngược đã chỉ ra. Xóa các biến. Quyết định trình điều khiển. Quyết định UUID hệ thống tập tin. Quyết định nhãn hệ thống tập tin. Quyết định kiểu hệ thống tập tin. Quyết định kiểu sơ đồ phân vùng. Thiết bị %s: IDThiết bị: %s
 ID thiết bị: không sẵn sàng Màu trực tiếp, mặt nạ: %d/%d/%d/%d  vtrí: %d/%d/%d/%d Tắt ACPI. Tắt SMP. Tắt tất cả các kết xuất khởi động. Bật/tắt SMART (0/1). Đang bỏ qua phân vùng lồng nhau một cách không thích hợp (%s,%s,%s%d) Thống kê bộ nhớ đệm đĩa: hits = %lu (%lu.%02lu%%), misses = %lu
 Số lượng đĩa phải đứng trước danh sách đĩa.
 Hiển thị số thứ tự phiên bản FPSWA Hiển thị trạng thái sứa khỏe SMART. Hiển thị một dòng văn bản. Hiển thị blocklist của TẬP-TIN. Hiển thị kết xuất trên tất cả các bàn giao tiếp. Hiển thị chế độ nguồn điện. Hiển thị cách sử dụng lệnh này, sau đó thoát. Hiển thị trợ giúp này, sau đó thoát. Hiển thị/đặt giờ hiện thời. Đừng xuất ra ký tự dòng mới theo sau. Đừng hiển thị thông điệp. Không tìm thấy bất kỳ đĩa mềm nào. Đừng dùng APM để tạm dừng lại chạy máy tính. Không làm gì, một cách thành công. Không làm gì, một cách không thành công. Đừng hiển thị các thông điệp chẩn đoán khởi động. Đừng tải các bảng chủ chỉ rõ trong danh sách định giới bằng dấu phẩy. Đừng khởi động lại, chỉ tạm dừng lại. Không dừng lại sau lỗi đầu tiên. Đừng cập nhật EBDA. Có thể sửa chữa trường hợp thất bại hoặc bị treo trên một số BIOS nào đó, nhưng mà làm cho nó mất hiệu lực khi HĐH không nhận RDSP từ GRUB. BIẾN_MÔI_TRƯỜNG BIẾN_MÔI_TRƯỜNG [BIẾN_MÔI_TRƯỜNG]... LỖI: không tìm thấy bố cục bàn phím hợp lệ nào. Kiểm tra đầu vào.
 Phím ESC lúc nào cũng thoát. BIỂU_THỨC BIỂU_THỨC ] Thời gian đã qua: %d.%03d giây 
 Thời gian đã qua: %d.%03d giây 
 Không thể nhúng được. GRUB chỉ cài đặt được vào cài đặt này bằng cách sử dụng danh sách cấm. Tuy nhiên, danh sách cấm vẫn không đáng tin và cách dùng của chúng thì khó khăn. Mô phỏng chuỗi phím gõ Hiệu lực khả năng biên dịch ký tự thoát xuyệc ngược. Nhập mật khẩu ZFS:  Vào KDB khi khởi động. Vào chế độ thông thường. Gõ cụm từ mật khẩu cho %s%s%s (%s): Nhập mật khẩu:  Gõ tên người dùng: Gặp lỗi khi phân tích cú pháp của tùy chọn dòng lệnh.
 Ước lượng một biểu thức. Thoát ra gặp lỗi Thoát khỏi GRUB. Thoát khỏi vòng lặp Thoát từ chế độ thông thường. Xuất các biến. Xuất ra bảng phiên bản một cho HĐH. Xuất ra bảng phiên bản 2 và 3 tới cho HĐH. TẬP-TIN TẬP-TIN[ĐỐI-SỐ ...] TẬP-TIN [THAM-SỐ...] TẬP-TIN | TEMPO [CAO-ĐỘ-1 TRƯỜNG-ĐỘ-1] [CAO-ĐỘ-2 TRƯỜNG-ĐỘ-2] ...  TẬP-TIN... TẬP-TIN1 TẬP-TIN2 TÊN-TẬP-TIN LỆNH HỆ-THỐNG-TẬP-TIN  [BIẾN] TẬP-TIN|dấu-nhắc ĐỊNH-DẠNG Giao thức FPSWA không thể tìm thấy giao diện Phiên bản FPSWA: %x
 TỪ-ĐẾN[,TỪ-ĐẾN] TỪ[K|M|G] ĐẾN[K|M|G] FT_Init_FreeType gặp lỗi Gặp lỗi khi khởi động cả hai mục mặc định và “fallback”.
 Gặp lỗi khi tạo cây “device-mapper” Quay trở lại “%s” Kích thước tập tin: %s
 Hệ thống tập tin “%s” không hỗ trợ nhúng Các tập tin khác nhau tại khoảng bù %llu: 0x%x [%s], 0x%x [%s]
 Các tập tin khác nhau ở kích thước: %llu [%s], %llu [%s]
 Không thể truy cập được đến hệ thống tập tin Hệ thống tập tin kiểu %s Tô đầy MBR pha (hybrid) của “THIẾT_BỊ” ổ đĩa GPT. Các phân vùng đã chỉ ra sẽ thuộc về MBR hybrid. Cho phép đến 3 phân vùng. “KIỂU” là một kiểu MBR. “+” có nghĩa là phân vùng đó vẫn hoạt động. Chỉ một phân vùng có thể hoạt động. Hoàn thành việc tải bộ mô phỏng EFI. Trước tiên thử thiết bị GỢI-Ý nếu hiện tại chạy trên ARC. Nếu GỢI-Ý kết thúc bằng dấu phẩy, cũng thử cả phân vùng con Trước tiên thử thiết bị GỢI-Ý nếu hiện tại chạy trên BIOS. Nếu GỢI-Ý kết thúc bằng dấu phẩy, cũng thử cả phân vùng con Trước tiên thử thiết bị GỢI-Ý nếu hiện tại chạy trên EFI. Nếu GỢI-Ý kết thúc bằng dấu phẩy, cũng thử cả phân vùng con Trước tiên thử thiết bị GỢI-Ý nếu hiện tại chạy trên IEEE1275. Nếu GỢI-Ý kết thúc bằng dấu phẩy, cũng thử cả phân vùng con Trước tiên thử thiết bị GỢI-Ý nếu truy cập phần cứng trực tiếp được hỗ trợ. Nếu GỢI-Ý kết thúc bằng dấu phẩy, cũng thử cả phân vùng con Trước tiên thử thiết bị GỢI-Ý. Nếu GỢI-Ý kết thúc bằng dấu phẩy, cũng thử cả phân vùng con Sửa chữa vấn đề ảnh động. Tìm thấy %s trên %s (%s)\n Tìm thấy %s trên %s\n Tìm thấy GNU Mach: %s Tìm thấy mô-đun Hurd: %s Tải hạt nhân NetBSD: %s\n Tìm thấy nền: %s\n Tìm thấy ảnh initrd: %s\n Tìm thấy thư mục mô-đun hạt nhân: %s\n Tìm thấy hạt nhân FreeBSD.: %s\n Tìm thấy ảnh linux: %s\n Tìm thấy theme: %s\n Lỗi Freetype %d đang tải 0x%x cho U+0x%x%s Làm đông đặc cài đặt bảo mật ATA đến khi đặt lại. Thứ sáu G GNU GRUB phiên bản %s Menu Khởi động GRUB GRUB chưa hiểu làm cách nào để tắt máy này! Bộ mô phỏng GRUB. GRUBDEVICE=PLAN9DEVICE Gặp rác trong “ARGP_HELP_FMT”: %s Tạo bố cục bàn phím GRUB từ một (giao diện bàn điều khiển) console Linux Tạo mã băm mật khẩu kiểu PBKDF2 Tạo tập tin cấu hình Tạo ảnh đĩa dạng gộp (chứa toàn bộ các mô-đun) theo định dạng đã chọn Lấy tổng kiểm tra crc32 của TẬP-TIN. Lấy thông tin về bộ đệm đĩa. Lấy/đặt các tham số đĩa ATA. GiB GiB/s BĂM GỢI-Ý Tạm dừng lại chạy máy tính, nếu có thể, dùng APM. Tạm dừng máy tính. Câu lệnh này không có tác động trên mọi phần thực thi của firmware. Lấy N byte từ tập tin xuất. Chào thế giới! Hercules  ID ẢNH1 [ẢNH2 ...] ĐIỂN-GẮN ĐƯỜNG-DẪN-ẢNH CÁC-LỆNH Nhập vào khóa bao bọc ZFS được lưu trong TẬP-TIN. Thiết bị ảo không hợp lệ: kiểu không sẵn dùng Chèn mô-đun. Cài GRUB vào đĩa của bạn. Cài đặt đã hoàn thành. Không có lỗi nào phát sinh. Sai tham chiếu ngược Sai tên lớp ký tự Ký tự đối chiếu không hợp lệ Lệnh %s không hợp lệ.
 Nội dung của “\{\}” không hợp lệ Thiết bị không đúng “%s”.
 Số lượng đĩa không hợp lệ.
 Sai biểu thức chính quy đi trước Sai kết thúc phạm vi Biểu thức chính quy không hợp lệ Gọi chức năng định tuyến tùy theo cấu hình người dùng. K KERNEL C_T_CHỌN BÀN-PHÍM-PHÍM Phím được bấm từ bàn phím để khởi động nhanh mục này. KiB KiB/s Thiết bị ảo còn lại (tập tin hoặc đĩa) Tham số cũ “ask” hiện tại không còn được hỗ trợ. Lời ghi chú: mặt-nạ/vị-trí=red/green/blue/reserved Độ dài của mã băm tạo ra Độ dài của salt Liệt kê máy chủ DNS Liệt kê cạc thiết bị PCI. Liệt kê tất cả các tập tin. Liệt kê các chế độ video sẵn có. Nếu độ phân giải màn hình chỉ đưa ra một thì dùng luôn nó. Liệt kê bảng “coreboot” Liệt kê các thiết bị và tập tin. Liệt kê các thiết bị hoặc tập tin. Liệt kê thiết bị. Liệt kê các tập tin nằm trong THƯ-MỤC Liệt kê các sơ đồ vùng nhớ được cung cấp bởi firmware. Liệt kê các chế độ video được hỗ trợ: Liệt kê những tài khoản được phép khởi động từ mục này. Liệt kê hoặc chọn một terminal đầu vào. Liệt kê hoặc chọn một terminal kết xuất. Liệt kê các biến sẵn dùng. Liệt kê phông chữ đã tải: Liệt kê các biến từ tập tin khối môi trường. Tải ảnh XNU 64-bit. Tải bản đổ BIOS. Tải env (môi trường?) FreeBSD. Tải mô-đun hạt nhân FreeBSD (ELF). Tải mô-đun hạt nhân FreeBSD. Tải FreeDOS kernel.sys. Tải Linux. Tải NTLDR hoặc BootMGR. Tải mô-đun hạt nhân FreeBSD (ELF). Tải mô-đun hạt nhân FreeBSD. Tải hạt nhân Plan9. Tải thư mục phần mở rộng XNU. Tải gói mở rộng XNU. Tải phần mở rộng XNU. Tải ảnh XNU. Tải đĩa RAM XNU. Hệ điều hành (OS) sẽ là “md0”. Tải “device-properties” dump. Tải ảnh PXE. Tải bố cụ bàn phím. Tải một hạt nhân đa khởi động (multiboot) 2. Tải một mô-đun đa khởi động 2 (multiboot 2). Tải một hạt nhân đa khởi động (multiboot). Tải một mô-đun đa khởi động (multiboot). Tải một ảnh splash cho XNU. Tải ảnh ngủ-đông XNU. Tải vào khởi tạo bộ mô phỏng EFI. Tải một bộ tải khởi động khác. Tải một tập tin cấu hình khác nhưng chỉ thay đổi các mục menu. Tải một tập tin cấu hình khác mà không thay đổi ngữ cảnh nhưng lấy các mục menu. Tải một tập tin cấu hình khác mà không thay đổi ngữ cảnh. Tải một tập tin cấu hình khác. Tải một vùng tải lõi-khởi-động (coreboot payload) khác. Tải ảnh nền cho thiết bị cuối đang hoạt động. Tải các bảng ACPI chủ và các bảng được đối số chỉ rõ. Tải initrd. Tải đĩa RAM kOpenBSD. Tải hạt nhân của FreeBSD. Tải hạt nhân của NetBSD. Tải hạt nhân của OpenBSD. Chỉ tải chỉ bảng đã chỉ ra trong danh sách định giới bằng dấu phẩy. Tải cùng một tập tin theo nhiều cách khác nhau. Tải các biến từ tập tin khối môi trường. Tải khóa mã hóa zfs. Phông chữ đã tải: Đang tải GNU Mach ... Đang tải Linux %s ... Đang tải Xen %s ... Đang tải đĩa RAM khởi tạo ... Đang tải hạt nhân của FreeBSD %s ... Đang tải hạt nhân của Illumos ... Đang tải Hurd ... M Lỗi thẩm tra MAC gặp lỗi MENU_ENTRY là một con số, một tiêu đề của mục của menu hoặc một định danh một mục của menu. MÔ-ĐUN Gửi thư yêu cầu hỗ trợ về xorriso tới <bug-xorriso@gnu.org>. Tạo ảnh đĩa GRUB có thể khởi động được cho CD-ROM, đĩa, usb, đĩa mềm. Tạo tập tin bố cục bàn phím GRUB. Tạo ảnh có thể khởi động của GRUB. Tạo thiết bị ảo từ một tập tin. Không thể làm cho phân vùng hoạt động Quản lý các sự ánh xạ ổ đĩa BIOS. Tham số là bắt buộc hay tham số chỉ là tùy chọn cho các tùy chọn dài cũng đồng thời là bắt buộc hay không bắt buộc cho các tùy chọn ngắn tương ứng với nó. Điều khiển thiết bị PCI. Đo thời gian sử dụng LỆNH Hết bộ nhớ Kiểu bộ nhớ: DDR2. Kiểu bộ nhớ: Chưa được biết. Định danh mục menu. Điểm vào menu chưa được chỉ ra. Kiểu mục menu. MiB MiB/s Hỗ trợ chức năng chỉnh sửa dòng kiểu-BASH dạng tối giản. Đối với từ đầu tiên thì phím TAB liệt kê các từ gợi ý là tên các lệnh. Ở thời điểm khác, phím TAB liệt kê các từ liên quan đến tên thiết bị hay tập tin có được. %s Cũng hỗ trợ chức năng chỉnh sửa màn hình kiểu Emacs cực tiểu. Phím TAB liệt kê các từ gợi ý có thể điền vào. Bấm tổ hợp phím Ctrl-x hoặc F10 để khởi động lại, Ctrl-c hoặc F2 để vào chế độ dòng lệnh hoặc ESC để hủy các sửa đổi và trở về trình đơn GRUB. Thiếu đối số
 Thiếu tập tin đầu vào
 Thứ hai Đơn sắc Nhiều hơn một thiết bị cài đặt? Có nhiều hơn một mục menu? Gắn thiết bị mã hóa. Gắn toàn bộ các vùng có cờ “boot” được đặt. Gắn tất cả. Gắn sử dụng UUID. Gắn thiết bị mã hóa. TÊN TÊN [BIẾN] [HINTS] SỐ SỐ_CÁC_GIÂY Tên	Số Ref	Phần-phụ-thuộc
 Đĩa dạng nguyên bản đã được sử dụng. Từ chối sử dụng giao diện đĩa firmware (phần mềm nhúng). Các giao thức mạng: MBR mới được ghi vào “%s”
 Không tìm thấy CS5536 Không tìm FPSWA nào Không có thống kê thời gian mồi máy nào sẵn sàng cả
 chưa chỉ ra lệnh nào.
 Chưa ghi rõ thiết bị.
 Không có thống kê bộ nhớ đệm đĩa nào sẵn sàng cả
 Chưa có thiết bị nào được ánh xạ cả Không hiểu hệ thống tập tin đã tìm thấy Không khớp Chưa ghi rõ đường dẫn.
 Chưa ghi rõ đường dẫn hoặc thiết bị.
 Không có biểu thức chính quy trước đây Không có cây thiết bị ảo nào sẵn dùng Chế độ video “Non-chain 4” 256 màu Không đủ tham số cho lệnh.
 Xin hãy kết nối đến bộ gỡ lỗi từ xa. Số lần lặp của PBKDF2 đĩa OS #số ------> thiết bị GRUB/BIOS Tập tin OS “%s” lỗi mở: %s Tùy chọn -- chuyển tới chế độ lệnh xorriso nguyên gốc. Tùy chọn: Ngoài phạm vi tìm kiếm: %d
 Ngoài phạm vi thay-thế (substitution) (%d, %d)
 Ghi đè ánh xạ gợi ý của thiết bị Plan9. P PHÂN_VÙNG CÁC_LỆNH ĐƯỜNG_DẪN Mã băm kiểu PBKDF2 của mật khẩu của bạn là %s
 CỔNG ĐỊA-CHỈ-CỔNG GIÁ-TRỊ [MẶT-NẠ] ID_KHÓA_CÔNG Ghi màu Phân tích cấu hình theo kiểu cũ trong ngữ cảnh mới Phân tích cấu hình theo kiểu cũ trong ngữ cảnh mới chỉ với các mục nemu Phân tích cấu hình theo kiểu cũ trong cùng ngữ cảnh Phân tích cấu hình theo kiểu cũ trong cùng ngữ cảnh nhưng chỉ các mục menu Số của phần: %s.
 Phân vùng %d được kích hoạt. 
 Phân vùng %s: Kiểu phân vùng “%s” không hỗ trợ nhúng Đường dẫn: %s
 Đường dẫn: không sẵn sàng Thực hiện LỆNH trên phân vùng.
Sử dụng “parttool PHÂN-VÙNG help” để biết danh sách các lệnh có thể dùng. Tra tìm DNS Thực hiện tự động cấu hình IPV6 Ánh xạ bằng cả hai cách trực tiếp và ngược lại. PiB PiB/s Phẳng Phát một giai điệu. Đừng sử dụng tiêu đề cũ “%s” cho GRUB_DEFAULT, sử dụng “%s” (cho các phiên trước 2.00) hoặc “%s” (cho 2.00 hoặc mới hơn) GUID kho ZFS: %016llx
 GUID kho ZFS: chưa sẵn sàng Tên kho ZFS: %s
 Tên kho ZFS: chưa sẵn sàng Trạng thái kho ZFS: hoạt động Trạng thái kho ZFS: đã phá hủy Trạng thái kho ZFS: đã xuất Trạng thái kho ZFS: thiết bị ARC mức 2 Trạng thái kho ZFS: có khả năng kích hoạt Trạng thái kho ZFS: dự trữ để dành Trạng thái kho ZFS: chưa sẵn sàng Trạng thái kho ZFS: chưa khởi tạo Các đối số có thể dùng: Các câu lệnh có thể chạy: Các thiết bị có thể dùng: Các tập tin có thể dùng: Các phân vùng có thể dùng: Các thứ có thể dùng: Kết thúc sớm biểu thức chính quy Bấm bất cứ phím nào để tiếp tục... Hãy nhấn phím bất kỳ để khởi động xnu Bấm phím Enter để khởi động HĐH được chọn, phím “e” để chỉnh sửa câu lệnh trước khi khởi động, hoặc phím “c” để truy cập đến dòng lệnh. Bấm phím Enter để khởi động HĐH được chọn, phím “e” để chỉnh sửa câu lệnh trước khi khởi động, phím “c” để truy cập đến dòng lệnh. Phím ESC để trở về trình đơn trước. Hiển thị thông tin bộ nhớ Hiển thị thông tin ZFS về THIẾT-BỊ. Hiển thị ZFS-BOOTFSOBJ hoặc lưu nó vào BIẾN In ra một danh sách cấm. Hiển thị và thực thi đối số khổi. Hiển thị backtrace. In ra sự nhận diện và cài đặt về ổ đĩa. In kích cỡ theo một định dạng cho người đọc được. Thông tin thiết bị thăm dò được cho đường dẫn đã cho (hoặc thiết bị, nếu tùy chọn -d được chỉ ra). RAM giữ mã bảng coreboot RAM giữ mã firmware Khe cắm RAM số %d
 BTCQ CHUỖI

BTCQ: Biểu thức chính quy Ảnh ROM có hiện diện. Đọc giá trị 16-bit từ ĐỊA-CHỈ. Đọc giá trị 16-bit từ CỔNG. Đọc giá trị 32-bit từ ĐỊA-CHỈ. Đọc giá trị 32-bit từ CỔNG. Đọc giá trị 8-bit từ ĐỊA-CHỈ. Đọc giá trị 8-bit từ CỔNG. Đọc chỉ DÀI byte. Khởi động lại gặp lỗi Khởi động lại vào trình đơn cài đặt firmware Khởi động lại máy tính. Nhập lại mật khẩu:  Thanh ghi %x của %x:%02x.%x là %x
 Biểu thức chính quy quá lớn Gỡ bỏ máy chủ DNS Gỡ bỏ một mô-đun nào đó. Gỡ bỏ một biến môi trường. Gỡ bỏ mọi vùng nhớ trong vùng chỉ định. Render Apple .disk_label. Hãy thông báo lỗi cho %s.
 Hãy thông báo lỗi cho  <bug-grub@gnu.org>. Đã yêu cầu thiết bị cuối nối tiếp nhưng không chỉ ra GRUB_SERIAL_COMMAND. Tham số mặc định sẽ được sử dụng. Đặt lại mỗi sự ánh xạ thành giá trị mặc định. Lấy thông tin về thiết bị. Trả về từ hàm. Quay lại dấu nhắc IEEE1275. Chạy “gdb %s %d”, và đặt ARGS.HOLD thành số không.
 Chạy “go” để phục hồi GRUB. GIÂY TÊN-NGẮN TÊN-NGẮN THẺ ĐỊA-CHỈ [ĐỊA-CHỈ-PHẦN-CỨNG] TÊN-NGẮN MẠNG [GIAO-DIỆN| gw GATEWAY] KÍCH-CỠ NGUỒN|-u UUID|-a|-b CHUỖI Thứ bảy Lưu giá trị đọc vào biến TÊN_BIẾN. Lưu các biến vào tập tin khối môi trường. Lời ví dụ “Chào thế giới”. Quét các thiết bị theo UUID (mã nhận diện duy nhất). Chỉ rõ BIẾN thì thiết bị được tìm thứ nhất được đặt thành một biến. tìm thiết bị theo tên. Tìm thiết bị theo UUID hệ thống tập tin. Tìm thiết bị theo nhãn hệ thống tập tin. Tìm thiết bị theo tập tin, nhãn hoặc UUID của hệ thống tập tin. Nếu chỉ ra --set, thì thiết bị đầu tiên tìm được sẽ đặt cho một biến. Nếu không có biến được chỉ ra, “root” sẽ được dùng. Quét các thiết bị theo tập tin. Chỉ rõ BIẾN thì thiết bị được tìm thứ nhất được đặt thành một biến. Quét các thiết bị theo nhãn. Chỉ rõ BIẾN thì thiết bị được tìm thứ nhất được đặt thành một biến. Rãnh ghi (Sector) %llu đã sẵn được sử dụng bởi thiết bị điều khiển raid “%s”; đừng dùng nó.  Xin hãy hỏi nhà sản xuất đừng ghi dữ liệu vào khe MBR Rãnh ghi %llu đã đang được sử dụng bởi chương trình “%s”; tránh xa nó ra.  Phần mềm này có thể  gây ra  vấn đề  khởi động hoặc các vấn đề khác trong tương lai.  Xin hãy yêu cầu tác giả của nó đừng ghi dữ liệu vào rãnh khởi động Chọn thiết bị theo vị trí trên bus. Chọn thiết bị theo nhà sản xuất và ID. Đặt sự quản lý điện năng cấp cao (Advanced Power Management)
(1=thấp, ..., 254=cao, 255=tắt). Đặt sự tự động quản lý âm thanh (Automatic Acoustic Management)
(0=tắt, 128=im, ..., 254=nhanh). Đặt OEMID của RSDP, XSDT và RSDT. Đặt mã số OEMTABLE ID của RSDP, XSDT và RSDT. Đặt bản sửa đổi OEMTABLE của RSDP, XSDT và RSDT. Đặt cờ “ẩn” trong kiểu phân vùng Đặt một biến để trả lại giá trị. đặt biến cho thiết bị đầu tiên tìm thấy. Đặt biến môi trường. Đặt màu nền cho thiết bị cuối đang hoạt động. Đặt trường trình tạo của RSDP, XSDT và RSDT. Đặt bản sửa đổi trình tạo của RSDP, XSDT và RSDT. Đặt biến môi trường gỡ lỗi. Đặt ổ đĩa thành chế độ ngủ. Đặt ổ đĩa thành chế độ chờ. Đặt tham số vị trí. Đặt thiết bị gốc. Đặt thời hạn trạng thái chờ
(0=tắt, 1=5giây, 2=10giây, ..., 240=20phút, 241=30phút, ...). Đặt kiểu terminfo của TERM  thành TYPE.
 Đặt mục menu mặc định sẽ khởi động cho GRUB, chú ý là chỉ áp dụng cho lần khởi động sau. Đặt mục menu khởi động mặc định cho GRUB. Đặt địa chỉ của cổng nối tiếp. Đặt tính chẵn lẻ của cổng nối tiếp. Đặt tốc độ của cổng nối tiếp. Đặt các bit dừng của của cổng nối tiếp. Đặt chiều dài từ của cổng nối tiếp. Đặt đơn vị nối tiếp. Cài đặt các ảnh để khởi động từ THIẾT-BỊ.

Bạn không nên chạy chương trình này trực tiếp.  Sử dụng lệnh grub-install để thay thế. Đặt mật khẩu (dạng PBKDF2). Đặt mật khẩu người dùng (chữ rõ). KHÔNG AN TOÀN ! Đặt biến dùng đầu vào người dùng. Đặt các biến. Đặt kiểu của phân vùng thành 0x%x
 Dịch chuyển tham số vị trí. Hiện thông tin ACPI. Hiển thị thông tin APM. Hiển thị nội dung thiết bị điều khiển CBMEM. Hiển thị một thông điệp trợ giúp. Hiển thị một danh sách dài chứa thông tin bổ sung. Hiển thị thông tin của TẬP-TIN ở dạng thập lục phân. Hiển thị các mô-đun đẫ được tải. Hiển thị nội dung của bộ nhớ. Hiển thị nội dung của rãnh ghi IDENTIFY (nhận diện) kiểu ATA. Hiển thị nội dung của một tập tin hay vùng nhớ. Hiển thị nội dung của một tập tin. Hiển thị các sự ánh xạ hiện thời. Hiển thị thông điệp này. Chỉ hiển thị các bảng phiên bản 1. Chỉ hiển thị các bảng phiên bản 2 và 3. Tắt máy gặp lỗi Mô phỏng lệnh “initrd” kiểu-grub-cũ Mô phỏng lệnh “kernel” kiểu-grub-cũ Mô phỏng lệnh “modulenounzip” kiểu-grub-cũ Mô phỏng lệnh “password” kiểu-grub-cũ Mô phỏng lệnh “password” kiểu-grub-cũ trong chế độ mục trình đơn Bỏ qua N byte từ tập tin đầu vào. Bỏ qua các byte bù từ đầu tập tin. Khe %d mở
 Một số thành phần Hurd được tìm thấy, nhưng không đủ để khởi động. Ghi rõ tên tập tin. định rõ kiểu băm cần dùng Chỉ định một hay nhiều phông chữ cần tải. Chỉ ra kích thước cho từ thao tác đọc Ghi rõ số lượng tập tin đầu vào. Tốc độ: %s
 Khởi chạy “GDB stub” trên cổng đã cho Dừng “GDB stub” Lưu các thành phần so khớp SỐ trong TÊN-BIẾN. Thành công Chủ nhật Loại bỏ kết xuất thông thường (để lại các thông tin cảnh báo). Chuyển sang các ổ đĩa thật. Nếu không chỉ ra mô-đun nào thì tập hợp mặc định (pata,ahci,usbms,ohci,uhci,ehci) được dùng Lỗi cú pháp trên dòng %u.
 Các lỗi cú pháp đã được phát hiện trong tập tin cấu hình GRUB đã tạo.
Hãy chắc chắn rằng không có lỗi nào trong tập tin /etc/default/grub
và /etc/grub.d/* hoặc báo cáo tập tin lỗi này bằng cách đính
kèm tập tin %s. Bộ điều khiển truy xuất bus hệ thống thấy cổng V/R là tại 0x%x
 T ĐÍCH Định dạng đích chưa được chỉ ra (sử dụng tùy chọn -O). Thiết bị cuối có hình thái được chỉ ra. Thiết bị cuối ở dạng chỉ-ASCII [mặc định]. Thiết bị cuối là kiểu UTF-8 thứ-tự-lôgíc Thiết bị cuối là kiểu UTF-8 thứ-tự-ảo Thử khả năng hỗ trợ USB. Thử bit tại BYTE:BIT trong CMOS. Kiểm tra tốc độ đọc tập tin. Kiểm tra xem BTCQ có khớp với CHUỖI. Thử hệ thống video phụ ở chế độ WxH. Thử hệ thống phụ ảnh động. Chỉ-chứa-chữ Các tập tin là đồng nhất.
 Mục nhập được tô sáng sẽ được tự động thực hiện trong %d giây. Mục này có thể khởi động được bởi bất kỳ người nào. Cái này yêu cầu cài đặt GRUB_DEFAULT=saved trong %s/default/grub.\n Thứ năm TiB TiB/s Công cụ sửa khối biến môi trường. Kích thước tổng cộng bộ nhớ flash: %d B.
 Có dấu chéo ngược theo sau Chuyển dạng UUID 64-bit sang một định dạng thích hợp với XNU. Nếu tùy chọn -l được đưa ra giữ nó ở chữ thường như được thực hiện bởi lệnh blkid. Chuyển đổi kiểu tên tập tin hệ thống thành kiểu GRUB. Dịch chuỗi với các cài đặt hiện tại. Hãy thử câu lệnh “%s --help” (trợ giúp) hoặc “%s --usage” (cách sử dụng) để xem thêm thông tin.
 Thứ ba NGƯỜI_DÙNG MẬT_KHẨU TÀI-KHOẢN MẬT-KHẨU-PBKDF2 TÊN_NGƯỜI_DÙNG[,TÊN_NGƯỜI_DÙNG] UTF-8 Không tạo được đường ống pipe: %s Không thể xác định được nền tảng của bạn. Sử dụng --target. Không thể fork: %s Không thể mở dòng dữ liệu từ %s: %s Không thể lấy trạng thái kho ZFS nhận về dữ liệu không nén. Giải nét tập tin trước khi tổng kiểm tra. Không hiểu kiểu địa chỉ %d
 Không hiểu lệnh “%s”.
 Chưa biết định dạng nén %s Không hiểu bảng mã Không hiểu tham số mở rộng “%s”. Không hiểu đặc điểm phông chữ gsub 0x%x (%s)
 Không hiểu mã quét bàn phím 0x%02x
 Không hiểu mã quét bàn phím %s
 Không biết lỗi hệ thống Không hiểu chế độ video Kiểu thiết bị ảo chưa được biết đến: %s
 Hạ tải mô phỏng EFI. Chưa khớp “(” hoặc “\(” Có ký tự lẻ đôi “)” hoặc “\)” Chưa khớp “[” hoặc “[^” Chưa khớp “\{” Không chấp nhận tùy chọn “%s”\n Không thừa nhận trạng thái kho ZFS Không hỗ trợ kiểu địa chỉ %d
 Đặc tả thù hình của phông chữ không được hỗ trợ: %d
 Không hỗ trợ kiểu địa chỉ phần cứng %d
 Không hỗ trợ định dạng ảnh Cờ thay-thế (substitution) không được hỗ trợ: 0x%x
 Đặc tả thay-thế (substitution) không được hỗ trợ: %d
 Kiểu thay-thế (substitution) không được hỗ trợ: %d
 Cách dùng: Cách dùng: %s -o KẾT-XUẤT CÁC-THAM-SỐ-CKBMAP...\n Cách dùng: %s THIẾT-BỊ
 Cách dùng: %s [TẬP-TIN-VÀO [TẬP-TIN-RA]]
 Cách dùng: %s [CÁC-TÙY-CHỌN] ĐIỂM-VÀO-MENU\n Sử dụng: %s [TÙY_CHỌN]\n Dùng CD-ROM làm gốc. Dùng bộ gỡ lỗi GDB từ xa thay cho DDB. Sử dụng CHUỖI như là phần thân mục menu. Sử dụng thiết bị gốc dựng sẵn (compiled-in root). Dùng bàn giao tiếp kiểu nối tiếp. Dùng phím %C và %C để chọn mục được tô sáng. BIẾN GAIO-DIỆN SỐ MÔ-TẢ TÊN-BIẾN Đếm ngược với chi tiết. Thẩm tra chữ ký đính kèm. Phiên bản %u.%u
32-bit CS = 0x%x, dài = 0x%x, khoảng-bù = 0x%x
16-bit CS = 0x%x, dài = 0x%x
DS = 0x%x, dài = 0x%x
 Thiết bị ảo đã bị gỡ bỏ Thiết bị ảo bị hỏng Thiết bị ảo đã offline Thiết bị ảo đang online Thiết bị ảo đã bị gỡ bỏ CẢNH BÁO: không có thiết bị console (bàn điều khiển) nào sẵn sàng cho OS CẢNH BÁO: không có cài đặt platform-specific (nền-tảng-đặc-thù) nào được thực hiện CẢNH BÁO: các tham số đặc điểm phông chữ không được hỗ trợ: %x
 RỘNGxCAO Đợi trong vòng một số các giây được ghi rõ. Đợi cú bấm phím sau khi kết xuất mỗi dòng. Cảnh báo: Cảnh báo: gặp màu nền không đúng “%s”
 Cảnh báo: gặp màu tiền cảnh không đúng “%s”
 Cảnh báo: gặp lỗi cú pháp (dấu xuyệc còn thiếu) trong “%s”
 Thứ tư Windows NT/2000/XP (bộ tải) Windows Vista/7 (bộ tải) Ghi GIÁ-TRỊ 16-bit vào ĐỊA-CHỈ. Ghi GIÁ-TRỊ 16-bit vào CỔNG. Ghi GIÁ-TRỊ 32-bit vào ĐỊA-CHỈ. Ghi GIÁ-TRỊ 32-bit vào CỔNG. Ghi GIÁ-TRỊ 8-bit vào ĐỊA-CHỈ. Ghi GIÁ-TRỊ 8-bit vào CỔNG. Ghi byte SPD: %d B.
 Bộ ảo hóa Xen, phiên bản %s YUV  Bạn cần phải chỉ ra ít nhất một lệnh.
 Bạn sẽ phải đặt thủ công “SystemPartition” và “OSLoader”. Bạn có một core.img quá nhỏ mà không chứa được core.img. xorriso của bạn không hỗ trợ “--grub2-boot-info”. Một số tính năng bị tắt. Hãy dùng xorriso 1.2.9 hay mới hơn. xorriso của bạn không hỗ trợ “--grub2-boot-info”. Ảnh lõi của bạn quá lớn. Tính năng coi Boot như là đĩa bị tắt. Hãy dùng xorriso 1.2.9 hay mới hơn. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] TẬP-TIN [--md5] MẬT-KHẨU [TẬP-TIN] [--no-mem-option] [--type=KIỂU] TẬP-TIN [THAM-SỐ ...] [-1|-2] [--exclude=BẢNG1,BẢNG2|--load-only=BẢNG1,BẢNG2] TẬP_TIN1 [TẬP_TIN2] [...] [-c TẬP-TIN [-p TIỀN-TỐ]] [TẬP-TIN1 [TẬP-TIN2 ...]] [-d] TÊN-THIẾT-BỊ TẬP-TIN. [-e|-n] CHUỖI [-f TẬP-TIN] [-f TẬP-TIN] tên_biến [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] TÊN [-h|-p|-r] [TẬP-TIN] [-l] GRUBUUID [TÊN-BIẾN] [-l|-h|-a] [TẬP-TIN ...] [-m (stretch|normal)] TẬP-TIN [-s VỊ-TRÍ] [-d THIẾT_BỊ] [-s VỊ-TRÍ] [-d THIẾT-BỊ] [-v BIẾN] THANH-GHI[=GIÁ-TRỊ[:MẶT-NẠ]] [-s CỠ] TÊN-TẬP-TIN [ĐCHỈ|comĐƠN-VỊ][,TỐC-ĐỘ] [ ĐỐI-SỐ] [CARD [ĐỊA-CHỈ-PHẦN-CỨNG]] [CARD] [BIẾN-MÔI-TRƯỜNG=GIÁ-TRỊ] [BIẾN_MÔI_TRƯỜNG] [PHÍM-GÕ-1] [PHÍM-GÕ-2] ... [MÔ-ĐUN1 MÔ-ĐUN2 ...] [SỐ:]TÊN-BIẾN [SỐ] [CÁC-TÙY-CHỌN...] [CÁC_TÙY_CHỌN] [TÙY_CHỌN ...] ĐĨA [TÙY_CHỌN ...] TẬP_TIN_HAY_THIẾT_BỊ [CÁC_TÙY_CHỌN] [TẬP_TIN_FONT] [TÙY-CHỌN]... [MÔ-ĐUN] [TÙY_CHỌN]... [ĐƯỜNG DẪN|THIẾT_BỊ] [C_T_CHỌN] [ĐƯỜNG_DẪN] [MẪU ...] [DANH-SÁCH-NGƯỜI-DÙNG] [GIÁ-TRỊ]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [KIỂU]] [[năm-]tháng-ngày] [giờ:phút[:giây]] [bus]:[slot][.func] [nhàsảnxuất]:[thiếtbị] lệnh “cryptomount” gặp lỗi: %s lệnh “loopback” gặp lỗi: %s không tìm thấy “obppath” trong thư mục cha của “%s”, không tìm thấy tên IEEE1275 một giá trị đã được gán cho tham số “%s” trong khi nó lại không yêu cầu đối số truy cập bị từ chối thêm đoạn NOTE cho CHRP IEEE1275 địachỉ không tìm thấy địa chỉ đang thử đọc hay ghi ngoài đĩa “%s” thử đọc hay ghi ngoài phân vùng thử đọc sau phần cuối thật của tập tin thử di chuyển vị trí ngoài phạm vi của tập tin đang thử đọc ảnh lõi “%s” từ GRUB đang thử đọc ảnh lõi “%s” từ GRUB lần nữa RAM sẵn dùng các định dạng có thể sử dụng: chữ ký sai base_addr = 0x%llx, dài    = 0x%llx, %s
 địa-chỉ-cơ-sở = 0x%llx, dài = 0x%llx, kiểu = 0x%x
 tệp tin bitmap (ảnh bít) “%s” không được hỗ trợ định dạng blocklist TẬP-TIN danh sách cấm không hợp lệ kích thước khối không chia hết cho 512 Thoát khỏi vòng lặp 0 chưa xác định được kiểu hệ thống tập tin trên %s không thể tìm thấy lệnh “%s” không thể gắn vùng được mã hóa “%s”: %s không thể mở “%s”: %s không thể mở tập tin “%s”, mục lục %d: lỗi %d không thể lấy về “danh sách cấm” không thể lấy về danh sách cấm: %s không thể nén ảnh hạt nhân không tìm thấy ổ đĩa GRUB cho %s.  Kiểm tra tập tin device.map không tìm thấy thiết bị cho %s (/dev đã gắn chưa?) không thể gắn hệ thống tập tin cho đường dẫn “%s”: %s không thể mở tập tin OS “%s”: %s không thể mở “%s”: %s không thể đọc “%s” cho đúng không thể đọc “%s”: %s không thể đổi tên tập tin %s thành %s: không thể phục hồi thư mục nguyên gốc không thể seek “%s”: %s không thể lấy trạng thái về “%s”: %s không thể ghi CD-ROM không thể ghi vào “%s”: %s không thể ghi vào đầu ra tiêu chuẩn: %s không tìm thấy card  cat TẬP-TIN Xác minh mã tổng kiểm tra không đạt chọn kiểu nén sẽ dùng cho ảnh lõi cmp TẬP-TIN NỘI-BỘ comĐƠN-VỊ][,TỐC-ĐỘ] so sánh gặp lỗi tại offset %llu Kết nối đã bị từ chối quá lâu không trả lời chuyển sang phông chữ đậm ảnh lõi quá lớn (0x%x > 0x%x) không khớp phiên bản core.img không thể tự cấu hình %s không thể tìm thấy thiết bị số cần thiết của hệ thống tập tin đa-thiết-bị không tìm thấy người tiêu dùng “geli” không tìm thấy lớp geom “part” không thể mở geom không thể đọc “ELI metadata” (siêu dữ liệu) không thể lấy UUID không thể lấy về “geli UUID” không thể nhận về dữ liệu ngẫu nhiên cho salt không thể gửi gói mạng cp TẬP-TIN CỤC-BỘ crc TẬP-TIN số của lỗi cryptographic (mã hóa) %d cygwin_conv_path() gặp lỗi xóa ánh xạ thiết bị nếu nó đã sẵn có không kết nối được đến đích số lượng thiết bị đã đạt đến giới hạn tắt gợi ý không tìm thấy đĩa “%s” đĩa không tồn tại, do đó quay trở lại phân vùng thiết bị %s mô-đun đĩa sử dụng (biosdisk hoặc native). Tùy chọn này chỉ dùng được trên đích là BIOS. Kích cỡ diskboot.img phải là %u byte. không thăm dò hệ thống tập tin trên THIẾT-BỊ thành phần tên miền quá dài không cập nhật trạng thái LED đã xong coi TẬP-TIN nhúng như là cấu hình trước đó nhúng TẬP-TIN như là khóa công dành cho việc xác minh chữ ký không thể nhúng được, nhưng mà chức năng này được yêu cầu cho cài đặt RAID hay LVM không thể nhúng được, nhưng mà chức năng được yêu cầu khi cài đặt cross-disk
* cross-disk: thư mục /boot ở trên một đĩa nhưng MBR lại trên một cái khác bật mồi máy ARCS (máy mips big-endian, phần lớn là SGI). Tắt HFS+, APM, sparc64 và mồi máy như là ảnh đĩa cho i386-pc bật mồi máy sparc. Tắt HFS+, APM, sparc64 và mồi máy như là ảnh đĩa cho i386-pc vào: boot, “e”: tùy chọn, “c”: dòng-lệnh khối môi trường quá nhỏ lỗi: %s.
 cần ảnh GRUB nằm dưới thư mục T-MỤC/%s thay vì tại thư mục %s gặp lỗi khi lấy đường dẫn canonical của %s lỗi đọc sector 0x%llx từ “%s” đọc mật khẩu thất bại lỗi ghi sector 0x%llx từ “%s” sai RAM hỏng (BadRAM) không tìm thấy tập tin “%s” cần tên tập tin cần tên tập tin hoặc tempo+notes Hệ thống tập tin “%s” không hỗ trợ nhãn hệ thống tập tin “%s” không hỗ trợ danh sách cấm ảnh firmware quá lớn ép buộc tự-động-gợi-ý cần bốn đối số fwstart.img không khớp với bất kỳ phiên bản tốt nào. Bạn phải tự chịu trách nhiệm khi thực hiện nó tạo ảnh theo ĐỊNH-DẠNG hiển thị cách sử dụng dạng ngắn gọn hiển thị trợ giúp này đưa ra tham số là thiết bị hệ thống, không phải đường dẫn grub-mkimage được biên dịch mà không được hỗ trợ bởi định dạng XZ grub> treo trong vòng GIÂY giây (mặc định là 3600) hex TẬP-TIN bỏ qua vẽ phông chữ có sẵn, bắt vẽ lại khi nó được tải đặc tả kích thước thiết bị cuối (terminal) không đúng cài ảnh GRUB dưới thư mục DIR/%s thay cho thư mục %s cài đặt ngay cả khi nhận thấy có trục trặc sai mật khẩu PBKDF2 sai số màu nhiệm ELF phụ-thuộc-kiến-trúc số màu nhiệm ELF độc-lập-kiến-trúc không hợp lệ kích thước khối không hợp lệ sai đặc tả màu sắc “%s” khối môi trường không hợp lệ tên tập tin “%s” không hợp lệ phạm vi phông chữ không hợp lệ định dạng dòng không hợp lệ: %s tham số không hợp lệ %s giá trị nhảy qua %lld không hợp lệ tên biến “%s” không hợp lệ đặc tả chế độ video “%s” không hợp lệ lỗi ioctl GET_ARRAY_INFO: %s lỗi ioctl GET_DISK_INFO: %s lỗi ioctl RAID_VERSION: %s ảnh của nhân quá lớn (0x%x > 0x%x) liệt kê địa chỉ mạng liệt kê các card mạng Liệt kê các định tuyến mạng ls ĐƯỜNG-DẪN tập tin lzop bị sai hỏng làm cho đĩa cũng có khả năng khởi động giống như đĩa mềm (mặc định cho các thiết bị fdX). Có lẽ nó không phải lúc nào cũng có hiệu quả trên các BIOS nhưng lại hữu dụng khi cài đặt nó trên một đĩa cứng không có khả năng khởi động. thiếu ký hiệu “%c” thiếu giá trị cho tùy chọn “%s” mô-đun “%s”chưa được tải mô-đun chưa được tải tên cần một ảnh và điểm-gắn không tìm thấy APM Không tìm thấy thông tin DHCP Không tìm thấy tùy chọn %d DHCP Không tìm thấy tùy chọn DHCP Không tìm thấy bản ghi DNS không nhận về đáp ứng nào từ DNS chưa cấu hình máy phục vụ DNS không có “/” trong tên tập tin kiểu canonical (đầy đủ) chưa chỉ ra lệnh không có khóa giải mã sẵn dùng không tìm thấy card mạng nào chưa chỉ ra máy chủ không có phân vùng như vậy không tìm thấy chế độ video nào thích hợp không có bảng ký hiệu chưa xác định terminal ảnh lõi không chứa dấu chấm dứt trong tập tin lõi tìm được dữ liệu không phải được sắp hàng theo rãnh ghi không phải một thư mục không phải là phân vùng cơ sở không phải tập tin thường không trong thân hàm cần thiết một đối số có phần mềm khác đã sử dụng vùng nhúng, và ở đây không đủ không gian để lưu core.img. Những phần mềm như thế thường cố gắng lưu dữ liệu theo cách không thăm dò trước. Chúng tôi khuyến nghị bạn nên điều tra rõ ràng. hết bộ nhớ xuất ảnh đã tạo ra TẬP-TIN [mặc định=stdout] tập tin đầu vào cần phải được chỉ ra xuất cấu hình đã tạo ra TẬP-TIN [mặc định=stdout] bị tràn mật khẩu không khớp thi hành tự động cấu hình bootp không tìm thấy phân vùng vật lý %s gặp kết thúc tập tin quá sớm gặp kết thúc tập tin %s quá sớm bấm phím CapsLock bấm phím Insert bấm phím NumLock bấm phím ScrollLock bấm SysRq bấm alt trái bấm ctrl trái bấm shiff trái bấm alt phải bấm ctrl phải bấm shiff phải in ra phiên bản chương trình hiển thị ra thông tin phiên bản rồi thoát hiển thị trợ giúp này, sau đó thoát ra hiển thị thông tin chi tiết. không tìm thấy khóa công %08x lỗi đọc tại offset %llu: %s đọc văn bản từ TẬP-TIN. thư mục con tương đối trên máy chủ mạng tái định vị 0x%x vẫn chưa được thực hiện RAM dự trữ phục hồi tùy chọn DHCP và ghi nó vào BIẾN. Nếu BIẾN là - thì sẽ hiển thị giá trị. thư mục gốc của máy chủ TFTP tìm thấy điều kiện tìm đường (route loop) ghi lại ảnh ROM vào TMỤC [tùy chọn] ghi kết xuất vào TẬP-TIN [bắt buộc] chọn chỉ số cho font không tìm thấy cổng nối tiếp “%s” set [TÊN=GIÁ-TRỊ ...] đặt chế độ capslock  đặt kích cỡ phông lớn đặt kích cỡ phông nhỏ đặt tên phông chữ đặt phạm vi phông chữ đặt kích cỡ phông đặt tên tập tin đầu vào cho bộ phận 32-bit. đặt tên tập tin đầu vào cho bộ phận 64-bit. đặt tên tập tin đầu vào. Mặc định là STDIN đặt chế độ chèn đặt chế độ numlock đặt tên tập tin đầu ra. Mặc định là STDOUT đặt chế độ tạm dừng đặt thư mục tiền tố [mặc định=%s] đặt chế độ scrolllock đặt tên chương trình kích-thước biến-đổi|thường không tìm thấy ký hiệu “%s” tạm không tìm thấy thiết bị cuối %s hoặc không nắm được nó bằng terminfo không tìm thấy thiết bị cuối “%s” tham số “%s” yêu cầu một số nguyên mục device.map “%s” không hợp lệ. Lờ nó đi. Xin hãy sửa lại hoặc xóa device.map của bạn ổ đĩa có tên “%s” trong ánh xạ thiết bị không chính xách. Sử dụng %s để thay thế. Xin hãy sử dụng dạng thức [hfc]d[0-9]* (vdụ “hd0” hoặc “cd”) rãnh ghi thứ nhất của tập tin lõi không phải được sắp hàng theo rãnh ghi thiết bị đã cài đã bị gỡ bỏ. Tùy chọn này chỉ sẵn dùng trên EFI. kiểu phân vùng 0x%x không hợp lệ trong tập tin lõi, các rãnh ghi bị phân mảnh quá “%s” không có kích cỡ %u “%s” có kích cỡ quá lớn “%s” có kích cỡ quá nhỏ tập tin ELF không phải là một kiểu đúng Nhãn phân vùng GPT này không có phân vùng khởi động BIOS; nên không nhúng được LDM này không có Embedding Partition (phân vùng nhúng; việc nhúng là không thể Nhãn phân vùng kiểu MSDOS (msdos-style) không có chỗ trống nằm sau MBR; nên không nhúng được cần ba đối số gặp lỗi quá giờ khi mở “%s” lỗi quá giờ khi đọc “%s” quá lâu: không thể phân giải địa chỉ phần cứng liên kết mềm lồng nhau quá sâu lệnh gắn “%s” cho đường dẫn “%s” có nhiều từ không phải là tùy chọn, ít nhất “%s” và “%s” bộ dịch “%s” cho đường dẫn “%s” chỉ được đưa cho các tùy chọn, không thể tìm thấy đường dẫn thiết bị lệnh gắn hệ thống tập tin bị trống rỗng cho đường dẫn “%s” hai đối số kiểu không nhận ra được một hệ thống tập tin trong %s nên không thực hiện tiến trình kiểm tra tính an toàn kích thước thiết bị chưa căn chỉnh kết thúc tập tin đột xuất không hiểu tham số “%s” kiểu nén chưa được biết đến %d
 không hiểu kiểu thiết bị: %s
 không hiểu kiểu hệ thống tập tin không hiểu kiểu của thiết bị RAID “%s” lỗi biểu thức chính quy chưa biết không hiểu định dạng đích %s
 không hiểu kiểu terminfo “%s” không chấp nhận đặc tả định dạng tùy chọn DHCP “%s” không thừa nhận địa chỉ mạng “%s” không nhận ra giao diện mạng“%s” không thừa nhận số không thể phân giải địa chỉ %s unset [TÊN ...] đáp ứng trả lời lỗi HTTP không được hỗ trợ %d: %s đáp ứng trả lời HTTP không được hỗ trợ không hỗ trợ phiên bản RAID: %d.%d định dạng gzip không được hỗ trợ không hỗ trợ tính chẵn lẻ của cổng nối tiếp không hỗ trợ tốc độ của cổng nối tiếp không hỗ trợ bit dừng của của cổng nối tiếp không hỗ trợ chiều dài từ của cổng nối tiếp dùng MÀU cho nền dùng MÀU cho nhãn dùng MÀU cho nền nhãn dùng MÀU cho chữ sử dụng TMỤC như là gốc phân vùng hệ thống EFI. dùng TẬP-TIN như là phông chữ (PF2). sử dụng TẬP-TIN như là phông dành cho nhãn sử dụng TẬP-TIN như là ảnh khởi động [mặc định=%s] sử dụng TẬP-TIN như là ảnh lõi [mặc định=%s] sử dụng TẬP-TIN như là ánh xạ thiết bị [mặc định=%s] sử dụng TẬP-TIN như là xorriso [tùy chọn] sử dụng các tập tin GRUB trong thư mục TMỤC [mặc định=%s] dùng CHUỖI như là tên sản phẩm Sử dụng CHUỖI như là phiên bản sản phẩm sử dụng tập tin định danh thậm chí cả khi UUID sẵn dùng sử dụng các ảnh và mô-đun dưới TMỤC [mặc định=%s/<nền tảng>] biến “%s” chưa được đặt kiểu UTF-8 thứ-tự-ảo chờ cho đến ghi bộ gỡ lỗi được tiếp hợp vào sẽ không xử lý với danh sách cấm sai số mầu nhiệm hoặc phiên bản ELI xnu_uuid THIẾT-BỊ tập tin zx sai hỏng hoặc không hỗ trợ tùy chọn khối bạn không thể xóa địa chỉ này bạn cần phải tải kernel trước đã BIOS Boot Partition (phân vùng khởi động BIOS) quá nhỏ; nhúng là điều không thể thực hiện được Bạn có một core.img quá lớn. Nó không vừa với vùng nhúng vùng nhúng của bạn nhỏ một cách bất thường. Nó không chứa được core.img.                                                                                                                            boot/grub/locale/zh_CN.mo                                                                           0000600 0001750 0001750 00000072653 13417732100 0014240 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                       ]               8     9     O     S    b    g     o  !          ,          $         '   *   C   
   n   	   y   7                                 !  $   !     <!     T!  !   m!     !  Z   "     r"     "     "     "     "     "     "     #     4#     K#     f#     u#     #     #     #     #  	   #  #   #     $     $     ?$     V$     e$  &   $     $  !   $  ,   $     %     %     %  !   .%     P%     b%     t%     %     %     %     %  
   %     &     &     &     5&     Q&     i&     &  +   &     &  #   &     '     ''  $   F'     k'     '  '   '  9   '     (     (     :(     A(     U(  
   l(     w(     (  +    )     L)     b)     u)     )  (   )     )     )     )     )     *     !*     &*     5*     =*     I*     Z*  2   p*     *     *     *  !   +  H   +     ,  )   #,     M,     b,     ~,     ,     ,  '   ,  P   ,     -     =-     @-     T-     e-     z-     -  "   -     -     -  O   -     :.     R.     i.  %   }.  !   .  "   .     .     /  +   /     G/     ^/     n/  !   /     /     /     /      /     0     0     ;0     W0     k0     {0     0     0     0     0     0  !   1     :1  2   T1     1  *   1  8   1     2     2     *2     A2  3   Y2  $   2  +   2     2     2     3     3      73     X3     m3     t3     3     3     3     f4     5     75     I5     c5  "   |5     5     5     5     5  "   5  #   5     6  )   '6     Q6     ^6     v6     6     6     6     6     6     7  !   7  "   87  '   [7     7     7     7     7     7  -   7  )   8     G8     ]8     u8  &   |8  )   8  ^   8     ,9  $   F9  %   k9  ^   9  _   9  >   P:  D   :  !   :  '   :  -   ;     L;  )   l;     ;  )   ;  ,   ;     
<     *<     C<     ^<     y<  E   <  $   <     <     =     .=     I=      h=     =  q   =     >  :   ->     h>     >     >     >     >  0   >     ?     ?     :?     U?     h?  -   ?     ?     ?  '   ?  !   @  "   &@  #   I@     m@     @  !   @     @  <   @     A  0   3A     dA     rA     A  $   A     A     A     A  '   A     B     !B     )B     <B  '   JB  -   rB  '   B  '   B  .   B  *   C  B   JC  /   C     C  .   C  )   D     ,D  	   ;D     ED  5   cD     D     D     D     D     D     D     D     E     E     .E  
   <E  
   GE  !   RE  )   tE  0   E  6   E     F      F     6F     QF     `F     |F     F     F  "   F  F   F     G     $G     -G     EG     MG     cG  1   G     G  7   G  /   H     ;H     VH     tH  F   H  z  H     TJ     dJ     kJ     |J     mK     XL     fL     L  '   L     L     L     L  (   M     8M     GM  -   VM  &   M     M     M  '   M     M  '   M     N     2N     HN     gN  Z   N     VO     lO     O  !   O     O     O     O     O  $   P     1P     PP     bP     uP     P     P  	   P  	   P  $   P     P  !   Q     (Q     >Q     KQ  $   jQ     Q      Q  D   Q     Q     	R     R  !   'R     IR     bR     rR     R     R     R     R     R     R     S     S     1S     NS  !   [S  !   }S  $   S     S     S     S  !   T      1T     RT     nT     T  8   T     T  $   T     U     $U  &   DU  	   kU     uU     U     V     V     0V     FV     VV     iV     V     V     V     V     V     V     V  	   V     W     W     $W  4   :W     oW     W     W     `X  P   ~X     X  8   X     Y  "   ,Y  #   OY  	   sY     }Y  #   Y  &   Y  $   Y     Y     Y     	Z     Z     2Z     NZ     eZ     Z     Z  T   Z     [     [  !   3[     U[  $   t[  $   [     [     [  !   [     \     .\     D\  #   ]\     \     \     \  "   \     \     ]     (]     @]     U]     p]     ]     ]     ]     ]     ]  #   ^     6^  /   R^     ^  $   ^  -   ^     ^     _     _     6_  8   O_  '   _     _     _     _     _     `     "`     ?`     O`     V`     r`     `     `     7a     a     a     a     b     *b  	   Ab     Kb     Yb     `b  !   tb  $   b     b  $   b     b     c     c     #c     3c     Cc     Sc     cc     yc     c  $   c  *   c     c     d     0d     Id     Yd  -   ud  !   d     d     d  	   d  &   d     %e  ]   >e     e  $   e  $   e  o   e  ]   of  L   f  L   g  +   gg  1   g  ;   g  !   h  *   #h     Nh  4   jh  :   h     h  !   h  !   i     :i     Pi  W   ci  5   i     i  !   j     /j     Kj     jj     j  r   j     k  7   -k  $   ek     k     k     k     k     k     k     l     #l     9l  !   Ll  !   nl     l     l  *   l  !   l  '   m  *   7m     bm  6   wm  )   m     m  7   m     )n  $   En     jn     xn     n  !   n     n     n  	   n  *   n     o     .o     6o     Io     Zo  /   uo  !   o  !   o  -   o  %   p  3   =p  +   qp     p  5   p  /   p     q     -q     9q  ;   Uq     q     q     q     q     q     q     r     r      r     9r     Fr     Ur  %   ^r     r  /   r  5   r     
s     s     4s     Os     gs     s  
   s     s  )   s  0   s     t  
   &t     1t     It     Qt     gt  '   t  )   t  $   t  !   t     u     :u     Ru  @   ju               W     !   E  X                                  )   J                                   H                     ]             
    a                     +         [      A             y   =                     )  8                     Y   {   *          Q          K                 q   ,            M                5                x      :     /  +                   2                          9          C  7                _            #  3       l      5              }   0         u         K                    -             6         &  Z          V  "           z   Z  C   @        $                                                                  .  U   F   P         8                    V       :         1    c          %          0           v         Q      4   I  &                 (         $                '               !       w   b                   "           <  ;   M   \       r          S     O     P       D                6   E       7   G              @  [  k   ]  4     T  L   `   d           S                    <             N         W   R         >             s   
            ^       *             I      h          -        X   D                      3  N   A  #         G      F                         '     ?   o       p         ,       g      J   f   B  \    L                |   R       ?  Y         %      =                j       e   B         ;            t               2  U         1   T      n   H   >    	                O      m                   9             ~             (   .          /   i         	                 - Total size unknown %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: error: %s: info: - Last modification time %d-%02d-%02d %02d:%02d:%02d %s -l | -r | [-s] grubdev osdisk. ADDR ADDR VALUE [MASK] ADDR1,MASK1[,ADDR2,MASK2[,...]] ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Ask for file name to reboot from. Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: BLOCK Base directory for hash list. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting a command list Change configured devices. Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check key modifier status. Clear the screen. Commands: Compare FILE with local file LOCAL. Compare two files. Compute or check hash checksum. Configure serial port. Continue loops Copy FILE to local file LOCAL. Create a blank environment block file. DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] Debug tool for filesystem driver. Define a submenu. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Display a line of text. Display blocklist of FILE. Display output on all consoles. Display the usage of this command and exit. Display this help and exit. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. ENVVAR ENVVAR [ENVVAR] ... ESC at any time exits. EXPRESSION EXPRESSION ] Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Enable interpretation of backslash escapes. Enter in KDB on boot. Enter normal mode. Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Exit from GRUB. Exit from loops Exit from normal mode. Export variables. FILE FILE [ARG ...] FILE... FILE1 FILE2 FILENAME COMMAND FROM[K|M|G] TO[K|M|G] Failed to boot both default and fallback entries.
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Freeze ATA security settings until reset. GNU GRUB  version %s Get crc32 checksum of FILE. Get/set ATA disk parameters. HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. ID IMAGE_PATH COMMANDS Insert a module. Invalid command %s.
 Invalid device `%s'.
 Invalid disk count.
 Invoke user configuration routing. List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List devices and files. List devices or files. List files in PATH. List memory map provided by firmware. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file without changing context. Load another config file. Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading the Hurd ... MODULE Manage the BIOS drive mappings. Manipulate PCI devices. Menu entry type. Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. NAME [VARIABLE] [HINTS] NUMBER_OF_SECONDS No command is specified.
 No device is specified.
 Not enough parameters to command.
 Options: PARTITION COMMANDS PORT PORT VALUE [MASK] Parse legacy config in new context Parse legacy config in same context Partition %s: Perform both direct and reverse mappings. Play a tune. Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Press any key to continue... Print a block list. Print and execute block argument. Print drive identity and settings. Print sizes in a human readable format. REGEXP STRING Read only LENGTH bytes. Reboot the computer. Remove a module. Remove an environment variable. Remove any memory regions in specified range. Reset all mappings to the default values. Retrieve device info. Return from a function. STRING Save read value into variable VARNAME. Save variables to environment block file. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Show ACPI information. Show APM information. Show a help message. Show a long list with more detailed information. Show loaded modules. Show the contents of a file. Show the current mappings. Show this message. Skip N bytes from output file. Skip offset bytes from the beginning of file. Specify filename. Specify hash to use. Specify one or more font files to load. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. The highlighted entry will be executed automatically in %ds. Tool to edit environment block. Translates the string with the current settings. USER PASSWORD USER PBKDF2_PASSWORD UTF-8 Uncompress file before checksumming. Unknown command `%s'.
 Unload EFI emulator. Usage: Use GDB remote debugger instead of DDB. Use serial console. VARNAME Verbose countdown. WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 You need to specify at least one command.
 Your embedding area is unusually small.  core.img won't fit in it. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [ARG] [ENVVAR=VALUE] [ENVVAR] [NUMBER:]VARNAME [OPTIONS...] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [PATTERN ...] [USERLIST] [VALUE]... [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again blocklist FILE cannot compress the kernel image cannot read `%s' correctly cmp FILE LOCAL compare fail at offset %llu cp FILE LOCAL crc FILE device count exceeds limit diskboot.img size must be %u bytes embedding is not possible, but this is required for cross-disk install error: %s.
 hex FILE invalid skip value %lld ls PATH no terminal specified no terminator in the core image non-sector-aligned data is found in the core file read error at offset %llu: %s the first sector of the core file is not sector-aligned the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small unable to identify a filesystem in %s; safety check can't be performed Project-Id-Version: grub 1.97+20110101
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2011-12-04 21:02+0800
Last-Translator: Aron Xu <happyaron.xu@gmail.com>
Language-Team: Chinese (simplified) <i18n-zh@googlegroups.com>
Language: zh_CN
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
  - 总量未知 %d 秒 剩余 %d 秒。 %s 中似乎包含一个不为 DOS 引导保留空间的 %s 文件系统。在此处安装 GRUB 可能导致 grub-setup 覆盖重要数据从而损坏文件系统(--skip-fs-probe 参数可以禁用这个检查，使用该选项风险自负) %s 中似乎包含一个不为 DOS 引导保留空间的 %s 分区。在此处安装 GRUB 可能导致 grub-setup 覆盖重要数据从而损坏文件系统(--skip-fs-probe 参数可以禁用这个检查，使用该选项风险自负) %s，Linux %s %s，Linux %s (恢复模式) %s，Xen %s 和 Linux %s %s，Xen %s 和 Linux %s (恢复模式) %s，kFreeBSD %s %s，kFreeBSd %s (恢复模式) %s，%s 内核(通过 %s) %s，%s 内核(通过 %s，恢复模式) %s：错误： %s：信息： - 最近更改 %d-%02d-%02d %02d:%02d:%02d %s -l | -r | [-s] grub设备 系统磁盘 地址 地址 值 [掩码] 地址1,掩码1[,地址2,掩码2[,...]] ASCII 接受 DOS 风格的 CR/NL 行结尾。 活动输入终端： 活动输出终端： 从指定文件重新启动。 正在试图将 GRUB 安装至有多个分区标签的磁盘，或同时有分区标签和文件系统的磁盘。这样的操作尚未被支持。 正在试图将 GRUB 安装至未分区的磁盘或一个分区。这是一个坏主意。 可用输入终端： 可用输入终端： 块 哈希列表文件所在目录。 引导操作系统。 以单用户模式启动 显示调试信息。 启动时显示完整信息。 正在按照命令列表进行引导 更改此前配置的设备。 检查 Alt 键。 检查 Ctrl 键。 检查 Shift 键。 检查 CPU 特性。 检查修饰键状态。 清屏。 命令： 比较指定文件与本地文件。 比较两个文件。 计算或校验哈希校验和。 配置串行端口。 继续循环 复制文件到本地位置。 创建一个空的环境块文件。 设备 设备 [分区[+/-[类型]]] ... 指定的设备必须是一个操作系统设备(例如 /dev/sda)。 设备名称 DIR 目录 [OSBundleRequired] 文件系统驱动调试工具。 定义一个子菜单。 删除变量。 指定驱动。 指定文件系统 UUID。 指定文件系统卷标。 指定文件系统类型 指定分区表类型。 设备 %s： 禁用 ACPI。 禁用 SMP。 禁用所有引导输出。 禁用/启用 SMART (0/1)。 显示文本 显示指定文件的块列表。 在所有控制台显示输出。 显示此命令的用法并退出。 显示此帮助并退出。 末尾不输出额外空行。 安静模式。 不检测任何软盘驱动器。 不使用 APM 关闭计算机。 未进行操作，成功。 未进行操作，失败。 不显示引导对话消息。 不载入指定的主机表(多个表用逗号分隔)。 直接关机。 第一次出现错误时不停止。 环境变量 环境变量 [环境变量] ... 任何时候按下 ESC 均可退出。 表达式 表达式 ] 无法嵌入。在此次安装中 GRUB 只能通过使用块列表安装。但是块列表是不可信赖的，不推荐使用。 启用反斜杠转义 启动后进入 KDB。 进入普通模式。 输入口令： 输入用户名： 解析命令行参数出错
 执行该表达式。 退出 GRUB。 退出循环 退出普通模式。 导出变量。 文件 文件 [参数 ...] 文件... 文件1 文件2 文件名 命令 从[K|M|G] 到[K|M|G] 引导默认启动项和会滚启动想均失败。
 无法访问文件系统 文件系统类型 %s 重写指定 GPT 设备的混合 MBR，指定的分区会成为混合 MBR 的一部分(不超过三个)。类型指 MBR 类型，+ 代表该分区是活动分区(只能有一个活动分区)。 完成载入 EFI 模拟器。 首先尝试设备 HINT，如果 HINT 以逗号结尾则同时尝试其子分区 修正显示问题 禁止更改 ATA 安全设置直到此设置被重置。 GNU GRUB  %s 版 计算文件的 CRC32 校验和。 获取或设定 ATA 磁盘参数。 哈希值 线索 优先使用 APM 关闭计算机。 关机(在某些计算机上无效)。 处理输出文件中的 N 字节。 ID IMAGE_PATH 命令 插入一个模块。 无效命令%s。
 无效的设备“%s”。
 磁盘计数无效。
 使用用户配置路径。 列出 PCI 设备。 列出全部文件。 列出可用显示模式。如果已指定分辨率，则只显示匹配的模式。 列出设备和文件。 列出设备或文件。 列出 PATH 变量中的文件。 列出默认的内存映射。 列出或选择一个输入终端。 列出或选择一个输出终端。 列出当前变量。 列出已加载的字库。 显示环境变量文件内容。 载入 64 位 XNU 镜像。 载入 BIOS 转储。 载入 FreeBSD 环境。 载入 FreeBSD 内核模块(ELF)。 载入 FreeBSD 内核模块。 载入 Linux。 载入 NTLDR 或 BootMGR。 载入 NetBSD 内核模块(ELF)。 载入 NetBSD 内核模块。 载入 XNU 扩展目录。 载入 XNU 扩展包。 载入 XNU 扩展。 载入 XNU 内核镜像。 载入一个键盘布局。 载入 multiboot 2 内核。 载入 multiboot 2 模块。 载入 multiboot 内核。 载入 multiboot 模块。 载入引导画面。 载入并初始化 EFI 模拟器。 载入其他引导程序。 载入另外的配置文件(不改变环境)。 载入另外的配置文件。 为活动终端加载背景图像。 载入 ACPI 主机表和用户指定的表。 载入 initrd。 载入 FreeBSD 内核。 载入 NetBSD 内核。 载入 OpenBSD 内核。 只载入指定的主机表(多个表用逗号分隔)。 以多种方式载入同一个文件。 载入环境变量文件。 载入 GNU Mach ... 载入 Linux %s ... 载入 Xen %s ... 载入初始化内存盘... 载入 FreeBSD 内核 %s ... 载入 Hurd ... 模块 管理 BIOS 设备映射。 操作 PCI 设备。 菜单项类型。 支持最小化的类 Bash 行编辑。对于第一个单词 Tab 列出可用的命令名补全；对于其他位置 Tab 列出可能的设备或文件。%s 支持最小化的类 Emacs 屏幕编辑。Tab 列出可补全项，Ctrl-x 或 F10 进行引导，Ctrl-c 或 F2 进入命令行，ESC 放弃编辑并返回菜单。 名称 [变量] [提示] 秒数 没有指定命令。
 没有指定设备。
 命令参数不够。
 选项： 分区 命令 端口 端口 值 [掩码] 在新环境下解析旧版配置 在相同环境下解析旧版配置 分区 %s： 同时进行直接和保留映射。 播放测试声音。 可用参数： 可用命令： 可用设备： 可用文件： 可用分区： 可用事物： 按任意键继续... 显示块列表。 输出并执行块参数。 显示硬盘识别信息和设置。 使用易读的格式显示文件大小。 正则表达式 字符串 读取指定长度(字节)。 重新启动计算机。 删除模块。 删除一个环境变量。 删除指定范围内的全部内存区域。 重置所有映射为默认值。 获取设备信息。 从一个函数返回。 字符串 将读取的值存入变量 VARNAME。 保存变量到文件。 按 UUID 搜索。如果指定了变量，找到的第一个设备会被保存到变量中。 按文件搜索设备。 按文件系统 UUID 搜索设备。 按文件系统卷标搜索设备。 搜索含有指定文件的设备。如果指定了变量，找到的第一个设备会被保存到变量中。 按卷标搜索。如果指定了变量，找到的第一个设备会被保存到变量中。 设置高级电源管理模式
(1=最低，...，254=最高，255=关闭)。 设置硬盘声音管理模式
(0=关闭，128=静音，...，254=高速)。 设置 RSDP，XSDT 和 RSDT 中的 OEMID。 设置 RSDP，XSDT 和 RSDT 中的 OEMTABLE ID。 设置 RSDP，XSDT 和 RSDT 中的 OEMTABLE 版本信息。 设置用于返回值的变量。 为找到的第一个设备设置变量。 设置一个环境变量。 设置 RSDP，XSDT 和 RSDT 中的制造商信息。 设置 RSDP，XSDT 和 RSDT 中的制造商版本信息。 设置调试环境变量。 设置驱动器为休眠模式。 设置驱动器为等待模式。 设定位置参数。 设置根设备。 设置等待时间
(0=关闭，1=5秒，2=10秒，...，240=20分，241=30分，...)。 设置指定终端的 terminfo 为指定的类型。
 设置串行端口地址。 设置串行端口奇偶校验。 设置串行端口速度。 设置串行端口停止位。 设置串行端口字长。 设置串行单元。 设置从指定设备引导所使用的镜像。

您通常不应直接使用此程序，请换用 grub-install。 设置用户命令(PBKDF2)。 设置用户口令(纯文本)(不推荐且不安全)。 将用户输入值保存到变量。 设置变量。 显示 ACPI 信息。 显示 APM 信息。 显示帮助消息。 列出详细信息。 显示已加载的模块。 显示文件内容。 显示当前映射。 显示此消息。 跳过输出文件的 N 字节。 跳过文件头部偏移字节。 指定文件名。 指定要使用的哈希值。 指定一个或多个要加载的字库。 终端仅使用 ASCII [默认]。 终端使用按逻辑排序的 UTF-8。 终端使用按可视性排序的 UTF-8。 测试 USB 支持。 测试正则表达式是否匹配相应的字符串。 在 WxH 模似下测试显示子系统。 测试显示子系统。 高亮显示的启动项将在 %d 秒后自动执行。 编辑环境块的工具。 使用当前设置翻译字符串。 用户 口令 用户 PBKDF2_PASSWORD UTF-8 检查校验和前解压文件。 未知命令 %s。
 卸载 EFI 模拟器。 用法： 使用 GDB 远程调试工具替代 DDB。 使用串行终端。 VARNAME 显示倒计时。 宽度x高度。 等待指定时间(秒)。 每输出一行后暂停(按任意键继续)。 警告：无效的背景色 `%s'
 警告：无效的前景色 `%s'
 警告：%s 中有语法错误(缺少斜杠)
 您至少需要指定一个命令。
 您的嵌入区域过小，无法装入 core.img。 [--append|--remove] [终端1] [终端2] ... [--md5] 口令 [文件] [--no-mem-option] [--type=类型] 文件 [参数 ...] [-c 文件 [-p 前缀]] [文件1 [文件2 ...]] [-e|-n] 字符串 [-f 文件] [-f 文件] 变量名 [...] [-f|-l|-u|-s|-n] [--hint 线索 [--hint 线索] ...] 名称 [-l|-h|-a] [文件 ...] [-m (stretch|normal)] 文件 [参数] [环境变量=值] [环境变量] [数字:]变量名 [选项...] [选项] 磁盘 [选项] 文件或设备 [模式 ...] [用户列表] [值]... [[-a|-u|-v] [-g WxH] 终端 [类型]] [[年-]月-日] [时:分[:秒]] 正在尝试从 GRUB 读取核心镜像“%s” 正在尝试再次从 GRUB 读取核心镜像“%s” blocklist 文件 无法压缩内核镜像 无法正确读取“%s” cmp 文件 本地文件 在 %llu 处比较失败 cp 文件 本地文件 crc 文件 设备计数超过限制 diskboot.img 的大小必须为 %u 字节 无法嵌入，但在跨盘安装时是必须的 错误：%s。
 hex 文件 无效的跳过值 %lld ls PATH 没有指定终端。 核心镜像中没有终止符 核心文件中发现未对齐的扇区 在偏移 %llu 处发生读取错误：%s 核心文件的第一扇区未对齐 核心文件的扇区碎片太多 “%s”的大小不是 %u “%s”的尺寸太大 “%s”的尺寸太小 无法在 %s 中识别文件系统，无法执行安全性检测                                                                                      boot/grub/locale/zh_TW.mo                                                                           0000600 0001750 0001750 00000074242 13417732100 0014266 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                       a     $    ,                                    !           ,   0      ]   $   r         *      
      	      7         +!     J!     O!     a!     !  $   !     !     !  !   !     !  Z   "     "     "     #     #     =#     W#     n#     #     #     #     #     #     #     	$     !$     <$  	   N$  #   X$     |$     $     $     $     $  &   $     %  !   "%  ,   D%     q%     }%     %  !   %     %     %     %     %     &     -&     H&  
   f&     q&     &     &     &  $   &     &     &     '  +   9'     e'  #   '     '     '  $   '      (     (  '   6(  9   ^(     (     (     (     (     (  
   )     )     )  +   )     )     )     
*     *  (   ,*     U*     m*     }*     *     *     *     *  7   *     +     
+     +     '+  2   =+     p+     +     +  !   r,  H   ,     ,  )   ,     -     /-     K-     h-     m-  '   r-  P   -     -     
.     .     /.     D.     Z.  "   o.     .     .  O   .     /     /     3/  %   G/  !   m/  "   /     /     /  +   /     0     (0     80  !   J0     l0     0     0      0     0     0     1     !1     51     E1     ]1     x1     1     1     1  !   1     2  2   2     Q2  *   k2  8   2     2     2     2     3  3   #3  $   W3  +   |3     3     3     3     3      4     "4     74     >4     ^4     v4     4     05     5     6     6     -6  "   F6     i6     r6     6     6  "   6  #   6     6  )   6     7     (7     @7     W7     m7     7     7     7     7  !   7  "   8  '   %8     M8     [8     s8     8     8  -   8  )   8     9     '9     ?9  &   F9  )   m9  ^   9     9  $   :  %   5:  ^   [:  _   :  >   ;  D   Y;  !   ;  '   ;  -   ;     <  )   6<     `<  )   }<  ,   <     <     <     =     (=     C=  E   T=  $   =     =     =     =     >      2>     S>  q   h>     >  :   >     2?     P?     _?     |?     ?     ?  0   ?     ?     @     !@     <@     O@  -   n@     @     @  '   @  !   @  "   A  #   0A     TA     fA  !   A     A  <   A     A  0   B     KB     YB     nB  $   tB     B     B     B  '   B     B     C     C     #C  '   1C  -   YC  '   C  '   C  .   C  *   D  /   1D     aD  .   wD  )   D     D  	   D     D  5   E     =E     SE     nE     E     E     E     E     E     E     E     E  
   E  
   F  !   F  )   /F  0   YF  6   F     F      F     F     G     G     +G     GG     UG     ^G  "   yG  F   G     G     G     G     H     H     .H  1   NH     H  7   H  /   H     I     !I     ?I  F   ]I      I  }  I     CK     VK     ]K  7  nK  4  L     M  #   M     N  .   4N     cN  &   {N      N  /   N     N     O  3   O      EO     fO     kO     }O     O  '   O     O     O  '   P  r   +P  `   P     P     Q     7Q     =Q     \Q     rQ     Q     Q     Q     Q     Q     R     R     (R  !   =R     _R  	   oR  $   yR     R  '   R     R     R  $   R     !S     @S  !   GS  .   iS     S     S     S  *   S     S     T     T     )T     DT     `T     |T     T     T     T     T     T  +   T     'U     @U  !   _U  $   U     U     U     U  !   U  #   V     :V  !   YV  !   {V  B   V  $   V  $   W     *W     1W  #   EW  
   iW     tW     W     X     0X     GX     ]X     mX  %   X     X     X     X     X     X     Y     Y  7   Y     MY     UY     aY     rY  .   Y     Y     Y     Y      Z  P   Z     ;[  ,   Q[     ~[  (   [  !   [     [     [  .   [  E   \  !   [\     }\     \     \     \     \     \     
]     ]  Q   5]     ]     ]     ]  '   ]  !   ]  !   ^     A^     Z^  !   v^     ^     ^     ^  $   ^     _     '_     7_  #   S_     w_     _     _     _     _     _     `     (`     E`     ``     {`  #   `  $   `  -   `     a  *   .a  6   Ya     a     a     a     a  ?   a  $   +b  !   Pb     rb     b     b     b  %   b     c     c  !    c     Bc     Wc     mc     !d     d     d     e     %e     <e  	   \e     fe     ye     ~e     e  !   e     e  3   e     f     %f     ;f     Qf     gf     }f     f     f     f     f     f  *   g     Ag     Og     mg     }g     g  0   g  *   g     g     h     (h  #   /h  !   Sh  `   uh     h  '   h  '   i  `   Bi  `   i  :   j  =   ?j  &   }j  ,   j  6   j     k  *   'k     Rk  /   hk  2   k     k     k     l     %l     ;l  Q   Nl  .   l     l     l     m     m     9m     Xm  k   nm  !   m  <   m  !   9n     [n     kn     n     n     n  *   n     n     o     o     >o  !   To  '   vo     o     o  -   o  !   o  !   p  !   <p     ^p  *   sp  &   p     p  1   p     q  $   /q     Tq     bq     wq  -   }q     q     q  	   q  '   q     r     'r     /r     ?r     Or  '   hr  '   r  '   r  4   r  %   s  /   ;s     ks  .   s  )   s     s  	   s     s  5   t     Gt     ]t     xt     t     t     t     t     t     t     t     t  
   u  
   u  !   u  )   9u  ,   cu  2   u     u     u     u     v     v     %v     Dv     Rv     [v  )   tv  B   v     v     v     v     w     w     -w  3   Lw  )   w  0   w     w     w     x     -x  =   Ex     x     d   `                      X         ^       j   V      F   O              '   4                       `  T  ~             	  #            )       P     >             	   =        '          _     8   a           7        (         
                       J                 u   =                    B  C  +  E             [        1                 F                    q   $    H   ;  @   %                   G                          3     t   i                        v          ]                   h   L   2       !                                      {          9  R                          0       ]  .   4      *               n   U   -           o         }                U       -  ,                                 8  l      Z              .          M        |          /                     y   Q   !   :      z             :                    x      ?            e                       I      0           )  E            s   P              
      ,                       C   6  6         $   K              <       2        "      X  5   w   >   &                p   \   G                        ;                L  Q      I      [                  m         <         S  b   7                 _              N          *            r      N        T                      @     H              B           %  A     K      &      +            J   A  Y   c             k              #                        ?               Y  3           "  a            5         D   1         M             ^  O                f   Z  g   R       9           \    W                (                   V  D  W   S       /        - Total size unknown %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: error: %s: info: - Last modification time %d-%02d-%02d %02d:%02d:%02d %s -l | -r | [-s] grubdev osdisk. ADDR ADDR VALUE [MASK] ADDR1,MASK1[,ADDR2,MASK2[,...]] ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Ask for file name to reboot from. Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: BLOCK Base directory for hash list. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting a command list Change configured devices. Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check key modifier status. Clear the screen. Commands: Compare FILE with local file LOCAL. Compare two files. Compute or check hash checksum. Configure serial port. Continue loops Copy FILE to local file LOCAL. Create a blank environment block file. DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] Debug tool for filesystem driver. Define a submenu. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Disk count must precede disks list.
 Display a line of text. Display blocklist of FILE. Display output on all consoles. Display the usage of this command and exit. Display this help and exit. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. ENVVAR ENVVAR [ENVVAR] ... ESC at any time exits. EXPRESSION EXPRESSION ] Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Enable interpretation of backslash escapes. Enter in KDB on boot. Enter normal mode. Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Exit from GRUB. Exit from loops Exit from normal mode. Export variables. FILE FILE [ARG ...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FROM[K|M|G] TO[K|M|G] Failed to boot both default and fallback entries.
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Freeze ATA security settings until reset. GNU GRUB  version %s Get crc32 checksum of FILE. Get/set ATA disk parameters. HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. IMAGE_PATH COMMANDS Insert a module. Invalid command %s.
 Invalid device `%s'.
 Invalid disk count.
 Invoke user configuration routing. List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List devices and files. List devices or files. List files in PATH. List memory map provided by firmware. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file without changing context. Load another config file. Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading the Hurd ... MODULE Manage the BIOS drive mappings. Manipulate PCI devices. Menu entry type. Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. NAME [VARIABLE] [HINTS] NUMBER_OF_SECONDS No command is specified.
 No device is specified.
 Not enough parameters to command.
 Options: PARTITION COMMANDS PORT PORT VALUE [MASK] Parse legacy config in new context Parse legacy config in same context Partition %s: Perform both direct and reverse mappings. Play a tune. Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Press any key to continue... Print a block list. Print and execute block argument. Print drive identity and settings. Print sizes in a human readable format. REGEXP STRING Read only LENGTH bytes. Reboot the computer. Remove a module. Remove an environment variable. Remove any memory regions in specified range. Reset all mappings to the default values. Retrieve device info. Return from a function. STRING Save read value into variable VARNAME. Save variables to environment block file. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Shift positional parameters. Show ACPI information. Show APM information. Show a help message. Show a long list with more detailed information. Show loaded modules. Show the contents of a file. Show the current mappings. Show this message. Skip N bytes from output file. Skip offset bytes from the beginning of file. Specify filename. Specify hash to use. Specify one or more font files to load. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. The highlighted entry will be executed automatically in %ds. Tool to edit environment block. Translates the string with the current settings. USER PASSWORD USER PBKDF2_PASSWORD UTF-8 Uncompress file before checksumming. Unknown command `%s'.
 Unload EFI emulator. Usage: Use GDB remote debugger instead of DDB. Use serial console. VARNAME Verbose countdown. WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 You need to specify at least one command.
 [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [ADDR|comUNIT][,SPEED] [ARG] [ENVVAR=VALUE] [ENVVAR] [NUMBER:]VARNAME [OPTIONS...] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [PATTERN ...] [USERLIST] [VALUE]... [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again blocklist FILE cannot compress the kernel image cannot read `%s' correctly cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu cp FILE LOCAL crc FILE device count exceeds limit diskboot.img size must be %u bytes embedding is not possible, but this is required for cross-disk install error: %s.
 hex FILE invalid skip value %lld ls PATH no terminal specified no terminator in the core image non-sector-aligned data is found in the core file read error at offset %llu: %s the first sector of the core file is not sector-aligned the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small unable to identify a filesystem in %s; safety check can't be performed will not proceed with blocklists Project-Id-Version: grub 1.97+20110101
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2011-07-25 02:26+0800
Last-Translator: Cheng-Chia Tseng <pswo10680@gmail.com>
Language-Team: Chinese (traditional) <zh-l10n@linux.org.tw>
Language: zh_TW
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
  - 總大小未知 %d 秒 剩下 %d 秒。 %s 似乎包含 %s 檔案系統，該檔案系統不知道是否為 DOS 式開機所保留的空間。如果那裡存有富價值的資料，將 GRUB 安裝在那裡可能會導致「檔案系統摧毀」，資料會被 grub-setup 覆寫 (加上 --skip-fs-probe 可以停用本檢查，但請自行承擔風險) %s 似乎包含 %s 分割區映射，該映射不知道是否為 DOS 式開機所保留的空間。如果那裡存有富價值的資料，將 GRUB 安裝在那裡可能會導致「檔案系統摧毀」，資料會被 grub-setup 覆寫 (加上 --skip-fs-probe 可以停用本檢查，但請自行承擔風險) %s，採用 Linux %s %s，採用 Linux %s (復原模式) %s，採用 Xen %s 與 Linux %s %s，採用 Xen %s 與 Linux %s (復原模式) %s，採用 kFreeBSD %s %s，採用 kFreeBSD %s (復原模式) %s，採用內核 %s (透過 %s) %s，採用內核 %s (透過 %s，復原模式) %s：錯誤： %s：資訊： - 上次修改時間 %d-%02d-%02d %02d:%02d:%02d %s -l | -r | [-s] grubdev osdisk。 ADDR ADDR VALUE [MASK] ADDR1,MASK1[,ADDR2,MASK2[,...]] ASCII 接受 DOS 風格的 CR/NL 列結尾。 使用中輸入終端機： 使用中輸出終端機： 詢問要從何重新開機的檔名。 正試圖安裝 GRUB 至有多分割區標籤，或有分割區以及檔案系統的磁碟上。這尚未支援。 正試圖安裝 GRUB 至無分割的磁碟，或是某分割區上。這是個「壞」主意。 可用的輸入終端機： 可用的輸出終端機： BLOCK 雜湊清單的基礎目錄。 啟動作業系統。 啟動單人模式。 以除錯訊息開機。 以冗長訊息開機。 正在啟動指令清單 變更已設定的裝置。 檢查 Alt 鍵。 檢查 Ctrl 鍵。 檢查 Shift 鍵。 檢查 CPU 功能。 檢查按鍵的修飾鍵狀態。 清除畫面。 指令： 比較 FILE 與本地檔案 LOCAL。 比較兩個檔案。 計算或檢查雜湊校驗計算碼。 設定序列埠。 繼續迴圈 複製 FILE 至本地檔案 LOCAL。 建立空白環境區塊檔。 DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE 必須為 OS 裝置 (例：/dev/sda)。 DEVICE_NAME DIR DIRECTORY [OSBundleRequired] 檔案系統驅動程式的除錯工具。 定義子選單。 刪除變數。 判斷驅動程式。 判斷檔案系統 UUID。 判斷檔案系統標籤。 判斷檔案系統類型。 判斷分割對應類型。 裝置 %s： 停用 ACPI。 停用 SMP。 停用所有開機輸出。 停用/啟用 SMART (0/1)。 磁碟計數必須在磁碟清單之前。
 顯示文字的一列。 顯示 FILE 的區塊檔案。 顯示輸出於所有主控臺。 顯示本指令的用法並離開。 顯示本幫助並離開。 不要輸出曳尾換列。 不要列印訊息。 不要探測任何軟碟裝置。 不要使用 APM 來關閉電腦。 什麼事都不做，成功。 什麼事都不做，未成功。 不要顯示開機診斷訊息。 不要載入用半形逗號隔開的列表所指定的主控表。 不要重新開機，關機就好。 在第一個錯誤後不要停止。 ENVVAR ENVVAR [ENVVAR] ... 任何時刻的 ESC 都能離開。 EXPRESSION EXPRESSION ] 不可能內嵌。GRUB 在本設置中僅能藉由區塊清單來安裝。然而，使用區塊清單不僅「不可靠」甚至令人挫折。 啟用反斜線跳出解譯。 開機時進入 KDB。 輸入一般密碼。 輸入密碼： 輸入使用者名稱： 解析指令列引數時發生錯誤
 評估表述式。 離開 GRUB。 離開迴圈 離開一般模式。 輸出變數。 FILE FILE [ARG ...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FROM[K|M|G] TO[K|M|G] 無法啟動預設條目以及後備條目。
 無法存取檔案系統 檔案系統類型 %s 填入 GPT 裝置 DEVICE 的混合式 MBR。指定的分割區會成為混合式 MBR 的一部分。最多允許 3 個分割區。TYPE 為 MBR 類型。+ 代表分割區為 active，僅有一個分割區能有 active 標籤。 終止 EFI 模擬器的載入。 先嘗試裝置 HINT。若 HINT 以半形逗號結尾，也會嘗試子分割區 修正視訊問題。 凍結 ATA 安全設定直至重設為止。 GNU GRUB 版本 %s 取得 FILE 的 crc32 校驗計算碼。 取得/設定 ATA 磁碟參數。 HASH HINT 關閉系統，如果可能的話使用 APM。 關閉電腦。這個指令不是對所有的韌體實作都有用。 處理輸出檔的 N 位元組。 IMAGE_PATH COMMANDS 插入模組。 無效指令 %s。
 無效的裝置「%s」。
 無效的磁碟計數。
 喚起使用者組態路由。 列出 PCI 裝置。 列出所有檔案。 列出可用的視訊模式。若有給定解析度，僅顯示符合的模式。 列出裝置與檔案。 列出裝置或檔案。 列出 PATH 內的檔案。 列出韌體提供的記憶體映射。 列出或選取輸入終端機。 列出或選取輸出終端機。 列出目前的變數。 列出已載入的字型。 從環境區塊檔列出變數。 載入 64 位元 XNU 映像。 載入 BIOS 傾印。 載入 FreeBSD env。 載入 FreeBSD 內核模組 (ELF)。 載入 FreeBSD 內核模組。 載入 Linux。 載入 NTLDR 或 BootMGR。 載入 NetBSD 內核模組 (ELF)。 載入 NetBSD 內核模組。 載入 XNU 擴充目錄。 載入 XNU 擴充套件。 載入 XNU 擴充。 載入 XNU 映像。 載入鍵盤配置。 載入 multiboot 2 內核。 載入 multiboot 2 模組。 載入 multiboot 內核。 載入 multiboot 模組。 為 XNU 載入 splash 影像。 載入並初始化 EFI 模擬器。 載入另一個開機載入程式。 載入另一個組態檔而不變更情境。 載入另一個組態檔。 為使用中終端機載入背景映像。 載入主控 ACPI 表以及透過引數指定的表。 載入 initrd。 載入 FreeBSD 內核。 載入 NetBSD 內核。 載入 OpenBSD 內核。 僅載入用半形逗號隔開的列表所指定的主控表。 以多種方式載入相同檔案。 從環境區塊檔載入變數。 正在載入 GNU Mach ... 正在載入 Linux %s ... 正在載入 Xen %s ... 正在載入初始 ramdisk ... 正在載入 FreeBSD %s 的內核 ... 正在載入 Hurd ... MODULE 管理 BIOS 裝置映射關係。 處理 PCI 裝置。 選單條目類型。 支援最基本的類 BASH 列編輯。對於輸入的第一個單詞，TAB 可以列出可能的指令補完。其他地方的 TAB 可以列出可能的裝置或檔案補完。%s 支援基本的類 Emacs 編輯畫面。TAB 鍵可以列出補完。按下 Ctrl-x 或是 F10 可以開機，Ctrl-c 或 F12 可以取得指令列，而 ESC 可以放棄編輯並返回 GRUB 選單。 NAME [VARIABLE] [HINTS] NUMBER_OF_SECONDS 未指定指令。
 沒有指定裝置。
 指令缺少足夠的參數。
 選項： PARTITION COMMANDS PORT PORT VALUE [MASK] 於新情境解析舊式組態 於相同情境解析舊式組態 分割區 %s： 執行直接映射關係以及反轉映射關係。 播放音調。 可能的參數有： 可能的指令有： 可能的裝置有： 可能的檔案有： 可能的分割區有： 可能的東西有： 按下任意鍵繼續... 列印區塊清單。 列印執行區塊引數。 列印裝置識別與設定。 以人類可理解的格式列印大小。 REGEXP STRING 僅讀取 LENGTH 位元組。 重新開機。 移除模組。 移除環境變數。 移除任何指定範圍內的記憶體區域。 將所有映射關係重設為預設值。 擷取裝置資訊。 從函式回傳。 STRING 儲存讀取值至變數 VARNAME。 儲存變數至環境區塊檔。 透過 UUID 搜尋裝置。若有指定 VARIABLE，變數會被設為第一個找到的裝置。 透過檔案搜尋裝置。 透過檔案系統 UUID 搜尋裝置。 透過檔案系統標籤搜尋裝置。 透過檔案搜尋裝置。若有指定 VARIABLE，變數會被設為第一個找到的裝置。 透過標籤搜尋裝置。若有指定 VARIABLE，變數會被設為第一個找到的裝置。 設定進階能源管理
(1=低，...254=高，255=關)。 設定自動聽覺管理
(0=關，128=安靜，...254=快)。 設定 RSDP、XSDT、RSDT 的 OEMID。 設定 RSDP、XSDT、RSDT 的 OEMTABLE ID。 設定 RSDP、XSDT、RSDT 的 OEMTABLE 修訂版本。 設定要傳回值的變數。 將變數設為第一個找到的裝置。 設定環境變數。 設定 RSDP、XSDT、RSDT 的建立者欄位。 設定 RSDP、XSDT、RSDT 的建立者修訂版。 設定除錯環境變數。 設定裝置為睡眠模式。 設定裝置為待機模式。 設定位置參數。 設定根裝置。 設定待機逾時期
(0=關，1=5秒，2=10秒，...240=20分，241=30分...)。 將 TERM 的 terminfo 類型設定為 TYPE。
 設定序列埠位址。 設定序列埠同位。 設定序列埠速度。 設定序列埠停止位元。 設定序列埠單詞長度。 設定序列單位。 設置要從 DEVICE 啟動的裝置。

您應該不能直接執行這個程式。請改用 grub-install。 設定使用者密碼 (PBKDF2)。 設定使用者密碼 (純文字)。不建議且不安全。 以使用者輸入設定變數。 設定變數。 推移位置參數。 顯示 ACPI 資訊。 顯示 APM 資訊。 顯示幫助訊息。 顯示有更多詳細資訊的長清單。 顯示載入的模組。 顯示檔案的內容。 顯示目前的映射關係。 顯示這個訊息。 跳過輸出檔的 N 位元組。 跳過檔案開頭的偏移位元組。 指定檔名。 指定要使用的雜湊。 指定一個或多個要載入的字型檔。 終端機僅為 ASCII [預設]。 終端機為邏輯排序 UTF-8。 終端機為視覺排序 UTF-8。 測試 USB 支援。 測試 REGEXP 是否能比對到 STRING。 以 WxH 模式測試視訊子系統。 測試視訊子系統。 被突顯的條目會在 %d 秒內自動執行。 編輯環境區塊的工具。 以目前設定值來翻譯字串。 USER PASSWORD USER PBKDF2_PASSWORD UTF-8 在處理校驗計算碼前解壓縮檔案。 未知指令「%s」。
 卸載 EFI 模擬器。 用法： 使用 GDB 遠端除錯器取代 DDB。 使用序列主控臺。 VARNAME 冗長倒數。 WIDTHxHEIGHT。 等候指定的秒數。 在每列輸出後等候按鍵按壓。 警告：無效的背景色彩「%s」
 警告：無效的前景色彩「%s」
 警告：語法錯誤 (遺失正斜線) 於「%s」
 您必須指定至少一個指令。
 [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [ADDR|comUNIT][,SPEED] [ARG] [ENVVAR=VALUE] [ENVVAR] [NUMBER:]VARNAME [OPTIONS...] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [PATTERN ...] [USERLIST] [VALUE]... [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] 正試圖從 GRUB 讀取核心映像「%s」 正試圖從 GRUB 再次讀取核心映像「%s」 blocklist FILE 無法壓縮內核映像 無法正確讀取「%s」 cmp FILE LOCAL comUNIT[,SPEED] 比較偏移 %llu 處的失敗 cp FILE LOCAL crc FILE 裝置計數超出限制 diskboot.img 大小必須為 %u 位元組 不可能內嵌，但是這對於跨磁碟安裝來說是必要的 錯誤：%s。
 hex FILE 無效的跳過值 %lld ls PATH 未指定終端機 核心映像內沒有終止器 在核心檔內找到非磁區對齊形式的資料 讀取偏移 %llu 處時發生錯誤：%s 核心檔的第一磁區不是磁區對齊形式 核心檔的磁區過於零散 「%s」的大小不是 %u 「%s」的大小過大 「%s」的大小過小 無法辨識 %s 內的檔案系統；無法執行安全檢查 不會繼續處理區塊清單                                                                                                                                                                                                                                                                                                                                                               boot/grub/fonts/unicode.pf2                                                                         0000600 0001750 0001750 00011610120 13417732100 0014620 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   FILE   PFF2NAME   Unknown Regular 16 FAMI   Unknown WEIG   normal SLAN   normal PTSZ    MAXW    MAXH    ASCE    DESC    CHIX 8                #     M     w                       	  I   
  s                         E     o                         A     k                         =     g                        !     "  %   #  2   $  D   %  W   &  j   '  }   (     )     *  ¦   +  ·   ,     -     .     /     0     1     2     3  0   4  B   5  T   6  f   7  x   8  Ê   9  Ü   :  î   ;  ú   <     =     >     ?     @     A     B  +   C  =   D  O   E  a   F  s   G  ą   H  ė   I  ĩ   J  ĺ   K     L     M     N     O     P  '   Q  9   R  M   S  _   T  q   U  ń   V  Ŗ   W  ũ   X  Ż   Y     Z     [     \     ]     ^  "   _  /   `  :   a  F   b  V   c  i   d  y   e  ƌ   f  Ɯ   g  ƭ   h     i     j     k     l  	   m     n  +   o  ;   p  K   q  ]   r  o   s     t  Ǐ   u  Ǡ   v  ǰ   w     x     y     z     {     |     }     ~  -     :     d     Ȏ     ȸ               6     `     Ɋ     ɴ               2     \     ʆ     ʰ               .     X     ˂     ˬ                *     T     ~     ̨               &     P     z     ͤ     ͮ     ͺ                              !     ,     @     O     `     m     x     Ό     Η     Σ     ε                                        $     3     D     V     h     z     ό     ϡ     ϶                    
          0     E     Z     o     Є     З     Ъ     н                         "     7     L     a     o     т     ї     Ѭ                               %     8     K     ^     q     ҅     Җ     Ҩ     һ                              *     <     O     b     u     ӈ     ӛ     Ӯ                         	          /     D     V     k        Ԓ    ԧ    Ի                  	     
  3    H    [    p    Ճ    ՘    խ                        $    9    L    _    q    ֆ    ֙    ֮               !    "    #  +  $  @  %  U  &  j  '  ~  (  ג  )  ק  *  ׺  +    ,    -    .    /    0  +  1  >  2  M  3  _  4  r  5  ؉  6  ؞  7  س  8    9    :    ;     <    =  %  >  :  ?  M  @  _  A  p  B  ك  C  ٔ  D  ٩  E  ټ  F    G    H    I    J     K  2  L  D  M  X  N  k  O  ڀ  P  ړ  Q  ڪ  R  ڿ  S    T    U    V    W     X  3  Y  H  Z  [  [  p  \  ۃ  ]  ۘ  ^  ۫  _  ۾  `    a    b    c    d    e  6  f  I  g  \  h  m  i  ܂  j  ܕ  k  ܩ  l  ܼ  m    n    o    p    q  $  r  9  s  L  t  _  u  t  v  ݉  w  ݠ  x  ݵ  y    z    {    |  	  }    ~  1    D    T    h    {    ލ    ޟ    ޱ                        !    3    E    W    i    {    ߍ    ߡ    ߳                             3    D    V    i    }                                    $    6    F    X    j    |                                     '    9    I    [    m                                                 7    L    a    t                                    -    B    U    j    }                                $    4    I    ]    r                                    +    >    P    f    z                                    /    B    V    i    ~                                  *    =    T    i    ~      	    
                      &    9    P    e    z                                    -    ?    O    c     w  !    "    #    $    %    &    '    (  
  )    *  /  +  D  ,  W  -  l  .    /    0    1    2    3    4    5    6    7  +  8  <  9  P  :  c  ;  w  <    =    >    ?    @    A    B    C    D     E  3  F  E  G  Z  H  m  I    J    K    L    M    N    O    P    Q    R  &  S  6  T  I  U  Y  V  j  W    X    Y    Z    [    \    ]    ^    _    `    a  ,  b  >  c  N  d  `  e  p  f    g    h    i    j    k    l    m    n  
  o    p  0  q  C  r  U  s  g  t  y  u    v    w    x    y    z    {    |    }    ~  '    7    G    W    g    y                                        %    6    H    Y    l    ~                                
        +    :    N    `    p                                    $    9    K    ]    q                                                '    3    @    K    V    a    n    {                                            
             +    6    A    N    Y    f    s                                                        &    4    B    P    a    r                                                    #    /    <    I    U    a    m    y                                                        	  $  
  1    =    J    W    b    n    {                                                
        "    .     <  !  G  "  S  #  _  $  j  %  v  &    '    (    )    *    +    ,    -    .    /    0    1  	  2    3    4  ,  5  8  6  C  7  N  8  \  9  m  :  y  ;    <    =    >    ?    @    A    B    C    D    E     F    G    H  %  I  0  J  ;  K  H  L  W  M  e  N  r  O  ~  P    Q    R    S    T    U    V    W    X    Y    Z  #  [  0  \  >  ]  J  ^  V  _  a  `  l  a  x  b    c    d    e    f    g    h    i    j    k    l  	  m    n  "  o  /  p  ;  q  L  r  \  s  o  t    u    v    w    x    y    z    {    |     }    ~       ,    A    V    k                                    	     	 #    	 8    	 M    	 d    	 |    	     	     	     	     	     	     	     	    	     	1    	C    	V    	h    	z    	    	    	    	    	    	    	    	    	#    	5    	H    	[    	n    	    	    	    	    	    	    	    	
    	    	-    	=    	O    	a    	s    	    	    	    	    	    	    	    	    	    	    	+    	;    	K    	^    	p    	    	    	    	    	    	    	    	    	    	-    	@    	V    	l    	    	    	    	    	    	    	    	    	    	     	.    	@    	P    	e    	w    	    	    	    	    	    	    	    	    	    	%    	8    	J    	Z    	k    	}    	    	    	    	    	    	    	    	    	    	2    	D    	V     	h    	|    	    	    	    	    	    	    		  	  		  
  		'    		:    		M    		b    		v    		    		    		    		    		    		    		    	
    	
#    	
5    	
G    	
[    	
m    	
    	
    	
    	
     	
  !  	
  "  	
  #  	
  $  	  %  	%  &  	7  '  	L  (  	^  )  	q  *  	  +  	  ,  	  -  	  .  	  /  	  0  	  1  	  2  	  3  	'  4  	7  5  	I  6  	Y  7  	j  8  	z  9  	  :  	  ;  	  <  	  =  	  >  	  ?  	  @  	  A  	  B  	  C  	0  D  	B  E  	U  F  	e  G  	x  H  	  I  	  J  	  K  	  L  	  M  	  N  	  O  	  P  	  Q  	!  R  	4  S  	G  T  	Z  U  	j  V  	z  W  	  X  	  Y  	  Z  	  [  	  \  	  ]  	  ^  	
  _  	   `  	1  a  	D  b  	U  c  	h  d  	z  e  	  f  	  g  	  h  	  i  	  j  	  k  	  l  	
  m  	  n  	.  o  	C  p  	W  q  	j  r  	{  s  	  t  	  u  	  v  	  w  	  x  	  y  	  z  	  {  	)  |  	<  }  	S  ~  	h    	    	    	    	    	    	    	    	    	    	    	+    	N    	f    	}    	    	    	    	    	    	    	    	    	    	0    	E    	X    	k    	}    	    	    	    	    	    	    	    	    	%    	8    	K    	\    	q    	    	    	    	    	    	    	    	    	    	,    	;    	P    	c    	y    	    	    	    	    	    	    	    	    	    	.    	@    	Q    	h    	~    	    	    	    	    	    	    	    	    	+    	=    	R    	e    	s    	    	    	    	    	    	    	    	    	"    	2    	G    	Z    	q    	    	    	    	    	    	    	    	    	!    	6    	I    	[    	k    	    	    	    	    	    	    	    	    	%    	<    	Q    	d    	w    	    	    	    	    	    	    	    	     	    	/    	B    	V    	j    	}    	    	    	  	  	  
  	    	    	     	    	"    	5    	F    	X    	h    	{    	    	    	    	    	    	    	    	    	'    	9    	J    	\     	l  !  	  "  	  #  	  $  	  %  	  &  	  '  	  (  	  )  	)  *  	>  +  	S  ,  	h  -  	}  .  	  /  	  0  	  1  	  2  	  3  	  4  		  5  	  6  	.  7  	A  8  	T  9  	g  :  	z  ;  	  <  	  =  	  >  	  ?  	  @  	  A  	  B  	   C  	 !  D  	 3  E  	 F  F  	 X  G  	 l  H  	   I  	   J  	   K  	   L  	   M  	   N  	   O  	!  P  	!  Q  	!&  R  	!8  S  	!K  T  	!\  U  	!n  V  	!  W  	!  X  	!  Y  	!  Z  	!  [  	!  \  	!  ]  	!  ^  	!  _  	"  `  	"  a  	"%  b  	"6  c  	"G  d  	"Z  e  	"m  f  	"~  g  	"  h  	"  i  	"  j  	"  k  	"  l  	"  m  	"  n  	#  o  	#&  p  	#9  q  	#K  r  	#]  s  	#p  t  	#  u  	#  v  	#  w  	#  x  	#  y  	#  z  	#  {  	$  |  	$  }  	$%  ~  	$5    	$J    	$[    	$m    	$    	$    	$    	$    	$    	$    	$    	%    	%    	%    	%0    	%E    	%Z    	%o    	%    	%    	%    	%    	%    	%    	%    	%    	%    	%    	&
    	&    	&!    	&-    	&9    	&G    	&U    	&a    	&m    	&y    	&    	&    	&    	&    	&    	&    	&    	&    	&    	&    	&    	'    	'    	'"    	'.    	':    	'F    	'Q    	']    	'j    	'u    	'    	'    	'    	'    	'    	'    	'    	'    	'    	'    	'    	'    	(
    	(    	($    	(1    	(F    	([    	(p    	(    	(    	(    	(    	(    	(    	(    	)    	)    	)/    	)=    	)M    	)^    	)o    	){    	)    	)    	)    	)    	)    	)    	)    	*    	*    	*(    	*9    	*J    	*[    	*n    	*    	*    	*    	*    	*    	*    	*    	+    	+    	+/    	+=    	+I    	+V    	+k    	+    	+    	+    	+    	+    	+    	+    	,    	,(     	,=    	,g    	,    	,    	,    	,    	-    	-.    	-M  	  	-b  
  	-s    	-    	-    	-    	-    	-    	-    	-    	-    	.    	.    	.'    	.5    	.E    	.Q    	.\    	.j    	.{    	.    	.    	.    	.     	.  !  	.  "  	.  #  	/  $  	/  %  	/'  &  	/6  '  	/I  (  	/T  )  	/d  *  	/s  +  	/  ,  	/  -  	/  .  	/  /  	/  0  	/  1  	/  2  	/  3  	0  4  	0  5  	0-  6  	0=  7  	0O  8  	0_  9  	0o  :  	0  ;  	0  <  	0  =  	0  >  	0  ?  	0  @  	0  A  	0  B  	1
  C  	1  D  	1,  E  	1?  F  	1N  G  	1_  H  	1u  I  	1  J  	1  K  	1  L  	1  M  	1  N  	1  O  	1  P  	1  Q  	1  R  	1  S  	2  T  	2  U  	2   V  	2,  W  	27  X  	2E  Y  	2Q  Z  	2\  [  	2i  \  	2v  ]  	2  ^  	2  _  	2  `  	2  a  	2  b  	2  c  	2  d  	2  e  	2  f  	3  g  	3!  h  	33  i  	3E  j  	3W  k  	3h  l  	3s  m  	3~  n  	3  o  	3  p  	3  q  	3  r  	3  s  	3  t  	3  u  	3  v  	4  w  	4!  x  	47  y  	4K  z  	4\  {  	4m  |  	4}  }  	4  ~  	4    	4    	4    	4    	4    	4    	5	    	5    	5-    	5=    	5M    	5_    	5o    	5    	5    	5    	5    	5    	5    	5    	5    	6    	6    	6/    	6@    	6P    	6b    	6u    	6    	6    	6    	6    	6    	6    	6    	7    	7    	7*    	7=    	7O    	7a    	7s    	7    	7    	7    	7    	7    	7    	7    	8
    	8    	80    	8C    	8X    	8o    	8    	8    	8    	8    	8    	8    	8    	9    	9!    	94    	9C    	9V    	9e    	9r    	9    	9    	9    	9    	9    	9    	9    	:     	:    	:'    	:7    	:H    	:[    	:n    	:    	:    	:    	:    	:    	:    	:    	:    	:    	;    	;    	;#    	;2    	;\    	;    	;    	;    	;    	;    	;    	;    	;    	;    	;    	<    	<-    	<;    	<I    	<T    	<_    	<p    	<    	<    	<    	<    	<    	<    	<    	<    	=    	=    	=*    	=?    	=Q    	=d    	=s    	=     	=    	=    	=    	=    	=    	=    	=    	=    	>
  	  	>  
  	>(    	>>    	>Q    	>q    	>    	>    	>    	>    	>    	>    	?    	?:    	?L    	?^    	?v    	?    	?    	?    	?    	?    	@    	@'     	@E  !  	@]  "  	@{  #  	@  $  	@  %  	@  &  	@  '  	@  (  	A  )  	A-  *  	AB  +  	AV  ,  	An  -  	A  .  	A  /  	A  0  	A  1  	A  2  	A  3  	B  4  	B  5  	B'  6  	B3  7  	B?  8  	BK  9  	BV  :  	Ba  ;  	Bm  <  	By  =  	B  >  	B  ?  	B  @  	B  A  	B  B  	B  C  	B  D  	B  E  	B  F  	B  G  	C  H  	C  I  	C  J  	C,  K  	C:  L  	CO  M  	Cd  N  	C  O  	C  P  	C  Q  	C  R  	C  S  	C  T  	D  U  	D  V  	D$  W  	D4  X  	DF  Y  	DV  Z  	Dk  [  	D|  \  	D  ]  	D  ^  	D  _  	D  `  	D  a  	D  b  	D  c  	E  d  	E!  e  	E6  f  	EG  g  	EV  h  	Eh  i  	E|  j  	E  k  	E  l  	E  m  	E  n  	E  o  	E  p  	E  q  	F  r  	F,  s  	FA  t  	FP  u  	Fa  v  	Ft  w  	F  x  	F  y  	F  z  	F  {  	F  |  	F  }  	F  ~  	G    	G$    	G7    	GC    	GP    	G^    	Gm    	Gz    	G    	G    	G    	G    	G    	G    	G    	G    	G    	H     	H    	H    	H*    	H9    	HH    	HV    	Hd    	Hs    	H    	H    	H    	H    	H    	H    	H    	H    	I    	I    	I$    	I1    	I>    	IL    	IZ    	If    	Iq    	I}    	I    	I    	I    	I    	I    	I    	I    	I    	I    	J    	J    	J0    	JE    	JZ    	Jo    	J    	J    	J    	J    	J    	J    	K    	K    	K)    	K;    	KL    	K[    	Kj    	Kx    	K    	K    	K    	K    	K    	K    	K    	K    	L    	L    	L'    	L8    	LI    	LX    	Lg    	Lx    	L    	L    	L    	L    	L    	L    	L    	L    	M    	M    	M+    	M9    	MJ    	M[    	Mj    	My    	M    	M    	M    	M    	M    	M    	M    	M    	M    	N    	N    	N&    	N1    	N<    	NH    	NT    	Ne    	Nw    	N    	N    	N    	N    	N    	N    	N     	O    	O    	O-    	OB    	OW    	Ol    	O    	O    	O  	  	O  
  	O    	O    	O    	P    	P)    	P>    	PS    	Ph    	P}    	P    	P    	P    	P    	P    	P    	Q    	Q%    	Q:    	QO    	Qd    	Qy    	Q     	Q  !  	Q  "  	Q  #  	Q  $  	Q  %  	R  &  	R!  '  	R6  (  	RK  )  	R`  *  	Ru  +  	R  ,  	R  -  	R  .  	R  /  	R  0  	R  1  	S  2  	S  3  	S2  4  	SG  5  	S\  6  	Sq  7  	S  8  	S  9  	S  :  	S  ;  	S  <  	S  =  	T  >  	T  ?  	T.  @  	TC  A  	TX  B  	Tm  C  	T  D  	T  E  	T  F  	T  G  	T  H  	T  I  	U   J  	U  K  	U*  L  	U?  M  	UT  N  	Ui  O  	U~  P  	U  Q  	U  R  	U  S  	U  T  	U  U  	U  V  	V  W  	V&  X  	V;  Y  	VP  Z  	Ve  [  	Vz  \  	V  ]  	V  ^  	V  _  	V  `  	V  a  	V  b  	W  c  	W"  d  	W7  e  	WL  f  	Wa  g  	Wv  h  	W  i  	W  j  	W  k  	W  l  	W  m  	W  n  	X	  o  	X  p  	X3  q  	XH  r  	X]  s  	Xr  t  	X  u  	X  v  	X  w  	X  x  	X  y  	X  z  	Y  {  	Y  |  	Y/  }  	YD  ~  	YY    	Yn    	Y    	Y    	Y    	Y    	Y    	Y    	Z    	Z    	Z+    	Z@    	ZU    	Zj    	Z    	Z    	Z    	Z    	Z    	Z    	Z    	[    	['    	[<    	[Q    	[f    	[{    	[    	[    	[    	[    	[    	[    	\    	\#    	\8    	\M    	\b    	\w    	\    	\    	\    	\    	\    	\    	]
    	]    	]4    	]I    	]^    	]s    	]    	]    	]    	]    	]    	]    	^    	^    	^0    	^E    	^Z    	^o    	^    	^    	^    	^    	^    	^    	_    	_    	_,    	_A    	_V    	_k    	_    	_    	_    	_    	_    	_    	_    	`    	`(    	`=    	`R    	`g    	`|    	`    	`    	`    	`    	`    	`    	a    	a$    	a9    	aN    	ac    	ax    	a    	a    	a    	a    	a    	a    	b    	b     	b5    	bJ    	b_    	bt    	b    	b    	b    	b    	b    	b    	c    	c    	c1    	cF    	c[    	cp    	c    	c    	c    	c    	c    	c  	   	d  	  	d  	  	d&  	  	d1  	  	d=  	  	db  	  	d  	  	d  	  	d  		  	d  	
  	e  	  	e6  	  	eZ  	  	e|  	  	e  	  	e  	  	e  	  	f  	  	fE  	  	fl  	  	f  	  	f  	  	f  	  	f  	  	g   	  	gB  	  	gb  	  	g  	  	g  	  	g  	  	g  	  	h  	   	h.  	!  	hP  	"  	hp  	#  	h  	$  	h  	%  	h  	&  	h  	'  	i  	(  	i4  	)  	iV  	*  	ix  	+  	i  	,  	i  	-  	i  	.  	i  	/  	j  	0  	jA  	1  	jc  	2  	j  	3  	j  	4  	j  	5  	j  	6  	k  	7  	k/  	8  	kQ  	9  	ks  	:  	k  	;  	k  	<  	k  	=  	k  	>  	k  	?  	k  	@  	l  	A  	l)  	B  	l6  	C  	lC  	D  	lO  	E  	l[  	F  	lg  	G  	ls  	H  	l  	I  	l  	J  	l  	K  	l  	L  	l  	M  	l  	N  	l  	O  	m  	P  	m(  	Q  	mK  	R  	mV  	S  	ma  	T  	mm  	U  	my  	V  	m  	W  	m  	X  	m  	Y  	m  	Z  	n   	[  	n$  	\  	nH  	]  	nl  	^  	n  	_  	n  	`  	n  	a  	n  	b  	o   	c  	o/  	d  	o?  	e  	oL  	f  	o^  	g  	oo  	h  	o  	i  	o  	j  	o  	k  	o  	l  	o  	m  	o  	n  	p  	o  	p.  	p  	pD  	q  	pQ  	r  	p\  	s  	p  	t  	p  	u  	p  	v  	p  	w  	p  	x  	p  	y  	q  	z  	q  	{  	q+  	|  	qM  	}  	qo  	~  	q  	  	q  	  	q  	  	q  	  	q  	  	q  	  	r  	  	r   	  	rB  	  	rf  	  	r  	  	r  	  	r  	  	s  	  	s+  	  	sN  	  	sc  	  	sx  	  	s  	  	s  	  	s  	  	s  	  	t	  	  	t.  	  	tP  	  	tq  	  	t  	  	t  	  	t  	  	t  	  	u  	  	u6  	  	uX  	  	uy  	  	u  	  	u  	  	u  	  	v  	  	v-  	  	vO  	  	vr  	  	v  	  	v  	  	v  	  	v  	  	w  	  	w.  	  	wP  	  	wr  	  	w  	  	w  	  	w  	  	w  	  	x  	  	x$  	  	x9  	  	xN  	  	xq  	  	x  	  	x  	  	x  	  	x  	  	y  	  	y  	  	y+  	  	y<  	  	y]  	  	y|  	  	y  	  	y  	  	y  	  	y  	  	y  	  	y  	  	y  	  	y  	  	z  	  	z(  	  	zF  	  	zj  	  	zv  	  	z  	  	z  	  	z  	  	z  	  	z  	  	z  	  	{
  	  	{  	  	{4  	  	{K  	  	{`  	  	{u  	  	{  	  	{  	  	{  	  	{  	  	{  	  	|   	  	|G  	  	|_  	  	|n  	  	|  	  	|  	  	|  	  	|  	  	|  	  	|  	  	}  	  	}*  	  	}F  	  	}b  	  	}{  	  	}  	  	}  	  	}  	  	~  	  	~  	  	~3  	  	~F  	  	~^  	  	~|  	  	~  	  	~  	  	~  	  	~  	  	~  	  	  	  	  	  	,  
   	A  
  	V  
  	b  
  	m  
  	z  
  	  
  	  
  	  
  	  
	  	  

  	8  
  	b  
  	w  
  	  
  	  
  	  
  	  
  	   
  	  
  	*  
  	N  
  	t  
  	  
  	  
  	  
  	  
  	  
  	"  
  	>  
  	Z  
  	x  
  	  
   	  
!  	  
"  	  
#  	  
$  	*  
%  	H  
&  	f  
'  	  
(  	  
)  	  
*  	  
+  	  
,  	  
-  	-  
.  	K  
/  	i  
0  	  
1  	  
2  	  
3  	  
4  	  
5  		  
6  	%  
7  	C  
8  	X  
9  	v  
:  	  
;  	  
<  	  
=  	  
>  	  
?  	  
@  	  
A  	+  
B  	7  
C  	E  
D  	Z  
E  	o  
F  	  
G  	  
H  	  
I  	  
J  	  
K  	  
L  	  
M  	  
N  	  
O  	  
P  	.  
Q  	C  
R  	O  
S  	d  
T  	y  
U  	  
V  	  
W  	  
X  	  
Y  	  
Z  	  
[  	$  
\  	D  
]  	f  
^  	{  
_  	  
`  	  
a  	  
b  	  
c  	  
d  	  
e  	  
f  	.  
g  	D  
h  	X  
i  	k  
j  	  
k  	  
l  	  
m  	  
n  	  
o  	  
p  	  
q  	  
r  	(  
s  	F  
t  	j  
u  	  
v  	  
w  	  
x  	  
y  	  
z  	  
{  	  
|  	  
}  	'  
~  	<  
  	Q  
  	f  
  	{  
  	  
  	  
  	  
  	  
  	  
  	  
  	  
  	  
  	&  
  	A  
  	X  
  	n  
  	  
  	  
  	  
  	  
  	  
  	  
  	6  
  	X  
  	h  
  	}  
  	  
  	  
  	  
  	  
  	  
  	  
  	  
  	  
  	+  
  	:  
  	J  
  	]  
  	x  
  	  
  	  
  	  
  	  
  	  
  	  
  	  
  	  
  	'  
  	=  
  	P  
  	c  
  	t  
  	  
  	  
  	  
  	  
  	  
  	  
  	  
  	  
  	%  
  	:  
  	O  
  	Z  
  	i  
  	v  
  	  
  	  
  	  
  	  
  	  
  	  
  	  
  	  
  	  
  	  
  	  
  	0  
  	C  
  	X  
  	d  
  	y  
  	  
  	  
  	  
  	  
  	  
  	  
  	  
  	-  
  	B  
  	W  
  	l  
  	  
  	  
  	  
  	  
  	  
  	  
  	  
  	  
  	+  
  	<  
  	Q  
  	f  
  	|  
  	  
  	  
  	  
  	  
  	  
  	  
  	  
  	&  
  	8  
  	M  
  	k  
  	  
  	  
  	  
  	  
  	  
  	  
  	  
  	  
  	(  
  	=  
  	R  
  	g  
  	|     	    	    	    	    	    	    	    	    	   	  	4  
  	H    	]    	p    	    	    	    	    	    	    	    	    	'    	<    	N    	`    	s    	    	    	    	    	    	     	  !  	
  "  	  #  	3  $  	F  %  	Z  &  	m  '  	  (  	  )  	  *  	  +  	  ,  	  -  	  .  	
  /  	!  0  	6  1  	H  2  	]  3  	r  4  	  5  	  6  	  7  	  8  	  9  	  :  	  ;  	  <  	+  =  	6  >  	F  ?  	R  @  	`  A  	n  B  	|  C  	  D  	  E  	  F  	  G  	  H  	  I  	   J  	  K  	*  L  	C  M  	b  N  	n  O  	  P  	  Q  	  R  	  S  	  T  	  U  	  V  	  W  	$  X  	7  Y  	L  Z  	a  [  	v  \  	  ]  	  ^  	  _  	  `  	  a  	  b  	  c  	  d  	.  e  	C  f  	X  g  	n  h  	  i  	  j  	  k  	  l  	  m  	  n  	  o  	  p  	   q  	5  r  	H  s  	]  t  	r  u  	  v  	  w  	  x  	  y  	  z  	  {  	  |  	  }  	/  ~  	D    	Y    	n    	    	    	    	    	    	    	    	    	&    	;    	R    	g    	|    	    	    	    	    	    	    	"    	A    	U    	j    	    	    	    	    	    	    	    	    	(    	=    	R    	g    	    	    	    	    	    	    	    	    	.    	C    	X    	g    	w    	    	    	    	    	    	    	    	1    	G    	h    	}    	    	    	    	    	    	    	    	    	    	/    	D    	T    	c    	w    	    	    	    	    	    	    	    	3    	H    	]    	r    	    	    	    	    	    	    	    	    	,    	A    	V    	k    	    	    	    	    	    	    	    	    	#    	9    	O    	k    	    	    	    	    	    	    	    	%    	C    	g    	}    	    	    	    	    	    	$    	9    	N     	c    	x    	    	    	    	    	    	    	  	  		  
  	"    	>    	U    	i    	~    	    	    	    	    	    	    	    	'    	=    	L    	b    	u    	    	    	    	    	     	  !  	  "  	1  #  	L  $  	a  %  	|  &  	  '  	  (  	  )  	  *  	  +  	  ,  	  -  	)  .  	G  /  	c  0  	  1  	  2  	  3  	  4  	  5  	  6  	  7  	  8  	6  9  	O  :  	k  ;  	  <  	  =  	  >  	  ?  	  @  	  A  	  B  	  C  	  D  	  E  	   F  	5  G  	C  H  	R  I  	l  J  	  K  	  L  	  M  	  N  	  O  	  P  	  Q  	  R  	  S  	&  T  	;  U  	P  V  	\  W  	i  X  	~  Y  	  Z  	  [  	  \  	  ]  	  ^  	  _  	  `  	0  a  	J  b  	b  c  	q  d  	  e  	  f  	  g  	  h  	  i  	  j  	  k  	  l  	  m  	,  n  	>  o  	U  p  	k  q  	  r  	  s  	  t  	  u  	  v  	  w  	  x  	  y  	&  z  	1  {  	@  |  	Q  }  	]  ~  	o    	    	    	    	    	    	    	    	    	    	.    	D    	Z    	s    	    	    	    	    	    	    	    	'    	@    	\    	p    	    	    	    	    	    	    	    	6    	M    	h    	z    	    	    	    	    	    	    	    	$    	9    	R    	m    	    	    	    	    	    	    	    	(    	=    	U    	l    	    	    	    	    	    	    	    	    	    	-    	;    	L    	Z    	o    	    	    	    	    	    	    	    	.    	=    	R    	g    	|    	    	    	    	    	    	    	     	    	*    	?    	T    	i    	~    	    	    	    	    	    	    	    	(    	8    	J    	[    	o    	    	    	    	    	    	    	    	    	&    	;    	P    	e    	z    	    	    	    	    	    	    	    	"     	7    	L    	a    	m    	{    	    	    	    	  	  	  
  	    	%    	8    	M    	b    	}    	    	    	    	    	    	    	"    	9    	M    	e    	{    	    	    	    	    	     	  !  	  "  	!  #  	6  $  	L  %  	b  &  	x  '  	  (  	  )  	´  *  	  +  	  ,  	  -  	  .  	  /  	1  0  	G  1  	\  2  	o  3  	Ä  4  	Û  5  	î  6  	  7  	  8  	  9  	  :  	  ;  	2  <  	G  =  	\  >  	r  ?  	Ā  @  	Đ  A  	Ġ  B  	Į  C  	Ľ  D  	  E  	  F  	  G  	  H  	  I  	+  J  	@  K  	\  L  	v  M  	Œ  N  	ş  O  	Ŵ  P  	  Q  	  R  	  S  	  T  	  U  	2  V  	G  W  	\  X  	j  Y  	  Z  	Ɣ  [  	Ʃ  \  	ƾ  ]  	  ^  	  _  	  `  	  a  	+  b  	G  c  	W  d  	h  e  	}  f  	ǒ  g  	Ǡ  h  	Ǹ  i  	  j  	  k  	  l  	  m  	)  n  	:  o  	M  p  	b  q  	{  r  	Ȓ  s  	Ȫ  t  	Ȼ  u  	  v  	  w  	  x  	  y  	,  z  	D  {  	`  |  	z  }  	ɑ  ~  	ɬ    	    	    	    	    	    	'    	<    	U    	v    	ʗ    	ʸ    	    	    	    	    	*    	D    	^    	z    	˒    	ˮ    	    	    	    	#    	8    	M    	b    	y    	̐    	̣    	̷    	    	    	    	    	3    	N    	m    	͎    	ͪ    	ͽ    	    	    	    	(    	@    	W    	r    	·    	Ο    	ι    	    	    	    	    	&    	=    	T    	k    	}    	ϑ    	Ϧ    	ϻ    	    	    	    	    	#    	7    	N    	d    	w    	Ќ    	С    	ж    	    	    	    	    	    	%    	3    	A    	P    	_    	m    	т    	ѐ    	ѥ    	ѷ    	    	    	    	    	5    	O    	]    	r    	҇    	Ҝ    	ұ    	    	    	    	    	    	/    	D    	Y    	n    	Ӄ    	Ә    	ӭ    	    	    	    	    	
    	    	4    	I    	^    	s    	Ԉ    	ԝ    	Բ    	    	     	    	    	    	%    	5    	E    	U    	e    	t  	  	Մ  
  	Ք    	դ    	յ    	    	    	    	    	
    	    	+    	<    	L    	\    	l    	|    	֋    	֛    	֪    	ֺ    	    	    	     	   !  	  "  	   #  	0  $  	?  %  	P  &  	`  '  	q  (  	׀  )  	ב  *  	ע  +  	״  ,  	  -  	  .  	  /  	  0  	  1  	  2  	   3  	/  4  	B  5  	N  6  	Z  7  	f  8  	r  9  	}  :  	؈  ;  	ؓ  <  	ب  =  	ؽ  >  	  ?  	  @  	  A  	  B  	  C  	)  D  	<  E  	O  F  	`  G  	r  H  	~  I  	ى  J  	ٕ  K  	٢  L  	ٮ  M  	ٺ  N  	  O  	  P  	  Q  	  R  	   S  	  T  	!  U  	2  V  	C  W  	S  X  	d  Y  	u  Z  	چ  [  	ڕ  \  	ڦ  ]  	ڻ  ^  	  _  	  `  	  a  	  b  	$  c  	9  d  	N  e  	c  f  	x  g  	ۍ  h  	ۢ  i  	۷  j  	  k  	  l  	  m  	  n  	   o  	5  p  	J  q  	_  r  	t  s  	܉  t  	ܞ  u  	ܳ  v  	  w  	  x  	  y  	  z  	  {  	1  |  	F  }  	[  ~  	p    	݅    	ݚ    	ݯ    	ݿ    	    	    	    		    	    	/    	?    	T    	g    	|    	ޑ    	ޡ    	޶    	    	    	    	
    	    	/    	?    	R    	c    	x    	߈    	ߘ    	߫    	߾    	    	    	    	    	    	1    	A    	V    	f    	{    	    	    	    	    	    	    	    	    	    	*    	7    	E    	Y    	e    	r    	~    	    	    	    	    	    	    	    	    	    	    	'    	:    	M    	b    	w    	    	    	    	    	    	    	    	    	    	    	!    	1    	@    	R    	c    	t    	    	    	    	    	    	    	    	
    	    	4    	I    	^    	s    	    	    	    	    	    	    	    	    	0    	E    	Z    	o    	    	    	    	    	    	    	    	    	,    	A    	V    	k    	    	    	    	     	    	    	    	    	@    	P    	_    	u    	  	  	  
  	    	    	    	    	    	    	    	    	    	6    	H    	X    	q    	    	    	    	    	    	     	    	    	*     	7  !  	F  "  	U  #  	e  $  	u  %  	  &  	  '  	  (  	  )  	  *  	  +  	  ,  	  -  	  .  	  /  	.  0  	?  1  	O  2  	a  3  	r  4  	  5  	  6  	  7  	  8  	  9  	  :  	  ;  	  <  	  =  	  >  	)  ?  	7  @  	E  A  	V  B  	f  C  	w  D  	  E  	  F  	  G  	  H  	  I  	  J  	  K  	  L  	  M  	'  N  	;  O  	K  P  	\  Q  	l  R  	}  S  	  T  	  U  	  V  	  W  	  X  	  Y  	  Z  	  [  	  \  	/  ]  	F  ^  	W  _  	h  `  	x  a  	  b  	  c  	  d  	  e  	  f  	  g  	  h  	  i  	  j  	!  k  	2  l  	G  m  	X  n  	m  o  	  p  	  q  	  r  	  s  	  t  	  u  	  v  	  w  	  x  	$  y  	:  z  	R  {  	_  |  	k  }  	x  ~  	    	    	    	    	    	    	    	    	    	    	    	*    	6    	E    	U    	j    	    	    	    	    	    	    	    	    	    	    	"    	7    	G    	W    	f    	v    	    	    	    	    	    	    	    	    	    	    	$    	3    	D    	T    	d    	x    	    	    	    	    	    	    	    	    	    	    	#    	3    	E    	V    	f    	u    	    	    	    	    	    	    	    	    	    	3    	[    	y    	    	    	    		    	    	.    	H    	a    	v    	    	    	    	    	    	    	    	    	+    	@    	U    	j    	    	    	    	    	    	    	    	    	'    	<    	Q    	f    	{    	    	    	    	    	    	    	    	#    	8    	M    	b    	w    	    	    	    	    	    	    	
    	     	4    	J    	[    	l    	    	    	    	    	  	  	  
  	    	    	3    	H    	^    	r    	    	    	    	    	    	    	    	    	    	/    	@    	T    	g    	{    	    	     	  !  	  "  	  #  	  $  		  %  	  &  	7  '  	O  (  	`  )  	v  *  	  +  	  ,  	  -  	  .  	  /  	  0  	  1  	
  2  	  3  	#  4  	1  5  	=  6  	K  7  	W  8  	c  9  	p  :  	|  ;  	  <  	  =  	  >  	  ?  	  @  	  A  	  B  	  C  	  D  	0  E  	A  F  	P  G  	_  H  	n  I  	  J  	  K  	  L  	  M  	  N  	  O  	  P  	  Q  	  R  	)  S  	:  T  	K  U  	[  V  	l  W  	{  X  	  Y  	  Z  	  [  	  \  	  ]  	  ^  	  _  
   `  
   a  
   b  
 3  c  
 @  d  
 P  e  
 ]  f  
 l  g  
   h  
   i  
   j  
   k  
   l  
   m  
   n  
   o  
   p  
  q  
%  r  
2  s  
@  t  
N  u  
\  v  
m  w  
~  x  
  y  
  z  
  {  
  |  
  }  
  ~  
    
+    
;    
P    
d    
p    
    
    
    
    
    
    
    
    
    
    
    
    
"    
2    
A    
Q    
`    
p    
    
    
    
    
    
    
    
    
    
)    
A    
U    
i    
}    
    
    
    
    
    
    
    
    
$    
5    
H    
\    
o    
    
    
    
    
    
    
    
     
    
"    
5    
G    
Z    
l    
}    
    
    
    
    
    
    
    
    
,    
A    
V    
k    
    
    
    
    
    
    
    
    
    
%    
5    
G    
V    
d    
t    
    
    
    
    
    
    
    
    
	    
	    
	1    
	D    
	V    
	f    
	x    
	    
	    
	    
	    
	    
	    
	    

    

    

&    

6    

G    

Y    

k    

{    

    

    

    

    

    

    

     
    
    
$    
3    
B    
Q    
`    
o    
~  	  
  
  
    
    
    
    
    
    
    
    
    
#    
5    
G    
Y    
k    
}    
    
    
    
    
    
    
	     
  !  
-  "  
?  #  
R  $  
e  %  
x  &  
  '  
  (  
  )  
  *  
  +  
  ,  
  -  
  .  
  /  
0  0  
A  1  
R  2  
c  3  
t  4  
  5  
  6  
  7  
  8  
  9  
  :  
  ;  
  <  
  =  
$  >  
5  ?  
D  @  
U  A  
e  B  
v  C  
  D  
  E  
  F  
  G  
  H  
  I  
  J  
  K  
  L  
&  M  
4  N  
F  O  
V  P  
g  Q  
y  R  
  S  
  T  
  U  
  V  
  W  
  X  
  Y  

  Z  
  [  
2  \  
G  ]  
\  ^  
q  a  
  b  
  c  
  d  
  e  
  f  
  g  
  h  
  i  
  j  
  k  
  l  
3  m  
F  n  
U  o  
d  p  
{  q  
  r  
  s  
  t  
  u  
  v  
  w  
  x  
  y  
2  z  
I  {  
b  |  
}  }  
  ~  
    
    
    
    
    
%    
;    
Q    
f    
    
    
    
    
    
    
	    
    
5    
Q    
j    
    
    
    
    
    
    
	    
    
)    
B    
]    
s    
    
    
    
    
    
    
    
    
    
'    
<    
K    
[    
l    
{    
    
    
    
    
    
    
    
    
    
    
-    
<    
K    
\    
l    
}    
    
    
    
    
    
    
    
    
    
    
1    
B    
U    
g    
y    
    
    
    
    
    
    
    
    
$    
8    
L    
_    
q    
    
    
    
    
    
    
    
    
    
+    
<    
N    
`    
s    
    
    
    
    
    
    
    
    
    
     
/    
@    
S    
e    
u    
    
    
    
    
    
    
    
    
$    
9     
N    
c    
~    
    
    
    
    
    
  	  
"  
  
=    
X    
m    
    
    
    
    
    
    
/    
H    
f    
    
    
    
    
    
 	    
 %    
 D    
 _    
 z     
   !  
   "  
   #  
   $  
!  %  
!  &  
!7  '  
!P  (  
!s  )  
!  *  
!  +  
!  ,  
!  -  
!  .  
"  /  
"  0  
"7  1  
"L  2  
"g  3  
"  4  
"  5  
"  6  
"  7  
"  8  
"  9  
#  :  
#)  ;  
#E  <  
#]  =  
#y  >  
#  ?  
#  @  
#  A  
#  B  
#  C  
$  D  
$+  E  
$D  F  
$]  G  
$v  H  
$  I  
$  J  
$  K  
$  L  
$  M  
%  N  
%9  O  
%N  P  
%c  Q  
%|  R  
%  S  
%  T  
%  U  
%  V  
%  W  
&  X  
&)  Y  
&D  Z  
&Y  [  
&z  \  
&  ]  
&  ^  
&  _  
&  `  
&  a  
'  b  
')  c  
'C  d  
'W  e  
'q  f  
'  g  
'  h  
'  i  
'  j  
'  k  
(
  l  
("  m  
(>  n  
(Z  o  
(r  p  
(  q  
(  r  
(  s  
(  t  
)   u  
)  v  
)8  w  
)T  x  
)s  y  
)  z  
)  {  
)  |  
)  }  
)  ~  
*    
*9    
*X    
*n    
*    
*    
*    
*    
*    
+
    
+(    
+F    
+[    
+z    
+    
+    
+    
+    
+    
,    
,&    
,;    
,S    
,f    
,|    
,    
,    
,    
,    
,    
-    
-4    
-O    
-k    
-    
-    
-    
-    
-    
.    
.    
./    
.H    
._    
.{    
.    
.    
.    
.    
.    
/    
/.    
/C    
/a    
/    
/    
/    
/    
/    
0     
0!    
0B    
0]    
0~    
0    
0    
0    
0    
1    
1#    
1F    
1k    
1    
1    
1    
1    
1    
2    
2    
28    
2Q    
2l    
2    
2    
2    
2    
2    
3    
3    
35    
3J    
3_    
3z    
3    
3    
3    
3    
3    
4    
4+    
4I    
4g    
4    
4    
4    
4    
4    
5    
5'    
5@    
5U    
5n    
5    
5    
5    
5    
5    
6    
6)    
6D    
6_    
6w    
6    
6    
6    
6    
6    
7    
7,    
7D     
7d    
7    
7    
7    
7    
7    
8    
8/    
8R  	  
8f  
  
8    
8    
8    
8    
8    
8    
9    
9!    
96    
9Q    
9e    
9    
9    
9    
9    
9    
9    
:    
:%    
:>    
:V    
:k     
:  !  
:  "  
:  #  
:  $  
:  %  
;  &  
;  '  
;4  (  
;R  )  
;o  *  
;  +  
;  ,  
;  -  
;  .  
<  /  
<%  0  
<F  1  
<\  2  
<x  3  
<  4  
<  5  
<  6  
<  7  
<  8  
=  9  
=)  :  
=B  ;  
=[  <  
=p  =  
=  >  
=  ?  
=  @  
=  A  
=  B  
>  C  
>  D  
>3  E  
>O  F  
>f  G  
>|  H  
>  I  
>  J  
>  K  
>  L  
>  M  
?  N  
?)  O  
?A  P  
?\  Q  
?u  R  
?  S  
?  T  
?  U  
?  V  
?  W  
@  X  
@'  Y  
@C  Z  
@d  [  
@  \  
@  ]  
@  ^  
@  _  
@  `  
@  a  
@  b  
A  c  
A  d  
A"  e  
A3  f  
AC  g  
AR  h  
A_  i  
As  j  
A  k  
A  l  
A  m  
A  n  
A  o  
B  p  
B  q  
B9  r  
BP  s  
Bf  t  
B  u  
B  v  
B  w  
B  x  
B  y  
B  z  
C  {  
C0  |  
CG  }  
Ce  ~  
Cz    
C    
C    
C    
C    
D     
D!    
D9    
DR    
Dj    
D    
D    
D    
D    
D    
E    
E!    
E=    
EY    
Ed    
Ep    
E}    
E    
E    
E    
E    
E    
E    
E    
E    
F    
F#    
F8    
FM    
Fb    
Ft    
F    
F    
F    
F    
F    
F    
F    
G    
G    
G+    
G>    
GP    
Gb    
Gt    
G    
G    
G    
G    
G    
G    
G    
H    
H    
H*    
H=    
HO    
Ha    
Hs    
H    
H    
H    
H    
H    
H    
H    
I    
I    
I-    
I?    
IQ    
Id    
Iw    
I    
I    
I    
I    
I    
I    
I    
J    
J    
J0    
JC    
JV    
Ji    
J|    
J    
J    
J    
J    
J    
J    
J    
K    
K#    
K5    
KH    
K[    
Ko    
K    
K    
K    
K    
K    
K    
K    
L    
L    
L)    
L;    
LM    
L`    
Ls    
L    
L    
L    
L    
L    
L    
M    
M    
M-    
MB    
MW     
Ml    
M    
M    
M    
M    
M    
M    
M    
N  	  
N'  
  
N:    
NM    
Nb    
Nv    
N    
N    
N    
N    
N    
N    
O    
O    
O.    
OC    
OU    
Og    
O|    
O    
O    
O    
O    
O     
O  !  
O  "  
O  #  
P  $  
P  %  
P  &  
P*  '  
P6  (  
PB  )  
PM  *  
P[  +  
Ph  ,  
P  -  
P  .  
P  /  
P  0  
P  1  
P  2  
P  3  
Q  4  
Q'  5  
Q<  6  
QQ  7  
Qd  8  
Qw  9  
Q  :  
Q  ;  
Q  <  
Q  =  
Q  >  
Q  ?  
R  @  
R  A  
R/  B  
RA  C  
RV  D  
Rk  E  
R}  F  
R  G  
R  H  
R  I  
R  J  
R  K  
R  L  
R  M  
S  N  
S  O  
S3  P  
SJ  Q  
S^  R  
Su  S  
S  T  
S  U  
S  V  
S  W  
S  X  
S  Y  
T  Z  
T  [  
T/  \  
TF  ]  
T]  ^  
Tq  _  
T  `  
T  a  
T  b  
T  c  
T  d  
T  e  
U	  f  
U  g  
U,  h  
U@  i  
UT  j  
Uj  k  
U  l  
U  m  
U  n  
U  o  
U  p  
U  q  
U  r  
V  s  
V  t  
V%  u  
V9  v  
VM  w  
Va  x  
Vu  y  
V  z  
V  {  
V  |  
V  }  
V  ~  
V    
W    
W!    
W8    
WO    
Wc    
Wq    
W    
W    
W    
W    
W    
W    
W    
X    
X    
X(    
X;    
XP    
Xa    
Xt    
X    
X    
X    
X    
X    
X    
Y    
Y    
Y1    
YH    
Y\    
Yp    
Y    
Y    
Y    
Y    
Y    
Y    
Y    
Z    
Z    
Z'    
Z:    
ZO    
Z`    
Zs    
Z    
Z    
Z    
Z    
Z    
Z    
[    
[    
[0    
[G    
[[    
[o    
[    
[    
[    
[    
[    
[    
[    
[    
\	    
\    
\,    
\>    
\N    
\`    
\r    
\    
\    
\    
\    
\    
\    
\    
\    
]
    
]    
]'    
]5    
]E    
]X    
]h    
]z    
]    
]    
]    
]    
]    
]    
]    
^     
^    
^"    
^4    
^D    
^T    
^f    
^x    
^    
^    
^    
^    
^    
^    
^    
^    
_    
_!    
_4    
_E    
_X    
_m    
_~    
_    
_    
_    
_    
_    
_    
`    
`#    
`7    
`N     
`e    
`y    
`    
`    
`    
`    
`    
`    
`  	  
a  
  
a    
a     
a/    
aM    
al    
a    
a    
a    
a    
a    
a    
b    
b&    
b=    
bQ    
be    
by    
b    
b    
b    
b    
b     
b  !  
c  "  
c#  #  
c7  $  
cN  %  
ce  &  
cv  '  
c  (  
c  )  
c  *  
c  +  
c  ,  
c  -  
d  .  
d  /  
d+  0  
d?  1  
dS  2  
dg  3  
d{  4  
d  5  
d  6  
d  7  
d  8  
d  9  
d  :  
e  ;  
e'  <  
e>  =  
eU  >  
ei  ?  
ev  @  
e  A  
e  B  
e  C  
e  D  
e  E  
e  F  
e  G  
e  H  
e  I  
f  J  
f"  K  
f3  L  
fD  M  
fW  N  
fh  O  
f  P  
f  Q  
f  R  
f  S  
f  T  
f  U  
f  V  
g  W  
g  X  
g,  Y  
gC  Z  
gW  [  
gn  \  
g  ]  
g  ^  
g  _  
g  `  
g  a  
g  b  
g  c  
h  d  
h(  e  
h<  f  
hS  g  
hg  h  
h~  i  
h  j  
h  k  
h  l  
h  m  
h  n  
h  o  
i  p  
i  q  
i0  r  
iD  s  
iX  t  
il  u  
i  v  
i  w  
i  x  
i  y  
i  z  
i  {  
j  |  
j  }  
j#  ~  
j1    
jO    
ji    
j    
j    
j    
j    
j    
k    
k    
k(    
k9    
kJ    
k^    
kr    
k    
k    
k    
k    
l    
l&    
lK    
ll    
l    
l    
l    
l    
l    
l    
m    
m    
m(    
m9    
mJ    
mZ    
mk    
m}    
m    
m    
m    
m    
m    
m    
m    
n    
n)    
n@    
nT    
nk    
nz    
n    
n    
n    
n    
n    
n    
o     
o    
o"    
o5    
oH    
o[    
on    
o    
o    
o    
o    
o    
o    
o    
p    
p"    
p6    
pI    
p\    
po    
p    
p    
p    
p    
p    
p    
p    
q
    
q    
q1    
qD    
qW    
qj    
q~    
q    
q    
q    
q    
q    
q    
r    
r    
r.    
rA    
rT    
rg    
rz    
r    
r    
r    
r    
r    
r    
s    
s    
s)    
s=    
sJ    
s^    
sr    
s    
s    
s    
s    
s    
s    
s    
t    
t     
t3    
tG    
t[    
tn    
t     
t    
t    
t    
t    
t    
t    
t    
u    
u  	  
u*  
  
u>    
uQ    
ud    
ux    
u    
u    
u    
u    
u    
u    
u    
v    
v    
v.    
vB    
vV    
vj    
v~    
v    
v    
v    
v     
v  !  
w  "  
w  #  
w-  $  
w>  %  
wO  &  
w`  '  
wq  (  
w  )  
w  *  
w  +  
w  ,  
w  -  
w  .  
w  /  
x  0  
x  1  
x'  2  
x8  3  
xI  4  
xZ  5  
xo  6  
x  7  
x  8  
x  9  
x  :  
x  ;  
x  <  
y
  =  
y(  >  
yF  ?  
yd  @  
y  A  
y  B  
y  C  
y  D  
y  E  
y  F  
z  G  
z  H  
z'  I  
z;  J  
zO  K  
ze  L  
z{  M  
z  N  
z  O  
z  P  
z  Q  
z  R  
{  S  
{)  T  
{C  U  
{]  V  
{w  W  
{  X  
{  Y  
{  Z  
{  [  
{  \  
|
  ]  
|$  ^  
|>  _  
|X  `  
|r  a  
|  b  
|  c  
|  d  
|  e  
|  f  
}  g  
}(  h  
}B  i  
}\  j  
}v  k  
}  l  
}  m  
}  n  
}  o  
}  p  
}  q  
~  r  
~@  s  
~e  t  
~  u  
~  v  
~  w  
~  x  
  y  
  z  
0  {  
E  |  
Z  }  
o  ~  
    
    
    
    
    
    
    
    
2    
J    
b    
z    
    
    
    
    

    
*    
J    
^    
r    
    
    
    
    
    

    
$    
>    
N    
l    
    
    
    
    
    
    
    
#    
8    
O    
b    
u    
    
    
    
    
    
    
    
    
1    
H    
X    
o    
    
    
    
    
    
    
    
#    
:    
J    
a    
t    
    
    
    
    
    
    
    
    
(    
?    
P    
c    
n    
{    
    
    
    
    
    
    
    
    
2    
I    
`    
p    
    
    
    
    
    
    
    
'    
H    
_    
v    
    
    
    
    
    
    
    
    
    
4    
K    
b    
w    
    
    
    
    
    
    

    
    
4    
I    
^    
s    
     
    
    
    
    
    
    
)    
A    
V  	  
k  
  
    
    
    
    
    
     
    
.    
A    
L    
W    
c    
x    
    
    
    
    
    
    
    
     
5     
J  !  
c  "  
|  #  
  $  
  %  
  &  
  '  
  (  
  )  
  *  
)  +  
<  ,  
T  -  
l  .  
x  /  
  0  
  1  
  2  
  3  
  4  
  5  
  6  
  7  
3  8  
H  9  
]  :  
r  ;  
  <  
  =  
  >  
  ?  
  @  
  A  
  B  
"  C  
5  D  
J  E  
\  F  
s  G  
  H  
  I  
  J  
  K  
  L  
  M  
  N  
  O  
5  P  
K  Q  
i  R  
{  S  
  T  
  U  
  V  
  W  
  X  
  Y  
  Z  
  [  
&  \  
;  ]  
P  ^  
e  _  
z  `  
  a  
  b  
  c  
  d  
  e  
  f  
!  g  
?  h  
]  i  
{  j  
  k  
  l  
  m  
  n  
  o  
  p  
-  q  
F  r  
[  s  
f  t  
q  u  
  v  
  w  
  x  
  y  
  z  
  {  
  |  
  }  
.  ~  
C    
X    
m    
    
    
    
    
    
    
    
    
.    
A    
V    
k    
    
    
    
    
    
    
    
    
-    
B    
W    
l    
    
    
    
    
    
    
    
    
*    
B    
Y    
p    
    
    
    
    
    
    

    
"    
=    
U    
n    
    
    
    
    
    
    
(    
9    
F    
S    
`    
n    
y    
    
    
    
    
    
    
"    
6    
S    
v    
    
    
    
    
    
    
    
    
    
    
    
    
9    
E    
V    
i    
x    
    
    
    
    
    
    
    
*    
?    
Q    
f    
    
    
    
    
    
    
    
(    
=    
R    
g    
|    
    
    
    
    
    
    
    
    
    
    
    
(    
=    
R    
g    
|    
     
    
    
    
    
    
    
    
)    
7  	  
F  
  
]    
h    
    
    
    
    
    
    
1    
L    
g    
}    
    
    
    
    
    
    
    
-    
B    
W     
l  !  
  "  
  #  
  $  
  %  
  &  
   '  
  (  
8  )  
J  *  
b  +  
u  ,  
  -  
  .  
  /  
  0  
  1  
  2  
   3  
  4  
&  5  
8  6  
G  7  
V  8  
f  9  
t  :  
  ;  
  <  
  =  
  >  
  ?  
  @  
  A  
  B  
0  C  
C  D  
O  E  
e  F  
|  G  
  H  
  I  
  J  
  K  
  L  
  M  
  N  
3  O  
K  P  
^  Q  
n  R  
|  S  
  T  
  U  
  V  
  W  
  X  
  Y  
  Z  
  [  
   \  
3  ]  
D  ^  
Z  _  
k  `  
|  a  
  b  
  c  
  d  
  e  
  f  
  g  
  h  
'  i  
=  j  
R  k  
b  l  
{  m  
  n  
  o  
  p  
  q  
  r  
  s  
  t  
  u  
-  v  
=  w  
X  x  
j  y  
  z  
  {  
  |  
  }  
  ~  
    
    
    
%    
3    
D    
U    
f    
z    
    
    
    
    
    
    
     
3    
E    
W    
h    
x    
    
    
    
    
    
    

    
    
=    
S    
h    
    
    
    
    
    
    
    
     
5    
C    
S    
m    
y    
    
    
    
    
    
    
    
$    
9    
N    
c    
x    
    
    
    
    
    
    
    
     
5    
J    
_    
t    
    
    
    
    
    
    
    
    
1    
F    
[    
p    
    
    
    
    
    
    
    
    
-    
B    
W    
l    
    
    
    
    
    
    
    
    
)    
>    
S    
h    
}    
    
    
    
    
    
    
    
%    
:    
O    
d    
y    
    
    
    
    
    
    
    
!    
6    
K    
`    
u     
    
    
    
    
    
    
    
#    
7  	  
K  
  
_    
u    
    
    
    
    
    
    
    
    
2    
F    
[    
n    
    
    
    
    
    
    
    
     
(  !  
5  "  
C  #  
P  $  
^  %  
p  &  
  '  
  (  
  )  
  *  
  +  
  ,  
  -  
  .  
  /  
.  0  
C  1  
Q  2  
]  3  
i  4  
u  5  
  6  
  7  
  8  
  9  
  :  
  ;  
  <  
  =  
  >  

  ?  
  @  
4  A  
J  B  
_  C  
t  D  
  E  
  F  
  G  
  H  
  I  
  J  
  K  
  L  
)  M  
?  N  
S  O  
i  P  
}  Q  
  R  
  S  
  T  
  U  
  V  
  W  
  X  
  Y  
  Z  
  [  
,  \  
9  ]  
L  ^  
Y  _  
l  `  
  a  
  b  
  c  
  d  
  e  
  f  
  g  
  h  
  i  
  j  
  k  
.  l  
?  m  
N  n  
a  o  
v  p  
  q  
  r  
  s  
  t  
  u  
  v  
  w  
  x  
  y  
-  z  
B  {  
W  |  
l  }  
  ~  
    
    
    
    
    
    
    
)    
?    
U    
k    
}    
    
    
    
    
    
    
    
#    
8    
I    
\    
t    
    
    
    
    
    
    
    
+    
>    
R    
c    
t    
    
    
    
    
    
    
    
    
8    
M    
b    
w    
    
    
    
    
    
    
    
    
    
    
)    
8    
G    
V    
f    
v    
    
    
­    
½    
    
    
    
    
#    
5    
K    
X    
e    
z    
Ï    
ä    
ù    
    
    
    
    
    
0    
D    
Z    
m    
ą    
ġ    
Ĵ    
    
    
    
    
!    
@    
Z    
m    
Ň    
Š    
ŵ    
    
    
    
    
$    
C    
b    
ƅ    
ƨ    
    
    
     
    
/    
I    
\    
s    
ǈ    
Ǣ    
ǹ    
    
    
    
/    
R    
q     
Ȑ    
Ƞ    
ȴ    
    
    
    
    
    
  	  
*  
  
:    
J    
`    
v    
ɉ    
ɟ    
ɴ    
    
    
    
     
    
%    
<    
G    
R    
_    
m    
z    
ʏ    
ʤ    
ʶ     
  !  
  "  
  #  
  $  
  %  
.  &  
C  '  
X  (  
m  )  
˂  *  
˗  +  
ˬ  ,  
  -  
  .  
  /  
   0  
  1  
*  2  
?  3  
T  4  
i  5  
~  6  
̓  7  
̨  8  
̽  9  
  :  
  ;  
  <  
  =  
&  >  
;  ?  
P  @  
e  A  
z  B  
͏  C  
ͤ  D  
͹  E  
  F  
  G  
  H  
  I  
"  J  
7  K  
L  L  
a  M  
v  N  
΋  O  
Π  P  
ε  Q  
  R  
  S  
  T  
	  U  
  V  
3  W  
H  X  
]  Y  
r  Z  
χ  [  
Ϝ  \  
ϱ  ]  
  ^  
  _  
  `  
  a  
  b  
/  c  
D  d  
Y  e  
n  f  
Ѓ  g  
И  h  
Э  i  
  j  
  k  
  l  
  m  
  n  
+  o  
@  p  
U  q  
j  r  
  s  
є  t  
ѩ  u  
Ѿ  v  
  w  
  x  
  y  
  z  
'  {  
<  |  
Q  }  
f  ~  
{    
Ґ    
ҥ    
Һ    
    
    
    
    
#    
8    
M    
b    
w    
ӌ    
ӡ    
Ӷ    
    
    
    

    
    
4    
I    
^    
s    
Ԉ    
ԝ    
Բ    
    
    
    
    
    
0    
E    
Z    
o    
Մ    
ՙ    
ծ    
    
    
    
    
    
,    
A    
V    
k    
ր    
֕    
֪    
ֿ    
    
    
    
    
(    
=    
R    
g    
|    
ב    
צ    
׻    
    
    
    
    
$    
9    
N    
c    
x    
؍    
آ    
ط    
    
    
    
    
     
5    
J    
_    
t    
ى    
ٞ    
ٳ    
    
    
    
    
    
1    
F    
[    
p    
څ    
ښ    
گ    
    
    
    
    
    
-    
B    
W    
l    
ہ    
ۖ    
۫    
    
    
    
    
    
)    
>    
S    
h    
}    
ܒ    
ܧ    
ܼ    
    
    
    
     
%    
4    
B    
O    
\    
j    
݀    
ݙ    
ݰ  	  
  
  
    
    
    
'    
@    
\    
l    
ވ    
ޟ    
޻    
    
    
    
    
"    
4    
G    
[    
}    
ߓ    
ߪ    
߽     
  !  
  "  
  #  
  $  
   %  
2  &  
E  '  
W  (  
i  )  
|  *  
  +  
  ,  
  -  
  .  
  /  
  0  
  1  
  2  
1  3  
C  4  
Y  5  
e  6  
r  7  
  8  
  9  
  :  
  ;  
  <  
  =  
  >  
#  ?  
2  @  
E  A  
`  B  
  C  
  D  
  E  
  F  
  G  
  H  

  I  
   J  
6  K  
L  L  
d  M  
y  N  
  O  
  P  
  Q  
  R  
  S  
  T  
  U  
  V  
2  W  
B  X  
X  Y  
k  Z  
  [  
  \  
  ]  
  ^  
  _  
  `  
  a  
  b  
  c  
-  d  
=  e  
K  f  
X  g  
f  h  
t  i  
  j  
  k  
  l  
  m  
  n  
  o  
  p  
  q  
  r  
  s  
  t  
  u  
,  v  
9  w  
G  x  
U  y  
`  z  
m  {  
z  |  
  }  
  ~  
    
    
    
    
    
    
    
    
,    
@    
Q    
b    
w    
    
    
    
    
    
    
    
    
&    
9    
H    
]    
p    
    
    
    
    
    
    
    
    
    
-    
D    
Q    
^    
k    
w    
    
    
    
    
    
    
    
    
    
+    
<    
M    
^    
o    
    
    
    
    
    
    
    
    
    
1    
F    
[    
p    
    
    
    
    
    
    
    
    
-    
B    
W    
l    
    
    
    
    
    
    
    
    
)    
>    
S    
h    
}    
    
    
    
    
    
    
    
%    
:    
O    
d    
y    
    
    
    
    
    
    
    
!    
6    
K    
`    
u    
    
    
    
    
    
    
    
    
2    
G    
\    
q    
     
    
    
    
    
    
    
    
    
/  	  
B  
  
W    
g    
x    
    
    
    
    
    
    
    
    
    
/    
A    
U    
i    
}    
    
    
    
    
     
  !  
  "  
  #  
   $  
3  %  
B  &  
N  '  
Z  (  
k  )  
w  *  
  +  
  ,  
  -  
  .  
  /  
  0  
  1  
  2  
  3  
  4  
  5  
*  6  
5  7  
C  8  
N  9  
c  :  
x  ;  
  <  
  =  
  >  
  ?  
  @  
  A  
  B  
  C  
  D  
  E  
)  F  
:  G  
M  H  
\  I  
l  J  
{  K  
  L  
  M  
  N  
  O  
  P  
  Q  
  R  
  S  
.  T  
A  U  
T  V  
g  W  
z  X  
  Y  
  Z  
  [  
  \  
  ]  
  ^  
  _  
  `  
&  a  
9  b  
L  c  
_  d  
s  e  
  f  
  g  
  h  
  i  
  j  
  k  
  l  
  m  
#  n  
7  o  
J  p  
_  q  
s  r  
  s  
  t  
  u  
  v  
  w  
  x  
  y  
	  z  
  {  
!  |  
.  }  
9  ~  
J    
U    
c    
x    
    
    
    
    
    
    
    
     
5    
J    
_    
t    
    
    
    
    
    
    
    
    
1    
F    
[    
p    
    
    
    
    
    
    
    
    
-    
B    
W    
l    
    
    
    
    
    
    
    
    
)    
>    
S    
h    
}    
    
    
    
    
    
    
    
%    
:    
O    
d    
y    
    
    
    
    
    
    
    
!    
6    
K    
`    
u    
    
    
    
    
    
               2     G     \     q                                          .    C    X    m                                     *    ?    T    i    ~                                &    ;    P    e    z                                     $    4    C    S    b  	  r  
                                               1    @    L    X    h    x                           !    "    #    $    %  .  &  @  '  P  (  a  )  r  *    +    ,    -    .    /    0    1    2     3    4    5  /  6  >  7  M  8  \  9  k  :  z  ;    <    =    >    ?    @    A    B    C    D    E  (  F  8  G  I  H  X  I  g  J  w  K    L    M    N    O    P    Q    R    S  	  T  	  U  	'  V  	3  W  	E  X  	T  Y  	d  Z  	s  [  	  \  	  ]  	  ^  	  _  	  `  	  a  	  b  	  c  
  d  
  e  
,  f  
<  g  
M  h  
]  i  
l  j  
}  k  
  l  
  m  
  n  
  o  
  p  
  q  
  r    s    t  0  u  B  v  T  w  e  x  x  y    z    {    |    }    ~          	        5    H    Z    m                                        &    8    K    b    u                                         /    >    O    ^    m    |                                            #    7    J    \    k    {                                    
        )    9    I    X    d    p    }                                                    !    /    <    I    U    d    s                                                         .    ;    I    V    k                                    (    =    R    g    |                                $    9    E     R    g    y                          	    
      -    @    S    g    z                                    0    C    U    h    z                   !    "    #    $    %  )  &  =  '  Q  (  f  )  y  *    +    ,    -    .    /    0    1    2  -  3  @  4  S  5  f  6  y  7    8    9    :    ;    <    =    >    ?  $  @  9  A  L  B  `  C  s  D    E    F    G    H    I    J    K  	  L    M  0  N  E  O  Z  P  n  Q    R    S    T    U    V    W    X    Y  '  Z  :  [  M  \  ^  ]  s  ^    _    `    a    b    c    d    e    f     g  5  h  I  i  _  j  s  k    l    m    n    o    p    q    r    s  %  t  7  u  J  v  \  w  o  x    y    z    {    |    }    ~          !    5    J    ^    s                                        2    H    \    q                                      !     5     F     W     h     {                                  !    !    !,    !A    !X    !m    !    !    !    !    !    !    !    "    ")    "@    "U    "h    "|    "    "    "    "    "    "    #    #    #0    #D    #Y    #n    #    #    #    #    #    #    #    $    $!    $3    $H    $\    $q    $    $    $    $    $    $    %    %    %-    %D    %Y    %p    %    %    %    %    %    %    &
    &    &/    &D    &X    &o    &    &    &    &    &    &    '
    '!    '6    'M    'c    'x    '    '    '    '    '    '    (	    (    (*    (=     (O    (b    (u    (    (    (    (    (    (  	  )  
  )    )4    )K    )b    )y    )    )    )    )    )    )    *    *    *.    *C    *Z    *q    *    *    *    *    *     *  !  +  "  +!  #  +6  $  +K  %  +`  &  +u  '  +  (  +  )  +  *  +  +  +  ,  +  -  ,  .  ,+  /  ,B  0  ,Y  1  ,h  2  ,w  3  ,  4  ,  5  ,  6  ,  7  ,  8  ,  9  -   :  -  ;  -.  <  -E  =  -\  >  -s  ?  -  @  -  A  -  B  -  C  -  D  -  E  .   F  .  G  .(  H  .=  I  .T  J  .k  K  .  L  .  M  .  N  .  O  .  P  .  Q  /  R  /  S  /*  T  /=  U  /P  V  /c  W  /x  X  /  Y  /  Z  /  [  /  \  /  ]  /  ^  0  _  0)  `  0A  a  0V  b  0k  c  0  d  0  e  0  f  0  g  0  h  0  i  1  j  1  k  15  l  1M  m  1e  n  1}  o  1  p  1  q  1  r  1  s  1  t  1  u  2  v  2!  w  20  x  2?  y  2R  z  2e  {  2x  |  2  }  2  ~  2    2    2    2    3	    3    33    3H    3]    3s    3    3    3    3    3    4    4    41    4I    4^    4s    4    4    4    4    4    4    5    5#    5;    5S    5k    5    5    5    5    5    5    6    6&    6=    6U    6m    6    6    6    6    6    7	    7#    7=    7P    7b    7w    7    7    7    7    7    7    8    8    81    8D    8O    8Z    8e    8q    8~    8    8    8    8    8    8    9    9%    9<    9S    9f    9r    9~    9    9    9    9    9    9    :    :    :)    :<    :O    :f    :}    :    :    :    :    :    :    :    ;	    ;    ;3    ;F    ;Z    ;q    ;    ;    ;    ;    ;    ;    ;    <	    <    <5    <H    <_    <t    <    <    <    <    <    <    =    =    ='      =<     =F     =P     =Z     =d     =n     =x     =     =   	  =   
  =     =     =     =     =     =     =     =     =     =     >     >     >     >-     >:     >E     >P     >[     >f     >s     >     >      >   !  >   "  >   #  >   $  >   %  >   &  >   '  ?   (  ?   )  ?:   *  ?d   +  ?   ,  ?   -  ?   .  @   /  @6   0  @@   1  @T   2  @h   3  @t   4  @   5  @   6  @   7  @   8  @   9  @   :  @   ;  @   <  @   =  A    >  A   ?  A   @  A)   A  A5   B  AD   C  AU   D  A`   E  Ar   F  A   G  A   H  A   I  A   J  A   K  A   L  A   M  A   N  B   O  B   P  B$   Q  B5   R  BM   S  B_   T  Bk   U  Bw   V  B   W  B   X  B   Y  B   Z  B   [  B   \  B   ]  B   ^  B   _  C   e  C   f  C&   g  C;   h  CP   i  Ce   j  Cz   k  C   l  C   m  C   n  D"   o  DL   p  Dv   q  D   r  D   s  D   t  D   u  D   v  D   w  D   x  D   y  E   z  E   {  E"   |  E-   }  E9   ~  EE     EQ     E_     En     E{     E     E     E     E     E     E     E     E     F     F     F     F$     F0     FE     FT     Fc     Fr     F     F     F     F     F     F     F     G     G#     G8     GM     Gb     Gw     G     G     G     G     G     G     G     H     H      H3     HC     HW     Hi     H|     H     H     H     H     H     H     I
     I     I4     II     I^     Is     I     I     I     I     I     I     J     J     J0     JE     JZ     Jo     J     J     J     J     J     J     K     K     K,     KA     KN     K[     Kg     Kr     K     K     K     K     K     K     K     K     K     L     L.     LU     L|     L     L     L     L     L     M     M/     M:     MF     MW     Mi     Mv     M     M     M     M     M     M     M     N     N     N+     N@     NU     Nj     N     N     N     N     N  !   N  !  N  !  O  !  O  !  O3  !  OE  !  OW  !  Oi  !  O{  !	  O  !
  O  !  O  !  O  !  O  !  O  !  P   !  P  !  P%  !  P8  !  PM  !  P`  !  Pt  !  P  !  P  !  P  !  P  !  P  !  P  !  P  !  Q  !  Q#  !  Q5  !   QI  !!  QX  !"  Qg  !#  Qv  !$  Q  !%  Q  !&  Q  !'  Q  !(  Q  !)  Q  !*  Q  !+  R  !,  R  !-  R/  !.  RB  !/  RR  !0  Ra  !1  Rs  !2  R  !3  R  !4  R  !5  R  !6  R  !7  R  !8  R  !9  S  !:  S  !;  S'  !<  SC  !=  SX  !>  Sp  !?  S  !@  S  !A  S  !B  S  !C  S  !D  S  !E  S  !F  T  !G  T)  !H  T9  !I  TJ  !J  T^  !K  Tq  !L  T  !M  T  !N  T  !O  T  !P  T  !Q  T  !R  U   !S  U  !T  U'  !U  U9  !V  UK  !W  U]  !X  Uo  !Y  U  !Z  U  ![  U  !\  U  !]  U  !^  U  !_  U  !`  V   !a  V  !b  V   !c  V3  !d  VF  !e  VY  !f  Vm  !g  V  !h  V  !i  V  !j  V  !k  V  !l  V  !m  V  !n  W  !o  W  !p  W*  !q  W8  !r  WJ  !s  W]  !t  Wp  !u  W  !v  W  !w  W  !x  W  !y  W  !z  W  !{  W  !|  X  !}  X  !~  X#  !  X6  !  XG  !  XY  !  Xk  !  X  !  X  !  X  !  X  !  X  !  X  !  X  !  Y  !  Y&  !  Y;  !  YP  !  Ye  !  Yz  !  Y  !  Y  !  Y  !  Y  !  Y  !  Y  !  Y  !  Y  !  Z  !  Z  !  Z"  !  Z4  !  ZF  !  ZU  !  Zd  !  Zs  !  Z  !  Z  !  Z  !  Z  !  Z  !  Z  !  Z  !  Z  !  Z  !  [	  !  [  !  [)  !  [9  !  [I  !  [X  !  [k  !  [}  !  [  !  [  !  [  !  [  !  [  !  [  !  [  !  [  !  \  !  \   !  \/  !  \>  !  \K  !  \X  !  \e  !  \r  !  \  !  \  !  \  !  \  !  \  !  \  !  \  !  \  !  \  !  ]  !  ]"  !  ]2  !  ]B  !  ]T  !  ]g  !  ]y  !  ]  !  ]  !  ]  !  ]  !  ]  !  ]  !  ]  !  ]  !  ]  !  ^  !  ^  !  ^-  !  ^<  !  ^K  !  ^\  !  ^m  !  ^|  !  ^  !  ^  !  ^  !  ^  !  ^  !  ^  !  ^  !  ^  !  _  !  _&  !  _;  !  _P  !  _e  !  _|  !  _  !  _  !  _  !  _  !  _  !  _  !  `   !  `  !  `(  !  `7  !  `H  !  `Z  !  `l  !  `  !  `  !  `  "   `  "  `  "  `  "  `  "  `  "  a	  "  a  "  a-  "  a@  "	  aP  "
  ab  "  ap  "  a  "  a  "  a  "  a  "  a  "  a  "  a  "  a  "  b  "  b  "  b-  "  b?  "  bN  "  bZ  "  bf  "  b|  "  b  "  b  "  b  "  b  "   b  "!  b  ""  b  "#  c  "$  c  "%  c   "&  c/  "'  cA  "(  cR  ")  cc  "*  cs  "+  c  ",  c  "-  c  ".  c  "/  c  "0  c  "1  d  "2  d  "3  d1  "4  dF  "5  dV  "6  df  "7  dr  "8  d  "9  d  ":  d  ";  d  "<  d  "=  d  ">  d  "?  d  "@  d  "A  d  "B  e  "C  e  "D  e+  "E  e<  "F  eL  "G  e]  "H  ep  "I  e~  "J  e  "K  e  "L  e  "M  e  "N  e  "O  e  "P  e  "Q  e  "R  f  "S  f   "T  f2  "U  f?  "V  fL  "W  fY  "X  fj  "Y  fz  "Z  f  "[  f  "\  f  "]  f  "^  f  "_  f  "`  f  "a  g  "b  g  "c  g&  "d  g6  "e  gF  "f  gV  "g  gh  "h  gz  "i  g  "j  g  "k  g  "l  g  "m  g  "n  g  "o  g  "p  h	  "q  h  "r  h/  "s  h?  "t  hO  "u  hb  "v  hu  "w  h  "x  h  "y  h  "z  h  "{  h  "|  h  "}  h  "~  i  "  i  "  i+  "  i<  "  iM  "  i\  "  ik  "  i}  "  i  "  i  "  i  "  i  "  i  "  i  "  i  "  j	  "  j  "  j-  "  j<  "  jK  "  j[  "  jk  "  jz  "  j  "  j  "  j  "  j  "  j  "  j  "  j  "  k   "  k  "  k"  "  k3  "  kD  "  kU  "  kf  "  kv  "  k  "  k  "  k  "  k  "  k  "  k  "  k  "  l  "  l  "  l(  "  l;  "  lN  "  la  "  lr  "  l  "  l  "  l  "  l  "  l  "  l  "  l  "  l  "  l  "  m  "  m  "  m&  "  m5  "  mE  "  mT  "  mg  "  mz  "  m  "  m  "  m  "  m  "  m  "  m  "  m  "  m  "  m  "  n  "  n  "  n'  "  n8  "  nI  "  nY  "  ni  "  ny  "  n  "  n  "  n  "  n  "  n  "  n  "  n  "  n  "  o  "  o"  "  o2  "  oD  "  oV  "  oi  "  o|  "  o  "  o  "  o  "  o  "  o  "  o  "  o  "  p  "  p   "  p1  "  pC  "  pU  "  pb  "  pn  "  p  "  p  "  p  "  p  "  p  "  p  "  p  "  q  "  q&  "  q;  "  qR  "  qg  "  qw  "  q  "  q  #   q  #  q  #  q  #  q  #  q  #  q  #  r	  #  r  #  r'  #	  r7  #
  rG  #  rW  #  rg  #  rs  #  r  #  r  #  r  #  r  #  r  #  r  #  r  #  r  #  r  #  s  #  s  #  s)  #  s6  #  sN  #  s`  #  sl  #  sx  #  s  #   s  #!  s  #"  s  ##  s  #$  s  #%  s  #&  s  #'  s  #(  t   #)  t  #*  t  #+  t0  #,  t?  #-  tR  #.  tb  #/  tr  #0  t  #1  t  #2  t  #3  t  #4  t  #5  t  #6  t  #7  t  #8  u  #9  u  #:  u+  #;  u?  #<  uS  #=  ug  #>  u{  #?  u  #@  u  #A  u  #B  u  #C  u  #D  u  #E  v  #F  v  #G  v,  #H  v@  #I  vT  #J  ve  #K  vx  #L  v  #M  v  #N  v  #O  v  #P  v  #Q  v  #R  v  #S  w  #T  w%  #U  w:  #V  wM  #W  wa  #X  wv  #Y  w  #Z  w  #[  w  #\  w  #]  w  #^  w  #_  w  #`  x  #a  x  #b  x.  #c  x?  #d  xN  #e  x_  #f  xu  #g  x  #h  x  #i  x  #j  x  #k  x  #l  x  #m  x  #n  y  #o  y  #p  y+  #q  y@  #r  yP  #s  y`  #t  yn  #u  y  #v  y  #w  y  #x  y  #y  y  #z  y  #{  y  #|  z  #}  z&  #~  z7  #  zN  #  z`  #  zt  #  z  #  z  #  z  #  z  #  z  #  {  #  {%  #  {C  #  {c  #  {  #  {  #  {  #  {  #  {  #  |  #  |  #  |0  #  |E  #  |T  #  |n  #  |  #  |  #  |  #  |  #  |  #  }  #  }"  #  }0  #  }D  #  }X  #  }f  #  }z  #  }  #  }  #  }  #  }  #  }  #  }  #  }  #  ~
  #  ~  #  ~*  #  ~<  #  ~N  #  ~`  #  ~l  #  ~w  #  ~  #  ~  #  ~  #  ~  #  ~  #    #    #  +  #  7  #  C  #  N  #  Y  #  d  #  o  #    #    #    #    #    #    #  #  #  ?  #  ]  #  {  #    #    #    #    #    #    #  D  #  U  #  a  #  n  #  }  #    #    #    #    #    #    #    #    #  3  #  E  #  W  #  k  #    #    #    #    #    #    #    #  	  #  ,  #  A  #  V  #  k  #    #    #    #    #    #    #    #    #  (  #  =  #  R  #  g  #  |  #    #    #    #    #    #    #    $   $  $  5  $  H  $  [  $  n  $    $    $    $    $	    $
    $    $    $    $     $  1  $  B  $  T  $  g  $  z  $    $    $    $    $    $    $    $    $  #  $  3  $  C  $  S  $   c  $!  s  $"    $#    $$    $%    $&    $'    $(    $)    $*    $+  -  $,  B  $-  W  $.  l  $/    $0    $1    $2    $3    $4    $5    $6    $7  )  $8  >  $9  S  $:  h  $;  }  $<    $=    $>    $?    $@    $A    $B    $C    $D  *  $E  ;  $F  I  $G  Y  $H  m  $I    $J    $K    $L    $M    $N    $O    $P    $Q  $  $R  9  $S  N  $T  c  $U  x  $V    $W    $X    $Y    $Z    $[    $\    $]     $^  5  $_  J  $`  _  $a    $b    $c    $d    $e  "  $f  I  $g  p  $h    $i    $j    $k    $l  +  $m  N  $n  q  $o    $p    $q    $r    $s     $t  C  $u  h  $v    $w    $x    $y    $z  !  ${  F  $|  k  $}    $~    $    $    $  $  $  I  $  n  $    $    $    $    $  '  $  <  $  V  $  p  $    $    $    $    $    $    $  2  $  Q  $  t  $    $    $    $    $  !  $  D  $  g  $    $    $    $    $    $  7  $  Z  $  }  $    $    $    $  	  $  ,  $  O  $  r  $    $    $    $    $  !  $  D  $  g  $    $    $    $    $    $  =  $  d  $    $    $    $     $  '  $  N  $  u  $    $    $    $    $  8  $  _  $    $    $    $    $  "  $  I  $  p  $    $    $    $    $  /  $  R  $  u  $    $    $    $    $  $  $  G  $  j  $    $    $    $    $    $  <  $  _  $    $    $    $    $    $  1  $  T  $  w  $    $    $    $    $  %  $  F  $  g  $    $    $    $    $    $  4  $  \  $    $    $    $    $  $  $  L  $  t  $    %     %    %    %    %    %    %    %    %    %	  *  %
  6  %  B  %  P  %  _  %  n  %  ~  %    %    %    %    %    %    %    %    %  
  %    %  )  %  8  %  H  %  Z  %  l  %    %     %!    %"    %#    %$    %%    %&    %'     %(  4  %)  H  %*  \  %+  p  %,    %-    %.    %/    %0    %1    %2    %3  	  %4    %5  .  %6  A  %7  T  %8  g  %9  y  %:    %;    %<    %=    %>    %?     %@    %A  4  %B  N  %C  h  %D    %E    %F    %G    %H    %I    %J    %K  8  %L  R  %M  ]  %N  i  %O  u  %P    %Q    %R    %S    %T    %U    %V    %W    %X    %Y    %Z  "  %[  2  %\  B  %]  R  %^  c  %_  u  %`    %a    %b    %c    %d    %e    %f    %g    %h  +  %i  =  %j  P  %k  j  %l    %m    %n    %o    %p    %q    %r    %s    %t  (  %u  3  %v  >  %w  I  %x  T  %y  _  %z  k  %{  v  %|    %}    %~    %    %    %    %    %    %    %     %  >  %  `  %    %    %    %    %    %  0  %  F  %  X  %  f  %    %    %    %    %  
  %    %  *  %  <  %  N  %  x  %    %    %    %    %  2  %  \  %  m  %  ~  %    %    %    %    %    %    %    %    %    %    %  ,  %  :  %  H  %  V  %  c  %  p  %    %    %    %    %    %    %    %    %    %    %  	  %    %  %  %  2  %  A  %  P  %  \  %  h  %  v  %    %    %    %    %    %    %    %    %    %    %  /  %  @  %  Q  %  b  %  s  %    %    %    %    %    %    %    %  	  %    %  !  %  -  %  9  %  G  %  U  %  d  %  s  %    %    %    %    %    %    %    %    %    %    %    %  -  %  <  %  K  %  Z  %  i  %  {  %    %    %    %    %    %    %    %    %    %    &   #  &  8  &  F  &  W  &    &    &    &    &    &	    &
    &    &    &    &  (  &  8  &  I  &  Z  &  k  &  |  &    &    &    &    &    &    &  =  &  K  &  Y  &  g  &  u  &    &     &!    &"    &#    &$    &%    &&  +  &'  ;  &(  M  &)  ]  &*  n  &+    &,    &-    &.    &/    &0    &1    &2  -  &3  H  &4  c  &5  ~  &6    &7    &8    &9    &:    &;    &<    &=  +  &>  =  &?  O  &@  `  &A  p  &B    &C    &D    &E    &F    &G    &H    &I    &J    &K  &  &L  7  &M  J  &N  ]  &O  m  &P    &Q    &R    &S    &T    &U    &V    &W    &X    &Y  %  &Z  5  &[  K  &\  _  &]  p  &^    &_    &`    &a    &b    &c    &d    &e    &f    &g  %  &h  8  &i  M  &j  \  &k  n  &l    &m    &n    &o    &p    &q    &r    &s  "  &t  J  &u  r  &v    &w    &x    &y    &z  :  &{  b  &|    &}    &~    &    &    &  *  &  ?  &  T  &  i  &  ~  &    &    &    &    &    &    &  '  &  ;  &  O  &  c  &  w  &    &    &    &    &    &    &  ;  &  P  &  l  &    &  ¯  &    &    &  !  &  6  &  K  &  l  &    &  Ö  &  ð  &    &    &    &    &  2  &  I  &  Z  &  k  &  y  &  Č  &  Ġ  &  ĳ  &    &    &    &    &  !  &  4  &  P  &  c  &  u  &  ņ  &  ŗ  &  Ũ  &  Ź  &    &    &    &    &  ,  &  J  &  m  &  Ƃ  &  Ɨ  &  Ƭ  &    &    &    &     &    &  *  &  ?  &  T  &  i  &  ~  &  Ǔ  &  Ǩ  &  ǽ  &    &    &    &    &  &  &  ;  &  P  &  e  &  z  &  ȏ  &  Ȥ  &  ȹ  &    &    &    &    &  "  &  7  &  L  &  a  &  v  &  ɋ  &  ɠ  &  ɵ  &    &    &    &  	  &    &  3  &  H  &  ]  &  r  &  ʇ  &  ʜ  &  ʱ  &    &    &    &    &    &  /  &  D  '   Y  '  n  '  ˍ  '  ˫  '    '    '    '  %  '  L  '	  q  '
  ̈  '  ̝  '  ̲  '    '    '    '  0  '  L  '  d  '  |  '  ͗  '  Ͷ  '    '    '    '  4  '  [  '  ΂  '  Ω  '    '    '  
  '   +  '!  R  '"  y  '#  Ϡ  '$    '%    '&    ''  =  '(  d  ')  y  '*  К  '+    ',    '-    '.  $  '/  E  '0  h  '1  ь  '2  ѯ  '3    '4    '5     '6  G  '7  g  '8  Ҏ  '9  ҵ  ':    ';    '<  *  '=  Q  '>  x  '?  ӟ  '@    'A    'B    'C  7  'D  ^  'E  ԁ  'F  Ԥ  'G    'H    'I    'J  <  'K  c  'L  Պ  'M  ՟  'N  տ  'O    'P    'Q    'R  (  'S  D  'T  Y  'U  n  'V  փ  'W  ֣  'X  ָ  'Y    'Z    '[    '\    ']    '^  4  '_  Q  '`  f  'a  {  'b  מ  'c  ׹  'd    'e    'f    'g  =  'h  b  'i  r  'j  ؂  'k  ؔ  'l  ئ  'm  ظ  'n    'o    'p    'q    'r    's  )  't  8  'u  K  'v  ^  'w  م  'x  ٬  'y    'z    '{  !  '|  H  '}  o  '~  ږ  '  ڽ  '    '    '  2  '  Y  '  ۀ  '  ۧ  '    '    '    '  C  '  j  '  ܑ  '  ܸ  '    '    '  -  '  T  '  {  '  ݢ  '    '    '    '  (  '  =  '  R  '  l  '  އ  '  ޡ  '  ޼  '    '    '  !  '  <  '  W  '  r  '  ߗ  '  ߼  '    '    '    '  )  '  D  '  ^  '  x  '    '    '    '     '  "  '  7  '  Y  '  ~  '    '    '    '    '    '    '  ,  '  K  '  f  '  ~  '    '    '    '    '    '    '    '  )  '  :  '  K  '  \  '  t  '    '    '    '    '    '    '    '  "  '  3  '  I  '  X  '  g  '    '    '    '    '    '    '    '  !  '  1  '  A  '  P  '  d  '    '    '    '    '    '  #  '  6  '  F  '  V  '  i  '  |  '    '    '    '    '    '    '  	  '  "  '  :  '  N  '  b  '  u  '    '    '    '    '    '    '    (   $  (  5  (  F  (  W  (  h  (  y  (    (    (    (	    (
    (    (    (    (    (  #  (  4  (  E  (  V  (  g  (  x  (    (    (    (    (    (    (    (     (    (  "  (  3  (   D  (!  U  ("  f  (#  w  ($    (%    (&    ('    ((    ()    (*    (+    (,    (-  !  (.  2  (/  C  (0  T  (1  e  (2  v  (3    (4    (5    (6    (7    (8    (9    (:    (;    (<     (=  1  (>  B  (?  S  (@  d  (A  u  (B    (C    (D    (E    (F    (G    (H    (I    (J    (K    (L  0  (M  A  (N  R  (O  c  (P  t  (Q    (R    (S    (T    (U    (V    (W    (X    (Y    (Z    ([  /  (\  @  (]  Q  (^  b  (_  s  (`    (a    (b    (c    (d    (e    (f    (g    (h    (i    (j  .  (k  ?  (l  P  (m  a  (n  r  (o    (p    (q    (r    (s    (t    (u    (v    (w    (x    (y  -  (z  >  ({  O  (|  `  (}  q  (~    (    (    (    (    (    (    (    (  
  (    (  ,  (  =  (  N  (  _  (  p  (    (    (    (    (    (    (    (    (  	  (    (  +  (  <  (  M  (  ^  (  o  (    (    (    (    (    (    (    (    (    (    (  *  (  ;  (  L  (  ]  (  n  (    (    (    (    (    (    (    (    (    (    (  )  (  :  (  K  (  \  (  m  (  ~  (    (    (    (    (    (    (    (    (    (  (  (  9  (  J  (  [  (  l  (  }  (    (    (    (    (    (    (    (    (    (  '  (  8  (  I  (  Z  (  k  (  |  (    (    (    (    (    (    (    (    (    (  &  (  7  (  H  (  Y  (  j  (  {  (    (    (    (    (    (    (    (    (    (  %  (  6  (  G  (  X  (  i  (  z  (    (    (    (    (    (    (    (    (    )   $  )  8  )  L  )  d  )  |  )    )    )    )    )	    )
    )    )  $  )  8  )  L  )  `  )  t  )    )    )    )    )    )    )    )    )  $  )  7  )  J  )  ]  )  p  )    )    )     )!    )"    )#    )$    )%  :  )&  X  )'  v  )(    ))    )*    )+    ),    )-  2  ).  S  )/  t  )0    )1    )2    )3    )4    )5  !  )6  7  )7  M  )8  c  )9  s  ):    );    )<    )=    )>    )?    )@    )A    )B  *  )C  F  )D  b  )E  ~  )F    )G    )H    )I    )J    )K   	  )L     )M   .  )N   @  )O   P  )P   _  )Q   o  )R   ~  )S     )T     )U     )V     )W     )X     )Y    )Z    )[  )  )\  <  )]  M  )^  _  )_  r  )`    )a    )b    )c    )d    )e    )f  
  )g  !  )h  8  )i  O  )j  f  )k  y  )l    )m    )n    )o    )p    )q    )r  	  )s  !  )t  9  )u  Q  )v  n  )w    )x    )y    )z    ){    )|    )}    )~  '  )  :  )  M  )  ^  )  j  )  y  )    )    )    )    )    )    )    )    )    )    )  /  )  ?  )  O  )  _  )  q  )    )    )    )    )    )    )    )    )  ,  )  H  )  a  )  z  )    )    )    )    )    )    )  3  )  Q  )  ^  )  k  )    )    )    )    )    )    )  =  )  [  )  p  )    )    )    )    )    )  	   )  	  )  	*  )  	?  )  	T  )  	i  )  	  )  	  )  	  )  	  )  	  )  
  )  
  )  
6  )  
P  )  
j  )  
  )  
  )  
  )  
  )  
  )    )  ;  )  \  )  x  )    )    )    )    )    )    )    )    )    )  ,  )  ;  )  Q  )  g  )  w  )    )    )    )    )    )    )    )  6  )  T  )  l  )    )    )    )    )    )    )    )  #  )  7  )  K  )  _  )  s  )    )    )    )    )    )    )    )    )    )  .  )  B  )  `  *   s  *    *    *    *    *    *    *    *  9  *	  W  *
  q  *    *    *    *    *    *    *     *  ?  *  W  *  o  *    *    *    *    *    *    *    *  3  *  K  *  _  *  o  *     *!    *"    *#    *$    *%    *&    *'    *(    *)    **  %  *+  1  *,  ?  *-  M  *.  _  */  q  *0    *1    *2    *3    *4    *5    *6    *7    *8  %  *9  :  *:  Z  *;  z  *<    *=    *>    *?    *@    *A    *B    *C    *D  1  *E  H  *F  _  *G  n  *H  }  *I    *J    *K    *L    *M    *N    *O    *P    *Q  ,  *R  C  *S  Z  *T  t  *U    *V    *W    *X    *Y    *Z    *[    *\  9  *]  S  *^  m  *_    *`    *a    *b    *c    *d    *e    *f  ,  *g  ;  *h  L  *i  a  *j  v  *k    *l    *m    *n    *o    *p    *q    *r    *s    *t    *u  +  *v  :  *w  J  *x  Z  *y  o  *z    *{    *|    *}    *~    *    *    *    *  /  *  C  *  X  *  m  *    *    *    *    *    *    *    *  #  *  :  *  Q  *  f  *  {  *    *    *    *    *    *    *    *    *  -  *  A  *  W  *  m  *    *    *    *    *    *    *    *    *  0  *  B  *  T  *  j  *    *    *    *    *    *    *    *    *  3  *  L  *  e  *  ~  *    *    *    *    *    *     *  :  *  T  *  i  *  ~  *    *    *    *    *    *    *    *     *   *  *   D  *   V  *   h  *   {  *     *     *     *     *     *  !  *  !  *  !+  *  !>  *  !Q  *  !d  *  !w  *  !  *  !  *  !  *  !  *  !  *  !  *  "  *  "  *  "+  *  "B  *  "X  *  "p  *  "  *  "  *  "  *  "  *  "  *  "  *  #  *  #  *  #*  *  #;  *  #L  *  #]  *  #n  *  #  *  #  *  #  *  #  *  #  *  #  *  #  *  $  *  $&  *  $<  *  $T  *  $g  *  ${  *  $  +   $  +  $  +  $  +  $  +  $  +  %  +  %+  +  %?  +  %S  +	  %m  +
  %  +  %  +  %  +  %  +  %  +  %  +  &  +  &&  +  &;  +  &R  +  &i  +  &  +  &  +  &  +  &  +  &  +  &  +  '  +  '0  +  'S  +  '_  +  'k  +   '  +!  '  +"  '  +#  '  +$  '  +%  (  +&  (#  +'  (4  +(  (H  +)  (\  +*  (j  ++  (y  +,  (  +-  (  +.  (  +/  (  +0  (  +1  (  +2  )  +3  )'  +4  ):  +5  )M  +6  )`  +7  )s  +8  )  +9  )  +:  )  +;  )  +<  )  +=  )  +>  )  +?  *  +@  *  +A  *5  +B  *L  +C  *h  +D  *  +E  *  +F  *  +G  *  +H  *  +I  +  +J  +(  +K  +D  +L  +[  +M  +r  +N  +  +O  +  +P  +  +Q  +  +R  +  +S  ,  +T  ,  +U  ,7  +V  ,L  +W  ,a  +X  ,v  +Y  ,  +Z  ,  +[  ,  +\  ,  +]  ,  +^  ,  +_  -	  +`  -  +a  -3  +b  -H  +c  -]  +d  -r  +e  -  +f  -  +g  -  +h  -  +i  -  +j  -  +k  .  +l  .  +m  ./  +n  .D  +o  .Y  +p  .n  +q  .  +r  .  +s  .  +t  .  +u  .  +v  .  +w  /  +x  /  +y  /+  +z  /@  +{  /U  +|  /j  +}  /  +~  /  +  /  +  /  +  /  +  /  +  /  +  0  +  0'  +  0<  +  0Q  +  0f  +  0{  +  0  +  0  +  0  +  0  +  0  +  0  +  1  +  1#  +  18  +  1M  +  1b  +  1w  +  1  +  1  +  1  +  1  +  1  +  1  +  2
  +  2  +  24  +  2I  +  2^  +  2s  +  2  +  2  +  2  +  2  +  2  +  2  +  3  +  3  +  30  +  3E  +  3Z  +  3o  +  3  +  3  +  3  +  3  +  3  +  3  +  4  +  4  +  4,  +  4A  +  4V  +  4k  +  4  +  4  +  4  +  4  +  4  +  4  +  4  +  5  +  5(  +  5=  +  5R  +  5g  +  5|  +  5  +  5  +  5  +  5  +  5  +  5  +  6  +  6$  +  69  +  6N  +  6c  +  6x  +  6  +  6  +  6  +  6  +  6  +  6  +  7  +  7   +  75  +  7J  +  7_  +  7t  +  7  +  7  +  7  +  7  +  7  +  7  +  8  +  8  +  81  +  8F  +  8[  +  8p  +  8  +  8  +  8  +  8  +  8  +  8  +  9  +  9  +  9-  +  9B  +  9W  +  9l  +  9  +  9  +  9  +  9  +  9  +  9  +  9  +  :  +  :)  ,   :>  ,  :O  ,  :b  ,  :u  ,  :  ,  :  ,  :  ,  :  ,  :  ,	  :  ,
  :  ,  ;	  ,  ;  ,  ;/  ,  ;>  ,  ;Q  ,  ;i  ,  ;|  ,  ;  ,  ;  ,  ;  ,  ;  ,  ;  ,  ;  ,  <  ,  <  ,  <'  ,  <:  ,  <M  ,  <a  ,  <t  ,  <  ,   <  ,!  <  ,"  <  ,#  <  ,$  <  ,%  =   ,&  =  ,'  =&  ,(  =?  ,)  =X  ,*  =t  ,+  =  ,,  =  ,-  =  ,.  =  ,/  =  ,0  =  ,1  =  ,2  >  ,3  >  ,4  >#  ,5  >4  ,6  >C  ,7  >S  ,8  >d  ,9  >u  ,:  >  ,;  >  ,<  >  ,=  >  ,>  >  ,?  >  ,@  >  ,A  >  ,B  ?  ,C  ?  ,D  ?*  ,E  ?;  ,F  ?L  ,G  ?]  ,H  ?p  ,I  ?  ,J  ?  ,K  ?  ,L  ?  ,M  ?  ,N  ?  ,O  ?  ,P  ?  ,Q  @  ,R  @  ,S  @,  ,T  @;  ,U  @K  ,V  @[  ,W  @l  ,X  @  ,Y  @  ,Z  @  ,[  @  ,\  @  ,]  @  ,^  @  ,_  @  ,`  A  ,a  A%  ,b  A6  ,c  AI  ,d  A[  ,e  An  ,f  A  ,g  A  ,h  A  ,i  A  ,j  A  ,k  A  ,l  A  ,m  B
  ,n  B  ,o  B/  ,p  BA  ,q  BV  ,r  Bh  ,s  B{  ,t  B  ,u  B  ,v  B  ,w  B  ,x  B  ,y  B  ,z  B  ,{  C  ,|  C  ,}  C"  ,~  C0  ,  CE  ,  CZ  ,  Cn  ,  C  ,  C  ,  C  ,  C  ,  C  ,  C  ,  C  ,  C  ,  D  ,  D  ,  D-  ,  DB  ,  DU  ,  Dg  ,  Dw  ,  D  ,  D  ,  D  ,  D  ,  D  ,  D  ,  D  ,  D  ,  E  ,  E!  ,  E4  ,  EC  ,  EY  ,  El  ,  E  ,  E  ,  E  ,  E  ,  E  ,  E  ,  E  ,  E  ,  F  ,  F  ,  F3  ,  FE  ,  F\  ,  Fq  ,  F  ,  F  ,  F  ,  F  ,  F  ,  F  ,  F  ,  F  ,  G  ,  G  ,  G0  ,  G@  ,  GQ  ,  G_  ,  Gk  ,  Gw  ,  G  ,  G  ,  G  ,  G  ,  G  ,  G  ,  H  ,  H  ,  H,  ,  H=  ,  HM  ,  H\  ,  Hp  ,  H  ,  H  ,  H  ,  H  ,  H  ,  H  ,  H  ,  I
  ,  I  ,  I+  ,  I;  ,  IL  ,  I\  ,  Iq  ,  I  ,  I  ,  I  ,  I  ,  I  ,  I  ,  I  ,  J  ,  J  ,  J,  ,  J>  ,  JS  ,  Jf  ,  Jx  ,  J  ,  J  ,  J  ,  J  ,  K  ,  K  ,  K/  ,  KD  ,  KY  ,  Kn  ,  K  ,  K  ,  K  ,  K  ,  K  ,  K  ,  L  ,  L  ,  L+  ,  L@  ,  LS  ,  Ld  ,  Lu  ,  L  ,  L  ,  L  -   L  -  L  -  L  -  L  -  L  -  M  -  M  -  M-  -  M?  -	  MN  -
  M^  -  Mp  -  M  -  M  -  M  -  M  -  M  -  M  -  M  -  M  -  N  -  N+  -  N>  -  NN  -  N^  -  No  -  N  -  N  -  N  -  N  -  N  -  N  -   N  -!  N  -"  O  -#  O  -$  O/  -%  O>  -&  OT  -'  Oi  -(  O~  -)  O  -*  O  -+  O  -,  O  --  O  -.  O  -/  P  -0  P&  -1  P2  -2  PC  -3  PT  -4  Pe  -5  Pv  -6  P  -7  P  -8  P  -9  P  -:  P  -;  P  -<  P  -=  P  ->  Q  -?  Q  -@  Q0  -A  QA  -B  QR  -C  Q`  -D  Qr  -E  Q  -F  Q  -G  Q  -H  Q  -I  Q  -J  Q  -K  Q  -L  Q  -M  R   -N  R  -O  R   -P  R,  -Q  R>  -R  RJ  -S  RX  -T  Rg  -U  Rx  -V  R  -W  R  -X  R  -Y  R  -Z  R  -[  R  -\  R  -]  R  -^  S  -_  S   -`  S1  -a  S@  -b  SO  -c  S\  -d  Sp  -e  S~  -f  S  -g  S  -h  S  -i  S  -j  S  -k  S  -l  T  -m  T%  -n  T:  -o  TO  -p  T[  -q  Tp  -r  T  -s  T  -t  T  -u  T  -v  T  -w  T  -x  U  -y  U  -z  U-  -{  UB  -|  UW  -}  Ul  -~  U  -  U  -  U  -  U  -  U  -  V  -  V!  -  V<  -  VR  -  Vm  -  V  -  V  -  V  -  V  -  V  -  W  -  W'  -  WC  -  W^  -  W|  -  W  -  W  -  W  -  W  -  X  -  X8  -  XM  -  Xb  -  Xw  -  X  -  X  -  X  -  X  -  X  -  X  -  Y  -  Y.  -  YN  -  Yi  -  Y  -  Y  -  Y  -  Y  -  Y  -  Z  -  Z  -  Z;  -  ZT  -  Zo  -  Z  -  Z  -  Z  -  Z  -  Z  -  [  -  [  -  [@  -  [X  -  [m  -  [  -  [  -  [  -  [  -  \  -  \#  -  \@  -  \U  -  \p  -  \  -  \  -  \  -  \  -  \  -  ]  -  ]+  -  ]B  -  ]Z  -  ]s  -  ]  -  ]  -  ]  -  ]  -  ]  -  ^  -  ^*  -  ^Q  -  ^p  -  ^  -  ^  -  ^  -  ^  -  _   -  _  -  _7  -  _P  -  _k  -  _  -  _  -  _  -  _  -  _  -  _  -  _  -  _  -  `   -  `  -  `  -  `)  -  `6  -  `B  -  `O  -  `\  -  `h  -  `v  -  `  -  `  -  `  -  `  -  `  -  `  -  `  -  `  -  `  -  `  -  a  -  a  -  a)  -  a7  -  aE  -  aS  .   ab  .  ao  .  a|  .  a  .  a  .  a  .  a  .  a  .  a  .	  a  .
  a  .  b   .  b  .  b  .  b*  .  bM  .  bY  .  bj  .  b|  .  b  .  b  .  b  .  b  .  b  .  b  .  c  .  c  .  c%  .  c6  .  cD  .  cR  .  cc  .   ct  .!  c  ."  c  .#  c  .$  c  .%  c  .&  c  .'  c  .(  c  .)  c  .*  d
  .+  d  .,  d(  .-  d7  ..  dI  ./  d[  .0  dg  .1  ds  .2  d  .3  d  .4  d  .5  d  .6  d  .7  d  .8  e  .9  e  .:  e0  .;  eE  .<  eZ  .=  eo  .>  e  .?  e  .@  e  .A  e  .B  e  .C  e  .D  f  .E  f  .F  f,  .G  fA  .H  fV  .I  fk  .J  f  .K  f  .L  f  .M  f  .N  f  .O  f  .P  f  .Q  g  .R  g(  .S  g=  .T  gR  .U  gg  .V  g|  .W  g  .X  g  .Y  g  .Z  g  .[  g  .\  g  .]  h  .^  h$  ._  h9  .`  hN  .a  hc  .b  hx  .c  h  .d  h  .e  h  .f  h  .g  h  .h  h  .i  i  .j  i   .k  i5  .l  iJ  .m  i_  .n  it  .o  i  .p  i  .q  i  .r  i  .s  i  .t  i  .u  j  .v  j  .w  j1  .x  jF  .y  j[  .z  jp  .{  j  .|  j  .}  j  .~  j  .  j  .  j  .  k  .  k&  .  k:  .  kU  .  kz  .  k  .  k  .  k  .  k  .  k  .  l  .  l-  .  l<  .  lL  .  lt  .  l  .  l  .  l  .  m  .  m(  .  mO  .  mk  .  m  .  m  .  m  .  m  .  m  .  n  .  n&  .  nA  .  ng  .  n  .  n  .  n  .  n  .  n  .  o  .  o&  .  o<  .  oR  .  oh  .  o  .  o  .  o  .  o  .  o  .  p  .  p0  .  pF  .  p[  .  pl  .  p  .  p  .  p  .  p  .  q
  .  q2  .  qS  .  q{  .  q  .  q  .  q  .  q  .  r  .  r  .  r>  .  rT  .  rj  .  r  .  r  .  r  .  r  .  s  .  s0  .  sW  .  s  .  s  .  s  .  s  .  t  .  t  .  tD  .  tk  .  t  .  t  .  t  .  t  .  u  .  u8  .  u^  .  u  .  u  .  u  .  u  .  v  .  v)  .  vA  .  vi  .  v  .  v  .  v  .  w  .  w)  .  wM  .  wu  .  w  .  w  .  w  .  x  .  x9  .  xa  .  x  .  x  .  x  .  y  .  y)  .  y>  .  yS  .  yh  .  y}  .  y  .  y  .  y  .  y  .  y  .  y  .  z  /   z%  /  z3  /  z?  /  zN  /  zi  /  z  /  z  /  z  /  z  /	  z  /
  {!  /  {H  /  {k  /  {  /  {  /  {  /  {  /  {  /  |  /  |9  /  |Z  /  |v  /  |  /  |  /  |  /  |  /  }	  /  }.  /  }Q  /  }v  /  }  /  }  /   }  /!  }  /"  ~$  /#  ~L  /$  ~g  /%  ~  /&  ~  /'  ~  /(  ~  /)    /*  C  /+  k  /,    /-    /.    //    /0    /1  7  /2  W  /3  |  /4    /5    /6    /7    /8  7  /9  V  /:  o  /;    /<    /=    />    /?    /@  ?  /A  e  /B    /C    /D    /E    /F  +  /G  P  /H  i  /I    /J    /K    /L    /M    /N  @  /O  f  /P    /Q    /R    /S    /T    /U  B  /V  f  /W    /X    /Y    /Z    /[  '  /\  L  /]  q  /^    /_    /`    /a    /b  /  /c  W  /d  ~  /e    /f    /g    /h    /i  -  /j  L  /k  t  /l    /m    /n    /o    /p  '  /q  N  /r  p  /s    /t    /u    /v    /w  5  /x  Y  /y  ~  /z    /{    /|    /}    /~  2  /  X  /    /    /    /    /    /  )  /  J  /  q  /    /    /    /    /  ,  /  T  /  w  /    /    /    /    /  2  /  V  /  |  /    /    /    /    /  1  /  Y  /    /    /    /    /    /  B  /  j  /    /    /    /    /  (  /  P  /  r  /    /    /    /    /  4  /  \  /    /    /    /    /    /  A  /  h  /    /    /    /    /  '  /  M  /  u  /    /    /    /    /  '  /  J  /  p  /    /    /    /  	  /  1  /  Y  /    /    /    /    /    /  8  /  `  /    /    /    /    /  %  /  :  /  O  /  d  /  y  /    /    /    /    /    /    /    /  !  /  6  /  K  /  `  /  u  /    /    /    /    /    /    /    /    /  2  /  G  /  n  /    /    /    /  
  /  1  /  X  /    /    /    /    /    /  0  /  E  /  Z  0   o  0  y  0    0    0    0    0    0    0    0	  -  0
  D  0  [  0  r  0    0    0    0    0    0    0    0    0  /  0  @  0  W  0  n  0    0    0    0    0    0    0    0     0!    0"  )  0#  ?  0$  \  0%  z  0&    0'    0(    0)    0*  	  0+    0,  !  0-  -  0.  9  0/  D  00  P  01  `  02  v  03    04    05    06    07    08  7  09  _  0:    0;    0<    0=    0>    0?  #  0@  9  0A  N  0B  f  0C    0D    0E    0F    0G    0H    0I  	  0J     0K  <  0L  X  0M  x  0N    0O    0P    0Q    0R    0S  "  0T  ;  0U  Y  0V  t  0W    0X    0Y    0Z    0[    0\     0]  @  0^  \  0_  z  0`    0a    0b    0c    0d    0e    0f  <  0g  X  0h  v  0i    0j    0k    0l    0m    0n    0o  7  0p  S  0q  s  0r    0s    0t    0u    0v    0w  $  0x  B  0y  U  0z  k  0{    0|    0}    0~    0    0    0  1  0  M  0  i  0    0    0    0    0    0    0    0  4  0  O  0  o  0    0    0    0    0    0    0  2  0  P  0  g  0    0    0    0    0    0    0    0    0    0    0     0  3  0  L  0  `  0  y  0    0    0    0    0    0    0    0  ;  0  W  0  v  0    0    0    0    0    0    0  9  0  X  0  p  0    0    0    0    0    0    0  1  0  L  0  m  0    0    0    0    0    0    0  .  0  D  0  ^  0  z  0    0    0    0    0    0    0  *  0  A  0  Z  0  s  0    0    0    0    0    0    0  '  0  F  0  e  0  |  0    0    0    0    0    0    0  !  0  5  0  F  0  ]  0  v  0    0    0    0    0    0     0    0  1  0  I  0  `  0    0    0    0    0    0    0  %  0  1  0  >  0  M  0  ^  1   y  1    1    1    1    1    1    1    1  4  1	  P  1
  o  1    1    1    1    1    1  %  1  =  1  P  1  p  1    1    1    1    1    1    1  9  1  V  1  t  1    1    1    1     1!    1"    1#  =  1$  Y  1%  z  1&    1'    1(    1)    1*    1+    1,  6  1-  Y  1.  z  1/    10    11    12    13    14  	  15    16  7  17  U  18  l  19    1:    1;    1<    1=    1>    1?  !  1@  =  1A  Y  1B  q  1C    1D    1E    1F    1G    1H    1I  $  1J  ?  1K  Z  1L  s  1M    1N    1O    1P    1Q    1R    1S    1T  3  1U  L  1V  b  1W  {  1X    1Y    1Z    1[    1\    1]  1  1^  R  1_  s  1`    1a    1b    1c    1e    1f  	  1g  #  1h  >  1i  X  1j  r  1k    1l    1m    1n    1o    1p    1q  .  1r  M  1s  k  1t    1u    1v    1w    1x    1y    1z  :  1{  U  1|  o  1}    1~  ¦  1    1    1    1    1  0  1  O  1  p  1  Î  1  é  1    1    1    1  3  1  V  1  w  1  ă  1  Ĝ  1  ı  1  ļ  1    1    1    1    1    1    1  ,  1  =  1  O  1  `  1  r  1  Ņ  1  Ř  1  ŭ  1  ſ  1    1    1    1  2  1  P  1  p  1  Ɛ  1  Ʈ  1    1    1    1    1  ;  1  Z  1  z  1  ǖ  1  ǹ  1    1    1    1    1  .  1  >  1  O  1  d  1  y  1  Ȏ  1  ȣ  1  ȸ  1    1    1    1    1    1  1  1  G  1  ^  1  w  1  ɐ  1  ɬ  1    1    1    1  "  1  5  1  O  1  j  1  ʇ  1  ʓ  1  ʟ  1  ʯ  1    1    1    1    1    1  /  1  C  1  S  1  f  1  }  1  ˞  1  ˼  1    1    1    1  2  1  K  1  `  1  u  1  ̊  1  ̟  1  ̴  1    1    1    1    1    1  2  1  G  1  X  1  i  1  z  1  ͉  1  ͚  1  ͫ  1  ͼ  1    1    1    1    1    1  &  1  <  1  L  2   _  2  ΂  2  Υ  2    2    2    2  1  2  T  2  w  2	  Ϛ  2
  Ͻ  2    2    2  &  2  I  2  l  2  Џ  2  в  2    2    2    2  >  2  a  2  ф  2  ѧ  2    2    2    2  3  2  X  2  }  2  Ҥ  2   ҹ  2!    2"    2#  (  2$  M  2%  r  2&  ӗ  2'  Ӽ  2(    2)    2*  +  2+  P  2,  u  2-  Ԛ  2.  Կ  2/    20  	  21  .  22  S  23  x  24  ՝  25    26    27    28  1  29  V  2:  {  2;  ֠  2<    2=    2>    2?  4  2@  Y  2A  ~  2B  ף  2C    2D    2E    2F    2G  ,  2H  A  2I  V  2J  k  2K  ؀  2L  ؕ  2M  ت  2N  ؿ  2O    2P    2Q    2R  *  2S  O  2T  t  2U  ٙ  2V  پ  2W    2X    2Y  -  2Z  R  2[  w  2\  ڜ  2]    2^    2_    2`  0  2a  S  2b  v  2c  ۙ  2d  ۼ  2e    2f    2g  %  2h  H  2i  k  2j  ܎  2k  ܱ  2l    2m    2n    2o  =  2p  `  2q  ݃  2r  ݦ  2s    2t    2u    2v  2  2w  U  2x  x  2y  ޛ  2z  ޾  2{    2|    2}  '  2~  J  2  k  2  ߎ  2  ߳  2    2    2  "  2  G  2  l  2    2    2    2    2    2  D  2  i  2    2    2    2    2    2  C  2  h  2    2    2    2    2  !  2  F  2  i  2    2    2    2    2     2  F  2  k  2    2    2    2    2     2  E  2  j  2    2    2    2    2    2  B  2  e  2    2    2    2    2    2  C  2  h  2    2    2    2    2  !  2  F  2  k  2    2    2    2    2    2  ;  2  \  2  }  2    2    2    2    2  *  2  O  2  m  2    2    2    2    2    2  '  2  H  2  i  2    2    2    2    2    2  /  2  P  2  q  2    2    2    2    2    2  7  2  X  2  y  2    2    2    2    2    2  ?  2  `  2    2    2    2    2    2  &  2  G  2  h  2    2    2    2    2    2  .  2  O  2  p  2    2    2    3     3    3  .  3  S  3  t  3    3    3    3    3	  !  3
  B  3  c  3    3    3    3    3    3  7  3  X  3  y  3    3    3    3    3  6  3  ]  3    3    3    3    3    3  ,  3   M  3!  t  3"    3#    3$    3%    3&  $  3'  E  3(  c  3)    3*    3+    3,    3-    3.  7  3/  ^  30    31    32    33    34    35  5  36  T  37  |  38    39    3:    3;    3<  +  3=  P  3>  u  3?    3@    3A    3B    3C     3D  A  3E  b  3F    3G    3H    3I    3J    3K  *  3L  O  3M  w  3N    3O    3P    3Q    3R    3S  ;  3T  \  3U    3V    3W    3X    3Y  
  3Z  0  3[  T  3\  x  3]    3^    3_    3`    3a  ,  3b  P  3c  v  3d    3e    3f    3g    3h  4  3i  Z  3j    3k    3l    3m    3n      3o   J  3p   t  3q     3r     3s     3t     3u    3v  ;  3w  W  3x  u  3y    3z    3{    3|    3}  (  3~  K  3  q  3    3    3    3     3    3  @  3  _  3  ~  3    3    3    3    3  !  3  F  3  b  3  }  3    3    3    3    3  &  3  G  3  j  3    3    3    3    3    3    3  /  3  F  3  d  3    3    3    3    3    3  8  3  W  3  |  3    3    3    3  	  3  *  3  K  3  j  3    3    3    3    3  	  3  	  3  	B  3  	`  3  	  3  	  3  	  3  	  3  
  3  
%  3  
J  3  
i  3  
  3  
  3  
  3  
  3    3  "  3  9  3  Y  3    3    3    3    3    3  #  3  ?  3  `  3  ~  3    3    3    3    3    3  ;  3  Z  3  |  3    3    3    3    3    3  .  3  O  3  r  3    3    3    3    3    3  <  3  ]  3  ~  3    3    3    3    3  )  3  L  3  o  3    3    3    3    3    3  C  3  h  3    3    3    3    3  !  3  F  3  k  3    3    3    4     4  &  4  M  4  u  4    4    4    4    4  0  4	  W  4
  z  4    4    4    4    4  <  4  a  4    4    4    4    4  %  4  I  4  p  4    4    4    4    4  5  4  ]  4    4    4     4!    4"    4#  G  4$  o  4%    4&    4'    4(    4)  4  4*  \  4+    4,    4-    4.    4/  $  40  L  41  r  42    43    44    45    46  7  47  _  48    49    4:    4;    4<  %  4=  M  4>  u  4?    4@    4A    4B    4C  9  4D  _  4E    4F    4G    4H    4I  %  4J  M  4K  u  4L    4M    4N    4O    4P  9  4Q  a  4R    4S    4T    4U    4V   '  4W   O  4X   w  4Y     4Z     4[     4\  !  4]  !?  4^  !g  4_  !  4`  !  4a  !  4b  "  4c  "-  4d  "U  4e  "}  4f  "  4g  "  4h  "  4i  #  4j  #C  4k  #k  4l  #  4m  #  4n  #  4o  $  4p  $3  4q  $[  4r  $  4s  $  4t  $  4u  $  4v  %#  4w  %K  4x  %s  4y  %  4z  %  4{  %  4|  &  4}  &;  4~  &c  4  &  4  &  4  &  4  &  4  ''  4  'O  4  'w  4  '  4  '  4  '  4  (  4  (?  4  (g  4  (  4  (  4  (  4  )  4  )-  4  )U  4  )}  4  )  4  )  4  )  4  *  4  *C  4  *k  4  *  4  *  4  *  4  +  4  +3  4  +[  4  +  4  +  4  +  4  +  4  ,#  4  ,K  4  ,s  4  ,  4  ,  4  ,  4  -  4  -;  4  -c  4  -  4  -  4  -  4  -  4  .'  4  .N  4  .v  4  .  4  .  4  .  4  /  4  /5  4  /X  4  /  4  /  4  /  4  /  4  0  4  0C  4  0j  4  0  4  0  4  0  4  0  4  1  4  1A  4  1h  4  1  4  1  4  1  4  2  4  2+  4  2S  4  2z  4  2  4  2  4  2  4  3  4  3;  4  3c  4  3  4  3  4  3  4  4  4  4(  4  4O  4  4s  4  4  4  4  4  4  4  5
  4  50  4  5V  4  5z  4  5  4  5  4  5  4  6  4  68  4  6^  4  6  4  6  4  6  4  6  4  7  4  7@  4  7f  4  7  4  7  4  7  4  7  4  8&  4  8N  4  8t  4  8  4  8  4  8  4  9  4  92  4  9X  4  9~  4  9  4  9  4  9  5   :  5  :>  5  :d  5  :  5  :  5  :  5  ;  5  ;(  5  ;N  5	  ;t  5
  ;  5  ;  5  ;  5  <  5  <6  5  <^  5  <  5  <  5  <  5  <  5  =$  5  =I  5  =o  5  =  5  =  5  =  5  >	  5  >/  5  >S  5  >y  5  >  5  >  5   >  5!  ?  5"  ?7  5#  ?_  5$  ?  5%  ?  5&  ?  5'  ?  5(  @%  5)  @K  5*  @q  5+  @  5,  @  5-  @  5.  A  5/  A4  50  AW  51  Az  52  A  53  A  54  A  55  B  56  B,  57  BR  58  Bu  59  B  5:  B  5;  B  5<  C  5=  C7  5>  C[  5?  Cz  5@  C  5A  C  5B  C  5C  D  5D  D8  5E  D_  5F  D  5G  D  5H  D  5I  D  5J  E"  5K  EI  5L  Ep  5M  E  5N  E  5O  E  5P  F  5Q  F3  5R  FZ  5S  F  5T  F  5U  F  5V  F  5W  G  5X  GC  5Y  Gk  5Z  G  5[  G  5\  G  5]  H	  5^  H1  5_  HX  5`  H~  5a  H  5b  H  5c  H  5d  I  5e  IC  5f  Ii  5g  I  5h  I  5i  I  5j  I  5k  J$  5l  JJ  5m  Jo  5n  J  5o  J  5p  J  5q  K  5r  K+  5s  KS  5t  Kv  5u  K  5v  K  5w  K  5x  L  5y  L(  5z  LN  5{  Lu  5|  L  5}  L  5~  L  5  M  5  M5  5  M[  5  M  5  M  5  M  5  M  5  N  5  N;  5  N`  5  N  5  N  5  N  5  N  5  O   5  OF  5  On  5  O  5  O  5  O  5  P  5  P+  5  PP  5  Pv  5  P  5  P  5  P  5  Q  5  Q9  5  Q_  5  Q  5  Q  5  Q  5  Q  5  R"  5  RJ  5  Rq  5  R  5  R  5  R  5  S	  5  S/  5  ST  5  S{  5  S  5  S  5  S  5  T  5  T<  5  T`  5  T  5  T  5  T  5  T  5  U   5  UE  5  Uj  5  U  5  U  5  U  5  V  5  V)  5  VO  5  Vt  5  V  5  V  5  V  5  W  5  W5  5  WZ  5  W  5  W  5  W  5  W  5  X  5  X;  5  X^  5  X  5  X  5  X  5  X  5  Y  5  YC  5  Yk  5  Y  5  Y  5  Y  5  Z  5  Z*  5  ZR  5  Zx  5  Z  5  Z  5  Z  5  [  5  [8  5  [^  5  [  5  [  5  [  5  [  5  \  5  \F  5  \l  5  \  5  \  5  \  5  ]  5  ]'  5  ]M  5  ]u  5  ]  5  ]  5  ]  5  ^  5  ^5  5  ^[  5  ^  5  ^  5  ^  5  ^  5  _  5  _E  5  _j  5  _  5  _  5  _  5  `  5  `,  6   `Q  6  `w  6  `  6  `  6  `  6  a  6  a9  6  aa  6  a  6	  a  6
  a  6  b  6  b'  6  bO  6  bw  6  b  6  b  6  b  6  c  6  c=  6  cc  6  c  6  c  6  c  6  c  6  d&  6  dL  6  dt  6  d  6  d  6  d  6  e  6   e+  6!  eN  6"  eq  6#  e  6$  e  6%  e  6&  f  6'  f)  6(  fQ  6)  fy  6*  f  6+  f  6,  f  6-  g  6.  g>  6/  gf  60  g  61  g  62  g  63  h  64  h-  65  hT  66  h|  67  h  68  h  69  h  6:  i  6;  i?  6<  ig  6=  i  6>  i  6?  i  6@  j  6A  j.  6B  jV  6C  j~  6D  j  6E  j  6F  j  6G  k  6H  kE  6I  km  6J  k  6K  k  6L  k  6M  l  6N  l5  6O  l]  6P  l  6Q  l  6R  l  6S  l  6T  m#  6U  mK  6V  ms  6W  m  6X  m  6Y  m  6Z  n  6[  n;  6\  nc  6]  n  6^  n  6_  n  6`  o  6a  o*  6b  oR  6c  oz  6d  o  6e  o  6f  o  6g  p  6h  pA  6i  pi  6j  p  6k  p  6l  p  6m  q  6n  q/  6o  qW  6p  q  6q  q  6r  q  6s  q  6t  r  6u  rF  6v  rn  6w  r  6x  r  6y  r  6z  s  6{  s6  6|  s^  6}  s  6~  s  6  s  6  s  6  t&  6  tN  6  tv  6  t  6  t  6  t  6  u  6  u=  6  ue  6  u  6  u  6  u  6  u  6  v&  6  vN  6  vv  6  v  6  v  6  v  6  w  6  w=  6  we  6  w  6  w  6  w  6  x  6  x,  6  xT  6  x|  6  x  6  x  6  x  6  y  6  yD  6  yl  6  y  6  y  6  y  6  z  6  z4  6  z\  6  z  6  z  6  z  6  z  6  {"  6  {J  6  {r  6  {  6  {  6  {  6  |  6  |6  6  |^  6  |  6  |  6  |  6  |  6  }"  6  }I  6  }o  6  }  6  }  6  }  6  ~  6  ~3  6  ~[  6  ~  6  ~  6  ~  6  ~  6  #  6  K  6  s  6    6    6    6    6  ;  6  c  6    6    6    6    6  *  6  R  6  z  6    6    6    6    6  ?  6  g  6    6    6    6    6  /  6  W  6  }  6    6    6    6    6  E  6  m  6    6    6    6    6  4  6  \  6    6    6    6    6  $  6  L  6  t  6    6    6    6    6  <  6  d  6    6    7     7    7  )  7  Q  7  y  7    7    7    7    7	  @  7
  h  7    7    7    7    7  /  7  W  7  ~  7    7    7    7    7  E  7  m  7    7    7    7    7  5  7  ]  7    7    7     7!    7"  %  7#  M  7$  u  7%    7&    7'    7(    7)  =  7*  e  7+    7,    7-    7.    7/  ,  70  T  71  |  72    73    74    75    76  D  77  l  78    79    7:    7;    7<  4  7=  \  7>    7?    7@    7A    7B  $  7C  L  7D  t  7E    7F    7G    7H    7I  <  7J  _  7K    7L    7M    7N    7O  &  7P  N  7Q  v  7R    7S    7T    7U    7V  >  7W  f  7X    7Y    7Z    7[    7\  .  7]  V  7^  ~  7_    7`    7a    7b    7c  E  7d  m  7e    7f    7g    7h    7i  4  7j  \  7k    7l    7m    7n    7o  $  7p  L  7q  t  7r    7s    7t    7u    7v  ;  7w  c  7x    7y    7z    7{    7|  )  7}  Q  7~  y  7    7    7    7    7  A  7  i  7    7    7    7  	  7  1  7  Y  7    7    7    7    7    7  D  7  k  7    7    7    7    7  (  7  M  7  r  7    7    7    7    7  5  7  ]  7    7    7    7    7    7  G  7  n  7    7    7    7    7  .  7  U  7  }  7    7    7    7    7  5  7  U  7  y  7    7    7    7    7  :  7  `  7    7    7    7    7  %  7  K  7  s  7    7    7    7    7  1  7  W  7    7    7    7    7    7  >  7  d  7    7    7    7    7  %  7  M  7  u  7    7    7    7    7  1  7  W  7  }  7    7    7    7    7  =  7  e  7    7    7    7    7  -  7  U  7  }  7    7    7    7    7  =  7  c  7    7    7    7     7  &  7  N  7  v  7    7    7    7    7  9  7  a  7    7    7    7    8   #  8  I  8  q  8    8    8    8    8  3  8  [  8	    8
    8    8    8    8  G  8  o  8    8    8    8  	  8  1  8  Y  8    8    8    8    8    8  G  8  m  8    8    8    8   	  8!  1  8"  Y  8#    8$    8%    8&    8'  !  8(  I  8)  q  8*    8+    8,    8-    8.  3  8/  [  80  w  81    82    83    84    85  7  86  _  87    88    89    8:    8;    8<  E  8=  k  8>    8?    8@    8A    8B  )  8C  O  8D  u  8E    8F    8G    8H    8I  3  8J  [  8K    8L    8M    8N    8O    8P  C  8Q  k  8R    8S    8T    8U    8V  -  8W  S  8X  {  8Y    8Z    8[    8\    8]  ;  8^  c  8_    8`    8a    8b    8c  +  8d  S  8e  {  8f    8g    8h    8i    8j  A  8k  i  8l    8m    8n    8o    8p  /  8q  W  8r    8s    8t    8u    8v    8w  F  8x  n  8y    8z    8{    8|    8}  4  8~  \  8    8  ¬  8    8    8  $  8  L  8  t  8  Ü  8    8    8    8  <  8  d  8  Č  8  Ĵ  8    8    8  ,  8  T  8  |  8  Ť  8    8    8    8  D  8  l  8  Ɣ  8  Ƽ  8    8    8  4  8  \  8  Ǆ  8  ǫ  8    8    8  "  8  J  8  r  8  Ș  8    8    8    8  ,  8  S  8  y  8  ɡ  8    8    8    8  >  8  f  8  ʍ  8  ʳ  8    8    8  #  8  I  8  q  8  ˗  8  ˿  8    8    8  2  8  Y  8  ́  8  ̩  8    8    8     8  H  8  o  8  ͗  8  ͽ  8    8    8  5  8  ]  8  ΃  8  Ϋ  8    8    8    8  G  8  o  8  ϗ  8  Ͽ  8    8    8  5  8  [  8  Ё  8  Ч  8    8    8    8  G  8  o  8  ї  8  ѿ  8    8    8  7  8  _  8  ҇  8  ү  8    8    8  '  8  O  8  w  8  ӟ  8    8    8    8  ?  8  g  8  ԏ  8  Է  8    8    8  /  8  W  8    8  գ  8    8    8    8  ?  9   e  9  ֌  9  ֱ  9    9     9  (  9  O  9  w  9  ן  9	    9
    9    9  ?  9  g  9  ،  9  س  9    9    9  *  9  R  9  z  9  ٢  9    9    9    9  >  9  e  9  ڍ  9  ڵ  9    9    9  -  9   T  9!  {  9"  ۡ  9#    9$    9%    9&  @  9'  h  9(  ܐ  9)  ܸ  9*    9+    9,  -  9-  U  9.  }  9/  ݤ  90    91    92    93  D  94  l  95  ޔ  96  ޼  97    98    99  4  9:  \  9;  ߄  9<  ߫  9=    9>    9?  !  9@  I  9A  q  9B    9C    9D    9E    9F  9  9G  a  9H    9I    9J    9K    9L  %  9M  K  9N  s  9O    9P    9Q    9R    9S  7  9T  _  9U    9V    9W    9X    9Y  '  9Z  O  9[  w  9\    9]    9^    9_    9`  ?  9a  g  9b    9c    9d    9e    9f  .  9g  V  9h  ~  9i    9j    9k    9l    9m  F  9n  n  9o    9p    9q    9r    9s  4  9t  \  9u    9v    9w    9x    9y  "  9z  I  9{  q  9|    9}    9~    9    9  8  9  `  9    9    9    9    9  '  9  O  9  w  9    9    9    9    9  ?  9  g  9    9    9    9    9  /  9  W  9    9    9    9    9    9  G  9  o  9    9    9    9    9  6  9  ^  9    9    9    9    9  &  9  N  9  v  9    9    9    9    9  <  9  d  9    9    9    9     9  (  9  P  9  x  9    9    9    9    9  @  9  h  9    9    9    9    9  -  9  U  9  }  9    9    9    9    9  ;  9  a  9    9    9    9    9  '  9  O  9  w  9    9    9    9    9  =  9  e  9    9    9    9    9  +  9  S  9  w  9    9    9    9    9  =  9  e  9    9    9    9    9  )  9  Q  9  y  9    9    9    9    9  >  9  d  9    9    9    9    9  ,  9  T  9  |  9    9    9    9    9  D  9  l  9    9    9    :   
  :  2  :  Z  :    :    :    :    :     :  D  :	  l  :
    :    :    :     :   2  :   Z  :     :     :     :     :  "  :  J  :  r  :    :    :    :    :  <  :  d  :    :    :    :     :!  ,  :"  T  :#  |  :$    :%    :&    :'    :(  D  :)  l  :*    :+    :,    :-    :.  4  :/  \  :0    :1    :2    :3    :4  $  :5  L  :6  t  :7    :8    :9    ::    :;  <  :<  d  :=    :>    :?    :@     :A  (  :B  P  :C  x  :D    :E    :F    :G  	  :H  	@  :I  	h  :J  	  :K  	  :L  	  :M  
  :N  
0  :O  
X  :P  
  :Q  
  :R  
  :S  
  :T     :U  H  :V  p  :W    :X    :Y    :Z    :[  8  :\  ^  :]    :^    :_    :`    :a  &  :b  N  :c  v  :d    :e    :f    :g    :h  >  :i  f  :j    :k    :l    :m    :n  .  :o  V  :p  ~  :q    :r    :s    :t    :u  F  :v  n  :w    :x    :y    :z    :{  4  :|  \  :}    :~    :    :    :  $  :  L  :  t  :    :    :    :    :  :  :  b  :    :    :    :    :  *  :  R  :  z  :    :    :    :    :  B  :  j  :    :    :    :  
  :  2  :  Z  :    :    :    :    :  "  :  H  :  n  :    :    :    :    :  4  :  \  :    :    :    :    :  $  :  L  :  t  :    :    :    :    :  3  :  [  :    :    :    :    :  #  :  K  :  r  :    :    :    :    :  8  :  `  :    :    :    :     :  (  :  O  :  w  :    :    :    :    :  ?  :  g  :    :    :    :    :    :  B  :  j  :    :    :    :      :   %  :   H  :   n  :     :     :     :  !  :  !,  :  !P  :  !w  :  !  :  !  :  !  :  "  :  "8  :  "`  :  "  :  "  :  "  :  "  :  #  :  #D  :  #k  :  #  :  #  :  #  :  $  :  $)  :  $Q  :  $y  :  $  :  $  :  $  :  %  :  %8  :  %^  ;   %  ;  %  ;  %  ;  %  ;  &  ;  &G  ;  &o  ;  &  ;  &  ;	  &  ;
  '  ;  '*  ;  'P  ;  'x  ;  '  ;  '  ;  '  ;  (  ;  (3  ;  (Y  ;  (~  ;  (  ;  (  ;  (  ;  )  ;  )?  ;  )e  ;  )  ;  )  ;  )  ;  *  ;  *(  ;   *P  ;!  *x  ;"  *  ;#  *  ;$  *  ;%  +  ;&  +8  ;'  +^  ;(  +  ;)  +  ;*  +  ;+  +  ;,  ,$  ;-  ,L  ;.  ,r  ;/  ,  ;0  ,  ;1  ,  ;2  -  ;3  -:  ;4  -b  ;5  -  ;6  -  ;7  -  ;8  .  ;9  .)  ;:  .Q  ;;  .y  ;<  .  ;=  .  ;>  .  ;?  /  ;@  /<  ;A  /d  ;B  /  ;C  /  ;D  /  ;E  0  ;F  0*  ;G  0Q  ;H  0y  ;I  0  ;J  0  ;K  0  ;L  1  ;M  1A  ;N  1i  ;O  1  ;P  1  ;Q  1  ;R  2  ;S  2-  ;T  2U  ;U  2}  ;V  2  ;W  2  ;X  2  ;Y  3  ;Z  3D  ;[  3l  ;\  3  ;]  3  ;^  3  ;_  4  ;`  44  ;a  4\  ;b  4  ;c  4  ;d  4  ;e  4  ;f  5  ;g  5F  ;h  5n  ;i  5  ;j  5  ;k  5  ;l  6  ;m  66  ;n  6^  ;o  6  ;p  6  ;q  6  ;r  6  ;s  7&  ;t  7N  ;u  7v  ;v  7  ;w  7  ;x  7  ;y  8  ;z  8<  ;{  8d  ;|  8  ;}  8  ;~  8  ;  9  ;  9,  ;  9T  ;  9|  ;  9  ;  9  ;  9  ;  :  ;  :D  ;  :l  ;  :  ;  :  ;  :  ;  ;  ;  ;4  ;  ;\  ;  ;  ;  ;  ;  ;  ;  ;  ;  <$  ;  <L  ;  <t  ;  <  ;  <  ;  <  ;  =  ;  =<  ;  =d  ;  =  ;  =  ;  =  ;  >  ;  >,  ;  >T  ;  >|  ;  >  ;  >  ;  >  ;  ?  ;  ?C  ;  ?k  ;  ?  ;  ?  ;  ?  ;  @  ;  @3  ;  @[  ;  @  ;  @  ;  @  ;  @  ;  A!  ;  AI  ;  Aq  ;  A  ;  A  ;  A  ;  B  ;  B9  ;  Ba  ;  B  ;  B  ;  B  ;  B  ;  C'  ;  CO  ;  Cw  ;  C  ;  C  ;  C  ;  D  ;  D?  ;  Dg  ;  D  ;  D  ;  D  ;  E  ;  E/  ;  EW  ;  E  ;  E  ;  E  ;  E  ;  F  ;  FG  ;  Fo  ;  F  ;  F  ;  F  ;  G  ;  G5  ;  G]  ;  G  ;  G  ;  G  ;  G  ;  H%  ;  HM  ;  Hu  ;  H  ;  H  ;  H  ;  I  ;  I=  ;  Ie  ;  I  ;  I  ;  I  ;  J  ;  J-  ;  JU  ;  J}  ;  J  ;  J  ;  J  ;  K  ;  KE  ;  Km  ;  K  ;  K  ;  K  ;  L  ;  L5  ;  L]  ;  L  ;  L  ;  L  ;  L  <   M%  <  MM  <  Mu  <  M  <  M  <  M  <  N  <  N=  <  Ne  <	  N  <
  N  <  N  <  O  <  O-  <  OU  <  O}  <  O  <  O  <  O  <  P  <  PE  <  Pm  <  P  <  P  <  P  <  Q  <  Q5  <  Q]  <  Q  <  Q  <  Q  <  Q  <   R  <!  RG  <"  Ro  <#  R  <$  R  <%  R  <&  S  <'  S7  <(  S_  <)  S  <*  S  <+  S  <,  S  <-  T'  <.  TO  </  Tw  <0  T  <1  T  <2  T  <3  U  <4  U=  <5  Ue  <6  U  <7  U  <8  U  <9  V  <:  V-  <;  VS  <<  V{  <=  V  <>  V  <?  V  <@  W  <A  WC  <B  Wi  <C  W  <D  W  <E  W  <F  X	  <G  X1  <H  XY  <I  X  <J  X  <K  X  <L  X  <M  Y!  <N  YI  <O  Yq  <P  Y  <Q  Y  <R  Y  <S  Z  <T  Z5  <U  Z[  <V  Z  <W  Z  <X  Z  <Y  Z  <Z  ["  <[  [G  <\  [l  <]  [  <^  [  <_  [  <`  \  <a  \3  <b  \[  <c  \  <d  \  <e  \  <f  \  <g  ]#  <h  ]K  <i  ]s  <j  ]  <k  ]  <l  ]  <m  ^  <n  ^9  <o  ^a  <p  ^  <q  ^  <r  ^  <s  _  <t  _)  <u  _Q  <v  _y  <w  _  <x  _  <y  _  <z  `  <{  `@  <|  `h  <}  `  <~  `  <  `  <  a  <  a*  <  aR  <  az  <  a  <  a  <  a  <  b  <  b@  <  bh  <  b  <  b  <  b  <  c  <  c-  <  cT  <  c|  <  c  <  c  <  c  <  d  <  dA  <  di  <  d  <  d  <  d  <  e  <  e,  <  eT  <  e|  <  e  <  e  <  e  <  f  <  fC  <  fk  <  f  <  f  <  f  <  g
  <  g2  <  gZ  <  g  <  g  <  g  <  g  <  h!  <  hI  <  hq  <  h  <  h  <  h  <  i  <  i9  <  ia  <  i  <  i  <  i  <  i  <  j$  <  jL  <  js  <  j  <  j  <  j  <  k  <  k7  <  k^  <  k  <  k  <  k  <  k  <  l%  <  lM  <  lr  <  l  <  l  <  l  <  m  <  m6  <  m^  <  m  <  m  <  m  <  m  <  n"  <  nG  <  no  <  n  <  n  <  n  <  o  <  o4  <  o\  <  o  <  o  <  o  <  o  <  p"  <  pJ  <  pq  <  p  <  p  <  p  <  q  <  q7  <  q^  <  q  <  q  <  q  <  q  <  r!  <  rI  <  rq  <  r  <  r  <  r  <  s  <  s5  <  s]  <  s  <  s  <  s  <  s  <  t#  <  tK  <  ts  <  t  =   t  =  t  =  u  =  u:  =  ub  =  u  =  u  =  u  =  v   =	  v(  =
  vO  =  vu  =  v  =  v  =  v  =  w  =  w:  =  wa  =  w  =  w  =  w  =  w  =  x&  =  xN  =  xu  =  x  =  x  =  x  =  y  =  y:  =  yb  =  y  =   y  =!  y  ="  y  =#  z$  =$  zL  =%  zt  =&  z  ='  z  =(  z  =)  {  =*  {8  =+  {`  =,  {  =-  {  =.  {  =/  {  =0  |#  =1  |K  =2  |s  =3  |  =4  |  =5  |  =6  }  =7  }9  =8  }a  =9  }  =:  }  =;  }  =<  }  ==  ~%  =>  ~L  =?  ~t  =@  ~  =A  ~  =B  ~  =C    =D  :  =E  b  =F    =G    =H    =I    =J  *  =K  Q  =L  v  =M    =N    =O    =P    =Q  =  =R  c  =S    =T    =U    =V    =W  +  =X  S  =Y  {  =Z    =[    =\    =]    =^  B  =_  j  =`    =a    =b    =c  	  =d  1  =e  X  =f    =g    =h    =i    =j    =k  G  =l  o  =m    =n    =o    =p    =q  5  =r  ]  =s    =t    =u    =v    =w  %  =x  M  =y  u  =z    ={    =|    =}    =~  :  =  b  =    =    =    =    =  (  =  N  =  v  =    =    =    =    =  =  =  e  =    =    =    =    =  ,  =  T  =  |  =    =    =    =    =  C  =  k  =    =    =    =    =  3  =  [  =    =    =    =    =     =  F  =  n  =    =    =    =    =  4  =  \  =    =    =    =    =  #  =  K  =  q  =    =    =    =    =  7  =  _  =    =    =    =    =  '  =  N  =  v  =    =    =    =    =  ;  =  c  =    =    =    =    =  +  =  S  =  {  =    =    =    =    =  C  =  k  =    =    =    =    =  -  =  U  =  }  =    =    =    =    =  E  =  m  =    =    =    =    =  4  =  [  =    =    =    =    =  "  =  J  =  r  =    =    =    =    =  8  =  `  =    =    =    =     =  (  =  P  =  x  =    =    =    =    =  @  >   h  >    >    >    >    >  0  >  X  >    >    >	    >
    >     >  H  >  p  >    >    >    >    >  8  >  _  >    >    >    >    >     >  H  >  p  >    >    >    >    >  6  >   ^  >!    >"    >#    >$    >%  &  >&  N  >'  q  >(    >)    >*    >+    >,  4  >-  \  >.    >/    >0    >1    >2  $  >3  L  >4  t  >5    >6    >7    >8    >9  9  >:  a  >;    ><    >=    >>    >?  )  >@  Q  >A  y  >B    >C    >D    >E    >F  @  >G  h  >H    >I    >J    >K    >L  0  >M  X  >N    >O    >P    >Q    >R     >S  H  >T  p  >U    >V    >W    >X    >Y  8  >Z  `  >[    >\    >]    >^     >_  (  >`  P  >a  x  >b    >c    >d    >e    >f  @  >g  e  >h    >i    >j    >k    >l  )  >m  Q  >n  y  >o    >p    >q    >r    >s  ?  >t  f  >u    >v    >w    >x    >y  +  >z  S  >{  {  >|    >}    >~    >    >  C  >  k  >    >    >    >    >  3  >  [  >    >    >    >    >  #  >  K  >  s  >    >    >    >    >  :  >  b  >    >    >    >    >  )  >  Q  >  y  >    >    >    >    >  @  >  h  >    >    >    >    >  /  >  W  >  }  >    >    >    >    >  ;  >  b  >    >    >    >    >  #  >  K  >  s  >    >    >    >    >  :  >  _  >    >    >    >    >    >  E  >  f  >    >    >    >    >  -  >  T  >  |  >    >    >    >    >  C  >  k  >    >    >    >  	  >  0  >  W  >  ~  >    >    >    >    >  D  >  i  >    >    >    >  	  >  1  >  Y  >    >    >    >    >     >  H  >  m  >    >    >    >    >  4  >  \  >    >    >    >    >  $  >  K  >  s  >    >    >    >    >  9  >  a  >  È  >  ð  >    ?     ?  %  ?  M  ?  t  ?  Ĝ  ?    ?    ?    ?  ;  ?	  b  ?
  Ō  ?  Ŵ  ?    ?    ?  ,  ?  T  ?  |  ?  Ƥ  ?    ?    ?    ?  D  ?  l  ?  ǔ  ?  ǻ  ?    ?  	  ?  1  ?  X  ?  Ȁ  ?  Ȩ  ?    ?     ?!    ?"  E  ?#  l  ?$  ɔ  ?%  ɸ  ?&    ?'    ?(  .  ?)  V  ?*  ~  ?+  ʦ  ?,    ?-    ?.    ?/  E  ?0  m  ?1  ˕  ?2  ˽  ?3    ?4    ?5  3  ?6  Z  ?7  ̂  ?8  ̪  ?9    ?:    ?;  "  ?<  J  ?=  q  ?>  ͙  ??    ?@    ?A    ?B  9  ?C  a  ?D  Ή  ?E  α  ?F    ?G    ?H  )  ?I  Q  ?J  v  ?K  Ϟ  ?L    ?M    ?N    ?O  >  ?P  f  ?Q  Ў  ?R  ж  ?S    ?T    ?U  .  ?V  T  ?W  x  ?X  ў  ?Y    ?Z    ?[    ?\  5  ?]  ]  ?^  ҃  ?_  Ң  ?`    ?a    ?b    ?c  >  ?d  f  ?e  ӌ  ?f  ӱ  ?g    ?h    ?i  (  ?j  P  ?k  x  ?l  Ԡ  ?m    ?n    ?o    ?p  >  ?q  e  ?r  Ս  ?s  յ  ?t    ?u    ?v  -  ?w  U  ?x  }  ?y  ֥  ?z    ?{    ?|    ?}  E  ?~  m  ?  ו  ?  ׽  ?    ?    ?  5  ?  ]  ?  ؅  ?  ح  ?    ?    ?  %  ?  M  ?  u  ?  ٝ  ?    ?    ?    ?  =  ?  e  ?  ڍ  ?  ڵ  ?    ?    ?  -  ?  U  ?  }  ?  ۥ  ?    ?    ?    ?  E  ?  m  ?  ܕ  ?  ܽ  ?    ?    ?  5  ?  ]  ?  ݅  ?  ݭ  ?    ?    ?  %  ?  M  ?  u  ?  ޝ  ?    ?    ?    ?  =  ?  e  ?  ߍ  ?  ߵ  ?    ?    ?  -  ?  U  ?  }  ?    ?    ?    ?    ?  E  ?  m  ?    ?    ?    ?    ?  5  ?  ]  ?    ?    ?    ?    ?  %  ?  M  ?  u  ?    ?    ?    ?    ?  =  ?  e  ?    ?    ?    ?    ?  -  ?  U  ?  }  ?    ?    ?    ?    ?  E  ?  i  ?    ?    ?    ?    ?  "  ?  F  ?  l  ?    ?    ?    ?    ?  ,  ?  T  ?  z  ?    ?    ?    ?    ?  B  ?  j  ?    ?    ?    ?  
  ?  2  ?  Z  ?    ?    ?    ?    ?    ?  C  ?  j  @     @    @    @    @  )  @  P  @  w  @    @    @	    @
    @  =  @  e  @    @    @    @     @  &  @  K  @  q  @    @    @    @    @  %  @  J  @  o  @    @    @    @    @  $  @   J  @!  k  @"    @#    @$    @%    @&  (  @'  N  @(  t  @)    @*    @+    @,    @-  1  @.  W  @/  }  @0    @1    @2    @3    @4  ;  @5  ^  @6    @7    @8    @9    @:    @;  B  @<  h  @=    @>    @?    @@    @A  (  @B  N  @C  t  @D    @E    @F    @G  	  @H  1  @I  Y  @J    @K    @L    @M    @N    @O  ?  @P  d  @Q    @R    @S    @T    @U    @V  D  @W  j  @X    @Y    @Z    @[    @\  #  @]  H  @^  p  @_    @`    @a    @b    @c  0  @d  V  @e  |  @f    @g    @h    @i    @j  9  @k  a  @l    @m    @n    @o    @p    @q  F  @r  l  @s    @t    @u    @v    @w  ,  @x  T  @y  |  @z    @{    @|    @}    @~  :  @  `  @    @    @    @     @  (  @  N  @  v  @    @    @    @     @   ;  @   c  @     @     @     @    @  '  @  O  @  w  @    @    @    @    @  ;  @  b  @    @    @    @    @  &  @  M  @  u  @    @    @    @    @  ;  @  b  @    @    @    @    @  '  @  O  @  v  @    @    @    @    @  >  @  f  @    @    @    @    @  ,  @  T  @  |  @    @    @    @    @  A  @  i  @    @    @    @  	  @  	,  @  	T  @  	|  @  	  @  	  @  	  @  
  @  
B  @  
g  @  
  @  
  @  
  @    @  +  @  R  @  z  @    @    @    @    @  ?  @  g  @    @    @    @    @  '  @  O  @  w  @    @    @    @    @  =  @  c  @    @    @    @    @  *  @  R  @  y  @    @    @    @    @  @  @  h  @    @    @    @    @  0  @  X  @    @    @    @    @     A   H  A  n  A    A    A    A  
  A  2  A  Z  A    A	    A
    A    A  "  A  J  A  r  A    A    A    A    A  :  A  b  A    A    A    A    A  *  A  R  A  z  A    A    A    A    A   B  A!  j  A"    A#    A$    A%  
  A&  2  A'  X  A(    A)    A*    A+    A,    A-  F  A.  n  A/    A0    A1    A2    A3  6  A4  ^  A5    A6    A7    A8    A9  "  A:  J  A;  r  A<    A=    A>    A?    A@  8  AA  `  AB    AC    AD    AE    AF  '  AG  O  AH  v  AI    AJ    AK    AL    AM  >  AN  f  AO    AP    AQ    AR    AS  .  AT  V  AU  ~  AV    AW    AX    AY     AZ   F  A[   n  A\     A]     A^     A_  !  A`  !6  Aa  !^  Ab  !  Ac  !  Ad  !  Ae  !  Af  "&  Ag  "N  Ah  "v  Ai  "  Aj  "  Ak  "  Al  #  Am  #>  An  #f  Ao  #  Ap  #  Aq  #  Ar  $  As  $.  At  $T  Au  $|  Av  $  Aw  $  Ax  $  Ay  %  Az  %D  A{  %l  A|  %  A}  %  A~  %  A  &  A  &3  A  &[  A  &  A  &  A  &  A  &  A  '!  A  'I  A  'q  A  '  A  '  A  '  A  (  A  (9  A  (a  A  (  A  (  A  (  A  )  A  ))  A  )Q  A  )y  A  )  A  )  A  )  A  *  A  *@  A  *h  A  *  A  *  A  *  A  +  A  +/  A  +V  A  +~  A  +  A  +  A  +  A  ,  A  ,F  A  ,n  A  ,  A  ,  A  ,  A  -  A  -6  A  -^  A  -  A  -  A  -  A  -  A  .&  A  .N  A  .v  A  .  A  .  A  .  A  /  A  />  A  /f  A  /  A  /  A  /  A  0  A  0.  A  0V  A  0~  A  0  A  0  A  0  A  1  A  1D  A  1l  A  1  A  1  A  1  A  2  A  21  A  2Y  A  2  A  2  A  2  A  2  A  3   A  3H  A  3p  A  3  A  3  A  3  A  4  A  46  A  4^  A  4  A  4  A  4  A  4  A  5%  A  5L  A  5t  A  5  A  5  A  5  A  6  A  6;  A  6c  A  6  A  6  A  6  A  7  A  7*  A  7R  A  7z  A  7  A  7  A  7  A  8  A  8A  A  8i  A  8  A  8  A  8  A  9  A  90  A  9W  A  9  A  9  A  9  A  9  B   :  B  :F  B  :n  B  :  B  :  B  :  B  ;  B  ;6  B  ;^  B	  ;  B
  ;  B  ;  B  ;  B  <&  B  <N  B  <v  B  <  B  <  B  <  B  =  B  =>  B  =f  B  =  B  =  B  =  B  >  B  >.  B  >V  B  >~  B  >  B  >  B  >  B   ?  B!  ?F  B"  ?n  B#  ?  B$  ?  B%  ?  B&  @  B'  @6  B(  @^  B)  @  B*  @  B+  @  B,  @  B-  A&  B.  AN  B/  Av  B0  A  B1  A  B2  A  B3  B  B4  B>  B5  Bf  B6  B  B7  B  B8  B  B9  C  B:  C.  B;  CV  B<  C~  B=  C  B>  C  B?  C  B@  D  BA  DF  BB  Dn  BC  D  BD  D  BE  D  BF  E  BG  E6  BH  E^  BI  E  BJ  E  BK  E  BL  E  BM  F&  BN  FN  BO  Fv  BP  F  BQ  F  BR  F  BS  G  BT  G>  BU  Gf  BV  G  BW  G  BX  G  BY  H  BZ  H.  B[  HV  B\  H~  B]  H  B^  H  B_  H  B`  I  Ba  IF  Bb  In  Bc  I  Bd  I  Be  I  Bf  J  Bg  J6  Bh  J^  Bi  J  Bj  J  Bk  J  Bl  J  Bm  K&  Bn  KN  Bo  Kv  Bp  K  Bq  K  Br  K  Bs  L  Bt  L>  Bu  Lf  Bv  L  Bw  L  Bx  L  By  M  Bz  M.  B{  MV  B|  M~  B}  M  B~  M  B  M  B  N  B  NF  B  Nn  B  N  B  N  B  N  B  O  B  O3  B  O[  B  O  B  O  B  O  B  O  B  P#  B  PK  B  Ps  B  P  B  P  B  P  B  Q  B  Q9  B  Qa  B  Q  B  Q  B  Q  B  R  B  R(  B  RP  B  Rx  B  R  B  R  B  R  B  S  B  S@  B  Sh  B  S  B  S  B  S  B  T  B  T0  B  TX  B  T  B  T  B  T  B  T  B  U   B  UH  B  Up  B  U  B  U  B  U  B  V  B  V8  B  V`  B  V  B  V  B  V  B  V  B  W'  B  WN  B  Wx  B  W  B  W  B  W  B  X  B  X=  B  Xe  B  X  B  X  B  X  B  Y  B  Y)  B  YQ  B  Yw  B  Y  B  Y  B  Y  B  Z  B  Z=  B  Zd  B  Z  B  Z  B  Z  B  [  B  [*  B  [Q  B  [w  B  [  B  [  B  [  B  \  B  \>  B  \f  B  \  B  \  B  \  B  ]  B  ]+  B  ]S  B  ]y  B  ]  B  ]  B  ]  B  ^  B  ^>  B  ^f  B  ^  B  ^  B  ^  B  _  B  _.  B  _U  B  _}  B  _  B  _  B  _  B  `  B  `E  B  `m  B  `  B  `  B  `  B  a  B  a5  B  a]  B  a  B  a  B  a  C   a  C  b$  C  bL  C  bt  C  b  C  b  C  b  C  c  C  c<  C	  cd  C
  c  C  c  C  c  C  d  C  d*  C  dP  C  dx  C  d  C  d  C  d  C  e  C  e<  C  ed  C  e  C  e  C  e  C  f  C  f)  C  fQ  C  fy  C  f  C  f  C   f  C!  g  C"  g@  C#  gh  C$  g  C%  g  C&  g  C'  h  C(  h0  C)  hX  C*  h  C+  h  C,  h  C-  h  C.  i   C/  iH  C0  ip  C1  i  C2  i  C3  i  C4  j  C5  j8  C6  j`  C7  j  C8  j  C9  j  C:  j  C;  k$  C<  kL  C=  kt  C>  k  C?  k  C@  k  CA  l  CB  l;  CC  lc  CD  l  CE  l  CF  l  CG  m  CH  m*  CI  mR  CJ  mz  CK  m  CL  m  CM  m  CN  n  CO  nA  CP  n`  CQ  n  CR  n  CS  n  CT  n  CU  o  CV  oB  CW  oe  CX  o  CY  o  CZ  o  C[  o  C\  p  C]  pD  C^  pl  C_  p  C`  p  Ca  p  Cb  q  Cc  q.  Cd  qV  Ce  q}  Cf  q  Cg  q  Ch  q  Ci  r  Cj  rB  Ck  rj  Cl  r  Cm  r  Cn  r  Co  s
  Cp  s2  Cq  sX  Cr  s  Cs  s  Ct  s  Cu  s  Cv  t   Cw  tH  Cx  tp  Cy  t  Cz  t  C{  t  C|  u  C}  u8  C~  u`  C  u  C  u  C  u  C  u  C  v"  C  vH  C  vm  C  v  C  v  C  v  C  w  C  w.  C  wV  C  w~  C  w  C  w  C  w  C  x  C  xB  C  xi  C  x  C  x  C  x  C  y	  C  y1  C  yY  C  y  C  y  C  y  C  y  C  z  C  zF  C  zl  C  z  C  z  C  z  C  {  C  {3  C  {[  C  {  C  {  C  {  C  {  C  |#  C  |K  C  |s  C  |  C  |  C  |  C  }  C  }9  C  }a  C  }  C  }  C  }  C  }  C  ~#  C  ~K  C  ~r  C  ~  C  ~  C  ~  C    C  6  C  ^  C    C    C    C    C  %  C  M  C  u  C    C    C    C    C  9  C  a  C    C    C    C    C    C  A  C  i  C    C    C    C    C  -  C  T  C  |  C    C    C    C    C  A  C  i  C    C    C    C    C  ,  C  T  C  |  C    C    C    C    C  A  C  i  C    C    C    C    C  /  C  W  C    C    C    C    C    C  C  C  j  C    C    C    C  
  C  2  D   Z  D    D    D    D    D    D  F  D  n  D    D	    D
    D    D  3  D  [  D    D    D    D    D  "  D  I  D  p  D    D    D    D    D  6  D  ^  D    D    D    D    D  "  D   J  D!  r  D"    D#    D$    D%    D&  5  D'  ]  D(    D)    D*    D+    D,  #  D-  K  D.  s  D/    D0    D1    D2    D3  9  D4  a  D5    D6    D7    D8    D9  %  D:  M  D;  t  D<    D=    D>    D?    D@  ;  DA  c  DB    DC    DD    DE    DF  +  DG  S  DH  {  DI    DJ    DK    DL    DM  C  DN  k  DO    DP    DQ    DR    DS  ,  DT  T  DU  |  DV    DW    DX    DY    DZ  B  D[  h  D\    D]    D^    D_    D`  /  Da  U  Db  }  Dc    Dd    De    Df    Dg  C  Dh  k  Di    Dj    Dk    Dl    Dm  3  Dn  [  Do    Dp    Dq    Dr    Ds  #  Dt  K  Du  s  Dv    Dw    Dx    Dy    Dz  ;  D{  c  D|    D}    D~    D    D  +  D  S  D  {  D    D    D    D    D  C  D  k  D    D    D    D    D  3  D  [  D    D    D    D    D    D  7  D  _  D    D    D    D    D  &  D  N  D  v  D    D    D    D    D  >  D  f  D    D    D    D    D  -  D  U  D  }  D    D    D    D    D  E  D  m  D    D    D    D    D  4  D  \  D    D    D    D    D  #  D  K  D  r  D    D    D    D    D  :  D  b  D    D    D    D    D  )  D  Q  D  y  D    D    D    D    D  A  D  i  D    D    D    D  	  D  1  D  Y  D    D    D    D    D     D  H  D  p  D    D    D    D    D  7  D  _  D    D    D    D    D  '  D  O  D  w  D    D    D    D    D  ?  D  g  D    D    D    D    D  /  D  W  D    D    D    D    D    D  G  D  o  D    D    D    E     E  7  E  _  E    E    E    E    E  '  E  O  E	  w  E
    E    E    E    E  ?  E  g  E    E    E    E    E  .  E  V  E  ~  E    E    E    E    E  F  E  n  E    E    E    E     E!  6  E"  ^  E#    E$    E%    E&    E'  &  E(  N  E)  v  E*    E+    E,    E-    E.  >  E/  f  E0    E1    E2    E3    E4  .  E5  V  E6  ~  E7    E8    E9    E:    E;  F  E<  n  E=    E>    E?    E@    EA  5  EB  ]  EC    ED    EE    EF    EG  %  EH  M  EI  u  EJ    EK    EL    EM    EN  =  EO  e  EP    EQ    ER    ES    ET  -  EU  U  EV  }  EW    EX    EY    EZ    E[  E  E\  m  E]    E^    E_    E`    Ea  5  Eb  ]  Ec    Ed    Ee    Ef    Eg  %  Eh  M  Ei  u  Ej    Ek    El    Em    En  =  Eo  e  Ep    Eq  µ  Er    Es    Et  -  Eu  U  Ev  }  Ew  å  Ex    Ey    Ez    E{  E  E|  m  E}  ĕ  E~  Ľ  E    E    E  5  E  ]  E  Ņ  E  ŭ  E    E    E  %  E  M  E  u  E  Ɲ  E    E    E    E  ;  E  a  E  ǉ  E  Ǳ  E    E    E  )  E  Q  E  y  E  ȡ  E    E    E    E  A  E  i  E  ɑ  E  ɵ  E    E    E  -  E  T  E  |  E  ʤ  E    E    E    E  ;  E  c  E  ˊ  E  ˰  E    E    E  &  E  L  E  t  E  ̜  E    E    E    E  8  E  _  E  ͇  E  ͯ  E    E    E  '  E  O  E  w  E  Λ  E    E    E    E  9  E  a  E  ω  E  ϱ  E    E    E  )  E  Q  E  w  E  П  E    E    E    E  =  E  e  E  э  E  Ѵ  E    E    E  *  E  R  E  z  E  Ң  E    E    E    E  A  E  i  E  ӏ  E  Ӷ  E    E    E  *  E  R  E  z  E  Ԣ  E    E    E    E  B  E  j  E  Ւ  E  պ  E    E    E  /  E  V  E  ~  E  ֦  E    E    E    E  D  E  l  E  ה  E  ׼  E    E    E  3  E  [  E  ؃  E  ث  F     F    F  #  F  K  F  r  F  ٘  F    F    F    F	  8  F
  `  F  ڈ  F  ڰ  F    F    F  &  F  N  F  v  F  ۞  F    F    F    F  >  F  f  F  ܎  F  ܶ  F    F    F  .  F  T  F  z  F  ݢ  F     F!    F"    F#  B  F$  j  F%  ޒ  F&  ޸  F'    F(    F)  0  F*  V  F+  ~  F,  ߦ  F-    F.    F/    F0  D  F1  l  F2    F3    F4    F5    F6  4  F7  \  F8    F9    F:    F;    F<  "  F=  J  F>  r  F?    F@    FA    FB    FC  :  FD  b  FE    FF    FG    FH    FI  *  FJ  R  FK  z  FL    FM    FN    FO    FP  B  FQ  j  FR    FS    FT    FU  
  FV  2  FW  Z  FX    FY    FZ    F[    F\  "  F]  J  F^  r  F_    F`    Fa    Fb    Fc  8  Fd  `  Fe    Ff    Fg    Fh     Fi  (  Fj  P  Fk  x  Fl    Fm    Fn    Fo    Fp  @  Fq  h  Fr    Fs    Ft    Fu    Fv  -  Fw  U  Fx  }  Fy    Fz    F{    F|    F}  C  F~  k  F    F    F    F  	  F  1  F  W  F  ~  F    F    F    F    F  E  F  m  F    F    F    F  
  F  2  F  Z  F    F    F    F    F     F  G  F  o  F    F    F    F    F  7  F  _  F    F    F    F    F  '  F  O  F  w  F    F    F    F    F  ?  F  g  F    F    F    F    F  -  F  R  F  z  F    F    F    F    F  >  F  f  F    F    F    F    F  (  F  P  F  w  F    F    F    F    F  ?  F  g  F    F    F    F    F  -  F  U  F  }  F    F    F    F    F  C  F  j  F    F    F    F    F  -  F  S  F  {  F    F    F    F    F  :  F  b  F    F    F    F    F  )  F  Q  F  y  F    F    F    F    F  ?  F  g  F    F    F    F    F  -  F  T  F  |  F    F    F    F    F  C  F  k  F    F    F    F   
  F   2  F   Z  G      G     G     G     G     G  H  G  p  G    G    G	    G
    G  8  G  `  G    G    G    G    G  '  G  O  G  w  G    G    G    G    G  >  G  f  G    G    G    G    G  -  G  U  G   }  G!    G"    G#    G$    G%  E  G&  j  G'    G(    G)    G*    G+  .  G,  Q  G-  w  G.    G/    G0    G1    G2  >  G3  f  G4    G5    G6    G7  	  G8  	*  G9  	Q  G:  	y  G;  	  G<  	  G=  	  G>  
  G?  
@  G@  
e  GA  
  GB  
  GC  
  GD    GE  *  GF  R  GG  z  GH    GI    GJ    GK    GL  A  GM  h  GN    GO    GP    GQ    GR  /  GS  W  GT    GU    GV    GW    GX    GY  G  GZ  o  G[    G\    G]    G^    G_  7  G`  _  Ga    Gb    Gc    Gd    Ge  '  Gf  O  Gg  w  Gh    Gi    Gj    Gk    Gl  6  Gm  ^  Gn    Go    Gp    Gq    Gr     Gs  G  Gt  o  Gu    Gv    Gw    Gx    Gy  5  Gz  ]  G{    G|    G}    G~    G    G  G  G  o  G    G    G    G    G  4  G  Z  G    G    G    G    G     G  H  G  p  G    G    G    G    G  5  G  ]  G    G    G    G    G  %  G  M  G  u  G    G    G    G    G  =  G  e  G    G    G    G    G  -  G  U  G  }  G    G    G    G    G  E  G  m  G    G    G    G    G  5  G  ]  G    G    G    G    G  %  G  M  G  u  G    G    G    G    G  =  G  e  G    G    G    G    G  -  G  U  G  }  G    G    G    G     G   E  G   m  G     G     G     G  !  G  !5  G  !\  G  !  G  !  G  !  G  !  G  "  G  "E  G  "l  G  "  G  "  G  "  G  #  G  #3  G  #[  G  #  G  #  G  #  G  #  G  $!  G  $I  G  $n  G  $  G  $  G  $  G  %  G  %2  G  %Z  G  %  G  %  G  %  G  %  G  &"  G  &I  G  &p  G  &  G  &  G  &  G  '  G  '7  G  '^  G  '  G  '  G  '  G  '  H   ($  H  (J  H  (q  H  (  H  (  H  (  H  )  H  )6  H  )]  H	  )  H
  )  H  )  H  )  H  *%  H  *L  H  *s  H  *  H  *  H  *  H  +  H  +:  H  +a  H  +  H  +  H  +  H  ,  H  ,)  H  ,Q  H  ,y  H  ,  H  ,  H  ,  H   -  H!  ->  H"  -f  H#  -  H$  -  H%  -  H&  .  H'  .,  H(  .S  H)  .{  H*  .  H+  .  H,  .  H-  /  H.  /C  H/  /k  H0  /  H1  /  H2  /  H3  0  H4  01  H5  0Y  H6  0  H7  0  H8  0  H9  0  H:  1!  H;  1I  H<  1q  H=  1  H>  1  H?  1  H@  2  HA  29  HB  2a  HC  2  HD  2  HE  2  HF  2  HG  3%  HH  3M  HI  3u  HJ  3  HK  3  HL  3  HM  4  HN  4=  HO  4e  HP  4  HQ  4  HR  4  HS  5  HT  5+  HU  5S  HV  5{  HW  5  HX  5  HY  5  HZ  6  H[  6C  H\  6k  H]  6  H^  6  H_  6  H`  7  Ha  73  Hb  7[  Hc  7  Hd  7  He  7  Hf  7  Hg  8#  Hh  8K  Hi  8s  Hj  8  Hk  8  Hl  8  Hm  9  Hn  9;  Ho  9c  Hp  9  Hq  9  Hr  9  Hs  :  Ht  :+  Hu  :S  Hv  :{  Hw  :  Hx  :  Hy  :  Hz  ;  H{  ;C  H|  ;k  H}  ;  H~  ;  H  ;  H  <  H  <3  H  <Y  H  <  H  <  H  <  H  <  H  =   H  =H  H  =p  H  =  H  =  H  =  H  >
  H  >1  H  >V  H  >}  H  >  H  >  H  >  H  ?  H  ?>  H  ?f  H  ?  H  ?  H  ?  H  @  H  @*  H  @O  H  @v  H  @  H  @  H  @  H  A  H  A7  H  A_  H  A  H  A  H  A  H  A  H  B$  H  BL  H  Bs  H  B  H  B  H  B  H  C  H  C:  H  Cb  H  C  H  C  H  C  H  C  H  D$  H  DI  H  Do  H  D  H  D  H  D  H  E  H  E+  H  ES  H  E{  H  E  H  E  H  E  H  F  H  F<  H  Fb  H  F  H  F  H  F  H  F  H  G!  H  GG  H  Gm  H  G  H  G  H  G  H  H  H  H5  H  HZ  H  H  H  H  H  H  H  H  H  I  H  IB  H  Ij  H  I  H  I  H  I  H  J
  H  J2  H  JY  H  J  H  J  H  J  H  J  H  K  H  KG  H  Ko  H  K  H  K  H  K  H  L  H  L5  H  L]  H  L  H  L  H  L  H  L  H  M$  H  MK  H  Mq  H  M  H  M  H  M  H  N  H  N4  H  N\  H  N  H  N  H  N  H  N  H  O!  H  OI  H  Oq  I   O  I  O  I  O  I  P  I  P8  I  P_  I  P  I  P  I  P  I	  P  I
  Q'  I  QO  I  Qw  I  Q  I  Q  I  Q  I  R  I  R>  I  Rf  I  R  I  R  I  R  I  S  I  S.  I  SV  I  S~  I  S  I  S  I  S  I  T  I  TC  I  Tk  I   T  I!  T  I"  T  I#  U	  I$  U1  I%  UY  I&  U  I'  U  I(  U  I)  U  I*  V  I+  VG  I,  Vo  I-  V  I.  V  I/  V  I0  W  I1  W6  I2  W^  I3  W  I4  W  I5  W  I6  W  I7  X&  I8  XN  I9  Xv  I:  X  I;  X  I<  X  I=  Y  I>  Y<  I?  Yd  I@  Y  IA  Y  IB  Y  IC  Z  ID  Z,  IE  ZT  IF  Z|  IG  Z  IH  Z  II  Z  IJ  [  IK  [D  IL  [l  IM  [  IN  [  IO  [  IP  \  IQ  \4  IR  \\  IS  \  IT  \  IU  \  IV  \  IW  ]$  IX  ]L  IY  ]t  IZ  ]  I[  ]  I\  ]  I]  ^  I^  ^<  I_  ^d  I`  ^  Ia  ^  Ib  ^  Ic  _  Id  _,  Ie  _T  If  _|  Ig  _  Ih  _  Ii  _  Ij  `  Ik  `D  Il  `l  Im  `  In  `  Io  `  Ip  a  Iq  a4  Ir  a\  Is  a  It  a  Iu  a  Iv  a  Iw  b$  Ix  bL  Iy  bv  Iz  b  I{  b  I|  b  I}  c  I~  c<  I  cd  I  c  I  c  I  c  I  d   I  d(  I  dP  I  dx  I  d  I  d  I  d  I  e  I  e<  I  ed  I  e  I  e  I  e  I  e  I  f  I  f9  I  f]  I  f  I  f  I  f  I  f  I  g  I  g5  I  gY  I  g}  I  g  I  g  I  g  I  h  I  h1  I  hU  I  hy  I  h  I  h  I  h  I  i	  I  i-  I  iQ  I  iu  I  i  I  i  I  i  I  j  I  j)  I  jM  I  jq  I  j  I  j  I  j  I  k  I  k%  I  kI  I  km  I  k  I  k  I  k  I  l   I  l%  I  lK  I  lp  I  l  I  l  I  l  I  m  I  m'  I  mJ  I  mp  I  m  I  m  I  m  I  n  I  n,  I  nR  I  nw  I  n  I  n  I  n  I  o  I  o4  I  oZ  I  o  I  o  I  o  I  o  I  p  I  p;  I  pa  I  p  I  p  I  p  I  p  I  q  I  qD  I  qj  I  q  I  q  I  q  I  r   I  r&  I  rL  I  rr  I  r  I  r  I  r  I  s
  I  s0  I  sV  I  s|  I  s  I  s  I  s  I  t  I  t@  I  th  I  t  I  t  I  t  I  u  I  u0  I  uX  I  u  I  u  I  u  I  u  I  v   J   vH  J  vp  J  v  J  v  J  v  J  w  J  w6  J  w^  J  w  J	  w  J
  w  J  w  J  x%  J  xL  J  xt  J  x  J  x  J  x  J  y  J  y<  J  yd  J  y  J  y  J  y  J  z  J  z+  J  zS  J  zz  J  z  J  z  J  z  J  {  J   {B  J!  {j  J"  {  J#  {  J$  {  J%  |
  J&  |2  J'  |Z  J(  |  J)  |  J*  |  J+  |  J,  }!  J-  }I  J.  }o  J/  }  J0  }  J1  }  J2  ~  J3  ~7  J4  ~_  J5  ~  J6  ~  J7  ~  J8  ~  J9  '  J:  O  J;  w  J<    J=    J>    J?    J@  9  JA  ]  JB    JC    JD    JE    JF  #  JG  K  JH  s  JI    JJ    JK    JL    JM  ;  JN  c  JO    JP    JQ    JR    JS  +  JT  S  JU  {  JV    JW    JX    JY    JZ  A  J[  i  J\    J]    J^    J_    J`  /  Ja  W  Jb    Jc    Jd    Je    Jf    Jg  G  Jh  o  Ji    Jj    Jk    Jl    Jm  7  Jn  _  Jo    Jp    Jq    Jr    Js  '  Jt  O  Ju  w  Jv    Jw    Jx    Jy    Jz  ?  J{  g  J|    J}    J~    J    J  /  J  W  J    J    J    J    J    J  G  J  o  J    J    J    J    J  7  J  _  J    J    J    J    J  '  J  M  J  u  J    J    J    J    J  =  J  e  J    J    J    J    J  ,  J  T  J  |  J    J    J    J    J  B  J  j  J    J    J    J    J  0  J  X  J    J    J    J    J    J  E  J  m  J    J    J    J    J  /  J  W  J    J    J    J    J    J  A  J  g  J    J    J    J    J  .  J  V  J  ~  J    J    J    J    J  E  J  l  J    J    J    J  	  J  1  J  Y  J    J    J    J    J    J  B  J  j  J    J    J    J  	  J  1  J  Y  J    J    J    J    J     J  H  J  p  J    J    J    J    J  7  J  ^  J    J    J    J    J  "  J  J  J  r  J    J    J    J    J  3  J  X  J    J    J    K     K    K  B  K  j  K    K    K    K  	  K  1  K	  V  K
  ~  K    K    K    K    K  E  K  l  K    K    K    K  
  K  2  K  Y  K    K    K    K    K    K  E  K  m  K    K    K     K!    K"  3  K#  Y  K$    K%    K&    K'    K(     K)  H  K*  o  K+    K,    K-    K.    K/  6  K0  ^  K1    K2    K3    K4    K5  $  K6  L  K7  t  K8    K9    K:    K;    K<  <  K=  d  K>    K?    K@    KA    KB  ,  KC  T  KD  |  KE    KF    KG    KH    KI  @  KJ  h  KK    KL    KM    KN    KO  0  KP  X  KQ    KR    KS    KT    KU     KV  H  KW  p  KX    KY    KZ    K[    K\  8  K]  `  K^    K_    K`    Ka     Kb  (  Kc  P  Kd  x  Ke    Kf    Kg    Kh    Ki  @  Kj  h  Kk    Kl    Km    Kn    Ko  ,  Kp  R  Kq  z  Kr    Ks    Kt    Ku    Kv  >  Kw  e  Kx    Ky    Kz    K{    K|  ,  K}  S  K~  {  K    K    K    K    K  C  K  k  K    K    K    K  
  K  2  K  Z  K    K    K    K    K  "  K  I  K  p  K    K    K    K    K  7  K  _  K    K    K    K    K  &  K  N  K  u  K    K    K    K    K  <  K  c  K    K    K    K    K  *  K  Q  K  y  K    K    K    K    K  A  K  i  K    K    K    K    K  0  K  X  K    K    K    K    K    K  G  K  o  K    K    K    K    K  7  K  _  K    K    K    K    K  "  K  J  K  q  K    K    K    K    K  8  K  `  K    K    K    K     K  '  K  O  K  w  K    K    K    K    K  <  K  d  K    K    K    K    K  '  K  O  K  w  K    K    K    K    K  >  K  f  K    K  ¶  K    K    K  .  K  V  K  ~  K  æ  K    K    K    K  E  K  m  K  ĕ  K  Ľ  K    K    K  5  K  ]  K  Ņ  L   ŭ  L    L    L  %  L  M  L  s  L  ƛ  L    L    L	    L
  8  L  `  L  Ǌ  L  ǲ  L    L    L  *  L  O  L  w  L  ȟ  L    L    L    L  ?  L  g  L  ɏ  L  ɷ  L    L    L  -  L  U  L  }  L   ʥ  L!    L"    L#    L$  C  L%  k  L&  ˓  L'  ˻  L(    L)  	  L*  1  L+  Y  L,  ̀  L-  ̧  L.    L/    L0    L1  F  L2  n  L3  ͖  L4  ;  L5    L6    L7  2  L8  Z  L9  ΁  L:  Ω  L;    L<    L=  !  L>  I  L?  p  L@  ϗ  LA  Ͽ  LB    LC    LD  9  LE  a  LF  Љ  LG  б  LH    LI     LJ  '  LK  O  LL  w  LM  ў  LN    LO    LP    LQ  ;  LR  c  LS  ҋ  LT  ҳ  LU    LV    LW  +  LX  S  LY  w  LZ  ӟ  L[    L\    L]    L^  ?  L_  g  L`  ԏ  La  Է  Lb    Lc    Ld  /  Le  W  Lf  }  Lg  ե  Lh    Li    Lj    Lk  E  Ll  i  Lm  ֑  Ln  ֹ  Lo    Lp  	  Lq  0  Lr  X  Ls  ׀  Lt  ר  Lu    Lv    Lw    Lx  F  Ly  n  Lz  ؕ  L{  ؼ  L|    L}    L~  4  L  \  L  ل  L  ٬  L    L    L  $  L  L  L  t  L  ڛ  L    L    L    L  :  L  b  L  ۊ  L  ۲  L    L    L  *  L  R  L  z  L  ܢ  L    L    L    L  B  L  j  L  ݒ  L  ݺ  L    L  
  L  2  L  Z  L  ނ  L  ު  L    L    L  "  L  J  L  r  L  ߚ  L    L    L    L  8  L  `  L    L    L    L     L  (  L  P  L  x  L    L    L    L    L  >  L  f  L    L    L    L    L  .  L  U  L  }  L    L    L    L    L  C  L  k  L    L    L    L  	  L  1  L  Y  L    L    L    L    L  !  L  I  L  q  L    L    L    L    L  5  L  ]  L    L    L    L    L  %  L  M  L  u  L    L    L    L    L  =  L  e  L    L    L    L    L  -  L  U  L  }  L    L    L    L    L  E  L  m  L    L    L    L    L  5  L  ]  L    L    L    L    L  %  L  M  M   u  M    M    M    M    M  =  M  e  M    M    M	    M
    M  -  M  U  M  }  M    M    M    M    M  B  M  j  M    M    M    M    M  0  M  X  M    M    M    M    M     M  H  M   p  M!    M"    M#    M$    M%  7  M&  _  M'    M(    M)    M*    M+  '  M,  O  M-  w  M.    M/    M0    M1    M2  ?  M3  g  M4    M5    M6    M7    M8  /  M9  W  M:    M;    M<    M=    M>    M?  G  M@  o  MA    MB    MC    MD    ME  7  MF  _  MG    MH    MI    MJ    MK  '  ML  O  MM  w  MN    MO    MP    MQ    MR  =  MS  c  MT    MU    MV    MW    MX  )  MY  Q  MZ  y  M[    M\    M]    M^    M_  ?  M`  f  Ma    Mb    Mc    Md    Me  *  Mf  R  Mg  y  Mh    Mi    Mj    Mk    Ml  @  Mm  h  Mn    Mo    Mp    Mq    Mr  /  Ms  W  Mt    Mu    Mv    Mw    Mx     My   F  Mz   n  M{     M|     M}     M~    M  6  M  ^  M    M    M    M    M  $  M  L  M  t  M    M    M    M    M  <  M  d  M    M    M    M    M  *  M  R  M  z  M    M    M    M    M  B  M  j  M    M    M    M    M  0  M  V  M  |  M    M    M    M    M  D  M  l  M    M    M    M    M  4  M  [  M    M    M    M    M  	#  M  	K  M  	s  M  	  M  	  M  	  M  	  M  
  M  
  M  
,  M  
A  M  
V  M  
k  M  
  M  
  M  
  M  
  M  
  M    M  !  M  =  M  Y  M  u  M    M    M    M    M    M    M  9  M  U  M  q  M    M    M    M    M    M    M  5  M  Q  M  m  M    M    M    M    M    M    M  1  M  M  M  i  M    M    M    M    M    M    M  -  M  I  M  e  M    M    M    M    M    M    M  )  M  E  M  a  M  }  M    M    M    M    M  	  M  %  M  A  M  ]  M  y  N     N    N    N    N    N  7  N  ^  N  }  N    N	    N
    N    N  9  N  `  N    N    N    N    N    N  C  N  k  N    N    N    N    N  +  N  R  N  y  N    N    N    N    N   7  N!  ^  N"    N#    N$    N%    N&  "  N'  I  N(  q  N)  }  N*    N+    N,    N-    N.    N/  7  N0  [  N1    N2    N3    N4    N5    N6  ?  N7  M  N8  a  N9    N:    N;    N<    N=  #  N>  J  N?  r  N@    NA    NB    NC    ND    NE  -  NF  U  NG  }  NH    NI    NJ    NK    NL  +  NM  O  NN  w  NO    NP    NQ    NR    NS  :  NT  b  NU    NV    NW    NX    NY  *  NZ  K  N[  j  N\  {  N]    N^    N_    N`    Na  3  Nb  W  Nc  |  Nd    Ne    Nf    Ng     Nh   8  Ni   `  Nj     Nk     Nl     Nm     Nn  !  No  !?  Np  !g  Nq  !  Nr  !  Ns  !  Nt  "  Nu  "+  Nv  "S  Nw  "w  Nx  "  Ny  "  Nz  "  N{  #  N|  #:  N}  #`  N~  #  N  #  N  #  N  #  N  $$  N  $L  N  $t  N  $  N  $  N  $  N  $  N  %  N  %>  N  %f  N  %  N  %  N  %  N  %  N  &   N  &G  N  &n  N  &  N  &  N  &  N  '  N  '*  N  'Q  N  'v  N  '  N  '  N  '  N  (  N  (3  N  (X  N  (}  N  (  N  (  N  (  N  )  N  ).  N  )R  N  )z  N  )  N  )  N  )  N  *  N  *B  N  *j  N  *  N  *  N  *  N  +
  N  +2  N  +Z  N  +  N  +  N  +  N  +  N  ,"  N  ,J  N  ,r  N  ,  N  ,  N  ,  N  ,  N  -  N  -E  N  -m  N  -  N  -  N  -  N  .
  N  .2  N  .X  N  .  N  .  N  .  N  .  N  /   N  /H  N  /n  N  /  N  /  N  /  N  0  N  02  N  0Y  N  0  N  0  N  0  N  0  N  1!  N  1G  N  1o  N  1  N  1  N  1  N  2  N  24  N  2\  N  2  N  2  N  2  N  2  N  3  N  3F  N  3n  N  3  N  3  N  3  N  4  N  44  N  4\  N  4  N  4  N  4  N  4  N  5   N  5H  N  5n  N  5  N  5  N  5  N  6  N  66  N  6]  N  6  N  6  N  6  N  6  O   7%  O  7M  O  7t  O  7  O  7  O  7  O  8  O  8:  O  8b  O	  8  O
  8  O  8  O  9  O  9*  O  9R  O  9z  O  9  O  9  O  9  O  :  O  :B  O  :j  O  :  O  :  O  :  O  ;
  O  ;2  O  ;Z  O  ;  O  ;  O  ;  O  ;  O   <"  O!  <J  O"  <r  O#  <  O$  <  O%  <  O&  =  O'  =:  O(  =b  O)  =  O*  =  O+  =  O,  =  O-  >&  O.  >N  O/  >v  O0  >  O1  >  O2  >  O3  ?  O4  ?<  O5  ?d  O6  ?  O7  ?  O8  ?  O9  ?  O:  @&  O;  @L  O<  @t  O=  @  O>  @  O?  @  O@  A  OA  A8  OB  A^  OC  A  OD  A  OE  A  OF  A  OG  B$  OH  BL  OI  Bt  OJ  B  OK  B  OL  B  OM  C  ON  C:  OO  Cb  OP  C  OQ  C  OR  C  OS  D  OT  D*  OU  DR  OV  Dz  OW  D  OX  D  OY  D  OZ  E  O[  EB  O\  Ej  O]  E  O^  E  O_  E  O`  F  Oa  F0  Ob  FX  Oc  F  Od  F  Oe  F  Of  F  Og  G  Oh  GE  Oi  Gm  Oj  G  Ok  G  Ol  G  Om  H  On  H3  Oo  H[  Op  H  Oq  H  Or  H  Os  H  Ot  I!  Ou  II  Ov  Iq  Ow  I  Ox  I  Oy  I  Oz  J  O{  J9  O|  Ja  O}  J  O~  J  O  J  O  K  O  K'  O  KO  O  Kw  O  K  O  K  O  K  O  L  O  L?  O  Le  O  L  O  L  O  L  O  M  O  M+  O  MS  O  M{  O  M  O  M  O  M  O  N  O  NC  O  Ni  O  N  O  N  O  N  O  O  O  O-  O  OU  O  O}  O  O  O  O  O  O  O  P  O  PE  O  Pm  O  P  O  P  O  P  O  Q  O  Q1  O  QY  O  Q  O  Q  O  Q  O  Q  O  R!  O  RI  O  Rq  O  R  O  R  O  R  O  S  O  S9  O  Sa  O  S  O  S  O  S  O  S  O  T%  O  TM  O  Tu  O  T  O  T  O  T  O  U  O  U;  O  Uc  O  U  O  U  O  U  O  V  O  V+  O  VS  O  V{  O  V  O  V  O  V  O  W  O  WB  O  Wf  O  W  O  W  O  W  O  X  O  X*  O  XR  O  Xx  O  X  O  X  O  X  O  Y  O  Y@  O  Yh  O  Y  O  Y  O  Y  O  Z  O  Z0  O  ZX  O  Z  O  Z  O  Z  O  Z  O  [   O  [H  O  [p  O  [  O  [  O  [  O  \  O  \8  O  \`  O  \  O  \  O  \  O  ]   O  ]&  O  ]N  O  ]v  O  ]  O  ]  O  ]  O  ^  O  ^>  O  ^f  O  ^  O  ^  P   ^  P  _  P  _.  P  _V  P  _~  P  _  P  _  P  _  P  `  P	  `D  P
  `l  P  `  P  `  P  `  P  a
  P  a2  P  aZ  P  a  P  a  P  a  P  a  P  b  P  bD  P  bl  P  b  P  b  P  b  P  c  P  c0  P  cV  P  c~  P  c  P   c  P!  c  P"  d  P#  dD  P$  dl  P%  d  P&  d  P'  d  P(  e  P)  e4  P*  e\  P+  e  P,  e  P-  e  P.  e  P/  f$  P0  fL  P1  ft  P2  f  P3  f  P4  f  P5  g  P6  g<  P7  gd  P8  g  P9  g  P:  g  P;  h  P<  h,  P=  hT  P>  h|  P?  h  P@  h  PA  h  PB  i  PC  iD  PD  il  PE  i  PF  i  PG  i  PH  j  PI  j2  PJ  jZ  PK  j  PL  j  PM  j  PN  j  PO  k"  PP  kH  PQ  kp  PR  k  PS  k  PT  k  PU  l  PV  l8  PW  l`  PX  l  PY  l  PZ  l  P[  l  P\  m&  P]  mN  P^  mv  P_  m  P`  m  Pa  m  Pb  n  Pc  n<  Pd  nd  Pe  n  Pf  n  Pg  n  Ph  o  Pi  o,  Pj  oT  Pk  oz  Pl  o  Pm  o  Pn  o  Po  p  Pp  pB  Pq  pj  Pr  p  Ps  p  Pt  p  Pu  q
  Pv  q2  Pw  qZ  Px  q  Py  q  Pz  q  P{  q  P|  r"  P}  rJ  P~  rr  P  r  P  r  P  r  P  s  P  s:  P  sb  P  s  P  s  P  s  P  t  P  t*  P  tR  P  tx  P  t  P  t  P  t  P  u  P  u>  P  uf  P  u  P  u  P  u  P  v  P  v.  P  vV  P  v~  P  v  P  v  P  v  P  w  P  wF  P  wl  P  w  P  w  P  w  P  x  P  x4  P  x\  P  x  P  x  P  x  P  x  P  y$  P  yL  P  yt  P  y  P  y  P  y  P  z  P  z<  P  zb  P  z  P  z  P  z  P  {  P  {*  P  {R  P  {z  P  {  P  {  P  {  P  |  P  |B  P  |j  P  |  P  |  P  |  P  }
  P  }2  P  }Z  P  }  P  }  P  }  P  }  P  ~"  P  ~J  P  ~r  P  ~  P  ~  P  ~  P    P  :  P  b  P    P    P    P    P  *  P  R  P  z  P    P    P    P    P  B  P  j  P    P    P    P  
  P  2  P  Z  P    P    P    P    P  "  P  J  P  r  P    P    P    P    P  :  P  b  P    P    P    P     P  (  P  P  P  x  P    P    P    P    P  @  P  h  P    Q     Q    Q    Q  /  Q  W  Q    Q    Q    Q    Q	    Q
  G  Q  o  Q    Q    Q    Q    Q  7  Q  _  Q    Q    Q    Q    Q  '  Q  O  Q  w  Q    Q    Q    Q    Q  ?  Q  g  Q    Q     Q!    Q"    Q#  /  Q$  W  Q%    Q&    Q'    Q(    Q)    Q*  G  Q+  o  Q,    Q-    Q.    Q/    Q0  7  Q1  _  Q2    Q3    Q4    Q5    Q6  '  Q7  O  Q8  w  Q9    Q:    Q;    Q<    Q=  ?  Q>  g  Q?    Q@    QA    QB    QC  ,  QD  S  QE  z  QF    QG    QH    QI    QJ  <  QK  d  QL    QM    QN    QO    QP  ,  QQ  O  QR  s  QS    QT    QU    QV    QW  4  QX  \  QY    QZ    Q[    Q\    Q]     Q^  H  Q_  p  Q`    Qa    Qb    Qc    Qd  8  Qe  `  Qf    Qg    Qh    Qi    Qj    Qk  G  Ql  l  Qm    Qn    Qo    Qp    Qq  +  Qr  Q  Qs  x  Qt    Qu    Qv    Qw    Qx  ?  Qy  g  Qz    Q{    Q|    Q}    Q~  /  Q  W  Q    Q    Q    Q    Q    Q  <  Q  `  Q    Q    Q    Q    Q    Q  @  Q  g  Q    Q    Q    Q    Q    Q  2  Q  Z  Q    Q    Q    Q    Q    Q  %  Q  J  Q  q  Q    Q    Q    Q  
  Q  1  Q  X  Q    Q    Q    Q    Q    Q  @  Q  g  Q    Q    Q    Q    Q    Q  >  Q  c  Q    Q    Q    Q    Q  %  Q  L  Q  r  Q    Q    Q    Q    Q  9  Q  a  Q    Q    Q    Q    Q  '  Q  O  Q  w  Q    Q    Q    Q    Q  <  Q  d  Q    Q    Q    Q    Q  (  Q  P  Q  u  Q    Q    Q    Q    Q  8  Q  `  Q    Q    Q    Q    Q  '  Q  O  Q  w  Q    Q    Q    Q    Q  =  Q  e  Q    Q    Q    Q    Q  )  Q  P  Q  w  Q    Q    Q    Q    Q  =  Q  d  Q    Q    Q    Q    Q     Q  C  Q  g  Q    Q    Q    Q    Q    Q  @  Q  c  R     R    R    R    R     R  '  R  N  R  v  R    R	    R
    R    R  4  R  Z  R  ~  R    R    R    R    R  <  R  b  R    R    R    R    R    R  E  R  i  R    R    R    R    R   )  R!  Q  R"  w  R#    R$    R%    R&    R'  3  R(  Y  R)    R*    R+    R,    R-    R.  =  R/  c  R0    R1    R2    R3    R4  #  R5  I  R6  o  R7    R8    R9    R:    R;  1  R<  W  R=  }  R>    R?    R@    RA    RB  9  RC  _  RD    RE    RF    RG    RH    RI  ;  RJ  a  RK    RL    RM    RN    RO  !  RP  G  RQ  m  RR    RS    RT    RU    RV  -  RW  S  RX  y  RY    RZ    R[    R\    R]  ;  R^  a  R_    R`    Ra    Rb    Rc    Rd  E  Re  k  Rf    Rg    Rh    Ri    Rj  +  Rk  S  Rl  {  Rm    Rn    Ro    Rp    Rq  ;  Rr  c  Rs    Rt    Ru    Rv    Rw  !  Rx  G  Ry  m  Rz    R{    R|    R}  	  R~  1  R  W  R  }  R    R    R    R    R  ?  R  e  R    R    R    R    R  +  R  Q  R  y  R    R    R    R    R  ;  R  c  R  Ë  R  ó  R    R    R  )  R  Q  R  y  R  ġ  R    R    R    R  7  R  ]  R  Ń  R  ū  R    R    R    R  C  R  i  R  Ə  R  Ƶ  R    R    R  )  R  O  R  u  R  Ǜ  R    R    R    R  3  R  [  R  ȃ  R  ȫ  R    R    R    R  A  R  i  R  ɏ  R  ɵ  R    R    R  '  R  M  R  s  R  ʙ  R  ʿ  R    R    R  1  R  S  R  y  R  ˡ  R    R    R    R  =  R  c  R  ̉  R  ̯  R    R    R  !  R  G  R  m  R  ͓  R  ͹  R    R    R  /  R  S  R  y  R  Ρ  R    R    R    R  =  R  e  R  ύ  R  ϳ  R    R    R  #  R  I  R  o  R  З  R  п  R    R    R  7  R  ]  R  х  R  ѭ  R    R    R  #  R  K  R  s  R  қ  R    R    R    R  1  R  W  R  {  R  ӟ  S     S    S    S  9  S  _  S  ԅ  S  Ԫ  S    S    S	    S
  @  S  f  S  Ռ  S  ղ  S    S    S  &  S  L  S  r  S  ֘  S  ־  S    S    S  +  S  S  S  y  S  נ  S    S    S  	  S  ,  S  O  S   r  S!  ؕ  S"  ظ  S#    S$    S%  !  S&  D  S'  g  S(  ي  S)  ٭  S*    S+    S,    S-  <  S.  _  S/  ڂ  S0  ڥ  S1    S2    S3    S4  :  S5  `  S6  ۆ  S7  ۫  S8    S9    S:    S;  7  S<  Z  S=  }  S>  ܣ  S?    S@    SA    SB  4  SC  [  SD  ݃  SE  ݫ  SF    SG    SH  #  SI  K  SJ  s  SK  ޛ  SL    SM    SN    SO  7  SP  _  SQ  ߄  SR  ߬  SS    ST    SU  $  SV  L  SW  t  SX    SY    SZ    S[    S\  <  S]  R  S^  z  S_    S`    Sa    Sb    Sc  8  Sd  \  Se    Sf    Sg    Sh    Si    Sj  ,  Sk  D  Sl  i  Sm    Sn    So    Sp    Sq    Sr  D  Ss  g  St    Su    Sv    Sw    Sx  "  Sy  H  Sz  n  S{    S|    S}    S~    S  -  S  S  S  y  S    S    S    S    S  <  S  c  S    S    S    S    S  &  S  M  S  t  S    S    S    S    S  7  S  ^  S    S    S    S    S  !  S  H  S  o  S    S    S    S    S  2  S  Y  S    S    S    S    S    S  D  S  k  S    S    S    S    S  /  S  V  S  }  S    S    S    S    S  A  S  i  S    S    S    S    S  )  S  Q  S  y  S    S    S    S    S  8  S  _  S    S    S    S    S  &  S  N  S  u  S    S    S    S    S  8  S  ^  S    S    S    S    S  #  S  K  S  r  S    S    S    S    S  4  S  \  S    S    S    S    S  #  S  K  S  s  S    S    S    S    S    S  @  S  c  S    S    S    S    S    S  :  S  ^  S    S    S    S    S    S  D  S  k  S    S    S    S    S    S  C  S  b  T     T    T    T    T    T  C  T  a  T    T    T	    T
    T    T  A  T  b  T    T    T    T    T    T  D  T  i  T    T    T    T    T    T  A  T  f  T    T    T    T    T   %  T!  K  T"  p  T#    T$    T%    T&    T'  -  T(  P  T)  u  T*    T+    T,    T-     T.   5  T/   [  T0     T1     T2     T3     T4    T5  ?  T6  e  T7    T8    T9    T:    T;  #  T<  G  T=  m  T>    T?    T@    TA    TB  +  TC  J  TD  o  TE    TF    TG    TH    TI  0  TJ  W  TK    TL    TM    TN    TO    TP  7  TQ  [  TR    TS    TT    TU    TV    TW  ;  TX  `  TY    TZ    T[    T\    T]    T^  =  T_  `  T`    Ta    Tb    Tc    Td    Te  @  Tf  f  Tg    Th    Ti    Tj    Tk  	  Tl  	C  Tm  	d  Tn  	  To  	  Tp  	  Tq  	  Tr  
  Ts  
D  Tt  
j  Tu  
  Tv  
  Tw  
  Tx  
  Ty  !  Tz  G  T{  l  T|    T}    T~    T    T  "  T  E  T  k  T    T    T    T    T  '  T  J  T  p  T    T    T    T    T  .  T  V  T  |  T    T    T    T    T  8  T  ^  T    T    T    T    T    T  A  T  f  T    T    T    T    T  !  T  H  T  n  T    T    T    T    T  -  T  S  T  y  T    T    T    T    T  :  T  ^  T    T    T    T    T    T  B  T  h  T    T    T    T    T  "  T  G  T  l  T    T    T    T    T  '  T  M  T  s  T    T    T    T    T  6  T  [  T    T    T    T    T    T  8  T  ]  T    T    T    T    T    T  ?  T  e  T    T    T    T     T  &  T  L  T  r  T    T    T    T    T  &  T  N  T  t  T    T    T    T    T  -  T  T  T  z  T    T    T    T    T  7  T  ]  T    T    T    T    T    T  C  T  h  T    T    T    U     U  )  U  O  U  w  U    U    U    U     U   3  U	   V  U
   ~  U     U     U     U  !  U  !<  U  !b  U  !  U  !  U  !  U  !  U  "%  U  "K  U  "n  U  "  U  "  U  "  U  #  U  #.  U  #V  U  #{  U  #  U   #  U!  #  U"  $  U#  $:  U$  $`  U%  $  U&  $  U'  $  U(  $  U)  %  U*  %B  U+  %j  U,  %  U-  %  U.  %  U/  &  U0  &'  U1  &M  U2  &q  U3  &  U4  &  U5  &  U6  '
  U7  '0  U8  'V  U9  '|  U:  '  U;  '  U<  '  U=  (  U>  (<  U?  (c  U@  (  UA  (  UB  (  UC  (  UD  )"  UE  )G  UF  )m  UG  )  UH  )  UI  )  UJ  *  UK  *&  UL  *L  UM  *q  UN  *  UO  *  UP  *  UQ  +  UR  +.  US  +S  UT  +{  UU  +  UV  +  UW  +  UX  ,  UY  ,;  UZ  ,c  U[  ,  U\  ,  U]  ,  U^  ,  U_  -  U`  -E  Ua  -m  Ub  -  Uc  -  Ud  -  Ue  .  Uf  .,  Ug  .R  Uh  .x  Ui  .  Uj  .  Uk  .  Ul  /  Um  /8  Un  /^  Uo  /  Up  /  Uq  /  Ur  /  Us  0  Ut  0D  Uu  0j  Uv  0  Uw  0  Ux  0  Uy  1  Uz  1'  U{  1L  U|  1t  U}  1  U~  1  U  1  U  2  U  21  U  2W  U  2|  U  2  U  2  U  2  U  3  U  39  U  3_  U  3  U  3  U  3  U  3  U  4  U  4A  U  4i  U  4  U  4  U  4  U  5   U  5%  U  5J  U  5p  U  5  U  5  U  5  U  6  U  63  U  6[  U  6~  U  6  U  6  U  6  U  7  U  7:  U  7`  U  7  U  7  U  7  U  7  U  8  U  8A  U  8i  U  8  U  8  U  8  U  9  U  9*  U  9P  U  9w  U  9  U  9  U  9  U  :  U  :8  U  :^  U  :  U  :  U  :  U  :  U  ;  U  ;B  U  ;j  U  ;  U  ;  U  ;  U  <  U  <+  U  <S  U  <y  U  <  U  <  U  <  U  =  U  =9  U  =_  U  =  U  =  U  =  U  =  U  >  U  >B  U  >j  U  >  U  >  U  >  U  ?  U  ?,  U  ?R  U  ?x  U  ?  U  ?  U  ?  U  @  U  @7  U  @\  U  @  U  @  U  @  U  @  U  A  U  A>  U  Ad  U  A  U  A  U  A  U  B   U  B%  U  BM  U  Bu  U  B  U  B  U  B  U  C  U  C5  U  C[  U  C  U  C  U  C  U  C  U  D  U  D@  U  Df  U  D  U  D  U  D  U  E   V   E&  V  EL  V  Er  V  E  V  E  V  E  V  F	  V  F1  V  FY  V	  F  V
  F  V  F  V  F  V  G  V  GC  V  Gi  V  G  V  G  V  G  V  H  V  H+  V  HN  V  Hu  V  H  V  H  V  H  V  I  V  I6  V  I^  V  I  V  I  V  I  V   I  V!  J  V"  JC  V#  Jh  V$  J  V%  J  V&  J  V'  K  V(  K)  V)  KO  V*  Ku  V+  K  V,  K  V-  K  V.  L  V/  L3  V0  L[  V1  L  V2  L  V3  L  V4  L  V5  M  V6  MB  V7  Mj  V8  M  V9  M  V:  M  V;  N  V<  N-  V=  NU  V>  Nz  V?  N  V@  N  VA  N  VB  O  VC  O:  VD  O`  VE  O  VF  O  VG  O  VH  O  VI  P   VJ  PF  VK  Pk  VL  P  VM  P  VN  P  VO  Q  VP  Q,  VQ  QQ  VR  Qw  VS  Q  VT  Q  VU  Q  VV  R  VW  R6  VX  R^  VY  R  VZ  R  V[  R  V\  R  V]  S   V^  SH  V_  Sp  V`  S  Va  S  Vb  S  Vc  T  Vd  T/  Ve  TW  Vf  T}  Vg  T  Vh  T  Vi  T  Vj  U  Vk  U?  Vl  Ue  Vm  U  Vn  U  Vo  U  Vp  U  Vq  V#  Vr  VI  Vs  Vq  Vt  V  Vu  V  Vv  V  Vw  W  Vx  W1  Vy  WY  Vz  W  V{  W  V|  W  V}  W  V~  X  V  XB  V  Xh  V  X  V  X  V  X  V  X  V  Y#  V  YJ  V  Yr  V  Y  V  Y  V  Y  V  Z  V  Z5  V  Z[  V  Z  V  Z  V  Z  V  Z  V  [  V  [D  V  [j  V  [  V  [  V  [  V  \  V  \,  V  \R  V  \s  V  \  V  \  V  \  V  ]  V  ]4  V  ]Z  V  ]  V  ]  V  ]  V  ]  V  ^  V  ^C  V  ^i  V  ^  V  ^  V  ^  V  _  V  _+  V  _S  V  _{  V  _  V  _  V  _  V  `  V  `?  V  `g  V  `  V  `  V  `  V  a  V  a+  V  aQ  V  av  V  a  V  a  V  a  V  b  V  b6  V  b\  V  b  V  b  V  b  V  b  V  c!  V  cG  V  cm  V  c  V  c  V  c  V  d  V  d0  V  dX  V  d  V  d  V  d  V  d  V  e  V  e>  V  ed  V  e  V  e  V  e  V  e  V  f  V  f8  V  f[  V  f~  V  f  V  f  V  f  V  g  V  g)  V  gL  V  go  V  g  V  g  V  g  V  g  V  h  V  hB  V  he  V  h  V  h  V  h  V  h  V  i  V  i8  V  i[  V  i~  V  i  V  i  V  i  V  j
  V  j-  V  jP  V  js  V  j  V  j  V  j  V  j  W   k"  W  kF  W  ki  W  k  W  k  W  k  W  k  W  l  W  l<  W	  l_  W
  l  W  l  W  l  W  l  W  m  W  m4  W  mW  W  mz  W  m  W  m  W  m  W  n	  W  n-  W  nQ  W  nu  W  n  W  n  W  n  W  o  W  o(  W  oO  W  ow  W   o  W!  o  W"  o  W#  p  W$  p7  W%  p]  W&  p  W'  p  W(  p  W)  p  W*  q$  W+  qK  W,  qr  W-  q  W.  q  W/  q  W0  r  W1  r6  W2  r^  W3  r  W4  r  W5  r  W6  r  W7  s   W8  sH  W9  sm  W:  s  W;  s  W<  s  W=  t  W>  t.  W?  tV  W@  t~  WA  t  WB  t  WC  t  WD  u  WE  uE  WF  um  WG  u  WH  u  WI  u  WJ  v
  WK  v2  WL  vZ  WM  v  WN  v  WO  v  WP  v  WQ  w   WR  wH  WS  wo  WT  w  WU  w  WV  w  WW  x	  WX  x1  WY  xX  WZ  x}  W[  x  W\  x  W]  x  W^  y  W_  yC  W`  yk  Wa  y  Wb  y  Wc  y  Wd  z	  We  z/  Wf  zV  Wg  z}  Wh  z  Wi  z  Wj  z  Wk  {  Wl  {D  Wm  {l  Wn  {  Wo  {  Wp  {  Wq  |  Wr  |3  Ws  |[  Wt  |  Wu  |  Wv  |  Ww  |  Wx  }  Wy  }E  Wz  }m  W{  }  W|  }  W}  }  W~  ~  W  ~5  W  ~]  W  ~  W  ~  W  ~  W  ~  W  "  W  J  W  r  W    W    W    W    W  6  W  ^  W    W    W    W    W  #  W  J  W  r  W    W    W    W    W  4  W  \  W    W    W    W    W  #  W  K  W  s  W    W    W    W    W  9  W  ^  W    W    W    W    W     W  H  W  o  W    W    W    W    W  3  W  [  W    W    W    W    W  #  W  K  W  s  W    W    W    W    W  :  W  a  W    W    W    W    W  (  W  N  W  t  W    W    W    W    W  ;  W  c  W    W    W    W    W  *  W  R  W  z  W    W    W    W    W  A  W  g  W    W    W    W    W  +  W  S  W  z  W    W    W    W    W  B  W  j  W    W    W    W  	  W  1  W  Y  W    W    W    W    W  !  W  G  W  n  W    W    W    W    W  5  W  ]  W    W    W    W    X   !  X  I  X  q  X    X    X    X    X  6  X  ]  X	    X
    X    X    X     X  H  X  p  X    X    X    X    X  6  X  ^  X    X    X    X    X  !  X  I  X  q  X    X    X    X     X!  9  X"  `  X#    X$    X%    X&    X'  '  X(  O  X)  w  X*    X+    X,    X-    X.  =  X/  e  X0    X1    X2    X3    X4  *  X5  R  X6  z  X7    X8    X9    X:    X;  A  X<  i  X=    X>    X?    X@    XA  /  XB  V  XC  }  XD    XE    XF    XG    XH  D  XI  i  XJ    XK    XL    XM    XN  .  XO  V  XP  }  XQ    XR    XS    XT    XU  D  XV  l  XW    XX    XY    XZ    X[  4  X\  \  X]    X^    X_    X`    Xa  #  Xb  K  Xc  s  Xd    Xe    Xf    Xg    Xh  8  Xi  `  Xj    Xk    Xl    Xm    Xn  &  Xo  N  Xp  v  Xq    Xr    Xs    Xt    Xu  =  Xv  e  Xw    Xx    Xy    Xz    X{  +  X|  S  X}  {  X~    X    X    X    X  C  X  k  X    X    X    X  
  X  2  X  Z  X    X    X    X    X  !  X  I  X  q  X    X    X    X    X  8  X  `  X    X    X    X     X  (  X  P  X  x  X    X    X    X    X  =  X  e  X    X    X    X    X  ,  X  S  X  {  X    X    X    X    X  B  X  j  X    X    X    X    X  0  X  X  X    X    X    X    X    X  F  X  n  X    X    X    X    X  5  X  ]  X    X    X    X    X  #  X  K  X  s  X    X    X    X    X  ;  X  b  X    X    X    X     X  (  X  P  X  x  X    X    X    X    X  <  X  d  X    X    X    X    X  ,  X  T  X  |  X    X    X    X    X  C  X  k  X    X    X    X  	  X  1  X  Y  X    X    X    X    X     X  G  X  o  X    X    X    X    X  5  X  \  X    X    Y     Y    Y  $  Y  L  Y  q  Y    Y    Y    Y    Y	  9  Y
  a  Y    Y    Y    Y    Y  )  Y  Q  Y  y  Y    Y    Y    Y    Y  :  Y  `  Y    Y    Y    Y    Y    Y  F  Y  n  Y    Y     Y!    Y"    Y#  6  Y$  ^  Y%    Y&    Y'    Y(    Y)  &  Y*  M  Y+  u  Y,    Y-    Y.    Y/    Y0  =  Y1  e  Y2    Y3    Y4    Y5    Y6  ,  Y7  T  Y8  |  Y9  ¤  Y:    Y;    Y<    Y=  D  Y>  l  Y?  Ô  Y@  û  YA    YB  	  YC  1  YD  Y  YE  ā  YF  ĩ  YG    YH    YI  !  YJ  I  YK  q  YL  ř  YM    YN    YO    YP  9  YQ  a  YR  Ɖ  YS  Ʊ  YT    YU    YV  )  YW  Q  YX  y  YY  ǡ  YZ    Y[    Y\    Y]  @  Y^  h  Y_  Ȑ  Y`  ȸ  Ya    Yb    Yc  0  Yd  W  Ye    Yf  ɧ  Yg    Yh    Yi    Yj  G  Yk  o  Yl  ʗ  Ym  ʿ  Yn    Yo    Yp  7  Yq  ^  Yr  ˆ  Ys  ˮ  Yt    Yu    Yv  &  Yw  L  Yx  t  Yy  ̜  Yz    Y{    Y|    Y}  ;  Y~  c  Y  ͈  Y  Ͱ  Y    Y    Y  $  Y  K  Y  s  Y  Κ  Y    Y    Y    Y  5  Y  \  Y  τ  Y  Ϭ  Y    Y    Y  $  Y  K  Y  r  Y  К  Y    Y    Y    Y  8  Y  `  Y  ч  Y  ѯ  Y    Y    Y  '  Y  O  Y  v  Y  ҝ  Y    Y    Y    Y  <  Y  d  Y  ӌ  Y  Ӵ  Y    Y    Y  ,  Y  S  Y  {  Y  ԣ  Y    Y    Y    Y  A  Y  g  Y  Վ  Y  ն  Y    Y    Y  ,  Y  T  Y  |  Y  ֤  Y    Y    Y    Y  A  Y  i  Y  ב  Y  ׹  Y    Y    Y  -  Y  U  Y  }  Y  إ  Y    Y    Y    Y  E  Y  m  Y  ٕ  Y  ٽ  Y    Y    Y  4  Y  \  Y  ڄ  Y  ګ  Y    Y    Y  "  Y  J  Y  r  Y  ۚ  Y    Y    Y    Y  :  Y  b  Y  ܊  Y  ܲ  Y    Y    Y  *  Y  R  Y  y  Y  ݡ  Y    Y    Y    Y  @  Y  g  Y  ގ  Y  ޶  Y    Y    Y  +  Y  S  Y  {  Y  ߡ  Y    Y    Y    Y  A  Y  i  Y    Y    Y    Y    Y  /  Y  V  Z   ~  Z    Z    Z    Z    Z  E  Z  l  Z    Z    Z	    Z
    Z  4  Z  Z  Z    Z    Z    Z    Z  !  Z  G  Z  o  Z    Z    Z    Z    Z  7  Z  _  Z    Z    Z    Z    Z  &  Z  N  Z   t  Z!    Z"    Z#    Z$    Z%  ;  Z&  c  Z'    Z(    Z)    Z*    Z+  +  Z,  S  Z-  {  Z.    Z/    Z0    Z1    Z2  C  Z3  k  Z4    Z5    Z6    Z7    Z8  /  Z9  W  Z:    Z;    Z<    Z=    Z>    Z?  G  Z@  n  ZA    ZB    ZC    ZD    ZE  6  ZF  \  ZG    ZH    ZI    ZJ    ZK  $  ZL  L  ZM  t  ZN    ZO    ZP    ZQ    ZR  <  ZS  d  ZT    ZU    ZV    ZW    ZX  ,  ZY  T  ZZ  |  Z[    Z\    Z]    Z^    Z_  C  Z`  k  Za    Zb    Zc    Zd    Ze  3  Zf  [  Zg    Zh    Zi    Zj    Zk  #  Zl  K  Zm  r  Zn    Zo    Zp    Zq    Zr  8  Zs  `  Zt    Zu    Zv    Zw    Zx  #  Zy  K  Zz  s  Z{    Z|    Z}    Z~    Z  ;  Z  c  Z    Z    Z    Z    Z  +  Z  R  Z  z  Z    Z    Z    Z    Z  B  Z  j  Z    Z    Z    Z  	  Z  1  Z  Y  Z    Z    Z    Z    Z     Z  H  Z  p  Z    Z    Z    Z    Z  6  Z  ^  Z    Z    Z    Z    Z  %  Z  M  Z  u  Z    Z    Z    Z    Z  <  Z  d  Z    Z    Z    Z    Z  *  Z  R  Z  y  Z    Z    Z    Z    Z  A  Z  i  Z    Z    Z    Z    Z  0  Z  X  Z    Z    Z    Z    Z      Z   H  Z   p  Z     Z     Z     Z    Z  8  Z  `  Z    Z    Z    Z     Z  (  Z  P  Z  x  Z    Z    Z    Z    Z  @  Z  h  Z    Z    Z    Z    Z  0  Z  X  Z    Z    Z    Z    Z    Z  G  Z  o  Z    Z    Z    Z    Z  7  Z  _  Z    Z    Z    Z    Z  '  Z  O  Z  w  Z    Z    Z    Z    Z  ?  Z  g  Z    Z    Z    Z  	  Z  	,  [   	T  [  	|  [  	  [  	  [  	  [  
  [  
C  [  
k  [  
  [	  
  [
  
  [    [  3  [  [  [    [    [    [    [  #  [  K  [  s  [    [    [    [    [  ;  [  c  [    [    [    [    [  +  [   S  [!  {  ["    [#    [$    [%    [&  C  ['  k  [(    [)    [*    [+  
  [,  2  [-  Z  [.    [/    [0    [1    [2  "  [3  I  [4  q  [5    [6    [7    [8    [9  9  [:  a  [;    [<    [=    [>    [?  )  [@  Q  [A  y  [B    [C    [D    [E    [F  A  [G  i  [H    [I    [J    [K  	  [L  1  [M  Y  [N    [O    [P    [Q    [R    [S  B  [T  e  [U    [V    [W    [X    [Y  +  [Z  S  [[  {  [\    []    [^    [_    [`  =  [a  d  [b    [c    [d    [e    [f  ,  [g  T  [h  |  [i    [j    [k    [l    [m  C  [n  j  [o    [p    [q    [r  	  [s  0  [t  X  [u    [v    [w    [x    [y     [z  H  [{  o  [|    [}    [~    [    [  7  [  M  [  u  [    [    [    [    [  ;  [  c  [    [    [    [    [  +  [  S  [  {  [    [    [    [     [   A  [   h  [     [     [     [  !  [  !0  [  !X  [  !  [  !  [  !  [  !  [  "  [  "F  [  "n  [  "  [  "  [  "  [  #  [  #4  [  #[  [  #  [  #  [  #  [  #  [  $#  [  $K  [  $s  [  $  [  $  [  $  [  %  [  %;  [  %c  [  %  [  %  [  %  [  &  [  &+  [  &S  [  &{  [  &  [  &  [  &  [  '  [  'C  [  'k  [  '  [  '  [  '  [  (  [  (3  [  ([  [  (  [  (  [  (  [  (  [  )#  [  )J  [  )r  [  )  [  )  [  )  [  *  [  *:  [  *b  [  *  [  *  [  *  [  +  [  +*  [  +R  [  +z  [  +  [  +  [  +  [  ,  [  ,B  [  ,j  [  ,  [  ,  [  ,  [  -
  [  -2  [  -Z  [  -  [  -  [  -  [  -  [  ."  [  .J  [  .r  [  .  [  .  [  .  [  /  [  /:  [  /b  [  /  [  /  [  /  [  0  [  0(  [  0P  [  0w  [  0  [  0  [  0  \   1  \  1<  \  1d  \  1  \  1  \  1  \  2  \  2,  \  2T  \	  2|  \
  2  \  2  \  2  \  3  \  3C  \  3k  \  3  \  3  \  3  \  4  \  4,  \  4T  \  4w  \  4  \  4  \  4  \  5  \  52  \  5Z  \  5  \  5  \  5  \   5  \!  6"  \"  6J  \#  6r  \$  6  \%  6  \&  6  \'  7  \(  7:  \)  7b  \*  7  \+  7  \,  7  \-  8   \.  8(  \/  8P  \0  8x  \1  8  \2  8  \3  8  \4  9  \5  9@  \6  9h  \7  9  \8  9  \9  9  \:  :   \;  :'  \<  :N  \=  :u  \>  :  \?  :  \@  :  \A  ;  \B  ;2  \C  ;Y  \D  ;  \E  ;  \F  ;  \G  ;  \H  <  \I  <=  \J  <d  \K  <  \L  <  \M  <  \N  <  \O  =#  \P  =H  \Q  =o  \R  =  \S  =  \T  =  \U  >  \V  >-  \W  >R  \X  >z  \Y  >  \Z  >  \[  >  \\  ?  \]  ?;  \^  ?`  \_  ?  \`  ?  \a  ?  \b  ?  \c  @"  \d  @J  \e  @p  \f  @  \g  @  \h  @  \i  A  \j  A7  \k  A_  \l  A  \m  A  \n  A  \o  A  \p  B  \q  BD  \r  Bc  \s  B  \t  B  \u  B  \v  B  \w  C  \x  C>  \y  Cc  \z  C  \{  C  \|  C  \}  C  \~  D  \  D@  \  Df  \  D  \  D  \  D  \  D  \  E  \  E;  \  Ea  \  E  \  E  \  E  \  E  \  F  \  F@  \  Ff  \  F  \  F  \  F  \  G   \  G&  \  GL  \  Gt  \  G  \  G  \  G  \  H  \  H/  \  HW  \  Hy  \  H  \  H  \  H  \  I  \  I3  \  IV  \  I~  \  I  \  I  \  I  \  J  \  J;  \  J`  \  J  \  J  \  J  \  J  \  K  \  K=  \  Kb  \  K  \  K  \  K  \  L   \  L%  \  LK  \  Lo  \  L  \  L  \  L  \  M	  \  M/  \  MU  \  My  \  M  \  M  \  M  \  N  \  N+  \  NS  \  Ny  \  N  \  N  \  N  \  O  \  O=  \  O]  \  O  \  O  \  O  \  O  \  P  \  P>  \  Pf  \  P  \  P  \  P  \  P  \  Q'  \  QM  \  Qr  \  Q  \  Q  \  Q  \  R  \  R,  \  RR  \  Rx  \  R  \  R  \  R  \  S  \  S8  \  S^  \  S  \  S  \  S  \  S  \  T   \  TH  \  Tn  \  T  \  T  \  T  \  U  \  U/  \  US  \  U{  \  U  \  U  \  U  \  V  \  V;  \  Vc  \  V  \  V  \  V  \  V  \  W%  ]   WK  ]  Wo  ]  W  ]  W  ]  W  ]  X  ]  X2  ]  XY  ]  X  ]	  X  ]
  X  ]  X  ]  Y  ]  YE  ]  Yk  ]  Y  ]  Y  ]  Y  ]  Z  ]  Z+  ]  ZS  ]  Zy  ]  Z  ]  Z  ]  Z  ]  [  ]  [8  ]  [`  ]  [  ]  [  ]  [  ]  [  ]   \$  ]!  \J  ]"  \r  ]#  \  ]$  \  ]%  \  ]&  ]  ]'  ]6  ](  ]^  ])  ]  ]*  ]  ]+  ]  ],  ]  ]-  ^  ].  ^D  ]/  ^d  ]0  ^  ]1  ^  ]2  ^  ]3  ^  ]4  _   ]5  _H  ]6  _n  ]7  _  ]8  _  ]9  _  ]:  `
  ];  `2  ]<  `Z  ]=  `  ]>  `  ]?  `  ]@  `  ]A  a  ]B  aC  ]C  ak  ]D  a  ]E  a  ]F  a  ]G  b	  ]H  b1  ]I  bY  ]J  b  ]K  b  ]L  b  ]M  b  ]N  c  ]O  cG  ]P  co  ]Q  c  ]R  c  ]S  c  ]T  d  ]U  d,  ]V  dT  ]W  dy  ]X  d  ]Y  d  ]Z  d  ][  e  ]\  eA  ]]  ei  ]^  e  ]_  e  ]`  e  ]a  f  ]b  f-  ]c  fS  ]d  fy  ]e  f  ]f  f  ]g  f  ]h  g  ]i  g>  ]j  gf  ]k  g  ]l  g  ]m  g  ]n  h  ]o  h*  ]p  hO  ]q  hu  ]r  h  ]s  h  ]t  h  ]u  i  ]v  i8  ]w  i`  ]x  i  ]y  i  ]z  i  ]{  i  ]|  j$  ]}  jL  ]~  jt  ]  j  ]  j  ]  j  ]  k  ]  k4  ]  k\  ]  k  ]  k  ]  k  ]  k  ]  l!  ]  lG  ]  lo  ]  l  ]  l  ]  l  ]  m	  ]  m1  ]  mW  ]  m  ]  m  ]  m  ]  m  ]  n  ]  nE  ]  nm  ]  n  ]  n  ]  n  ]  o  ]  o1  ]  oX  ]  o|  ]  o  ]  o  ]  o  ]  p  ]  p>  ]  pf  ]  p  ]  p  ]  p  ]  q  ]  q(  ]  qP  ]  qx  ]  q  ]  q  ]  q  ]  r  ]  r<  ]  rb  ]  r  ]  r  ]  r  ]  s   ]  s(  ]  sN  ]  sv  ]  s  ]  s  ]  s  ]  t  ]  t<  ]  td  ]  t  ]  t  ]  t  ]  u  ]  u*  ]  uR  ]  uz  ]  u  ]  u  ]  u  ]  v  ]  v@  ]  vh  ]  v  ]  v  ]  v  ]  w  ]  w,  ]  wT  ]  w|  ]  w  ]  w  ]  w  ]  x  ]  x@  ]  xh  ]  x  ]  x  ]  x  ]  x  ]  y  ]  y;  ]  yc  ]  y  ]  y  ]  y  ]  y  ]  z!  ]  zB  ]  zi  ]  z  ]  z  ]  z  ]  z  ]  {  ]  {C  ]  {k  ]  {  ]  {  ]  {  ]  |  ]  |!  ]  |@  ]  |a  ]  |  ]  |  ]  |  ]  |  ]  }!  ]  }H  ]  }p  ]  }  ]  }  ]  }  ^   ~  ^  ~%  ^  ~I  ^  ~m  ^  ~  ^  ~  ^  ~  ^    ^  -  ^	  S  ^
  y  ^    ^    ^    ^    ^  7  ^  ]  ^    ^    ^    ^    ^    ^  C  ^  i  ^    ^    ^    ^    ^  $  ^  J  ^  r  ^    ^     ^!    ^"    ^#  *  ^$  R  ^%  x  ^&    ^'    ^(    ^)    ^*  4  ^+  Z  ^,    ^-    ^.    ^/    ^0    ^1  C  ^2  k  ^3    ^4    ^5    ^6    ^7  -  ^8  S  ^9  {  ^:    ^;    ^<    ^=    ^>  ?  ^?  e  ^@    ^A    ^B    ^C     ^D  &  ^E  N  ^F  t  ^G    ^H    ^I    ^J    ^K  8  ^L  `  ^M    ^N    ^O    ^P    ^Q  $  ^R  L  ^S  r  ^T    ^U    ^V    ^W    ^X  8  ^Y  ^  ^Z    ^[    ^\    ^]    ^^    ^_  F  ^`  n  ^a    ^b    ^c    ^d  
  ^e  0  ^f  X  ^g    ^h    ^i    ^j    ^k    ^l  B  ^m  j  ^n    ^o    ^p    ^q    ^r  0  ^s  W  ^t  ~  ^u    ^v    ^w    ^x    ^y  E  ^z  m  ^{    ^|    ^}    ^~    ^  &  ^  L  ^  t  ^    ^    ^    ^    ^  ;  ^  c  ^    ^    ^    ^    ^  *  ^  R  ^  z  ^    ^    ^    ^    ^  A  ^  i  ^    ^    ^    ^    ^  0  ^  X  ^    ^    ^    ^    ^     ^  H  ^  p  ^    ^    ^    ^    ^  7  ^  _  ^    ^    ^    ^    ^  &  ^  N  ^  v  ^    ^    ^    ^    ^  >  ^  f  ^    ^    ^    ^    ^  -  ^  U  ^  }  ^    ^    ^    ^    ^  E  ^  m  ^    ^    ^    ^    ^  4  ^  \  ^    ^    ^    ^    ^  $  ^  L  ^  t  ^    ^    ^    ^    ^  <  ^  d  ^    ^    ^    ^    ^  ,  ^  T  ^  |  ^    ^    ^    ^    ^  D  ^  l  ^    ^    ^    ^    ^  4  ^  \  ^    ^    ^    ^    ^  $  ^  L  ^  t  ^    ^    ^    ^    ^  <  ^  d  ^    ^    ^    ^     ^  (  ^  P  ^  x  ^    ^    ^    ^    _   :  _  a  _    _    _    _    _  %  _  M  _  u  _	    _
    _    _    _  =  _  e  _    _    _    _    _  -  _  N  _  o  _    _    _    _     _  %  _  I  _  q  _    _    _    _     _!  +  _"  P  _#  v  _$    _%    _&    _'    _(  >  _)  c  _*    _+    _,    _-    _.    _/  G  _0  o  _1    _2    _3    _4    _5  *  _6  Q  _7  y  _8    _9    _:    _;    _<  ?  _=  f  _>    _?    _@    _A    _B  -  _C  U  _D  |  _E    _F    _G    _H    _I  @  _J  h  _K    _L    _M    _N    _O  -  _P  U  _Q  q  _R    _S    _T    _U    _V  -  _W  U  _X  }  _Y    _Z    _[    _\    _]  D  _^  l  __    _`    _a    _b    _c  )  _d  Q  _e  x  _f    _g    _h    _i    _j  <  _k  d  _l    _m    _n    _o    _p  *  _q  R  _r  y  _s    _t    _u    _v    _w  )  _x  Q  _y  y  _z    _{    _|    _}    _~  ?  _  g  _    _    _    _    _  /  _  W  _    _    _    _    _    _  C  _  k  _    _    _    _    _  3  _  [  _    _    _    _    _  #  _  K  _  s  _    _    _    _    _  ;  _  c  _    _    _    _    _  )  _  Q  _  y  _    _    _    _    _  ?  _  g  _    _    _    _    _  /  _  W  _    _    _    _    _    _  G  _  o  _    _    _    _    _  7  _  _  _    _  ¯  _    _    _  $  _  :  _  a  _  É  _  ï  _    _    _  "  _  J  _  o  _  Ĕ  _  Ļ  _    _  
  _  /  _  W  _    _  ŧ  _    _    _    _  A  _  i  _  Ƒ  _  ƹ  _    _    _  .  _  V  _  }  _  ǥ  _    _    _    _  B  _  j  _  Ȓ  _  Ⱥ  _    _  	  _  1  _  Y  _  Ɂ  _  ɩ  _    _    _  !  _  I  _  q  _  ʙ  _    _    _    _  8  _  `  _  ˈ  _  ˰  _    _    _  '  `   N  `  v  `  ̝  `    `    `    `  <  `  d  `  ͌  `	  ʹ  `
    `    `  *  `  R  `  z  `  Ρ  `    `    `    `  >  `  f  `  ώ  `  ϴ  `    `    `  +  `  S  `  {  `  У  `    `    `    `   @  `!  g  `"  я  `#  ѷ  `$    `%    `&  -  `'  U  `(  }  `)  Ҥ  `*    `+    `,    `-  D  `.  l  `/  Ӓ  `0  Ӻ  `1    `2  	  `3  1  `4  Y  `5  ԁ  `6  ԩ  `7    `8    `9    `:  G  `;  o  `<  Ֆ  `=  ս  `>    `?    `@  5  `A  ]  `B  ք  `C  ֪  `D    `E    `F  "  `G  J  `H  r  `I  ך  `J    `K    `L    `M  9  `N  a  `O  ؉  `P  ذ  `Q    `R    `S  %  `T  M  `U  u  `V  ٜ  `W    `X    `Y    `Z  :  `[  b  `\  ڈ  `]  ڰ  `^    `_    ``  '  `a  O  `b  w  `c  ۟  `d    `e    `f    `g  ;  `h  `  `i  ܈  `j  ܭ  `k    `l    `m  #  `n  K  `o  s  `p  ݚ  `q    `r    `s    `t  7  `u  ^  `v  ޅ  `w  ު  `x    `y    `z  "  `{  J  `|  p  `}  ߘ  `~    `    `    `  7  `  ]  `    `    `    `    `     `  H  `  p  `    `    `    `    `  6  `  ^  `    `    `    `    `  &  `  N  `  v  `    `    `    `    `  ;  `  c  `    `    `    `    `  *  `  Q  `  y  `    `    `    `    `  ?  `  g  `    `    `    `    `  ,  `  T  `  |  `    `    `    `    `  C  `  k  `    `    `    `    `  .  `  V  `  ~  `    `    `    `    `  E  `  k  `    `    `    `    `  5  `  ]  `    `    `    `    `  $  `  K  `  s  `    `    `    `    `  :  `  b  `    `    `    `    `  *  `  R  `  z  `    `    `    `    `  ?  `  f  `    `    `    `    `  ,  `  T  `  {  `    `    `    `    `  C  `  k  `    `    `    `  
  `  2  `  Z  `    `    `    `    `  !  `  I  `  q  `    `    a     a    a  9  a  a  a    a    a    a     a  (  a	  P  a
  x  a    a    a    a    a  ?  a  g  a    a    a    a    a  -  a  S  a  {  a    a    a    a    a  B  a  j  a    a    a     a!  
  a"  2  a#  Z  a$    a%    a&    a'    a(  "  a)  I  a*  q  a+    a,    a-    a.    a/  6  a0  ^  a1    a2    a3    a4    a5  #  a6  K  a7  s  a8    a9    a:    a;    a<  :  a=  b  a>    a?    a@    aA    aB  )  aC  O  aD  w  aE    aF    aG    aH    aI  =  aJ  e  aK    aL    aM    aN     aO   -  aP   U  aQ   }  aR     aS     aT     aU    aV  E  aW  m  aX    aY    aZ    a[    a\  5  a]  ]  a^    a_    a`    aa    ab  %  ac  M  ad  u  ae    af    ag    ah    ai  <  aj  d  ak    al    am    an    ao  *  ap  R  aq  y  ar    as    at    au    av  A  aw  i  ax    ay    az    a{  	  a|  1  a}  Y  a~    a    a    a    a     a  H  a  p  a    a    a    a  	  a  	5  a  	]  a  	  a  	  a  	  a  	  a  
$  a  
L  a  
t  a  
  a  
  a  
  a    a  ;  a  b  a    a    a    a    a  )  a  Q  a  y  a    a    a    a    a  A  a  i  a    a    a    a  	  a  1  a  X  a    a    a    a    a    a  F  a  n  a    a    a    a    a  5  a  ]  a    a    a    a    a  %  a  M  a  u  a    a    a    a    a  =  a  e  a    a    a    a    a  -  a  U  a  }  a    a    a    a    a  D  a  l  a    a    a    a    a  3  a  [  a    a    a    a    a  "  a  J  a  r  a    a    a    a    a  :  a  b  a    a    a    a    a  *  a  R  a  z  a    a    a    a    a  B  a  j  a    a    a    a  
  a  2  a  Z  a    a    a    a    a  "  a  J  a  r  a    b     b    b    b  9  b  a  b    b    b    b    b	  '  b
  M  b  u  b    b    b    b    b  ;  b  c  b    b    b    b    b  )  b  Q  b  y  b    b    b    b     b   ;  b   c  b     b      b!     b"  !  b#  !+  b$  !S  b%  !{  b&  !  b'  !  b(  !  b)  "  b*  "C  b+  "k  b,  "  b-  "  b.  "  b/  #  b0  #3  b1  #[  b2  #  b3  #  b4  #  b5  #  b6  $#  b7  $G  b8  $i  b9  $  b:  $  b;  $  b<  %  b=  %)  b>  %Q  b?  %y  b@  %  bA  %  bB  %  bC  &  bD  &9  bE  &_  bF  &  bG  &  bH  &  bI  &  bJ  '#  bK  'K  bL  's  bM  '  bN  '  bO  '  bP  '  bQ  (%  bR  (K  bS  (s  bT  (  bU  (  bV  (  bW  )  bX  )7  bY  )_  bZ  )  b[  )  b\  )  b]  )  b^  *%  b_  *M  b`  *u  ba  *  bb  *  bc  *  bd  +  be  +;  bf  +c  bg  +  bh  +  bi  +  bj  ,  bk  ,'  bl  ,M  bm  ,u  bn  ,  bo  ,  bp  ,  bq  -  br  -=  bs  -e  bt  -  bu  -  bv  -  bw  .  bx  .-  by  .U  bz  .}  b{  .  b|  .  b}  .  b~  /  b  /C  b  /k  b  /  b  /  b  /  b  0  b  03  b  0[  b  0  b  0  b  0  b  0  b  1!  b  1I  b  1q  b  1  b  1  b  1  b  2  b  27  b  2_  b  2  b  2  b  2  b  2  b  3'  b  3O  b  3w  b  3  b  3  b  3  b  4  b  4?  b  4g  b  4  b  4  b  4  b  5  b  5-  b  5U  b  5}  b  5  b  5  b  5  b  6  b  6E  b  6m  b  6  b  6  b  6  b  7  b  75  b  7]  b  7  b  7  b  7  b  7  b  8%  b  8M  b  8u  b  8  b  8  b  8  b  9  b  99  b  9a  b  9  b  9  b  9  b  :  b  :)  b  :Q  b  :y  b  :  b  :  b  :  b  ;  b  ;A  b  ;i  b  ;  b  ;  b  ;  b  <  b  <-  b  <U  b  <}  b  <  b  <  b  <  b  =  b  =A  b  =i  b  =  b  =  b  =  b  >  b  >/  b  >W  b  >  b  >  b  >  b  >  b  ?  b  ?E  b  ?m  b  ?  b  ?  b  ?  b  @  b  @5  b  @]  b  @  b  @  b  @  b  @  b  A%  b  AM  b  Au  b  A  b  A  b  A  b  B  b  B;  b  Bc  b  B  b  B  b  B  b  C  b  C+  c   CS  c  C{  c  C  c  C  c  C  c  D  c  DC  c  Dk  c  D  c	  D  c
  D  c  E  c  E/  c  EW  c  E  c  E  c  E  c  E  c  F  c  FE  c  Fm  c  F  c  F  c  F  c  G  c  G5  c  G]  c  G  c  G  c  G  c  G  c  H#  c   HK  c!  Hs  c"  H  c#  H  c$  H  c%  I  c&  I9  c'  Ia  c(  I  c)  I  c*  I  c+  J  c,  J)  c-  JQ  c.  Jy  c/  J  c0  J  c1  J  c2  K  c3  K=  c4  Ke  c5  K  c6  K  c7  K  c8  L  c9  L-  c:  LU  c;  L}  c<  L  c=  L  c>  L  c?  M  c@  ME  cA  Mm  cB  M  cC  M  cD  M  cE  N  cF  N3  cG  NY  cH  N  cI  N  cJ  N  cK  N  cL  O!  cM  OG  cN  Oo  cO  O  cP  O  cQ  O  cR  P  cS  P3  cT  P[  cU  P  cV  P  cW  P  cX  P  cY  Q#  cZ  QK  c[  Qs  c\  Q  c]  Q  c^  Q  c_  R  c`  R7  ca  R_  cb  R  cc  R  cd  R  ce  R  cf  S'  cg  SO  ch  Sw  ci  S  cj  S  ck  S  cl  T  cm  T=  cn  Te  co  T  cp  T  cq  T  cr  U  cs  U-  ct  UU  cu  U}  cv  U  cw  U  cx  U  cy  V  cz  VE  c{  Vm  c|  V  c}  V  c~  V  c  W  c  W5  c  W]  c  W  c  W  c  W  c  W  c  X%  c  XM  c  Xu  c  X  c  X  c  X  c  Y  c  Y9  c  Ya  c  Y  c  Y  c  Y  c  Z  c  Z)  c  ZQ  c  Zv  c  Z  c  Z  c  Z  c  [  c  [<  c  [d  c  [  c  [  c  [  c  \  c  \,  c  \T  c  \|  c  \  c  \  c  \  c  ]  c  ]B  c  ]j  c  ]  c  ]  c  ]  c  ^
  c  ^0  c  ^X  c  ^~  c  ^  c  ^  c  ^  c  _  c  _F  c  _n  c  _  c  _  c  _  c  `  c  `6  c  `^  c  `  c  `  c  `  c  `  c  a&  c  aN  c  av  c  a  c  a  c  a  c  b  c  b>  c  bf  c  b  c  b  c  b  c  c  c  c.  c  cV  c  c~  c  c  c  c  c  c  c  d  c  dF  c  dn  c  d  c  d  c  d  c  e  c  e6  c  e^  c  e  c  e  c  e  c  e  c  f&  c  fN  c  fv  c  f  c  f  c  f  c  g  c  g>  c  gb  c  g  c  g  c  g  c  g  c  h&  c  hL  c  ht  c  h  c  h  c  h  c  i  c  i8  c  i`  c  i  c  i  c  i  c  j   c  j(  c  jP  c  jx  c  j  c  j  c  j  d   k  d  k@  d  kf  d  k  d  k  d  k  d  l  d  l.  d  lV  d	  l~  d
  l  d  l  d  l  d  m  d  mB  d  mj  d  m  d  m  d  m  d  n
  d  n2  d  nZ  d  n  d  n  d  n  d  n  d  o"  d  oJ  d  or  d  o  d  o  d  o  d   p  d!  p:  d"  pb  d#  p  d$  p  d%  p  d&  q  d'  q(  d(  qP  d)  qx  d*  q  d+  q  d,  q  d-  r  d.  r@  d/  rh  d0  r  d1  r  d2  r  d3  s  d4  s.  d5  sV  d6  s~  d7  s  d8  s  d9  s  d:  t  d;  tF  d<  tn  d=  t  d>  t  d?  t  d@  u  dA  u6  dB  u^  dC  u  dD  u  dE  u  dF  u  dG  v&  dH  vN  dI  vv  dJ  v  dK  v  dL  v  dM  w  dN  w>  dO  wf  dP  w  dQ  w  dR  w  dS  x  dT  x.  dU  xV  dV  x~  dW  x  dX  x  dY  x  dZ  y  d[  yD  d\  yl  d]  y  d^  y  d_  y  d`  z  da  z4  db  z\  dc  z  dd  z  de  z  df  z  dg  {$  dh  {L  di  {t  dj  {  dk  {  dl  {  dm  |  dn  |<  do  |d  dp  |  dq  |  dr  |  ds  }  dt  }*  du  }R  dv  }z  dw  }  dx  }  dy  }  dz  ~  d{  ~@  d|  ~h  d}  ~  d~  ~  d  ~  d    d  0  d  X  d    d    d    d    d    d  F  d  n  d    d    d    d  
  d  2  d  Z  d    d    d    d    d  "  d  J  d  r  d    d    d    d    d  :  d  b  d    d    d    d    d  *  d  R  d  z  d    d    d    d    d  B  d  j  d    d    d    d  
  d  2  d  Z  d    d    d    d    d  "  d  J  d  r  d    d    d    d    d  8  d  `  d    d    d    d     d  (  d  P  d  x  d    d    d    d    d  B  d  j  d    d    d    d    d  0  d  X  d    d    d    d    d     d  H  d  p  d    d    d    d    d  8  d  `  d    d    d    d     d  (  d  P  d  x  d    d    d    d    d  =  d  e  d    d    d    d    d  -  d  U  d  }  d    d    d    d    d  C  d  k  d    d    d    d    d  3  d  [  d    d    d    e     e  #  e  K  e  s  e    e    e    e    e  ;  e	  c  e
    e    e    e    e  +  e  S  e  {  e    e    e    e    e  A  e  i  e    e    e    e  	  e  1  e  Y  e    e    e    e     e!  !  e"  I  e#  q  e$    e%    e&    e'    e(  9  e)  a  e*    e+    e,    e-    e.  )  e/  Q  e0  y  e1    e2    e3    e4    e5  A  e6  i  e7    e8    e9    e:    e;  -  e<  U  e=  }  e>    e?    e@    eA    eB  A  eC  i  eD    eE    eF    eG  	  eH  1  eI  Y  eJ    eK    eL    eM    eN  !  eO  I  eP  q  eQ    eR    eS    eT    eU  9  eV  a  eW    eX    eY    eZ    e[  )  e\  Q  e]  y  e^    e_    e`    ea    eb  =  ec  e  ed    ee    ef    eg    eh  -  ei  U  ej  }  ek    el    em    en    eo  E  ep  m  eq    er    es    et    eu  5  ev  [  ew    ex    ey    ez    e{  #  e|  K  e}  s  e~    e    e    e    e  ;  e  c  e    e    e    e    e  +  e  S  e  {  e    e    e    e    e  C  e  k  e    e    e    e    e  .  e  V  e  ~  e    e    e    e    e  D  e  l  e    e    e    e    e  3  e  [  e    e    e    e    e  #  e  K  e  s  e    e    e    e    e  9  e  a  e    e    e    e     e  (  e  P  e  u  e    e    e    e    e  ;  e  b  e    e    e    e    e  *  e  R  e  z  e    e    e    e    e  B  e  j  e    e    e    e  
  e  2  e  Z  e    e    e    e    e  "  e  J  e  r  e    e    e    e    e  :  e  b  e    e    e    e    e  $  e  I  e  o  e    e    e    e    e    e  ?  e  e  e    e    e    e    e  !  e  F  e  n  e    e    e    e    e  #  e  I  e  n  e    e    e    e    e  ,  e  T  f   z  f    f    f    f    f  5  f  Z  f  {  f    f	    f
    f    f  =  f  ]  f  ~  f    f    f    f    f  5  f  Y  f    f    f    f    f    f  =  f  e  f    f    f    f    f     f!  C  f"  h  f#    f$    f%    f&     f'  '  f(  M  f)  s  f*    f+    f,    f-    f.  (  f/  M  f0  u  f1    f2    f3    f4    f5  1  f6  V  f7  ~  f8  £  f9    f:    f;    f<  7  f=  \  f>  Â  f?  ç  f@    fA    fB    fC  >  fD  e  fE  ċ  fF  Į  fG    fH    fI    fJ  F  fK  i  fL  Ő  fM  Ŵ  fN    fO    fP  &  fQ  L  fR  k  fS  Ɛ  fT  ƶ  fU    fV    fW  )  fX  O  fY  t  fZ  ǚ  f[    f\    f]    f^  0  f_  V  f`  |  fa  Ȣ  fb    fc    fd    fe  9  ff  _  fg  Ʌ  fh  ɫ  fi    fj    fk    fl  E  fm  k  fn  ʐ  fo  ʸ  fp    fq    fr  .  fs  S  ft  {  fu  ˡ  fv    fw    fx    fy  =  fz  b  f{  ̈  f|  ̮  f}    f~    f  $  f  J  f  p  f  ͖  f  ;  f    f  
  f  2  f  Z  f  ΁  f  Ω  f    f    f    f  ?  f  d  f  ϊ  f  ϰ  f    f    f  !  f  I  f  o  f  Е  f  л  f    f    f  .  f  T  f  y  f  ѡ  f    f    f    f  9  f  _  f  ҅  f  ҫ  f    f    f    f  C  f  j  f  Ӑ  f  Ӷ  f    f    f  (  f  P  f  v  f  Ԟ  f    f    f    f  5  f  [  f  Ճ  f  թ  f    f    f    f  B  f  h  f  ֎  f  ֶ  f    f    f  )  f  O  f  u  f  כ  f  ׿  f    f    f  4  f  Z  f  ؀  f  إ  f    f    f    f  ;  f  c  f  ً  f  ٳ  f    f    f  )  f  Q  f  w  f  ڜ  f    f    f    f  8  f  `  f  ۅ  f  ۭ  f    f    f  #  f  K  f  s  f  ܙ  f    f    f    f  7  f  ^  f  ݆  f  ݮ  f    f    f  $  f  B  f  a  f  ޅ  f  ޭ  f    f    f    f  C  f  k  f  ߓ  f  ߻  f    f  
  f  *  f  J  g   r  g    g    g    g    g  6  g  ^  g    g    g	    g
    g    g  D  g  l  g    g    g    g    g  /  g  U  g  }  g    g    g    g    g  ?  g  d  g    g    g    g    g  ,  g   R  g!  z  g"    g#    g$    g%    g&  <  g'  d  g(    g)    g*    g+    g,  ,  g-  T  g.  z  g/    g0    g1    g2    g3  A  g4  i  g5    g6    g7    g8    g9  )  g:  Q  g;  y  g<    g=    g>    g?    g@  =  gA  e  gB    gC    gD    gE    gF  -  gG  U  gH  }  gI    gJ    gK    gL    gM  C  gN  k  gO    gP    gQ    gR    gS  1  gT  W  gU    gV    gW    gX    gY    gZ  F  g[  n  g\    g]    g^    g_    g`  4  ga  \  gb    gc    gd    ge    gf  !  gg  I  gh  q  gi    gj    gk    gl    gm  7  gn  _  go    gp    gq    gr    gs  '  gt  O  gu  w  gv    gw    gx    gy    gz  ?  g{  g  g|    g}    g~    g    g  /  g  W  g    g    g    g    g    g  A  g  i  g    g    g    g  	  g  1  g  Y  g    g    g    g    g  !  g  I  g  q  g    g    g    g    g  9  g  a  g    g    g    g     g  (  g  P  g  x  g    g    g    g    g  >  g  f  g    g    g    g    g  .  g  V  g  ~  g    g    g    g    g  F  g  l  g    g    g    g  
  g  2  g  Z  g    g    g    g    g  "  g  J  g  r  g    g    g    g    g  :  g  b  g    g    g    g     g   (  g   P  g   x  g     g     g     g    g  >  g  e  g    g    g    g    g  )  g  O  g  u  g    g    g    g    g  =  g  e  g    g    g    g    g  ,  g  T  g  |  g    g    g    g    g  D  g  j  g    g    g    g  
  g  2  g  Z  g    g    g    g    g  "  g  H  g  o  g    g    g    h     h  7  h  _  h    h    h    h    h  	'  h  	O  h	  	w  h
  	  h  	  h  	  h  
  h  
?  h  
g  h  
  h  
  h  
  h    h  -  h  U  h  }  h    h    h    h    h  D  h  l  h    h    h    h     h!  3  h"  [  h#    h$    h%    h&    h'  #  h(  K  h)  s  h*    h+    h,    h-    h.  ;  h/  c  h0    h1    h2    h3    h4  +  h5  S  h6  {  h7    h8    h9    h:    h;  A  h<  i  h=    h>    h?    h@  	  hA  1  hB  Y  hC    hD    hE    hF    hG  !  hH  I  hI  q  hJ    hK    hL    hM    hN  9  hO  a  hP    hQ    hR    hS    hT  '  hU  O  hV  u  hW    hX    hY    hZ    h[  9  h\  a  h]    h^    h_    h`    ha  )  hb  Q  hc  y  hd    he    hf    hg    hh  ?  hi  g  hj    hk    hl    hm    hn  /  ho  W  hp    hq    hr    hs    ht    hu  G  hv  o  hw    hx    hy    hz    h{  3  h|  [  h}    h~    h    h    h  "  h  I  h  q  h    h    h    h    h  9  h  a  h    h    h    h    h  '  h  O  h  w  h    h    h    h    h  ?  h  g  h    h    h    h     h   /  h   W  h     h     h     h     h  !  h  !E  h  !k  h  !  h  !  h  !  h  "  h  "3  h  "[  h  "  h  "  h  "  h  "  h  ##  h  #K  h  #s  h  #  h  #  h  #  h  $  h  $;  h  $c  h  $  h  $  h  $  h  %  h  %)  h  %Q  h  %y  h  %  h  %  h  %  h  &  h  &A  h  &i  h  &  h  &  h  &  h  '	  h  '1  h  'Y  h  '  h  '  h  '  h  '  h  (!  h  (I  h  (q  h  (  h  (  h  (  h  )  h  )9  h  )a  h  )  h  )  h  )  h  *  h  *)  h  *Q  h  *y  h  *  h  *  h  *  h  +  h  +?  h  +g  h  +  h  +  h  +  h  ,  h  ,/  h  ,W  h  ,  h  ,  h  ,  h  ,  h  -  h  -G  h  -o  h  -  h  -  h  -  h  .  h  .7  h  ._  h  .  h  .  h  .  h  .  h  /&  h  /N  h  /v  h  /  h  /  i   /  i  0  i  0>  i  0f  i  0  i  0  i  0  i  1  i  1,  i	  1R  i
  1z  i  1  i  1  i  1  i  2  i  2B  i  2j  i  2  i  2  i  2  i  3
  i  32  i  3Z  i  3  i  3  i  3  i  3  i  4   i  4H  i  4p  i  4  i  4  i   4  i!  5  i"  58  i#  5`  i$  5  i%  5  i&  5  i'  6   i(  6(  i)  6P  i*  6x  i+  6  i,  6  i-  6  i.  7  i/  7@  i0  7h  i1  7  i2  7  i3  7  i4  8  i5  80  i6  8X  i7  8  i8  8  i9  8  i:  8  i;  9   i<  9H  i=  9p  i>  9  i?  9  i@  9  iA  :  iB  :8  iC  :`  iD  :  iE  :  iF  :  iG  ;   iH  ;(  iI  ;P  iJ  ;x  iK  ;  iL  ;  iM  ;  iN  <  iO  <@  iP  <h  iQ  <  iR  <  iS  <  iT  =  iU  =0  iV  =X  iW  =  iX  =  iY  =  iZ  =  i[  >   i\  >H  i]  >p  i^  >  i_  >  i`  >  ia  ?  ib  ?8  ic  ?`  id  ?  ie  ?  if  ?  ig  ?  ih  @&  ii  @N  ij  @v  ik  @  il  @  im  @  in  A  io  A>  ip  Af  iq  A  ir  A  is  A  it  B  iu  B.  iv  BV  iw  B~  ix  B  iy  B  iz  B  i{  C  i|  CF  i}  Cn  i~  C  i  C  i  C  i  D  i  D6  i  D^  i  D  i  D  i  D  i  D  i  E&  i  EL  i  Et  i  E  i  E  i  E  i  F  i  F<  i  Fd  i  F  i  F  i  F  i  G  i  G,  i  GT  i  G|  i  G  i  G  i  G  i  H  i  HD  i  Hl  i  H  i  H  i  H  i  I  i  I4  i  I\  i  I  i  I  i  I  i  I  i  J$  i  JL  i  Jt  i  J  i  J  i  J  i  K  i  K<  i  Kd  i  K  i  K  i  K  i  L  i  L,  i  LT  i  L|  i  L  i  L  i  L  i  M  i  MD  i  Ml  i  M  i  M  i  M  i  N  i  N4  i  N\  i  N  i  N  i  N  i  N  i  O"  i  OJ  i  Or  i  O  i  O  i  O  i  P  i  P:  i  Pb  i  P  i  P  i  P  i  Q  i  Q)  i  QQ  i  Qy  i  Q  i  Q  i  Q  i  R  i  RA  i  Ri  i  R  i  R  i  R  i  S	  i  S1  i  SY  i  S  i  S  i  S  i  S  i  T!  i  TI  i  Tp  i  T  i  T  i  T  i  U  i  U8  i  U`  i  U  i  U  i  U  i  V   i  V(  i  VP  i  Vx  i  V  i  V  i  V  i  W  i  W@  i  Wh  i  W  i  W  j   W  j  X  j  X0  j  XX  j  X  j  X  j  X  j  X  j  Y   j	  YH  j
  Yp  j  Y  j  Y  j  Y  j  Z  j  Z8  j  Z`  j  Z  j  Z  j  Z  j  [   j  [(  j  [P  j  [x  j  [  j  [  j  [  j  \  j  \@  j  \h  j  \  j  \  j   \  j!  ]  j"  ]0  j#  ]X  j$  ]  j%  ]  j&  ]  j'  ]  j(  ^   j)  ^H  j*  ^p  j+  ^  j,  ^  j-  ^  j.  _  j/  _8  j0  _`  j1  _  j2  _  j3  _  j4  `   j5  `(  j6  `P  j7  `x  j8  `  j9  `  j:  `  j;  a  j<  a@  j=  ah  j>  a  j?  a  j@  a  jA  b  jB  b0  jC  bX  jD  b  jE  b  jF  b  jG  b  jH  c   jI  cH  jJ  cp  jK  c  jL  c  jM  c  jN  d  jO  d8  jP  d`  jQ  d  jR  d  jS  d  jT  e   jU  e(  jV  eP  jW  ex  jX  e  jY  e  jZ  e  j[  f  j\  f@  j]  fh  j^  f  j_  f  j`  f  ja  g  jb  g0  jc  gX  jd  g  je  g  jf  g  jg  g  jh  h   ji  hH  jj  hp  jk  h  jl  h  jm  h  jn  i  jo  i8  jp  i`  jq  i  jr  i  js  i  jt  j   ju  j(  jv  jP  jw  jx  jx  j  jy  j  jz  j  j{  k  j|  k@  j}  kh  j~  k  j  k  j  k  j  l  j  l0  j  lX  j  l  j  l  j  l  j  l  j  m   j  mH  j  mp  j  m  j  m  j  m  j  n  j  n8  j  n`  j  n  j  n  j  n  j  o   j  o(  j  oP  j  ox  j  o  j  o  j  o  j  p  j  p@  j  ph  j  p  j  p  j  p  j  q  j  q0  j  qX  j  q  j  q  j  q  j  q  j  r   j  rH  j  rp  j  r  j  r  j  r  j  s  j  s8  j  s`  j  s  j  s  j  s  j  t   j  t(  j  tP  j  tx  j  t  j  t  j  t  j  u  j  u@  j  uh  j  u  j  u  j  u  j  v  j  v0  j  vX  j  v  j  v  j  v  j  v  j  w   j  wH  j  wp  j  w  j  w  j  w  j  x  j  x6  j  x^  j  x  j  x  j  x  j  x  j  y&  j  yN  j  yv  j  y  j  y  j  y  j  z  j  z>  j  zf  j  z  j  z  j  z  j  {  j  {.  j  {V  j  {~  j  {  j  {  j  {  j  |  j  |F  j  |n  j  |  j  |  j  |  j  }  j  }6  j  }^  j  }  j  }  j  }  j  }  j  ~&  j  ~N  j  ~v  j  ~  j  ~  j  ~  j    j  >  j  f  j    j    k     k    k  .  k  V  k  ~  k    k    k    k    k	  F  k
  n  k    k    k    k    k  6  k  ^  k    k    k    k    k  &  k  N  k  v  k    k    k    k    k  >  k  f  k    k    k     k!    k"  .  k#  V  k$  ~  k%    k&    k'    k(    k)  B  k*  j  k+    k,    k-    k.  
  k/  2  k0  Z  k1    k2    k3    k4    k5    k6  F  k7  n  k8    k9    k:    k;    k<  6  k=  ^  k>    k?    k@    kA    kB  &  kC  N  kD  v  kE    kF    kG    kH    kI  <  kJ  d  kK    kL    kM    kN    kO  ,  kP  T  kQ  |  kR    kS    kT    kU    kV  D  kW  l  kX    kY    kZ    k[  
  k\  2  k]  Z  k^    k_    k`    ka    kb     kc  G  kd  l  ke    kf    kg    kh    ki  3  kj  [  kk    kl    km    kn    ko    kp  F  kq  k  kr    ks    kt    ku  	  kv  1  kw  Y  kx    ky    kz    k{    k|    k}  B  k~  j  k    k    k    k    k  .  k  V  k  ~  k    k    k    k    k  D  k  l  k    k    k    k    k  3  k  [  k    k    k    k    k     k  H  k  p  k    k    k    k    k  5  k  ]  k    k    k    k    k  !  k  I  k  q  k    k    k    k    k  9  k  a  k    k    k    k    k  &  k  N  k  v  k    k    k    k    k  :  k  b  k    k    k    k    k  '  k  O  k  w  k    k    k    k    k  >  k  f  k    k    k    k    k  ,  k  T  k  {  k    k    k    k    k  A  k  i  k    k    k    k    k  ,  k  Q  k  r  k    k    k    k    k  4  k  Z  k    k    k    k    k    k  D  k  l  k    k    k    k  
  k  2  k  Z  k    k    k    k    k     k  H  k  p  k    k    k    k    k  3  k  Z  k    k    k    k    k  "  k  J  l   r  l    l    l    l    l  :  l  `  l    l    l	    l
     l  (  l  P  l  x  l    l    l    l    l  /  l  W  l    l    l    l    l    l  G  l  o  l    l    l    l    l  7  l   _  l!    l"    l#    l$    l%  '  l&  O  l'  w  l(    l)    l*    l+    l,  ?  l-  g  l.    l/    l0    l1    l2  /  l3  W  l4    l5    l6    l7    l8  	  l9  1  l:  X  l;  ~  l<    l=    l>    l?    l@  A  lA  h  lB    lC    lD    lE    lF  ,  lG  T  lH  y  lI    lJ    lK    lL    lM  8  lN  `  lO    lP    lQ    lR    lS  #  lT  J  lU  q  lV    lW    lX    lY    lZ  4  l[  [  l\    l]    l^    l_    l`    la  B  lb  i  lc    ld    le    lf    lg  -  lh  T  li  w  lj    lk    ll    lm    ln  7  lo  ]  lp    lq    lr    ls    lt  $  lu  L  lv  t  lw    lx    ly    lz    l{  9  l|  a  l}    l~    l    l     l  (  l  M  l  u  l    l    l    l    l  9  l  a  l    l    l    l    l  $  l  L  l  q  l    l    l    l    l  5  l  [  l    l    l    l    l    l  F  l  n  l    l    l    l    l  2  l  Y  l    l    l    l    l    l  B  l  h  l    l    l    l    l  +  l  S  l  z  l    l    l    l    l  =  l  d  l  Ì  l  ò  l    l    l  !  l  F  l  n  l  Ė  l  Ľ  l    l  	  l  .  l  T  l  {  l  Š  l    l    l    l  @  l  f  l  Ǝ  l  Ƶ  l    l    l  +  l  S  l  y  l  ǡ  l    l    l    l  >  l  c  l  ȋ  l  Ȳ  l    l    l  &  l  N  l  t  l  ə  l    l    l    l  7  l  _  l  ʆ  l  ʭ  l    l    l  #  l  H  l  o  l  ˗  l  ˿  l    l    l  4  l  \  l  ̂  l  ̪  l    l    l     l  H  l  p  l  ͕  l  ͽ  l    l    l  3  l  X  m     m  Χ  m    m    m    m  F  m  m  m  ϒ  m  Ϸ  m	    m
    m  /  m  W  m    m  Ф  m    m    m    m  A  m  h  m  ѐ  m  Ѹ  m    m    m  /  m  W  m    m  ҧ  m    m    m    m  B  m   j  m!  Ӓ  m"  Ӻ  m#    m$  
  m%  1  m&  Y  m'  Ԁ  m(  Ԩ  m)    m*    m+     m,  G  m-  n  m.  Փ  m/  ջ  m0    m1    m2  /  m3  U  m4  }  m5  ֥  m6    m7    m8    m9  <  m:  a  m;  ׇ  m<  ׯ  m=    m>    m?  $  m@  L  mA  t  mB  ؜  mC    mD    mE    mF  :  mG  b  mH  ي  mI  ٲ  mJ    mK    mL  '  mM  O  mN  w  mO  ڟ  mP    mQ    mR    mS  <  mT  d  mU  ۋ  mV  ۰  mW    mX    mY  %  mZ  M  m[  s  m\  ܛ  m]    m^    m_    m`  :  ma  b  mb  ݊  mc  ݯ  md    me    mf  "  mg  J  mh  o  mi  ޗ  mj  ޿  mk    ml    mm  3  mn  Z  mo  ߂  mp  ߩ  mq    mr    ms    mt  F  mu  n  mv    mw    mx    my    mz  5  m{  ]  m|    m}    m~    m    m    m  F  m  n  m    m    m    m    m  /  m  T  m  x  m    m    m    m    m  :  m  b  m    m    m    m     m  %  m  M  m  s  m    m    m    m    m  ;  m  c  m    m    m    m    m  '  m  L  m  s  m    m    m    m    m  7  m  _  m    m    m    m    m  $  m  L  m  s  m    m    m    m    m  8  m  ]  m    m    m    m    m     m  H  m  p  m    m    m    m    m  5  m  \  m    m    m    m    m  "  m  I  m  p  m    m    m    m  	  m  1  m  X  m  ~  m    m    m    m    m  B  m  j  m    m    m    m    m  ,  m  Q  m  x  m    m    m    m    m  ?  m  f  m    m    m    m    m  ,  m  T  m  |  m    m    m    m    m  C  m  k  m    m    m    m    m  -  m  U  m  |  m    m    m    m    m  A  m  h  m    n     n    n    n  .  n  V  n  ~  n    n    n    n	    n
  A  n  g  n    n    n    n    n  +  n  S  n  z  n    n    n    n    n  =  n  e  n    n    n    n    n  +  n  S  n  {  n     n!    n"    n#    n$  B  n%  j  n&    n'    n(    n)    n*  *  n+  P  n,  x  n-    n.    n/    n0    n1  <  n2  c  n3    n4    n5    n6    n7  $  n8  L  n9  t  n:    n;    n<    n=    n>  :  n?  a  n@    nA    nB    nC    nD   &  nE   K  nF   s  nG     nH     nI     nJ    nK  ;  nL  c  nM    nN    nO    nP    nQ  '  nR  N  nS  u  nT    nU    nV    nW    nX  ;  nY  a  nZ    n[    n\    n]    n^  '  n_  O  n`  t  na    nb    nc    nd    ne  6  nf  ^  ng    nh    ni    nj    nk    nl  F  nm  n  nn    no    np    nq  	  nr  /  ns  W  nt    nu    nv    nw    nx    ny  F  nz  m  n{    n|    n}    n~  	  n  	2  n  	W  n  	  n  	  n  	  n  	  n  
  n  
G  n  
o  n  
  n  
  n  
  n    n  2  n  Z  n    n    n    n    n    n  F  n  n  n    n    n    n    n  3  n  [  n    n    n    n    n     n  E  n  l  n    n    n    n    n  0  n  X  n    n    n    n    n    n  F  n  m  n    n    n    n    n  4  n  Y  n    n    n    n    n    n  G  n  l  n    n    n    n    n  -  n  U  n  }  n    n    n    n    n  D  n  l  n    n    n    n  	  n  1  n  Y  n    n    n    n    n    n  D  n  l  n    n    n    n    n  0  n  X  n    n    n    n    n    n  F  n  n  n    n    n    n    n  3  n  [  n    n    n    n    n  "  n  I  n  q  n    n    n    n    n  7  n  ]  n    n    n    n    n  %  n  L  n  t  n    n    n    o     o  :  o  b  o    o    o    o     o  (  o  P  o	  x  o
    o    o    o    o  <  o  d  o    o    o    o     o   *  o   P  o   x  o     o     o     o  !  o  !=  o  !e  o  !  o  !  o  !  o   "   o!  "(  o"  "P  o#  "x  o$  "  o%  "  o&  "  o'  #  o(  #?  o)  #g  o*  #  o+  #  o,  #  o-  $  o.  $/  o/  $W  o0  $~  o1  $  o2  $  o3  $  o4  %  o5  %C  o6  %k  o7  %  o8  %  o9  %  o:  &  o;  &/  o<  &V  o=  &~  o>  &  o?  &  o@  &  oA  '  oB  'D  oC  'k  oD  '  oE  '  oF  '  oG  (  oH  (3  oI  (Z  oJ  (  oK  (  oL  (  oM  (  oN  )!  oO  )I  oP  )n  oQ  )  oR  )  oS  )  oT  *  oU  *4  oV  *[  oW  *  oX  *  oY  *  oZ  *  o[  +   o\  +G  o]  +o  o^  +  o_  +  o`  +  oa  ,  ob  ,4  oc  ,\  od  ,  oe  ,  of  ,  og  ,  oh  -  oi  -C  oj  -j  ok  -  ol  -  om  -  on  .  oo  .,  op  .S  oq  .{  or  .  os  .  ot  .  ou  /  ov  /=  ow  /d  ox  /  oy  /  oz  /  o{  0  o|  0,  o}  0S  o~  0{  o  0  o  0  o  0  o  1  o  1<  o  1d  o  1  o  1  o  1  o  2  o  2)  o  2Q  o  2y  o  2  o  2  o  2  o  3  o  3=  o  3d  o  3  o  3  o  3  o  4  o  4*  o  4O  o  4t  o  4  o  4  o  4  o  5  o  59  o  5a  o  5  o  5  o  5  o  6   o  6(  o  6P  o  6w  o  6  o  6  o  6  o  7  o  7=  o  7d  o  7  o  7  o  7  o  8   o  8(  o  8P  o  8x  o  8  o  8  o  8  o  9  o  9?  o  9g  o  9  o  9  o  9  o  :  o  :.  o  :V  o  :~  o  :  o  :  o  :  o  ;  o  ;E  o  ;l  o  ;  o  ;  o  ;  o  <  o  <4  o  <\  o  <  o  <  o  <  o  <  o  =#  o  =K  o  =s  o  =  o  =  o  =  o  >  o  >6  o  >^  o  >  o  >  o  >  o  >  o  ?%  o  ?M  o  ?u  o  ?  o  ?  o  ?  o  @  o  @<  o  @d  o  @  o  @  o  @  o  A  o  A)  o  AQ  o  Ax  o  A  o  A  o  A  o  B  o  B>  o  Bf  o  B  o  B  o  B  o  C  o  C,  o  CT  o  C|  o  C  o  C  o  C  o  D  o  DC  o  Dk  p   D  p  D  p  D  p  E
  p  E2  p  EZ  p  E  p  E  p  E  p	  E  p
  F!  p  FH  p  Fp  p  F  p  F  p  F  p  G  p  G8  p  G`  p  G  p  G  p  G  p  H   p  H(  p  HP  p  Hx  p  H  p  H  p  H  p  I  p  I?  p  Ig  p   I  p!  I  p"  I  p#  J  p$  J,  p%  JT  p&  Jz  p'  J  p(  J  p)  J  p*  K  p+  KB  p,  Kj  p-  K  p.  K  p/  K  p0  L
  p1  L2  p2  LZ  p3  L  p4  L  p5  L  p6  L  p7  M   p8  MG  p9  Mo  p:  M  p;  M  p<  M  p=  N  p>  N7  p?  N]  p@  N  pA  N  pB  N  pC  N  pD  O%  pE  OM  pF  Ou  pG  O  pH  O  pI  O  pJ  P  pK  P<  pL  Pd  pM  P  pN  P  pO  P  pP  Q  pQ  Q,  pR  QT  pS  Q|  pT  Q  pU  Q  pV  Q  pW  R  pX  RD  pY  Rl  pZ  R  p[  R  p\  R  p]  S  p^  S4  p_  S\  p`  S  pa  S  pb  S  pc  S  pd  T"  pe  TJ  pf  Tr  pg  T  ph  T  pi  T  pj  U  pk  U9  pl  Ua  pm  Ur  pn  U  po  U  pp  U  pq  V  pr  V6  ps  V\  pt  V  pu  V  pv  V  pw  V  px  W!  py  WI  pz  Wq  p{  W  p|  W  p}  W  p~  X  p  X7  p  X]  p  X  p  X  p  X  p  X  p  Y"  p  YI  p  Yq  p  Y  p  Y  p  Y  p  Z  p  Z7  p  Z_  p  Z  p  Z  p  Z  p  Z  p  ['  p  [O  p  [w  p  [  p  [  p  [  p  \  p  \?  p  \g  p  \  p  \  p  \  p  ]  p  ]-  p  ]U  p  ]{  p  ]  p  ]  p  ]  p  ^  p  ^A  p  ^i  p  ^  p  ^  p  ^  p  _  p  _/  p  _W  p  _  p  _  p  _  p  _  p  `  p  `E  p  `m  p  `  p  `  p  `  p  a  p  a5  p  a[  p  a  p  a  p  a  p  a  p  b!  p  bI  p  bq  p  b  p  b  p  b  p  c  p  c9  p  ca  p  c  p  c  p  c  p  c  p  d'  p  dO  p  dw  p  d  p  d  p  d  p  e  p  e<  p  ed  p  e  p  e  p  e  p  f  p  f,  p  fT  p  f|  p  f  p  f  p  f  p  g  p  gC  p  gk  p  g  p  g  p  g  p  h  p  h3  p  h[  p  h  p  h  p  h  p  h  p  i#  p  iK  p  is  p  i  p  i  p  i  p  j  p  j;  p  jc  p  j  p  j  p  j  p  k  p  k+  p  kS  p  k{  p  k  p  k  p  k  p  l  q   l?  q  lg  q  l  q  l  q  l  q  m  q  m.  q  mV  q  m|  q	  m  q
  m  q  m  q  n  q  nC  q  nk  q  n  q  n  q  n  q  o  q  o0  q  oX  q  o  q  o  q  o  q  o  q  p   q  pH  q  pp  q  p  q  p  q  p  q  q  q   q4  q!  q\  q"  q  q#  q  q$  q  q%  q  q&  r!  q'  rG  q(  ro  q)  r  q*  r  q+  r  q,  s  q-  s3  q.  s[  q/  s  q0  s  q1  s  q2  s  q3  t#  q4  tK  q5  ts  q6  t  q7  t  q8  t  q9  u  q:  u:  q;  ub  q<  u  q=  u  q>  u  q?  u  q@  v'  qA  vO  qB  vw  qC  v  qD  v  qE  v  qF  w  qG  w?  qH  wg  qI  w  qJ  w  qK  w  qL  x  qM  x/  qN  xW  qO  x  qP  x  qQ  x  qR  x  qS  y  qT  yG  qU  ym  qV  y  qW  y  qX  y  qY  z  qZ  z4  q[  z[  q\  z  q]  z  q^  z  q_  z  q`  {   qa  {H  qb  {p  qc  {  qd  {  qe  {  qf  |  qg  |6  qh  |[  qi  |  qj  |  qk  |  ql  |  qm  }#  qn  }I  qo  }q  qp  }  qq  }  qr  }  qs  ~  qt  ~7  qu  ~_  qv  ~  qw  ~  qx  ~  qy  ~  qz  '  q{  O  q|  w  q}    q~    q    q    q  =  q  e  q    q    q    q    q  -  q  U  q  |  q    q    q    q    q  >  q  f  q    q    q    q    q  .  q  V  q  ~  q    q    q    q    q  E  q  m  q    q    q    q    q  5  q  ]  q    q    q    q    q  %  q  M  q  u  q    q    q    q    q  =  q  e  q    q    q    q    q  -  q  U  q  }  q    q    q    q    q  E  q  m  q    q    q    q    q  5  q  ]  q    q    q    q    q  %  q  M  q  u  q    q    q    q    q  =  q  e  q    q    q    q    q  -  q  U  q  }  q    q    q    q    q  E  q  l  q    q    q    q    q  4  q  \  q    q    q    q    q  $  q  L  q  t  q    q    q    q    q  :  q  b  q    q    q    q    q  *  q  R  q  z  q    q    q    q    q  B  q  j  q    q    q    r   
  r  2  r  Z  r    r    r    r    r  "  r  J  r	  r  r
    r    r    r    r  :  r  b  r    r    r    r    r  *  r  R  r  z  r    r    r    r    r  B  r  j  r    r    r    r   
  r!  2  r"  Z  r#    r$    r%    r&    r'  "  r(  J  r)  r  r*    r+    r,    r-     r.  (  r/  P  r0  x  r1    r2    r3    r4    r5  <  r6  b  r7    r8    r9    r:    r;  *  r<  R  r=  y  r>    r?    r@    rA    rB  8  rC  `  rD    rE    rF    rG     rH  $  rI  L  rJ  t  rK    rL    rM    rN    rO  :  rP  b  rQ    rR    rS    rT    rU  *  rV  R  rW  z  rX    rY    rZ    r[    r\  ?  r]  W  r^  }  r_    r`    ra    rb    rc  C  rd  i  re    rf    rg    rh  	  ri  1  rj  W  rk    rl    rm    rn    ro    rp  E  rq  k  rr    rs    rt    ru    rv  3  rw  [  rx    ry    rz    r{    r|  #  r}  K  r~  s  r    r    r    r    r  :  r  b  r    r    r    r    r  *  r  R  r  z  r    r    r    r    r  @  r  h  r    r    r    r    r  .  r  V  r  ~  r    r    r    r    r  F  r  n  r    r    r    r    r  6  r  ^  r    r    r    r    r  &  r  N  r  v  r    r    r    r    r  +  r  S  r  {  r    r    r    r    r  @  r  h  r    r    r    r    r  -  r  T  r  |  r    r    r    r    r  B  r  j  r    r    r    r    r  .  r  U  r  |  r    r    r    r    r  A  r  i  r    r    r    r    r  .  r  T  r  |  r    r    r    r    r  @  r  h  r    r    r    r    r  .  r  V  r  |  r    r    r    r    r  B  r  j  r    r    r    r  
  r  2  r  Z  r    r    r    r    r  !  r  F  r  m  r    r    r    r    r  4  r  \  s     s    s    s    s  !  s  I  s  q  s    s    s	    s
    s  8  s  `  s    s    s    s    s  &  s  M  s  s  s    s    s    s    s  8  s  `  s    s    s    s    s  '  s  O  s   v  s!    s"    s#    s$    s%  <  s&  c  s'    s(    s)    s*     s+  (  s,  P  s-  u  s.    s/    s0    s1    s2  <  s3  c  s4  Ê  s5  ò  s6    s7     s8  (  s9  M  s:  u  s;  ĝ  s<    s=    s>    s?  ;  s@  c  sA  ŋ  sB  Ű  sC    sD    sE  '  sF  O  sG  w  sH  Ɵ  sI    sJ    sK    sL  ?  sM  f  sN  ǎ  sO  Ƕ  sP    sQ    sR  .  sS  V  sT  ~  sU  Ȧ  sV    sW    sX    sY  E  sZ  m  s[  ɕ  s\  ɽ  s]    s^    s_  4  s`  \  sa  ʄ  sb  ʬ  sc    sd    se  $  sf  L  sg  t  sh  ˛  si    sj    sk    sl  :  sm  b  sn  ̊  so  ̱  sp    sq    sr  )  ss  Q  st  x  su  ͠  sv    sw    sx    sy  @  sz  h  s{  ΐ  s|  θ  s}    s~    s  /  s  V  s  }  s  ϥ  s    s    s    s  E  s  l  s  Д  s  м  s    s    s  )  s  P  s  w  s  ќ  s    s    s    s  3  s  Y  s    s  Ҧ  s    s    s    s  @  s  g  s  ӎ  s  ӵ  s    s    s  -  s  U  s  |  s  Ԥ  s    s    s    s  A  s  i  s  Ռ  s  ձ  s    s    s  (  s  O  s  w  s  ֜  s    s    s    s  :  s  a  s  ׉  s  װ  s    s    s  &  s  M  s  u  s  ؜  s    s    s    s  2  s  W  s  |  s  ٤  s    s    s    s  >  s  f  s  ڍ  s  ڴ  s    s     s  (  s  P  s  s  s  ۚ  s    s    s    s  :  s  b  s  ܊  s  ܲ  s    s    s  '  s  O  s  w  s  ݞ  s    s    s    s  <  s  c  s  މ  s  ޱ  s    s     s  (  s  P  s  x  s  ߟ  s    s    s    s  >  s  e  s    s    s    s    s  *  s  O  s  w  s    s    s    s    s  =  s  d  s    s    t     t    t  )  t  Q  t  y  t    t    t    t    t	  =  t
  e  t    t    t    t    t  ,  t  S  t  {  t    t    t    t    t  A  t  i  t    t    t    t    t  /  t  W  t    t    t     t!    t"    t#  E  t$  m  t%    t&    t'    t(  
  t)  1  t*  Y  t+    t,    t-    t.    t/     t0  H  t1  p  t2    t3    t4    t5    t6  3  t7  Z  t8    t9    t:    t;    t<    t=  G  t>  o  t?    t@    tA    tB    tC  4  tD  \  tE    tF    tG    tH    tI    tJ  E  tK  m  tL    tM    tN    tO    tP  4  tQ  \  tR    tS    tT    tU    tV  "  tW  J  tX  r  tY    tZ    t[    t\    t]  7  t^  ^  t_    t`    ta    tb    tc  #  td  I  te  q  tf    tg    th    ti    tj  5  tk  \  tl    tm    tn    to    tp  "  tq  J  tr  r  ts    tt    tu    tv    tw  8  tx  `  ty    tz    t{    t|    t}  '  t~  O  t  v  t    t    t    t    t  <  t  d  t    t    t    t    t  *  t  R  t  z  t    t    t    t    t  A  t  h  t    t    t    t    t  .  t  V  t  ~  t    t    t    t    t  E  t  m  t    t    t    t  
  t  2  t  Z  t    t    t    t    t  !  t  I  t  q  t    t    t    t    t  5  t  \  t    t    t    t    t  #  t  K  t  s  t    t    t    t     t   :  t   b  t     t     t     t     t  (  t  P  t  x  t    t    t    t    t  @  t  g  t    t    t    t    t  /  t  V  t    t    t    t    t     t  H  t  p  t    t    t    t    t  8  t  `  t    t    t    t     t  (  t  P  t  x  t    t    t    t    t  9  t  a  t    t    t    t    t  $  t  K  t  r  t    t    t    t  	  t  	8  t  	]  t  	  t  	  t  	  t  	  t  
  t  
F  u   
n  u  
  u  
  u  
  u  
  u  1  u  V  u  z  u    u	    u
    u    u  B  u  i  u    u    u    u    u  -  u  U  u  }  u    u    u    u    u  ?  u  g  u    u    u    u    u  /  u   V  u!  {  u"    u#    u$    u%    u&  B  u'  j  u(    u)    u*    u+     u,  (  u-  G  u.  o  u/    u0    u1    u2    u3    u4  8  u5  X  u6  |  u7    u8    u9    u:    u;  .  u<  U  u=  |  u>    u?    u@    uA    uB  6  uC  \  uD    uE    uF    uG    uH    uI  :  uJ  `  uK    uL    uM    uN    uO    uP  F  uQ  m  uR    uS    uT    uU  	  uV  )  uW  O  uX  w  uY    uZ    u[    u\    u]  3  u^  [  u_    u`    ua    ub    uc    ud  ;  ue  a  uf    ug    uh    ui    uj  #  uk  K  ul  s  um    un    uo    up    uq  6  ur  Y  us    ut    uu    uv    uw     ux  G  uy  m  uz    u{    u|    u}    u~  +  u  S  u  {  u    u    u    u    u  >  u  e  u    u    u    u    u  *  u  O  u  w  u    u    u    u     u   <  u   d  u     u     u     u  !  u  !,  u  !T  u  !|  u  !  u  !  u  !  u  "  u  "D  u  "l  u  "  u  "  u  "  u  #  u  #4  u  #\  u  #  u  #  u  #  u  #  u  $$  u  $L  u  $t  u  $  u  $  u  $  u  %  u  %<  u  %d  u  %  u  %  u  %  u  &  u  &,  u  &T  u  &|  u  &  u  &  u  &  u  '  u  'D  u  'l  u  '  u  '  u  '  u  (  u  (4  u  (\  u  (  u  (  u  (  u  (  u  )$  u  )L  u  )t  u  )  u  )  u  )  u  *  u  *<  u  *d  u  *  u  *  u  *  u  +  u  +,  u  +T  u  +|  u  +  u  +  u  +  u  ,  u  ,D  u  ,l  u  ,  u  ,  u  ,  u  -  u  -4  u  -\  u  -  u  -  u  -  u  -  u  .$  u  .L  u  .t  u  .  u  .  u  .  u  /  u  /<  u  /d  u  /  u  /  u  /  u  0  u  0,  u  0T  u  0|  u  0  u  0  u  0  u  1  u  1D  v   1l  v  1  v  1  v  1  v  2  v  24  v  2\  v  2  v  2  v	  2  v
  2  v  3$  v  3L  v  3t  v  3  v  3  v  3  v  4  v  4<  v  4d  v  4  v  4  v  4  v  5  v  5,  v  5T  v  5|  v  5  v  5  v  5  v  6  v  6D  v   6l  v!  6  v"  6  v#  6  v$  7  v%  74  v&  7\  v'  7  v(  7  v)  7  v*  7  v+  8$  v,  8L  v-  8t  v.  8  v/  8  v0  8  v1  9  v2  9<  v3  9d  v4  9  v5  9  v6  9  v7  :  v8  :,  v9  :T  v:  :|  v;  :  v<  :  v=  :  v>  ;  v?  ;D  v@  ;l  vA  ;  vB  ;  vC  ;  vD  <  vE  <4  vF  <\  vG  <  vH  <  vI  <  vJ  <  vK  =$  vL  =L  vM  =t  vN  =  vO  =  vP  =  vQ  >  vR  ><  vS  >d  vT  >  vU  >  vV  >  vW  ?  vX  ?,  vY  ?T  vZ  ?|  v[  ?  v\  ?  v]  ?  v^  @  v_  @D  v`  @l  va  @  vb  @  vc  @  vd  A  ve  A4  vf  A\  vg  A  vh  A  vi  A  vj  A  vk  B$  vl  BL  vm  Bt  vn  B  vo  B  vp  B  vq  C  vr  C<  vs  Cd  vt  C  vu  C  vv  C  vw  D  vx  D)  vy  DQ  vz  Dy  v{  D  v|  D  v}  D  v~  E  v  E7  v  EZ  v  E|  v  E  v  E  v  E  v  F  v  F7  v  FY  v  F  v  F  v  F  v  F  v  G  v  G?  v  G_  v  G  v  G  v  G  v  G  v  H  v  HD  v  Hj  v  H  v  H  v  H  v  H  v  I'  v  IL  v  Ip  v  I  v  I  v  I  v  J
  v  J0  v  JV  v  J|  v  J  v  J  v  J  v  K  v  K:  v  Kb  v  K  v  K  v  K  v  K  v  L"  v  LJ  v  Lr  v  L  v  L  v  L  v  M  v  M:  v  Mb  v  M  v  M  v  M  v  N  v  N*  v  NR  v  Nz  v  N  v  N  v  N  v  O  v  O7  v  O\  v  O  v  O  v  O  v  O  v  P  v  P@  v  Pg  v  P  v  P  v  P  v  Q  v  Q*  v  QR  v  Qy  v  Q  v  Q  v  Q  v  R  v  R=  v  Re  v  R  v  R  v  R  v  S  v  S(  v  SO  v  Sv  v  S  v  S  v  S  v  T  v  T9  v  T^  v  T  v  T  v  T  v  T  v  U#  v  UJ  v  Ur  v  U  v  U  v  U  v  V  v  V+  v  VP  v  Vu  v  V  v  V  v  V  v  W  v  W1  v  WU  v  W{  v  W  v  W  v  W  v  X  v  X8  v  X^  w   X  w  X  w  X  w  X  w  Y  w  Y9  w  Y_  w  Y  w  Y  w	  Y  w
  Y  w  Z  w  ZB  w  Ze  w  Z  w  Z  w  Z  w  Z  w  [  w  [>  w  [d  w  [  w  [  w  [  w  [  w  \  w  \D  w  \l  w  \  w  \  w  \  w  ]  w   ],  w!  ]Q  w"  ]w  w#  ]  w$  ]  w%  ]  w&  ^  w'  ^5  w(  ^X  w)  ^}  w*  ^  w+  ^  w,  ^  w-  _  w.  _8  w/  _]  w0  _  w1  _  w2  _  w3  _  w4  `  w5  `9  w6  `_  w7  `  w8  `  w9  `  w:  `  w;  a  w<  aB  w=  ag  w>  a  w?  a  w@  a  wA  b  wB  b(  wC  bL  wD  br  wE  b  wF  b  wG  b  wH  c  wI  c*  wJ  cO  wK  ct  wL  c  wM  c  wN  c  wO  d  wP  d0  wQ  dV  wR  d{  wS  d  wT  d  wU  d  wV  e  wW  e9  wX  e\  wY  e  wZ  e  w[  e  w\  e  w]  f  w^  f@  w_  ff  w`  f  wa  f  wb  f  wc  f  wd  g'  we  gL  wf  gr  wg  g  wh  g  wi  g  wj  h  wk  h.  wl  hT  wm  hz  wn  h  wo  h  wp  h  wq  i  wr  i4  ws  iW  wt  i}  wu  i  wv  i  ww  i  wx  j  wy  j9  wz  j_  w{  j  w|  j  w}  j  w~  j  w  k  w  kE  w  km  w  k  w  k  w  k  w  l  w  l.  w  lT  w  ly  w  l  w  l  w  l  w  m  w  m8  w  m`  w  m  w  m  w  m  w  m  w  n!  w  nG  w  nm  w  n  w  n  w  n  w  o   w  o&  w  oL  w  ot  w  o  w  o  w  o  w  p  w  p0  w  pX  w  p  w  p  w  p  w  p  w  q  w  q<  w  qd  w  q  w  q  w  q  w  q  w  r'  w  rO  w  ru  w  r  w  r  w  r  w  s  w  s2  w  sZ  w  s  w  s  w  s  w  s  w  t  w  tA  w  tg  w  t  w  t  w  t  w  u   w  u(  w  uN  w  ut  w  u  w  u  w  u  w  v  w  v1  w  vW  w  v  w  v  w  v  w  v  w  w  w  w>  w  wd  w  w  w  w  w  w  w  w  w  x$  w  xJ  w  xr  w  x  w  x  w  x  w  y  w  y7  w  y_  w  y  w  y  w  y  w  y  w  z#  w  zK  w  zq  w  z  w  z  w  z  w  {  w  {3  w  {[  w  {  w  {  w  {  w  {  w  |#  w  |K  w  |s  w  |  w  |  w  |  w  }  w  }4  w  }[  w  }  w  }  w  }  w  }  w  ~  w  ~@  w  ~g  x   ~  x  ~  x  ~  x    x  ,  x  T  x  |  x    x    x	    x
    x  A  x  h  x    x    x    x    x  .  x  U  x  |  x    x    x    x    x  B  x  i  x    x    x    x    x  +  x  S  x   {  x!    x"    x#    x$    x%  6  x&  ^  x'    x(    x)    x*    x+  #  x,  J  x-  q  x.    x/    x0    x1    x2  7  x3  ^  x4    x5    x6    x7    x8    x9  B  x:  j  x;    x<    x=    x>    x?  -  x@  U  xA  {  xB    xC    xD    xE    xF  >  xG  f  xH    xI    xJ    xK    xL  ,  xM  T  xN  {  xO    xP    xQ    xR    xS  @  xT  g  xU    xV    xW    xX    xY  '  xZ  N  x[  v  x\    x]    x^    x_    x`  9  xa  a  xb    xc    xd    xe    xf  )  xg  P  xh  u  xi    xj    xk    xl    xm  <  xn  c  xo    xp    xq    xr    xs  &  xt  N  xu  v  xv    xw    xx    xy    xz  =  x{  d  x|    x}    x~    x    x  (  x  P  x  x  x    x    x    x    x  ?  x  g  x    x    x    x    x  +  x  R  x  z  x    x    x    x    x  A  x  i  x    x    x    x  	  x  0  x  X  x    x    x    x    x    x  F  x  n  x    x    x    x  
  x  2  x  X  x    x    x    x    x    x  C  x  j  x    x    x    x  	  x  1  x  X  x    x    x    x    x    x  F  x  n  x    x    x    x  
  x  1  x  Y  x    x    x    x    x     x  H  x  p  x    x    x    x    x  7  x  _  x    x    x    x    x  $  x  L  x  s  x    x    x    x    x  :  x  `  x    x    x    x    x  '  x  O  x  w  x    x    x    x    x  <  x  d  x    x    x    x    x  ,  x  T  x  |  x    x    x    x    x  C  x  j  x    x    x    x  	  x  1  x  Y  x    x    x    y     y     y  H  y  p  y    y    y    y    y  8  y	  `  y
    y    y    y    y  &  y  N  y  v  y    y    y    y    y  =  y  e  y    y    y    y    y  +  y  R  y  z  y    y    y     y!    y"  ?  y#  g  y$    y%    y&    y'    y(  .  y)  Q  y*  y  y+    y,    y-    y.    y/  @  y0  h  y1    y2    y3    y4    y5  /  y6  W  y7    y8    y9    y:    y;    y<  3  y=  Y  y>    y?    y@    yA    yB    yC  C  yD  i  yE    yF    yG    yH  	  yI  1  yJ  Y  yK    yL    yM    yN    yO    yP  G  yQ  o  yR    yS    yT    yU    yV  5  yW  ]  yX    yY    yZ    y[    y\  $  y]  L  y^  t  y_    y`    ya    yb    yc  8  yd  `  ye    yf    yg    yh     yi  '  yj  O  yk  w  yl    ym    yn    yo    yp  ?  yq  g  yr    ys    yt    yu    yv  /  yw  W  yx    yy    yz    y{    y|    y}  E  y~  m  y    y    y    y    y  3  y  [  y    y    y    y    y  #  y  K  y  s  y    y    y    y    y  ;  y  c  y    y    y    y    y  +  y  S  y  {  y    y    y    y    y  C  y  k  y    y    y    y    y  3  y  [  y    y    y    y    y  #  y  K  y  s  y    y    y    y    y  ;  y  c  y    y    y    y    y  +  y  S  y  {  y    y    y    y    y  2  y  Z  y  Â  y  ê  y    y    y  "  y  J  y  r  y  Ě  y    y    y    y  8  y  `  y  ň  y  Ű  y    y    y  &  y  N  y  v  y  ƞ  y    y    y    y  >  y  f  y  ǎ  y  Ƕ  y    y    y  .  y  V  y  |  y  Ȥ  y    y    y    y  D  y  l  y  ɔ  y  ɼ  y    y    y  4  y  \  y  ʄ  y  ʬ  y    y    y  $  y  L  y  t  y  ˜  y    y    y    y  :  y  b  y  ̊  y  ̲  y    y    y  *  y  P  y  x  z   ͠  z    z    z    z  @  z  h  z  ΐ  z  θ  z    z	    z
  .  z  V  z  }  z  ϥ  z    z    z    z  C  z  k  z  Б  z  й  z    z  	  z  1  z  Y  z  с  z  ѩ  z    z    z  !  z  I  z  q  z   ҙ  z!  ҿ  z"    z#    z$  7  z%  _  z&  Ӈ  z'  ӯ  z(    z)    z*  '  z+  O  z,  w  z-  ԟ  z.    z/    z0    z1  ?  z2  g  z3  Տ  z4  շ  z5    z6    z7  /  z8  W  z9    z:  ֧  z;    z<    z=    z>  G  z?  o  z@  ח  zA  ׿  zB    zC    zD  7  zE  _  zF  ؇  zG  د  zH    zI    zJ  '  zK  O  zL  w  zM  ٟ  zN    zO    zP    zQ  ?  zR  g  zS  ڏ  zT  ڷ  zU    zV    zW  /  zX  W  zY    zZ  ۧ  z[    z\    z]    z^  G  z_  o  z`  ܗ  za  ܿ  zb    zc    zd  7  ze  _  zf  ݇  zg  ݯ  zh    zi    zj  '  zk  O  zl  w  zm  ޟ  zn    zo    zp    zq  ?  zr  g  zs  ߏ  zt  ߷  zu    zv    zw  .  zx  V  zy  ~  zz    z{    z|    z}    z~  E  z  m  z    z    z    z    z  5  z  ]  z    z    z    z    z  %  z  M  z  u  z    z    z    z    z  =  z  e  z    z    z    z    z  ,  z  T  z  |  z    z    z    z    z  D  z  l  z    z    z    z    z  4  z  \  z    z    z    z    z  $  z  L  z  t  z    z    z    z    z  <  z  d  z    z    z    z    z  ,  z  T  z  |  z    z    z    z    z  D  z  l  z    z    z    z    z  4  z  \  z    z    z    z    z  $  z  L  z  s  z    z    z    z    z  ;  z  c  z    z    z    z    z  *  z  R  z  z  z    z    z    z    z  >  z  f  z    z    z    z    z  .  z  V  z  ~  z    z    z    z    z  B  z  j  z    z    z    z  
  z  2  z  Z  z    z    z    z    z  !  z  I  z  q  z    z    z    z    z  8  z  `  {     {    {    {    {  &  {  N  {  v  {    {    {	    {
    {  >  {  f  {    {    {    {    {  .  {  V  {  ~  {    {    {    {    {  E  {  m  {    {    {    {    {  5  {  ]  {     {!    {"    {#    {$  #  {%  K  {&  s  {'    {(    {)    {*    {+  :  {,  b  {-    {.    {/    {0    {1  *  {2  R  {3  z  {4    {5    {6    {7    {8  B  {9  j  {:    {;    {<    {=  	  {>  0  {?  X  {@    {A    {B    {C    {D      {E   H  {F   p  {G     {H     {I     {J    {K  8  {L  `  {M    {N    {O    {P     {Q  (  {R  P  {S  x  {T    {U    {V    {W    {X  @  {Y  h  {Z    {[    {\    {]    {^  0  {_  X  {`    {a    {b    {c    {d     {e  H  {f  p  {g    {h    {i    {j    {k  7  {l  _  {m    {n    {o    {p    {q  '  {r  O  {s  w  {t    {u    {v    {w    {x  ?  {y  g  {z    {{    {|    {}  	  {~  	/  {  	V  {  	~  {  	  {  	  {  	  {  
  {  
F  {  
n  {  
  {  
  {  
  {    {  6  {  ^  {    {    {    {    {  &  {  N  {  v  {    {    {    {    {  >  {  f  {    {    {    {    {  -  {  U  {  }  {    {    {    {    {  E  {  m  {    {    {    {    {  5  {  ]  {    {    {    {    {  %  {  M  {  u  {    {    {    {    {  =  {  e  {    {    {    {    {  -  {  U  {  }  {    {    {    {    {  D  {  l  {    {    {    {    {  4  {  \  {    {    {    {    {  $  {  L  {  t  {    {    {    {    {  <  {  d  {    {    {    {    {  +  {  S  {  {  {    {    {    {    {  C  {  k  {    {    {    {    {  3  {  [  {    {    {    {    {  "  {  J  {  r  {    {    {    {    {  :  {  b  {    {    {    {    {  *  {  R  |   z  |    |    |    |    |  B  |  j  |    |    |	    |
  	  |  1  |  Y  |    |    |    |    |   !  |   I  |   q  |     |     |     |  !  |  !9  |  !a  |  !  |  !  |  !  |  "  |  ")  |  "Q  |   "y  |!  "  |"  "  |#  "  |$  #  |%  #A  |&  #i  |'  #  |(  #  |)  #  |*  $	  |+  $1  |,  $Y  |-  $  |.  $  |/  $  |0  $  |1  %!  |2  %I  |3  %q  |4  %  |5  %  |6  %  |7  &  |8  &9  |9  &a  |:  &  |;  &  |<  &  |=  '  |>  ')  |?  'Q  |@  'y  |A  '  |B  '  |C  '  |D  (  |E  (A  |F  (i  |G  (  |H  (  |I  (  |J  )	  |K  )1  |L  )Y  |M  )  |N  )  |O  )  |P  )  |Q  *!  |R  *I  |S  *q  |T  *  |U  *  |V  *  |W  +  |X  +9  |Y  +a  |Z  +  |[  +  |\  +  |]  ,  |^  ,)  |_  ,Q  |`  ,y  |a  ,  |b  ,  |c  ,  |d  -  |e  -A  |f  -i  |g  -  |h  -  |i  -  |j  .	  |k  .1  |l  .Y  |m  .  |n  .  |o  .  |p  .  |q  /!  |r  /I  |s  /q  |t  /  |u  /  |v  /  |w  0  |x  09  |y  0a  |z  0  |{  0  ||  0  |}  0  |~  1'  |  1M  |  1u  |  1  |  1  |  1  |  2  |  2=  |  2c  |  2  |  2  |  2  |  3  |  3+  |  3S  |  3y  |  3  |  3  |  3  |  4  |  4A  |  4i  |  4  |  4  |  4  |  5  |  5/  |  5W  |  5}  |  5  |  5  |  5  |  6  |  6E  |  6m  |  6  |  6  |  6  |  7  |  75  |  7[  |  7  |  7  |  7  |  7  |  8#  |  8K  |  8q  |  8  |  8  |  8  |  9  |  98  |  9`  |  9  |  9  |  9  |  :   |  :(  |  :P  |  :x  |  :  |  :  |  :  |  ;  |  ;@  |  ;h  |  ;  |  ;  |  ;  |  <  |  <0  |  <X  |  <  |  <  |  <  |  <  |  =   |  =H  |  =p  |  =  |  =  |  =  |  >  |  >8  |  >`  |  >  |  >  |  >  |  ?   |  ?(  |  ?P  |  ?x  |  ?  |  ?  |  ?  |  @  |  @@  |  @h  |  @  |  @  |  @  |  A  |  A0  |  AX  |  A  |  A  |  A  |  A  |  B   |  BH  |  Bp  |  B  |  B  |  B  |  C  |  C8  |  C`  |  C  |  C  |  C  |  D   |  D(  |  DL  |  De  |  D  |  D  |  D  |  D  |  E"  }   EH  }  Eo  }  E  }  E  }  E  }  F  }  F4  }  F\  }  F  }	  F  }
  F  }  F  }  G!  }  GI  }  Gq  }  G  }  G  }  G  }  H  }  H8  }  H`  }  H  }  H  }  H  }  H  }  I$  }  IL  }  It  }  I  }  I  }  I  }  J  }   J:  }!  Jb  }"  J  }#  J  }$  J  }%  K  }&  K&  }'  KM  }(  Kq  })  K  }*  K  }+  K  },  L  }-  L4  }.  L\  }/  L  }0  L  }1  L  }2  L  }3  M  }4  M>  }5  Mf  }6  M  }7  M  }8  M  }9  N  }:  N*  };  NR  }<  Nz  }=  N  }>  N  }?  N  }@  O  }A  O?  }B  Of  }C  O  }D  O  }E  O  }F  P  }G  P,  }H  PR  }I  Px  }J  P  }K  P  }L  P  }M  Q  }N  Q?  }O  Qg  }P  Q  }Q  Q  }R  Q  }S  R  }T  R,  }U  RT  }V  R{  }W  R  }X  R  }Y  R  }Z  S  }[  S@  }\  Sh  }]  S  }^  S  }_  S  }`  T  }a  T+  }b  TS  }c  Ty  }d  T  }e  T  }f  T  }g  U  }h  UA  }i  Ui  }j  U  }k  U  }l  U  }m  V  }n  V+  }o  VQ  }p  Vy  }q  V  }r  V  }s  V  }t  W  }u  W@  }v  Wh  }w  W  }x  W  }y  W  }z  X  }{  X+  }|  XS  }}  X{  }~  X  }  X  }  X  }  Y  }  YC  }  Yk  }  Y  }  Y  }  Y  }  Z	  }  Z1  }  ZY  }  Z  }  Z  }  Z  }  Z  }  [!  }  [I  }  [q  }  [  }  [  }  [  }  \  }  \8  }  \_  }  \  }  \  }  \  }  \  }  ]&  }  ]M  }  ]u  }  ]  }  ]  }  ]  }  ^  }  ^<  }  ^b  }  ^  }  ^  }  ^  }  _   }  _(  }  _P  }  _x  }  _  }  _  }  _  }  `  }  `@  }  `f  }  `  }  `  }  `  }  a  }  a.  }  aV  }  a~  }  a  }  a  }  a  }  b  }  bF  }  bn  }  b  }  b  }  b  }  c  }  c6  }  c^  }  c  }  c  }  c  }  c  }  d&  }  dN  }  dv  }  d  }  d  }  d  }  e  }  e<  }  ec  }  e  }  e  }  e  }  f  }  f+  }  fS  }  f{  }  f  }  f  }  f  }  g  }  gA  }  gi  }  g  }  g  }  g  }  h  }  h0  }  hX  }  h  }  h  }  h  }  h  }  i  }  iG  }  io  }  i  }  i  }  i  }  j  }  j6  }  j^  }  j  }  j  }  j  }  j  }  k&  }  kN  }  kv  }  k  }  k  }  k  }  l  }  l=  }  ld  }  l  }  l  ~   l  ~  m  ~  m,  ~  mS  ~  m{  ~  m  ~  m  ~  m  ~  n  ~	  nB  ~
  nj  ~  n  ~  n  ~  n  ~  o  ~  o/  ~  oW  ~  o}  ~  o  ~  o  ~  o  ~  p  ~  pC  ~  pk  ~  p  ~  p  ~  p  ~  q  ~  q3  ~  q[  ~  q  ~  q  ~   q  ~!  q  ~"  r!  ~#  rI  ~$  rp  ~%  r  ~&  r  ~'  r  ~(  s  ~)  s8  ~*  s`  ~+  s  ~,  s  ~-  s  ~.  t   ~/  t(  ~0  tP  ~1  tx  ~2  t  ~3  t  ~4  t  ~5  u  ~6  u@  ~7  uh  ~8  u  ~9  u  ~:  u  ~;  v  ~<  v/  ~=  vW  ~>  v  ~?  v  ~@  v  ~A  v  ~B  w  ~C  wG  ~D  wo  ~E  w  ~F  w  ~G  w  ~H  x
  ~I  x2  ~J  xZ  ~K  x  ~L  x  ~M  x  ~N  x  ~O  y"  ~P  yJ  ~Q  yr  ~R  y  ~S  y  ~T  y  ~U  z  ~V  z:  ~W  zb  ~X  z  ~Y  z  ~Z  z  ~[  {  ~\  {*  ~]  {R  ~^  {z  ~_  {  ~`  {  ~a  {  ~b  |  ~c  |B  ~d  |j  ~e  |  ~f  |  ~g  |  ~h  }
  ~i  }2  ~j  }Z  ~k  }  ~l  }  ~m  }  ~n  }  ~o  ~"  ~p  ~J  ~q  ~r  ~r  ~  ~s  ~  ~t  ~  ~u    ~v  :  ~w  b  ~x    ~y    ~z    ~{    ~|  *  ~}  R  ~~  z  ~    ~    ~    ~    ~  A  ~  i  ~    ~    ~    ~    ~  0  ~  X  ~    ~    ~    ~    ~    ~  @  ~  h  ~    ~    ~    ~    ~  0  ~  X  ~    ~    ~    ~    ~     ~  H  ~  p  ~    ~    ~    ~    ~  #  ~  K  ~  s  ~    ~    ~    ~    ~  :  ~  a  ~    ~    ~    ~    ~  %  ~  L  ~  t  ~    ~    ~    ~    ~  8  ~  `  ~    ~    ~    ~    ~  %  ~  L  ~  t  ~    ~    ~    ~    ~  ;  ~  b  ~    ~    ~    ~    ~  $  ~  L  ~  t  ~    ~    ~    ~    ~  7  ~  _  ~    ~    ~    ~    ~  &  ~  N  ~  v  ~    ~    ~    ~    ~  ;  ~  c  ~    ~    ~    ~    ~  '  ~  O  ~  w  ~    ~    ~    ~    ~  >  ~  f  ~    ~    ~    ~    ~  .  ~  V  ~  ~  ~    ~    ~    ~    ~  D  ~  l  ~    ~    ~    ~    ~  4  ~  \                     "    J    r          	    
      9    a                    '    O    v                    <    d                    ,    T     |  !    "    #    $    %  C  &  k  '    (    )    *    +  3  ,  [  -    .    /    0    1  #  2  K  3  s  4    5    6    7    8  ;  9  b  :    ;    <    =    >  *  ?  R  @  z  A    B    C    D    E  B  F  j  G    H    I    J  
  K  2  L  Z  M    N    O    P    Q  "  R  E  S  V  T  k  U    V    W    X    Y  $  Z  K  [  p  \    ]    ^    _    `  /  a  R  b  w  c    d    e    f    g  4  h  [  i    j    k    l    m    n  E  o  m  p    q    r    s    t  /  u  W  v  {  w    x    y    z    {  :  |  b  }    ~              !    F    l                    /    V    ~                    F    n                    6    ^                    &    N    v                    =    e                    -    U    }                    E    m                    5    ]                    %    M    u                    4    \                         C    i                    ,    S    {                    8    ^                    &    M    u                    4    \                        E    m                    3    [                        A    i                    /    W    ~                     >    f              	    
  .    U    }                    >    f                    .    V    ~                    D    j       !    "    #  
  $  2  %  Z  &    '    (    )    *  "  +  J  ,  r  -    .    /    0    1  :  2  b  3  Ê  4  ñ  5    6     7  '  8  O  9  w  :  ğ  ;    <    =    >  =  ?  e  @  ō  A  ŵ  B    C    D  ,  E  T  F  |  G  Ƥ  H    I    J    K  B  L  j  M  Ǒ  N  ǹ  O    P    Q  .  R  U  S  }  T  Ȥ  U    V    W    X  C  Y  k  Z  ɓ  [  ɻ  \    ]    ^  3  _  V  `  ~  a  ʦ  b    c    d    e  E  f  m  g  ˕  h  ˽  i    j    k  5  l  ]  m  ̅  n  ̭  o    p    q  %  r  M  s  u  t  ͝  u    v    w    x  =  y  e  z  ΍  {  ε  |    }    ~  -    U    }    ϥ                E    m    Е    н        	    0    X        ѧ                D    l    Ҕ    Ҽ            )    Q    q    ә                7    ^    ԅ    Ԭ            $    K    s    ՚                6    ^    ֆ    ֮            &    N    t    ל                <    d    ،    ذ             $    J    r    ٚ                '    N    v    ڞ                8    `    ۈ    ۰            $    K    q    ܙ                9    `    ݅    ݭ            $    L    p    ޗ    ޿            7    _    ߇    ߯            $    I    q                    9    ^                         H    p                     8    `                    $    L  	  t  
                  7    _                    '    O    w                    =    d                   !  +  "  R  #  z  $    %    &    '    (  A  )  i  *    +    ,    -  	  .  0  /  X  0    1    2    3    4    5  E  6  l  7    8    9    :  
  ;  2  <  Z  =    >    ?    @    A  !  B  I  C  p  D    E    F    G    H  8  I  `  J    K    L    M    N  '  O  M  P  t  Q    R    S    T    U  ;  V  c  W    X    Y    Z    [  *  \  Q  ]  y  ^    _    `    a    b  ?  c  g  d    e    f    g    h  .  i  V  j  ~  k    l    m    n    o  B  p  j  q    r    s    t    u  /  v  V  w  ~  x    y    z    {    |  B  }  i  ~                  /    W    ~                    E    m                    5    ]                    $    K    s                    9    a                     (    P    x                    ?    g                    /    W                        G    n                      6     ]                        %    M    u                    <    d                    ,    T    |                    C    k                    3    [                    #    K    j                    (    O    k                    ,    T    |                	    	A    	i    	    	    	    
    
&    
J    
r     
    
    
        4    Z    |          	    
      C    k                	    1    Y                    !    I    q                    7    _       !    "    #    $  #  %  K  &  s  '    (    )    *    +  ;  ,  c  -    .    /    0    1  )  2  Q  3  y  4    5    6    7    8  =  9  e  :    ;    <    =    >  )  ?  Q  @  y  A    B    C    D    E  ?  F  g  G    H    I    J    K  /  L  W  M    N    O    P    Q    R  G  S  o  T    U    V    W    X  7  Y  _  Z    [    \    ]    ^  '  _  O  `  w  a    b    c    d    e  ?  f  g  g    h    i    j    k  /  l  W  m    n    o    p    q    r  =  s  d  t    u    v    w    x  ,  y  T  z  h  {    |    }    ~      /    W                        G    o                      7     _                        !%    !L    !t    !    !    !    "    ";    "c    "    "    "    #    #*    #R    #z    #    #    #    $    $B    $j    $    $    $    %
    %2    %Z    %    %    %    %    &     &G    &o    &    &    &    '    '6    '^    '    '    '    '    ("    (J    (r    (    (    (    )    ):    )b    )    )    )    *    *)    *Q    *y    *    *    *    +    +>    +f    +    +    +    ,    ,.    ,U    ,}    ,    ,    ,    -    -D    -l    -    -    -    .    .3    .[    .    .    .    .    /#    /K    /s    /    /    /    0    0;    0c    0    0    0    1    1*    1R    1z    1    1    1    2     2@    2h    2    2    2    3    3/    3W    3  	  3  
  3    3    4    4F    4n    4    4    4    5    55    5]    5    5    5    5    6$    6L    6t    6    6    6    7     7:  !  7b  "  7  #  7  $  7  %  8  &  8)  '  8Q  (  8y  )  8  *  8  +  8  ,  9  -  9@  .  9h  /  9  0  9  1  9  2  :  3  :0  4  :X  5  :  6  :  7  :  8  :  9  ;   :  ;H  ;  ;p  <  ;  =  ;  >  ;  ?  <  @  <8  A  <`  B  <  C  <  D  <  E  <  F  =&  G  =L  H  =t  I  =  J  =  K  =  L  >  M  ><  N  >d  O  >  P  >  Q  >  R  ?  S  ?+  T  ?S  U  ?{  V  ?  W  ?  X  ?  Y  @  Z  @C  [  @k  \  @  ]  @  ^  @  _  A  `  A3  a  A[  b  A  c  A  d  A  e  A  f  B#  g  BK  h  Bs  i  B  j  B  k  B  l  C  m  C;  n  Cc  o  C  p  C  q  C  r  D  s  D+  t  DR  u  Dz  v  D  w  D  x  D  y  E  z  EA  {  Ei  |  E  }  E  ~  E    F	    F1    FY    F    F    F    F    G     GH    Gp    G    G    G    H    H8    H`    H    H    H    I     I(    IP    Ix    I    I    I    J    J?    Jg    J    J    J    K    K.    KV    K~    K    K    K    L    LE    Lm    L    L    L    M    M5    M]    M    M    M    M    N$    NL    Nt    N    N    N    O    O;    Oc    O    O    O    P    P+    PS    P{    P    P    P    Q    QC    Qk    Q    Q    Q    R    R3    RZ    R    R    R    R    S"    SJ    Sr    S    S    S    T    T:    Tb    T    T    T    U    U*    UR    Uz    U    U    U    V    VA    Vi    V    V    V    W    W0    WX    W    W    W    W    X     XG    Xo    X    X    X    Y    Y7    Y_    Y    Y    Y    Y     Z'    ZO    Zw    Z    Z    Z    [    [?    [g  	  [  
  [    [    \    \/    \W    \    \    \    \    ]    ]G    ]o    ]    ]    ]    ^    ^7    ^_    ^    ^    ^    ^     _'  !  _O  "  _w  #  _  $  _  %  _  &  `  '  `?  (  `g  )  `  *  `  +  `  ,  a  -  a/  .  aW  /  a  0  a  1  a  2  a  3  b  4  bG  5  bo  6  b  7  b  8  b  9  c  :  c7  ;  c_  <  c  =  c  >  c  ?  c  @  d&  A  dN  B  dv  C  d  D  d  E  d  F  e  G  e=  H  ee  I  e  J  e  K  e  L  f  M  f-  N  fU  O  f}  P  f  Q  f  R  f  S  g  T  gE  U  gm  V  g  W  g  X  g  Y  h  Z  h5  [  h]  \  h  ]  h  ^  h  _  h  `  i%  a  iM  b  iu  c  i  d  i  e  i  f  j  g  j<  h  jd  i  j  j  j  k  j  l  k  m  k,  n  kT  o  k|  p  k  q  k  r  k  s  l  t  lD  u  ll  v  l  w  l  x  l  y  m  z  m4  {  m\  |  m  }  m  ~  m    m    n$    nK    nr    n    n    n    o    o:    ob    o    o    o    p    p*    pR    pz    p    p    p    q    qB    qj    q    q    q    r	    r1    rY    r    r    r    r    s!    sI    sq    s    s    s    t    t9    ta    t    t    t    u     u(    uP    ux    u    u    u    v    v@    vh    v    v    v    w    w0    wX    w    w    w    w    x     xH    xp    x    x    x    y    y8    y`    y    y    y    y    z'    zO    zw    z    z    z    {    {?    {g    {    {    {    |    |/    |W    |    |    |    |    }    }F    }n    }    }    }    ~    ~6    ~^    ~    ~    ~    ~    %    M    t                    :    b                    *    R    z                     B    j                
    2    Z  	    
              "    J    r                    :    b                    *    R    z                   !  B  "  j  #    $    %    &  
  '  2  (  Z  )    *    +    ,    -  "  .  J  /  r  0    1    2    3    4  :  5  b  6    7    8    9    :  *  ;  R  <  z  =    >    ?    @    A  B  B  j  C    D    E    F  
  G  2  H  Z  I    J    K    L    M     N  H  O  p  P    Q    R    S    T  8  U  `  V    W    X    Y     Z  (  [  P  \  x  ]    ^    _    `    a  @  b  h  c    d    e    f    g  0  h  X  i    j    k    l    m     n  H  o  p  p    q    r    s    t  7  u  _  v    w    x    y    z  &  {  N  |  v  }    ~              =    e                    -    U    }                    E    m                    5    ]                    %    M    u                    =    e                    -    U    }                    E    m                    5    ]                    %    M    u                    =    e                    -    U    }                    E    m                    5    ]                    %    M    u                    =    e                    -    U    }                    E    m                    5    \                    $    L    t                     <    d                    ,    T  	  |  
                  C    k                    3    [                    #    K    s                   !  ;  "  c  #    $    %    &    '  +  (  S  )  {  *    +    ,    -    .  C  /  k  0    1    2    3    4  3  5  [  6    7    8    9    :  #  ;  K  <  s  =    >    ?    @    A  ;  B  c  C    D    E    F    G  +  H  S  I  {  J    K    L    M    N  A  O  g  P    Q    R    S    T  -  U  U  V  }  W    X    Y    Z    [  A  \  i  ]    ^    _    `    a  -  b  U  c  }  d    e    f    g    h  E  i  m  j    k    l    m    n  -  o  U  p  {  q    r    s    t    u  =  v  d  w    x    y    z    {  +  |  R  }  y  ~                  :    b                    %    M    u                    :    `                    $    K    s                    9    a        ±             (    P    w    Þ                >    f    Ď    ĵ            -    T    z    Ţ                B    j    Ƒ    ƹ        	    /    U    |    Ǥ                @    h    Ȑ    ȸ            .    V    }    ɥ                D    j    ʒ    ʺ        	    1    Y    }    ˥                D    l    ̔    ̼            4    \    ̈́    ͬ            "    I    m    Ε    ν            3    Y    ρ    ϩ                 H    p    Ж    м            4    \    ф     Ѭ            !    I    q    ҙ          	    
  7    ]    Ӆ    Ӭ            $    L    r    Ԛ                9    a    Չ    ձ            %    M    u     ֝  !    "    #    $  <  %  d  &  ׌  '  ״  (    )    *  *  +  R  ,  z  -  آ  .    /    0    1  A  2  i  3  ّ  4  ٹ  5    6    7  /  8  W  9  |  :  ڤ  ;    <    =    >  D  ?  l  @  ۔  A  ۼ  B    C    D  3  E  [  F  ܃  G  ܫ  H    I    J  #  K  K  L  s  M  ݛ  N    O    P    Q  ;  R  c  S  ދ  T  ޳  U    V    W  *  X  Q  Y  y  Z  ߡ  [    \    ]    ^  A  _  g  `    a    b    c    d  /  e  W  f    g    h    i    j    k  E  l  m  m    n    o    p    q  5  r  ]  s    t    u    v    w    x  G  y  o  z    {    |    }    ~  6    ^                    &    N    u                    =    e                    -    U    }                    E    l                
    2    Z                    !    I    q                    9    a                    )    Q    x                    <    d                    +    S    {                    C    k                    3    [                    #    K    s                    :    b                     (    N    v                    >    f                    .    V    ~                    E    m                    4    \                    $    L     t                    <    d          	    
      *    P    x                    @    h                    0    X                         H     p  !    "    #    $    %  5  &  ]  '    (    )    *    +   %  ,   K  -   s  .     /     0     1    2  ;  3  c  4    5    6    7    8  +  9  S  :  {  ;    <    =    >    ?  C  @  i  A    B    C    D    E  .  F  V  G  ~  H    I    J    K    L  F  M  n  N    O    P    Q    R  6  S  ^  T    U    V    W    X  &  Y  N  Z  v  [    \    ]    ^    _  >  `  f  a    b    c    d  	  e  	  f  	@  g  	h  h  	  i  	  j  	  k  
  l  
.  m  
V  n  
~  o  
  p  
  q  
  r    s  F  t  n  u    v    w    x  
  y  2  z  Z  {    |    }    ~      "    J    p                    8    `                     (    P    x                    <    d                    *    P    x                    @    h                    0    V    |                    D    l                    4    \                    $    L    t                    <    d                    ,    R    z                    @    h                    0    X                         H    p                    8    `                     (    P    x                    @    h                    .    V    ~                      F     n                   !     !4    !\    !    !    !    !    "#    "K    "s  	  "  
  "    "    #    #9    #a    #    #    #    #    $'    $O    $w    $    $    $    %    %?    %g    %    %    %    &     &/  !  &W  "  &  #  &  $  &  %  &  &  '  '  'G  (  'o  )  '  *  '  +  '  ,  (  -  (7  .  (_  /  (  0  (  1  (  2  (  3  )'  4  )O  5  )w  6  )  7  )  8  )  9  *  :  *?  ;  *g  <  *  =  *  >  *  ?  +  @  +/  A  +W  B  +  C  +  D  +  E  +  F  ,  G  ,G  H  ,o  I  ,  J  ,  K  ,  L  -  M  -7  N  -_  O  -  P  -  Q  -  R  -  S  .'  T  .O  U  .w  V  .  W  .  X  .  Y  /  Z  /?  [  /g  \  /  ]  /  ^  /  _  0  `  0/  a  0W  b  0}  c  0  d  0  e  0  f  1  g  1E  h  1m  i  1  j  1  k  1  l  2  m  25  n  2]  o  2  p  2  q  2  r  2  s  3%  t  3M  u  3s  v  3  w  3  x  3  y  4  z  4;  {  4c  |  4  }  4  ~  4    5    5)    5?    5b    5    5    5    6     6(    6P    6x    6    6    6    7    7<    7c    7    7    7    8    8*    8Q    8y    8    8    8    9    9<    9d    9    9    9    :    :)    :P    :x    :    :    :    ;    ;@    ;g    ;    ;    ;    <    <,    <T    <|    <    <    <    =    =D    =l    =    =    =    >	    >1    >Y    >    >    >    >    ?     ?G    ?n    ?    ?    ?    @    @1    @U    @}    @    @    @    A    AB    Aj    A    A    A    B    B,    BR    Bz    B    B    B    C    CB    Ch    C    C    C    D    D0    DT    D|    D    D    D    E    ED    El    E    E    E    F    F4    F\    F    F    F    F    G$    GL    Gt    G    G    G    H    H:    Hb    H    H     H    I    I    IB    Ih    I    I    I    J  	  J,  
  JT    J|    J    J    J    K    KA    Ki    K    K    K    L    L)    LP    Lw    L    L    L    M    M:    Mb    M     M  !  M  "  M  #  N'  $  NO  %  Nw  &  N  '  N  (  N  )  O  *  O=  +  Oe  ,  O  -  O  .  O  /  P  0  P,  1  PS  2  P{  3  P  4  P  5  P  6  Q  7  Q?  8  Qe  9  Q  :  Q  ;  Q  <  R  =  R+  >  RQ  ?  Rw  @  R  A  R  B  R  C  S  D  S=  E  Se  F  S  G  S  H  S  I  T  J  T,  K  TT  L  T|  M  T  N  T  O  T  P  U  Q  UB  R  Ui  S  U  T  U  U  U  V  V  W  V.  X  VV  Y  V|  Z  V  [  V  \  V  ]  W  ^  WB  _  Wh  `  W  a  W  b  W  c  X  d  X.  e  XV  f  X~  g  X  h  X  i  X  j  Y  k  YF  l  Ym  m  Y  n  Y  o  Y  p  Z
  q  Z2  r  ZZ  s  Z  t  Z  u  Z  v  Z  w  ["  x  [J  y  [r  z  [  {  [  |  [  }  \  ~  \:    \b    \    \    \    ]    ])    ]Q    ]y    ]    ]    ]    ^    ^?    ^f    ^    ^    ^    _    _,    _T    _|    _    _    _    `    `B    `j    `    `    `    a    a/    aW    a    a    a    a    b    bF    bn    b    b    b    c    c3    c[    c    c    c    c    d#    dK    ds    d    d    d    e    e;    ec    e    e    e    f    f*    fN    ft    f    f    f    g    g<    gd    g    g    g    h    h+    hS    h{    h    h    h    i    iA    ii    i    i    i    j	    j0    jX    j    j    j    j    k     kH    kp    k    k    k    l    l6    l]    l    l    l    l    m$    mL    mt    m    m    m    n    n;    nb    n    n    n    o    o)    oQ    oy    o    o    o    p    p@     ph    p    p    p    q    q/    qW    q    q  	  q  
  q    r    rG    ro    r    r    r    s    s5    s]    s    s    s    s    t%    tM    tu    t    t    t    u    u<     ub  !  u  "  u  #  u  $  v  %  v*  &  vR  '  vz  (  v  )  v  *  v  +  w  ,  wB  -  wj  .  w  /  w  0  w  1  x	  2  x1  3  xY  4  x  5  x  6  x  7  x  8  y   9  yH  :  yo  ;  y  <  y  =  y  >  z  ?  z7  @  z_  A  z  B  z  C  z  D  z  E  {&  F  {M  G  {u  H  {  I  {  J  {  K  |  L  |:  M  |b  N  |  O  |  P  |  Q  }  R  }*  S  }R  T  }z  U  }  V  }  W  }  X  ~  Y  ~A  Z  ~i  [  ~  \  ~  ]  ~  ^  	  _  1  `  Y  a    b    c    d    e  !  f  I  g  q  h    i    j    k    l  9  m  a  n    o    p    q    r  )  s  Q  t  y  u    v    w    x    y  A  z  i  {    |    }    ~  	    1    Y                         H    p                    8    `                     (    P    x                    @    h                    0    X    m                
    1    X    }                    ?    e                    &    N    s                    7    ^                         H    m                    /    T    |                    ?    e                    &    N    v                    =    e                    ,    T    z                    B    i                    *    P    w                    >    c                    *    R    y                     @    h                    )  	  Q  
  y                    ?    g                    (    P    x                    @    g               !    "  +  #  S  $  {  %    &    '    (    )  @  *  h  +    ,    -    .    /  +  0  S  1  y  2    3    4    5    6  >  7  f  8    9    :    ;    <  ,  =  T  >  |  ?    @    A    B    C  B  D  j  E    F    G    H    I  +  J  S  K  z  L    M    N    O    P  A  Q  e  R    S    T    U    V  ,  W  S  X  z  Y    Z    [    \    ]  ?  ^  f  _    `    a    b    c  +  d  R  e  y  f    g    h    i    j  @  k  h  l    m    n    o    p  /  q  W  r  ~  s    t    u    v    w  A  x  i  y    z    {    |    }  -  ~  U    }                    =    e                    -    U    }                    E    m                    5    ]                    %    H    j                    +    R    z                    ?    f                    *    R    x                    ;    c                    &    N    r                    6    ^                    !    I    q                    7    _                    '    O    v                    <    d                    )    Q    y                    =    d                    +    Q    y                    @    g                    -     T    x                    =    e      	    
          ,    T    |                    A    i        µ            -    U    }    å                 4  !  V  "  y  #  ġ  $    %    &    '  ?  (  e  )  ō  *  ŵ  +    ,    -  -  .  S  /  {  0  ƣ  1    2    3    4  C  5  k  6  Ǔ  7  Ǻ  8    9    :  *  ;  P  <  x  =  Ƞ  >    ?    @    A  7  B  ]  C  Ʌ  D  ɭ  E    F    G  "  H  J  I  q  J  ʙ  K    L    M    N  9  O  a  P  ˅  Q  ˬ  R    S    T    U  E  V  m  W  ̕  X  ̼  Y    Z    [  4  \  \  ]  ͂  ^  ͪ  _    `    a     b  H  c  p  d  Θ  e    f    g    h  8  i  `  j  ψ  k  ϰ  l    m     n  (  o  P  p  x  q  Р  r    s    t    u  @  v  h  w  ѐ  x  Ѹ  y    z    {  0  |  X  }  Ҁ  ~  Ҩ                 H    p    Ә                8    `    Ԉ    ԰             (    P    x    ՠ                @    h    ֐    ָ            0    X    ׀    ר                 H    p    ؘ                8    `    و    ٰ             (    P    x    ڠ                >    d    ۋ    ۲            )    Q    x    ܠ                8    `    ݈    ݯ            &    N    v    ޞ                =    c    ߊ    ߱            %    M    t                    8    _                    #    K    s                    9    a                    $    L    t                    ;    b                    &    M    r                     5    [                  	  #  
  K    p                    7    _                    '    O    v                    :    a           !    "     #  '  $  O  %  w  &    '    (    )    *  ?  +  g  ,    -    .    /    0  .  1  V  2  ~  3    4    5    6    7  A  8  i  9    :    ;    <    =  -  >  U  ?  |  @    A    B    C    D  C  E  k  F    G    H    I  	  J  0  K  X  L    M    N    O    P    Q  F  R  m  S    T    U    V  
  W  2  X  Z  Y    Z    [    \    ]     ^  H  _  o  `    a    b    c    d  7  e  _  f    g    h    i    j  $  k  L  l  s  m    n    o    p    q  8  r  _  s    t    u    v    w  &  x  N  y  v  z    {    |    }    ~  >    f                    -    U    z                    B    j                    0    X                         H    p                    7    _                     '     O     w                       ?    g                    -    U    }                    E    m                    3    [                    #    K    s                    ;    c                    *    R    z                    >    f                	    	.    	V    	~    	    	    	    
    
F    
l    
    
    
        4    \                    $    L    t                    <    b                     (    P     x                    @    h          	    
      0    X                         H    p                    8    `                     (    P     x  !    "    #    $    %  >  &  f  '    (    )    *    +  .  ,  V  -  ~  .    /    0    1    2  F  3  n  4    5    6    7    8  6  9  ^  :    ;    <    =    >  &  ?  N  @  v  A    B    C    D    E  >  F  f  G    H    I    J    K  .  L  V  M  ~  N    O    P    Q    R  F  S  n  T    U    V    W    X  6  Y  ^  Z    [    \    ]    ^  &  _  N  `  v  a    b    c    d    e  >  f  f  g    h    i    j    k  .  l  T  m  |  n    o    p    q     r   D  s   l  t     u     v     w  !
  x  !2  y  !Z  z  !  {  !  |  !  }  !  ~  "     "H    "p    "    "    "    #    #8    #`    #    #    #    $     $(    $P    $x    $    $    $    %    %@    %h    %    %    %    &    &0    &X    &    &    &    &    '     'J    'r    '    '    '    (    (:    (b    (    (    (    )    )*    )R    )z    )    )    )    *    *@    *h    *    *    *    +    +)    +N    +u    +    +    +    ,    ,4    ,[    ,    ,    ,    ,    -    -=    -d    -    -    -    -    .    .D    .k    .    .    .    /    /*    /O    /v    /    /    /    0    05    0\    0    0    0    0    1    1D    1i    1    1    1    2    2(    2O    2v    2    2    2    3    39    3`    3    3    3    3    4!    4F    4k    4    4    4    5    5,    5S    5{    5    5     5    6    6C    6j    6    6    6    7    7.  	  7U  
  7|    7    7    7    8    8A    8h    8    8    8    9    9*    9O    9v    9    9    9    :    :5    :Z    :    :     :  !  :  "  ;  #  ;E  $  ;l  %  ;  &  ;  '  ;  (  <  )  <+  *  <R  +  <y  ,  <  -  <  .  <  /  =  0  =8  1  =`  2  =  3  =  4  =  5  =  6  >#  7  >K  8  >p  9  >  :  >  ;  >  <  ?  =  ?1  >  ?X  ?  ?  @  ?  A  ?  B  ?  C  @  D  @E  E  @m  F  @  G  @  H  @  I  A  J  A-  K  AT  L  Ay  M  A  N  A  O  A  P  B  Q  B7  R  B^  S  B  T  B  U  B  V  B  W  C"  X  CI  Y  Cq  Z  C  [  C  \  C  ]  D  ^  D3  _  D[  `  D  a  D  b  D  c  D  d  E!  e  EF  f  En  g  E  h  E  i  E  j  F  k  F4  l  F[  m  F  n  F  o  F  p  F  q  G  r  GF  s  Gn  t  G  u  G  v  G  w  H  x  H4  y  H[  z  H  {  H  |  H  }  H  ~  I!    IH    Io    I    I    I    J    J4    J\    J    J    J    J    K"    KJ    Kr    K    K    K    L    L1    LV    L{    L    L    L    M    M2    MZ    M    M    M    M    N    N?    Nd    N    N    N    N    O$    OJ    Oq    O    O    O    P    P6    P^    P    P    P    P    Q!    QF    Qk    Q    Q    Q    R    R+    RS    Ry    R    R    R    S    S:    Sb    S    S    S    S    T'    TO    Tw    T    T    T    U    U:    U^    U    U    U    U    V"    VJ    Vr    V    V    V    W    W3    W[    W    W    W    W    X    XE    Xj    X    X    X    Y     Y'    YO    Yw    Y    Y    Y    Z    Z<    Zd    Z    Z    Z    Z    ['    [O    [w    [    [    [    \    \:    \b    \    \     \    \    ]$    ]K    ]s    ]    ]    ]    ^  	  ^5  
  ^]    ^    ^    ^    ^    _     _G    _o    _    _    _    `    `6    `[    `    `    `    `    a    aE    al    a     a  !  a  "  b
  #  b1  $  bY  %  b  &  b  '  b  (  b  )  c  *  cD  +  cl  ,  c  -  c  .  c  /  d
  0  d2  1  dZ  2  d  3  d  4  d  5  d  6  e  7  eC  8  ek  9  e  :  e  ;  e  <  f  =  f3  >  f[  ?  f  @  f  A  f  B  f  C  g!  D  gH  E  gp  F  g  G  g  H  g  I  h  J  h7  K  h^  L  h  M  h  N  h  O  h  P  i#  Q  iJ  R  iq  S  i  T  i  U  i  V  j  W  j8  X  j_  Y  j  Z  j  [  j  \  j  ]  k%  ^  kL  _  kt  `  k  a  k  b  k  c  l  d  l;  e  lc  f  l  g  l  h  l  i  m  j  m+  k  mS  l  m{  m  m  n  m  o  m  p  n  q  n@  r  nh  s  n  t  n  u  n  v  o  w  o/  x  oW  y  o  z  o  {  o  |  o  }  p  ~  pF    pm    p    p    p    q    q4    q\    q    q    q    q    r$    rK    rs    r    r    r    s    s7    s^    s    s    s    s    t$    tL    tt    t    t    t    u    u<    uc    u    u    u    v    v+    vS    vz    v    v    v    w    w@    wh    w    w    w    x    x/    xW    x    x    x    x    y    yF    yn    y    y    y    z    z4    z\    z    z    z    z    {$    {L    {t    {    {    {    |    |:    |b    |    |    |    |    }$    }K    }c    }    }    }    }    ~#    ~K    ~q    ~    ~    ~        7    _                    $    L    r                    8    `                    &    N    v                    <    d                    ,     T    |                    B    j      	    
      
    2    Z                        F    n                    6    ^                    $     L  !  t  "    #    $    %    &  8  '  `  (    )    *    +     ,  (  -  P  .  w  /    0    1    2    3  =  4  e  5    6    7    8    9  -  :  U  ;  }  <    =    >    ?    @  A  A  g  B    C    D    E    F  /  G  W  H    I    J    K    L    M  E  N  m  O    P    Q    R    S  3  T  [  U    V    W    X    Y  #  Z  K  [  s  \    ]    ^    _    `  ;  a  c  b    c    d    e    f  )  g  Q  h  y  i    j    k    l    m  =  n  e  o    p    q    r    s  )  t  Q  u  x  v    w    x    y    z  @  {  h  |    }    ~          0    X                        D    l                    4    \                    #    K    s                    9    a                    )    Q    y                    A    i                	    1    Y                        G    o                    7    ^                    $    L    t                    ;    c                    +    S    {                    C    k                    0    X                         H    p                    8    `                     (    P    x                    @    h                    0    X                         F    n                    5    ]  	    
              %    M    u                    =    e                    ,    T    |                   !  C  "  k  #    $    %    &    '  3  (  [  )    *    +    ,    -  !  .  G  /  m  0    1    2    3    4  5  5  ]  6    7    8    9    :  %  ;  M  <  u  =    >    ?    @    A  =  B  e  C    D    E    F    G  +  H  S  I  {  J    K    L    M    N  A  O  i  P    Q    R    S  	  T  1  U  Y  V    W    X    Y    Z  !  [  I  \  q  ]    ^    _    `    a  9  b  a  c    d    e    f    g  )  h  Q  i  y  j    k    l    m    n  A  o  i  p    q    r    s    t  0  u  X  v    w    x    y    z    {  G  |  o  }    ~              7    _                    '    M    u                    =    e        µ            -    U    }    ã                C    k    ē    Ļ            2    Z    ł    ũ            !    I    q    ƙ                9    a    ǉ    Ǳ            )    Q    y    ȡ                A    i    ɑ    ɹ        	    1    Y    ʀ    ʨ                 H    o    ˗    ˿            7    _    ̇    ̯            '    O    w    ͟                >    f    Ύ    ζ            .    V    ~    Ϧ                F    n    Ж    о            6    ^    ц    Ѯ            &    N    v    Ҟ                >    f    ӎ    Ӷ             .    V    ~    Ԧ                F  	  n  
  Ֆ    վ            4    \    ք    ֬            $    L    t    ל                <    d    ،    ش           !  ,  "  T  #  |  $  ٤  %    &    '    (  D  )  l  *  ڔ  +  ڼ  ,    -    .  4  /  \  0  ۄ  1  ۬  2    3    4  "  5  J  6  r  7  ܚ  8    9    :    ;  :  <  b  =  ݊  >  ݲ  ?    @    A  *  B  R  C  z  D  ޢ  E    F    G    H  B  I  j  J  ߒ  K  ߺ  L    M  
  N  2  O  Z  P    Q    R    S    T  !  U  I  V  q  W    X    Y    Z    [  9  \  a  ]    ^    _    `    a  )  b  Q  c  y  d    e    f    g    h  A  i  i  j    k    l    m  	  n  1  o  Y  p    q    r    s    t  !  u  I  v  q  w    x    y    z    {  9  |  a  }    ~              )    Q    y                    +    S    {                    <    b                    &    N    t                    <    c                     (    N    v                    :    `                     '    N    u                    <    d                    +    Q    x                    8    `                    '    N    u                    :    b                    '    O    w                    :    b                    )    Q    y                    @    h                    -    U    }                    E    m                    5    ]                          G    o              	    
  6    ^                    &    L    t                    :    b                      *     R     z        !     "     #    $  >  %  e  &    '    (    )    *  -  +  T  ,  |  -    .    /    0    1  B  2  j  3    4    5    6  
  7  1  8  Y  9    :    ;    <    =     >  G  ?  o  @    A    B    C    D  7  E  _  F    G    H    I    J  %  K  M  L  u  M    N    O    P    Q  =  R  e  S    T    U    V  	  W  	,  X  	S  Y  	{  Z  	  [  	  \  	  ]  
  ^  
C  _  
k  `  
  a  
  b  
  c    d  3  e  [  f    g    h    i    j  !  k  I  l  p  m    n    o    p    q  6  r  ^  s    t    u    v    w  &  x  M  y  t  z    {    |    }    ~  ;    b                        8    [    ~                
    +    O    r                    %    F    j                        >    b                        5    Y    }                    0    T    x                    +    O    s                    '    O    s                    '    K    o                    #    G    k                        C    g                        C    g                        >    b                        :    ^                        6    Z    ~                    2    V    z                 
     .     R     v                   !    !*    !N     !r    !    !    !    "    "&    "J    "n    "  	  "  
  "    "    #"    #F    #j    #    #    #    #    $    $B    $f    $    $    $    $    %    %>    %b    %    %    %     %  !  &  "  &3  #  &X  $  &~  %  &  &  &  '  &  (  '  )  ';  *  'a  +  '  ,  '  -  '  .  '  /  (  0  (C  1  (i  2  (  3  (  4  (  5  (  6  )!  7  )G  8  )l  9  )  :  )  ;  )  <  *  =  *)  >  *O  ?  *u  @  *  A  *  B  *  C  +  D  +1  E  +W  F  +|  G  +  H  +  I  +  J  ,  K  ,9  L  ,^  M  ,  N  ,  O  ,  P  ,  Q  -  R  -?  S  -e  T  -  U  -  V  -  W  -  X  .!  Y  .F  Z  .k  [  .  \  .  ]  .  ^  /  _  /)  `  /O  a  /u  b  /  c  /  d  /  e  0  f  02  g  0X  h  0}  i  0  j  0  k  0  l  1  m  17  n  1]  o  1  p  1  q  1  r  1  s  2  t  2A  u  2g  v  2  w  2  x  2  y  2  z  3!  {  3G  |  3l  }  3  ~  3    3    4    4'    4L    4r    4    4    4    5	    5/    5T    5z    5    5    5    6    68    6^    6    6    6    6    7    7@    7f    7    7    7    7    8$    8J    8p    8    8    8    9    9.    9T    9z    9    9    9    :    :8    :^    :    :    :    :    ;    ;?    ;e    ;    ;    ;    <    <)    <Q    <y    <    <    <    =    =;    =c    =    =    =    >     >(    >P    >x    >    >    >    ?    ?>    ?d    ?    ?    ?    @    @,    @T    @|    @    @    @    A    AD    Al    A    A    A    B    B4    B\    B    B    B    B    C"    CJ    Cr    C    C    C    D    D9    D`    D    D    D    D    E&    EN    Ev    E    E    E    F    F:    Fa    F    F    F    G    G)    GQ     Gy    G    G    G    H    H?    Hg    H    H  	  H  
  I    I-    IU    I}    I    I    I    J    JD    Jl    J    J    J    K    K4    K\    K    K    K    K    L"    LJ     Lr  !  L  "  L  #  L  $  M  %  M:  &  Mb  '  M  (  M  )  M  *  N  +  N*  ,  NR  -  Nz  .  N  /  N  0  N  1  O  2  OB  3  Oj  4  O  5  O  6  O  7  P
  8  P2  9  PZ  :  P  ;  P  <  P  =  P  >  Q!  ?  QI  @  Qq  A  Q  B  Q  C  Q  D  R  E  R9  F  Ra  G  R  H  R  I  R  J  S  K  S)  L  SQ  M  Sy  N  S  O  S  P  S  Q  T  R  TA  S  Ti  T  T  U  T  V  T  W  U	  X  U1  Y  UY  Z  U  [  U  \  U  ]  U  ^  V!  _  VI  `  Vo  a  V  b  V  c  V  d  W  e  W4  f  WZ  g  W  h  W  i  W  j  W  k  X!  l  XI  m  Xq  n  X  o  X  p  X  q  Y  r  Y9  s  Ya  t  Y  u  Y  v  Y  w  Z  x  Z'  y  ZO  z  Zw  {  Z  |  Z  }  Z  ~  [    [?    [g    [    [    [    \    \-    \U    \}    \    \    \    ]    ]C    ]k    ]    ]    ]    ^    ^3    ^[    ^    ^    ^    ^    _#    _K    _q    _    _    _    `    `7    `_    `    `    `    `    a'    aO    aw    a    a    a    b    b?    bg    b    b    b    c    c/    cW    c    c    c    c    d    dG    do    d    d    d    e    e7    e_    e    e    e    e    f'    fM    fu    f    f    f    g    g=    ge    g    g    g    h    h-    hU    h}    h    h    h    i    iE    im    i    i    i    j    j5    j]    j    j    j    j    k#    kK    kq    k    k    k    l    l7    l_    l    l    l    l    m%    mL    mt    m    m    m    n    n8    n`    n    n    n    n    o&     oN    ov    o    o    o    p    p4    p\    p  	  p  
  p    p    q!    qH    qp    q    q    q    r    r5    r]    r    r    r    r    s!    sH    so    s    s    s    t     t7  !  t_  "  t  #  t  $  t  %  t  &  u  '  uG  (  um  )  u  *  u  +  u  ,  v  -  v4  .  v[  /  v  0  v  1  v  2  v  3  w"  4  wJ  5  wr  6  w  7  w  8  w  9  x  :  x8  ;  x`  <  x  =  x  >  x  ?  y   @  y(  A  yP  B  yx  C  y  D  y  E  y  F  z  G  z<  H  zd  I  z  J  z  K  z  L  {  M  {*  N  {R  O  {y  P  {  Q  {  R  {  S  |  T  |?  U  |g  V  |  W  |  X  |  Y  }  Z  },  [  }R  \  }z  ]  }  ^  }  _  }  `  ~  a  ~?  b  ~g  c  ~  d  ~  e  ~  f    g  .  h  V  i  ~  j    k    l    m    n  E  o  m  p    q    r    s    t  4  u  \  v    w    x    y    z    {  ?  |  g  }    ~              ,    S    z                    A    h                    /    W                        D    l                    .    V    ~                    B    i                    0    W    ~                    ?    g                    +    R    w                    9    a                    &    M    t                    :    b                    (    O    w                    =    e                    *    R    z                    3    [                    !    I    q                    9    a                    )    Q    y                    A    i                 	    1    Y                  	  !  
  I    q                    8    `                     (    P    x                    @    h           !    "    #  0  $  X  %    &    '    (    )     *  H  +  p  ,    -    .    /    0  8  1  `  2    3    4    5     6  (  7  P  8  x  9    :    ;    <    =  @  >  h  ?    @    A    B    C  0  D  X  E    F    G    H    I     J  H  K  p  L    M    N    O    P  8  Q  `  R    S    T    U     V  (  W  P  X  x  Y    Z    [    \    ]  @  ^  h  _    `    a    b    c  0  d  H  e  p  f    g    h    i    j  6  k  ]  l    m    n    o    p  %  q  M  r  t  s    t    u    v    w  8  x  ^  y    z    {    |    }  &  ~  N    u                    =    e                    *    R    z                    @    g                    /    W                        G    o                    7    _                    '    O    w                    3    [                    #    K    r                    6    ^                    &    N    u                    ;    b                     (    N    v                    :    b                    *    R    y                    :    b                    )    Q    x                    ?    g                    -    T    |                    B     j                
    1    Y          	    
          G    o                    6    ]                    !    I    q                    8     `  !  Ç  "  ï  #    $    %  &  &  M  '  t  (  ě  )    *    +    ,  ;  -  c  .  ŉ  /  ű  0    1    2  )  3  Q  4  x  5  Ɵ  6    7    8    9  =  :  e  ;  Ǎ  <  ǵ  =    >    ?  +  @  S  A  {  B  ȣ  C    D    E    F  A  G  h  H  Ɏ  I  ɶ  J    K    L  .  M  V  N  ~  O  ʦ  P    Q    R    S  D  T  l  U  ˓  V  ˻  W    X    Y  3  Z  [  [  ̃  \  ̪  ]    ^    _  "  `  J  a  r  b  ͚  c    d    e    f  :  g  b  h  Ί  i  β  j    k    l  *  m  O  n  v  o  Ϟ  p    q    r    s  8  t  `  u  І  v  Э  w    x    y  "  z  H  {  n  |  і  }  Ѿ  ~          /    W        Ң                ?    g    ӏ    ӷ            .    V    }    ԥ                D    l    Ք    ռ        
    2    Y    ց    ֩                F    m    ו    ׽            5    ]    ؅    ح            #    J    r    ٚ                9    a    ډ    ڱ            )    Q    y    ۡ                @    g    ܏    ܷ            /    W        ݧ                G    n    ޖ    ޾            5    ]    ߅    ߭            !    I    q                    9    a                    )    Q    y                    A    i                	    1    Y                    !    I    q                     9    a                    )    Q  	  y  
                  A    i                	    1    X                         H    p                   !  8  "  `  #    $    %    &    '  "  (  G  )  l  *    +    ,    -  	  .  1  /  Y  0  z  1    2    3    4    5  A  6  i  7    8    9    :  	  ;  1  <  Y  =    >    ?    @    A  !  B  I  C  q  D    E    F    G    H  5  I  ]  J    K    L    M    N  "  O  J  P  r  Q    R    S    T    U  6  V  ]  W    X    Y    Z    [  "  \  J  ]  r  ^    _    `    a    b  4  c  [  d    e    f    g    h  #  i  J  j  r  k    l    m    n    o  9  p  a  q    r    s    t     u  (  v  P  w  x  x    y    z    {    |  >  }  e  ~                  +    S    {                    >    d                    +    R    z                    @    h                    0    X                         H    p                      6     ^                        %    M    t                    ;    c                    +    S    {                    C    k                
    2    Y    }                    E    m                    5    ]                    %    M    u                	    	=    	e    	    	    	    
    
,    
T    
|    
    
    
        ?    g                    /    W                        F    n                     6    ^                  	  &  
  M    u                    =    e                    ,    T    |                    A    i           !    "  	  #  1  $  Y  %    &    '    (    )    *  G  +  n  ,    -    .    /    0  3  1  [  2    3    4    5    6  "  7  J  8  r  9    :    ;    <    =  8  >  `  ?    @    A    B    C  %  D  L  E  t  F    G    H    I    J  :  K  b  L    M    N    O    P  )  Q  Q  R  y  S    T    U    V    W  A  X  i  Y    Z    [    \  	  ]  1  ^  Y  _    `    a    b    c  !  d  I  e  p  f    g    h    i    j  7  k  _  l    m    n    o    p  '  q  O  r  w  s    t    u    v     w   ?  x   g  y     z     {     |  !  }  !.  ~  !T    !|    !    !    !    "    "D    "l    "    "    "    #    #2    #Z    #    #    #    #    $    $G    $o    $    $    $    %    %5    %]    %    %    %    %    &%    &M    &u    &    &    &    '    '=    'e    '    '    '    (    (-    (U    (}    (    (    (    )    )C    )k    )    )    )    *	    *1    *W    *    *    *    *    +    +G    +o    +    +    +    ,    ,7    ,_    ,    ,    ,    ,    -'    -O    -w    -    -    -    .    .;    .c    .    .    .    /    /+    /S    /{    /    /    /    0    0C    0k    0    0    0    1    13    1[    1    1    1    1    2    2C    2j    2    2    2    3    3/    3W    3    3    3    3    4    4E    4k    4    4    4    5    53    5[     5    5    5    5    6#    6K    6s    6    6  	  6  
  7    7:    7b    7    7    7    8    8'    8O    8w    8    8    8    9    9=    9e    9    9    9    :    :-    :U     :}  !  :  "  :  #  :  $  ;  %  ;E  &  ;m  '  ;  (  ;  )  ;  *  <  +  <3  ,  <[  -  <  .  <  /  <  0  <  1  =!  2  =I  3  =q  4  =  5  =  6  =  7  >  8  >7  9  >_  :  >  ;  >  <  >  =  >  >  ?%  ?  ?M  @  ?u  A  ?  B  ?  C  ?  D  @  E  @;  F  @c  G  @  H  @  I  @  J  A  K  A+  L  AS  M  A{  N  A  O  A  P  A  Q  B  R  BC  S  Bk  T  B  U  B  V  B  W  C	  X  C1  Y  CY  Z  C  [  C  \  C  ]  C  ^  D!  _  DI  `  Do  a  D  b  D  c  D  d  E  e  E7  f  E]  g  E  h  E  i  E  j  E  k  F%  l  FM  m  Fu  n  F  o  F  p  F  q  G  r  G=  s  Ge  t  G  u  G  v  G  w  H  x  H-  y  HU  z  Hy  {  H  |  H  }  H  ~  I    IA    Ii    I    I    I    J	    J1    JY    J    J    J    J    K!    KI    Kq    K    K    K    L    L5    L]    L    L    L    L    M$    MJ    Mr    M    M    M    N    N8    N`    N    N    N    O     O(    OP    Ov    O    O    O    P    P>    Pf    P    P    P    Q    Q.    QV    Q~    Q    Q    Q    R    RF    Rn    R    R    R    S    S6    S\    S    S    S    S    T$    TL    Tr    T    T    T    U    U:    Ub    U    U    U    V    V*    VR    Vz    V    V    V    W    W@    Wh    W    W    W    X    X0    XV    X~    X    X    X    Y    YD    Yl    Y    Y    Y    Z    Z3    Z[    Z    Z    Z    Z    [#    [K    [s    [    [    [    \    \;    \c    \    \    \    ]    ]+     ]S    ]{    ]    ]    ]    ^    ^C    ^k    ^  	  ^  
  ^    _    _3    _[    _    _    _    _    `!    `I    `q    `    `    `    a    a9    aa    a    a    a    b    b)     bM  !  bu  "  b  #  b  $  b  %  c  &  c9  '  ca  (  c  )  c  *  c  +  d  ,  d)  -  dQ  .  dy  /  d  0  d  1  d  2  e  3  e?  4  eg  5  e  6  e  7  e  8  f  9  f+  :  fS  ;  f{  <  f  =  f  >  f  ?  g  @  gC  A  gk  B  g  C  g  D  g  E  h	  F  h1  G  hY  H  h  I  h  J  h  K  h  L  i  M  iG  N  im  O  i  P  i  Q  i  R  j  S  j5  T  j]  U  j  V  j  W  j  X  j  Y  k%  Z  kI  [  kq  \  k  ]  k  ^  k  _  l  `  l9  a  la  b  l  c  l  d  l  e  m  f  m%  g  mM  h  mu  i  m  j  m  k  m  l  n  m  n=  n  nc  o  n  p  n  q  n  r  o  s  o+  t  oS  u  o{  v  o  w  o  x  o  y  p  z  p?  {  pf  |  p  }  p  ~  p    q    q-    qU    q}    q    q    q    r    rE    rm    r    r    r    s    s4    s\    s    s    s    s    t$    tL    tt    t    t    t    u    u<    ud    u    u    u    v    v,    vT    v|    v    v    v    w    wD    wl    w    w    w    x    x4    x\    x    x    x    x    y"    yJ    yr    y    y    y    z    z:    zb    z    z    z    {    {*    {R    {z    {    {    {    |    |B    |j    |    |    |    }    }0    }X    }    }    }    }    ~    ~D    ~l    ~    ~    ~        3    [                    !    I    o                    7    _                    &    N    v                    >    f                    .    V    ~                     =    e                    +    S  	  y  
                  >    d                     (    P    x                    @    h                   !  ,  "  T  #  |  $    %    &    '    (  B  )  j  *    +    ,    -    .  0  /  X  0    1    2    3    4     5  H  6  p  7    8    9    :    ;  8  <  `  =    >    ?    @    A  &  B  L  C  t  D    E    F    G    H  <  I  d  J    K    L    M    N  ,  O  T  P  |  Q    R    S    T    U  D  V  l  W    X    Y    Z    [  4  \  \  ]    ^    _    `    a  "  b  J  c  r  d    e    f    g    h  3  i  Y  j    k    l    m    n  !  o  I  p  q  q    r    s    t    u  9  v  a  w    x    y    z    {  )  |  Q  }  y  ~                  A    i                	    1    Y                    !    H    p                    8    `                     (    P    x                    @    h                    0    O    y                    C    k                        3    K    a    y                        E    m                    "    7    L    a    v                            	        3    H    ]    r                                    /    D    Y    n                                    +    @    U    j                                    '    <    Q    f    {                                 -    E    ]    s              	    
          	    "    8    M    c                                )    ?    R    j                       !    "    #    $  2  %  E  &  [  '  q  (    )    *    +    ,    -    .    /    0  -  1  C  2  V  3  l  4    5    6    7    8    9    :    ;  ,  <  A  =  Z  >  p  ?    @    A    B    C    D    E  	  F    G  3  H  I  I  \  J  p  K    L    M    N    O    P    Q    R  #  S  :  T  Q  U  j  V    W    X    Y    Z    [    \    ]  +  ^  B  _  Z  `  {  a    b    c    d    e    f     g    h  )  i  ?  j  Z  k  q  l    m    n    o    p    q    r    s  -  t  F  u  \  v  o  w    x    y    z    {    |    }    ~       9    N    e    }                                9    T    i                                -    C    \    r                        	         8    O    k                                    /    C    X    q                                 /    F    _    u                                 /    C    a    z                                3    I    ]    s                                ,    @    V    l                                1    H    ]    y                                4    J    b    y                            *    B    Y    p                                 0    I    _    w                  	    
      )    ?    R    e                                +    C    Y    t                        
     !  !  5  "  I  #  b  $  x  %    &  ¨  '    (    )    *    +    ,  7  -  R  .  m  /  Ä  0  Ú  1  ð  2    3    4    5    6  *  7  A  8  Z  9  p  :  ć  ;  ģ  <  Ļ  =    >    ?    @  #  A  >  B  T  C  g  D  z  E  ō  F  Ŧ  G  ż  H    I    J    K    L  +  M  D  N  Z  O  q  P  Ɗ  Q  Ơ  R  Ʒ  S    T    U    V    W  '  X  >  Y  Y  Z  p  [  ǈ  \  ǜ  ]  Ƕ  ^    _    `    a    b  4  c  F  d  _  e  u  f  ȋ  g  Ȥ  h  Ⱥ  i    j    k    l    m  5  n  N  o  d  p  ɂ  q  ə  r  ɵ  s    t    u    v    w  /  x  M  y  f  z  ~  {  ʔ  |  ʬ  }    ~              #    <    R    j    ˆ    ˞    ˵                    4    R    k    ́    ̔    ̬                    !    7    P    k    ̓    ͙    Ͷ                    &    =    U    j    ΂    Π    ι                    0    G    [    q    Ϗ    ϩ    Ͻ                &    A    Y    m        Е    Ш    м                    !    <    S    n    х    ѝ    ѳ                        /    E    ^    t    Ґ    Ҭ                    *    >    P    h        ӓ    ӫ                        7    M    d    }    ԝ    Զ                    1    I    _    r    Պ    ա    պ                    0    I    ]    t    ֐    ֨                         9    P    e    {    ו  	  ׬  
                      .    G    ^    t    ؋    ؟    ض                    (    ?    X    n    ن    ٚ     ٶ  !    "    #    $    %  '  &  9  '  O  (  h  )  ~  *  ږ  +  ڭ  ,    -    .    /    0  %  1  F  2  b  3  x  4  ۓ  5  ۪  6    7    8    9    :     ;  :  <  Q  =  h  >  ܄  ?  ܝ  @  ܵ  A    B    C    D  
  E  #  F  9  G  K  H  i  I  ݃  J  ݚ  K  ݬ  L    M    N    O    P  &  Q  ?  R  X  S  p  T  ބ  U  ޖ  V  ެ  W  ޿  X    Y    Z    [    \  0  ]  H  ^  c  _  z  `  ߖ  a  ߮  b    c    d    e    f  #  g  4  h  J  i  `  j  s  k    l    m    n    o    p    q    r  (  s  C  t  Z  u  q  v    w    x    y    z    {    |    }  /  ~  M    f    y                                2    F    X    t                                0    G    _    z                                4    J    e    |                                *    =    N    b                                '    :    P    f                                $    <    R    k                                (    ;    N    _    r                                 0    F    ]    t                                %    ;    T    j                                    '    ;    P    b    v                                (    >    W    m                                 $    8    I    _    x  	    
                      &    <    S    l                                     *    A    U    k           !    "    #    $    %  	  &  "  '  8  (  N  )  g  *  }  +    ,    -    .    /    0    1    2  3  3  O  4  g  5  ~  6    7    8    9    :    ;    <    =  0  >  I  ?  _  @  v  A    B    C    D    E    F  	  G  "  H  <  I  T  J  l  K    L    M    N    O    P    Q    R  )  S  E  T  ]  U  s  V    W    X    Y    Z    [    \    ]  1  ^  G  _  \  `  w  a    b    c    d    e    f    g    h  *  i  B  j  _  k  {  l    m    n    o    p    q    r  &  s  =  t  Q  u  q  v    w    x    y    z    {    |    }  =  ~  V    o                                    6    L    e    {                                -    D    [    t                                -    C    V    t                        	         6    Q    h    ~                            #    =    T    l                                (    ?    S    j    ~                                   0     F     Y     o                                  
        :    Q    g    }                                .    I    `    y                            *    A    W    p                                    4    J    ]    q                                 -    E    [    o              	    
              #    <    R    h                                    1    J    `    w                   !    "    #    $  3  %  S  &  n  '    (    )    *    +    ,    -  	  .  	  /  	3  0  	F  1  	\  2  	r  3  	  4  	  5  	  6  	  7  	  8  
  9  
  :  
1  ;  
G  <  
`  =  
  >  
  ?  
  @  
  A  
  B  
  C    D    E  5  F  O  G  f  H  y  I    J    K    L    M    N    O  !  P  B  Q  ^  R  y  S    T    U    V    W    X  	  Y    Z  2  [  I  \  ]  ]  q  ^    _    `    a    b    c    d    e  &  f  <  g  O  h  f  i    j    k    l    m    n    o    p  ,  q  C  r  [  s  y  t    u    v    w    x    y    z    {  6  |  L  }  a  ~  w                                &    :    N    b    t                                    1    C    V    h    z                                    (    ;    I    W    h    ~                                    .    E    W    h    y                                
        0    @    S    g    ~                                 !    6    K    `    u                                    2    G    \    q                                    .    C    X    m                                     *    ?    T    i    ~                                &    ;    P    e    z                             !    ;    W    s      	    
                           8    T    p                                (    A    Z    q               !    "    #    $  *  %  B  &  \  '  v  (    )    *    +    ,    -    .    /  7  0  Q  1  k  2    3    4    5    6    7    8     9     :   +  ;   I  <   c  =   }  >     ?     @     A     B     C     D  !  E  !&  F  !@  G  !Z  H  !n  I  !  J  !  K  !  L  !  M  !  N  "   O  "  P  "4  Q  "N  R  "l  S  "  T  "  U  "  V  "  W  "  X  "  Y  #  Z  #(  [  #?  \  #V  ]  #n  ^  #  _  #  `  #  a  #  b  #  c  #  d  $  e  $&  f  $B  g  $Z  h  $t  i  $  j  $  k  $  l  $  m  $  n  %  o  %*  p  %>  q  %Z  r  %r  s  %  t  %  u  %  v  %  w  %  x  %  y  &  z  &%  {  &9  |  &S  }  &g  ~  &    &    &    &    &    '    '    '5    'Q    'k    '    '    '    '    '    '    (    (    (3    (O    (i    (    (    (    (    (    )     )    )9    )T    )o    )    )    )    )    )    *	    *%    *C    *W    *l    *    *    *    *    *    *    +    +#    +:    +Q    +e    +y    +    +    +    +    +    +    ,    ,    ,3    ,M    ,g    ,    ,    ,    ,    ,    -    -    -6    -Q    -l    -    -    -    -    -    -    .    .(    .9    .N    .h    .    .    .    .    .    .    /	    /!    /3    /J    /`    /v    /    /    /    /    /    0    0'    0E    0_    0y    0    0    0    0    0    0    1    1-    1I    1`    1w    1    1    1    1    1    2    2$    2;    2W    2s    2    2     2    2    2    3    3-    3G    3a    3{    3  	  3  
  3    3    3    4
    4    4)    4<    4Z    4q    4    4    4    4    4    5    5!    58    5R    5l    5    5    5     5  !  5  "  5  #  6  $  6%  %  69  &  6N  '  6c  (  6z  )  6  *  6  +  6  ,  6  -  6  .  6  /  7  0  7)  1  7>  2  7S  3  7h  4  7}  5  7  6  7  7  7  8  7  9  7  :  7  ;  8  <  8%  =  8:  >  8O  ?  8d  @  8y  A  8  B  8  C  8  D  8  E  8  F  8  G  8  H  9  I  9  J  9$  K  96  L  9H  M  9c  N  9z  O  9  P  9  Q  9  R  9  S  9  T  9  U  9  V  :  W  :   X  :0  Y  :B  Z  :R  [  :e  \  :v  ]  :  ^  :  _  :  `  :  a  :  b  :  c  ;  d  ;!  e  ;:  f  ;O  g  ;h  h  ;}  i  ;  j  ;  k  ;  l  ;  m  ;  n  ;  o  <  p  <%  q  <J  r  <`  s  <  t  <  u  <  v  <  w  <  x  <  y  =  z  =  {  =-  |  =B  }  =N  ~  =Z    =f    =r    =    =    =    =    =    =    >	    >    >0    >C    >Y    >m    >    >    >    >    >    >    >    ?    ?    ?-    ?C    ?W    ?l    ?    ?    ?    ?    ?    ?    ?    @    @)    @>    @S    @h    @}    @    @    @    @    @    @    A    A%    A:    AO    Ad    Ay    A    A    A    A    A    A    B    B!    B6    BK    B`    Bu    B    B    B    B    B    B    C    C    C2    CG    C\    Cq    C    C    C    C    C    C    D    D    D.    DC    DX    Dm    D    D    D    D    D    D    E     E    E*    E?    ET    Ei    E~    E    E    E    E    E    E    F    F&    F;    FP    Fe    Fz    F    F    F    F    F    F    G    G"    G7    GL    Ga    Gv    G    G    G    G     G    G    G    H    H    H    H*    H6    HC  	  HQ  
  H_    Hm    H{    H    H    H    H    H    H    H    H    H    I    I    I&    I2    I>    IJ    IX    If    Iq    I|     I  !  I  "  I  #  I  $  I  %  I  &  I  '  I  (  J  )  J'  *  JC  +  JU  ,  Jf  -  Jw  .  J  /  J  0  J  1  J  2  J  3  J  4  K   5  K  6  K/  7  KH  8  K^  9  Kv  :  K  ;  K  <  K  =  K  >  K  ?  K  @  L  A  L!  B  L4  C  LF  D  LX  E  Lk  F  L~  G  L  H  L  I  L  J  L  K  L  L  L  M  M   N  M  O  M,  P  MB  Q  MU  R  Mh  S  M|  T  M  U  M  V  M  W  M  X  M  Y  M  Z  N  [  N"  \  N2  ]  NG  ^  NY  _  Nm  `  N~  a  N  b  N  c  N  d  N  e  N  f  N  g  O  h  O  i  O*  j  O9  k  OJ  l  O[  m  On  n  O  o  O  p  O  q  O  r  O  s  O  t  P
  u  P#  v  P;  w  PT  x  Po  y  P  z  P  {  P  |  P  }  P  ~  P    P    Q    Q    Q(    Q;    QM    Q_    Qp    Q    Q    Q    Q    Q    Q    Q    Q    Q    R    R#    R8    RM    Rb    Rw    R    R    R    R    R    R    S
    S    S4    SI    S^    Ss    S    S    S    S    S    S    T    T    T0    TE    TZ    To    T    T    T    T    T    T    U    U    U,    UA    UV    Uk    U    U    U    U    U    U    U    V    V(    V=    VR    Vg    V|    V    V    V    V    V    V    W    W$    W9    WN    Wc    Wx    W    W    W    W    W    W    X    X     X5    XJ    X_    Xt    X    X    X    X    X    X    Y    Y    Y1    YF    Y[    Yp    Y    Y    Y    Y    Y    Y    Z    Z    Z-    ZB    ZW    Zl    Z    Z    Z    Z    Z    Z    Z    [    [     [;    [Y    [w    [    [    [    [    [    \  	  \,  
  \J    \h    \t    \    \    \    \    ]
    ](    ]F    ]d    ]    ]    ]    ]    ]    ^    ^6    ^T    ^r    ^    ^     ^  !  ^  "  _
  #  _(  $  _7  %  _J  &  _l  '  _x  (  _  )  _  *  _  +  _  ,  _  -  _  .  _  /  `  0  `&  1  `;  2  `P  3  `e  4  `z  5  `  6  `  7  `  8  `  9  `  :  `  ;  a  <  a"  =  a7  >  aL  ?  aa  @  av  A  a  B  a  C  a  D  a  E  b  F  b!  G  b>  H  b[  I  bx  J  b  K  b  L  b  M  b  N  c	  O  c&  P  cC  Q  c`  R  c}  S  c  T  c  U  c  V  c  W  d  X  d#  Y  d@  Z  d]  [  dz  \  d  ]  d  ^  d  _  d  `  e  a  e$  b  e=  c  eZ  d  ew  e  e  f  e  g  e  h  e  i  f  j  f  k  f;  l  fX  m  fu  n  f  o  f  p  f  q  f  r  g  s  g  t  g0  u  gM  v  gl  w  gx  x  g  y  g  z  g  {  g  |  g  }  g  ~  h    h    h1    h=    hK    h`    hv    h    h    h    h    h    h    i
    i"    i7    iL    ia    iv    i    i    i    i    i    i    j	    j    j3    jH    j]    jr    j    j    j    j    j    j    k    k    k-    kB    kW    kl    k    k    k    k    k    k    l     l    l*    l?    lT    li    lx    l    l    l    l    l    l    l    m    m    m+    m;    mK    m[    ml    m~    m    m    m    m    m    m    n    n    n2    nG    nS    nb    nu    n    n    n    n    n    n    n    o    o    o(    o=    oR    og    o|    o    o    o    o    o    o    p    p$    p9    pN    pc    px    p    p    p    p    p    p    q    q     q5    qJ    q_    qt    q    q    q    q    q    q    r    r     r1    rI    ra    rv    r    r    r    r    r  	  r  
  s    s&    s>    sS    sk    s    s    s    s    s    s    t    t    t1    tH    t]    tp    t    t    t    t    t     t  !  u  "  u&  #  u>  $  uT  %  ul  &  u  '  u  (  u  )  u  *  u  +  u  ,  u  -  u  .  u  /  u  0  v  1  v  2  v)  3  vB  4  vU  5  vj  6  v  7  v  8  v  9  v  :  v  ;  v  <  w  =  w   >  w8  ?  wN  @  wg  A  w}  B  w  C  w  D  w  E  w  F  w  G  x  H  x  I  x  J  x)  K  x5  L  x@  M  xL  N  xX  O  xd  P  xo  Q  x{  R  x  S  x  T  x  U  x  V  x  W  x  X  x  Y  y  Z  y  [  y1  \  yF  ]  y[  ^  yp  _  y  `  y  a  y  b  y  c  y  d  y  e  z  f  z  g  z/  h  zD  i  zY  j  zn  k  z  l  z  m  z  n  z  o  z  p  z  q  {  r  {  s  {+  t  {@  u  {U  v  {j  w  {  x  {  y  {  z  {  {  {  |  {  }  {  ~  |    |'    |<    |Q    |f    |{    |    |    |    |    |    |    }    }#    }8    }M    }b    }w    }    }    }    }    }    }    ~
    ~    ~4    ~I    ~^    ~s    ~    ~    ~    ~    ~    ~            0    E    Z    o                                    ,    A    V    k                                    (    =    R    g    |                                $    9    N    c    x                                     5    J    _    t                                    1    F    [    p                                    -    B    W    l                                    )    >    S    h    }                                 1    G    \    u  	    
                           8    S    t                        	    '    E    ]    u                   !    "    #  ,  $  A  %  X  &  q  '    (    )    *    +    ,    -    .    /    0  !  1  2  2  A  3  L  4  ]  5  u  6    7    8    9    :    ;    <    =    >  !  ?  6  @  K  A  `  B  v  C    D    E    F    G    H    I    J  )  K  @  L  Y  M  d  N  r  O    P    Q    R    S    T    U    V  )  W  >  X  W  Y  s  Z    [    \    ]    ^    _    `    a    b  #  c  8  d  M  e  b  f  w  g    h    i    j    k    l    m  
  n    o  4  p  I  q  ^  r  s  s    t    u    v    w    x    y    z    {  0  |  E  }  Z  ~  o                                    ,    A    V    k                                    (    =    R    g    |                                $    9    N    c    x                                     5    J    _    t                                    1    F    [    p                                    -    B    W    l                                    )    >    S    h    }                                %    :    O    d    y                                !    6    K    `    u                                    2    G    \    q                                     .    C    X    m                  	    
               *    ?    T    i    ~                                &    ;    P    e    z               !    "    #    $    %  "  &  7  '  L  (  a  )  v  *    +    ,    -    .    /    0  	  1    2  3  3  H  4  ]  5  r  6    7    8    9    :    ;    <    =    >  /  ?  D  @  Y  A  n  B    C    D    E    F    G    H    I    J  +  K  @  L  U  M  j  N    O    P    Q    R    S    T    U    V  '  W  <  X  Q  Y  f  Z  {  [    \    ]    ^    _    `    a    b  #  c  8  d  M  e  b  f  w  g    h    i    j    k    l    m  
  n    o  4  p  I  q  ^  r  s  s    t    u    v    w    x    y    z    {  0  |  E  }  Z  ~  o                                    ,    A    V    k                                    (    =    R    g    |                                $    9    N    c    x                                     5    J    _    t                                    1    F    [    p                                    -    B    W    l                                    )    >    S    h    }                                %    :    O    d    y                                !    6    K    `    u                                    2    G    \    q                                     9    Y    y                      	  9  
  Y    y                        9    Y    y                        9    Y    y                       !  /  "  M  #  k  $    %    &    '    (    )    *  =  +  [  ,  y  -    .    /    0    1    2  -  3  K  4  i  5    6    7    8    9    :  !  ;  A  <  a  =    >    ?    @    A    B  !  C  A  D  a  E    F    G    H    I    J  !  K  A  L  a  M    N    O    P    Q    R  !  S  A  T  a  U    V    W    X    Y    Z    [  3  \  Q  ]  o  ^    _    `    a    b    c  #  d  A  e  _  f  }  g    h    i    j    k    l  1  m  O  n  m  o    p    q    r    s    t    u  7  v  U  w  s  x    y    z    {    |    }    ~  9    U    q                            ;    W    s                        #    A    _    }        ¹                1    O    m    Ë    é                !    ?    ]    {    ę    ķ                -    I    e    Ń    ş    Ž                /    K    g    ƅ    ơ    ƽ                /    M    k    Ǉ    ǣ    ǿ                1    O    m    ȋ    ȩ                !    ?    ]    {    ə    ɷ                /    M    k    ʉ    ʧ                    =    [    y    ˔    ˲                *    H    f    ̄    ̢                    8    V    t    ͒    Ͱ            
    (    F    d    ΂    Π    ξ                 >    ^    ~    Ϟ    Ͼ                >  	  ^  
  ~    О    о                >    ^    ~    ў    Ѿ                >    \    z    Ҙ    Ҷ                 .  !  L  "  j  #  ӈ  $  Ӧ  %    &    '     (    )  <  *  Z  +  x  ,  Ԗ  -  Դ  .    /    0    1  ,  2  J  3  h  4  Ն  5  բ  6  վ  7    8    9    :  2  ;  P  <  l  =  ֈ  >  ֤  ?    @    A    B    C  2  D  N  E  j  F  ׆  G  פ  H    I    J    K    L  4  M  P  N  l  O  ؈  P  ئ  Q    R    S    T    U  9  V  W  W  u  X  ٓ  Y  ٱ  Z    [    \    ]  )  ^  G  _  e  `  ڃ  a  ڡ  b  ڿ  c    d    e    f  7  g  U  h  s  i  ۑ  j  ۯ  k    l    m    n  %  o  C  p  a  q    r  ܝ  s  ܻ  t    u    v    w  3  x  Q  y  o  z  ݍ  {  ݫ  |    }    ~      #    A    _    }    ޛ    ޹                1    M    i    ߅    ߣ    ߿                3    O    k                            1    O    m                            3    Q    o                        #    A    _    }                        1    O    m                        !    ?    ]    {                        '    E    c                            )    E    a    }                        +    G    c                            /    M    k                            =    [    y                        -    K    i                            8    V    t                     
    (    F    d                  	    
      6    T    r                        &    D    `    |                        *    F    b    ~       !    "    #    $    %  (  &  D  '  b  (    )    *    +    ,    -    .  *  /  F  0  d  1    2    3    4    5    6    7  .  8  J  9  f  :    ;    <    =    >    ?    @  ,  A  H  B  d  C    D    E    F    G    H    I  .  J  J  K  f  L    M    N    O    P    Q  $  R  D  S  d  T    U    V    W    X    Y  $  Z  D  [  d  \    ]    ^    _    `    a  $  b  D  c  d  d    e    f    g    h    i  "  j  @  k  ^  l  |  m    n    o    p    q    r  0  s  N  t  l  u    v    w    x    y    z     {  >  |  \  }  z  ~                      .    L    l                        ,    L    l                        ,    L    l                        ,    L    l                          &     D     b                                 4    R    p                        $    B    `    ~                        0    L    h                            2    N    j                            2    P    n                            4    R    p                        $    B    `    ~                        2    P    n                    	    	"    	@    	^    	|    	    	    	    	    

    
(    
F    
b    
~    
    
     
    
        (    D    `    |          	    
          *    F    b    ~                        2    P    n                        "    @    ^     |  !    "    #    $    %    &  0  '  N  (  l  )    *    +    ,    -    .    /  ;  0  Y  1  w  2    3    4    5    6    7  +  8  I  9  g  :    ;    <    =    >    ?    @  9  A  W  B  u  C    D    E    F    G    H  )  I  I  J  i  K    L    M    N    O  	  P  )  Q  I  R  i  S    T    U    V    W  	  X  )  Y  I  Z  i  [    \    ]    ^    _  	  `  )  a  I  b  i  c    d    e    f    g    h  !  i  ?  j  ]  k  {  l    m    n    o    p    q  /  r  M  s  k  t    u    v    w    x    y    z  =  {  [  |  y  }    ~                  )    E    c                            +    G    e                            -    K    g                            ,    J    h                            :    X    v                        *    H    f                              8     V     r                        !    !&    !D    !b    !    !    !    !    !    "    "4    "R    "p    "    "    "    "    #    #$    #B    #`    #~    #    #    #    #    $    $*    $H    $f    $    $    $    $    $    %    %,    %H    %d    %    %    %    %    %    &    &.    &J    &f    &    &    &    &    &    '    '4    'R    'p    '    '    '    '    (    ($    (B    (`    (~     (    (    (    (    )    )2    )P    )n    )  	  )  
  )    )    *    *     *<    *X    *v    *    *    *    *    +    +"    +>    +Z    +x    +    +    +    +    ,    ,"     ,@  !  ,^  "  ,z  #  ,  $  ,  %  ,  &  ,  '  -  (  -$  )  -@  *  -^  +  -|  ,  -  -  -  .  -  /  -  0  .  1  .0  2  .N  3  .l  4  .  5  .  6  .  7  .  8  /  9  /   :  />  ;  /\  <  /z  =  /  >  /  ?  /  @  /  A  0  B  0.  C  0L  D  0j  E  0  F  0  G  0  H  0  I  0  J  1  K  19  L  1W  M  1u  N  1  O  1  P  1  Q  1  R  2  S  2)  T  2G  U  2e  V  2  W  2  X  2  Y  2  Z  2  [  3  \  37  ]  3U  ^  3s  _  3  `  3  a  3  b  3  c  4  d  4!  e  4=  f  4[  g  4y  h  4  i  4  j  4  k  4  l  5  m  5#  n  5?  o  5[  p  5w  q  5  r  5  s  5  t  5  u  6	  v  6%  w  6A  x  6]  y  6y  z  6  {  6  |  6  }  6  ~  7    7#    7A    7]    7{    7    7    7    7    8	    8%    8C    8_    8{    8    8    8    8    9    9)    9E    9a    9}    9    9    9    9    :    :/    :O    :o    :    :    :    :    ;    ;/    ;O    ;o    ;    ;    ;    ;    <    </    <O    <o    <    <    <    <    =    =/    =O    =o    =    =    =    =    >    >#    >A    >_    >}    >    >    >    >    ?    ?1    ?O    ?m    ?    ?    ?    ?    @    @!    @?    @]    @{    @    @    @    @    A    A7    AW    Aw    A    A    A    A    B    B7    BW    Bw    B    B    B    B    C    C7    CW    Cw    C    C    C    C    D    D7    DU    Ds    D    D    D    D    E	    E'    EE    Ec    E    E    E    E    E    F    F5    FS    Fq     F    F    F    F    G    G%    GC    Ga    G  	  G  
  G    G    G    H    H+    HI    He    H    H    H    H    H    I    I+    IG    Ic    I    I    I    I    I    J     J-  !  JI  "  Je  #  J  $  J  %  J  &  J  '  J  (  K  )  K5  *  KS  +  Kq  ,  K  -  K  .  K  /  K  0  L  1  L%  2  LC  3  La  4  L  5  L  6  L  7  L  8  L  9  M  :  M3  ;  MQ  <  Mo  =  M  >  M  ?  M  @  M  A  N  B  N  C  N;  D  NY  E  Nu  F  N  G  N  H  N  I  N  J  O  K  O!  L  O=  M  O[  N  Ow  O  O  P  O  Q  O  R  O  S  P  T  P#  U  PA  V  P]  W  Py  X  P  Y  P  Z  P  [  P  \  Q  ]  Q%  ^  QC  _  Qa  `  Q  a  Q  b  Q  c  Q  d  Q  e  R  f  R3  g  RQ  h  Ro  i  R  j  R  k  R  l  R  m  S  n  S#  o  SA  p  S_  q  S}  r  S  s  S  t  S  u  S  v  T  w  T1  x  TO  y  Tj  z  T  {  T  |  T  }  T  ~  U     U    U<    UZ    Ux    U    U    U    U    V    V,    VJ    Vh    V    V    V    V    V    W    W:    WX    Wv    W    W    W    W    X    X4    XT    Xt    X    X    X    X    Y    Y4    YT    Yt    Y    Y    Y    Y    Z    Z4    ZT    Zt    Z    Z    Z    Z    [    [2    [P    [n    [    [    [    [    \    \"    \@    \^    \|    \    \    \    \    ]    ]0    ]N    ]l    ]    ]    ]    ]    ^    ^     ^>    ^\    ^x    ^    ^    ^    ^    _    _&    _B    _^    _z    _    _    _    _    `    `$    `@    `\    `z    `    `    `    `    a
    a&    aB    a^    a|    a    a    a    a    b    b-    bK    bi    b    b    b    b    b    c    c;    cY    cw    c    c    c    c    d    d+     dI    dg    d    d    d    d    d    e    e7  	  eU  
  es    e    e    e    e    f	    f'    fE    fc    f    f    f    f    f    g    g5    gS    gq    g    g    g    g     h  !  h#  "  h?  #  h[  $  hy  %  h  &  h  '  h  (  h  )  i	  *  i%  +  iA  ,  i]  -  i{  .  i  /  i  0  i  1  i  2  j  3  j%  4  jC  5  ja  6  j}  7  j  8  j  9  j  :  j  ;  k	  <  k'  =  kE  >  kc  ?  k  @  k  A  k  B  k  C  k  D  l  E  l5  F  lS  G  lq  H  l  I  l  J  l  K  l  L  m  M  m%  N  mC  O  ma  P  m  Q  m  R  m  S  m  T  m  U  n  V  n3  W  nQ  X  no  Y  n  Z  n  [  n  \  n  ]  n  ^  o  _  o9  `  oU  a  oq  b  o  c  o  d  o  e  o  f  o  g  p  h  p7  i  pS  j  po  k  p  l  p  m  p  n  p  o  q  p  q  q  q9  r  qU  s  qq  t  q  u  q  v  q  w  q  x  r  y  r#  z  rA  {  r_  |  r}  }  r  ~  r    r    r    s    s1    sO    sm    s    s    s    s    t    t!    t?    t]    t{    t    t    t    t    u    u,    uJ    uh    u    u    u    u    u    v    v:    vX    vv    v    v    v    v    w    w*    wH    wf    w    w    w    w    w    x    x6    xR    xn    x    x    x    x    y     y    y8    yT    yp    y    y    y    y    y    z    z8    zV    zt    z    z    z    z    {     {    {:    {V    {r    {    {    {    {    |    |     |<    |X    |t    |    |    |    |    }    }    }:    }X    }v    }    }    }    }    ~    ~     ~<    ~Z    ~z    ~    ~    ~    ~        :    Z    z                        :    Z    z                        :    Z    z                         4    R    p              	    
      $    B    `    ~                        2    P    n                        "    B    b           !    "    #    $  "  %  B  &  b  '    (    )    *    +    ,  "  -  B  .  b  /    0    1    2    3    4  "  5  B  6  b  7    8    9    :    ;    <    =  8  >  V  ?  t  @    A    B    C    D  
  E  (  F  F  G  d  H    I    J    K    L    M    N  6  O  T  P  r  Q    R    S    T    U    V  "  W  >  X  \  Y  x  Z    [    \    ]    ^    _  $  `  @  a  ^  b  z  c    d    e    f    g    h  &  i  D  j  `  k  |  l    m    n    o    p  
  q  (  r  F  s  d  t    u    v    w    x    y    z  6  {  T  |  r  }    ~                  &    D    b                            4    R    n                            8    T    p                            6    R    p                             8    T    r                        &    D    b                            4    R    p                        $    B    `    ~                        /    M    k                            =    [    y                        -    K    i                            ?    _                            ?    _                            ?    _                            ?    _                             3    Q    o                  	    
  #    A    _    }                        1    O    m                            9    U    s           !    "    #    $    %  ;  &  W  '  s  (    )    *    +    ,    -  !  .  =  /  Y  0  u  1    2    3    4    5    6     7  >  8  \  9  z  :    ;    <    =    >    ?  .  @  L  A  j  B    C    D    E    F     G    H  <  I  Z  J  x  K    L    M    N    O    P  ,  Q  H  R  f  S    T    U    V    W    X    Y  8  Z  V  [  t  \    ]    ^    _    `  
  a  (  b  F  c  d  d    e    f    g    h    i    j  6  k  T  l  r  m    n    o    p    q     r    s  <  t  X  u  t  v    w    x    y    z    {    |  :  }  V  ~  r                             <    X    t                    
    (    F    d                            6    T    r                        &    D    b                            .    L    h                            0    N    j                            4    P    l                            4    R    p                        $    B    `    ~                        2    P    n                        "    @    [    y                        -    K    i                            ;    Y    w                        +    I    g                            1    O     k                            1    M  	  i  
                          3    O    k                            3    Q    o                       !    "  5  #  Q  $  m  %    &    '    (    )    *    +  7  ,  S  -  o  .    /  §  0    1    2    3  %  4  E  5  e  6  Å  7  å  8    9    :    ;  %  <  E  =  e  >  ą  ?  ĥ  @    A    B    C  %  D  E  E  e  F  Ņ  G  ť  H    I    J    K  %  L  E  M  c  N  Ɓ  O  Ɵ  P  ƽ  Q    R    S    T  5  U  S  V  q  W  Ǐ  X  ǭ  Y    Z    [    \  %  ]  C  ^  a  _    `  ȝ  a  Ȼ  b    c    d    e  3  f  Q  g  o  h  ɍ  i  ɭ  j    k    l    m  -  n  M  o  m  p  ʍ  q  ʭ  r    s    t    u  -  v  M  w  m  x  ˍ  y  ˭  z    {    |    }  -  ~  M    m    ̍    ̭                +    I    g    ͅ    ͣ                    9    W    u    Γ    α                )    G    e    σ    ϡ    Ͽ                7    U    q    Ѝ    Щ                    ;    W    s    я    ѫ                    9    U    s    ґ    ү                    ;    W    u    ӓ    ӱ                )    G    e    ԃ    ԡ    Կ                7    U    s    Ց    կ            	    '    E    c    ց    ֟    ֽ                /    K    i    ׇ    ף    ׿                1    M    i    ؅    ء    ؽ                3    O    k    ه    ٣    ٿ                7    U    s    ڑ    گ            	    '     E    c    ہ    ۟    ۽                5  	  S  
  q    ܏    ܭ                %    @    ^    |    ݚ    ݸ                0    N    l    ފ    ި               !     "  >  #  \  $  z  %  ߘ  &  ߶  '    (    )    *  .  +  L  ,  j  -    .    /    0    1  
  2  *  3  J  4  j  5    6    7    8    9  
  :  *  ;  J  <  j  =    >    ?    @    A  
  B  *  C  J  D  j  E    F    G    H    I    J  &  K  D  L  b  M    N    O    P    Q    R    S  4  T  R  U  p  V    W    X    Y    Z    [  $  \  B  ]  `  ^  ~  _    `    a    b    c    d  2  e  N  f  j  g    h    i    j    k    l    m  4  n  P  o  l  p    q    r    s    t    u    v  2  w  P  x  n  y    z    {    |    }    ~      4    R    m                        !    ?    ]    {                        /    M    k                            =    [    y                        +    I    g                            9    W    u                        )    G    e                            1    O    k                            3    Q    m                            7    S    o                            9    W    u                        )    G    e                            7    U    s                    	    '    E    a    }                        +    G    c                             )    E    c                      	    
  +    G    e                            5    S    q                        %    C    a               !    "    #    $  3  %  Q  &  o  '    (    )    *    +    ,     -  >  .  \  /  z  0    1    2    3    4    5  .  6  L  7  j  8    9    :    ;    <       =      >    <  ?    Z  @    x  A      B      C      D      E     F   (  G   D  H   b  I   ~  J     K     L     M     N     O   *  P   F  Q   d  R     S     T     U     V     W     X   ,  Y   J  Z   f  [     \     ]     ^     _     `     a   ,  b   H  c   d  d     e     f     g     h     i     j   .  k   J  l   f  m     n     o     p     q     r     s   .  t   L  u   j  v     w     x     y     z     {     |   0  }   P  ~   p                              0     P     p                         	     	0     	P     	p     	     	     	     	     
     
0     
P     
p     
     
     
     
     
     (     F     d                                   6     T     r                              &     D     b                                   8     X     x                              8     X     x                              8     X     x                              8     X     x                              ,     J     h                                   :     X     v                              *     H     f                                   2     N     l                                   4     P     l                                    6     R     n                      	     
        :     X     v                              *     H     f                                   8     V     t             !     "     #   
  $   (  %   D  &   `  '   |  (     )     *     +     ,     -   *  .   F  /   b  0   ~  1     2     3     4     5     6   (  7   F  8   d  9     :     ;     <     =     >     ?   *  @   H  A   f  B     C     D     E     F     G     H   8  I   V  J   t  K     L     M     N     O    
  P    (  Q    F  R    d  S      T      U      V      W      X   !  Y   !6  Z   !T  [   !r  \   !  ]   !  ^   !  _   !  `   "  a   "#  b   "A  c   "_  d   "}  e   "  f   "  g   "  h   "  i   #  j   #1  k   #O  l   #m  m   #  n   #  o   #  p   #  q   $  r   $!  s   $?  t   $]  u   ${  v   $  w   $  x   $  y   $  z   %  {   %5  |   %U  }   %u  ~   %     %     %     %     &     &5     &U     &u     &     &     &     &     '     '5     'U     'u     '     '     '     '     (     (5     (U     (s     (     (     (     (     )	     )'     )E     )c     )     )     )     )     )     *     *5     *S     *q     *     *     *     *     +     +%     +C     +a     +     +     +     +     +     ,     ,+     ,I     ,g     ,     ,     ,     ,     ,     -     --     -I     -e     -     -     -     -     -     .     ./     .K     .g     .     .     .     .     .     /     /2     /P     /n     /     /     /     /     0     0"     0@     0^     0|     0     0     0     0     1     10     1N     1l     1     1     1     1     2     2     2<     2Z     2x     2     2     2     2     3     3,     3J     3h     3     3     3     3     3     4     4:     4X     4v     4     4      4     4     5     5*     5H     5d     5     5     5  	   5  
   5     6     6.     6J     6f     6     6     6     6     6     7     7,     7H     7f     7     7     7     7     7     8     8.     8J      8h  !   8  "   8  #   8  $   8  %   8  &   9  '   9:  (   9X  )   9v  *   9  +   9  ,   9  -   9  .   :  /   :*  0   :H  1   :f  2   :  3   :  4   :  5   :  6   :  7   ;  8   ;8  9   ;V  :   ;t  ;   ;  <   ;  =   ;  >   ;  ?   <  @   <"  A   <>  B   <\  C   <z  D   <  E   <  F   <  G   <  H   =  I   =$  J   =@  K   =\  L   =x  M   =  N   =  O   =  P   =  Q   >
  R   >&  S   >B  T   >^  U   >z  V   >  W   >  X   >  Y   >  Z   ?
  [   ?(  \   ?F  ]   ?d  ^   ?  _   ?  `   ?  a   ?  b   ?  c   @  d   @6  e   @T  f   @r  g   @  h   @  i   @  j   @  k   A  l   A&  m   AD  n   Ab  o   A  p   A  q   A  r   A  s   A  t   B  u   B1  v   BO  w   Bm  x   B  y   B  z   B  {   B  |   C  }   C!  ~   C?     C]     C{     C     C     C     C     D     D/     DM     Dk     D     D     D     D     E     E     E=     E[     Ew     E     E     E     E     F     F%     FA     F]     Fy     F     F     F     F     G     G#     G?     G[     Gy     G     G     G     G     H	     H%     HA     H]     H{     H     H     H     H     I	     I'     IE     Ia     I}     I     I     I     I     J     J'     JC     J_     J{     J     J     J     J     K     K)     KE     Ka     K}     K     K     K     K     L     L;     L[     L{     L     L     L     L     M     M;     M[     M{     M     M     M     M     N     N;     N[     N{     N     N     N     N     O     O9     OW     Ou     O     O     O     O     P     P)     PG     Pe     P     P     P     P     P     Q     Q7     QU     Qs     Q     Q     Q     Q     R	     R'     RE      Rc     R     R     R     R     S     S#     SC     Sc  	   S  
   S     S     S     T     T#     TC     Tc     T     T     T     T     U     U#     UC     Uc     U     U     U     U     V     V     V=      V[  !   Vy  "   V  #   V  $   V  %   V  &   W  '   W-  (   WK  )   Wi  *   W  +   W  ,   W  -   W  .   W  /   X  0   X;  1   XY  2   Xw  3   X  4   X  5   X  6   X  7   Y  8   Y+  9   YG  :   Yc  ;   Y  <   Y  =   Y  >   Y  ?   Y  @   Z  A   Z-  B   ZI  C   Ze  D   Z  E   Z  F   Z  G   Z  H   Z  I   [  J   [+  K   [I  L   [g  M   [  N   [  O   [  P   [  Q   [  R   \  S   \-  T   \K  U   \i  V   \  W   \  X   \  Y   \  Z   \  [   ]  \   ];  ]   ]Y  ^   ]w  _   ]  `   ]  a   ]  b   ]  c   ^  d   ^+  e   ^I  f   ^g  g   ^  h   ^  i   ^  j   ^  k   ^  l   _  m   _9  n   _W  o   _u  p   _  q   _  r   _  s   _  t   `  u   `!  v   `?  w   `]  x   `y  y   `  z   `  {   `  |   `  }   a  ~   a#     a?     a[     aw     a     a     a     a     b	     b%     bA     b]     by     b     b     b     b     c     c+     cI     cg     c     c     c     c     c     d     d9     dW     du     d     d     d     d     e     e)     eG     ee     e     e     e     e     e     f     f4     fR     fp     f     f     f     f     g     g$     gB     g`     g~     g     g     g     g     h     h2     hP     hn     h     h     h     h     i     i"     i@     i`     i     i     i     i     j      j      j@     j`     j     j     j     j     k      k      k@     k`     k     k     k     k     l      l      l@     l`     l     l     l     l     l     m     m8     mV     mt     m     m     m     m     n
     n(     nF     nd     n     n     n     n     n     o     o6     oT     or     o     o     o     o     p     p$     p@     p\      pz     p     p     p     p     q
     q&     qB     q^  	   q|  
   q     q     q     q     r     r&     rD     rb     r~     r     r     r     r     s
     s(     sC     sa     s     s     s     s     s      t  !   t3  "   tQ  #   to  $   t  %   t  &   t  '   t  (   u  )   u#  *   uA  +   u_  ,   u}  -   u  .   u  /   u  0   u  1   v  2   v1  3   vO  4   vm  5   v  6   v  7   v  8   v  9   w  :   w  ;   w=  <   w[  =   wy  >   w  ?   w  @   w  A   w  B   x  C   x-  D   xK  E   xi  F   x  G   x  H   x  I   x  J   x  K   y  L   y;  M   yY  N   yw  O   y  P   y  Q   y  R   y  S   z  T   z%  U   zA  V   z_  W   z}  X   z  Y   z  Z   z  [   z  \   {	  ]   {'  ^   {C  _   {_  `   {{  a   {  b   {  c   {  d   {  e   |  f   |)  g   |E  h   |a  i   |}  j   |  k   |  l   |  m   |  n   }  o   }-  p   }K  q   }i  r   }  s   }  t   }  u   }  v   }  w   ~  x   ~;  y   ~Y  z   ~w  {   ~  |   ~  }   ~  ~   ~          +     I     g                                   7     S     o                                   9     U     q                                   9     W     u                                   ;     W     u                              )     G     e                                   7     U     s                         	     '     E     c                                   2     P     n                              "     @     ^     |                              0     N     l                                   8     T     r                                    :     V     r                                    <     X     t                                   :     X     t                                     <     Z     v            	     
             "     @     \     x                              &     F     f                              &     F     f        !     "     #     $     %   &  &   F  '   f  (     )     *     +     ,     -   &  .   F  /   f  0     1     2     3     4     5     6   :  7   X  8   v  9     :     ;     <     =     >   *  ?   H  @   f  A     B     C     D     E     F     G   8  H   V  I   t  J     K     L     M     N     O   .  P   N  Q   n  R     S     T     U     V     W   .  X   N  Y   n  Z     [     \     ]     ^     _   .  `   N  a   n  b     c     d     e     f     g   .  h   N  i   l  j     k     l     m     n     o      p   >  q   \  r   z  s     t     u     v     w     x   .  y   L  z   j  {     |     }     ~                   <     Z     x                              $     B     `     |                         
     &     B     ^     z                              (     D     `     |                              .     L     j                                    <     Z     x                              ,     J     h                                   6     R     p                                    8     T     r                                   :     X     t                                    <     Z     x                              ,     J     h                                   :     X     v                              *     H     f                                   5     S     q                               %     C     a                 	     
             3     Q     o                              +     K     k                              +     K     k             !     "     #     $   +  %   K  &   k  '     (     )     *     +     ,   +  -   I  .   g  /     0     1     2     3     4     5   9  6   W  7   u  8     9     :     ;     <     =   )  >   G  ?   e  @     A     B     C     D     E     F   7  G   U  H   s  I     J     K     L     M     N     O   =  P   Y  Q   u  R     S     T     U     V     W     X   ;  Y   W  Z   s  [     \     ]     ^     _     `   !  a   =  b   Y  c   u  d     e     f     g     h     i   &  j   D  k   b  l     m     n     o     p     q     r   4  s   R  t   p  u     v     w     x     y     z   $  {   B  |   `  }   ~  ~                            0     N     l                                    >     \     z                              .     L     j                                    :     V     r                                    <     X     t                                   <     Z     x                                    >     \     z                              .     L     j          ¦                          <     Z     x     Ö     ô                    ,     J     h     Ć     Ģ     ľ                    2     P     l     ň     Ť                         2     N     j     Ɔ     Ƥ                         4     P     l     ǈ     Ǧ                         :     X     v     Ȕ     Ȳ                    *     H     f      Ʉ     ɢ                         8     V     t  	   ʒ  
   ʰ                    %     C     a          ˝     ˻                    3     Q     o     ̍     ̫                    #      A  !   _  "   }  #   ͛  $   ͹  %     &     '     (   1  )   M  *   i  +   ΅  ,   Σ  -   ο  .     /     0     1   3  2   O  3   k  4   χ  5   ϥ  6     7     8     9     :   1  ;   O  <   m  =   Ћ  >   Ч  ?     @     A     B     C   3  D   Q  E   m  F   щ  G   ѥ  H     I     J     K     L   7  M   S  N   o  O   ҋ  P   ҧ  Q     R     S     T     U   5  V   Q  W   o  X   Ӎ  Y   ӫ  Z     [     \     ]     ^   7  _   S  `   q  a   ԑ  b   Ա  c     d     e     f   1  g   Q  h   q  i   Ց  j   ձ  k     l     m     n   1  o   Q  p   q  q   ֑  r   ֱ  s     t     u     v   1  w   Q  x   q  y   ב  z   ױ  {     |     }     ~   -     K     i     ؇     إ                         ;     Y     w     ٕ     ٳ                    +     I     g     څ     ڣ                         9     Y     y     ۙ     ۹                    9     Y     y     ܙ     ܹ                    9     Y     y     ݙ     ݹ                    9     Y     y     ޙ     ޹                    1     O     m     ߋ     ߩ                    !     ?     ]     {                              /     M     k                                   9     U     s                                   ;     W     u                                   =     [     w                              !     ?     ]     {                              /     M     k                                   =     [      y                              -     K     i  	     
                            3     O     k                                   1     M     i                                 !   3  "   O  #   k  $     %     &     '     (     )     *   =  +   [  ,   y  -     .     /     0     1     2   -  3   K  4   i  5     6     7     8     9     :     ;   ;  <   Y  =   w  >     ?     @     A     B   
  C   (  D   F  E   d  F     G     H     I     J     K     L   6  M   T  N   r  O     P     Q     R     S     T   &  U   D  V   b  W     X     Y     Z     [     \     ]   6  ^   V  _   v  `     a     b     c     d     e   6  f   V  g   v  h     i     j     k     l     m   6  n   V  o   v  p     q     r     s     t     u   6  v   V  w   v  x     y     z     {     |     }   ,  ~   J     h                                   :     X     v                              *     H     f                                   2     P     l                                   4     R     n                                   8     T     p                                   7     U     s                         	     '     E     c                                   5     S     q                              %     C     _     }                        !     ! 1    ! O    ! m    !     !     !     !     !    !!    !?    !]    !{    !    !    !    !    !    !/    !M    !k    !    !    !    !    !    !    !5    !S    !o    !    !    !    !    !    !    !5    !Q    !m    !    !    !    !    !    !     !7    !S    !o    !    !    !    !    !    !!  	  !?  
  !]    !{    !    !    !    !    !    !/    !M    !k    !    !    !    !    !    !    !=    ![    !y    !    !    !     !  !  !	  "  !	)  #  !	E  $  !	c  %  !	  &  !	  '  !	  (  !	  )  !	  *  !
  +  !
+  ,  !
G  -  !
e  .  !
  /  !
  0  !
  1  !
  2  !
  3  !  4  !-  5  !K  6  !g  7  !  8  !  9  !  :  !  ;  !  <  !  =  !-  >  !K  ?  !i  @  !  A  !  B  !  C  !  D  !  E  !  F  !;  G  !Y  H  !w  I  !  J  !  K  !  L  !  M  !  N  !+  O  !I  P  !g  Q  !  R  !  S  !  T  !  U  !  V  !  W  !9  X  !W  Y  !r  Z  !  [  !  \  !  ]  !  ^  !  _  !&  `  !D  a  !b  b  !  c  !  d  !  e  !  f  !  g  !  h  !4  i  !R  j  !p  k  !  l  !  m  !  n  !  o  !  p  !$  q  !B  r  !`  s  !~  t  !  u  !  v  !  w  !  x  !  y  !*  z  !H  {  !f  |  !  }  !  ~  !    !    !    !    !,    !H    !d    !    !    !    !    !    !    !.    !J    !f    !    !    !    !    !    !    !.    !J    !h    !    !    !    !    !    !    !0    !L    !h    !    !    !    !    !    !    !2    !N    !j    !    !    !    !    !    !    !<    !\    !|    !    !    !    !    !    !<    !\    !|    !    !    !    !    !    !<    !\    !|    !    !    !    !    !    !<    !\    !z    !    !    !    !    !    !.    !L    !j    !    !    !    !    !     !    !<    !Z    !x    !    !    !    !    !    !,    !J    !h    !    !    !    !    !     ! $    ! D    ! d    !     !     !     !     !!    !!$    !!D    !!d    !!    !!    !!    !!    !"    !"$    !"D    !"d    !"    !"    !"    !"    !#     !#$    !#B    !#`    !#~    !#    !#    !#    !#    !$  	  !$2  
  !$P    !$n    !$    !$    !$    !$    !%    !%"    !%@    !%^    !%|    !%    !%    !%    !%    !&    !&0    !&N    !&l    !&    !&    !&     !&  !  !&  "  !'  #  !'6  $  !'R  %  !'n  &  !'  '  !'  (  !'  )  !'  *  !'  +  !(  ,  !(4  -  !(P  .  !(l  /  !(  0  !(  1  !(  2  !(  3  !(  4  !)  5  !)6  6  !)R  7  !)n  8  !)  9  !)  :  !)  ;  !)  <  !*  =  !*"  >  !*@  ?  !*^  @  !*|  A  !*  B  !*  C  !*  D  !*  E  !+  F  !+0  G  !+N  H  !+l  I  !+  J  !+  K  !+  L  !+  M  !,  N  !,   O  !,>  P  !,\  Q  !,z  R  !,  S  !,  T  !,  U  !,  V  !-  W  !-(  X  !-F  Y  !-b  Z  !-  [  !-  \  !-  ]  !-  ^  !-  _  !.  `  !.*  a  !.H  b  !.d  c  !.  d  !.  e  !.  f  !.  g  !.  h  !/  i  !/.  j  !/J  k  !/f  l  !/  m  !/  n  !/  o  !/  p  !/  q  !0  r  !00  s  !0N  t  !0l  u  !0  v  !0  w  !0  x  !0  y  !1  z  !1   {  !1>  |  !1\  }  !1z  ~  !1    !1    !1    !1    !2    !2.    !2L    !2j    !2    !2    !2    !2    !3     !3    !3<    !3W    !3u    !3    !3    !3    !3    !4    !4)    !4G    !4e    !4    !4    !4    !4    !4    !5    !57    !5U    !5s    !5    !5    !5    !5    !6	    !6'    !6E    !6c    !6    !6    !6    !6    !7    !7!    !7A    !7a    !7    !7    !7    !7    !8    !8!    !8A    !8a    !8    !8    !8    !8    !9    !9!    !9A    !9a    !9    !9    !9    !9    !:    !:    !:=    !:[    !:y    !:    !:    !:    !:    !;    !;-    !;K    !;i    !;    !;    !;    !;    !;    !<    !<;    !<Y    !<w    !<    !<    !<    !<    !=    !=+    !=I    !=e    !=    !=    !=    !=    !=    !>    !>/    !>K    !>g    !>    !>    !>    !>    !>    !?    !?-    !?I    !?g    !?    !?    !?    !?    !?    !@    !@/    !@K    !@i    !@    !@    !@     !@    !@    !A    !A8    !AV    !At    !A    !A    !A  	  !A  
  !B
    !B(    !BF    !Bd    !B    !B    !B    !B    !B    !C    !C6    !CT    !Cr    !C    !C    !C    !C    !D    !D$    !DB    !D`    !D~     !D  !  !D  "  !D  #  !D  $  !E  %  !E2  &  !EP  '  !En  (  !E  )  !E  *  !E  +  !E  ,  !F  -  !F"  .  !F@  /  !F^  0  !F|  1  !F  2  !F  3  !F  4  !F  5  !G  6  !G,  7  !GH  8  !Gf  9  !G  :  !G  ;  !G  <  !G  =  !G  >  !H  ?  !H.  @  !HJ  A  !Hh  B  !H  C  !H  D  !H  E  !H  F  !H  G  !I  H  !I0  I  !IN  J  !Ij  K  !I  L  !I  M  !I  N  !I  O  !I  P  !J  Q  !J2  R  !JP  S  !Jn  T  !J  U  !J  V  !J  W  !J  X  !K  Y  !K"  Z  !K@  [  !K^  \  !K|  ]  !K  ^  !K  _  !K  `  !K  a  !L  b  !L0  c  !LN  d  !Ll  e  !L  f  !L  g  !L  h  !L  i  !M  j  !M   k  !M>  l  !M\  m  !Mx  n  !M  o  !M  p  !M  q  !M  r  !N  s  !N&  t  !NB  u  !N^  v  !Nz  w  !N  x  !N  y  !N  z  !N  {  !O  |  !O$  }  !O@  ~  !O\    !Oz    !O    !O    !O    !O    !P
    !P&    !PB    !P^    !P|    !P    !P    !P    !P    !Q    !Q.    !QL    !Qj    !Q    !Q    !Q    !Q    !R     !R    !R<    !RZ    !Rx    !R    !R    !R    !R    !S    !S,     !SJ  ¡  !Sh  ¢  !S  £  !S  ¤  !S  ¥  !S  ¦  !S  §  !T  ¨  !T7  ©  !TU  ª  !Ts  «  !T  ¬  !T  ­  !T  ®  !T  ¯  !U	  °  !U'  ±  !UE  ²  !Uc  ³  !U  ´  !U  µ  !U  ¶  !U  ·  !U  ¸  !V  ¹  !V5  º  !VS  »  !Vq  ¼  !V  ½  !V  ¾  !V  ¿  !V    !W    !W#    !W?    !W[    !Wy    !W    !W    !W    !W    !X	    !X%    !XA    !X]    !X{    !X    !X    !X    !X    !Y    !Y%    !YC    !Ya    !Y}    !Y    !Y    !Y    !Y    !Z	    !Z'    !ZC    !Z_    !Z{    !Z    !Z    !Z    !Z    ![    ![)    ![E    ![a    ![}    ![    ![    ![    ![    !\    !\'    !\E    !\c    !\    !\    !\    !\    !\    !]    !])    !]G    !]g    !]    !]    !]    !]    !^    !^'     !^G    !^g    !^    !^    !^    !^    !_    !_'    !_G  	  !_g  
  !_    !_    !_    !_    !`    !`'    !`G    !`g    !`    !`    !`    !`    !a    !a!    !a?    !a]    !a{    !a    !a    !a    !a    !b     !b/  !  !bM  "  !bk  #  !b  $  !b  %  !b  &  !b  '  !c  (  !c  )  !c=  *  !c[  +  !cy  ,  !c  -  !c  .  !c  /  !c  0  !d  1  !d/  2  !dO  3  !do  4  !d  5  !d  6  !d  7  !d  8  !e  9  !e/  :  !eO  ;  !eo  <  !e  =  !e  >  !e  ?  !e  @  !f  A  !f/  B  !fO  C  !fo  D  !f  E  !f  F  !f  G  !f  H  !g  I  !g/  J  !gO  K  !go  L  !g  M  !g  N  !g  O  !g  P  !h  Q  !h%  R  !hC  S  !ha  T  !h  U  !h  V  !h  W  !h  X  !h  Y  !i  Z  !i3  [  !iQ  \  !io  ]  !i  ^  !i  _  !i  `  !i  a  !j  b  !j#  c  !jA  d  !j_  e  !j}  f  !j  g  !j  h  !j  i  !j  j  !k  k  !k+  l  !kI  m  !ke  n  !k  o  !k  p  !k  q  !k  r  !k  s  !l  t  !l-  u  !lK  v  !lg  w  !l  x  !l  y  !l  z  !l  {  !l  |  !m  }  !m1  ~  !mM    !mi  À  !m  Á  !m  Â  !m  Ã  !m  Ä  !m  Å  !n  Æ  !n3  Ç  !nQ  È  !no  É  !n  Ê  !n  Ë  !n  Ì  !n  Í  !o  Î  !o#  Ï  !oA  Ð  !o_  Ñ  !o}  Ò  !o  Ó  !o  Ô  !o  Õ  !o  Ö  !p  ×  !p1  Ø  !pO  Ù  !pm  Ú  !p  Û  !p  Ü  !p  Ý  !p  Þ  !q  ß  !q!  à  !q?  á  !q[  â  !qw  ã  !q  ä  !q  å  !q  æ  !q  ç  !r	  è  !r%  é  !rA  ê  !r]  ë  !ry  ì  !r  í  !r  î  !r  ï  !r  ð  !s  ñ  !s#  ò  !s?  ó  !s]  ô  !s{  õ  !s  ö  !s  ÷  !s  ø  !s  ù  !t	  ú  !t%  û  !tA  ü  !t_  ý  !t}  þ  !t  ÿ  !t    !t    !t    !u    !u1    !uO    !um    !u    !u    !u    !u    !v    !v!    !v?    !v]    !v{    !v    !v    !v    !v    !w    !w/    !wM    !wk    !w    !w    !w    !w    !w    !x    !x:    !xX    !xv    !x    !x    !x    !x    !y    !y*    !yH    !yf    !y    !y    !y    !y    !y    !z    !z8    !zV    !zt    !z    !z    !z    !z    !{    !{,    !{L    !{l    !{    !{    !{    !{    !|    !|,    !|L     !|l    !|    !|    !|    !|    !}    !},    !}L    !}l  	  !}  
  !}    !}    !}    !~    !~,    !~L    !~l    !~    !~    !~    !~    !    !     !>    !\    !z    !    !    !    !    !    !.     !L  !  !j  "  !  #  !  $  !  %  !  &  !   '  !  (  !<  )  !Z  *  !x  +  !  ,  !  -  !  .  !  /  !  0  !&  1  !B  2  !`  3  !~  4  !  5  !  6  !  7  !  8  !
  9  !(  :  !D  ;  !`  <  !|  =  !  >  !  ?  !  @  !  A  !  B  !*  C  !F  D  !b  E  !~  F  !  G  !  H  !  I  !  J  !  K  !+  L  !I  M  !g  N  !  O  !  P  !  Q  !  R  !  S  !  T  !9  U  !W  V  !u  W  !  X  !  Y  !  Z  !  [  !  \  !)  ]  !G  ^  !e  _  !  `  !  a  !  b  !  c  !  d  !  e  !5  f  !S  g  !q  h  !  i  !  j  !  k  !  l  !  m  !%  n  !C  o  !a  p  !  q  !  r  !  s  !  t  !  u  !  v  !3  w  !Q  x  !o  y  !  z  !  {  !  |  !  }  !  ~  !#    !A  Ā  !_  ā  !{  Ă  !  ă  !  Ą  !  ą  !  Ć  !  ć  !)  Ĉ  !E  ĉ  !a  Ċ  !}  ċ  !  Č  !  č  !  Ď  !  ď  !  Đ  !'  đ  !C  Ē  !_  ē  !}  Ĕ  !  ĕ  !  Ė  !  ė  !  Ę  !  ę  !)  Ě  !E  ě  !a  Ĝ  !  ĝ  !  Ğ  !  ğ  !  Ġ  !  ġ  !  Ģ  !3  ģ  !Q  Ĥ  !o  ĥ  !  Ħ  !  ħ  !  Ĩ  !  ĩ  !  Ī  !#  ī  !A  Ĭ  !_  ĭ  !}  Į  !  į  !  İ  !  ı  !  Ĳ  !  ĳ  !1  Ĵ  !O  ĵ  !m  Ķ  !  ķ  !  ĸ  !  Ĺ  !  ĺ  !  Ļ  !  ļ  !9  Ľ  !U  ľ  !s  Ŀ  !    !    !    !    !    !    !;    !W    !s    !    !    !    !    !    !!    !=    !Y    !u    !    !    !    !    !    !!    !?    !]    !{    !    !    !    !    !    !/    !M    !k    !    !    !    !    !    !    !=    ![    !y    !    !    !    !    !    !-    !H    !f    !    !    !    !    !    !    !8    !V    !t    !    !    !    !     !
    !(    !F    !d    !    !    !    !    !  	  !  
  !6    !T    !r    !    !    !    !    !     !    !<    !X    !t    !    !    !    !    !    !    !:    !V    !r    !     !  !  !  "  !  #  !  $  !   %  !<  &  !X  '  !t  (  !  )  !  *  !  +  !  ,  !  -  !   .  !>  /  !\  0  !x  1  !  2  !  3  !  4  !  5  !  6  !"  7  !>  8  !Z  9  !v  :  !  ;  !  <  !  =  !  >  !  ?  !$  @  !@  A  !\  B  !x  C  !  D  !  E  !  F  !  G  !  H  !2  I  !R  J  !r  K  !  L  !  M  !  N  !  O  !  P  !2  Q  !R  R  !r  S  !  T  !  U  !  V  !  W  !  X  !2  Y  !R  Z  !r  [  !  \  !  ]  !  ^  !  _  !  `  !2  a  !P  b  !n  c  !  d  !  e  !  f  !  g  !  h  !"  i  !@  j  !^  k  !|  l  !  m  !  n  !  o  !  p  !  q  !0  r  !N  s  !l  t  !  u  !  v  !  w  !  x  !  y  !   z  !>  {  !\  |  !z  }  !  ~  !    !  ŀ  !  Ł  !  ł  !:  Ń  !Z  ń  !z  Ņ  !  ņ  !  Ň  !  ň  !  ŉ  !  Ŋ  !:  ŋ  !Z  Ō  !z  ō  !  Ŏ  !  ŏ  !  Ő  !  ő  !  Œ  !:  œ  !Z  Ŕ  !z  ŕ  !  Ŗ  !  ŗ  !  Ř  !  ř  !  Ś  !6  ś  !T  Ŝ  !r  ŝ  !  Ş  !  ş  !  Š  !  š  !  Ţ  !&  ţ  !D  Ť  !b  ť  !  Ŧ  !  ŧ  !  Ũ  !  ũ  !  Ū  !  ū  !4  Ŭ  !R  ŭ  !p  Ů  !  ů  !  Ű  !  ű  !  Ų  !  ų  !$  Ŵ  !B  ŵ  !^  Ŷ  !z  ŷ  !  Ÿ  !  Ź  !  ź  !  Ż  !  ż  !(  Ž  !D  ž  !`  ſ  !|    !    !    !    !    !
    !&    !B    !`    !~    !    !    !    !    !    !(    !D    !b    !    !    !    !    !    !    !4    !R    !p    !    !    !    !    !    !$    !B    !`    !~    !    !    !    !    !    !2    !P    !n    !    !    !    !    !    !    !8    !V    !t    !    !    !    !    !     !    !:    !V    !r    !    !    !     !    !    !     !<    !X    !t    !    !    !  	  !  
  !    !$    !B    !`    !~    !    !    !    !    !    !2    !P    !n    !    !    !    !    !    !"    !@    !^    !|     !  !  !  "  !  #  !  $  !  %  !-  &  !K  '  !i  (  !  )  !  *  !  +  !  ,  !  -  !  .  !;  /  !Y  0  !w  1  !  2  !  3  !  4  !  5  !  6  !+  7  !I  8  !g  9  !  :  !  ;  !  <  !  =  !  >  !  ?  !9  @  !W  A  !w  B  !  C  !  D  !  E  !  F  !  G  !7  H  !W  I  !w  J  !  K  !  L  !  M  !  N  !  O  !7  P  !W  Q  !w  R  !  S  !  T  !  U  !  V  !  W  !7  X  !W  Y  !w  Z  !  [  !·  \  !  ]  !  ^  !  _  !1  `  !O  a  !m  b  !Ë  c  !é  d  !  e  !  f  !  g  !!  h  !?  i  !]  j  !{  k  !ę  l  !ķ  m  !  n  !  o  !  p  !/  q  !M  r  !k  s  !ŉ  t  !ŧ  u  !  v  !  w  !  x  !  y  !;  z  !W  {  !s  |  !Ƒ  }  !ƭ  ~  !    !  ƀ  !  Ɓ  !!  Ƃ  !=  ƃ  !Y  Ƅ  !u  ƅ  !Ǔ  Ɔ  !ǯ  Ƈ  !  ƈ  !  Ɖ  !  Ɗ  !  Ƌ  !=  ƌ  ![  ƍ  !y  Ǝ  !ȕ  Ə  !ȱ  Ɛ  !  Ƒ  !  ƒ  !  Ɠ  !!  Ɣ  !?  ƕ  !Z  Ɩ  !x  Ɨ  !ɖ  Ƙ  !ɴ  ƙ  !  ƚ  !  ƛ  !  Ɯ  !,  Ɲ  !J  ƞ  !h  Ɵ  !ʆ  Ơ  !ʤ  ơ  !  Ƣ  !  ƣ  !  Ƥ  !  ƥ  !:  Ʀ  !X  Ƨ  !v  ƨ  !˔  Ʃ  !˲  ƪ  !  ƫ  !  Ƭ  !  ƭ  !*  Ʈ  !H  Ư  !f  ư  !̄  Ʊ  !̠  Ʋ  !̾  Ƴ  !  ƴ  !  Ƶ  !  ƶ  !6  Ʒ  !T  Ƹ  !r  ƹ  !͐  ƺ  !ͮ  ƻ  !  Ƽ  !  ƽ  !  ƾ  !&  ƿ  !D    !b    !΀    !Ξ    !μ    !    !    !    !4    !R    !p    !ώ    !Ϭ    !    !    !    !    !<    !X    !v    !Д    !а    !    !    !    !     !>    !Z    !v    !ђ    !Ѯ    !    !    !    !$    !@    !\    !x    !Ҕ    !Ұ    !    !    !    !&    !D    !b    !Ӏ    !Ӟ    !Ӽ    !    !    !    !4    !R    !p    !Ԏ    !Ԭ    !    !    !    !$    !B    !`    !~    !՜     !պ    !    !    !    !2    !N    !j    !ֆ    !֤  	  !  
  !    !    !    !4    !P    !l    !׈    !צ    !    !    !    !    !2    !P    !n    !،    !ب    !    !    !    !    !4     !R  !  !n  "  !ٌ  #  !٪  $  !  %  !  &  !  '  !"  (  !@  )  !^  *  !|  +  !ښ  ,  !ڸ  -  !  .  !  /  !  0  !0  1  !N  2  !l  3  !ۊ  4  !ۨ  5  !  6  !  7  !  8  !   9  !>  :  !\  ;  !z  <  !ܘ  =  !ܳ  >  !  ?  !  @  !  A  !+  B  !I  C  !g  D  !݅  E  !ݣ  F  !  G  !  H  !  I  !  J  !9  K  !W  L  !u  M  !ޓ  N  !ޱ  O  !  P  !  Q  !  R  !)  S  !G  T  !e  U  !߃  V  !ߡ  W  !߿  X  !  Y  !  Z  !  [  !1  \  !O  ]  !k  ^  !  _  !  `  !  a  !  b  !  c  !  d  !3  e  !Q  f  !m  g  !  h  !  i  !  j  !  k  !  l  !  m  !7  n  !S  o  !o  p  !  q  !  r  !  s  !  t  !  u  !  v  !5  w  !Q  x  !o  y  !  z  !  {  !  |  !  }  !  ~  !    !7  ǀ  !S  ǁ  !q  ǂ  !  ǃ  !  Ǆ  !  ǅ  !  ǆ  !  Ǉ  !  ǈ  !9  ǉ  !W  Ǌ  !s  ǋ  !  ǌ  !  Ǎ  !  ǎ  !  Ǐ  !  ǐ  !  Ǒ  !=  ǒ  !]  Ǔ  !}  ǔ  !  Ǖ  !  ǖ  !  Ǘ  !  ǘ  !  Ǚ  !=  ǚ  !]  Ǜ  !}  ǜ  !  ǝ  !  Ǟ  !  ǟ  !  Ǡ  !  ǡ  !=  Ǣ  !]  ǣ  !}  Ǥ  !  ǥ  !  Ǧ  !  ǧ  !  Ǩ  !  ǩ  !=  Ǫ  !]  ǫ  !}  Ǭ  !  ǭ  !  Ǯ  !  ǯ  !  ǰ  !  Ǳ  !3  ǲ  !Q  ǳ  !o  Ǵ  !  ǵ  !  Ƕ  !  Ƿ  !  Ǹ  !  ǹ  !#  Ǻ  !A  ǻ  !_  Ǽ  !}  ǽ  !  Ǿ  !  ǿ  !    !    !    !1    !O    !m    !    !    !    !    !    !%    !E    !e    !    !    !    !    !    !%    !E    !e    !    !    !    !    !    !%    !E    !e    !    !    !    !    !    !%    !E    !e    !    !    !    !    !    !    !7    !U    !s    !    !    !    !    !	    !'    !E    !c    !    !    !    !    !    !    !5    !S    !q    !     !    !    !    !    !    !;    !Y    !w    !  	  !  
  !    !    !    !!    !=    !Y    !u    !    !    !    !    !    !#    !?    ![    !w    !    !    !    !    !	    !'     !E  !  !c  "  !  #  !  $  !  %  !  &  !  '  !  (  !5  )  !S  *  !q  +  !  ,  !  -  !  .  !  /  !  0  !%  1  !C  2  !a  3  !  4  !  5  !  6  !  7  !  8  !  9  !1  :  !M  ;  !i  <  !  =  !  >  !  ?  !  @  !  A  !  B  !3  C  !O  D  !k  E  !  F  !  G  !  H  !  I  !  J  !  K  !3  L  !Q  M  !o  N  !  O  !  P  !  Q  !  R  !  S  !  T  !5  U  !S  V  !q  W  !  X  !  Y  !  Z  !  [  !  \  !%  ]  !C  ^  !a  _  !  `  !  a  !  b  !  c  !  d  !  e  !3  f  !Q  g  !o  h  !  i  !  j  !  k  !  l  "   m  " #  n  " A  o  " _  p  " }  q  "   r  "   s  "   t  "   u  "  v  ".  w  "L  x  "j  y  "  z  "  {  "  |  "  }  "   ~  "    "<  Ȁ  "Z  ȁ  "x  Ȃ  "  ȃ  "  Ȅ  "  ȅ  "  Ȇ  "  ȇ  ",  Ȉ  "J  ȉ  "h  Ȋ  "  ȋ  "  Ȍ  "  ȍ  "  Ȏ  "  ȏ  ""  Ȑ  "B  ȑ  "b  Ȓ  "  ȓ  "  Ȕ  "  ȕ  "  Ȗ  "  ȗ  ""  Ș  "B  ș  "b  Ț  "  ț  "  Ȝ  "  ȝ  "  Ȟ  "  ȟ  ""  Ƞ  "B  ȡ  "b  Ȣ  "  ȣ  "  Ȥ  "  ȥ  "  Ȧ  "  ȧ  ""  Ȩ  "B  ȩ  "`  Ȫ  "~  ȫ  "  Ȭ  "  ȭ  "  Ȯ  "  ȯ  "  Ȱ  "2  ȱ  "P  Ȳ  "n  ȳ  "  ȴ  "  ȵ  "  ȶ  "  ȷ  "	  ȸ  "	"  ȹ  "	@  Ⱥ  "	^  Ȼ  "	|  ȼ  "	  Ƚ  "	  Ⱦ  "	  ȿ  "	    "
    "
0    "
N    "
l    "
    "
    "
    "
    "
    "    "6    "T    "p    "    "    "    "    "    "    "6    "R    "n    "    "    "    "    "     "    "8    "T    "p    "    "    "    "    "    "    "=    "[    "y    "    "    "    "    "    "-    "K    "i    "    "    "    "    "    "    ";    "Y    "w    "    "    "    "    "    ")    "G     "e    "    "    "    "    "    "    "7    "U  	  "s  
  "    "    "    "    "	    "'    "E    "c    "    "    "    "    "    "    "5    "Q    "m    "    "    "    "    "     "  !  "7  "  "S  #  "o  $  "  %  "  &  "  '  "  (  "  )  "  *  "5  +  "S  ,  "q  -  "  .  "  /  "  0  "  1  "  2  "  3  "7  4  "U  5  "s  6  "  7  "  8  "  9  "  :  "	  ;  "'  <  "E  =  "c  >  "  ?  "  @  "  A  "  B  "  C  "  D  "5  E  "S  F  "q  G  "  H  "  I  "  J  "  K  "  L  "%  M  "C  N  "a  O  "  P  "  Q  "  R  "  S  "  T  "  U  "+  V  "I  W  "g  X  "  Y  "  Z  "  [  "  \  "  ]  "  ^  "-  _  "I  `  "e  a  "  b  "  c  "  d  "  e  "  f  "  g  "/  h  "K  i  "g  j  "  k  "  l  "  m  "  n  "  o  "  p  "3  q  "Q  r  "o  s  "  t  "  u  "  v  "  w  "  x  "#  y  "A  z  "_  {  "}  |  "  }  "  ~  "    "  ɀ  "   Ɂ  " 1  ɂ  " O  Ƀ  " m  Ʉ  "   Ʌ  "   Ɇ  "   ɇ  "   Ɉ  "!  ɉ  "!  Ɋ  "!<  ɋ  "!Z  Ɍ  "!x  ɍ  "!  Ɏ  "!  ɏ  "!  ɐ  "!  ɑ  ""  ɒ  "",  ɓ  ""J  ɔ  ""h  ɕ  ""  ɖ  ""  ɗ  ""  ɘ  ""  ə  ""  ɚ  "#  ɛ  "#:  ɜ  "#X  ɝ  "#v  ɞ  "#  ɟ  "#  ɠ  "#  ɡ  "#  ɢ  "$  ɣ  "$*  ɤ  "$H  ɥ  "$d  ɦ  "$  ɧ  "$  ɨ  "$  ɩ  "$  ɪ  "$  ɫ  "%  ɬ  "%.  ɭ  "%J  ɮ  "%f  ɯ  "%  ɰ  "%  ɱ  "%  ɲ  "%  ɳ  "%  ɴ  "&  ɵ  "&,  ɶ  "&H  ɷ  "&f  ɸ  "&  ɹ  "&  ɺ  "&  ɻ  "&  ɼ  "&  ɽ  "'  ɾ  "'.  ɿ  "'J    "'h    "'    "'    "'    "'    "'    "(    "(2    "(N    "(j    "(    "(    "(    "(    "(    ")    ")0    ")L    ")h    ")    ")    ")    ")    ")    "*    "*2    "*N    "*j    "*    "*    "*    "*    "+    "+(    "+H    "+h    "+    "+    "+    "+    ",    ",(    ",H    ",h    ",    ",    ",    ",    "-    "-(    "-H    "-h    "-    "-    "-    "-    ".    ".&    ".D    ".b    ".    ".    ".    ".     ".    "/    "/4    "/R    "/p    "/    "/    "/    "/  	  "0  
  "0$    "0B    "0`    "0~    "0    "0    "0    "0    "1    "12    "1P    "1p    "1    "1    "1    "1    "2    "20    "2P    "2p    "2    "2     "2  !  "2  "  "3  #  "30  $  "3P  %  "3p  &  "3  '  "3  (  "3  )  "3  *  "4  +  "40  ,  "4P  -  "4p  .  "4  /  "4  0  "4  1  "4  2  "5  3  "5*  4  "5H  5  "5f  6  "5  7  "5  8  "5  9  "5  :  "5  ;  "6  <  "68  =  "6V  >  "6t  ?  "6  @  "6  A  "6  B  "6  C  "7
  D  "7(  E  "7F  F  "7d  G  "7  H  "7  I  "7  J  "7  K  "7  L  "8  M  "84  N  "8P  O  "8l  P  "8  Q  "8  R  "8  S  "8  T  "8  U  "9  V  "96  W  "9R  X  "9n  Y  "9  Z  "9  [  "9  \  "9  ]  "9  ^  ":  _  ":6  `  ":T  a  ":r  b  ":  c  ":  d  ":  e  ":  f  ":  g  ";  h  ";8  i  ";V  j  ";t  k  ";  l  ";  m  ";  n  ";  o  "<
  p  "<(  q  "<F  r  "<d  s  "<  t  "<  u  "<  v  "<  w  "<  x  "=  y  "=6  z  "=T  {  "=r  |  "=  }  "=  ~  "=    "=  ʀ  ">  ʁ  ">&  ʂ  ">D  ʃ  ">b  ʄ  ">  ʅ  ">  ʆ  ">  ʇ  ">  ʈ  ">  ʉ  "?  ʊ  "?,  ʋ  "?J  ʌ  "?f  ʍ  "?  ʎ  "?  ʏ  "?  ʐ  "?  ʑ  "?  ʒ  "@  ʓ  "@,  ʔ  "@H  ʕ  "@d  ʖ  "@  ʗ  "@  ʘ  "@  ʙ  "@  ʚ  "@  ʛ  "A  ʜ  "A.  ʝ  "AJ  ʞ  "Af  ʟ  "A  ʠ  "A  ʡ  "A  ʢ  "A  ʣ  "A  ʤ  "B  ʥ  "B6  ʦ  "BT  ʧ  "Br  ʨ  "B  ʩ  "B  ʪ  "B  ʫ  "B  ʬ  "C  ʭ  "C&  ʮ  "CD  ʯ  "Cb  ʰ  "C  ʱ  "C  ʲ  "C  ʳ  "C  ʴ  "C  ʵ  "D  ʶ  "D4  ʷ  "DR  ʸ  "Dp  ʹ  "D  ʺ  "D  ʻ  "D  ʼ  "D  ʽ  "E  ʾ  "E!  ʿ  "E?    "E]    "E{    "E    "E    "E    "E    "F    "F/    "FM    "Fk    "F    "F    "F    "F    "G    "G    "G=    "G[    "Gy    "G    "G    "G    "G    "H    "H-    "HM    "Hm    "H    "H    "H    "H    "I    "I-    "IM    "Im    "I    "I    "I    "I    "J    "J-    "JM    "Jm    "J    "J    "J    "J    "K    "K-    "KM    "Km    "K    "K    "K    "K    "L    "L%    "LC    "La    "L    "L    "L    "L    "L     "M    "M3    "MQ    "Mo    "M    "M    "M    "M    "N  	  "N#  
  "NA    "N_    "N}    "N    "N    "N    "N    "O    "O-    "OI    "Og    "O    "O    "O    "O    "O    "P    "P/    "PK    "Pi    "P    "P     "P  !  "P  "  "P  #  "Q  $  "Q1  %  "QO  &  "Qk  '  "Q  (  "Q  )  "Q  *  "Q  +  "Q  ,  "R  -  "R0  .  "RN  /  "Rl  0  "R  1  "R  2  "R  3  "R  4  "S  5  "S   6  "S>  7  "S\  8  "Sz  9  "S  :  "S  ;  "S  <  "S  =  "T  >  "T.  ?  "TL  @  "Tj  A  "T  B  "T  C  "T  D  "T  E  "U   F  "U  G  "U<  H  "UZ  I  "Uv  J  "U  K  "U  L  "U  M  "U  N  "V  O  "V*  P  "VH  Q  "Vf  R  "V  S  "V  T  "V  U  "V  V  "V  W  "W  X  "W8  Y  "WV  Z  "Wt  [  "W  \  "W  ]  "W  ^  "W  _  "X
  `  "X(  a  "XF  b  "Xd  c  "X  d  "X  e  "X  f  "X  g  "X  h  "Y  i  "Y.  j  "YL  k  "Yj  l  "Y  m  "Y  n  "Y  o  "Y  p  "Y  q  "Z  r  "Z0  s  "ZL  t  "Zh  u  "Z  v  "Z  w  "Z  x  "Z  y  "Z  z  "[  {  "[2  |  "[N  }  "[j  ~  "[    "[  ˀ  "[  ˁ  "[  ˂  "[  ˃  "\  ˄  "\8  ˅  "\V  ˆ  "\t  ˇ  "\  ˈ  "\  ˉ  "\  ˊ  "\  ˋ  "]
  ˌ  "](  ˍ  "]F  ˎ  "]d  ˏ  "]  ː  "]  ˑ  "]  ˒  "]  ˓  "]  ˔  "^  ˕  "^6  ˖  "^T  ˗  "^r  ˘  "^  ˙  "^  ˚  "^  ˛  "^  ˜  "_  ˝  "_$  ˞  "_@  ˟  "_\  ˠ  "_z  ˡ  "_  ˢ  "_  ˣ  "_  ˤ  "_  ˥  "`
  ˦  "`&  ˧  "`B  ˨  "`^  ˩  "`|  ˪  "`  ˫  "`  ˬ  "`  ˭  "`  ˮ  "a  ˯  "a&  ˰  "aD  ˱  "ab  ˲  "a~  ˳  "a  ˴  "a  ˵  "a  ˶  "a  ˷  "b
  ˸  "b(  ˹  "bD  ˺  "bb  ˻  "b  ˼  "b  ˽  "b  ˾  "b  ˿  "b    "c    "c4    "cR    "cp    "c    "c    "c    "c    "d    "d$    "dB    "d`    "d~    "d    "d    "d    "d    "e    "e2    "eP    "en    "e    "e    "e    "e    "f    "f    "f=    "f[    "fy    "f    "f    "f    "f    "g    "g-    "gK    "gi    "g    "g    "g    "g    "g    "h    "h;    "hY    "hw    "h    "h    "h    "h    "i    "i%    "iA    "i_    "i}    "i    "i    "i    "i    "j	    "j'    "jC    "j_     "j{    "j    "j    "j    "j    "k    "k)    "kE    "ka  	  "k}  
  "k    "k    "k    "k    "l    "l'    "lE    "la    "l    "l    "l    "l    "l    "m    "m)    "mG    "mc    "m    "m    "m    "m    "m     "n  !  "n-  "  "nI  #  "ne  $  "n  %  "n  &  "n  '  "n  (  "n  )  "o  *  "o3  +  "oS  ,  "os  -  "o  .  "o  /  "o  0  "o  1  "p  2  "p3  3  "pS  4  "ps  5  "p  6  "p  7  "p  8  "p  9  "q  :  "q3  ;  "qS  <  "qs  =  "q  >  "q  ?  "q  @  "q  A  "r  B  "r3  C  "rS  D  "rs  E  "r  F  "r  G  "r  H  "r  I  "s	  J  "s'  K  "sE  L  "sc  M  "s  N  "s  O  "s  P  "s  Q  "s  R  "t  S  "t5  T  "tS  U  "tq  V  "t  W  "t  X  "t  Y  "t  Z  "u  [  "u%  \  "uC  ]  "ua  ^  "u  _  "u  `  "u  a  "u  b  "u  c  "v  d  "v;  e  "v[  f  "v{  g  "v  h  "v  i  "v  j  "v  k  "w  l  "w;  m  "w[  n  "w{  o  "w  p  "w  q  "w  r  "w  s  "x  t  "x;  u  "x[  v  "x{  w  "x  x  "x  y  "x  z  "x  {  "y  |  "y;  }  "yY  ~  "yw    "y  ̀  "y  ́  "y  ̂  "y  ̃  "z  ̄  "z+  ̅  "zI  ̆  "zg  ̇  "z  ̈  "z  ̉  "z  ̊  "z  ̋  "z  ̌  "{  ̍  "{9  ̎  "{W  ̏  "{u  ̐  "{  ̑  "{  ̒  "{  ̓  "{  ̔  "|  ̕  "|)  ̖  "|G  ̗  "|e  ̘  "|  ̙  "|  ̚  "|  ̛  "|  ̜  "|  ̝  "}  ̞  "}/  ̟  "}M  ̠  "}i  ̡  "}  ̢  "}  ̣  "}  ̤  "}  ̥  "}  ̦  "~  ̧  "~/  ̨  "~K  ̩  "~g  ̪  "~  ̫  "~  ̬  "~  ̭  "~  ̮  "~  ̯  "  ̰  "1  ̱  "M  ̲  "i  ̳  "  ̴  "  ̵  "  ̶  "  ̷  "  ̸  "  ̹  "9  ̺  "W  ̻  "u  ̼  "  ̽  "  ̾  "  ̿  "    "    ")    "G    "e    "    "    "    "    "    "    "7    "U    "s    "    "    "    "    "    "#    "?    "]    "y    "    "    "    "    "	    "%    "A    "_    "{    "    "    "    "    "	    "'    "E    "a    "}    "    "    "    "    "    ")    "G    "e    "    "    "    "    "    "    "7    "U    "s    "    "    "    "    "	    "'    "E     "c    "    "    "    "    "    "    "5    "S  	  "n  
  "    "    "    "    "    ""    "@    "^    "|    "    "    "    "    "    "0    "N    "l    "    "    "    "    "     "   !  ">  "  "\  #  "z  $  "  %  "  &  "  '  "  (  "  )  "8  *  "X  +  "x  ,  "  -  "  .  "  /  "  0  "  1  "8  2  "X  3  "x  4  "  5  "  6  "  7  "  8  "  9  "8  :  "X  ;  "x  <  "  =  "  >  "  ?  "  @  "  A  "6  B  "T  C  "r  D  "  E  "  F  "  G  "  H  "  I  "&  J  "D  K  "b  L  "  M  "  N  "  O  "  P  "  Q  "  R  "4  S  "R  T  "p  U  "  V  "  W  "  X  "  Y  "  Z  "$  [  "B  \  "`  ]  "|  ^  "  _  "  `  "  a  "  b  "  c  "*  d  "F  e  "b  f  "~  g  "  h  "  i  "  j  "  k  "  l  "(  m  "D  n  "`  o  "~  p  "  q  "  r  "  s  "  t  "  u  "*  v  "F  w  "b  x  "  y  "  z  "  {  "  |  "  }  "  ~  "1    "O  ̀  "m  ́  "  ͂  "  ̓  "  ̈́  "  ͅ  "  ͆  "!  ͇  "?  ͈  "]  ͉  "{  ͊  "  ͋  "  ͌  "  ͍  "  ͎  "  ͏  "/  ͐  "M  ͑  "k  ͒  "  ͓  "  ͔  "  ͕  "  ͖  "  ͗  "  ͘  ";  ͙  "Y  ͚  "w  ͛  "  ͜  "  ͝  "  ͞  "  ͟  "  ͠  "+  ͡  "I  ͢  "g  ͣ  "  ͤ  "  ͥ  "  ͦ  "  ͧ  "  ͨ  "  ͩ  "9  ͪ  "W  ͫ  "u  ͬ  "  ͭ  "  ͮ  "  ͯ  "  Ͱ  "  ͱ  "'  Ͳ  "C  ͳ  "_  ʹ  "}  ͵  "  Ͷ  "  ͷ  "  ͸  "  ͹  "  ͺ  ")  ͻ  "E  ͼ  "a  ͽ  "  ;  "  Ϳ  "    "    "    "    ")    "G    "e    "    "    "    "    "    "    "+    "I    "g    "    "    "    "    "    "    "9    "W    "u    "    "    "    "    "    ")    "G    "e    "    "    "    "    "    "    "7    "U    "s    "    "    "    "    "    "    "=    "Y    "u    "    "    "    "    "    "    ";    "W    "s    "    "    "    "    "     "!    "=    "Y    "u    "    "    "    "    "	  	  "'  
  "E    "c    "    "    "    "    "    "    "5    "S    "q    "    "    "    "    "    "%    "C    "a    "    "    "     "  !  "  "  "  #  "0  $  "N  %  "l  &  "  '  "  (  "  )  "  *  "  +  "   ,  ">  -  "\  .  "z  /  "  0  "  1  "  2  "  3  "  4  ".  5  "L  6  "j  7  "  8  "  9  "  :  "  ;  "   <  "  =  ":  >  "V  ?  "r  @  "  A  "  B  "  C  "  D  "  E  "   F  "<  G  "X  H  "t  I  "  J  "  K  "  L  "  M  "  N  "  O  "<  P  "Z  Q  "x  R  "  S  "  T  "  U  "  V  "  W  "   X  ">  Y  "Z  Z  "v  [  "  \  "  ]  "  ^  "  _  "  `  "$  a  "@  b  "\  c  "x  d  "  e  "  f  "  g  "  h  "  i  ""  j  ">  k  "\  l  "z  m  "  n  "  o  "  p  "  q  "  r  "$  s  "@  t  "^  u  "~  v  "  w  "  x  "  y  "  z  "  {  ">  |  "^  }  "~  ~  "    "  ΀  "  ΁  "  ΂  "  ΃  ">  ΄  "^  ΅  "~  Ά  "  ·  "  Έ  "  Ή  "  Ί  "  ΋  ">  Ό  "^  ΍  "~  Ύ  "  Ώ  "  ΐ  "  Α  "  Β  "  Γ  "8  Δ  "V  Ε  "t  Ζ  "  Η  "  Θ  "  Ι  "  Κ  "
  Λ  "(  Μ  "F  Ν  "d  Ξ  "  Ο  "  Π  "  Ρ  "  ΢  "  Σ  "  Τ  "6  Υ  "T  Φ  "r  Χ  "  Ψ  "  Ω  "  Ϊ  "  Ϋ  "  ά  "&  έ  "F  ή  "f  ί  "  ΰ  "  α  "  β  "  γ  "  δ  "&  ε  "F  ζ  "f  η  "  θ  "  ι  "  κ  "  λ  "  μ  "&  ν  "F  ξ  "f  ο  "    "    "    "    "    "&    "F    "f    "    "    "    "    "     "    "<    "Z    "x    "    "    "    "    "    ",    "J    "h    "    "    "    "    "    "    ":    "X    "v    "    "    "    "    "
    "&    "B    "`    "|    "    "    "    "    "    "(    "D    "b    "~    "    "¶    "    "    "    "*    "H    "d    "À    "Ü    "ø    "    "     "    ",    "J    "h    "Ć    "Ĥ    "    "    "  	  "  
  ":    "X    "v    "Ŕ    "Ų    "    "    "    "*    "H    "f    "Ƅ    "Ƣ    "    "    "    "    "8    "V    "r    "ǎ    "Ǫ     "  !  "  "  "  #  "   $  "<  %  "X  &  "t  '  "Ȑ  (  "Ȭ  )  "  *  "  +  "  ,  "  -  ":  .  "V  /  "t  0  "ɒ  1  "ɰ  2  "  3  "  4  "  5  "   6  "<  7  "X  8  "v  9  "ʔ  :  "ʲ  ;  "  <  "  =  "  >  "*  ?  "H  @  "f  A  "˄  B  "ˢ  C  "  D  "  E  "  F  "  G  "8  H  "V  I  "t  J  "̒  K  "̰  L  "  M  "  N  "
  O  "(  P  "F  Q  "d  R  "͂  S  "͠  T  ";  U  "  V  "  W  "  X  "3  Y  "Q  Z  "o  [  "΍  \  "Ϋ  ]  "  ^  "  _  "  `  "#  a  "A  b  "_  c  "}  d  "ϛ  e  "Ϲ  f  "  g  "  h  "  i  "1  j  "O  k  "m  l  "Ћ  m  "Щ  n  "  o  "  p  "  q  "#  r  "C  s  "c  t  "у  u  "ѣ  v  "  w  "  x  "  y  "#  z  "C  {  "c  |  "҃  }  "ң  ~  "    "  π  "  ρ  "#  ς  "C  σ  "c  τ  "Ӄ  υ  "ӣ  φ  "  χ  "  ψ  "  ω  "#  ϊ  "C  ϋ  "c  ό  "ԃ  ύ  "ԡ  ώ  "Կ  Ϗ  "  ϐ  "  ϑ  "  ϒ  "7  ϓ  "U  ϔ  "s  ϕ  "Ց  ϖ  "կ  ϗ  "  Ϙ  "  ϙ  "	  Ϛ  "'  ϛ  "E  Ϝ  "c  ϝ  "ց  Ϟ  "֟  ϟ  "ֽ  Ϡ  "  ϡ  "  Ϣ  "  ϣ  "5  Ϥ  "S  ϥ  "q  Ϧ  "׏  ϧ  "׭  Ϩ  "  ϩ  "  Ϫ  "  ϫ  "  Ϭ  "=  ϭ  "Y  Ϯ  "w  ϯ  "ؕ  ϰ  "ر  ϱ  "  ϲ  "  ϳ  "  ϴ  "!  ϵ  "?  ϶  "[  Ϸ  "w  ϸ  "ٓ  Ϲ  "ٯ  Ϻ  "  ϻ  "  ϼ  "  Ͻ  "%  Ͼ  "A  Ͽ  "]    "y    "ڕ    "ڱ    "    "    "    "$    "B    "`    "~    "ۜ    "ۺ    "    "    "    "2    "P    "n    "܌    "ܪ    "    "    "    ""    "@    "^    "|    "ݚ    "ݸ    "    "    "    "0    "L    "j    "ވ    "ަ    "    "    "     "    "<    "Z    "x    "ߖ    "ߴ    "    "    "    ",    "J    "h    "    "    "    "    "    "    ":    "X    "v    "    "    "     "    "    ""    "@    "\    "x    "    "    "  	  "  
  "    ""    ">    "Z    "v    "    "    "    "    "    "$    "@    "\    "x    "    "    "    "    "    ",    "J    "h     "  !  "  "  "  #  "  $  "  %  "  &  ":  '  "X  (  "v  )  "  *  "  +  "  ,  "  -  "  .  "*  /  "H  0  "f  1  "  2  "  3  "  4  "  5  "  6  "  7  "2  8  "P  9  "l  :  "  ;  "  <  "  =  "  >  "  ?  "  @  "4  A  "R  B  "n  C  "  D  "  E  "  F  "  G  "  H  "  I  "8  J  "T  K  "p  L  "  M  "  N  "  O  "  P  "  Q  "  R  "8  S  "V  T  "t  U  "  V  "  W  "  X  "  Y  "
  Z  "(  [  "F  \  "d  ]  "  ^  "  _  "  `  "  a  "  b  "  c  "6  d  "T  e  "r  f  "  g  "  h  "  i  "  j  "  k  "&  l  "D  m  "_  n  "}  o  "  p  "  q  "  r  "  s  "  t  "1  u  "O  v  "m  w  "  x  "  y  "  z  "  {  "  |  "!  }  "?  ~  "]    "{  Ѐ  "  Ё  "  Ђ  "  Ѓ  "  Є  "  Ѕ  "/  І  "M  Ї  "k  Ј  "  Љ  "  Њ  "  Ћ  "  Ќ  "  Ѝ  "  Ў  "5  Џ  "S  А  "o  Б  "  В  "  Г  "  Д  "  Е  "  Ж  "  З  "5  И  "Q  Й  "m  К  "  Л  "  М  "  Н  "  О  "  П  "  Р  "7  С  "S  Т  "o  У  "  Ф  "  Х  "  Ц  "  Ч  "  Ш  "  Щ  "7  Ъ  "U  Ы  "s  Ь  "  Э  "  Ю  "  Я  "  а  "  б  "  в  "9  г  "U  д  "q  е  "  ж  "  з  "  и  "  й  "  к  "  л  ";  м  "W  н  "s  о  "  п  "    "    "    "	    ")    "I    "i    "    "    "    "    "	    ")    "I    "i    "    "    "    "    "	    ")    "I    "i    "    "    "    "    "	    ")    "I    "g    "    "    "    "    "    "    "9    "W    "u    "    "    "    "    "    ")    "G    "e    "    "    "    "    "    "    "7    "U    "s    "    "    "    "    "    "1    "Q    "q     "    "    "    "    #     # 1    # Q    # q    #   	  #   
  #     #     #    #1    #Q    #q    #    #    #    #    #    #/    #M    #k    #    #    #    #    #    #    #=    #[     #y  !  #  "  #  #  #  $  #  %  #  &  #-  '  #K  (  #i  )  #  *  #  +  #  ,  #  -  #  .  #  /  #;  0  #Y  1  #u  2  #  3  #  4  #  5  #  6  #  7  ##  8  #?  9  #[  :  #w  ;  #  <  #  =  #  >  #  ?  #  @  #!  A  #=  B  #Y  C  #w  D  #  E  #  F  #  G  #  H  #  I  ##  J  #?  K  #[  L  #y  M  #  N  #  O  #  P  #  Q  #	  R  #	-  S  #	K  T  #	i  U  #	  V  #	  W  #	  X  #	  Y  #	  Z  #
  [  #
;  \  #
Y  ]  #
w  ^  #
  _  #
  `  #
  a  #
  b  #  c  #+  d  #I  e  #g  f  #  g  #  h  #  i  #  j  #  k  #  l  #3  m  #O  n  #m  o  #  p  #  q  #  r  #  s  #  t  #  u  #5  v  #Q  w  #m  x  #  y  #  z  #  {  #  |  #  }  #  ~  #7    #S  р  #o  с  #  т  #  у  #  ф  #  х  #  ц  #  ч  #;  ш  #Y  щ  #w  ъ  #  ы  #  ь  #  э  #  ю  #  я  #+  ѐ  #I  ё  #g  ђ  #  ѓ  #  є  #  ѕ  #  і  #  ї  #  ј  #9  љ  #W  њ  #u  ћ  #  ќ  #  ѝ  #  ў  #  џ  #  Ѡ  #)  ѡ  #D  Ѣ  #b  ѣ  #  Ѥ  #  ѥ  #  Ѧ  #  ѧ  #  Ѩ  #  ѩ  #4  Ѫ  #R  ѫ  #p  Ѭ  #  ѭ  #  Ѯ  #  ѯ  #  Ѱ  #  ѱ  #$  Ѳ  #B  ѳ  #`  Ѵ  #~  ѵ  #  Ѷ  #  ѷ  #  Ѹ  #  ѹ  #  Ѻ  #2  ѻ  #P  Ѽ  #n  ѽ  #  Ѿ  #  ѿ  #    #    #    #.    #N    #n    #    #    #    #    #    #.    #N    #n    #    #    #    #    #    #.    #N    #n    #    #    #    #    #    #*    #H    #f    #    #    #    #    #    #    #8    #V    #t    #    #    #    #    #
    #(    #F    #d    #    #    #    #    #    #    #6    #R    #n    #    #    #    #    #     #    #8    #T    #p     #    #    #    #    #    #    #6    #T    #r  	  #  
  #    #    #    #     #    #8    #V    #q    #    #    #    #    #     # %    # C    # a    #     #     #     #     #     #!     #!3  !  #!Q  "  #!o  #  #!  $  #!  %  #!  &  #!  '  #"  (  #"#  )  #"A  *  #"_  +  #"}  ,  #"  -  #"  .  #"  /  #"  0  ##  1  ##/  2  ##M  3  ##k  4  ##  5  ##  6  ##  7  ##  8  #$  9  #$  :  #$=  ;  #$[  <  #$y  =  #$  >  #$  ?  #$  @  #$  A  #%  B  #%-  C  #%K  D  #%i  E  #%  F  #%  G  #%  H  #%  I  #%  J  #&  K  #&5  L  #&S  M  #&o  N  #&  O  #&  P  #&  Q  #&  R  #&  S  #'  T  #'7  U  #'U  V  #'q  W  #'  X  #'  Y  #'  Z  #'  [  #'  \  #(  ]  #(;  ^  #(W  _  #(s  `  #(  a  #(  b  #(  c  #(  d  #)  e  #)  f  #)=  g  #)[  h  #)y  i  #)  j  #)  k  #)  l  #)  m  #*  n  #*-  o  #*K  p  #*i  q  #*  r  #*  s  #*  t  #*  u  #*  v  #+  w  #+;  x  #+Y  y  #+w  z  #+  {  #+  |  #+  }  #+  ~  #,    #,+  Ҁ  #,I  ҁ  #,e  ҂  #,  ҃  #,  ҄  #,  ҅  #,  ҆  #,  ҇  #-  ҈  #-/  ҉  #-K  Ҋ  #-g  ҋ  #-  Ҍ  #-  ҍ  #-  Ҏ  #-  ҏ  #-  Ґ  #.  ґ  #.-  Ғ  #.I  ғ  #.g  Ҕ  #.  ҕ  #.  Җ  #.  җ  #.  Ҙ  #.  ҙ  #/  Қ  #//  қ  #/K  Ҝ  #/i  ҝ  #/  Ҟ  #/  ҟ  #/  Ҡ  #/  ҡ  #/  Ң  #0  ң  #09  Ҥ  #0W  ҥ  #0u  Ҧ  #0  ҧ  #0  Ҩ  #0  ҩ  #0  Ҫ  #1  ҫ  #1)  Ҭ  #1G  ҭ  #1e  Ү  #1  ү  #1  Ұ  #1  ұ  #1  Ҳ  #1  ҳ  #2  Ҵ  #27  ҵ  #2U  Ҷ  #2s  ҷ  #2  Ҹ  #2  ҹ  #2  Һ  #2  һ  #3  Ҽ  #3$  ҽ  #3B  Ҿ  #3`  ҿ  #3~    #3    #3    #3    #3    #4    #42    #4P    #4n    #4    #4    #4    #4    #5    #5"    #5@    #5^    #5|    #5    #5    #5    #5    #6    #6,    #6H    #6f    #6    #6    #6    #6    #6    #7    #7.    #7J    #7h    #7    #7    #7    #7    #7    #8    #80    #8N    #8j    #8    #8    #8    #8    #8    #9    #90    #9L    #9h    #9    #9    #9    #9    #9    #:    #:2    #:N    #:j    #:    #:    #:     #:    #:    #;    #;2    #;P    #;n    #;    #;    #;  	  #;  
  #;    #<    #<4    #<T    #<t    #<    #<    #<    #<    #=    #=4    #=T    #=t    #=    #=    #=    #=    #>    #>4    #>T    #>t    #>     #>  !  #>  "  #>  #  #?  $  #?4  %  #?T  &  #?t  '  #?  (  #?  )  #?  *  #?  +  #@  ,  #@,  -  #@J  .  #@h  /  #@  0  #@  1  #@  2  #@  3  #@  4  #A  5  #A:  6  #AX  7  #Av  8  #A  9  #A  :  #A  ;  #A  <  #B  =  #B*  >  #BH  ?  #Bf  @  #B  A  #B  B  #B  C  #B  D  #B  E  #C  F  #C<  G  #C\  H  #C|  I  #C  J  #C  K  #C  L  #C  M  #D  N  #D<  O  #D\  P  #D|  Q  #D  R  #D  S  #D  T  #D  U  #E  V  #E<  W  #E\  X  #E|  Y  #E  Z  #E  [  #E  \  #E  ]  #F  ^  #F<  _  #F\  `  #F|  a  #F  b  #F  c  #F  d  #F  e  #G  f  #G0  g  #GN  h  #Gl  i  #G  j  #G  k  #G  l  #G  m  #H  n  #H   o  #H>  p  #H\  q  #Hz  r  #H  s  #H  t  #H  u  #H  v  #I  w  #I.  x  #IL  y  #Ij  z  #I  {  #I  |  #I  }  #I  ~  #I    #J  Ӏ  #J6  Ӂ  #JR  ӂ  #Jp  Ӄ  #J  ӄ  #J  Ӆ  #J  ӆ  #J  Ӈ  #J  ӈ  #K  Ӊ  #K8  ӊ  #KT  Ӌ  #Kp  ӌ  #K  Ӎ  #K  ӎ  #K  ӏ  #K  Ӑ  #L   ӑ  #L  Ӓ  #L:  ӓ  #LV  Ӕ  #Lr  ӕ  #L  Ӗ  #L  ӗ  #L  Ә  #L  ә  #M  Ӛ  #M   ӛ  #M>  Ӝ  #M\  ӝ  #Mz  Ӟ  #M  ӟ  #M  Ӡ  #M  ӡ  #M  Ӣ  #N  ӣ  #N.  Ӥ  #NL  ӥ  #Nj  Ӧ  #N  ӧ  #N  Ө  #N  ө  #N  Ӫ  #O   ӫ  #O  Ӭ  #O<  ӭ  #OZ  Ӯ  #Ox  ӯ  #O  Ӱ  #O  ӱ  #O  Ӳ  #O  ӳ  #P  Ӵ  #P,  ӵ  #PH  Ӷ  #Pd  ӷ  #P  Ӹ  #P  ӹ  #P  Ӻ  #P  ӻ  #P  Ӽ  #Q  ӽ  #Q.  Ӿ  #QJ  ӿ  #Qf    #Q    #Q    #Q    #Q    #Q    #R    #R,    #RJ    #Rh    #R    #R    #R    #R    #R    #S    #S.    #SL    #Sj    #S    #S    #S    #S    #T     #T    #T<    #TZ    #Tx    #T    #T    #T    #T    #U    #U,    #UJ    #Uh    #U    #U    #U    #U    #U    #V    #V:    #VX    #Vv    #V    #V    #V    #V    #W	    #W'    #WE    #Wc    #W    #W    #W    #W    #W    #X    #X5    #XS    #Xq    #X    #X    #X     #X    #Y    #Y%    #YC    #Ya    #Y    #Y    #Y    #Y  	  #Y  
  #Z    #Z9    #ZY    #Zy    #Z    #Z    #Z    #Z    #[    #[9    #[Y    #[y    #[    #[    #[    #[    #\    #\9    #\Y    #\y    #\    #\     #\  !  #\  "  #]  #  #]9  $  #]Y  %  #]w  &  #]  '  #]  (  #]  )  #]  *  #^  +  #^+  ,  #^I  -  #^g  .  #^  /  #^  0  #^  1  #^  2  #^  3  #_  4  #_9  5  #_W  6  #_u  7  #_  8  #_  9  #_  :  #_  ;  #`  <  #`)  =  #`G  >  #`e  ?  #`  @  #`  A  #`  B  #`  C  #`  D  #a  E  #a/  F  #aM  G  #ak  H  #a  I  #a  J  #a  K  #a  L  #a  M  #b  N  #b1  O  #bM  P  #bi  Q  #b  R  #b  S  #b  T  #b  U  #b  V  #c  W  #c3  X  #cO  Y  #ck  Z  #c  [  #c  \  #c  ]  #c  ^  #c  _  #d  `  #d6  a  #dT  b  #dr  c  #d  d  #d  e  #d  f  #d  g  #e  h  #e&  i  #eD  j  #eb  k  #e  l  #e  m  #e  n  #e  o  #e  p  #f  q  #f4  r  #fR  s  #fp  t  #f  u  #f  v  #f  w  #f  x  #g  y  #g"  z  #g@  {  #g^  |  #g|  }  #g  ~  #g    #g  Ԁ  #g  ԁ  #h  Ԃ  #h0  ԃ  #hN  Ԅ  #hl  ԅ  #h  Ԇ  #h  ԇ  #h  Ԉ  #h  ԉ  #i  Ԋ  #i   ԋ  #i>  Ԍ  #i\  ԍ  #iz  Ԏ  #i  ԏ  #i  Ԑ  #i  ԑ  #i  Ԓ  #j  ԓ  #j.  Ԕ  #jL  ԕ  #jh  Ԗ  #j  ԗ  #j  Ԙ  #j  ԙ  #j  Ԛ  #j  ԛ  #k  Ԝ  #k2  ԝ  #kN  Ԟ  #kj  ԟ  #k  Ԡ  #k  ԡ  #k  Ԣ  #k  ԣ  #k  Ԥ  #l  ԥ  #l0  Ԧ  #lL  ԧ  #lj  Ԩ  #l  ԩ  #l  Ԫ  #l  ԫ  #l  Ԭ  #l  ԭ  #m  Ԯ  #m2  ԯ  #mN  ԰  #ml  Ա  #m  Բ  #m  Գ  #m  Դ  #m  Ե  #n  Զ  #n   Է  #n>  Ը  #n\  Թ  #nz  Ժ  #n  Ի  #n  Լ  #n  Խ  #n  Ծ  #o  Կ  #o.    #oL    #oj    #o    #o    #o    #o    #p     #p    #p<    #pZ    #px    #p    #p    #p    #p    #q    #q&    #qB    #q`    #q~    #q    #q    #q    #q    #r
    #r(    #rD    #r`    #r|    #r    #r    #r    #r    #s    #s*    #sF    #sb    #s~    #s    #s    #s    #s    #t    #t,    #tJ    #th    #t    #t    #t    #t    #t    #u    #u:    #uX    #uv    #u    #u    #u    #u    #v    #v*    #vH    #vf    #v     #v    #v    #v    #v    #w    #w5    #wS    #wq    #w  	  #w  
  #w    #w    #x    #x%    #xC    #xa    #x    #x    #x    #x    #x    #y    #y3    #yQ    #yo    #y    #y    #y    #y    #z    #z#    #zA     #z_  !  #z{  "  #z  #  #z  $  #z  %  #z  &  #{  '  #{)  (  #{E  )  #{a  *  #{}  +  #{  ,  #{  -  #{  .  #{  /  #|  0  #|'  1  #|C  2  #|_  3  #|}  4  #|  5  #|  6  #|  7  #|  8  #}  9  #})  :  #}E  ;  #}a  <  #}  =  #}  >  #}  ?  #}  @  #}  A  #~  B  #~+  C  #~I  D  #~e  E  #~  F  #~  G  #~  H  #~  I  #~  J  #  K  #+  L  #G  M  #c  N  #  O  #  P  #  Q  #  R  #  S  #  T  #-  U  #I  V  #e  W  #  X  #  Y  #  Z  #  [  #  \  #  ]  #?  ^  #_  _  #  `  #  a  #  b  #  c  #  d  #  e  #?  f  #_  g  #  h  #  i  #  j  #  k  #  l  #  m  #?  n  #_  o  #  p  #  q  #  r  #  s  #  t  #  u  #=  v  #[  w  #y  x  #  y  #  z  #  {  #  |  #  }  #-  ~  #K    #i  Հ  #  Ձ  #  Ղ  #  Ճ  #  Մ  #  Յ  #  Ն  #;  Շ  #Y  Ո  #w  Չ  #  Պ  #  Ջ  #  Ռ  #  Ս  #  Վ  #+  Տ  #I  Ր  #g  Ց  #  Ւ  #  Փ  #  Ք  #  Օ  #  Ֆ  #'  ՗  #G  ՘  #g  ՙ  #  ՚  #  ՛  #  ՜  #  ՝  #  ՞  #'  ՟  #G  ՠ  #g  ա  #  բ  #  գ  #  դ  #  ե  #  զ  #'  է  #G  ը  #g  թ  #  ժ  #  ի  #  լ  #  խ  #  ծ  ##  կ  #A  հ  #_  ձ  #}  ղ  #  ճ  #  մ  #  յ  #  ն  #  շ  #1  ո  #O  չ  #m  պ  #  ջ  #  ռ  #  ս  #  վ  #  տ  #!    #?    #]    #{    #    #    #    #    #    #/    #K    #g    #    #    #    #    #    #    #1    #M    #i    #    #    #    #    #    #    #/    #M    #k    #    #    #    #    #    #    #1    #O    #m    #    #    #    #    #    #!    #?    #]    #{    #    #    #    #    #    #/    #M    #k    #    #    #    #    #    #    #=    #[    #y     #    #    #    #    #	    #%    #C    #a    #}  	  #  
  #    #    #    #    #'    #C    #_    #{    #    #    #    #    #    #)    #E    #a    #}    #    #    #    #    #     #/  !  #M  "  #k  #  #  $  #  %  #  &  #  '  #  (  #  )  #=  *  #[  +  #y  ,  #  -  #  .  #  /  #  0  #  1  #-  2  #K  3  #i  4  #  5  #  6  #  7  #  8  #  9  #  :  #8  ;  #V  <  #t  =  #  >  #  ?  #  @  #  A  #
  B  #(  C  #F  D  #d  E  #  F  #  G  #  H  #  I  #  J  #  K  #6  L  #T  M  #r  N  #  O  #  P  #  Q  #  R  #  S  #&  T  #D  U  #e  V  #  W  #  X  #  Y  #  Z  #  [  #%  \  #E  ]  #e  ^  #  _  #  `  #  a  #  b  #  c  #%  d  #E  e  #e  f  #  g  #  h  #  i  #  j  #  k  #%  l  #E  m  #e  n  #  o  #  p  #  q  #  r  #  s  #  t  #=  u  #[  v  #y  w  #  x  #  y  #  z  #  {  #  |  #-  }  #K  ~  #i    #  ր  #  ց  #  ւ  #  փ  #  ք  #  օ  #;  ֆ  #Y  և  #w  ֈ  #  ։  #  ֊  #  ֋  #  ֌  #  ֍  #+  ֎  #G  ֏  #c  ֐  #  ֑  #  ֒  #  ֓  #  ֔  #  ֕  #  ֖  #-  ֗  #I  ֘  #e  ֙  #  ֚  #  ֛  #  ֜  #  ֝  #  ֞  #  ֟  #-  ֠  #K  ֡  #i  ֢  #  ֣  #  ֤  #  ֥  #  ֦  #  ֧  #  ֨  #/  ֩  #J  ֪  #h  ֫  #  ֬  #  ֭  #  ֮  #  ֯  #  ְ  #  ֱ  #:  ֲ  #X  ֳ  #v  ִ  #  ֵ  #  ֶ  #  ַ  #  ָ  #  ֹ  #*  ֺ  #H  ֻ  #f  ּ  #  ֽ  #  ־  #  ֿ  #    #    #    #8    #V    #t    #    #    #    #    #
    #(    #F    #d    #    #    #    #    #    #    #6    #T    #r    #    #    #    #    #    #&    #D    #b    #    #    #    #    #    #    #.    #J    #h    #    #    #    #    #    #    #0    #L    #h    #    #    #    #    #    #    #2    #N    #j    #    #    #    #    #    #    #6     #T    #r    #    #    #    #    #    #&    #D  	  #b  
  #    #    #    #    #    #    #4    #R    #p    #    #    #    #    #    #$    #@    #\    #x    #    #    #    #     #
  !  #&  "  #B  #  #^  $  #z  %  #  &  #  '  #  (  #  )  #  *  #$  +  #B  ,  #`  -  #~  .  #  /  #  0  #  1  #  2  #
  3  #&  4  #D  5  #b  6  #  7  #  8  #  9  #  :  #  ;  #  <  #4  =  #R  >  #p  ?  #  @  #  A  #  B  #  C  #  D  #$  E  #B  F  #`  G  #~  H  #  I  #  J  #  K  #  L  #  M  #2  N  #P  O  #n  P  #  Q  #  R  #  S  #  T  #  U  #  V  #=  W  #[  X  #y  Y  #  Z  #  [  #  \  #  ]  #  ^  #-  _  #K  `  #i  a  #  b  #  c  #  d  #  e  #  f  #  g  #;  h  #Y  i  #w  j  #  k  #  l  #  m  #  n  #  o  #'  p  #E  q  #a  r  #  s  #  t  #  u  #  v  #  w  #  x  #)  y  #G  z  #c  {  #  |  #  }  #  ~  #    #  ׀  #  ׁ  #-  ׂ  #I  ׃  #e  ׄ  #  ׅ  #  ׆  #  ׇ  #  ׈  #  ׉  #  ׊  #+  ׋  #G  ׌  #e  ׍  #  ׎  #  ׏  #½  א  #  ב  #  ג  #  ד  #-  ה  #I  ו  #g  ז  #Ã  ח  #ß  ט  #û  י  #  ך  #  כ  #  ל  #/  ם  #M  מ  #i  ן  #ą  נ  #ġ  ס  #Ľ  ע  #  ף  #  פ  #  ץ  #(  צ  #=  ק  #R  ר  #g  ש  #|  ת  #ő  ׫  #Ŧ  ׬  #Ż  ׭  #  ׮  #  ׯ  #  װ  #  ױ  #$  ײ  #9  ׳  #N  ״  #c  ׵  #x  ׶  #ƍ  ׷  #Ƣ  ׸  #Ʒ  ׹  #  ׺  #  ׻  #  ׼  #  ׽  #   ׾  #5  ׿  #J    #_    #t    #ǉ    #Ǟ    #ǳ    #    #    #    #    #    #1    #F    #[    #p    #ȅ    #Ț    #ȯ    #    #    #    #    #    #-    #B    #W    #l    #Ɂ    #ɖ    #ɫ    #    #    #    #    #    #)    #>    #S    #h    #}    #ʒ    #ʧ    #ʼ    #    #    #    #    #%    #:    #O    #d    #y    #ˎ    #ˣ    #˸    #    #    #    #    #!    #6    #K    #`    #u    #̊     #̟    #̹    #    #    #    #!    #;    #U    #o  	  #͉  
  #ͣ    #ͽ    #    #    #    #%    #?    #Y    #s    #΍    #Χ    #    #    #    #    #)    #C    #]    #w    #ϑ    #ϫ    #     #  !  #  "  #  #  #-  $  #G  %  #a  &  #{  '  #Е  (  #Я  )  #  *  #  +  #  ,  #  -  #1  .  #K  /  #e  0  #  1  #љ  2  #ѳ  3  #  4  #  5  #  6  #  7  #5  8  #O  9  #i  :  #҃  ;  #ҝ  <  #ҷ  =  #  >  #  ?  #  @  #  A  #9  B  #S  C  #m  D  #Ӈ  E  #ӡ  F  #ӻ  G  #  H  #  I  #	  J  ##  K  #=  L  #W  M  #q  N  #ԋ  O  #ԥ  P  #Կ  Q  #  R  #  S  #  T  #'  U  #A  V  #[  W  #u  X  #Տ  Y  #թ  Z  #  [  #  \  #  ]  #  ^  #+  _  #E  `  #_  a  #y  b  #֓  c  #֭  d  #  e  #  f  #  g  #  h  #/  i  #I  j  #c  k  #}  l  #ח  m  #ױ  n  #  o  #  p  #  q  #  r  #3  s  #M  t  #g  u  #؁  v  #؛  w  #ص  x  #  y  #  z  #  {  #  |  #7  }  #Q  ~  #k    #م    #ٟ    #ٹ    #    #    #    #!    #;    #U    #o    #ډ    #ڣ    #ڽ    #    #    #    #%    #?    #Y    #s    #ۍ    #ۧ    #    #    #    #    #)    #C    #]    #w    #ܑ    #ܫ    #    #    #    #    #-    #G    #a    #{    #ݕ    #ݯ    #    #    #    #    #1    #K    #e    #    #ޙ    #޳    #    #    #    #    #5    #O    #i    #߃    #ߝ    #߷    #    #    #    #    #9    #S    #m    #    #    #    #    #    #	    ##    #=    #W    #q    #    #    #    #    #    #    #'    #A    #[    #u    #    #    #    #    #    #    #+    #E    #_    #y    #    #    #    #    #    #    #/    #I    #c    #}    #    #    #    #    #    #    #3    #M    #g    #    #    #    #    #    #    #    #7    #Q    #k    #     #    #    #    #    #    #!    #;    #U    #o  	  #  
  #    #    #    #    #    #%    #?    #Y    #s    #    #    #    #    #    #    #)    #C    #]    #w    #    #    #     #  !  #  "  #  #  #-  $  #G  %  #a  &  #{  '  #  (  #  )  #  *  #  +  #  ,  #  -  #1  .  #K  /  #e  0  #  1  #  2  #  3  #  4  #  5  #  6  #  7  #5  8  #O  9  #i  :  #  ;  #  <  #  =  #  >  #  ?  #  @  #  A  #9  B  #S  C  #m  D  #  E  #  F  #  G  #  H  #  I  #	  J  ##  K  #=  L  #W  M  #q  N  #  O  #  P  #  Q  #  R  #  S  #  T  #'  U  #A  V  #[  W  #u  X  #  Y  #  Z  #  [  #  \  #  ]  #  ^  #+  _  #E  `  #_  a  #y  b  #  c  #  d  #  e  #  f  #  g  #  h  #/  i  #I  j  #c  k  #}  l  #  m  #  n  #  o  #  p  #  q  #  r  #3  s  #M  t  #g  u  #  v  #  w  #  x  #  y  #  z  #  {  #  |  #7  }  #Q  ~  #k    #    #    #    #    #    #    #!    #;    #U    #o    #    #    #    #    #    #    #%    #?    #Y    #s    #    #    #    #    #    #    #)    #C    #]    #w    #    #    #    #    #    #    #-    #G    #a    #{    #    #    #    #    #    #    #1    #K    #e    #    #    #    #    #    #    #    #5    #O    #i    #    #    #    #    #    #    #    #9    #S    #m    #    #    #    #    #    #	    ##    #=    #W    #q    #    #    #    #    #    #    #'    #A    #[    #u    #    #    #    #    #    #    #+    #E    #_    #y    #    #    #    #    #    #    #/    #I    #c    #}    #    #    #    #    #    #    #3    #M    #g    #    #    #    #    #    $     $     $ 7    $ Q    $ k    $      $     $     $     $     $    $!    $;    $U    $o  	  $  
  $    $    $    $    $    $%    $?    $Y    $s    $    $    $    $    $    $    $)    $C    $]    $w    $    $    $     $  !  $  "  $  #  $-  $  $G  %  $a  &  ${  '  $  (  $  )  $  *  $  +  $  ,  $  -  $1  .  $K  /  $e  0  $  1  $  2  $  3  $  4  $  5  $  6  $  7  $5  8  $O  9  $i  :  $  ;  $  <  $  =  $  >  $  ?  $  @  $  A  $9  B  $S  C  $m  D  $  E  $  F  $  G  $  H  $  I  $	  J  $#  K  $=  L  $W  M  $q  N  $  O  $  P  $  Q  $  R  $  S  $	  T  $	'  U  $	A  V  $	[  W  $	u  X  $	  Y  $	  Z  $	  [  $	  \  $	  ]  $
  ^  $
+  _  $
E  `  $
_  a  $
y  b  $
  c  $
  d  $
  e  $
  f  $
  g  $  h  $/  i  $I  j  $c  k  $}  l  $  m  $  n  $  o  $  p  $  q  $  r  $3  s  $M  t  $g  u  $  v  $  w  $  x  $  y  $  z  $  {  $  |  $7  }  $Q  ~  $k    $    $    $    $    $    $    $!    $;    $U    $o    $    $    $    $    $    $    $%    $?    $Y    $s    $    $    $    $    $    $    $)    $C    $]    $w    $    $    $    $    $    $    $-    $G    $a    ${    $    $    $    $    $    $    $1    $K    $e    $    $    $    $    $    $    $    $5    $O    $i    $    $    $    $    $    $    $    $9    $S    $m    $    $    $    $    $    $	    $#    $=    $W    $q    $    $    $    $    $    $    $'    $A    $[    $u    $    $    $    $    $    $    $+    $E    $_    $y    $    $    $    $    $    $    $/    $I    $c    $}    $    $    $    $    $    $    $3    $M    $g    $    $    $    $    $    $    $    $7    $Q    $k    $     $    $    $    $    $    $!    $;    $U    $o  	  $  
  $    $    $    $    $    $%    $?    $Y    $s    $    $    $    $    $    $    $)    $C    $]    $w    $    $    $     $  !  $  "  $  #  $-  $  $G  %  $a  &  ${  '  $  (  $  )  $  *  $  +  $  ,  $  -  $1  .  $K  /  $e  0  $  1  $  2  $  3  $  4  $  5  $   6  $   7  $ 5  8  $ O  9  $ i  :  $   ;  $   <  $   =  $   >  $   ?  $!  @  $!  A  $!9  B  $!S  C  $!m  D  $!  E  $!  F  $!  G  $!  H  $!  I  $"	  J  $"#  K  $"=  L  $"W  M  $"q  N  $"  O  $"  P  $"  Q  $"  R  $"  S  $#  T  $#'  U  $#A  V  $#[  W  $#u  X  $#  Y  $#  Z  $#  [  $#  \  $#  ]  $$  ^  $$+  _  $$E  `  $$_  a  $$y  b  $$  c  $$  d  $$  e  $$  f  $$  g  $%  h  $%/  i  $%I  j  $%c  k  $%}  l  $%  m  $%  n  $%  o  $%  p  $%  q  $&  r  $&3  s  $&M  t  $&g  u  $&  v  $&  w  $&  x  $&  y  $&  z  $'  {  $'  |  $'7  }  $'Q  ~  $'k    $'    $'    $'    $'    $'    $(    $(!    $(;    $(U    $(o    $(    $(    $(    $(    $(    $)    $)%    $)?    $)Y    $)s    $)    $)    $)    $)    $)    $*    $*)    $*C    $*]    $*w    $*    $*    $*    $*    $*    $+    $+-    $+G    $+a    $+{    $+    $+    $+    $+    $+    $,    $,1    $,K    $,e    $,    $,    $,    $,    $,    $-    $-    $-5    $-O    $-i    $-    $-    $-    $-    $-    $.    $.    $.9    $.S    $.m    $.    $.    $.    $.    $.    $/	    $/#    $/=    $/W    $/q    $/    $/    $/    $/    $/    $0    $0'    $0A    $0[    $0u    $0    $0    $0    $0    $0    $1    $1+    $1E    $1_    $1y    $1    $1    $1    $1    $1    $2    $2/    $2I    $2c    $2}    $2    $2    $2    $2    $2    $3    $33    $3M    $3g    $3    $3    $3    $3    $3    $4    $4    $47    $4Q    $4k    $4     $4    $4    $4    $4    $5    $5!    $5;    $5U    $5o  	  $5  
  $5    $5    $5    $5    $6    $6%    $6?    $6Y    $6s    $6    $6    $6    $6    $6    $7    $7)    $7C    $7]    $7w    $7    $7    $7     $7  !  $7  "  $8  #  $8-  $  $8G  %  $8a  &  $8{  '  $8  (  $8  )  $8  *  $8  +  $8  ,  $9  -  $91  .  $9K  /  $9e  0  $9  1  $9  2  $9  3  $9  4  $9  5  $:  6  $:  7  $:5  8  $:O  9  $:i  :  $:  ;  $:  <  $:  =  $:  >  $:  ?  $;  @  $;  A  $;9  B  $;S  C  $;m  D  $;  E  $;  F  $;  G  $;  H  $;  I  $<	  J  $<#  K  $<=  L  $<W  M  $<q  N  $<  O  $<  P  $<  Q  $<  R  $<  S  $=  T  $='  U  $=A  V  $=[  W  $=u  X  $=  Y  $=  Z  $=  [  $=  \  $=  ]  $>  ^  $>+  _  $>E  `  $>_  a  $>y  b  $>  c  $>  d  $>  e  $>  f  $>  g  $?  h  $?/  i  $?I  j  $?c  k  $?}  l  $?  m  $?  n  $?  o  $?  p  $?  q  $@  r  $@3  s  $@M  t  $@g  u  $@  v  $@  w  $@  x  $@  y  $@  z  $A  {  $A  |  $A7  }  $AQ  ~  $Ak    $A    $A    $A    $A    $A    $B    $B!    $B;    $BU    $Bo    $B    $B    $B    $B    $B    $C    $C%    $C?    $CY    $Cs    $C    $C    $C    $C    $C    $D    $D)    $DC    $D]    $Dw    $D    $D    $D    $D    $D    $E    $E-    $EG    $Ea    $E{    $E    $E    $E    $E    $E    $F    $F1    $FK    $Fe    $F    $F    $F    $F    $F    $G    $G    $G5    $GO    $Gi    $G    $G    $G    $G    $G    $H    $H    $H9    $HS    $Hm    $H    $H    $H    $H    $H    $I	    $I#    $I=    $IW    $Iq    $I    $I    $I    $I    $I    $J    $J'    $JA    $J[    $Ju    $J    $J    $J    $J    $J    $K    $K+    $KE    $K_    $Ky    $K    $K    $K    $K    $K    $L    $L/    $LI    $Lc    $L}    $L    $L    $L    $L    $L    $M    $M3    $MM    $Mg    $M    $M    $M    $M    $M    $N    $N    $N7    $NQ    $Nk    $N     $N    $N    $N    $N    $O    $O!    $O;    $OU    $Oo  	  $O  
  $O    $O    $O    $O    $P    $P%    $P?    $PY    $Ps    $P    $P    $P    $P    $P    $Q    $Q)    $QC    $Q]    $Qw    $Q    $Q    $Q     $Q  !  $Q  "  $R  #  $R-  $  $RG  %  $Ra  &  $R{  '  $R  (  $R  )  $R  *  $R  +  $R  ,  $S  -  $S1  .  $SK  /  $Se  0  $S  1  $S  2  $S  3  $S  4  $S  5  $T  6  $T  7  $T5  8  $TO  9  $Ti  :  $T  ;  $T  <  $T  =  $T  >  $T  ?  $U  @  $U  A  $U9  B  $US  C  $Um  D  $U  E  $U  F  $U  G  $U  H  $U  I  $V	  J  $V#  K  $V=  L  $VW  M  $Vq  N  $V  O  $V  P  $V  Q  $V  R  $V  S  $W  T  $W'  U  $WA  V  $W[  W  $Wu  X  $W  Y  $W  Z  $W  [  $W  \  $W  ]  $X  ^  $X+  _  $XE  `  $X_  a  $Xy  b  $X  c  $X  d  $X  e  $X  f  $X  g  $Y  h  $Y/  i  $YI  j  $Yc  k  $Y}  l  $Y  m  $Y  n  $Y  o  $Y  p  $Y  q  $Z  r  $Z3  s  $ZM  t  $Zg  u  $Z  v  $Z  w  $Z  x  $Z  y  $Z  z  $[  {  $[  |  $[7  }  $[Q  ~  $[k    $[    $[    $[    $[    $[    $\    $\!    $\;    $\U    $\o    $\    $\    $\    $\    $\    $]    $]%    $]?    $]Y    $]s    $]    $]    $]    $]    $]    $^    $^)    $^C    $^]    $^w    $^    $^    $^    $^    $^    $_    $_-    $_G    $_a    $_{    $_    $_    $_    $_    $_    $`    $`1    $`K    $`e    $`    $`    $`    $`    $`    $a    $a    $a5    $aO    $ai    $a    $a    $a    $a    $a    $b    $b    $b9    $bS    $bm    $b    $b    $b    $b    $b    $c	    $c#    $c=    $cW    $cq    $c    $c    $c    $c    $c    $d    $d'    $dA    $d[    $du    $d    $d    $d    $d    $d    $e    $e+    $eE    $e_    $ey    $e    $e    $e    $e    $e    $f    $f/    $fI    $fc    $f}    $f    $f    $f    $f    $f    $g    $g3    $gM    $gg    $g    $g    $g    $g    $g    $h    $h    $h7    $hQ    $hk    $h     $h    $h    $h    $h    $i    $i!    $i;    $iU    $io  	  $i  
  $i    $i    $i    $i    $j    $j%    $j?    $jY    $js    $j    $j    $j    $j    $j    $k    $k)    $kC    $k]    $kw    $k    $k    $k     $k  !  $k  "  $l  #  $l-  $  $lG  %  $la  &  $l{  '  $l  (  $l  )  $l  *  $l  +  $l  ,  $m  -  $m1  .  $mK  /  $me  0  $m  1  $m  2  $m  3  $m  4  $m  5  $n  6  $n  7  $n5  8  $nO  9  $ni  :  $n  ;  $n  <  $n  =  $n  >  $n  ?  $o  @  $o  A  $o9  B  $oS  C  $om  D  $o  E  $o  F  $o  G  $o  H  $o  I  $p	  J  $p#  K  $p=  L  $pW  M  $pq  N  $p  O  $p  P  $p  Q  $p  R  $p  S  $q  T  $q'  U  $qA  V  $q[  W  $qu  X  $q  Y  $q  Z  $q  [  $q  \  $q  ]  $r  ^  $r+  _  $rE  `  $r_  a  $ry  b  $r  c  $r  d  $r  e  $r  f  $r  g  $s  h  $s/  i  $sI  j  $sc  k  $s}  l  $s  m  $s  n  $s  o  $s  p  $s  q  $t  r  $t3  s  $tM  t  $tg  u  $t  v  $t  w  $t  x  $t  y  $t  z  $u  {  $u  |  $u7  }  $uQ  ~  $uk    $u    $u    $u    $u    $u    $v    $v!    $v;    $vU    $vo    $v    $v    $v    $v    $v    $w    $w%    $w?    $wY    $ws    $w    $w    $w    $w    $w    $x    $x)    $xC    $x]    $xw    $x    $x    $x    $x    $x    $y    $y-    $yG    $ya    $y{    $y    $y    $y    $y    $y    $z    $z1    $zK    $ze    $z    $z    $z    $z    $z    ${    ${    ${5    ${O    ${i    ${    ${    ${    ${    ${    $|    $|    $|9    $|S    $|m    $|    $|    $|    $|    $|    $}	    $}#    $}=    $}W    $}q    $}    $}    $}    $}    $}    $~    $~'    $~A    $~[    $~u    $~    $~    $~    $~    $~    $    $+    $E    $_    $y    $    $    $    $    $    $    $/    $I    $c    $}    $    $    $    $    $    $    $3    $M    $g    $    $    $    $    $    $    $    $7    $Q    $k    $     $    $    $    $    $    $!    $;    $U    $o  	  $  
  $    $    $    $    $    $%    $?    $Y    $s    $    $    $    $    $    $    $)    $C    $]    $w    $    $    $     $  !  $  "  $  #  $-  $  $G  %  $a  &  ${  '  $  (  $  )  $  *  $  +  $  ,  $  -  $1  .  $K  /  $e  0  $  1  $  2  $  3  $  4  $  5  $  6  $  7  $5  8  $O  9  $i  :  $  ;  $  <  $  =  $  >  $  ?  $  @  $  A  $9  B  $S  C  $m  D  $  E  $  F  $  G  $  H  $  I  $	  J  $#  K  $=  L  $W  M  $q  N  $  O  $  P  $  Q  $  R  $  S  $  T  $'  U  $A  V  $[  W  $u  X  $  Y  $  Z  $  [  $  \  $  ]  $  ^  $+  _  $E  `  $_  a  $y  b  $  c  $  d  $  e  $  f  $  g  $  h  $/  i  $I  j  $c  k  $}  l  $  m  $  n  $  o  $  p  $  q  $  r  $3  s  $M  t  $g  u  $  v  $  w  $  x  $  y  $  z  $  {  $  |  $7  }  $Q  ~  $k    $    $    $    $    $    $    $!    $;    $U    $o    $    $    $    $    $    $    $%    $?    $Y    $s    $    $    $    $    $    $    $)    $C    $]    $w    $    $    $    $    $    $    $-    $G    $a    ${    $    $    $    $    $    $    $1    $K    $e    $    $    $    $    $    $    $    $5    $O    $i    $    $    $    $    $    $    $    $9    $S    $m    $    $    $    $    $    $	    $#    $=    $W    $q    $    $    $    $    $    $    $'    $A    $[    $u    $    $    $    $    $    $    $+    $E    $_    $y    $    $    $    $    $    $    $/    $I    $c    $}    $    $    $    $    $    $    $3    $M    $g    $    $    $    $    $    $    $    $7    $Q    $k    $     $    $    $    $    $    $!    $;    $U    $o  	  $  
  $    $    $    $    $    $%    $?    $Y    $s    $    $    $    $    $    $    $)    $C    $]    $w    $    $    $     $  !  $  "  $  #  $-  $  $G  %  $a  &  ${  '  $  (  $  )  $  *  $  +  $  ,  $  -  $1  .  $K  /  $e  0  $  1  $  2  $  3  $  4  $  5  $  6  $  7  $5  8  $O  9  $i  :  $  ;  $  <  $  =  $  >  $  ?  $  @  $  A  $9  B  $S  C  $m  D  $  E  $  F  $  G  $  H  $  I  $	  J  $#  K  $=  L  $W  M  $q  N  $  O  $  P  $  Q  $  R  $  S  $  T  $'  U  $A  V  $[  W  $u  X  $  Y  $  Z  $  [  $  \  $  ]  $  ^  $+  _  $E  `  $_  a  $y  b  $  c  $  d  $  e  $  f  $  g  $  h  $/  i  $I  j  $c  k  $}  l  $  m  $  n  $  o  $  p  $  q  $  r  $3  s  $M  t  $g  u  $  v  $  w  $  x  $  y  $  z  $  {  $  |  $7  }  $Q  ~  $k    $    $    $    $    $    $    $!    $;    $U    $o    $    $    $    $    $    $    $%    $?    $Y    $s    $    $    $    $    $    $    $)    $C    $]    $w    $    $    $    $    $    $    $-    $G    $a    ${    $    $    $    $    $    $    $1    $K    $e    $    $    $    $    $    $    $    $5    $O    $i    $    $    $    $    $    $    $    $9    $S    $m    $    $    $    $    $    $	    $#    $=    $W    $q    $    $    $    $    $    $    $'    $A    $[    $u    $    $    $    $    $    $    $+    $E    $_    $y    $    $    $    $    $    $    $/    $I    $c    $}    $    $    $    $    $    $    $3    $M    $g    $    $    $    $    $    $    $    $7    $Q    $k    $     $    $    $    $    $    $!    $;    $U    $o  	  $  
  $    $    $    $    $    $%    $?    $Y    $s    $    $    $    $    $    $    $)    $C    $]    $w    $    $    $     $  !  $  "  $  #  $-  $  $G  %  $a  &  ${  '  $  (  $  )  $  *  $  +  $  ,  $  -  $1  .  $K  /  $e  0  $  1  $  2  $  3  $  4  $  5  $  6  $  7  $5  8  $O  9  $i  :  $  ;  $  <  $  =  $  >  $  ?  $  @  $  A  $9  B  $S  C  $m  D  $  E  $  F  $  G  $  H  $  I  $	  J  $#  K  $=  L  $W  M  $q  N  $  O  $  P  $  Q  $  R  $  S  $  T  $'  U  $A  V  $[  W  $u  X  $  Y  $  Z  $  [  $  \  $  ]  $  ^  $+  _  $E  `  $_  a  $y  b  $  c  $  d  $  e  $  f  $  g  $  h  $/  i  $I  j  $c  k  $}  l  $  m  $  n  $  o  $  p  $  q  $  r  $3  s  $M  t  $g  u  $  v  $  w  $µ  x  $  y  $  z  $  {  $  |  $7  }  $Q  ~  $k    $Å    $ß    $ù    $    $    $    $!    $;    $U    $o    $ĉ    $ģ    $Ľ    $    $    $    $%    $?    $Y    $s    $ō    $ŧ    $    $    $    $    $)    $C    $]    $w    $Ƒ    $ƫ    $    $    $    $    $-    $G    $a    ${    $Ǖ    $ǯ    $    $    $    $    $1    $K    $e    $    $ș    $ȳ    $    $    $    $    $5    $O    $i    $Ƀ    $ɝ    $ɷ    $    $    $    $    $9    $S    $m    $ʇ    $ʡ    $ʻ    $    $    $	    $#    $=    $W    $q    $ˋ    $˥    $˿    $    $    $    $'    $A    $[    $u    $̏    $̩    $    $    $    $    $+    $E    $_    $y    $͓    $ͭ    $    $    $    $    $/    $I    $c    $}    $Η    $α    $    $    $    $    $3    $M    $g    $ρ    $ϛ    $ϵ    $    $    $    $    $7    $Q    $k    $Ѕ     $П    $й    $    $    $    $!    $;    $U    $o  	  $щ  
  $ѣ    $ѽ    $    $    $    $%    $?    $Y    $s    $ҍ    $ҧ    $    $    $    $    $)    $C    $]    $w    $ӑ    $ӫ    $     $  !  $  "  $  #  $-  $  $G  %  $a  &  ${  '  $ԕ  (  $ԯ  )  $  *  $  +  $  ,  $  -  $1  .  $K  /  $e  0  $  1  $ՙ  2  $ճ  3  $  4  $  5  $  6  $  7  $5  8  $O  9  $i  :  $փ  ;  $֝  <  $ַ  =  $  >  $  ?  $  @  $  A  $9  B  $S  C  $m  D  $ׇ  E  $ס  F  $׻  G  $  H  $  I  $	  J  $#  K  $=  L  $W  M  $q  N  $؋  O  $إ  P  $ؿ  Q  $  R  $  S  $  T  $'  U  $A  V  $[  W  $u  X  $ُ  Y  $٩  Z  $  [  $  \  $  ]  $  ^  $+  _  $E  `  $_  a  $y  b  $ړ  c  $ڭ  d  $  e  $  f  $  g  $  h  $/  i  $I  j  $c  k  $}  l  $ۗ  m  $۱  n  $  o  $  p  $  q  $  r  $3  s  $M  t  $g  u  $܁  v  $ܛ  w  $ܵ  x  $  y  $  z  $  {  $  |  $7  }  $Q  ~  $k    $݅    $ݟ    $ݹ    $    $    $    $!    $;    $U    $o    $މ    $ޣ    $޽    $    $    $    $%    $?    $Y    $s    $ߍ    $ߧ    $    $    $    $    $)    $C    $]    $w    $    $    $    $    $    $    $-    $G    $a    ${    $    $    $    $    $    $    $1    $K    $e    $    $    $    $    $    $    $    $5    $O    $i    $    $    $    $    $    $    $    $9    $S    $m    $    $    $    $    $    $	    $#    $=    $W    $q    $    $    $    $    $    $    $'    $A    $[    $u    $    $    $    $    $    $    $+    $E    $_    $y    $    $    $    $    $    $    $/    $I    $c    $}    $    $    $    $    $    $    $3    $M    $g    $    $    $    $    $    $    $    $7    $Q    $k    $     $    $    $    $    $    $!    $;    $U    $o  	  $  
  $    $    $    $    $    $%    $?    $Y    $s    $    $    $    $    $    $    $)    $C    $]    $w    $    $    $     $  !  $  "  $  #  $-  $  $G  %  $a  &  ${  '  $  (  $  )  $  *  $  +  $  ,  $  -  $1  .  $K  /  $e  0  $  1  $  2  $  3  $  4  $  5  $  6  $  7  $5  8  $O  9  $i  :  $  ;  $  <  $  =  $  >  $  ?  $  @  $  A  $9  B  $S  C  $m  D  $  E  $  F  $  G  $  H  $  I  $	  J  $#  K  $=  L  $W  M  $q  N  $  O  $  P  $  Q  $  R  $  S  $  T  $'  U  $A  V  $[  W  $u  X  $  Y  $  Z  $  [  $  \  $  ]  $  ^  $+  _  $E  `  $_  a  $y  b  $  c  $  d  $  e  $  f  $  g  $  h  $/  i  $I  j  $c  k  $}  l  $  m  $  n  $  o  $  p  $  q  $  r  $3  s  $M  t  $g  u  $  v  $  w  $  x  $  y  $  z  $  {  $  |  $7  }  $Q  ~  $k    $    $    $    $    $    $    $!    $;    $U    $o    $    $    $    $    $    $    $%    $?    $Y    $s    $    $    $    $    $    $    $)    $C    $]    $w    $    $    $    $    $    $    $-    $G    $a    ${    $    $    $    $    $    $    $1    $K    $e    $    $    $    $    $    $    $    $5    $O    $i    $    $    $    $    $    $    $    $9    $S    $m    $    $    $    $    $    $	    $#    $=    $W    $q    $    $    $    $    $    %     % '    % A    % [    % u    %     %     %     %     %     %    %+    %E    %_    %y    %    %    %    %    %    %    %/    %I    %c    %}    %    %    %    %    %    %    %3    %M    %g    %    %    %    %    %    %    %    %7    %Q    %k    %     %    %    %    %    %    %!    %;    %U    %o  	  %  
  %    %    %    %    %    %%    %?    %Y    %s    %    %    %    %    %    %    %)    %C    %]    %w    %    %    %     %  !  %  "  %  #  %-  $  %G  %  %a  &  %{  '  %  (  %  )  %  *  %  +  %  ,  %	  -  %	1  .  %	K  /  %	e  0  %	  1  %	  2  %	  3  %	  4  %	  5  %
  6  %
  7  %
5  8  %
O  9  %
i  :  %
  ;  %
  <  %
  =  %
  >  %
  ?  %  @  %  A  %9  B  %S  C  %m  D  %  E  %  F  %  G  %  H  %  I  %	  J  %#  K  %=  L  %W  M  %q  N  %  O  %  P  %  Q  %  R  %  S  %  T  %'  U  %A  V  %[  W  %u  X  %  Y  %  Z  %  [  %  \  %  ]  %  ^  %+  _  %E  `  %_  a  %y  b  %  c  %  d  %  e  %  f  %  g  %  h  %/  i  %I  j  %c  k  %}  l  %  m  %  n  %  o  %  p  %  q  %  r  %3  s  %M  t  %g  u  %  v  %  w  %  x  %  y  %  z  %  {  %  |  %7  }  %Q  ~  %k    %    %    %    %    %    %    %!    %;    %U    %o    %    %    %    %    %    %    %%    %?    %Y    %s    %    %    %    %    %    %    %)    %C    %]    %w    %    %    %    %    %    %    %-    %G    %a    %{    %    %    %    %    %    %    %1    %K    %e    %    %    %    %    %    %    %    %5    %O    %i    %    %    %    %    %    %    %    %9    %S    %m    %    %    %    %    %    %	    %#    %=    %W    %q    %    %    %    %    %    %    %'    %A    %[    %u    %    %    %    %    %    %    %+    %E    %_    %y    %    %    %    %    %    %    %/    %I    %c    %}    %    %    %    %    %    %    %3    %M    %g    %    %    %    %    %    %    %    %7    %Q    %k    %     %    %    %    %    %    %!    %;    %U    %o  	  %  
  %    %    %    %    %     % %    % ?    % Y    % s    %     %     %     %     %     %!    %!)    %!C    %!]    %!w    %!    %!    %!     %!  !  %!  "  %"  #  %"-  $  %"G  %  %"a  &  %"{  '  %"  (  %"  )  %"  *  %"  +  %"  ,  %#  -  %#1  .  %#K  /  %#e  0  %#  1  %#  2  %#  3  %#  4  %#  5  %$  6  %$  7  %$5  8  %$O  9  %$i  :  %$  ;  %$  <  %$  =  %$  >  %$  ?  %%  @  %%  A  %%9  B  %%S  C  %%m  D  %%  E  %%  F  %%  G  %%  H  %%  I  %&	  J  %&#  K  %&=  L  %&W  M  %&q  N  %&  O  %&  P  %&  Q  %&  R  %&  S  %'  T  %''  U  %'A  V  %'[  W  %'u  X  %'  Y  %'  Z  %'  [  %'  \  %'  ]  %(  ^  %(+  _  %(E  `  %(_  a  %(y  b  %(  c  %(  d  %(  e  %(  f  %(  g  %)  h  %)/  i  %)I  j  %)c  k  %)}  l  %)  m  %)  n  %)  o  %)  p  %)  q  %*  r  %*3  s  %*M  t  %*g  u  %*  v  %*  w  %*  x  %*  y  %*  z  %+  {  %+  |  %+7  }  %+Q  ~  %+k    %+    %+    %+    %+    %+    %,    %,!    %,;    %,U    %,o    %,    %,    %,    %,    %,    %-    %-%    %-?    %-Y    %-s    %-    %-    %-    %-    %-    %.    %.)    %.C    %.]    %.w    %.    %.    %.    %.    %.    %/    %/-    %/G    %/a    %/{    %/    %/    %/    %/    %/    %0    %01    %0K    %0e    %0    %0    %0    %0    %0    %1    %1    %15    %1O    %1i    %1    %1    %1    %1    %1    %2    %2    %29    %2S    %2m    %2    %2    %2    %2    %2    %3	    %3#    %3=    %3W    %3q    %3    %3    %3    %3    %3    %4    %4'    %4A    %4[    %4u    %4    %4    %4    %4    %4    %5    %5+    %5E    %5_    %5y    %5    %5    %5    %5    %5    %6    %6/    %6I    %6c    %6}    %6    %6    %6    %6    %6    %7    %73    %7M    %7g    %7    %7    %7    %7    %7    %8    %8    %87    %8Q    %8k    %8     %8    %8    %8    %8    %9    %9!    %9;    %9U    %9o  	  %9  
  %9    %9    %9    %9    %:    %:%    %:?    %:Y    %:s    %:    %:    %:    %:    %:    %;    %;)    %;C    %;]    %;w    %;    %;    %;     %;  !  %;  "  %<  #  %<-  $  %<G  %  %<a  &  %<{  '  %<  (  %<  )  %<  *  %<  +  %<  ,  %=  -  %=1  .  %=K  /  %=e  0  %=  1  %=  2  %=  3  %=  4  %=  5  %>  6  %>  7  %>5  8  %>O  9  %>i  :  %>  ;  %>  <  %>  =  %>  >  %>  ?  %?  @  %?  A  %?9  B  %?S  C  %?m  D  %?  E  %?  F  %?  G  %?  H  %?  I  %@	  J  %@#  K  %@=  L  %@W  M  %@q  N  %@  O  %@  P  %@  Q  %@  R  %@  S  %A  T  %A'  U  %AA  V  %A[  W  %Au  X  %A  Y  %A  Z  %A  [  %A  \  %A  ]  %B  ^  %B+  _  %BE  `  %B_  a  %By  b  %B  c  %B  d  %B  e  %B  f  %B  g  %C  h  %C/  i  %CI  j  %Cc  k  %C}  l  %C  m  %C  n  %C  o  %C  p  %C  q  %D  r  %D3  s  %DM  t  %Dg  u  %D  v  %D  w  %D  x  %D  y  %D  z  %E  {  %E  |  %E7  }  %EQ  ~  %Ek    %E    %E    %E    %E    %E    %F    %F!    %F;    %FU    %Fo    %F    %F    %F    %F    %F    %G    %G%    %G?    %GY    %Gs    %G    %G    %G    %G    %G    %H    %H)    %HC    %H]    %Hw    %H    %H    %H    %H    %H    %I    %I-    %IG    %Ia    %I{    %I    %I    %I    %I    %I    %J    %J1    %JK    %Je    %J    %J    %J    %J    %J    %K    %K    %K5    %KO    %Ki    %K    %K    %K    %K    %K    %L    %L    %L9    %LS    %Lm    %L    %L    %L    %L    %L    %M	    %M#    %M=    %MW    %Mq    %M    %M    %M    %M    %M    %N    %N'    %NA    %N[    %Nu    %N    %N    %N    %N    %N    %O    %O+    %OE    %O_    %Oy    %O    %O    %O    %O    %O    %P    %P/    %PI    %Pc    %P}    %P    %P    %P    %P    %P    %Q    %Q3    %QM    %Qg    %Q    %Q    %Q    %Q    %Q    %R    %R    %R7    %RQ    %Rk    %R     %R    %R    %R    %R    %S    %S!    %S;    %SU    %So  	  %S  
  %S    %S    %S    %S    %T    %T%    %T?    %TY    %Ts    %T    %T    %T    %T    %T    %U    %U)    %UC    %U]    %Uw    %U    %U    %U     %U  !  %U  "  %V  #  %V-  $  %VG  %  %Va  &  %V{  '  %V  (  %V  )  %V  *  %V  +  %V  ,  %W  -  %W1  .  %WK  /  %We  0  %W  1  %W  2  %W  3  %W  4  %W  5  %X  6  %X  7  %X5  8  %XO  9  %Xi  :  %X  ;  %X  <  %X  =  %X  >  %X  ?  %Y  @  %Y  A  %Y9  B  %YS  C  %Ym  D  %Y  E  %Y  F  %Y  G  %Y  H  %Y  I  %Z	  J  %Z#  K  %Z=  L  %ZW  M  %Zq  N  %Z  O  %Z  P  %Z  Q  %Z  R  %Z  S  %[  T  %['  U  %[A  V  %[[  W  %[u  X  %[  Y  %[  Z  %[  [  %[  \  %[  ]  %\  ^  %\+  _  %\E  `  %\_  a  %\y  b  %\  c  %\  d  %\  e  %\  f  %\  g  %]  h  %]/  i  %]I  j  %]c  k  %]}  l  %]  m  %]  n  %]  o  %]  p  %]  q  %^  r  %^3  s  %^M  t  %^g  u  %^  v  %^  w  %^  x  %^  y  %^  z  %_  {  %_  |  %_7  }  %_Q  ~  %_k    %_    %_    %_    %_    %_    %`    %`!    %`;    %`U    %`o    %`    %`    %`    %`    %`    %a    %a%    %a?    %aY    %as    %a    %a    %a    %a    %a    %b    %b)    %bC    %b]    %bw    %b    %b    %b    %b    %b    %c    %c-    %cG    %ca    %c{    %c    %c    %c    %c    %c    %d    %d1    %dK    %de    %d    %d    %d    %d    %d    %e    %e    %e5    %eO    %ei    %e    %e    %e    %e    %e    %f    %f    %f9    %fS    %fm    %f    %f    %f    %f    %f    %g	    %g#    %g=    %gW    %gq    %g    %g    %g    %g    %g    %h    %h'    %hA    %h[    %hu    %h    %h    %h    %h    %h    %i    %i+    %iE    %i_    %iy    %i    %i    %i    %i    %i    %j    %j/    %jI    %jc    %j}    %j    %j    %j    %j    %j    %k    %k3    %kM    %kg    %k    %k    %k    %k    %k    %l    %l    %l7    %lQ    %lk    %l     %l    %l    %l    %l    %m    %m!    %m;    %mU    %mo  	  %m  
  %m    %m    %m    %m    %n    %n%    %n?    %nY    %ns    %n    %n    %n    %n    %n    %o    %o)    %oC    %o]    %ow    %o    %o    %o     %o  !  %o  "  %p  #  %p-  $  %pG  %  %pa  &  %p{  '  %p  (  %p  )  %p  *  %p  +  %p  ,  %q  -  %q1  .  %qK  /  %qe  0  %q  1  %q  2  %q  3  %q  4  %q  5  %r  6  %r  7  %r5  8  %rO  9  %ri  :  %r  ;  %r  <  %r  =  %r  >  %r  ?  %s  @  %s  A  %s9  B  %sS  C  %sm  D  %s  E  %s  F  %s  G  %s  H  %s  I  %t	  J  %t#  K  %t=  L  %tW  M  %tq  N  %t  O  %t  P  %t  Q  %t  R  %t  S  %u  T  %u'  U  %uA  V  %u[  W  %uu  X  %u  Y  %u  Z  %u  [  %u  \  %u  ]  %v  ^  %v+  _  %vE  `  %v_  a  %vy  b  %v  c  %v  d  %v  e  %v  f  %v  g  %w  h  %w/  i  %wI  j  %wc  k  %w}  l  %w  m  %w  n  %w  o  %w  p  %w  q  %x  r  %x3  s  %xM  t  %xg  u  %x  v  %x  w  %x  x  %x  y  %x  z  %y  {  %y  |  %y7  }  %yQ  ~  %yk    %y    %y    %y    %y    %y    %z    %z!    %z;    %zU    %zo    %z    %z    %z    %z    %z    %{    %{%    %{?    %{Y    %{s    %{    %{    %{    %{    %{    %|    %|)    %|C    %|]    %|w    %|    %|    %|    %|    %|    %}    %}-    %}G    %}a    %}{    %}    %}    %}    %}    %}    %~    %~1    %~K    %~e    %~    %~    %~    %~    %~    %    %    %5    %O    %i    %    %    %    %    %    %    %    %9    %S    %m    %    %    %    %    %    %	    %#    %=    %W    %q    %    %    %    %    %    %    %'    %A    %[    %u    %    %    %    %    %    %    %+    %E    %_    %y    %    %    %    %    %    %    %/    %I    %c    %}    %    %    %    %    %    %    %3    %M    %g    %    %    %    %    %    %    %    %7    %Q    %k    %     %    %    %    %    %    %!    %;    %U    %o  	  %  
  %    %    %    %    %    %%    %?    %Y    %s    %    %    %    %    %    %    %)    %C    %]    %w    %    %    %     %  !  %  "  %  #  %-  $  %G  %  %a  &  %{  '  %  (  %  )  %  *  %  +  %  ,  %  -  %1  .  %K  /  %e  0  %  1  %  2  %  3  %  4  %  5  %  6  %  7  %5  8  %O  9  %i  :  %  ;  %  <  %  =  %  >  %  ?  %  @  %  A  %9  B  %S  C  %m  D  %  E  %  F  %  G  %  H  %  I  %	  J  %#  K  %=  L  %W  M  %q  N  %  O  %  P  %  Q  %  R  %  S  %  T  %'  U  %A  V  %[  W  %u  X  %  Y  %  Z  %  [  %  \  %  ]  %  ^  %+  _  %E  `  %_  a  %y  b  %  c  %  d  %  e  %  f  %  g  %  h  %/  i  %I  j  %c  k  %}  l  %  m  %  n  %  o  %  p  %  q  %  r  %3  s  %M  t  %g  u  %  v  %  w  %  x  %  y  %  z  %  {  %  |  %7  }  %Q  ~  %k    %    %    %    %    %    %    %!    %;    %U    %o    %    %    %    %    %    %    %%    %?    %Y    %s    %    %    %    %    %    %    %)    %C    %]    %w    %    %    %    %    %    %    %-    %G    %a    %{    %    %    %    %    %    %    %1    %K    %e    %    %    %    %    %    %    %    %5    %O    %i    %    %    %    %    %    %    %    %9    %S    %m    %    %    %    %    %    %	    %#    %=    %W    %q    %    %    %    %    %    %    %'    %A    %[    %u    %    %    %    %    %    %    %+    %E    %_    %y    %    %    %    %    %    %    %/    %I    %c    %}    %    %    %    %    %    %    %3    %M    %g    %    %    %    %    %    %    %    %7    %Q    %k    %     %    %    %    %    %    %!    %;    %U    %o  	  %  
  %    %    %    %    %    %%    %?    %Y    %s    %    %    %    %    %    %    %)    %C    %]    %w    %    %    %     %  !  %  "  %  #  %-  $  %G  %  %a  &  %{  '  %  (  %  )  %  *  %  +  %  ,  %  -  %1  .  %K  /  %e  0  %  1  %  2  %  3  %  4  %  5  %  6  %  7  %5  8  %O  9  %i  :  %  ;  %  <  %  =  %  >  %  ?  %  @  %  A  %9  B  %S  C  %m  D  %  E  %  F  %  G  %  H  %  I  %	  J  %#  K  %=  L  %W  M  %q  N  %  O  %  P  %  Q  %  R  %  S  %  T  %'  U  %A  V  %[  W  %u  X  %  Y  %  Z  %  [  %  \  %  ]  %  ^  %+  _  %E  `  %_  a  %y  b  %  c  %  d  %  e  %  f  %  g  %  h  %/  i  %I  j  %c  k  %}  l  %  m  %  n  %  o  %  p  %  q  %  r  %3  s  %M  t  %g  u  %  v  %  w  %  x  %  y  %  z  %  {  %  |  %7  }  %Q  ~  %k    %    %    %    %    %    %    %!    %;    %U    %o    %    %    %    %    %    %    %%    %?    %Y    %s    %    %    %    %    %    %    %)    %C    %]    %w    %    %    %    %    %    %    %-    %G    %a    %{    %    %    %    %    %    %    %1    %K    %e    %    %    %    %    %    %    %    %5    %O    %i    %    %    %    %    %    %    %    %9    %S    %m    %    %    %    %    %    %	    %#    %=    %W    %q    %    %    %    %    %    %    %'    %A    %[    %u    %    %    %    %    %    %    %+    %E    %_    %y    %    %    %    %    %    %    %/    %I    %c    %}    %    %    %    %    %    %    %3    %M    %g    %    %    %    %    %    %    %    %7    %Q    %k    %     %    %    %    %    %    %!    %;    %U    %o  	  %  
  %    %    %    %    %    %%    %?    %Y    %s    %    %    %    %    %    %    %)    %C    %]    %w    %    %    %     %  !  %  "  %  #  %-  $  %G  %  %a  &  %{  '  %  (  %  )  %  *  %  +  %  ,  %  -  %1  .  %K  /  %e  0  %  1  %  2  %  3  %  4  %  5  %  6  %  7  %5  8  %O  9  %i  :  %  ;  %  <  %  =  %  >  %  ?  %  @  %  A  %9  B  %S  C  %m  D  %  E  %  F  %  G  %  H  %  I  %	  J  %#  K  %=  L  %W  M  %q  N  %  O  %¥  P  %¿  Q  %  R  %  S  %  T  %'  U  %A  V  %[  W  %u  X  %Ï  Y  %é  Z  %  [  %  \  %  ]  %  ^  %+  _  %E  `  %_  a  %y  b  %ē  c  %ĭ  d  %  e  %  f  %  g  %  h  %/  i  %I  j  %c  k  %}  l  %ŗ  m  %ű  n  %  o  %  p  %  q  %  r  %3  s  %M  t  %g  u  %Ɓ  v  %ƛ  w  %Ƶ  x  %  y  %  z  %  {  %  |  %7  }  %Q  ~  %k    %ǅ    %ǟ    %ǹ    %    %    %    %!    %;    %U    %o    %ȉ    %ȣ    %Ƚ    %    %    %    %%    %?    %Y    %s    %ɍ    %ɧ    %    %    %    %    %)    %C    %]    %w    %ʑ    %ʫ    %    %    %    %    %-    %G    %a    %{    %˕    %˯    %    %    %    %    %1    %K    %e    %    %̙    %̳    %    %    %    %    %5    %O    %i    %̓    %͝    %ͷ    %    %    %    %    %9    %S    %m    %·    %Ρ    %λ    %    %    %	    %#    %=    %W    %q    %ϋ    %ϥ    %Ͽ    %    %    %    %'    %A    %[    %u    %Џ    %Щ    %    %    %    %    %+    %E    %_    %y    %ѓ    %ѭ    %    %    %    %    %/    %I    %c    %}    %җ    %ұ    %    %    %    %    %3    %M    %g    %Ӂ    %ӛ    %ӵ    %    %    %    %    %7    %Q    %k    %ԅ     %ԟ    %Թ    %    %    %    %!    %;    %U    %o  	  %Չ  
  %գ    %ս    %    %    %    %%    %?    %Y    %s    %֍    %֧    %    %    %    %    %)    %C    %]    %w    %ב    %׫    %     %  !  %  "  %  #  %-  $  %G  %  %a  &  %{  '  %ؕ  (  %د  )  %  *  %  +  %  ,  %  -  %1  .  %K  /  %e  0  %  1  %ٙ  2  %ٳ  3  %  4  %  5  %  6  %  7  %5  8  %O  9  %i  :  %ڃ  ;  %ڝ  <  %ڷ  =  %  >  %  ?  %  @  %  A  %9  B  %S  C  %m  D  %ۇ  E  %ۡ  F  %ۻ  G  %  H  %  I  %	  J  %#  K  %=  L  %W  M  %q  N  %܋  O  %ܥ  P  %ܿ  Q  %  R  %  S  %  T  %'  U  %A  V  %[  W  %u  X  %ݏ  Y  %ݩ  Z  %  [  %  \  %  ]  %  ^  %+  _  %E  `  %_  a  %y  b  %ޓ  c  %ޭ  d  %  e  %  f  %  g  %  h  %/  i  %I  j  %c  k  %}  l  %ߗ  m  %߱  n  %  o  %  p  %  q  %  r  %3  s  %M  t  %g  u  %  v  %  w  %  x  %  y  %  z  %  {  %  |  %7  }  %Q  ~  %k    %    %    %    %    %    %    %!    %;    %U    %o    %    %    %    %    %    %    %%    %?    %Y    %s    %    %    %    %    %    %    %)    %C    %]    %w    %    %    %    %    %    %    %-    %G    %a    %{    %    %    %    %    %    %    %1    %K    %e    %    %    %    %    %    %    %    %5    %O    %i    %    %    %    %    %    %    %    %9    %S    %m    %    %    %    %    %    %	    %#    %=    %W    %q    %    %    %    %    %    %    %'    %A    %[    %u    %    %    %    %    %    %    %+    %E    %_    %y    %    %    %    %    %    %    %/    %I    %c    %}    %    %    %    %    %    %    %3    %M    %g    %    %    %    %    %    %    %    %7    %Q    %k    %     %    %    %    %    %    %!    %;    %U    %o  	  %  
  %    %    %    %    %    %%    %?    %Y    %s    %    %    %    %    %    %    %)    %C    %]    %w    %    %    %     %  !  %  "  %  #  %-  $  %G  %  %a  &  %{  '  %  (  %  )  %  *  %  +  %  ,  %  -  %1  .  %K  /  %e  0  %  1  %  2  %  3  %  4  %  5  %  6  %  7  %5  8  %O  9  %i  :  %  ;  %  <  %  =  %  >  %  ?  %  @  %  A  %9  B  %S  C  %m  D  %  E  %  F  %  G  %  H  %  I  %	  J  %#  K  %=  L  %W  M  %q  N  %  O  %  P  %  Q  %  R  %  S  %  T  %'  U  %A  V  %[  W  %u  X  %  Y  %  Z  %  [  %  \  %  ]  %  ^  %+  _  %E  `  %_  a  %y  b  %  c  %  d  %  e  %  f  %  g  %  h  %/  i  %I  j  %c  k  %}  l  %  m  %  n  %  o  %  p  %  q  %  r  %3  s  %M  t  %g  u  %  v  %  w  %  x  %  y  %  z  %  {  %  |  %7  }  %Q  ~  %k    %    %    %    %    %    %    %!    %;    %U    %o    %    %    %    %    %    %    %%    %?    %Y    %s    %    %    %    %    %    %    %)    %C    %]    %w    %    %    %    %    %    %    %-    %G    %a    %{    %    %    %    %    %    &     & 1    & K    & e    &     &     &     &     &     &    &    &5    &O    &i    &    &    &    &    &    &    &    &9    &S    &m    &    &    &    &    &    &	    &#    &=    &W    &q    &    &    &    &    &    &    &'    &A    &[    &u    &    &    &    &    &    &    &+    &E    &_    &y    &    &    &    &    &    &    &/    &I    &c    &}    &    &    &    &    &    &    &3    &M    &g    &    &    &    &    &    &    &    &7    &Q    &k    &     &    &    &    &    &	    &	!    &	;    &	U    &	o  	  &	  
  &	    &	    &	    &	    &
    &
%    &
?    &
Y    &
s    &
    &
    &
    &
    &
    &    &)    &C    &]    &w    &    &    &     &  !  &  "  &  #  &-  $  &G  %  &a  &  &{  '  &  (  &  )  &  *  &  +  &  ,  &  -  &1  .  &K  /  &e  0  &  1  &  2  &  3  &  4  &  5  &  6  &  7  &5  8  &O  9  &i  :  &  ;  &  <  &  =  &  >  &  ?  &  @  &  A  &9  B  &S  C  &m  D  &  E  &  F  &  G  &  H  &  I  &	  J  &#  K  &=  L  &W  M  &q  N  &  O  &  P  &  Q  &  R  &  S  &  T  &'  U  &A  V  &[  W  &u  X  &  Y  &  Z  &  [  &  \  &  ]  &  ^  &+  _  &E  `  &_  a  &y  b  &  c  &  d  &  e  &  f  &  g  &  h  &/  i  &I  j  &c  k  &}  l  &  m  &  n  &  o  &  p  &  q  &  r  &3  s  &M  t  &g  u  &  v  &  w  &  x  &  y  &  z  &  {  &  |  &7  }  &Q  ~  &k    &    &    &    &    &    &    &!    &;    &U    &o    &    &    &    &    &    &    &%    &?    &Y    &s    &    &    &    &    &    &    &)    &C    &]    &w    &    &    &    &    &    &    &-    &G    &a    &{    &    &    &    &    &    &    &1    &K    &e    &    &    &    &    &    &    &    &5    &O    &i    &    &    &    &    &    &    &    &9    &S    &m    &    &    &    &    &    &	    &#    &=    &W    &q    &    &    &    &    &    &    &'    &A    &[    &u    &    &    &    &    &    &    &+    &E    &_    &y    &    &    &    &    &    &     & /    & I    & c    & }    &     &     &     &     &     &!    &!3    &!M    &!g    &!    &!    &!    &!    &!    &"    &"    &"7    &"Q    &"k    &"     &"    &"    &"    &"    &#    &#!    &#;    &#U    &#o  	  &#  
  &#    &#    &#    &#    &$    &$%    &$?    &$Y    &$s    &$    &$    &$    &$    &$    &%    &%)    &%C    &%]    &%w    &%    &%    &%     &%  !  &%  "  &&  #  &&-  $  &&G  %  &&a  &  &&{  '  &&  (  &&  )  &&  *  &&  +  &&  ,  &'  -  &'1  .  &'K  /  &'e  0  &'  1  &'  2  &'  3  &'  4  &'  5  &(  6  &(  7  &(5  8  &(O  9  &(i  :  &(  ;  &(  <  &(  =  &(  >  &(  ?  &)  @  &)  A  &)9  B  &)S  C  &)m  D  &)  E  &)  F  &)  G  &)  H  &)  I  &*	  J  &*#  K  &*=  L  &*W  M  &*q  N  &*  O  &*  P  &*  Q  &*  R  &*  S  &+  T  &+'  U  &+A  V  &+[  W  &+u  X  &+  Y  &+  Z  &+  [  &+  \  &+  ]  &,  ^  &,+  _  &,E  `  &,_  a  &,y  b  &,  c  &,  d  &,  e  &,  f  &,  g  &-  h  &-/  i  &-I  j  &-c  k  &-}  l  &-  m  &-  n  &-  o  &-  p  &-  q  &.  r  &.3  s  &.M  t  &.g  u  &.  v  &.  w  &.  x  &.  y  &.  z  &/  {  &/  |  &/7  }  &/Q  ~  &/k    &/    &/    &/    &/    &/    &0    &0!    &0;    &0U    &0o    &0    &0    &0    &0    &0    &1    &1%    &1?    &1Y    &1s    &1    &1    &1    &1    &1    &2    &2)    &2C    &2]    &2w    &2    &2    &2    &2    &2    &3    &3-    &3G    &3a    &3{    &3    &3    &3    &3    &3    &4    &41    &4K    &4e    &4    &4    &4    &4    &4    &5    &5    &55    &5O    &5i    &5    &5    &5    &5    &5    &6    &6    &69    &6S    &6m    &6    &6    &6    &6    &6    &7	    &7#    &7=    &7W    &7q    &7    &7    &7    &7    &7    &8    &8'    &8A    &8[    &8u    &8    &8    &8    &8    &8    &9    &9+    &9E    &9_    &9y    &9    &9    &9    &9    &9    &:    &:/    &:I    &:c    &:}    &:    &:    &:    &:    &:    &;    &;3    &;M    &;g    &;    &;    &;    &;    &;    &<    &<    &<7    &<Q    &<k    &<     &<    &<    &<    &<    &=    &=!    &=;    &=U    &=o  	  &=  
  &=    &=    &=    &=    &>    &>%    &>?    &>Y    &>s    &>    &>    &>    &>    &>    &?    &?)    &?C    &?]    &?w    &?    &?    &?     &?  !  &?  "  &@  #  &@-  $  &@G  %  &@a  &  &@{  '  &@  (  &@  )  &@  *  &@  +  &@  ,  &A  -  &A1  .  &AK  /  &Ae  0  &A  1  &A  2  &A  3  &A  4  &A  5  &B  6  &B  7  &B5  8  &BO  9  &Bi  :  &B  ;  &B  <  &B  =  &B  >  &B  ?  &C  @  &C  A  &C9  B  &CS  C  &Cm  D  &C  E  &C  F  &C  G  &C  H  &C  I  &D	  J  &D#  K  &D=  L  &DW  M  &Dq  N  &D  O  &D  P  &D  Q  &D  R  &D  S  &E  T  &E'  U  &EA  V  &E[  W  &Eu  X  &E  Y  &E  Z  &E  [  &E  \  &E  ]  &F  ^  &F+  _  &FE  `  &F_  a  &Fy  b  &F  c  &F  d  &F  e  &F  f  &F  g  &G  h  &G/  i  &GI  j  &Gc  k  &G}  l  &G  m  &G  n  &G  o  &G  p  &G  q  &H  r  &H3  s  &HM  t  &Hg  u  &H  v  &H  w  &H  x  &H  y  &H  z  &I  {  &I  |  &I7  }  &IQ  ~  &Ik    &I    &I    &I    &I    &I    &J    &J!    &J;    &JU    &Jo    &J    &J    &J    &J    &J    &K    &K%    &K?    &KY    &Ks    &K    &K    &K    &K    &K    &L    &L)    &LC    &L]    &Lw    &L    &L    &L    &L    &L    &M    &M-    &MG    &Ma    &M{    &M    &M    &M    &M    &M    &N    &N1    &NK    &Ne    &N    &N    &N    &N    &N    &O    &O    &O5    &OO    &Oi    &O    &O    &O    &O    &O    &P    &P    &P9    &PS    &Pm    &P    &P    &P    &P    &P    &Q	    &Q#    &Q=    &QW    &Qq    &Q    &Q    &Q    &Q    &Q    &R    &R'    &RA    &R[    &Ru    &R    &R    &R    &R    &R    &S    &S+    &SE    &S_    &Sy    &S    &S    &S    &S    &S    &T    &T/    &TI    &Tc    &T}    &T    &T    &T    &T    &T    &U    &U3    &UM    &Ug    &U    &U    &U    &U    &U    &V    &V    &V7    &VQ    &Vk    &V     &V    &V    &V    &W    &W<    &Wd    &W    &W    &W  	  &W  
  &X&    &XM    &Xs    &X    &X    &X    &Y    &Y:    &Yb    &Y    &Y    &Y    &Y    &Z'    &ZO    &Zw    &Z    &Z    &Z    &[    &[?    &[g     &[  !  &[  "  &[  #  &\  $  &\.  %  &\V  &  &\~  '  &\  (  &\  )  &\  *  &]  +  &]E  ,  &]m  -  &]  .  &]  /  &]  0  &^  1  &^5  2  &^]  3  &^  4  &^  5  &^  6  &^  7  &_$  8  &_L  9  &_t  :  &_  ;  &_  <  &_  =  &`  >  &`<  ?  &`d  @  &`  A  &`  B  &`  C  &a  D  &a+  E  &aS  F  &a{  G  &a  H  &a  I  &a  J  &b  K  &bA  L  &bi  M  &b  N  &b  O  &b  P  &c	  Q  &c1  R  &cX  S  &c~  T  &c  U  &c  V  &c  W  &d  X  &dF  Y  &dn  Z  &d  [  &d  \  &d  ]  &e  ^  &e8  _  &e_  `  &e  a  &e  b  &e  c  &e  d  &f%  e  &fM  f  &fu  g  &f  h  &f  i  &f  j  &g  k  &g:  l  &gb  m  &g  n  &g  o  &g  p  &h   q  &h(  r  &hO  s  &hw  t  &h  u  &h  v  &h  w  &i  x  &i?  y  &if  z  &i  {  &i  |  &i  }  &j  ~  &j.    &jV    &j~    &j    &j    &j    &k    &kC    &kj    &k    &k    &k    &l    &l,    &lS    &lz    &l    &l    &l    &m    &mB    &mj    &m    &m    &m    &n
    &n2    &nZ    &n    &n    &n    &n    &o     &oG    &oo    &o    &o    &o    &p    &p6    &p^    &p    &p    &p    &p    &q#    &qK    &qs    &q    &q    &q    &r    &r;    &rb    &r    &r    &r    &s    &s*    &sR    &sy    &s    &s    &s    &t    &t;    &tc    &t    &t    &t    &u    &u+    &uS    &uz    &u    &u    &u    &v    &vB    &vj    &v    &v    &v    &w    &w/    &wW    &w    &w    &w    &w    &x    &xG    &xo    &x    &x    &x    &y    &y6    &y^    &y    &y    &y    &y    &z     &zH    &zo    &z    &z    &z    &{    &{3    &{[    &{    &{    &{    &{    &|#    &|K    &|s    &|    &|    &|    &}    &}9    &}a    &}    &}    &}    &~    &~)     &~O    &~u    &~    &~    &~    &    &<    &d    &  	  &  
  &    &    &,    &Q    &v    &    &    &    &    &:    &b    &    &    &    &    &"    &I    &p    &    &    &    &
     &2  !  &Z  "  &  #  &  $  &  %  &  &  &  '  &C  (  &k  )  &  *  &  +  &  ,  &  -  &.  .  &U  /  &j  0  &  1  &  2  &  3  &  4  &  5  &B  6  &g  7  &  8  &  9  &  :  &  ;  &$  <  &I  =  &l  >  &  ?  &  @  &  A  &  B  &/  C  &V  D  &{  E  &  F  &  G  &  H  &  I  &:  J  &O  K  &v  L  &  M  &  N  &  O  &  P  &9  Q  &`  R  &  S  &  T  &  U  &  V  &!  W  &F  X  &m  Y  &  Z  &  [  &  \  &  ]  &*  ^  &=  _  &P  `  &u  a  &  b  &  c  &  d  &  e  &6  f  &]  g  &  h  &  i  &  j  &  k  &  l  &1  m  &F  n  &[  o  &p  p  &  q  &  r  &  s  &  t  &   u  &H  v  &p  w  &  x  &  y  &  z  &  {  &%  |  &H  }  &p  ~  &    &    &    &    &7    &_    &    &    &    &    &'    &O    &w    &    &    &    &    &?    &g    &    &    &    &    &)    &P    &x    &    &    &    &    &@    &h    &    &    &    &    &+    &O    &v    &    &    &    &    &;    &`    &    &    &    &     &(    &P    &x    &    &    &    &    &?    &g    &    &    &    &    &-    &U    &}    &    &    &    &    &D    &l    &    &    &    &
    &2    &Z    &    &    &    &    &!    &I    &q    &    &    &    &    &4    &\    &    &    &    &    &    &    &'    &<    &Q    &f    &{    &    &    &    &    &    &    &    &#    &8    &M    &b    &w    &    &    &    &    &    &    &
    &    &4    &I    &^    &s    &    &    &    &    &     &    &    &    &+    &>    &Q    &d    &w    &  	  &  
  &    &    &    &    &
    &    &4    &I    &^    &s    &    &    &    &    &    &    &    &    &-    &B    &O    &a     &q  !  &  "  &  #  &  $  &  %  &  &  &  '  &  (  &-  )  &E  *  &T  +  &h  ,  &|  -  &  .  &  /  &  0  &  1  &  2  &  3  &  4  &  5  &#  6  &1  7  &A  8  &V  9  &g  :  &s  ;  &  <  &  =  &  >  &  ?  &  @  &  A  &  B  &  C  &  D  &,  E  &=  F  &R  G  &c  H  &v  I  &  J  &  K  &  L  &  M  &  N  &  O  &  P  &  Q  &  R  &,  S  &<  T  &M  U  &]  V  &o  W  &  X  &  Y  &  Z  &  [  &  \  &  ]  &  ^  &  _  &  `  &  a  &)  b  &<  c  &M  d  &_  e  &p  f  &  g  &  h  &  i  &  j  &  k  &  l  &  m  &  n  &  o  &'  p  &:  q  &L  r  &`  s  &p  t  &  u  &  v  &  w  &  x  &  y  &  z  &  {  &  |  &  }  &  ~  &"    &2    &C    &S    &d    &t    &    &    &    &    &    &    &    &    &    &)    &>    &O    &a    &r    &    &    &    &    &    &    &    &    &0    &C    &W    &j    &~    &    &    &    &    &    &    &    &    &    &%    &4    &E    &T    &d    &s    &    &    &    &    &    &    &    &    &    &0    &E    &Z    &o    &    &    &    &    &    &    &    &    &,    &A    &V    &k    &    &    &    &    &    &    &    &    &(    &=    &R    &g    &|    &    &    &    &    &    &    &    &"    &5    &J    &b    &v    &    &    &    &    &    &    &    &    &    &&    &4    &C    &T    &e    &w    &    &    &    &    &    &    &    &%    &9    &P    &f    &z    &    &    &    &    &     &    &    &    &"    &5    &I    &_    &q    &  	  &  
  &    &    &    &    &    &    &     &4    &J    &`    &s    &    &    &    &    &    &    &    &    &.    &A    &V     &o  !  &  "  &  #  &  $  &  %  &  &  &  '  &  (  &&  )  &<  *  &P  +  &e  ,  &|  -  &  .  &  /  &  0  &  1  &  2  &   3  &  4  &)  5  &:  6  &M  7  &b  8  &s  9  &  :  &  ;  &  <  &  =  &  >  &  ?  &  @  &  A  &5  B  &L  C  &_  D  &r  E  &  F  &  G  &  H  &  I  &  J  &  K  &  L  &  M  &  N  &+  O  &A  P  &T  Q  &h  R  &|  S  &  T  &  U  &  V  &  W  &  X  &  Y  &  Z  &  [  &&  \  &9  ]  &L  ^  &^  _  &n  `  &~  a  &  b  &  c  &  d  &  e  &  f  &  g  &  h  &  i  &&  j  &;  k  &N  l  &a  m  &t  n  &  o  &  p  &  q  &  r  &  s  &  t  &  u  &  v  &   w  &7  x  &N  y  &d  z  &y  {  &  |  &  }  &  ~  &    &    &    &     &    &)    &?    &W    &j    &}    &    &    &    &    &    &    &    &    &/    &A    &T    &h    &{    &    &    &    &    &    &    &    &    &)    &9    &J    &[    &l    &    &    &    &    &    &    &    &    &    &$    &9    &K    &c    &z    &    &¢    &¾    &    &    &    &-    &K    &a    &t    &Ç    &Ú    &ê    &ÿ    &    &    &    &    &    &5    &G    &\    &p    &Ą    &ė    &Ī    &Ľ    &    &    &    &    &    &'    &8    &H    &[    &l    &}    &Ŏ    &š    &Ŷ    &    &    &    &    &    &&    &8    &K    &a    &q    &Ƃ    &ƒ    &Ʀ    &Ƹ    &    &    &    &    &4    &H    &^    &s    &Ǆ    &Ǚ    &ǩ    &Ǻ    &    &    &    &
    &    &/    &@    &Q    &d    &{    &ȕ    &ȴ    &     &    &    &    &$    &7    &K    &^    &s    &ɇ  	  &ɝ  
  &ɴ    &    &    &    &    &"    &7    &M    &`    &u    &ʆ    &ʘ    &ʪ    &ʾ    &    &    &    &/    &B    &W    &j    &     &˓  !  &˩  "  &˼  #  &  $  &  %  &  &  &  '  &(  (  &>  )  &T  *  &h  +  &x  ,  &̊  -  &̜  .  &̻  /  &  0  &  1  &  2  &)  3  &H  4  &[  5  &q  6  &̓  7  &͗  8  &ͳ  9  &  :  &  ;  &  <  &	  =  &  >  &+  ?  &P  @  &u  A  &Ί  B  &Ο  C  &δ  D  &  E  &  F  &  G  &  H  &  I  &2  J  &G  K  &\  L  &q  M  &φ  N  &ϛ  O  &ϰ  P  &  Q  &  R  &  S  &  T  &"  U  &9  V  &Q  W  &g  X  &~  Y  &Л  Z  &а  [  &  \  &  ]  &  ^  &  _  &,  `  &J  a  &`  b  &v  c  &я  d  &ѣ  e  &  f  &  g  &  h  &  i  &'  j  &K  k  &n  l  &҉  m  &Ҩ  n  &  o  &  p  &  q  &  r  &9  s  &R  t  &k  u  &Ӎ  v  &Ӧ  w  &Ӿ  x  &  y  &  z  &  {  &*  |  &H  }  &e  ~  &|    &ԝ    &Ժ    &    &    &    &'    &H    &e    &}    &՜    &ճ    &    &    &    &    &%    &:    &O    &d    &y    &֎    &֧    &    &    &    &    &&    &B    &a    &|    &ד    &ק    &    &    &    &'    &E    &d    &    &؝    &ط    &    &    &    &5    &W    &x    &ٙ    &ٶ    &    &    &	    &*    &J    &b    &y    &ڗ    &ڹ    &    &    &    &%    &B    &`    &~    &ۜ    &ۺ    &    &    &    &)    &?    &a    &܁    &ܖ    &ܫ    &    &    &    &    &    &)    &G    &a    &    &ݝ    &ݿ    &    &    &    &7    &X    &ނ    &ާ    &    &    &     &    &@    &j    &ߔ    &߾    &    &    &<    &f  	  &  
  &    &    &    &8    &b    &    &    &    &    &    &    &    &    &    &%    &:    &G    &\    &q    &    &    &     &  !  &  "  &  #  &  $  &  %  &  &  &  '  &  (  &/  )  &D  *  &Y  +  &n  ,  &  -  &  .  &  /  &  0  &  1  &  2  &  3  &  4  &  5  &  6  &'  7  &8  8  &H  9  &X  :  &h  ;  &x  <  &  =  &  >  &  ?  &  @  &  A  &  B  &  C  &  D  &/  E  &F  F  &R  G  &_  H  &r  I  &  J  &  K  &  L  &  M  &  N  &  O  &  P  &  Q  &  R  &  S  &  T  &#  U  &0  V  &<  W  &I  X  &T  Y  &_  Z  &k  [  &w  \  &  ]  &  ^  &  _  &  `  &  a  &  b  &  c  &  d  &  e  &  f  &  g  &  h  &$  i  &0  j  &>  k  &K  l  &X  m  &m  n  &  o  &  p  &  q  &  r  &  s  &  t  &  u  &  v  &  w  &  x  &$  y  &3  z  &F  {  &Q  |  &a  }  &n  ~  &    &    &    &    &    &    &    &    &	    &    &.    &C    &V    &i    &y    &    &    &    &    &    &    &    &    &    &    &(    &8    &I    &Z    &l    &}    &    &    &    &    &    &    &    &    &
    &    &1    &@    &P    &^    &m    &}    &    &    &    &    &    &    &    &    &    &'    &;    &L    &^    &n    &~    &    &    &    &    &    &    &    &    &    &     &0    &A    &R    &d    &u    &    &    &    &    &    &    &    &    &    &    &.    &@    &S    &c    &u    &    &    &    &    &    &    &    &    &    &!    &/    &=    &N    &`    &p    &    &    &    &    &    &    &    &    &    &    &    &-    &=    &P    &d    &v    &    &    &    &    &    &    &     &(    &=    &L    &Z    &v    &    &    &    &  	  &  
  &    &    &3    &>    &J    &U    &u    &    &    &    &    &    &    &(    &A    &\    &u    &    &    &    &    &     &  !  &  "  &'  #  &B  $  &^  %  &y  &  &  '  &  (  &  )  &  *  &  +  &  ,  &8  -  &S  .  &s  /  &  0  &  1  &  2  &  3  &	  4  &$  5  &@  6  &^  7  &|  8  &  9  &  :  &  ;  &  <  &  =  &$  >  &8  ?  &D  @  &P  A  &\  B  &q  C  &  D  &  E  &  F  &  G  &  H  &  I  &  J  &  K  &-  L  &F  M  &U  N  &l  O  &  P  &  Q  &  R  &  S  &  T  &  U  &  V  &  W  &"  X  &:  Y  &O  Z  &f  [  &y  \  &  ]  &  ^  &  _  &  `  &  a  &  b  &  c  &  d  &%  e  &1  f  &<  g  &O  h  &a  i  &t  j  &  k  &  l  &  m  &  n  &  o  &  p  &  q  &  r  &  s  &'  t  &=  u  &Q  v  &j  w  &  x  &  y  &  z  &  {  &  |  &  }  &
  ~  &!    &7    &K    &a    &y    &    &    &    &    &    &    &    &$    &9    &M    &`    &t    &    &    &    &    &    &    &    &    &2    &F    &Y    &p    &    &    &    &    &    &    &    &    &    &    &    &'    &5    &C    &Q    &^    &l    &{    &    &    &    &    &    &    &    &    '      '     '     ' ,    ' :    ' I    ' W    ' e    ' s    '     '     '     '     '     '     '     '     '     '    '    '.    'C    'O    ']    'k    'y    '    '    '    '    '    '    '    '    '    '    '+    '@    'K    'W    'b    'w    '    '    '    '    '    '    '    '    '?    'T    '`    'n    '|    '    '    '    '    '    '    '    '
    '    '4    'I    '^    's    '    '    '    '    '0@ &  'C@ (  'S@ *  'c@ +  's@ ,  '@ -  '@ .  '@ 3  '@ 4  '@ 5  '@ 6  '@ 7  '@ 8  '@ 9  '@ :  '@ A  ',@ B  '<@ C  'L@ D  ']@ E  'm@ F  '{@ G  '@ J  '@ y  '@ z  '@ {  '@ ~  '@   '@   '@   '@   '@   '+@   ';@   'K@   ']@   'o@   '@   '@   '@   '@   '@   '@   '@   ' @   ' "  ' #  '3 $  'G %  '] &  'r '  ' (  ' )  ' *  ' +  'ǀ ,  'ـ -  ' .  ' /  '	 0  '	 1  '	/ 2  '	@ 3  '	S 4  '	d 5  '	x 6  '	 7  '	 8  '	 9  '	 :  '	̀ A  '	 B  '	 C  '
 D  '
 E  '
* F  '
: G  '
L H  '
\ J  '
m q  '
} y  '
 z  '
 {  '
 ~  '
ǀ   '
؀   '
   '
   '   '   '.   '?   'R   'c   't   '   '   '   'À   'ր   '   '   '   '$   '<   'Q   'a   't   '   '   '   '   'Ԁ   '   '   '   '   '. &  'A (  'S *  'd +  'u ,  ' -  ' .  ' 3  ' 4  ' 5  ' 6  ' 7  ' 8  ' 9  ' :  '# A  '4 B  'F C  'X D  'j E  '| F  ' G  ' J  ' y  ' z  ' {  ' ~  '   '   '   '*   '9   'J   '[   'l   '   '   '   '   '   '   '   '   '   '.   '>DATA         JQPZQɞ      UU         9R2_Rq     UU         ;$1$q%     UU         {$y$y%     UU         yHzIHy     UU         zMR{SzO     UU         1(z1(I     UU         sss߀     UU         x x y     UU         E@|A@DA     UU         A A }     UU         E@DA@A     UU         } } A     UU         =A =     UU         <9x     UU         =@8A@y     UU         r9 J9 s     UU         qJ	q     UU         qJ	q     UU         qJq     UU         qJq     UU         ITjYJS     UU         4S1q     UU         {$y9$y9     UU         3%ĴGĤ4     UU         }}Q}     UU         :]R2]Rq     UU         yyP{     UU         y y@C     UU         9 Y@;     UU         q q@K     UU         I I@3     UU        
         c  
    $I/@  
    L|   
    c*SA)S  
    8#b         )I$    I)@     %QRD       G                  
       
    1(aaH  
    #(B'  
    zA   
    zA8a  
    b/   
     A  
    9 a  
    B!@  
    zaza  
    za|A	     <  	  5  	              	       
    zAA @  
    9kg@  
    1$a  
    aa  
    z`!  
    (aa  
        
         
    z`xa  
    aa  
    B'  
    > @D  
    )(
$  
        
    a  
    iYc  
    zaa  
    a      y
(PZ  
    aH  
    z```a  
     @   
    aa  
    
$H   
    a  
    0Ē  
    "   
    B     I$p  
     A    I$    	 1(@        
       z_      .a      z ^      ]a7@      z^      O!    آ      .a@      ! !>    @0!C&   
    
$  
    aB'      &L2d      aa      za^  
  an   
  v8a      `       z^  
    !>B       a      RI#      &L2d      1(a  
  a3A      !?    r%"R0        ĤJD     c&0         sKs߀     UU         qRsRB]     UU         IRz]PI     UU         sRsr     UU         KR[RK     UU         t%t     UU         K[K߀     UU         91Rs     UU         yyR{     UU         K yI9     UU         Ky	I1     UU         EĐD     UU         rrC݀     UU         rrC̀     UU         ! ! 	!     UU         91Ps     UU         91Bs     UU         qJq݀     UU         rELrEDA     UU         r]BrMPA     UU         ; 1q9     UU         9B9Ӏ     UU         EUQŰE     UU         ;R3r     UU         {R{z     UU         9P2MBq     UU         3"%c     UU         92	q݀     UU         9AH;     UU          ! !     UU         1IP3     UU         r!`r B!     UU         3P{J     UU        
      
    !$   
    @}     'I  
    ?   
      
    z       
     <BB<     p_  	    $$$      A       
     <BB<         
 V  	    G      tBC     tB    
 *     c    }EQG         8     .H     tc  	    D%$  
    GP՞  
    GPQp  
    ĔВ՞  
    @a      `` 1$a       1$a      1  1$a      f` 1$a      I  1$a      1# 1$a  
    >D$H<    z`!      ``                  1          I          `!B|      6 !B|      d!B|      !B|  
     x
(PD      f` iYc      `` zaa       zaa      1  zaa      f` zaa      I  zaa     #    أZi      `` aa       aa      1  aa      I  aa       0Q"( @       "   
    r(a      `` z_       z_      1  z_      f` z_      I  z_      1# A~ct      }$K$  
  z ^      `` z^       z^      1  z^      I  z^      !	      6 !	      d!	      !	      dba^      f` aa      `` za^       za^      1  za^      f` za^      I  za^     0 ?    
  喚qz       `` a       a      1  a      I  a     a3A    =T!     I  a3A      x I(aa      x 7@      1$a      A~ct    0$(_B 0  
  yP:       z`!       z ^      1  z`!      1  z ^        z`!        z ^      H z`!      H z ^       (aa      Hca  
     x
(PD      <'QB
3      x ?>       x               z^                  z^        
  z^ `      H         H z^      1  z`xa    1 v(q      z`xa    آ        z`xa     v(q    z`xa    v(q      1  aa      b@ a  
     BBBB~BBBB      APB      f` |AA      f` 0AA      !O       !>      |AA      0AA    B'0    ! !>A      ! !B|      aB  
    aA    @1Z      H $H             B"$D      @E$D       )8H      3          6 !B|          aB'ɀ      H          !B|  
     (   
    aB'  
     @" @  
    a
fP'       iYc       aa     BŊ)RF   
   \
(P!      H iYc      H aa       aa  
    aa`  
  aa`      x aax      x a      zaa      za^      g B
(O       g B
  
    o"D$H      m&L$       aH       `      |
"B   
   \
 !      H aH      H `        z```a       z^      1  z```a      1  z^    z```a  
  z^      H z```a      H z^     @ C     !>B       H`  @       I!B  
     @   
    !>B       f` aa      f` a      x !aax      x !a7@      aa      act      1# aa      1# a      g PB
(O       g PB
3    aa  
  
(P:      1  a      0 2dɓ&K`      0 0Q"( @     1  a3A      H 0Q"( @        B        !?        B         !?      H B       H !?      4DDD@       A(PBp  
     }FH"x  
     a  
    .a  
    yQE      y^  
    zAa      H @#  
    H @  
     x
(PD  
     yJ$H$p  
    A~a  
    ]a  
  za#	  
    A|A  
    1(AaH  
    z`r!    >@ C     O!	      $H.D1  
    RHH       YeX  
    B   
    O'  
    Z(
$      b"((@  
    aO'  
    IBĒ  
    &L2dɒ     "DɒI"G   
  aa  
    zaa      آ('   	    آ(p    nYeYeA  
  nYeYY  
    }F @    s$H"d   
    $O$D  
    zA!      zFb^  
    B    E(!0    !>B `  
    "@       O!     @ 0      4H"D#  
    4H"D  
    $aH  
    ab  
    cDA    $H  
    x       !!?  
    !8A  
    r   
  r   
  |!  
    zB   
    xA      ^  
    !>B!  
  aJ0             m      !O!  
          
 hѥJJ      

hҥRp      
HhҥRp  
    0`ɓ    80`!     a #!!!!!!  
    &N6l͛(    &F:lٳ&I!    =2dɓ&I!      H 1$a      H z_       !B|       !	      H zaa      H za^      H aa      H a      xaa      xact      aa      Haa      Haa      HHaa      ``aa      ``Haa      zA^      x1$a      xA~ct      x 1$a      xA~ct      x $"D      x "_ȑ%  
    y
O    $H<	      H z`xa    Hv(q      H )(
$       
$    zaa  
  za^ `    x aax    x a      H !8A    H |!8A    $`     
    FTT  
    B4T       @z4iRQ       z`xa    v(q  
    I%Ye     aJ0       ``!iX      ``.a@      0Ēa      H      ` $H"D      ` D"K    v(喚qF     z9e^       D !B
(@       D @B      z@1$a      z@z_       D  |       D P@	      z@        z@z^       D  @       D !      z@|AA      z@0AA       D PB
'       D PB	      z@zaa      z@za^       D P|$(@       D P@       z@aH      z@`        D (PB
'       D (PB      z@aa      z@a    z```a  
  z^     @ @    !>B    
    zAA      zFd      H!a      H a  
  aa    СB   
    (aIa      LdF.    B B  
  !?       Ja  
    a        
  z^      xzaa      xza^      xfaa      xfaax      a^  
    a      x zaa      x za^      |H @    xaS4^    b"""3H  
  (P      ,q  
  B!         BdɓuP  
   UvL2n        4d_B     yT0b      U
0B   
    AA      0D  
  y
<  
  !0 p  
    zAA@      zAA  
    yQyQE  
     D$_"Dp  
    0I$    /䒏?   
   yW!}   
    > @D     $     q$H"D 0  
  i2$H&4  
    yQDE      YxA  
       
  DDp      a^      v8a9Y      an      r.a      zA^  	  z j^    #I"D10      #I"D1      z^      zA^      s O"8      z^      z^^      s#"8      zn^  
   C    dH&4	  
  v8a7A      z _  
  RHH      0Č    a@      r.a@      r.a      ! !>      I#      B  
    0Ava  
    0A    DDDD0    `@E#H`      &L2d  
  &L2d  	  &L2d  	  ,d$H  	  $H"D      i8a      z^      o"D$7      }2d    !2dɒ@      A  
    Aa  	   @&4  
  `    	  ` `      z`       zAA      ~a      b~  
  z~    B!	    B!	  	  B    AA  
    B!              DH      (a      a)      0ĒJa      m&L2d  
  z,a      A  
   A|  	   	   
  |!8A  
  |!8Y  
    zAA@  
    z`@   
    A a  
  z        zm^      ~~      z]^      w	"<      c1      '`  
  ERQ       ?    dH"Lh   
    zAA@  
    z`@>        @4Ta     @4VE     @4XU@  
    @	!Bx    'ĉ$HC     @
*Zx     a"4hѣD  
    '  
     )(      &L ɓ%  
    a   
  Re@  
  ȑ"D     -     tal      `     a      C6     $ƀ          j     ^      *      %)      k               ,     4C     zA8      z pA      HB     !$     Q          i              	      <                         <               ,     4C     !O     B      !>B          	     
     	 i`        
 f`    
 g            #          %     |           |        B!B      ~!B      B!B      B!B      B!~      !|                	      b        "    *"        i`    	     	 "@    	 %)     f`     <     @           p      $             !     
     
 *     
 1(@    
 f`               
     
     
 0     i     	 i    
 %)     
 #     
     
     
 "@    	 2^    
 z@    
 l    
     
     
         *     <         
 @     T    q    K         !>B                       0    i        F                  %    #     1(@        z@    f`                        f`                c      0@                 m$@    
     	 i     
      
     
 *     
 l    
     	 !+    0                     	 ۈ      n     	 f`    E    ]      UU   9B*9ŀ A ! A    
 E@    
 r0    
 zL    `    *          J*Q    
              ukP    	 ">"                       
 c8    
 }        	 |c6    	 t}    	 C.    	 tc     	 c    	 xp    	     	      	 &H    	     	 OD0    	 T@    
 i  
    !       B   
     &L   
    kR!      6H    6H  
    8喚q       2eJr    ZZZP    ZZZP          zA^      z,^      zM4^        ZZZP    ZZZP    ZZZP    ZZZP    ZZZP         	 !	       1$a     ]                 aa       |AA    ZZZP       zaa    ZZZP       0Q"( @      `
";      !	!B  
    1$a  
    aa  
         
     DHA  
        
    B   
    aa  
    zaa  
    B'  
    )(
$  
     DHA  
    a  
    iYc  
      x    
    zaa  
    $H"D  
    a      ZZZP  
    B  
     @   
    "   
    !2d  
    0Ē  
    &L/   
    }0Q)      !B|      H 0Q"( @         b(d         z |      aa@      $F       "aa      fX)Y    r(a       c$PA  
    91(a      z^    DB  
  aa  
    1$RH      I#      RQ  
    AĒ  
  a;a       bJ0     x^      za^      $I$  
  zan   
  =       "$H"8             a^  
  M&L2d   
  0Ē  
  &L2d       E2d       DDDC      I  a^        aax        aax       @ &L    )(
$  
    9b(a  
    H!"Dp  
    m$@p       i" @      li" @    !2dɒ@      2d  
  C
0    zaa  
  za^0  
    r(       ~8  
     H    	  aB  
    A@     ">"   
    9%9IF`  	  e!     IIIIII7>@  	  &L-  
    fXaA      lc!  
    eA  	    iDY  
    zAa      zR1  
     å$$$BB~      J1(      .a  	    .ax  
    8!Bp  	     K0      Ē!#  	  za  
    x    @!C   
    1(aaH      :!A      \    aq     .a  
    z`!  
    a    eJ"E     YQEVC   
    zAa  
    z`!  
    zA4a      ``?>       I      
    @H"X            
    9  D  
    z```a  
    B'      !B|  
        
     xHHHNIIII  
    "Ddɓ8  
    @H"D       9(
$      ``!9eq      	0Q"(P@   
    0   
    1$  
     a  
    aa  
            """BB  
        
    %R*$  
    zAx A  
    8喚q      H!9eq  
    9(
$  
    <I$QF  
    a  
    aa  
    zaa  
    aa  
    a    
    z`!  
     @   
    "       L2d @  
    0Ē    
(PB  
    aA  
    &L2dɓ       
    @H"x  
    aYe  
     a  
    r A|A  
    ii`  
    ~a|Q      z_       a^      ~~          	  <I(P      z^      %QÊ      z^^      9eq      H 9eq      J0H      <I%a      <a      a      za^      aa  
  a        z ^       @  
  0C   
  !2d       1(a  
  
(P      aA      &L2d  
         @$H      yYy      >~      r _      yf      ~a|a      `` z^      I  z^    AAQE               9>N      z^      ! !>      !>    @0!C&        xHHNIII      "G2d  
    AAfQE       J0H      `` 9eq    RH!   
  c!   
    m2dɒ      E2d  
    !H"x  
    AAQE  
    &(P      &$  
     DMI$      P&d  
    "J]I$      R.d  
    |AI$      |d  
    FիT      FWIj    Hǡ^     H  
    &L/     &L/  
    zaa      z^  
    $E
 @      IQB      D q"DPA       D $(P     AB͛5kT@  
  SfZ*$     L0`%  
  L0`|       y`&L-      yP`ɓ&K`        `&L-        P`ɓ&K`    z` x   
  z`      $2"&     
      	 S     
     
      
 0L      


         )(
      !1    8     l     H`(ѥJK(`     H` ѥJK0A   
    CAQM      CE  
    b    
  a\           
        
    >@ @      >@     a  	   a    %R*$  
  %QÊ    zAx A  
  z^^    9(
$A  
  J0H  
    O*T      R!A  
    A"$D      GC	!  
     #$(00($"!       $(0($"!    
/СB  
  
PC  
    $O"D      'ȑ"D    "Dɓ$`  
  "Dd    9&iX  	  9	    z`!  
  z`^ `     @0 @  
   @  
    "   
  b!   
    ">       b    	"C$  
  	!	!C     """"""""?  
   """"""?    
(Q  
  
(΁  
    aI$      iA  
    .a      a  
    i|	$`      _ F    i|	$a  
  _ F0  
    B'      	2U*8qR2@      D d8qT     9(aF  
  J0a`    <H"D"E@  
  <H"HC    aaF  
  a`    
/СB@  
  
PC    a7A0  
  aC     6kVB@  
  5PC  
    $\      1$a      A~ct      I  1$a      I  z_  
    >D$H<      }$K$              z^  
    1(AaH      zA^      I  1(AaH      I  zA^      H 	2U*8qR2@      H 	2U8L      I  zAx A      I  z^^  
    !8A  
  |!8A      x !9eq      x #Yi@      I  8喚q      I  9eq      I  zaa      I  za^  
    zaa      z^      I  zaa      I  z^      H^  
    HA      | (( A     x !$0      H 0Q"(P@     I  0C       g 0Q"(P@     g P$0`       I  a7A      I  aA        
   8`      I  aYe      I  yYy      0  
  !BF     0ĒB  
  1(a   
    3      (a      _a7@      Av8a7@      #ȑ"ŋ5       F"D5  
    q CB
      q CB    q C  
  q C  
     <$$$$%%EE       <$$$$EE  
    $Obŋ      'ȑb  
    z`xa      z ^  
     @D8       @"D  
    z y       zB^    <I$QFF  
  <I%a`  
     QJJDDJJQ       QJDDJQ  
     ᒔ  
   ┘⁀  
     (HH       ~((IF    y
(PZ  
  v8a  
    a      &L2d  
    )h
$      JH     pPPP^QQ  
   pPP^QQ       
       ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  
    $H"G  
    z`    
    q$H  
    q @  
    !    9QD#@    > @    z` @  
    q$$@   
     G"D  
            @  
    2c@   
    ġaH  
    a_  
    !000  
    9QD䬑    q @  
    #Ja  
    $H"D  
    9aAD    "Dp       a  
    zaa  
    9QD#  
    }&L"D    9QD#@  
    q$x"D  
    aa    $H"<  
    z```a  
    z`    
    zazA  
    H!   
    #Zֵq   
    I8   
    zaa  
    q"CD    ZZZP    ZZZP    
 i    
      /      <         
 tj`    
 e     ZZZP      &L2d  	  a   
  i2$H  
  $H"G  	    ?q  
  i2$H    ?B  
  aa  
  $$@   
    #"D    a   
  !B    2dɍ   
     #"D    aaA  
    .a  
    a  
  $H"D  
    D$H&4  
    $H"D  
  B!   
    z!a  
    q  @      aa  
    B!   
  &L2d  
    q$ @      $H"G      a    $H"D p      6L2l  
  aa   
  v8a7A      DDG    "T2dɲ@      D @      za^    q"CD@  
    H"D    ZZZP     <         ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    !    	 0     <<<    
     
         	 #     	 JR     	 Ā    d        
 r     	 r     	 2'B      	 BB$    	 U@      V        '    d    '     .D    ha`    	 Ā    	 U    @    
 d    
 '         	 Mk     	 i                            0                   
     
                  
     
   	        
     
       ]     
     
   	    興    @    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  	    IZH  	     @  	    `Ab  	        	    QEQD  	    I   	    B   	    QEQD  	    Xaa         AA@  	    AA      >"0  	     D$H>  	    0`    I$  	    q  	    ab  	     $H"D    aA@  	    aA    eLB   	     A    RIDA   	    AA  	    &L2d  	    }QEQ    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  	    D$H"  	    D @     D    	 *     	 %)     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     UU         	?       UU        *5       UU                 UU      $ EDI       ZZZP    ZZZP    ^!  N( 0       @"B0@
0      B   
   T"   
   @!@ 
 
   0 `$ @ @     o           p7      @	$     	 V 	    	  
    D	@     	 $, 
         	 @     (((h          
 <     L              l    ZZZP    ZZZP      B  	   }     ZZZP     x  
          qI$     bI<`    I$q    19$           	^        F.     ( F  	      $ax     N     N      ?!       a     @    A
F   
    B    T        J"C       ft   	      c3H`     AY~     A$Y~  	  1$B!x     I^  	    P A~     A P   
  BH  	   (ax  
  @
H            ^  
    H $T     REF^      Aa'    pB  	      Fbp 
 	    h)
A     O)    
Y"    
Y"    	 <<            ,<    	 <     JH    <     	m     i    	      
 q    q   	     	      	 `    
     	 @    	 !          	 g     	 i    ZZZP     ]   	   D"  	   B  	   I  	   B1!x  	   1$R0  	    @@  	   "  	    ABA  	   0$ƀ  
   e")                #Ȁ     	^     		A|          _!     D AA     AA D    
 q     HB     @	<$     fКH	<$     @H	  	   A $ax  	      $ax    	^ @  
    ( F(@  	   P  $ax    	^   	   P  $ax    	^ 
    18      8     N    $DN     8    *DN    *N  
   A @       aB      a      A @     P ~      a   	      a  	   P  a  	   P  a    A  `    "( @ $     A
gB    A
F@     A    I
F@  
  $ B      A)    $@  A)  
      oH    TP       JB @      fu
         Α!     IPY~      Đ9      P     P      8ax   
   @P  
  P   
   @P  
     $T        EN      A      0 0  ? _      i$  
    E$Ta      Q    REF^   
     A  
     a  
    Pc       A@      A        @! =      "( @ (        AAFbx       H @(     Aax     Fbp       	a              FbxP        $a'      !eMJ       ?B
  
   hhi     !x      1      P ^     GF    O    D bI<`    !E!	$B     O)    @O)    ( $
F     @ bI<`    
Y"     U"$G     B )d^     $
F   	  "p    	  "p      P  
  a           F    	 B] 
   	 DG      	 S    	 L#     	  H!       	   	       UU 00        ACqR%dLGaACP @     	 v    	 i`    
      	 ~D 	        
     	     	      	      	 _       UUUT*UPAB    	 "     "            	   @ a    ( 	!     ]   	   D"  	   B  	   I  	   1,9Y   	    DH     9030  	   "  	    ABA  	   0$ƀ         J"S   	      c3J`     I^  
  xUU    87Ye 
    )Ff  	 	   .: 8     	                    0       0     0         0      0    I/  0                            @ p     3  3      ZZZP    	 ?0          <  @p    	 o(           8 `       8 `   
   a   
   a      >A  
    <2,  
   ߶d  	    ` >     p  ?@! H      p  ?@- H     36           ;D!F R     0ɂL a     
    80     `  @     p?> < 0 @     xg0  
  xg0         00`  	   B l   	     b /4         0 <          A?       ?a     ?       # 0"|0      @   @     0   0@      
   ~p`FH    	      ʟ              iH    i    
 "     
 Y    C        0     >    >     	    
!HB 	   %	"       
     
     
         
         
 B         	 *          ht].	    	 >J    ZZZP    ZZZP 
   <aB03`x        0~ `           d   /      	^ @        	^      	^ @
     F  	       (    	^ B     B 	^  
  PB D    N    Aļ @   	   a
D       
  ( oH    P@       1$B!x    P 1$B!x     P  
  P P      A  
    @A     A             p
B  
  @        Aļ Fbp      B @        <$'       A
F     1  A)       %Jޑ!    &N    &*      @CO 
*V     A A
F      xB D     KI$     u
P!    ( 8^    *T#H    I#,     bI<`     bI<`  
  C	   
  SD	     A$      X J"C       P %Jޑ!      E$QY/      %@      $        *i       $aB       Uj      Id            Y      %RH      H      H     B       B       "|D@      B            `/        Hd      IA      UjA      ,P      I      A  	     *D   
      ( J!      "I             B       F        0        `/       @       J       Z     Y      Y      PB       %RH    
 *          *     "d    	 @    	 E@    	 *0     
 "#0    
 #3    	 L$    
 i`      %RH    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  
    1$RH  
    0H #  
    cB   
    
    
    O$  
    !!@  
     )(   
     )(   
    tc!   
          1(aH  
     A       "      c      B  
    tc'  	    !     
    E(!@  
    
    
    !F1  
     
    5      Zi  
    !>B!   
    I$$I      a      b  
    QE$  
    
    bI$|A@  
    B!       "  
    !   
  b!@  
    
    
    !!   
    !   
    B  
    C  
    !O!          
 %h          
 "    
      
 @    	 !?                Ġ     R0  
  tc  	   8R(5`8      @p               ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    	 [#                | D 0l<      9 f!C`Ny      90fcCfNy0           00 @              00 @         A@ 	       A@ 	     9e9!           8 tcc0x |       p  0000`   `          0000`   `        0000`   `           @0000`   `        L x L3f2vc       !L3f2vc      @ AL3f2vc       L3f2vc      3#'      	;8:8               8x           ` `  d``        8x          <xp` D,8d                 00        !!!                     `8p                  ` `  	0     	                 30<ax 0           (      sF01`a                           8         11111        xx       a<`1`              8x              @             @        8:11         0 0 p111p       0 0 p111p          88x              X88                        ZZZP    ZZZP     	     ?  N    
 00       <b1000000000 	   xB!`0`0        r&@    hp    q    
 L    
     
     	 p.G   
 ?000    x?    ? 	   xz`0`0        ZZZP    ZZZP       ` B A0$ Gy     
           
     
 *     ZZZP    ZZZP    ZZZP         @      	;8:8                                          ` ` 0       11111	      8x         3K(3C0          p110` <   <    HD    HC        {     <Nr<    sL` 	   q @ X8      <3.<     a	p 		p    C>hXx    <| #3      ;F$F	 C  
 
     y8     8dba 8H      tb          @L 0`v       ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP                      |><0000                   xx      ZZZP    	 2^      d0     i`i`    ZZZP      @CGGc, l0|        n@fFfOfOfEfAfaf3f "           `<0<00 `?  |         ?;8O<          C CC8cl!0         S SS8SlI($    @<.gy<f`;p`    @   3    ZZZP    ZZZP     0Ç80	      @ 6g60lbp     ZZZP    ZZZP     ``Ã`1      @lpg`0       ` `d<b0b<nl       @31Ly0c~0      >}Ŏ8afa      08 8      <@(Ǵ`3         0        8h `      FLLO$f, ,0d      f ff<f0f<f~  "     6~99c`0           `p0`            `#0:0       C CC8cl!0        `p0`     aYp3 `          ACCCc!0    < ǉ &<~0`        x````0    `c8 @         ?<8x 8      ZZZP    0?|v 0 `        8xdbbn0l?` `          x x 8        BGGFc 0     x8       0000000  0        xx8    ZZZP       >>cfAA@|<    ZZZP    ZZZP    ZZZP    p<xc    0 ` @     x x 8      8f<        `<0<00 `?  |    ZZZP    ZZZP            <0 ?    
  5c0      |  0 `      ?A@            b         q    ZZZP    ZZZP  	   !8     Bp    ZZZP    ZZZP  
    0`@@@X8       p  0`@@@X8          8\`8    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    p    ZZZP    ZZZP    ZZZP    ZZZP      CC8cl#1            0x80      ZZZP      x     @<.gy<f`;sf     |y͞|y͞    |] 
   5     ZZZP    ZZZP 
     <a 	     @   
      8p `    F8Î84@b     &cx    f10a     hʍs@60a 	   <?0ls`      ?`c0      ` < <4#>d         xx x 8         xx8 @ 	    |0    0 ``| 	     @@`  	   8/&,       |>co     @    0<řfx `  
   `<?  	   pB     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     \          UP    ZZZP  	     8d0     	    ? $$d93 #          < B B @ DDBAB D BA       x /"@	 !@          ?            ?     ZZZP    ZZZP    ZZZP    ZZZP                          8d0        ZZZP    ZZZP             ?          H H 8d0      
        ` `   
      0    
          	  	    		!0   	        @  	              	        !!  	        
     0@&   @  	             	     @ @     
       @    
          p         	
   
      `P     
        0 0   
     00    
         0 ?     
     p   	      @      ZZZP  
     p   
           !   
     p   
       0    
        
        
           ZZZP  	      @
 @  
       @
 L     ZZZP  	        0    
          ZZZP  
          
           ZZZP    ZZZP        ZZZP     l@@l      xB ! p@       x            ZZZP    ZZZP    ZZZP    ZZZP    
     
 '    ZZZP    ZZZP    
     
 H        ZZZP    ZZZP    ZZZP        ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     p                 	              @     ZZZP           ! c`     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP 
 	   D
`   
    pt  	   | 	   >  '   
    E
#Dp  
    @ @@8 	     ?    
    <Ba0@ 
 
   ? @  
    #4 @ @     z       
                  ?       `%ЩO        ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     \              ZZZP      @| D@@      ""	"q "*      tdp 	    A.D"ȄD      <BB"     < 	ȂH$HBB%      @(
(B      B(!d0          @| D@@    ZZZP       <$G$8P         @| D@@           ""	"q "*     ZZZP         ""	"q "*        8  > ""	"q "*      F^     @ ( 
    a$@$@ 	    rA F$2* 	    b0!p     @G P 	    sBa0,
     $IFH(Ā 	    bI 
    a$@<@     pBdB.     'F.     
N 	    phL%|    
AJI1 ,@ @      <DE" 	    bIDa
     t!B.     `dt         ZZZP 
    A(B @     H`p  0      " B      8DDH|D P 	     
 	    Da
     #    ZZZP 	    2! " 
    "H$q @    ZZZP     tt 
    a$I!0D     Ĥt     >8B!( 	    D!I$e~    ZZZP    ZZZP         t .     I*      dB(   
  bIAAB        r&@    xp    hhp     0    ZZZP    
    
 
    
   AAB    ZZZP   
   AAB   	    (         ZZZP    ZZZP      `  Bx A	0d"hp! x     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     @RPRP     B(!d0  p    l 
   l$H    ZZZP    ZZZP 
 	   D
`   
    pt  	   |  	 	     !	B  
 
    D AD 
    A(B @ 
   8 ?  
 
    b$`A  
   A @Bx      A@>    ZZZP    0 @ D9q       ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     \     U      VP    ZZZP     l2FH D}     l,dPu 
    (ZQ 
    'ZQ 
    (	S$H     AJDQ 	    1 KE$a     r#    ZZZP    ZZZP     1aDC 
    (y$     ZZZP    ZZZP     M&H      )%bBDHq      
 0      9QqI1     9EqI1 	    PjF&     )dD     <BrH0 	    +EPP     <BJJ2 	    R0A0d 
    MM     9EpH0     8(  	    00ZJip 	 
    00
IPp  	    TqB 
    (` 	    0B.} 
    (	`     0a 	    > 0(h    ZZZP 	    <`r
}     9dYaC 	    07J!t 
    ()Q(  	   "@p       "`t}     <BrJ1    ZZZP     ?
 bRI     ?
 dBH    ZZZP 	    07Jt 	    <Xr"a 	    <dsJ} 
    >PX^d 
   (	` 0    ZZZP    ZZZP      	      	    	    @`   	 
  .I     z{    a#    JX^    A	    ZZZP    ZZZP  	    h`        @`    @	 $ `     ZZZP    ZZZP  	    ` `  @2`       x X
 ( 
@)         ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    
      zB      ZZZP    ZZZP    ZZZP    ZZZP 	   00ZJip   	   00
IPp     ZZZP      HA3BY 
 	   H2$ @  
  r#    ABi/    AB     ZZZP    ZZZP 
 	   D
`   
    <B@   
    <By0@ 
    ;FYD  
    B$$DDD8 
 	   $E(   
    <B1	r0@  
    <Br0@  
    @      s       b 
  	    OHa}    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     U       	 ``i	    ZZZP 
    Idi_%     BD&AGWP! 
 
   >HISR 
    Zք      xH1 @       p&~ՠ8*     ZZZP    ZZZP    ZZZP     @GHG    @GHG       }E !    ZZZP    ?
 ;)eK&x    ?
 ;)eK&zB?     < _ͪի<        D_    ZZZP    ZZZP    ZZZP     2xșa 
    ADG    ZZZP  	   }E !    ZZZP     '䈐ʢ)ɀ? 	    @     ZZZP    ZZZP    ZZZP      ;DHʨDH      D_ O      ZZZP    ZZZP    ZZZP     D"@ O       =!IIRJ     c    ZZZP    ZZZP    ZZZP      	    d2      
   ;EDQE '      8H#$d     91 N"IHD 	   Db1F#G     8("d?  	    Db#F"1pp  
    8$EX%)%~       ;$IIIF     8l&
L)2Re$        ZZZP    ZZZP    ZZZP    ZZZP     )JR   
  tb!B    	 tl         f~    ZZZP    ZZZP    ZZZP      1(aYY      2mY& 
     =veY%    ZZZP      0Hd      0HH0      0H*J䪔dJ         ZZZP    ZZZP     0@%)a&'     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     *JʪJ    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     1(a      D_     p@"            ȈDB"     '"!DB:0
      D@'     @GHG  	   DP*	>      H 	@	 	     1F#b.     o"DH"$D    @" h @<     8@"$?      pDB"D"!      ?@:RTURXTԀ@?    y	p       @1&^YUY'  
     >A䢔c>       y
^	?     @<K@ DH        ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     *H     i  	   V@    ZZZP     1K$٘ P     0I" ! 	 
    wDb  @     	 <EK  
     @E#  
     @`"E@       dDD$&I- 
    l$ B    ZZZP 
       \ 
 	   		 @bg  
    w"( \    ZZZP 	    `H$" 	    0$	D] 
    _H @     H`D 
 	   `$"Z      F1     	&a	`n 	    bI'"  
     4  !'!       4  !'!  	    bL"      $RJII)t  
 
    l$(   
     $+ `D'x     (2`      B$@ D Ȥ       B$@ D Ȥ      1JK       
 l0  	   )0d     (0d  	   (0d 
     @`d    ZZZP 
       \ 
       \      a"@!%!       hÉHB)0        ` 	 	f       @``		f     (0`     1K(ߘ P     1  !       $@     ZZZP 
     @ <pf&p     <2q$       p  N
b3  
    @   \       E `    ZZZP    ZZZP    ZZZP     `         
 2O    	 BfGx     a`     %     a[`     PA*    ZZZP    
 `    	              @    ZZZP 
   
 ߈    	  `	o
 @ 
   
     	 |     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     d    @    ZZZP      P 4  !'! 	    $X@@@".    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP      I>$$D[`     lJY(@!  	   lI@     l-    ZZZP    ZZZP     1(a     <BB$           zN^     BB<BB< 	     F@`HE     p  @     8Dq|     ! !@A     ?  ~      ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  
    y
(O`          c!     &L@ 
         8@  	   ``` 
    0$    ZZZP    ZZZP     i     Vj    ZZZP     1K$ P     0'" P 	 
    wDb  @        cBgB#      F*I#      FRFIq%RJb  
     y$"hD!Z` 
    l$ B    ZZZP     | 0 @*!  	   @   DQx     8R@!    ZZZP     `	 @(!  
   0 `	 @(!     B/bI@(!  
   D|     8D(!J 
    " "       ?   @D'       g遐b @(!  
     0 X=!	qC        0 X=!	p"C  
    c$)@     8 9(bLI1u  
 
    m$      @( #0  	   Pd|  	      *Q1  
      *q5     1ĢA) 	 
     6$   
   R`|   	   P`l  
   P`|  
 
    A    ZZZP  
   ? @J"!     ? @J"!      a"@!%!      cB@!%!   
     	P&8K  	     (D&1Iq  	   P`|     1K)R 
    I`       0	@H     ZZZP  	    `*Qx 
 
   !  
    QXJ3@ 
 
    C `` 	 
    #I     ZZZP    ZZZP         ^     J     	 ir 	    `H
 @     B`  	 
   K,     wp   	  bH`    ZZZP 
   
      $ O   P @ @     $ O      p    ZZZP      $ O   	   0      0/  	   0    
 Aߞ    	     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     V"     wp    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     1K) Q    ZZZP  
     @ @bqqfb     c?)N" " D p 	   lI 0    lN
     ZZZP    ZZZP     1(a     <BB$     D @ 
    x%	!r"I     bB<BB<      g	>DG  
    |	  @     $p 
 
    @#$(
A     ?  ~      ZZZP          qF(    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     i  	   V@    ZZZP      0'h*G&  
     2!M|  >    1JC(e! / ?     tTUb\&@        y*K/     qUVP`7 	    cJx|     1JS*eK&    ZZZP  
     \KX%(   
    
 Q	  
      sUUJ       ZZZP 
    D
|(     8dI!A     8R%a+X &ɀ      p     <
`CFD,     0Ap      WbE@     1ĢAAN        BB      !J0_     }")"`G      <$F)0$PI l     1S+
^RʖT     } _      zax     1$	 l     bRVJY*$Đl     3dɄIIJ     3	b     !!!     >AN     $CQ     ;CQ$    ZZZP       p      q     3ɄIIO     >A^ 
    ?(Fd     F(	L#<     <b
B(C` 	    > 0     0) ` 
 
    ?( @ 	    Db)#B      <!     !"AxIH      SW9_      6Hb#F"I        $K    ZZZP    ZZZP    ZZZP      ("      i     i     iq     iD  
  iD   
 ! A^ 	    @      ZZZP  	    tc֩      i莖      mM    ZZZP  	    p		H       `		`  	    p
 H     
 
 J^    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     Uj    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  
    0Ē@#@$@#    1S+
^RʖT     {ܞT`    {ܞTp<    ZZZP    ZZZP     zax  
    BA     <      6H"!DB"	     0>I 
    ?(Id(    61%(b!"R!  @      8L 8 	     b1       bJF  
  	 			    	   ;B@D      7	"XbB)  
    @`  
      @X'd      ԥ	aO)2     ZZZP    ZZZP    ZZZP     7""B)       `lԑD%Y*UJH      ԥ	aL)(  	     '	H      F())L`      %	aL))$       D )L    ZZZP    ZZZP     i  	   i`    ZZZP 
   P5 D @     J0 PI        J(!B 0    JH'A 0 	    > 2 	    @TBRA  	    	 O     XIP_&h  	    a@
&{!'Iq      B  w-b  	   8qRHg9@  	    q6)@F? 	    	C K⁀PG     )(2A        $   dp񄁳p|  	    冚 (B=      @9a3
x  
     @ljRBw     ZZZP    ZZZP    ZZZP      `#7r  	   l       '
8Dq  
    a$   
   B`DGp     8qR(Hg9&A 	 
   |AAA        e|
        @P    	     q@>0``ɶl     9X@fm  @      88H1     0       vEGBVb& 	    ~@.|      @ 
0  
   `DGp      C
0  
      x0ƪNl   
   q"TDGp      `#7      B0    $z  
   ? `DGp  	     I BPI    ZZZP    8 0     0(m0h       ,|      l     `䈂G  	   VS  	   VP	2 	    (E     A    ZZZP     >"rDc !    ZZZP    ZZZP     ?
0@D|      'Ă%D 
 	   1d?  
    a$ D     `䈂wG     6A['     ; c     ZZZP    ZZZP    ZZZP     舀    ZZZP    ZZZP    ZZZP    ZZZP     i  
    JI$      BDC 	   
 @`(  	   
 Ba(` 	   `_    ZZZP 	   `^`    ZZZP  	 	   0!Ć      J        	  @           J$      @  		        	  @		      @
	     H    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP   
  J[      H      
IUQ*EX     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP      zQEQ      S.      QEN      zma      jXma      QEv            zM4QF      r %  	    t1p  	    EQ8      s,Xw  	  fUe]  	  zQE,  	  zQEw4  
  |a      QEQ      SV/^w      e)TR      zm^a      jXm^a      zQEY      VQEQ      |<&      $)      S.  	    s1p      ӦL2d  	    N2dl      ӥL2d  	    N2dl      zQEq      QEv      Y^      |<c  	  zQEY      zMMY  	  zQEq      tBc  	    a      ŉ  	    #I2d      4eQ  	    V2dl      zq  	    ,XB      B!         	       tB!       DA@    	 z    	 ~0    	 vp    	 v0                ZZZP    ZZZP    ZZZP    ZZZP    UUUW             )K{      }@0      r* 0      ؠ 0  
  tB!@  
  ېAA@    	 ~          |     QW0     ]               	 t      zm      za      zmt  	    	kax      jYe@  	    i|  	    4i|      bA^  	    mYu      թn  	    ZI2      b      ABz0`    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     QEq     zBjQ    ZZZP     zYY    ZZZP    ZZZP    29\     zMLA    ZZZP    z!	@    ZZZP    ZZZP     fY^    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     zaQ     JaQ    QEY@      J*T    ZZZP     FQEn     Fa^     AFa^  	    fl      0`&K`      CE2d      4P&K`    ZZZP     EQEn     AfQ^     z^    ZZZP     zAR    ZZZP     zA^    ZZZP    ZZZP     v(b      IIIIII1    ZZZP     zct     fh^    B           Ë     iQ       a!@     T     %     T                 ZZZP     }     f`    u# '     ZZZP    ZZZP          )K{     bdL       r*         @0    ZZZP    ښQA!     ZZZP          ʸ     QW0     ]          	 U     ZZZP    ZZZP     za     zmt     ta{  
   bEQF  	   i|  	   נi|  
   Ri`  
  QEA  
  Za1JY     fYeT    ZZZP    ZZZP  	    UUUUUU&  	    UUUUU].    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  
   15ir     ")N@       k%Ѐ4H``0H       k%Ѐ|dH      1N1     N     1N1       9      f`6!   	   zB9      u0QF    	     	       UT      Ҕ)JR      UT      T       0AA     RKX @               i`     灥	     p0 A      "$"J$JD	W)`%          %``$     P     i     EV      PUj               KI(     9a     2      zB9@     z'     $     E#     Br$G      O   	   A     8$       Y      yC      y!AB     $4       E:Ȁ     Rs$W@     O   	   A!!     uSM3@     :4    	   Ng     UQ     03    i    
 g*             J%S        QB4
       A          ""!     4DDH     ~W(P @     &l0@     'M @      'M'NbD     <     | D$G      | C2[      <    ZZZP     qq @     80             x	0 @      x	NbD            @     G     <@@      <GNbD     CLA     f`@     f/`@     >`@      >gNbD     %l@  	     	   l  	   >B    >B>s @     c&x'I     8e*sP     0@     q$     &L          sH`@     D$@     ((      ENP`@     <s @     &9l@    ~W(P.Rz"      !@@    R @      > 1      ZZZP    ZZZP    ZZZP    ZZZP     j                     N    ~BN     @   C               @      F         2	        `@      D      (      E     U   	   i`     :`    8             b+    
 RK    2H    q 
    	 DI`          PAO     m$      V[      	ԩK    ZZZP    ZZZP    ZZZP    ZZZP     YA     &l      'Ȑ  	  ''1"     <       |"s     |!      <@    ZZZP      qq       80       /"       x     x@     <C        @            <  @    <#'1     &d     f0      O'0      >0   	  >3'1"     k0      x(LD       |%-     8    8 Ĉ    .    8e9@            qA@@    C.$          sI`@    $@    Ob      .0       <s @      &6 @  	  ~W(W)@    c&x      &KP`@          ZZZP               8G      tb     8RJ     8MY*   
   PAH>    5@ɔTQ*    TJAQ*@     `  3&UQE
DLk8       5@$$ D         (Ag(	     @a D SI  C      @ad$!dD	C!$      @	GPH``đ	!HC     ZZZP     %`     	    `D  	   > "<      zB91   	           `"`     B<    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP      =C     <BB<     <BB$      `HB!@     <O      <BB<      1P@Ā 	    <!!PH  
     8Q&QAD 	    pA LG`?     qȂA  	     8" !`> p      8΁e     pȰ| 
    p"I H<      7bDC
PH>       1JB       1JB`     y

`     87Q 	          BB<     L1Q     Ev(  
    c% !d&0     E       
B` 	    <!(F       1
B`     8(  
    c$ !e&0      JB`      8ơ|      p$CPI     ;B   	   w"  "$HA      8QA @ 	    pD DC D`? 	    pD*@C?     <O      <BB<       8(0` Ȣ9 #        k6k2   	  r(AAA     i`    
 i    	 tk     p    )p     4    	 !     uwW     	 H    	 ty&     
 U    	 U      UP    ]     
 i  
  R      `             "    '     c!!B2  	    6 0
     y0      B.  	   9bq  	   r(8!@     uj.     ta*N.     tB"!&     82U     tgIB.               1'!      	rJ


j|  	    !Ve"f@       0@ @)W
Up     8(      ((      Q0Q     Q0Q     9     8Dl      .          r/!x    qĖ    y
O$H 	   xbB!     <BB<    I
O@R    X    !     $     8)N
     @    i興     $     zA    I
(O@x     $P  
   UI<     ĩ     $     T     T     r"p     ;b$#	HE$    D D      ȈB       EU    	 ta     
 Q    	 Tc      <BB     A=B<     <BE      8R!0      8R!0     8B!22         1ĢG0     qD\p     FB}\p    FB}\p       EFG      pȂA|q    8, C    h    B!      tX&E    	 tQ     	 U    U  	  UY@      U      E\U     U    	  U         8(   	  Ut@     za     eB     B      D:1     CQIf     P      y
@      !B          z^J@    ZZZP    ZZZP    ZZZP    ZZZP     E!C 	    A CF	DA `        @     i$I      @  
     HDp  
    b!@  
      @B     "Dp  
     0DdHP`      !B  
    -m@  
   @H"8        @ŉ      ~1b  
     q$H"E       ĉ$H"Dp      QE3A@  
      P2dH  
    !	F1    a @  
     q$H"F  
     }&L   
    !	O!   
    zaa  
    Lcm@  
    lc1  
    !1@    9`!D  
    A~Yd    a<H   
  zP @    c     B
D   
     "@  
    "        ȁA'   
    lc!@  
     E   
     $HK    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP        
   )B:1  	  dGF1p  	  m&L  	  tb1p  	  tb1p  
   bI$`QD     m&L@     tc   	  B1p  	  UVP  
   tb1  
   |!z1     m&L@  
    1  	  edQ8  
   <ɂ  
   !J1  	  ^ax  	  ؒAQ8  	  m&L@@<    B)C  	  m&LP  8  	  Lc1p  
   ؒAQD  
   dLz1  	  cF1p  
   B1    nI ȢJ0     AgDQD  
   !z1  
  !>C1  
   L1  
   m1     tb  	  DA1p     \  
   r(	    AGV!   	  tB""p  	  cB1p  	  r(pR0     tc     <`     |!    ZZZP    ZZZP    ZZZP           D                $N                    W^     ! 	    "     tc      !      $T     8CX@                $$$     9#                                               pp                A                    HH     >DdD     DO$\     L|*     DO$D     ~H/!%J     H      耉           	    ?p           #     "@)     #@)     #     #D     "$D     "\<T     "!     !D     #(      E@     #     #@     #((     !)( 
     @ 
    	AP@     ,     $( 	    
/     s      q"$D     qq     q1&'ė     pHHq     pDE"E?     qF(     s
"D"     /H@     q"'ć     s*%D>     tc      ! 	    ,     *b     0p     R0     p P     ` Q( 	      
    8  60p     Q 
    Ox!     00Ē0     |B>     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP                       	  $H   	  $y$@   	  $   	  $y'@      ?      @  #       H@ '  
     @D     	 H?       
 
    @ @A  
    H@ '"	Ȃ@ 
 
    @ @AD     D       
      @ @ @ @            p(?  	    @   #@          @         @$  	       D  
        _   
 	               8 @  
       p     	     @   G   
    H@$ @  
    H@$ @           ?         @ HD      )/?  	     @ H?             @          	       H@$   	       G'      (@
 P@: P     ?   
       @ $	    
      @  !   	    (@
 PH] (       @  $!'       (@
 PH] (@
     D?   	      @ B!       ?       ?           G    	  I'I    	  II   	        @B  
         _                 """           !      	   	     @ 	B 
    !    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP        	     D" 
     AJ@       	       
     #2              	     |0 	     }0x 	     }x 
     O
@ 	     =x 
     į*
 
     2              
     $OJ@ 	     .      *b      tc        AD@ 	                       $$$      9#       A>	 O     <DDD                  @      "HA                        !$
                     ?            RHa!      )$$z       )$$z               ?~0      DO D      (A            _9/                         "D      "$J       DE"E       "H}      _9/                          _9/         
     'A@      #@)      #      "$D 	     
/      s       sDb#      p葉p      qp      !      p"D"      pDE"E?      Q      $<B<      8       8N>      8N"      8N>      9#    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP      |8      003`8       f|<03?      g<o`      g<oh 	     n3c      g100        xacፆ0> p       0`Ǐ0      0 <10c       0 <10      0`0      0 <10      <>gc      0 0|~Ƽn`    0 <10  
      0ٶ<3       0   `3<30       0   `3? 
      0ٶ0       `  ̆g' 
     0 ٶ<3 
      0ٶ      0   `  08p     ?DY      ?F,3&|xx      ?Q!D          ?Qq   @      ?Q!D         (s 0       (s       ?E
(}    ? 
 	   L<3l<   	   Ml3<f><       ̃330÷ 0  ? 
     ̳<3w 0      ̌  
     ̳<30  
     <3wp    ̃330÷ 0   08p      8p? 
     p` 	           08  
      `8 9      ?~ 
     ?<{ 0 ?    p0p        xǏ0       >a1?xc        >a10       x0 
     1c1g      ``xǏ       xǃ  
   1c`0 	     c1`      >0c?c63c0      >0c0c0c6? 	     c`      >0c0c>c6> 	     ?c1f0 	     c0      c`0 
      ~l< 0 
      ~l<0 
      ~l< ? 
      ~l< 
      ~l<> 
     00<6~ 0 
     `0<6~ 0 
   `0<6~       0͙c7     ZZZP        0 ͙3~? 0 `  
    ~l< 0?` 
    ~l< 3?        0l3 0      ZZZP    ZZZP 
     a0<6~ 0 
     a0<6~ 3 
     a0<6~ ? 
     a0<6~ 
     a~l<>      ` `3f  
     `,3͟0    ZZZP      a0͙c7     ZZZP      a~ 0 `36f~0 `  
   a0<6~ 0?` 
   a0<6~ 3?       a <3`~ 0      ZZZP    ZZZP      8<xǏ      8ca3       8ca10      8<x      8ca10       10ca1      8<x  
   8c1``~0 	     c1`       >0c?c63c0       >0c0c0c6? 	     c1`       >0c0c>c6>      0  8ol` 	     c1      c`0       ` `0` ` `       ` `0`f `       ` `0` ``~       ` `0`        ` `0` |`|       `c ` `      `0` ` `     ` `0` ` `      `gcc ` `      `gcc ~``      `gcc ``~      `gcc       `gcc |`|      a?c        0i`c ` `    `gcc ` `              0 ?00 0        0 0 00?      00        0 0 >0>      <o                  `kp      ZZZP       0 ?  3 00     0~  `0      0 0 03       ```       ZZZP    ZZZP      1c      f       ` 	     x8      <8y      0      n 00  	   x8 
     a0 0`      a1  `       a1         00 |  
     a0 0l 
     a`>`       17 |     00 | ~`      `70      `<ppc       `<pp      `ǌ0      `<pp      wǏ0      `Ǐ  	     c?c08f3 	     g?3c1`      p?31`      p?01~ 	     g?3c`      p?01| 	     g76c1` 	     g?3c0       0p0ǘc0       `?0fn3    ZZZP      0<30?30     11~0    p?0f       c?1`3    ZZZP    ZZZP      `ca10         ` ?f1c          ` 0`1c      `c`0        ` 0`1c      c030303      `ca0     ZZZP        ~  `~kn```    ZZZP        ~       3` 0      ` 0` 0`         ~ c``````    ZZZP    ZZZP     ?<Ǚs  	     ?3;q       ?<ݟ`f      ?<ݟ`0       ?<ݟ`f      ?3y{p?      ?<ݟ`0       ;}3ٌw` `         c`      0003`       >00 3 	     >1l3      >003      ~`      <f~<p    ZZZP      Ǐ<Ǐ0      ca??xc       ca?0      Ǐ?0      ca?0 
     p=cc1c      Ǐ?ǃ  
   1c?c`0      pٱ      pͶl3~?`3       pͶl3~0f3      pٱ      pͶl3~0φf3       pͶl3f0       pٱ    pٱ      8<x<0`      8lx0?30 
     8c13      8<y88 
     8c173x    06sσ`       8cg;0         6?c?  ` 
     !f `      b`| ?0`      3``      >bf|0      1`       6` `` 	     Fc`0     3``0      8|`0       b`| ?0`       p c      >bf|0       >A> 0{ 
     ?0 	     #1a0      p a0 
     x3C0x a       <0x?~00       30 ?a3 
     x30f      33a      331a 
     x30`      <0x` p      }0`0      | `c0  
     |1`00      y0`y  
     |1`00 	     f`0       Cx0`     Cx7       |` ` ~      ZZZP      |` `l0       y0g 
   |1`0`       |l0`       ZZZP    ZZZP      ~ |       >a00  
     1` ?      ~ <C<p 
     1`> 	     ? `      Cx0` 	   ?f0 	 
    >5<O'  
    >Xd&y0ɆL   
    >Xd&0ɞO 	     >5<O&`      >Xd&0L|      ?3f<0   	     >5<O'`0     >kɌɀ~0  
     #F<m[ʳ|  
     ?b`0?38ڴʲ  
     ?b`0000ڰʳ      #03J̫> 0@  
     ?b`?970ڼʲ       c9'0 @>       CF3Jq@>     #03J̫> 0 ~      <ff<~      f`<?<0      f`<0<?      <f<~      f`<><>       `~ca      <f<~     ``x0`0  
    <ff<~  
    f`<?<0  
    f`<0<?      <ff<~  
    39xx  
    39`      <ff<~    398 `      c`      003`        ~00 0 00?       ~       ~00 0 >0>      ~`      <f~<p      a9< `  
      `00_ 	   #  
      `01 
   @020       @``|    >gCl 
     ? 0c 
   @02a 
     a3 0 0 
     a3 ? 0 
     a3 0 ? 
     a3 0  
     a3 0> 
     a30 0 
     a3`0  
   a3 0 0p 
   00;    pqQ   @ @      `g `xً?    ZZZP    ZZZP    ZZZP    ZZZP      
 
   "H1 L           0 0         	          0?        c   
     
    	   c  	   c1|    ~ ~f```` ~    ~ <ffff< ~ 	   c 	   0 	   0 
   m 0`    ~  ff~fd8 ~    ~  ~ 
    -3  
    mfٶ9 
   mc`    ~ >f> ~ 
   m `    ~ >kn`f> ~    o ?6 `0 	   ``8     ~ <f|`000 ~    7 ?a 0    ZZZP    ZZZP    ZZZP      ?Dş7       ?,</q @ @       ?E
(}  `        ?)X|x  `     
    8cq0  
    8lc`` 	   8>1f3   
     >0cQ0c   
    @Q`lǏ0  
    ,3 xǇ 
   `<uy `  
   >3 \0`0      af`k0       af``|a0  
   a3 0`       a k` `                  <      <             0 0       0;             @  	    3<0    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  
    $QEQK  
    O$D  
    $@   
    8 $4hѫX  
    a"D3H  	    ! B  
    y
B  
    8ia  
    U}C  
    a3A  
    1$a  
    > @D  
        
     J(  
    yyEA   
    D'ȑ  
    	<#  
         
    0"D-ٴ  
    e  
    QDr(  
    zi    
    z`ia  
    a  
    s,A  
    0(
(p  
    fYeye  
    aa  
    p"a  
    
(I  
    zaa  
    A'Dx  
    z`xa  
    a"D"B       a@  
    B   
    9A  
    a"DSH  
    $@  
    aYe  
    JKRI$  
    Ε"E
(P@  
    5hѢ  
    z z#  
    $O"Dp  
    $H N鳘  
    b/   
    AQG  
    8 @wtp  
    7x!B  
    (b"p  
    AD  
    V6r  
    y
|B  
    @"8  
     AE  
     AE  
    
$H   
    z```a  
    m'	$HP@  
    0DUjժ  
    1( !  
     !  
    z`!  
    D$0  
    Ijͳ	$H`  
    a    
    y
<B  
    D"
0@      szD   
    )(
$  
    #ȡBDp  
    a"TX"ʐ  
    qd'D  
    EV:,H٫  
    zya  
    EV0`Dp  
    I0q  
    z8a  
    $7dTP  
    9Qyqe`  
    8CFe`      z`a@  
    a"TX.H  
    aa    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP      $E
 @      P@
((?       AB"E        
((?      
$         ")(       I  ")(       
$       
$       1IFI0@       RQE      $E*T @      $E
 @       EJ"E       AR"E        *T((?        
((?  	    `*$   	   (`      )Q$P      @$őC       A  ƙ")(   	   ,"B  	   0X
      ad       AHP`@       RQE     &K`     T@     "     H     !          8     ,     i     I$          ]     
      !>B      @      ("(P       H
D      (pHJ0       @RQE      $E
 @      P@
((0@       AB"E        
((0@      !         @!B       I  @!B       I!       	!       !B @       B      $E*T @      $E
 @       EJ"E       AR"E        *T((0@        
((0@  	     $(    	          !AA      @A   	   $  	    (      A$P       A@@@@      I B     HB          ِ      0`      PAP`0@      80`       P`0@      0  @3       !       $H!       0$(P3      0 (@3      a  @`8        s@      "D4h"Dp      $Hbĉ      D4H"D      q$HbD        $HѢD$@       @"E$H       80@       @@B#       @ G       @
         A
 8      80`@@       qP@        A        E
(P 8     :!       ,H"D      s,H"D       @        @      tc!B      ">!@      tcB       ! >!@      B\      @!      P 	袉      !Cь\      B      D@      q$W       D @      q$_0 @        $h @        @"       0g"Dp       @^ĉ        @<#       @
$H        @/"Dp      |ĉ       @x#        @$H        @
/Q"Dp     `     `      s,G       s,O @       
(@D      <D      tc!B      "0!@      tcB       ! 0!@      B1\      @!c      P (      !B\      B#      D @      q$P       D @      q$X0 @        $h @        @"       0`"Dp       @Bĉ        @#       @
$H        @("Dp      `ĉ       @@#        @$H        @
(Q"Dp     `     `      B!B      "B!@      !B       !B!@      B!~      @!B      P        !B>      B!|      > @       P       >@
 @      0 @       (P @        @        0`       @B        @'       @
 @        @( @      `       @@        @        @
(P @          4C          i$  
    zAB      $H!  
    P@$H      "D   	     $H`      $H?  	     a"D  	    $ a"D      a"D  	    @	$H~      (P      TB       PB      c&D  	     
  	    @2$H|  	     	$H~     AB     
#     /      !  
    P@ @         	      @`      ?  	     ` @  	    $ ` @      a  	    @ @~              @       @       {   	      	     @0 @@      /       @   	    ( @|  	            @      C  	      	     @0 @|     A     <<0            !!B      P         Br       @"!@      B       @!:!@      P 9        !pAB      B       @	      '       G @       Q< @         `8@        @       ! @       P@         `         @8        @
      <        @(P8 @          @        @
!A     bH     z     $           b     $     I1         @0A$ @@ @         @$ @"         A!0" x"        A!0" @"      a"D	$0      $HH!        a"D"D       /@        ` @}       a0        @|!      PH
      AB$H(P@      (X(P@      PB$HPA        PbDPA       @AB!B       3 @@       @`          @@       @ s       @      AB@               @ @r @      A A       !CA@      B @                A  @        A @      A      $A       !          !B               ?B          (7 @      `@        @A@               7       @`           @@@@@@       @        @       B         @A         @A        @
      H     RP     !>B            $G       D      D   	     "D      q$H       @"G      r       B"!@      !pA      :!!B      tB8B      B       qH @        !: @      q           b       c%$E
 @      P@
(),@       AB"e%        
(),@      AA@@@AA        

        Q                  
        !     U@      c'0`      &<0`      80`%      80`&0       P`,@       P`y1      a1  @3       	!       e2  @`8        c)@       a#P@        A      3e       &L2`      82dɓ&H      0 >@3      a @`8     ;      VZ`      82jիV      0!"D3      ay$'@`8      q$G
       D       $H @       (@D       @B$H        "Dp       @ x#     F      aa@            (0"H @         aE<  @         0"H @         `0 @x D          0H	  <"      bA   D        @ 1  x"     iR@      tcLb      tcRb      R\      e*Sь\      q$@
       D      (@D       "Dp        )$/BH  @          ` :@!$    @          /BH  @          ` @! A " D           / B@         ` B@ $  " D           A	H  @       a"CA      c)R @       zedA@      zi        Ae       	      "D      ~$0       0"D      ~$?     ~
      	 0  	     P @`    ?     ` @    a    @ @~      A@      A>       @@@@G@       @>@       @       @       CA        @>       G       1A       @       '_      ?      :@      !       B~      !C>      B!B      f        AYY       &@      YYA@       @        @*       H       @      .bŊ      ѣ       ,W @      F @       '
 @       AB"E      (!       !       *!       !RE @      $E
 @       AB"E      Ia       ia       Ia       !J$ @      %RG @       AÇ*U&H      !       K!       k!       !C @      %G @       AÇ*}&H      B_0        @@B_,A        @@@_A       aD      aa#       1(aa      (aa/       (aa/       (aa/       =aa      ;aa#       1(aa8@      (QDQ/       (QTQ/        
P      =bH      a#       1(aa@       H$H"K       HJ"K       
PB       >$H"D     !	      &L2dɒ      (L2dɓ&H       AA/        A'A/       `AgAn       =        &L2dɒ      (L2dɓ'      (aa/       (aa/        ?      =aa      2dɒ      (L2dɻH      (QGQ/       (QWQ/        
֡      =b            a#       1(aA@                            a      $ɒ      (L @       AA#        A$A#        /      1        ia#       1(aeV@  	     Afbp  	     Ifbp  	     M~bp  	    9a<  
      &R  
     Bx  
    <)AA       ɚC      $ɚS      &[      ɘ      8(̘"N      D( @A"      8DE9"A     !
d$ @     !
 &@     !
 6@     8 `I$&PC 
     B"  
     8"  
    !MD!   
    !MD   
    !ME   
    BUA 
      !B p 
   8&  
     @CD@p  
     @CDBp  
     @CDFp  
    >!E @@p       Ɗ(        8(       8        H8        i        :΀ 	 	     q,8  	 	  $    	     @\bb\  	     @\b			b\  	     @\bb\  	     :FF:       	6                 !  @          !@@          ! @         @          $H"DP@       Q$H"D 
 	     @  
 	    A  
 	    A  
 	     _   @       ?       #( @       R$H"DP@       Q$H"T 
 	    `  
 	    a  
 	    a  
 	     _ @      (	"$D"DDl     "$D"DH
       O      	 O        O       ' @   @       ("$D"DDl     "$D"Ȋ    	 O      # O      c O       '@H$@      !Z8q      ("$D"DDl     "$D"Ȋ|    P O      Q# O      Pc O       '@X
,@       ("$D"DDl     "$D"DH|    @ O      A# O      @c O       ' @@       (*䈑"DDl     "$DdȊ|    H O      I O      H O       '@"	@       ĈA(          aE @         ` :@! A          Hh:Ћ* T H    @           B/@P  @          Hh( P@@ " D           @/@A         HhBЃ * T H  " D           A B P  @      ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP                                 @@@@@@       





       PPPPPP                        @@@@@@      





      PPPPPP       @ @                @@  
 
       PP@@

        PP

@@**      TT

PP**U@U@                      @@@@      



      PPPP      @@  @@         @@@@           	@@     	 	 $H      PPPP                                 C      @    ZZZP    ZZZP    ZZZP     K$ @      * @      
$aa     ɓ&L2@     
$ma     ѓ&L2@     !J11@     !J1@     ),Q!@     4@      $@      ),Q!@     "B0P     ʘ    Y5      HM,aD       H(aD      HBDHP@  	          @BDHP@     
$ @      j$ @      B"8 @      "(Q(0@     "*(Q(0@     )(ʘ!@     <dǃ0@     2c0@      DGU$@     I%I$      D$@     !b!@      D$@         I%I$  	    ADDA      @Tp@       @CQ @      BeLB     0P"B       @ELP@     %R @       HBHB    !ιB          I%       @*     qT @      ʘ!B     b!      %S*`    #*fT!@     %YS*`     
$ @BDHP@     Zd0@     0@     %R @     I$    
$        @BDHxp       Q(     DPADP@     ZdɓV<p@      Q((     
8$   @           DGU$@         @ T`A       @8qR2@     %R*8qR2@     VM\p@      @8qR2@         qT"J     ʘB     @I2D8 @             	    8pF8     0P( @      QÂpR@      ARdɓ%Q     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  	   _ A@       D@  	   >A|  	    @   	   }$@D
@$@D0     <@|       :P@> @       X |  	 	   >$2      	   @H 1$@   	   @(R8  	     N`A@   	     Vd A@     ZZZP  	   @    @  	 	   @Ò   	    0x"A"H!B`      ra0              ]     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  	     	H   	     		I   	   A  	    DT&"  	 	   ఘ 	 	     
 	   #RJS   	    $  H
    	   7]AAA  	     A$B    	     	   0"$!B!B"<   	    Q	! 
     
 	   #P)jg  	   `F" @
 0   	    @4P@I!): 
 	   P$D	    
     	              	   B! 
 	   D!!"     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  	     p.AA>        p.AA> >   	    	 	          	   @A  	   ? >   	   #ď$Q"D(>|  	    /   	        	   !B~      @~ 
     @?A?  	   	"!"$C<@ 
     
   F!@  
 	    }Db      > @|     	    @    	          ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP      V$ A@.     
     0	 @  8     EDTE   	   dD @A@`    B @  @  @      9P      @   @D  @         @h@D          @     	     F$ AAA   
   @@C  	     Fy& A@   	     d@B@     ZZZP  
      $@BDV, @  	   a  ?p  	    @)"A	HC    ZZZP    
         ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  	   v@  
   	ȡD'!  	   v@  	   fu"DH"     @@Ѫl 
 	    "^zF  
   1IDDTlD  	   qQ"(dU"    mF#h #     p&axQU@     :$H 	 	   wD`( `Ň~  	   l (!cUR`  	   p葉Ȑ  	   葉Ȑ  	   v@¢     1NJJFB~ 
 	   ?
I   	 	   vD4*&c  	   9x* 	 	   a0$	>      1I 	 	   wD`0A 	 	   ;"H C!p 	 	   a0$>   	   Fub(E"  	   !	R`  	   xpB(E"À     PG$I 	 	   vD$V  
 	   a1EP>  
 	   `L∲*   	   cЇ"P<  
    | T9 J`  	   d! Tq  	   d! Tq  	   	Lb!EJ2s     J`G       GL@LDL|  	   q ar  	   v@<B9C= 	 	   pD!r     td<B9C= 	   a0$	>1    aC B> aG 	   wD`0AQ 
   w"(
*
;  	   0q[ 	   wD`0 F  
   q9  
   ~~  
   q xrz     UU %ED1)(%  p>x      UU %ED1)(%  )D>}D   
 
  |B!@    
 p    
 s    
 r    
 
z            v      E   
        Pp         >  	    I      \R)L       F 
(  
     F  0 p           4 `         i`  	   V@         
      v@    
     
 qD    
 qD4    
 '@ 	   
 yê    	  \ 
         UU                t\  	   9YA  	   Me  	   i`i`    |z
d  @   @   _      TQQQ1  	   8MZ`8      q RDP8   	   |E$`     t`L    
 <B    ZZZP    ZZZP  	   }0`| 	 	   > &       N#`jA0   	   {ІCi!  
 
    @#$     `~@~ 	 	    	">        (@JP% 
     @# h*)  	    ' b  `    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     i`     "            $Z     T                 "      )H     2!    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP      DBA         s       s  9            ? 88"   8              
    P#x 
 
   P#x  ?          UU <ED8)(    1|      UU <ED8)(   x 8A|      UU <ED8)(   x 8x           ZZZP     `a     #ƀ`a     `e@      `e@       2`a     @        !b  	   & P     @      qd    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP 
     0 8  	     0 00>   
    @ `?
 8 
 
    00  
     00 0 
    00 0  
    00 p,  
    00 0        0   
   |0  x 
     @      C 
 	   C0   	    *[0      CA     `S 	    `      90  	   "A"8 
    ?ъbXf`  	   6l߃     3     M0`     O3     ~8     1#              	   7  	   7      @ `| ^      	`      
?`@ ^` `     >`      ~8|0     0 
 	    00  
 
    /`?  
 	    00        ?0#1  < 
 	    0<  
     01|@<      ##C#     ##C# 
 
   00    	     p 0   	     Op 0  
    	?     >A     ?9     Cc     C     3     ?0     Ν4`                    >  	   > 
`      #`      ;[     c     @     >p     <  	     #4a|   	   ~8r  	   #      @  6@$   
   `` p1A       P  
     @ 
    !  
 	   AqF`  	 	   
"'1      s  
      ``F `     
     P       rO1  
    	` 
          S     rW5 0     33      > p0  āR     O0      baaf``  
    <3 5     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP 
    By@     ii     B$$B     DP     qFD    r(Q	ȡD/       c)IJP&1B8!! 
      0 0   
     @   	     | `   
    (_0   @  	   cc     M<`      ~80  	   7bك  	   0`     <`     `     	0     cę¦    	   A p           `       fa^  
    `     ?9M0 
    ?ƙg`     @ p   
 	    0L+
0        3FP 	      @`2FC   
    0dƠj@` `  
    `2      8+bb  
    !"?`Q`      @`0   
    0` ` ` `     $ P        P      :泀     s      1> e0      	 %@  	   0@     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP 	 
    H(DBAN  
    A 
 
    ?B!BJL` 	 
   HHOPD"  	 
    H$: @  
   PVD	 "  	 
   A P(T@  
    @𜀁B<  
   		    ~ ~   	 
   	bJ@  
   >AA> 	 
    # 	 
    A   
   1AA1AAA"  
    A  
     
  `!JF0 	 	    wDB!F#w  	 
   	E   
   qA  
   !!A    A@  
    $E  
   v
@ 	 
    T2L @ 
 
   " "   
   l͡@  
   q 	 
   >!!	
      ZZZP    ZZZP    ZZZP     `    
 |D    `  
   VR  
 
  J[$@     `  
@   @     `	  -	  $@         
 a     B"   
 "    CE3@    ZZZP    ZZZP    ZZZP    ZZZP     !      i    i`   	 t@   
  US   
  S4  
 
  UNA@            
 *              ZZZP    ZZZP    ZZZP    ZZZP 	 
      4&!     ZZZP    ZZZP    ZZZP  
   i 	 
   "J%! @     
   80`Dp  
   B< 	 
   
B"	@  
   y
Bx  
   ` ( @   
   <,(!EJx    8!EJx     
   bH0$"" 	 
   `($(   
   Q2      R      R     c       h"ƀ      H"ƀ     a@      7L6t      L6     A@           6L6       
   6L6       
   L6t   
   I				   
  R   
   H"Ɓ     Yi@  
     
     
       p      
     
       ۈ      
     
   H"Ɓ    ZZZP    ZZZP     "Da      2cE     :c͠     %UM     2aE    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    fa
     fa
 	    6$00  
   9A5#A 	   cBb1 > ` 	 
   > 0A      <BB$     <BB<  
   r(aa  
   ff 	    ]0D"ȄB"   
   9a`A     }(P
 	    c@`0" 	 
   wDb1F#    r(aa 	   cBb1+ C     <e(PL	 	    > 0  
   8Dp 
     B " 
 
   r!HRHV_` 	   cBb18 C 	   wD`04xnPG  
   ff 	   " 0} `(#     0`' 	 
    cBb1 xB  
 
    1EHLĎ  	    xB Ĕ  
   <BB< 	    cHb1K 	    cBb1  
   9A`aD 	 
   " 0A   
   q"4P     FAax 	    
 D`(# 	     6$00   <!       8#Iy	 	     > 0
   	     ~@A      ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP   
  bVbV     i     i`     i`     (      i      Jm  
    i     "(     uk  
    %Qy   
  bQEB   
  YeB   
  bYeB     ,,,,4   	  qVر^   
  bY}WB  
   tc'I     <B	  
   tax'I 	   " 0}  ` 	 
   6$08  
   9A`Y 	 
   " 0     i     i    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  
   <BB< 	 
    @G$ B   
   9UTaH  
   tBA@  
   pt 	 
   6$08     9 $N  
   6	"@F8     
     H @!  0  
   8 ADp    ZZZP    ZZZP    ZZZP    ZZZP  
    `	 pH0     `	 pH0    	   B @G$J&    tjL 	   M4 @  	   wDb9D $& @     !	*G%3A    J$ @    .fЄ  	   6d\- $& @     }y1h I1@     _EL    p葩	p 	0      p葩Tp 	0      r)jR
F( & h        q(R&*2@ & h        pH$	Hp 	0       IP'         }y1h}y1h    Jf ERAD 	   $& @  Rh3 	   $& @   wDb9D    LDI<    I1@A"	     Jf$dUD 	   HL @ l`Z.    I1@ ALZ;    Jf D    `     I    `     H    	 L  @   ZB    	 L  @   v&BɊ̐    `     IP'    `     IP'      ei  
    m @             9lĀ 
      m   
     q6&6        
     m       q8       'c     q9"  
 	   m l  
 	   di8  
     m     Am8      @s{ǎ    Am9$      #;q       pc       Am8       066     Am8$       Am<q    
          &1   
 !̓      cd    ZZZP    ZZZP               #    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP 	   
 De)     
 V    
 E    
   	   TI      9J)H1      8 rID2PRQ  	   F$2 D   	    F̩"(!(!&     	   D0@A  	   'A  
 	   @Ry    	    @B      	   FI

S" 	 0   	    F (.)!BI     `a  	    Fũ+(.("B<  	    F$    	    F̩"(!(!F       GR_U     GA @     G5EJ*QRR     FuQJTR     F$0@ 
    CũQ     xhEYEV9     G0@         F©"("("B<      FƩ)()()()2  	   F$  8      F$"8      @j R&Q 
    @h&F`      @        GRHU!Tx 
    G%G@ 
    CE9X     A	 R&Q 
    GQ 
    AR!G     B4<       FRTAR@     A!y*Q     ~BQ
"C     @HDRRd 
    CDQF      FR)HR@ 
    G!G      G*($9     @R*?@ 
    ARũQ      @BT	R@    
  "         
 a    
 u#  	  22`  	  *DJ    A|       &|     $$P            F)             a"
Dp  	   i$D       :[2A   	   ` @	 (           8 @ 0  0	          
 	T  
    H$     H     tbB  	   GS_UX @       G(|DD  	   GRHU)Tx   
 	   AR)G"  
 	   G)G"  
 	   ARխQ@      C"rD M    ZZZP    ZZZP    ZZZP    ZZZP     i  	     ( :6*E	p  	   FI

S" 	 0   	    F$       e    xJ2     `a      F#RH      B4<      @F'% c       0HHHHa 	      F̩*(*(*(*
?J
r     i     c)2   	   B A  	   @
(A A     0M        	   b!  	   22`     E           a     	T  	   *DJ  	    FRTAQBr    TJH     d    d    	 a>B           "    	 p#@    
 Q         	 tk      "     i`      D      U8          "D           BI         ZZZP    ZZZP    ZZZP    
 2d    
 "T     )T     	B<     B     Aq?      H      P F     @Q       	B<     " @     ?HB$!B     'A     AP     > D!1     A?  	    dK     F( 
     @!I! 
     I"/     DDC     "? 
    H@O 
     H@O     @DL$DS      "B       	!bK      xB      A     t(O      " @ 
    B     !r""<  	    @ 0
b^     A>    0x    
 T@    @      K     8EÀ          
     DCD!    ZZZP    ZZZP    ZZZP     <"E	"H      "DG"HQ3      <BB<     'A     A?      'H     '      $ @B        A2      A 
    >@I*D`     xA2     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP 	 	          ~@c(a     &IB< 
    !(!S#0     D/B"d     A     
 
    `d  
    ȄR$       @ @      @      @.1.@@     ~~ 	    	H$F 	       	    `Ϡ 
    D 
 	    BO  	    !)d8(     0(      $ZB$ 	    $     ?DH0 
    $A"|     @DH      @ D@     &b 	 	    @@  	    "(1( 
    !"          0(  	    @@"XR      ATO      7iUJ  	    ~PAA=     R     X     j      "%      j  	           @      !B0   
 b@AA#     "    
 i          B    
 <H`    
 V    
 bF           BY$      i 	     ,a        ZZZP    ZZZP    ZZZP                    DRID@ 
 	   R$!	D"@     "     J@     |0@0     |!     "\@|     BFJRb 	     $	<     R      1$      d8A     ZZZP    ZZZP    ZZZP 	    = @ 	    =  |  	   <B@ @      tc1\      ƙc @      1$!#       fY_!       = 
g#       !䢉##       f @      B!#       j[r #       9 ji#       9%a      zaa      9 '#       9!2$      aqH        $h*TɣI       JaD       (aaƩ       %aaR@       e&(PxBH`      r QF@      J(       D0`U      !HcT@       x
"B"0      JaD        8$H"       Q*8@       EVL0`       0((P%0      r B       <b$$$%%F<       Y*L2dɒ       =$(`Dp       8D

""~      1(G$G#       aa)        4L2dɓ)`       c& @xBH`       H`U            	         a$0           d!              ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP      "1      =I?I'       }$H$       x'<      z ^      c>       yyE^      !B      zN^    B      B      RQ      AC      w1      Z1      za^     zA^      }/      }(    @1_      m$H2d      b.     tb      \      ~       ~_%a      I~_       @      a^       A      ?0O       @      "      m8a      !?      !^  
    zB0   	     8Il               DH      $H"      ~       &L      <I$q     "1     =I?I'     c>      x'<     c>     !B     B?     z      a     B     B     RQ     !B     w1     sZq     Z1     za^     b.     ~      ~(a      @     a^     m8a     z_     a^     fX)Y      }$H$     !>     B/     z^     zA^     z`r^     zN^     آ  	   B           &L2d  
   aa      za^     zA^    	 tb     \  
   an      !>B     a      A     &L2d     RI#  	    8Il  	   r(n     c$PA     9J^  
   M&L2d      Ē!#  
  ! '    `     a7@    RH   	  r(n    c$0     tc8     M&L/    Ē!#       n       (c$H"d      
8F"D1      Ou       |JJJ{JJ      X&{"  
  X=ș,@      X9       I9        <B@3B4  
     ! `       ~Y?    z^AȢ@     a  
  ! G        $"0q*!"!      	      	  
  XH,@      DH      H    PB    СB    O!&   	  y$H܉    
$F    aB/`  
  *TR  
  (P  
  (,`  
  YPA#   
  y
     <q  
  RI3M`  
  %!H`  
  !?`  
  r )`  
  q#ȑ&4     F"D#   
  y
!<  
  y
!<  
  z^^#  
 
  x! @!HQ 0         
  zA~    B!1   
   l  
  !8^@     an     taE     tae     ɔ1\     tB     	     !O  	   y  	   c!      G     DC     B     	  	   G&d     B  	   I$       
   &L2d     &L2d  
   ,d$H!  	   $H"     sZq     1(#   	   !Z      iB  	   B  
     G`     DH     Q$H     c.     RQ      "           O            !     "D    	 )    	 I    Ç    
     
 /     
     
  @     
 =      
      
 "                 q     
 f    	 Ġ    H     I`     
 e%0     iQ$           	 %     	 %̖     	 zd     xr@    	 y`         	 yq    	 x`    	     	 .    	     	     
 c    	 k8    	      dA    	 xa     2Q     	 h    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    	 *"    (      Q:$  
  z_7D(@        >~a      .a    aa    .a    aa    .ax     z`!     z ^        <ab      $]a7@    (aa    ]a7@     (aa    ]a7@x    (aa    ]a7D     (aa$    ]a7LH       G        @ x                x         
  z^1       f  
  z^f`    D?> #     D z^        ?>        2!B      x'    b'z^       #c      .a@    c1@@    .a@      H !a      H  a    aa0    .aH     `    8`	C    |AAf    @AG٘      *!B|      0!O      B!J0"      B )("    )(
$    
$    )(
$    
$          aB'@    x  ?     B!	          aB'          aB'       B!<a       dɓ&L       a;ma       i2dɓ&H    a  
  &L2d        qƚe8       .a@    iYc  
  aa @    iYc  
  aa    iYc  
  aa1       Ffzaa      !a      Hfzaa      Hfaax       Gzaa      @ xa      zaa       xa      B>~     B an         >~      .a        >~(        .      aH  	  `     x(a @    x      aH  
  `         ax            z```a  
  z^ @      HB z```a      @B```ax      z```a      J```ax     ax              @         B|!A     @      !>B @     @     !>B      @         $b    aa  
  a@    aaf  
  af`    aa  
  a)      Ffaa      !aa      Haa      Ha      e0("(P@      f` RI#    
$H    
  b(       @!m<         2dɓ&K`      B!m<       2dɓ&K`      H !m<      D 2dɓ%       5       2dɓ%    c{@@  
  &L2d         D"       Tb      H !$1$      H !#J@       ( @      !aLAx      @B       @B     B   
  !? @    B   
  !?    .a@x      O!0      P@ dɓ&L     a       AA~ct      @4DDD@      F!      >F!      ~ha  
    91(a    "1@@  
  z_        1$a       A~ct      "!E"袊       "A~ct      BEQE      BA~ct      E"袊       QD@B(΀      fb/       2AD@B(΀    "E*1c    @z_ @      ")Q      B"pa      A")Q      @8a       
"D$H      B"pa       2
"D$H      f`!xa    F?c    H7@         
  z^        A         A        f`?>       f`      "        "a!x      B        Ba!x      b        V       fb        fb     >      @z^ @       O!B|      A0!O    B'@    ! !>     zaa  
  za^ @       Azaa       Aaax      "zaa      "aax      Bzaa      Baax      bzaa      Va      fbaa      fba    !Haax     @za^ @      A1D$H       A1D#      @@P1D$H       @@P1D#        Q1D$H         A .cD$G       e0D$G       e0  .cD$G     h"D#     h"D     aa  
  a @       Aaa       Aact       D$H        Dc@      D$H       Dc@        QD$H         A 1cD$ƀ      e0D$H       e0  1cD$ƀ    ,h"D#     ,h"D       @@@0Q"( @     @ a    "    
  a3Ax@       0Q"( @      Aa      e0( @     f` a3A  
     B
(Q  
     l$$~$$$$$  
    BA(a      F.    J(A  
  J(A      ` fX)Y      a fX)Y      HfX)Y      DfX)Y      I fX)Y      E fX)Y       e0 J$@       e0 J$@        !B
(@        !B
(@       Т !B
(@       ! !B
(@       Ȣ@!B
(@       !@!B
(@       e1	B
(@       e1	B
(@      0B z^      0 z^      h@z^      i"@z^      dz^      e"z^    ZZZP    ZZZP         |         |       Т  |       !  |       Ȣ@ |       !@ |    ZZZP    ZZZP    0B aa    0 aa    h@aa    i"@aa    daa    e"aa    f`.aA    f` @.aA        (P~
(@        (P~
(@       Т (P~
(@       ! (P~
(@       Ȣ@(P~
(@       !@(P~
(@       e1P~
(@       e1P~
(@      	$0      	$0      Ң!0      Ԓ!0      ʤ!0      ̔!0      f`  `      f` @  `         @        @       Т  @       !  @       Ȣ@ @       !@ @       e1 @       e1 @      0B za^      0 za^      h@za^      i"@za^      dza^      e"za^    ZZZP    ZZZP        PB
'        PB
'       Т PB
'       ! PB
'       Ȣ@PB
'       !@PB
'    ZZZP    ZZZP      0B a^      0 a^      h@a^      i"@a^      da^      e"a^      f`aa      f` Haa    ZZZP       @ AA""    ZZZP       АH AA""    ZZZP       ȐP AA""    ZZZP       d`@ A""      @P`ɓ&K`        P`ɓ&K`      hQP`ɓ&K`      hP`ɓ&K`      dQ P`ɓ&K`      dP`ɓ&K`      e0 "&L-      e0 "&L-       @ >AAAAA"w       @ >AAAAA"w       P >AAAAA"w       АH >AAAAA"w       P >AAAAA"w       ȐP >AAAAA"w      e0AB      e0B      A fX)Y      ! fX)Y        z^       z^      aa     aa      	$0      R	$0        za^       za^        a^       a^       @@P`ɓ&K`       @P`ɓ&K`    ZZZP    ZZZP    ` fX)YA    a fX)YA    HfX)YA    DfX)YA    I fX)YA    E fX)YA    f`! (    f`@(      !B
(D      !B
(D     Т !B
(D     ! !B
(D     Ȣ@!B
(D     !@!B
(D     e1	B
(D     e1	B
(D    0B aaE    0 aaE    h@aaE    i"@aaE    daaE    e"aaE    f`.aY    f` @.aY      (P~
(H      (P~
(H     Т (P~
(H     ! (P~
(H     Ȣ@(P~
(H     !@(P~
(H     e1P~
(H     e1P~
(H    0 P`ɓ&Ka     0@@P`ɓ&Ka     hQP`ɓ&Ka     hP`ɓ&Ka     dQ P`ɓ&Ka     dP`ɓ&Ka     e0 "&L-    e0 "&L-     @ >AAAAA"w     @ >AAAAA"w     P >AAAAA"w     АH >AAAAA"w     P >AAAAA"w     ȐP >AAAAA"w     d` @"AAA"w     d`@ "AAA"w      ' fX)Y  
    e(    A fX)YA  
  fX)YA    ! fX)YA    ZZZP      f`(V@    f`(VP`      1$a      x I(aa        !B
(@       A !B
(@    1$a                   f`    
 f`3      aaE  
  aaE     aaE    ZZZP    f`.aA    f`.aQd         |       A  |        (P~
(@       A (P~
(@    aa     Ң     ʤ     f`      \!0  
    DDDC          `         `    ZZZP    ZZZP      f`        f`3        \!B|      !O         @       A  @    ZZZP     Ԓ     ̔     f` @      a^      x !a        aa       aa    0B zan     0 zan       f`!a      f`3aax      D0Q"( @       |H @       @ AA""       @ AA""        P|     	       	           ZZZP    ZZZP     @@P`ɓ&Ka   
  E2d0     @P`ɓ&Ka     ZZZP      e0(0dɓ%    e0(0dɓ%        PB
'       A PB
'       @ >AAAAA"w       @ >AAAAA"w    }0Q)@`     h         ZZZP                                                                                                                                     m           k                   F(     b    b     (      pB @    pBUP      w                        $               ;3݊sр UU       @  ;3݊sр UU        ÞBQÞB^      UU        JR      UU        JQ^BQÐ      UU        ÌBSÒBL      UU        JR      UU        
     BH*UU  
     @L0*UU*     6H      3fD      ?~T     !      f"      ~*    "  
    %)$  
    "R       
      
    zYEA @              z    !R      p@]        
         Ip    $  
    z @        QIa @      b( 
       DD      z(P@     {׀            %QRD   	  :@  	   z@ ax    %QRD %QRD   
    0      q    z      󊤀            33ffDD      "        	                  >J  	      
    @          ZZZP    ZZZP    ZZZP    ZZZP    ZZZP          yq< UU       @@A yq< UU       က  9}E UU         ! 9}E UU       "q*" <y"q< UU       "q*"q <y"q< UU     "         ZZZP    ZZZP     /@     !     ta     B"     tb     tb     !>B           >     j     X     c    "    .H    tBC    tB    /@    !    ta    B"    tb    tb    !>B            >    j    X    ZZZP    tB͠    tcE    tc    #J    tC    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  
    z/   
    jM9  
    9`(d  
     ?   >      
    @}  
    ٲdӤ  
    D_&D  
    b͒ɓ8  
    "\Ε)I8  
    D_6D      [mo    v8a7@x  
    >C$`  
     B"$D  
     @     "D͝ @    r(Pʲ       |BBB|@@@@@     +   
     $$BBBBB  
     <B0@B<     (^     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    
 !    
 /  
             	 <    	 fP    	 !     	 /     i          {    
 @    
 T     a D H  	  C        `  `  `        A@@@@@A D P @      aEI       	 $BB$      `  `      ;hZhZo     8@  A #(       $$      m     @      @                         )J)J)@    !          !     /    	 HH    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  	    aFAD  	    aFAeA  
    <ƅ
(Pbx       a"C D$0  
        	    aA  	    aA  
    ~ r!  
    I<A       a"C  @  	  u'x  
     u4Tc  
     w6>66vg  
    Fhѣ  
    ,(0       "D    2!ʕ0  
    "@p       <pf      1$QA  
     HHHJMIII6  
    F͚iӣ  
     з  
     <BB<  
    F(P  
    i(    8ʍ4hlx      4oTI  
     33><66v  
    F7T  
    ab    pO_I      qU1      RZR_      [UQQ       0JRT$(xP  
    QI)%$    xBC  
    }0Q  
    T(0`  	   {L0x      Aq       RQ      1# 1$a  
    ]FhѢ    =7      {<      2eE  
    9"  
    zBGA   
    AA  
     c6*****jI      0P      4JS.q  	      @?  
    e  	     @  	    00       /@  
        F('đ*E      QJ)E(K  
  `*	" $	@   
    V(P  
    )E(RQN8 
 
    T	C  
    aA  
    AA  
    AA  
      @ 
 
    ?
b%QT*? 
 
    P	>J       <}
/  	     $     "(S       n   
    "Dp  
    i%$!B
     
     B"AF      B      ""T"n    ZZZP    ZZZP    ZZZP  
    GPR`  
    ĔR`  
    GP`  
    Ĕ`  
    Ĕ`  
     "BB  
    GPp  
    гp  
    GPRp  
    ĔУRp  
    УRp  
    䔤Rp  
    GP   
    $\  
    $I$K  
    RJ*U  
    J*S&M  
    "
  
     JJJJJ222  
     UUUU%%%%  
     UUUU  
    R*U  
    #"E  
    RD*U  
    VTjի  
    AG  
    58  D  
    $QEQK  
    Ɖfʕ*U  
    H,\  
    I $K  
    Tʕ*U  
    @*TM      "   
    ҥ2e  
    
[jK  
      UUU  
    @I*U        
    ĉ*U  
    
[Rի  
    Y$\      58   
    СBLl      RJ  
    ZeYe`  
    &UUUYK 	 
    >$5ZV9I   
     AA      r A+      : @Ft  
      @$8        FqIeUeIqF      $rVI    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     !      #B     /     !	W      $BB$  	   #B      
$     <1IB      E     )(  	   O
  	    @/             x       $HH$  	   #GT       $$  	   !	W      ""      (     %$     #B|     /     	W  
    #B'     E      AA      U/      ARE       $ZB$  	    ,JJ,  
    	,A8@  
    "<!@  
     *B   
    B>A   
    !RO           BT      !q       x     0@      C1@     ^ia     a     !                 .@     /     !      ]      $@      /       $t%.$      ! !       !        $~$$$      /!       $$$~$     !!      /   	      	    ,~~,  	    @?      !      "(     ~     R      $~~$     "mD     *      <Rա      Z     BK      }      _        BH       B  
    #B|!   
    !>Oq          
    #!         
    ! Bq           ?      0__0  
    Qr
(p        
    8PB;(       Qr
8       Q4H"E      Q4H"E      qVJ*UO      QWtX"D$O      QWtX"D8?     [   	    劐  	    
N      ")Jڈ      "    
     $.5$$$$t$           $DD$      $""$     $"H     %PP%      
@
@     %"("R        ``             F @  
    $E
   
    i  
    9A=b  
    AA     $$       :,(   
     B"  
    $E
       ~?  
  G$|@      ~|        
   'I        
      
    $H"D  
    D$H"E  
    B       	    @     p@ @  
     B   
     A     %\GT     i     o     @:(0`@    S!L:(0`@    SB:(0`@     nI     m&K`             !C      
K      b(a@  
      
    0N0,0  
      
    I$YI        DH      "      zaa      a^    HB!J`    TB
(PJ      ***********    HB:qJ`    TB|PJ      ***~~***    !      vp     Q}TQ     0 <     0        <     0 <     0?     0< 0     0?<     0     f`          e%0     a"H          AA           f`   	    GfO     f`  ?  	    fa?O      GfA      f`  	    Gfل     f`     f`f     e%0 ~      z     30      30      0  ?  
   0? 0  
    ? 0  
   0?        /      =     $  	   1$      z  ?  	   1(@   	   #    
      
   _      $ ?   	   Ҫ      bA   ?      O       	    OO                 
     
       ,#    O  	     	$HH$	  	     H$	$H  
    ii  
    I^G@    !LFQ1H    %Ce    AA      ,       f      f    Ava      ,f   
    3   
    3000    A0s4    M3C  	     	      
      
       
    f`  
     f`  	     	   E$     ~      A  
    GI@  
     $~       ~ ?      A?    GI      $~#   	  ~ ?  	  A?   
    ee  
    aa  
    ii           A       ?      A?     a     a     8O*      8(      8      8,(      8(      8MY(      8M(      8      8(      &O2     0          0     ?      @      @       @?                          ((       RJTR      (袊       	$$       I$OH              ꪪ   	     	   b `     M           M           E}     E           0   
    B!       T     F      #(      <O      1IG  
    PDHA  
    
$H(   
    zaa  
    aa     "           'ܠ     $UD     븀          ʸ                     B      PDH      ~      E~     }Z@     V/  
    !ֵ@  
    I$$I   	      	    (     *                               
    B3  
    03     QF3C_    I0sO    A?I$O    A?QEO  	   ?  	  A?  
  Gf@  
  Gf@    va     ل  	    A  	    M,  
  A@  
  M,@  
            
           
           	    @  	 	   ?  ?     ~ 	 	   ?  ? 	        	    | 	     ?  ?? 	 	   ?  ?  	      O    	 	    0       	    ?    	   A 	 	          :,(       А      1(a     "                >*                                    x                           $O     8     8      8
"       8(        A_ @      $$$$$$     EUGQ      ?     ((((8TD8(((  
    $0Ē{    	     	             vI$@     $I&     z                 @@p           VM_     x    "DB!    D"$H      ?UU?  
   q6<8q8       %f      0{      00  
    l$H  	       pp       b70      b7          #   
     @  
    c1      `      L?ɓ      M\pqՓ      n      p`       2d8 @     8[   
       @  
     @        Xh      2bŇ      {8lǃ             @ @       @_ @      ?Ƀ      Ƀ        
     @  
    !V!       8ի&      5j  
     AJ  
    qP       &2dɓ&O  
    >B!   
    !?Z!       MZ      xՓ&  
     AJ        @?Tp@      &L2dvO  
    !     	    !  	    QE |      tc  	    8(   
    8MY0`      L0`     8OQ      0`ɓ      H @      *Q     }      ь\      H   "
#  
    &L2d8        $(> @     I   f    I  @!B      "@     |Bg   
    8&{"Dp  
    Aل@  
    c       Ld&      MZdɃ&     f`D     f`(Q      DD0  
  zan       (L2d  	    fXV@  	    z<  	    DD0  
    (2d      fX)Y            D        `  P    `	        x? 
 
    D
!8p      !B;!@       8$G@ADP@      p @:T       p@=(:t   	   
 {@      B/ 	   :F#       $ OР!BB          @ @      8LqULG@      ( (Dd      &A1(Dd      &0!`   
    @>PGE  
      
    ! 	 	    (
(  	 	    
(
( 	 	    /(  	 	    
/(      9  	    @ "      0`    b       d' @_4	}       'o  Ɇ	<        @y 	D# 
 #  	    ?#Y$F$*?    ;1c1c         1c1a    1c1`        1c1    1c1c         1c1c    1c1`        1c1    6    333$#33    c        3333330    BL    3333333l              c001     000`    v 0 `   `        `  ` 06       @              @  
     X(                     	               
    !B   
    !B     8D!DH @     8D!DH @      8D!DH A     8
PI	""DP @    8
PI	""DP @     8
PI	""DP      @# 1 @      @# 1 @       @# 1 A     @    @       @    A    AAA    AAA        0 `      |@ DF!/  /`         q                
#             

"#                     @        `      `      @ G             8@      @8         (               D       "  	      H@
 P 	   
)E            D     0@!H       $ H :4p@@@A @    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     RJ$     s&K)$     wLX$$     L|$     ~OI!$     jak     cL(4     Pz% 
    !     DH     B     "(B     C      {FA'     yEȅ     {O>     yDyDp     (.3     4e(N3     4e(3      (~0     'RK-ꔤ     h"ĉ$     t|'      fLKc     0o     tK)8     2 ( 	    <p 	    s,p 	    8p 	    $p 	    wBY@     Pz%  
    (I$        	   K$ <     (        z`@ A     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  
    9JR   
    B1@  
    c!   
    !B~1@  
    kR     븀     }}  
       
    ^
(P@  	    ۷nݻv  
     P((
    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     0`"$0P`@>"       0`">$P`a "       0`">$P`a# E >"       0`"$P(`!C?       0`"$Q c# E >"       0`">$Q b #E >"       0`"$P`A"       0`">$Qb#E >"       0`">$Qb# E >"       0`"G%Q"bDĉ%$R"      D1F!bF!P     D& bA(YP     D& b	&(P     D1%b!P     D+b	&(P     DI+b&(P     D&!b!"P     D&(b&(P     D&(b	&(P     EI&dI&P      @0 `@(      @!B0`A!B(      @!B0`AC !Bx(      A
H0b A(      @ @1pc!C !Bx(      @!B1 b!C!Bx(      @ A0` A(      @!B1a!C!Bx(      @!B1b0áC !Bx(      @$LH1"bDĉ&$LH(      @F A1b#F A(      @#HL2da$HL?(      @#HL2d0 &HL(      @ B
2$dH#'@(      @'H 2\d	 &HL(      @#HL 2@dɉ$&HL(      @'HL2d!!B(      @#HL!2Bdx	$&HL(      @#HL!2Bd &HL(      @8-X(Qa"EA-[(     !    	   xB! @  `@@ G 	   xB! @@!C 
   
H ?  	   @ ሄC 	   xB!ሄB!C 
      @ @ 	   xB!B@B!C 	   xB!D"0!C     #!)HBB$!!	HBB           	     #B  `" @	$      #B    B	$       
(PB$ $A?@$     '
@	 $ \	$ 	$      #B	$ \	$ B	$      'JA @         #B	$ $ B	$      #B	$ F  B	$     qQ"@ȈD$ H|    01 ( `!aF!{`@    01 )b1b	&1`@    01 ( `! d&!x`@    01(`F#dF#v`@    01 ( `AgA`@    01(,` `p`@    01 ( `!g?d	O    01 )b9bF!`@    11( ``A8`@    11( ``AbAF    01 )b"c#`@    01(`` `p`@    01 ( `$dFI`@    01 ( `ybF!`@    01 ( `AdFA`@    01 ( `qb	&1b\    01 ( `F#dF#t`@    01 ( `yb `@    01 ( ` a& |`@    01 ( `> `	8`@    01 ( `FcbF#`@    01 ( `v Da
`@    01 ( `vH"bQFH`@    01 ( `!H`!`@    01 ( `AaAp`@    01 ( ``A`@     0`"$DPaCc"       0`"|$DPaCE~"       0`"$BPa "       0`"|$DPa#E|"       0`"$BPa "       0`"$BPa p"       0`"$BPa q#E"       0`"w$DPaCw"       0`"$P `@"       0`"$P` A"8"       0`"s$DPa@	s"       0`"p$@Pa ~"       0`"c$lPaP¡Cw"       0`"c$DPa¡C	c"       0`"$DQb#E"       0`"|$DPap"       0`"$DQb#E"       0`"|$DPa	q"       0`"$DPa C "       0`"$P `@"       0`"w$DPa!C"       0`"c$DPaA"       0`"c$TPaP¡C""       0`"w$DP`w"       0`"w$DP`"       0`"$P`  "      D AcFAP     E1b	&1P     D ! d!xP     DF#dFAP     D !g |P     D, `pP     D 1!cT
/    E1bF!P     D`A8P     D`AVB&    E"ca!P     D` `pP     D $dFIP     D qbF!P     D  b	& |P     D qb	&1R(    D F#dF#tP P    D yb P     D  `f |P     D > `	8P     D FcbF!P     D v Da
P     D v"dѕF"P     D "P`"P     D AaApP     D !`!P       CD"!!!!!D"C     {    ?{    ?s=    a    s=    ?c=    ?{}    ?s=    ?q=    v     #L2P
P
L2#     #L2P
EP
L2#     #L2P
EEP
L2#     #L2P
ŠP
L2#     #L2P
ɡEP
L2#     #L2P
EP
L2#     #L2P
ɠEEP
L2#     #L2P
EEP
L2#     #L2P
EŠEP
L2#     #L2P
iiP
L2#                                                        T          	    	    	  1c  	  c  	   B!  	   !  	   1c  	   1c       	        1c  	   1c      B?  	    B?      1  	    1            1cB!    B!1c    1c1c    1c!    B!1c    1c1c     B?B!     B?B!     1B!     B?1c     11c     1B!     B?1c     11c  	     	     	     	     	     	     	     	           	      	      	            	      	      	                                                                                                                       mm  
    	  )JR  
  /JR   
   ~!@  	   QEQE  
   EQEP  	        )JR  	   )JR  	    B      QEQ  	    QE_A        )JR)JR    )JR)JR     BB!     QEQ}QEQE     QE_AQEQE  
      	     
      	             	                       	  4  	   !      B\     C       @@     @@       BB$$$$BB                                                  UU          UU                            
                             
                                 DF"!Db"DF"!Db"     UUUUUUUUUUUUUUUU                                                                                                                                           0     }0_      ۰          VZ     W_     NNZr     M<     W]]u                                    ?~      ?B     0Ǟ     0Ē     1     1/                      ˼               0     0           #      <0     q40     ?     =          M     q      QE      QUE      8٨   
   0Ē0     8(      ( 
      8ڭZ      8MY(      8      8ˏ,      8<x      8      8(      8|(      8<      70               ۽      ۽          4          ,     C     8         1    <     8           tc      y     y     q          &L?     P%P     0ƚ     0Ŗ      <BB<      a      y      g      Y       <RB<       <BR<       <BJ<       <JB<     )(      E    
$    a                    1IG      % H       v~     8     /$P(
PI!Gx      D"E
A0!     #Ȁ     #%M   	     8      X       <BB<      $$fB      Bf$$     )0  	    $Ha$H`     }     }0      0      	,\`        
    TJ@     @$ A       $IH$ X       @DD `0       |     |o'F         f<m'%<`      |          D     }`     c      iq       ~ZZB  
    $H      EA|W@A      @@@@9""C
 "      ?# kD p@       tTO  	    #   
    8N"r  	    #       8"O"   	    !@@!      ` *KIi,NC     '-W'qT        9y>c      }&L      )}?  
           
           
      |     
      |     
           
           
      |     
      |         wϤ  
    <BB<  	    <BB<  	    <~~<     s  
    QF3  
    (0p      ]  	    tc   
   !>B:1     +"8  
    ]1  
    AYRI   	    ֩b8     YIII>>  
    a   
    ETA       $H   
    B
}      }&C d  	     ""te  
    zj     8p  
    J*T      *
"   
    $Q     V V  	    $      rMpQ"E      sHA  	    H  
    Q$Hw      aQ      1$I(      rM>}      swϟ        
    q&ώ            1y  
     p  	    m&(  
    !J!   
    8pp  
     (0`p  	    m  
    !!   
    8Pup       QIIIR~  
      
    aEA       q       q       J0      	@    	$$@  
    ( DDP  
    8PF(      	(	D (0I$e%x< @      A #!	 /߀       A c."	 /߀       A #. 	 /߀       A S 	 /߀       A s 	 /߀       A 3"H	 /߀       A s.!	 /߀       A   	 /߀      8| 80O$=< @     zݽ     0`"$EH@%BRI$<D!,      $I&I)@0       D#<  	 	   `0 	 	   `4 	 	   h0 	 	   h 	 	   h 	 	   h,      $@f(@0       $Lfc(@0              s                                |       |      xax        x       2_|>~|'tC" @  @       D   B"      
     	   8$>$A@        "!EJI      ??C      D9?uư8 @                              cȢX(lغ        "(D>S⨃`@ 6 S<        "  `$0 @B     ZZZP    ZZZP     (@ 	 ID""     !C!   	    ;(DwA        `tGeCD0 8  
   08%J,@8     8DD88  
     
 D      ( @           qP"     8H(C      8(      8       tc       ;(Dw     8       ptDc   
        '`       @ ( P@DA  	   8G  	   r A>   
   QE|   
   󊤈|         '@O(       $
$"'   
  98Ä|@      B$$B       DB        B"      
)_    ZZZP    ZZZP    ZZZP  	    a{V      a{^ڕia    =?jM     =?jՋFZrp8    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP      8        p?{      pg > l         pfG @ĮEe0    ZZZP     0`"$~Qc1><0"       2`"$PpaEq          >8x  0         ;c17 ?    ZZZP    ZZZP     0H $>~$HD         p?qsQH \       0	P(E
PY0      ?R?@J       #RQN(
L        f! <        > 8   
    	  (          wp? < 0      @\q      pq       6c`60al@     >cp>>ps$       * T@ * T        > | > |          8 p??~   8 p        > |?| > |   	    p8      L`@ ?yL`      =x.     88p8          "P+" D P @        8!O>  |         > 8#O>8 > |        ?>8s=0>         1qq1          > |? > 8 p @        
 " D@`0` " ( P @     ZZZP        
 GM     ? =3c         8}        
8D	O        qtDq
(E        uuEhPE         3ˡc        DG8><'/,<        /9  8         /9珂>  8         5  @         ݁݂  @        fBiWSAM|u0!3CP @         wwt8@         @16lwws86        ;?        2`?'? & @      	 H fo.T$H         #X`;8 8 p @      os<y?{`|        o9#^=y?{`|        C?|          ?0}Ǐ        $T6scO$(G      xM=5TG       =|ߏ/2      	sre9d           
I3&1L *          
.I3ল1L.*       	  f#;[nb3$|H     "yC-2	G       .|      '_}}|          a c
$9p @        a wd9p @     ZZZP    h@ p@:<x     ZZZP     xxx?     ?xxxO     xxx     ?xxxo    ZZZP    ZZZP    ZZZP       8"8;" 8       ZZZP              
   |p  
   8σ  
    ||pp  
    88Ϗ    ZZZP    ZZZP       # !<0c  	   ?p p 	     w       <x       8???        ;?'~     a#~O?~O	7O      l!    c336H    s0    s;    ca0    cf3    sp    8q98    xǞ<<xx     Ǟ<    *I$    I%@    =01    00c     ?_      ?}s      ?}s      ?oc      ?s      ?}s      ?}      ?}s      ?}s      ?nw۳      0`"$Pp``"       0`">$Q`?"       0`">$Q`c?>"       0`"$Pla1?"       0`"$Qcc?>"       0`">$Qcc?>"       0`"$P`a0"       0`">$Qcc?>"       0`">$Qc ?>"       0`"'$Sclٍe7g"       ?ߏ?      ?ss      ?s=s      ?ߓgs      ?=s      ?=s      ?      ?s=s      ?s=s      ? I'O3        ~     ZZZP    ZZZP    ZZZP      < 8   	     80          8?8#    	        p                      `      @           `  0 `    	       ` W_     	       bW_     	       `        !x      ?X      ?x         # c         0 @        g߿`   	     @ ?   @  	      o 8   	    0 / 8        0 #( `|? x           ? /?                       @@@          @ ` P@@@ x p      ZZZP         p x@@@ P ` @    ?8 p   㿞~        0H!?       p~x@ <     c      <"x_ @      8O|?  	     !!a~        |p         `<   	     @<0p @      0pσ>   	    a~8`  	      '  ?"      ZZZP      )(      @(I
RQS       !B| 
    ?	`d  
     &AX  
    tb!A  
    tb        R"     @ $       " @?  
    I.H    ZZZP     @       @      ZZZP    ZZZP    ZZZP 	 	    
((         DJ 	 
    b1F#I       A      $   
    (RI#1$0>  
    |I$HĒJ  
    	$#BI
03p 	      @  	      @        (?~
߂       (AP      @                @    U$K       P$_"(P@       (@0 ,@D@
             A @ 
         
  D @  (           @ " |  @       " D   " D        )JR)O      JR)J_      $HB!      B!$H      RP      E
(QJ)E(    j!    eUUVH    *I$    I%@      @lFUJT*P@      *PBU*V*`(   
   " @x  
   @XD !      
$@                                /        @                      GA                /       @     " O H        DKUxD    
    @  
    @  
    @  
    @  
   8@  
   8@  
   8@  
   8@  
    @  
    @  
    @  
    @  
   8@  
   8@  
   8@  
   8@  
   1 @  
   1 @  
    @  
    @  
   18@  
   18@  
   8@  
   8@  
   1 @  
   1 @  
    @  
    @  
   18@  
   18@  
   8@  
   8@  
   c@  
   c@  
   c@  
   c@  
   {@  
   {@  
   {@  
   {@  
   c@  
   c@  
   c@  
   c@  
   {@  
   {@  
   {@  
   {@  
   1c@  
   1c@  
   c@  
   c@  
   1{@  
   1{@  
   {@  
   {@  
   1c@  
   1c@  
   c@  
   c@  
   1{@  
   1{@  
   {@  
   {@       p       p       p       p      8p      8p      8p      8p       p       p       p       p      8p      8p      8p      8p      1 p      1 p       p       p      18p      18p      8p      8p      1 p      1 p       p       p      18p      18p      8p      8p      cp      cp      cp      cp      {p      {p      {p      {p      cp      cp      cp      cp      {p      {p      {p      {p      1cp      1cp      cp      cp      1{p      1{p      {p      {p      1cp      1cp      cp      cp      1{p      1{p      {p      {p                                  8      8      8      8                                  8      8      8      8      1       1                     18      18      8      8      1       1                     18      18      8      8      c      c      c      c      {      {      {      {      c      c      c      c      {      {      {      {      1c      1c      c      c      1{      1{      {      {      1c      1c      c      c      1{      1{      {      {                                  8      8      8      8                                  8      8      8      8      1       1                     18      18      8      8      1       1                     18      18      8      8      c      c      c      c      {      {      {      {      c      c      c      c      {      {      {      {      1c      1c      c      c      1{      1{      {      {      1c      1c      c      c      1{      1{      {      {      (+"      (
+(R      B @       ! D      AI      R 
P      @	 '         " O @   	   !	   	   #B|  	     
jPT*
@ 	     *
BPUk                             z                    Q o
P        
         qP @       @     #Ђ     #B     Q 
P     QЊP     Q(ҊP       /                $/  $             "               ""     .       (      @
 0       x 
   (         	  @    	 `        P	    @	 `       `	 @     	 P        `	    @	         ? :d	@ 0 !@       | 
@ 	 X<      @A 0 B@p<       h @@ `B$	@,        A	   @(      A	 @ @(       | 
@ @	 X<       | 
@ 	 X<      | 
@ @	 H       !   P 0      ? :d	@  !@      ? :d	@   @!@     8H   @       * @ #        @
8  
 	    @ P/    
 	     #       "      DU?     /     0     @8      /      @         0       8$@H        8Ą@H   
     /  ? @    
         @ ?  @  
        ?@    	            	        >          "(B!        GDDq       #ꐄtb               /         !B%@      #(B!L@       /      $@      "       .I5     @                    R!@      !B)       	           P       B!@      !B	      
        $          !B!>      B!L@              ? (       #(B!>      B%@  	             	     "1B!D"  	     /      	     "B!D          /                   /                                       /         	     "1(B!D" 	     "B!D1               ~  /        8   /          8           #    
      #  D@  	    `!?   	        	    `0`    	   ?     ?      ?H  ? 	        ?   	   A @@  	   / 	    cJB @  	      BR  
    kZֵ@     o  
    i i    =$)((<    $Q$RQD    6jc    eUUVl    5YS    ʩ    5YS1    ʩ    I$    I'        ?        Y    NhA     A!g"     "@0      0 b     @p)b    L.!C(.
0    6c    wwwwl               H @A   
        
      
@  
     @ @H0@D@       0       0 D0X     0'#H
@   
            
     @   @       @ @ @ @ @     @   @              =     (@0@" B?     <
@L `"        G@@ ` %      A@$ &H x     @ @FTA$DP @       ,)"B        @ PD$AF_@ @        "B),    	 	     2&
> 	     > (,&#! 	     
 
	h(+ 	     d4 	     d4  	     /  	 	    >$1F">  	 	    > 2LR>  	 	    > 2&
>  	 	    > 1F>  	 	    >$1>  	 	          H#b@D|  	   
J#b)#@      9HAh,ND|       9OoND|       C@f1@D|       F3`a@D|   	    > 	(J    	    >O       #b8      `	      YSeM%0       "dLq0      ZAh-             
 P@"A$     (@  A "        
 " D	F"8$ _         
 " D@' 	   X#h1cƌX0  	    bX
F(5  	    PjA`                                                          *"*"    ((    """(""""       x( 	     E     G       `@d	`        	   0          0C       $ 	 HĀ$ 	        L$#H? $       $ 	?C?$ 	         ` 	    ?      |C y8     G>	Op8  	   8       p>8p@    8(Tp@    8Tp@      |#0`!      |#!      | ADPQ!      | A!      | (0`8!      | 8!      #  
    B@      B!   
    B@        A          @      (SB      T@              CA     |?'C 8            @`@D|       BC!DD|       Hb`|       B< 	     `0F 	     `0 	     `0`       -  BIHJ@@      &@$A2@- H       ( 
  	 
    " 	   @0($"@       HI	$$BI	$$D     $@> @     $@| @     $@"0@     $@(Pp@       Hb"H>        $@
8@     $@
0@     `    $@*Dp@     $@*D@  	   C( @    $@*8H     $@*T@     $@
*Tp@     > 0 @     $@ D ?      <l     vadp@    iq` 
      DD"  
      	   "   	   "   	    f` G    !>B       f  	   CA    !>G|     c|          >      >   	  8$K" 8  	  8H8           "*            	 	    "
"*""("   	  8@@8  	  Q!Q    @D LQ1FD#     @?DQhBEK %? A  	 	   > 0">        (@  ID/        (@  A/         (@  c""(%               Vg  
     $	@$	@/      <B      B<       B<       <B 	     > 0h 	     b0  	      	    i	`            i	`       &K`       m&L      BBBBBBBB$  
   $BBBBBBB 	     oZ-Eh 	     hZ-E     $!*"JB1) 	      AA@`  	       0D
       @(A	"RJR&D      2%)%"HA@
@   	    	hd&DI)	  	    	I$&Bdh	  
 
    `("	   
 
     @0	B@`  	    
 *
      8
PI	""DP      0""HI@       @("@P       0 "	@
@  	     ? PD" P 	     
B"	? 	   
B"	? 	     "
  	   ?" 	   PH"!P( ?       `4 4      0A4             ?     
C?P     *?       f      f        f`?       f?  	   P ?   	    1(@f`  	    f`  	     G  	     G                 ?~      {     H      I     	 	   HS` 	 	   e	0`  
    `$  @   
         
  1!  
  `001  
  1&!  
  `401    @cC`0    `!ac      `0    C     ``  qq    ``  qq    1	     `00 !      ``uq@    ``uq@     f      ``F`    ``  q     ``  q      f     ``F`	 f ``     6|    l`|    f     ``F`  
  11 0  
  `61  
  11!0  
  `61     c@`0    c     11!a`    `61   
  q 0@0    q  00    q 0@0      q 00   	 	    lȃ0f 	 	    3`0`   	   1c@c0  	    A     0
0   	     0 	     0& 2` 	 
  0  	 
  0& 2`  	 	     ` 	 	     o0`  	      `? 	      o0` ?     #ǀ ? 	        ? 	      8` ? 	     ?  	    8`?  	        ? 	      8` ? 	     ?  	    8`?  	        (c8 	      8` Qp 	     (x@  	    8`Q@  	     c0 c c B   	   1       ? L	        2 @      ~ ||A       A       ~ |J@      A!H  
    0  
    a>~  	    ~ |  	    A    ? @         @    
  ~ |ff`  
  Aff`    ~ |      A    
               
      @   @  	     ?`0 	     @0 	 
    ?`0  	 
    @0       ~ |      A      ~ |      A      (@
      (
 	 
    >$1F#@ 	     (F#b1 	   (F#b1@ 	 
    BA@FcQI_  	 
     F#I   	     	      	      	    LAp  
 	          	     P P P P 
 	     @  @  	     P _ _ P P  	    
 
  
   	    ? @ 	     	 	      	 
    @P(
  	 
    
@P( 
     @ 
        
    !	F!   
    tb!   
    !Bы  
    Bы  
     (PB(P  
    $$$$$u$$$  
    &L2dɓ$  
    $BI!$$             `0g`0      0Ds1      1!`    `0011   
    	!$I	"HIBH@  
  &L2dɓ$  
    		$$HH        
    m      "Ȃ 
         B
! " (        
 " "(!        ( (         _        @        q8p       8pÇ|p@      >σ        ~>8        >>?       8?              q       @  8 @        @       ? * p         
    
 
   
 
   
 
  > 
 
   
 
  ~  
 
  qx  
 
    
 
                        `  `  `                 ?       @(@$ B    a@ ```        
    ?            q        QE        p>8p@       P$PQ"(P@     #       #8      "(               :         10      1$a$0     !Ј!          ?@           !
Ш!     "!OU        (AA(@     (B((     (@(     (@/(       UP         /"      !E/R!D     (@/(     (B/"(     )EE/R)D     (A(      /P         ?          p""p      
      p" p    	    ` a B a           $ $                      @ C O   @            
    / D@       ""      
     ' "          p" p        /     ZZZP    ZZZP    ZZZP       @
'   
   8  
   @(xA	"R      x       A@H ` h     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  
    !O֤!   
     &L @  
     EUDH"Dp  
     a"C)  
     8$H6  
    tBp!       Fd  
     8
#(   	      PU"  
     |Lp  
     |L"  
     EP`Dp  	    beef  
      
     8$Oժ  
    ҦT`@>RJF0  
     <D( @  
    t^/  
     >T^D @  
     a  
     8*"  
     VZjժ  
     Hl$'$$lH      2dTp@  
      @S  
     }V0dժ  
     $H2dɒ  
     &LDp  
     qj


  
     DDp  
     &L2dɓ 
 
     P$p  
     ~ϓ)B  
     P$Oɓ     !!dP`!   
    Ye0   
     D"8  
     $A  
     Q4"D  
    p	ð	   
    py 	  
     8$pD DD  
     $$$$$$  
     C\(  
    IP  
     _l  
    J馚    ZZZP      !	Ԅ      kB       EUDH       a"Cd       8"      tN.       Q-      8,        PU"       |L       |LȠ       EH      D-jh            1$zR      ҥw      8~      t^.      }UU      !>       8       VZj       Ii2M$  
    2U         @T       }VL2j      Q]Y]      kF.       cFB       DOH      kZֿ 
      s⨑      }_       Q2     !!dP`lxH@      kjS      .`F      S7AB       Q4>      p; ;       p{       8$DN       P
      F'<      T      eZq      Ji    ZZZP  
    A8CA  
    a8'  
     @ |  
    yQyA     aH       9F<TdL  
     }0P    ((0A    ,((    E(H    $(H    B A  
  !?  
    58aaL    aB  
    aRH    ZZZP       HHH00  
     ,J6l      VJ*(  
      K$0  
    G       !  	    M&L2d|       q'b      1$ 
f       }5j      B?    !j     T     ZZZP    ZZZP  
      8HDDJ1        8DDJ1  
    ((      F>  
             !B  
              `B  
     < !fx       <  
     x@       x     A@  
       
    aa      a  
     $$%$$$       $%$$  
    $D      $  
    )(H      )(H  
     `$B       @@C  
     Y0`      1  
     2bÃ      sZq     0  
   ~  
     80`lp       8(  
     BBBBBBBBB      $I$    a    
  a    
    9`l      9`  
      @         @  
     D(       D(      Rdɒ       Rd|p@  
    	!$      !B       T8  
     T8  
     E&L2dɒ       E&L2d       G     !>  	   B      @  
       ?          
   ADG      BO             
              
                 <D? @   
   <D? @       T!Rdɓ&L-       T!Rdɓ&K`       0x  	     Fcp    "$D  
  "$D  
     <bb~       <b~  
    zY!B       zYB     yO  
   y 	   D$ @     
  !!"@@@  
            !B?  
    !B	      B^      4""""`      4"""`      @"   
    _   
     BBBBBBBBB      I$I$  
     T2        bC       <Ƞc       <ȠD  
    AE      A  
     &IQb$X@       &Ir$X     @$O @   
   @$O @  
  )(H     ֺ     TTTTTTT       G6E#)g#@     <D @     <D+TÊ       ?m$[    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  
     ٱ!"D	$  
    1!  
    c!A@  
     6lDH       D!  	   @!@    
     A@     ĉ@P     $H@  	    GF1p     $H 
   EDQ@       I$ 
     ED_      A    q 
     EDQ      !>R  
    a1@      H"$D             	 
    F#@    !	JR     _A 
    @QED_ 
   ED_@  
      @        $H    Q|A  	  Q|ax         QE 	 
    F#@ 
   EDQ4     P&    QE  	   "!@      H"$D  
    !           B/B    _@ 	 
    BF#@    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP      i       8(        8O*        A                     ׬@      "F1      b)D  	        	    AA      1$I#   	   PC
       
$1A  
            !       8L*        :,(            $B      !	1       A      0 0       
$0 
    0  	    *"   	    B       P@1  	   (P(  	  ٙ  	        	    	    G          &`  
    i i       8(        8      c  
      
              8ۨ        :,(   	    <4#)<  	  !O        A  	    <5#)<  	    	$I       "F?      c?      *"       %QU&H      ʘ       %QU&H    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    	     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP          x 860|~1c        4Q <     >Cl `  C  
      `<}`       `o37 `  
 	     c6`  
   1cx0  
   `1c?00       ?` 00       0燰 > 3  
      <{1` 	 
     `0      b|M?`        ͉6@a0     06@a0      m=1       `نU`7@6 p       |`f? `      00`1      <? 03pjp ?Ç        >6 |00     0 |     8p0`     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP      37c`      3 c01    3 c61      37 `      3 c21 
     0`<}1c      ?3 xό    ZZZP 
    0?0?0 
    0?00 
     0?0??  
   0?0?p80  
    0?0?>     3 `٘0     `6w@0`~`     ZZZP     30?3 0     30?3 0  	    30?3 ?      30?3  0     30?3̃>      30?3 0     30?3      ZZZP  
     Ȍ  
     Ȉ     Ȍ      2`oU   d   
     Ȉ  
     3`oMG( P   
     2`oG;  <     ZZZP 
     a0<6~ 0  
     a0<6~03  
   a0<6~ 30 
   a0<6~8  
     a0<6~ 2      ` lٛ6?  ` 
     aHg0     ZZZP 	     c1f3 
     ٷofmf` 
   ٷofaf| 	     c0 
     ٷofagٖ| 
     3030 	     c1`0     ZZZP       0Ü?0g0c0c0c       0sc 8 86|1c       0sc 8 860|`1c`       0Ü?0g0c 0 0       0sc 8 80`1c        0Ü?0<0c0c0c       0Ü?0g0c ` `    ZZZP 	     a`      ap  `    ap  ` 	   a       ap  |      ~< 	     a`0    ZZZP         	     	 H     8~    	 ]Z    	 i)`    	 ʐ    	 <iD    	     	     
 i    	     	     
 r0    	 B     	      /    	 q    	 k_         	 i`    
 #@    	 ayp    	 ip     #     J     $    	 i    	     	 "Z     T      }UP               H     !     H     !     B     
B      9	$      9$      r !     c                      p                                                  "        "      	    (BH       3   
     !)       
+~     H       0!d               0` 2c      c&0              33?330          33            33?     ~ |     A    %$I$$     $$I%$      0 0      0 0      0 0           
    z`@       i`     i    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP 	    p        |~   @   @                	   @  @       @          H P ` @    $AA    @ D"`       @@  ! R    
    !    	 C1c      @  	  HH 	   
 DRA     
 0	@          @	 " D!B! >    @ !@! DAp          @ " $P     @ ?@! DAp      HH       @ $ @ '         @      ?              AUAA      
BI%       AAF3AE        $@   D`    ZZZP     ?  BH " !       	  	   `0`0      @ 
D"	 ( @ 8        H@!B         ( 		\        $"B       B$ P $AAA P        $$`      D"        "B( @    Q$PARqDA       "       D
J )(	B                       !uQE@    	 &Dȟ           @ B          A>AVQA     @ A DE  @@     "|$~ RI     B	GC       DCdL    	 &Dȟ     `ZRV!1	iK  @      " D  @!$P            @     @           ?     @D         @         "             O!        @   	      O!     
P@X     8?   0 `       	  CA       	  CA       	  CA        !B >"!d      @?AZQDA     D $I     	  $Ȑ!"BD)#Ҁ$ O       @@"D%  $ &p      @@D_$!?HB      1$3I(S R        A A@    	 $D"DI(       @@ @  #DHP         @ @?    @            @          @                x    @    A               x      1   
 ʙ      y @C       ?@  ? !@A A              A         B   
  " B C     @?   0 `    
   `     e*JQuHB         A$E$	%)$H"        ?          ?   	@"       D"!	H	  @     ?@ ABER!E I"T        @   $ D @             Q?@ B      /"|      )~>"> ($*2       @I  @C      DA?          @  @          ~@	 ?@@       B?
 $JA P@       ?(B?B!   ?      @BB  @       @ $Q))IRS        @  AD pp     @ " ?D@     @!!	B       A D px?@@       A D p&@ A          %HGBT%B       G ? !B!"B       @?D@"@@       @ "D@# $PQ       !(PJ
H
֠_߂      BD ! @       ?(B?B! @@    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP                  	    @           0   0 @ & g    $I$P       ?                                         P@	 " 1 x     "  "  "!           0 P   @ @B            @ " D   " x @         
 @  @           A@A@AH@>      @
 P  (@
 P    AAAA       A AH     @     @  
    
&  _          @                            ?       @     ,F @    aax      ?@        @                  @@~       ?  @@B    	 a          `?      `   0 `           G  @    /         @                B@   D       @?A@D 
 #`  	   "	I          @@ !           @@  #`     ? @     A               @
 @      @  / @    P @         D!   @         P @	 " D$P      ? H?      @        BCa!? @          !(AB
P         DDD""""B!D"       ?      @          @"     (     Ca!0O       ?   @               A !@              @            x      $ ( P @@@    @! @!@! @        	 #        D@            
           `@ ; 0 8     aq( @          $H @      $D@ @ `      @ G @                @              ? @! H a           @  <        @   F       @ 2$              p? @   @ A            @   @@0      ?   `@	 " 8 	     `0`?        (@KP       BA@`       ?  h
@H#0             "H@  "           ?@ " D ?       ?@	a   0      A @ @! H       " D@D"@        }@ $         ?      ?    @ 		\     @ @       P          P	 " Da|@ @       B# @E (  P       8$D"D "D @      @@0`bI @   B       0@  f 
  ,      A       @ A !     @@@       " @
       A @  @         @@  @@A          ? H D            @  `@      y $D	 $ JA*e        @  @AD#        @ A  A       !B A  D         BD!BD!BH! X    C!0      ?@ R          ?@	   ( @    @        8"Db@      @ `        "" D@F       ?H!"BD	$$HH!"O 
          
0@ BP @           @  "          @ H$ @             @B4    @      @	ŀX        O@@DA @        @	 @ !            @ $         @`	
$D	  @@      BD H`	@@D @      ?DR"B  @     ` " ?D!B      `DYSV!2p     @!H             AD$0"$N,A@ @      @! D? `8 @@      H"$"H"$"H @    ` ?  ? * "(         @@          @!          @IX     !@  !@ 
   ```        @? @ ?               @ ?@! B       0 @@!RJH @         ?@ &@D      !	Dr@p @     @ ?D"! @      @$J*dJ           x!A    @       !!	HB@!@           	"D$I!$BH      8  P! @@(         a#H`P A A         "Ȉ""DD $ @    ?@B"z        '!	O@                     @@daD P_ P@               ` "      @PXhbQ!, P @      x"0 ( d!q     	?@O A        	(H$"P@          ? #D         @@" @	 $ 0        @
3  
       !!   @             @      ?@  @$I@)a      x 88? #D                 
(	"<0! B       ~  $H @      ?B!C!B     ?       
 "    I R ?       @    $ D"    X            @        " I x2C      	 ! 7@?B         )	J)HJP!B%      ? ?"  
     @D >>@D       H"$"H>$"       @" |  ?   @       ?@   @        @D  @" D       A B ?   @@     @  @  @F      ?@xB
J/B*	5p@      ? @)"BC	 P$a"PC       H13 !h@P      C          ~ 8 L  @     ?B  TX @    ?>"#   @
          	?A$I      ?@0  G8  # p     b{؄ 0 `   @    (e8_ G@?     @B LDo       D! ~     ~!1
G" "&      ? ?RI$      D
R"ʕ2E!.EA       $ @P1C)b      %1Q`1!  H8         A.0Zc$QP      @! ~  @?D@ 0      > 8 Dp
d*p<F     ?B*BX @ ? Ha     @HQG$!KIC!J    $O@	ȑ>|$OA	    RR /"IHF        C !DBAA 1Á     >  ȥF")
B`      ?@@  !!       %M @       G	T1!"Bʆc      $?@"} /PJ?         Gπ=>
m) H@     ; U HD$J    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP               *                   *      "      "  *         *       *        "   "    *          " "     *          " " *    *         "   *    *         "       *        
    "     *          "   *    *         " "         ZZZP    ZZZP    ZZZP    ZZZP          1    i     "D$Q       0`$P8`@Ɓ"  "@ p  	 
  "P  
      @d&	@`     (  0
 `       @@@@@@@    A     $$$HH!"@    !"BD$I"I             AAA    
(PB
     (PB
/?    c9|    qcw          ` ` ` 
          H!    !H    
$I$H"$H_    "D$?    a    UUUUUUh            										     8A     
 f"    
 wfD    wfD     ?ـ@         <<<L0@ 
    <<3<@0     10      33flx8lx      0 b  
     0   ?              ?   O       ` 000 03     i     	 i    	 i    i                  pp    0  A 
    AHD  @ @    @@ @             @        __AA!     

"$DE

PP"$DPP`A           ?       @      @! B ? @! B       " D@"?" D@"   	   "       #b8     "H@             m q  !  m       :dի    ZZZP 
   Eaj$0       ,> $T1`$ 	     @05   	   @$D(    
   @0       	 
   @@@pHC        pt @B> 
 
  A3/&
c        !pA0-"1        y! J@       B<DB&@  	   π@?( p     G x @ 0     B @ 
    @"XH @       @@`A      
P(G   
                    ""       ? 
      Nz @~          rz   @   
      @ @P"0p 
     $! @ @P"0p      p	  @    P	`| & @          |       H(!!K  |     '  >8    8    '!@@ @  @       @px<@" @A       "	A< b@ D@     &G `8$        @cG F8!    
   . @ 0p  	   ɂ`          @0 @  0        xxy   @ @ @        t<D"      	      8@       B$B88       (~@"A <     &8	           |*#!$A$         !0#Q#      "dH0       (t $#$Tp      P(@B<0Dp       4P2@B<0Dp       #BP"A          O
 @@A         $DbA*@!       8 @ @  @        8R@@  @        9RC  @      @B       @@B   	    !$   0       x $"      8PH@BF(        4FQ҂dG<0Dp  	     !D9>!З       x  DL          '	  B       !x9B"RA& 
   @		DA 
 
  xD`        !a@    
 
  zqq     CRIaE$<       	xp 
      @ @Zx      `၁0    LRaaAAAA 
   #@ 	CD       (l A0B$`a   
   F@ 	@  	 
  @        0P)1       &@ p4e!      BA8 9bp    , !;@H ?          "A(     A @   @   	    3	&  
    A(     ZZZP    ZZZP    
 )@    	 i    
 )@    	 i          	0 	   0 @@        	   B@@    
   $ @   
   	    @@@ @   
  AB 
    @P! @   	     < {  	     @ ~   
  |$D      @@H! 
    B|BB$R       PD@ P       '@xp @      !	P@ ^    	    	""	      "	Q"  @         @sH       "	Q$    @  
 	    @ >p      @G @        D>@ @       )!Q	>}    
     `   @ &        L$BL @  `0  
 
   C  P"0p      Py@  @ D        @c0          "	QbG   	   @P$       )T!!   @   
    |!"1       BA
 RPA   `       ?        W >    @     "QB      Q"            HJ!H$@         G      @       	GS <|   @      !@  	   BPDB       @A               
     C90L      <@ h4؄ @     @      A"@      @
"@ @        0@ a@!!    	       @ 
      @ǁ @ ~ 
     %@ǁ @ ~ 	     @           	W   @  @        `	   @  @       P$@    	    @	 (	 H    	    	 H	H   
    B| P$Q@0       PD P$DDH@ @     `F P$DDH@ @  	   τ @d       @0`       @ 
     
A    
   C  @  	 	   	> @         G@  @  	    9      G         @q 	     @   
   G 9p@     
(P        @H	"$D"b  	      B"  
 	    "x   	   PD"  
      @     @D @       $ @ 	   @    
 
     @       BA
H|<!  @ @   	  q!F  	  @ #<D      @	    @ @ @       A@"Ǡ" Ϣ            @zx @ |        @ q   @       o          `        	0 
    @ @ @    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP       @    D @     ? @" 
#        `       @ @ @ @ @     ?BA!!@$E @           @         @   (     "A!!@     ""DDDD""             @     ?@   @          
(PÛ @    B"!          @            DB"D?      (( @       @  @   @ @       2b 
   ADR @                       ! 
   P"H              @ ?        x @  "      !@B       D@B  B  
          	     D$"_ 	   @D! P
     D      
   @   @ @        	 H@"`|         @    	 H@ $ 	 BB            	  P   
    ( `       ?@B !B     H@ $ 	 BB       @   @  @       !	HBB       ZZZP    ZZZP    ZZZP  
   '          	   Ȅ !@B  
    `"0(HD               qA  
     @ 8#!  x # x     ! @  C     @Ap?  
   O , @G  	    /H !<  
   ($8   	   AB
ߠ(9  	    ` @ #B9  	   H"8|  	    ~  @H@HFJ;  	    @~8 @8@DFD88  
   G"@?  	     `(@        QEEQEE  
   B|!DE"|      `   P B  	    @@! JRB 	 
   (A   
   @#   P ,  	    ! *"         B  
   @# @     	   C@  
   @!            <  ! B   	  @     6I$$I$@   	 G>@     6I$I<I$@    0ADA@    #			I						    0AAA@    #		I	I				        O           >          2 $!!H~~$       @  A         "DO    	       @       @  P?      @ 	 	 y			      @   =   	   " D  @           @   @     	 I$H      @       ~ @ @ @ @#B?  	     @ A B        ( ( D D#      PHHT@T@b<A  	   H 8|      |H
H
HBTNb3  	     @""#;  	      '#"88  
    (_OE(~@  	   ABD!DE"E  
    AB"H""     '@$@'D  @$ A  
     B"~BBB~B       	$! BD}   	    BHHyIBJBz"L  	    2HHyIPJPzRL/  	    	%>DG       	$OА! BD}      P _! @     RE$^zI @  	    		  A@A  	    ,  R(|  	    ! BD   
    D!Q!B  	    	(("DAB  
    ("!@_  
   00@G!Ha!       ( `0      0 $	%B!B(
	      0  A"E!"BD
	    @! I?  @!  
     @8  8"D"D"D8  
      A@|         D}          @#	 I$y	 	      @  A"!}       @  R!!!        2 $?UȢEr(D$       @   =!!!      ]     AA    ZZZP          !S           ~    
      ? 	    e4x       	                   A 	    ?̖ 	     @  	         !TIM     ($B       @   L	      BR	L	     
(PÛdƀ    " D@@D&"`        @B         @B 0D           
          @?            D0 
   P"H   &                A  P "p       HBB$!!		@      I$@I$@I#    D@B 	 F  
   B '     0`DA 0A`  @    ?4,c          @      B![9      !      A(e      >"      ~@      ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     @    I$j 	   @  @  H          ` ?       
      @ @ @ 
    @ @ 
    @           @   @  @A     @ ?     @     	
     @    @        DBAB   	      @     | 
       @ @ 
     @   p                   ABAB        
      @ @             @     
      @ @ @ @       !J0    $I$     !! @ 
 
    @ @?                   @ ?    @ 	   @  @ 0      @           @    
 @ 
    @ @ @   	   ?    (?    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  	  vRB    @A$0        	        	    $	D$  	  ' |      `      P  
     
P` 
 	    x@  	   w Ap     Q 
 	  $ H%
      E% 	     `0
?    01 ( g& `	& `@    01 ( b b? `@    01 ( `@ d@`@    01 ( g& d@`@    01 ( `@d	& `@    01 ( d	&@d	&@`@    01 (`A
(a&@X `@    01 ( aF@d	&!x`@    01 ( oPaAA`@    01 (|``F `@    01 ( g& `	& `	@    01 ( g@d@`@    01 ( ` b`@    01 ( a aF!a@    01(oсF	DbF`@H    01(hF`@H    01(oѠFF`@H    01(oсFF`@H    01(`F'葾F`@H    01(hF'葾F`@H    01(bFQGF`@H    01(gF'葢Fq`@H    01(oF⑑F`@H    01(`G⑑F`@H    01(oсGGF`@H    01(oѠFF`@H    01(oрF'䑗`@H    01)`QFy`@H     0
(1lF#      0
g"ZMfJ  F      0
F4i$1 (      ZZZP      
   0o    D       
  0 `    D       J  0c &  D       
 Di%K   D       J 0Dg#F D       
7` CF L D       
!0O`D       
$H0a !# 6L  D       
0H`!C!, D       
7`@ D      0L 0a&!L F      0
H1(d@A  F      0
0aPđ#"&, F      0
 `¡#b6L F      0

"6`@F F      0
3`@ F      0
?A1c#F?A F      0%3f!),B F      0
 ~1eF# F      0!D1>c!C!_ F      0
!20`@&L? F      05c#F G F      0*xL2FgI &IM	 F      0$M10c(QV$P F      0*$LI!h@&L F      0JLDpj AC @ F      0jBZ*k!C  F      0* `A F      0JP3e?JM F      0
B1l q	 F      0
/"Y1aF F      0
'D1$bHV3,H F      0>L2b	F*MT F      0Bj8qS1B F      0
1cF  F      0"3`@ F     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  
    H"$>" "     @ &0D`#@F "       @ (A`9A "       @ (A`A "       @ )0R`	@&J "       @ (0P`A "       @ (P`EA "       @ (A`	#@F "       @ (Q`EA "       @ (Q`=A "       @ (Qc"EEq "       @ &0Dc#DFs "       @ (Ac9Es "       @ (AcEq "       @ )0Rc>	D&pJ "       @ (0PcEq "      D  `	& P     D @ d@P     D @ d P     D & d@P     D &@d	& P     D 	&@d	&@P     DA
(aF P     D F@d	&!xP     D `F P     D `F P     D & `	& P     D @d@P     D  aP     D  aF!xP     DсF	$aFAP P    DFP P    DѠFFP P    DсFFP P    DF'葢FP P    DF'葢FP P    DDF1'QFP P    DF'葢FqP P    DFQP P    DQP P    DсF	FP P    DѠFFP P    DрF'䑗P P    EQFyP P    EР]'YQhՁVD_~     GM6T-` XP     F0`"       @{bÀ{ A      @   0o  
 "       @  0 `  
 "       @  0c 
 "       @Ԕ)2Rdy &ʀ       @ 0 c#F       D  a * "      D@faBP      @$H0a# &* "       D0H`!C!*       0A`"     @ A0a	&JB      @H1(d@A        B0aPđ#"&*"       B `¡#b6J"       B
"6`@F       B3`@       &2	Lg     P%3f!)*B"       D ~1eF#"       `!D1>c!C!
_       H!20`@&J?       P5c#F G"       @1xT2FgI &IK	"       @GH0ba|QUV$P       d1$TI!h@&J"       ITD1chU&&Js      GH`XAR&0p     Da!	       `/E?IbU6P       W$TO3k"ũF#
y      GEZhEPB      a!D0bC A
        AA			@#     HBj8qS1
B"       @ZA0a ? J"      @  0 `@ "       B0>`@      ",`"     @00`P#
"       D 0aA!
       B 0a#HF!"      GhA_      @ ` F"J     Ĕ?`AQ      |(7j߁?JK       BB1l q	
      E%ab!^     E>I&I$gVUYT      B$O12f֑"X       @ (Pc<EEq "       @ (Ac	#DFp "       @ (QcEEq "       @ (Qc"=Eq "       @ #HoE	 "       @ !F4o#F "       @ #Ho9	 "       @ #Ho	 "       @ $I4o	&J "       @ 'H4o	 "       @ #HoE	 "       @ 'Ho	#F "       @ #HoE	 "       @ #Ho=	 "       @ g"EEq "       H"AD$ H"A@    !!A%     %b     %     %b     %b     !AAA%B     %b     %b      }RQI}%RQI}%RQIE&^h     }QD}DQD}DQDE^     }RQA}$PB}DQHE"^     a;
/B(@B      6Z/BP!Jd" D p  
    a"( !  
    r(DaFDaK     %@&
0a
 @A     $A1A
@A     %H&A0	DDA     $G0A
@A     %A1!
(@A     %A&1(@A     $yO0}$@A     $}B&!2@A     $DD4!
@A     %@&0@A     $IO0@A     $!L0
@A     %@F0!
$$@A     %B&0
 @A     %D&!0
@A     $}B&11Q
@A     @0!
@A     %%E&!0
@A     $O0!
@A     $AB0 @A     %@0!
@A     $=N 0=
 @A     %@F20a
$$@A     %@F0ARDA     $@&0
@A     $QBF!6	
 @A     %Ip2
@A     %@&0	DDA     $AED0J @A     %A*2IJP@A     %@&0!@A     $F0
@A     $!B1J~@A     $@&0Q
@A     $AC0
 @A     	%B&
0A
DBA     $G0
@A     $@&?0	J~@A     $O0	DLA     $IBF0@A     $E(IX@A     $D!1
P@A     %O&A2@A     %H&A0	DDA     H%D$7
DBA     %@&0!@A     %@&?0	@A    ZZZP     RL"@     >0        )C!RA`  	a`    | D0C   }QD @      (  @    
 
       8  ( |   A$
 0 @     b       @        (a
!    @ 0      | P|  @"x)H$( `      !    IH	     Pi0           P	 0    @      @HDID@ 	 	       @IH  `    @II  	 	         A}(A)               @$"@$               @>   @   >I         @              @  !  	 	       @D!   @z@I >  `       @              ||   A2tRt '@A     @Ң$z   @*E@       ||      	*U`	b      @$|@"       @       @$|@"   " D!$F        < $D0  AJIPAI@I8O    @I	`   @ /  @    @             @	@	_     @      	 (
      PPEB@@ @IH	Qa`      |P A   	G$       D$p    A$
 0 @    @H@d8      @     @H@d8  @ @ P @      @$A        @          p$   @   	      	       @P`       `
      @                      R` @ 0       PDIH @  
  `       JI     @	$"da       JI       P   @         	HA       A%,      ?5,h   (B*Eb      5?L	 0      @@
      	 x          8A  @     (@
T     | 0 0@  " )* A      !a   P       **   @ (O       	`   @ 0       @ xPH  `  @ xH`    ()@$        @
 P     P    @0  @      @J@P   
      
R     @  @       
P      @      $
@        @         !")*LPF   AQ       AJX    @            
 `      `    !)*A   !   (         
 `    
 
         
 `    @ 0      @QB@ @I	`      @QB@   
 
        	U !     H     @	E!Q  x       |!A     @ W""
\ap       ` 0  o    `     $ `     HH0HH 0`   RHIՈ          @   >I        		$Q ! Q @      @0(0            @AFQTA`    @ P @  	        @ P @    
 
       QO    @ 0     	 Y @AFQTA`    	 	             "D֎-*@,x              ( (|* * ,    D	`     	     @      @@@DH0P`    B     P&  @ ` @      C$ H"G"}") HU        " ""  @U     C$  "!|( @ʠU     C$  G"|") HU     D$ H"G"|"! JU     G  @""|") HU     C$ @""}") HU     G  "A|$  
U     C$ H"G"}") HU     C$ H"G"|") HU     !0"R!H/RJ%/RJ@U     !D!O"D$O"D@U     !0"B!O"D"$"PB@U     !0"B!/"B
$/RJ@U     !H"R!H/B
$/B
5@U     !xP!@"B
$/RJ@U     !0"P!@"RJ%/RJ@U     !x"B!O"H"$"H"@U     !0"R!H/"RJ%/RJ@U     !0"R!H/"B
$/RJ@U      c$$$DDDU U      b">""""B"B>B" *U U      c!>!"!"B"B>B" * U      c #" @@@U U      d$' @@@ U      D!P@e&PB        @ tz2@a      J!DQ!
(`          *R
d蔢RZ8        0B")RC  
  {H! Hn          #V
UQuP         x!@#TR
DjU          8!@#TR
DjU       	HBB$!!	HC      
 		RHTHxUU
        0ߩ-WڤImu֖(rp       @G

((PB"/      BU! o)
)/&)     **?w:'*  D(D$ D$Dz_      @ (O"`A          @ "("$bA      @ ""/"EP^          @ Њ*"jA        R HDQP"Ѓ      `!#h!І"H`      
hq(d
(`      xH`!sHa!]>           'QB@*(ӎ        
  )6Rb:)*2z      @P!@ @          @$"@$"@      ~  'H D@        	HE")"1{`     **        FJBTdB!8        	`$        A"D"IHQDc       Ai
K"E)$R       rA)%xgE"I)C       I $KI!D$I %      "PB)(DL          RJI)$K,l      BtR2HI!(̝       R"I	((Ц#L      8  !5	(IBJP      Rb&)1I  
   "EJI(Q$ɀ        ѪZZZ      8%`+X
U         MDVBЬEa+P       <  < *TRJ*TR@          x  4"TRDJ           Ȉ          |  !4DTASBEHJU        <  < *TRJ*TR@          8  4"TRDJ         p  Ȉ          <  !4DTASBEHJU       
%@* T @!D @       ^Bz@U<	 !!D @       @@!8       B	S8d@Џ#F       Cd
8b@ď#F$H       qB$	8g@ď#F$         @7%8cёFE4m      LR*UP;@` BA       <M|UU`;H@D   
  (aA	AB7        HbAȁD$1  
  "x(D	H^ހ        HjAQʁT5     @A(H"SK         @d$QB"      ($H"D(QC؈         @ ԊU"E*P       `A")"R!HB        45HI")RD    DD@+(Jk&K	 $        DD@+(Jj&H"$     "D	QD%JH!#H         DD@*JjJ*$       #F	QQ"%PJе$@       #G9URIJ	$@      H 
H* DHc       qd*U AD)L^      aEATREKU    QS       8r$`A@'        @  vp!`C
7      p @  v
MR"CHN         <   "@D
!       	$'HQ!!BA	2    <   a҂*a           졈8      Ha!H! H!           $!!	~B       	
"$
00PP      Pb&:*V2IPb        OD"ADBa`       `     bHI!$~I      `   !xHA!@     ` @  q)R(Q w        `     $ `	B          걪       0@ J*DJ+           Ī$$$$$$      Ha!`!`!  
  %H"TSH"U         #)FRܥJa#F!      Ha!	 $(`!      xZ@D      <   adhbRD"       B"EKȤSHU"DD     $AD@T!QH@V      $ADAVT!QH@V       H"AD H"AD     a!AA    aa            a    !!AAA    aa    aa    LT(EKQRT/D     DdQ"HED$Q"OD     LT(EHDR"D     LT(E3QBP/D     RT(E{QBP/D     ^T"EsQBP/D     LTEsQRT/D     ^PHEHDR"D     LT(E3QRT/D     LT(E3QBP/D      c>RJE)K)DJa)̐@     b>X"D$#ȉB%"`?ܐ@     c>RJD)IB%"a	?ސ@     c>RJD)3)@
a)̐@     dRJE){)@
`)@     gPBE	$s)@
a)̐@     c>RJE	$s)DJa)̐@     gB
D)$ȉB%"`?Ȑ@     c>RJE)3)DJa)̐@     c>RJE)3)@
a)̐@     c>RJE)RK)RJe)@     b>X"D$H#ĉ$H"d=@        @&RD	Hb$IɔMx       @ " D  @ " D ?      !BD"HHP B          @ ?   @X"$E         A       @                      @B   B@        @!@        ! BL   `        
 " 0   0D          (                 `          ?    `          \	 E@" C    ""            A D pp   @ 8          0 0	 #       $H
,ņ  8      ?ࠀ>1  `       @!          ~@	    0D            `      $!?HB ?p '      @     A	/PG      d  8      " $T$F`   `          D            8     @! QOPB  p G     @(I 	I$TH "Y(!T       DĭPP p G      AA   (8!    D>>C 0  '     A") DD"<        OϪU
(@_H Q       </	IA?	   8      	$$p!      @G>
D)SA_Ҋ)"Q      S}QDr=k      ;D$O
	`       B  a@  ( @     |Ą
  @@

      $$HH!'䄉	HH!"BHBB          B!B@D`        D!E!AB            " D@"PD         'H!>B       D $1           $̂a      'DATADDAGD        
 " 
bc8  p       @! ( @!@B!
       /	$(H! B@""D      " ?(U(@A@B      !  @ A P@       /! F@)$ H  "@D       ?C!@ E@      " F!* @!@B!
     	  '@? (  @ A D      "@D"U" DA$Q      @ ?DLR$J( "@D     . A")!B A!
      ( A2U)$H%PJQ@F       /  ( "@D""DE      / ( @/A P@     @! (P!@D@(I     @! H#?@ADEDQ      _ ADi$RQI$AI      H"	%}h$$K!D	HB      $ A%H$PH      	  $ $H( | A        (! F@(H! B@"BE      " BЃ?@@?     @! $H) @D!""D(       /P! B"Rt%(JP"RDJA     @@ 	$)J%$RH"
     B
('Ji)$JI)$      ( ?D)| $@H @      @ _P 'AA
$       I!$$$&$  @DI$D     @@/AF)" B@     @!  @ I@ADCP@     @!  TH?āH?ā        A@ " D@( p      " !?L+!E!"B        A($"HD!A	      @("&( "JA0     " DA/YI"EI!B      /A?A/@`A1      $@ARI/E(QB(I	!      ?R$I$RH$O A$M%H#@      /II%LQ*"R_I%D	TH     @?*" C$      $8IHd#H\!B$I
      /A?S!B B     @ I"J"V!B B     8'?D(" _	!
     *!*R(c  @G       ^JI)$Ji)$CIJ$b     	  $x&"LD"$Hh}J     	 $@{"D)*UP̑"D     $B  R"$DH""DD      /ࠄ@RQDIDR     @@/! F)$'H%A     8'A?*V##@@?P@      ( A? @)@ 
"      )H%&( "J `      @@?A	f+#D !
     @"(( E !QB<      $ HADR%|R"$D_"      /Q""̈S  @ B A	      (?("HG?      ! ?@)'H!? B	     	 (  (h!`DA
B$E       "@J)` _I      @ ERR%H/DD     	  /%&~L 'Qґ?"DE     'A? *"$I`?"8       '(& WE
A     	  '_ (D#_QD!A     $$QQ>Y'$@OQ"}ITG     @??A(  OA>
        D?         '_$(" OA	 D      _ L
IR(F ""DD       @}"MUW*U U"E     @(I!,Q#@?      @$ / '@  	     H) I! ?IQ$#@I      AD Di}$DQIE%AI      _DI%E$DI$D     	?AF~((! G!_       @z)P'I@A$yDa!     	('H'$)T("I T)      ! 4( @!
2c     @@$`1 ) /xB!)B      " O5BUQT"EP *J      /B!쒙)S$O(Q&Bx)a     @%@@F>D( _I       /xJQ5LkT !B)bR      )Rq~I'$I(Q QE	"     *VH* S$SЄ	DI     $@DADI!TD       " A)P!@N{(P     @@??(H"H0     	 'xADF )"(GЈB"
      /P1"W2R?&HJ!"BW	      )HJ"(S @G?I      ( I Q"DA!B	       /R%"@!+DH     @ @_B"LO2S!~D!{I	      DAD#&?#$TAI     /DA>DS$WA      /xTQ<HES @  "      " HKXO$_TRU     >/I	B?P #@ B?J}      /xB%")LHQ'T@?D      	@)!4L)֒%H_!
     	$ ?R)('H!*RE
c      D/b" G=JD     @/@$Q"@G*
bR      #xT=BIUQP'A@{      <xB!TR,U	">_!UbyKH     @!@DABl U.@ I$JJ     @ @_%BOR%|J*EQL<     'A!(%(Np9ZB     P'UQ?ULUS  O D     (_"" U/UT     $(~A)򪍽/"(_|UBʨ     @+dIMm6ZD _!/$>A~     $ O1P&dC@!}Ȣ     E3QP>  GJUpY         ? @ B B      } @ υ
( S@(       >|D"$Gυ

((PQ)*Rh@      @ 3_
%(RQ$AA(       'B"?*(QPA@       
 " 0              
 " C0( 
  ` p        
 " 7      `(&I5U` @       
 " #4E?B!      $? H    P     @ @      ?DB" '  @      @  B1H1f0       #Ȉ""||"/AA     dD2!d?  @     	 %@    F      CA  @?A$8 E      ?@ B"H?@ALa     ?@ B! yX=$Jʔb     E_@
O$K         @ @@@@   @        A        
d(( Q,2@(       @@ >>"'Ȁ      D!BOB$(aSF$L"     @ G  @@        @ A!D ?        A@A	     @ O  ~	R!B? B           A!B A     G@A}P_IER_I$P@      A"D!A	      @   A	      ? "!%@	"$DI      C@ @ 
B A6     GJAEP_IER_IE$P@      A? @$G? @      @ DP'        @ ^'B@	@`b3L)@       @  E
R%Ȉ/DD     !$@{
d$P!BH       $A?A I$hQ$BT'J!     GH" IHD       H ! D"T@      ?@B<
&wЄ)T$      F$0(b#        B	$ B	$ C @     BD!BD:PAA        	"%A	$@BPE		@B     " H$"H"H"!`        $ _$ D!BB     @O$BO RH%"	@    D $A"	L` B      R	$ B	%$RAO@     @HIa&HD!'HI!HB      @HA&@	>$"H"!@      $ @	 %PIA@     $JI*$ @I$@I@B      B	%PIA%PIAPB      @HQ&"@$ PIAPB      $J]&"E	`     @HIB&JI)?JO$)`B      ?D&0LdHGB      D!%D$HD!P     $_$@HA&DIa      _A%_鈥"JP)~Q@      HI).H).K )`B     $dI$J@	"_H"P"      B	>&oo>	@     P PI RJꔪRz"VB     	'H	?jJT*eb      |!B$ H!AB        D	%TRUIU%,`"      He) @	_A      PIIu$RJI#$ `"     @PI%PI$ G	*$B      PUIw$PB]A%rE	|P      @U)e%TI`JYID(H"     >_H<QH%PIZLB      He) $ R	H>@      G	+'"BHI&"JI"D     $_$ `)?$ B	*$D      !)RQĥIPR%?J 7`     *%$JHI&"JI"D      _A% %_$F     (TI!%z
O!$HIH     P_TEH% ԉj	`"     !CD U) @0      ()J_	$*'HpP$Q     I'Au҈J"\*UR"      iIZHI
_@P"     	(hI@ݑREIy |IHQJB     "H$PzE	%ܑBE	PAE      T PRJ+V*-h*2      +TT $I'@       ^J%J^) %RUIU^@     .Ry%4C)SIB     BPD)P)HIĄ`B     RJ/>"|  @0      @	UGAI\)$^z     !B/B
w$(Kސ!~     !HE@ @0     DBH	!7H"K-Rb      8 $ BD"      @đDI$HJF !        @	|$RAID
D      @đDI$HJF    @      $ HC/R_	RIH5$TP"      @"$HD	&H"dG     B $BI	$BI	$EJD      8B	>$"H"D*D     ?   !      < H($ ~HD"        @@$IU'vL̘1b      <| J뤨ZɪD!BB    AA$QA	GUL@?@B
0      !"B_ɉ%$RPI}DD    A?T?&	? LB{F%@D     !CD U)@0      !BK@UWUZ?~@
"       HJ$o*D      "E(e$&@Oq>e*     "  CHD$I$J       CR$U%TJ7J      @IQYADAD"      @ȁ_A GDU      @ȁB O*&II*          B #$P       0C! A     @     HA!H  	H)<Ă*     Q'R~'@GQϽJTg     ""@j #" #    D!Љb%HRB	D"C     P&\u',    %PII$RAYEf    %TII$VAYIf     	$DDI!     )$)D/B ?    !22;行+"!H     	 @$RaI$#     B	!V)G $!     @AADDBD!D"        H @@ " C       + @       @      !#$4QB     @        @ $$I>H@    P        @@p# X@         ?OB        điD!D$DbH      ?A 
"
BC _A        ?@ ?"D/B A!"      ?@  /A @      ?@ ?DD"$DO       ?@  'H $@H      ?@  "D A	        ?A  @B&Tȁ(`      ?A 
"
  OA A!      ?@ !"	"'H"$DH      ?A A@ _$*       ?@  B	 /@  !J       ?E Ĉ$@H"D       ?A Ȁ/@ I$O       ?@ !B!
R/@!0D8"      ?B  Bs	 'PQ*H       ?D" E(_(($8K      ?HA  ^P"`c     ?@ *ND @_B#     ?@ AW_˪U>D QITo     @ D @ D      @@A	?~* #0A     A D#@@? H}	         @@A	?~ `p"	B      ! (?IQ=$EB	EQD     ?  H@  " 
 " 0     ? @y  f8@  0       B @ ?   " 8`         A D pp     ? B"BD
5(j!TBIr      @~*SJ*RHA     A@B@QD# A D pp       !(
O	I(,PG"EA      < A(OȀ?B(QC"	!A      @ O  @@       $H"$"H"%	$       " "" B%" @       @@   @   A0    d$ H2@$ @ @     ȉ"$"L*$#ȉ"A	$ q       @%BA	$BA% @       %bI$ BE$D      'H	 $HO!$@     @	$$"RII&"D"$?@      x$ B	'E$H @@     @!%
`"$BE$P @       "2	Db#F      <$BA<$BA|$ D@     O$@E	$PBE$$DC       @ 	$8HpQ"$          I%)QDe)'YAA     P H"$"HBA	@     	$BA	?BA$ @?    	$ _$DI! ?     @<!' H2Ad A     $ @	%H"$@     O D	$~J/)%(@"     |"$Gπ                    F@A     ?dY
eT_@e       O	%RPIA%PIB=LH @A     $"(   $I8DQ      p?  H?@@     $$BI$ _$         $L
B	'D"$$!?B     =))IKRR<% 0`     x% _@% WPB	$!B    |$$&]ۚL|$$$!     P/Q	DJ]OE%$!PA     
$(RJe)_Je)    	$ RJe)ҙJA)P@      d         @
$DJQ$zI$$@?    ) 
@)!$D@         D @  DK!">      O	DD   &HO     " H	 O    ȑ,DQ      &$HO@@@0c8" D      ) 
H)?C  @     |#   A  `      ( '"TReITRD$Є!    O%JA)B_dQT       a&HL B$        	$B$I D      ? BBA? @         A D@ ?       OI%$B	$b?%         	@%|P	PKIRH	%!@       !$BH%"   &HO      _!"D(   &HO      ? ȑ,DQ           &HO        H  &HO    ) A	%GҙQAP@      )"%'$
  l     @(H)_d _$D         	GK2&$" J        @
*UIU#ET)"ZIÀ     ? D %@? ?    I%VSDe9W9TA! @     CeqFQYdD@@      @ 	?I$I$ Ä$       8D%BTaeH/  ?    I$@IG˩ D       zR)zR*KԔ"W@u@
      ( '"@ze)Rz8D!     @?B_$G1%( @1     @:P)@@$  3     A
"$J#AIE (         @   K)K J@    / IH|@ >EȘD1    ȢY| @$'H     " e$0,         $DF
>"E &HO    ! D H& ȑ,DQ     䈑D	?d %    I!$O!$I  @     BBJR)KA_     ) 
H)? 	$ @      %Sx%"zP_@$ ~      !%DI!%"_U%TPA      @ 	?%H	+D " D      "A
R%$J0AC
$     ODG$DA8P	 D@    	$
H)?)   @      ~	
?!B @ 0       &RLyR%%Kɔ&Wht	  $       @ %
JJjխKT{ДC    ҙJeO %	? @      @$VA'H/? ?    )PQe@@    ԩRJD	' @      ?$>I2LS*tD"    ODA	?JO% @      He!P	G'Щz( H@    I
%F_DeG	!A         O" (     xD$$<x   (aC
P      ?_@%@YD%@"	     ?䁔
O$DA/$ @       8	*$J#$$ A       )*RoL A/Ä$     $4JY$ 	$ @	       BHQ&#_U%TPA      {E#(Q_#! B       	?A$I!KĤQ) a      CI'I@%(@?     %SxQD!     ODDII/? "     x<<#(%IB}(@      @)$ROI}I A?A%     P/I)?I/%@	      <)*D2J$#5P>	@     BBJRH AC
$      #|IR$H A/ 
 "        	~$H      /$ A	$BA H@      N)?Z.
@"      A@'  "DQ    BЉDB ȑ,DQ     A "(O"H DK!">    8N!/>Zk媖^!k$B"    PNTV; +)$@K        ( H2DD*U     h	(
"h(      >C=UZUjUUWuaI D     E
_$DA/$ @     􄯧DJRTL $? @    JdB$)?      ZMzy$BB/P @      {*TI!%z@ @@     A B i ? p      8$R_$TJQ$DP <       @ (W"E!*(R A     @ ?Á3? "DQ    H	.DZRk"K(S    	Q	R'A      	'_'_I%      {E	"%@ %@     	'|ye<I)'̤I A      #EY"4$YV#@R A     HOf`)wdT\GPU      @JdO
%O H     	
I}V"EJU+Y@    	
BH(
D(Q     
:+ޡC@      	J](TR꠪
P?      	Kʤ	"$(KA' I       W)K)z^J#Q       
3)JvUkV_S}P"E@    ?I>j	B	!P     A%ܔPI$ JpA      J_	?%HA        䄒Rs^$RTP     $B	$ĕG$DP <      Z_STCȅ"@HD     @D0\)"HU' D@a      @? (WOE      
ȉ* KE   I       
I9KʚQ$wU '     #|IR %JR)KޔR       B5(P@A_?      (j*h .      Zqk_ר-jP!D     *J'(SOے5?@HA	!      @5kUUWMV      !/B  	'?	܈>      >N*j
"
      } AUW
}~#P!eDE     8@F?I*P!'@DK!">     {)Q_eU__eUUA     ?i"+h      ?%^yJ%F_ %(      ?"J)jDR?Mb 	     	K){ҔH$C ?D       ! O r~WT      x%. 
*O.+Ay*     GE jIUW-UP!ZCb     c.A)"P>Bg     Q)Gu~@       `?F$0(b#!        a&0LBd%       b#"1d#A        a(Ć5E̬De@        `"E-h       d0IdKA        c2	̂g G    rUXUb%Z        o2d8%|F"Y;0      @ADDBhF!"      #@ $ @@ (         @@?DH"RD) (@@     " D@?v" D@(2@C      xGx  |O(@     !B Aߑ"D!B N! B     ! HA!DN       A $?HIA B	~(D@      #D!_ "@D@ A     ! D  	D B.H      " B@$H <O         @@_$"HO.H E        G"?H #D!NHBB     @ #DM     ?      !BH	%I<     ?     @ A H$*HD.H%        {)?    ?     " O	" B
"       AD'!!?       Aux>     ?     ! BP/"$DPЎ!(E@A       G	"?DH""D)^0(@@     @ GЂA@$R  H 
      @B "D AP>PA      @@@@_   @@ (        #D!ߠA  @G       @ "A	!@#A AȎ(BA      ! C/ߐ)J!D 
      !B ߠA A@	("@       pG D" O	!      "$DPDT  @G        G!B  'AANDI@        @@@D_  A A"HHA?!      'A _Ą	X0%PA.(D (        @@?H"DDx׎IBD     P A@_UT"uW   A       C?@"DA!Q       !OA"D!r'   A       @G!?$"HEnH$       OxR)   Ox.R*#      @$ A	$I'JW$DTCB	!      " G_ߠ! CN) f      "HD!߀@#EPH*U       ~   @?A$xR @ @      )BQD?   ?          ?     @ G!? @O"        G"? !CH E       <OߤI 'H^/@@       G!B?I  O."R        GA?JH  @N 6     ! ""_	DA%L":DĖx  @      O߄ !D?       ( HOߤ"Hp'	           ?@ ` @      @C{R"CH?A        G!ߠ @O
$     ! A<I%?{Ȕ)#D<IҞ-(j@"     x}3$(L    ?     !$BH!"_)H*DqҎ%V       AB""Fd۾"(D@       ^|	(P^W
D(       @@$?O"EN_(        @H AAQ	) a     (H>I0  ?       GA%?JH(#DD"(D@     "HDQ:$$/D@NQH"      @@Q_A	#D$Q @       G Ȁ  CH      ! Gߤ" p  ɀ     %AW
IE  ?       _QO}$B*UPDDA"I	!     "D yBT_D%@  A       |@#B"-O+~         =*
_)R!D @       y?y>pTR0  @      @@@B"^O2!~D!I       @$ ]u%H,A$* QA      ! C!?(d "D /Ȑ?B      '@  	%J("h?      @@ "H?@?@@ @       G	 ?B)#BI T)     !(CTOȉ"DA!E A      AB?JH #DN) 0     'H@)"_߄	%J._ȑA       O/R^I$ KRI_B	     #D!$I /UTUCQ       @@:$U#ET A     "H0oJDɉ)(G P @     !O !OAxYAa     !C؄)?ORu$
O7?d}DU      !舻"de EC      @O!ʪ!OGbR         DG! C?        D? B>
@#        88 "   ?        ?$08     @E!BDG@Q  p       @@!B @@      @±bd        @ B/|N$D@`       QIIvAOtMRUU]	H!q       C)$$IN '¥@BDH`       C/ O'B?"`       D`  @! B         D` AA        , 0  D`     ?     
 " 0       $D)(
  D`       DD   I @       " 2	 ?    @       " 1HB
          ( p      " 7?@@?       @@ @A@AA       !$BH%"  D`      " C14@        " 3        " 0) } !Aʜc      " 2 `_?       " 2	~@qSDQ$B      ?"z z( p      " 0 ? !"      #ttQSE@     ! B!BQ"L 
"      B pb A p8     H A~ B@HPAA$AP      #@	$ @!(        #A OĄ	$$H B!B        @@	 @$  !@       'B@	$$ @a!A      !B/D!B$"H% D      xGx$ |(a       GO'$BDĠB	E!      @A?HI$E RD)B     @ A O($P@(aC         G$	$$H Ra!       G!OU%$HPʠRb      #@@	R%"D       8C	 $ B!       @@	%"H      ! G%TRUU%SDU)U)x5A       @@	H$$HĐ"I%       @ A/؄	($!       GB"_@%'DA)_A       @@A H!ID	")(@       G D@I}%$RDE(B       A y)JR)JS%Mi		DA      #AOI^
$ @!(       ?B!!   8       @I$RII%$DI)%_A     } B  C!  8       #D/D($P@(`      @ C/Dމ%J$PB(a     BB_$ (_      #@D*'@!       8GU%T`      A#A*
A p8     @ @@	(Q%0@B0@      'B Oτ	"|$8!       #AOI"$         @@	D%| @       @ GЂO@% H
       'A@ĪU%T0"H       !B OȄ	I%@BHa       @@	I IE"I)"SP@@      @@AOH$I$A@?	@       @@	I%$T A      !B/D? $ (a     ( H@	HY$Т"(!(        '@ĤI%$H ,      &B A p8      #@ Đ!B$ "!     !@ЀOIPI!'T	#I%@     @ CO	6$@        !B Oτ	%$Ha@      @@!/ R"$B 	
 b       @BOʄ$         @@	ҀI !@	(@      @ @GȄ	$ @!       G 4 RII%$D)%R@C     @! GO߄	~%`B!      @ $JT	("A p8      #D/ĠA%@      '@Ą	$B B     ! COI%$H A     ! A|	)_REJ%J) )@R     @ @OD	  ' @(`       CI%@) `      C"_A%%$DI(Q(@       G JR)K[%II%)JRk       DNЅOʄ %H      !B A{"D)S*UQL
"D@      "HD/Ā	 $@ "H? B     !AA	$ @	$`     @ @OD %HE        @OȄ%$(a      !B/Đ!~$@R(aB       @@	"$J# AG	      !B Ȅ	 %H      @ @OD	D% B 6     "D A%JU*UU/Jb,*U       #DD% "Ƞ       #D/ĤI$ H!a       '@ĠA%"Ȁ!"        " P"@       BH!	/) %J%II%)QR     'A/Ȅ	%$"蠡E       "HD/Đ	 $ H" A     HOe$ A p8       @O  %!     ! CARSJ%%K%	DAC     @ @OD	 %H        @@d$H!'@A      xGP%,HbH       @@@	$*$K BCIDR@      @)A%J%JC.CR!      APO  Đ"I%       ! I$KfTI1%$I       @Oʄ%H      #@A p8      A	g@$I="D	I$O@       O!\J}*UU+Q"_J     @ @OȄ	"%"Ȥ       A$I	'T$@"?       @@$  ")Qa" <       SAeD?T"A p8     !$D!	/A$ K$I! )@R        G/I%~H"!2C     !A!  "$PI*        GĀA~|D !FB        GĢ%| "HȠ"     'D	|$ē!"      !B/Ā	%!!       "HD/Ā	 %∈      @H_?DB$D@       @#8D/ĠA$B!B     !OO	"&  H       OO %`      @ 
%| 	R!      A R%JK GC!~@      @AO)$N'!LA#80C       x@$	y% HQ      @@@	Ҕ) Ha4G      @@@ 	?҄'J}$I$IHA"     !B!>OUY+UI/D!>BJ"I@     !B!>I/R'IQB$	D!       @!	/%HQ#EQcI?A@     !R?H*'       G!}R)R')JQB8Ҕ)@a      $DOȄ% @!     !$BH!/I)RJ$Iq%	V      #DD%$ 򈈺!     !B(I$%TI)"I$ T)       GA) $I#D	@       GI $I"	G#AA       GI %I%/y@!*@       O1OT$BV-Q_$BIJII!       G		J%*𔂡      @A DR9J$@	
"A      
$(A p8     "EP_Du.
T+UQ*BVB     ! C!?d  Ȑ?B      "HB$	"D$ "Ȥ       GЊ!~ PI*       OI$]*T*T)%_9  
$I     !$Ba߿*@$      BG8AIR%J'H IBA      @_? 
+P99_QU˒U      @ U$ JE"1IC	Q)`     !O!I 'L#D!?B@      @O	%JA'@*
bR@     !D /D%I$!_#?R     $_8nު
VH      !HE@      #DyJRHI"!O("     %(O|!=RQJ'H IBA     $DIȨ)w@K]WpZ5A"R*VB@|     !BH	/URUK OS"A     "        @         P!& 8    !B     !@  @@
      >|D!0B!B?ߡR!C!       ?"I   @      I~$O1HD!B$QB       HA!?I1%A@	TD        C* T|	P#"T      A#@>~ D O      !O ?A0@ B         # Ȉ  ||@@     ! O r~WT          0                   0  @   p        0         @         0@@   $ 0       C  ?  '@           @  @? 0 ` 	 !       @P4Y "         0  D!$ 0        @   @@(          0 @?         @P          @ H  p      A 

G  A D pp      ~C @ Ѐ <       C?DAD      G    ?          G @          | "x)_          A S$I A1A	      "DG          A?~ 8`iSDQ$B        O <x@!D ?           F       B$          O""D|BEA       G @?H>        O	D" p        !       BD	IT< BRDI"      $$@ ?@ 0       RQ  ?      @     $@2       #D?A&"*!       BH#A
DA       '	R0V)_D#        Cτ>@ACHA#       !?A+S"O        @"ϒQ? D|P EQA       C  o 	      IJLHID@@0      ,_䈉?U< 
CĈ*"      L
;#BDJ$	,        @ 	HH$H!0@          	"$$HH!!BA(P      ?@ C   ! ! B        ?H!  !0?   (       ?    |  (       !" DBp      " ! @A!CF"?     "(#@AOET(PEQ
     "D#AA
_Ԥ)@Gx`       C
( P@E) Q        @@/څ
,)$THB) Q       @@
>) T@O) Q        @@	/҅$
~)PR@ATBЩ Q       @@
D*XPB") Q        C!Ѕ?
 )RG) Q       C	/ȅ
(HQCBi Q      (@H	!?A(|PB"E/Q#      @@I})RB" Q        CE?(pQPQ) Q        @@ȅ)(RPIBR        CE? )"R(!L") Q       @@@/E?@+TVJI!       @
@)T@_) Q      @Q	/J? (|P @I2RTC      ?@  $D@&     ?@  @_(        ?@ % D@%B)       ?@ 
"D(_@) a     ?@ 	@ @_A&     ?@   HA	        ?@ 	$P E@IDT(       ?@"  /"H
       ? (`"  –H
?     ?@#$`"@@b       ?@A'H  A      ? O (Db8      ? O " (B*	$H
      ? /0"-P^
TBQ)@      ?@ x!~DT!&     ?@  @Bq"$uȈ     ?Ȣ$(I, HQ?DH@     ?@bG?$TY$Ё/DH!      $""G
)MF' A         ?@"B
,i r$U       ?Ȉ/-ؠ" _c     ? /,A	@")(@@     ?@ sB '8D vDb#R        !B!B?     ?      B!C P0@! (        !B     
 " 0      B!C    
 " `      H"*H".I$!       "B?          "
+B
.@       D!   @Q$ D      ?   @ ? B!B        B!C@ @  `    C       !B    ?     ?       (  !B!     !B!  @ `      O @(B/      ! B
*
.@        ?0      A@&5IM_p        B	$J*$z. @      >"*".
P0      B!C@ @? @   p     	J*D.Ƞ@       B!C  @     ?      "B?     VD1 @      J*RJ. @       B!C  !  D`      B!  @   (       ? @ X*H B        (@H
D*U%TRԌ E@A       
*J.ʄG       B!    @@A D pp      p?  H B!        *". B      R**
*        @5}-Qjt\@    !"	 
*~B
@        B
j.H BB      A(QʱjTԇ!PB        @$J*j9B
@      P"
*YjJ.D         @@@U$*T!PB        8J*"
@       ""*.H$A     ! B	BJ*RRd[      ?
꠪
n
 0@      @x*U%*@T Q%܌ 
 b     @
D*"
 ?     B?$
*
.@         @@
P"  (        B!   #     !@ЀJU*P!W,@%        B! P        #(D$/H        B!  @   A      E?}UjY     ȒD&AUjuܠ    !B	J * ?      @0 H AA@!#      B! "}!sA>D    |@'!T U򐔅%E     ? +
 ?     "Rj˨.P @      B!   "B(!       G	Z5UVܠ @@      B! "H?@ALa      B!     ~@	       !B(Q5$jJդZEȬ /H      B!   D@M T&9C       B!@@fb08 p       	   "   ?      	 Q  ? @   (       @"$
ꪮʨ
*     C'K)"S
0  BG       $*.(
@0     ?*f.H @       	(!^? A D pp       "*
 ?     *jJ.(Ƞ@       	  ( ` q       G	 
 TP  A     !A! 
*T!PB@JA      "*.ʤJ       GAJj!PBÌ$       @*UU"PŬ$@      B! 	    ?      ?	$A	@HA    !BDB*
. ?       @* T Q        ~@9UZUjUUVmI D      	!??"  <    ?I)?A BG       B!τ">KAEBA      
 
P	 T@       "*"ꪮʨJ&      AJUTDU% B        a' "      @AJ5TĮ'QE, 0     !B!>IWWUL	!      @@@J}#U-\@@     ~&ň@@C     ?%?@TA       GI *TRJ        B!	? |P@E
Rd       GI5{}#T樍@@     @(
*       @@5O*UTUڬM     !  >>      8      B!D?!>D AAA      	DH@! Lp      A 
$*TR  ɀ    ! J+RJ        	    o 	     ?"O@P~       _Ċ	ZUkP\T BJ      G!5? UAQFU̵@@       B!D>PC/D'	    / _I1_	4Zz	Db     A  @@x!'Ă      @A Dj9T  A      B!w#AO       GU? US,f4     !DBQ*|UEWʢ,@     !H

@     " E|	)RRLK@    !	j
꠮      " B*"
M
"NP|!B     jRJT@$0      @@U~*U~U̠ U       G*U!W\@1 a     ! t;       GjU}UwUTEԌ$       GU;"UW%@1  a     'H"* +UUV       CW@?"       G!]$QWE (     !TBHy
IT},@A       A   	 @$$$PG            ~          }" F@<A  ? D      |!B AϜ @  D8     ||  @@   ||  @@       " (Q? >D A!B  
   (
      $DDa  @ @ C     ?   !@?A    B?JI*$J	(%B        
 " #0A" D@$ @       Ԧ5)MBjq          !B" @      @>|J*DJ.E!R        DB*.$ B     @>
*
.(!B      @
>(*jDJ.D!B!	     @>TJjJ*.  	      @ $@@?"DH   @     r>@
DJ.D!B!	     B*(:.       =#II!L !B" @      ""(|_ B!(@ @    $A$A8b$      @(*j 
. "      OQ$(LEB!(@ @      ">
 RJ.T!PR%I     >j&n#     @B*$"n 0    ! 
* .$L      $>RJ*RJ."tR    ! >"ꤪJ.(! "I      G'r*U9WEĂ
DȠ     B
*"?ȁ     @(*jJ꤮ D        ~ڀ*~
ꐮ~!"D      ?@@  b3؈$ @      BB*J.1#	      @A@GJu *U*UWUҢ=DHd     !AGxU*TUޢ%DHd    !
* EE$"B	D"      >>"*ꨮ""O"       G
*TRJ?      @IdO)
$P#%D     !BDR
J* B      <>
*#       @<_LU*IRC    ! >ꊫ.l"
(     @?*
n"02H    !BDJ*'""    !BT"*@
.T!PR%I     ! B wҪUQ*BUzPI	Q@       HJU>TE!B	        CU?T%S:      A ĊRUJPB!~       OHԚUA+}TT% "        G*U@RUڨ"$DNe     !B* *)PE      A#P	>A$ID      PDW*U!S
$      >OJ+T PB?J}     @?J*~
ꐮ~!	B      @@@ZUjT$RD?"     !HBJ)*TkRBsH	!     ! O r~WT%D       >O5UwUޮ2/	      #PH ""DJ(ߨ@      BA_B%$DR    "I+"R ?"I+"R ?     I B]WH!(B(QQaA        	@ A(` ?          @           $ P@B#        	? AA(4S        	 $@O!A(Q        $DA '       D	$$0FOA4           	$H DB!        "E@ADEH   @        @1B   @          #D! A#         	'H!?  '        ǉ)R$IH5R$B       
"(_B:@         HO?          	'I!"B        B" $DH?H L        $DH
$         BHh# X4D `        	'H ?@H       	$O	""BB          "D! ADO         /B ABB        Ĉ$DHG          O?@B       $ 7H?D!         ?L<T*BP       (?@ A"}         '	T4HK<#"YB        A
T*UPWD"
        D #D!
"L         @Bq""uȈB       
c} 'IH%"zH%B        ?B("P_O"I<D      Ĉ 'H$  @      (BSOJ?A      ? "G!	         D	R% X A$I!        B"DR$"J!{$"         	$P?I !I!$      >D9C)>bD       H!( 	IIH      A(
/U(QHDD      !(W!_Ĥ!      A} 'IH=U!A      !  $DO?B}        pe'*_q}T %R       "IB'H"""D      !@ $H	 @       ()DRz
PB       @HB""$@        @DD.BF@       $!@("B=c @       @B  @"D	(!R     CH$B	<.B
.*      !P$E< A(P AB         @  (     ! B@! AA      @ 0AB"AD        @  y @ J       #	%PIA%䐒BI	$' H       A! B   H@@$R@AA     C C @(@"1       #H $K CH$I@! T?      (P'D!z @(@P`Ȁ        @O/"D AD$I@EA      !" H  P A(H(Q!(      |π(          < G 
 *E0     / ɒ @      !@!@D@O@P  @ $H A      @ B A y$H J?A      #䐒BI	 ? !      !@D^BR)PD@)*"       	C @!      A@'@ 
 @@" L@2       A I!!@@" H@     GBR}	0IHB     $I<I AN$K4
      !@OH*U x @'A 
        x"H@dH A 'H%Q      !@/A   A'H A      /D@  C$$OA$I      'H'H? !z/Q*EH      <_H>CȄ<RH"i%"     ! cOP#?B @/C$     *_[Q)y'H@?B      _1nުBP ('      ? A̀""         xyTTHI}|QR       	 @D!x/          AD pp p 0 <       "DG$F@	DD!D      @!  A D$`
O       @D@ !H!       @C@""f@8       B!$o>D @A0       	G$_	 PQ
0     |B)H"_ 	|I"     A D HTg B !H!      DI(L$*!pPD1       OP! @@(      @A PA!@B!
     @APP!@D@(I     @ I$LQD@ H       "J0LIQ&DDI@     @AQDYDDI$D      / HJ( LRJQ)DH!D     @B P'H A A	     /ĉ
Y$IHJD)R$$I"     (H@IQ%'PD!"EEA      D!
DADBP! B@""D       @@ P#D!B      @ )X	2(N @     " B/IIEI!B     	BAAR!'AD     @ ?1$TQDA	     PAy$D2PQ Ax!D2     " B!
E!B"A     8A*CP/D@$	      $"<II	0H!"B|Ic     $ B	D2|R"$D_"     " B{"D1JQL"D     <I	D @W" GA%6	     xGQ"HG       D!D Q"GA      II!QDP"IA6      @OĢ)R$DH""DD      H	B*R%K/E"B     @	$TQ%$DA !*"QE"<      @ Q#DB?"     $ BT7ʠ@(QDB%      " 5IU	1TEP *J      " 3DO? "     (  1DA!B	      @??@BE3 G!        ")*R0 EP P@     *)I	5_K!T$	G      @ @%IO	2|J*EQL<     @ $"1 @          @   P ""D$)a       @EUTQDID!D"      !  8p ""D$)a       'D!J"(DP @A     @A?UH dAAD@       A ? ""D$)a      ? ( "@0      ?@! cBH`C1%2C      @ @@
 (~!B!B 
       @@
($"HD      B  D$)a       8G
Q(D"PDE
A      O 
+@!@B!
       @
 )B%JA       '@@ȅQ
"I0 B@!     &C@
A( "B 
b     ! B@EP J!B A!
     !B A"(D!B A>D     } B  C "@0        !$BH>JE  D$)a      ! CA
(P8C 0        ?@ D$)a        @@(@#J!B?B       @@
"(" @G     @ A ʈ8(pP"I "      !B EWaBH("PD A!J      @DI%T DDI$D     @ @@* (  @@(       @?D$I      BBP?@@?     ?@!B	  D$)a      ! DH
_Ʉ"D A!J     !Bp˅Q
bDH" D@"_      (@H?D(Q$EP!$IA     @ @@
A)! B@""D      @ @O@
H @ _ "D      @"BD	$? ""D$)a      H@%AD0 D$)a       H2Z%iTRH%!AJ     @ _
*"DB E     AA   @""D$)a        @O*Ԉ @DF     @ @@
B)" F 
b      @@
R"'@
(      8G
@(|"E!BO
      !B A"(D/@ AB       @b 88  J"d       CD(%B } "D0       @D !@QJ"d       @GB
   @G       O 
((*,D@B
     " ( g!	"P D D$)a       'HԀ}%J((@D     	  GH
 @! B J"d      '@ B(  D A	        %Q@@@f0	#      '@@F #D!B        _$I)$RHO A$M%H#@      @D@):PQLJ"d     !B 
,(R!`DQ"DD      @ B|(  OA A	     @ OD
H%$RHȑB     P A Hh!E@ADBDP@      @ @(P HD!B$I      p"DH$@0 D$)a      DA=TUUDQ!DHD"       @O_$!D A"
      'H( @AABD     @! _)$H'I A?D     @ O
B(#D !       R)H_J"d      'H  )/@@      'IHT$H "@D       @GB
"HB!F 
b     'B%T" 'D 
l     @ OEDH$(K$P@     P Ax!T2P Ax!D2       C	"_JB" ""D$)a      @ @G )   G!B        JI)4Ji)JI)$LS     @@_
J5$
D! D$)a       DƁTRU*d!BDB
     "_AB("D  B	      G#"G(B$PD@D$)a      ! B@JҔ)%(JP B	       1|` D"}P@J"d      "D0       xO !J@( BABDE     @ OQ
A$I A<
     @ @OPJ #DB E       $ C!E` `	      !$"HFKR"~H U"      "DJ(  'B A6     " D 8!5JhRE$I($HB       @G!J(@ @B(QE       @Bq*TR"'HA	      '@ B
uԨU%HN
       'Hb* H#DB E       N*	R$$NHD      !@ 
TH*"pIP"      #H 
 (h!`DA
B$E       '@S$ "G! E      'H
)B|$@OJ     !B@
)J&H B@	      " 0A 	       @Q@DGEDR~D( @ D$)a      "HDJ( 'HQ/AD     ?A I
" H J"d      '@ʠA(#D! "      !!_ 
|( BJ"d     @ OEE
H@&T !~      "HBI)@/B Af     @ @_~( $H B@	      @J B @OA       @OʈD$$DDABDD(      BđUWTJG$EUB      | D D ? ?  CAIO     &\HT 'DA6	      'HA)w($PKA"E        @A @	       O"_ՠRJH%BEDL(       @|HҜ%J<K¤II"       O	/D5iJ5JT%RR$I      D $ &H2        I(F0IId     
JR$~ B@TT9!       /	*D($  D$)a        @GB
 H O)BR       ( HDD+U)$	       Oʤ@P" G*UE 
      '@B
 H#DB?"      'I A)@%M!'@       @! _"D D$)a        HJQ>"DA!B	       @OA $	@/?	     @ $ ?B`J"d     @ @OP%L/       "*dHDIB|      "EPJ S$D@B$I      @ A d*OI%LA_(      @ @O
Ԕ)$ JH)E4G     "B ?(S GB*U       '@@
Ԁ #DB      'B ʕ*)!PG?      @@񈊤P('A hB!~     |  ?@p<;	      'IH) "HDB       #@J) #DB? 	       Ox=BP OA"     /@@ޅA
zIP'I@A$yDa!      O!)S$O(Q&Bx)a      'IH   G      "(GH$)T("I T)     >D(I>(Dp	       N@*#Z)JR8J A3I       O<I<I5
J	*c$I     !B 񈊻D #@ $P@      A$*OĄ
 |Q	4	     "HG%_$I
BQD<     @@'
}"TUBQb@     
 gp!W $ &H2      !O!D(QD@"8     <!7, f(PI'T8P 	         CI%C     1HBfHCP_	     "E6#)R*_Ȅ>"D8     $DIȢZw"B@I      "G*)$OH)Bj     ! :
 )"!O!B	     AA  >( MCT%|        @_	?(S@O?J}       O<I4 ҙ%KdI/J$I     !JPJC{c)jԣD! A     '{)7_iR_IU%UI      ]QQCՂ* T`"R     "HEЌ!Z](Qt%QĀ     %(O|!jQ"G DB       O%#B(R_hDx}U
     '@B5(P UT I	U    " @   0G      H ""DP >	P!     "PD" ?  @ H   @      @  "D AP>PA     @B "D"DR$PA     @B "D AP>PA      H Z"DdS#(I_     (I $8PH1BA      H "DP@>	@!      )HA$I%$RH!2EdA     (H>A> $P !BA       Q$Bx@$RP2IJ      (I H)Y$Q!)E`A      )HIR>H~$Q!(E_A     (I?A%!Pa$EOA      @'Azex SdԩUR        " G @$O A$K(`        /*D")@         " G "D@DE"6	        #  A !#         /KH"     @D!BDD!@ H      @DADEADAG H       @DADDD!D"      @DEI$ĝDM(@      @ADEAtDADHB      G DC   D@      " G? 
 `@ A T       @@
$bKD     @ A/
 @aCB!      xGx
 `O"T     @ @@ 
~aB!B       #@ OȂB
`SA AA
        HR"J2WR)H"!P       @ /DT1)PAJ( A      "@BB`A(Q" T      @@@$ H0 !B "      xO@RHeJ A*B$       (@HD2%P!$iA       A y$JH)2SŤi	(D!     @ @G/B?@
|bD@"PT      ! B@"ZHe#J@-"T      ""
9(  8 @ P        @O$J2DSAQ         O>D
dI@!"RTđ    D>% @8>  (       'H@_ĤIe'Jh!B       @đ"D@ 8 @ P       xG?
 |aKBAEA     " B"H1AĀ$H(        B / E1)HHB"(         @@D!
`GCA1       @ID4GIIE&      "@DD	paSB!BDT     @ @@A0 B@""T       "@DD	a#B@""T      >J2'"H#     @ @O!PbE@%JU      8G?@
|bE!BO        O /_D5UʨQ*WD!     @ C/?@1EEPA"HT       '@?U
TbEPB(E     }" F@  8         |B!	"T8 @ P       AADEwDAGH      @ AĂ
 cJ`"T       xO D	 `CD!""T(      8Q߀ >EA!       @ /0 ABDEh       KO% p   @      !NP$
JaN`
T      '@@ƂȈ cD!B      @! GO߂!~g@`A1      #@
DeR A>D     @ @O߂!B
 g@ (       #DB? 
g@ A
       DNЅOʂ$ bDB       'A BD	X0eSA!"D(        @O?
`BA)1@      GDI$GEIt]D]DA     ! CBI"0A !*QU      !B OBDE bCD*L      <#@?	0%AABT     @ O?B
cD !        @O$
`CAABT     @ @O 
 `@@(        DIDK4QIE%AR     !OOʂ
$bE0!B E     !B A{"D3ʨQL"(D      DВ')0`8>  (      @ @_Of1	D !      'HĄ	E`O!?@     @ OD bG! E     @ OЂO@1T !~      !!@@A~<DAG
    ?QA? @         '@*U
Tb[@A      "HD/ 0 EH*A     ! B/$Dϊ2pQ)Dbh!      !IH"QDbIA6       @OȂd
 g@      @ @OȂ dC@      @$A?A	t	4˨Q*B]jA      'D \*4 O)BR        '!"*$J/!*1

'!!
N     @ A 3I $?        @BҢ6C!?B     'D|
c@?
"     ! O?$cD!B 
      'IH"{Ā2#DIHQ(@T     @ A "O2A@OA%      'HB*2K/U"B       @O c@"$       "HD/  bD
       'H 
`@ A       O	/$IJ54T%RR$i     !D$Q>ρI'4AϤQ"}iTG     ! B !$? 7JD        OA$O	?H4 A'H)       B!O+Kʐ2+T%Tj     ! G$
bOA	f     @ B"
jKDB$     @'|HH"UD dGH""DT     @ @OD"2HJ!$'      #DB?
`CO	"T      E qQ@0B*U+       @@ 2		B1(a     @ @O/@D2 O!_ V@       D%/JD)R6A"h     " B<I }D
7$IqD")D!     @ @OOBHD$
`B(0@      @A!20 !     !B 	4EI+      @ @O?
D`GA
     !B A~	4IϐA~$$hG     ! _BJ*3դK0?E     @! G/ 
bG*UT     !OOς
`CO      @ @ORef@!B$     'B Ȃ{"
 `@ B      !OOȂ2#dJ""DT     !
?@     ʩ*ʑ>| @          HRK5WR}IU%DEP     "B 	 0!À;BI+Q@      @@?D$	p5p5Re(,       @@?D$	p_4Q6KE%(&     @ @O cD$     "DYJ>"TD$b      @@@$H7#0(       "HD?I
$cA !*"QU       'A@"JD(dGH""DT     "B$I 	$H7P+B)iRC      #@B?0DB?      @ @O_B?0EB (B?B      @A@a7?0x%")D      'A/Ȃ?U
`_A
      @G!?7]Ȉ""uĪU$"     /BPD5D ?$     $ OxOBdGH
$      O1<_H4Q<ID%"      #DoB$
`CO*BJU      "D y)OD 7  !"(        G?A)P7@{(( P     !B D 3 $P@     ,x"$7׀	$?@     @ !RBIRj)?R@(Id      #@"50QL       '@ B?I0DB?      $DOb2!?#耦     !O*a#OBqT%      @("	7 !/$)       !OA?@D 0j$       '%R_MU2'ZKQ      OA>E	A0B*U+       @Oϐ? 42"(i0     !JH* 4EI+      @ @O

(aD$       @%Ĕ 5%P-"Q **)       OP!~ Dy$$iI     !O! R0)"*Ri
c     'IHW"I DB?)       !HO!>UU5U(QB<JU$Q     !B$IȤi2ͤQ6(YkŠ     ! G$
bO(nԔ;     "G/
DaDQI0     'B Ȃ{"c@T=     $ I<0OEH1ڼI,$-K!	     ! B|!KHH4|P*       BG8ADR2 DB!     !C)?OR	e4ʘ*BT/i!     "H0oJDɉ)8(P @     !@D؉oDu1		 `     "Gy/UER1@B"D     !OAϠ 4xI+      'DJE3ŤO<P     !_A=DP3@Q?D(      !E(y5RJ3 B	(f#     'IH%/{Ĕ3@Q?D(      !C؄)_y
O9IШ[B~)Q     "G/I	#6ʨ*nĈ"      @OI$1	?      "HG/UEU3@O*     "HG/UEU3 OQ"       "" "("#1H      @!BA?/"RDhE&       BA?"D>@`      #@$I"D ࢡI!     !@GB
*DTA@       @PR(P@A % A      @A !~D A@A      P@!
B"?" D!@A A      @!D  ? "D)@Q e Q A       #@!B%"JDQ@! EA     ( P@EHTR)PAH҉I!D      B(F  A D pp     8$"@ߤ"B)"#I(A      P@A?((PP@R!@       { "DQ@< A      @PW؀ R>(DPA"        H@B?" D@J!EA      !C ? "D @A       C@$I"E$HI!E$CA      AAOQAR<(P @x
A       GB
"]E A!%Q@A     @!BH(DH@A A      A	?"%D~!D	%$QA     #@!	""??ID$@EA     !Bq"?D(PBQ@A     !@@
"TYJA     "D AyB3"wEUB!EA      >x@? DP A       A!?IDTpQL%
A     !x ! " D|P! A      @PW؂R(Q$C        A$II(Q?)PpAP	!     $ HA!D_?RB(QB"      "D#AB""E F! A     $"HD ?" EQJE*CA     #@@	".ID B	%"A      "E  "~DGE!A      CDH R(QC)      DP  G
*EaJ%
A      @ !"!D!GȑA    P"X"$"H? % L(A     @A |'ȀRR	K*R	HA       A$O芑RTPCA     < @C'"@DDEQ_      C	OȂ?RJ(Q(C@     ( B	" DDC1
Q     "(#x@$*EP %      #pH*uԈR"G\UB1       @G!"%?
"(ܠOy
A     > @G	
*DB!A       EPaB ?"EAG	 A     > @Q_E|RQ      'xB  +UJVUQ      A D pp ?   @       A D pp@T$F`      A CO?I$)$"HOB	 A     D I@  !  @     D I	   $        @
(SAP	        "RB#@@@       B@"DB A        @"|A <      "DB >D'@       $D
?I@'BAy     ANY:UTU A AB@     ! O r~WT            "D
*$THQ "@HB         3H >D#DP!         y$$"H!B$Q      	%J$H%#@"      |" A$I	$OQ B      "	T.$JH(_ B      	$
Hߩ$RH"ET "         @@"PDA(Q!A       B ~ B@        @A@OD@H> $ O!$BHBE        @G $IH)b*"(       ##$B!J         ##$B!J B        @ C/?@%DJQ*BT(UO      ! " G?%JP)B^
D      ! C	?I%JH?PHED      ! C $I q$I      ! " GW'TJQ*BTED     ! " O?DN)RHI"     ! " G
%TK?HE    @G@D      >!F"?HbCA       @@! A      "0"!"@(       @@            @@   B$p              @@                       + @@        @"!>!"($@     D!DP? # "?    (
/"("~I$p     I!$!$HO?$   ?     |%BQ	D=BPB%	TPd	     @	/$A	=
DI$(BB1    H"D(?" $(B     @RR!B!B!          D@ qp `       @$BA	=BB	$D
_ @    '!	O            %@      >DR!_CĄ!     @CCU
%6)R H>D       "H   I @      %b/%DI!<h@         @@       $ H@!B	          @HQ D     <'@2Le|@           B D (        ""
8( @A@A         ?@      %_A=R	H"T@`           ""("(       @B_@f@=@        ?@  ĉ	L  _"Ā      /~$$ HD>@        'ϑ"D=Α"D'"D H    )	BO$h	@         @؀      @ 	?	%$ I$?      @A  a8 /Ϥ D	 D    @A
(EI!
(E3?      @   {)J_/JR    PeDY|EUYUeUFW@B    I$@OFK<D       @	/TB_@}TYQeEPAA    @$"X"O"$"O        H/? @I=@          (@B(B      	/$JI/?B_D}P@A     ?@ C ? !Rx         @/A (      ?@ C "" @ 
`    )PQe_@@     $"o$JI)(@     I!$I?$ TRJ(?    	$ʩ*ZA( @@        ?@D0p     Y	<"H?RI@(         ?   $D     P/I/?I)=@	     ?@C O<AE| "F     	? %RDP@    ĉȒ" $HI?<!       ?L}Rx
!&DLqR"D    ODJ_
$D
TY=@!    ?O $_<TH      
RJR
<bK&"AI      D"DI!<jI!$H@!      #|)MRz
c0OO A      :e(j=TRJ)HAU JB)     @JO=U^Q^UPUB     _A%
_@}UT(     $I{ʔ/*RTOH)      @Cd9 $y/zB/)R      @A!/ ?@@     O %FUYN}@	?H ?     @ H)?D	?H?@     @DI %ZʮIJ$ I"'H"     #DRzx* AT T)    	[	5(Y?$      OA*&DHP     ꔶ))z*/D/R8     IJeΒR{ H@     ?@ C" IUP    $HY?I	?@     ?@ C" @f|0T	     #D"'T-j_*L    $^=
O U QB=     @?A >>EE       A        	K){Ҕx$B_?D       <$dJRSx* Z     ?@ C?"}!D?@        *w!z]ÒQ       !!  D`     (P|"GB	C  @@      @ 
A>UTT         y /R	'x@!BD      !"BD$$HH D!AM      @x@/@	A$yA"B"E       A$OD%H 'H$I L     {E(QDR9zE(Q)怀      y$BH	J%}0A%M(U#@      y (Ba	%xH/BH(D        I"OB%L"$I$I%L      /ED $@H"EDRJ     @ Љ?2BH"R	     <I Īw =I  $@J"     􄯧JJ      /"@L$
K"RGDL     !'zUDO $I(Q$U)       @?"BC
/TRDAH"       @@)RU"FH(        @A BBU"@       'B@$T"B@D!A        O  T @         ?@@#X! @?  I @      @ B OB HT"B@""D      @ A Ă	$WB"
      CA    @?
$ @      " D@?@U D AA
       @@T B@       @D$T @     @A "p!> * #0A      O DIS"NVUIY)DH!D       @@?T @      " 0A * #0A       @@TpRB!BDD      GBD#@UWDADA       @A OB DTB A!
      xOB*WB@(        @@T A AB@      !PB/gQ BDB"C       T$F`  !"BD?       @A@OB@L T D!B        @@T@ A
     ! CxU"JD)a      <Gb/TURE ABJ      ( H@IU$RD!"EEA      AAU2	  ?! "H        @DT@O!BE	     @" D ?1 \&B       "@DDT"B@""D      @DNUU%TDeDA      (HR)]jZ)H"IJ"      BāK)NVJY/DH!D       G/B$IU @? D     @ COAU$JD!A	     @ @O T@O "D        		!P@T&8C       OI$D8JiC&IIE      <G" UB A
     ( HO?IUJDB$I       @BOʂ.T @       'A BDXU0RA!"D(       GĈ_}HBkBV	R"$DI*"     !$BH!OD$ ;hCBE0      'DO҂=JU(DQ}D	     QD"^/@ !BU$D0      #D B*_UTD@         A /BDUB A>D       DG/BUD@A     %J/RcT BG       DāWNUUEYD}@     "_/B@TB!B 
     "HDB$ T@A" D
     ! CO?IU$A@	BDD     'B rV8B@
BĠ       @OȂ$U$D"D       "HBO̀VJ(Q/@D       DNЅOʂ$ U
DB      @ @O^HV"J@*YE)	      'HBIVH@)"E?       GD 8n?HF!Z$I	      #@ "ULVrVL$"@D      @OB T
K!%D       @f1 H     #@I!T@B A     @ @O?PUCȄ"*D      * #2A@a        @A@OBQLT @      'A DTFA !%"DP@       @OȂ  T @!"DD(      !B AM5bD"B"HA      O!O	8i-BV!B!	B     ! B<Dz;*kDI%DJh      /A RzV*KД)BR	     ! B$$"L0T&8C      '@@ƂȜT EPB*       @@Ih@$P@       @BҢV
C!?B      xGPU,JDaB$      'A@*UUB@       "D@+ȚQ&EHaB _      xGUJG       '@*UUTZ@A	     !OOςU$@       @Q@DGEDR~D( @T&8C      O!"8kF*Q(B"I!      'IH  WD  B 
      YJD$HT&8C      #D/ AT @$
?      'H /BTWJJ!2@        E<IU$"H)l3Gi%J(      "@BBbDUDC!B?B      @OA;.jmD։!B<I     !OO΀P AA
$      gĈ ~@ * #0A     !xBOdHU"G%Q     }A/	
U$ I @       I!)7 @?Lp     @ B"SJDB$       @OHM#T OD)      @! G/B?@U @Q*D      #DB?"RBF 
b       G/ U@!(QE       'pDOӢ5Mɝ T BO
$     @ @OB?P @B      !DȂ? SޠIHQ%"DRB      '@ ̢)VFH""DD     'B(_ȢzL)TBG?(        O	/$IJ5lJV%RR$I       G/B$UUDH*Dd     !OO?P A@	DD     BđTGӈMJRG$EUB      DNH(	D:mN"A)BRA     "XD/$IT B 
"	     " B@=G9ZjEJ"JDi&     $@DI }$#TmSOI!$DI
"     P O"CDU@ B?A     D HHU"D!BP       @!䔉8iOQB       T$`  y*U$IT%R      #BO6T D!D     @@?āO VEMY,đUQDF3     ! Dx%/jD0lIJ-"ID	%      	$Oϒ""ZT&8C      #DB?*TWRB     "B A=@EjERBJ
@       N (D	@:mJ2"DD"     "EPO ;lE@B$I        @OdNDQ$FDABDD(       !By         @@@!I:mEKA$     @ @OЂVL/     P Ox
(TPB@       @ $IjD")$B	D       |@'xUFH/B       O$@8jG*UE 
     @ B/Є!~a%/	!       DA	I9&jDV)B"
?       E yDu%8RoE
)DP%D     "B!>O;h-OV!$BH	"      !!@g
@IT&8C      @"O"	"4|P Lp       ^|	<hQ^Q
B(       O/9jG	"      @A@a7?9hOz%")D     |  ?@p<;H8     "@Dq?zjUD )D	"       @O*UT A !*"QE"<       JID]mNIU&LEI     !B!OrH	9h	O!BYE*I!     "B!I;lO*Q<BH)     $ OxOBDU@  A	       @O )TPD
      !OO"DUTF@      O %/LDD8iGK)"RD      A<I
'jSOI U$I      #ERPO  # Lq      'A ̐HURD"     @ %PR^%"J!	RQEH2PT       'IHJLs TB A?A	     !_!"jQ@I        @G
**  ⢩)"      #ʊ**||  ⢩)"     !OA>D;iD+	      ! BxQ>D$8i=JJ)rD	?       'A@JLU$RO
$       '_(U~%Hಢ%"A      #@"5TPL      @ A "OV I !%     QT H! _C     @ A "~VJ"      #EP!UEHD     #J HT DB?"     "EPUDB?A      D@ ! D@H8     !B D k@$P@     "EԂA4*UJQ:BT
     !OO̀DU$B (>D     !OAτ9jIG!      !IH?"QLTIA6     !(CTOȍ5bDA!EA      @G!?;hEJI*U       _Ȋ/T8o@"TDI      @!1*U~  T&8C      D@2@@lCH8     'B  T@ B*       /PB~VJ(BB      (I˪jD$DO@     $$DRJWMA6ID     P# Bx_Ȣ:LRTPLAI0       OP!~4 Dy$$II       G	 $*9i%D	"$     "Hp!DE9
oU!UbyH      O$y'yDI%lI&yQDJ%1       @ /$jEv(d
?       D@ࠟ|
 Lp     !B$IȤ;ijMQ6(YKŐ     QT	HI #      @  C"߹jK^bA3ʉ$     !B	oQiIB	b2!     ! B|!.SKi#J-       @OkHUBW$     @Q Gψ>"BL|T&8C      $DObU"G=JD     #JP >DTO/QD      N|A*D@:mSJI2E$(       E()#߀QLQ5jCI      "H0oDɍ)7hG P@     'J y"~9j	G! D     "HEЌ!7_]5teQƀ     !Oτ 9iOA)8H     % OxOBPUGAD      OA&DMjKaG!OP      A!U9oB~!+R"     %J(A)rMToD~C(0     "B!UDމiOQ*]DTH     !_Q'/UKRj]މ	I      " D<OyIOoI>I$	#I    "AE2
 Q"aA    @A?L)"$"H%'        @A/Ѐ  )@RhQ A      @  $H )Dd!       @P(	$ HB"HAA       @#D$$H !BD!B      (@PT+Е*T!PEԎȱ!         C$/P%J!Q@$H      AH$?)R! D!       @ !  O(!      @ CH_ | B"HA        A$(P?B  D$H!       @ )0D$  Q@(!       @ ! !A@!       P@!?( PBTȑ!@       @@00D$I!$IG(A     @ CHPQH  @CH
A	       A (?P!hE"(A      !@ (P!~ !BB A      AC%P]  ABH@A    C?D/$#%$PB!A      
@B T*U 
ALZ A      AC] A!ܠABA      A$"  | B$Ȉ       @ $P*#A@!     " D@Y5HHG  A	B(        C$'P%JT HB*h@A      @P7Ђ!$@       C($WB AHV"H*B1     C
$(G(
 H"":R(      CA/Ȁ?HB!BBB A      !B C1U"PJ A      !B 7D_"HHHQ       A(P B$HB     AHDH| H@AA       @AT/D%"DG҄(BA    AQD?L/ |  TJ%      A$TD/D!TqIRC      (@K !TDa?       A$[)0 <@ A     !@ ?$? !DHxA      @ )D#@! E袑      @Q! H!tBE҈(      " DCށt5P  #ADA      @؀$P?  AHQA       A(PHJJ pGHqA     ?!B"Y b	?! D     B!C: ȥ"G9KZa     HH"z
p1'"@E
WPj      AS%PDD!$DUA            @" D       ~      ' H  x          G  !" ( ` p        G  ? B@         @!BB$I	 "DD      ""
8( @  8       #@ K )R"AG'X&J      @ @OU)P AO         G%ˠ(QQ@ A     ?R(IH/(RL     2 " H        H!<HY!"DA!X@     @@DH!J
( @A       !@O2 @$&         #A'BRJT$HH)$dP"        ?ǀ"e	) "@D
        #A'D"eE*$IAEBA        C?"e*$H!D @       C#d) "@D$"P      @ C"GA"e*@$H(`       ?' "e("NA1A      a='i5h*P	D%@R        C"$jC1& 
bC        Ce*P$OA
@      @ CPG w)jS62h"P      @ C@G h!2@$*L         C JhQ2 "@      RÔ $H?A       !@Ǥk"e%+ C
$     !äI4 IB)a       sB:HҀ%>k4H(AaEAA        C	"Ǆ e*$I!D
"A       K	"ǀ e*$O
       A@""(g(@ O@        ""G%"k0"$P     A  D%l7*A*U      @ @AL a        $i3$D?"@       B?"e*'H!AA      B|R j)4@/$A      #Ǥ"e*  _      &'z%k49A$y@     D1#HD J@I"      @ $G~%~j5* UE      @?? KQ]\rTb(    I"IH"")`
@       !#D 
~D(P)Ba        !'@Ȁ>~	D$AAAE0         A  ~EH!E"B     x"Dh ("QDQP`        $B ~|D @A      $I"AA~ETQKE"B      $?!~$@!E        GĀA~ D@A<         $A >~E@DA"      !!@g
AI1`       !!@g
HI?蠀>1      !!@g
@I@A4     A#@>~ EqJ
$      >p@H
ʀ*$JB!A       @B ? O hN      ; A!B:Ġ " C      pG8?">GP!Ā      9À8 <{ÀB#D     Hx!Bǈx< H|!B(Q      8A@|8#@" C      8A!,(:KȐ C      @9" G%J yQ" DE      (8Ij:k0!  C      !=@!B     <;	"
8 y!B E     
Hu.#. ".?&a     <;	"	8 x;!J       9G?B yB$DPG     @8AT9SĨ1  C     @ARW > @       |!B/B   ~  @@     9S yS$P      P8)$H9#@ C     C*?@!B     "D*T?@A"BH      AF/
$c ~  @@     	#? <!P1"J     !Ð =UQ*UD     P	,:KbG!x!$p      C>1<"F     @	C%^=y!*BW       @AGAo8>D8@D      wA
8l'!rB?H      $H;! ǉ8$ xxqB A       w! 8  yKQ%")d!H      
U!#\@~=	!$C     (	T9A8 xC%Q      (H9Aǒ8$~ y#5Dj     RPAC\ "U>!*BQDG     t#y)BG8("x$>H       I܄c<<H =U¨Q*     EPQ?U<!J     $t)GL"HvӉ!R$dlH      HSUH ?$BI      8CĄ	$?H BADRhQA         ЈCDA         	$
ЀB	PQA         UBRLIUQ         
  AHA       '@$ 	 @ 	 $?     !" DD	"D IA$        @@A 	@ $H     @! !v.X(P$I !"P@      $H$D	"DPA     #B`!B*E!HA!A        @  @$ @       @@@@ @  $ 	        AB  "D@$1I     #$ H"	D	QĠA$BH        B@DI
"AAB        A O	"RD'@         A B H!
 @ACA	       /@	4EȄ        B B@BD/A         B D ( HDACA	      @@A TP"I$       !D`AA$DAH"P      A D !BDAC
"      @xO  @ $C"D     'QDaGDE' @        @@A H$*K	"D%       @@B  OA!B	      @@A DH
"@
(     B D@}"	PJ#A$"HC       'JD*U	TPB        @@A 
"
 @B DȀ      @@A  *"D        @^(萐	RB+"HE       !!BD ?            @A PH*c(`     #"ED6  A      @A "$BC	"$DI       @A D ( R ' D@      (@H@?D$%S!$IA      @BYp(DH
"HA	      A B@bD8"Q"D       BDp!	D#A!B      B D@/UIEI!B     @" D)) * "@       H H@	$D	 
?     ! @)(D!B!
?      @O (*/AB      @@A
 Ca'$H      A(D(JQ!
     ' A!A!B       $ARIE+QB(I	!     /) RD$y$
H' I&$       $BHI HH$ CBE0     @|@#(EH
$EΈ"DB      '@ 4AIIDD  "       @- #1A  `!       B G@? "{	T	      #$H$D?  !""$       #$H 	DP)"RET@       @_ @@        @@@O	!"#"     'RRaIF%K)$RI$$ @        @ ( HA"H	I      @@A '$$H       @@PB *HXQ"x@?      8GA *#@C?P @      I@T(DBxB!IB      ĩB%@?ȁ#?     B_H $I&3A	$"HC       B+U#A!_Ȁ      @ O)MA!B
     B D@" D! A      P D 	*+쀖$	Fa       N@D$
NI
$"	T     BD@ _	"DI      @@@O	!"@/
$       B_H '! 0     # AAE! B        @wJ>*TIS4C* H      @@@O (Ј	Ek%BRE$      '(RL$TPE y$$I$I$       @- #1A ?HD     # G D? !(E!B$K       !B MnU-TVUJA      @pO ?D	@""DD       @A D B)@   	     D(DTUEUT^HE"AB      @@OH	 H$$I	$      AD*|R"$D_"       ~)$H_$P @      @@_A}  OB$DP @      $@D@? @     @^ @JRT/	H%"       @@@_PH$JK/E@       @_)E	 B#A"     #$I$IH AH(R       A GHA'DIB|     B_H  @/
$      B _	$HG       # AD%)JB A!       '(W _D 	" D       @x_ 	\H:DD     B @ 0
T0D㒡	B"EH(        @_ !蔑OQB       @ J**@     !!EHED`b3$* "	B       <%DI'ȑ"D'     #$ K$/P	 AA        wEZUSA*+       8GA *
#D! A      BD d}%T@%U%RDI$D D      ! A/	 %G`B	A     B+T#A!_Ȁ      DEAUTEQ5}UTUYE@      @@@_ ?B " D@      @A O(?@	@"R$J>       DNHTWD
N#A)BR A     $DI (?A $! $@H      @A OH?A I	      @ _LHJ$1JbEL      D^ H{
d_S!BH       D H.?#"?     'P@aD!J%PI)Q       OHRJ(Q'@OG%J%J     D$QPQ'@OQ"}ITG      @_(
" @B
"      @|_BHJ?K¤II"     H'E*)THI:ɤHK        IHREA IK"H      @@PB@(,(Pb< GQ)DR      A _DC"D        A(wЪ*KSiB)Ha     'R{)GDE$GIIE$P@      A$QH!TE'A!
?      !A/	*T%tGaBBA        {!*R@+$"PD8       @@@_?Є|D$DH"      x $*HX"%BL|      ! 
A+QB"I!     @~_ $HH	""}Ĉ        @z J*J#(R%
A     B_H  A
JH'      @@@O$I$H$UDJ       T*UH
?(c)z+R      @$@Hz/Q?QI      @A@D@Hh'! D      PI)B' RI%$H     H ')$_{E"E/       !" I=)R %^eJD)+T       !" I=" %ܕWjfD" D     #$OD? @'(Q&(     'RJa@/ࠄ ! @@     	9'QD)D%KIH"     ')$^|$yE%GʄI1@$A      I$^xyQ<II'$I$I      B _DH       @ _QD}$B*S/DDI"I	!     {ȩ "       OBP)D#!?$       @?A)@'Ĩ	?       @@_$(AhB!~       B OJHPXX!"%$HP @      B _xi("P`GÁ!?%D
Q @     CD/R?H8%T@#쀖$	Fa     )Qb¥IRT)Qb¥IRT      @OA  	_ A     DPP3P[?$*     A@_?	$P_ A      H K	 UEwI)$RHB       
H#'KR/dRH      Ȏ	`!*BG"R$JB |     P_Du.
KQ*BV      @	H + JK/B$I     @_(5	 H!B>BH     G@B5 'Ȉ?DD       >!D@+$#jEQA     '!RJH "IĐQA      @_(U@B*U       CQ _ ~E(DQ@     OD@  'U" D~       @A$GR$ x@#쀖$	Fa     OD H"
| OI      B _? @DB	"      @ _!8Ba?@D     R@RUD +UTUD        @@OB RDJ$      @OBhD@G!       @ _$_D}*(("_ԠUU     @DI(4L%K !      Ȋ T(@"TDI       U@*Ъ)TD$B'Ȃ      @	=JPR9(PXAb       _I^R=*[WfT=R     DO<M2<OB)	      (IR/OQ?BHI	!      "B# "B~!pA!B       @A@D@H_I P	T@%"Ĕ)     )Q!IP
Q
5DTB A     D _xHH$	"      @P],LTiB*)R$Bc     'P B	 "IU%T      DI $I UW}UKQ     y~(D /K>D*      B OH?A	_EJ(     NTDS8B"/@!QEC      8!x
P8?RIR%IJ%      !'I %$dO	A      !'I*%To@I%R     {)OEE$QIm%AA     BH0dJHɁ)( P @      xQ'<^˦IEO      B(DPD_*ԔIR EA     H*!@G!B?      	x!C)%W) 
G@TBB     OT@Q)R/Q/DQ     )I%_K!T$	G       E>*WxIUR *(W.wuED      DI$R*J>B U
         ?"BH1*BFE`?      QQ@т T`"R      @@@_HO
|J*EQL<     !@D-P =ȪU"IU     ?"E| UA7_ʤV
     ?P P%z.zTWjT=B     CEP 	ҪU/A     D {Д*RH(_D}     * 8-*t+PBU	      (SGA?@@GL9     D *RDB?      UI[P}J$)*
     A _PIB?I*}"K     '*%M*4*WrAA      })&8ꪰA?UTUL      A A/)+}T&SjUIjSR     DOH?RB#$     GH"$UCU/C$QRB     Tz
A)TB"      ?B!B%
R"D)!T        " DA Da ! BL     ?      " " 0     B?Ud(e(@A
$A!      #@BI  @@AB@      #@ B$ @@AB(@        @@R+$THȑR"F)HP(PB        V#A`   $B$HH        @@R+DHP AABIPD       +   " " 0      BYx" DA D`       @@
Hp!PBI"RHDP@     ! B@WJTI"$II^F(PB      Q	  DA D8      ! Lxe+JT)R%MiRIDA     !B E"HD!B!DBH>@D       @@_H8!PDWB@      GDIU%gdI$GJI%%`      G @  T8       @A%TH$ |A	M"A@     O @/@  HH@       @@*(HQ%0RADBHHP0@@     BAZGdIDJy%     @ G%JJI'E)JRTJPR      #@ H!hBIBRHD(       #@BHD%R!DBH>@D      ?ࠀ>!  	B"       B %T H  @OAEAC      #D%J?H$DIITRp@P     "BD  ? " D D8       @OBԀ  @_B(@       UHIEQA? GA A      G 4T!gdIDJ%%`C     ~|	G	 " " 0      "D!D;  ?@"8      #D%$IH 'AEBRHDP@      DCu?  " DA D`       G%_ H @@_B@      @@/$dIRzD!B!`       @OH$$#DOB(P       # ?D(T% H%$      @ 4HD A  	B"      !DB%EH !HBIBEAA      #@J? I" @GI"RHJ@       @A@EJ_T HT"GJUHA@      #DPK? H""DEIH_P@     @p"C
$ " DA D`     @#8D%] AH  @GAB       "D!D8@! @     "HDJ$H 'HQRoAP     ! C𪥭JKI""AE"jQQ@      @<Z%D$DI'ʑ&E	'     "$ PGE"*UQD(      }D_DEWȄ@bd!(@     /QHA%S" " 0     @!D@+?AH @OCJ     !B@
xI*$IQ^eHHAd     @ @O_ H $GAB(@       H!E?pP$q  	B"      @EQ$@@
	"F     @ @OH $'@BEAA       GV_Q~" E!?D     $ E%JH~"E	KT(P      @K`A"0p  I`     ~'P" " 0      @? 7 T8      O_ !DA@        GĀA~|D HJ@      +PB	E5,HT(IH        !@"J	(/Q0@	B"      #D@(_H|" DAJU(RPB      $DOQI #@OB@     'J$yQ  " D D8     ! G_$H" ODBIP      !!@g
@I * p     !OE@?AH#@_EAA     ! 'T@u>	(@ * p     ! _RIJ  GHB_~@       AW	
D$$E<      @ @OJ$UH 'I	ToAP      B?!BD!HH !"     !N!JiR%JO)>U):S"     ?DloĒ	?H$I DE      ?B
)  A !DDX      #DeJ$H @O@jHJQ      /A	"HG! 	B"      'IH
JTs 'B!DBAA      #DJ? H'BOB@     'B CH"GA@       |AB$hHE!~DD@( p     ! GUK*ȪT"_@UHP      A "}}
(4S@8T8      O_Ȓ'@OPH@      @@6O(Q" G%%       @A@EJ_T H "EQNHUA      '@ ň I%J)Wbh?A     P$EPI #@_J$     OB Gm)	@_ * p      !$CX	""D=  	B"      @@@J6T%@ I?AA     "D y)JV )RR'IH!R@      #H
?AHP'AANE{@(     #B H*#DOPH"@     H&Kߒ$?~@ * p     !Oj!$"   * p     !B9VTү'B<I*	"D      <C%JI!ITE$"      @OZkHH&@WI_Ȥ     !C؄)?JҖRu$
OԐ1?e}TU     "GE!H%(NqTyZ@B      AcL! NpyH*\     (Q́)$>H BG	"!"     /IA&T~X*T8       !A >         ""!@ $ 	       @"  P!?@     (!WOʒ?*@RD)      (I
"HO"D1!$D     @ @B$@08 _Ѐ!>BD
     @ @B$@08?   @      @ @B$@08!       		AA@B 	AB
"B      DI$DIA" HI!$O!      H A/P'ʁ" I!B      @H#DG(< HA"BHAC     I A$I @<I!$BH"B     Ia'H'H <I'HH?BB     !"BTO$ z%"BD)"R      A$O!xpQ"I$IDRD     D'B$O y"JG)R$C     P%RB!x  _$     @E'(
z}#EqB("DD     	!?P$Đ!y!?R$R     @" #       ~	'HHI)("$HJBB        R!~"B!TB! B       A	"!A A      DTI}%DDI'ĕDI$H E     #D	"?D" D@!B       A@
$%ID       G'J$ID " D?      !!BBGЊ 
B A!
     !"BG"$	'@@       !@B*@ DAC "D      !C
$$KbKDЉA" D?      @!C	"H!A A       AABȊ$	@ A          ?   @        A@
$ D!B       GTI}%DI'UcDA      A#AD	 "  @       9G
?@}E!BO
       =G* B A
      A% F0 "  @        B"' d ~!AOA	     @ CG
$6	AC?      "D'!~	#@        'A'JP%@`CB(QE        AO $B@	"DD       AO
䀊`#@(      @ AO
?AAD!""D(      ~G	 ?   @      @"ǀ @"  @       #DJ?"CF 
b     !C򊧭JK	"bA !*QE       'H$IG?      #DJ? #EEH D      AF/
$c "  @       #DB(_}!D@"RD
     @ O
?H	AD$      "yEG
&@ecJA#"@	0     @ AOЊ$L/     @ AOG
䈉}#J(Q/@D      #DJ?DAA"$0     !OGϊ$AO      B#*#$OP
	 "  @      /@B
z$	PgI@A$yDa!     P$ER$	 c@A       AG!$l@ 	D      '@J?I	DB? 	     } @"?%BLF@       "IB
"`FB
D      '@
 !@  Bwĩ	      #@*5@B*U     %UKrGJDdbG!      %UKrGJDdaC        O}jt;̊!/)f      P$I P(I@B B      <	""DR!$DH@)Ta      8	 "R!$DHB      @ 	"$P"E "       @	$I$S A !T       @@	""PA!D@AA      H}2JD)2RIHE"T@      CE1P3C 0(        @	" P!D@A@       @@ 	"PA A       BT!DQ  QDDA@       @I$I$W BA      !)$BI$bI	$$A     EQB!B
"(  A 
       H)JBRT)HR!ZU
"        @PE BA      A
"7I ((&       @"I?IPA @!T     EP@@B A)
$H J?A        @b#D8R%TL"D      @B	#HQ!"DD!"T      ERDH$)<B$U 
         D"IQ$DW     GPAOQ ( $H J?A      EP@@OQ$)$$E 
À     EP BII$$$ )B A 
       p"I'DR%D(       BH(`I !(RQBEȂ!       "I?AP!DB!TC       AAO/D	2$JK%)"$       DЅB$ R	$OA       "I!@W"$H@       )IbT!P#JT      Px"b2PP!|_ T2     !OaE3RD	< OA A(!       @ RI _       II"R!E QU       H ")" U)LQ!QT      %@A?At
	4UPA]jA      B	?AR)$TOA 
      @@@Bi "*TW)TRAHd      G%@Ā	@2BHB*")      5"Q R	$I A
"       )IH/HjW0IBE A       H	 RI$O        GĀA~|D PA@      	" W!A !QU"<     !!H!$5 7
RJB      A@?
*0B*( P      AAOAR<@1"D@ (B!      !/P/BR	
4 TRC?I(       I?$S!_:     $$PA/C$      @B)&Q,DC 0     JB
bP& AA        	 S$OA?"      A%	2HQ*i$      y/I!
*
3I $I(!      	/B!)dO(Q&Bx) a     GTII^?I)$ _
       	DR!$DOT)      _ )3"OA$U(D#      (!I 	2H@!B)      O?H5TD@"("      JQ)R 	2 H RR$      /TA>EA0 JA*U+      AI%4L	2J_!("     JB$Z!'H"Ѐ        H :jUVQR% B     c$J}	w3UH@)$      _"3Bo?D(      	#D)?FRudOԐ1?b}lU     IJ E)3jMAsh	!     !_%?D	1"_!?(R      E>jWvUUJ j)UTwsE(!D     R{ WB?3H)?D^JQ        C !B.? @        D!BD!BQG  @      @@AGĄDAA         !E"D"<        D@T" tO!        @   @p         @ ?@ @. H          ? 
 " 0     @@ϤI$"Ht	D         /C	D@   "?     A A~D!r'D        C!A 
 b        S!?  A@ A       B!> @!@BA       A $ GO           S8!PD."(        DA*DD  "?        C AB D'B N!      DADDADGA@        C$"HD       D@O "@t&         @@)" @p        H"R)H"өxBP       D@(QD"D@?        C"$Ȉ#@@ F     DD]}TEQDUttP      ?"D/B N!      @"C    "?       {   "xD*L         C@AB@D>>  '@Ȝ       @!" H }"G\@        C@AB@_  @G        ;?@|"E.HO         C	$	   BHNA 0      A!?I>$#A@PD        C?I @ANHD@         C@AB__ @D."(@(       D  'p       "D>:# D`     @ O!Ht       @  !? D">B!F 
b      I	  @ (       i"$D~"rET"      I=$J~"TD:@@        {?*>T!PB      	!R~I"D OI        @ B|$#Hʎ$P @     @"ǀ @ "?      @ C?I|!BHH        @ CD !CH E      I=J~)#DO% B)     !~	! IQxIBDP      !BDDI  B@*L       }HU#A)^J(@"B      @ C $Ȁ} #FIU(BT      @ D	 !B# E       @ C  $G A      H )^ @O
$     #A="IW"EԊNJBh      B>|D GNH        B?A}!B(QϮH 
        @
T#DH       KB$ 'H^/A@     y"UDA}$$GNH@      ~RG	  	      C?
>* G͎*( P      #_$" ON	 @     HG!ϕ*	!Pw?        C>k !@  
       @ C^~I) @        #qUDQ>Bz$@ IQ @      @ $$O>"EN_(         {"  @ H         
BɄ}>"DA!B        B?$#A :       B$~E OԆ)^*@"B     GA	J  w 3     /A"0G	.N!      Q?	} $C      D ҪUJ]#8쪢I      =1~Q #D' A        [d0   "?     ?B
)  _?
      ! =L|
#@QN8      O?"w?        #$" Ox%(N@     A!'>~a H     *!HH"x%G P       # }"DA!B      >*!A ĎHq@%     
 gp!W "?     $ ?R}J#DN6I@     $KrDU~'@ Q|A        #"/H"E$Ԟ/@ A      Wq$BDDI!@	        Gb	!B J@     H?!U=/"<IPLW      >*****(*(*(*()(IIIIJ`      8CA
**TTHB!J#%M      8CO*T|I%$J/M     89âE
**TTIB%*'M      8CA
*T0qIR)
"%M	       AWH*RPD"	FCĀ     <;I**TIIE!
%%MA     
O?UTJU
f      ;OU5]THB%J2eM	     |R"@
 *~STIERIFCĀ     8
?+TTABŕJg(       9%Gʈ* T|IR%j?% M     	$9SH**>T IR%J*M#     t#
1-TԮeSB%}΢      B "("PD A1HA      @ʑ*DJ.
P1@      !A	$O$I$%2j$A
D"      !  $$I0!,Dj`"     ~H"G?T$I!%RLa      ?D@Pp           =#II!L           ~!R" EPB      ? I!$RQ!DWXQ@      !O$>A0!BjH"      Q?90!TDB"      Aǔ)RTyB$Y@       ~|BDBDBDBt~LBDBDBB~      ? ĈG"  ?$&      % D$~!0!@JE"     }" F@<A    ?I
BĆ       I$T%$Y,Qa      Q$1"D*P      
B
*UXY"FUdҀ       B O
$]0" AJYP     ~)IT1!UTB      ! $|!0B'A
D"       }C            ! ?
$|!3!$DJL"      A J?IX! B-b       IJ$X('@EA     DC $         
I*QT! R`      !I	T`$~1"GY_     |QGT%Z%X,Qa     >D@	?,J^B5	        !"$ q$U3%TJYj     %I ?$ 2%TJYj      BGJ
"X!B%MO     D   $~1R"EZe"      B	O%$^1z"E*YW     B#*#$OP
         PR
 >T B"Y,H      ! 
.$2 BP      ")TؤI"E%]f҉       $X BGC     " (
.AX!'AEMPR     ?B
)  ?I	
R      (
 XE"C5DR     IA$|1R#EJ_"     $G	$H IN     
 U$/R@$~1
#D*C     %Q$>$ 1R#EJ_"     
bp!('?@        HO$(>*        C!E_ @!H#     I 2J.8#@%G     ! O r~WT IN      E"UX֐A#DRR     " EO$>E0!B*H     "D#ARO")Q F$	_      @!Bbo    #     H O	?%HT!BFĕOJR (     K/R) $y$O       !RBʒD>H@!B       "   ?HP"D@x     (P"Cc>J8 F
      G   B       >!Q
F?HjCRA     @*B
>*D( @     *
>H"*I&(!      *D
~H"*H&(A      ?B!!      @      >W?IMRjT@      =#II!L ?B!!     !HTD!  DADA    F(  0C      *&>J*$ @      @+B
JZ*($@       @I*U?ITQ"G         @HU$IW'H@       'E>)STWH@!     ꁬFZ~jUF!@    J*+B>TH       UI4( ?B!!       %_UBTSW:HJ@!     E_?>UR       @HJ5TĮ'QG( 0     _5U~P(       A!'>~aB      "$DO %')?ࠀ     BQ*kT PCJ@*C      @?I >>TTD  @     "EODTSn;     w|)TRq
W*wPUBU7        	 A	2HB @       	 
 2 @ B @       	 
 0@A P@@       	
0"DF       	
 7A         	 
0H  $@P        	
1`I@BDEPP@@       	
	"4HBBDQ       	|	 3J B"I       	!D1<
J B"I       	
 7D@F       	 J	3
P"DQ@B       	
 0@H B AA       	
I	$3A "DD@       	|	H2"J@BL5HI        @ !B       	
	0E@BDEP@        	
"2OB AA       	
2 "I @@       	

"4D_"DDB       	|	 3C$@        	
	$3I  AA         '!?@B       	!B	2hB AA       	
D	$4&BOB@       $DȪ
$@        
B:8rIP)$BA       	
H
 0@DDQ       	 @7JR"JD%B       	 
)
R4JS"@DB       	
 ?A         	 K	
7ԨiPD F       	

"0 OB AA       	
#)2RRH$S        	?
B 7_B
B       	 
	3_"@DB       	
?A @        	 
4DA         	
4R"BB       		$3OF       r
LD?I ¤M@        	JL
5>@           	?~3_"?"8C       	
 2HUP
"L       D/ @@        $)$:I D       	
O	 ?EBAN        	
1L@"        	TD?&JHD@       		$2Hc$@       

"
`A IT        	
2
O@        	 
w	
?Ԡ*H BBB       	
?OB AA       	?I	$3_I        (?"A"}@       	x1P]`5D@        	$?OB?AA       	?@	2 MP_*Q@       	BJ6O"?@A        1*?X"AYBHAA       	
	2@ G       	?I	$3_""RA       #D"$JE"I@D       $;BD	D       C?*Q$BHH       DO$()rF       	
T	$4FH  G       	0>@ BHBD       yhg! A      jCTQ 
%D       	 ~1__Q~       	I%܂?*F#        Ԉ 'Ȃ "IT@       r`>5"WuDQT        ~=Ja*BXHH       B-("PHH       IH1$D3I       ((JI@       )R$^!"DHȖ#       	?A	3_D>@        U
7Ԣ*DP!@       I*s8 Q$I@         B) ߺQTI@       A$H%"A$I       ?@ <
RI)A 
$bR@       	{)	J4O"?@A       B"TR$"ʒ!{$       ?DLdO?@HB      {!JkUe BB      ?@   T/xA I       

" oyR!{""H        I*~!|BQ"P      ?A DT/P@DDA      ?BcI@?       ALUb_DDQXB	LQ      }I,QI$gX@!        `O RG      ?$I	UQc[A$OPD        Ԉ"'URUSQ      yMIiTH["IlE      dEI'J?UI      "u}HR"ePA      !UZ$(hG! C        ?U /VF      -Ȋ"i^*B	_ʠ      }QLUi!_Iw      ?T	gz\ $D     $? H         <>B!"B!"G@     A!Ć$1!HbC'!     $HB	H"D$I'șA       ?  H
(ȐBp    Hbć蠂? @     ?AKHeS(~A@      D	o"$ȉ"      Q"O"%H"$#ȉ?      !!@g
@I	     @<_ dB_ %T      D}f_yHwR)B%҉J    "HDDIU_%CT)      @ ĒE
?TBhQIbbDDQd    A'rM	!B	BAf       !IJ?*B|IbD)Hd      ! B	/Ғ$$~XI2UD	%"QA       @CI*$*~THBBQAA      `p  BBH`O>         G	%$A~HB!QA     # B BBH`O>      #@(~tIREI QA     *T!SER
 B%JJgI)RdA      #A')02~<IH%BQA       CUR*UB-HBgA	E$A       #@I%Q~HBIQEA     DH G	/$~ }I"EH%QA     |!$@?UBKb$BB$     $ EO>EdBOQ      "I_>D%UVąQE         @ ?H!"BD     ?@    !"BD     @@@AL@a  @ "BD?        G @   "BD?     D   ?H!"BD      !(@"@  "BD?      2` D?        <8  "BD?      4#*hL "BD      E	ew  "BD?        COH   D?      ' @?  "@ 	     ! G?"E$ D?     }A)
$*b  "BD?      p? 1 O!> 	     ')JJR%$6 `G  	     ! C!Ȫ)#&t 	      ' @>DO     A'>DB'	    "@(
 (@       @ G$G$      HB!(A!G@D `    H"TR$H>(!>( @@     "C#B!"B!       " H"$&H"TV(P@    Db#G1H~CE     >| H2Ad $
 !    !>B?"""D     %I	$$B	$P"HA    ĉ$H"DH"D<      "d&N|&J2|DP    ?@C C@      <'TE2ILf#" !@     ?I"TB # # #      "$'ȩ;$"H"$L!      "H#舒"H" ""       %+ĩH"_dI6HB    HbCĆ$1!HbCĄ     @""((
( ?     $~C	$A	
$(D@      	$DRQFf<ĕ#       @	J"BB        "C"B!"RF1       @$	$H) 
H ?     "$ȉ"$" $P@     <$C$BO 
H ?     $#	$P2P9$H@?      ' 	/HI!$H@%      $9$ _A%P@     $9$ B	$ B      @ "C(|&!"!@     	?$ J*$RD     / H"R)HR J    ) eC$O 
H ?     ?$C	6''B	>$ B        ? I)$HII%@@
      @C$A	$TJQ     	$$"RI$ B	< ?     @$$BA	D@      %A%R	H"T@`     O$?YeDY!dH@"    G@A$       @%C	$JUY$(D@      *(`B0 @A@A     @?)? D	 $
@      	@%|P	PJUIR=H%!@      w$DI%RUIU$T        " ?@@      ĉ	~$$OȲ.JD/R$QB    ??DE!	       
O$TJQ      B/ȡ"AO ??     @C$B	"d@@     @?C$(A	%BA      I$A	< J*?     9%$_I%$B@      2;  ?@@     @B5 ß       H"G5A?@@    I"$PMO!<!      
O)%I/$A	8RI @    @	?H)?!        'DA%tJ	+UTO]BA      )? P?BA       
%R <Ȑ`    ODS	?JI)D@     I?$@	R@"     I!$!<O!< @     ҙDe)PDS<@     <$ D	RP     )PQ}_@@     @	/$I$_$"C 3     @	/$	 H) B     x$I?B_$JI ?    )?A	_<Ȑ`    ' KP>      @KD"B	$ZzIDB    (!TB?>H$      UHIEQ        ( AEQ? P!?@    O%%H	?BA       'C'R_$Re0 P    ҙ{)PD}FRI}EP@     #D$@$E%RJOJ@     C$K$F_%D@      DDe}FWQeEPAA    II%Q	 Z)H>      %xWP~
g    OD	?A	?B      ?L}^H
!&DLqR"D     $#$I)$J%A      }
"*_J}."THB    )5JO<B_ =R"    O %GYNe@	?H ?     P/()@dHwRU@A     T1fQ $H' A        @Cd9 $I/zB/)R       "\$RHy"}'y      @?Isq %"D"A    ҙJeO 
O  @@    ODK
$D
TY%D@!      @@^EK'H$       ʩ*_ <
O|J @     $}I
/HTO$UQ     
bp!('?@?@@      T)^ I%HRR      OO ީ@%RI$^@I     ʩ?A	DO=@       D	ˢUZwC@I     )5	?JEdA     HO$ ԩLJRIm%$RPH    ?!$ ԩRR_D%RTDc     %tC
UE?@@      I/MD8@     #)?DI$"_/? R     	K){ޔH$B_?D        <IޔH)^$OyjH    ҙ{)	?I	? D@     D	˨-wz@]]kpUց?DT      A D
"F($R      |H _Ć"(D!B E?         AG	!I(Q% B@!?        x"Bd?H1!G%Q      $"Q"$ 0BbBT      ! _%0@Gʂ$      !""? ?1IG	      '"?D3DYI0     )|%"1Q2H BB       TDA	 CJ!$!       _IQ&D DJI%%      H@#E-R~H"E!JRVPA        @@  #DH"PH@       C% A~"GBIPD       @@"~( @@_B@      A ~Q4 BQYE(@      @ @@A (  @@       @D#bB4>D     E"
"2(PH@H        P&$D&"@        @@2dIA""     A@ H@B          C2d!H@?       P  <2"dEH!$H          I @       J!B(_!          @  D2gH@A"ȄA       ; 2dI!$CȄ      @ !J2(dN        #A)(ZeHJ!*BT(@       AaB2e)JP!(CЄJ      D"ǤH2 J@AT0@        C@ADBO2 eH "#؄       $@2e)JH1$(         ; eJ`a($B      DI!$RYIT2XA%@      #@D$2fI$A$$H      B)f'  Q       }" F@<A    @L       @ C A3dIA""      A#AD          #@"D2e}J A(B        B	R^EɊ*T)@"B       A2eHA$$H       @#!DD          CA
.d!K!      @ C  2 dH 'D? B     @@ 2$JHH       !B	^"Ȋ$*JW"@
"      ?*2UgIP-Sd        'A?)JR/R@G@!        !)
3d!HH%C"     HDG2H""          C$JPABTD0@@         CABHD^~$PA"TQA         C 2eJH?         C$I$ʪ"EGIDA         GB
$ 	$OI          C/D' 3     A BY@H!BD?     DG2 KaU$2@C     )?HRJ*Ԡ A@       @ C  ?A$ EGID@(       @D$2e%K!       !D!2BdI/!         !?2d!K)Ҥ      'P$2OK eJ/D      GRä KPD?A       # ?B$$"Oǐ!      @CAB_h %*T)RRIHd     A@GU2 H@B     ^H*Hq)RD(        A!$d/dXHО}#$      G"ǄH2 H@B      @ C $ B	 A      {ޑ%"jH0TIZ'IJ%      $O? eJ/ E@       BI'I' E         # !2BdH ($H      UHIEQ        @"H?@dI  
UW@       R^"Uʑ'*U)@     (Q<QeH A'       @ C%ޔ)K*JVA4G      CzJjU!WR%A       #
%|!'H	R    􄯧DJRTL ? h     !)Ei
_ԩ)dRG"E    _$ @?UUH2@      !)	kTTQRGDa     #A=$@ERQJGJ@     [S)I'D? B      #A%(蜄i_!jG"h A      "eJ(
UWA      @!?jW\_'uʪU"        ? 2eJH!Ą    OD@?Db ?       *"C8$5PC  3     D8A2KU"D      PPD? 2eJ/R3        H^% $"Oǐ?        !?(d J+PȐ?B      @!%H!"E$@       ' ]ujUʨ-Q
'**QA       # iRHB!
B         Rc%EA/C$        Hw)mTUP
I `     'I	ܤkiRJR(YCŀ      Q2$%TE _IR     $ ?R%J-RGI@     #8HkP<VRJO       @$iR@@
bR       @ C*2e#I"̄0      @? kP9_RU˒U     H B)$j-JGs@	!     y=D^U+UWN@       !>HDTPQBE{(      C!PIS=_J}"C      @  B	*"B A         @@T)A 
b      " DGȐ""vU* D@"2DC         @@ U(@A@A	      B! O"TRADQ       H"E'@RUI*E         @>	DNIU&WDI$DA        @@B$IQ%'@A	       G~I	$DIU&UQcDA      " $ /!A        xG T!+D!B        #D B?  W(@@        '@ !BU( D A	        !NWĠ$JT!N`
D        @@TA(@B(QE         @O$U%+D"D      @ GQB)HhWI
	D)      !B' U*DB         @G U*PDA
      !O@xP!'@A	      S)(RP ~| H2PT       'HRDU*DB         @AG@BDD~TQ(@B(QE         G   W(@@        <O $IP!'HQ/@D        DN@$ U*HDB$     @@A@GA_b *jUWQ=DHd     @PDOґ=@HjTy%$JI         G ?@T+A B%       'H  U(@ A	     @A ā?RJkP B!~       #DB?U%+A :	      @ @O B$UP!'I/AD        @O DQ$Vp!      A B wҡUBQBzlP I	Q@     |  ?@p<; D       '@B^T+D ? 	      !D'B2DU}* EH
"     @@ȁ
C	UkYP !        '@ĔU+DB?"     AB?ȑBToR<I*"D     G@5 nUT I	U      ;B         B /BT
D! BE      ;8 AP(       QA < T@@!B     @q? LA8QDd@      @ _~U D!B       8CߦY9$iT" D?      8{ǀ8 AP      8C߄5AADA	       B@HT"BH	"      ; AB8QQ$AA
     @8C ~8	R!B 
      8C?DH9RV," DB      8CO9 AT$       sD!L!8SHd!D!E      p?  H @      9#@	_H6BL"
      8~5	R!B?B      pLA9TPdADA      ~ "f20|   @       8C߄9EPA	     9#@_$:%RD""D      ;I9TV4!B       wSLU9UUUUaDA     (8K?I9$QT!"EEA      8C!_I9AP"D     8ψQDJ7*UQ,Q" D        <8| L0     9A1P5WA!~     }" F@<A  p *!@      @8!_J9U,QJD֊R      8C 8 AW      8#@?H4!DA(A     "BD   p *!@       " $ h/	* "B       ; A9JQ$A	      @8C : }OB"F      9A!I9$QD	DD      9!߀9T DB      8AO4J$P      ;?I9RD" D
      ;!ߠF98T"DD       ; AB9W䄁	"D     8{ !"_@ ;D$
b     9#	9 T ~       t>E_
mTʪ!*B
     9'ĐA_D$ 9ET"$D      ;D9!U"HD!      8C9$T"D      ;?I!4@B$A      8CI:RABDE      ;!ߠA8 %WT*Dd      :K ߈D5R$A
D ?     9_? 9T" D     8{ǀ?*T;QB      @8C ?B8 P       ;  8PD	      @0":B@DB	      ;!ߠA4 @$
?      ;ߠA9T! "      8C?D 9	W! E      8!ߠ ;AP      8{ǀP9,ITaB$      ;_ :"EUL D     9A9$IW!B$     @8C 9T$!~     ;?I9	TB       8Cߑ8XP"?!      8C!߄ 9	T!B
"	     @8C A9PABDD(      	9 ?":UTB*       8#!@8QB%      8C@A
_ġ~8RB("      8#ߢ9|!U!BH
"      ;Đ!ߤU9Q
BQD<      :KĐ!߀ 9	T
      @8?>:~W!      rđWLJ:W$eUB       0A?HE#8 OD)      	9 ?4 AO*BJE       ; U9dTBD
     9A
":"AW
$      9AD4P@      ;Đ_9$A:	      ;@_ 9_
$      @8C_U4 I/AD      ;  6@	f      !!@g
@I| L0     J[M)UGA?B      ? ߕ*8QW?      ;Đa_5AO*BJE       ;P8W?      w!?J*kĪ-(    B 9$A  *&0     ; ?DR4 BB      
 :19TB?"     9  U9ܨA_
$     /"R_Im/ADU     	KUjRB+Q	B      wQ?"hǞ%zg      71Hq(?I9$B$"     s!?%?{iRϾIHT     2!:8 @ 	     r#y EPIoȢy"}	g     Hr B)kj
BsH	!     	$9SA2I9$R$A	      ?0AEWWD**       B       @        BB @1 "H        B"  ?@" D0      AD! @!B!  @       A@  # D`      ADA ? 	 " "#      AD  >DD"$Έ        AD?D@" @       A@   " G ?      A@ /@!"BD      A@  <H@!^       AA@ P!?@       BB ?H!"BD?      AC?         ADQ          @?@!        A!@   A	L      AB?~$H0
"      A@  /@ HB	F        ?@c<       AOq@3 i       AA"H	`02PH* 0         1 ><         p         p     @ BW%?A (P@A         
"$
" 	       ?@ C       ?I!'       ?~@C _ .?"8       $  >$0O<      AG $O{       ADHXAA.D       D?A&"*!       ?Q4p"PY!B
#       D!@@      AA(I$          /?B  !"        DDz AC}	      A	O@؀?      $D ?D@ @       D@fD      AO"D}HB9A       !z s$KД/BB#       A!_d6`       ϐ?PI  	        $y'IE        ȉ$I$        G?I$CEH               @        # @!"~$Q  t(@     @! "$P@ t( @?     P!# ""$DPq(@     !#@ "$$PpO          #D A?HDIAD<)Pa       #B@"6EH AG         O "D~I	R!\? B         @G""DDIAD!\_       @! 
"$%PDu/         D
*  'bAI$T@B       #D A?DI yDL       H A'	" H	B\? B      @ @O  D I@B(          @G A	DIEE҅A\DP(        @! G A?IDI!DB      }A/	
U$     ?      H! 1       9_SERu     ! @O"kD KAGH*C      @ DP  ! @@      @ DP B       @ DP     ?      @~"D(@  B ?@ #@!     @ DP  @`A$!B      @ }DH @  #D  ?      @@ !   D`     @ DP  @ AȜ      @ DP       @ DP"J BE!     @ DP@ @?     ?      @@     @      @ DP  @       @ DPP1 I!@       @~"D(@ @ 	
"$H       @ DP   " G ?     @ DP "# D`     @ DP ??B!"B      @~"D(@
1 @      @ DP ?B@ 8C     @ DP   ?@  @      @~"D(@  @'H!?     @ DP @A * #0A      @~"D(@  A @G     @ DP	0@      @ DP          @ DP  "}
$P`@      @ DP #H!B(     @ DP  C D`     @ DTD ? |   <     @ DP ? ?H!BC     @ DP| $@B      @~"D(@/?D !J       @~"D(CD I$IE!
B      @ DP           @~"D(@   #      @~"D(@       ?      @~"D(C  p_ |P ?      @~"D(A  ?B! $ G     @ DP|~ #tGB     @ DP   ?         @~"D(@@!B@V#8A     @ DPJ*QTEP%      @~"D(@(`?I!H	*     @ DP? @       @~"D(B?!@BIW"D      @ DP(I$I%QH@      @ DR @>EA@#      @~"D(@?A@ABL      @~"D(@ ?@ !@      @ DP߈R>E($PR       @@ A p8      @~"D(@ @DAD pp      @~"D(@OX       @~"D(A ?B !R$ !       @~"D(@   ?@@      @~"D(A"	 ?T&8C      @~"D(@  ? B     @ DT@T"EHJA      @~"D(AH	?A$I       @~"D(@@$HEC!J     @ DP?  JP      @~"D(Gψ>|@ ""!      @~"D(A         @~"D(@`z      @~"D(@AR	)GAIf      @~"D(@ ? H@     @ DP y #@E      @~"D(@   @@	      @~"D(@"DQTQ
Q!      @~"D(@~S  _!?"8      @|"EB>@@?@@      @~"D(@ ?        @@I!$~H	#B@E D      @~"D(@?  Dpg      @~"D(@
"$
" 	      @|"D  T$F`     @ DPDOH!BA< A      @~"D(A?"	0qSI>D      @~"D(A?ߤ$II$P      @~"D(BDq	DAD pp      @|"DBH ?@@ ET@      @~"D(@ B$Q)EQ	)a      @~"D(@B.$"H$Q"z_        @~"D(G  A$DKA       @~"D(A	>	$"3 JE@      @~"D(DDCDDQ?DD      @@?BJL"?      @~"D(B?~)"RG	C
       }$E?@@      @~"D(A$*~"w% E     @ DP@ CǄ      @~"D(AC#R""BBc      @~"D    BD      @~"D(A@?	#$&bC      @~"D*@C1   BD"D     @ TP ĒH ̂a      @~"DA?B	H0`s1X!~      @~"D(A C䈅?¤(HD@      @~"D(G b@3H  A	      @~"D(A"> ! 
@      @~"D(@yI'$$IL      @~BDP@ЀĒ(H(8C!B      @~"D(@ !@      @~"D(A$*1r	W! E      @~"D(G         @~"D(@?D@ 	IIH      @~"D(@""|/F       @|"DD @ $	D!      @~"D(@D*($BDB      @~"D(G	3Q3H*l'     @ DTH#A
DA      @~"D(A  $%       @~"DAOI$>HD"F      @~"D(BB	 ID!#A      @~"D(B Ñ:?T}PBEj#	      }TDA B??,         @~"D(A$%|"Ƞ"      @~"D(G	 (Vha$sFJ$Q        @~"D(GȈ""}|	(P%H8       @~"D(A$O@?L0      @~"D(A ߈?~"DA      @~"D(A>T ASA>D      @~"D(A P@* !"      }$D"H	 `3؈"      @~"D(A ?I~1$sP
$      @~BD@@	 >$<2"EDA?	      @~"D(@ %H        @~"D(@
?I%       @~"D(A!?~ "wA!      @~"D(A` 
$       @|"E@κ :        @~"D(C  @ $      @|"D %	R%HPP(`      @~"D(B
Ȑ #      @~"D @?@x!'Ă      @~"D(@ (_!"~8(! 

#      @|"D	d?~2@?"8      @~"D(B"	T" JyB5
QA      }$G $H@@        @|"D"
J  !>BD      @|"D  $D%       @~"D(DD?ϕ"I KFA	aA      @~"D*A$^R2DNT=      @|"D
R _A_C"D|G      @|"G$(LT)4$DKtA'I@x      @|"D 
C !&҂
c      @~"D(A Ā>Ddu*]Ā	      @~"D(C!? RA      @|"D2"* 鎒H	      }$D*
N)"LC      }$D"$#HJBR)II      @|"GDO>Dd~$IA'      @|"EDGD$F@@      @|"E!_ʀ?AD}B!A      @~"E(A  >DTWr]Ȁ      @|"D I~#
۰n      @~"D(BG?I$CEH      @~"D(G D>"3      @~"DIJ @f1U (8      @|"E"C/ߒ$?~H|      @~"D(AI. Dx!IB2@      @@"	|S@ G9QAD      @|"EH
;UP "
J      +Q? T@A       >W¨"?D9!TDA)Da     +T?DU"DH!B       BT%?8 A_     @" D#y A* #0A      zWB*9AP(        BP?9	T!B       "BTD?8!RD""D       B_?I9$YQąABD       O`'_DuTڪQ*WD!     }" F@<A 	  I @      @A	OAZAO8Whd!B!      p! CǄ  " $T$F`     ( JW?I9ITB$I     !S)J;	T 
     @ BW%?8pR!BDD      #T% ?G9T|"DD     H"U"E9?$;ȪU$A)
        "PB)?R9lU$QMD      D!"G!H" $T$F`      "JR?D9R$A
D ?      !JRE?A8 QRA	      #T% A8 %WT*Dd      DJU*X GLA9uUUUdUtDDB     !"Rb?9TD?@      #T% A8 P$
?      ADG
>q$JA      @ X"w|"(!`	?        @@A)rF"$DH       W%  ;AP        BW$ 8	S!%D     @#DB A* #0A      D@J'Dq|ҊDP	        HUH)DIw*Q*!	E      'PB?I8"P$
     #P%T9$EQ!*"QE"<      @@@DG}r")R/@H      ADG>r"f"$DH     }A/	
U$A* #0A      #T"Ő?? :P	f     @HB""$" $T$F`     !WE9$T A	      'QB" 9T       C_D?UsF:UH      'P8 TB       OU_)Du!?$       NSNrUؑ     <'TE?I9ITB$     !_E$9A_"_D       GUT? >$p"q	$H     HG/TQ%DD@ILp      'P 8 P Bwĩ	       GRJ~$s""       "WE%?9|U@
A     "B \Dwp<ʪ*Dt     !HB@G)>sjҚ
BsH	!      
UE?DTq C$B	?       G%_$]֑$rP׾A%(     !S"
?":UTU	     @ "_	$HI UH`A        @)R&YI%h	R*`?     @ B/$(P	 E !"J       # @ H %@J
       x!BH!@B
        #"D!BH E@       ! !AB$   @ H PP        A$I'HH @I
        @/B_	K@@H A       @!_8HP	%b*         @!_K@@H A      ? @"BQ(@      @ @/@ <HH @I*`C      @" $DE!	%"Q A      x!BxH!|B*`      GIAEQHII'PU@eUT@B       A$ODH@ A
       @@	EHI P @UX        #($P_ I!@Q
     ( Lh? !     @ @_> HH  EP         A$HH @I
       #($P_?HI@Q*`a      #(P?AIP
          D@=JI)P	E@ 
         ($P_ I%@
      ! 'T(>HA D
        ( HADJ%P(5E`A      #!B?HIS(P*`B      #!"B1H@B
 (       BBFH_TP      #A BRI#DB
      O@O  aDQ       @!$_?H!_        #)R?AI	R
        @A?K"JUDa       '!(DP?BI ~        '	B>)DR!H)H5`RB       @%$JHqP	%RJ`       B! A$	D!     @ H(DP K F
 b      GIAEHUIWPZAUT@B      #! D_ AH*Qa      ( H!B?IIHRJI        @ADD^_DK@$	*5`(      G@A,DB      @ +B"~D%HBR RE     @!>"D"%$      #)$_$IH!@B
      ! (o)JI_ꀠ
       #($_"DI 
%TJ_"     @ @ P H %PJ        qP$^sK @I
`       N()W\"UЪT     ! (Da?	IHBJ (        'BDLG! *5`P @     @ @D^ IPJE        @A$DP_@D>H!	%JJ      H"G5DG| !H       " &|0"R	       @_$IJ"JUDa       #AH$JI) J`     P q"M?i IPJE       !!!_
D%J1@J      #/P_? J#DH_`       '"_ AI%_ʀ "        @/"Lc@ | !H      8(Q?DIEUH"      'O^  KD(5D`     #!HD%EK	5P(U$I        @AĢ)JD(ڢ5D`      #!$O*IJ 
U*     !B	>)  (*T8       DD^D?H<U       #I$$IH$	U) a      .H^IK4(*U A       'ABJDHEY
 6      '$@ J(
Ԅ"	     !NT}DKT(Z5D`"      @)$U_ KH=@EE
 6        (W"I} 
*UH"       Q$^"K"$`       @AHE#H!/D)        #O^? HC%(:`RB      'IR  H!@$	
$!      x@$^%H! 	*U$      !DD
"J  PJ       '	RJDIPJ      !$DOI@_ʄ      ʩ*ʑ>|DB     @ @RReH  	*U$      'Q$J("       'Q^^yJK        @ @Ĕ)K *Ha4G      x$*{D" ?!R      'S^H JT*Z@       @@A$I	"Hpж5$$ H     ! Y$I G
 ɀ     ! B5IU	!TP?
J     BIGMb$DB     !$DHI%@
 A      'ABJDI%P/$      <¡B
 $C	/P?     P$QBH! $     !B!;D  
P@       @A$DP__D  IPH U     'R>zK9Jy       z(R/jb | !H     'Q_^ H(ꐕ!      #_>5HQ,ʀ       "T>HOʐ? B       O	"")"Ԉ     >/	D K/JJ}      '	RJD$K '"       'O H!  Uw     !DD;ĔJ($0     /!@RH)(*Ra
c     $yRHDEK*(ڨ_`     % ySD^PIE_ D     ! y@0DK/xJ g     !ED?HM!$T)      @Qk H"x`'I     '!^>{(HI@/)
$      "HD!O(.pZ B     @  '8WRU˒u     '!OI_ʄ      'Db9nܪ"       @  '!_]˒Q     $T^RDUJD+ZDa~       A _@Q@       @	EHIA'@I'A       @/B @ A       O HJ)HBT/@!@      '!$DO"|@8       '	?)DR!@	H<PRB     !! _ AA@<"P       x$_%@CA\DQ        @Ģ)BEѢ<DP      '_  CE<DP     % qQ@@
AU     (A
BQ1D        A	? AP(        A" ! !        @@	?	T%L        @@B$	P"E       @@@"@ AP(        @<	?PBG       C	BAP        @ )BB	PEL       @@@ ?	QB"      @x	?TQR       @@@		? S%L? B     A#@>~ Dx@A
      @%?J>)#UTB    &Dș0 `       @      @      ?DP"B%       @        @@DAL`  @     "(  @( 0
       D_  "D?@    Db#  @B@D`    Db#  !!	AB    Db#@ A @? @     "H
$ @       '	A      "(   !H$     Db# ?KB|$$? @     @ _BB        OX      	*"$@
  @|@!\1      Dq	DAD pp      	P?DI	      D?P!{Ih     D@ʠU@? "F        t  C!     Q\Mg          "~iUKO/    "/ S"䤫	?K      AB$~!AG     D H@%HD@     D@H!DA@AA     D H@qPB"DDP@     D H G"@ D@C $P      D KB*@@@     D I!	B!	D" 
@     DPHGB,A@	$PD     D@H! ?@EEPB$HP      D I$DI'Qc!A     D H@GAB__@D""$P(@       Nw" Ds# A	"P      ARD)~ I
	H)B     @?>I! A!B@     D@HA?	H@D(@      D H@$@ABDP@     D@H!? @O"@     D(HH$H@ 	@     D H! P@AC      AG">#@"*(QQ@       IO!J~s  !B?AA      B'B?1>S!!!~@      Hb$D}w#UA)$E     ~HD%RFdȒ$jId!B(a      ~DHѦ,@@ ?         $II&*Q,Qj      GqDTC1D|MTVQDEU@"      A܀*LވJ&
QB($Pj       Gq_UUS7UTMS_QDEUR"     ܑDIU$Q`|DQDETH     #"1MbF*"     ~DHѦ,@`02 d 0        wQeUS5DDMUVUDEUb"      !@*L߈R&Bȑ!$Mj      !E&1b(Qj      !x*"&"$DO"      QܠȀ &|Ԋ"'H"     |DR&dDOjQdA'S@       )H!BI%Jԑ/RDI$     I@F΄	*TliP%^       P߈&"/P"      GD}U7Q|MSQDAD"     DS`D@jd)5J       I܈y
H&HԾρ""Bj       iLH&	($PjA      )H!_ͤ%J!?H-$      UI4( >I QA$Q     D Iܠ*& !(_*"      @*( &R+Pj      $OIwLD5Rj[       G`}US9_MTV_DEQ"      ۸!.H"$/BR      @@       $!HA_? 0F&H      
"a   BD      ! H  @  ?         '@U%TPHE        GĪUReTJhPP       H	* " D D8     @ B@?~p@	" D?       DA!B~r"BDA      #D! @~r*Y'@E       A'!O~Du"I>D      !HBAA~ qPҢA	     @ @C	~ p )B?B       @O$$sԒ"D      !$DAOD$ rDԊ"$D      #DO? ~w"I
     P"HEW!
"~xq"
"      'IO?~ p@	       IG	?|rR       @@"QIWUUTEDC     !OA~p@	?
"	     B"O+~
rRB*y       GWԢ?" 睩%zg      IBA $@]
$H        |DO$|I$|DQPP      I!"Cĉ	$%H'DD"      A@ C	%RJ$L@       #y%$^I%$^$       !A$O	D=HpQ2,ADB     A I H D A!       ~ D@I$F`?@?A        *
_WȩSEKU:\!\B"B     $^]I%'R]IU5WrA
(P      #ĀJ"I !       $I"RH4, A      !A!BDGI_R <IT7ʬA*A      	,"HG%R<I5SȬA$I      /D}RUK7+\!B"B      AA/R	?"<(KA0      Y$I'$I<H 2#
"      I!$~H !@ @      AA/TWI<DII0       'IW(!<J 7$       Q/BJR)K7,      'ʤI? $H E@ATB      	IRKD9T`#mVE
     $AI"'RwH5W 	%P@     !/z@0RKޔ?{ҌJg      'P1JO      @@@A D s  @@      /@@O?R     < IA$	4X<I I$Q*      =H@!< H@!B
"        x@/BG	'x@A"HAE     B@EBQH      y!$BH @$y$"HHAE     <H 	(4PHI"I*@      =H!"CĄ	~D<I!$DH        xx!B	$ x@!BD       BI	$$PIA%BI	$%Tb!      y (`	  %x! B@U     =JP)C҄	J=*J,P
         x@/R'ĉ$PxA"IUD       x@%BJGIH&$xH BA0E      @H	?%HI$DRBI%B     {	""DG	!$yDQ$P`       x@/B	 ${$BED       x@?B	$pyP)"RHUD      @x@ B@	%Rz""LHD       @A @ $I!"BD	      <H  	T<JH1B
"       x A'I'$~$yH%BIQEA     <I!$Cτ	"D<I!$DH       =@I}<_IE=QIDP        x@/RG%$zH("PHED      xx!B$ {("PHD       x@$"T	$%x|	-"AD      @_B%"_@% _A%_A       x@A"H $ y!$BH>DD     =I!$Cτ	"|<Iy?D@"       !"BHbD$I8%RL	"DL       x@!$"_I$H$z A/AD       A$OD%HpQ"I$IDRL      @x""DG%$ z"B@!D       A _$H@A"TQSL      {%J'IB% x I*
TT&       y	$O	 yz%*SԠ)      yA/BG% {%RĕD     $I$OII$I$I$QM       JI*$ PIA%PI%QbB      "_,$RHa$IT)DR      z$Q.QIT% x@!B      =J(#Ā	 < H@!B
"      {!Oǈ x $"HD?&B      =J/D=KA$I*b      @x$BU	6$x@!D       @!D"EADHH        Hxy/BI$Hx!"BU      @x@ P	 $ x ("PHD       x@!Oǈ	D%$|D!_D     @B5 ß         x@"H%zP/BR
D     {"J'I$z"I	&      y "Oǀz""I$)&      {(jW)DRzrU,Q)怀      @x$"P	%z9(P(Uā     =J/	_=KA)DR      y/B$O%@$K"EDIDSL      OU&TRRI$_A%_A      @/B?B$I$"OĐ!       y$2BRGI$ %zD/R(Uā     =J/D =Ka(U*bC      !$"JDORB%HDA"TQSL      @"C? 	@@       x@!B  %z/@E     y	$OI $ {A$I	T'       x@!_ǈ	D%}!$BO"D|      \"E%U(SURJ$IX      Hz!?T	^%x@#J     <@K!(#$	H<pO|	-$A"      =H 'D?B<I'D@       x (P'@%{T'JU*C     <I!'"|<I!$~"      {	(_	d%{*UDIDf        x@!"B $z#DHD"      !I$?$ K#J$BL      /DD$I$ _	L     {ޔ)JR)JR){Ҕ5*RR	b&        x@"HD$y$BID       A/A $I	'H$AM       J%PI%PIA%HA     {ސ!
^	B!zR%*R)RB       /DDII'I$ EL      y%BA @$x %BJUJ      'ׄ	R& !"BQ	      ґIUԈRJJSUI"     <"H>< PI=PIDQR(@      x!/B$@y (a       $Rȏ?$ K)JJT)RRB       x@!BB%x*UH       A I$ KRJ(f     A#@>~ DDA&       zH)"_ǀ	 %z/H       !'Y$$I/DD R     $I(a$O)RJ)rR	V̀      !?DR%JK'HD!~L     Q_E* +TDOE$IX       @A/@J,QDL     =JH)#Ĉ	"< H!RJb       y%UD^Jy*UIDM      @A/DD҈}J"**TT@R     {ސ)JJW)R$y	'H$I?A       @x(BaI%zH/@J    !"Br??
      y$BH%${/@AE     {ޑ*_[S)y'HD?&B      {ޔ)J^	?I$y$ _	&        {?BG$ {/RH E        _O?%UKE/QUR     {/R $y	'A&         OO?$H/AL      "*NTzR) H _)$       /DD%J"e*[)DR     =J!Ą	D<PK?B
"       @/QDR9J _	
"M      )R/z%K9RDyL     :BCQ       @)R$L%JI?@	!N      {!/P% , h"ZjD      @y!'H	 %${/@"D      ""OO*$ K#DDM     !/B$I7HD&cL      B9(B^OR%J(_IBM     $)bVԿ*HA/C$     A? SAܞuZJ      )RK%ID%K䒉(N?        NO;"%H""_I1La     /zRDRJU+UTNR     /zRJRJR?DD	6M     H*@D)$Kj-JDsR	!      ""^/{($HIA/i$̀     	$b!I&@      SY(E!#$"AOȀA      GJ	D*DI%DT         ?@  @?       B`_"l%J$I        q!   !!!PA       BoAB$IT       A2'HH 6Ā2W(@ D      bD_?"m'Q       9!_!B|$$HO% D      sD!D!|HQ!DQ@     8=D}!B(DPQi     H: ^}A#J     >E! =B      ?I 0R	X,@A!?     @EJ$'@B"HBB       GH2?" Ȃ
"!!      C"&FJ"~(DPȡPEAE      @$I
$~HD!RBI(UC       !A!RD	(""HA`       @A(h" gPB BB      !C$J
""DdUB)SB!     @A3"RJ"     A"HFaB|I(Q"D!JL     A(b
K~GITҩDR(U?        A/B
"|dR"$HHB"       @A(` " e!TB(QBD      $I
$#d!RB$QB     P A-EK
,"fAR)(RR      B$F@B~DH^"DH D       A"$FHIEAQ¥DRHUD     AB/BJ~E QRĕD       A)R
 "e$IX HAB     @@APK w)JRjĤ	"R       @/PB"eH_"DB      @AB$FPJU ~ETʩWUHAD     D #$EO""|dW EBA      C
+P*U ~~DRHH%DD       'B
 "|dR"'HB$      @!(P*@~EBU
T(UR"         O "d AR%(RRB     @@AQK%|DI"D	6M      GQKH}KTҤIR     A"^$wIDz$IH5L     @@)JUJEHTTOU%D      COK? }HB*4RRB     A!Y$|ID	fO      @!PD}M|I(_L     B!zUFK"|K~"D!JL      G
RJRI	I L     E!zUKu%|RO	ԤIP%LD     @BK?I|I        @P >|DH$$L      BI/D
"~G	W$_ȠD     AH}JTRDJMa     @@AP >|DH$$L      C$F~E	W$_ȑAE     BjKU|K	z$IAM     @HD1R }
  ( PE      @ CEQ
)*RTB $Q       !B'O!*~T ! $P      @ DQQRH(U      $ HC"!(ω!*THD$Q      D@HI1߮IR$(_      "!@%X|$'H                CA     H F         CA   ?      (        CA    @ @      CA    @ "$0 A@       CA   #@ @       @"   @?  0      CA   PA   p      CA    @      ?      CA    @BR	  0x       CA !@$_J       CA  @!     @       CA   `01  p      CA   A 
 $ "H       CA  	 #@      CA        @       CA   B ?@ #@!      CA    8~@	d'	H   @      CA    @C      CA    @ B       CA  @ ?B!B" @       CA     p 	 !      CA            @"  A  D`      CA      I @      !     CA        CA  
 0|A       CA        @       CA        (        CA   @(I "H       CA  Ѐ@0! $H     @"    A       @"  0>DP`@?     @" 	" DA "H      CA  a* #0A      CA @  P!?@      CA ??$ K!	(a       CA   ?B@ 8C      CA  @         CA  @$$HH!"BD?      CA    ?* #0A      CQ @ @  A!A      @" $I%J/(@      CA D $$HH"BD      CA  T*H!UB
      CA   ?  b!BC       CA g?@@      CA     ?        CA  @     (        CA   ? ?        @"  ?B! $ G      CA@| 3BHB      CA | $@B     @" |~ #tGB      CA  @ ""(!P@     @" "   I6      CA  ω$DPQ"$EP      !  @ #       CA AJ H!$QH      CA        IR     @"    @      @"?*Z
A"D
@      CA  @`b3     !  CA ~      CA D A/G!B	     @" /H$ A$ 
      !(@ @BD         CA  H ?         CA?  q "@H!A       CQ  D A(       CA DDF@IR     !   *$@o       !   ?	 H$I=#@      @" ?BDbD$!       CA   I A?	"G      CA AJ H!$QHɑ	     !    `? 
 D?      CI ?A@ABL      CA  B!_Ѐ!>BD
@      CA OX       CA $"DB!DDOQ@       CA  B/B!"B|      CA  @?A$YH E      @" "$" 	        D?@@@       CA D $$H!"O     A    0<I$C@@       CA b! !      @" cE6	      CA DH!      CI   ~@         CA  ?@ !@       CA F@	$KA"I %      CA HDHaAB

"     !$ @?  ?HG	 0     !  $$H   @     ! "tĎ	>* #0A     @"  	2
O	"D     @"  ?BEdID)a     !  @D$B ( p      CA   $(HP!B     @" ?$H B!"
      CEG  C~*'B!J     @"   "2      CI (Fo ?@ 2     ! @( p      CA o S F      ! AB)T$IQ"E!
&QHo     @"  | _ ?      CAI
`   <     !    ?DD	' A?     A <	0HHd8      CA  $HT&8C     !(@`A   @       CA ??BrT$!      ! AD? !B     !    $ 0      CA@?II%3O      ! !         A ?@@      CA <`⢥ERDD      CA H O"D     @"	>T"D@
0A     ! A@       CA  @ ?D  E$%       CArH$O$#     ! $  w  OA?      @""@H@d8D     @" .Q8G !*"      CA (` OƐ!~      !   ?H A"     ! ?    F     @" yI'$$IL     !  	3Q3H*l'      CA
> sP?     @" "(DB"H       CA?\A% C
      !   $HL`9Ā"      CA?~=B(B $      @" <I$$i/ E     A B"K  ?@`C D     !(@D? @      A  H`a ZR	     @"$*1r	W! E     @" ?! !"     ! (D        ! #@%D @       CA  > E	PH"     !  "? ?@!B8
J      @"?~1HrQ_I"     ! #@%T&8C     ! d=HI!C?@     @" ?"IB	%"A     !  
J)( p     @" QIDʎ$     !  !?"     !$B
  !B      CA N? >@D!OIR@D     !  ?U]
'H(      !$ G  ? B      CA!?~ "wA!      CA 	@؀?     @"ČP0B!< !"     A @ϒQ? D|P EQA     !  Ȉ""}|	$TI$I      !   0 $?     !    ю  @     A 	P PP
"@     ! G	 (Vha$sFJ$Q       A	?*H $#O?B      !  ?~@B
"     !  DI&L !Ar<     !   !Q 'U" D~     !  >) gU" D~      ! "$08O!0     @" ! |  CEQA     ! " ||
T&8C     ! A s$O!R"#     ! 	"*Q'H !     !   b	 j3 	     ! $k%@B 6     AA=} gJ%"zD%     !$@(_!%H     ! @R<	 _	"Ʉ     ! D @@      !$ $H@@       ! Ĉ?~$'H" !~     !    c䂯$     !(v!CE
      CA π>"D|$_Ȥ"     A  @?@x!'Ă      CA ?>DpW!$     A  I>D  @@@     !$  ?  #|     !(gDTPP@_a =  D     ! Pq	O!JBP9     ! ?B*@	f     !  b" <\A$ G     !(  !     A ?~I	HE $      A A?J $OA     ! 	$ A?A     A<T P	A%     ! D	 @QA@@      !  ITbH%? E     ! DO>GĈ"$}HQ#     !  4KY.A/      ! *
N)"LC     ! DO>>GĈ $I       CA !x$W     !  > WU"D~     ! W?IH%      A T$5XRPaCU%V     !  q>D%R#     A!_ʀ?AD}B!A     A 	#ʄ$J)'BH*D     A 	E1uSI$0     @"?U$  C ?	      !"=+K-)$AD pp     ! ?I|% OA?I     A O$ D&IS	8      A ȄUrDDS/B     !  ?UTQ/Jd     A >*-Q%$G"Ĥ@     !   ??BB	"O< B     !"%O? 	ВBb     !  I~#
۰n     A  ?H	 c䂯 T)     A@Є?B| O_T     A <H  %     !$-Ti$>	)D     AD?|   {@_*     A ?Ȫ!@I
R$@     ! "AE t3     A"Cf"@!Eǟ     ! "䈟d	H%#@?@     ! H >D#uRK      !  I. Dx!IB2@     AB!Ȑ?B% QT     ! D$A>>     (G*"||  UbB     !~qWT @     !(DEQW1>     ! "䈟d~%@A     ! H
;UP "
J     A *wTD'DO1Da     !PsZ T+[PO	       $>~  H08"@H@       $>~  GP@@       |/R%'
xR *DTI@C      AIH#@PIBI4I!     @O$TSH RJAIE&H      $>~! CA(lC     	 *N%Q@)x"$"i      $>~" O!B.BA     <A	$I$I %BJQJ#       !$IȞ$GD9R$*@d       $>~  _?AO      >HD)2SI%JIe@J#       |@"'x~" JOԈ@C       !D$Gx9"W*@d        !IϞ$G|!8BP*@d       ?/P@ABRH"     @<AE1))RNAqBEJe$     ?H0Q@/Q|"<II      <C%(K )Np
UJe      !^$G8BR*@d      < Aˎ\ @\*T       BB "(      #D!B$HP P@!
           " D@ !      #DCQ
d*}P D@<P       #A#ED*|B AȜ       @@EJJUH~$H@AD0      8GU
T*}PE A\Ȑ       C萢bQH D'    ?" 𐘋 @DC      @_IU%T_|!DEI'        C%HJ?*B|C!@        GB
*~|J!\P? B     @ @@E@*}RI!\      ""
((| D'      ACEH| @GD       G_IU%WRUI}%GE#       $ ?D@ !      @UTWUU}UEQE]@B       @   C!       <GPjT*}R"U NTHJ       #D_D*} D@     BAVWRUI}DEy        G@
8*| |G<DP     P ACMJ*,|ԢA@<RPD       @@RJI*}H@A\       'ATJĕ*X}0PA!<(       !@ЀJU*P!GI#]%      @x!'	* C!       A'z* T!@@A      ! GB*f#(@W!RB        GD|PBAUPJ     ! B ܚ5"jDB$iTJ     %!I(Q

!DC        G`J * }A@<RPC      I$HdJB?'       @@
"TCA!R
b       @GH}PDAҜ
        @@_ʤL*}$8D P     H A{BU|HG!BP     P!ESM*x| C       !BH
 +}@HDМ`        G`J"*D| B \P? B     ! Cb*U}DAȥQ<P     @ @OH
?* |C!P? B     B!>TR%O }DEA      !DB%E
*| HBAA     !OEH"*D|@Oʜ      #DPJ*}@@      @ r A?      'AC_ʪU*}@@     @ @GJJ*D}B AD6     AbOD+*Q~ C!       !BHJ!*|@ !@     !A *$IE0AD      A ʪUKU"BE#QQ      !xBE_H*} GҜQ       @(UE$? ?D@ !      APJ *!CI#]%      "D JU *THA D"       @CB
*B}G\      D " I0 "     ( HO_ʤ*}H@ Ȝ      ! BxJ*^ExU]D      @G|OԚ5UjT DD_=DP       @I_ B?'     ? 0~IB_    􄯧DJRTL'      @ I("^Ua| A?       G TC	USP       ICI
?}|E\       CA    J     #DCQJE*}"UPUHO&     !$BH*U)jDqRV       HJU>DAWB         GWʢ}|" VHSJ     @ CEa
I*}HDJ      @'I*%D1WcQ5      D *HbHĈ !        GET}HEhAԜ $    B  p	P? B        @@**@@A#=QQ        @@
$BHBA      (DHJTB!KP       CU? TCO]?"       PDW*U!C_A       BH$ԂCj       GWJ  BO]     !B JU TD	G|!TCX      '@RJI+| D\      'B#PJA*|H<P     @ @GEE
 *}DҐ=     A!'>~a A?     !A JJjTSGE#QQ       AǤH
 / @J~     !BԪ5 *)DIPө]j       C?kT@@A U     A!?Ĥ U C!        G5BU)BI^T)      @@@U)j B@(        A DJ~     (H "	_$T A?      AJRUKFԅ1[c-Q     !BH**TBA     @ ?Á3?>T"      D
@!9~B|@J~      'HB
*| #UPDT=       >H@J~     /R}jWԢ)_S}R;     ?"H@J~     "G*RU)GY#RQ
c     !HBJ)*TkBJcqP     ?H?
3>T"     ! D?A$@J~     $DQи?*(UuG!_à       |@%RJI*U"ETz         AER[*UUTE| &      0@Q
UvUXURy_@       @%_Q*U<UEy  A      @{RJD*UBU|?@!       AQ
I*UmWz_       " r~  DE!BL

      $ rP OB!*B\
      *:> "B"DM     ! _:>"B"DM      /: 	G?"DU      ( Ȇ1L     @        #G耑"DY* T@"BD        @?	DMIY&TRDM(@      PA |OXBPB@Q        ' '@!BX(P " D       #  B?HY!+P      @  BX)HTA!      ADЎ  dCE       @ @ "@  Y(@P(       ! G)$Z5HU A=%I       @ ' 8pUQ"I !"        GI	$GMIY&WRD @       # B?@YE*U"HD         @ B$IY%/PA	      @ @ AT!A@
"	      B A
GMIYTRDy@      @ @ AT! B@""D       "CH  dCE       ( H  IY%/PT!"EEA       #  X!(@W       %Q $ D@        D
* GMAYTPDDDB       A%K԰UP	P	       (o  $@1        # B? V3R A6	        @G@B@D>X!+P!
B      "$PADH7IU@B$D_        #   T!$DEЅABDD(        # '"$UHrUT$$@H       D
* GMIYvVRDI$DDB       G72V!"J      @ @ UT @O      @ @@D  R@	*L	       @ @ B Y+TB E      @ @PD w)RVi"H        w Bs[) R@	"D      @ @B?BY* T B        '?BIUA)$I?       '	O%${Ȕ)RWI%$JITS      H  DXI(W!D      ! 'A$DHB5DP@(QI       @  D U2W! E       x PY-*HTaB$       'GJET _A6	      'gҐA}T! @GA	       '  *UYU*XPA	     ! "'A/
5>T "EA       8耑?DYE*UBH
"      !P@ X!+T!B%      @ @B? Y+TB          @  Y*T!B
"	       ' 7P%DI[*TTQED      '䠄|X+P?
"	      ( H $Y*HP 	       ' B  W%IH""DD       ?AQHQ)a      @ @ >"Y(W!$       '	OҐT! @_        'BH V%TJQ.@      !$"H!D)H䶄RP	B+S       $D {Ȕ)TI%$JIVR      @ @@ň}V#%J(Q/@D       $ GA	4IY(Q.BLi!       '!J5*T!      ?@@  Xh9L      @ @@BHD$X	(R(0@       (
AɄ5>TA!B	        
?+.$@1        /HDA	}4T! "        _D}}@[}DI=%DDI       /AT$B]P$BIDI!       # Y+TB?"     !! "UDW0 W!        # (W0Wp=
(       $D
AUT(P@       # "5TQ!L       ''B* W$CA	      # ?kY(@W? U	     !"H TY%,P2c      ''"? TA!DMP5BD     "B G)%H
 b3?@EF      '0Op?IY%+R "     #$ҐJEVS _A6	      @/O	$7W)$OP      ''"{(HU"@O$      /GIDIjKW!OP     ""'UDމ_Q*]DTH     #$ԐBREUV&DKQ/DE~     D 
 " 0     D " " 0     "BD  ?ࠦA0     "BD @   ?       AO?*U(U&($PJA        !C|  (        "A?$BH!!BA$P      ~I'HDB$IA"I(aC      #D%_ AH"GBEPD      -$?	D2IH	BC     ~%JH?B"EA$R@C      Dh   F       !B(/! ~|	P$      !B!!~qD$       #'H>"DdQB"IRC     C
+*R
XaC      !B!~(
B	R$̇     C"(H>R)OR_aC     ~|$_$*D8J@DA      ! H>]EqQD	BC     " D">*DTAABIHC       I)W`>~DGI_C     |(QTJ"D A@	P!       ^*'WĨQ#D!ABIPRC     " (   DUERC    |$H> (/%?(XP       
'(>D%EG	BC     ! ?>BD	D"IC      #>AE!CbIOC      B/HQD>BDIBIPC     @ */Q@>~D	D"I_C     U
O?>BDC	%QC      /$DAG	CC     QW@?"B|@"DC       !'ʐ!>~Ą	EJ$     w  'wʨ?TDUERUR     !H@UBB"À      @"BIO)*| QEHJ        ' rH|	_HJ!*BT	h      ! Ȋ>>DT"	@       A#
>(TPBIPÀ      A#
> T "IHC"       $7ʤQ>T!AC      @@A@	U+| AWB
F       @A_I*~RERJQF      !'Wߊ>W!BAC       CH)ϠA*| %WSQ
QdƇ       CI)ϤI*| !QST*QF       HB"_^*}A_J      !$$Њ~> WTC       Q"ʊ>>UIPPB      !!
w>"UT2DP"      @yBHU*}pU3g
#       CJϪ
*"}AS#LJF      C"TYOUw**|bT{EJUFQ      C_8| TUJAF       CRJπ }	WIJFa      A)!
cR ?D       BI_
}ȬU#EKBG      G"@	Ϫw*D}!SOʒ?@         G  >/ B
$H/QE       %_ %PIA%@      B? @
0 H!DG        @@  )>R"E!B(        @!? A   !HQDL         @  < !"B
b       C _! HQ!DQ@      !A'@  >$  D@          G  >  AB"HA      ! '@ O@<@  "@D         @AGD "$DHB      " G/"v<!$BH/2RC      @ A  >D B!EA     0    ? O       #A'@ > "$DH       xG x>  }!B/Q       xG  >  A!B       @ AO H>  B"HA       8 ?Q<DQ$HEA       !B O!>B $$HO% D       '@ "= ""DD!         G   H !B$I/QD     B D  *NT):R
QD".DU        GI%_I%RQD!B        @?_I%RQIE%_A       |DD D|D D| |DDD|D       @ B >AB"HA       #D OH>A(Q/Qa         C O!>B 	"DDO       ( H  $ I<$Q$Hđ/CR!      @ C Oހ%>J 	R$DH/Q      ! G	O=H"JD"      @ @  / <H !""HD        !B O >P I%J/QG      ?   C              @  $=JE3
DDQ      }! C/"  ?        	H~    ? O       '@ U>TR*UOE         @"/A$EF        @ O?I<A @ă/R     	? @! 	 $~
D/߀B      !wbD<!$BH"_       ! GbD<8%RL"D     $!~H   ? O       @_UUTWQAEP@       @?^U%䔕ReIA       #  =  A I$O$        #DO > A?B         @  I<$U BA       #@ ϐ!>B "$D      ' ?D =$"HD!~       #  ? I=  ""DDRB        @ $< $OO 
        !B O?> !z$IO      !  @0O P 4I$O%         A' O >D"$DH> D      " DGO 8J(Q      @ @G    A!B        #A'@@""DD      @ @  $OO 
        !  =@I$H(`      B A^RUI        @ "<(A _       !C` >P$$HO? B       #" D<!%J/HR!       #D ϠA>  %R(QQd        @ O$< @A"TQQ           <  (QD         @$$$O/R        @ Q$OD
       ' 
   "DD6        @    A/C$      @ @PO  w)R2jD"R          " G%
J/HR!      ! <Q4"RY/      !"HO$<( 	**DDB       8?D<D%KOH"      @#8  A<  'A       x <P,I$MdO$         @     _/$        ' O < )J_/DR     @ G/P5@Rk  AD$       # D =/A
"          < $Q       P ?H|  ?       #*N<%L_҄       $D?>!$BO"      Ac$  _ 	G      @ @@OH@$< "L0@     !$$ $<A/C$        @
d@<D$E$EDODR(        ! Ā?R=J'HD!~        # <$OO?"      "!\T>wH|*
u`        @ O A=} ""GĂI 0      %Tw@OD@ =B/B$OE     @ N@ W_|U%GΈ&      @"Ģ	")|A         'GO w<( P!AOQR<      @! *D@9 _A      '' R<  _ɀ       !		/ =D%KO)?      !@$<A/Q_R       'G%/ <$OO?"      @@$]u:-Q
%*.QU      BEԀA<*TURET
        ' /B=))J^T)     D E
P9IJJ!?      #GO?$ (BOO?$      @  /?*<**GĈ" |      D%p*O]D	+RtO]҈     @@@@@.TDN?A      !@R=J%2[d-R      B'8G)OR=(_OB     C@@!!QQ       ' <  %ROT=      @8G   <" D@B       A"8D!_HA     @|^$\% J P     B _  	$'H!B 
      #"E(V)D "@T        @@G < @A !"QA        A8V"ETP3 T)      @HR HH!"RHIA      $ " /$ B	=        "T2PI$RII%$_A       3"f       H TBH  A	       @HT"HHD%RR'I       ! @ {$Q      IWB =JK'D	3     $?RAJ{-RDIR         A@         !@ "|!B
b        @(D"}DIBEA      !@ 'ʈ
"k|AD       $OȀ qO a     H,>N <t(!       !@I"} AEB^DP       I Ĉ |	G^? B     HH?> @u
,        @/"Lc    ?      ! '切x}*IR$PJ      !  H |	G^? B    ~A!Р~$G   ?"      !(WʨQ) |%IG>P?A      UHIEQ      BO I?g    ?     O舑*w DTpH@J     	(x5RJs"_F	0f      !@ 	D'L!4@A
       ?"$@D @3 i      %DA	"S	&$TI(A!@(        D@(DjUTA"HT      @HQG    @3 i       !@O҄hATT       A@O  ( hAT!""T(      @-!TJUL 7ޠEHJ     DE B?IL5$@
       !HD	&Ҁ@kUTB*U      !DR($kQ:       
+@mEJ#DT      !B!?(jIW      \G	VRkRȐ     % 
?Ҏ)JlMA6IT      "%"((HjAO$     GF_!(u)^t9ZB     @;WJ*4T)Qe!JLAH       `C2
8$PT1B 
      a
 D 
$Q!"B 
"	      c $F%2J
%PT*,X@
       CTH%D?@)EeJ!HT      @#P@O$"D)EdILEA     @@R H%? t"*Cf!R
b      `C𢄈 %PT/LR

      @CPA$tN)#<dK̤IU"     A?_DUtI(@oAA      CT@I(_)} dAJ!RT     A_DE4*#dj[!DT      CT O?4 *`Ỏf      BQ c$DP?*!@oC$      `CF2A}$R!'B 
I0     @CTOD?A(!HbI,     @A_R%$ +DdS$      AH?}H_DEW@)B    	)7@G@G@G        AB$GHQ> E!"A     | KA$"OD AFS       '>>D@ @       @A/>EA       P~^_IE%@I(B       !B/>BE!"$        (K>GI	B$Q?        A/D B
@    @ߢF4g !A     |	I""BE2CA        J?@@        @?P?@@      (I!I>EIDI@      @A A>EA	"$Q(@        BD       $GʈD B6A      @A/PI w)JRh	"b     @?~$3&g !A     }	QEJ"TH        A!Ȅ E	"ĠE@     y!$C	"I 򈄡_       ?P BK?@ C      r! ?@@      y(GH>E!Q@     {+$P%K"P     }AUHU"E,@BH      _"!ꔕ8QPE¡       AbOH(?  ?@@     y%*R$IB 1O      !J}P_E@A)HA    A?TQ
A          %EG!B<I	*UcB       I/">F @D      |/Rx=TKT0(_"|      y^'Kd8Q$I,U- J      yB
*T T"D@       A!_ʄ U	W"ĠE@      $H>TR%O UTPD)_A     }IRJ*TE	JTG          A_ʈDUR B"@|       !?
!TDA?       "]UVH$U"B       A%?
% TDA       "?
XaV|I$UC        C!

* TDJU*C     P!# <? ( PHQ@bK        #@?((P!DB       @!  ?( PD"        '@?I$ItG      #(hP B"+          ~(PAB         '?2(RDA         # ?~((PHA       P ACB
PqJDG      @!A~(QGK          (DPCK         # AB(QO       @!$?( P|A       8# H(Q0QH@      ! D B y$Iw% NG      ' >(DPB        @  ?"(PB"       8# ?^(QHIK@       @# ?(P@A          ! (|PCK        " ?R(QHD        #A!?v% G      C
 (|PHB         B "	?!|	u0 G        ?(XQ(IB        A ?(QA@        @G(TyJ	& G     ("K(DPCK       !NS	%Jا%rU(n T G       # A	? (QGK       "HDB?ATu҈% NBG      #@QBL Er%
"TG     "D#!?~@rR%$NBG      #D"?U|!uR%N G      !@?I	`w%N? G      #  )P@A       $C"?߄)~RJ@       @B?I$w%N%G      x!)(PBR       !<(QAB+       'H/T~	rjETP G      D	 /&?
@#     DP#?( P!HB       $$D$Aw
$G     !C! ?sE     @!GA%""pʎe8 G      '@ tN?"G     !
	?
@#     "HG!?*	Qw?G     0'{;(QH+       #BC:Ur*U	n|T G     "ES?Tw҂%NG       |@"??H v*$G     @ BA?(d t$NO G     H GA??~좙wUn$T G     @#D$tAG     #B#*tN?"G     $"IcB[~A aENDTG     $ Ha$B}	wT!zBI G       B# "?U uRN! G     'B#%"{( t?@G     | !\ A@        A$BANE!NC       }"%Gʂ.(PPA@       !BE%DI]%DTI]' @      =(QD!DBExa      ?@|]!DB<B@      y $JH":EĨ]FJ 	@!      | 	.$PHA"N!         A?B]$IDҜ         A/R/DHRF*+xB     |"$Gb@B\AB        A%DJODH$I@E80      "D$PXA2U'      (I!_I$QDEK "      =(QD!DBExi      'P/\ID< (         Q!_τ8\QD%<        @A D@]RI%\(      }B!RPAH         y!B \|IBEE A     |RQI}$DD]%DTI]'@     }	('$H] ADBԼ0@       A/B	\ AE\@      = B!@8      " $ 3 D         9(P@]!DB"      'T>\@A         )J(QDQDEQ       y!B\ D%\        @r(d/B"E8* H       A!BI]$YAE\@       @A?DA	!BB+x      >DDSaBU."PDB%	       }+ QRE"N$@JA       (I!_HY\B%< (         A%DJ @8     $I$OID%KQ       A&$R\HGEĜ "       =!Q/ B"E8
      ~	
A?'BH rO@@@       AB$DPOD>\ @%<D@(         T@$HE"Exခ      @A"I]PEBJA     {ސ%*D'JE SޠEJԜJ     }"/R"B."         !JQ*D!DAuuUTUQut@B      @!$"_䐏B)PO       AAƅTH   
@#     {A _"DD̩U^I" E@       PB/UOU]TER
 "      }j+"$D~Q2F ?@     |$ς]$QDBE\0@@      }
/*DTQ~!EJ% O        A'A$O	QEE҅E\D@(         !(`O"D\B\? B      !B<I$	!BB	8$ H      @)$ROI]!DB         E%DJ ]	G% E      {ޔ)
R@^)ORN!@D     }
/?H.Q%DB!       !bRA	} AO8A     }	(' .P$AB        A/Bd @˄8      =J.I/$]REJ<@
"      B?E]TD\       |/j\X1@҂
        %+RTĩ/ZEÈ AEKx        A"HODDC%K? B       ($_Ϡ]Q@ A       ($UOUDJxd       !$$D@AK%       _)A袑u"EJ(5I      y/@$O%	 @%K       $D@"DCE	8      |$H>| GWQGWP @      &@DA	4Iy*U.KDi!      @#ABB
?@@?@g     PJ>x A!@@?@g       y/R/y EKQ     ! D  ?@?@@?@g     {ޔ/zP"9 DSB"Ȝ      }܊R.?I]$@       	U$YU~U*JTa      *"T_*	BK? B     {	(_"_	^ N\!       "?TOD]|EH"      !zDtUB%      D	+RtO]ĈD	Ku*K     ]'ITO&BȀ      ElY"CvrVj0      	_<^Tr>M*"D     $Q'B!
QAG @      ABDDI~ UpI$rJ      ""^/{(HAOˤ8     /TORDUREKUDA~      @AB"ȈE0 BE%      QI}%D#EI%%_      @!B "BD1 BE%      D@$'谟"RD(2"HH%D     @@'"G@1@H%A     P@B*H",D1@I(eD      @A"Ȉ G2 @H
      @!B/"|DD1BA%     @z((_REK5RP(eB      @!(Ĉ@~D2 @H
      @"('切xE+4R^eJ      BII'  IdO䈑

       GJ^){ހJ#DiIRT@J      C/ "E4PH"     C/(_RD2HH      A!z@0^KoyRJ
g      E_IE0 B     @A?D_TED"      !BG	$>HT BG	""DC      !$BO	/U$IT$BO	""D@     ! BGAI?T A'!B?          G HT BG""D      !AG@>TAG
"	     @ @@ <>HT BG	""DC       8GQ>UDPDE
A       @@>TA'
b     @ A? >HT@DA$BA       @@τ>U@AGA	        @G/U T B @	      #A'AB>UAW"Ġ        @G/>$TPA"D       #D!OH>U@D")Da      @I%R_IUI$DA      " r>	_HO!B!J       @A!>$U|A!      #@GO,>TU(HH          GI>T @      }" F@  "   ?     ! C/U*UTTB D        C!O!>BTDB	1A       G!OA>UAG	"DC       #ʊ>>TT       @G">V"@G       @@@P_ *w)SoĢ"H       ??"?       C	/$QTB'        @@!>~TB 	!     "$GW/UK UDB      @ @G/@>UTF*UE(C      'H>UHG?      	 D@@      @ @OI>(TKA>D     !Ab {ƪS@Â
$     @! G!O@>U @Q*D      p? "?       @OϠ>UG!?A	        G/@>U"TEbUD3      $@E!>UDG"        C'?* }	f      Gτ T|HDB      $"HH!OU侄UPDA+S       G!ϱU>UTA!*"QE"<     y"¤@? "?       G$_H} TR.@       'IO=>UHG?     !@Bg߂:*WUDF      #B'?>UHG      D$HDҾU(DoQ"       G&?z}B$y     'B'τ T@B*      'B'O>T$D!B)De      #@/ߕ)>~T@
"X	      G'{"}T=      @C̢$|A       C"?5|֨܊R*UHU     %(O|'1jQ DB     !C؄/Ry*OIШB~Q     !@@*k| T?$     @ A >?@9! B?       C _#~!H"B     @ @@ ?B9'D       @A$GR$ x@@ @f 0x     I	@? AAƅTH      8@      _
F     ( *R)BVJDA        #+P ?U)dR!o%      ?@  D%DdUXDH     O!T  ?@  ĉC     #  @  @ E      #! B@	$H" H@      @ 9"$DHQ"B G      @A   <~"H AE     #! B@	$H" H@      B B@ B<D/@@     !"D !~"_      @xO " D<$$J(1!%       @_  A= B        @@@O@@? @@
      @A@D@@` < 	$H         (@H@ ?D<	$PHHBbJ #      @@O@	<  A       @A$I)$RH 
 #      @@@OA@<! B@

#     #$H ^@	'@ A E      O@" ܈ '@AB J #     #$JP` ^^	J$HPB     @G@? =
"$I A%     '! B@ ^@H! _      A{! 9j*Re$A!
 #      @}D9%R "(J #      @%@ A;!_A!
#      / @8  @OABDJ#      @@A@`8"G/PE? G       AM0z ?  #@ B? #     0Q9Z*TdA!
 #     ' I  	$OA?       @_ 	 
R  A 
#     '!RJ^
b& AA     $HI @Iy"PDA+SG       A@% _QE* #      x  B9z'H)B^ G      KU i @
D*YDB #      <  "G|!UBAG       ?9 $@DB"G     G@B5 'H"" #     D` H*<HDCRGG     ARJ@$< 'H"ʀ#      @OA   )'H  
D#     IH^ {(<	 4Os
 #     <|D$P"D$DVDB       }P!/DA A      ~|PA! E&A@        !BH!A*DbP!      ?>BDI"RI!"BD	D       ?>BD	#$I!"BD=O      ~R	($GC       %))ISBd%y@     ~AR	($GC        $|H'BE	#D $( P     @"d         OHH!@DQDE%PD       | (
B%	""DE`      AHRBJB)DJ(Q)"     !DB%*T)R)DBЅA

TH       !_H@DqJHR!        RH!GDJ/S       !DHAJ@D!JZIR!     ?@Dy"(ZDID	"       DI)"$) D A@        )BH!@R*D!JP!    $H>| ꤪK      @H
Ü    B O    I$UKH$FjR	!      }E$JD	DXJ!      =J 9K)
_Ҥ%HJUK*%4(      ""I%")?I"E$D     $I}$$D	) E" P      *|T)"LIR%"JDR
(    " Dy@K$dX      ?@DU"Q/DDD:       }I'A? "E$I`      E	$	Ѣ)GEHT H     "!/AR
_҂` AP     EA'	? UFUH
        ~x"C	)?RUT("B       }	'H%DE$E      |(
G>"EA<       KOz%*{Ҕ)KԥIJ*
H      }$$O	?I"D@Dy      "Y	I#E$Q
      | $II#@"EDh_     ?@I#E"_i~	"      )FR""I"EIA      BF&2I?@ED
(       "=HB""*?A$I	DH     A DA'A?
dHG!RT	h4P     "E<OԒ)NR|
'襱M>ED	(     $*=JB"*NRKA_
"     {JRB2
H$H BxH      !@P*J*W A($_Ǡ      #B}TRUIW%_AEPB      !PP'
x*W AH"        P@
D*WC("_à      !@OU*UTR"0D        AGB*I&
O)PB?A       AGB*U"EH!E?AA      IB|*U"E%0Q      (I@_URH"HAA      )HAD*U5	W(Q?A     (HP%SʤI+a<I	$O@      (@PSUHa"}	@       #BEVWUUWUT_AD      !@BOU_U$I	'H$Q?A     k
_`X      DPPOZuPj)SH$`     P'ʤI*W$IH         	8@_U	($PHA"      ACB*Ur%PRA     8' BC      SbJ%z*
X)
_     |P_A(?`        B/5A*U	"	($PHA"      ! @OU"}"	W)0B?A       |!B/B  BC      ! DUOU"}	$PH      |P GB*WWX*       EB/UB*A$0H!      IBOI*U$I
H,PP?       DO_*UDB*d      A@@UI* 

(PPAB     P UjU«wX*ࠀ       B/5OUqVX*\R      !J_UP|!B%I?A      ! DHE	("B?Ab      EAOU
X*U       E_dUή
X*U       EB/_U"}	($^A     DH/B?Uu]Wh"Y      !@ABOUU~
4PhA"      O*U#f*۸1D~      PAO5RUV*WC      )ܠG]U"/B?A     A[k)	HH?"B       )PAO_U>U	W E?AA     %HUUjԒ"$WȨI~      IBOPjU BOh-E     B*B|K!C      %a߿*أB/È$     /*TD$X>ID0      S-g?     I򘊩 O)*Tk-hq~       Tj3(     =JH/D< K!B
       @I!BD!BYNV!Px P       @!>'P#x        y(7"DD"&Uj̥8      @ !"D?(P RBą	#xC         (07$H Q"U|!       A$)'H!"RBą	<        @/W$$"J_%CE       GIAAADV!Pt"      x!W* BP8(          A/"| FQE<      @ ($ ?@D"URE#x      !H)~H$"JTȅ#xa      @AADUTEYWVAQwP       <(w/TR"U"ECʸ         ( 8  ~W#x       !!$DI BQECx       "H)$DD$FP 8       D!DBHEOJHHB(F B8 `     !@@FH0OP G&G%8        A$	 !&RJȥ 8!     'ĥ*D(DPH"U
Cȸ"(     !!8Dd1 ?      "H/ | #TBȅ8"       @!$H"U*U8J!      @_IG2F%"J8       C@"@"/UHrET$'@x     ! A<	$	!"RB	8$ H       @"$$#T#x        GHW(O_~ G%F#I8      ADO Q4@U'8      @ @1
W%D!R"E86!       q$	"wT"URΥC	 "     @ $D "
W%àE       @AGH( 2GhFGD(       GIUAV*DB*Pt     #(	W"W:#x     ').TzD) BW?8(        "H/ "JT       G@"FȢ)DD"'Dx       GH
g ?R8@U'8      @ 4?
""TB8       GHRH$_$D &/PB      D `pH     D>0c"H        (7?@"#VUcx3      AODHODE%8B      '	"!$"JWD      '/ #TC"          /א?  PB<U!)       #Ǆ$=x`pH      @#ABB
	`pH     #DKP?Rb E(G!F     "ESJXIIz%JJ֕+rV1       SAeD?T"`pH       @%D
.8"QE8      |	Ϥ+-`pH     !$D>D!T8        GABB?JH$AP
$     !BU"\YTNSBTa      "*c#P8A!     !B_"HHrH	O%FYG*I     !Q1U	"
TC       DNITkQ	R,JkRD1
     ?@UBUT/E!QQ     ').TzD) #P#        GIJ^%/{ȈDD͕V2gDx       GIB_%/ȥlE&)y ?     !D"
OUF$UQ     " DIStOOL'@x      AODHOHD(ՕF*_x     !JURoUN ~J"Sd      COD`pH     ,x"$7׀	$`pH      @1k "
[ĥCx ?       GB"B?J*D-(       CQW_ ~E(GQ@      @@A_ /?*C-8" |       GIJ^%/{Ȁ}E(_x     "EQZ_Du
KSBV       GH
_ /B)BM T)     !B)_JHR	OSBHq	!     '!!$?"JW% " ,      #EGII10`pH       GAB_%/ GM)R        GJRT?"G%z8g      @@A_H? DETx       GH
B wB *Uy       OP"nHUIy MRBAF	 !     #@GHH!	!EQ8       DEODb	B =Jx      @!]h_{dKrpC       GHVh$O}ȑwTDE%J8     $BN䪊ؾEHDTV'(x"     }T}@|(` 	       GB*N
oz'(@%'Ux       GA"(0@A         	P A@I#"D      B?AVQD%D"DDb      @@?( ~DB!
"       G	$$ @F 
       8H<"HD!RCHD       H!DZ)H!RJH!()@B     ! B<I>O"OIґFB      @ȁB DR,ȑ*RDB3      AD/?h	@"Ɛ? B      'WI"'A@XU1 A      @(GF       #Dy=(B@       |ACȄI! A C D@        @|   BAQ      >ATR
H*U!
$P@       |@  !@B$R?@        y!ނ	|%CRJOJ    D~?3`  @    D~? 1|`    D~?~0Pb$     D~?1<Db#V @    D~?7` @    D~?3$oĆB    D~?0A|f#Q"    D~?0}g      D~? 3Ld?  0    D~?A1Db#FB4    D~?7`?A0    D~?3LeS*     D~?2	̂g$YFa2    D~?7#F
"    D~?3`?     D~?>2!o0    D~?B &    D~?0A(eS*ZĆL    D~?Ob#!@0    D~?I2Ig  0    D~?-ecRĖ0C    D~?Dc&?0    D~?ІD8kD    D~?	?&0    D~?w2h;TFU4C    D~?"1DgsU\F"    D~?3o$ 0    D~?39Ld?PĖð    D~?A̒g$FI0C    D~?&2	̂gF    D~?&2	@gd]R    D~?"7g$"2    D~?Eo["2    D~?x0ATd_X"    D~?3b#?"1    D~?2b+}XWC    |}.ƪ1d?$=    D~?1Qg!&9[    D~?>2fK? Q4    D~?UVwZg61    D~?ʦ0AoC    D~?IU[vVݴG    @?F3M`?     @?  &I5U`     @?$I3hEZV     C$B	B!4B     /$BA	"B!(B      )$BA	B!(B      %I	$$"4P"A"     I
$"_bB!(B      >D
?`H#䈒"H&(A      G" ?&I2IL_ⓠ@"     $ 	$H")5$$(?A    "'@O2ILRb P    Dd#!ȖDQ@HtCB     _$$&I1LRtD$     $"	$P2084H?      	 L) B)
TBA"    #䈒$H$H"?4HH      	%(QJTɒ4D
 @    B
((*J0
     ))$JI)?B/(B       C$B	% 
(?    () 
H)?
/
(H&A     x("K	J $ DM!)Ȁ1#    (eB$/蠴
(?    $)~O b( hX      D	%!4       )?  H5B       	 
BI'B      C%B)$V#4TJ     Rd%$H1]UtD@ @     C$D?$!AX       ++# ze)Rz8D!     (Rdˈ"4R `     )?$"3#    A)#?$E%+4J	       II)$
$d=)T*$P      C ) (t!`     	#@f"B_(|H%!     C䈒?䊊((O"     C(B $)(B(    )	?I	$"5]UiU       ?d*	$(?     C(K$F_)H      #$*""+誴J&    P
O"Ċ@%wWUZUaw      "?O "?(TJ      ҙ*(J
%BO)H      C		*?A!JQb<     ߉A%
_@iUV(    I*&DHX     ҙ*(L
)BO5R	(`     I(Tʕ*\Rd4a     CJ]RR)Pu"($c     C ( %O)ҁa     	
JJ$
O 
      	d)V_(FX <     CDhC$BO*(Qb=    Љ*w%P")c     r%H"UUJU%}leR@      P@	?H$IA4I  @      PB R?H!B@	 @     P" G	?$HH"Bt  @     P BR??H@ @     P B9R?H(QBT  @     	  @$        P@'R
?"Ha"@	  @     P B R?H|B$I  @       $$6I A'I!?@     (H!)$bID!B$Ȑ       PR ? H>EA)Ƞ @     PBR?H B$I "@     (H!S򬅩H8!RD      P ')H!BCI "@     $(HI#L $BH"D$А        P 'R?HBAąI @     ~ H|a'B	E&a       _ DA B       (I	,H !FDa      ((HK쀩HU#DP?     ( K  DH#A      I T}"JEڍbJ 
 ?@     (PHL$H~$B
b      P 
&?>HĐCI "@      (IU\_"HA'B$q     ?
d~! Cτ"     ?@ \   ~   @@     ?@ \   " B      ?@ \    A      ?@ \  !B@(B!     ?@ \ @ H"N     ?@ \ 0c8      ?IA@ ?P     ?@ \  ~DHP"DH     ?@ \  ?@!"B|     ?@ \  C" &p     ?@ \  @_(       ?@ P!?@     ?@  ??@ @      ?@    F     ?@ \   8'B     ?@ \ $!@	     ?@ \  DQB
     ?@ \  >|D#HB     ?@  @@@     ?@  ~? ?DCH>      ?@ \ A      ?IAC?  JP     ?@ \   FRI%QH@      ?A@?AH     ?A C ?     ?@ \ @DB #     ?A _" |     ?@@       ?@ \Q <      ?@@		H  B #     ?@ \!$J     ?@ HG     ?@  @?WQ>a `      ?@ \ !>;D      @Z }D@R     ?IA_>>@A       ?@QIGI$*      ?IAD"HA/N?      ?B@	!$	?8       @ (o   URUR     ?@ D>EC	     ?@ B~( AC<     ?IBRGON?	      ?A OI%D""     ?@ B=wU	G%     ?@$SO@D"z     ?BD(pMbE?     ?I@  || #E_
>>     || #ʊ  || #ʊ      D#PG2?H|!$舕$     ||"    '        $! Np	$ H      ? 1 ||"      ||" !A     @D o<q      !@@Q*]!U%PJ         BA5R]LU"ET?`     | UJU*Ut"QOQ@A       @A5R]~UJUJ A      AAT*]!TBQ         @A B*]UT?`A      AAH]*TT       $C _IU&MW?`C      ! CIUUVQJ`      C/UTRUU_Ԡ       )HAi*$IT%RJ        C HݾETSʠ       @/5O]wUVR*_`      %@ UjUEV`     " DC$I   !B      " D	!$I@ ! B     " DA$I  G     (QG"H_AT$OQ " D     ( Q!DC ߀*TA'
"	     ( PyH""_DU$Eo     ( PCECB_HV$H@A0	     ( J!8CU!TD!E     " DC$Ix G!      ( P#AO*BU @!"?       (P?H"D*U DGA)Di     (@PC@C	*URI!B(      ( 
9DUIU%$DA     (P;J*T*UPE'ABN      ( PCA*UD!B      ( PCA*UD@A	     P G!>OĨ'P	      ( PC_I*U$T@A	     Q~$>OԲH"D$QB     ( PCADCB__*W@D!""D(      ( QD#!*~TCDD     PG%>KԨPP	      AET  "?     (@PC@ * T @B?B     ( QGÈ +U@HD(`     P@CPD >w)SoĢ"H     ( P#HB"*DT BB?B     P ?D~ՙT2"$DH     ( PCADU$DC     ( PCB UPDA
     ( S!@C+T DEABDD(      P "uUH
	      ( Q!DC DTCA	}     P@CBG_d >U*UWҢ=DHd     (@PCJC?R*U EAB
c     (@PCIB%*DUB'A6	     (Q?IN"$UREO"D
"     ( WA*UHG?     ( RKO? *UHD     ( P#D#?@TAB%     (QDC?"*DTCA	=     ( QCB *TTBO	"D$C     PH?T OR%$HRB     ( SO?H*UJQ*@D     ( TCE#*UDG"      P $DHU TR.@      P@C$I>$IUDJ      ( SDC*UG!A	     ( S	GÈ *~T@B(DR     (PRQB*T @A	     RG U\'⪦I     Q"=LT
WB8     (QDC*U$D A	     ( SQJ!UEOD     (PSQOB? *T D
      (W!A#*UHG! ?",     (PQK +UDEB/
?     Q$䒀?RUJB6IH     Q#z%0~҂=Jg     (PQK+UDE(
?     Q#'?DU "?R     Sޤz=D~TR/NH     R"B1DT(nȔ;      !A _U~D/B"B     @ A O	"}R"%O        !A !"~HB/B        ! !~|!@@?       @< ~"B!H!     ( I! ?I"}"IOI     !( _} EȅU/D     @ !"~|AB$
c      #*/@;@"}")PE      !$/!"~| #@	ϒT	      % _?I|!%O	      #/@? #|B$(55DRB     !I"
$|!%H	/D?A     @ !/@_?@|!ϤO	     D#Q"O2?H|!!     ? D9 ||"?      # c*(UܨWr
      ABC"
J% @D      9}
 @D      :}
1
%Q(5hWt
       "|A1%(Uܨwq
      (SOr
(Q'IG%|?A      =AH 1BQD.	?        @πD  |!BD!         AJ |iJ(_       @A ?D@!|ED_D        AE?| #DA"      I$Ј@!         ! JE%? %| CA         AB?|!B("         ! DE? ||DH""      @ 	JJ}HTO_%"      UI4(@@        @ AD  y$	R=     @ /P@ A	        GE?B(Qg䄐@       HBP?B!B@       C
>D(Q*"gȀ 
 "     ~ 'HHB)'D@     |!'H?>BD	w@       A C/P%~JT /I!    D?~
D)BD)~4(`@     ~  HFPHB!w@      !@C!~!D$O       !B!P!~$$"Oȉ!B      !HD	/P~%J)I !      |!'@B@'D@        GHPP?BdJ'@     G?
,Kꨲ% "    D?~
/ߠB$)P~  @      > (/蠢H      !B
G>D>  
`"     ~! H("Q|Q      D I@Ȑ!"~|QD"ɉ"!       B	?D0qR$ 
"      
|  QU"}T+"eQ      a@7 >~D/@""      $BI>QE! '
"      a@!
~$R$,O
!      @$R( "~|	        @Gʐ ~$"	
!b      !BIQ$D( G
"      )PGG;D(Q!G

"     ~"!TTQ( "|"UP%      " DA'Ȉ>>DD       " DAH3>wEU"'@"      !@Ȑ~tR%O!    ?**o (H>HH       !@OĐ!~ $$Oȉ!"       ^A)WĨQ#D!!G@J@b       !@OA~R%Oˉ!     " EAH>"E&'  "    $((J.>)I(     |!'DIBR	
$@      @AH>*D" "J"    }D>TR/*)HH       ^|"RR"}~S%(      T|%T_<%        @AÈ$DD"'@"     D I@!>~!*I*      |!_РB

℈@      0C !~iJ'ȉ!"     " (@GQDQ%WҐ

"      B!ʨ.>UDA%Wʠ*j "     DO!|~I/	!A       $OȐ?"|@E Q       !BI_$| ieBIR       } @H| S~      AB!Ȑ!~QR'	!      $|H#Ё?D(_"u|IPBQ      D}"KB"a#`      !@ʐ~"ĉ@      $G?IDA"@
y     BG26HO@E(      PCЀ!>~D$Oω
!"     ~ @| E      A B<?D)_/WRUJU(S I      !H$)j F    |@O*_F7|Aj_4@     ERW]R!H$E(# 	     ~!TO_>U|        " D!sTH" A*%      }$#(3$_ȄE}$EA      U?בTGVi$O <K # )     EU!UGA     ހ*TDUR_R0     "DDR*_H0      #DB(})TSEP     ހJEUT_R0      !BkJ"E*}QT$H`     ƀ"tE^*_J0      @A`GDTV`S  ?      *U(*URz*	$`      H"eRUETPJU$O ?      j
$N*}"ET{H`      (IoR
I>U(!VRe$O ?      k
(I*}(!WH`      %BoQ
E>UTj5$/ ?      @d'HJ>WU*% ?      D	RdJe>V)R( ?     D K	H}"}TSJI⁂     DQ4O_>Q($0       AaB
>(UTYJ) ?      !hJ*n}(IUH`       Aa_ʑQ><TP( ?      ;D\K(}*MTuRȁ      jeJU>DT )UJU# ?      %`A
U>US*"/ ?       !j'?@*}DU$H`      oG
I> WVB8Ϡ ?      |j _*}|U$L`       bH>DUP"""?       !j'?@*}DUH`       "h'Oq>UWR%5O ?     }	4Ӯ%TOU*}US螺p@       Aj'(_*}|!UO`     |b'Gʀ? T~UPUY/P@       gH >UUR0Ϡ ?      Jj'
/d*}!USH`     }A7_*}TPG`     Ii'_ʕ*?TQW?(?      @AbRJ>UUR0Ϡ ?      (o
/U*}TT$H(`       g@
 |T P5O ?      mWTUPQUWʪ.o ?     ?@ \ IHEH      	          Oĉ)%"O"$J$D2      @P("| BD%HL      ?@l&$OA?F!          #@?L?A       Q B~"D|ABAE       S(("P|ABE%RL     ! / ?Q DETY       h@PX& @F        S(4"d}DABD     <S("} ADBHULE       @/2_I>E$ 
A!     }PX& @F       )E2B>E"JYA      P@("}	DH%PLA      P/h""|	BD%HL!       @!?*>TE$IĂ
      @!H)/O"RJ%$"       @%%*>D A
        @/">DpQ$JY         A/">|DED
       R"Ш~"}HaDHT@      @Q"($#||	M"AB     |xB(f?L?A       #!$D A
      !! ?>D A
      ( H/"x>D> $Ya      Q"(A"}	DOPLB     Q ШB"|!BBDQL      A/"_>E  H       #(%?ߠG>Ez
YD       )E=I(U4+P      B !?L?A       !!$E/>E$I
Y@       @A$E_DR~<HPAQ[         @!?ߤ>EI$ʄ(        GIIS'R_IEuTT]IT_A      a'	$?L?A      BARGETEIPB       8"=O|!
`?        @"/ߢ D	$ʐ% D     !$E*>E$I
A!      "2%$_ϒ=Jq	RKbZ!     }A$'耣?L?A        @!">E򊤕J      H"!?)^<IA$     @ @(??@<IUU[(C     !?<H $+Q[" <      /%>DTBĕJY (      @$%/ߐ?>BDA B*Y        "H)%?߀ E	䈊      $@*%_<I|KP      RH?L?A      @ @()IHJUYJ      @ @$E <IZD      #/_?=H $0      '!5E?1SI"Đ!~       #!"?>EIʄ      '!(}R=J)
RDҚ) a       @!5_A?}D"Ă
I 0       !+ ?I>E$ Ĉ" |      #Q/"?D      '! R<I  ɠ      '!2?J=*K򒄭(     <'%%< IDX=     @ @1_)R I(       @ @$E?TMK?A!      Q+ =IDK/"?     ! "<ID&c      '! /?IJ%K_ڑ!      '!?$]ֽ$J 	␤B"Y     "'A/1D<Inڔ;      '!?$]ֽ$JP	B
$(       CPI !$C/?    
"K?ЀB$(~
$/B    &)+$I $(B$/B     D Q@ϐ!"~|$Oȉ!"     ?@3g !      !$_|!R_IE%      @GD}$E_Ȅ"     !
 RdI}uR_IE%QB      @G }QDR
"     |@#R_e$̂a     "   )$('   @      ~x"BG?,IT-RX(@      ~"BG	?$IT%TH(       9!$>T0AD      "$/R"$D~EQ
QA     |@=J*"TDVRA        ! C$$~H%RZQE!      !C򄈏A%}~H%RJQJ     <@	? UJU(
@       Q D$%TJB       Q $?$~ ERQA      !!CD$~"QJHA      @#$Oޒ%$J~
UTJ0PE        A!DOߒ$$~H%RJQ"      (I $~4URQE      ! C$~"QJP_        #	$ETP@       % K$I~*UUQE     ~BA)? T"P!        A#$Ē?$~ Q
D      ! {O$2>VPD0      @!Ò8$P~JTU1A       AGτ(}EPEA      OUT*}
Y*UH0EB      "GȊb)DP8UL"D     ?B  $$@D3      i@c%/(|ZJI     ~!BCI? TR($B      ~
EWiR.UUvT("B!       =#𔈯ɒ$~%RJA
      %#$I~&MW0RE$C       A В?$B~J_D      =#ʒ$*~UWB?      @-/Ji| PMDJ      |!OȒ$ ~W0PE?A      %"K?@~%WaB     ~ 
DR )TRRH$BA       +D$u~VPjYE      !!	$!~zU*B
c      *W*+TQZZU*QD      !SOʒ$ ~~"PJ$     ~%BG	?>UTEW!        A'D%TJQ"|      @AG
O(D}	R"EE6     ~B'I ?U&T)"       @!Ȓ$"~|BR*B
c      =#$(~&MV0RE?A     ~B'R?UUR)"        A'$$~"EWR?@     ~B' ?AU&T)"B!       !#Ȓ$ ~UZPE"B      PA?>HD C*UE       !#$~"ESB     ~|BR?"}TR($B       	C{%O(B}$AWJ      !_?P$_:      H'Dߒ!$~~_J"       O ~WI"       AOE
8|
YEU      'ފ	|%SUJJJ       !#$ I~&UZWE C     B#_Ũ}M
+T%QH        (Q!D$>~TUSEA      =J?(IQJOQ$      !#TOВ^ ~
P
PI        B#?(}
IW_Є       P#?$H~EWJ$     ~UG	H}UVQ/B      
bp!('?Q?D $      !zUVB%      ABJ?TOQ?A      !   _Qw©      "$/ʒ&$~
Y*PKB      ABҊ?Jh EVU     "%0h}RJg      !/?QG'?     J!P*uTZB      @ =S :_]ÒQ     ?B I$H~!UPH8      A@ _)?	t'&B 
"	     	"D$":*(PP%!DA      !	C%p%HDJ       A (?A A($QG       !BT"_	D%D_DR     |J"(|PJ"I*@       @D_ >D CDHA%     | /PR%"J|R $@J       P#_ >>DIDQ$A     |
T("||Q)DRR!       ACH䠄E	#DE$       ACH࠾D AB$      =àA>DH(U?A      !CI?`cD%4H(U"B       A%J (DPCE(U#       A;R bED$DH$$       AB  D AB        !@à>D }B(U      |"OSr"$}Hz$T
         !%H_ߠ>BDEI1$A     %SQ`ԾE AB        !`_ > ECI(UC       %AाID%KI(U$C       㠅B_~DHH%$D      A_ATx-_UEUTmDUQR     |	PP?" |U*$R*R!        AO  D	$OȐ%$D     |'H:
A}uWQ]ETT     |Hj"|X1"Y
      |"Q>" }R*UJ        E>DTCUHU$(      Ac#DPR?AA       B>EPH"$      QPाkDDH$>     |H*w|DU MJRJ      $O`DCJȕU%          ?@?@@E         ?@ ` p       'H$         #@Ȑ! ~T*I C       !Oϐ? Qd     P*]*}     >@0 #`  A D pp     >@0 #`  ! G `     >@0 #` DAD@p p      >@0 #`  D      >@0 #`  w!@     >@0 #`  C H      >@0 #` Da     ?@` $A   Ap  |?     >@0 #`       ?@` $A    ?     >@0 #`#G5c     >@0 #` R!F     ?@3g    ! A|     ?@3g ?A      ?@` $AB      >@0 #`(  &ʂ"     ?@` $A ?      ?@3g  'B B|@     >@0 #` AE        ?@3g   Ap<     >@ A    ? (     ?@` $A ?$ $T&8C     >@0 #`@D    |8#@7D)c     ?@3g          ?@3g  @b@H8     >L7@O  À     >߼$C  	     ?@3g  $"HUBBBc     ?@3g "??B@0     ~~@~~~~~? ?"(? >     >@0 #`!RQ$
?     ?@3g  1	dIp\&B     ?@3g       ?@3g$@!+O#     |' |H?S HI!/     ?@3g   FS 	,     ?@3g0 (     ?@3g @
HQHID@@0     ?@3g $*!Qd	     ?@3g ?@!C 	E_     ?@3g
$H*P*IJ     FAﰀaA?I1$c     FA o%+&
c`        CA ?"ETHI!E$CA      !  CDO"ETRH!E$CA      "ǀ	?A4%3$Y*Ya     @	"|#DRDI5%R       EH I/.ITI)'HC"     q</r?%  Ȉ      ? A ?H@JL ?      !BKO_$T hAd	       IDB$~ h!d)      @:B1*|D j a      C%ZϪU*}T#Xh a       'JI*} ᢥ+$H      PB% ??H@JL ?       BKT( idB       @yJ/9*N|!piTi@a      CPQ*}D"k	 a       I_)R~D@R&T     !$STIP_)"RDA#W(     @BDO*w| !iTia     @QBE/U|!tmI a      !CU_CR @AZT*Ï      OTGBh      BLrT}!Pj	 a       C)J)*R @AZT*Ï      !C)J)wR@UFT(       @BH$ A$*R@       @ )~!HCB*       @?O|PD         C H)~ AH D*         @!B ) ~@I H*       @AO*~| APD*       @"BIO)*| Q@Uꠀ      (@I!)~$QH5Ij      @"$~HI#@Q*        @DOQ$(Q$CEA       @ABQ+| P#@B*        @A_*}$ITD*        @E)
O)*R|R 5Pj      @@D	+*Z}IR@
5Pj       @AG
O)*R|PQ*       @A_"*~"AW D*        =I?}IIW|U	UI~I1! C      @!B")~!H@H A      @9JT*}PU#@UN        @A_*|pQR UDj        CBIU^
| A_ D*         @$(OД)B~	K  @*       A@	 *|IT"5D*         A"DI"*D|R#@Q*       @AE)
+|pQR UDj       H@"BI*$|HP@UP       AB$ה)R~IJ	R*       CB	"*T|U#B*       C@	ϐ!*~|	S  @*       C@	ϐ!*B|R @*      @y@)O *|A_ D*        AE	>/t|QR@
U*        @"(I~%K Pj?       @bBI'|HU#h*       A"Hﬕ*}TUS@j       AH	/ϐ)*J}	T@        A!HԪU~UK@E* D      J@D@	"!"    Bĥ c ("$P      ArG	O*
|)W#@R        C"@I*| IR
d       @%BOt}RWS@cj!      H@"O |	RUP B       @D	/$Q|R# A*        @AB | P 
5dj 0       A
$)~J
5Tj      H@zO	U|HW Bj      AH"/U}EQP5Dj      AHI!	*}IPUD*        @@A@	U+| AW D*       @@D)*g|S5PjA     $B$IK@H      P@G?*H|RC	_ @       BIA	ψD}R#@
Rj?      AόR}jUU֢/P*5j"B       A
&8ԨI~EJ5PjB      @!@*}AQKH     B)%DC"       CJD	ϒ_ |	S P D      ABDe+J|IR@Q*@      A=ϬRjIPB *A     ~ H|a'B	E&@D@	"!"      @yA	?*}IW D*       @! OA~ISUK       @@G *R}8RSURj        CKO_*}TTCB*      @@C	UT|RQK5H*       P'R@ }QU_3V@2     ! A=JJOU*}Ҫ%Vkj*      !BE((_$Q|* A      BYI)ϤI*| R#J*      D@I'ϔ)~ AI	b*       BII)π }	TJ*       @#OԠ>~DIUH $       C
H洛I*}$IWUI*!       @ABBI
Oա*~|RUh "       C_O*}$Qz*     ! Bt+WU_WU$I       @#ABB
BD@	"!"      GȔ">@UW UU d     "B!D$@*EUR@J*@      BIJ@	U?I|!WURj      "D$}JUjTW@|
      ! ByĔ"$IU%RJ@*YkC       @A"Hϔ)*~|IS Uj      D!Hϊ*}qUSR*       @!JI}HUk@i* $     !@Bd:*WURUF       G!+i*@UF#Dj      ArDI=U+|	RUP B     !B$Brj	U	_'@YU*I     $AQB!~}II? L      G$}RUW*W@8Ҫ) a      HBrBIOU| AS UH        @}O/H}TUS_ꈂc     !AA	τ*}!_Uqj     ! C,R>VUUJ*UT2       @ABDIOU * }ܪUSQ*       G_?IUSU?       @BI*| R P ~       G  !W Uw     ! BA\BX.*TJӠ"UF     !BT/|S P B     !BǼ? *)TO)Uj*       Aϼ_}WQ/pJ"I      G"OO +~R#_* |     <<ʊUU<<ʊUU       @AB"||R#x       @@A *B|Q#@8        @z(/Ut}%Uk8        @A!ψD}R#@8" |      @B/*}TTC      $yP"	}%/RH E     !BE((_$Q|/ A     @ AAOUjUU(#PxA      !?@  "     @!B" QJXQA     @! G!ߠ" w *U@      @! " G*U@     ?Ȁ'B	' G B     @! G!ߠR  *U`      !O?
@) SJ Q      @=$$ ~!@JU`A      )?H@!C@`        Њ?@(Q PU`       $"O@*IP*P@      @  !BUB      @!$ I*UTUD       P$$/P?@ A# ʨ@@      # ?@$I (j`@     @! G% H" G@jUP      DB   QK      B##?@  "      ?@@  ?$$H8     @! GH"_`)R @Ub      @ 'H! (" G UP     H@'H/ $y'@UR      @! " D"  UB     @!G'  G*x      @" $'@U@     }! C/B   K        |"/Ј?@(] @b@     @!B"ȒD ~!JHA     P@"" >~IJE A      !$$Oʐ? @| JQ@         
Ia |EX?      (S%_Е?*@TSڮq@      @	($_ȠP5T`P      ?H)?H	?WY@@       x"Đ?@DS ꠕJ@     @@$'Hޟ% J~	PJ5P`       @A (* "b ' *UB     ( H/?@BS@jUP      @A * TB @UP     @! H/$I'UR     $H@"'Ĉ $ JUP      @gH( l'@U@     @! G!  "*x     A C)N
#	?@@ $       "Ј1@E *UH      P I?A$Q 	5Uj      $!O?@ ʦH@    ? !  2K     !%O?@- c*UT      C%Gʈ* T~Z}`      ?@@D@x!'Ă      T	$@J`Db     AJ'(  ~@*UE@      @$_Ϡ }" G*UD       'P?@!JI@       $(/ϐ?@!S*T@        $O?@  J_@     A# I@B@       T*кU@]PUD     AB/H*~T@\@     ( H,$@H#@P@     H@'$ $y'*UR     P!-?@@D     $AI!ȤI I*Ub     !$K!?I@ @*UD         ϐ?>@D*x     ! $O/>A>#PE"A      @$'Ȑ? @! C*|      !D/P@  UJ     !$K/@ PUj     
@U"'(__ ~@JUH     (@QH# *U G*UD      !܂T*PU@+pB@       ![OI+Q@?@@D      C!ϐ?>@T C
|@     / R%"K/N@TEH       SAeD?T"?@@D     "**2"B?@@D      S)/P @|JUT@      !T*Є?*@R% C*UD@     "D{=UW^"z%"JERB     A$H |~IE A     B#*#$OP

 ?@@D      Ac'H   @      @C }@ JU(bO      (@J+~UPP     !

?@@D      A$Ȕ) ^~ZP       !$K"Đd@H#_     
@U"'(_@ ~~	*C     $L@%Έ2 *~E Uj     A/$~@C        'ʐ?*@|!*Ub      |A	$( (hZu@       /Ȑ"@d US@     @EJ$'@B~IEP     @!/H ~EPPF     (!TD/Ȑ?@ C
Q@      @!(h5~T*F@      @-oPI@Q@      !T/ @|PJUL@     AD#A'
dHC RUI`F       T? = EUa#Q     H@"G__  ~AHjE       A%W_*w~Ub0     DAD??@AI     "D##$OjU>CuRF     	""䊯 >AH     !I/TUP CEI     #E& UC %j      @!B OQ$I@$
h B         
E%ADa      !HTD!  I  	        'B D|
 ߨU$       $*OА?D%P@     A"%J.&U@@
Wjb     !$]/UPHy ~H JB     @ @x $c$I&2Y$`     !$yHA7(?`B      @{	?IB2%        y_Ϥcު7Y+       #yꤔc$"4/ @      "G$"O<!R      "G$"O<>DG     I RD?P!{Ih       "G$"O<*F#     =S *UU?T!xBA@      "G$"OD	O      "G$"O<JHH      "G @? C     PB󊪕dT x%B@b      Q"ʪU?TTyrEE˕U      "G !@_! $D      "G |$|!'JBY      PB*D?T(z*@K@     HR" *@xA!E     !PB"*(Py!E@
0     #AP+b$I*$zII!       @S򪫥b
%*J$|IB!E%0     HR""*DxE!EA      #AW+$*PyD!E      #AW">*pxEAE0      #AW+ *(PxEDA0A     #AP"*z	H!E?A      DI$UD""J
"`     @ EUD6TD@!

`     @ CP7@> TGB"JD     TK"* {A0      QR˪>*xAEAE0      #PK" *  y%DA0"     @p"S"IA @?WQ>a `      H zBBDTID!*J       I7_$QTD"/
`      "B_TAE (
       #
@_RU9DR)"
T`     !'ROPD TE
$ 
`A     H"zUUWy2UF+*B(Ua$      #+ IA$%ZJ"B     (SQB>*TyQ@0A     P#RUW TG/ꈂ

       @  
#"G!U`      H EOPD_ TD@J!j2     !BH$$Y)RhD"E     G _~Dp% UJ	      Ac$&0w܀}"I)D      'DF~I$$O	AM     ( PAB߄!>V	HO%"D     ( PAO*>TUtEBH
A#     ( P!@Є?> TBA
"     ( RII"T@RUOU"     ( SJ
>"UA"LO
"     ( SQJ>UI
"     8%R
J)U&@BNTFJH     8RJ?TBHN!TJ!      BG$DT#PAAB      @OʤU AQERRT      D#ʢ$DU"!U%TRh_"     ~|	  &c#H      ?8R) UDRNU&LA      BJ T!TUI2dTD      @C#*$DTQ VyMRA     @J$U"W9P2`T      E/SQU PAAB      PEWJ U"TUjR3       A$Y	$ @<*R       Z]%$B	$ |	 T`     }$#XEЉ!?<#@        C	$5LD!DAx     ?"%H       "HFB? px%URj@     %Z)(_߄!B=
?       ?@ ?)(J ?"      AI+_R!z (5Pj      $X%I$H= J	        P I5I$P ?@A      IIJ)T yO)RjK      xH!bD)(J ?"     %Z(_Є? ='ʩ5`#      @(UE$? *C ?$      "KnRR!z(5Pj?A      !BK+ "y$UH@"     }$Y)'? ~=WZ5`       	:KD?R!H{ /D*       AJRO> !y2Ij$      "K@?"| P{  'H@"      }I]U  {%URjD@      RI۰_k!x$UO@>     %WZy"*U=Wz`      @~"DIJL UX  $       CS]Њw*UTR]
      #ES
?w T#Pê8     | QEDSDx}!(@      EB$x}!(@     !B(__I~'A G|I A$I     D(s%ꨗ{wD( SWUʁ     @HB""$I?A'?"      C$O	s @     /F?~Gℂpc      #Ȑ?$(=       C O	" `>p       C$O	?A$a      #8";F
@!FHdH2D      "GqH"H Q$#i-A$l      Gp)PJ $#hDB$l      !Br(*B? "$i-RHl      )J	s,i?$I$i$MOl      "t/R }$i-Hl      &p/RI%'hRDl      !
/vX*Z %'jL2Rd       $BO	~EI _ȑ        DD "EI@	IB!      @$POހ%J
JW@?Q       A!GH $D"      | B$G@?I % _!"     D PDB HI
B      QP$kH_ϑB>      !BE
$ #J!_     
UY?@CN4      @@@J5TPD?A      Apk҂jUj3x       P BBU5A|U)\O     P AAO򂈕Q5A!U&D       P@/BU5ATUҪIE       P AGQ5A$ITF      PBQ5ADU	_     P ACBU5A|TB)H     !HTD!x	D
?"     qB*kR-dSȸ"      Ap*kTuFERh8     $PHA/BI5A<IT	H     !@H
5ֆz/     HqPds*@     r_jUVUn3xR     p"*EڪUmnx     qR * }SdS8       qE>ESdSȸ$      yp%*kNzUjS׸      p?k~WhS߸B     !q"eWb8C     !p/%kwVR-dSx      !wTWhS߸     Lq"*}Wjx     ޤz@*k'fU]nָ     || #
 |DHI      %H@
- *P      @CH0@~  ?( 0      O=

ԨR-UB5+?     A@{dUI[E|U     @
Ԩ
TB5+?     @'HE
TUVj:UT     P*( QWUQ     @T"P؆w  wpDO"&      |1 _U\;UUj#    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP       ?   ?       >>   >>       ?   ?       >>   >>       ?   ?       ?   >>       >>   >>       ?   >>       ?   ?       ?   ?       >>   ?       ?   >>       ?   ?       >>   ?       >>   >>       >>   >>       ?   ?       >>   >>       >>   ?       ?   >>       >>   ?       >>   ?       >>   >>       >>   ?       ?   ?       >>   ?       >>   ?       ?   >>       ?   >>       >>   ?       ?   >>       >>   >>       ?   >>       >>   ?       >>   >>       >>   ?       ?   ?       >>   ?       ?   >>       >>   >>       >>   ?       ?   ?       ?   ?       ?   >>       ?   >>       >>   >>       ?   >>       ?   >>       ?   ?       >>   >>       >>   ?       >>   >>       ?   >>       >>   ?       >>   ?       >>   >>       ?   >>       ?   ?       ?   >>       ?   ?       ?   ?       >>   >>       ?   ?       >>   >>               @             @       @              |>                @       ?           @        @           @                   @A 
          @	 
  ( p                                  @        @?          H     @       @ A  @@         @  RD`@         @                  A?     @         @?     @       ? @! B @ A     ? H@PA DAA           @?   @ d 0         @@  @@        4 D          $@H"Ĉ	 $@O        " D@"?" D@"       ~    @ A ?        A!BBDI  $ H      @ "DD
$P( " D ?      @ A 
(PE"(   ?      	 @DD!A(       @$HP> @   ?     ? @ @TB(           @   A      @ "'Ā Bq!@  ?        I$I$I?$ H          @          "Ȉ""||! B       "Ȉ""J)DR$ H      I R$    @            @D ""$D(Q@" D ?      "H $ D@         0`7 @       
 " B`       @  
   P"H @ @ @    Q$CAA     a!0@        @  $( P@`A            @          @     @      @DQDEDST}D@A0     $!? @`   @    D$?"Db#A     D$Q	$ I)$HO       @HQ@"  ?    @             0!"          D @(I$P        @@"  @A 
       @" ? A"A P           @ ?     ?      @ A! A         (Qd*UP!B(U	$      ""D@D    @     AA    
    @
 H   ` ` p        @  @           @ @  
 " 0     ?@B@@B  D    
    @ 0@          ?  @   B`        @@   B`                       @    B?        A  @   D`  	      $              @ 0       @B  @       ? @A      @         "H      @              @? 0 ` 	 !     @@ ! D$ (         A!dEA
$ @        |   @!             |   @!              0L A         A DD"$ @      p?   Hy(`$  @       ~ $?	  * #0A      ~ $N9#< I @                    @    @ _               `C@(  @           @ $P           	  @ `@       D Dh"D " C     A 
 @      A A   `     @ABI	$$BI	$'D     @A $H? @ (H@      	  ! A     0D         B "    0  '      @  "  @!      D I	   ?p '      @@ (  A	($_Ǡ    @A@AB	$ F	     
HI B?I!$I  '      @đDI'ґ ` ` G     '                0D      C$B ! 0  '       D@I  @  `       " $H    ! 0      @ B  >@D$'H     @A '"D(,  8      C			D  @<!J     G@A$  0 $       A"? AA!B     @?!	B 8 '     @ARDN`.   0 $       s#]_ʑR*]AR$ G      CA$  @ !B      "B	D ` ` G     ##$B!J 8      A@' p G     @ ?Á3? x G     @ B?>D@A" D?      !@DI"> "CE1$J       "!B @      CC0  !B!B      !A$!zBR1$eGр      @	$"( A BDz($`G     !@   (?  A$DC    	 $I$j     @                ? 	@     (     ? D @B   @            B ! @        B ! @       ! ?C @   
    ?                   ?       @             ?   @             ?          @         ?       @         ?         @             ?       ?      @@             @@      @ A! A      ?          ?            !B             ?         ?@@             @       " D$H( " D     @:BGI>             "	$$H " D      @@A	?~       ?      "Ǆ x " D     ? @  Q$IP(       
                  @               @ A"H        B  @A          H$
  (`      @ Aa`\       D 	$$HB P @           @     @             @           !BB!      "E                 @          ?  A             @          ?A H         ?@!          ?  A       @ S$H              ?  I!A           ?@  ?@          ?A?        B߁	2<%RL$@1        	  ?@@          "Ȑ"H!f	JA        @H }$@?      dMu	5J@H            @@ A@     B!ʐ!B         ( P    & 0   ?           (  	           B(	8 @       /A(@" D  "@D       @   @@            (    @         @! TDBD!D"       /(  @@(      ?@  @!@BA      $!F"(DP @A     @! @CDA@A     	  $ "D(" D@!"F       @$$H( " D@       $@"D(" D@"BD        
 " BB`  ? @            
 " d @ A        
  BB0  
 " `        "C
/BDAH"      @ A P(I@B B     @! @  DAH D        
 " B`     @        
 " d0< @@        
 " c   ` 0          
 " 0 @"B A          +@ A P@     @! ( @ A        @) &Y/$H$I` "@D        @?(! B@
b       @(! B@     @A$EDi$DDI$D H        
 " B` B!B!      / (? A "D          (  @@         
 " `              D$TBDAHB     / +@ A        ! /@ A        $  ~( B  "@D      " @VAAD@     "  ( @ @"D       
 " "B`   " (     @     @"D@"$AB"B "      @ %I("$DH(           @     D`       /   (   @         @! ( @ A       ) A "D(!@A 
"
     @" "*  B A BĀ      	 " ā TH DH!D       /AQb(D!PB`qA     x/  @)D%I@""     @! AFHL$H @@`       " ĉ$ȓ"T$H+D @     @"Q  '@       @! DUDQ@A      @("&D) $@H*"dD       'DATAGDAHAF      " D$HP  @_       @$D* /@     @"A" D@B
     ? +@!@BA     @! )@ A          A             / /@ A         /( @@       "@A *!B A!
      " B($O      !  @("D A A      @$I*"! D@A         
 " #0A #D  ?     @ AR"$DH"D         
!D A P@      !!F) @/A      @! I)$H'A "D      	 $ ғ
TI$IDD!HB      $@A )" B@       !  @**TA!>      !   |(" D@"BD       " A"(D'B  
       /D!$OP!E!B
"      ( /Q)D%PJ@H"F       ! (D!B A!      @! +$D@F     @! A( !@BA     "  ("D @"1E     @! 8(pP"I !"      8' " D@B
       /(hH$Q        /@F |(" D@!"BE      @! +@!@BA      " @(D$I B
"	       
 " 

d @ %QAA     " ((P!@D"DD      @! $FH*(@!@BA       
 " 3            ( A(J) $I@A0@       /	"LD'@         /   @! B A BĀ        
 " 0A	@   @      @! ( @/A      @! @ '@ 
     @! H)  @@       @")0 B@!      ( A$I)$H%PJDE      $  )D B!B 
     	 $ (@+@"@D(`     @"A "F B ?      @" $ I@ B@      	 $ āT!@D@     ! "D(!@B
"     @) P@TB	DEHB     @@ ?@M(    @          $!F ( "@D@ A     ! B) B A BĀ       $ I"L)RT$RPAR)!     @!  TH DH?ā     @! ( $H A A	     @"A P"I !DBP@      (! F) D$ID"F      H) A$̒)$H$I @      @% ( @?A        @)$Ji)$QɁ$     @"I	 @@
     @A'Di$DDI$D     @! DDUDQDEDA      $ A?B(#D A!       /D T$H"D@D      ! $)T(  A       "B!"BDR$H A)BbD       P@	/Ji)$JI)(*H@       4(D(A          /! F@)$@        /ࠄ#? O DH?ā     @!  # O H!?       /H(<"@D$       @$EDi$DDI$D@H      	$ A!B(#D A!~     @! +"E@ADCD        /! F@)$O!        @@  & (  @@(      @! H($*HD!B%     @! ?(  B A	      @ "&D)%I ""      /D!T GDADA      "@D)R,JR% J@)^'J      !  )" D@      x/"D) $ H@ QDɉ	       (  A        " @($@HB      @!  (*d!B      @! $I)$H/A 
"
     @! 8(pP"I "      @! ( $H! B@	       _B yI$H$O A 
      ! AB!DR%"JD	LBa	>      @@  &@("@G " D?        
 " 3     A        
 " `   A      @ I?HP /@A	      "@DL$R) _	"D     	  $ (P (|! B  @      D $>h"$"H"$      '@  W!D A      #A1(P8C 0      " &@(("HHB"(      @ BAT! @H""DD      (  )$O @       _DI$EDi$DDI$DL       ?>D($I@!"RDĉ       
 " `" $@I          ? (*d A!~     @! +@ A@AB       '! FE(#DA" D?       /P "_LR%TJQ*WD!        ā)TJQ/DO D       'AQ(P8OA A	     @!
 #J`"D      	  'Jl+'@'A       @" (  'H A A	     
$@)@ _        ?A(#D!B        
 " ;     @     " ACLDADA     @/ @ O       $ A?B("D ~     	" ?"(D/B A!
     @! (  'H A A	      ( A?A)D$H!Q      / ( @'H A A	      " OBA؀Q|"E($I      @" ( @ O       "@)F$(̒)$B@""D      A? "R!B 
"       @P$,P!\ B$H!      $ A@GL)$H  A	     @ R"'@
(     HI%$VIk$RII%$L"     @$IDS! B@	"$DI      @@/ A) $|OB"F       /P "@L Q$"HD!B$I      /AAP" @@      @@ B)" F 
b       "DED  I @      @ _Q $@O	R
D"     B%!	(,| `     @ _A} 'A       @)AH! B@""D      @|H"V%i&TRH%!AJ        I	 @?         @! /@@"     @) A "E@ADCD      @) D+"E@ADCD      @" ?R)J%(JP)BR      @??*"DB E     @@  &)!D 
"	     @/A	( @/A       @"@A?H($@@      _ Ji)$JI)$AI        A}  $I!H	*      _@I%@i}%RQI}$AI     @@  &)@ AD     (H + " D@D     " >T$O"D@     	 $@?"D(/@ A      /A(I/%I A A
     ! P(H*`d(`     	  $ }&JL)R)$JH)"K      @! _(* G"T     @! IT( !@BA      /B
)RR$IH%"JD       ! ?I)H$A A	      O "	&?   @I$     /
 () d        "5) /B@""D      @!)$H$I A
"
     _DI%UVUiU%TRUHA"AJ     / ((*,D@B
     @" |(  /A A	     ?A(ؖ" D@B
      @(@?D A9f     @ A?HMPP#HJ`(`      ( A?D))P      	  '_!R("I A?        A @)@ 
"      " A") " OA!~      ( A  (  A        ( /@)%HJ))a     @) A$8 @/A          A 	$H!B          +'D@
l      'B#O DH?ā      /ࠄ K)DP        ?A)'@ A"        ]BS!J A 
?      @) A?(((A       
$@?A)!@B"DE       @/̀  @(      ) H#? _DAHB     @/ЂA( " H(       /A?DLR"$DO
(     x/ !"F%@( !D 
b      " A/@)D _
"
     </~($/@ABDE(       ( A A( @$I$?      (#H\	HP!FP$%IQA     P! (h!E@ADBDP@     @" (  I@ADCP@      *A("(_%R AO      @) D+   OA A	      " ?!B+   OA A	     @" !? L"(B!F 
b      ( A? *"D(_@"D      H _R"'H?DD     /A )$IA!Q       #D!HBP$B#!(DP!     @RBR"*AD' HB     GpHE!VhE#RUIA)HB      _h ADi'DI$DEI     @@/@F? ( ! B@""D         !$( 'A        ( A?A)$ODE      _ LS BABDEH       _ х&dh   ""?     	(!D)'H A A	     x/ !$F% ) @_(      " C Р"@O"%DI       /Q""̈S @@      	  '")"D'JDE     @ _""̈P ?B  D 
      ( A ( !E@ADCD         A "H|!B$A
     @! DAB @Q$@@
"     @! I)$T1DBA     @@/ ? (   @ B       'Jl/'&@AAa0      ( A?  +@ 
"
     	"@F) 'AD     @ ̈S$DH      @ _?H!CAE      @ (@ @B(QE       "@  $ H          ?D	IT)$UHQbbE       ?@ {̔)RR&KX%"JD)     @! IR(!E@$      #|!BDQ#JI$H@     @"A}  I       ! GB*f(V FB`      @ @_ HBR'J)B!J      # \-XDщ#FI("H@      ( A?A)$H  "
     " DA>RX)(E$I*$JB      "@	$)ΐ! B@	$H     BA Qk B PK     @ _P /AAQ)a     	  'pF"(
"(V A"E	      /|R%RJY*U$O@%J%J     @??(H(G       "@	s)'8B@	      @ /$)$H'I A?D      'AQ.$I $I	     ? )'H  A	     ! \A!B,R%J )BR(QA     @ /!"F)"! D@     @!?H)D$xH IFD      $ ?@/$I@!Q      	  $ )&L$I!$BHD      $ !B("D AA
     " OaE-RDQ, @ B A     	 !dF@&W! E     /"*"  _       _'Di%TRn3$DEI      _ L@RR$MH	B"$DI     @! I)$T!E@$         Q?@#      $ A$FLB)D @B(QE       _DI'Di}%RQI}%     @@/@F?B(" D B      / !D+   O! B@	      "@)FR)%(JP B	     ! GB*f#(PPB"     @CCU
%6 )HRAE	!	      ^JI)'Ji$@I$AI     @H"V}hE!RHE!ĸAH     @)A
"("@$I 
"      _@I'RiI%$B	I%$     / )$$I       @?D(P A        ^JI)$Ji)$JI)$LS     @I!T A@i%RQIE%AI      '@!@B @U,@PB"     @/A$I A<
     	?A?B("D  B	      _DI%Di$QIE%AJ     #@@"   @!     ? ) I@ADCP@     	 $@" $H  A	     	@@$") 'H"Ā	      	$ ~# H DH?ā     @ _?	$#@$	?      $ HA}C숙RR$IPA$%A      @/ƠA*+T!_      @@  &B) #@      @$EA? $WI%D      _ L~ P '@ABDEP@      (!?D) $@K!(B?B     @?? $OA?A	      .p! Fs)! B@	"D     @ B  S$IH%"JD     @!?@)$A       8! **C/D@$	      ) A?I)@/C$      $PHBLHSI'U@B$D_      @ _؂RB(C!(
l      /P "̀S  H@=bCIh     @ S$DO
$      @ ̈P '@"P@     @?I} P" _"
     0/P(H%J@(]E      (!?@)'@  !
     @?A}  /A A$BP@     x/ !"F%@( BABDE     @" ( $I 
"
     @?? $I A$D      ?RI$IL&RJ'I$I.D$H     @?)'H  A      @" (  A  A	      !PA!G̈R*$THQ2BA     / @/B A	f     " _Q$"HD
"     >/B"" R"$DO"#䀉     	"@ x)*$IP%BH	d      ( (F_)~ 'I A#I	      /A̔)RR$H
"      x_R"'H      @ _?Ј"O)B?A      /xR$"HL R 'HH=BA	A      /ࠄDI*D@      /A ) _D      </$I( 'HQ/@D      (!?@)$$I D"     "_B@! GH"D       ( A?A) /A 'HP      ) A?I) /I !"R	     A$@) 'J**H     @@/ %H@!,       _"CD2"%JQ/DTUɰ      (   / 'RP!$BJ	      (!?@) 'H_	      )H= ( ! D  B 
     
 H.*&dL@$H B@	     @/ЂA(@&T !~      @$"0+"G!       /ࠄ#?  ^JE)R{)     /!D'I!%BI      $ HA}#HW(QPDA      x_P&\H:DD      _ ?AP /PP@     $>p& )'H B@	      *@)R)  _I      @" #? A@A       !@?JL  _A6	     	?A!~(/I@A0B@      < HA%-SH'UPB$H     ? " $H  A	     	"@	)J&H B@	       @Cq"?D?R.D@_B
        $ "G! E      ! _ ~S!`C@"d0      "HV)RLP  @O
$      	  /AA)'H !
      _ "	&? 'DI$D     " HA#"*E!B"A      " O$L,RB!(D 	"RJ>       ! ?R)z%(KД)BR	      $ A "GA     ??A)!HDQ)a     	 x?P9F"(L _
"     </P!R%K/E       )!?H)  @P!>      @(Q""   O%"JD)     /Q	"},Y$RHI ($HI     @ A̀S$O ""      /Q""̈S @_	B%"J     @@$@A_f )*T'IP=BH	d     	@$@A_f %T'I=BID`     @CCU
%6)PRAO*|     	 /`E'RD) 'H A?A	      H"?I)@/B Af     @!? ( I $?      @% ?('HQPE     @ _$؂P 'H""DD     @%@N(   _A	     @! _""DLRB'A A"'ĈJ     @,Q""üS @O!
l      |_!BHҜ%J<K¤II"     @??@'A BIQ@     @ ""*"V#DB?A     P?ƈ*"(@  !J      /P"_̠R%JH%BEDL(      	?A B(#D |      /B̔)S @@I       (  ̪)H%H (      'B?ԁH?āBA     	 ??"( $OAA	      /@$@UEUTP      _B B @OA     @ _?AQ#DB"     @ @_!_̄%H@("PE       _ ?AP 'H(_D     $N$B'؂R$(HO
$      <)A"( 'AD      _ @, S$BL)&2LRB     
   
)//B*(P     ! _)U#D@"D      @"$΂)'H P~     ?~( _!
        A"DED" */  @      /A ($+DB$I     $ HA}쨙)TR1(JPAR%A     @@/IF!(H$WA!~      |_"L%Q$@@DD      /ࠄ  BJDB)DB     	"@?)" GB      	  ( 1( !RJB     "D~"S O($"HD%     $H!} Z(Q$J$Q D1       _ "  P&hA`3B
D$I      @??(H(I $P@     "(_IBW$R(QBII     @%@N)$O$
      $ A #D !J      _ L|Q #D A "       @c!"B?^ $J#TDȉ"     ( H])_Ҥ"HD!*B      " OJMP#XA3"p       /Q?DL@Q'A$I	QA      D/?*" D@"      /P/BL	R$ K/RE?I     @?Ɣ*R  OA?A	     @ /!/Fb)"'A !R"FB|     @QDI Ji)'JI$LR     $"HH!"L)X*Dq%V     $ AH$$OP$J5
A     @?A?DLS B_A!"T      /P'H>R %JQ*]Ā	         (#DB?"      $@A?A4I'I(Q.BLi!     	 ( ?B( /D JB$D     @ _ULIUP %TDQ
"     /
 )'H $D     	  /pUFQB)z  OIQ@     @ /&FR(H%SA)f     " _Q$#@D     @/DA Q#D       #@A!O̐R~$I4"O	!      /A$@P" G*UE 
     %P_B* S$D@B$I       x_$*Ш"HX"%BL|      @'I!$Q"HG     " @[$OQ?ID      ?B?JLP '@ $P@     " R"'@       0@W!$R%H@!BD       x"!)F(Ė&!L@!80     $OB? RR$O        A}  |"EA        /B?JLW!DP?@     @@$@Af)'H  D	     $ ~AXW*UPEA     .D!BYR%JO)>R$:K"      /xR=BP !OA"     	 (@FH(@D-PDA
$      //@ B      8'B?A}Ԉ!@  "_D}      _( "S GP!~     @)  )'H  D	     	 ??R)$OA!*     )HJ"(S @G?
"     @/A Q!_ A     T+pAFDL )B(O!BE	     "d"T!(*WTUREt
U(Q     " _S$DO? "     @ _QLAU#D$Q@     * TA|SYQS%J ABRA      /HBLA}T#D! "      (_ _$`O8(BB      |_"Q"G	5R@L     H$UQ:$Q$/D@BQD"     x) **$I $I	     @ ̈R"'@DIB|     </A" "G|!UBA	     " ^"R"#D! A      )H= ("HG?     @ _"P!L|$H     $$~I $TH/DPUC"IJC     	  "&UL  G!      @/A"Q#DB?"     )$^y$yY<I$I$$I$I       ! ?
L%) 'IHQ7bJD      "@9@)ΐ! _RBFB|     @"@ObQ#D@ $I      /xD!)B{cjԣ  G!B?A     @$@ )$$O?      @$EA?IQ"G|!UBA	      #RdTU%$@@(`     @@/ &̔)$' KO?@      /B?JLQ"G|!UBA	      /B̔)S"HBI       ^JI$@i}%QI}%AI      ?@?DLW  O?DD       /R%"{RR$Ox%"{ĔH(?     /D! H"R|$ OI      " ^;D #@ $P@      ?DM S$O!?@     $H! )RR'@%       ^!%HR?$OTBq     !@_%"̔P '@ B?"(     .D	b!R)BD"R$JB|     <!!R(B R      _("P'B !/$	      /A !$_""Iۀ     @"@ODQ#D y$I$I      *P)F ) %H RR     @?@?@LES  G!       /A	 )'HB}     @$EA?@- Q#@ ""Ĉ     %_AT*'TJQ:BT
      *P?  $OBaQ     @!@Lao URr'@ B?A     @ B  S$IH!
QA     " ^;D '@$
?       'PA?Ԏę %H  _      ( ~ADR
"_Q<BH      )H1%&QL"IA6     /DAD%ROQ>BHI     !JDRV "HBI       _ )S"O DB      ( &B))"IH T)      /A,kQ  _?JD)     @?A? W(OA     @/A   @O? *      _
MUR+X@ !      /TA>EAS  GB*U       *X%B9S*PDqU
'     @! + %HQH*U      )JI? W"E($_@     /A?JL $CA)0      $ _UB*تQT/D$B'Ȃ      _""*RP #EP P@     *VH* S$D@I       /I!""숙R&H*nĈ     
H?!)$O!?!
     	$$?R)J$MA6ID     $I!$IP /UT}UKQ       |@?B,%$K/T=     @ @_$B_̑%JH)"A     /A?"(" I *`        ̔#DB?"      _%̔R %$KP-"Q 
)     ?|H!} ($O?@DD     B8(@)FR)'H BB	      >eKM(_W)~STR%$JR     ! OB?AA%HJ(?<     @/@? S$G2"i0      $x~"DP/QHD
*      $x~"̤Q"$_HXU
#      /Q,H"R&I)S$
H     H"_AU!#D? U     ?DAS$O?%UL      $@~)#X(_@}
(     $ IxMW <^ȦIEO     	 ?!?D)$ _!?R     @/@*wDS!OAbR     #J!8 T)RHA     
""@1D(#D (nĔ;       ^%"kLS$O?Q%;D      /R%"BR_/hDx}U
     (/|e!=1ZQ"G DB     *(~A)rMT/D|C(0     H"_ ""R$O?ȩ)     )H^ dRO'JȗQ*]D
*     (_""U[U/D@"IRB     @/I!ڪ!OAbR     @! B  @! $P      ! B  @ A$          " $@ B "H        @?  $ B`      ?      @!(       ?@! B  @! B$p        @H " A0    "$( (("(!     BDD$Q$IAOD D8      " D   @@ B "H       BD H  ? @ B"H      @ @ " A0         " H     @  ? " D0       ?(B! $ H ?        B! % H ?      ~  @"@D"$DQ     G A"	Ȃ  D G        ?E D8    ' 	 OD !G     ~  BD	(PP*Bd`A       ?(B! % H ?     <xH!"B|$H B$p      AA B H      A  " D0       @  I ~$I$"@(P      #@@D ( P@A$P       " $@I `  " DL     ;@( P@A$P      3"1  D8     SB /_ $(QPP      8AO $(HP@$P      PA?((PPBTQ!      $ _OE)   " D0      @A Q D(Q"@$P       @ !BBQ@UQ$      # OU"}RAW	 Q      #T咂?D)TRQS⢉           P @@ A@      ( B$
        0h          
 " `              Q$I$R$H"        
 c "$D!I     "  " @@@ ( @      	  B !  A              @@ @@A        @ A7      P @    @"A AAPB @ @      "              ?    @! ! @! @@        ? @ A0          @  
  D`         @        |   @!         AA @         @@ #"       @D	$HH'D      @$D @BH     @@@ALB`P`@  &HO      
# @`>" D        $ H$3 I @      C!          C!    A     CA38        D@B!D     D K_ꤟI*U$HGBI
!     `   0 `   @     `  0 `   @     ?@! O@! B         0Bd@X      `  `   @        @(" @@     ` F0ADd   @       !!B B 
     ?H!"BD?$$HH!"B@      ` F"1|b#   @     x$I A$I?$H$I A(D       !!	! B      ?~B `   @     b# "1Dc  @     	 $       	} %R     @@O?      AA??BO
     E_ B?>@       + B! $p?     
           @ A	           (@      @      @ 
        !B!B!C      @?    @         PA@1@AA       ?@@       @?@@DAL`  @        !| ! A      @ ߂
$((P @(        @B8ƀ4|P @         D5P7A`d3P @       /H""(|PA<H      ?
 % "X                
P(@QQ$"@H      A 04੢E(!          !       ?I"ID      "I"L      A BB       ? 00   `         ( &	    ` 0      @ O   @@       GB 
(A?H        @ X!QĐ!""$P @     GA   !B"	A       ADE$G @        ?"D/ 
"
     C@ @BPA AA
       GH  @@H B@B%        AD D #" ""?      @  I	#A
       @!
   A        ! @!EĈ!"B
"     CD D	 D@A(`      @?$H	@	""$H(        @D !!@	"$DI        H$*E)&HI"AB      @    G!B A      @@	  A          "/@?DP @      @  
"'
$         " 	""EDI      @  'ABDEP @      @ ?	$# B9f     GDADQ_IER_IE$@@     @@"	" G"Ȁ      P@@HI'@B$D_       <	@ $!P @          	#ABDEP @      @ ? #DB?A     GDA}DQRQI}$P      @  D	D$A%      @ ?I	$
$        @ |  AB*      $A?A t
	$˨Q*B]JA     GA@?JB)@@      @ ?"	D      @!@?  #!	     GA@?JB @O
$       @$Ƃ	"GP
~      G  
/  ! @@     A@B@QD#    @       @	  Ĉ+@"D      q~I '$(Q QE	 "     GIH ?G        ;D # $P@      @?@@E
$ Ȓb      @?@@E
$!T'      %@9*PDqU
'     *JT%KʔJ%/: $I      @?  )"	! D     @ A   @@(       @ A $(P  @@(            @@$P           @@$P      ?@!~B		"D!E)BT        ?@  " D@!B)d      !B@)R)H)("PHa@`?      ?@!B
J)(SP)T       ?@!~B $PAT        ?@!BB#HJPHU       ?@!B	"t$I)$U         BT ?B$P      ?@!B 	$$HO)"T|      8A   ?A H     ?@!BA	$$HO)"T|      %JD ?H!Bi+"XC      ?D!"B|	/B)T        %@ ?AH"BD|"     ?H!("_Њ)6TRࠀ      @]A2	@   D     CD/R?H8%T@?A "X     `   0       !P1Mp          	0Ao       # `        Db#F"1 `         $!!	B             @  !B!       KF,2QMp@     !FY$F1QMb        !ՖIb        @HQ@" D/B!B!     AAA@      A  
 @   	 C1b    AADADA
@      A A x0      @! B		""@ (0        @AO @A P @      @DyDDIDF!"      HI$(A	$(DI! @     @ O@& @$ H	@@      B	$ $ B	 B      B	$ $ D	 `     @A	BA	D$BA	AB        " "  G         OTRJI)$"D) Q@      P	$@	$@ID@      HI)$RHI䄒HI!Q`       D$H"$H"D"!`     P D	DI$HB)@"       @	 '"D$H"H#@      _	$$BI E	`     ?  P $H"H"E*XP      HI!$HI!$HI!Q`      B	$DHIR&(BA	@P      %"E	$ E	$!@      PII%$RII%$E		`"     `&2IMRj (      @D!%H"$I	 @     $H)"R_	RIH4$PP       @ DAMXFQDD!D"      HI!$HI?$HI'@      DI!$"`	?$HI!@      )
RTIRJJ)*RT+HaRB     `A'b	 a	`"      @D!%"BA	$"E	A@    D@D'() KP B     HII%BA	'BB	@P      PIA%D	$|DI!a      _$ $@HA	@        $ $@BPE	@B     @HIA&RII=$RH @     A	$C	$TJI	DAA      PUIU%TRU%TRUIUDQP      PIA%D	$DDI!a     H Ex$@z~	$HB)@"       A	$Hp) %B	<P     <B	'B	%PIAPB       @	?$O!$HI P      D	"%B)$ B	>P     $ H "G䄉	SJH!"BD*B      B	$ @	$ B	<P      E	"%@	@_A      D#bI'K	*$B       H>$"O"$z~B!@     @OD$A	$JI)&AA      	$BH	?ҤIJ4"P@      " $  @_! P@     @B	$B	 JIH"D      B	%RIM%(JI"B       $D_$$"I	Hp"      @߉$B
DJ	DG)@B      @HA&@	@HA@      %$J E	`     $RI$@OA&"E	@p    d$' IKP`       H"%&B	 JI"B      @d$`bpI""H"!`     B@	$$b	'J)J$B       I)I&HI) %B	.@     @ %	(I~HPD@     IɄI	AX      PI%_A%@	"	`"     P'0)O`SB      J*%tB	%B	>P    T&	0IL` (      B@R H(P BA$P       B	%RI$ JI B        $>HD!B A
     E!'(B	`J)"B     B  ߉$$JI)BI	$EIaB      PIA%B	"Jh)`B      @D!%@	$$H"H     H _$H@	?$O!HB     I2$HdA(@@  !      HI?$O$d$")HB     $H!"BD$$HO "@D      @	!$H@	 $HI!@     $|	$$Rr$$D$Qp     "H"$"H>$" `"     B H BD	SJH!"BD*B      $O	?	'H$ E     hb)o)`B     P) $J*jbJ1P       _	'BII$J$D      E	"%@Iy%$RIyQ@      J$Jb	 %JIb      @	 %PIA%JI"D     $R$P"RI%$b`"      D	('U%'TE)$AB      @HA&B	%$_P!PB      @d$`bpI""H>!`       O'BII$J$D      E	"%$_I%_(B      H)?BO$$T)PBD"      B	$ B	@_ɡHB      %RzĕIjS$pIP1B     ! B$$"L0 @0     $I'I$ _I$(( Q"     $RI$ B	%RUIUTQP      H)?I	)$"K"b      PIy%$逦*h)`B      _A%@	"鈆"`"     xQ"8HH(a       Q7B)R%$K"H      `)	%_'_APB     "H$P"PI _APB     $_ '_A%P$<P     0 JIDO!$OQDDB      _'J)$XRsIAB     DI
$"J/Ȓ"K"9g     _I%_"BA      UI3%TLĤ`"C)qx      AF/
$c   A
L     DDP IJ=JTRR$Uj"     PސM$BFIb0p      ()J_	 ' H(e
      g&D`	j @     IH@	%$RI$ G	*$B       C	RRu	'Jh݆R`b     "	!7H	?D$I *R"       
TQ&U
}*"TJ)RJ     	% %_I     BQIP"PI _APB      PUI$d)|RJ_))@B     	(SK?J)(R*YJ     <_HQ@%UIJM      @A$GR$ x@ @0     I
RU,B?H$P"_     /UT) $I$OB      _ 'ޙJ}$ G	*$B     'HP)O?
J)jSh(bZ      @HA&@	w%TR]"Qb"       OȉA&@	w%TR]"DYbB     $逤"H>$ RI$PB     T,o	?H$I " C     >UT $I'H"B       Q7@)wR%TK"$DURB     		'@DRK ?DB       Q$WĀ) 2w$iT2"DDQDF     E ^RJB_@
_@P"     >
(]Ģ)?҄'JD#@JR     RRSUe J)R'D""     	RHMjE%
{Ԕ)RP+QB     B#YDIfR4$Oߚ?|J*     
*JW_ȥ}J(oҀB     @ @AA@       @@$H "@	($R       @ ?JDBI!E"      @ B	$) D         @ ?ADDBG"      @ DI$DDI$D"Da        ?L `0?@ A(          H"$"HBE	JD      DAIAD <@   !       I	$$BI$ER       ?  I	$$BIQFE      B!"D"DaB      8B	'BD"      @ H DQ!"      !BDBQ	|%BQNG       $H
,ņ @0        $@QE
       BRJ%(RD
R      !""B`	>$"H"D*D       ~ B	$ E"E
        @Hb&"H>D     A_&0L"aHF@D       B RI%$JH*$eJ"      !B"`I %BD:      CA  Ѐ? @ A(      ""D@ `   @@0      " $  @D A(       8@P	^%H"TRFy*D    DA"
%"	OD!	P        @	$ B	D=
D       ? "`I$$PE"E
       B!"R	D !B%     # ?& o&!`       ? @	 %"PBE*D      OQ$(@B0   !       ?@"_		$HBr	D
D    B$M	DUQ@?@B
0        PIA%BE	%DJD      !	HJHI) %B	D=D      H @	 $"H"D*D       `<$CxD"      @ B "JDB%$J( $B"       RI$ JIF"     @?_&0LdH҇	P    BBBA      #B"d&H"&I%a       @@!I$I$QPP       CCOI $(QPBP$P        "> PII%$RQDJ     !$@HA&"J$DʌD     #@ PDA$ IP1J
"       "PI B	D=D        "P@	 $"H"D*D       B~ J	%RUQUE^Ҁ       ?J]& JIF"     " > RII%D"    "$#$rH	&"&	`      #}TRWIU%TUIUEUPB     !?}_I%_D?PB      #/H@	~%P~E	     @A >H/G	@B     " >H"'UbE      ADA?	4@`O)BE     R#B_Ā	%$JH"H     C߀'0ILEPD     (!"HB@	$YDD       I"ADID7BDJM      UHIEQ @@0     @ @AM`      !܁H3}TLĤ`"C)qDxB      #BUT@	$ B	*E%D     @GDLI*U@0       C@A%K/H     " > RI$ BD"    H}?$/
W A     I"H }$RI$ G	*E%BB       BH&I	?DD       "?I$D	('TbsIDJD     R#"@_B%"_BER      @G'e$	 %JQ+PJ     !$AS%BRDIE$)(_       CHx$$K)$b*"     !A_Ĥ%H@!C"       CRD@% J6B"     #?ȁ~R %"_BE	      !H/RQ$DTVJVJY     "D#A"_Ĥ'LD7`       ?%$RI$!B% D       GZĮ%H@ UJb       CR$U%TJ*l"      !(CUDU%KI5h     ""x"LD/Q(
0       CWH"$O,l     " GOJ	'J@)_"      @@  @   @        @ ?   @B  @      @ ?  #  @ @      @DA!"D% u       @ ?  A$A"@      @ ?  DD@        D$aD"HAB          @@ $0G          !BA	 A        @H!BA PB         !DDPD       @B O B         ~I	$~A@        D$gD&HIB      @ȁBD	$D	(@A`      @ ? F"$"))J*@S@      @@ D
D* _"      @BI@Db$"      @H? @$D      @ȁE"[ D       @ȑB& O"$"O"$+H      @"$XID@     @ D$PP^% JA	S@H J       @ D H?䈓H
      @^HQDJBTB      @!HAA]GDAD      @䔒ROM&H)(D2      @^JQDKBB     @(&  @ _      "A	0(@% R "D      @ " D @ "<Q     &	(I$&!XJeTW     >@DC ?"D^@	                      @#"A
  B,    "@<"hJ$(     @DI$DEI @      ' @        @ |!B(     # B!	$C      ' @	       #RLI"$HJ"      'DI$D @      /	 @B     $ (" $#    !/АK!RYEa#    /$%T	D"#    
D)BD?B
_1     	$D /    H?>! H!      	Ċ%I"''    (!3 'ґJ})ґ
T!?    !"K*R![b#    	$D DI-!    	"B$BI	?䀀     諸 	$DDI @?    	$D@I$ ?    3#{)'    (!38 /+R( ?    B	H@I$@I!!	?    	 @JI" "?     H$@D	r O    JI$JI"@d
2@          @        @     "" """B)      "B
 B        '@,    (!"h #" "     	$@I  `b`H ?    	$@	J$     ?" L#     	$" /<K)$           ?       @       @ A ?$( P@`A             @       @      @! B ? @! B       " D@"?" D@"        ! BDA     @       @! B  @A            @      @          H! A       BD H        @          H! A       I A$I?H$I A$I	$      !_  A       BAЄ!>     @       A $L"I$I"       @! @A @       B? B    @      A D     @        "    @       @@/D"$_|I$I%J     @!!   @         D $$ 0       	""O	H E      ""DA!!   @      "D#AB" B       P@߈"'H! !J     ! O r~WT   @      "       @! B > @! B           @    @   @       >!Db"D~!  @        @   	 H@          @?   @         @                @ $ H@       @ $$!""J
@       @ I%IDHRDS     @! @!E@?      C	$C% G$C        $ g      0`      2d        @ A         C0!gU@       BD!BD!¤	          |    $H A!"@H@     CĆ$1!zTA     C0!gU@          ! HA%"      |EHQ%E	O!DRP?@     $a#HG0Ee%I @         D!DADPI      CԖ!zTA       @БDaID}tH!0      " $  @_ A 	       D!BDJ/K        UEUTUQUEUTUUW         *#1A ?        HQDQ$PQD$H"H$        PB 
^)hRR" Q      ??	G #X	LC      wUT] E D@R@) D     Je)^Je)ޝBeM$b!       *E%DHIF!G*K%     (H>I0 @! @      ?@        @               !   @            ?@ ?A	$PH@ $@H       ?@    @@(        ?@ !B!B$@I$      ?@ Ax ?A 	(       ?@  @?A         ?@  ~!B!D@
$      ?@ ?B'@A!	       ?@ @ A !D       ?@ @!@BA	$     ?@   '@       ?@ |	 'H@ P     ?@ ?	 ~0A         ?@   "HHB2g       ?@ }%*X(Q@}(       ?@ ?H	 ?@"$DH      ?@?  @@	       ?@ ?" D@	       ?@ E"ETR*UH($HI      ?H !I	2H$IIG*       ?A ? "( @@       ?@ ""DD"'@?#     ?@$DO       ?@  B	 '@ (        ?@ 1{(
P)HR!zD B      ?@ >$/D!!      ?D A!B 'H"?@      ?B@	$H! B@	$ H      ?A ?A	$O$P@      ?@ D"E)(QH$I"      ?A ?@D @ND(       ?D DH*T$$HO      ?A@A(_"Ĉ        ?@ 1s!B'8MhQR)B       ?@ A(DHH*_ BDB      ?@ 	'HA |     ?A 	'H GB!      ?@! B/B/H@P!0D8"      ?@ H
T/PPIDb!     ?B 	"'@#     ?D A|!$O(!$DITP     ?@  B	'ZP!     ?@ QD/Q AED`     ?R 1$ϔ/(RPDQB      ?D AqV"A "A(~        I"R+UT]"EJ     ?@  $IH*      ?B ?I$#@"_H      "! G$O(Q<BN)@a     ?Q) BJ)@ ""Ȉ@      ?A @B@~!z%L     @ @   $        @  ! D@        @@  HHH@        " 1  !        ( H @            @              ?@@@  (         A   !$$?А       ? @"PE0 @       @@ A       !B!B           'ɀ               H#	 0 <       @D߀@`1b<       @D߀@`1?          @D߀@`1$I         A */҈B       ! !TqERL	        ?  @@   
 " 0     ?  H@   
 " 0     ?@ B 	" B
c#       @ "@ 0     		$"(( PAB$H@@@        	"D@D#      B
$("D"$@       ! B?  @@A D pp      ~  @ 
DA      !  HB"P@ c     ? @y  f8  > 0      !B @@A D pp       ;B A (Q(BH	
!     > 0  > 0     E"$DH"(OSB"H      A ?   " 8`      "E  ?@   p       S$WȂ(PAH	
!    @/@ ~) 
A0       :WQD"PDEBA      DX@@A D pp      !B'B ~!HB%D) A      $K
 !TDJJ       
 BB? A D pp      bH1" @H      > A(
O䊉*(RA"A     $H(A  D #r?c      `0           @   @@      @ ? ~"D"?@    ? "?@ 
@      !    B +     Db#F"1H@BE    bCĆ$1!bD       ?@B    B         ~CĆ$1!K~c         A( D  @      C	$$BI	$$#ȉB@" @    A	$BA	$BA  @      " "" "              @B     "!"H"0&"!        !B! D H ` p       @   P $@@        B B ?@@         ""?       @$BA	BA$ @         @@  ?  ? @          ?!!!      IA%"H"$PC	 P A     $@B	$PBE"$@     <!!	FB2|C" A    d &B2!|  (     ȉ"$"H"$#ЉBA	$ q      0 @ @	 $    !"B!"B!       "B!#B!" @      	$BA	C	  @              ?@@      $`	?$"C$?       ?L `0?@@      (aC
P0(
     @$ 
D)!%"@$      I$B	 	   
         
 " 3   ?@@          @        	 '0XD        $@$"D$   
     			       !B1 
   ?      |     /P! B@!       B!D H ` p     $ B	 B$       @ >1Db#      x$ B	$?B$!     	$ B	$"	          @$ZI,ҒJI%$D    	 $       )$(BA	$C	  @      $	$I"IOe  (      $BQ	$A$ @       $ R)I&(E$ @    I$DDI$DI         ?'@  ?`!@D     I$DDI$I! ?      A D p?@@     ? (   @@      $P"TI _$          	$$$ BE	< @     @D%FQ)u%BQD%DC       ""@$)a    ?@ A       AB@D$IAR @      $P"PI䈒"H"$ B    @$BCIRFQ  @         V#A`  ?@@     II%$RI%	@A     %RII%$_	$        $DH)@DI<D@E    @$JYI$M$$D	#       
 " #0A @       <$H	?䈒"H"$ B     '@	>$"H"$$       $ BI$$D       @  @$     $ B	$H"I$%$$ ?A     @%BA	$
DO	$( @1     >| H2A| $
 !     @P   
 " 0       @@    
 " 0     $RHf$BO$ @ 0       @ @ 1Db%KP  @@     %BI	$$B$P A    I"$BI IJD@`     $~
HIH& E$ @    ȉ"$`	$#ĉ  @     <'ȚE2IL~#" !@      >
$H"H*$Ȓ"x"$$      @$$I	D$B_$ @        A   ?@@       " D   @      "$"Pĉ"       <A# D2d0@    	 $      	@%|TIQ%DSԉPBA	C       ?@@!L! @   B       '"H"$"E$ @A       @@   @?
$ @       	 *"Bb ?@@       @@    ?        @P      "        " D   @         %B	'E$ @      $H"H$H"@~$        @	 $ A	$ D@     ) 
O$Cȉ" ! @     Oq$DDI%DO$D@A     <!/HFR2L}(@         0    	$ $PC	$ D        H"@	$BB$?     $ B	$PBE"$@    	A%DRD%҉Q     	D%BWDK)HB	IBB     ) JI)$K)
 $@    ? ? HBB       ?@C (b#   @     "@(H"D"" @      $P"PI"H*$      @?
H)"O d      ?
O $HO"$O     d/ OE/d   @     %B	$A$D @     $ B	$pJI>       )@Q	D%C	B	0@@    )@P	H%"ӉH!A      I)$HIIA       $P"RI@O$@       %RI%$RI@E     @8H_Ԧ4IM"zSDB     |%BQ	D%BPB%	Pd	     ?HB_'"IO  @    	 $ A	$K)DB @      )@
_$H#ĉ"@$ q       @$~A	$H)  ?    eK*YRʖT?e     OI%$I%$ROO%       H) 
H)?D      	$JEI%C	  @       @:FK@ ?@@     z%H"TR%H"TOQ%dH&D      %H&VS%H"TR%Ip     %B	'J*%$B       <'@O2IL|$ @    @I$RII%$I@  P       *T)RTRSER)!      DeQDe  @      	$ F)%"	    ?     H% R	$ B$P @    I!$@	@        II      |$JE)$A$ @          
 " 0 >E!CR   @    H) H) H         @$BA	%BB$D @    I!$HI!$I! ?    O!$HI!$O!$@?     ЉB%TReI'R     @	$%PZu\ҕJUU%QDO      @$JI)?BADeD          ?   ?@@     ?
o"*O $     	$DRQG #     %*DH"_dI4B     %RII%$$P@A     p$ $pJ*%$B        $T	$|D$~   @      8GFDR|!      @$D
_ d H/  ?     @ yAB$J
 #      $FAw$XREO%$H!      O$XI$RIO!$@%      '䄟HI!$xO!$@     |"$Gπ   @! $p    H	 $"H2%(PBAI$p     $>B	'B
$$         @$A	$H/  ?      @%RJe)RJe)"*H@     $ B	$@H"%  ?     %E	$$Ji/$h	@      O$@E	$RJIO%$D      $"e	$P2`?$         %`) $ A$ @        %`) $"I8$    N!)**+       ĉ$H"DH#ĉ       	$ H) H/         @@ ?@@       I!$HI!$I#  @      >E!     ?         /HB	H"D$I$A      %`)%B @    	$D
_dC  @?      @ 	I A/P
@"        hZ%iV^h%AB     @A '"D(,      /$ A	$BA @       I$B	 J*%$B       >|D"$Gϊ($P	$ 0         "$J"# 
 "      @%BA	? O  ?     @	$$BQ	%EO$H      $"e	$P2P?$@?      <$@I2I̒|' @     @<$ OAd A    O"$ B	$ B$P@A      @ CBI# $ 
 b     %D$JR%P      @(H)_d B$         <$B_$BO  ?     %I*D$̕*d$H$BB      P " D^PH))P!     %b)%DO!$h @    	 $
H)?         $X$rJ* "     ?~Bd  `     DeF_DeYQA@@     B L)S>p      Ĕ)"RI%$Ȕ " D @          aCA     ?@B   Db#~"     ĉ$HTRJ+`@    e+@W/ez@@     "$H"$" $@      $PdQU_ce       "C		$Ȝ~B `      @?BA	 BA? @       @ A#/HA      @! ?  D|R!'HA      @ 	?J"@ E      J).ꖪJ*J)"       {	AҼ%HJ%*SDP(`     <A/@W,}K+@     "@	A%"H$ @A    IA%PI%"щD0@     	@%BQ	_%C	      ĉ$H&dRJ3ĉ H ?      "$@b$JJ/(d       A)_$H$A      ""H*dǒBA @       @|$?BB?|%!@ @      䈔"@H"D         ""i*dBA @       ' D	/儚HO!$@%      $`9>$ $@ @    ȉ"$"Ry%	*$        &$HO     !0B(0      䂑B$lDO$D@!      @ HS$PHI*c䄈(`     $A)$$Q' @        "%F}(d~_@d8B     @	$$Ba	%@? ?    	??     	$BA	D D@A     	 $HI!$I H  ?     O 'J,S/I%)"7        ~@	   ? B@ 
        (Kܔ	HH&S %AQA     @?BA	$Jo)e%@%     @|S"IH2A|' B     QDRH AA      Ji*J)KA**     ) A	${	$P!       ?
wRJ*T^J B     <xH!"Cǀ  D  
 " 0     /~$$ HD&@       ) 
H)?
 H$A     JI	?BA @       @B_@f@% @       G@A$       L) 
OdNI)$AQ     %_A%RH @`      DeV_Y!dI_%dDD"    O%ǑDI $BA @       x$"JII $@"$H  
      x$"JII $ DO!% 1     x$II %"A	@         H 	I"$$@H    )?@	 $C	 @        HI!$_$ @        _)DRJ"E   F    /$H) B
$H$A       !D    ~@	       8$EI$DO$_B      O $ @ $ ?     )$DI'$@ A      =()KR2}#/HD"    ) 
H)?
O $D@@     $b9>$BB%@     $@$G1%( @1     ?@  	&@ @D     I!$_H"@      @DI @IA 	
 "      @%BA	$JU_$( @      @
$D
W$A%$D!        w$DII%ԑRUOU$        
O $ D$H$A      pdEDYdEN_UeA	@B    O$d
B	PB_襤h	@        D/A @D#      @ $I$8 A/       BBJR)J
_  @@      @I)$JI)?       A% H @        @?
O A% @      ĉ$HTRJ+ H ?     @?BA	BI'@        F!EA  ?@@       D)	ʪ+(Ȧ"O%(
!P    )@	I ( @`      @ 	?%@"D         H  &HO    	%@	?K)$ @    	/"I)"y             &HO    OD_@f"_B E    
$(RJe)W9`AP@     @	/TBO JI/$ @      @?
O B$?@      ĐB$I$I$ 
 "        E%L!$p@"PA       "$RJdH"HD `    JjSRԦ5)OCj      {*z*R{*H#      8$EI$!_$	       @ 	?%HI(Ă         $`9>$ _%$
      R)N%Q@%x	 $"I    ODG$DDO%  @      	 "  ?B	  @!    @$"X"O"$        ?j֤ZjEֵ^mUD@B    '!I
O }/@     @:P)@#ĉ H$     
_@%J_D%($@     D$H ?Ą " DA     b9%$_I=$@    O%DI H/  ?     @
_ d
O  "     $b9 %"A$
D(Q! |    O'*Q@%䔊R/H%(" @     %*TR*TR !     'RII%$G*$"!@       D $  3      	z$$Oɒ*Ԕ @$I        	I$$$        R$JB)$# RB>     ЉB%"P #Љ_ /       De}FQYQA}P      IJT)PD	Bx@!AB     @	'B %
_@ B    	$JCIV$SI@       @H)?I)=@       ? ? IPS}$$ 	H     ? ?KB|$$ 	H     @?B_$(A% @       "(z")r "      *       x$"JII $C$TH      %d!%O$ @       H)? @O% @          C  #D A?B    		        	"$J"           @A)A$$@ O     @e"TReIЉRAI	$' @     @B4 ,A       H"G5A      <(T2!}S*|@      @I
"%H"A$$
 "      <}$)BLB}(@       R@$JR-Kԉ@" DA     @:FI>  "$DH"       @@ O!>B       @A)BB    {*R*+( {*T %A    
#艿biɦD$       ĉ$H:P)@;ĉ H ?      @	D(R (~PBQ A     p	$D       #D	$$Iΐ!#D	  $ H    	%FQfeUW۹LDP@      쉢&h&j      J_D"D"'         $o$ B%@    @"(*(J.(      @A	 H/$H     @A	 H/? "     #D#'H	"#D :     !9IF4y#IHDS     /~$$@XO$@?       $? ?@!"B|     B/ޤ"ȢB8
P!       @ 	$H' E(ҔQ@     @eFQ_egY@@    ҙJe)A	$~I
         @	/$@	 %D$ B    O!%SHe)R_He!J      @D '	7L% D     O
$JI)?JO$         B)&)~J/*T	 )@A     
@	BI'@       ze)^K%*PRe-B      $$BI$ RO]%@$    )@BQ	CPB	'    )?@	䀓Y@!        " gP"@      ? BJO$h	@      "%@	%_"$B    N(VZN(	 $    ODDI$D_ $ ?     G!%HL@?     	/$JI)?B_DeP@A    II%RI$ 	H @@      @B_Qe)QDe}DEA       	!      )?H)$	 D  ?       @G    "$DH""    {D"֪UyUQ(B    @/u%FYK@P/@      !)H)>"_P@HA     ( +"*	&!QA     
O)%JI/$A8P	 @     ~
(_  @!BUILB!	(     ZL&VB_$TH1     ) JI)YQA}P@     I%@' @       h*K+*JiJh      D HO!$@?     O=RjI$O       
%R $ `    )@_H%D)D@A    	%*T^J+שRJ(@    N!(~Ja)Ī$hD	'    %BO$K @        @) ' /Ҕ J@)      $ Hi!cĤ@
@$A        ĠJR(
 "      x>H_$@H?%D!       !      ()I_e (      {)^Je)@Ke :     @	?)?!      <$A	?I/?      ?B@	?A@       |$B$P^QDeD      ҁL'RIy $$`     @?H)? A$ @      $_I%<WH$P     ? }~*1Q$!? @     
O $
O          	?A$H (Ԉ BA    "%@	ye%^M%*PIA`      ׄ^ $ D@      }dEDY}dINA @       ~ Dc  !>BD
      DBVOB%      ~	
 B!   @      @(RI)_dRDOD@!     $b9%PO%"Pa     W)RRIJBP/     B)OF(i	^hJ*      @ 	I%	'$       ( "jID
P!    OD@	?JI/?H	 ?     ""   0 ?       @$DDI $
I/$H    @?!	B(D1      @ 	I'} A/ ?     ")BB)*$J     "%@	x*^J* Jd     ?%"_ 
_  H)PD|     @	/$EI$$  3     ""  2          @@ ""||*!@         GĀA~ D DA"      ~%"WReLTP%\P%PEC     x$II?B_$H	 ?      H)? P_eEAA     I?A$I!䘀J  l     %PI%B	'@A      @ $I	'P~        ?@!"B|    HOI$PI$ ROI%?     @A	 O D	 T@     	%O   @@     J^)d*O       D	 $DI'ʤ@*U    Rh	j*h$D"    	?I	$$YUAU      ODRB$FO$TH       JO$B_$ ?     @?B_$@J(     #$DI  A      #Ä )I   I       @ 	?A$I$@"     	_ UIR%dID A      @)u҈KA/$
  l    )<P?)?!      <$dJDI>$Od     "_@f"B_$|@%     ?
O $O eUT      %B_J_$Pe0 P     /?$(B	$`? ?     OI $ KJ_" D@     /	%
D)!$\{!    O%O%H?@A      AEU D!z'E>D     O !O  BJd)@B    I!$HI?$ ԩRJ(?    | Q UjUڠ@     @	/$B_ $I/$ @       @I?A$H@"#$          @RBB/P        I!RDWP!$C	*      
Ԑ)PJI(_
      @|U ?H2? @A      @ 	?%Hi+ +      I?$Hy${)T %A     #_K%Sʤ@*A        ?@G	܈>      RQJUkU^t       QDREJ@)P! >      ?T5IUzUP/A     @$G$|O$ @ 0      T	?I!2@      _Hd DP      O$ E$Zx	DB     E!
$IR%K) R@    )?EI%SI?      N!+>$*J$&!      @! _"D       @A+@Q?     @HOb&H"$ ?      RI$ROO% 
)QEH     ODO 
O% @      $IeYJ"$@@"I     @GB
窨"
PIAhA     "%$A	%_A%"      D_De}FWQeEAA     ( +"jI椮TD4!     
e)RK Vje)
@      @?*JB
HO$     A%_@%_g2     J+ԩRJ3ʵU0      #$I$   D      #䐉JSP8D  p     @P*R)@      !@D(_A"     @De_D%B_@%!     %)EQ
I+U@"E     B%*JT S @DA(@        @$$$II'      %PI%H/ 6G      #E/B;@}܊)R.PE      
RJR
$bK"A@       %SxWdT!      $^$ @/         V5ujը3.B0!     	O"S@%wWYUAw      I	 $I 
UP*@       @$B_ $
O       A@ < ?        %SxRJ	"?     #$/Ԕ*R)M d 8     -~A)D@E      @ CI%JH+sԶ!$ H     ?*(Ң*)?)	     .J*>
* b     );JJwU}x_P$$
b      **U(IQYGҍ=JP     I?A$I)Gt 5     @	/%G$DA$ @     䪊hJ! q@      Dz#_ W5)}JzS^𔄤UR     FUZ(@"@  3      , "K(`a      ?@ $H        R
%IJ& D@      "* .	JI"    $ EI%REO?      ҙJeO   @@     :e(j%TRJ/HA  JB)     OI? '@*^P&(    .(* 䨢j"A    _[DQ %b/"  "      @$$J]( uU"    N$E)
($"     
_	_҄%JB_1PoAD      x&k騦"x$@     @$B_ $
O        +d-2|I4 ?     @?HIsq % "A     	u~I)'ʤI+U QA	 "      
O BI/$ @      ?媚J䪒J 	PE@      @ 	QRA%M$ $Q @      8A%}̈  _@}      @ $I? A      >|D !?      ҙJeO$K @      )@	?)?       UT)DRKA  R@B$    ҙ{Ny $DI @@     "BD R@HHA ) P!@>      #?RI$@! *      x$TEI$I/$H	 ?     d^ O D	 T@        )$I'P@D     {J+ަ2[( JA@      @$(@	?I/?      'M *$THDSUA"IBC     <N(ʩ*dda    I%Dj$ҙQA@    N(>
*"!     O %FUYNe@? ?     @C	bI$CȄ  $I     @$_@dO @      @Cd9 $I/{ )@     |$H>    ϑ"DH     @?H)?JEO$       @	/%RI)Dd
NH< @     %SxRj"       K¤RA%}L$$ "          #     \tI$(IGBO @         	Kʤ	"$(KA'
 "      JJj!UPҢ DA$      @CDIr$IT  R@    )@	w{I@      @'B $VQ9T      DDRK?       UK(DQ_%`YB
       @   Kޔ)K! QA       BOH$I $        OB)%"SB%       A'Y) P_ $ B      )URJrU(
 "     U/ Kd2OeP @     #;D   $P@     R*_ %W@%
@(     @	$'"@RJj"Q    ODI)?ATAA     >|D "?@``3 $DH       *BT @? z!*C׀ ?     $ )JR  %       " %
_@ ) D}     #|IR %H I$$     N*(*
*B"Q    ԩR %@j 0@     xiR(|     J+N+@      %Sx_H%-D      @Cd UJr @?A      @%F_De
W@%~@/     @$DDI?H/?@      !/B  	'?     $
O ODf@     (F+("*T	P> A      %#Tj__+`        @D@3 I       芢*"
I "       "%H"#$         N*_*?ND\BQ       #?*$  C!@      EQ?D@? ?    JdA	DJDd       JYGd J        JdD!%#"          >+諸JU)TPA     UdU@ʥI"RRe (    $HY	?I?@     B5(P % J@      $	 $~H _A~     "+ޢ"TRoUiUP-@L     %RjI*ԒPRAJ     6*)R*_˄> @8       $ $ KE/ D     ?) i + ?     JʪA)A     	++.iPA      @?$ K'  i0      @@3II'$@OP    HOEHi>$@? ?      <UJr   II     DJU*@"A?B     JꔭT"N @`     ?+I)!+     /ꈫJĞ)@    $^%
O   QB=     I?"%H"#$ *  `     J?A+AIJ+ ? <     @	'DR
_RJ      @@      D	ˢUZwC@  I     	/5A	?JEd      DJ.DB       @C >>     NQdRDOdT @$0    /kUVZ!iE^!kD*=G     
(JpA+@_|@ A        D@DD?P:     >E  0À@ |     @?+jFA      J]kVR^m   JB)    **DJU
@I     %_H~RWU%| /અ     ("Bg     'P/i?I}'ED	     {)ROeE&VQemAA      {*ԤQ%_KXU#     	*~hFj| B      #@ƐI$ $$HH!"      W)K)z^J#Q "~D      %H,C ?D       $RI]_D%> "    n!kR*u^T_R*       #P
Ȁ }HG?     :BCQ?      >|D  ?RIB	:@    *w)")C    {)R{ƔBD        @*w$DK/DbR       Ӥ[J%+PB?M"EW	     %Q"G!U] L    JD*Qjζ)$"D    D"e锧x=/RJe>LH      x>H**T0(@H     >#ҢA)ʩF@!    %^$HI	 ?    ?%)BD)B)@     |J#jժ_| 'D    O?$Hy$TsJ8B     >E @  A|     ')VUTDU!*@G     +E)*/Ԣ)_U@¨     Uw
_ԤRBQB&D     $JO$VWDHA    | Rj*+B
$N"H    ?!)ȢzV.       *"Jﴤ{KPU       D@䤏x@HLc    
P=)+ߦ2[(
@!     E 
v'+UD_u|R       # ""||PS Ȉ""      DSTuWj }TA(_ "     (SAG!*~|H# E?AB     ۄ-Zy*OIWӨ[@~	Q    @{TU&UdzUQ>D     ?"+ީJꔫި' $     dN^(BUeP     ?I)Uiܢ""'P      (*B~Z N) $     5R"^*@	_     `   0 `         `?FB3d  @     ` 0!`C         ` 0Bd@       Db#FB2 `      ` 1Md         `?7`@       ϙ"dL3  @       &"0(b#       ` 0Bd@X        aF"2!aC       `C0hC
        `CD1!`C
       ` &I3,`        a 1Db+         `Ŧ*2I-r        b# 1Db#       o 1QMp        `? o X        ? Ȗ(h    @b*V,aS       Db#F"1Db#       g  $1!dKA       Pb$(H3Œ,d{         ` 0Ao        `0ъLh        ?@@`     Db#F"1Db#!       `T&B1cc`       ` 7,`       `
&ABb        b# "0Ao         `s< h        ` O2Ao        `
&LaC      ` 2	Lg         o@7	j+`        a Lg         ` 0Ao         a҆1|0`C0       a؀9L~b       b# B~b G    o 0̂g         g٦1)L)bKj       ` I3Ld%        o'̂d?        F7      g -iK      aCt2LeS*      b@A5ȜLb       `? "0o       g̂g &C?    
`KޖLc[dX       hD[A)iK@        g2	o ?    @dA3Ld?'    b@A5|b        oJZR?dA\      o&2I̒`#F?    g2	cSiD       g o@[FA?    g"3eS*    `?$	3d? ?     g AkQ[     b#? 7}j+_Z ?    o&2IoF&?    Dd_X U2LeS?       g$	̂g FA?     oJ[0ADaC? ?     oJ[̂gYF1?      DLwdո;]X ?      "&95nA*2"                  ?     B  Bh!             @@  ?        O  @X (       ?@   p ?       @ACDAdA            @@ " A0      " B P!@D@ A     ?@ @ A           W A        #@	  @@ (       @ B ? @A ( @?      xO ? Y (@       C   @! C. H 
           ?      ?        GA " D ( @?      #D!_A " D ( @?       @@ߦY	$"hD( @?       A?  @@ @       xG	  @@       DDI'DI$DGI% A     @A? E!D@G      @ A  @ Y        DF`     ?      'A $D Y          @'DI$DGI% @     @ @@ 	  $ x            ?I!$"NE"      8G" D@B      ?@!           D
DI$Ix!AB      /D O%z'B "       @A@D!B N! B       @@O "@D$      <GD" D@N)@a      8GQD"PDE A        G H! B@("@        CAA !B A        @A@ #@N        @ A D A@ A     @A?DD@QG         O!@|" D@!(BA        @@I$#@(@     @ @@ ~!B.H      ! B@A
!B N!      @@@ALB`Pa@    ?      #D AJ"D NA      ! B _
 @!@BA        O4d!HtB         " D@%	I"     ?      A  |" D@(B@       A>!     ?      @ ?  @  ?      	 *"Bb    ?      x?@D"D@   ?     ?   D B        @ A _" BA      /B B$O     " """D         K$BE	    ?        G   A NH@       G"D"$DH.HHJ	      #D!_I$"HD@       G!_E #@? @       A D!@B
"       @BJD$B  ?       @@"?D"E!Ҏ""       @D!
  @O        " $ `A      ?      @'D$DG%        #D AB#D N!        G!_"G.           O~%R.H? B     @ @@ ?@"@G ( @?     "D AB#D N! ~       #@_* @@         @@"D.H        @xA)RH"E!N*H$       #D!_@D"E(H@        @A  #D.H        '@4D(Y        #D?DRJ"E^( @B       @@_I$'@ A     ! B@	_	H'BH"       "ҒrHI"$JM	@B        !   ?      8G@" D@"       C!
B!B"E!N?         @  B y$"HD!N  
      BDI$DGI      @ @@ ? H! B N      P A ? ~D"DN!E       xO"	 $ H@ Q@Ɂ	      8G"`D`(B        @A@ @ N       @ @@ ?   @@ (        A!Ba	B!(BP!N! J       xO_* @@ (       @ B  @A@ A        H@$         A ?߀! B@
     @CH8&   ?     !B ?(R!PD(L@       @@"G          @ y%?JH)"rD	 (     B~    ?     ! G! _E#DN( @?       G" _#D@Ў!(Q@      H!"_"  ?       G	/@H}"E) (@@      @DDAA      A BQP#XN A        @G!? #@?       @A '"D(,   ?      @@B)&>@N 0      @@A	?~   ?      @@@?B "@'0 
 b     D          |  
/A /     @BB!@ DAA     ! B@_$)$B@("@     !(BHD"PDN(Q        @D!
H! B@("@           ? !<?       #D@  s
$        'B ߠE	$@/A I      @ C! @D"EPN(H@       @@@   @@(@     !B ?  @O        #D ABD"D) a      Bx	T#X  @      8G@|"E.HO       '@ ߠA"G.          OA	" @@      @@   G!N A      ?@  Ad01        @"/H"R)N!@     @ @OA_	" B@        AE ?         !B "D'B N!      @B@ă9U("  ?     !B A"D'@ NH        GA	I$J"E0AĎ	      @@A} 'A         $ D@$"EP       @@   @@.(        D
D)?@ ?      "HD!߀#D ( @?      A H_%B!N! J       @@@?  $*"$DHQԮ H@      @ @@ ?	!D 
 "     @ @G  @G        'H A?	$ODA     @ @O@_  ! B@("@      ! B<I~_"!_I!HB      xG !_  @O (        #D!ߠA"G@     A$P1 ?"H( !\  @      #H "8D"J   ?      #D_   @p         @@@ _ȁ"GO!       ~ $N9#<  ?      "HD!߄DD$D@         '@ߤI$"HG
 ,      @A AB @$@@
"      ! C!$3	 #@         @A/B$B   ?     BBDIDG%!A      G 4#DIDG%@C     @ B !?D"B!v' 
 b       @@I$%T@ A      B!   b J3  @      #D!ߤI  @G      @ @G!_A"@D(`      !B!߀#D @B      (@H?B		$IPi)%BA      @8J!PJA ?       #@ _ 	#B N 6      D "   ?      xO !"_@  D@	        xO !	  D@	        H@"#D$HH      #D!_   @@      !BB $I!F0Aɞ("@C       B@	 !$BH        @!$BO	"$IP!Nx 
        G!B?  $H.KH!        "'JOEAA       @I)%2@I}%RQO}AA      AAƅTH	     ?       @@AB_DH~ P@@(QA      @ @O@_ "@D*L       @$A?)"RDQN@!       G!ߠ @p          OA	s"G8AĎ	      @DA?	"KIȎ$A ~     @ @OU	  @O        @A ""_"#A G?          @O߄ "G. E       @@@P_ w)"RFiĮ"@      #D A~"t'   B      @@  $IH.JH     ! GA!	 H@H (       @ @@ ?B	 #@       BHBȀ"E)^/@@      @@?I$#@ʎ$        @@O$#Hʎ$P @      "DD! "HtD  A      @A $$"HG!N?@      xO !"_@ BNHDA      ! B qD"
!B('*D"E       @O߈D$$DC?        B"9΁?      @@"G! A      @xI'BH      @   " xA     @  | BA!DA      #D_ @$Q((H@%      @ @G 	   G.H        AA @DAL`  @     @ @Oߠ  pG  (        @@A	#D!N< 
        G!  $BPN$I        |DCu?A        #$"_I8"$DJx$  ?      'H?I%H@)(A?      #D!ߤI 'ANHD@       " $ 3   ?      !D"J
  ?       @q" _s#A AĎ	"@     |
D$D  ?     !@B@"
" G"       CA   ? ?       G	R%?Ȉ"ET (@@      @@@_ !CH E       B           GI%?{Ȕ)"RGIҞ%(JATS       DI'DI}%RQO}     ! B ""DGŎEA       @@""BA!Ҏ
 b       'ň$J   ?      'H@/	 $ H@!      D|J  ?      #D!ߠA "$GP*@d      "HD!߀|" D@B       'H @ANHD@        !GI_!4~P  ?     !$"I!'	$RJOP     @ @O$'@ A      @DA?	"HH         Oߔ)R'@?       'H?"HG?         G_  #DD"(D@       @Oߤk$#@
$      #D!_I	%z/T/@@      E A?)R #@I       A Q#4@Qٮ(       ! B!O
>"D Ў"E A      H!T	$F"  ?     ! B/Dϊ"DpQҮ)Hb@     "HD_ 'H^/A@      #D!ߠA '@$ ?      @IdO)
$P#  ?     "$GP?DK "DH        '@ߪUT"Xp  A      #D_ ""DEH @      ! BxĬI%$BHH  _     !OA>D'D NH         AI%?QH BN 6      @A@AB_ *"TGQҮ=HHd       G!ߠ  @@       'IH= ! D  H 
          DD       G(__~" G!N#I       !!	_ ~|!HBA	1A     ~|'I-$b@  ?       "H#/ȡ"(N!       G!  " GQ.$HJ      @@O@!V!! ~       @@D	 !B. E       @  " #D! A        _!CO
"*UPDTEɐ      xG?"HG      #D!$IP!DYȎ"       @'A"q @_  @      G	)   ?      'IH? 	  @D$      @@?	"O/D?A       @$A?A	t	$KQN]BA       G"?@$"D!D"     ?BC`0  ?     !B D'T$G @@      !B
OȀ #@ !N$A#       GQ)_  'A N!       FpB:HȀ>#DHNaE A      @DH  G H 
      @ @O@_ #DH       }A/	
U$         @DABJ_#	"G! A        @""_"#@Ů$@      UHIEQ    ?        "  'JN)@B       I"ADI$E0O	      @ @OI("KN > D      "HD!߀ "D
        @O߄ #p $      " (CI/"B  ?      @ A+Q	%K!Nr 
       'Hߠ p   A     !B D%@  A      ! B !$2 'AԮJH       8G?*#TJʎ$       @!BDBDb	p "HH	  @      @@@!_߄%H@.PI      @ @Oߠ ${T/@@       O	@"a"&B`%DD(        Oߔ) @@I        O	O  &hA`3D
@$A        @@@B	Ȁ"  G! J      "@ @DAM`  @?     !  1(b0  @      H@O@"E(H?     #D 	~%J B     @! G!_@ #pT*@        'H"D p #@  @      GB?āH?ǁ@       G_  #EI"(D@     |  HI*H    @     "BA  D$GN*U      A 		H!HD)ʮI@P @     ! B _!B  GQԮ)HR     #@	_"G8( @      @@?A#DN"        O"_ߠ%JH%DADD(        #D AB 'JP)HR      B"=H2"TO.$HU D      @G|I%?UH #DD"(D@     ! #H/%"(G@	  @      	$Oϒ""Z  ?     ! C/?B  OJH$ D       H
BɄ>"DA!B        DD {Ȕ)#DI%(JAVR       D /xP       @@@%Ȕ)#D I֮)A4G       @@Ȁ"DҞ(d       G$_H "ET^.@      !R?H"   @       !Z*RA '     !OA A#p  A      '@_I"'p' 
       @@U_I	U %TDQ
"      AD 2>$TD @      #D_$#q:        O?B	T%I@)B     #DB? 	R$O       'A@_   O
$       @ "G!$@      @$A?A	4I'I(W.DDi!     |	H_Q@  ?     "EPO $D@N$I         #B ?"G?       "HDB=IH%"J_Ԑ)^c(A"       O/BD	$ Kԗ/RA?I      @#ABB
   ?      @AB%?&&AA.8 0      @@@$I$"HDU@B       C) ~(2+0 @     " B<I }_
'A$IqH"D      HQ@C $Hd  @     !OA @O       @@@BȈ}""E)^/@@      @@@BȔE#E)^/@@     @ @AL`  @      $DO
" D@"        O$@" G*UA 
       @A@AB~ #@ .Ȉ     !A"?Ȉ#@ .       !B A~	$HOG~ $@G      @@$*	 #DN.A      "xBPR)  @Oʎ$        O""}q$O&$AP%       B
)j.3X   @       @@?!!L|	 D     "B 	$GRNI'? ?      @@$?O" DQڮM      'IH="HG?        O߄'@ H        $GPI( T'H $
J"      IH"( @G?
 "       @G!τ "G!  D      #B ?"HG      <'DA?I	"HDH$       8G?A	}!@ ._H}     ?RP! @$HH  ?     "B A {
'A(QN"E     @B4 ( "!H! @     !A ?R#D D! *       @x!G4XShI @      (@H"_tH%PN*U      @""
"$|h"  @     @'b""|!B   @       GA%? !C        OH_A	}#D! "     ! B 5BU	T"EP*J       #@A?"G. A     !B $DO "       #@"? #p   B      H  "DA!B      'B ߕ*	!PG?       !BB_~('A ._         JI$@I}%QO}AA      B ""U_r%TH?
 "       @@O #DN.A      !#Do^?)!$  @     "H AD
"_QNH     *'YJՈ  @       O?!A@         @!%H?$OTDq       @A$GR$ z@  ?     ?xB!2
 RE   @      '@ _I	 #DH?      'AG}kJ%D  ?      BO2?H|   @     
bp!('?@  ?      @_?@_E  G!         @_?@_E$O!ߎ	T'      @@$?O" G.%       @@?JH @@@.R" c      @DA?@? #@ .Ȉ      @#B N1	 a     B_b} gB(Q	 @ @      <OUr'@ II      OA>	A  GN*U     " #U%V5XRPa  @       !(
OIJT"R @     !OA?	@!G*U     ?Q)DBD/Q(      @O   @O *      @Oϐ? $G. i0      #@"? '@H*U       @G!?  EHI*U     "   T>UP ?      @@@$B_ߑ	%JH)$_"      @@$_~~"E U     '{)'OIE&$QOmAA     "G!? @G? "        SA%KH       @ ߔ$!PDNaQ     @ Oϐ?>B@	
1 @     "B y EPI'Hy}g      >@(

*"!        O,H"&IS$H     @D*Wt]UR J(UwyE D      @O*wD!OGbR      'H -bW_$ O*?     !_A=J^P#D@?D       'IH 	dO'JȗQ]H*     >UPUC T>UP ?     '@B5'$Dx.D&     $DQи9'/(u  G!             ?                  @                 ? 	@   @       @ A( B A        H@!B H@!B B        !    @          ?@ @@         ?@ " D         ?@ ?A H             ?            #          ?@"AD?        !D!"C         AE ?                  !Dx!D ?      '@ߤ "G. E          Cǀ?         $>       B π?"BDD<       Oc#p# *        A? Ȓ      ?  !B	        $@   D`     ?@B@@B$%DQ"%0      @ A &J)"D(! BD`?        ?D pp ?  @        ?D pp   @        ?D pp" D@"       ?D ppA* "B       "E   " 8`       $@   D`      @@A G@Q  p        ĄGDQ  p          ?D pp      " DAIDTG @  ?$08       AD pp      ?0  @|     !O#\q)JD D pp     " OrJK-)H?88     9"'}Ȉ:.G  ")D pp     AD %Kz)ZSǜ")D pp     @ @H(D @      @A>@%DQ@         CA(Q)D	  D"H       @ǑD$TDDBHA     ?@!B A	$(Hi)T       @pA&D0      ?   @ ?  Ѐ         D BR)* D@F       @@_ȤR          @	J"BB   &HO       @A(*B%hJET B`       @H# D%J"RP@! L`       BA  "R DA`"     ! D  ?B A $ 08      @A 	  B X<       р  !       A)R'B?hDadB"`     " DC#Bh"E  `         @   " `        @       D`     ?   @@ A0         @   " "B`          @   " `         " D 
  D`           @  
 " `        "D
  D`       D`  @@0       Db#@ "        " D  @  
  D0       DF`     @        (  	               " $H  @   A`       D` @$@BH @       @ A P(I@B B      ! B! B  D`      " `?     (         "H  
  D`       D`# A   P @       ( ?@@       Dd	 @$I$H       " 3             "D)(
  D`       Do" D@ B         +   
 " 0      " 7  "B "         ?$D"# D`      " 0=! B DE      " #7?D@@ A ~      " 1| E!tC* @      " 7  ?@          D? ? B@         " 3     A       @? 	 b3?  @       	 /@  ( p       D`" D@"         ( p      " $  @H"        " #3     @      @?  o X       $((B( p      A#A*	 D`      " #7 @? @1 48      " C1  0         " #3	 AA       "E"Q@  D`     @H!
D 	 D`       Dc @      $ H@B	|E  D`      @Fo?D@@ ?          ?( p      " 0|$y!'Ȅ J     @"ǀ @ D`      " 4E?@@E@      " 2A@a       " 4$x$I $Q
"      "	 ( p      AE       " C7 ?     ?">D$y$CȀ%        " 0A ?H!"B|        B)(@(`      @UACTK?$""( p      !Bp%	R%HRP( p     >!I BdD( ( p       g $O{       ΄c /?B 0      " 0QyBw	R     @HB""$ D`      "_"}| D`      ΐc@/ ?@B      Ξa  ?@@B
eQA     ?H Uj  D8     ! O r~WT( p      !ETN I!% "         @  a 4  0        G/D"D$P A        O	$ @!(        @?"BJ	/$"DA)"      xG	$ @!       #@DB H@PABD@       @@ĦY%$h(a?     ! B Є	D$ @@        @@H"BDIQ AAAE@A      pGDCH@PAB$DP       !@O	$ @!(        @$RII%%$DI)% @      @@Ȅ	BHdPH@A$RP(P       @  " ">D@B"
"     @A?@IA$!D(B      @ D$HBDDBD$`         GO	%  (a?         @   0        G	$ @      @!B"DR"@B
"      @@I$ D( @      OBQ	$ D(B       @@$ĉ$P@aD      xG	$ @!        @@Ą	'@@!A     !B Ođ	"D' B!B      'B OȄ	"$ B B       @A@ȄD$ B B     @ @@Ȅ	"D$@ A     ! B@OȄI$  "H         G/DI%  (a?     @ @@$I@%  !         @@	$  b      A 	|% @(`       @RII%%'D(!B       xG	$ @ A       @A@Ȅ$ B!         C	$  BH        @@ODIH&$HB 0        G	4$D!       B!C  @ A p8     @ A Ą	$'       H@!_爁"DI!!BAB      #A OĄ	$ B        @@   8        @@IH%R((aB      8G	% @      ! B@OЄ$ B      " D@$v% @(aC      #@ 	$$@!(         !A  @   0       @@	$ @!       #@ $H$ @(`      @ @@	>$D"HJ       G	 @)Da       #D /D	J%P"H!      "@B$B(R(`        O	~%"H? B      P@! $~DĠB	E!       #D/D@%D(`       @RII%%'DI)%_A     ! B 	>$@ !        OD!QI$'DA)_A        C/D?B$"!     ! B $$H( (        !"JJ!> A p8     @ @@ 	%@         @@	B% "(        @DĤ	%@@!A        OO	J%(PB!
        @@	$pP"Ha        @@	$pP"H`       !??A p8     @ @@O	%R"H       @$RI%%$D)%           ?  B p8       !$DHB" A p8     #@8$pP"(       B^II%%$DI(B      <G	$          O	H%<@!      #D/DH%@(aa       @D/ʄ	$ @!       !B/D!%"耡
       _!"D( A p8       @A@Ȅ% B!        @@	%$H!        @@	H$"ĢRH!        @@ĄA$ "H? B       @@D%$H"HE       #EPDU%TPHE        @@DI%$ A     !B O	"D$ B!> D      #D OЄ	B% B!       @@	%"H       DO҄	B% HaA       @DĤ	$        p?  HA p8     Aux> A p8      #D A%!      #EPDU%TPHڠ&     !B 	"D$ B      !Bp	D% @!_       A AI$$̊$@)"`      #DפI@%J(Ґ(aB       ?   p8       B@	D%Hq!QB	#IDR@       @@	 $ "H         @@I!$DB 1       @A $I^%J(Ґ(aB      xG$ "H        @A /I ~$H% D     @ @@	A$@ "      8G@%|"HϠ      @ AĄ	 $`(a      A p8  #&FC	aa       A	a #AA	a      @@	% PB	"      ! C	?H$ !       #@Ȅ$ @       #DA%!      #D@Q%D!      ?@B߄*DA p8      '@ ĠA%"      @ IO	H$ @(`      BARII%$Dy)B       @OȄ ' H
       @@@)%H!D!	
"A     @AABB	$'D!(O!      H@%A@
A p8       O /_J*UU*UQ*WJ!       @A@ODI $ "H        @G!&H% D      #B OȄ	"$ B B     @ @@$$@       "@D	$ @(`      GDI$_I%%%Rc)A       @A/Ԅ	$%|"!      @ C/@%DPB(aO        @A@ODI$ @      @A '"D(,A p8      (@HI$$PĠ)EaA      ( H "$PDQ(EQQA     !B O	"D$ BH       @G	 $ @       " $T$F`A p8       GA	S$J0@	!      A 	5% @)"`       8CD% B!"       "E	! B p8       @G/Ĥ '  H
       #D O߄	B%`      D
D* PIA%$D)Q@B      #D/ĤI$ @!      (@HD%Pʠ)aA      D "A p8     !B 	,R$`R(`       xG /D	 $@!(       @ARW 9 8     ! CĐ)J%耡
        G/@%p8)a        @OA%@(`D       @OI%@BH`       #D/D$ @!        @O!OĈ 	P!      @ @G/DA%@`      #@ D	II$       "HDD $@(`       A!O@%D	"        _I%J)*RS?II%JTDH      '@@ƄȒ$ "H       @x/I%@$  	
 b       B ҁJO H3(`       G@%Hʠ	!)a       @@	$@@Qa        @A@ODI>$@"H      !B@D% ġ      $ H@B	|F A p8     !NP$J$`a!      pG D%       !B ĠA%@(`       #DD  %@!      ! COI%$@`D      'A Đ!$  "H       @O%KԈPʠ	P!       @0Q 	$H@]a       @!/R $ @	 A     @ @O  %  H        A!O@%	"      !BO%DJ%J)IDRA       G!O  %@	"        C/I?$K$EIIS0@R      BAĎ	_REI#JH)R"B      B DI$_I%u&DI)%Q@B       Oy)zR*K$I!CuI
      |DCu?A  8       xG	*T'P!      !OOȄ	"D$ !A      G!	r%J9'BA
IҠ       G	
_I)R HI)        @OĤ%@BH`      !BD? %(a      #@ O߄	$ DЅBH`(        #D@Ģ	D%  @       {GID^
!  8        N(/WJ*UU*U*`JB      ?DG @?        @/ $H!'H"D@      @@@	? $ K AD	#")R(@      @ @GЄ	 $  "H       DāDRNI'!DU*EA@       'HP)A p8      @x/I%@$ BIDa        @@	"$B 	
 b      @@@I w)Rh	"`       @O'B!1@       @@IN%"< ¤a"     ! B qJ"(
Q")V!*B"EA       @GȄ%PB!
      ! B@	% @      ! COI%$@H`D      #D/ĤI$ BH`       CI%!HA'B!C	@      !DB/	$ HB!A     @"? @A p8      A A<	$%H!!BA<		$@H       @@@Ā	T         GD%LG A!#%)RP@@       @q/Is% @	"`      "HBĈ	D% Ba ?     ! CO	%HH!(        G	RR¥I"	DI @     @ @OA%@"(`(       |	G	 A  8       @@@I  @	L!        @G"(%@!        GDR}J%J)(@R     @ @OD	B%  H        @@	$I$ BIDa      @! G/DI% @!       PDI@Rx(Ja       GDR(R@`       @@Ġ%H!        CI? %J# AG	#I&J@       @OĄ	 %"ȠE        @A@ODI %THA       "HD/Ā	%| @       AAƅTH
 B p      #D/ĠA$ $Pad      xG /D	$%@!       #A OĄ@% B!      #D/Ģ	D% "H_"      "&FJ#"  8      P A@DU%TP A      @@$)       !OOȄ	J%0@(a#@       G }J%UJ )@R    }(TUS@B r pq@     !A@D%$!       @@@	?I$I"IDI@     @ @OĠ '!(        !BD $R(a D       GAJRH _C	6A       @/"Lc B p       @@	Ң)J$EH")DR     !OOʄ	 $"H? B       G	){Ҁ%K$%HQ BA!     !A@AOi %JU'I=IIR`      '@Ĥ	 %"ȠE      !BHI$$H!'HS/AR      @@/ $I AO"	@      @@@ 
L%#D	#I%@       C!
R%$0@$     !O'  "     !OOτ	>D$ BH!      '@ĪU%TX A     @ @GȄ	$ BH`(         G$I"IG?@       G/@% ȐȄ"	     !AA?	x%*K$IQ%IHAd       @OĈ	D% B!" |     !OOȄ	%$H"H      @ COA% A       DG/ $H? B      "HD/Ā	$@PHU      |Q  8       @x$I"IG      !B A?>
DH@ I@        G/Ġ '@        OR%zJ%)K)IRA       B /豈	% B B     !B 	%$H	"       @@@I? $I#DI       "$GP$IK %H       @!%Xʰba`      GDIWQ%E%D_)E'      <O	O	 $@O"GC%	6A       @@A%!A     p !K
$"
A p8      #D/ĠA$ Ȥ ?     H"E Ԅ	^%@     @ O	 %"ȠE        @OĤk%$      #D$I@ $"Ȑ? B     ! A@O%SʤI AO
$      #D/ĤI$  P(`       @@@)?@$TƨUa(C       G) $I#DI E@      !B/D%%(RaB     !AA?	%JJ&H I@A     !<BH$$%RH(a
"       C!O!B$ PIR      @@ $ !?      ! B/Iϒ%J$qIQ)IbRA     `CH#XI(       @A@AOi %*JU'IQ=IHAd      @D?ψ?$RPa       ȑU'ԈRJJG$IU1"      @x /I%%H!'@	#I$@       GDA$ $Pad       @/ $"Qa        @@ $I#AIԒ0@       I"ADID7DD	L     !BO	B$I	#D!	|@       G	Ҫ%Hȕ 򨉉!       BH	 $I"ID	      @G|I)UR$ K$EH")DR     !J!*}/P/)RQ%BLH     x|!T?I
!J)	       !BÖ́	> $ PH       C	?H$ʨR@`      !OOđ	%H"蠡E        @/I%" $`      @@$h 	+!        @@@	?$QK5 BQ)@     "XD/ĤI$   "       @OĠ%" A      #D@Ĩ_%| @(`     !AA	?%H"GB	      @ @O	I($B!> D      'HĠ% A      UHIEQA p8       @ 	$ E A       @@ H#@)$        G	B%HC$E)
S%)R@      @ $T@Ha (     #@D	%8(a      @@@O	Ҁ"H!'B!JA     ! A<IIz%*K$%JI-Ij@      O!*OꪕU+R$I_QB$JUDP      5È`$H       G/Ґ K!C
#B@     !D ĤU% Had      @@@I<@$I"!DA? 	BA      #E 	%DH`      'A@D %         GIH% J%UJS.@       #DDD%@(0     $ D@{H
*U*Uq*j/Ѐ       C!ϐ? %J'@		fC     x}3$(LA p8       C! $I"	G?@        GĢ%| Hʠ       GI҉%~ ʐI)V       G!OI%JA%M#'@       |"AEQ! B rF      @@@O	҈}J#%J)S/@R     GO߂!
~HA        OϤ	@$J'@*UI 
@     !OOτ	%@Ȅ       '@DI$" 򐈑!
        BH)"$DH AG	#I&J@      '@ %H"      !OOτ	%@ "     !B!U*W")NQ*B"E@       Ox%/I$N'!LA#80C     !B 	% 	"       @@@I$HHb       @@)O%̐B"(        @OĄ	k % Ȁ
       @! _"D      !B!OUY*W"N!*BJ"I@       @OD	 %ЊH       @@@$I
*HT+qV6+$@H      @D$AFA p8      '@D$Ȅ!       A I*IU"_ I%R       A	D$ @	T)       N@*W_U}*U2"GʈB&      OĄ	$ H      !GOȄ%$ A     #R9ȥ(RJJU/H2,Ԡ`       GI){҈J$EIS2iDR       CoI$$@IJa       @@ I"	GIDS(        BH$        CI?%H#DI? A      @|/)R'P	5R@T@       OHIA}$  "#     !A(I 	2K$IQ$IR      H! 1        G	ҀH#DI      'B ĕ	*$P!       @A@a7? 
)P/yB%")J@      #D %H"        @@!$I,}@		D      '@A$ H      A "A p8       GI $I"IG?@     #A Ȅ8$ HA      !J!*}(
W")_QB	@!     " D%OR*UI/J(*U       <GOI%I"IDI$@       @A@ODI  %ܒP∈!U      @@@O	 $I#D	R=       B $I%$ !" |     !D!"}ꌕ)
Q/HQB$UDQ     " D!%OR*UI/J**U       #EP$!       @A$GR$ x@        GI^%H#D!? A      HA	
%P0В	D!        @@	/IUS I"	E
I @       G!J%*𒂭(       GQ  K$	OIaQ@      @	O?BD       G!Ϡ% 	2 C      G!	$I%#D	C     !A*I!!OIqR%     !B U%ܐ@      <G/RR(BRC      @$K"!_	C1	a      @@@I)R I"O (@       @@@$O}w+UT(R!/B
HB       G	JR$$K*!G"      @O 
 PA/@? *C      @G!?'H%IQI*U      !A OJR$R "Qa      !@D/L%֊H	!       @@@)$K#DI?"@      ETq$OIDR %"@$       C)5$H'@I*U@       O!"/ꈕ*V([*nʈB     ?Q) BJ)A BqN      @_? 
/X/DA
G     >ECQ
("A p8     B_b} gB(Q	'      ?RVU~HD}$JH5D      'B	%@ȑ        q>D%R#     !B KTOT/U@RV@     @!B Ȅ	 %$"       @@@$O}w+UT(RA)DDB       G	 	$*%I%$W	#$@     " Iؒ%/nʔ)+vT)I 
!B     #DO	Ґ%~D 	T=       G	ҔI#DI?"@     "KĒ5_RTBETK7UD)>R*Tz     #ET *U(_FC     !B9JTW"=NI*
"D     !B 
AVR%U[P2 
T)     !@@k$ H'By+R'I     ?@ \  ;UP <     "G/A%H`2	      @OϪwD'I/DA?bR@     #DyDRJ%UKS/NR     !HB O)(Sk"M
BsT	!     #DyJRJS _C	6A     !E(y5RJK$!_C		fC     ""GA	D$I#D(nҔ;      G!){($HI"AO)$       G!]֥$P@	(     #@ yJR%JQ'II))[g     ! O r~WT      'IH d*OW*WQ*]JH*     #DIRRUJ&EKS/DS~      G!){ҔJ#'J")NR           ?             @ `  @             ?     ( @      0	 (   !        @	 "  8A! B!J      ?  A B D          ~ @D @ A          C  @    @       @ PA/A P@       @! R9#D(A 
(        @        @             @       A D!D0A@A      @ $@ ?             @ !$"A$P         @ ?H!"BD     ?   C ?           @" A8"D A?B       H! BE1DA" T?       p?  H   @       	x/@)R
H"!B*D$        &B	
ac    @      ""D@ ` @   @        @ BH D   @         @=>  {

       ! @_E!0DCA1      "E	""    @       B!>"1D@ABDT(       h@  ~DC'Aa     
$B#@ AJ H      A@P ?  3@D!""T(      ~G	 ?         @ I ~!r߈JA     ?@ ?  _|EA"     ! AF@ A A        C|    @        0       (T]*UT#@	D     ! C|    @       |"AEQ  GP@@     
bp!('?@  @      >EGB    @      @/k  @GJ*C       !_B?0HQHB*      RJ/>"|    @     !HE@   @     /x=JJ"SB(6!     ! O r~WT   @         0         0        @         0   @ $P         A 	   @ A          0@ @! "H         @      @@         G  ?@  @ 
         G @     @        @  @ A B   P @        $ @  @a 2  L8        0 H  
  D`       @  @?
$ @         C     " A0        @        !          @   D`        @@  $ "#       @@(@
  ?       A CA         @ ~    @@        0 $HH$"H9         @       ?        @    @L        O >@A  $@_         0       A         C  @         @ !BB!        @   " G          CD"R2@$"H         C  @@?        @      "?       @ @
 " 0       @   D`       B@"@$P`?      GB?B!  @        A 88        G  ?@@  ?        G    ?       O _ D        G@?@ A  @        G @'H!?        @($`цBH       A$P 
$ @        B  " DL        C   B        	@@ }AHcC        G  #        C          H ?         G  A   @        A?2@A          C* #0A       G @        BA p       A$ @?@@        Oq@3 i        GD * #0A        G   !"B!        B"  `3؀       B $I$HH       B	$88!        G "~D)PF        DG    D@) F ?       C  ! B        A@S$H  A	       @ * #0A       '           A"D P P%
A      @B/" JD ?       G    ~@	         @ ?D@        "A(
"%B!        G  ~(Q@ED!       @  ?@@      HC @_! B        ?@@?@ C      A  A0	          C!        A!I$  "BD?       @D
I*YDEB      @B)$("( p       BD	 %RB       ~S  _!?"8      "@ @LAL` `         B" B	
       B          @$$H   @        ?~@C _ .?"8      
 % a !      ?@@        @Î:T,UPUBJ]A	            B      A   F      IB  ?H'  @         !?$~(S  )?"8       "#  p       !Q@!A       !??"  <       @?@G0`        "OĀ(OĉB      BD | 	'H>BD       _Ą	>$H'HD?BB       D	R`11 c        Ȅ?@@      J}  $I   @       D " 0"	B        "H	 `3؈"       BH ?@@ ET@       !  $D%       A   F      D?# I!	C       '

()  "	B       $D!H@! H       D    ?@@P:       $y'IE       G@ |%!@B      GI?P @?@@       O
>DC⢉%jRC     !$ >@/P      ߂?R ?@@       뤒KI.I$       @     @!    P @       ?
HB	D" 
          ?   ! B  (       ?      ! ! B        ?@ A D   ! ! B          B"   A B   P @        @@ $H(P @A@A        ? ?@!"D (        O J!(RK(@       #@? $(Q @@<
       !? CA B  (        !!?B  (        !CA"IPPA A      @@R ((P BA$P      $"P$W @H     @H)BIK!$BD!
      B  (        #  T$JH      "	   (       ?     "| CA B         @@ ?A(Q  B >
      (T!AG $(P !@
     !/B  	'?0         "B!B  @         B     H        $"(E      `        
 " #0A	  D!$@ @            @@ " D!$0 A@           D!@@ " D!$0 A@       B@          $H!    
  D          @? @DAD@ @        $H A       ?      HOD$$ 	H    @A2&Dș `,       $H A !QR)"      @DA@   ?@``3I !	B       " $ `           AEh  !A       | A%'@$AC       "D#ADJOH") F  `      #D% A( R$QH±	Rd          @ " $P      @@ @B Ha @ B"H        @  @ " $P       A ЅA
"$(HP!B) Q       @HD$$H!BA(P            " DL       @ (dH# $0S      $DAO	$ K @(         G
| (@P_) Q      @!_Ą	$ O @(         @@AOE@J"D(Q!HB Q        ?  " H       G! E$(@WJQ       A O 
^)hRR" Q       <C?I)$SO	       @  @"(DPBB)""TC       @
*)PaJ)
Q       AO >D(QDBR$      E Q
 *UP) Q        CA)SO∉       9REPJ )RQJ Q      #E9EPJ )RQJ Q      D  @"   @         ? GA              @ A  @ A      ?@! ! D@!B1        @! 	0'H	 (?        @ A	#A ` 0        ?@ !^ ( `?     ?"  "J$HJ      ?"   '䐒BQ@       ?"   
/HBIF)     ?@     @      ?@  	$DH%      ?@1$B@A@       ?@!@ _"@D      ? O  J(JH? @     ? O  DI$DDIDE@@     ?"  ""/T!P @     ?@!		$H?I B'@     ? H@(DK       ?@ @'A/     ?@ '@B      ?@  $$OP"(f     ?@@?C$       ?" $" "D"      ?@B?%Y""B     ? HH(	 @     ?@  
 /TB)`      ? O  @I$@IA(@@     y		(Q$Ip C       ?@"D" ""BB     ?@ A?@        ~!	'x@(P      ?~BB o<O @(       ? ."**N
       ?@ B,U(e$Q      ?@B"~AA"      ?@"
$YPҡ%H       ? O! H! HO=      ? /"/%W@Q      ?@ H"|$ OI#      ?@( G"        ?$"*	$(ȄG!3     ?@D/I       ?@A$H%X A$I!      ?Ȅ! Ji/G(     ?@@)rDQ"     ?@ RET)$pDD      ?@"BTR- k?J     ?@!$-iP"_!     ?@_D-tl($WH]     ?@I+LD?!b     ?@ /D
""FPTUdC     ?$"BR/M%GX@     ?@B?A"_|})EQ     Ca  @         !B!   @?         B!   @  `      Ca!0C        BB$!? @       
 " #0A!B!B!       B!B @A@      "B?                  BB    AX      	B*T/HjtA      ?B
*B
.@      
"
.@      ?J*
.      AF5Qdj#rA      H"*H".I$A       B
+B
.@       A@&5IMRjt       ?
*~
*        $!!	 `        HBB  p     B(B   @ O    !B!  A$A      BB5!OCr     <ꨪJ. @HA     <B
B.(@     '  `?`C2        DJ*2J.D@     !@CV%-Rkq	@    !!	 @ /  !	HB       DB*. @      B!  D@F      DJ+J.D@!      D*J.D@E        *H".I$A      @	B
*
J.(@1      B! P1          @
(*jꀮ       @
DJ.D@A     @@@ALB`P`@ B!       B!C    h" D        J*"J. ?    	1F@`,       J*J.H BB         0B!       B! (P% D@D	P     HDT@      !!	 '         "   D@  @     ! 
*>
.?Ȁ        @J*J.(Ƞ@       @ꐪB
*@       d0ALd?  @      B!   ? ? B@       !G5IMRjt@      @@@5 THQ"%L       &**. @HA      B!C@ @   @@A D  ?     HB ?!Q7        Dʑ*Dʑ.D@      "B?     (      ?"A?D UP     A@&5IM_t$A     ȒD5IM_p        @
(*j*.DȠ       @**D"
.A      B
*RF.@        A AJjIR&Mޜ @B     B~ !B!        
*(.I$A       p? @  @ B!      @
*J.D@?     @
** ?     A G5APjtA       
*
.$
P0      B!   A    @     ?BB_tA      B! P?   `         >"*".
P4      J**
.@      @ "!
(      @~
** ?    !B  '       C     !HnCY      B*(:.       BD@    B!B!        D
+B.       @D
jD.D@A     @
D
 ꠮ ?      B! P        A J*TPTL! ~       B! 88    @(0C    !D5IRjw@       *B
@        @@*T!S      !!	 G"	(H      ꪪʨ
 "     @	B" @      B! P0    @?       HjZn!@     @*n*Ƞ@       *.p      B!   ?   @@      @@@5UQ%ƌ 
 "     **ʄG         *
*        @B
.DȐ @       B!  @ 1          " B	$B p      B! P1'H       3Dș `,      "  _A$$?       "  D" @     @B* 
.D       @B*TB.(@       @Z=jJ+UV-\  @    ! ਢ*.H$A      <B*D
Z.D@!    ! "ꄪ*H         "E	""  !B!      	JJ.(@      rJ"*J*.HTPP      	  d
@8@!J1      	BJ
*Dʑ.D@ D       OIURTJS&MA       P"Bꤪ*H	 $     AHRBU5APjwB       G!J*"URL! ~       	@? @      D
+
.       EPH@OQ ( B$I J?      HB !	OGT       B! ?$!"B
"       *
*(Ƞ"A      @@@U* Q"E@HA?!              B!   A   @       (@H
D*UURԌ AA       1`  J !       *J*@       @@!* j"TCQ%Ҍ 
 b     @$B
+
 ?     @	B
JZ.(Ƞ@       #H "8D"J B!        *
 ?    !!	D$$A      B!?>H A 
"       AJ"AW,@       @@?I*RTQ¥Eʌ      @
(*j *T      BjIn$!A      @@@5BUS       B!    !A        @ ! !      @vTR*j * ?      A!J*"TΩUVL " D      B! D" DC@        H*"ʄO!     @	B*V.TH      @?(*ҩJ.P @       GRjR
@         * 
2@    !!	 ? @# oAh<?      B!   PE   @        GDj}U-ܨ@@     @ _BB       "*. _       B!   '     A1d$$      @
D
ڀ*ʨ
       B!(`?I!H	*       @@
"TCQ%Ҍ 
 b       G	B*IUEԜ A?      @x
**TTQR        @
 * "      @@@ 
 T PE  (        B! P $?     @*
.TH1        C! 5UjsUV @@     <$HJꄪ*H         	  1 ><     !@ЀJU* S
,% D     ?Jꤪ/         @A U$IW%L@      B!$~1HtQ
!     @*
.@ O       "  $H>|$O"DaB      J
@       HB ' $$O$E"1      B!@!!8F`      B! @H" tO!B    !|ș      @
D
*B.H@    !$$$Jj nD	?     ?	/BKP"     @?* 
.@       @A@AJu *U*UWUҬ@Hd      B!/DH$(EQQA      ~
*o%$	
D      B! @<
     !B
	j ?       *
꠮         @@@ 

*%S,@%        B!? yh%bJU ?     !B A#"*	U%LA        *.x	 T?      B! D" D@	       GAJjPL  6      *
 
         B! ?~ 0@sQ	"     !BDJ*D. ?      B!#H'      @? 
Jꄪ"*.@F`     !A
?TP 
 "      B!/@HD)PA     HA $H"B!      H8 $I5A@!B$      <O	J T@RL 6      @@@ 
 T T  (        8G?*TUZʌ       "H
ꡪnĄ!      B!D"D A" A      @IdO)
$P#B!      !BHU$T!W\A@      	 Dq	DAD pp      B! h" _@|%S       
*Fn     ? |~"1$!? @     ? ?
P      	 " 
       AI5QjRL  6     @8R*j
꠮        B! /DDUC(EQ1́      AJ!WL$      B! $(`z      B! B( @@A	      B!(`>D!CA      	    ~@	         BH
*IUA_%L  f       1`  J )2R      ?$	,@D	$A      <$HJJ*n      	" C1   BD"D     @
$JЪ~
.~ʈ
 O"     @?Ȉꊪʈ O"      UHIEQ !B!      !By*UAU%WL@@      @"$
 *      @G|I5UjT TF D@      @A *U?@TS\@       	   $I       @? * n!@      @!UBTSW:LJ@!      B!  ?BJL"?      @@@J"!W̈! J     @**@     "B	ʈ+
@A     ! ꊫ.lʨ
 (      @@@U!*TH	T
L! ~      @?*
8P	 D@      B!  ?@       @DAJU#+	W%̠A     D! 	 #ȉ
        G	B*UCT-\ @      !$BH!*U)jTuҌ V       B!"DETD`I$?     / $@>	/@!%       Ox%*UTĮ'QE, 0     @?ȈꊪnpRB      @@@ 
*U     !TB
UNk U#PB,@$K       	A	R?~@2c8̀b        ~G~G	B    #Z
 
@        @$J*J/     @(
*       " D}
*Ҫ_J,@HB    D!?I)?A      ACA(D!       A RUJPL! ~        GUHU UV\@       B!D*($BDB    D!@?䐖Bo$$BI ?      B!
> +Ć$     ?*
TP@@      @A@ $I@      I)j* ?      B! B \!DB)*      	  "_Īgr

W'    /T0̬OH5#      A!5$j Ve٬@@      !A5UjP,       x$TJ*H	 ?      B!.B(|@ RA      ADTR"E T)      @A@a7:*U_z,)@       ETq$JUDj UCX,@E      B!	$2cBE?	       BH$ԂSꬉ       	

()  "	B      @?J}ʑ.|@@$0    / |@?(Q"X@       OHUA+}TT%̠"     AGDUDR>E!!	      @*cTS% *      0	j8꠮ʨ       	 	D""UA|"DA       @@
!*T\~  D    !@ $0      	 ?>A        _QJ}$BURLA"I	!    ! !	ꀪ
 O"      *B+       
bp!('?@B!      **.ʠ
)3      	"AE  Lp      PDQ*U!S$     !A
**Q"Č@q@%    D! D>!"     @
D
ڀ* @*     A B"GĀ" |P!%|A     ! C)$ZVUUJ@T2    !
꠪n@       B >|=H     ! `a,b1̘x      !IBT	R b"        GQ *$WϨQ"uČ $ H      	 "	T" JyB5
QA    / H$EA
/S      ETq$JUDj U#PBÌ$       G !W@w      _	 _BQ	 B      	A?J $OA     !@D*LU֪UJ !       B!
C(
~  ܢIrA      >O	J+T PLJ}       C55T֨W@*U       	@
?pJ!C$OѐA       G!_U~U2AB     !0 $$R$H     A!$ >@/P     !A y 0jT}ҌJ g     ! ""T|Q%_	!A      ETq$JUDjQ        A)J[U5Wְ5l}@U      )NU__QD     !D *DUT", R     #DyJjƪSPL  6      	Ȁ? }x     A D??"J/'GQ      	a?IU%'"օ
D       Oz}jtYΪ%﬩  f      G!5{(THRB$     / 'ϑ"| 젒+     %(O|!=jQW@B     ! O r~WTB!     / y"+ϩ"DA     ! ""||"'	!A     !A JJUT%       xI#. J/)&EQ     #Dy 
@*U'Uf\Vy     !C؄)Zy*OIWҨL~	Q     !Oz}jtYΪ%﬩  f      	@ ~!~E򊨕QI      "$D$E"""DDD      !A"  A     BD!BD!BD!  `     BD!R)TBD!  `          " D@"PD       " """  ?        !$"HD@$	$$"HD     " B!T$F`     ""D@ !?* #0A    B!GD )%)JIJx             @          @   ! B     A  <   @        H        D@2T:#J!           @  @       "
JEE      }" D@<A  ? D       @O!CE! ( 0                      A PBA
xI       !!W
!PBA%PI      @ @       @H      HH      !!	HBB          |    (Q! R      E$P??@B

(O     @" DPS      B)"*O 	d!       *#1A ?         |#P>            " $ /L      "! @
 O ȢY#     |(Gρ ?      Ca!0XD           !B!	B   @      !	HBB@          ?HBB"  @        B$%! @       @ @Q	"D A" @      @"H"$"H"% @
    @$ ?&I2ILd$%!      ">"*."$A        O!  !B" @      _$BO$JI)$"P       >D*J.D"BE
      ?J*
."      @8T"@       3@?@?"DH   @       'DIDU(      @>F**.(! "I     @>B
Bn T"    ! "D"
+B.D!@       &B	
a !B" @      ! 	 !B" @      @>B
*J."H      >&**." BHA     A!5APjt A     @>~
**""?     B	> 
*>J*." BA       BB ?B!B" @      @$>
*
.(!B        ?   ?D@$ @      ' K        ?
**.H!"@J          ?D@$ @       >꠪
꠮""?      $Q(D  B!(@ @    y 'K      ""> J*D.D"BA
     @
>D
 ꠮""?      $  ?!	D@$ @       @ȑBD  B! @     B>'0IObإ|"!      	 AI   ?D@$ @      @B꠪J* B    "">*.H!$A      AHSU5APjw B       >
*""JJ0     "B/鸞K(S      ? C  !	B          "#A DD"$ @      !~H!D AB! @     	 AI   ?D@$ @      O ~
O %FA	?"H%       @@
+HSEԂE     ">J*DJ.D!B      >|ʐ+*.""0H     "Rj˨. PH      @@@U *w)SVmĢ"H     P(E( ?A?D@$ @      B>"H".H! @      " $ 3 !B" @       @
+ A_%B	f    !B?Dʑ*DJ.  B       @@
+ T%B$D       GDj}#Tf $@H        ~ڠj *B!"B     @?~R* *Ю~!"B     ! B'J*U>T"Ђ"EA     @B꠪
꠮  B       > *
꠮#     Ѐ @戱$ @      ?B

$@       G*@*U W_Ą
       >|J* *"H"?       
*Fn#      G	) %D        G*@*U$T%D
"      HB')*^TPBÂ
$      >
*#B      x|!T?I
!J)
%D        
*R
( "I     <~*
*"?ȁ       G
 TP A      @@@?TQ5PU٢$       I"OB%L"$I$I%L     5 BU1$_PTuA     @?j.%DR<      @AJ5TĮ'QE"80       C'ʐ?* UW	f     @ DAb*H       
> 
!P"TH        GoкBjUU֨=R9D     @>B*
꠮"    !BD꠪
. B       GQ_@A?"@     @>(
*'       
+꠮ @"DH0       GOҚ *TRJ?      PDW*U!SA     !A(O2+TUޢ$IH      A ڪU*ԪURD%H       xO'ʊ**VT%$I     @>(
*#     AQ䤻SYI"$B	D"     BIGRJ.B	D"      !$AP*>TPB?(       @A$GR$ z@%D     !B>|ꪪ
8!P"DH     ! C'd T/Đ?B     @>DJ*#B       G'5? UAQFU5DH    ?QA%?P@!       G !W Dwȩ     !O'
RU)W"*RI
c      @@@*UHUZТ*De     !BԪ5 *)TM)Dj     @D~Bʄ*Bꪮ "QJ=     #DҚDjUVR/NH     ?     ?       @        $ @       @         @!     @     ||  @@?  @A           ! A      @C  @@@         ?    @        @AGD @G     @ $ @ '        "A@@P     @AEBDBQ!"     $(WIMU~X      BA_
B B$P                             @"`G  (@P             @@ P @         @ B""         ! B AD@          @/A           $@Q D@I           B""        B		'0H@!R(a       D	0A    @       "$DH(P         @!E@$  @        @/H 
,!         ( _	b (          	  'H@!	$       D-B AB         ?( /@ P @       	$O! @	 "            @?B$(b          A AD'       @(_   @          !B$HDA'        	 $@O!A(Q        
$HH!!BA(P        ?@ O! D@!         "'H?DH@         D(QDD#        "D?A!D#        "	D%J A(Q(W         A	,i!"D@!
       	 F`9` 0        !@ "@DA#)dϐ        I!E!"B	
bC        " @/A  @@        "MA!Q           @'A/       	$J! F`I""DQ         ?@ A!" T         "D	4pIP)"b(B       "#@  "8!       I	$T1A /       ( _ P @       D	 A I	$         A%|L!DA%A       D/Q   @        Ȓ("dDI$Db0        ^	.D AW@"         $)$T8I        BE$DO?DHB       B"	!B B!        $R0!       $"HJ
$         $O@      AB  O! D!        H$_A?IP ?        "D" D@ $I        D/Q DI	$      " _!Ĉ""L       !Ȅ  O!?B"       H$ A *&!@       "#@ A A	E$QA       @)RHY"I
"A        	D'A D$I~E        (
"D.Q!D#       D 'H?DHB       HX#XBN        E)(_H}$I %D         O"&|NW$LH"       $;B@D	D        )
R) RB""F        $_I$       !(_!
%Ȉ      ;BD)&HA "$Ȉ        	'HA|O       BH!$?3I       ((_HI@       
eĈ"'@BF       DO 'H  $$        !HL%I|ԉI#H        
?B(QT$   B        a/@QI@1      {")~^ QDicRC      AA (_	         C?H(Q$DH      E* $_HD"       D/I N        (>*R hD      {Di&qb p        B*s( _	$I          H)$_Q$D        Ĉ"'B  B       #D@/Q(QD$PHp      
" _|       ?@D$PO'Ę_%" |      Hc$
H)(^PIE	"       "
/"_ Au'A       D^/QH%HHD      "D	S(*WTU"E*%@       @T/JA 	I"I       $;vB1C&RAB       D@/QDDD!      
"(_
KdH      1 T)_?A!        x $H|!dEK!"       ?$I	U  O/QH      yDD@/U|!TDQ""       %O!	T'       %O? 	b      wr%UJU*TPQUT
D      $DI'J?U	      AO&DNS$HO"      }%((_|QEb 8        r%"*_8!|D%R        _*UTPNQR      UCREW/@PU"/      }QDU) _Iw$       C/URKR_N       @     H ` @`?       %H$A$$	$HĐ         {A$O<	 A$         {A< A           COB$I<	$I$          C OB A<		$E       @ BA	< !      ()DR
        "@)DRN"       (*P)DRJ
("        @ A  @@        @@  @@     @ A ? @          ! A      ?@ A D    CA       @@ @!@A        ?  CA      @@@ALB`P`@@          @         1` @        "E"Q@  @       $ H@B	|D @        @D$CF@         @ /       @      H     @   @      H    ~@  >P      H  ? @  ~      H   @ A/H      H|   ~@  >P      $@!!bBINqTA     DP(@I@_a BEqD       @   
 @    B B@D@AE @      !@!!     ?               D!IH"!
I     C C  @( H      " ?  !B     @B!!	@B" @      !@ I &Y!A$h$I! T?     @B@@B(    ) J	(? ( 
G        >	H$ C (	$E     @B!!	@B" @     $ H(@#A@@$H(`    $ @(B'@	G       C !@(@"1      " H@aB A(P$ H@!J      <'H"D A $@H@)Ti       " O/@ A(H(Q!(       A@ _" C@! D@AA       	x/@TR!HB* V@A$      "B!yT  y$BA	G@    ( L(    @
      @(`` ! A_      ) ( /
AO      (
((*
!O       $ HG!B y$x_@      A o    
       "E  ?          GBR}0ABHB     A@$H`@(@     $ ~x P{(B
HR       $RGII  {! B 
        A@/@    A @_(       #Dy$P$@H@J0H@       A@/@ ?A A E@ADT(       !" H P!B"D/A AU     )HRJP){)HR*J)     !@OO$ A$ A      		y@ ""
" $"?c     /D}!TB(Q|4      /D}!B((Q|4       I% _)^ A@/C$     CH  OO$ A$ A       D ?1   p     A#@>~ DD     'IG yP$O@      @HQ@" ? |} B E 
"     H'I'*!xP'A        )R'HO!wzT*Wp
       	 ?@ OJ!*C+0@ E    AQ$SX%    @
       ! _O?!UCD/QUT     )H^?I y$ _
       'D@ A$$OA      'I'$ yH'I       (*P_ !z"H`     $QDPݡUCvD-UPaDT       A@_A_ޑ!HW!_)"$     !D?wU   A   8     /xRE@'@                   @      ?     %  @2d   0     !""@             BF@+ #1A      ?   @ ?!# I       @@ q@3 i      @C    !        @@ !C)b~,RQ      @@  ?D@D0     ?    g" "C      ?   I!8(J`A      @@ *BzpQQ$      @ *<qQT     ?   D	8JHA      EP"O?H #D     ~DPG2;Hn _䈉 
    @``        $H ""@	$DH	" B        '"DH	"(  @B`?      ?B!HR$HA!BD	$        !Bb.8'       @ !Bb.8'       P  
"DP >P        G	HR"kH)
RII-p      	DDIH  XHH!0      BE! ^HHD*$d?      ?I!tJ'H!D*UD	$R X      !BOL U"JB$P      @@@ A!  B> 0      AADR@"" DA0     (	"R/@? D 	P$       	AA@ A!_0     	"!  E@$      { RF	HA J)$KqL     DDFT!B     @!?I$ M!PF@D@     @!JX),RJI%DH       /"$O0E!B
"     @@@ ~P!B!B 
      @DI"X! D@A        DAA Q	" B@       OQ @@       H/Љ$H:[$*H"D	HB      @@!DR%I ""     xODR!$ H@ QDɉ	     @BI	S @@
      BAAHR'BH"
     @? W A         OHQ="@D$       D!D?BQ	#D A!       @D	DP!#@       @AAP'A       @AP/@@"      BAJR%(Jp! B@	     "J0>LR&O"D@      H!DARE$H!Q      	B! P! @O       ?ȁJ+)LRJQ/DO D      @OD	 PA'A        B!"P! GAIf      @G P! @G       D$A?  S @@       @D	$ P!"HDAA0     @  0 @ABDEP@      @	$P'A        @GP!"@D*L      B!Q!"xD*L      ODP	  @ 
?     @ ?IR0AA
$      @@O?  S @D!""D(       H!Ġ P/@@      BA<$P! B@	$H      @D	$ P!"@D*      @ 	U2rDO
$      @OAS$I A<
      HBDĀR%J(Q/@D     @_R	'H  A      B!DADEP!"@D*L       _DQQDYQIE%AJ     @A?I$UU!E@$       ( zH""KKI(]G
     @ 	?		$@$	?      " B?" D! A      ]BQ}* W!?       D$ AP'@$
?      /x$)HB 2 HH=BA	A     @@O!Ā S&UHU"FT     @"?K(!? WA@A      	  G Q! CA)f     </!		2K/E       OD S _D      @@ODĀ"P!'B !J	     xO $A%P!'@!B$     *"*}7O(Q%BL     <I	D" Q'AD      @	$ W @D$       /?JB0 @ $P@      /?B	2TI@)B      @_JS @P!>      5 BU	7Ң$DP"A     *"*}0
B(QB	!     ""Y2TNQ*BTa     @ 	)3 _"R$JB|     @DA $S$O?      " BK3ʤO(Q<BH%      @G!Q,|@ 	D     @!@bo U2r@ B?A     ( BD2
_Q<BH     5 B}	4R$DP"UA     5 B|CD0
@(Q B     	 Oy 0DS$Ox=Jg     @/*wD3OAbR     ODI"W! AUCDTd     )H%){0D@Q?D          @ 	$L A ~      AUAA       @	 	
BI0H@          OA
(@" D  "@D      @AQTDBD!D"     ?          @0       @!RT!BDAHB        O
(  @@(         OA)$ H  "@D      ?   A   "@0      ?H B@0 "@0         @     D$)a       O 
+@ A            @    ""D$)a       	  ! A    "@0       H  @B)"AC      #@
)  @@     ! D 
~( B  "@D      @ A D
H @!@B!
       @@(! B@          $?             ""D$)a         @@ (@! B ?        @@ʦY)ґ$"hD" D?       #D@
d(P" D@"BD          " TP!B |      ? ( H# E!	$@        A D p ""D$)a      @ @@񈊑"(D A@A       B!  ""D$)a        @@T"$DO      A    "D0       'BA'(BD"DA!E     ! B 
( @@            RB)c     @ BQ
AȈ" D@B
     !B ((P!@D"DD         O@
 H "@D""DE      @    ""D$)a       "@DȅQ
IJ"! D@A       @ A ($ B"
      '@ ȅJ
!D A P@     @ @@(0P A!      @ A 
+$D@F      xO
) $ H@ QD     ! OąI
"TD'@       @ A J( !@B"DE      @ A (P!@D@(I       @@
I($#@"D      @ BQ
Q  '@         
 " #0A @  D$)a         G@
   A AB@        D A*TR%$L(Q "        'B A"+"D A!         O
( @@      ! B J* @!@B!
      8G
" D@B
      A 
|(" D@"BD        B$""(  D$)a       " G@
? H  @ A D     @@@ALB`P`@ ""D$)a         _
(hH$Q        (  ""D$)a       @ AEJDA D$)a       'A D
 !@B"DE       'H A) $I@A0@       "D 
@+@"@D(`     @ BQ
A" E@B ?       'H 
)$O @      H$I AԒ)$H$I @      ! G!JE(#DA" D?       OD!TT GDADA      'H!J)$@H!"QD      '@
4(D(A        ! B T
(H>@ A         ?@    D$)a      @ A )$H/A 
"
     BPTI$DDI@      @D!P  @_        $H
,ņ   D$)a      ! B }5Jh*TI(!B)D@        O
H(<"@D$       @TTADDADA     @ A 
H($*HD!B%     @ A D
H $H! B@	        ""D$)a        @@("D!B       #D AB(#D A!         G!J("G!        @ BQ
I	 @@
     ?B!! "@0        @@T"'H""DD      xO
) $ H@ QDɉ	        ? D$)a        @A H  #D!B        @Dʤ( @A@A	     	     `3D$)a       _!"D(  ""D$)a       @   J"d      'A T(  A         @Dʤ( #@       !"J*!B }  D$)a       #D!J@(D"E"HD       /H 
()F _      ! B@J)H'BH"
        O*T)R%$J8 "@D       @A$)J%DSAQ      " "~h$$K!D	HB     @ A ʈ(  B A	     @ @@
"( @A ABA        B"  D$)a       '@
ԈR$J( "@D      'H!J(H! B@"BE      ( H@)$$PH1"EDA       P@(8!PDB       @@*Ĕ)%I ""     "D! D$)a        8 H   D$)a      @ <)"BDJ"d     @ @@@B*HX!PD!"BD(      @     D$)a         @

"(  D$)a      @ A 
+"E@ADCD         G!JA("@        /H 
l+'@'A       @ CA
(Ȗ> BA0     8A  ""D$)a      BP>T$O"D@     @ A D
/@@"       @@
(  #D!B      @ AϥD
 #J`"D       /B 
B(($J        'H )| $@H @      @ B@AʄH($@@      "D*T? "DB       @@*T"P$_|I$I%J      "E	""   ""D$)a      ! B@J$(̒)$B@""D     @ IEU
H! B@""D       '@  @O       !B!4Q@ D$)a      }" D@x  "D0      @ C!@(D"EPA"HD       '@ ʠA("G!         /B@ąI
IJ%(Jp! B@	     @ @@
A)!A@
"	       $DF
>"E  D$)a        "B(!$? ""D$)a        @O  B  B 
     ! B@ȅ_bDH8"EP"D        @  ""D$)a          @ J"d      @?ā[)TJQ/DO D      ( H@K " D@D      A#A* ""D$)a      @ _)  APA
"
      " D `*@UDQJ%TLhQ? D     @ A 
D(|* D@?@     # AJ+! D@$B     @ A 
$(R"J@AB!     @A '"D(, ""D$)a      @ B Ҕ)J%(JP)BR       H ADQ%B\""@D       @AX/TJQ)DH!D      H	"T  "D0       'H A)D$H!Q      ?B!BQ	? "D0      ! CA
(P$WA!~       @I5@i}RQI}$AI      xG
( #D!B      @" DD$I      @ B( @ O           D$)a      @ B(  'H A A	     ! D AJTB)! B@""D      !B "(D/B A!
     ?@  Ad00 "D0        ? ""D$)a       !?   D$)a       AE ?  "@0      @A*T	$D0A J"d      @ Ak	"HDE$H%      'HAJ $I@HA	      "HD!ʀ(#D " D?       DI5VZUiUTRUHA"AJ     @ @@
$)*$$HIP B@      'H%D
 HP #@     ! _
+ " D        ?B!@0 D$)a       '@ ƅB
Ԉ$DH""DD      GBP?ԁO DH!D      $HH
T@ O        DI4FDi1RdI$D      D
D*!WTADDDDB     ! B AJTB(#B@	"D       1` %  D$)a      @ B(  I@ADCP@      (@HT("EPA$KE	!      ~ D@I H!	 D$)a       D " ""D$)a      @ @_A
(̖#D A!~     !B@J) 'AD      #DJ (  @@      "@D
)   G!B        @@
I($%T@A	     D P@BE$$
$(PD	     H OD
I"$I$BH	      #D A)"D$O "@D       'H A)$ODE      " G_!RH"I A?     "B +Р"@O"%DI        @OB
Ԁ  @(      ! GEA
I"D'B"$D      ?H D(? "D0      @ @OB( '@ (        @O
I( @AABDD     @ B !T"(B!F 
b      #D!J (  @@        O"#ՈS@@       !B A)D _
"
      'A ʐ!)   G!B      @ $JT	, F  D$)a      !B/C$ D$)a       OA)$IA!Q       ?D@  ! J"d       B<
"H @	          ?@J"d     "D@)!@B"DE      GpDETU}TENQUEADDB     	  G%D*R	"D"B J"d     B$DD!ER$DIHQ0@D     "BD "@0           D	       ?@ 	     %J!(c  @G        G!C? ( S@@
"      !|J*TIR$DIHQ0@D     @ @O
 (  @D!""D(      ! B@
$)ΐ! B@	$H     @" D || D$)a        ?@	$O	      OQ
"J"  _       !B H
 K@"HD(`    D~?1AMEr+  @     @ @O!J)$'H%A      8G?*(V#@@?P@       !   J"d     @ @O@J?BH" D B        @O
"(( @@     @ A)$A       @ _$! _A9f     @ @@*B) #@       'A D)F A !%"DP@      @@ S$IH%"JD      Q"DD	 ""D$)a      BBPH9āH?ā      'H!) $@HA#DD      !B/
$(PBJ"d        QX W       'HT%J(Q/@D     @ @Oʠ(  @@(       'I A)@/C$      @ 	   D$)a      @ @O
A( @D!""D(      @ @OJw)R&Rh"D        CTTB	     @ B|( @'A A*         DH      !B A{"(DQJQL"D      $@@
)R$OPAD!      P D 	*	      !B/C$D  D$)a       "HBD
Ȅ+d A"D@     @$IA
("@$I 
"      #DJ (@$Q("HD%        $DH 	      @@ Q @@	"R$JB|      'HQ*Ԑ%J/@D       OxR)T  Ox"R	*#     ! CJI)""A !*QE      'H
T©"DB      !B 񈊑 "DB       "HBA
Ԁ%J(Q/@D      A A!B5RJ )BR(QA     ! B 
(#D@?@      !?	      B    "D0        ""@$)a  	*J4G      %CI	"" D$)a      'B 
)8'B@
BĠ      
 Cׄ!@@0c8D$)a      @ @O
 %J!(B?B      'H A)$H  "
      A !DQ$,F "00      G I$HH   D$)a        ?@G	      @b 88?D@	       O!_Մ)IRTH@A"BHD      ! Bq~!B)GB(QxQD$I     !A@J($#@?     "HDJ( "D!B!	     @ O "G! E     "HI !* )%IH%"QD      'H("HG?      "#@>DH D$)a       @H* +  O%"JD)     % J@
)  _I        G!ʠ(  @@        ()  	      #H*TD'@@(          D$)a       #DJ($@@       O	"}5iRHI ($HI     @ @O*Ԁ) &UHU"FT      'H
Ԅ)E  O!?@	      !IH*T"IA6      #D!ʠA( '@$
?      C!J%iP#GQ(D$I      @ E/$%((	       C'Ax"D( 	     @ @O@J? H#DB        'I A) /I !"R	     !B (Q$HG       By A+"(D  D$)a      @ G!( @O"       1 g$"H|!0	     @!@D@Aj)*T'IP=BH	d      '@ J( $DH""DD     </IE@
 H@" GA%6	     ! CA
A("H@A       A$O
"S( D$)a       " G_ H! CA)f       "   J"d      /A Ҕ)z%(KД)BR	      'B T$DA "DE	      O V	O$DI*D@       G!ʠ( W" GQI"$DJ      @
"+ #D! A       JI)7
?   "     " _
|(/H 0@       @IdO)
$P! D$)a      @ @O
B)H`#0X!~      @E?@@	     "   !H_А 	      | D D e%
# ?$08       O!_Մ)*RTtH@A"BHD	       'H Jߔ)~ 'I A#I	      '@T)B$L@A      ( HDL(U	      #D AB( 'JP)BR      ! CJK)""A !*QE       'I!Ȕ)  @P!>       'JPԥiJ H ! CA!
      #@A ("HD!B
"	     !B (Q$HD
"       @G%_ "D!B
"	      @A "#DURBA A"'ĈJ      !!@oR >   D$)a       #@("G!A	      GBP?ԁH?āBA     @ _@'A BIQ@     " (CI/"B D$)a      @ G>(~( G!       xO !J) '@!B$     ! G_$H" OA	f      #DJ( @O	"D        GR
$OI& WE
A      #D A #D !J     >|D#H   "@0        @A@ERJAH#D (BP?B      'A)B$E(Q%"D     @#AR#DB?A     @$I E H $H        AQ"K	"* D$)a       @@@IU!(PHDB!~     !OA
A(#D?       DAy""IH 	     'H@
?AJ+T@A	     ( HOʤ("H@ 	      " G_ HD#_QD!A     ?A  B	($HR$)Bd|      </IEH
"H 'AD     ?@B҄YjL-@J"d       _(GQ'@@@(A     ! B !:(P 'AJD       OՔ)S@@I       'E 
l+'@'I A?     <OD)TH9āH?ā      p!B(g" (| R8P	      <$H	      @~(P§@""Ĉ     !A@?
(*SG*(P     I1'@!p~	J"d     !B
CQ @ !B$I#       G!C1A(P  O%"JD       @@?A(QDB"      'Hʠ( @ A	     ?   A	       G!?(COx"R	*#     P OT)  G!        _?JUP @ $P@     !B  (QG?
"     @ HALbR
        O!3iUHdY1rDdI      CB'I$*R!D	      B JUPXA3"p      !R?H" J"d     " D}"*Ҫ_H}""DHB      $DO*" D@"       A "DEPJ"d     ?H@)@	3@ J"d      #B ("G?     !N!CiRJO)>R$:K"     !B!>IWGQB$	!      @@UUI)UP TDQ
"     #DJ )RR$O      #DJ (#DB?"     x!!0RNLQJ"d     (I𔁁
 + |$I$B?      
 AB&C$((  D$)a      @C ? !	       O|!$Cz)*SߤJ0a-BjH@      H iI"D !
?       'H JȔ) %TJQ.@      B!DUADFHI @1D D$)a      !OA( @O      %BW
IE D$)a       %@$HO!?	H      #H B( /D JB$D     ?B B"(Y  D$)a       '@JI("'@ 
     !OA)"&dJ""DD       OQ>EU)BR@ ?       'AT"DB        O/BU	R K/RE?I      "G  TA|O      @@@!_ՄH@%D(      P("|  " E@ 	     @GDDM"HJ"d      @G!$(QHG     @$E@
D)4OA?A	      ( H2DD*U	      @$A?A)4II(Q.BLi!      DA$)H"/"D} D$)a      CD@Q D8'BDJ"d      /xB!J(Ė&!L@!80     @! O!J┩)"'A !R"FB|      (P@|       |9@@	     @O_ I'H 	       ?%$RI$!B%%g      "HB*"(D @@      q'@D"} D$)a      @ A *) $IPM      !_ЄA
T ($@O"	     /A	"HG!	      @$K$I( D$)a      @((Gł%(QAJ"d      8G?A)}Ԉ@  "_D}     !@ *T  G!      ! B qUUQ(BQz@ I	Q@      @DA?I)QG|!UBA	     CD/R?H8%T@ D$)a      @'I 
 )'H  D	      @@ՈR"@DIB|     !@B@bQD@ $I       OHUA)}TD! "      %AW
IE D$)a       AR"K
*( D$)a       '@@
?AH/@ B        !!	      'IH("HG?      'A@e* H#D       N@*W)_Ҁ|J2"GĈ&     @B4 ( "!H!	     "B A {P
A(QB"E       OՔ)SHBI      ?Q A}"%Z"(QD	     $ OxAJ$DH
$       @G(,|@ 	D     <'DAI)"HDB$      #@A("G!A	      UP ( ?!A 	     %TKpAJT )B(O!BE	      #B ("HG      | C#DE(
	     @C!ϐ?"B|  D$)a      'I$y$yi<II$$I$I        JI4HiJI$AI      'H `K 'H I`      @@QUA)UD$Q@     ! B JU)QT"EP *J        Ox!)C{c)jԣ G!B?A      'A T%) 'IHQ7bJD     "B$I )$RHBP+B)IRC       @ !	      '@J )ޑ$/x@ *       O%#{)RROx%"{ĔH(?      @A$GR$ x@ D$)a       OEI
 I'HB}     !B 񈊻D '@$
?       @@ S$IH!
QA     'JPiJ I %H RR      #H  $ K/?B      /@ *T #DB?      "!@'P%J"}(J"d     !_A
ԔP"TI(!DIB|      @$ ]uRH,	A"*$QI      !D!"}Q
OQB$UQ      @A@ao URr@ B?A       GQ ) #DDaQ     !OAQHG!     "!@OI?$!W@	     "EC;!iҥB)R}$"Hz"     @ A *) 'I !%     #D!ʀ)RR'@%      *'YJՈJ"d     " G<)HS}5PS^Jȟ*"U䨉b       BO?H$I $$JId      B "#UURrTH
"     'AG}kJ%D D$)a        O?(SA@       @_?@UERO!T'      @@J 'H(_D     ! Gʤ(" Ox%"ND     @ @OʪU( 'A@U1A     A?
)
RdL `	     "D q#$UDTUS(B!     <'A!R(B R      @_TER$O Ȓb     ?Q)DBD/Q($B|     (B%>(DJ"d     !B A"+T"MتR*	L     BO'4 
q"HD D$)a      @$I!̔)֒%H_!
      >O	C?)P @ B?J}      @_? (WOA     !OAT $CA)0     $ JJS*PDqU
'     'B * )@!DMP5BD      ><	      @
U)URX@ !       @@@$C})wSUHA)DB      OA>E)AS GB*U      Dr&H0J"d      @O  @O? *      @O?@5QHG?$DO	P       O5k(Q _?JD)      @"#*RP EP P@       _!^CyjUW!^Ezq     "B 
)P#LB?F     #DC?")PB !**`     B'8H@iJRI'H BB	      " (_!"
      @@@$C_Ց)JH)"_Ā	"     'A JA+A%HJ(?<     
!A$$J$
 |Q	4	     "KĒ5SRhBEJWT)>R$Hz     /D Ҕ)('H!*RE
c     " B*"
M
"_P|	     'B H{"I#@T=     !B$ISi"MQ6(YKŐ     /D J +#D ?B     !B9UTүB<I*"D      @ ՔQ$PDBaQ     >E#BJʀ	      @O*w(DSOAbR     $HHJQ+QE.EB.I	!     '0BHq
I($#B "     'IH%#{ՔPD@Q?D      !_A=JUPPD@Q?D      "GE_!H%(Np9ZB     !@B  >T UE|R     ! O r~WT D$)a      (Q́)$>H BG$       O!>HDPOA.E{(     "HB #")RO?ȩ)     $Ox"@G     ? H>DP%g     A'>DPB     A'>DB' QIO       @ / @  4!\     @ @ D$"KA      !" H@(P     @@ @  
 AȜ       P ">D@P (	P!      P "(DHP (	P!      H "DP $	P!     @@@
HAB	DfP      P ""DDP(P!     @ B@"
D`A!J      H H	"D$PH#$IP!      H   ""DDP$I@!     @/`x@/`x      HP!"Bx$HP C(a!      H  ""DDP s/	H!     (HP/"$DP $%GрA     @B @<JHE!gXP      )J	> H^%JR0%aQA      ( H "t?@PT%(ERA     @C?$( ;.      P " DP !^!      (I^?B$Q A$EPQ              SA'' $P !	B!     @$$? ~DT!(E_A     " DS#G"%Q #(	_     ?(BH H!$~P>(%@Q     
(HT">H_$Q@A"EHA      (I jD )REQA       Q$"x$%Q@>	P!     H >$I$P @!BA     (HHIJH!$~P*%gш      )H^ $Q(P EBA      )Hr? ~$Q!(E_A      QA?Ҥ$~PA'HA      '@	tRJQBLI	!      (HJ1bO?	?B(QB%Oѐ     +LoI)$S@EPQA      (DJ1jĒ0)PdGFA     (<H@'@$Q؄1^A      *RLy`Ĥ)P@OBA     ( KiD@)UTKE_ѐA     (H H#@$Q +b      !PQ&bGx%Q@)	_᠁      P I?I$P!?H     w(IܒrHP $OA       @"D             ?    @         ? @# @             /@B@@       "D(Q!|@(P        " G @ _
""     ~ "Ȉ""||! B         " G ! H@          " G P _
""        ? D	(     8D"}!D!          /KI%$B         H	 (         /JII%'B       /JII%'B      ??"L        " G@@/B1D
Q           ?|IEI%EQ@        # 	'@ DD b         #$H! B@	H         #đ	$"Y)$DD#         @     @      AAF3AE        0 @	 "        B B!B      ! B $
Ha#B@""T      @AAEDD!D"     B B	 B        @D$H
 b#H@         O
 `C@(       @?"BA
/DAH"     @A@B  MH H       " B 
PaCD@ A       @@
 `C@       xO 
?`A "T        @@
a#B@
b     @A?H EAD@        G	 `C@       #@0!@@(       #@ 
 a@! B 
      #@0!@@      'B@$	a#B@T!A      /H O*D
aCA 
"       @@&Y$bkD" T?      @ B @?
`CA " T?       @ADEADAGH         O$
Ha#B@""T        @@
>g@"T       xG `C@     @ A ߂	
$HaA A
!T      @DEEQDD!D"        @@ @
 bD @       BāH`F2H DH!H      @?@ E DO H       #@@Ia'DH""T%      #A/B
aB!B      ! B@OЂ 
aB A!       @@$O
 bCD$      @ A O?
(P`B@	""TC       'BOȂ'
BDbDA!E     @ BQ  g@        8G?Q
DbSDEA       @A@Ȃ DaB A!B       @@A0a @         @@
`CA@A      xG `A@A     " D@?@
 cD AA     " D@""v
b#D@"2TC       xOD d#H@ QT     ! B B!
 @aCB!       GQD2PAH$j        @@$I
$c@"T      B! O"MDU        'HB"(  @        @@
aA 
b     @ B OB Ha#B@""T         O
`C@      @ @@
0P`A!        @@OBDH$`K@A0     ! B "HDAb'OQ " T     @ @@Ȃ"
D`A@A        G" D@bD"?@       GDAGEADAHAJ     @ A τ	$7B"      #D/B$I
bD " T?        @ 	BeJA        @@"D
P`A@	TD      N OȂ"0B A!        G  `A AB@         G Ha#B@""T        @@$DHRbF(" TB      B3ĉ$H"E$ȝ+D @      #@ $`C@(       8G*T
PbE ABH         O
hHdQ       !B OȂ Ā
aA 
"     " B@"$
H`?O      A  |
b#D@"BT       8G b#D@B      xG?
 g@(       'A  aCB"DU      $ H@BJ2HKPQH"V      @ A  ~1EE ""      A $HIA0	~$Dh      #D/B 
 bCD@ A       @@ c@A      #D /B%J
bSD!B       @ BA bF B ?      @ BAb#E@B ?      @A?HED]D@     @ @@" D@bD  @        #D/B!@
DbDA%Q      '@ĈRdJ( "@T        G/B A
b@        #@B*
`C@       @@B$
$bK_!B E     @ A H3%HD!B%       @@""D
DbDAEA       @A OB  bD!B      @ @@" x0 B@""T      @ B@3@A A10      #D OЂ?B
cD A!        @@B$I
$g@A     ! G/BE1DA" T?         _Oy$HdO A 
      #D/B?@
DbE"HT       HD!OȒ$2IĐ @(       xOD	 d#H@ QTɑ	       @D$`CA@A      '@42EA         xO 
`CA P        @@
paSB!BDT       @@	paSB!BDT       @@"DE2#DH""      GDI$GEI$D @      @DEI$DI$DA       @@
`CA        'H/BdCH!"QT      #D/B 
(P`A@	""T      " D }$JH)2SĤIE$T@     ! B@BHgBH"     ! B (>@`A       @ @@ 
`C@         G/B 
bG!         8G bcD`"B      #D O҂!BeI A?     @ A  3H! B@     @ @@ 1B A	      !B OaB(bSD A!J     "D ADJ2HQRH$j        @D/ʂ
 `CO      @DEADADA     @ BI	`@@
       &B	
ac  ?@      GDAGD!D"     !B O"
DaB A>D      #D ?A
bG          O
~eR!B?B     P A  ~1EDA!E        @@"@ 
DaCC "T      ! C$K
bKDЉA" T?        rJI2'JI ā	PB     BPFI1'DDI@       @D/B$0!@H""DT       @A OB DgB A!      OD!DD DADA      =~!@G@      '@
 `CO      8G @
b#D@"      !A OA2	H@2BDA     " DpB*U*UET
(L)         @@"D
bCD!$B_      !B (R0PD""LU'      @ _|H	`CD!""T(      @ A 0AA@AB        DIDDK4GDI$DT      "B  
  c@         @ @@"  3@@(      @ I ~1EE ""       O!
l'0A(        /B@Je+Jp! B@      #D O߂!B
DbD)a      xG
 cD!B      ( H@1! D@T       @@
  cD!B       #@ "vD-
T(bKH       !BpbDb#D@"_     !B O"
Dg@ AB      @"`s   @       " $ x?	 @        @A@OB@D
 `CG      @ A ^
j#G"T     $D$I$@?$
@     @ GЂO
@dR  B 
     @ CO6?BA0     @ G/BJ1	E(QJT֒R       @O?I
$b[AABT     @ A $
RbJ@AB!     !B "
DgB A!       @G/B?I
`C@"T       @A@OB@D
  cD!B       `p   ?@      <Gb/T
RbE ABJ        @@g@ A
       @G  `CG       #@Ȃ  `CG      @ IOHa#B@""T       'B  E$0AA I       #D@" `C$       "D" D? bDB     DB>~  (      @ @@"0D 
"     @ A  `A@AB       'HdO"D      ! GOP3OA A     @ @@A	aA@
"      @@A} 7  (       #Dע D@JbE(" TB      @ȑBD         ! B@B$
i'B@""T      @	$zH)6SʤI$@i     @ @@"0AAT     @ @@(
Qe3R@ABT0@      'D OЂ?B
bD ~     @ @OȂ |`CA " T?        @O
`G@A       @D0AO!BE     ""D@t  @      	dEU 9 @ P       "E x?   @       'B@E$Je3B@	      $D! O2)!B!*?      $ D@
$bEP        @@$)
T gA@A     ! B5	 gB@""T      @IDQHA?@      @(2	,AB("     ! G"7ABP@      _O6 D@B      'H/ 
P c@      '@/ `_A
      'A")ER!0ǢIH"TRB      @A AO @4A
"(&     ! B OBDB1	B@	"T      /IHB*2SIH%BTH      @@!O$8 0A+        @OĀ`#@(       '@$I
$bKG
,     !B@B gAD      'H @eKJ))a      #D/B? 
 `C@      $ D@BJDHb+XA B`    @$"Qs  <~  (       #@ BII
I c@       " G߂!R
bI A?      '@0OA!B      #D/ @
bE(Q'@U     ! B<I>D"1ϤIDB("      #D/ A1GTD      #D O߂ 	"DdO "@T        @B1 A *?       NOȂ%K0PJP       xO /B%@ 3D 
b     ! GO"DgB"$T        @@I
$eW@A     #@
$cD!      #L 3 `O       "@DD	 `G!B       'A ! `G!B       #A/0 G!HB?B     ( H@H
Y`B!""(        h@DK7DI$DEQ       DIDDK14RdI$D       @@(PbEH%"$       @A@OB_D
`CD!""T(       #D/B?
 b{D*L       xO /B% 0@_(       xO /B%@3 D@	      DITR!J7׉R%H$DT"      #DB? 
 `C@      D
D* GEADDHB      #D/ A
 `CG       GB@?Ł DH!H      !B/P~ g@
"       @O?I
`CAABDT       OI$IDJ1$IIE(      ! G/H1DD"DT     H _"dI$BH     @ @OB? 
 a#B@""T        B@ a'BH      @ B / E"2CF 
b       @O$I
$bKG?      #D/$I
 `CG       GBD!   DH?ȁ       @G/B?I
`COA6     !B  A
`A@	""T      !OOĀ"@gA!B       C"@A$ĝDIPA%H      8G?D
b#_	!     @ BA} `I       ! COI1%H_A      @A OI 3I$$ h        G/@p29"$i      @ @OB w)RfRh"T       @A@OB@D>
 c@!
B        @OD$dGC?       @A@OB_D
`C@B      @ @O/B2%H%A     'HRDbDB        JI)JK4@I$AQ      @@@ Ȅ	B7	ʐ)B!,J      @! O/B"3 D@     1QT(      HR}JE1RHE!ĸAP      #D/$I
 gAABDT      'H@B d#H@!       "HBkd A"T@      8G"D7 @""DT      A !
ODHB0E@(Qi       ! B@BRe+JP B      O $7I        @@		$3$)?        @G/B	
dGEЅABDT(        @Oʂ$aOAB       @OȂ   g@!"DT(        @A@OBDD~
P`CB(QU      #@I!0AB A     @ @OȂU0@O     @ @OB?B
bD B        @O`O!3      A A!B$5 )BR(Q(A      !B  @bKD(`     @ @OD eJ!(B?B      #@B? 	"`CG!B&J      @@  4H%"JD"       @O bG! E      'H_"ĈeWJ "@T       OxR) 0x"R)*$#     'B/Ԃ" gD 
l       @@ 1H@     @ @GЂ 	 `G!B      @ @O^He#J@*YU)	    "   <~  (       #D/ A
 b'GP*Td     @ OAdI A<
     ! C"DP!`EH" T     @ A/Ђ@
bG8" T     !OOȂ"
DaB  A     ! B@$0 B@	$H     ! B qD"
1(!*B"E!    B/ȡ"AO?  `        @G"
BaF 
b      _G2fI "J      /B@sg;B@	        @IRII5'B	I%$     </IO$7A P@      '@DD2TMؓ1""DT     !OOȂ
aOA       Np/Bsa#B@	"T      $@@)2SOPAT!      "DD/
 bKDAA     @ @OB  bCD*L      @ @O?A
`CD!""T(       xO /B%@3BABDU       O%/A 7
$       $B$IIb          'IH"{Ĕ)2SIH%"JUTS      OЂ @oB A	f      #DB? 
@dQ("HT%     @ @@"B0@      ! B bcD@?@     @! _䂈$HgI A?T     !B  1DB        _%/JD)T7PA.(1 A      DāDEQNF3ADUDAH       GD4G!"%$hP @     @@?āO (DRH"      "@D 2H B@      u$BD
"|!$BHQJ@      ~ @zx !      #DB? 
b'GQ T      @@$O2AĀ"HDE!       G	DH}2#d $@h       @A@OB_D RdIH%B     @ @OD$dKK%"     $@DI D"F7$I)DJ)$     !A@B$
$c@?      #@ P0AEPB*      ! D D	$f#@!00      #BO60!D!T     "HDB$
 bD!B!     ! @ $Ie3B@	      ! C! 6i`3B
D$i       !OOʂ aF!B?B       @O$k
$c@
$       @@?A
cD A     !AA?J2 D@!     !B@x*3դIP%BHd      @A@AOd *2UǨQ=DH!d     @#DB t   @      'A`A	} `COA       @OĢ)dGH""DT      " G"D g@!"~T       C!
H%21@
$      '@ B 
 dGH""DT      #D/$I
 gDB)a      #D/$I0@(       @@	2	(D#     @ @OB? 1DB       !OOȂ 
$bKG!B$      #D/ A
 g@$?     @#8D/ A
 `G       @x6]Ȉ:DD"     "B A=IW2ԊBJjh     ! CBK"0A !*QU      !OOς>
DgD AB        #D O߂ bGA     'HDB2JHB?B       G/ 
 `C@      @ @O"Ā fUHU"VT      #D Ђ? 1IPBH*     ! GOĀ)2D@A       B / 1B A?B     !G_"6D! A     @ @OB bDB       '@$ bG! E      'H B_~2!I A#I       G/@ 2_Ą*)     @ @OBH0a0X!~      @H"/  0%"JD)"      'IH"zD)2SHh%V      OЂ!DgI!%BI      !_ȄȢ}EU3G(QJ"T"B    B)%Q        @ @O 
 dG(      "$GP"2DK bDB       C!O%I3	Q(D$I     CS$,RTBy>  (      @ @OȂ $g@A      O OD*D@      'H
bKG?     " EW*2M A(       xG1HG     
'0AY        H"E Ԃ)^
`CO
$     !<O_ܢDI`COA      <O	O @7 B%*6!      @ B1} !*?        _I$ID&J7$I.D($ H     #@K
$c[D!$       @Oʂ$cDB       P Op"i 
cDB E      xO /B%0!@!B$      @$ 	$I7ʨQ$BTCj	!      'A P!
~ `GNЅAD(      % JxOB1%HDD      #D O߂!B
 gJP)BR      "D AB$2 B*h A     ! CA!H0Dy0(      " PI!RjI4r_IE%QQ      "HBI0AB Af     !B@B@	@`CB(QU      ! BxĬI5%H	D (_     $D!?% 2IĐ!B
$h     !OObKG!? E      @A@a4?~P0A!
2*R      @ @OI
(bKA>D     @ O?D5 D@"     BđTGEJ$EUB      <O_ĤLeJ *URC       G/I~2IĐ"*)2$C      GB@?Ł?āBE      ^A	DO6$A%$Rj"     ( HO$
bK@ 	      @~7""Ĉ"     "_OB1	D |     @ @OOĀ" gB !J     !B@?bGB        G!l'0A!B?        @G 
`O)BR      @! GO `COB$       G/ 
bG$T     @ G>2 G!       'H ĪHeH (     @#AЂ{RcDB?A     !@@ *0B*(P     "XD/$I
 cB 
"       G/ 
`S@A     @ @O 
 dKQ/@T     ! B >O	R5ϐ!B!(B      $@DI }$#T5SϼI!$Di
"     #B π)4I+       'B@ق 1D !~      @$A?	I4hQ$BT'j!     !B  "2EPB*      $@E/B
|bEBP        H!B	0)H$R      @ $ 4C̤)&2lRB      #DB? 
 `IHQ%"TRB     "DB'Ȃ$HO
$        @@@!Ą5@("PE (     x|9PI
#f ?@     ! Dx%/jD04H-"ID)%$     !B D5  A(!      'A@JE0!@O
$     <OD(DD2H9āH?ȁ      #D/BĀcDB E      'H/H2O_      @ /A2 AB(5$I     @ @OB?
 g@B       D /& @       G!OA 0%"JD        @A@OBAcD (BP?B       @O 
bG!?A       @OD4e@Ȑ      '@ B 
 eIH""DT     ! G$
bOA	 T      `p @C     @$E@ψD5ŰOP@     !OOʂ
"
"c@ABDT(      @ @O_B?@`A        rBD 	|!B(q@     @! G/B?@
 c@Q*T       O"/Ĉ)4"R$jB |      'D Ђ?C`HA	!      #@ 1G!A      'D Ђ?Co{B!R*#      @@?D$	"4=@A"T%(jR      'IH0!@_       xO /B%0!@!B$     @ @OB<@
b#D@ B     @ @Oʂ$D3GD A      (@H)	_2I!*B         HQDI7(Q*!)E!     @ @OЂ2L/     @ @_?Ą|dI$BH"       Ox%/D6'A"8(0#       @ODdVp!      !$BH"D)HDq%V(       O!?IU7dY1rDdi       G/@$2Đ!D*"(      (JOń>2H@!B      @ @OĂ^DI)`@     "EPO 4EB$I(        " OpBQBz4 OIQ@     !B!OIY7!*BD"I       DDK}4GQIE%AQ      H II2 !*?       "HB""D0@@      @ @OB$U
 gI/AT      #DB? 
cDB?"     @ @OĔ)dJH)U4G      'IB 
`F"%!      #DB?
$cA :     @! O/Bb"2A !R"VB|       O|!$Oz	*40a-Bjh@     @ A "O2	LA_(      @ A "O2J(B!       @O$2HJA      #H ϐ?B0D JB$D     " DגUE*HQ
$*W!B      $DOȂ?
b#D@"      'HJ*dI!      Ac'@P@@      E yDu%R7)DP%$D     " D:/H2EĈBRjC      O 2	H $T      @@@I$2IĐUDj       @! _"d@      @#ABB
?@    A?TQ
A @         #D Ђ? g@ 	f     " D}"
:H}""DH!B      'H BH eWJQ.@       @Ok
 `O 
      @$A?	4I7(Q.Bli!      '@B?I
"g@ 
     $$D$
`CO
$     " _gA 
"     @ AA<Lc @       I)J3" "*?     @!GO"6'L@!80       OQ>D	B7 ?+       'A@B*
 `O
$        N
/	>4UΨQ"       B ??"
(`G!       !!@g
@i?@      'A ĐH`SD"       O?D@5a`2?A(!     yA#5Gg ?@       _|U_UIEQ0A:(f'       _QO}$B:PDBE"I)!    AQ$SX%  @        !B!Y5UΨQ*BT"a      ETq$ODDH 2CȈ"DE!    OD@?Db      'I$y$I<I4$$I$i        JI@K}4GDI%AQ     @'I τ 2	H  D       Ox!)O{c	j0!B?A(!      '@Ā cDB       '@B $o{@ *     $!POς>
 `#D@     $!POς>
`CG?(      "E!	4UϨQ>BD"a       @G!1|@ 	D      #DB?0D$0     $Iq~I	'4(Q QE	 "      O!䒉)4(Q&Bx) a     !GOȂ
$cD A     $ OxOBD5 @  A     !A R3 B!(*      !B(I$T1)$ T)      "HBʂ$cI	        OHDA	}3! "+       @|/2	5R@l       #B  
bKG      #A Ȃ D`O/QT     !B(I>4SϨQ~#hI      B DP3Y،!"%$hP @      'A@" 
cD      'IH 1HG?     "B!I4(Q<BH)"      $GPI( T7 "
)J!"     @ _(7 OA!~     !B q/LJ4|%Tj      !GD1 D@T)      @@QDA	3$Q @      B I	}!3ĐB?)        " OOUT2P*J      8'Aǂx
 nsG8R      xO!
*3Đ!$I(!       G!Ϡ 4xQ<ME(% Q      O@eS!?B       Ox= 1A"("       N@*	_5}ʈ2"GĈ"&     P$EP0!@A     "D G$舄D 9B"h A     "B A {䔉
7(QB"E!     !OxOU3 D     'B *aSG?     " EA}'H*0UΨQ*RPA     ! GADD0 (!     D"HD"?B1	D 	D      EH?3'      H  2A!B)       @$ ]u5,	A"*$Qi       !D!"}䌉
1ϨQB$U$Q      $EB
AeWJ(P@       @A@OB_D 
 bEPU     !BQ~$	4Iϐ~B!(B       @@@ODO21Đ!{I)        O$k0""Ĉ#     'JPB  eH RR     @ A "	~eJ"       zJz1 P3     "_OB~(7 G!_       'IH?0G     P$EP0!@
$      O*D?!3J*D_H     <HF?  ?@      @DA?@% 3 ""Ĉ"     "D y)OD	 2IĐQE
"(&     #D!π)R7%.      $!@("B=c ?@     "E*7UʨQ:BT
       'JP  3OBaQ     'IH(3ӤOP.T1      @A@AOdT3$"RD"       O1/	2?6I!"BW)      !D B2D|bEH"     ! G$
bOx%"NT     'B B?A
cH"?T      @!%H?4	TBq,      >EGB  ?@     @! ODD9d@
"     @ A "O gI !%     'B ԂR
 c@ɐ     !B1_d5IϐQ>UD"q       Ox%zD)0%B*U+      "U AHR2)PADRE)Q$A       O'"䈉H*nĈ"      @
E	U;Y ! ("      @_? 8A'       Ox%/DH7@?D(       @O 0A? *#      G!Ϡ 4E? D!    C!E_?  `       @ Dw)T5А_I) `     
 gp!W o@      @о!G~Jb;HPRUj       O$k0?JD)"     ?Q) BJ)O?@`       _!^OyJ8	א!^Ez)q     $ JB9PDqU*'     'Bd
bCG?     !B(IR	4Q?BHi	!     @ @O)3DB?"     @ @OB)D bO(        JIHK}6q9$NQ     $@ERUK*_Ԅ)R(ĉ*
      "G" )dOH)Bj      @@@$Ođ	5H)"_Ā)"$       O!>HF5@!*((      'T/Ђ dOP=BHd     " DA}'H>0E*"W)J "     $$DRJ3MA6IT     "E A$$I7!DR$       O%/D	)0#<}"j(     !O!UE5UϨQ~BDҨe#1     ! GADD5%$B?A(!     $DIȢU_䔊w2CI+      'A O?AA5I(?(<'       @ /$2t(d*?      "B G)%H o@     "B 	3B?F!     #D!$I ?T}UkQ     !OO;ĔbH$0       @|?$	5%/T=     #B Ȃ*cDB?"     'B BDD
bKG!      @_	?0A?J}      'I@"ĥl2H "*     '@"	3@?D(        O,Ȅ"6)S$*H+     !B9DT7<I*"D     /PU_ J9$ER%Yj      @  	'`9_RU˒U     @ A B~~eJ U     ! Ox0E3ߤOx=Jg     @/RH$HdKW!R2C     @$IoBudWȂ      !JPJO{c	j0!B$(B#      @OI$1	)$OP$     '{)_K5R_IU%UQ     $HHBQEEB.i	!     $OxJD2S_A6      @O?DE5ʜ%B*I)      @OϪwD1Ab+R      $ _/D1 _!?R     %TKpOBDE0C      @/RHOcgI A$mT     "'B@D1D (nԔ;     "GO߂!7(Np9ZB       O"B_hDx}U*      @O?D 5蔑/WE5I(       O!>ȄD4QϼA.E{((     $D(A)
/2)|UB$     %(O|!=JQ2 DB!     !D?wU  ?@     %J(A)rMT?|C((0     "G/T0/"$(T!d     /@ %/kD4?Q%;D     " D<OyIO7<I$)#$I      @_)!<RR4ZEJj֩J     "HB /"	4?")     "H"/jĀ3B?(I#     $Ox5@G     'J<$/I 3B?(I#     !D 1	6e@!}袧      @O!ʪ1Ab+R           @@   p       @@	"D$P         @@"DHA"
b      #@?"tDPEA       C! ?wIGPA            @@   p        $@   D`    B	$@HIQ$D
$DA       @ !>D@! E 
A	      @ $FHIR($PH@"	!      @  'P>D@B!A     "@(H"D
 L       @ !D A@ A      @A !D A@A	       (@HD(_R($PH@"IB      @ !D$HA!E
"A        CAA'RH(Q B@	 !      >@(H"D""H     @ @>
$H"(B"1       @P(Q%(JPA()      !B$_ȤHR) R@D@0@      AD!?	D4`AB	A     @ A !D|B!EA      Py߀ ">DDP! A     #@A I$M$PpPA      @ D@$((P @"I !      @ Q!?D8QDA	      8@@? "D(IH
A      @@$O!DDB!EA#      @A_R>(DPA"       PA?"DID
A     @Ȁa$/!?D!@y
A	     @ AHH%RRHDPI!       A H?P(QhB"%&A     @(I !"IDT B	%A     $ HA}XW*UP|"EA      @P"DDAAQAE      !@@DH ( QB"E!A      CAOQ$(PpAP	!      @ GȂ(<PH@"I!@      @'Ј>DD@AA      @PWȂR(PAH	
!      AI_?R$(R<C	
!     D@H "D|PAA	"A      @PH R(Q$A"!      @PQR(PE A    "H")$KYI%$R	HA    BI$((ҺRJ*R	HA      (@PTJQ?U(QTGBI@       DB!
"" EDB!
"QA      !BB?" DT)D%	Q!A       @!DHR"(|PAEA     $ HA!D_?RB(QC"E"A      !$BH	"?EpQDA     !$BP$D$QAAEQ@A      CHH R~(P @x	
!     !x!?"zDQ(Є EA      A$B R (|PA" A     QR @I?$P<
A      !@D$JQ R("QTAR)!        AHHR)PA"IB     " DCOQ@}(QCR%A       A$OȀ@(RTA()
"     !@@
?%IDIDQ A      "G"?RD OE?AA      @AEHQDR)PBBaA     !$C ??ADBA< A     #@ B "E)K%!QAA      A$_?A(QBB<!       CB'I$I) ?@     @A(((RIK*RH(     "E
XURDRT&E AA     
 CAI($(P@GCA     !$G	?I$P@Ey      @<AP(<RI(TS@I"!      " |?@"URT? A      ?0  @|       C?"E D%       @G!%?" DEQQ!     "(#@A$*%P %       @G#먥) $QRQ!      !TzH}DQTQA       ATO"((Q@@	!      @PWȀ Rw(QTC"EQDA     I T}"JEڍbJ  B.!p>      ||!B	% _A$8LG     4!TCQb_ҀHyO
A     4!TCShIҀPx
A       @   D`      A D pp   @       A D px?@@       A D pp?@?A        A D pp H	*      @(GH $H(%JAT]a       " 88?@@      A D pp  _@Y
D       @@@G/A?A$)"@DH(`     @ "ǀ>>@A D pp     |!~B>_!B'DD      @@@G!?@$)#TFWUa(C     PAQ_EUuWRUI}TUXDA        C)fB$kj$T9A!     DOxDB*%TKURN`       >$I@H     " H  B                B@!R)@@      )!RB?$T@H       @#$@ !D !          !!"D
$>TBAC     PD
!HD
     >|D "@         P,IDiJ$  A !B@     "DCI" "F       "DGI?"HO!B!       @AGAOQ$>(E @     "DB 
?I$#@ AB@D      TG	HT|R#A(        |    @ A @       |    @#A@       ߒ$$HH!"BD"@     @@aA$@0`w   @   @     H8$H?DI!$BPB      @8
 $" tGB
       @	$ H$JH"R@$Q"       ;?DdI!$CЄ      8C?HT BG	"D	      *' $*H"$@      $ H	"D $BH"D$      " D	$$>HD'@DQb@      	$?߄$H!!RD
"       	D$~ID!B$Q     wUD AHQ AB      " DϤ$IA'AxB      	$"/A$JD"zH(Q       		hH#AD>"     TP@R}IU%TRI X    $"**     B
K*_ȩ}RH B       @   @@(          @G D$I!$DH"B      ! @<H$I A$I*bC         @ A$`H &B
"       ! C	$K'JH)RR(U?       ! D%$JH)$SJ"       ! C$KA AD        @'" O$IH)b*"(         A DЀ?  ?      ! C @$I!$BHBE      ! C!R$I$"HHEE      ! C<%H@?BU      ! C$H$I(!$BHH0@      ! C	?%JH)"SHD      ! C?I$I%"JJE#         $IP%DJbJ     B!@ 
`      ! C $xH$HU2G      ! C?	$I@%JO       ! C?H%H  A       ! C	
"&H  "HD      ! C!B$I %BKUH      ! C?P% H@!E"D     ! " G
$PIQ2E$ć        @GȄ %JP/BR
D     ! " G?B%H%BJUJ     ! " GD%K/PHED     @@ ")W|!G!
`-?      ##$B!J DK!">     ! " G?D'H)B^
D     ! " GȄ?"|$I!$B"D     !!(OH 2	+TQ^IR      <'DOI%JH/RHD     ! #H ?U$ K?BIE2     ! " G|IT'JH	/RHID     ! #H'?@%JK'HH D      !DOD H%rK'HH!D~      ! CD$TNPq)RTF?     ! " TI*dUHU$$B     ?   H " !        ?  BH " !       !>B/ b"J)I&p@      "B)B (&d!      }AR
A1TEԘ)1a  	   `0`0       @@              :8x _ 	?       @@      @      @"B!B!"B!      Db#F"1H~CE        b!CD        A!OȄ	"D$I$R@(P        ! &p   @@    ?    D    "B!B!>@         @@  ?    @        @@ 
 " 0     >A ?ADb#@    "B?"B!>@      	? C      O" H>"H" @      $H $H	 <  @     " /bI&(!       B!C ?   @@    	$ 	 B$         @@   " 8 p     #$H>D""$@      @%BI)$JOFA       @    C     "B1>!"B!       >A$?Ab@     @%BA	?JI)$RA       '  `?`C2           @ BA	$     x% P%DTIJ=(@"    )$D"DII%=P" 0@    OH !h8         < CA      @ "$~$"@(        #$>~
$(B
( E             D8     ? D`  @@    	?       bAPb    bC$1!bB  @     @8 !      "D(($H"D(@E     @"(*(~/耢       <'ȚE>ILf#" !@    ? #	@     @" D     @@      "@$D$H"D(@!      $DI)$B	$B
_ @    ?  @        @ @ @@              A       (  @@    "(/
/>          ? D DAE      @ AEDA   @@    	$De)T_`eP@    ?@C B       @$JI/$J_<(@      @ "B!B ""/@     @>&/DRb$     @"D
0>  ""      @"()(~ ("D!        @?_ A         @  h" D      @$BA	=EI$JQ       $T	<|D	$~D  @     'B	=G	*%$B          (CA      <'@O>ILd$ @     7@G@G@@    dC" S d       @A DAG!A        @@   D  @A           ? " G       @@        %*DH"_|I4B     H% R	< B	$P"P@    ?@C  `?HnCY     ) H($K(<        	 D@_"D*$D        @@  ?H!"BD     B2>(88"&       $FAw$XREI%<H!      ?@C @D% 	      @A !BG        @ H'        O$@E	<RJII%$FS        @@ DDHQ D     @ $H"$"I	%<D      %I*D<̕*d$H&HBB    ?  $(c2$     @"B!/"D @          D " "X     /HB	H"D$I&HA     	 $
H/?
O        @B! B!B!      @(H/_d B	<        #$H$H"(B"      @"G@   ?@@     	$_ _< ?      D         <A/@W,eK+@    b(b*X~P      "$H"$" <@         !  8      @ %BB"A"A@    	 '3Dș`    ĉ$HTRJ*T`@     A)_$H&HA      ""i*|BA	BA            $ @      D$A	=@       $b9><BB	%P@    ( "B!@       $@<G1%(BB1     ?%"_H"_$PFIC     IA%I%_$$D!    ?@CCB       ' @?  !       O$d
BPB_餼h	@      @A#  "%*%T     P/QDJUIU=H$-PA     / _H"R)HR J    G@A$ ?    &$I'䲓Jy)$H	 B    	$
D/ O       
O $ D<H$A      ? HI)<HII%@@
      @	$$BQ%@	? ?          /@ HB	F     ?%"_H"_$PFIC      %*TR*TRD!      P)R)'B         DI*A	BA      De}GT_Qe}P      "D?   @@         ?   @@!A       Ē	H$$I5i$O$I D     @	$eDO`BI)$@      @;)@"D$H$      Q"DD	?@@     @A	 H)?H "     @B5 ß  @@    ?   (aCP       (TH         DOH!BA< A    )?	$b_d!        BDQ' @A@A     b9=$_I%$B@       R@$zR-JdԉO"2DA     #D{"$Dy*UT̟" D       O 
O$TJQ      /~
$( (b(?     O %?"D"=H"$"H/     @?RDOD_<H$A      D|J?@@         @ "      
O <
O 
@       {	ҬIz%"JDR  _     #D"I$W%JOJBh     
R){Ҁ= Kޔ%(J^B          "   ?    %C$JO% @      "
(/(( @      C'K)"S
3?      %)DI }BA	D@     ($F*~      ODRA	?JI)D@      /~$<@XI$H@?      ?B@	?A	B_         @ ?    )?	$$BA? @      @IdO)
$P!     @B_Qe)QD}}DEA     @I/5JO<8P	 D@     x>H_$@H	?=D!      D HI!$H@?     I?$	䀓R@"       @ 	?%x	+DD" D      x$IO?B_<H	 ?    O%O=H	?BA         # DD
        $
O A	  @@     @?H/?A	8P	 D@     @	/$@ H)          ?  $I      O !O  BJ|)@B      !>π+ʪJ"H"     ? @$DRNI<E5PA     @?H/? DI$      )?	_$ `     ?D AqV  O!?@!      _Hd D	P      }A/	
U$    ?     {*TO!%z@	 @@    ODG%FYU}DEA    ?I)?A      A?DRKWD+ ?     @?H)?JEI$A       @ @ALa    ODO 
O=@      $KȔ)R)d$It%V     II%	 Z/H>      @$(@	?H)?A      $^$ @)          @fI0T$D    ODA?A	?     #D$@$E%RJOJ@     @$JO$F_=@       @ 	QRA%}$O$Q @      @H9 7H"ʀ#    ҙJe$JO% @      )?	 H/?H     AQ$SX% ?       @	/%RI)D|
NH>H @     $yx
!*DTOp"I!     @$O _ < ?     @$_@dO @      C/>IA@      O?D_$JO$ @       /
@oɒI*bH _     $ EI=REI?A      ?@CC?$@     ?@ 1s!Z2RD  D!        t         @$(@?I)?      @?HOsq = "A     ?"_"eO!<     )	?H/?      Ȣ}(|@DH       
O BI)<@     ʩ?	DO% @          	)ȰRQ>IU#     @?A >>DDD  @       Ȉ""}|d2p 0     $}y
/HTO$UQ     ?@ C" I     ߤA|*U*UTOT
      A'Y/ P	_ $ B      <)R(BR      *(DO
%BO=P	 @    	[	5 A?
!    ҙJeJO%BG0~     D@R$ {"Zj$        <Uzr _ II     
RJR$<K!'H"       I?"%x""I$*  `    I$)_RQ
(Q        Ȉ""@  ĉC      @ CI_ґ%*JW/_Ҁ"     @?A >>DE@H     BQdG<|@	 T@      #A$V%V[? T)      %x,Bo?D       %_H~RWU=| /અ      y/MD8@     G  }%*     #|EPe(_|}g         ?D>"3     IL*ڑ$_U@      ! O r~WT        )kR{/RQ3;D     H)"%z/A)     	K	%dzO*WT]R*    IT_UY_}U@       `   0       a! @     D F"1#G       !!@  4C      !!D P `88       !!@  4C     ?I"TB? # "?     @A  !JDD        G @       @"$?        !?           >"@          ""  A |8     # 	?     #K* 	?      AA   @@         ? >EAJ    |@?~(Q"X ?           ?> E"^HD       1 g
J?       @/J*8!P"DH      #DB? ~""DIH_Q      D@H*n%J%J!(_%"     PAԐ	?IP#@>     @X        @/" @     x  @	$$Hx!"BD)"f     >|$H>|$H>|$HB*XP      xA"H	A}$Hx!"BHJE     >EPR>EP*X        x@A"H%x!$BED       RII%$_$ RII%%_      P	&^II%$^II$B      H)"RDҒ%$JH)P	@        B	%$UIc%$UIc%QbB      PxA*MG	,$zA"I(UD     B DD!RQIED`      xA _Ǆ	'x@A"HAE      @x@("PGA%z@(P`Ā      #	H~0#P      @""H$ R"$JB&"R	
bO     ~	i~	j~P          >~D'HOE      DώJ   @      @x@ _Ǡ %xA?B(D       A('Ƞ"| !B"        _  0     " H"D$H>D$`      /DD$I$I/A	AM     x(R@RDyD""J	&     |' D         {!"	%zH!_Ȅ      >|ȑ>|aB>|ȑ>|aB      U+rdDODR %JB/B$IEM      ""_/? %H@E-REĵIRL     !/z@0RK/zRJg        pP	 " "(   @           @	"D!$P @           @
$ @           @?
$ @         pP	 " "(   @      "  " *"!"       @@ H	 @D#@       @@pP	 " "(   @        T$F`?  D        " D   @
$ @      @ A  TBBA       @D$HU "D@      @! @!A*D"@!      @ A@   I @      ?  A B   I @         D!G*Db!$     @AANTERD!D"     ! B $HT"B@""D       #D@"DU"D@"BD       B!"G!*Ԍb! B     " !"A0*"!"       'A @T
@! B 
       /A* TA A (        B!BP@* #0A      0  fA  D A      ! A(*PT!$D@A       ! B!DG I!A       'D/B"DTP@A      xGT B@      #@T B@(       #@T B@      #@  T@! B 
      'D/B"DTP@A       @*TE!@ `     DDI$DNIU%DDI$H E      #D@"dUP"D@"BD         O$HT"B@""D       #@OT B@(        T$F`   @        T$F`  ?@@       @O*(TQ!$D@
       @@U"B@      @DEMQREAD!D"     @A?H NATQD@      xO ?SA "D       @ A?* T!DBA       @@U"B@
b          * #0A     ?@  !E@ADEh        H!B< *@T A!B     @ B @?TBA " D?       G DC UW D@       @@T B@        @@&YU$jD" D?         GOUD " D?        B! * #0A        GT B@        ?D p\p  I!A        T$F`      ?      @$DNIU%TDI$G D         O?BT
D! B@
       "D  I @      ! B Ђ!DT BA@!
        @@ @TB ?       #@@IT&DH""D%      ODCTP D@       @@OBLHV$J@A0	       @D'H*U!"DD       #@ $HT"B@""D       A  |U"D@"BD        @@U$JD        OhQHQ        8 H!	  HH@       B! * #0A       @@   * #0A       T$F`  @@     @! CAH* T!DBA     ! B DWB@       @@$IU$@"D       #D/B$IUD " D?       !B OȂ ̀T
A 
"	     !@B/BeLU`BD"$DG       @ BVJA       ! BO	*U"$D@       #@ T$B@(       xG?P @(      ! B@OȂ$IT@B !B@       8G?QUDRDE
A     @  * #0A      'BOȂ'BUDDA!E      #B!#G!*b!"B     @A?HNTEPYD@     B?D$NTRD}@      #B OȂ"TB A!B	      xGxT ~O"D     " D@""vU"D@"2DC       AaDЎ * #0A        OUB@        Fx""LDU&Eh     @ @@ ~T
B!B 
     ! B@OЂ PB A!
     ! D OBL@U @ A        @@WBA@A	      #D OЂBUD A!J      8G U"D@B
      /B BQO         DOB*TQ!$D@A
     ! BO$*T'@@       @A@Ȃ(T @A      @ A B TBB"DE      x'A* T!DBA       @@8TRDB       @@"$LHURF(" DB      #D ׂ)RUHE@"(D      @ A !DTA@A	      8G*TUPE ABH      " D@" I @        @@TA 
b     " D@"DURIADB!        G T A AB@      @ GOȂLBT BO      N OȂ"TB A!
      'H OJV I@A0@       !	 `3  `        P A/?* T!DBA       GD9j%DJ"HDJ     @@DNUT	@ H        #D/B$IU$A@	"D     !BO T"B@ABD0@      ) !1Q  " &0D      @ BAU"E@B ?        G!OU9$jIERR@J      #D OԂ%JSD AA
       !*	@T&8C       @@*U"D!B?A       @@U
D!B       #@B*WB@      @ BA* U"D A?B       @A * #0A        G/B AU
@        GBG  WQD!D"      #D OЂ? TGA       J!B(_!  * #0A     " D }$J\)SDIE$T@     BHNIU%TDy$@     ! G/BEUDA" D?        @@TpRB!BDD     H"E OԂRUHE        $C"|  * #0A      * #0A       @@IU$D!"BD	       @@*DPB A!
       @@""DUDDAE
A        @@"@ DTBC "D      ! C$KWJDЉA" D?        @A@Ȃ$U
@ A      '@̈VRJ( "@D      #D/B?@UDE"HD      @ @@ BTA A      8#A pTઢE@ADCD        @D/ʂT BO     <'@*T! B (      @ A/؂J(TA      B~* #0A      G D@ N}UTYDE@       @@B$IU$@A	     !B OaBU(RD A!J      @DNAUTDADA      CA * #0A     !B O"DTB A>D      ! r?!0>! * #0A      ! "D) * #0A     @HC  I @       #@ 1TBDB(       OD!DNTGDADA     ! B@OЂ@ UD A!~        O~U
R!B?B      GDI$GNIU%WD @      @DNIU%WDI$DA      @$DNU%TD$@      #D ?AU
G        8G UbD`"B
     ! B (>T@A         @@B$U$JO!B E      @@@$ 8 k@B(       #@  WjBABD(       xODV "H@ QDɉ	       @D$WBA@A	      #D OЂ?BUD A!       * "h?@@  ?       #D/A?B*U	#D         8G*TUPE ABN      @ A HS$JD!B%      'H OHWBI@A0B@      ! B@JLIU&IH"DB     ! B@BHVBH"
       B%H * #0A     P A  ~UDDA!E      @DI$DT!TDI$D        _Oy$VHO A 
      * #3     A      @ @@ UB@        @O$JVFSAQ       ! Lx"JL)VRMh	D	     Aux> * #0A      #EPB*UUTEPB(E        O"JL)VRJ "Ā       #D/B (TPA@	""D       #@@RU"F@         @@$HT"BQbB      GDAGUQD!D"      * #0A?@@?     @ @@" HT"B A 
      #BODW&BG         OHU<BD$      @ @@ U$JD!B%     #D  @UDEPA"HD      ! B y$JHhA&i!
      !B/B!UD! 
      8G?HU<JD!BH
D     ""D@ `A   I!0A      #EPB*UUTEPBZ
&      !B ` `        #@ U(JHB"(      P A TD@"D     !OOȂ !TBAQB      !B (RTRD""LE'      @ A $HWBD!""D(        @@?AUD@
        @D$T @       xO DT BD!""D(       "B   T @         @ @@@"XTRD!"BD(       @/䐈9RiB*"HE      BAGNIUTDy@       @A@OB@LT BG       A#AD	 * #0A      #D?AU
G$       /B@JV*Jp! B@	     D  I @        @A/Ԃ$U~A!      A Of;h!C?      A@UBA@A	     @ G/BJUE(QJD֊R       @O?IU$ZAABD      xGT D!B      ~@   I @      !B "DTB A!
     8'		  * #0A     @ @@ATA@
"	      '@?AUD!B      !BpbDU"D@"_       H@$6H-9TjIRI"$(        R!DD * #0A     !$BH"L[T&BH	""D@       @G/B?IUB@"D       H@"HP"DA(A      'A")LR!TƢIH"DRB      "@DDTpRB!BDD     @ A _W"G"T     @ CO?IU$D " D?       '@?UUTEPB(E      'D OЂ?BUD ~     @ _AU
DB E     !HB~HU$JD")Da     !B O"DT@ AB      @ GЂO@UR  B 
     @ AĂ
 T
J`"D      ! C!RT
O!B E	      __=LJW*VQ(Q" D      O DDI?ΑVEJ)DH?ā     !B T BO        @@L!TFCA1	      'H OAVDH!Q       "D" L? U
DB      ( H@U "D@D     ! COPUWA!~     @B "E`aR)%bA      "E	""  * #0A     !(BHoDURDA(Q       I? #* #0A     ! D_UD A!J       @G T BG      ! B@B$V&B@""D       @D/ʂHT"B@""D      @ C/?@UDEPA"HD       #D "DU"D@         $$F  * #0A        <8* #0A     @ @@"TD 
"	      " $  @B \&B        @OUF@A	       * #0A       @OȂ  WB  B 
      '@Ȃ T BO        <OȄB&JT&Cȸ!B      O DH NVJY)DH!D      r  	f* #0A       ?	 * #0A      '@  AU
G!          @@ T D!B       AADNwUTDAGD        @A *UUTEPB*       'B  E$P@A I      @BBD#@UT	ADA     @ B@OHUB@     $D$I$@?UF$
@      @ A?  +TA A !     @ HHOЂ WD 
b     "D!OQ	*:TjBRB A	     ! B yDJ:hA&I!D
     P A P~AA"E      #A OĂ	UJA A	      ! B5T B@""D        @@?AU$JD!	!      D
D)@?T@@?      "HD/ TD " D?       @(8j	J.AB     !(DPϱLTU BO       @A@OB@N> P @      @H!
D * #0A        @@"DU|"D@B       '@/ T_A
      D AEDJHHhB*B B`      A% .E` * #0A      'H @VJJ))a      '@@ƂȜT D!B       #D/B?  WB@      'HDVD A!~      '@ /T A         @O΀Q"@(      @! D"(TJH      xG /B TBO(       @x/D%@8 kA!
b       h@D]oDI$DEI     BBWNIUDD$H!E      @OBPU T!B%     @ @G/B?AUBD(`      'A@{̔)VROx	D	     ! C!$3	 k@       I!0 	 b3,.!@       *!PG  ?      #A/TG!HB?B      #DB?  UB@       @O?IUBAABDD     #!"
RI<" I @      ( H@HYTB!""(        @B7aJ"A 
?       'A@*UU
DB       " G߂!RWI A?     ! B<I~D"8i_I!DB	      '@TOA!B	     @ @O߂!BT @ (      H"E OԂ9$WȢE A)
       D "* #0A      GB@?΁VO DH!D       @A@OB_LWBD!""D(        G/B?AUA |D       G/  U G" D?       "@DDT G!B       $HHDLT@O       Q AU%*V8kJR	B(       @A@OBDL>TBG!B      @ @GȂ
T BG      8G _UTEPHD      'A/BP%R@BB(QE       "D/!~*U	#@        '@$IU$JG
,	      #D/ AU
GDD       @G/B?WFH""     ! GO"VDB"$D        _ID5*bS_I%D	TH       @@IQ$V@A	     @CCU
%6 +PARBDD(       #@ O߂ AT@!(QE       ?@@  ?T&8C      GBD# TO DH?ā     @ @OB?  S"B@""D       D
D* GNAUDDDDB      "HD/DUDF@       "HD/ "DUA AJ	      A!D* #0A      AAU2	  P  @ 8       'A !T G!B      x#@Ă	B"* #0A      #D/$IT BG       '@ ߂!BUD A	        #@B? RB A6	       @G/$ WD  B 
     @ B / L"VBF 
b      #D/ @UE(Q'@E     !B@BU AD      (@HTWEPA$KE	!      'H"̈1VrVL""@D     ! B OBLBUB@	"D     @ @O!UPE@%JE      NOȂ%KTRJP       AAU2	 @ Q $H      'H/@pV8H""E       !xGB?b * #0A      pHER}\EkZUIA)HB      8G?DU"_	!
      AAU2	  	  ! A       "PDA/EE:mQKI"E$       @O$TD A"
       @@T@BB(QE        @@$)TUBABDE     $ D@UGAQ      @ BA} TI       !B  AUA@	""D       '@ O߂T@E 
"
     D!"G!H* #0A      !D?T&8C      xG?;hIG
$        @A@OB_L UTGB*A     ! D OBLBTDBB(QE        @O U
G! E       G/ T H"D        B \&B      "OOЂ?BUD  B	      @x/D%@8k@₡BDDI      #D/ AT &GP*Dd      'HȂ WBAABD      #DB? T@ A
     @"ǀ @* #0A     ! B@$T"B@	$H       @ODU$FC?      GЂ$T G!B      'HRLU
DB      @ @O?  WBD!""D(       !B  U@JD(`      8  B8Fp       C**TTp@ÅJ     @ @O/BV$H%A      'IH"{̔)VRIH%"JETS     @ @OB UDB E     !A!>DDH9jED$Q@      GDI$GNIUuUYD]DA      'H"DLV"J1""DD       @O$UBAABD      " $ 3* #0A      'H_"̈VVJ "@D      'H_"̐WJ/@D       @G/B	QFEЅABDD(      !B Ȃ U
DB       I!OQ	&8hEV!B(Q	"     ! G"WABP@     H AxLTHG!D      @"(G D* #0A     P$IH@LVOx%"JE      "DD/T JDAA      $@@)VROPAD!      "HBDUR A
D ?      @	G;2jF!"J      * #0A  BY$B       @A@OBDL~TPBB(QE       @9$oD!?	        @G"VBF 
b       @OUO!3	      'A_B)NP AH	B)
       O|%ʤ(:_lOV%RJD*      #D/$IT AABDD     @ A I$UTE@$        _%/JD):ToIRA.1A      DCu?  I @        @@ UJ@     @ @OB?BUD B      ! # 0P@* #0A      AAU2	    !0B(0       AAU2I@`b3           AAU2	 ?A H       Np/BsW"B@	"D     @ @OB w)VRRh"D     @ @O  U@@(       #@ O߂T FEЅABDD(      @ AHVDzH IFD      OЂ T@B A	f      @@A	kD!B<
      GDItDAUuEYD]H!E      #D O߂!~UD  B	      DāRS*N!WBDB
      B$#* #0A     @ @OȂUT BO     @ @O?AUBD!""D(      @ @@"BT @        @O?AUDB       ! B@bUD@?@      /B@sV:B@	       'H/DV BK!(B?B     @! G/B?IU"D@     ! B qD"8
iB*!*B"E      'A BDXU0RA!"D(      !$DOBL$ UFD"$D      A!O;jEV!B(	"     @ @G/B?HUBDBH
D     @ @OB T BD*L       AAU2	     C     D!~D# WH DH?ā      'IHJLVH "@D     "_OЂ $IQ2T@""DC       @A@OB_LUJDA	      #!_$F* #0A      Q"DD	* #0A       @G JTP"B@      D|J* #0A      __ТILETB(Q"D      'HDL}V"fH "@D     ! B@BRV*JP B	      'IH" T
J `       " D "L$IW&BHD       "HBDUDWAJ	       @A@OB_L VRIH%B     @ @OBH_WJJP(BP%D     @ @ODV$JK%"      @ Ă	$UJA A	      !A@B$U$@?     @ @OB?BUD !       O A+	_:RlIz)BD	     @ B"VB@@B	      "HD/ T@EPB*U       _I$ID&:JoI&I.D$H      " G UCA)f     @ G/ UBO"      #D/$IT DB)a      #DPB:IUܪ*DPp!E      'I"{̀WҤ&HP B	!      !IH"QLTIA6      @$A?	t:	lKQ*B]JA     "B A=IWjE֊BJJh     " _"|QH 0@      ! B/Dϊ9jDrQ)DbH      'H B_~V I A#I	     !DAU$D!B E     ! C! 8niAb3B
D$I      !B@x*WԤIP%BH	d       @ODUB A"|      <O$IT HQ/@D     @ @OBHT`2X!~       @Oʂ$UDB        'H/@ VH_	     @ @O"̀ WUHU"FT      '@ B  WFH""DD      'A@JLT _A6	      #D/B$IVJ(Q/@D      '@$ Q
G! E     !OOʂ TF!B?B      #D Ђ? U IPBH*     !_ȄȢ}LUWG(QJ"D"B     @ @OЂV H@!,       T$F`  y*U$IT%R      'HUJG?       @OȂdT @ 	     "HDB$(T
J(AB	     'A`A}T BOA	      #D/$IT @(        O!D}:mUK"_D     ! BxQD"8iM@
"     @ OD U
G! E      'IH"zL)VRHh%V       @@q/D?:nDB_B
        @/"L * #0A      O!O!	8k-FV!(B!	B      AAU2	  D        !OOʂT BG!B      ! B<I>$#DlSHI>E$H
"       @O$kU$@
$      'JPB  WCA!
     @ @O  SG(        @O̢)VFH""DD     !@D@Ob %VTI=BID`     !B@JVH B@	      O"DH/ΡVK(DJO!     ! CBK"TA !*QE      </IO @WGA%6	     @ @OB? UDB       !B 9$jID
"       @@?AUD A	     ! CARIjE&%DC     H"E Ԃ)^UBO
$      #D O߂ UGA      #DB? R"FEH D     @HQG  ?* #0A       DG/ T
JB?B      GD9BjEHD?B       @BoB$kU$DA	      @@	8j	KD      @$ 	$IoJQ$BTCJ	!     !OOȂ"DTBO
$     @ @GȂ
T$D!B%      '@ ųUVJN
      A C)N
"	?T&8C     "$GP"2LK U
DB       C!O%I8k	GQ(D$I      'D \*TO)BR       !A 
N%R0BG
$       G/  SB@        BHI9hAO!Bf       D	b"* #0A     @! G/ T2jBABD(      #@IU
DB       !B OȂ>DT IH%"JD)     @ @GB?DUJ@        O|!$O	*;lJ2a-BjH@      AAU2	 ?B!!     % JxOBU$JDD      #D O߂!BT JP)BR      @!@D@Ob *VTIP=BH	d     @ @GȂ
T @ABDD(       B(DJS)NVK)DH!D     D"HB ITB@     "D L/UTQ!B      #@B? WިA"D!      '@0_%LIWVDQED       G	B*jE/I"B      G/ UCA)f     !B  "VEPB*       'H/I~VHO!*2C     ( HO$UJ@ 	      'ABTBE(Q%"D      @@PA/$Hb;<hGQ)DR       !<OHBz*WҤ&JH-Bj     @ @OI(T
KA>D      !!@@_~ DB	E"      'B@ق UD !~       AGȈ ~@ * #0A     !OO
"R@ B      !B T BO*BJE        @ODQ4@Ȉ     @ @OO̀"T B !J	       HQDIoB*Q*!	E      #D@(_U|"D@"RD
     @ @O?"(WB@      'H U@ A	       @O T@"$      @ @O?QW4BP"      xO /B%T @!B$     "D$O'Ȃ:$hIO
$       #DB?TBO	"D       @AGEAA
B$      'HOEwV(RKA"E      @ @O_B?V@A       @ A "OV@BOA%      #D?HUJQ*@D     ! G$U@       @G UAHԄ0@      B/H52bUO
"$DUD      UI4(   * #0A      @ A+	m	K!*Br
     @ G>V~G!       @ AkAJQ)a       G!OA8 hO%"JD       @@@D9"jDJ"$	'     @'|HH"UL WFH""DD     "_OBUD |        ODVBK!(B?B     ! _WBH"D       "|D_LJUDApA       <O_̤LVJ *ERC       zH!_ǈ	D%$|D#JD      #DB?  SޠIHQ%"DRB       @G WO)BR      </IO" UAD      #D/B̀UDB E      "HD/  U
D
          ?@ `H8     @ @O  WKQ/@D      ^A	DO5fT&A%$RJ      |!ROdo
!JI	T&8C     <OD(DVH9āH?ā      '@ B  WIH""DD     " _V$H!"B 
     #D/QUDE?"      'H ̪HVȥH (        GU"WE
A     " (CI/"B* #0A     !OOUJG!? E     $@E/BU|EBP        @A@OBAUD (BP?B     !B@?TGB       @ ?TTA@BJD(       G/B?IUB!$D     |"$Gς~0pqQR)""      @ @OȂ>"UG!$      #@ U
G!A	     @! OOA@W"I !        @@ UBO
$          ?@H8     @ _߂Q> WKQ/@D     !OU$RAABD(        @O U
G!?A	      'A@"JL U
D!B
"	     H"E8ւ(Q T EPB*      ! G$UOA	 D       G/ UG$D      _ VHI $D      @ @OB<@U"D@ B	       H@/?ˈ9 jF,Dh"     !Ao{̔VRBO
$      'AԢJLU
DB      @ @O?DWGA
       K
U|"GR      'B Ȃ{" S
@ B        O/D	:l!K/RE?I     !R?H" Lp     " B<I }D8
oA&IqD"	D     }A/	
U$ I @      ! D|!$Oʄ	/Do@"a8BHC      '@B?IT"@ 
     " DUE8*oHQ
$*WB      @$A?	4IoI*Q.BLi!     @!GO"V&L@!80      $DOȂ?Q"D@"       H
OɄ9>jDA!B	       #A O)LRUD *J     "D$Y:oJ>"TDb     @HB""$* #0A     @ @O/@DVO!_ F@       @G/WBA !*"QE        O!?IUoHfY1rDdI      |@#B"-O+~* #0A     !B A9ZmUB:QD<ɑ!       G/ U$RD?      @@@!ĄmHB%D(      " D:/H;jEDBRJC     GO߂!
~HAT&8C     ! _RJWGA!~      #D Ђ? V@ 	f     !_OςUBO      @ @OO̈}V"J(Q/@D       @ODUVp!      !D	$E%/* #0A      !<OH"{̔)WҤ>JH-"jD"      N (ʉ_:m}J"2I$	     !$BH!/D)HjDq%V     @ @OB$UT I/AD     ! BxO
^jEz"DD      @ 9j	G!$H       @O$VJJA     $HEFESJD%H D`      HKjEI)d
?       #DB? UDB?"      '@ UDB?"        ODU|EB(_      #DB?DUBA"$0       @@̀VL(d     "xBP_)8 hAO
$      @ @OReP@!B$      #DB?U$A :	     $$D$UBO
$     !B!OIY:oB!*BD"I      `p   ' C$      @Ok UO 
      "HB""DTB@       'A@B* UO
$      @ @O̔)WJH)E4G       Ox%/D8n'AA"80     @ @OI$VHIUBF      @ A "OV J(B!      'H BH VVJQ.@       #B  U
G?     !OOȂV"fJ""DD     " _VA 
"
     @! G/ UG*UD     !OT@
$      !B< ҊDjE~!b"IH     'B ߂QT @     $ OxOBT BG        HQD)iOQT!E       G	J9*jD!     ! G$S"G"     " OVHI  "
       OQ>D	B:o@?      @! O/Bb"VA !R"FB|     !OOς>DWD       'A@JLT JDAA	       @OB U
EЊB       #@"5T @ B        _|U_UIE<Qh_A:f     /@@zVPI@A$yDa!      '@B U$z@ *     !(OH2WҤIP$ID     !GDU"D@T)      #D Ђ? R@IP&1      AƉT?"D|B!>A     P$EPT @A     !B/;lUH""(D     'B *TRG?      #D UDB?"     'H ߄	laO:(BB      O*cU@ *     !B$I<*8iUJ*r$	?       'IH UJG?     @ @OB?*UU&GB*      " GxOB U*GЈB"
      O*cU@A	     $'PBHTTƧH!
      O!䒉);lO*Q&Bx)a     ! GB*UT_B%D        JDR A	U"I     8'Aǂx PƮrG8R       @G!U~@ 	D      "HBʂ$UI	 
      'A@"JL(WFH""DD     #A Ȃ.8T DB.A     $Ox@LIV&KȔ)"fD      'IH"{̀}V"H/@D     <'DOIUJDB$      OT@ B       D@  ?@H8      @@QDA5D$Q@      #@"5T @ B      <O" 	G|!UBA	     "B A {䔉8
oA*QB"E     $!POς> U"D@      "HB""DTBO
$     !OO{̔)WޤIH%"D
"      'A 
L%T IHQ7bJD      /HBBA}WH  "       #@B?UWFO:UD       _QO}$BjURDBE"I!     ?Q A"%QJ$"Q *!@      'A@" UD       @O$UFOBTD<     $"HJBUL뜒W"DP(ID      'A ϴUĠ@!
2c     !D "$N PB`BD       N@*	_m}J2"GĈ&      @DT=8 oH""Ĉ      I  P88T&8C     ("#_?D~(!T&8C      #B  UJG      !@ "ULWG!       #@OU
G!A	     %TKpOBDLT B A!D      "(GH$TU(I T)     !OOς UJG!A	      'B O1SUD !~      '@B?TO     @'|JHdUDB?"      ETq$ODDH 9jCH"DE     @#DB?AT JB!       O /~DwmEK1*"HD      '@?AP@ B       N(	m%N(RDD     !$KP߭""T OD(      "E!	;lUOQ>BDa     !B(I>;lSOQ~#HI      @Eu_*]Uj@	DI     !B Ȃ> WޤIH%"JD)     !D@B?IP @ B?A      'IH"{̀}VJ((@D       G!O";hOzQ{R     " Dx+ϐȈ:ih^Z1 2
     $ EUD@"      "D{̔)WޠBO
$      '@ B?IT DB? 	      @_?DE;hG!        '@ B.UU@ *	     'JPB V H RR      $
 %h H8     !D!"䌉9
iOQB$UQ      "xDWIP6F%     !B!*OX!:$i?BƖ)$TI     ! G$UOx%"ND      'JP  W
OBaQ      /Ix"zNP@@      !BQ~$	;lIO~B!B     'B Ȃ$UJG!       GQ $;hA"q	$H     @ @GO UDR=       B /
IUBO)"_D     P$EPT @
$      #H d VK/?B      #@"5T D!$I      AƉTh" _@|%S     ! MQ"mDh@*Q9	      "HB""DTG!$     !#Do^?)!$ H8     D$HDҜU(DhQ"       @A$GR$ x@T&8C      @!%:?l	OTBq     !B(__I~oA"A|I$I$I     !B D o@$
?        DD
AjEV(P@      @A@ao U:ro@B?A     'IH(WҤOP.D1     " G<)H_}$P;m_Jʟ*"U䨉b      'A@" UDB?"     $!@((OE=D* #0A      #EP?TG?       @A@OB_L  UܪEPU	      @@O kDB.A     D PH UDEBP      !O*Q"OBqD%      _Ċ	_UKk@RT$JJ     'B ª5TT*M 
BQD<     !O V ~AaEA      '@ B.UU@  I	1       C_cETBO
$      @ Dw)5TeEҐ_I	`     !OA?@D ;hBj$ɨ      " D&/舑9>oSDQ:B$j       @O hAO? *      @_?7hOA     !B KHOlOVRV     #JPȂDTCA?A	     $DOULUVNOQ?QD      @ );jO DB     'BdUBG?	     D%KB]̈VD
Kq*B]Ĉ       @OȂ̀>VDH q*]Ā	       O!"/䈉:nH*nĈ     @ @OB)L UO(      $ D@zI:mJ
*E       @Oϐ? ;lG2"i0     'J ~T EPB*       >O	O	8 k@ B?J}      #@"5T @B*U      UI4(   BY$B     ?Q(IDT/Q,!#     /D Ђ?BQ*WA?
b     @ @OReSxBG!D       Ox%/)DH9oTB?D      'H@)/Ą	mJ
("_đ	A     #@?kUBG? U	      @
E	U:kY@!      !D(1*/DQoB
OJ       A<?OI$nSJI$(S)      $OPI(.kB" "       O$/~Dq:mJ*"E       JIH]}nq9$NI     @#D$SDA	     #@O!	!jEQ     B'8H@BRVH BB	      @@@$Ođ	mJJ)"_Ā	"       A8nEE$$G@     "   T>UPLp     #D!ϤI8 oUV}UKQ     !OO;ΔRH$0     #H B?IQTVG!       'I _~VH2EB     #B Ȃ*UDB?"       @|?$	m%K/T=     /D RT(H!*RE
c     'B Ȃ{"T@T=     !_O@"V|KQ*]Ā	      'IH"{̀}VH(_D     "G" )WҤOH)Bj      D@2PLp      '@̔UDB?"     ! BxϨ8jIZ1Y
     $DIȢU_䔊wjC@I        OA>Ԥ@lUKΔ.E
RJ     "D y)OD8(oAhB!~     !O!UE;mUOQ~BD҈e1     /D B*V|I/BD     'T/Ђ WԤOP=BH	d     @ @O/BHVZK*Be      'I@"̀VH/©     $D 8D;h=Nʖ)RDO     @ A B~~VJ U     $OxHLEWJ((_D       O,Ȅ":nI)S$
H       HCAD	'b|Ȉ1Lp     " Bx/Kd8i%OJ,U-	J#     /~R AJE
>hO!?@       '@ULWBNQ*u	     "Dp!$OR:oJ?B U
      @ Ĕ9$iQDBaQ     RJ/>"| T&8C       ^x-%KHk+D"I
     "B y EPIoHy"}	g     !B9DToB>I*"D     !OO?HU DT)      'HT EPT=      O=ȨjMV5+?     !@D؉oDu;i	D      !OAτ9mUN?DDU       O$k9h@URUKU     $OxJLVR_A6	     !HBB)4kB
BsH	!      %B
$h@)Lp     !\x!TR$=	j?_!UbyKH     %TKpOBDLTC       @OϪwD;iOAbR     "_ЪO7hWҠ~BI
     'B ?IV&G`B_đ	     $ _/DU"_!?R     $OxDLVVKQ/ND     !@D؉oDu;i	E	`     !E(y5RJkD"B	f     "GO߂!W*Np9ZB     "'B@DUD (nĔ;     $E(8 oI$yDQ     'B "{(HUBO$     $OxJLHU"O"      A ?B;iKCּ/RT=H1     !O9j!G Ds     "|#꒤Q?>E!C	
       O%/B:_oiDz}U
       OxJLVPIH)"[g     %(O|!=JQjG DB     ! O r~WTT&8C     "HB /"	:lO?ȩ)     $OxUBG     'IH 	d:OoJʗQ*]D
*     'J<$/{I kDB?I     'B "{̔V"J""ND     $OBRLUVFKQOF~     'H"/UKUoDB"IRB     !D 1	8neCB!}Ȣ     #@@!P	IkB>I*}"K      @O!ʪiOAbR     "|#꒤Q""DC	
     '@B8 nUV I	U     "OI>LDOgZ&y(B|Ģ          B!D   
 " `       A!
 A@A	       'PI!

 @Q@( A      @$$H !BD!@       @@(? hD$H!     ">
$H>B""($@      @Q (JQ"H  	@"HA     ">
I$$B (@       @@(@Q%J BR(QA       @D$@?B 	BQ A       BH$2P$"HIH!        @@C!\ AB!       @ ">	$ AADH!       !B$2PIT"H$Ƞ      B D@!D$I $A!@     @ ABH   B"HA      @@T*D*U!TEz A     @ #(PH   B"HA      $@K" D B$Ȉ     @A?**#*R(A     B!>Hd!B
"(L      @@#HGH>  @AA      CC/D$ pQD!     B H@`#$"("QBȂ!       @# P> #A!B      A"((Hz!(CDHA     " DC$'Ј>D BDH@     @QH  QDA      !@D$*D  DB"QA     @ #(WH  QB<A!      CC/Ѐ?   QD(!       @D03B!D$Ȑ       A)0?   QD(!     " DC$P"! F$      !$BH  "QJHCA      AC?%I!IDa      AD?tT%B?"芥*R
(A      ACUQ*  @<A!      C$$ ~!D$H!       A$/Ј?!T	GҀ(A      PA DJ"TOR(QYA     " (CD/D PER
A      C(P ")KҐ(QAA      A#*.U!@ETa       !@/P!(QGHA      @A/?@ UJQA     " DC!$!AO􂈈      " DC!$!AGxA      !B 20@U"UK A      AE$" ^!THB        C#?РI$"QJHCA       @@A/HH A!C򄈏A      <@@+'H@!BD A      @ $H !B	GHQ@A     !@ /А?$  D"H!A      CI'*uȈ""]JUB1      R@SD$PD "U"ܣB"HQDA      (@
'ȈH  DBC2Q    " P$!/D*@A)Q      @P7Ѐ w!TB"HQDA       AT$H}!TAQA       AT/"(!AOA     C$?$B*!; R*A     ( A4K)D;U#B"(Q@A     w @t**(!F2Q?     " DCt*	?"!C򄈏A         ~ " D  ?         ~ " D      @""D	 $@H">P       G ? "DA	 ` p       @  @ @N!A$~      @ _	$H!"r
 b       G ?  " G         G ?"DQ	$ ` p        +  ? " G      " D	ߒ!$BH	#t ?      #D   $ DG!"@       @@P@"G 
        G !:rD	<       G %H_Ў!*B      ~$IJ"$EJ"9"BD?      xG?(QIG       " D 	  _HP©
%QA      " D 	  _HX©*URA     ?D Aa
I"D$H'      #@ (QDX?"      D^	y D?	
     ?@ 1A5TI$'H/       O ?" Aw%KJ          B            @ 
D"	 ( @ 8      B!B* B!         {#d!(@ A@       ;e* $@HBB      ?!TTEQ%dTBD      "G#e)" B
bC       {d!(!@BAA      !Ch2B!@      !C߈B2$ B          CGI"e%/ BAA        CABGQ" e(  B!A        C	Ǥ"d!+ A       !@Ad)"D!D?@B      /" e)("PI!"D*@        CǪU"eU*%PJD*       A!QQEdPD}`       C#dq)P"I!DDP@      P dE( A$P      C	II4 A          { "G "d(@/A(@         CI"e%-T BAA      ( K?H"Yd("I!"$(@         CI"e(@!EADDP@      !@A"e+!@B	$PD      "><PYI$$D I0@        CA dE(H$EA         C"G	$i4D%ЅADDP(@       @ C  #d( 'H!D @      !@A"e+$OD        @$%$jI7) A?P      / PMQdRP`      "RR¥i2$D @     AG"e%+ A?@     ATRRT@ȅ        H!^"e(@/C
$        CDi55      "~8/Z/ D ( @     !Ј~2 (*P)H          "Ǡ"e(P _AC      @ CAG<@$i2 $@ BA     T
GNS %j#0@'!D$K@      B"e(@/A       G!"~d/" O%$PJ"      A@ "e%+$O AA      @"Ǡ"e* '@*UP     'I z%(k2P.AR%QJ#        "e+$OD?"@      DR& jI2?I         Ҁh3$D      I	?I4$@       ȄDP         	#Ȥ H'"          CABGQ " e*%PNUA      @ C)$k3$D?"@        Ҕi3$D?"@      BR%iK6%0a-Q     H B)$kk2-AsP	!     @ A @  0    H2DH	 *$H
 @`      q!B@ =A!b
"      #@ ?~D A@       p!B$Ȁ~ D|D!	E!        B@ ~*DTB@    BI	/ QJ%0S 0@       B~D `I!E       BC Dx!BQ@       BC D !BQ@     B Ha!"E$~>DĊCE
        AD ~~EDB!E     ?xB!Be@
*DTP (`      	$NP~D A<       	$NP~ D A<      A#@~|D@@A         GĈ  ~EQKE"B      A#E$Ԁ?~E@D!E!      !AD D(iAQ5      R|Is ]ҪUR܈       qD(>I$TKB	%"A      A:*UT]Ҫ`U+UF%DQ     x}3$IL?  D@     y"¤O br	     " D@D"D        " D@"?"D A          H@!B           ? "DD A (        ? @ A (         A      |ADZBT)B HE         "# 0     @ !ĈROꠥJI      ("A#`       A>!     @       A> !"B!s      *&>"*,!    B/(B !h8     A 1$N !BH!`>     (?#H!(?x?            @      8A
I"8C" C     8 C8 " C    AD`A	$Ϝ  > @      " D!	$@0x  ~  @@     @"$  > @     @8 :  C      w?U8T"v!  H     "D4k   x~       (Ip"HDy @(P       r"@G|"$tK "H       	9!B8"| yyB A      PpI8"PtC#B!H       9A(9'Hq  C      8AĐ!
p9SĐ C     @pAB?H! tC$H          ?@  _      8Q*8:KȈ C      	8G!~  yB!|        @D0=AT     @t"B
"9" @t!"
$"H     @8A 9 Q C      r"HG s$
H       E¨!
\ <E¨!*bD     ~ ? 0c88"     q#A<	8H q#y	$H       88! `{A"8N      @9!?M	a90 C     x..". |!|%Q      ;ĐC
R:  " C     ( <%HJ=+T)R      p!"o 8*#tQ"%dYH       ; ~ y(DR       9"ǈ8? y	 $B      p#/B!|r#Q%       {)=Ki"T     DIa?Ȇ!!L     %?I<A.BC     r#?A8#p$AH       |"AEQ  @xS?      $=@!C     ~(!	C=Q+PD    BIGRJ. > @     q#)G38$  s!?H       wA_$8  w! H      	8"G  yB/@       <{?)"b$      w G^!s! $      $ÀQ?UpQ$u     s!/G?I!Tu!H      w¨q
H< $O    	$wH* $(>%P     @? A@ A p     @? A@ ADp!    ( 		\      ~ 1B   @        'H/H!CA Q@               @  @            @ D           ?" H@	P            a 4@PX            " D@!PA           !B"D@           $I A$HQ!A          	!"@!IA           A AOA          BR	PQA          ?BR	PQA         ?!HC$iH         ЈB"A           8AƠaG           A_          $*!@pPQ          ?DP}B")_!          ?
 AT8OA         ?" @$ACAA         D @ A         ?@P#@ FA          ?$JB A         ? AIH          ?$ C@          !B8AD         ? AHEAA         H!!@ HaD!!          ?  GHI!!         ? GH!         $@AIIQA            A R          $U @ IR        @h	@"@DADp @       $"B     ? @  h	@@DAL`         D H@2h	@@DAL` @          @!d@$ @       @  B *X	("HH!
( O       B!DA `@$8BA P        B!BHA!"      	 *"Bb    D`        A @$ @      #$H$D A	(! 	 $?      B D "D"#A!$J        '@	!@        @@A  @@      @ ?B")"         "@D		$H AB@        @@A  !CA	     '! B	@	! B 
         
 c @$ @      #$ H 	@	        '@ `@ D! H       '$H$D	"DPA     '$J$D	"DPA      @FAH      $DE	$DD$H"D@B      A B $H!#A
 AI     #$ HD1
R	(" I A%        @@A  !CA	      ?(E(N @      @O ? $H      @@@@ @ "       # @D	 A(         A D  ~@Â $@H      @EDEDDI$D @       !B   @I!1A        'A	A        @O @        ! @@	!@       # A ! B 
       '" DD"! IR @     #$H$D A	  	 $?      A B !B	L#
"     ?    @ }
$        /A	 A        @@I &Y$HDa $@H     #  @  !! B 
        @@A  @@      A B !D  CA!     #@  ADI!'$I(!       @@A DA      @xO"D $#A QH     '" DD	" AB      #H `B(ā H#       _@aDE$@I'     ' A  A     B D@"D_AB      AA A 	 J#1A        @@@?DRR$) $@H     ȁP!H!       H( D$BH?!       @@A P!CA(I	      @@A H !CA	     '"DD	'AA!E       @xO  @D%A"	"      @A  `!#!B  @      @@BQ  '!         @A "D!C
"      A B !!C
"      @A  @"!B A	      "B$%)DB))? @      A B "D!
"
      A B $ /        @@DD
 O       B G@?   ! B H      B D@H  B!B A	     # DD" A(          I@A?	)!"DD
       @	 A
%!B       @xO  @D#A!	      @_ @ACA	       '@     !"@@       '@  H!!@"$        @A   |"#A!$BI       A D   BC	"$DI       @@A DI	PAC	"$DI        'H $ >D! I!$         @@%:*)"TDE) Q       AB (P!C	$DH       @@A I$H'!$H     '! B!B	A       B@D("H`EC"$DH      " K"`B%ND"'2H DP      @@A 8pP"!""$       #!B$D	!B      A C(HE!!
b      @- #1A   @@     ' A'H	" " D        
DI$DH!!B      @DED @      ? ( p@ Ɇ         D@H"(D $C*$dH      @@A HHHP$H@A `       @@A $H @$$H      @*"DH"D        D H@!Ҁ  '!B 	      @ Q =J-T*UQ$I(!
(      O@ Ȉ
"$EȈQ"B        DADH       @x_@I$
HI!$BHE       !" DD!
 	"	A6     !"D$I?I! AB         @@@  C?      #$ H$D%	J	QĠ!B      #$ H"	_	%Ĉ$"HE%       @@BA BD ?       @ D#A D@      #$H$D*U	$P R@        @PAD	HE!B       D $        @@A @!ÅABDe        @@A "ABDEH        @@A 8pPB!""$       #$H$D?A	!B       @- #1A           /A	~		!B? B        $  8"      B OD		dH\!$$@H       /@$ D<I	$"Iǐ! B         @@B @@CB10      A B (@(BKB$(       #  @  	 "IĈ"$(         AB @D$!"B
"      )H HI"4B      @DEDDI$D     'QDaDE$GDI'      @D	 D . ""?     'B`!AQ  # H" @      @@A  $!B A      @@A  $" D@     !" DDA  #!B        #@ a@ D'>H P      '(P$ D@H!!@B%       #H `B*PD)H"P         >D$"H"$      HDI H$В	$HD @     'PDaDEDE$RQI$@@      @@I ?H @A	      D H }(JR)R$IE$T@      A CH1PX0        	 J#1A       @BH H"?      @@A T_A!B	       @	D"E
%#ʄ!B0        @@A 8pP"!/$        B D (P |A  @      @$I	$@ADI$D       A(WQDII'I(B$IB     !"	~$P$K!D	@B      @xO@)RH%!B*D$       OB H
O#Q"
$@      BD H!BC!B!~       @@A  @!     ! XJa)DJE)%JH! B        _Ja)DJE)%'r`I$@@      @_ DHH @P @     # AD*A        B@D(RHL
 JC)^%I      x  @"       @xO"D $#A QHɁ	      @xO  @$A!D	       $   @       ' A	H	 AĀ$      @@BI	@A
       B G( H	$GˈQB $@H       @@@"(D%!"	"      @A  	B#A      BB HD
H#A)BbD      #$H$?@	"I"D%       #$H$	H	IĐ!$BH!@      (@H@?D$$S1$EHA      @@  @      @DI ?Ȉ @G     #H `C(D H" @      @A B	@B DȀ      @@@@ ( HA#!B      BD H/	D!B A      @$RQ@A @      #$H$?D	!@A(`      @? 	 b3,.!@       @@A $I$H/
"      @A	DCH,H       @@H`BÉA"BFHP @      @- #1A   !"BD?         %@      ""D@ ` @I!1A       B D@(PH$AD$JO       @@A' 	       #$H$D 		        @x_ D@@!"D%HP @     '(d 	 " D        @@I? ~D"!"
"     '$DD6 #?       '  @	  #     #$H$ A	"I`(`       B OH(IE!B A	
      @(  G!B A      @@@@	$J%'I"      A B $R*SA!     '(P'I(E$I$I @$      ' A$I	$I!B E       #  @$vH-T	("IȈ	      'PDaDEDE$RQI$@@      B OHA	Ѐ	|E($I       @xO  Ҁ  %"HD? B      @@A _*#"T      BD@	@@        	!0zP)RJI$@I     '(@P!O"
D$!B      @?āH?ȁ"?     / AȔ)
R$H%"HD       A DH_"!B!J       P "! DA(Q     /!@B?JH)
R$8 "@D       @@_$H$
$        @@A OA"       B D H@IP	D! A     #$H$    AA      @DI D	 BC	"$DI       AO
 )        @DI DBABDEH        B GJl'@G"        A GHQPXB A      ?ࠀ>	 J#1A       "$N!h @     'P@a}D_EE%R_I$P@      @@_	 @O	R
D"      @@B@H?H$C?       @@_ !ÅA
$       BD("H҉	$D"D@      @@I H BABDEH        @@B  @@	      @@OH	 @'       ' @@?@	" D       @@_?
BD E       @A  "
B#
"      @@A DH
"DO $	Ha     B D@"D_A	      @@B ?RJ%+Q)DR     '(P$?H:
%)P)"R Ā     #$ H"	D	!@       A B@)H$I'A$"H      A#AD	 	 J#1A      #$ H?@	      '$H$ A	"	pB        DI%[E[$HI!$ A      B D }(JP)RI'I)$K      BD@"D_A!B	      >D$"H#       DQ^cI'     ' B   A      !HH I"$A      '  @ A	"	!        ADHA!A      @O  @G!B A      @?A @? @      @@B   G!B A      @x_ AȼH
$JSA(P(`      @@_A} A        P@A@?JR)R'I%$JH      @_A D!B$II#     BD@?  
"      @@A IT ACA	      B OB	"@DP @      A.N R`     @H!
D@I!1A       A B5 /A$"H       @@A$H$!B
"      CD@WȪU
TJQ
%B	      @@A DH
"HBE       DEUTUEUT^UHA"AB      BPD("	$DS!$EHA      @@B |  OA	      @_HB#AB     K T)T^)H$D@      @@@O  $ 	       #$Q?(@?        @)D#A1B       @@A HIPHJc(`     ' @$  A
       #$H$"	D	@       x"I	D "H! 
       P@A h!ABDDHP @     #$H 	C	xB$       8 HdH\!B$I
       1	( @1      @@B(| @B A      @pO  	 DC B	     BD *YP$ˉ!F$Jo      #$H$D  "AT       D H@S験i
(JSA(B	A     B C @O"%DI        @@O @#P @     '  @ A	 !B      	  H"$A       @@@ODH !#A	"DHI?!     #$H$ 
"$E @$      H *"H?DD     #$H$D?  A      @_HBABDEH        @DI D	 @B A      @OH $B!Q      GHPH@H  A       '(Q?DH  A     / _"$DH
"'ĀF      @xO ($H%  C(       ' A  !B         pDETDE^UIA)@B     #$ H 	@	PPAH0      CL 3 @        AB( ' D@     BH(D	G!B A      ORHiQ BI#	$HD
$      @@@OBH$  C       B G_!R"!B?      # G D? 
# A6      @@A I	$TQGA	     BD QJ*BB!B      'PJaEFP_EE%R_IE$P@      B G"	"DGDI      @xO ("H%@ !!
b      @@OHE'IHB	     #H `B(ā D!@@     #$H$ A	"		"$F     BDH PHJ	D!D       @@B  @ABDEP @     'QDaGLE9%WDI$@@      @@_(Ȉ B D 
      '(P?@H  A      >/R$$DHD$!<BH       #  DDI
II #      ADR"!(!AxG B       @@D$  BKBA0     # E
$(IB	 !H	R(       @@@O@H
 @"     '@A GDE$G$DP@      @@OЂH B#/(        @8]JPJA 
?       .DD!O% P        P "Ј)FSp#$IJ      @ *"@
$       #!B$?!HB? B      !D!~@/D H"P       @DI H?((       AI$@HQ"T"       B D@/BD!B%B       A B H HPBCA	"H      @A D@H @	@@
"      @@@O( H '%	A     BD@?A!C	$DI       @@_?HCAE        @@O !#A	"HD     B_H  BO"D@
      @@A IRAÅA
$        H@H
	D#!
?     'QDa}DEDE}$WRGI$D@@     #H! C$GQI$P@     #$H$  
$EȈ%       B GB		$HD
"      A GHIf#@OB$DP @        ?A) GAP @      PEDEDI%AA      PEQEE^QI}$AA      @
@,P^!
BD(      # I$HHB	 !x	      @O !D @" D@       P)D D@      @@_	DP@        GB(" G!
l      Đ!P~Q"EMWUR&\H"B     '(@P/B $!@!       '!JTD)J 'H	B)     !" G @"IĠ(`       @_G2F!"J      @@@@ (B	 C	       P@*RMK	B"$DI     #@A!EUDE9%W2TI!$ @      @O 	$D!?	       @@_?I$ 
$       'QDaDE_EE%R_IE$@@      8GA *
COA$     #$H"	D!"HD!       @@B  @ A      @_  ABDEP @      GH"RR"D        @vTQ	$TD . ""?     OA (FVL	T$iHB        @@@O@H  BC	*L	       @O @O!B	f     #$OD?  A
        @DE@ WI%D      $$$ID DI$D       H$HU!B$ID     B@C ȈLB?A     B_H?B"!? B     #$H!	RBI II$      #$I$$I ABDd         {$     B D@{"D	JQL"D       @!TA@E^QIE%AA     'QDa}DE%RQI}$P      @@_?HH       #$O$?  AA     ! 	$? @I$      B GpH"
B+!*B"E      @@_?	$AB9f     @( C!B A	
      @@_'! A      @?AD? @      @@A?@$?        āT*D!H$
      ā(D!*H#       P~ ( @ABDEP @      @@@O( H$'%	A     PETDEԕ^UIU%D@B     'RJa)GJE)'JI)$     ')TR%TzE*_'@%%TDG     P@PH+IUCB$D_       A B@)HR%+Q? B     '(Q?DH  !B        @DIH
""@D!"
"      @$@@)R$Q BH!      @'8H$9@	 A$BA      A}@B I%I
      AB H $GBDDH(        @@B | @GB*      @@@ODH
D%K	$Q	       <OIH $ !P @      @@_	Ђ
BC!(
l      @@B  IK%"JD      @x_ (DHI@	       @_"
" @        @_(@H
 IåAJ$      @B@D"	 G"Ȁ       @_ 	G! A      @@B( 	@C	"R$JB |     '(R  AABd        @@A?HD${IJD       $ @N	 @        B O𤨉H$
B(D#	"RJ>       JE)@E{)$D      @@A I	$TAÅA
$      '(P?@H $!D!B$A      @@_? D! A      @A _$	$HG!B?H      AQGN PC     # A?
"
# AE$(         @- #1A )Qb¥IRT     B_H "{	$      `pD  #쀖$	Fa      @?$@_DI$T"       @@_I} PB#"      @
$P @ @B%
Q@     DH  A@@/A
l     B_H@ GH"D        A B@	$!#A<	$ H      @ _? $OB?A     E KTIU%^II%$D"     #H!?C$ 'R!H}        @@@_H	fC!!       @@D$ (BKRA0     DeEUeēUIU&DD       @@D$  D!@      # @$  $EЅABDd(         @@_? D!B$D      @?A DJ	 P"A      @@OAD!B<
       q~!BGB+QxQD$I      #$H$
"'Ȉ?$@      @A O("H"!#A?       <OB($B  ?
"       B*"H?       D(EUG^)H$D@      A$.$"H       A D D	$F#"00     #! A?
H%
0 A
$       B O
RH
"      A_
	 L! A      @$@@At
	KQ*B]JA     ' B?JH)
B$MA      @A@D@H_i 
*TOQ"}DUD     B _$! A      @_?A PP @     #$P@8! * #0A      @@@_HH"
| K$BE
6	     @ _$CD"*S/DTUɐ      @@_IG!       !@#TI/'J(DRB     #$H 		DH/B     #H! BI	!%RQI}$P@      @O!DG"%DI       #$I$$I ĀB)a      #$H$ A 'H%"JE      |	$@_DI%AA      E J@)R	 @I       OQ}(QRHI ($HI     'QG ?#"?"!      B _ D!B$
      B _	D	T'A D@       @A@D@Hh 	GA"      B DHTR
J!
B	      
  "     '~"HD	rH
'%L"E@      #H!?C$ G H       @  *"DH""DD     B _	$HD
"      @_ 	GA$BI      B D@"H	BEBH
j      D O(P O	?A$H      @@ DHIBT/+$xD       @$UH.?#"?     B _  ?
"     (BH^	IS$y$HA     '(A?		I?        @@_I @$P@       )D }@ B      D HHHPP	 \"$DH"     ')HR=  !  B 
        xA#)_#!B	     #H"`B+D/!$@      @ ЈU*rDO
$        @_ " D! A      @_H	 	G! A     @ )@I      81_҄%D"$DH"      @@_?KD      A OH  D        @@B($""R      @HQ(  O%"JD)     ' B?I(E<I$I$I$      ' B I@	 !       B"	$UL"D'     ' I$
 	"	! E       #$H$ 	Ă	"	!        B D (_B	GB*U     A **HQ>EDUD      @ ]B|J#!
?      B<DH(#DRHI>E$H
"     BD( B+"D8     'ȑF	'ĩ'ȑ"D'      @_)E	@@
"      @ITHDz
JS)B^%JJ     B_H!~/AB0D@      #$H$ A $?      DHN*(dR@$ D@      @@A ȀO ""      @?$ A @      @HQ( @ DCBU
"      !$I	$@_DI%R@A     '@?B	 $G$D@@     #$O?B D      B D@"IW%׊BJJh      @_(A(HO
"     #$OD?	A     'DA
!DEDE$G!!A      #$O$?@(IA      @x_ 
"H      CH  hAc3B
D$I       C\ D%)H'S(D$H     p !K
$A	 	 J#1A      AB@	J& D@     '!@B?JH) A     #$OD?  #("HD%        CH c@D"?      @-"B      <OIH  @"B%
6      @ E*RH/DD     A @ 	$IE3A		     B _? GAA      B OH?A @N˅
$P@      @@_?O)B?A      @_?A HBI     '( W)$RHI
%@/      BE($Hϒ	DsQ)DbH      @@@_!~ $ D@      L8P(qȀ @     HAII( H?DD      H)$ @	 "      '(P$?@!!H       ( HQ*_D      AOH Ѐ GB
$     B_(QTB'I*$ HB      @@OH? D!B$D      @HQ?
F3        (ID^-OU+QBPJ	!     B D %$J䀉/S,BT*EA      @DE@*
_A2      @DE ?'	!RPI      ')R$=DJ%05RD       ')R$${Ȁ $%H B      #"DD.HT
T!Q)D      GA`(!
A#"H     '!@RD
	 	"	B        D IBT#!B       @@@__ȄHC("PE      '(@Q/PHA
%%@I"&        @BO H#      @@O '	B1a     A@@ 
*G*( P     BD@@  T)      GH ?Q4 P"$       !@"BH8 #D    @       8GA *TJ
$       @@O	 @%"JD      @@_?HH!
$P @     B _D  A      @_(A%#AB(5I      BEITd DI$D     B _?" D"@     #"DD6 #Đ!D      'P  B	/ࠄ ! @@     AB@?"B      @ \@QK!*Br
      BD@ D	GB*U      @A$@PQU *TJ*UDA     #I?C) RUIU$       P Ј*"H! !J      JU }O+Q%BL     '!@B?JH  A
$      B(_H	B+Q*B#HI      B OH  '*UE 
       <OIH" GD     @ G RHa %$JH     B _@!C	#DI     '(_"$"
B!!3      I\@WȪ
*TNQ*Q	D      @I }0#TROI!$DI
"      @DI H?  D!	      @@_?hK+	        @BYp(DH
"@
     !D!~@/D H   @      @A OH?A	@!?
"     !,PP=DJ $)P$UQ      @@@OIH!H$B!~      '(W"L(EY%+Ԓ)D$       @@_?@GÁ!?DI	Q @      @@_PD	@A"$P@     'BaD!{!$R)I) !      #H!?C {!$Rɭ P     /$ HD%$sB) A     #$ K?U	dBD       B _(DH
BAAB'HI      )}PU_5TB
"       @_~ ""Ĉ     @^ QDIB)#5bR)"R       "BA      B H 8 AJD       @@B$҂	GP
~       @$@@AIKkQ$BT'J!     /  OD  %H""DD       @@_?A	DB"      @_?A H(_D     #H!?C! TCH"$      B G_ D#RH!A     AB@!	JNs!! B     D H@B$Bk*(BR)"R      @DI	  D      UHIEQ	 J#1A      Q c@@$*     DNH'Ђ
$HO
$       #$O$D D	#B E       ' O$D$y  	ǐ!B<        !A( @       >" $B@+Hq "@D       I"ODI$E4EDIDR(L       @_?AAKQ)a     D OxHH@OD! >     GHPH_H  B        '(R$/i$
~$ $@      @_$H	AAQ)a      @|_ (H%	@@DD       @A OH?A@"#!""        @_
 H'!$H     PB_ !DG!B$K       !AHI*$TD(Q      #"GD!'H	B)     B_H $HI'I+RddI     B _ 	  @	     #$ K?U	d "HD!       @@A D(
"<HCA"T%(JR      I RxJ1@ O%"JD       *T)( @O
$      DD D}訁)R1(SBR% A      @_H| $#A "      P9R-HIAT)  @     OA@)T"+T!EDA     D@HDDD*+TD"L      @@@O(?@D$"_ĠJ@     '(_"$I"IĐ       B G$rC('*
T$U      EP_H* D@B$I        @O
 	G!$H     @@@ I /)D	%TP      B OJIPXA3"p       DJEEQIE%AA      DDE}DQIE%AA       P
I*F""DD      BD IGQB$	!      @@A&IK1%"QDɉ      A~+>O!$BH	"       @@A D(q
I㔑%B
(       @*@ڒJ*#@)PJ>       @@@O%/Ą	     B ^;D D#A%$BI        OPBH	
 K/RE?I      @_ DAAQ)a     ADDUI$DEA      !!@g
@I#쀖$	Fa      B OB	
"H? $I     OA@%(JH  BDE(@        @ Pw)@SX)E
A       DDH ҈ '_Ą
     HI I ?I$ I       @@_Ȑ(HX!
$P @      AJJ Dq+RÁ       B OpUHQB	z@I	Q @      (JE)RIj%0DG      @!$)HG       xU@RT
?       *"@     OPT)uR(3,B2%      $H! P)PDq%V     GH?@&#TUS"$E@       @#ABB
		 J#1A       |!$@J/D@#a8BHC     '|"Eq
*'U¨E_       @_*I	@O)"_D      H$  B       A@_Ȕ
R@B?A     D] )E	
I+QB"E      @A O(/Hb"'"R$JB |     H W袑R
 K/PE?A      @?DP+B_A!"T      '( S$DH 
%UʨQ.@      @DE@HH!
$P @     B ^;D@@     'BJ`D""?"       OA('	"      @!0)@?     B _ '?
"      CH ?B /JD$ D     B _$ D       @! $*HC!BD      ;D@_A      H$( @_?      ||!B	%  AAI	      A~+HOA~$$HG       HJHф	>DA!B	       @{H*Jq*j/       @ eQUSB*A
     DOH? 
RO      @OA  '! D     B _(J+A?"      @@@__ȄHC%D(       '(_"$  $       @DEJE)JI$DR     B_ HQY
B!*BD"I      O>B@	?(/S¨!
BELA       @OD@ 	D        @HQ@%
Q @     BJ ArIB+Q*B"I!      @?%DR       B<_H}H
A'IqD"	D      } "_K}""DHB     ' I 	 #Q*D        @@_UHIU TDQ
"     '!RJH
b  B       @H_ԈDC"D      '(_!J*
$!      B _?  C;BIQ@     @HB""$	 J#1A      ')HR? 	$"IĐQ*$         IA/Ѐ!~
d$I*!      @HQ ADB#Q"     @@56+I$BO	"L     B_ U
B+Q*B"E       B O	H	TC?D      A  TE!@A"%
Q @      /DO+"UDʊ"     ')HR%$Q4 P"$        @HQ O!"zIh     BD D$
 /K,UE)EA     BD D%	R2S": A      @_  @     Q G?H("Bi  @     BU Y
TNQ*BTa     'BA!@j'QI$@     @B@Ob		DC $I      $GPBH TH"
	J"      A?PH(@DMS3B
$       @ Ј*"@DIB|      D  D"T@       B OHU	TES *J      ODH 
"$E @$     @B@OD	DI       xOI *
D!$I      @|_ ('	5R@L       @GA 
\H""uĪU"     '"T=1FQ #! A        "*"D! A      @A@D`8  /{%")D       O R(LHDFK)"RD       @9$@ IU%T     ')H^!JHs ' AA       A {(
A+QB"E     B _	DO? "     'R{)GDE}$'DI)%P@     'R{)G_E$DI}$P@     '!@B?JH	$!Q
$       @@_QHAD$Q @     A ETNE?#"?      B _(JI B'BI      '(_"$"D!  A       I0RP D D@      @DE@D	DCÁ!DI	 `     'RJa@/ऄK	 @       'B)G ?#"?'        <I0ROI$$HJ     # O $? B        @GI  '! D      @@D  "B     8B%H=$TH"D%@     #$H")_	!HD!        @ bЈ) V$DH"     E_ )	TOQ>BDa     '(UT'$DH A RDB$     GT(HG       !A!	VYI /?@D
      @@_ɐO{AUE"HD      H__`O;(BB      8GA I)HX!
$P @      @GD@ $$?	     B _JHU D! A      @DE@I	G!UBA	     'Q_a%G_EE%OIQ%     OE(VJH!	P)BZ     @@@$	 "S.QDu     JU }
B+QB	 !      H! 13쀖$	Fa       OHBHA}D! "      @GA  G!$       @ "(L$H     R[D ." ""     B_ IO+Q<BH)      !)+O+Q&Bx) a     A _?R$ B!*      #$OD? #$0      q~I'I+Q QE	 "      +TH""(D     +PH	""(D     #H! @JE)'DI$D @     G@B5 '        '!@^%$JH($EȈ""DD         \$HH	""}ǈ      @BI("|DC"*Bc     BPHJ"
I%J$I/     _D@*TPB       'R{)GDE}$GUI$DP@     'R{)G_EE%R_IE$P@     B ^;D D! A      .xP=@H	$	*J@       OQDH9
 _ D 
       ADP+ _       PE_EUt^UI}$RDA      DT=  H""Ĉ      @@A D(
K/B"	      @?@PE*O!T'     ')HR=
)
R'H=J$@     ! )*R@%       @DE@@) 	@""Ĉ     Q~0+HO~B!B      ')H_?        D NxTIY*>"TDQ"     OA@)T"?D B      A@_(Ȕ @B?"(     D OxHH  HD!*$     
bp!('?A	 J#1A      G@B5P#، 2       AD	$A$TAA     @DJ!	DO "       @@@_H"HO2~D!{I	       @@ao U*r@B?A      DR& HBI       @@B  IK!
QA     @ _TBIR*+?R@(I      IHJ"(@G?I       B _(UH
rTH
"     #%(JT  	"0`      B_pEROQ,UE$I"      @?@PE+ G!       DOH? 
R@!      @$_]u
H/	A"*$QI       A?Ԓđ H _       @OH	 	GB}      HI@
	PE3)D	       @^ H
?OTBq       @@A $(O '"%      H I	DA!B	      B ^;D @$P@      AD*
_Q<BH     ')HR? 
"KIxB        OT Ȋ
*H"M*(      GJP)H  %RR     DEH
A
%U(P@      @	 +DG!"8      @OA "	DB?"      @@_H$ H(_D     DIH	Д	TGQH1      (HK_HR!JB/         BxD$Q6J%     B ^;D @$
?       DFA
 UDC      A ?Д TI+!DIB|     BGX_Q~A#A|I$I$I     '"D$=!  I)`?      DO(?( 8"        q $ҨUDWUS(B!     B DD]H*"T+RZEA      @OD@
TIS%[U)P     '$QDH݅Uv$EؕQ7bDD      'PGAJE"{ %H@     ')HR? A!/? B      _D@ 	_!?⤤I        @_(*R ES P @     H*@D!"
"     H* +D@I      OD@@H Bj$ɨ        @GA  EKI*U     OD ?BE+B?b      GH   DO? D      @_
IU
X@!       @O@ ? G2"i0     G@B5 /%"JD      ARJHES       BD D$IB*(ȟS: A      @OA   @O? *      A  @O?DD      >OIH? @ B?J}     6 )**_˄>"D8      ĄsR%TR      OE D	DC"8      q GQE%J      OT@EA GB*U      @@A @(
RG1_      OD@?@G*U     (CTEH/ȕDA!EA     '!RJH$*!"      B(DH+ $)H"ET         )+O DB      8QqP$^@+Q|BpR!     PJ@{cjD! A     H*!@N˅
$P@       OP"H~%(DB     {)CEqDDI}%AA      % `"_.UD݉&     _D@		D_Ġ      '(_"$ /HI      O$RxyHQ%I'yQDJ%1      NUPQ@
DJ3DD
"     DȢUP𔒪wB@I      |!} (O?@DD       @|@B($K/T=     ')_$D_Ȥ
%@1RAD      @?AAHJ+?<     B _?LB?F      ADP+$Q'B?A     @ ^KI(_)~W<T)$RR     D OxHH 
RIK!R	      H*@	      @? )+G! D      @@@_H_ȑJK)"A     IHJP(Q DB?	        @	 w) O*UE 
       GIP8$	TIG)DR      @A|IT+HHB?I      @_Ȕ
 $KS-"Q 

)       OP RHI
 K?RE_J	     OD ?R('"*RI
c     KRXRPBEJWW)>R$Hz     B$_H	ФiMQ6(YKŀ     DOH?"B#!** `      @!*0*& O/QD     P_Du.
I+Q.BHu     ?P|K +RpQ      B|T SS"J-      @_LC?D       @	?+@O?J}      @@A $H~~% U     D Dx$Ȥ"$KXU#     !(H+{14JQ*"         	 ;_RU˒U      !8@SQʨ[|BQʮ     '(Vd$D}wU$@)$      @@O(
Q+QGE
     OE@	TN?DDU     R[D! D"T@       U଑Ҁ%U{eEP       A"K/H       x=@IUQPAC{        Д)$PDBaQ     )E)A | 	$JA;      ?!	 J_3<*"HD     B _xEPQHy"}	g     B_8HTB?I*"D     |!#R?"N)W0
E       ~B?@@GL9     ?P|K$+<RQ     B D|$#B_/5@     !(H+@5WTJQ*R     B5( _AUE"HD       ETKpHHDQB ?@     @ ]T/B5](֝'Z-hRRB     @ _L 	 Q((DTTR     	 D 
=ԪURDU     OD@
RJ(_ U      {){D#      HB_d	HGA?Ȃ      @T Q$|^URUKU     ')HJT%$?I	$# A      H @Q)EEB.I	!     @@A@DDh U.?I$RJ     D _(?D$#"?R     ATROQ>B(H!      @O@ *wDOAbR       @ORH	$G)$OP     {)_E^_IU%UA     y UQR+DCBD     B5( |_:"H"     OQDEB|)''B4*Rc      <OIHȔI!%By	jH     PGUPUHU O D     BGH!E+q9Z B     "  UUW      OB@H(yҔ'ǀ)DR     (( I$yD Q     IH^({ȔDCQ?D      
*)R@Q-π?(TE
      P@Y$( D Ē}&      @Q@%UW_D	     A=JPP(DCQ?D      DER&ZIHH     	?UpIT "}􊨥P?     @ _|$|@ *W"}T R     H*!F3IT      % kP+O?Q%;D     (|!=1RQG DB     ! O r~WT#쀖$	Fa     ?Up)T
 *"}(P      (%J"QRuJTH       OR HDPOA.E{(      %Wj> P!SGO       EJ(D)rMT/>E(0     HB_("
O?ȩ)     " jЀDB?I     OR$|HwB)'J)R#         	  URU˺%     @ _|$|@ ""}#P     G@B5'${>U$D&     I_U_IU)?@     J<^({Q DB?I     OD@JH)DOQ/DDU$      @OI 	ҪOAbR      DDQи<'$(u   "?@      DDIȨ,wt@I]Cp*I       ?@@H	||"'RUYY     ޠ$)EWHwJ T
     BU tU$W?>E)QH     ?9$0Ih_/>(GЅ     BUtTDW?Ԁ>EQJ     BEн|du] )B+b? H}        A"HB  " `     $$`       A"H!@ A0      "D!D8 @ B$p        OBH  @@AB(@        H"H) 
" B      @TEadDAJ!$"      BQIE)bD!DD!`        $dPA!D@        GBH  @@AB      ?     " " 0       @@BH  @@AB       "D!D8 CA         ? l8 " DA D`      O DH? ABD(P        @@R&YI$"hDIR(P?           ?  " DA D`     @A?Uh dAAJ$     " """D   " DA D`       @ BB@
  D`      @U%ddI$DJI%% `       #@@
I!$DIIb(P%@       !  	""E	 @     ! B@E$II@ B!D"PH@      @@@ALB`P`@ D@( p      'B E"K"D!HBP!        @@ "  " 0     @ @@H"HD AAAEAC     @ A !HD AAAEAA      !B E ԀH!A!BB"A     AYDdD
@&@"      @ A (JHH  ABHAA        GAH4"DHAB@       @A@ D!B!DBHBA      8G
?QHD"PDHQEBA      "DA	 , 0 " DA D`     @ A J(RI(@!@BDQ!B       @@BH  @@_B@       @@H8!PDQB@       @@EJKTHȐ$ H@@BA0A     " B@A"$HH <O@A@     @ A ń	H$ BEQ"B      A @ |H" DAHQ(P        @@B$IH$#@AB(P       CA  " DA D`      8G
 Ȉ" DAHQBB       ?   q " DA D`     @"J%(>B""($@       "D!D8@! Â	hB      @ A DH @'A	BD@      @ B
A" EAIPH?@      @ @@H0P AB"D@         G%J H"GH"@        GDIU%gdI$GJ$!         O
HH<"@DIR$        P@_H8!PDQB@        OE@=JH("PGIB@
@      OD!Tdd GJA%A     ! B@IKIH'BIDQB     P A  H~D"DIBaE@     ! C
$KH"HDIBR(P?         @@*@ HD!@CDH(P      @ B
I	 @AHJ@      @EIY%D DJI%%        @@
HB  @B"H(        #D P?AH"GHP       B! ?@)AJD     ! G%JEH#DIBQ(P?       #D*/TRȥJ"EJRP(PB       _BA	P@ C "$Da        ? * p       @A EPK  "DH"PH@      '@
ԈR$J)X`(@P       @@RK$IH$'@BEAA     @ A%XJH(&A@@@       @@CH"DH"PH@     @ @@ 
H @@AB       " D 
P H|! BGH @@           C  $$`      H    JJ@        OBH~%RD"HH?@B     @ _H|HI @DI"b(P(@         G%PK AH"@DH      #D%PK H(P AADI(P        GE)JH/D!HBP!B      xORK*H @@AB(@       8GR$HH  @BE"R(P(@       "B 
 H  #@@@        #@ C	!I #@AB      @ @@@AI!AABB"A       @A *UHT"EQJUH*      ! DH_Ʉ"D!HBPJ@       @A@EJ@TH  @GAB       B	$B S  $$`       D$HPP * p     !B H  @OAB@     @A*T	$D0A  HH@     ! B@bDH8"EQLQD@      "@DRDI! BADQ(P     ?@  " " 0            I)$        GE%JI"DIBPAB     ! B@J$H)$BADQ("P     ( H@I " DAH\P       @G
   @GAB       #DW T@ȽJ"E)KP(PB      ( H "dUPȡ(I)TA     @B ")DRAQA"EHA        @@BT!H DCXBA1A     !B E_"HD'@DBHH     ! CE
HP$WHBP~@       @A@EPK@TH  #DH"PH@       @@RK$IH"H@ABBH        '@  AH"GH"@         X*HE        !B EcH%R!DBH"@D      'H*DT"$I)TRp(@P     @ _P?J"DOPHE@      "D!D9 ?      @ @O@H @ OBD(P      @ A H$HR"JAQBB!@     @ GЂEEH@$RG@H
@      #DR?AH"GIR       '@_ AH$"HDJ"EAA      A 
5Q  OA)"P      !(DPű
TTȇ  @OAB@       @A@EJ@T>H  '@BH       A@_H @AABHAA     # BD$B)(@  * p      #D%"DH$PA@N@      @ A	2$Ъ!UD 	B"     H@%AD0D@( p      @EJP 'TI"SH%@      xG %TK H @OAB(@       'H`Ԁ}%J)Wh@P      D " D@( p     ( HOB?IH"HDORHI@      #@ JIIHI #@AB      !OE@?H)AB"@H
@       NE!O%J!IPP      @ @OJ? H ! BADQ("P      ! C)HJ!DH_耐
@          `  (  	B"     @ @G%PK?AH"@DHP`      NE%K%PJIPP       'A JDHX0$PAE"R(D(@      @ CEU6I @CA@     K HD%@D3      'IE
XT"$I	RdHIDp       A %RKHD%B!DBH>@D      H$, D@( p     @ $JU	D" DA D`       @GB$H"E)RRHJA     ? C H	          "@DRDI   GH"PH@      !B%O ȁ#D	H_PB      D
D*T!gdADJ%`B      "'!A?" DA D`      G  ? I"IH        #DPK? H  @@_B@     $ H@B	|D  D@( p     @ B % T"HB!F!RB
bC     !B@JH #AERD@       G?Dx$!HA  	B"     ?  `y=%Dy(P HD@      'A _!I   GH"PH@      'H*Ԉ1r%TLQb(@P      !B%HK?H  #D	HP(P       @A@EJDT>H @GH"PH@     @ A%BOȑ""DDIR(PO     ! CE
IH$"HOBEAC      !|J*BT!&IIQ`(@P      #D% @H"E)JRg@Q@      ?@A * 	"!"     @ @GP I   GH"PH@      AAƅTH	 " DA D`    D~?2ILh	D&@4      #D%_ AH "$GQHQPd     'HbRT"DOPH@     @ @O_ H  @A_B(@      !B  "DOPH@     @ @OHUI  @OAB@      @ʨJ*¨
* $$`        @@*J"H !@AB       E#DE(
         !$(D* p     @ @OPK w)R&RiDQP     	 " 0 B"$Da     ! D EJTBID @BThQQ@       O DVk $~G~%	$D      'IH*{Ԕ)R'IIRe(JQTS     @ @OH #DO@H
@     !OEJH$"E1L"PHE@      GBYD%~G%J%%%		`B      UHIEQ A "H       A A!6R%J )ER(QHA       @@ H"H@_B@     @ A%@H"G9HP(P      "D!D8
TRDAE@A      @	
GS2"F!"	JA     ! B 
bH#DAHQ@@     @ @OPK #DOPHE@      'HU*Ԉ%TJW`(@P       Px?D)
(! 	B"     @! G%RK?IH! DA_A@     >|D$DH " " 0      'HU*Ԑ%J	To@P      #DPK? H!B!_HBA     D!~Y	D% H J&?       @GJD 'BADQ(P      |	$OȐ!  DA D8       @A@EJDT~HP @BThQQ@      @ @ODI$$HKQe"D      'HBI%HATi(Q?     !OEO>HD'DJBXH      !OEOH$#@_B@       @OHdH '@A_ȄA      xGH"HGA_Ȅ       #DPQK:IȀ"(DQNpE@      'I*{ԀI$$HQ^`BA!      'H_H"HGA@       O!V}R%TK"_I       @O_$kH$#@CJ     @ @O@K? H#DOPH       #DJ?H$@@OB        G% H  @@OB       C!J%iP#GQ(I$I@     C I$>D  	B"      '@ J H $DH_b(DP     !OEJH$"HOAEAA     ? g * p      @@* (P!@@"	@      "HD%_ @#EQJUHU@     !HB$(="JHd!(/!     |Q%(*!DB| $B$HH      'A%?H ! CJ"RB@      '@_*UHT"X@_EAA      @$A?)tR	$KQ*E]RA      'A@JT) @@_B      |$OȐ?" " 0     >ECQ " " 0      #DJ?AH  '@H"H        O"E[H/K(J&
O!       @@#O耑~(  )B"      'Hb+ H#DOPHE@     H"E )^H @OCJ$      @ 8"Q'|B (!	`?       UI4( @ B       #A 
T%H0 @OCJ$     !OEH"HD @OCJ      A JAP!BH	AC     ҁL甒RII $$`     }DQD$O!D HD@      #D%_$IH 'DIQHa@      '@ AH#DH"_Ȁ"@     !B@
IJ&H_`H@A     !A _0RT!0D	E"IR(@        G!_ ( S" GQI%$IJA     $$J@	 XI$0p "$Da      @   @ 	B"     "$GPU+2TK "DOPH@      !B E>HD 'IIRe(JP)      #D%J$II%J)TRo@P      H!T	$D  * p      DEY%DdJ*J'`"      #D E!BH 'JQTiHR        @O
Ԣ)$DHWb(DP      #D% AH '@IS$B?      @ 
A(P 'H	BQ     @ @GP+?@H#TJWJP(C     !OE"HGI" E@       I!J+Q|"E(!E,IP@D        OD$@KT"hH?DB      ʑVhJ"$IUQ"        G*?@H"#TEIVhUP3      #D%$UH#AAJHQP<     ( HO_$H"H@!_H@      #DPK?H @ODIP     @#AP{Rȥ#DOPHA@     ! B P_ (PD"CUR!A      @UACTK?$"" * p       G% H @E"hQQ@       'I EqAH  /Re"JH        @G
 H OTiHR      @ @O H $KTRo@P     /TH}"J"> $B$HH       !B%O ȁ"GH_!@     d. (B(Q "$Da    !Ipи(c>""c      'IH*{Ԁ"$DIIRRh@P        G@!HB  GHP(P      xO %dK%I '@I"RH@      ~ 
J? B"      'H_ H @_@AA      @ 
?IT#AAFUHJP@(      UHIEQ" DA D`      B J(Q" G*UI 
@     @ @O
IH("KDBH>@D      #@ H"GH"_ȑAA     #@IKH"G9HP(P      @@L$Q"GP~@     @'|HH*UTH $DH_b(DP     |%("!DB| $B$HH       #DJ?*HT!PBOB@      'A@UK*H   OAJ        G%1UHT#@@UHPR     @ @OeԔ)$ JIViQ4G      'JPJyIJ  @OB      AD 2>$TD 	B"      'ATJT"DOPH@      @G!(Q"HG	F      (JE
ՄI>$HAWaB       $DOH?J" DAOQ      'AULk)T@ @G@P$A      Hk"EI)i?       "HDU*dK #DOR     B#*#$OP
  D@( p     ?B B"(Y  * p     @ @O%@ID$ OY"_ȠR@      C yVA+Q2"N<!IAA0     @ @OdI$H$IPUHR       ACA(D HH@     @C ? !T8       Ox%*VP&&AA%80C     !OEOH @GA"A      'H JHI %TJURn@      @  䈉$>$9W 	B"     @ B/Ѐ!~RR"ĉ!@      #D P? I'@OIfC      @H?S$O!%zQh     @ @OE
ԔE%J)TRo@P       G!ʠ( W$OxQ<MI%@Q     !@ b+UT  GH"_Ƞ@       Ox!)Jc)jԣ  G!E?AA       !  	"!"      '@@?AH'@OPH@      @A@aw; (Q  Ox%%)I@       O?VDP'B A 	"B      #@J?IU$DOQzUP     !(OH
2$IQ^dIP     !GEHH$#DO@AA      'IH} H"HGA@     'B _*I!PGA@      'A@e+ H#DOB@     "(GH$IT("Id@T)      QB BRb" A     PD R`@> A     #A  D  OPoQP      O_*cH#@!_P*@       OHTTA)}T#D! "      "B! P
'A(QEp"IA!     B ` @J()T&8C     !G
DH" DAOPT)      #@EH"GH"_ȑAA     "@Dq?z("TD )I	@"      @@
VA)U#D$Q@@      'A 
T%I 'IITRwhJP      @DA?I)Q#IxA
BB      #B  H"HGA_Ȅ        @G!H,|@_ID     $HEFESJD$H D@( p     <'DE_II"HDORH@     A "}|Ph_Hp 	B"      '@@K I$/x@!_P*@     'I$y$i<I$I$$I)Q       'IH*{Ԑ$$IIQe(PP     #$OD?  'RHP,AT8     QTRRd@A     %!'R?" " 0       O<I<6$
J	*c)Q      #DJ?I #DOB0      $@"IW	$(HP 	B"      UI4( ?        B "*VRr%TH?
	"F      'IHB?I GA@     
bp!('?A"(DA D`      '@ PK.UH#@!GB*A     !OE$H @OQb_P     !B ŀ
;UH @OCJ$      A^DRV "HB	I      D$HD
Ȏ("DiIRT"      "B B+*'B IRE     !D!"Q
!OQE$UDQ     'B ʪ5IT!(M!AJHQP<      'J JI*$KRm(     ! MQ"V @(Q9A       *
?!#䊒*HP?ԁ`     !O#\q)JD  |?      #@b+5HP!LG@@      <G*R"HRC     @ @GE
 H#DOBR=     @'AP{Rk"GH"_Ƞ@D       O|I$ʶ0R_$ID% 	T)      @A@ao URr'@ E?AA     ( I𠅏I$HAWaB      'JPJ I %H_RRD      '@ J.UH#@O@IA1      #@b+5H '@OUHU@     @AAD	''00 * p      '@ ň I$IISB*A     #@B?kH @GAUA      @G!?(S  EHI*U       @O  @O? *C         CI	"!"      'ATJT$H* GH_     !B A="+T"MتU*DL     'J u~ #EQJUH*      /I.AdMU$D@( p     %TKpEJDT I" @OCJ$      'I _I~%H_rQBă     "HF%H"HA_      "G%D!DURGI@0     ! ??"dHTB> )B"       @|?6)%$K/	T=     $$DRIJ$MRBvIP      @%
֔R %$KP-%Q J)     !N!>JiR%JO)>URȫ      @@@$J֑)%JH)%_ɀ"D     $DIȢUZw"B@	I      @ @O_
!B!GB        O,Ȗ"R&I)S$HK     @ A dK~I~%JW`UE     !OE
?HI #DOPT)       {J >DTCAJ     $OxHTE%J)Vh_P     !Oʄ Q!OA)8P     !O#\q)JD * p     "B y Pi'Hy"}g     "G%D!POEB_Ȅ     !JDVRR%CDBO*@b      '@ J;"I'B!_IH1@a      @A@AJv +U.@ I$RJ     $OxDT%TKURoNP     $E(H(P /I $yI@Q     'DJT$OR|PA      @@JP"_|} QSA      G!6{(PH!B@)$     'IH%*֔P#D@Q?D      'B RK?II*%HORH      Ac/<B@	$P     "HB *")R$O?	ЩB)     !OA=V)S$DOQ/DIUB$     $OJRTU&DKUROR~     'J<$*i #DE?IC     '@B(P .UT IUG     /IA&T~X*%1     "Eнyj](W)Bi(a? I}      |"D	 $ HA A@      D"        W%RJ*U T
 
 $?       A B ! @      @T"EJ:*HR	E	       A  !!O
          "Af      AЀ P       H@I  )*TU@          @ P       5ZQ*UTU
TZ_@$    A"/!$R@N!     @@@A DA @   D`     @@aA$@0` @% D       @@aA$@0`" D@      @@aA$@0c@@y@        @ @B$@08 xDACDz       0  f  
  (`       B BESD!HDP!      "
J )("  D`     B
J!j%      "@ @@@P      H@!_8IP)"b(B      H  B@J(JP)B@
B     H! _~ H@!BB     HJ!?T^H@#J      H@A"BJG~I'THB"      PBN	
 TRJID      P@I"GUC RJI D      A  @ !     9'HQ yDQ$H	EFA      H@%"J< H@!BB      DI$D	H"= HI!$O!     HHy/BH<HH!"BQ     @'I$OI y!$B_	D      A#A JxP!!BO ā     #JOK!"x!E$QSD       ""H$xy*$IT$RJĲ     y'A Py,I$MdI$D     @A'H/@ yU*WʩR(C     H%"_^ yA/C$      !'D$@x!CI%D     (I/AϤ yI "_	D      'I$ϱU yT!A$)QS"D<     @A/Pz%+TRS$K     $BKOE y%RKIOF&       OДy$OI?"D       " 
       A B   $ P0@      " D  @      @      "G" @     "!~"H0!"      @A}ADGD!D"         @B    @        A@&Y	%iD" D?       A A	"!A A         B @!     @       @|EEDQGD!D"       !@B$ @B ?      @ A@
$ ~	B!B 
     y'A	x!}/A !B     @!D!"D!@A A      A
 $|!D@"BD      B?}UIYD%ĕ"DDB     !"BD"D @@     P!"B<""E A!B       A@
$$H#BQbB      @?ԥ~JY)DU)H?ā     ! 		 ?   @        A@$	D!B       @}DDI'DI$DA       OG=$J)QGA 
       AD$$!@       !B'J!	D! 
      =G
"$D!D@A)Di        DD   @       " $ )	D   @        AABGJ@d!AG      @ AOJ?$!@(        A@
$	@ A
      /BB
	J)Jp! B@	     !B
$,RaDQ"DD       #@JI$II@          "  @       'A!	G!B       "AD
D$	G!B      ?@ 
@'Q         x#@Ă	B""  @      D!$GJH "  @      @ AGЊ$ 	G!B        AGȊ QDA
      'H
W*䈉UJ "@D       AO
?ADB         ? @QPB@      "IB$DR A
D ?     @ AO  @@(        AG
 JQ!B@       #D"Gߊ!$~D  B	      'I
*{	d'HP B	!      !]B}!W!?      #@"  @      A?ԁ~O U5ETUQDC     .	DJIfT!B A      #DJ?A)IOA	     @ AO  KQ/@D     BԑyUGDJ$EUB      "Gߊ $Dc_QD!A     !OG $kDB$I      UHIEQ?   @      @ AOJ?!@B        
I @D"@      @!GG*&aL@!80     ?B B"(Y D @       |"AEQ$I D @@     !O"L
`BPA8      #B" $IG      #AȊ.8DB.A     |	Ϥ+ D @      !O$*!OBqD%      'I"_	~H2EB      '@
䔉DB?"     $$DR	JdMA6ID      'JR"$gI %zg     @ AOJd eJ@(U     $OG"%b#I *`     /AǄ
 	oM@8D     H&Kߒ$?~@D @      |@#R_Qe"  @      !O}jt;̊!/)f     Q)Gu~@D @       @@@   " `     D
J )(	B       @ 
DA      D SD!HD!B)$H*          	"$HQ!"DD!"T       @ 	"$HQ!$E@!T       @"(PQ!"DH      A?)(BAb      EP@@A( B A 
         	"~P"H !@T      @!B" @QC"D!        @	 "@ R$H @      GA
DI$@( B@        "(PQA$I!DT        	 "|R!$DH!BT        @	"$RI$I      AA"T1"D@""iC      EP DAHB(P"@H

       AA!E 0BBA)$      @@"0PP!B        HP!"B HA"HAC      @ BI HQ!"DD!"T      D S@A( B A 
       EPAB$QB(
"D J        @ I(R(@QA"D!      x	" PA A        !)$BI$b        @ "8pPR)$b !      ERDI$Q$I)$J!@B@J I     EP @AA)*"B A 
       ?@ C 	
 " 0     EP @@)$J(a
        @$" S A         "IES$I@! T?      EJII$FI)$!@        	$"KRI$I@! T?       	yOA)R	H2J A*B$       @	I#	P DH       @IHW"LD"       @)"DDR$I@EA     ERDH$ P)H% J*G        "$RRrDI2%HJEA	PB      @@) HQ!"$H@       *0BI$bI       (HD"$TQ(T!ETA     ERD!HD!B)$ H@       D SDH$Q?A)$@ 
        !)$BAbA	$A       @"R	$H A         )@(RI(Q!(       @@)  PA A (      EP @OQ )$@ 
       ERD!OĐ!~)Hb$H0@       @@	"AQ!DB
"       B	"PT7H@!~       @I"$Y%"DD!"T       @	"  S$H A       A*'BI䤔by	      PIUT_%PJA*A       x	 S$H A       (H"I$WQ$H!EUA      AAOAR	0"B@(      ERD	KԐ1 B^)J%H*!HA       @
# S	*dg !T        @I$IRI A@A@        @	$)T W!DBA     DA(WҪU
5TUP%B)$      AB | 0 A A)!       	"P!_AP@      !(QH%	2 K@((A!      B![*V5$LH!J       AB  7I@ADCP @     !IH"DD0@O)        	",RQa$IP!DT      РBI"P W4I A%     E!~H/F+(B
HR      ERHDOQ$(  A 
         @	"I$UU BA      @@	?  P OA       @ " b"BQ&$R
b      @@"I?ARA$H(`     ERDOQ )  D@J H     D	~$O1JD!B$Q!B      B%"KUQ*IP       !DAERJDH0*XA B( `      'pHEQDQDE3NYUEADPB     ERGH$  ( B/A 
       ABA} 0I )       @@	?AS E@ADT(       !BA<	$	0"B@	($ H     @"ǀ @@C( p       @$bN"R=$KIU"      @ "I?IQ!$D_      B""DQ"$_A     @8)9@P! B@4BQ      D`($K"@     ( O_ʄ]PpQDQ!      AA?I	$5TE@$        # R	$OA       B ?ȁRO 2K(DRP"     	DA? 0D"Di     ERDOQ  )$`H*2HC     #B	#?#HE?)P     "$I W!E@ADt       @@	?  PA$I !T(       !.AD	2$
4EH"")T!     "~)	$( b
(?ȁ      AOA3ȤI A<(
       J	UHEE3VJQ*"\h"B      <B	"$P!$_P@        	b#S$DH?@     EP@AA( )%PJJ         @" R	'H  E      _ "
"0 _(        AB  7A  A(!     "	?IRI$OQD        @IRU)*TB     J?~Q%A@0      =DI>2#D4RQHE"h
"     DTHR@BD)D" J
	      `"A} PA'A A     "$I W$IA)a     .*DDU2HQ/IU       ERDO$Q$**(WР*AH       =/I	E  @7GA%*6!     I?TA O        AOE@1T !(~       B "$RI'I A$     Q@?SH!?
!      H! 6hbDA
B$i       +H@D*I!$D(Q!A      A(Q"%  0R!JB)"      <RbIPA/A A      
B%0PA/C$      ERGH$)"$OЀ*      ){ T%(H^B      D!E/	>2"K"E(!A      !?ȁRO 3MY5ETUZPC     @	"JV(_A@     "$(POA*UQDH(      H"T K(LRJ/ġ@      A _I2H   )       x "I%" W I A$      DA	$RO	6~&H@%"Rh#      (H$RI $_	     GT@OQ?A(@B/@       "I DS$OA E       A O 	2BA1(a     A,Q"%u҈0@H 
(l#     I?I$PUQUEU      ER DKQ/Q)"%PJ*J	      )$JH  Q	B$A!      ")DI>0"RAJ A     )\A(WҪ
*4TUPQ)D        "  Q$Q     	!_@7BD#Di     	DA  D	4JA*U+       A_?2hA +)        AB$Ƃ	2H P*~       @I?A RI"I      ERGHD J+'D
3	      O
 	2H $h     @HB""$@C( p      B	?AS _A         "R	'A      Dq>W5TDPB$I       @  _BEDC( p     	"D!>I2IPA$	$!       " $QQ$A        D?R!$DO"       B"R	'H A      JJJ!5PWТ!DU$      @D$AD@G(`     	U!Y
5TWPAT"a      B$S$OA      )IJ"(0@A 
"(&       H$S)j      EP@_1+*([*NH         "RI'A         @!"\} _D      A _QRA3O$Q @      9H%9@	1 PQ*h       9B?A}1_!_B}"     (KD? P DH(      	_! y
7*DPAp"I!!     	_!"}	
1HPA$U$Q       I?AS(j!?T     (R  R'B0`     EREQO?)R'BPH       !yD?3IP6j%      AALao U
r7OA?A(!      @  UQ*]""     '=R)HV}4Pe_Jȟ*"U䨩$b     $!~q&$ʨUoDTUS(B!     DD݉U3vDMؕQ7bDT       =/AU
r7_ )I$I      _"%*R 3R(P @      @@)"S$OA?"      d"RA'H      EP@OQk +B'JJ*C      /DA?@R 0Zj$       %D ?R	J3MA6Ih     GE!!2QQ(!      AA_$E_ґ5JW!_)"$     w)H 	?$ SGH(       AA$R~	~2J U%     	_9RT7Ң>NH"D     ( KD?JQDETKaJ     K%.kE)5SQ!       A/@*wD1D@b+R      DA=JRP3B_?D(      ZUʺ5լE3     H?!U	/<IPBW      )I^ d
O7ԪWP]B*(*     A/IqweUOQ>EI      ތx"RA'@           ?"  !         GB
HH(@ D@ `      '!!@AD_А      DED$O @   @      @!8!PHBI A            @@                                 @  B ? @! B>P        @  @ ?     ?       @@<#B         @ADDBG"      !@DH" xGD@        D@"D" DH!(A        @@ 8C ?      @?HDAAG      DI$DDI$DGI% A     @@  @p          !D	  @A@!      @@  @p         @ A B " t        @> @\ 
       @$I"$tD B      @ A! O (       #@A$I	@ B .H@       D @@          C @A@ A      @ C">D A@A        C@ D!B N! B     B A( z'D         #@A >!B AМ!      @ C?0P A/           C>  @@       D!D!B|AAP@      @  	$ B"       @  AB H! B@("@       @@ 8C ?       @ ?$H! tO          C@( #@A       @  !D A@ A     D AB"t'D E       #@""v" D@(2@C      @  > @'Aļ         @@)" @p       D!B$IT B@(BA        C@ |!B(@        C@$ @ A       P H	3|?H! B@ȼP!A      H ARH"E         A?"D!B O > D     @@!
O	  @p           C>"D!\        ! BE>#DA< P?      @ CB  @/(?        $$D  "?        C"$D}"E!Ҏ""      #A)$ZH"E AԞ=)A      PDI$DGI      DIDID8@        DEQ@B|!@@        D_ADDAA     B "d("Pt#J1 A      @ AJ"Pp' D         CB$>$"HO!\ E         C$> #@        $DD$DG%          C AB  "D.H       D AB"t'D      }$JH)"RDIҞE(T@     D!$H "@D@0@     IH%"J^R$IHҗ%$ZA
"       <I%$J~)"FW	 "        A@ B>Q"I'D(         C@ABB_   @.        " !HD"( (        @@( Hp?        C>  @A A\?        ?(>R!PD<LP         C!? #@?        @ C A	!A@
 "      @ ?>_#J Ȏ" T       @ !BJ	'E(^J@ւR        C!
H! B@<"P        CD	! B@("@        A%J	"DNA        A?">D/@ A\      DI%DITE1AA@        C!!BH% D      ?  @O       	)Hc!JD )@!       B1|P!DC! ~      !?H=:%(MP)\ Ā       CD	p!PB.HD@        @C?  
 " 0     D ~H"`t0@       AGDIDGy        D @D.H$      D AB"tD           C " _^J"E(( @B      #AD$|"I$A<"@        C@AB@D>  #D!\        H_%B!N! J         C   @G      @ CA	! B@("@       ( K?D}"$GPЎ!(AA      B(Q}_"I!NG       /DD}%TJQD`      @ 
 #J`<P       D)@@      @ KB| #A!̎
 b     ?>(!@@        !B)DT}E"BHN)H       Q	$J AaĎ
@     D!π 	  @w      @B> #AҼD        3Q |H EAԎ(]A     D   C$@?A       ( K?D}#EPԎ)(AA     AO@#z$$@!       /)J!D 
      DO#pD@ @      p!B'D"E(        DB #A@	("@     D!τ<"@t&           C@ABDD>> @G!\        @? "xDT         #  >   @ \? B      ( K?H>Y B!<(        B @"t !@A       @ C!B?A>"@DМ(`     HDB$ #@      ?I	!B@( @       { !B > @O(        @ C	!|!PBAʎ%JA     $I$ID>%!E$o$ R D       B0D>P! G.H%         K!DD$D@         B	RIE!CH(@"B      $KB		$"HD.H          C
}"D Ў!?       KA?A>$"HD!A       D* GDADG@B      @ A6	 @C?        @ C@D? | #A AĎ("@       @ C@D   B@*L       @!B?I>! D@       H x_H G.@      @ CU	  @O        "RH!BH         'A?>)"RDQN@!     "D>" E$H@!       > @AGD`        @ ?I}$%TAAʎ$      B   'B N 6     |	$OȐ!  "?      #@b#D@?@       P @B*U>T"EPA      qD"|
!B(!N"E     
""D>"@	"         @ C  }  @ .H        A!	 H@H (        @ ?H}"DDx׎IBD      @ A	#D!N< 
       Cǀ?  	      DB  #D`(2@C      B? "D( @     B?B|!B!  B        CD$$DC       @ CPD w)"RFiĮ"@     @  ""r	$"         @ C ? | #@@."(@(          # B"D! B H? B       G"|  BHC A     D]%D]TEQxABP@      #A	$} A A $ H     #A{"D}#JQ̞" D        @C?4c8   @        @C?  AaDЎ        @C? ?B! $ G     A~|  @O$@        C >"H@        @C?  I @      #A#!B|!D #<_        C@AB@D>> #@!\      @ C  ?A!@@."(@(          G! #JH? B     !$I|P!DY"      D?I!$C          ?$I|  G^/@@     E _ ~!BH!      $DHP~"u$       @ |"KAȎ" D       @ C@D? |!CH       DO  @t	 T     G!H  @G       ? ~!(G.H?      @/D	 'qD@@      GR #t@?A        ) A}"
E؊N.C@!      @ !?  @O"      @A B*U, @O       B!A!BH A     'P"2_K "DH        @ C |H!GAĎ       A? x}*#DQޮ%HHd       >Q4 BP<       C! @"TI((
"         C$k!$CÎ
$      @! 2'hBNHD(      	=@>"D(WD!@D      sB:HȀ}>#DHNaE A      <	B  |@'B N%6     $I$yD=%$I$i	  $       K!	"	$ }"EI%(Q@      I!$~"*N@"      B
|!$BH A      @CAB_d }*"TGQҮ=HHd        !   @@        G? 	 @GIҞ%(J@       @C?&p       @I%$UH| #DD"(D@      !B+UH"*GT~(q        @ CID!|H!DN! ~        ʄDDGGA  A      @A>  @O\$      D ~ %(zW)@      @!B?@ #@^*@         CD!4EĀȀ      Q	 !BN? B       UI4( ?   $ D?     @GϤH%TzT         	B"G8( @      @/BHA?*'   "?        #/D"D@.(H?B     A%$J~  GD@@       ?I%Dz}*#D$I-Hj          ""D}"#@Ů$@        C |!B.? A      @ $"GP~         @! C!      A#@>~ E@A<      HB Ɉ"Ht         { "$D%>  G.H$       "Ȑ #A .B       @ CAD<@|!B A? B      B

"|""@@
$        K ""D @G.H&J      HO!π"w$ A        B?I>"'@ М
      $K!"D)~*DqҎ%V       B|!@@      x}3$(L $?       G?~!B A"       @"/Db}""G.R(BB |      B>|D#A       @ C D$U|  G	Ԟ/A@      @ CA #D	@D     $$ @O
$     JD
>b F D       #A=$@E"EPNJ@     !>I"GQN$	!      #II"D Ў!?      B}""Fd۾"(D@        ? "G?        @ C ?|!$C  A      ! *} AP?       DUR(@/B G 3       ! ~D$N1NDA)      #%"LDD|!FK.RH       UD*!TB \%@       KDA	}|#D! "       T$$DGAPB     "$UH#@ .        "? >'@D        #$DP?" @@Î
$     !"@ 
RT%  H       K
$!C*         C( !BHDA(      $#D/% N@      @!?>'\H.uȪU"      A>$#DA        #DH?"       PQ?}  C A     G!τ "w@D@       <A?I	"HDH$       (KBɒ}$"~D!$?     y%${""DD"      $KrDUH'B QȮ(I@        C$!@DHT@<     ߡA|*'TJQNT
       <"R"HR      >EGB   "?      DR~ "HBI       @ $$O}" G.%      {Ȕ)#@@Î
$       K "">D  G!$      !"}䌉y
!OQC$UQ     $ ʾ*"|D ЎQ        $_H  CH?           "?I$#@  " |     (Q  "G0`     !=!=  @I `?       A
	}"PE0Ү)D       
$#DH?"       yBUI"| #@DT      @"4L}"EH!       @!?>  EHI*U     H!>UU%TB(QN<JUQ      @ C)>#CH?"           '@ \wЩ     /I.AdMU$ $ D      I
R%$D B        !r"~  CQʮH*     BҒB)(j  H      @ CB$T%@ H?A      @ ?@$R!G1       @Oτk  @w
@*C       򠄁d"@G?         #@ \*     !$I> /UTUCQ        ߔ#DH?"      D	UR䔊w"B@I       B;A)DR}"G HB      B!	!"EQ       P#xQ:DRP!LAI 0       *#DH?"       !?&$R~!BQ         #""$"Et(x?      @ C*>"!D̜(0      A*VD@z%RJI2E8(     9DT'B<I*"D     #y %0~#DyҎ=J g      @ $D~>~"E U     舖a$B}=wU$H@$     )$/!U-#""$:$D      y=DH"ET^/N@     y=JH"R@N 6     $_8nު
VH  H       D;"} G!?\1 a     "A1D|!Cn;      !%${(|H!B@$       @  @G!*sII     (!=1~Q"G HB     )Ry
O)HWШ[C~	Q      |"D	 $ JA*e@      @R"ED
*RD	FCĀ      ASb
*(RH	D	FCĀ     @T"EJ:*HR	E	FCĀ      ;EDJU* TAI J 
M	      9A
*T|!HB!
"%M	      	8JU? T|K%J2eM     @C'X
R~%HJq)BP)jH     	8uJ*TDI%
9eM!     p@QU6.ɐ0J         ~	 @@"      !@T A!B,P      B "("Pt'D1@A      p	T A!B,P      !bT!*%`,P     @@f0B P @          #"D%HJP(DPbb     ! B	/")(RP"XDԱ1@A     @@@ALDa           2 BI	*T3$H UP       !BGI$TH")Ea,P      !	<W""ECP      !@GIT I @,P      #B "D}HQ(DPQb      !"$/$1!DA
B"      #DH D}HQ(DPQb     B ID	$I0!$BJQ"     K	 	 BbF     @@Ȅ	>*DL"@(    H?  HI!T2HQ?UTX     >@	T !%T,P     B Ia"$?$(2!TBB"     BHD*MA@(      " $ 3           B
$ DIP(B)Jb       $? $ }0!B*H      AG
*XT B@|     " ErD"$降1"$DJQ"      " XU#MUUR    CS$,RTBA  ?$&     P
I?TB QP     B 
Ī_*M|!@(    @D?I'   ?$&      UHIEQ         !O!$~3 BʩYb"     " (BJXQ!EUE      $
?IXA'BMC       !" I$%2%TJY`      
G/@TU'uX@     ! D  ?@         ! 
*$|%3 DOJ"    >/('  ''      AGJDBXI"BMP     D I	$.I$1"$Gʨ_"       @R
?*UX FeR      @A$GR$ x@ IN       | _X}"E-Wȃ     A!'>~aIN    }(|'"E ?$&       J?JXE"EUURʃ     @@  @      P H"@D@!'H      AA @ "      D= "D
$H(_?A     9 A"D|"$DH> D     H!#D$Gxy"E'@d       " $ 3   #      " D  @@     ?     @")>B/"B!      !"BD"D @@<          D@$O O        " @'Q ?'       #@CN>("hAO
      "IDJ$ |@'A< P       A@R$>$#D                ?HBB$!?HBB @     ?B!C!B?B!	D( `?      @B!!	OB      # B?B!!J    da0C	`      n  !!C!J@      Ȓ	!!	BB"      IB  ?BC!J    C!0 @     a!?C    a! @      Ca0B       a!?        BB$!!	B      @Ca!C    !!	 @      @ ? $$I"ID@       C!   @   (      *#*""          $I$$I$I? $ O      ?B!!            jI&~I&jI&( A    "("""" ?!0C     @ * 
>@
*@$      " D@"    A         D A      *|J?B
*((@@     @A?Jd' D@    AB"" @!B!!B!     	TI~PD       '@ $IAI$)?Р     >AS?AjQ@      *꨾J*"1@HA     @*
>
*($@     O*DJ>DJ*D(@!     *@J>D*$@      " D@"@`h"       @*(*~DJ*D(@!     @OB>B*($@      " D@"  " BC           !BB       GDIU%dd$DJI%%`        G $IQIDI(       	 J#1A ?B!!     @RR
B
B!      ȉ?D C      *>J*3JB          ?B!!     @*J*J*
( "    #!ڗ@ !!	        ?,D@"     @*D
> *"      ? _'!	      @ @$I!BID(       	 N*UHTBRa      ?BCB#"(  l8     ' C     @ *B*|&"!@    '	 I@         1`   C!     @*B
*D @       HJ>TPTH! ~      @B
 B
B!      ?BC 0c8       " $T$F`" D@"     *
>QJʒ*D% @@      ~ D@I H?,D@"      ' @?  !         1` % C!     @*D
ڄ>
*F!       ꀭ*J*         @ %H* ~"TCQ'҈ 
 b     ?BC? C       (|$Q>B$!? @       1 gH% C!     ?BC ?  ?        CA
>$Q'H 
       ' @  ?DRK?      " $ 3  C!     -D*JkT PLDJ     @(*ҩJ*R @       @ CPU >w)SVoĨ "@       C!? ?BC ?     @	/*
DJ*B!     *B@Z~ID      *
*!      " D@"  %&JO)2RA     BA_EE/U       AWA_ʄUAJO      
T_
*bWV#\@       ?BC&Ѐ?     @*(
*!        K_$ԂSꨉ      I*$ RKI         '($ II'I(        O !W@w      |)NS}_YWEZ'H      " UT? ?     " UT $?       ~ " (?        !?? D        D  ?@@         A! ?I(]AAENDp         !! \QBEҮ%p       3D? B>
@c     @ ""B	>!sG        	 
   0 @    @        	 
B1 zD" D@
D       	 
 0@A P@@       	 
@	2`H " D@@        	 
!B0
BPB @@       	 
0 A P@@       	 
  0@A         	
  3"A@P       	
 	4B@
"L       	
0"D@@       	 
  0@A "@        	

"4DQ"DD@        	 
  7D  @       	 
	 2 H   @        	 
@1D B H       	?
03JD"$D*@       	
	"2HBAD       		
 0BD"$DQ       	 
	$2HO $@P        	
D	="D@BB       	
$0H_
"F       	
 4@PA$Q       	 
	4A@B@       	
D2A @        	"
D3bH*$dP        	?
B
8 H 
lG       	?@	2JH"$D*D       	
"D1RIBDD!H       	

"
;"H@"@@       	 
	2I BRR       	
  0@O        	 
2$JO @P       	

 7T@DFK       	 A2OB AA       	 
3ȤI B$
@       	
"D5ت"T@Q$W       	I	$?I  @        	
 4@PA$Q         '!?          	

"
0"@08C       	7@0        	 
	2
O"	!B       	
0bp8`0@       	 
	3H  A        	 

 0@A 
"F       	$I) B	"(EQ	D       	 
3JH""D 
@       	
?@0P B@B        @R$J%"IP       	 2A AA       	 
@1D  @@       	 
 7RaDB       	?@	2 IB'Q       	  2@I $H        	 

"7QDEH       	l3O        	

"0@O        	

"4D_       	 

4TP_DB       	"7_
"F       	 3BABaaC       	
 3
g" E@       	 

5*TP@DB       	BH`1BBi0C       

 3A @        	D	7A         	
 ?"@@!"T@       	
7
R B        	 
$H4&JP	        	 
 2BD@       	 
 	2O        	 
H2H_        ( ☁P@@       	4DQDDB$       	x1PQ"        ؒ("dĒI"DR0ɟ       	6H@  AA       	$*	2H  AA       	@2GBIfG       4DQDDB$       	JE?Ԧ*NPPE E@       	
 0@@ DQB|       	
I
8⠂A G       	!
$
4_DQ       	D1@  AA       !
"U
)2"DP" B@`       IB 7A D F       	ʈ
"7_BF       	
B2HI 
"F       	 
/
"5SdDB       	?A	3O𤢒DH*@       	{ʔ)4J^"JDH       	?@	 3BEB       	
	2"O?AA       	$J(2I J"F       		
H0:B@y$@H       
"5TUPUE*D@       !B&rR)(BA       	 
wI1$D"*DW	D       ?@ <
RI8GP@@       	

)
R7JR "B        H$A?IP ?       PTE!ϪQ*UHE@       	?I	$3"B       	
4E @       kX BB       	ʈ4DTP_DB       	
Ԉ;BH"D        	wꠕ]*5TUPuDB       |
2HB b8G        AB$D&!$B	P       	
D2A @        	$H4\$          D-PJ%Q@@       B  ! BC       I
4DQ@        1vA      !?dEO?G       	{"7A 
"F       	

c} 7J^"zD%B        /A4!_"B        (Ҫ_BU       	JE5TDPUE(E@       	?A	3$BD       "|1"_)aA       	J~(7GB_!~@        ("D.!DX        ?B("PO"I<D       	V 3OB?        ?R%Ȋ
"F       D ?A @DB       	{ʐ!4 ^"B
B#       	
?OB?AA       !@Ba2 O       IT	$4DB9fC       	IDp3OB?@       DQ؈"*"A"DA       	{"7D DQB|       'IHR       	ʔ)0@I "I@        I(2         'I"I$        )$D	7OB?AA       		3O_Ġ@        )R? !jB"JI       !(!
%Ȉ       	wʄi
6H_"ĈB       

	0D D        	eʈ
"7_BF       xoPO	@H      ?A 
R	'H  DA       
TP1p AA      ?@	d	O0æhq@       ܤH+"AW
R?@       	s$O4<B]B$IA      I`O$P@       ?B)02qDsA       	"
P7<T@Q%HA      ?DLaD"QHA       I(2IIT       D	R% "A$I       {LifqbpG       ? b	G!	@        ;Ԕ"?%Q@@       "*"ArUAA       !**QBpRA!       	{T)
8@RDDEB       R"$*QT"pHx
@          /BYfR       D/"N       "	3OF      ! dEOO      sʨb?jTqI*RR      }-UJUeQDBqN       D@/DBDD       	Oʠ?	B2
sOĩB       	E	6H P@      yMUiGRpAS	D       	
Ո2 H $I       	
R7B_"ĈB       UTDT$D	"!F      yMIhSȤO"I<IE6       $;v¢1C&RAB      }- dEO?@         (>*"hD       		3BDQB|       	?A 7J^DD@       }%$^""JHԖC        	{ʔ
R7
WШ_D}B      ?@ JJ P'H DeD@      ?Bj T/@  A      ?R	JhWIEQ      
a~ dOP<BJH       (;*QTYF       	" 3OB?J}       	
Ԋ	?4ȮI BwI         x $~!dCK"@      ?`AF?DHC      ?D@
RI'A EDB       /!UB̩US1A      AI}dK/@	?AH       eO!	TG'        
Q*ߺQ~QT1       eO? 	ВBb      A|"LIQj_T9RR!      ?d	&bK?TRB       ג%Tֶ! D       $sԐ'~}r"@      ?H @_$ _в?LA        tU%*zA|r@       =!4JR"CDB       (;*QH!D      ?UL g@%"(G      ꈍf
DkZIB(PK      ?b!OBC       !X*~r)WԥA      AOfENS$HOA"      @
Oi+^TyRDQ        r5"*:!|BR@      }-(h_|QEb8G      wʥM_jUw	*      ?RJJ)Q!'HA      UKRMWo@PU/      a|Sj_P}B"HDP       
/h_D}EHQ      ?DMʪj_|!?IВBb      WZ윊w`O?	@`      GJ윊w`Uԁ)"RS         &H$(  @@A D P @      @	"Bo     @       @	"Bg  , 0      @	"Bd  8  p8      @	"Bo@" 0      } 
"AE  @@        @AA1%H=@@M 
     @ `          ?@! B       !HBB$!!	HF     /(            @            @     $? HD D8     !P0L"a@@      ?J)(("    "0!@G@D            ?     t>@'蔢RJ%H"H#HȀA    ! =H&VS%H"TR%IA     @
>()(b ("D         $`  @      @>B!"%H"K      ' FĀ     =DI DI
$I     !D >~"H"$"H"$H        @DAO  @      @$$ 
/"      rJ"_$J*Fs$HWYP     @$>B1# (       
/" !#C       @@P!B~	
'P     
O $ D$H'șA      Г.&OAd% P     @! (((      Q"DD	      @$$@	 H)      @@C GC
?     @? $( (b@      @A%'ʈ(P AC#|#     @?H)? DI$	      @>B?"
/蠢      @HOb&H"$#ȉ?     @?((J%H      @?HIsq %#ĉ"A    !< EI%REI?	      x$TEI$I)$K)?      
O BI)$C     !Dy=(S)z*"䒓ҩjQ     xeRc$|ԉ      ?@@?~B
 @      C/H  @O	x    "HK=mJ[eFA	8S)D@     (R *VR%i	*    #ZA	5HY		?     <$|JRSx*)Z       D $H 
(L       C	B?B!HB`A	B$      @!)OR%BzI*b$D)Hd       @ BI!~H
@)  A      "D@$$$~~H"uO	%QA     ( H@"$I~T!H⢥I)%QA       B'%$Q~<IEA	%QAA     $H!A'I?$?~BID) A      #AI2R$>~DI@	8Q!A     #@G/Ҁ$?~BIBI<Q!A      "H@"$*~|IO%Q	A      "KB?*B|I`OB$     @#A?RJ~HHUOe%A     < @C)+'~@IREI%A      @C	?Ҡ>~ IDI%yA       G)7R~ IDI A      @C	?Ҫ~DIDI
"A       ?H!"BD	$$HH'        
  " B  !"BD?     ?  A B  ?H!"BD     ?   @   !"BD       + p@  ?H!"BD      E   !"BD       B!  "BD?     @@@ALB`P`@  "BD?       DDF`  !"BD?     ? >E(B "$  !"BD      p?  H!"BD?     @  @!"BD?     @A  $0!  "BD?      !"J*!B } "BD?           "BD?       00"BD?     @@ ? Xc< D	      AA@A|   !"BD?     @H"I	B   !"BD?       1`   "BD?         "BD?      B$J	(  D	      A,U*D( "BD?        @    D	     @A '"D(,  "BD?       		!P@"BD?      !!?B D?     4D?      JTD?      A G%D8(,  "BD?     ?   "h1D?       vO~@ 	     |	$OȐ! !"BD      @ s`1  	      ' @?$"BD?       QP
>D"BD?     ? H@
  ?H!"BD     x|!T?I
!J)"BD?      95*'Y0Q:B  "BD?      d>p(Hop! 	      EB$OA? 	R_      H! 1D?      @ "*O
("BD?     #$OD?  'RHP$C	      `p ?@?Q@݁	      @"C/$"~|  "BD?      DAR'A
QD	      `     A	<BA$BA$@     "B!B!>@      "B!B!>@                   @ " "@$"@$       ?@@?     ""!"@(     > $"H"$b       >A$1Ab@      #B!#G!*b!"!     @%C)$JOFA      "@D$H"D(@A     !$@O$@@
       $D)@DI$DH@E     @"C"B!#B!        |  /"H	 (     #H"D""$@     bCĆ$?!HbC @      DAI@  @!      "#舢""("*P0    @	 < A$ DO     "~)~ ~        <$(II%$"Q@HA     "">"("
$ %     $Hf$BI$BB 0      %I$ BE	$FQ      ?HB %/@K       "C"B!"F!@          P!?@    ' IH D$      R)H>R)H     	 $ A	<JQ)D~@       @"K(J?"($@     A	<BI'BI$$      $ҙrdI&HJeA	@B     @>&)1LRb       P/	DJQIE%H&QPA    Db# 	 B(        @"D"  ""     (
/>("~I$p      >/1ILRb@      (       @" (A'萢B
$ B      "   ?        @"C#%H"J1      @#C"%H"J1      %) $ A	$BA       @$   ''            ()>B)>0 @      "#舢""("*P4      =#II!L        @""!"($@     ((>+>      ""
8( @A@A     %H'֩S%H"TR%IxA    b#Ė$_@HbC      x$ 	"A	$@T      %	$A	$D
_     ")~,X~P      @RSB!B!       O$@	$RJII%$FS      @C B!B!     b(~*X~P      @$RS	%EI$JQ     "D
/~B/>@     @)?Ad*D@     H"|$H>D$x> @      >|R!_CĄ!     <$@I2I̒d' @     @Bሄ"$"!b2      ""("(       " $ /L?A      $)$$Q	'BA      O" "!"($@      %I+$*d$H&HBB    /" "B!B!      IA%PI="QD=0@       "Ȫ"*"2LB        " )DTP0@@      $Gw$XREI%$Ja        @? 0 @     >%C	$$BI	%B ( @     (B"$PD /@KP?     $$G1%(BB1     @~S}(1APbB    ( >B!@        $ D$H&HA     O%K)B_dQVQ      ( >B!@     @$K)Uf9BA	?BA     (~/~(~P       rJ#$J*Fs$HVFPP     ?%#H"_$PFIC     IA%PI=_$<D!    O$d	PB_餤jI@     DeQL}9VYD}@@     @%C)TC$TJQ      $P#I BII$"A      @	$eI`BI)$D@      %+ԩR*TRD!     @
$D $J?J      	;)ZdJ"HBB     @?C$G1%(BB1    '!I
O fKH@     ?H!  ?dAC     @%J_D%(d@    ЉB%"P "P_ /       @	 H)?H "     x>H	$$BI	%B ( @     8ER  @A@A     @%C)$VC$TJQ       I*A	BA       @	/$	D
Wّ$DRD@?       	I$$I$     @$#؉"O"$"O        ! BJ"      )$JI)? _<D@A      KD"D"'"@      @?C$FA	?BA      8D%CԙaeH) 
H ?     @:P)@"D<H$    I$@IFK<D        ?@   @      @)A	$$BU O      x$"KI $C$TJQ     d%$H>]d@ @     "%	x*^J*R Jd     CORKI2      ODS	 G0B
D B    He!P	G&Pz( H@    )?A	$<BA	?@     @(9?B_ $A     %BO$JO=@      P	/tC$JUIU%H&APA      	o"$H"         C)?D?J$BHB     e/@JT>ePD      /~$$@X)
H ?     	$"H?RI@(      $
O 
@     ) 
H)? A	$<@       %)I }BA	D@       "'  @@        3HH`@X     ~ H|a'B	E&       )P)(<P A     (H!O	)4^Qz1D      >$#"$K(R O"    OD	?JI)?JI ?      $I%eH	'UTR$I      @?	 H)$JB      Jd#%L"$"T      O !  BJdB)@B     A#@>~ DDA>     @ )Q	_B
d B     @)?H)?D@      @?C$@J*T     @)uވKA/H$
 l     K$B_$
H ?           $@2    ?C?C  !!     $
O A	  @@     I $HH)&RL_drA    	gWYeV]YUeUVUP@A     @$C $
O 
O      @$(	?H)?A      􄯧JJ      ?)?H	?VUP@@    	O"S@=wVUYU}w     OD 
O%D@      $JO$D@      $KȔ)^)d$It%V      @$K$JO%N      )*B_HeIPP@A    OD%FYUeFQEA    ?O <_<TH      @	/%$DA	$BA       )'HKE$IORBC     ! D  ?@?@@     @?	A	$FTP     R{)P_}QD}}P@    BIGMb$       @$ _ $
H ?    @?䈖#"$H"$U JB)      	Kʤ	"$(KA'A
"      
__҄%z(B_YoAD       K¤^A%}L$H$ "    )@	?H)?        <) 	'~R$OA      @ 	Q^A%M$O$Q @     $IK/*RTOH)    ҙ{)^eIT^eI&Y@A      $)K/*RTOx) a    $ I%REI?A      I%Dj<RQ}@     @$(	?I)?A      ?媚ʩJ IPE@      @DI%I	'~R$OA     @$C $
O 
O     R{)P_}ETY_}EP@    $ )$O%E@d      <)R(BR       @Cd UJr OO?A      A') P	_ d B     $ $ rUIU%"HU"      C$O	s  ?@@    }(|'"@H      >#>#  B      Sڤ߉DuN
+UTOV      Ĭi!$J"FA/R2BB |    / Je)A	8RI @     YGd J A        8%C5A	?@ *    JdD!="O"<       $H	?I	?D@    % %Ej\Dj       %I)@D "     IJ$
O 
O      #KdO/V@_V     I$U)_RQ	(Q      @ ")T_IP HA     |$Gρ _" |     A'ԙ?H)?@T@     $ʒ)?TY$G     	[	5HY	I ?     %߉H~RWU%|oઅ    ?!%+ 'O!$O!     #ĉ{{R{(RJAg    %$HI	I ?     !D?wU  ?@@    	{)ҙ%_Je&VRBg        $H?  (U
     H)"%J/A)     GE jIUV-U^5ZCb    Iԙ_UY_eUQ@       
 `B B P @        @	A"( 3@H
       @AB$)P	 "DH
    ?" 𐘋 @Dd$I>H      $IBA(Q"
G!J"B      H!O	? (Q	"GA?B     /z=?5AG	          @  
  D`         !  D`      ~
C  (	$E        ߑHF!BD!DE"|          @B@	 /AAA      T	$GGJ	$%`!      @x  AABHAA       C	?A"GHP       @@%
R%~!HBQDHHEA      @x~D%B!DBHBA       @@%R$9  @GAB        C	!B  BB"D       C	?I!@'B!HBM@      C.8 #DKUHA@     !A""UD  GH"_Ƞ@      Gd~"@GHȑA       G	KҚ?"G%zg         @ (  @@        @A BQ"D A         DDXbF$H>@      A"2D$I!$KД!        @  H@B       @@ H@B       ! BA$RH$I$I$@        {2eH@!$H      @  @>2 H$$@?      @@R$ H@!?      @  $OPdH!        A22T$I!$KД!           #@ 2@dI $@       @$IJ$D$B      @ B?H@$         CA
DOHf%HH C0      B"	G!2I"PD"         CD	2eH@A"ȄA        C$6O-2TdIP)#$(          C2gH@A"ȄA      @ C"2DdHA!A      D R2hJ	T$G        @?@  @      @ C   <2HdI A$$HC        #@	'HdI A$     I/:SI&K 	@!       @  DH2d!HA"ȄA        C@ DdI!$CȄB       @A3}dIH!"CȄJ     !D	!$IDQ$Є"`      AB2HP!$CЄA 
        #@$"v2eJ A($HC      B Bg2BHAE      B BDI!BP!        @ AOBd!H@!         C dK$C       @  H2d!H@?         C$I2e%K!$H     B 	"2d%(JP!JT1 A     D"GI2THAQ$BA        C@(dK C      !D*U2%$JQ,T@          C2d!H@"CD         C2dqIP)#DH        (2>dAH#        B B"2DI!BH      @@R$(HH!?      @!CҌJR%JP! B         #@$@ 2DdI@$$H      "$K2gJH)C$H?       ?"D2eJ A(CФHi     ""
8(   @        C2eJ(#D       @ C!D?@2e}JA)$H       #A	H%Hʐ"JD"      BGDJH@D        @ C 2eH@!      @ C 2BdH!"C       ?d	H "       &B	
ac           C$6O-2TdIP)#$(       @@"
G3 H@B          C@$eH!$C       ! DE2eK)C$H?      @@XQ"DD$@       #@$"D2eEJ)CA        C28dIP7         YAePIA=A        $Ye&RI=$       A/RRIJ5*SЄ      # eI!"B"       D H2$JH"$@J"      @CH0@~           C@  eH@!     DI!RYIROI%$        ;$H2d!H@%#$H(          #A"D$A$I'I_         DI$d"RII=$     @@ H@B        C@AD@O2d!H@!       CD3dqIP)#DH         C!
HdI A$$H         C  A'A	         C@  dI!$CȄ> D        YUe&UIe=A        C2 dK(#D         C!?>d!K!	       @ ! ?@2eEJQ*C$HO         #@O!2dHD8C1      @ A2DeI!$CȄ> D     D ~2HJ`T0@       	R$I^J)*RW)A"     B BDI!BP!       D'Y^JJP$!@A       ?"2DdO!$CЄ     A@GU2TK"PD?A       @ 
 dKa'H'I       A?"2DdO$CD     @A GI2$JHH          C$)2Td!OA"ȄA      5% "BD)"@      DH]=UVUiU%tI!       K! 2dK($H?       {2DeM!$CȄB      @ C?	$%Jʒ%2JD	"       BH"$$ H@B       D* YAePI=@B       CD3dH (#D        B%KȨQ*I	P       @ C!D?A2eJ@(Є`      @ CDH Ȑ!$BIIHA?!        C@AD_O2gH@)#$H(          G!D2eIA7         CI2e%MT"A       
,2RdI`)S$D@      @@DO!BP!       !!RY$_I%$        C$I2e%JH!       D "	        Q	$$JȔ.bD@      @ C	!$P%BJ	JA     @@G2$KD À      H A2dI $?       @ !_$IdI$I'$HB     D ~2KA BA      A% F0        DI!VY]ROI%@      QB""2I!BH "         C$H%*RW J      A
2JeM0A%$H#@        C?@e+J$I)SԤH       K!2DeELD/       @ A} Ȉ)"J	       K! e}J A/B      SȡBHHkIWAhG$J_      @A 'V2LTHhIQ
       ~G	  @L      I=JR)Kޔ)KҔ B)      @$%$H)"RG@       {?*2TgIP?       @ C (B%  A	      @ A?	2gHH/D(                @ C ? $ A$I')@(          C 	'H' E      #A{"D%˸5RL	" D      i"/DRJrU,        '_(9         @ C@H  A$I	L       "R^¥	$OI       D]!$PY]TRWOA"P@      H xOdIH!#H       K! eJP/C҄
      ! J""$        GB2H AA
        @ CU3dH@!       H  	 dI'D? B        C"$B&"R	
 b      @!D?I2eI A?         C@AD@O>2d!K)#D      P  R?2HdIA$  @       Q ?2$eIJЕ!*CԤHခ        C eJP/BR	
         C@AD_O 2eUJ*DA       @ CPH w)R2jD	"@      P @D*U2eUJQ?A     )?DRUJU+ A@       @ C 3dH (#D         C 	$I'I
 "      #!D%$̆! F' 0     @A GU2,H@H         Ȉ   @L       #A?)Re K?GI       @ C  $ 'A	 (         ? 2~dI(%#D       B	GzJ)P$!@A      G"ǐ"J	@$       B
$$I/A	 A      ȁ"2K-TS}UP@C      @ CB%H`18Oǐ! ~       #!z   @     HDG2 J@T0@     @A G2J@ A       B>$DȈ$JGI        sB:Hހ%>ˤI(]G	E A     	=@J)/SD@D     D I2S$@ D      DG2 H@RT      K!	"	( %)JQ)Q@     #	$Iʔ1"BD	       'A?Atj	TURG]BA      @ C 
$$I'I%         K	" %Ȑ!%JR A        C
$$OI          C?A2eK/A      ?R^IȦA/A	 A       ;?D2eEJ+DH"     .$DNU*UQSIA        @ C@H? $$OI        @ 	?D%!$BO	"         #?2 eJ*SפHB     @	$HdHU*T       @@ A2KH      DG_$KIdL     	!Rr%J*H B!      DKjU$|)$I	P     A?!iJTqD"!
 B      @I%(U^$ E(_)D@       ?!_ޤLJ*UǪARC        #"e}J *#DH"      @ CB	ހ" "Gǈ! J     G"?@_2J(#DB         !D$U2eH I.фHd        ""H%""E$@     #Á )iT_
I         	#  ~ @4DH"        2dAI (        C $	'H' A      @ CBH?$  OI        􈄡|>dK!	"        ?3dUKA&DH (     x|9PI
#f          K!  eJ/Ȅ      B @K	D@      C
"H$|%KIP     $B'܂j$XHC$          C?2BeH*D     EHR'Y2~I"HD!       ( K$$I "_	         { "$H%%  I'I$       @ CBHH^$$"L0@       D?I2d#O!?Є
     ?I)?A?       #qUHQB%z/B	IQ @      !	|%'%RJGJ       G {ޔ)ޔ)J^)JAVR     JO
bgH!!D          Cހʊ,Rd     HߡB=I\%RJP*Wc*A"        C*$ʪI*B	 A      @B%($&,BC' 0      (Q%O|%J)SDD(     HG"ǈ"2 HRDD@      GG 2 OBRDT@         2eK/D"       A{!
/B ?ĠA        ! I%K)2WgA5       G?&!$BO	"      $Kȑ!"H)\ZIr%
V       !!@g
@I       ?RebJ *WH!F       K
"2fKQ*ĪU      $KrHU^뤒!$RHI@       Ȩ OI        Wq$BHD^ %B/B'IE      #$HP'? A/C$     "(U^'H'         K¡HA}lSH" "     y=@REJ+T A@       ;"9@eI 0
UW@        K
$)j        *c$ _	 A     O?2J?        A2e%K/A      <A?I3eJH/D       #$2eJ ?ɀ        C?!$Ɉ} _	 D     I ?IdI$         ?B
)  _`AA     y=@^I%+T)f@      #1D$!$BO	T)        ?A2dO/D      $S>$A'A (         .8dK+DA      ! y蒝h
W)DRGp"I!        C@AD_O 2 eJQ.ȄU      @*D^9ʪ _	 A      DKҤ($jIW"       !"}茝i
QHRG$UQ     y!!2
I(      GǄDPKB       @OǄk2 JHRD$        D?A2dK*$H      yBU_"$ E$I	T       PQ?%  _$     
bp!('?@        K $"2DdH )#Ĥ      *ɒ!/DIq@%      G"Ǥ JH"_        &(z%Ȕ9RGy       >EGB        @"4L%ʤI?@	!       @ C)$$OI?"      ?!I/{@JA      	ނ(Q?IGK@      ! Ȉ OI*      !r"~ %RJI*     
 gp!W     @OǄk2 H@UD*C       ! (? %@E-REǵI@      (!(D}N@+PTU#EE@
h     #BJ^$R!E'QA        !?2eJH)#" ,     #$7HG&c       H )ORdKA,ĩHE      B;ޔʈ(
O	$0     
'I"| S	O'?@         #"/H%+T@ A     H	$  eJU/T    ?DG*ʪ} ? h      B;A)HR%(_IB     PGBǪ_2|J +QA!      $a?*ȢA/C$     "B G)%H       CZk$HA7I$       >QH]HWԠURGT       Wq$BHD^!Ȉ _)$      舖a$D}5w+UTAPJ      @Q Gψ>"BL|      #y %0^ޔ/zRJ g      @ CB?I%H(SIh"      ! /?IR%G`J_      Ck$ Ȟ"zN@'I      !%({($HA/i$       AB(yޔ%ʢ _IR     (!=1^Q(_IB     	K djOWԪWR]J*     ?       @ "         A>AVQA      B> B TR!B        @?"BA
/TRDAH"        @@ T!(@@       @A>?	H NATQD@         G B AU* D " D?        C""A"TJD*B         @@ &YU%*hD" D?        O>	DATP D@        @AG DT)B A!B	       xG T!(A@A	         G T!(@A@A	       <GȀ"DU* D@A)Da       8G  U* D@B
        @@ $OU!*@D$       @ @@ ~T)B!B 
       !B'@ ĀT)A 
"	       @>	DNIU&WD @       xG T!(@@         @@P!'@         O ~Q%R!B?B        @@ @T#J!B?B        @D $W(@A@A	       O~!DNTWDADA      P A'  ~UE*DA!E      !B'@aBU)*PD A!J        @@$JV%DSAQ        #D'@?BU	+D A!      @@x"Dj!T A QHɑ	     >|     *)R"@@
         @@Tq)PB!BDD      ! B(>TA(A          @@T!(@A AB?          @@ U*D!B        'H B@HT) B@"BE        @>	$DNU&TD$@      " D@H   ? !A        G ~@ NyU&TDy@D     AGEм  ? !A       ! B" T)HD""(       ! C xU#*HD)a       'A")DR!T"IH"DRB     !!B' T! @O       #D   T! @OA	      ! BGԐB$R)$B@""D     "BD            "@DDTq)PB!BDD      @ C ?@UE*EPA"HD         @AG@B@D T+D!B        '@  T! @O      ! )D   "	B         @@ T+D!B         @@ ?AU%*HD!	!       "@DDT( G!B      !!B' AU(A@	""D        #@B? V#B A6	       'H @V%HJ))a       (@OTW*EPA$KE	!     @ G""Ȉ1jsUT"$@H     AAGBj!WD        @O $T)D A"
       #D B?S$DIHQ0@D      ! C"DP!W(EH" D     !"O@?BU*D  B	       G~I	$GNIUvUQD]DA       #D $IP!'AABDD      @ @O UT @O        @G "RC!F 
b      !B'@P!$DEЅABDD(        	   D      AAU2	 ?   "	B!       G~I	tDAUvUQD]H!E     @@@j	W! A      @ C'Ah!TDBDDH(      !!AGB$U%+@?      @! O B"S! D@      @ O@@U&T !~       'H U*HG?       AG
UU+DB      A BxWȡ9B"iMP
"       'AG*UU(@@      @@'BBjSW8BJH!       #D B$IV%J(Q/@D        @@ ?AU+D A	     @ GB  kTD"$DH      </I@ @W* GA%6	     !"HDB$P!'HQ/AD     ! #H'߀ Vi)`DA
B$E        #D'? U+IPBH*       #D  AP'@$
?      @ G  U @O"      !O@"DT @O
$       #D $IT(@(       @ @G 
T%+D!B%      P Ow"i U+DB E     !!B' P! @O*BJE         @O  U*G!?A	      UI4( ? !A        #DB?"RC!F 
b      @ @O   S$KQ/@D         GȀ"U}* E!BH
"     @@<!_ȤLjU*IRC       #D?HU JQ*@D       #DB?  S IHQ%"DRB      ( HO $U*H@ 	       'IOҐ !VS*C"DRB      !O@>DW)D       O$L,iE   "	B      @@O i_ A     A$BHqBUH똒oR Q(IH     @ G"""DkQ!? A       'IOҐ U*HG?       'AG" U+D        B'ˠ"?IU%+@ "|     @HG
	jQU0)D	      @GW)B hW	      @GW)B jURR     @ GDHݙUkwTDR7dDH     @@O  hA_? *       'I'_~V%H2EB       '@B;"P'B 	B1a     @@A@@O_b Un` I$JJ     @ G|'܁+tHi?RD(R$
      E(O|'1JQjW DB     A JA}"H䚯iP<IP		      @ 1Md          0    !!	@` @       Er "$H      &        1`
($DI	           @
$ @       p?  H " DD      p?  H@ #0      AA  @TD(B        ~  H 	  D`      p?  H! B B        @@ T@A(      8{ ?;A"D       ;8 AP     @8 $9HQ$A
!D      p'LI9%TRdI$G D       ~  B * #0A      p?  H>    @      @8 _R(8@AR!
     8#A 
Hp"EARBDIP@       pLI9%WRd @     9#@A8R$A!
     8{ǀx4 }O"D      8 8 QAB@      :#@$H4=OĀ      8CA
_DH:$IPA0	      8C8Q$
b     8  |9!TD"BD      :#@?v9!TD"2DC      8?D9!TDA)Da     8{ǀ8 QDA	      8A $J6ESAQ       8C?9	T!B       8CĐ!
4 AO     8#@?D9DTAE
A      ;!_@9DUĊ"HD      8;88pQR!BDD      pLI9%WRdI$DA      ; AB9T$A!       ;@R5"E@       P8 ? ~9DTA!E      8C@9	P$A      8C8pQR!BDD      ;_*;AP      8C9	T!B        h/	* "B       8C_I9$PA	     9 >8@Q       8CĀߤ9AQDA	     8?D9!TDA)Di     @8 ߈8p5PI$!"       ; A9	W        8CH4"BQbB      8C 8 T!B       D _!BUBHA      9 ?8ID""(       ;D@9JU," DB      8C8P$A
     8{ǀ8 T!B       8C@A_D 8 T!B       wDI'I9%UUTcDA       R!DD > T&8C      ;8 AW       8C 8 T!B       1pbD9!DD"_     @8C  4@O"D       8C!$9}Q!      :CĀ8pQB!BDD      tDI?5J A      8C$?(Q51RDABD0@     (8KI9ITB$I     	8A0_P5 T!B%          ?@ ~ Lp     @8C!_A9AT(`     8?ǀ? 4!O     @8 !?D":BF$
b     9# A _DB9RD	"D      9!_? 4 D" D      wDI'LY9uVRdI$DA      ;_  5A@      ;ߤI9$IW
,	     	9@_9 QD     D/  T BG      8C@A_D;AT!""D(       t
D*#LA9TPdDDB     	9 ߠA9QD	""D       ; A@9A$A	       8C@A_D 9TWB*A      8C":"AG       wDI'LI9uUUUd]DA     9  9	TB       8C@A_D~4PAB(QE      @8Cߠ 5@D(      8$8 W!B      @9!_I5!DD     9A"D4B$ A	      8CA9TB       9#@9TD?@      w	.?DHj"抩2"$DH      pC"jB!
b      wI%?{Ȕ)jRǾI%$JITS      ;Đ!ߤI8 QąABDD       	   H8      wDIwA9uUUUd]H!E     @8CU8 AO     p'A?)jRĪQ BH!      @y!|pR #8      @8C A9AT!""D(       p? T$F`D     @8!?5AO"     9?ϨQDI4AOA     @8C?@5UF*UE(C      ;Ĉ? ~8RB%D     	 :_ߠ9SA)f      ; _? 9ET"$D      ;ߪU5DY@A	     	:'P?DK 9	TB      8{ǀ?9IW       9H%?D4IA6      ;H	ߒ_ 8	C!%D     ;!5$D!? E     8?ǀ? 9"ET"$DO     @9 ߀4	GBTD<     8 8TQDBJD(     8 _B:R9BAJD!     8'@_Z:!ǸaD      ;Đ_":BF$
b     @8C"9W!$      8Cߠ5	G!A	      w"?HjĢ_Ą
     ;	_9W<" D     @8C Q;4BT"     P8?D9PB?A         	'@T&8C     @8Cߠ 7KQ/@D     A#@>~ D@C
$     9A "D8SA	=      8Cߤ5@(      @8CI(8	KA>D      r#qU_QBzlI	Q@      8#ߢ5|!FLJ      8!ߠ5$eC1	     @qB%?n&A"80       
I 8OI       ;N5E_Ą
     |!$Bz	*l2a-BjH@      w	JH
bk!D      @yA	|pR 5D*       ; 9TB?"     @ B!Oǐ!~p!#ʉ$!     8{ !_8	W
BUD<     ?¤h@?DD      8C_ 9	UԊB       p? T&8?@@ $      w"?"Dk!? A      1A9$D A	     9#ߤ5@Ɉ     $2Iʨq_UD똒;!DT(ID      8Cߤ5EOBTD<      8C?9}@	D     P<P?8 @A     ; 88 TB.A     91D5!DDT)      ; ?9IW       s!? j@ǺQ&1     9@R_I8 PB?A     ȐA
	jP2)D	      P;P_ 9 T*R	3       0A!_UE 9	EԊB       :{Ā;IT6F%     p k"	B1a      ;"?8 @B*U     @t"4LjJ !     @8Cߩ7DB?"     p
_	UkX!       D HsOI"@     ?π	B?	 k B?J}      wDHݙUkvFR7dDH      7 d9AG?	     @pC$B_ߑ	mJ)"_Ā	"     ; _I9TUW!      @8C?D :JD(U       7q*u8 H(_D     A*wDiAbR      7Ĉ?JD;ĬO<P	     py5JHjPI)$[g     )|!=1JQj DB        0  @ @       B   @         BB ?@! "H        B  @ (         B  !" ( ` p       AE              B               B     @        BB 
$ @       AE @       AD <  D`      A@   @@
 dP @      AD!?!B! @@       B"R    D`      AD!@!     @       AD "D@$"F       AE
 $            AD?@@      A@>     C      AA _! B@      AA	|"H! B(J      AD  !BD
      AD	 $@H@$UA      AD!D?B!       AD 8~@	&II @      AD  >@! G!\ 
       ADA"@ @        AB $  @@/(       A@      @      AD ! !       A@   ?@  @      A!D?  D$)a       A!@ H  p      A@($`цBH       AA         A!@#H!B(      AG  #      A H ?         A	@@ }AHcC      AD  $SF       A@ ?' @       AE B(      AAD &x0@        AG I A?	"G      AGD?T$F`       A4PAEaC      A@
  @|@!\1      A!@ PE   @       AG?cI?      A@ >$"KD      AE @?%$& 0      A@?@ !@       QG         AG $I       A@ @@?       	D" p      I)A`>D!CA      AA$0        A!|~PC J      AD  ? !"           B      A	B?48P@A$       AA R	`gĠ      A@Î:T,UPUBJ]A	       @?@@         $%        !??"  <       TyRJN]$       D@f0!
	#       _Ą	>$H'HD?BB      A@ ~>"BD        *HC!	       """ Lp      ADDBA(B@        ! |  CEQA       	R0V)_D#      A@??Bt"	<D         aü|       

()  "	B       $D!@@       >?  !)BJQ       D">IAE
"A       ψ""|| ($PrA      $	?@@      $ }!(@       ω 	$ϐ       *9$"*d            @ " H  ?       #	 $"H$Q @t	("@C       @   $ P@q            ? @"       x'  #$ P@q        "#@р"$Q r
 "      @ A ?" DHHADA\A          ? ? B@        8#  8"$ P|q(@       N'@""EHB"AМ!      ! BG@ FHB"AМ!      ("H	,%
     ?      @ @
@QH&$PHpO 0     @" Q<I$Q$t ( @       @  "%Rx/H        @ @@!@ D IA@(        @!C%P tO         A D ?D@  @?          C  !"B$DP p?       A D   " DL       A D ?@@DD       A D ?@@@        C !"B$Qt/H? B        B'  b D~I AOA      @ B' ? b"DJBF"
b      @ @O@ !DB\HA?!       A D ?D@ @        @O ?IDIAAA\DP       #@>"E$S`qO          @@  DII@          G A""DDHB"Ȝ     ~G	    A D      @ C@?	DKI@\(         <O $IDH HQ@P       #DA? DJ"EEJ߼ P        'H ?@"E$JI"Ĝ"       "HD  "H@ER\*U       $@_"%TR@xB        '@A?IDH"@"М
      !!@  UBG!        'AW@  I	D\       O*cDI@"М*        '@ UĈJ*D@        #"" ?~B	BRD     !@`?|@        #"" >>DD₅EC     @ A DE  @@     @ }DH    ?         ?     @ }DH    @      @ }DH   @(I "H     @ DP      @      @ }DH @:#@" D      @ DP       @      @ DP@ @    @        @ }DH    ?     ?     @ DP@ ? @1 "H      @ DP ?  '@ 
      @ DP  CA       @ DP `01  p     @ DP !B  $ H      @ DP        @      @ DP @( F     @ DP L	A       @ DP > $@H!AA     @ DP  A  `      @ DP   0(       @ DP !E!AB 
     @ DP      " DA0     @ DP $BI	" B       @@      A "H      @ DP   D`     @ DPP1          @ DP D<A@"HE      @ DP ~    @@     @ DP " D@IL ?     @ DP 	!B A!	a     @ DP D@ qp `       @ }DH @    B      @ DP @A    @      @~"D(@ B?B!  @      @ DP !BB!     @ DP  @! H       @ DP HM!BĄ     @ DP        @ DP	 $@H@$UA     @ }DH             @ DP ?@@?     @ DP?A       @~"D(@/! ~@B        @~"D(@ P@CA      @ DP   ~ A*      @ DP	0"B@      @~"D(@ 	$II A$Q	      @ DP @@DAL`  @      @ DP
 0|A      @ DP ?@@  ?     @ DP.! ( F%0D       @~"D(C! B! B  PC%8D      @ DPP1   @     @ DP  $   @        @ DP ~DEC"
	"a      @~"D(@D$(B
       @ DP @	?B A       @ DP @      @ DP ?"D$I"$DHB"     @ DP ? ? B@        @ DP ~$!JH" D@     @ DP  !  D`     @ DP? BD	r$ 0@     @ DP    O! B       @ DPD	$@H         @~"D(@$ D ?  @	        @ DP ?B!B   @     @ DP?	"@E$pS ?     @ }DH  $HH!"BD?     @ DP  D A"
 #      @~"D(@ 88     @ DP      @     @ DT$$HH"BD     @ DTI4CȜ) $$@H      @ DPB/B!"B     @ DP($`цBH      @ DP @A " H     @ DP D@      @ DP B " D ^$ @      @~"D(@ @         @~"D(@ @     (        @@ H  p     @ DP~>$DH"$HHB     @ DPP0    @?      @~"DA /H?A A       @ DP ?	""DD B`      @ DP$@0A B
c      @~"D(@   A       @ DP |# E@!(BA      @ DP O!"B|
     @ DP  CA       @ DPP        @~"D(A ? D `A@(      @ DP ??B!*"C      @ DPdEH?DD      @ DP  ?~: A!      @ DP  ?* #0A      @~"D(Bb L   @       @~"D(@	$II$I!B%      @ DP"H   !       @ DP _A!@       @@ A* #0A      @~"D(@?   @      @ DP?>!AP.H0
       @@ !A      @ DP ~$"Hw T@      @@$Iq!RD
      @@   A	L     @ DP ?        @@ _ " D0     @ DP?@@DD     @ DPP       @ DP@?BC!J     @ DP (_!     @ DP ?@ C     @ DP " A!"IJ#@      @~"D(@  @   A     @ DP  " DAIDTP@     @ DR~>$DH"$E%      @ DP @dQ      @ DP?$!"B
"     @ DP"H?@@     @ DP @G B 
 #     @ DP RQ D`      @~"D(@| "x)_        @ DP        @ DP~$THO
"
      @~"D(A    @       @~"D(@ BD (       @ DP  A 	       @~"D(G ?B p0      @~"D(A  !B p     @ DP  ( p     @ DPP7ـ@      @ DPq"	B       @~"D(A $HH!"BD      @@ A       @ DP RQ T$F`      @~"D(@ ""D|BEA      @@?DD  @     @ DPB!       @~"D(@ BD$H  >      @~"D(@ B/B!"B|      @~"D(B"CB ON A      @~"D(A ??B0!BE     @ DR(>I XB      @~"D(@! _ Bd8@ <      @~"D(GB ?	$IA A       @~"D(A Ĉ%Hz!+BU      @~"D(@ !^ ~R      @~"D(@?C!@       @~&E @  ?@@      @~"D(G          @~"D(A   B"T      @~"D(C  " &*!@      @ DR$!JH'B       @~"D(@@?A     @ DP?~ iU$1      @|"D ?@A      @~"D(C2!_Ў!*B!      @~"D(CPD"E"*RBc     @ DP^ H	"D       @~"D(@ϾTP:&ABJ4      @~"D(@ @         @ DP"}!sA>D      @~"D(A$ @@ALa     @ DP?cI?      }$D  	!$I  @      @~"D(@  ?@       @@ =!%EI!0>      @@ $I,"I       @@  (   @       @~"D(BAB * N%	      @~"D(C     X8      @~"D(@  @/I D	      @~"D(A ?"~8 @w?      @~"D(C	  A $ 08       @~"D(@ ?B  @      @>(!?? !)BR%B       @~"D(@          @~"D(A? >HD!CA
      @~BDP@   ?@@        @~"D(@)H'I       @|"D $h?   @     @ DP ??B1rT"!~      @~"D)A$!  W"@	"DD      @~"D(C" _DD     @ DR/@HD)PA      @~"D(A-         @@"||$GЈ      @ DT? yh%bJU ?     @ DP@ ?      @~"D(A	<BH%@I@       @~"D(G  @ALa      @~"D(@#H'       @~"D(C  /D A	 _      @|"D@?D@ @      @~"D(@	 ?A$I$H E!      @~"D(A          @ DP !"~DB$EKI        @@?  @      @~"D(AB 	  ?      @~"D(C! /P@D#      @~"D(@?ID%S@?B      @~"D(@!B H	*      @|"D@     %T&9      @~"D(@  _I"$ID      @~"D(@ @<
       @~"D(G"dT$F`     @ DP$	!"@ B     @ DP  I AUCDD	      @~"D(@Q#I D	      @~"D(@)Rb@A	     @ DP"T|E1DA `      @ DRD"D A" A      @~"D(A 	2uIZ!+BU	      @~"D(A"    X8      @@Fo ?@ 2      @~"D(A$0       }$D   !       @~"D(@ @?    	      }$DD?A#      }$DDH@!  >>      }$D E( %C      @|"D   $I       @~"D(CH<"@\$H       @~"D(@ ߀?~@!LX
      @~"D(A b	 b3 	"!"      @~"D*G "       @~"D(B CDA?       @~"D(@PA/H  	      @~"D(A?48P@A$       @~"D?DF9      }$E ?@@      @~"D(C?B        @~"D(@ @ ?D  E$%      @ DP$HT&8C      @|"D$?  >      @~"D(@@A@a       @~"D(G	D1U/BIQ @      @|"D?"}$I)$SO       @~"D+ (Q!CĀ
<$      @~"D(G"d @      @~"D(@lF8C?@@ G      @~BDP@  !@@      @~"D(@H	?P%  "BD?     @ DR  \OA"Ea      @~"D(A $Q"%DI       @~"D(@	P?DI	       @~"D(A>>@A        @~"D(C!?CI        @~"D(B?Q4p"PY!B
#      @~"D(A"DETD`I$?       @|"G?@ ? I$%       @~"D(B?8p@'A #      }$DA	R?~@2c8̀b       @~"D(A ̄a     @ DR>"w	      @~"D(G$?   "	B       @~"D(A #DD " DD      @~"D(A@DB%M.Q      @~"D(C	 B5A      }$GB!0      }$E @?@@      @~"D(A'HD`@$
?      @~"D(G B^)ykK"       @~"D)@H`a ZR	      }$E  $O       @~"D(@?A  O      @~BDP@  P BDA      @~"D(B? @y!_"D      @~"D(C $^A ȂD      @~"D*B$  w  OA?       @~"D(@  0A      @~"D(A!Qs	      @~"D(@I!@%"A      @~"D(C!??"  <      @~"D(A	~H  wA!~      @~"D(@Ȉ"$BB	F      @~"D(@I!$CA      @~"D(G   $@2      }$D?2      @~"D(@ OD.IBPKDA0      @~"D(G   $@2      @~"D(B"~$I$ _%      @~"D(@@ʮ" _~9"DD "       @~"D@
	Iu$PLp      @~"D(C "? ?@!B8
J       }%DB}$#DBDX      @~"D(GȈ? ) $#      @~"D(B N? >@D!OIR@D      @~"D(B?A$!C  $D      @~"D(G

()  "	B       @~"D(CQ  "   ?      @|"GD	?@@@       @~"D)C "  	      @~"D(GȈ""||	?A$I       @~"D(CH"?|A"$D0      }$D @??@@      @|"ED  ?@@      @~"D(@  o 	      @~"D(@	@؀?      @|"D"??BC      @~"D(Gψ>!B>|"      @~"D(@U
("       @~"D(C$?(H       }$EB%Hz!	R"      @~"D(@B%Hx`#0H!~p      @~"D(G"
J"@f      @~"D(@?~PEЀ      @~"D(ADqE?A	      @~"D(@	>AE	D      @~"D(A	$x<IB$ҒBB      @~"D(@	=JID      @~"D(@A"|| A      @~"D(@ !^I"RЄB      @~"D(A">T \>D      @~"D(B ??|wP
$       @~"D"  O? C      @~"D(BA?I<I%/"JA#      @|"D'  B      @~"D(Gg ?A0A      @~"D(B!z s$KД/BB#      @~"D(BD)o!$!      @~BDH@( 3  }!CD      @~"D(CD /DBY&      @~"D*BA$C/O      @~"D(B)6TA""Ĉ"      @~"D(@D*|TPBEEA      @~"D(@
}I      @~"D(Cϐ?PI  	      @~"E	$ A?A      @~"D(@w#AO      }$DA$_" |      }$D  i<      @~"D(G*U(!B	C#      }$G    @      }$E$E@a       @|"D !A_!j
J      }$G   $>      @~"D(A>$ C%OҐ?B      @~"D(BG@ |%!@B      @~"D(B? y!'H"D      @|"DD	 'I5RGIE1      @|"DIJ @Q04      @~"D(B=R7AA""Ĉ"      }$E|I T#RH(B?I      @|"D@	$?濫THOE1A      @~"D(A7E~`%$      @|"D!򀄿s$IΠG9"CE!      @|"E@κ?       @|"D	#ʄ$J)'BH*D      @~"D(A ?\|@
       }$DA!OA?I	RO      @~"D(A	
$2#@I	      @~"D(A*0@A      @~"D(G q>D%R#      @|*E>2HD_  D      @~"DAB?~TJB      @~"D@ω 	$ϐ      @~"D(A?D	t7pʦ""      @~"D(@ITB!EQDA      @~"GDO>>AUKQ,      @|"DTs$IΠG9"CE!      }$D 0*wp H	"\      @~"D/\$D#      @~"D/!WUCUXG      @~"D(@!TC"EQDA      @|"D?T	  T(!_>G      }$DD˺$.D^DRK?      @~"D(Bϒ$(Lؤ%      @~"D@U!#_      @|"E"Cf"@!Eǟ      @|"GDO(HE@O)$      @~"D(G q*DuRJc      @~"D(CQD?bĈ|      @|"E@κ :"Cߒ$?~      @~"D(A@|'ʥ*      BD H  @
$ @        
 "!D@ I!0A     !(AP?T B@      +T?HU BD!"BC      9+Q?T@A!B       'RB?$8!RDD!A     @ Q?"D8RD
"	     @)W ?T@D! B?       " $H` D`      @BY$DLI9%TRdI$G D       #PE?8 AP(       @	_XDELQ9EYDd!D"     (!PB?T"@H
      "PB?9!RD
b     9+Q? T@A       ? l8A* #0A     ""TB""v9!TD"2DC       :W?Q9DQTE
A     B	H?YTI_L%8TbdDB       BPEBH:$IPA0	      Q ?|9!TD"BD       #Q"E	?8R$A       QB?A}8HQ$AJ	      AE  A* #0A     @ WEB8 A_     GBU	X$GLA9WBd	$@D!      zWx8 }_"D      *T"APU@BD!      A(Q? TBBI      !(AW!U D @        W%B$I9T" D?       !(AP ?BT"BH      *!TB?DU"DH>D      *TBUD?       @DYDLA9TPdADA       BP?8pQR!BDD      #T"E??B9T$A!        BP?9	T!B       @BYDLI9%WRdI$DA     !S$?K;ITԉA" D?        O! )(JBT%B@      " D@H   A* #0A      #T?H9<IT!BH
D      'QB*U9TV4!B      D  A* #0A     !R"E?"D8PAB       #T
 @9JU," DB       R!DDA* #0A      #URB*U9TUTBZ
&      *Bq	R?        CQA!CQ	$D      " $T$F`}EI`       "PB"?D9|!TDB       (QBUD(A?B     @ Q
? 8	Zd"D       " $T$Fb#@ "      'P?U9TUTB(E     PAIEYE_LU9UWUdUTEQA      A)ARBA   UD(A?B     @ BW%B?A9AT(`      #T"E!?B9W䄁	"D      zW%B? 8A_(      #!!
PQ$J		  I @       &B " $T$F`      #P$I9$IW
,	      #T%$I8 AW       !yBT	R?         #P"E?8 EUԅABDD(      !S"IT!;S$D     !_E?"D8R$ A	     @ BW?U8 AW     @!W%B?I9!TD      !Rň? 9@IT(`      $H@EDRDHBHH"$BP       @@@P ?  sB	""$H(        BW? 8	S!%D      #T%$I8 QąABDD     !WE
?J91RD"D#@     @ R":BPDB	     !_E?>D8TAB        !RB 8TQ	"$DD     @ BW"?@9UV*UE(C       C%A?
~%r0B
$      'P*U9TUԊB*     !zREd?H9!W%Q       GI$> q
" E       AMQ%$Q~pҊB6     !>RJ"$9RUL"D
"     !AE_ x*sԪQ%DHd      AIW">"v " A     !AE!>Jtr!!B      #TB*_9TTDB
       GP?B>*r/I"B     ( J_$9IP$	       GB=B>pBԦ)
R%$H     !_E ;$TB$I     A#@>~DAH      #RE?68 T!D     !
R"?8 A_*BJE        "W"9|!U!BH
"      @A PG?A>sТ!?
"     @ BWQ;4RT"      YB??9|UB       H WE	?R9Q$A)_       "JR"?"D8AP        
I I T&LC      @AHG%$v&тA"80     A*D?D      A D?RJsB!~       "W"9|!VLJ     @ BWE 9T	DD     !_E?A9PA	       Ox%iG{c?jp !B?A     "E%T)	tTߪQ>BDa      #P"*T8 P"*DT      'P?A8PB       #TB 9$T?	       G|Eq>r*VI_       R""?I9$P"|      @A$GR$ x@D@ILp       GUT? > s
DaQ       Oe'	>(wЂB_!~       AMY7%$Q~pҊB6      OE~E?Ap B*U       #P"58 PB*U     #DDQ/U~UrNR?QH     RJ/>"| D@ILp       G%_$_~r2IB     U<(KkQH8       #** $ KąOҒ?@     !HE@D@ILp     T Lʪ  $Ts K䃏ʒ$@      G%^%${r""$NH     @A 0D$B!!(      "|$~ RI     @!"A $A $ RE%      ?0$"!
(      @A	EHHGH@!UT"       C!$ @ !	""T       D"ED$MP&@R$@      @DGHHGD@!TT"         D@I	  P*`?      '*$R_"DHQE
 A     @ B/$HP E !"J      !$I$I?D$IH$HI*`@     @A	?E HAHD@TP        !BH!@B
       #!BH!@B
 (       @ 'P@?H@ P*`?     @ "_	$II EJ`      @DGHQIGD@!TT"      A |8 A$	D!     @ @?H"DH@E
 A     @ !"DD?(HQ@I*`C        @/R?$DHIS(P*`B     @ "$D HA@Q
      !!"D@$H	 E@        #!"DD	H EH          A4HDB
         @A"H DH EH B      #!"BH%@B
 (         @_$II%B*`     " A(Q?"vI @U*`C     GI	D'HAIB@	T%P@!       @%DJ_DHJ%H EA
 0     @ B HH@$JUA      <(Q"DI @EP`a      '$DH'BIE	JE!      ! A$DP H EP          @ H! EHJ       x!BH!@B
         @/R?DHQ@I
`D       @A"H(H E@          A$	D!     @ @/D>HE%HJJ        Ѐ A$	D!     @ BDDBH!@/
        $H?DH EH B    ?!xDB*(G        )$R_$II  P*`?    _DD$Pa?!!(     !!HDaBI)P EP J        @)_$K@@H A     ! AT>ZHJ *@5`     "
!.  aDQ      @	EHII'R@IU%TA      O"I	" P*4@     @!*G$@? !    !!@C !"D      @IE'HIIR@IU%TA     P !" ~IE	JE!      H"!*DTRIIP
       @	E'HI'R@U%P        A/Q?"DIE	JE A     @ @_>  K@B
 (         @/BH!@ EHJ        @A"H$I EE
       @ @/BI@B
       GIDG	H"IH@!TR!     !!$D"DH EH > D       @/R_$II%E
 A     ! A_^HJ"H"        A/P?@ DH@ H*`       @A$DP_BD I %X        @"H H%PJ       @IIE'H#R@IU%T     ! (b$KKH	ER*`?     @ D$J(H!           A/BBI %H*       #!(DP?BI	 J!!      #	(P?/DRIK
UP*`B       @%$JH!@B
       B
JHII'^@ITP      @	EHAIP@AUTA       P!_8HPB
         @!_*TI%HB
          A/P"DI@	*U_       #$DEDK'@B
      !q+QbDI @Q
 _      @ q(d/J EH * H       @)$R_?II@ C*`       @_ H%PJ       "@/RDHqP	%RJ`      DJII'đ[I[I'䐒@I& A       @!B H!@B
       '!D?AI%PJ       '"$H_%I%HP*`?     @ JDHH @Q*`         (P?/DRIKP*@       AI>HH $	J( A      ' _ AI%@
       '"D!RHE@      !D!D%H@!/$     TTA?!!(       @"H  K @J
      @ @/@AH@B
 "       @A$DP_@DH!@B
        @"D!JHJ% D     @ $DUDI EH > D     BAFHIIR@yUP     !!@"DH" J!       'A"_*UIU0%PJ      !(IHoDIP	ERQ        @A$DP_@D H%PJ       #	(W D@IK(P*`B     ( HAII%P$5EaA     ! AT^$J$"@5"`      GIIE'II'PTcUTA     @~?!!(      x!BH!%PJ      Ab A$	D!     LD  aDQ        A/B|HDEA
        #"H H!@B
      @ @_AH @Q*`        @!$D_DIHERJ`(       ! HDfH! 
       !!@H!@B
         @ADD^@D> H 
      @ (Da?II% P*`?     	dEU 	 aDQ      #!(D_!BI	I
`      C"DAIP@AUT@B      ЀFD^PI!4	*U%       ! (Da?II%@I
`D      x$DH%P%DJ
       !$$H_? HP*`     ( HADKP*5aA     ( H!_HYH	%b* (         @!B?II@ERJ`      ! B=J>\" HڑTB      @ @ @?AI@I
`D      D
I*D#HAIP@UT@B     @ @P^?  K @Q*`       #'@_? J EE
 6      '!_$II%H	J
 ,      'A"_*UIPJ      !A/B_I!Rġ      #!II@P*`       @_II%T  A     @ @P^ H $@	
UHa?!       !$$R_DI EH > D       @AĀI B
 (         DD!OH* 	P!       xB$^%@ K$ 
 b     !! _ AI@I*`       'Q>Ĉ1JsT,5@`      x $T_ H@B
 (        #D^IIIHB
        ADP_ @%CI J       @_HA@"Qa       DD%KHP*	P!       '	R`Ā}J*(ڨ@`     @ $DU6H@       " A,U_"I9HQ
        @A L "@"`D      'J$^P%JA@"Qa      @ @P?  K@$	*5`(       !!DD"IT*&J " D      xA*TKPB
       @ @P$^J%(!A     !!HDH!D%JUD`(       @ @ @?AIERJ`(        GIIEwAIwPU@]UX!A      "H!_DI EJ` ?     ~|IDR$@" ?!R      #I$$IH /J B        PQ|!H     @ @ _  I@B
 (       !$DH"DH @
 A     @ @P^ w)JS2h"`       @!_ I%_ʠE      H y/BDHI%B`     'R$"H$  l     ! /QbI@Q
@      @B5 Ä@ | !H     BAFHKU@UUP     @ @P^?BI  PJ       '	TT>ĈJT*ڠ5@`      #	T??H!P*UB      'IR>{Ĕ)JS)H5JaTS      '	JT^)DH!H
U)       xB$^%@K"JUDa       #I$$IH!!JUD`      @ @ HUH@B
         @A$DP__D IU
UJA      !)dRUPI %HJ? B       @"H IPER 
      @ @P^ H!@$	
L!      @! )$R_?II @A
         @!_ IHB
         @A"JC& 
 b       H$ H!(D        @!_I%\ 3       @!_I@	T        "DQ$H!H$J A     !!$DU_DEH!@	
L!       #($_ AH$PQ
`d       _%)J\)"TP@ 1 A      #/P_? @I(5H`%      !$RD^D$ IDR*`       @!B"(I@B
        'ADDJT-:5D`    B/ȡ"AO? !     ! A\$H "@ $ H     #AI!HA" J       '_RDIPJ       $A_)JS/P jq`E     ! !JD^DBHE@"Qa      @ H*&D J      #!@DH!D%JUD`(         D!$B HHJ? B     !DDI%H/
 A      "HEDĀJ*(Z@`     @ @$DE6H EO B       D!$B	!HHJ? B      DIKđKgI&I      )_AJ*JC`!     !$DOI%B
       @! H$ H3h"	JUD(       '"_*UIUXE
 A      @!H&ID)2D      #!HD I'J       &pQDHĀ>KH(JE A      xAIH_ʄ       @!HE)*UI         #/Q?DI %_ʠ      !$DH I%H	%RJ      !OĀQK5"P5       H"!_)^I@/$      "R$^φJp)PUb`      #)$_$IH! P
T*`       A_
IUPJ      @ @(P??@ITUa(C     ')$H? K 
%R        "A(Y+ȒI'HePJ_     ! J^K"H! *Qa       /DRzJ(+UR      '_> IPJE       " P I Ei
 f     @ D$ I@/
      @!@APD~ *JU)PUHd      "!PD>J +E A       AT^vDiK(*J         B
?D~"       @!_$kI%J      !IQ>QDH)J 6      #APREJ$+D C      '!_IH        'A"_*UI@B
       #H$ AH 	
$ ?      !$$O_%I(
UW`B      @"! PJ¡       !!$DO"|HP
UJ       @!B?AI@
 A      #+U_*_IU@W      @! !_^ ~I	! *5Qa" <      '	R>{ĀK$(PB!      #G^QK5"P5        A/P_ AH! P
T*`       ')S$ I%_ʠE       #/R_?I%B
`      !_%KX*ja`     ! By	ܬI"%HT  _     @ @P^? IPJ       UI4(Ѐ A$	D!      'AT I P ~      !!@ "J%P
U*     $@*$D_I}UP!     D"H#AjUI}(	
P!        $$D?@H DJ%       #/$R_ĀIPJE      x|9PI
#f@ | !H     BʑIWHJJAU      /E?HU@UJ` (      !/BHA a
       #A)W(_I} @
5R`     !Ld{ĔJS@/$      !%DM> HP
UJ     @ @P^?H! U       @ @@ IPEh0@     'D|H 

 "     !$D@?"DHEI       #(I_I8P*`     ( H!_$IH H        !$$O I_ !        @!_ I% A     @@? I! K@!@      'ĪHJ( !     A#@>~ DࠡO
$     @ @R?"(K@B
         I"O"$J O	$0     |"'ψ	" QR1*
        @!_ HB*        @!_DI5G
Ȁ     !DI(hBK)\	ER S     "<R҆DJ|* jI`      #/P_?H@I
`      " qR^QBzL /
I!Q @      #/R_?*TKP       (JDń>J(@B!       !I%K)0ja5     @ @@^$UH!)A`        PDM}%U(_      @ @P?I%@
 A     "%tJ%ߒI	P	EU a     $"Ha$^)DJ)pV       #/R_?DI@B*0      '/R_?IH# P 
       '!ĐHIP$       #!OĐ? J  ʉ f      @#ABB

@? !H      #_^?I% H      !$D@?AIE
 A      'A/U_* I J        (W
I} R!       
I!O"QRDB     " A=@EJP*Jʔ"@       )$W1UIU UJ`R      '/B IPJ"      @!HD>N',@* 0      $DD?I @Q
        ~A B?F | !H     @ @A^DI)HB
        $D_{Ĕ)K)H5JaVR    􄯧JJG     $$@$I@/$      '	RJD
bK& U      $O	(ARQ+      'AE$qDJ+T"`     "($_ (IU`
e* $     !DDIK-
j=aŀ     yA#5Gg@ | !H     @! T^RHI	3J f       @!$IUV     "(IR$TI))$T)      'I^JDs H" J A       @A$ID/UT`<     #_.8HUJA      !_>UDK '*        #!Đ? JA)P  1     !(I@2K)PI`      AH  U       "E")	#UPJĔa      "H_$I)*       '!A
D%H!)HZuJ`     <'EDIIHRJ        @!U_A}H B
 I 0     !x@ߑ!|~HCBD      "_*cI P *      $yR@DIJ$+5f`       @A!I|   D      'IR IH        I  P88 !H	      @G"?"]*ԪU"      #/B IPJ"       #_^?HRJ      ! IJLIA|L"cR	      'O?AH  U         N
)	">UP"      #_>5H D
  B     $  OI@Q
        #Q*]
wIUP
]ʪ        !K>?II% H " |     y!!2
I( !H	       @I$^UE I
WJ      !  $I*]T`E       '/R_?IHRJ       'QT  K/Ua#Q      "O{Ĕ)K@/$     '!Hު5HU(- 
UQ`<      #)dTVĩJH/UT2     !D""}!
PJUQ     >EGBP | !H      /_>_DH$U?      @ @$DE IR=     'Q_ J( R     (AG
JQ0(D!       #Q/B?H       $ Ab^z*K!P?T)      #_>5H U*U      D%Rt^]ĈJE+zU]     @ @P)K$U?"       Q+Q IE TJ?     'Њ!_t~H%P
U*     (#TQDȅJ(@E A     #_?kI@ U      @|"EHI @IA|L"cR	      @
]	U"Y  ʠ      '!A(kK9 %"      $DI"UYwC?
I#      "H)$_K_ʄ       AOP!"~x!!ʉ$      "|!~$DH#|*p       #!^*IPJ"         )DW%I}
@ A      HD!!J1
Q       'OĔIPJ"     ȉ"/U~UA/U$B     !DDRIK%0j-a       O/R\I"!U_b	      "|!@LE_J|$	P!      @ _^~~J*ʠU     $ RDJ /Z_     $yRJDJS?J 6     $ P$DI ?* R      'N^;"H" ?U1! a     H"@D)Kk-
Js`	!     "'AODI$ n;     %(O}%"=1JQTB       G	J?!U!/<	PTW       yRJDJQ)H5[g      !$ }W¢_ʕ,     *<d$E K/J I     "HI$UDUK'*$0     DD(*wz@U]spJց R4jB |     B	GC       @I!DH!@@! @      #!B@!A (          !B@!A       ! D_@  A
       x!B@!A       @ 'P@?@A < P?     ! $_@B@EH  !\
       'D'BAE	AE      @ "_	$AI Aʼ!P        A/P @A @          DB	 <@P      @?HG$HD@AB       @/B?@! ¼          @ @! A\@     @  H@AA\A     @ I$BI <P     " A(Q?"vA!@<2PC     @ 
D_HD$@I @ `       O HJQ"HBWT)@!@       @DDBS
(<@P      x!B@!A       " A"DAQ	A\!     @ AA! \ ?      ! AD @ A!      xDB!!@QP      ?"DAA"     @ @?H ~@	!\      @ @ _ D @   ?       GI	D'HAA@	'@!      #"$D_@	!\      #!"B@%A (       P "^@E <P     "!(D!BA	 AМ!~      H$!DĒ$BI	@     P ! ~AE	AE      @ |HCA	!<P(        #!D?BA	 A!      @	E'HA'@'       @IE'HIA@I'A        ($P_ AA	  Ȝ      ! DPC 0      BBJ?@?       @%$J@!A      ! A_HBH"      @IIE'@#@I'      OH!HHD@AA      'D6@!        #! C	!@        @$DP_  A	!\       ! B<J>^"AHXB      ( HIA%Q<EQA       @?B @!\       @ A} G       ! 5@@<"P       #"H @!A     ! _E	 A!J      @ | @ A     @  @ AA     BJ>HB'"@     ! Df@!       ! DPAA!~      ! DIA% < P?     @ @/@A@@
"     @ @A@!@<"P       '!_$IA%I	,      D
I*D#HAA@@B      GBI?ȁB @!@     8'*#C!\@
       !$$R_DA AȜ> D      x$_%@ C 
b     ! Df#@A A\P @      $@$DBqQD     !A_B!D      @  C	 AD     @ D@A !~        @"BC 
b     !$DJA%IA       @!B J@Q!@        @"H AQAҜ
      ! A<$@!@<$ H     @ @C ?        "HDĀB
(Q@P      #($_ A@%P*Pd      #A$BI	 AP     ! /QbA@?@        $ @!D      '$"@ l       JQ)TJI)DJA)4DS      'DDB
(Q@P     ! (h?DP!CH
< P      !	T"F!\       @$AB	$H$A ~     @ @?  CA	!<P(       @ @_ @!A	L      @ @_?BA \        #! D@!EA\DP(         OxR) @y#R*#     $D$$JKH C$@G?     !$DOA%        " 	>$DOCcE$	<$PO      @$B?A	t	DP*C]BA      /RzB)\R     % yD_A%I
D      #$ A@ 	$?      @ B(Q^ITG) 8R        #!D AA       #!D!B@
P\R       @)$_ A		!\
"      #	$$I@        xIGI     &pDHĀ>CIAEA      #AREB%DC     @! $ @3i	A\D(       "!D>B!EA     $@*$D_A}\P     </	D @GA6     @ @ H
D%	!\%       "HI@A Af     A?ȁJ CT5AWT@C      'ĄEC!@     !ĀQC5P<       'A A !~      P H"C  *       'ĪHB 񨜉     @ ACA"      (
Dń>B@B      @ @  APA0@     @ @   CQ@P      @@@ _ޤIE%I!_	     @ @ _$U@!	AP     !!  "BP
\*      /E?@U@\JP (     @ @_<@A!@?B      'A/U_* Aʜ$       #!Đ? B  f      #/R_?DAA<$0       _|UUUIEQ@@: f      @@@ ?ȄJ}	$XH"      /x%$^F'@!0     $$ _$AAʜ$     " EB}'H*@UP*RPA       @ A	\DQ(       @  \       !?UDC!        '/R_?I@\?      )I? B
 <_@     "{Ĕ)CA$      'Q  C	\aQ      !D""}
APC$UQ     !JPJE{c	j@ C$ B       @   @  !B!        @ A!"E$I$$         @ @?!$BH?@          ?!B! 	B"       @@BAQBȌA       @ 	?$h1RbEȬA2C      @@B? QBEȌA       @@	?T$IX       @	?$Q"EČ"       @8	@IR%LI       P@BB?,ԪYB,AD     @ R%$"UVW۠9@@     >EUB$B !       UI4( B !B      !!@g
@I! B     @@$$O>"	U⬕UK(         CB?TL"      A!?R#T
@K! *      @ E%$ !SO      A$Q>>!PBA (       x!!2
I(B     A!'>~a"B     >ECQ
("   B     " UT>   B     A	"?>!PB@ "      @@$D~>~"UWˠU     @%%${(H!RBi$      `ZRV!1	iK  @     &Dȟ     DCdL     d7@b  @        @      @      ?H!"C    `3        ?"IH A 0      ?H!     
$1   @         @
$ @      D_  !"B!"@        	 $ J@B*d                            DP @        ? ?@@     D  	 OA`          #D          A       @     ?    Db#CB     D   ' 	H       ?   @      04੢E(!      ?H! ?,@ A ~       ?@  @         @ "      D_   0 _ <       A4PAEaC      	? >@DH      ?@@       ?@@     Db#  	~H_ B     @$HEC!J     ?H!   F       D" D@	     ?H!     	B"    Db# " &$    Db#y2('!	    Db#$Ah\~1      ? ~ GA!     
S*@G?@      """ Lp      B \!DB)*      !?CI        Ѐ%"RI"$J`%L$    &D"?%? ?     ?"  ?     ?UP!U@ |"}
B     Ȁx#}$B= P     D_ GP_ GP_WP`C     A #I"L      >	#
@     	HI!I	_     DB~?qP}$P     (P#A     H T ?D       !$s@!.8UL      @   @     @      	 @$$     @       @    $ H ?      " 2	    @           ( p     "$P'D!@! `      CA  @  ? hp       ? @A  p     DHGA	}IA BJA     D H !B$I D $ P?       @   @   	B"       ? > @$	Fa     D I'A ߀A 
"A      @   @% H ?     y! 	$ x@!BD        @  D@( p     D H@G$@ B@       ? "$     D@H@"@  @@(@      DH<"D D@B)Pi      @? " F! B     D K'	!	@      D H@D@AA       ?@ H"N     DH$G$I(BPB#PI!     ? C  ?      HB?> @!C!B     D KBIII@      D H  B  A@	$PC      D@H'!? _"CF 
bC       ?@ #B       ? <PB@     D@H@!B?A@D(`     D@H@ B
"@      @/ A>"؊B.CP!     @ADGB_d >*"UQ=HHAd     @"!"? P8     D KB? #DEH P@     D JH! 	 EH*@A     D KG(_} D@$RPB     @
%)
@#     D<OA?I	HDD$@       ?)(@C     D KA?G"AA      @ D^ !? A     D H@GAB__  EPUA      @9_S9"ؑ     @	AA? P8      @"$5 H*U@      IG%$"/ȩD     ?@	@?UP Ȃ/߄     AD$"$N,Q"@(@      DEPaBjd A!_      "D4k @C@        AHI&I!B*"     @@HA Lc   ~DHP"DH      	PJLȈ&$Jȑ"$DH"       
H&Bȡ"/H"       A"&DԊȡB!E*"A      #A!B"fETP      ~DHѦ,@ D"x   @     "Dň "? ?B    Dj#U_F5VH"AT@      GqT3URNCQ_DAD"       'A%!)bR!HƒIJ<PRB      ! A"&$JȡB B*      ~DH0aLX@ @  @@A D       A,҈~&JʡB)e*"A      GrICVC0@LPT DA@"     ~DHѦ,@` 1          A&"ȡB"H"A      C(/H&[/H"    $IhX  @"@      GqTC7@ MTVQDEU@"     D rTC7DOQD D`"      `p    BD      GrICV7@ MTVQDEU@"      !J&>ԆΑ!L*"       C""BYcfUJ Q      %HB&֒ȡ"H*"     ~DHѦ,@  $ @      !D!3(UPaLª     ~DHѦ,@@@?	 @UA@D8      	*Ȉ&HԒA*$oꈢ      ! 
ψ"&|"Q)$B*"     ~"Fb0       ~DHѦ,@@@? (   @      ||" "HB'V     nE$ToPHUjet	(`      ~Dh  @ A p8     |EPjkfQ4Ua      @ ?Á3? "Dh,A     ! B$$"L0 $CF       G`U0_DMTV_ DqP"    #Fb   ?"  #      *Ј&VR*Uj      )$Q&<ԊB!E*"A     |D0
J?(BPJ)/      |HP"G  "   ?      Aܸ*O&B(R"Q      E%W`k%g"2Ua      |HP*O   $I        @AGAow>"ETAaBUD      wQ}U7DLUVd|DAD"     PGUZ@ kd@"*H     􄯧DJRTL ?~F0`       (W͊%|"(Q-       @*Ȉ &~Ԃ*Uj      wQ}U7DTLUVDDAD"      ܨALHB&J$DP"      @!ꤌ߈~&$P      A$U]ّwfUJ Q       *'$Ȓ?D*"     y$UT5D`|MSUV_TEQQ"     ~Dh  GB!D       OE	|mUk2RIvR     TFP@Djd!"&5H      @
'"?j"      #A* $(S Dɒ?@      @ $@ 1@H         "            @ $@ $ ?  (        
"a    _      @ $@ 0 B      d        @ $  &B@        
"a  $A            ~ A           @         
"a    @?     $$I"IHD$ )       H	*  8       H	"T! D8       @R"JH)
RI	T P      	  @AB*UHQTEPJ!      B!C     $BH	*        @   I @         Gp B      !@A ~p B     !B'Aϑ"Dq"E!B	       @@A
ODH$pHТI0	      8C8 p|ׂ2D      !@  p"%R?         G!O$I~r 	" D?        @G/"D~DrԢIE
A       @@A q%R?B      GB	!@ PUADA      !B'A"Dq"E       D?GQUTSUUUTIq5E       #DAr         @AGAO@D~  s)B       O'A%ID%Jw*U&zE     !OA Ā"@w)B 
       @AGAO_D ~TrB*A     H A'	 qB?B      "HBAĀu*U/@D     "HDO$~ w؊U/AD      "HB?I@w"Ef      #D?U~dr"E
     !OArH%? E     @ @OA	Ā" w!J	      '@ ~sB?"      #DO?~$s:	     $"HJqOUDr R(ID     H"CwAOD p@%R%     'Bd~r@	?	      GA!!uQ	     @ @OA?IHw؂,Rh"     @ @O*~"qԊ(0       @@ |_G         !@D" D@" D@      D!B A"O"@ E       DD""D""OG@" D         Dd@?A         @QAD@           !@"	Q$ I'DA       I@$@\"$ _A         A$	'H$I GI       |H"O䈏"$\" D@       A!_I< HA2!DC       A"	($I DT@ȁ?!      !@!#D*$ HGHA      I"	"$DHǡE AA      !"BDG >H2#L!     @?A  > 0      !@/D%$JH$P@E      !A!BDGIBR< I!0,      A"G	D<KA1CA      !@A"Ȅ%H'DE       IAA$O$]#B$I         !"BHJRII%9Kޜ!BB       I$$I?$I$OI A?     =)KҔ)J^)JҞVD"      JL߀ ?           I"HD!~$\"" H@A@      AA _) < KA0(       QA*D	,$JGI AD      I%WRUIU5WrU	D$P      !A _	< H 4,A      "#D"$|H~_@       	8!$ I$H@?B     }" F@ @?A         !B@<KA1CA      !A$O	D=H 7,A       D#Dx"   ?      !A _	I<I$U0A      !A'I'$< K4A 
      !A/A I	7, E      DCu?   $F5 Fp      !$$$Q$H'@      ! A/$ʉ"$ IB        % BO	tIR7SLcB	!    D~?1DcV@       |!!DDO ?           'Ą	$%H'DD"      !$"JGIRB=HDA2QC       ! $D	?$I I O       I	NO $(\SТ"@DAA      AA/@ < K7(       =/A$I<H 8\@B      #JIK="H1,QC       !bRA=}H A7A     	)J\琉JR!H?L!B      !A'I' I	4,A
"      !BOI A<H !1S!)B      	)J\琉JR!H A?A      $Rȉ?< Kސ9K\!BRB      @$$$I$H@E$      	$"JW)s!<IJ1A%B      	)J\琉JR!H%:K$      !'I'1U<IT1,!QC"<      @! _"D          !!@g
@I         B#*#'H @?A        !A/B	?U<I0       !$O	 <I4A?"     @?A  ~H"CǄ~     )/J@	2KҔ9SެIB      $"_I2RI|5H"      AA/QI)R I?(       AA/P	;ҔJ8$0     B*B|K?            @/*U<H !.)QC"<      !A/*U|"?QC"<     @|Q              O!     @        O!        @         #D?A/@        C"?焑"d!+ A?@       O! !J)B!B@     @ A!$_焐?> #@      'P=xBCׄR@       |@#?  C_D?!     @| '   ?     $||(   ?       "2IaC	      > ECD >@E 	()O         |@/H""|D	$(PRB     <I A$	$H<I I$Q*       @x"_	$$Hx!"RHUA          
        
 c D$HRP!BD
      @x'P	?$x@$P(U?       @H	?%@IA$DI$B      @x"_	$x"HUA         ?@@       x@)RǦY%$zh)R(U?      < BI	<JI)=$DIDT     @A  `,      @x"	"D$zA"B"E      x! B_	$x! B@
D    	?  `,       x@!B	$ x@!B      < K!	< H@!B
        |!"Ȉ"|D	" BB`     =H@!	< H@!B
"       @xH("PG	"D$Px!EAE     <H  	@<H $@J"      =H "$I<J$1D*B      <I!$Cd	B<HA!E
"       x@/B	$y!"BbG       x@A"H$ { B@D       x@!_Ǆ	'x@A"HAE     =JH)#D= J (P*        xA"H	A},Hh!"BHJE     < KA 	R="LD!B
"        x@/B	$ x@?BD        @O@      @x@/D	>$Dx""HHJE      @!_I%$JH!"B)R       @x!"BD($PxA$I(UC        x@/R'IH%Rz)(P(UBĂ      @x@/@	<H$y A$I(UC        G ?@@       xP!"B$ xA"HAE      @!B $HHA$RDIA      @ ?@@      H	?%TREI%$bI$ER      3@? 0@H
      x$H	?D$y!$BHBE      z A(Q'v%z A(U(UC       @x#HG	H$ xA"HAE      y A$BP$ {!BD      Hx$"P'	 $y "@H
D       x@?B	%$zH)RD      G !      ""DD"$DO""DD!BM       x@!B$ xA"HIE    $"Ipb  !       B	%RII%$RI$!B"      y$BI	 $y A$BHHU0D@      "D$%LJ%"JD	"N       B	%$RI%$RI%%B"     	 $       	 'R       x@)_Ǥ	%x@A"HAE     < I$#D!B<I @
        PxA/EG%P{I"E$D      Px!"_	>$yH)BQDA      BB	?$HI!$HI!$O!      P	6^II-$Ԓ^II$B       x@!C	%z("PHD     g! @A      9'J*T$IP%"KDIN        x@"DA$ y$"HH?DB       x@/R	H$"xĒ)RbHD       RII5$_, ԒRII%%_     < I$#D!~<H !"$HJb@     <I$#Đ	(Q<Ip%R*      =H@)#D	< H@!B
"      ""
8(@?"DJ!"D      Dx$"K簉R$y($"HH%DD       x@%"J	$ x@!BD       x@A$BPGI %x ""XE       x A/B	B%x ""H(        y 'T	>$@x#DD      {A B	R%"|D!B	       =RII=RII=B	D!P        A$I$$H  A	       x<(Q	D%z A(BPUiĉ      'H$OE$I$ID) R?      <I$D=DJH/@J"        x@/B	$ x@"BHH       "!|B/D'"Т     < K! Cބ	J=(KД D@"       #H$K$KI$ID) R?       D!<BI	'H!"B|Qc     D            x@/RGI%$"EAE      ""D($RHQ$I)LR       @!$H%KA$I$)R(L       @x#D	$@xA"BDHD        C$ HI!$HI $P"     y BA yA A	         &B	
ac !"BQ	     =RII=$RII=T2XAEW@      #HDf'H  QL       x@"H 'x/@H
D      @?B	% K!RED	"N      @)JDHH!"BD)"R       @A/BI%HD""H		!M      @x$BU	D%y!$BH>DD     {(Rz(Rz*TRJ(Y     =H@$CD< K!B
        @A _A%H!BB	
"M       UQQ@@A@A      $O/@SDQJJU,jPT RL     =B	=RUIU=TRUIUEETX      @A _/%H$"F	
"M      $P_M$"HD!JL      x'D	$%x!"BD"D     @H	' _B 	"HR      QA	?I$QHQ,eQQA       x@!B	 $ x@!B        *0  ?@@      PxA*ME	,,jA"I(UD      z.P'I? %z/PHD      y (BaI%${(P(U?       @!_$$IR*BQD!L    !B~*      @x("`@%DzQ*BT(UO       @'B$OJ%I%*JTJRR      ='Ho/T$IR%"JDIJ       @A BO/$XHQ$I$IR(L      !" $Dd  A (     ?A( ߒETB?@C      y (a	?H$y  AD       A!BDDO@R>$ H  B ́      !BAI$KA"E$)DR(L        ! BO"D$I|!$BH	B       @A/H$
$lK""DD!BM      @A  $%*J$I)RTI@L       x@%"J	$pyP)"RHUD       A _/($QI12BDDIR0L@      "EA"HB(      y (BaI%${A"IUD       A/AҀI! _	(L       OU&TRI$"_A%_A      @A/PO? $ K!"BD)"R       (xH!	HY$xВ)"b((D       $z\/"RDI%(jT	JL     {$RG	II$ {!B	       =H 'D?B<I$$HJ!       @A/@!B$H  "A	(L        x@%BJ$ {!B       x<!Q' %x!"BD
D      .DD%KHQ*I	P      xq""DG'$Dz$H	        y (oǐ)J'y(_耕
D     ?@  ĉ	/P@D
     y$K	 yR%"JDIJg        A _I$I$U B	AM      ) J@$$(HH""UDUS      @x!(#I".Bi!2BbG       x@!BI%x@%BRHUD     ! GB*f)RHB!J      xha#"X'	(${I$ID      !""HDORB$I"BD	"R      y/@$O% %HA?A	(L      y	$H'  %x A'A	        y/B$O%@$ K$"\	
bO      H/B%"K)_IHM     =H 'D!~< I"D@
       	""@ A$I!BD)"R      {	(_	DzQ*i$ITf       BE$H$ EJRE)JTT@R     =H #CDI <I$$HJ!      y	$O	 $x  B      y	$H'%z"**XT)Af       B.
DTSEI*T)R"B       A!BB  HDI$ED      <I $τ	=$JPA(DTJb@       @A/@U%H A/A	L       A/AIA$I	T      {A _)DR̥Uz)Q)Ef       Px'Y	?H$yA$I D@      @/Q$O%"K!$B	L       x@!B'x-Bi1@       x@A$BPGI %Tz*UHAD      $"}!B$O$"HDA*J     =JH/D?H)$b*"        zH!_ǈ	D%}!$BJU ?      xx!	*T'yP?BD        yD)"E	$ yH)BEAE      P!BOO*U$IT%R_	AM       AI%!H@""HD	L       A/A I	'H$ EL     x@9(P'@%x!"BD)Bg      ""_ I	$OI L      ?IG'2J)"Q	JM      @/H%$JH)"RDR       A!BDDODR~$HPA"TQSL     B/ȡ"AO ??
     {ސ%*D'JS$ {ސ%JDJ      !B_, _U$I(       !/POH%_KI*RTI%LD     =J/	=J*$TJ       !"B|$%H!"B|	$LH      @A _/B%H  A	       @A/PO w)JR2jD	"R       A/A$$IA!EDIRL       x@)"RGI%x $BHBE     {(
_)DRz2U/P)怀      @A/P? $ KA$I$)R(L       @A/PO H A$I	L      =J	/H=J$A/Q
"      y$BH	"D$x@#J     =H@/DU=,H@"H      @x'@R%8xQ)EHUTD      @x@(`GD%xH/B        A/ADI O	
"M     y	$O'I$z**WԠ)Af      I$OO$$H (QTAR      @A'@
L$$I$I%L       x  HG	 $y'HH?DB     {/PG%|@/B	        I)"I$/ %J)JQ)QR      @A$BPDo %*JT)RRIHMd       zH)"_ǀ	$@{Q*UHUD       A/AҢ)JE(WԢ)DR     {E _	?I$y$ _	&       xx!	%zH!_Ȅ      <H/$D< K%DRJb      =JQ. <I $@J"      yI$OI$$ x@I*TTȉ&        x<(QD%Dz+TH_E"     {!B_)JR x@""L	&       !!X"%O|!'h	`?      =JH/D ?J@(T@     z)Jj)RR{Ҕ)RR	z&        x@)bRGk%${"EAE     {ޔ)
R@z)/RPDID       {Q(QGI%z(Q.pED     =O"<@	=$_IE%W@     <I$#Ā	@<JT)$R*"       @x$_Љ?B$x&"RD      @'H$ $H2i"IDID(       )?@$KQ*UD)R     =H@/D]=TJQ*UJA      <I!'Ȅ	> =JQ*UJ       H%BD%M!$BOI|L     z|%CI_$yJ%RK)P'      @A/HDҀ"H "GĈ!JM      x/E$T{A&UHUD(      AN*Dc       <IP&Ȅ	  =JQ*UJ        zX)"ZǤI$ {!"B"E       x (WǢ%|z *"TH_E"       A/A H _)$       A%J$O$I|%KIP      {'H'I? %z/Q)Ef      y! 	"&{Q*UH       (I/A$$II "_	L      UI4( ?@@       zH*HD$y!$BO"DL       x("UGU%x I.QUdć      $D|$H A
"M           ?@@      AN*Dc !"BQ	      @A/PO<@$I!$B	BM     {)R'IO%wzU*Wt	        (oĐ?B$H $_I$LD      @A/RҔ)K*JVRRG     wUPB*Ut2-X5H*        A%E$$I$BO	"        E/D?&I!$BO	"̀     {'JI? $x  EDITf      {E"EA{U"DD怀       %!(_!?@B       I"_/"$DHA O	       /DD?A$I _	AM       A/CdR$DI$E$EDIDR(L        {/RGI$"{!/P
D      @A/A^RI%)H _	L     {ސ)JJW)1%x` N$&        I"O"$K	'H$ L       $_O?$I$!_:M      @A/TTO$DII O	      yA/Qk$ y	'@$I?       #G)RK"!"BQ	       I"_$I)j N       {!"	-jH!_Ȅ       ?DD|R J(A/Q)M       B^z%JP)B^DyRa!      @A'DD҈II$A L       x@!UG	A}$y!'BID0      8!^x$ Hq':yĜR       {/B %{/PH"D       A'A!$I} _	D      !RJD  I	$OI       <$EDI%II$OI$L     )/J@2K)R^IR      !'HD$I!$BO	T)      /AH OI L      y :UG%Tz UHU       y$BB"D%T|D?BD     {ޔ/zR@RzrE(WԠ)Af      SUT*UUJ*UJʝ*X       1W_ '~J*WIQ@L       {$B	%z("_ȑAE      A'߉$~  O!?@!        _O^%H $"OĐ? M     z|%BIҠ]zu*
TTI&?      y!?TGI%|z (WȨ_E"       x!+`'I%${'H"D|      P{Q/UG % z/URE3     ~x"7犉Jgb ?@@       *"RJ%*K+R(     >EGB  ?@@      @A?ADOO2'I~3"{I       @!_/O%J )]$     =JQ/ɐ=RJ"Tb       @A'DD $I$O	R=      !'Y$$I/zR)NR      ""OO?A$H(j)?R       x@A$BPGI  %zQ.HUE      y!'@U%x@#J     ~x"7犉Jgc !"BQ	      ?"Ey%JT/RRDM      _
OU*[XH" Z     )JJT/DH(AL      @A/P)$K$OI?"L      {?Bk%x@!UE     yA/Qk$ {A'JI*C       "Dd$IA'HM      !_ *UJTUTʽU1     %/JRR I	'H$ LD      @A/RJR J*BVUM     /I.AdMU@X       **O䈏?A$I$O	D     $$@R%JK-RDIRͱ     !_AVRU[5 
T)      @!_O~%~J*WĠ	UM     A/Qk$HIA7I$̀     Q^E{cjP H"E$B[      @USUܑ     /zRJRHI!/h"̀      !_ ?B+QJ|UT=T1     ! O r~WT(BL     $Q쀏?H$BD%,     (}e"1VQRH JBY    @@(/@    G"(E!R@$  @     C	$CD!
$(DOЀ     ~$I GHP!BBI A$      ( IzHQ^Q$HA     	@H"	UVE_U     %!'R? `"pD  	       @A?B	 C$ G#       * #0A        C?@G( p      DB")** @      ?@@!" $@       ?@@ ! F%F      ?R@ @?J#"(        @A'_ߠ!^~!KCJ*ddG        A           AA?	D @<A!      AAB?	D! A<> D      !@@?	B%A<* H     @B ?DDIS!CA       B$H?Ą@@?        )H?D>#P<QA      ?@?  @      !@>D!5ĀȀ    >  ||0  @        " "0 	 O@       
 BB!  D`        @!BB!    "" `@ <$ 	      q! C CA        @?  h3a؀       >"    $I@       >"   bI$T    |x ?"?"?@0\      9'QA;A        
 dp!Cq"\"E        /I.AdIT%H%  A      
 gp!W " 1   @      !$$ ?       /I.AdMU?@@        @  ?@@        A@ ?          I@ ?         8BGB>LR&H" @     8=D}!B(DPQa      8A_}$I($POE       #"""$ @@B("       ;_ @}*$R/Q%       ;D}$E%JQ(        9E!| I)DEA     ( H!"I"HDRHI"     ( H	"II/RHI"        ( "D! BHH?"B      ~ @G>>     9 _D}|(WϨ_"       @@/B)H	 @       !D#D=RH       GDD?DH        *UT?  I`       !"D$ D@@      @ȉ2$"$ȒJ"E
        !B
"d AP!B       e%TRIE%RUIE%@b      @@I(&PJ"~DDPȡPEAE        C$I
4"Xd!RR$QR      @)&RJI~ETP(U?       @A!B
~D ȡQBHIE      @C$I
4"Xd!RR$QR     @$H
)~RDQRQDA     A!B$FHID ȁQ"$HH       @@A/@
<~HD!RBI(UC      @@A/D
~>DDȉQ$HHJE       !C$Pʀ~"DdQB!EB     B!B(Q*v~E!TBU(UC       @!B'H*U DRH@E       eTRIE%RUD!B"      C(&RJI~E$ʩQBIUD      @AB"H|DRH(U        @A(d#d!TB%DB      eTRIE%RUIE%_A     A'T
~>D@ȁQDD         A(%P""HdR$(HR      @C2"J"
!      @!B/B
~BE!P$H(        @ F@J~E(QWD@
D       !C$I
" eT"(HPBB      QIe%WRIE%RUD!B"      d!SH!DHU DP"     H@""F_~$DHPDDH ā       @#*B
k"eAT/BB      GB"_ʪU~ETʩV2$PHD      @AB  KI 
L     @y &TJ ~DA_B(D       A%R
" d R"$HHB"     @@$FU
6DASD      C)&_ʤI~D AWB       Q*d!WPAEPUEQbB      @AB$FPJU~GAT$b(U(D         #(E_B"eDT)QBA      @DF!OH"	P       @!!DDQRDJUJ      C(&_ʠG~ETzQUD      @#'H"eIT)(R҄B      C" B
~PD@URUH       @ABDFKDR~|HPAQSL       C(&_ʢD~E!U$TH_E"      @(&_ʠ~ GAPB      @!D
!~BD	RHH?DB     PBIR(&_ʊ"~DxR"B"D      @!(P*@~EUZJU*C      C
+P*U@ D	S$OȐ?DB     HB"?T^~EA_J     @@A*FTR~E UDRJEc      @!$&D@DQDH%D     @"/B
~D@Sa      A	" "~FURUH      BY)&ZʤI~D R"B"E      @AB"FJJա~~DRTHD"     P@"_ʪ~ESDO>DD      C?RJ~E$QHE     TBJKNS }J"A$I$KL      C_+5|H I L     B!z5FDJU~lDPɱURIUD      C""~EIW_Ȅ      GRJF  I	I       BI_+"|DH$$L      @AI&KUS I	ʤI L     @@_+}~JĢ	L     AA*I!ĄIqR%     GJR(KҔRҤR1     G"_v~H RʤI*      G$_~EAWȑE     G"_+? }H@ERĵIRL     @@ADF+TMI?AM     C"/RJI~ETUW$_ȠD     @@_K~}~JĠ	UM     D!p&D}I!$R     E)zuRJKޔ!D	fO     @# $" "
`2 `      ? A!HB     "/P!
~HR`(T0@      " D#$RPBO􂈈       B!  $ G     ! CA!I>$#D" D?      ( P@"OT*UJ)HR      B@HBQ)RI$H(Q      $!B*X U$$G      *"w* +| /H       @D)2RdI$$@@@     	  CA        CA    `     D        CA  @ ? @@       CA          @       CA   ? @ A$P      @"  @   D`     @"    @! D
@      CA     @@0      CA    @ $P       CA    " @        CA    @$I"H       CA  @ ? @1 "H       CA  B      @      CA   
  ( p      CA    @!B!B" @      	 CI         @       CA         @      @"         @       CA   @     @      !       ?   (       @"  @	 @        @"    ?@  @ 
       CA    @ ?     ?      CA   ?   @        CA      " D        CA  @ @    @         CA         @       B!C D%&JO!$@      CA  @@	    p       CA    @  
 " `      CQ @ `  08       CA  D<A@"HE       CA      D`      CA   ?!B! @@      CA    A  `       CA      $ B`       CA    @? 0 ` 	 !     @"  /  @  @      CA  `  A D pp      CA  @ @? @   p     @"  !   D`      CA    	0 @          CA    @  HX @@      @"    @B!J       CA  P4Y "        CA   !    @       CA             @"   D@F      CA  P1           CA  @ E      CA       " A0      CA   	! P @      CA  B!  $ G      CA   !E!AB 
      CA  @ @ @H
 A         CI @ ?@   p      CA  $P0F H"D       CA  P<@       CA   ?  @@(        CA  $BI	" B       CA    # D`      CA "B!A        CA    @  #D  ?      CA               CA    A @       CA     D`      @D$!
0 Ȃ!F      CA   ~    @@      CA     0(        CA   ? !B%D       CA Ba!Bx" D@
      CA        A "H       CA    @ %QAA      CA   BB@
  D`      CA  @?   @$0!      CA    @  	  ! @        CA  @"D!"@H@       CA  "D@$"F       CI @  @ E       CA  @/B!B H      CA   "@D!        CA    'H@%DHA      CA   " D@( F ?     @" p $ D F       CA  P0 A 	        CA                CA  @D$I A(      !  ! B! B  PC%8D      @" D"R2@$"H       CA   !!O
      CI ( ?   `          CA @         CA  P@CA       CA   !BB!      CA   !BB!     @"  'H!"B|
      CA     ?    " H  ?      CA  B?B!!J@      CA   " D@         CA  ?@!       CA   "|H "&q      @" /! ~@B       @"  !B A        CA A D      CA  !@ !A      CA    @        CA    ?@ A         CA    `
 d#   ?      CA  @?  ?B@      CA    @        CA       @      @" $ H D@@       CA  @ @ B       CA  @ ?B!"B
      CA       B       CA  B!B!"B      CA"DEA$_J      CA  1$JD!B$      CA   @@DAL`  @       CA   >@A  $@_       CA   "# D`     @"   D           CA @ D@ qp `        CA    @@?      CA    D`      CA  P1 I!@      @"?        CA  	    @       CA  @	@   @       CA    A (       @" 	0"B@      CI       ?      CA   	 $@H@$UA      CA    $HH$"H9       CA     * #0A      CA D$(B
        CA !B?$H        CA 	 @ AAH
cC     @" ?B%
P$C" D?      CA   ?"D$I"$DHB"      CA    
$ 0       CA  ? BD	r$ 0@     @" ! A?   @$0!      CA D 	$'PH"D%|       CI   ?  * #0A     @"    ?A ?      CA  @ "E"#B     @"  7A       @"D @	?B A       @"    p   ?      CA  ?	"@E$pS ?     @"  $JI	* B(      CI  P @ '@ 
      @" τ$"P1" B	        CA    A `      CA        ?      CA   @ B      @"  88      CA   @ ?N     @"  (0  !"DHB      CA 	 ?@!@D
cC      CA `! B~	   @     @"   !

     @"   ?H!BC      CA   @'H!?      CA  @?@!        CA  D@      @"   7E@$       CQ @   @       CA  O	$BIDQ @A `     @"    ( p     !  ~ @ Ѐ <       CA  @     ?      CI @!BV#8A      CA   !B  ?      CA?H(
"      CA     @ @B      CA "D " "H       CA CI  D        CQ   ? @`O       CA   H  p      CQ         A       CA  
 7B"
     !$!B!B  pp     @*   * #0A     @"$D @BH      CA  H @@!       @"  'H!>B      @"  B/B!"B      CA  P1 I!@       CA  $@0A B
c      CA  ?@@         CA  ?	""DD B`       CQ   " D0     %&JL@ %&JLBH       CA   O!"B|
      CA  dEH?DD       CA    CA        CA   |# E@!(BA      @ /H?A A        CA   ?@@  ?     !(     P @      CI (            CA    @? @1 48      CA  P       HD %"D'"D"!`     @" ? D `A@(      @"~BI R@G@     @"  ?   @       CA  O	%H" D@A      CA  @ ?I!$BH	*      CQ  A p8      CA D "ErC"B "      CA      ?     @"  PA?A        CQ   0@A(       CA @?(@p      CQ     D@"PD     @" CA       !( (0   A"$DHB      CA  ~>$DH"$HHB      CQ     @      CA 	 @ aA"H
cC      CA  (         CAp@!@B@A B #      CA    C D`      CQ / P Bdp8 DD      CAb L   @       CA  OI$I$I$I!BD@E@D      CA  @@f"0D        CI (    D      CQ  f"0D        CA  ~ ".$DJ      CQ  ?   @       CA     * #0A     !  @`	 "  @       CA   @I!1A       CA    ?   @       CA   "  D`      CA  ? CA B  (       @" X`       @"  !Ht""(      @"  !$BP	'HIE!     @"  D $$ 0      CA  "  @8      @" "!'D 8
      @"?"!  C
      @"~1pAP	       CA  p_ |P ?     A  "D"   @      CA        ?     @"? 0@A      CA   	$(  D$)a       CA  ($J!_	        @" 0H!"B|
      CI  @?@?  @       CA ?@ $  0x       CA ?>!AP.H0
      @"B)RH2@BA      CI (  !A       CA A p8     !   $ $!AD pp      CA 	 @ }AHcC      CA     !"B!       CA  @" *(X@ ?      CAD I$IE!
B      A `0 D*H      !   ?B p0      CA P H        CI @!!!J     @" ~>$DH"$E%       CA"DAD DA
l     @"   $Iq!RD
     @"  	< B	"      @" ?2@A       @"    " DD     @"  ! !#@  @       CA   T$
D$A`       CA ?T2DĎA`       CAA"DH!@B	DI     A @? @       CA     B      @  O"# 0     @"  $((`0!"BD      CI P1      CA  "" "    ?      CA @!!@       CQ   A   @       CA    #     @" | "x)_        @" x #!_         CA  ?$!"B
"      CA "D)(  ?      CQ   " D0      CI ( HL       @#  	 b3?" O0     @"   D         CA   RQ D`      CI      D$)a       CA  $HHC      CA@$HI7"DH       CA "H?@@      CA  ?@@DD      CQ ?DAD      CA ?   @       CA d
@8@!J1      CA  ?( p      CA @  ?D ( F ?      CA  ϐ?"BD        CA  B!@A 
0      CA K@EANDEH      @"?>H A 
"       CI  @	  * #0A      CAP s A      @" "D!B$A      @" $DI       CI  B! $H ?      CA  P7ـ@       CAD
 O0E"     @"I"H1@IDT      CA   ?   ( H?      CA@g"@ @       @"  >`+ !"%LO     @"y$"H#x     !  "0L       !(H@      @"  $I,"I       CQ  E"@!0>     !$ @  ?@@      CA!BC$ H@!      CA ! KH @       CA @!!8F`      CA   ?@       CA_""DDPyEA     @"?"D B`"      CA? 0&	       CA  " &*!@      @" )"	8 BH      CA  $ H@#ʄ      !  2!_Ў!*B!      CI ( HL 
 Ia      CA  ?cI?     @" @KȔI'B$
      @HQ@"? ( p      CA "  C!      CA   T$F`      CA  B!T$F`      CAPD"E"*RBc      CI (`?I!H	*     @"   C     @"~$"Hw!B$     @"$~1HtQ
!     !   	!$I  @      CA ! _ Bd8@ <      CA  >>DD  $ H        CA   * #0A      CA @1AB
c      CA ?$dH%R      A @ /" JD ?     @"AB * N%	     @"  (I$I%QH@       CA?	"(tW T@      CA  $"DQ	 A     @*$ @@ALa     @" |~ cBB
     @"| s$@HB      CI  </Q 	F&      CQ  A p8      CA           !( `  @      CA ? ?      CA?!@BIW"D       CA"CB ON A      CI   !DX     @""D"!  @       CA ϾTP:&ABJ4      CA  @DAD pp      CA   @ "       CA  P $?      CQ  ?,@ A ~     @"/A	 $@H      @" @$@      !    *H      @"(>I XB     @" ?B !R$ !      !$  (_ B!
     @" ?~ 8`iSDQ$B      CA "H	`02PH* 0     @" "D P P%
A     @"   b3L)@       CAB ?	$IA A       CI  !^ ~R     @" @?A     @" "D0qR$Q       CQ PE   @      !   ""G
      !  B        CQ @B""    @     @"   
      CA  ?@@E	D      CA  ߈R>E($PR       CI D)( * #0A     !$ B >      CA   !"BD	'HE      CA !$IP_       !   1 ><     @" " x@!      !           CI  @_! B        CQ 	$H@" D0      CQ         @" ?"2!B?B     !(q\?A      ! 0| @" DL      CQ     !A       CQ  7ـ "	B      @"?2$pQB	"D      CA ?"~8 @w?      CA?@A     @"?!%J)HB?B     !  	  A $ 08       CA  BD$H  >      CA d~$~H1q!SBBA      CA  ψ">|D$DHB     @" $!JH'B       CA BKPHN!@      CQ   D         CA  @" D@ !       CA g?        CA   "@0A$	D!      CA  B*BR%B@     @" "$(Q(P	 "      @" )Rb@A	      CA `z     !   ?	 b3؀     @"" B	
      CA  @?H>       CI (`>D!CA     !   ( A      CI @)(J V#8A      CQ    ?@@        CA ?  Dpg      CA @$HEC!J     ! "D$?$BH B@E D     @"H	?A$I      !   @ALa     @" 	 ?A$I$H E!      CA P/B=xB!( p      CI   _I"$ID     !  K/  ?@@      CQ         !  Q  ? @   (        CABAHH`0X!~     !  D(E!A$I?     @"x@ GA A     @"x? 0 A     A A D@      @"D~$I$!EDQ@      CA ?F@"G        CA P>Fx#DB     @"  ?BE"D!OP!!     @" S _I      A " (B T&8C     @  T$F`     @""	 ?T&8C      CI l;   A      CA 	?>I(QID
D     !  <8 #&FC	aa     @"   C!      CA #H'       CA$'@H'       CA Dg 1AD	     @"  @<
      @"  	>  @ 
       CA $	!"@ B     !   Q#I D	      CA '@J $~!pB A      CQ Ȋ!(! D`     ! C D   @     @" "?  C!     @" B9WQ?B     @"   $      !  ?)DB       A @"T(`     @" 
*~*$ IA Aȼ%      !  ">|@$@I
      CI  ?  @     @" ~S  _!?"8     @"DA?DH#DD&      CI  01"BD?     ! @?D@ @     @" 	>!#@ E     @"? >HD!CA
     !  ?          @" ?A|$Hx!JB     @"" 
     @" ?I"E$I(P_@     @" C?ҤH"JD@     @" "||$GЈ      ! B A     !  ψ>|@ ""!     ! 0"" C!B6      CA	<BH%@I@      @" AR	)GAIf     @" 
"$
" 	     !( 	 J#1A      @" /DH$(EQQA     @" /@HD)PA     !  
/ X8     !$      @      ! G @?D@@      !  !B!BJ"d      CA? yh%bJU ?     !   ??@@       @"  h" _@|%S      CADq	DAD pp      CA$?A p      CA 1T IR      CA! /P@D#     @"  "BD?      CA	 `aI !      !(?A$ @      A @     %T&9      CA ` Q A@I     A  ~
$r(DT&8C     !  "dA p8     @"@G(UPT(RQA     @"9B0|      ! "    X8     @" 8+  DK!">      CA DP(P oH     @"$0      !  @@  $RU@     @"|$xJ JO(	)a      CA o@?IC      CQ @B!
@@KL ?     ! 0	C? E#BBc     A ?"}$I)$SO      @"		$"H*U      CA $ O!?@"      @""
(  "BD?     !$?@@      CE$!JI""R     A @(>2!@     !  1 ? v*     !    A$DKA      @"(%HGE"      CA       @B%2RT     A  @$OA?"      CA$A~F I!N%@       CA?~)"RG	C
      ! ?@ IR     ! ?B        CA	D1U/BIQ @      CADE`OIQ@      CA$D!M $P@      CA @?$"TTC!     A DH@!  >>     @" #DHD)PA     A 7 G!       CA ?Bb"!      !$ ?B@0     A A D@  '       CAc?D ( F"?     !  E( %C      CA @A@a      "P yR%{ʔ)+T)HjҊB      CAC#R""BBc     @"2H!$I      CADDCDDQ?DD     @"	>	$"3 JE@      CAO"I|%D%@     A AD @p     @"	">
##@JA     !    !       CA b	 b3 	"!"     ! I!1      !$ $)T@ 	
"&      CA  ߀?~@!LX
      CI lF8C?@@ G     !  !D$HPP IR      CAIT  !E@ADB
 #     !    $I      @"  ϾD @q"$0     !   @_AM`H      CA g       ! (!^? A D pp     !  B     @" @CEA
JH'     !$D" GĈ"$ @     ! $?@?@@      CA @Q!P~""FI        CQ  ĒH ̂a     ! " C1   BD"D     !    D?     A %  AD pp     !( (4	       !$D?A#      CA   Î:T,UPUBJ]A	     !   $HH`9Ȅ        !    $@2     @" ?I!'      CE 1_ A     @"     !"     @"~ g	     ! $?  >      CAD `I$?      !($H$?@DA$2      CI  H$UP O      CA?8kP@!LE1     @" ?"I,B	%"A      CA?U|((_Ϡ      CA H	?P%  "BD?      CA  `!      @" C?ҤH  @      CI 	P?DI	       CA?~@C _ .?"8     @ ψ""||CDEH     !  
*HD!B
"      CA%*l      CA  @B``3"H?     A _B        CA?48P@A$      A Q
5Ǩ SOE?A     ! π
0,T      CA"(DO?DDG     ! (8X(,B!j     ! ?8p@'A #     !$$_Q?IP ?     ! $s$O     @""DETD`I$?      @"'HD`@$
?      CA$ HH _	"D     !   	'@ JB       A A ?B ?     !$B!0     @"~$'p'H     @" 
 K $O	$      @"
> +Ć$     AD	$H       @"@DB%M.Q      CA|HK#A
xA      CAH#A
DA     ! D	R`11 c      ! B	!$@       CI  $HEBD%     !  b@3H  A	     @" $Q"%DI      !$D ?@@@      ! D @ $	D!      CAπ>>AI/B       CAȈ""||	?A$I      ! DO>>A	2$HH	       CACAS*l      CA  >E B*XC      !  $?   "	B      ! /  $@2     @" *YG@      CA w䄡	_ (WTC$B!     !   I!@%"A      CI Ȉ"$BB	F     @" "< #D	6%     !(?DDI_S"dDH      !(?A$I      !  	 B5A     !  A?? @L 	!     ! ?DD  p     ! WD? ""G     ! E *H      !$A!OA?AO      CI ?D@ 	IIH     A A	R?~@2c8̀b       CA?  {!KȔXE      CA  B \!DB)*      CA C䈅?¤(HD@     @" τ">KAEBA     @" $*${EDODR      ! !??"  <      CA? @y!_"D      CA"> ! 
@     A Q@!A      A?D	D$Q1 <      CA D*($BDB     !(@bI$I!!       CI  *HC!	     !    $%      !    A      ! TK?H$2&$BH|?     !( o ?BC      @" o?I~%#@"     ! ?@ ? I$%      !  (PQBEҮ%p     ! 	"2P /@D!     @" B^)ykK"      @" (a$$O
I#     !$  $O      ! G	C	 !R$"

c     !( `  |U@E$P      A #P ''       CI ?|H@kCJHQB     @"@G*$_P|)PA     !$ @?@@     ! "H  !>BD      CI #DD " DD     @" "] HDID> A     !  !'Y$$I      !( `	  P BD!!     !   q! G"F~      @" 	$
IItYD%Q!A     ! 2"*T$F`     ! BH ?@@ ET@     A %&ZYERRD     !    |!0     A D	 'I7D*D     ! "H	 `3؈"     ! DO>>A	*PJ8       CA?I$!$K_""ED     @"@G(_P|)QQA     ! (  ?D@@      ! D	?@@@       CI  /?B  !"      CA   	"C  
      !  @!:rD	<     @" 'P!B     AA!} W)H%"zD%     !  @?7و B|	      CA J~((! )_      A%Q)(  @      ! DO>>@>$DH$d     ! D  ?@@     ! @κ :       A ϐ%DDQ/*c      CA((%V1($_Р     !  
r 'DT&8C      CA B%Hx`#0H!~p     !  ?>A      !$D?# I!	C     ! >>      8      CA Ȏ
b@
$      CA D<@  $	C     @"	B?	"H
U@     ! " }""<!c     !"FE|= D1 L$     A @("6} | !H     A !      !$ @?@@     ! AD?@ H!
?`     !  d'|J#4@D      ! 䀟$D 2@I%?@     !   $B	H! 0"      ! ?ĀEdO?8     !  	D""UA|"DA      CA?A$!C  $D     @" P@* !"     !$D ?D@ @     @"	>D	 @#
I@0     !$B%Hz!	R"     !   $D%      ! 	R0V)_D#     @"?A$!K _)"RD     @" $*b% E     ! aGP?I~!'@"      CAȈ""||	?A$I      @"!~D@Ԡ)CR      A
+I D%T@     ! @κ : Ɏ      !  
?B%S! B     !  {Đ H B     !($"{ #$     AB"GĀ" |P!%|A      CA ~ Hx' ?!     A <@C_      ! I	$?@  LC     ! @κ : B     A >U%-PA/B ⤄@      CA?I$!TK _%"JD     !  %	R%HPP(`     ! D">IAE
"A     A  ~ Q   _I~     ! BA$C/O     !  _%J%1KE?Q!     ! BH?BRQ@|     @""	T" JyB5
QA     !$ 0)(       !$	  _HP©
%QA     @" C?ҤH  EPU      !$^ß?@@      CAXH_LIB     A!zB)RQ$     ! DO ?I#"(
i     ! ?   	 $     @" ?	bE6     !  B!	 B     A @ P(qD@IL0     !   #TD''"8     !$%Q  !>BD     ! D /DBY&      CA!z s$KД/BB#     ! IA/@ $iIL?     ! ?  O
#     @"
Ȑ #     ! B!~$  "HJ"      CA"D|P _Ȅ"     ! _(!@@"      ! "  O? C     ! 3% B%d       CI ( 3  }!CD      CA?~*YGBBA     ! /P D""     @"Ǆ_F*P|ABC     A @߄ ~BA<      ! ;(%ȢQ@N
      ! D "I "G
      !$D	$ O ITU@     !$ ?@! F%F     ! DO ?@! F%F     A 1R A+Y/Ȅ$     !  O
 ~ BB1*"     ! D?"!"     !$|D$G* #0A     A  ?IDcB     A  D?ϕ"I KFA	aA     ! D !      ! @)(!      CA@
?(AC<     !$ 3H ?      ! ?  s$O!R"#     !$ U%  ?H  @      !$   $>     A @dI$*Ha_Ą5     ! @κ :  	,     !  !"RW   b     !$    @     ! Q\Mg        ! AII !$S$*"     !$D	(@^y	 O     !  *U(!B	C#     ! !Z)(j!      CAG@ |%!@B     A AIDDP( p     !   I?Lp     ! '#!nFx     A A !> !BҊQ!     A A("	! "H	     ! DO  $H  OE?     !(o @fx0@     @" w#AO     A zR$	+$D      CA>$ C%OҐ?B     A   D@ c檵U/D(C     ! $E@a      !(H&7  !     !  ϐ?PI  	     !$B "#	     A !:Q^Q$HA     ! @_!B)gDu"     AQ (D" @|      CA  a U2 D~      CAG?I$C<      !(WPS?A   D     ! Ϥ>@Ob_D     ! DGD$F@@     ABQ_!8FDT     !$A!OA?I     A  
C !&҂
c     !$	?@@     !(@g=  @ 	V     ! 2"* 鎒H	     !  
.*|	      !    h"     @"!? RA     !$@'P!B     !"" (DO/QDG     @""	T" J}B!     ! DO&?p .А#>     A D	 'I5RGIE1     @"	tJxT&8C     !"A4_? @     @"x	Q>T	  @g      CIĈ$?PB" H     ! |I T#RH(B?I     A @	$?濫THOE1A     !  BRGON?	      ! RI?)IH?"      !$5>EB@g     A 	?H	1 sT T)     ! B (Q$B  %C     ! $(LT)4$DKtA'I@x      CI @Wh_%_"?     @" Ā>Ddu*]Ā	     A  ?H$ H8     @>DH
UJ     ! _ KP$h9L     ! E'UhIGȈO     @" { 4'?$B     @" ?H	0hc#_Ф?B     @" ?A y )^~     ! DO>Dd~$IA'     !    #T/xI      !$G @ !	$     @" 
>DC⢉%jRC     @B?~TJB     ! @κ?       CA*0@A     ! 	R T @     !$$BBH|
	
IHppLp     !$.(P\Lp     ! eW ?IH%#@"     ! }gJ!B!(     !$A!OA?I	RO     @" I!$Jb      ! 0"*|q!W	 A     ! D _?!$0     A *lH
UJ     @" BT$O `B     !(>2HD_  D     !"AURKA?J     ! @κ  }B/АC>     !  ?B !ʀ4B     @"x?Q Ty )$g     !"!Z*R@  	     !"_*~|c䒯RR?      CA B	bH% U	     A@_? BC! HB     AGTs&@_D     Aȑ | Lp     ! !|!KLp     !  D>"3     ! Ą/J0 $CF      CAG?I$CEH     !  O	$xDLO?&     @"A"TW!_     @" !TC"EQDA     @" ITB!EQDA     A ʈ(HT=     ! IU? /QJ     ! (|"}QAO<     A  ω 	$ϐ     @""!%     A |HJ%J(_)A*     !$ 0*wp H	"\     @" t u UT     !"!WUCUXG     ! 8o
"
<>K@I\d     !
JP! !D     !$D	(@^yIN      CA}PG_ 	J     A Ȁ? }x     ! DO>>AUKQ,     ! D  "U(QD%IPEDD     ! ?B	 R(	     @" |D/ *     A 	??BT%/ @B     A D*} @      CA!~$C     ! 넒KI.I$      ! )RT=HRN9BU     A a?IU%'"օ
D     A{֔RP8DPpGp     ! d>~TB'J     !" +TS$E`!
2c     A  U!#_     ! GJI!  !D     !"A4B@	$     ! D*}H8     !" }T#Da#2 c     ! DO(HE@O)$     !$(	R&
(߀     A{֔RP8DPpGp     ! @κ @}!
?<     ! )"#H^%(QH     !"(>|QWO     ! 	#ʄ$K'JEV     ! D?J* D     !"{ޔ@$_?H     !  RDz^z^)z^g)     ! Ȉ" |UJ Rj     ! D>$	Lp     ! DN8@@0     !$Q)j5I(JA(       @  HB! b!       !B >"!d      !B B!	$E&      D, @  @       D, @ ")BT@       A(_@
De       @|%'
x)R jDI`C      $>~! A F      $>~$ HpESRH`L?      $>~ O!
P@@      $>~  @8 O      $>~  O!?@_      !B *EN`~      !B $*Q	       $>~! RHy$       !$I	A@      @ ^
GJ%8R@d       !$  "'       } O/' x~!J@ITC       < G	%<AI BaJ#      $>~  B@)BЄB     <?A)*<I	%BJEJ#     ?@W?ӊ<IQUKje`J#     <<@C)+<)INrEJeJ#     (<H@"\
kN(]s¡%Be
c     (H<G"SkI(]%BUJ#      x 	$#R }
 +TO      D	^ @!DMU$DP     !$}H/x>E EETTC     ! BxϦuW_5~
%ʀ!U      !!	HB@!      @! IA%PA! G       #)$RH"D R>0PE        CI
$*H| B@<PC       _IE%RQE!0B @       #	"D$  @P"     z>!HI!BE4 @      @ 	&J$"D Q $        IE&RQ% PB      8CB
*}@@<DP       @@RʦY+}$hD<P?      #@B
+| @@D(         C	"D$  @P"       #@EA
+| @@D(          GB
*| @@D        C/RDI$ H@/@HP         @C_ *@| B P?      @ BP
?*|@A <P?    ? BB@?        'AD
*$|DA H        @P!B         @@RI$I!BHBF@     @ HD%PJ"*D|P@A      #@#EH"*|@<P      !?DC     @ @@D
*>|DA!\PJ      #DWR*}HE@<P         G%RJI*} D <P?      !B%HJ?*P|@B@М      #B#EH"+|B AȜB      A D pp" D@ !     @ @@H"*D|A@J"        @@R*UH}RF(<PB       @@B
*| @@      " DCQ*v*} D@<PC      @!TRHU!|BE!!      C_!TSHU!|CE!@     @A?UXHU|E@QE       @@B
*|A Jb      !B%JJ%*B}B!\E     G_	T%WPUA}GE	'@!      <GQ
D*} D@AмPa     ? DFo"           G@
H| B@<P        @@BJ	*}@A@QA     H A*(|PB@<PC        @ACH| @AB       8CH
?D|B AМ      @UTRUI}%GE#       #@#EHB*|PA AМ
       xGB
x*| |O<DP       @@_*8|PD!<         GB
*}@@     @@f0B ( ! ?D@ !     ! BCEP*|B AМ     @ @@@
<*H| B@<PC       A#EDJ)*| A A\      ?$ $" 88C"        !B%P*U"*D|A@QA      !B%HJ!*B|B!\P% D       @ACHD|B AȜB       @@_ʄ*}@A@QA      B!  ?B! !     " BCA
$*H|<OB      @ C%PJޕ%*J|BPA<PP      #D%RJI*}$A@P      #D%PJ@*}DE<P      P AKI
|+H| B@QP!A      CH
 *|B AȜ      @UTRUI}%GEI'A     ! BT
*>|@A H        #@RJ**@@D       <GQ
D*} D@AмPi      A GȊJjIB$I^=PB        OE@J*}(PGA
      !B#E_"*D|B AQ> D      !BH
!*B|CP?      8GP
}`D`<     D A%K강*R|(B!\P% D       @@RJ*}$H_!\E     @!*E%?"" O     BUX^UI}%DEy'      #@CB
*R}"D@       @CQ*D*}DDAA        @CB
*B} @!<      @ @@B
*}@@      G_TEQIU"}CE!!     P A#_*>|HBA A      #@B
H}RF(<PB       @@_*}D!\        @@C*}D!\       !B%HJ!*B|B!\        @CP* *D|@C <PP       @D_ʤ*}@A@QA       @ACH}@ AD        B @  "BD?     D  " D@ !      8GU
T*}PE A\ΐ      ""   0 @!B	  ?      #DP
H*}<HD!\ȐD      #BEE
*D&@G     PAAUUUUUU}UGEUWTA       @A#%_U$*H| @@      @ AEU
*D}B AQ> D      QA	?I$Q@!|A        GP*UR}JE<@       @GD
!*~B\P% D     !BJ
,*R|`DQ<P      G '     !B#*| @OD        @GB
 | @G      @Z=jJ+ET)BS= P      "@DR
+|pPB!\P      ! B*UU%DQD@      #D#E_B*}DDa      xGB
*| D!\      @ @@@
A+|A@"      @@*UJU	G)JSJPւR      'Ae*UR!|ƢIH<PRB     !B#_"*D|B AМ       @@B
?* | B!\P? B       @ACH | B AQ> D       @A%T*$}|A!B        @O_ʄ*}D@QA      G_AUVUUU}UEQA@B      #@D
!*B|B!\P? B     }" F@<A@"        ? ĈG"DC     @ C%`@*}DEPA<PO      @" D!	D@ !      #@H| @G      "E " D@ !     @ AD |J`<P     B$QT%D'       @@B
)*T| A@QA      A 
5UGAD="P       A|'JUjUETES!     @ @OEE
*D}B AȜB      #@RJI*I| @      <GQ* *}B AA
      ( H@_H*Y|B!<(        D
_*T!WPUA}DE@B      G 4T!WRUI}DE'@C       @@B
**T}tDA@QA     ! B#E`JUB*}B@P       @G_ʤI*}$HG       !B%Oʐ!*~|CH       AWĪ$TJAaDP       @ACETJU>*|@G!\      ?"D  WDI@R      ! B 
?!BxIT      @ CEU
6+|@C      ?@  ĉ	 _"DD      #DWʠ@*}PEPAԜȐ0     ( HOB
I*}HD\I       #D%_ʠA*}GPD    G@A$O      #D%_ʀ *| @OA      xG%TJ *|@OD(        p~EZjERUKA9@B     @ @G%PJA*}@DМ`     "$DSQ
UT} @G       @ACEPJU>*| @!<P(         A%Gʀ?A|BPP"B     #@I+}B@<P     !B#EIU"|D(QP
"     3<R _O      @J%*KEPIP        @J!*OE!IP      ! CP*U*U|TB@P      !B#_ʠA*}A@<P       #E+UTUR}JE(QԼ@       C*U?TDDITS@P     ! B 5j$IA$IJD      !B(WȪ5$jJդJAH=/H    D>>CDC      #D%_ʢD*} E!\_"      E	ew C!         B؈ !      !GEH"*D|B A        GHJ ~|B\P% D       Gڮ5Dj#D䊩Y3=DP     H A#D |B\P? B      #@#B
*P|@EP\      ACB
*| A@PD      Q"DD	?D@ !     ! B
$*OՒJȔI#]$I        @ACEPJU *}TG\A       @@@*UU%GRA       @O_ʄ}@D       G_IUuT_A}uEQE]!A     ! Ch*UP!EH<P       #D%_ʠA*| $GPPd       C'5UjsETU=@P     @ A%P*}G8<P      @$G*)SDQ@cqPE       @GOʈD}$DC      >EHPH? !      @! G%RJI*} D@      #@I+!|@B A         GOʐ?* |@@B       !B%Oʐ!*~|@DQ<PB     PEQ_UUTPU}DUWT%A     @ @GHU+| @OD       "HB_ʈD}R AʜP ?    B/ȡ"AO?"      !OEJ*}$E0!\E        @w*UsUA AD"P       @O_ʄ }G!ܠE      ! BQ
*}D@@        G
DjՙETS3=DP      #D%_ʤI*| AA\P       @@@U *w)SFiD"P       @O_ʤ*}@AA\P       Cǀ?" D@       E
GETU#]Q"I      'AUHJU| AH\       GZ5E	T@P     >@  " D@ !     !PNEJ*| @OD        CGȊ*U$IG!RCP       GDj}#Dd_=@P     !ACRJ*}$@       @@@U *!B@IL        IJ*U$D!_äQ      NȪUITFh#] A        GOҚ5zj)SGiTV       #DPJ *~"DEH߼P       @@@
 T DA(        #DP*U@ |C!P? B      '@Sʤ }G!ܠE       '@_ʪU*}TEЪ\       @A@GJu *U*UGQR]Hd     "$GSU*UK }D\        @/2_I>EI DJ       @ @O@J *}D\       @* T @@O      #DTJQ*}D!ќP        GP*@*}TJʼP*C      !A#_U%*~0@Gʜ      @'*%EXRcaP     @ CEa
A*}DA     @ B@*R}8BP\PT       G_IUTWQ}EEE_G'      #DR* *~|B\P% D      #@HJ?* }DD<P      '@_ʪU*}TX@A      '@_ʠA*}D!܀"      !A'$*wԡEByJ#]H5      ACE
*}TD\        @/"Lc ?D@ !       G5{UD$Q^B!     !OEJ*}$HOQA     ? CP `@B?~JIA _      xG*}HG܄      !BHJ *|DQ<P D       DG%B* |J\P? B       AO5QjBDC6      #D%_ʠA*| @ܤ?     @ C_Е?*B|A!Ҝ      'A%H* } C!Ҝ        @OH*| @ ܄         ~I*D      A}jUA)US=P"B      #@B
 *~|(G!\      ! ~&j*J;@"    CS$,RTBADC      HB')*^T@@C$        GTJ}TEP\ @      !B%OJ%*}E(Q׼PB      !B#EO"*|| EP\      @<
$IT!GQS@P       @@
)DDWӢ=DP       BH
*IUAO!HCf       @O_ʈD}B AϜ" |      AJ!GEC$      #DRJ*}$DP     AC ʄd	  C!       $E%Gʈ*}PE<P?     ! A<OҚUzU*D$IRӭ]j       @@@J"!GGÈ!J     ! D'JUj+GTUsq        @* T@E#QQ       @'UBTSG8HCJP!     'DD
|*|ģ@"      #DCWʨ_*}| D@<RP      Aȕ?T @IJS=PRB      @E
+|TA@\P (     "XD%ZʤI*| B J"     x|!T?I
!J)
C!       !@ JO)RUJHI"R_        GU T EI_=DP       @ 
*TF HEA      @A *U?@TC	USP        G%_ʠ*}P@A       @AGAo>E$HG      @@
+TiK_Î+        @<_LEUêQRC       G%UJU*} DHќPd      !BIJ@~|B\P% D        GWʢ}| E!\Ȑ"      "HD%_ʀ }DȜ       T&8C~I*D      D
@!9~B| A?      @@@U?T!GO]      	$) }O       @*UU"@E$P       C?HT@US@P        G
 T@_A     !A'
 *"TCQJ]*      A |8~I*D      UI4(@" D@ !        zH!_ǈ	T%$}%BOD        C/B$j$T9A!       @ACEJJա*~|B \ "       @O_ʄ |@<      @ G>*~~ G!ܠ      H GE@
*$}E(<PB     !B<ҪҪDE|!UcIP      @@@JEE)TS@P      @ !J)J&# ?D@ !      A ĊRUJ@ HC!~       @@@
U$UT!G	TAP     !TBʪUNk U#@@I#]$K       @! _"D A?      @@@Ҋ)D IVQ4G     ?B B"(Y  A?      @@@ZUTD@HO       BH5*"TD@@O     C(J$H$B       'ACUJ* } Oʜ      ?@  C ~IB_      
B" Ĉ !      DA$)H"/"D} A?      A ?J}*GԂ)_SP$Q      #DRJ*D}@A<0       CU?T%C_:     !OEO*}@O܄      ?ࠀ>1J     @ @O@
*}$DA     @HB""$ C!       @@@
^jIU)@_      ?@ J     @#DPJ@*} @|ɀ       C'ʐ?* UGOÉf      @#ABB
 C!      @ @GT}H"UmHUAJ      !OE@
A*}@A     @ DAc B?       GoкBjUEԈ9SSD       GҚJj
Tb@!A]     @HC  J      C*TT%DDA#=QQ" <       G%WʱU*}T@\PR      bG/Z9jE@@C$      AJ*U#Fd[=DP      AJ	W%GUe       BH5*"TD@@I#]&J       #B#*}G       AJUTDE!_B      A'5$j FaY]P        CjU$T@@@]JQ      E(gԚ5|UTR#݈     !@Bgߊ:*WUB@]F       D@DA A?     T!$F{H ~|B\_ B     !A(O2+DQ^IP    A2 L(#  B       AJ|j )D@Q=     #AH8| D\A      " BUPW?!@@C$    BIGMb$"?O       @GUJA+}|B UI 0      <GJ*IUBHO]$       G**UG	USQ      '@@
A*|@ \      !$BHzUUjԒB QHIP       GOJjs G!DCA     !GEH*}$DA      #@E*}G!ܑA      ETwJUDj UCHB#]E     ?Q A"%QJ$"P""       _J}$BUPDC]"I	!       @@
$T@DB]TP<       GG5 TCO        GOҚ *TBHA      !Gq
D*}" T@PT)      O_ʄ|@ \        @@
!*TL|_D       CU?UUDDQUP      A ڪU*ԪUB@]%P       C!  J      #@@J *|@ М*      $G	$H A?       G*U@RE؈U#]Ne        Oޚ5zjAGO       BH5*"TD@ I#$        %T&9C J       }򢩇
*T!A A?     #@P*UR| B\_       !A
**A D]qP%     $!@("B=c ?D@ !     $ EOꈕ*}D@      !D#TJU}| Eܨ_"     y!!2
I( A?      "|Aq
}D\"       W)K)z^J#Q A?     'B#TR*} @ɀ        9_S}*1       @'*
*IT@@R=_P      #ES]ʊw*}TEPܪ     ! D?A$ A?      AJ$T@@Q_P     #ਿH+~ER.)O      #ES_ʀ }G\ a       G'ҊJ*U*DR(      G_UUR_Ց}EQE}G@      #ESB
+|G       G'zzjAUEHQSPRH     'B#"+|@B ȜB     ! C/ZVUEHU]T2      @@@J5T@ O]?A      ETwJUDj U#@@C$     BҒB)(j A?      G'5? UAADQEõ]P        GU? UC]#f4       C55TGO]*U      'B_*}@Gܑ       GҚJj$TJ H"     !B(ȊR*WGQ_CP!      @@@)*TCO]?"         @J~     H#A#_UR|D@ܩPE     "B G)%H `3 A?       CU?AT ET_UP      @~"EGQ$Ht A?     !$D
RUJDRCIP     'ȑ"|?@ϕ*|H      @ r̃J~       &@J~      #DRU*}T"T@Y(W@B      "	 @J~     RJ/>"|  A?      @@U~*U~EWàU         (@J~      GU	TG\_=uЪU     "B ܚUwU=GȊU]t      @Q Gψ>"BL| A?     RGd$hRFAe!>T"     !A 0jDyRJg     ! 'T@u>	(@@J~     #EڊIjUG	RJPRB      ĈB'BBUK$      '@UJ"+|B \ a      ?D@>|TH 	     D I_
?WWڢ5_k     #DҚJjS@DC6     'B#UJ|(A \! ~     ""GGDTC_nД;     >|!Vlg @J~     #DҚJjHB h"      G'5{(THB@i$      D@ h@J~     | CBH @J~     ! O r~WT A?     #DҚ*ՐB@@     (TI4CBG
_$*~@J~     #DԚURjUFDUSDQ~     $E_ I^yW>T"       D	$$HH!"BD?          !"BD?       AQ*UTUR%TJz?@%        CQ
L*UT%TJy        @%RJI*UDU%|_      BSU*U!Wy         "BD  | F#R#8A     ATjU*UVUR}?@&       @%SʤI*U$ITx_       @@%ZJ*UU%|_ "     $!
UjUEV@%      ' @>TO      @  P! @@(       $ r DB!B!J        r OB!B!J        r  	OJ!LB
        r @	/DO! B|
      " rB /@!(B !J      " r~ 	/DB!BH*      # r
OF!(B!J      $ r@
D!B(a       _ A
ҪUH]"E-$     ) r$		/D_Ѐ!$BD	      " rO!B	
      ( H	 K("\G      ?r	/@!$BH	H      )uJ	/RUȪU"D$M4      $ :"	 "B"EE     @%  	"H>"DD$     #r| 	J!B|!      /: 	_Ȅ"E$]     @*:*T H""|D$      " |	"H""DP      ':D|	WDJ"D $     .UA;UT"i$"~D         @@1@AA       @?AZQDA      ! H`BXE !@B       #  T! @@       #  T! @@(         @ 
 " #        ' B"DXQ(PA        @  &YY%*hT" D?      @ ?@"! X"QHD@`         GY) R@        @  [(@Q@A	        B	$ aCA       ! G@ X)R A!
       ? aCA        '@'BYE*TA!E        @ "$DHYS*V(" DB      ! G@$ITA B !B@         @ "DXQ(Q@	DD       @ A	DMAYTPDADA       @?	DMIY&WRD @      !B  aCA       @  AU2 T@B
       <耑"DY* T@A)Da        @  $1        ! B?!BX+R!B%D        @ X)Q 
b       x X!(@P         I	@ dCE         @G (X+PA       @A ??	HMXFPQBD@        ?DCD        @ B	U @A@A	       C"DE dCE        x X!(Q@A	      ?P
	 dCE         @ ?X!+P       ! B%BY)R!B E	      J!B(_!  dCE           G"@ DX)@S "D         @G$U0P A     ! 		 dCE        4 $@1       !  BEY+TA" D?        D<rZI$JI ā	HB      @   @X* T@!          @$JV%DSAQ        O~!DQNTGDADA          B Y*W!          #'@?BY	+T A!          @=JY)*PWA 
      @ @ " HX) R A 
       @?	DMIY&WRDI$DA        @G@BBD Y( P!	      !  $K[*HTЉA" D?        @?	DMAYTPDADA      P '  ~YE*TA!E       <耑"DY* T@A)Di        @ Xq)PR!BDD      !'@aBU)2PT A!J      A?aCA         @ $U0@Q@A	      @@`e3aCA         @ B$U%"HO!B E        @ T! @O      H"'@RYI*U         " (B  $@1           ~U%R!B?B       @I	$DX"TRDI$D      B >
PMIY&T^DI@      @ @ "[(@Q ABA         @  Y*T!B         @ T! A AB@          G""DUE"DAE
A      @   $@2     @CH0A~ dCE       ! @U)2HXB"(       @ 	  ~UE"E ""	     $ DG!" $@1F      !(OȐoDU2PTA(Q      L  0 $@1         @ $Y(|Q!        @   [(R  B 
      !wˀbDU2 T@"_      ! @fX!+P?        @G@B@D X+T!B       @ ^[* W"T       '  ?AY+T!B         @  X+T!B        '  ?UYU*UPB(E      ! @PY,WA!~     A B  }"JH)RY$I)$K        "@DTq1PR!BDD        @  T!0@W        #"$DY#*U(Q" D     @B "D 1Z!%%LA       "JD	$@1F      @    [(Q@AB       @ w /Z)R A*H      @A2  dCE        D
)@?XP_@?        @ *UYU*UPB*        '  PY!+P?       #'@!BYE*T)a           	 L       '  !BY( T A	          @ IY%-TPA	       '"ň1Vs%TL""@D       # B?  Y(@P        D ?HLc       !  Y+T DB      @! @!~U'@`A1       ? aCA        ( OTW"EPA$KE	!      $@D3?HD
        ' BDY)R A>D       #  @YQ*UPAH0      @ @ !UQ2U@%JE      ! L1 dCE        # X) W!HB?B      D "$@1F         !H
:      ( H ?IY*HTB$I     $ H@/	>#  dCE      !!' AY(Q@	""D       A% .E` $@1F     ? C $@1F       # $IX!(@W       $ GY	*WAQ         @G@B@D XE(HDA        耑?HYI*T AA
     ! !|
 $_HEU) $@H       	 RA( $@1        !D T!1HRAA	      @!  B"W! D@       #  AX*$WP*Dd      ! "DP![(UH" D      P$	O=@HTy%$JI        @ "ZC)V 
b        @  $DNY#*<T $IE"      !B? Y*T" D       GI	tDAYvUQUD]H!E       /xR)4  _x"R	*#        @ ?[(RA)1@       ' ?DHUT2"$DH      " $ 3 dCE      @"ǀ  dCE       " || $1       ! G	$5ΰQ A<	$H       "H DU%R A
D ?       # $IT!'AABDD       DLC,@1         @$U%3T"D         BJ" dCE        GB	D!P~TG%E%$I	DB     $I BG% $@1F       '!?D5 T@"(D?B        @  Y*PTA
      !@"DX)R  A	     "   ?@cQ       !" G#4	R A:       "@  Y+TB E        @ Y(_!3	      @ @ 
T%3T!B%       #  AX/P$
?     ! "   Y) SA)f       x Y*HW      ! "xW9D"4LP
"      A ? R5I%TRHC      H"')^U @O
$       ' Y*HW?       "H  XA+UPB*U       T!$x@ $1       a$!${ $@1        O D*H#      ' ? [) S!B       _ KP$ $@1      ! "!$Dϊ5TpQ)DbH       ' B  W$DH""DD      @!@GA_d 5*TWQ=DHd      !Q[5(RP"       'B_~V!'I A#I	      @   U @O"      P w"i Y+TB E        D  T#JB?B       "H?I5@W!Bf      (#D=E$$@1F     "B"H B$Y%+P?       #'@!BT'JP)BR        #B? TC$E(15DRB      !@Y*HW!? E      !@
"V  @ B       t'1       @ @I(T"KA>D        @  Y+QHԄ0@       ' Ȫ5HU!(	     !$$WI'@_Q"}ITG     ~HQ$   dCE      !!G?T" GB       |!ROdo
!JIh9L       $ YQ*U"(D
?       <ǐ!_ȤLU*IRC     !!ǌa {ȔƲRP@
$      @)", $@1       UI4(  dCE       @ @AH"6| [)"E%      D
 " pEF       	 "  $1          耗"_Y}*UB
        Ȁ
U}" GR       H"?ʀ(Q X+UPB*       @ @ B$UT!'I/AD       'ҐJDY*TB      "$ GJ	 Tq+RÑ        #B?U%#A :	     !" G5ZTR8QD<ɑ!      @#ABB

$@1F       
.V} $@1      @ G@%"7R(B H@     ?B B"(] h9L       'GB* Y( _
$       ! ĀRJ[( WA!~       '  Y+TB?"       '|q5*WTI_      @!@"V'!L@!80       g zH $@1       (?@DC9F       #B?*T[)PR      P$WT!#@A       '	O"{ŀ}V%J((@D       '	OJDs X/R AA	     ')$yI<IY$$I$I        ''  7_xQ<ME%Q     BD>B ҪUꪷ]"8䪪I!       '	OҐ Y*HW?      !  $Y* PɈ      <'@IY*HTB$      $'PO TW "
      !'"$E T&B`BD       # B? X/P *     !"'Y6T^Q*BTa        @ !Y,|P 	D      !@V#&dJ""DD     ! !|
/DHUUԊ'$UH      " !UD6rTX
"       #W?T G?        '렠"?IY%+P "|      !';UY(@W
$      D$HҚY)*ThQ"       '
WB V%H RR      !'B2DY}* UH
"        @G@B_D  Y*UPU	      @A$GR$ |@h9L     !" ;D P $P@       "H""DX( W!$       O*?!䪒*H H       ' B^X+T ? 	      @!' Y%+T "      '
'p~T#EPB*      !(#TA/ȉ5TA!EA       # "5T'@B*U       /	'!䈉6X*nĈ     !D"W!5LWȂ"D       ' ĔY+TB?"     !/'?R5(W"*RI
c        @:$UUTA       '
W?"W%zg     ! "|'$H"W|+p     !" D[)TQI0     B Bx/Kd4$_H,U-	J#     !"?DTR<I*"D     "" EPIXy"}	g     @Q Gψ>"BL|h9L     AHB O)4jR
BsH	!     'R{)_[R_IU%UI     #"A!4U(q9ZB     AO@	TR_Q>B(H!     !@$	a*Du7U	`     %(/|%'1JQW DB     '  !kD7_?Q%;D     !/GIRZԙ>RDIP     "$AuUH7[ȡ	`     !/'6RD A     !/GJD)7޴D_Q/DDU$      "Ȉ""DD $ H        "	$$HPp! B       D $I    D $IB r pq@     "C  |   ` 9     "C     @      "BD$7BA      ACej%K$J!"J%b     "C@	!$	?8     "C@">DJ'D     "C)JDH@BCA     "C(8'"G҂=?     "C ?9"A        @@? " &p      /Đ!~)KD BC     I"  Bp     ~|	#!_߄!B A!@(        !B!!~!CBE`$     ~(@!(B ! @(        "D$А! ~@	"EQ$      !Ð!~=ED$      A     F      hC?@@D#x      )!'h1*~TE0eC`C       #D  AU*G	DD    
 (
/ RP      B!"~
(_(R@       A$/Ȑ!~T	K%T$     ""   3?@@DD      "7ň~-DTIB)SC     ( QD*͐!~lUB	R$     |!BB?BRQABI(`C     |	HH?"BDAR)`C      ! ?>D	JGC     ~|$I$BH" DB$H      |!CEH.IE yO	@!      R"Ȑ~	S􂂅P      B#ʐ ~"J$      =B%/ː!)~N	sEe$      (Q%WʨQ?UDUBBIPC      P'QJEUOR)eRC     ? H@
   F     w|UO D~	@IA!       !G>~EDB"IOC      "'>D!QDJC      C"D/訾"$QUIbC      % ?ADBB|C     }$OȐ?"DBDI`a      UI4( ?@@     " D'H>DIO)QRC      <A%ˈ'>@DIE"T     !
?@@     " D#$DAG	CC       @B(>EH!COҐC     
 U"'(Q@>~D	D"CC     J*.w(QREJ)JR`R     %/EzIR)eR      <A%ˈ'>@DD^C    .誾
+**XP     E-Toπ"bꪕ%+JV     :BCQ	   F      !$ɈQ#@DEb     |E[h_mEԦI`     ~@BG_   F      
(gQ>DTBJC     B Ъ~D	EJ$     " D'wʨ	>?DȊ!COҐC       @@"D%  $ &p     ) RI$ITPB$ BA     >|D!P_ʄ* Q@@(        #D!B$I$"AADI`    B@ " "	H $p?       #D B$IU%*A@	"D       "H"$J*"H#B    D>D "!J@P8     ""   0 " D@( !0>    K(ꀪFQbV@      |!BEJ.IU  yO@A      B _U*TGABIPR      (Q%UJU?UTTGBBIP      P'@
UJUTDOR)eRC     $ H"'D*~TBQOIRC     " D#A
$T@AG	CC      <A%K'*@TBD^C      @@D_$!?HB     @HIB&JI)?KO$(`A       |A'I$I?I$II(P     BB~WDIĕD$H!E       @AOO	*}AQCHAG      <$
>U ABUPA       A WJH>T(BBC`      !"D
">DTB	SC!      @9JT*}PU#EUJΑ         $$WЊB>U"	@      "
!.F      <$
>U ABUPE     @ $
>T))DPCD        
 >T 	B      AgD B     @ $D
D?U!BQCD    TDC!!HF      !!$W
(>|U A	BC      @@H) @*}DUSET*QO        @AE)
H|!RCQ*Q        @AOOI*}IPEBJ@       A 
~> T@	DC       CA	?*iRERJđ(       (@IA	?H*Y|R%b*(F      @ @ 
> T@	DC       @AA	I*}AQERJQF       @rH)OA*}QCI
QD       @AB}QTER
F      ! $>U$Q¥IRPC     !ABOO*}$PF       @!$ʈ >VIHC"      (}"*㐂D B      @A	τ |TF     p @ >B%I$DQE     @ +Wϊ>> UIP      H@BI*}$T@
!F       CRJπ*}IWF     
bp!( D B       RU_Ց}UUU_}TEWAc     P ,
H>T RWPC     HO$(>* @Ĉ"L     !$BbV?歹|A_J      A"_/U?*B|	SOʨFw      B%BIH|!S]Q\ƃ      ADI]+}T]5@
J     ""GBO1D*}PTTƻ             ?           G> $O          G  >  A!B(        @A? A@ EDDAD       @@@ ߄	~ %J!/PP       @ A  >$ H""THQA       @ _! TNQ!D@@      @B G  GD@        @@    A!B        #G" d<P!$BH/BR        'G	 $= !"BDR!A      @A?  _A DQDB         C  >  A!B       #B'@
 ">( P!EA        @G >!B A        !@  >  A!B(         !@  >  A!B         @@ 
ϖ9> i%J/Q       @ %
_) BQDER     !DI%^I%䔒RII%蔠A      B!   ? ?          @?%_I%RQIE%@@      @ B ?> A$P/Q?       xG  >A!B/Q         C  O>~ $H/Q      @ A > %DHQA    @0 g A0      !@ OeL<`A$I/$RG       AG A?} H""DHJ       #@G	 D> 0B$Q        xG    B"HA       A'@O)>  "DHO       G	 %^A甂R	H%@!        @AG   D@        C  ?D "$DHB        @@O	>AB"HA      !AG  @> B"B"        @  ?D@R**X/@R        @ /D< P!BBRD      @ A'@>( PB$I/QC         @G	 'H !B$I        '@%/J@R%,*PT/       @ @@ >> D"$HOJ         	  =B*
dD         @@@
O@H$I DA0       !B'@> 	""B"       #'@ "= ""DD!B       '@ '<BD$IDE         @ $I<$ A/R      ! D <A A        @?^I%RH!        # O < A$BHA       8   a$bH/B       @ ?P)^TJ         @ = J<(Q'ID
        @?%^%䔒RI%       !@ >8 pQ)$b/         P@ ? >8 Q1B         @G@OB@< ! B$      @ @  <A A           H<<A$I$      B ?^I%䔞RIH     "
!.            ! GԀ)/Z=H!*BT/R        @@  >	($PO         @  ? <	$H$O        !'@aB<(Q$"HD!J          @G >B!"$H/         @ $ <A!BBA        @AG	"$DE        <G D>!B(DPQi        @ O$I<$ BA     ?H!           A B Ȑ}.J@*T)J"E)N@        @D 
 >  A!B        # O <( P!BD/"R       !B'@ ">D "$DH> D      H"'@R<H%H        !B !>B 	$H?      ! GJ@I%)J^/RB      ! B >> @#D           @G/>$ P"D/Q        @@ A  $$HO? B        @@ >  A"DHO        G E	_"HQ!DO!       #@ O*>A!B          G/"D<D$IDEA       #D/@RJ*TP/QB       @I% !䔒RII%䔟      P ' ?  <~D$IDE          C O?>B 	$$@       !B'@ ">D "$DH       "H  =""B
b      @ @ /@ < A A(         G  _}T_QEDB     JL߀@?          @ @ G /<X Q$I$OR(         '%/)@R! )JB/RRB      B A^I䔒RyI      !Bg /@  	'HO? B      " DG@O   Q%DJQJ        @AG   "$DH> D       ( O? < !"BDDqR     ! )DD?         @ @   A= !BB
"        @    "DD
        #'@! B<D$I)a      @ @  <  @/B/R       8 ?@<|%J$OO       @   ?@<D%RJD/HR         @G@O@@<  A'A       @?^AIA        @  <   $H$O         xG >  ($PO          @G>| E,DA      !!' ? <  A/A         @G !>	'HO% D       "@D = !"BD/"R      !$O	/@[%"JD/"R@       #D@@J*+P/QB        @ 
 = pQ"I$ODR       @P '@  B        @AO > @
"D/Q!      ! @1 <P7HD!~       @  $<R*BQD!        #'@ "= ""DD!B     ! "  /@ADQJU,jPT R         @     A'A       'B'@ ">| :?@      !!'  "<D ""DD!      P AGO >, B"I/QD        @A  >$}
-$A         @ ?<"EDODQ        "@D = pQ"I$ODR        ' ?D =| A(_@        @  "OO 
        #     A'A     ""D@D?         $ H?          # '@  A<  E$QQ         @  < @A"TQS        ' OP%<@A"TQQ         @ ?I<A!EDODR          C O!>B E$I1 A      !W	$<J .bDR     @ H
@( "8_R"EO         ' ?@ < A/AA    TC!?           @! O *"IP        @% K Q*IP         @ ! _(        B!P@E*T/R"B      #  ? I="BE/ R       # OI I<I   A       D
 !_APQEQ@B       #  O? =""DD6      @ ' ? @"<B&"R
b        @AG@O@>> A($PO        '  "=  'HD!~         DG O>B7A       ( H  ?D =Q*T/QA       ( O? T<%RJDKQ	!       #'@! B<'D"R       #  O$I<U2A       #    <  A/AA       "@D =  'H$O         G  !_IRQE%R@C      ( HG I>I/ROI       ! C /ϐ)>J	(_
          @G  >>  "$DO       ! '@ O@B<"BD"R       #   @<P%RJDH0     !!' A<!BD/"R         @   !"BD"RD      !O@ >J1B%M/Q#@      !BO?> 
/P/Q      ! b<$BH?@         @ A$IT        # $I<  !EDODR      @ G?B IHB).U?      @ @ ? < A$I$/R(       !  @2O   	+D$% D      @ @  U=  A/A        'P%/*
T@R      ''	r =8"BDOҠ      P G
 < P!BB
 (        @ $I<"EDODS         D@
$ 	$OO            O "<D ""GĈ        w  Os=!"BD"R    D~? g &0       GIuAuTR]IA      @!  O?I<!$B_        'PO)@  !JJO)      @  @ <':H/ R      !'@= "<U*fD" D      @ @  <  B_(                  !O@ ">D "?@A       !D  <  I"IDA       x ? *<TQ"_       #  ? I=! @""HD       ! $/I@T!#JR         @   	'H$ E         @O Ϥ>A%DROQ       ! @!	<I OO(        H A'   	'HO? B       /	Ґ%/z@*)"WDO
      &$p             ' OD=X0Q!E$/D(        @ @  ?A< EDODR(        H A @ H!$BQ     A B wȠN"8
)V"E"E        @  $@N<"=$KĤIQ"        @G@O_@ <T'JO*A         @G@OD@~< PA"TQQ         @ ?<"MD1@      '"R@½	$OO           CO ? !z$IO         @`O$k<$$BA      H"') ^<A/C$       '  $  	'H$ E       @ @/?@<U&WUQ(C       #  A<   I$?      @ @@O? <$OO       "  <(  %RJO*       ' ? <I'A        !B O%>**TWQB       '	O=  < $OO 
        x ? <I'A      @ @ 
 $$I$O%      !"$W/2@K 	$OO         ' O < E(_/DR        	 =$J!"BD	      @ @  < 'A(          @ $k<$ C$     (HG*@?          @!@G@_o  =*T)RROHd       "@Ob D<D#D$O? B       "H    @%RJO*U        # $I<   U       @  ?  <A/A        'G*U<A O         G O   	'HO? B        / A =
*UDCR!        @ )E(WԢ/DR      !@ ><D $JDO      @ O\N}:TQ_N        D <  	*GO? B       #'?  = )RdOH*           O	 $"HOA`          < A O      ' ?< #J$B       !@ <$ _       !@
   &T$O? B       !B'@ D $DI       !@ "<D A/C$       #DO >"EJ(_Q        '"/ <$OO E        #O?<A O     H/D"'H _Ā	M      @ C
@JH5TOQ%          /?@<"U%IoUR3      D	 ?&        @f          "O=""E$R      !@ <@ "EDRJ     BD@':$HC$         ' '@=  = $ID
       UI4(@  ?         !(	W=8&RHP      "XD ϤI>  ""B"     @@@PG ,.@b;<  JR)NR      ' |<  A
"        @G@
O?<~ "GO( "        @  <	'H$A     @@@$.O 9"<K? ~     @@<!_LJ*URC       #O?"<B&"R
b      @ @@	"  "GĈ!J       ' ?H =/Qτ         ?= T!BFĕOJR (     !!' ?  "<%RJO*      !@ I'I$ E        #G (_<|!$BJ/RR     @B =H92TC%$NU D      @ @  < +TT@R      <O ~) ҁJ      @! @ < A/AO$        x $O% =   I$O$       !  $ </HDf     ! @ k< /D 
        'GO*< /A$          1U<T @O(RR     y"¤R          @ @ O$U<  )
TAR      !@ ?A< _A     @ DAL a      @ @@E**TT@R      @ @@}"**TT@R       'ҐJ@
<b&"AO     !!  <OJ=*+2@E       '  <$OO?"         x /' y< %KO/Q        
=|!'HR       #O?<$!_:      @!@%/<&,BC$0       '$OH= U*UT@       #O? <$OO?"        'ҐJ@	$OO        @ @ ) H%HOUQJ       @!!#c       AB'I?IRE$	!      !@ <A/A      @#ABB
	       @C %NA92=j!NA0      @ O/ q<&RJįB      |	          #'?  = Oĉf     A B<OȐ.RDJ.$TJ      ''Ȁ}R=)*RVDҒ) a      ''  *= Q'A        '	O=  <I'A      @@@$.O 9 IRM     !! "/U@'H$       @ O/VJ@ 	KR)NZπ       '  ?A<  OO          @@OD@<'t$? B     BB'y8
)DREp"I!       /HԐOA}<("_Ġ"        @ ?! <} _D     #JP9/^TRJԠ@     @G  9H
U*U      A/$$@_?        ''?
@%=  )JTToJR     !$"H
pOU@뼒!$RHIR       *c< "_*       #.8  $KO.A       <'@? I=I$OO$         @ $<E/BOTR<       '	O!J@s  ""DDA      ! ڠUO*T?@O%R       ''@?1 S$"OĐ!~      "$ @TO D= _ĠA     !!(O%2)R^IR      !1D<!$BOT)       'G%/ <$O       !@ U=	$OO       !! Ā)O3 $=  $"HD!B      @ O {:RyR%{ΔT(?       #W   	'CO1 a      !' ;U<A/C$       /  /_@  $OO?        "H / "<D 'I$$       D$H Ҽ($jIT"         @G@O_@ < %RN䈏U     AD'}9
HRE$UQ      A)!
cC       $!@("B=c       @ G
'Ҁ?J 9*K-(     @G
W)N 9 HRR      @ @@ <$OR=      ''O?A< (j/?R      !'O2@|%HH"     >EGB       A MWmN )_R9        B' /I>$'H" |       #W?= 'A      !!  *!/DOqR%      D> Q>     @@Ȁ 8!_E1a       # "/5<   OO*U        	W =D%KO/?     ADBW 9LB%N          !>~      'd <A'H       '      _Owҩ       ' O? =!]$f4     " %|Ҡ(Q?IDK@     >ECQ
("       ~@BG_        
 gp!W        ' =@J" ^/)Rc      ''{"=  _T=       '  $OO?"      @ @  "$uJ(n?     ! #'&/R@<	'DQ      #'*$OO?"      	'$I p V}UkQ       '>$*=$7I$$      " :R~	B       #$=H@E**VԨ_R     @ OH":PSΤH       	W=D%K䒏(?     ! O r~WT   p     @Q Gψ>#C       AB ȀA VU[5 T)       ' p*U@A.UTu     2R) uP(}JE*wШ      " :R~ 
l       H&Cߒ$?~       @@G@| UI$jJ     !$  ?D=!?R$R       ' O;"= ""_O1 a     @NS_~TG*]     #$=D@U+UTNR     !H"
@?) <j-JdqR     ""'G1D<$_nҔ;     CB@!8)Nr9Z B      ''%/{(<HA/i$     E(O|%'1BQH NB     AO'܀:EOA     BHB ":Aԩ)     #$ ?@ ='e+UTVy     /PyO	IҨ[J~	Q     >p ¨wAϞ->ZD袂       A A@      @@A   = @ A D         '@   @@          	"B b        @@A   < !@BA     !" D@"D" THȑ! A         'A  @ A          '@   @P       @ @@?<! B@A       @@A   < @ A        $DI$DDI$g @      A D   <~ B "@@      @O   <? A "@     DI$DI$DEI$H A      @I @ "<D!@A "      '" D@"" DHQ @       #@  @ ~ " D "       O@G$E!BPFA      B D@"<D" D@B       @@A  < @/AD       #$ H @%J	P$J A     #$ H  ?@	'H      #  D@BP! T@ЁA 
         @@@ ?D|R$J(`#@D      A B  D< @@B       A@B @e=L`#@DR#$DG      @@B  A= "F PC ?       "B %>DD)&X(? @       B@D I<
"! D@A      CD @*U$"EPR@       !" D@ ! R
 c      @A   <@"D AA      @@A @" BA       '@ $H "@T        @@@ ?<"D!PC         /@  @<I	$H'I A       # A @*@ Q         !"D @!B"T A       #D ^ A  R@A@@A      #H @Q)DKiFP       B D ( P= |! B    @      @8G   <"`D`"B       @ @#@@DC1 0      @xO " D<	 $ H@`QDɁ	      B?@`?     #@ A >D$H>E@P        DI$ DDI$d     #B@!Q  DEAG@       @@@" D	%I "     #"B Ɉ @P          @@A @@  "D!PC       #$ H "D	 $@O      @  8 'AAJ$       (@H@ < " D@@       @@G  <   @GB      @@A  =/@@Q"        @@@ <  #D!PC        A B  $<	R*Pi@H!      (H?B 9	$IPdi%%BA       B@D D<	p!PB!BD@        B@D D<	! B@Q#"D      @xG   #D!PC        8! ;)PRAS0       x    " ET#HD? B      @@B  @ OD       @A|"E&I      ?/"H#䈒"H*$@      BD   |? "DB        A G " ADCP @        "8 HAAQE      BD@ <	@ _D        @@@@  	@ ADD     #$Q ?( @P        GA)RHc"J!0P      @ ?9H!CATE        $A R8I/E(QTC(A	!     G@ @$I	Ui(b@     G@ 	   G!PC          
D*  DADDd@B     CD   /@EA       B@D" <	   G!PC         *8##B F@
      B G _!<R"I A      D@E| @H/"I!DC      BD@ ?A<	!@B"DA      GB DI$D4DP@      @ A@ @$@@"      @ ?9 #DBA      @@ @!F!!~      OIx% z\*$I AuC
      @9@! GH"F         @@G   JP" B@B      OA  FVLT$hQHQB        A B@	 <$	! B@ $ H     CD $I 'AABD`        8 *8C OAP $      @q" D@"'HA	     @@" :" GȀ       @(  @@I#R$BB |     GDA}G%RM}$P      B"9ȁ*?      @@@O   ?A#@ABD@(         /? @A@A            "8"  @        @DI@
 "="@$I "       @@@O ?I"HDB        @@@O@@?<B"D !     @ 8#@I        "8|!O@        A?) R8 #@I      
@  #@ !BI#      @ Ur$DOJ$        DHN* d|@$H`C@      @@A $ O<	"<$ K ~     C"??"D J0      G?#"?2!      GIH=  ! D @C 
        @A@D@@_` <	*T'IP}CHd      <	@   @'B TC%6      CH@ ?H	"DXxC0       @DE <	("GAP!~          "; #D! A      @@@O < %H@!      @@@G 
<$#D!SC%       $I! "TE$A
?      @	 'J:*@     # DD	_ #T@"B         8"G?"      @A z"D$     GH" "B!D! 3     !$@{9d$_P!TCH        @xO  $@%<	 '@!RC$       @@@O@	 " 'B H!J     A   8D$GBU      ?
 ) OM*( P      @PA , xb<  GQFR       9"'@     @? 9R$O      D DI}$DQIE-AA     A _ <@J	*$K0E     GAJ\
b F \C      # O? "W?       GB=1JQ #D!_ A       @@ b#D@_ $I     PI_IU%tRUI},RDA       J@U; #D! A     GB j'QK4@     1Pd%HOQ>Fq      I ? "E&_@      A?ԂĹ %H `_      H @Q;E.ETC.A	!       D!$( ?@@     9
?"#D"D @      @? @HxA$RDOA     $D)$BADQ$(HP!$CЄ       %D)$BA_IR^$%H!$SȤ@      HH"RH HK"BDG        ADAEDQ>@xA'H$O        @A E
"@x  A     ࠉ$$RD|DI O>AD      |@xē A
"        $!O>DB#DH>"D     $DE*C1JBJ^"%H@!!D 8       "$H}RCz)*RVDҒ) a        єy$OO?"      !/|@%0R{ޔ/zRJg           @@A D       B>  @q      B!       ?      !@ "|!B
b     @!D  ?  ?@@ ?     ! )D?@@ ?      A@I w)zR2jD"x      !($Q| !O      ~G	 A          #|TAF^JP (    A$u$vI?  "     (ER_?H E
p     *"*Z ?4 kT     *"G* UOꈕ     *wJ | H       HAT0`  D3P @        HAT0`  D3P @      P@EE
%(RQ$AB(        !@@I($kP"T        A Dq@3 i      {"J'I,$z("I	&      !#IPg@LB4A@
      #ID	$4HA A!      "H	)RG$L5 D *        C ?1(J%LjRR%       A@G&R@(|jTD"PT      B!D
"&DU"$D@        ?A @3 i8     A c@3h      !#IHD4B A!      "#P!~L5HbD0@       !  @	D|L4DLH
      $>~  _d6`      )HOI(jITB$I      h@a&2(kZL	      @Q'LL5jAH

           ?@?  l6      $"Q"$ (FaDh       !@## L6CA"     "
)] @L5*GPA"H      !@F? (jIT!B
"       ID'|L4H@
A     A#@>~ EB
l     !#H>L 5EPJ       " TG/QL5"EP)*J	     ~$(iYl쳦,      ! ##_ IL5$EXJ C     %H%*BN䪄jQDA+S      !@F?(j	W!A      ! ΀ kDB       L (01G	 D`N
      @(?IEA$1DI     `#@2
$QRA(A 
      a2
$!@P!B 
     b#@&"v
% TA(U JC       `C&$rH%SV)(P JB      c@2
R%#DP!B 
      (IEI%'4RIy$      2EII$Ĝ$#4RII$     @@CP_ $ H( b!HL       $EHDE"%3HI!Ą!      $IEA%4PIAA      `C$
$!P!
     A#R@Hb5D)9eQL"D      c !
~$S$,@ 
       c D!2B
%ET)Q 
a     `C$F%
$HRQ$H@E	     ASHE14P)wHL!~      a!
B$R$,H@?B      cF? 
 %@P?B 
      `$F?A
%QA"I JC       c$$I
$!@W!B 
       @^pP% Ds+ bAD"T     @AWI%D?I) dA_     @ACT@PE_d 4**UiQRAHd      GYR$${+Ӕ$hQ^B!      bK$ 2$AUQ*U@U     aD 2
%%HW),R@      `$F$U
% TI.QJd     GTD4|(œ`A
"     AR @? 4"*eQJA*       CT_D?)%a_:     aD?A
%P/E 
A	      GX S$DH *TjU\@       GYHR= 4)HgA     GR ^%${(H)@oi$     D_xR=4-@g@      	@   
        @//(@H      '        @B           !B >DP@@     ?   !          O?@         A I&Y=I$i	) b?      @A/<>HD!@$QC      | @$"HD ADQ(`     @@f0B?@@     BcᐄA       9'H	?Q<IDQ	E"A       1`  ?@@     "#             ?@@        $O!?@B       ~P  P!BAHAA      @A/( > EA(@     $GO   !A      ! BO)"D<ID	E	E"A     "
!.       %     ADAA      ?D@ ?@@      @o?@@      = D!     Db# ? O@ @     !"@?@@      !B$D>D@       }	$PH"(DPADI(     $?B'`=A       A!>E	"D@       A"ĈAD "D?@B      =(D>E!@BQi    #!ڗG !A      @đ"D@'       A  ?@@      #HG	<PIE!"~      O@O        A"!>F	D%@D       !B/>|DEB@       舑>"DD"DAA     A C)N
#	?@@    D'  ?@C        A$ȪU>ETP
D       %B/$IG)PBQI!      @A/A?D@"A     ! b??@@       ! BO	"D<I|!@	B"       (I/x>D>"Qa     |	HH?"BD BBDH`@      @""H' R"<JB 	
"b     y$	 IR"DQJA        AB$GHQ > GA	"$Q(@        , !         (_!D      (I!H>YD	"$(@        AB$GHQ>GA	"$Q(@        A'I'I?<KE")"        ! BO	"D<I|!P)B"      |%KI( ]DTDP(`       $8H?@@      AA/?@@     |	HH?" DT	)DR(`!      {)KDI%H $1       A B?@ C      PB/HU>ETPAA      @A Ј >D "D@      B$_Y?A     B/ȡ"AO??A       ??@@      Hz/QDH"Q      @A ȈU?D A@       W>$EH 
BQ       E)'>D I	BAA     B	A      @A/P	? < KA	%")b(       pD"O?@@      $IU ?@@     |OE$PAHBTH`@        E!'> D	D?@B      ' @?$@@      (
o)>RDH@"(         A!ȈDE B"@|     {E 	?I$I$        H"?B$     (I.I	<KQ9)bA       CAߤI~! 	!     }W_ "~DGHH!        AB"GHѡ>~D D@"      T @?P?@@       zH/D"&y!'HDD     	""@ "<JP
I*     A _	*=H*( P      (I!Ȥ>EI 򈄉@      /DGII	%? E       D ?ࠦ0     C$~B*~
~	 B     {ސ)KT)1%H` ʎ$      􄯧JJ A    B!/ȒRSHB?SD      @'HG)<N&@%8"0       A'I'KA %*)Qc       @#ABB
?@@      @! _"D@@      (I/B IT!*U#A     A@#,QU        _)URK%       {/Ҕ $I       (P|"GRQ!?@@     ?D!oi$  O?@H      P%RB=H 	"A      $"_I2RI|H"      /DG$<IA"_b        QSEԥ1        _I?=H IHI*     A ?"B|	/	!    B濫J_   G G      GG^ҸQ*0*e^A`     ' 	 'CP"P      (ESETCI
D"        O	ҔII?"      ?DhC_	U$O!?@      $Q/P<I	% ""      !TˉR.J"F?@@     !/z@0RKޔx=J"g     A!A"| D      !_ ?B;QJ/UT=`1    	 $D"DI(       @  B!"        @ """""""B0,     B  """""$ 0l        "!H@3 @      !B_*TPR@@       ?   D@ L8    /đ(HA& ?"" 8      @O*DTQ@AA      	EI
 *TAR@0@     "	8WB @AD	      |$H""KH!L      $H
)*RTQR@A        I	 @  D@ L8     @@f0B ( ?  D@ L8      y B
*T!P       H?UTdUTRQD}(B      @A_U* T P  @      " DG"    D@ L8      ( K  ?A A$HADAA      P"^
TDP$P       A  " D@! 0      $C>     D@ L8       AC*U	T"D@      ?D@  ?   D@ L8     }	%PJ*(TPBIDQ(A       !"@" D@! 0    #!ڗ@ ?DB"``    $?B$@DB"a      @đ"D@'DAD       ADAT R"D?@B      %B/A
$IW)RPBPI!     B$QT$D     D$?  !D@L        AD
!*V	RD%@D     ""
8( @AD	     8OA  D       @EU
*DUR B>@D       !B/P
D*U|!T@      K	@AD	       !B?B
U!*TESB1A     |	RI
"*BU2HCA        (I_H*YTR"$(@      }P
URE!JBdHJa       P0@@ X       ABEPJU * WAT"$Q(@        U@*$UHU BP      @ /D TZ">@D      $IU   D@ L8       A!B
 JTP!R@򂄈     "    ?DB"``     |	RHJ?* TTI)DR(`!     ?D@X3@ }(TUQPA     }RU]U%WPU]UUUQJA&X@      B$_Y$I,       @AP +T W"D@       E)%E
*T IRBAA     !A!A*U$HD%EA	     }WU *~TBGHH!       @! _"D X8      (I_ʤ*UIP 򈄉@      E
+TTQ@DQ@(      D ?दI0T     C$~B*
)$K     ?DloĒ	?H$@ "$DH      PD	R#E?@@ X     A@#,QU  D@ L8      $EU%VWUIUPO"($O"      "?TJUU|UȐB"        QSUΪԥ1     AAI0>"}O         ? @H"!P@       C
H!TDBBDA      @  
"DQTADA      " A?
~IVBI1DA       C!I%TDA$<       @!@
*TUD$U        {I%VLBA      @ ?(PUTE$D      @  
~V@!D      H#@
|UDDD"      #E!B;)*QN!EL        G")|"J"IHN"         ? " G            ?   @  `?       @  ($PD       ! A&(TPȸ@"K        @ C  H@!B
       " ?((PPD"          ?( P@A        #@?D(Q D"         C!I(Q$IG+        @!!(
Pd	@K       @!C򀈁(|(P AA         C!
	(PAC        @D HP"H*       @ A( P!D"K        ! $(HP!DB        <G"?!tBUn T G       [?	(2PYH       @!C򀈁$H( P!@      @!!$T(RDE        @"$?( P!D"K        "#@?|(Q!O        ! A~(QG        8#H(QT)E2+          CA((PPAG        @ ?~(QGK        "K!I(Q$IG+       ( H@$I(!vRgJ       @!@(PO         C>(DPCK         @AA52	"pbp G     !C?(8PQH         ?~(QGK        ! Af)TPB        $@D"$H!t%.T G     !CA?l)TPID@       !B#A?IAqENDTG     'BQ=Jq*@ G      !A>(P @       !SA(|P AG        "#@?P(Q@K        "N(Q<H@      $!SA(Q	DRK        @' ?)PມI"+       @!C@A_)P@C        '("P亩I         @ACABD~PArU( G     H#@?~(QGK        "HBA ATu҈'         @@ IpG     P"R?H(QAD       CA??	r%NG      'E{")RDw*W*        # (RCK        O?Ut%  G      "|A1%? 	t%  G      "A(Q8AD@      #IBF@uRN# G      #DB?"Dr"  G     !GA$t AG     <'A	!>
I	kҔ/NA G      CAw( QARk      ! G?$? p%%.T G      !w(QB+       "0
?(Q D       'Dn"j".@ G     *P^A{c?ji"E
"G     (/|e#1~Qh NBG       @@ @  #DHP       | A)$H.Q!HBN@        AD?D DA\AT\     }A!P A@         @'P?\AA< @?      @
  ?         A/BO	]AABȜ A       A!_τ]AABȜ A       AB"H\ @E       }""GĂ	$PHA"N!        @A?H ~\	B%\        A)RO] AD$     {	""DG!(]DQDЎ"`     |HQ!|BW!PBWAP@     }I)'B$] D<       A/B\A"
 b      y!B\ ABȜ A       AB"H|\B<@      9(P]aDb<B        A"H D%K       H"*DTR]HE         AB$DPOD !@%8       AB"H]	@"E         A/B	\pQB%\D@       P"" ~]DDEE        A)_ϤAAB8A       A!	D%K        !B/P/ D\AC<@     GKQDUQUuUTUYWp5A       H"*DTR]HE"Uּq@A      ($`OE]DE< @?     | " Gނ%J](DE        @A?B]A@       PFDI]%DTI\       A!C	D%K      | !?B]	B%\!       ""HDaBQ(QD"E! J        A%$J\ AO       }"(G߂!B.QD"N     }܊R*B*QTER-@D       !B/Q/D]DDEE A     }	(' P.QHE$ G       }( A.QD ?      9(RH\ AB%<D@(       }"/Ђ!~.QHaD0@        A!_τE@8A      @A?I$	J^%RJ"        A$$T$]}A
%         A$OD	P!BB<"@      @A/@A	AB8"     }"""DI.SAAN@D@        A/R	\pQB%\D@        AB$DPOD\ AG        A/B  SB\ 
        A)$ROI]A@<@      @($`@]DERE<H@      }" F@<A ?         A!B \ AG       #HDf @?8      }A$GB?P @       @$DUDB"E8> D     	" _"D\B"EМ!        A/B@"E8
        AB$DPOD  D%K       PB*MO,ԺAB	+xD     {!BB*UQTF%\?A       P"^\D@<@      !$BHQ$E
P      >E5	\ BB<"@      %R.QDT AO8      z$B@(]!DBȎ(      |"$GȂ$Ĉ.P B."         @A$DEDB"E8B     }	/ QzE*        }"/ A.~P@AB^(      @ $JU	D   
@#       A!B\ ADL      }	('.Q<AD&        }J)'$$ ]A@     {A$IG%J(]QD>       !JQ*D!DA]DT]@B      !B$I \%BJ       D "?@@?@g      @"($D"BF"8b      (oϐ)J]	D 
        A!BI]AAE\D@       @A($POAAD`     }$M}DWQ%DI$     D|>"HDr&m}J0        A!_ψ$\D"E✁ 
        E!$BODBA8      }!#GB$D \	B%\!        E.ED$ Q	D\        Hz/BDHG%x      $DH"D\B" A      !I	!\@B"E        !B/R D@        A!_Ϡ]I@         A!_τ]ADT        H"/D 	BK? B       AB$DTOD~\PABQA      _сDEQDqTUREq@     {%RNB*u(]TO"N@
       AB$DPOD TGKA        A!B"^"AG        A'A"BF"8b     }I/B$]B%<       }
/"QE
$ O      $^/D$IS%BJD       @A/PO w)RRjx       I!_ψD]R"Eʜ@ ?     |	'B?. PUI* 	@!       @A P 	 G%K       @A HU	 AO8       @A H \@B"E 2       A"H]QDEҜ 
       r'IO
)G"E%       ""DDODEP ADL       y"$RO ]BE\DA       @A/PO?  SAD%<@(       !/I$I1BB	8      B(_D]DER\E A      (Da	]I@\ (         !(RO] E%\H"     AJL}^"Fr&M۩\J       "($ox]*DU޼$@J      @A*DTR] EEҜB c      9(QD]DE\H"       A!_ψD]B"EϜ " |     }$C}$GWQ%AP       y!]IG      }	/B . SAD T       E!$B 	JK? B      $DO>D\DE\         I)$_π\@ER\*U       !=HBQ|!W?     |	'BQzE* !@A      |	$' @PUI* 
"       =!_ϤI\ HU@@     }$'B ]"EG<?@      ,"HD%DURKI       H"?T^]AOʜ$      @A(P/@]UFUA(C     }?"D/P AN@@       $DJ F%K? B      @A H\$D%\%         A#J]D\       z|%CB_]JER<P      D ?ࠦ0>@      (IOG:+x      "/B\@C       $D|PĻ@
 "     }	('  	\BE*<)@!        AB"DJOġ~\B\( "     {	(_礂I	$^HJE!       A!_Ϡ	G%?8A      =/P_ĤLRJŪARC       I*HDB"E8" L     }	$'.SޠEJJ      H"D@$]E*< @B      AQQeEU tTQ%tA     !
?@@?@g     }I)'*.PQG?         A!_ψD]Vr%        @A/RĔ)SJJA4G     {ސ)JJW"1)\`@.        $""G
)MF'?@@?@g       I"_/"DA@8     R_I* EpJ$I0         !/PD	|EK_      (et%ߊQDE8a     x!(SBx)"^|M         O DK"       @A/PI$RHI\B       Hz+TUO2ĺE%K$      @A/DDĈ}R"J*U@@      $DH	^"eJ<D@     $I(e$O)D䊄QDE8S      !(Wϊ	]|!GR       E(_{Ĕ)S޼IJ<JAVR      !?DR	JSGE! ~      )'JR$	TQ(IT)    AQ$SX% ? # #       $O DK"      y _"SJ*<N@      !RJD  Q	D\      _/UDSG%       }*$PJ"@       <%D_I	]ID\$      {(_B]ĩ)R^	J.'@        ""]IG       /B*cQ@" *       $Q"JhTƧH%
8      &L	$HrR+J)qRC     (H%TG  ?@@?@g     (XO~I!SPOҒ%QA$     ?Q A"%QJ$"W!OPD       I"_$I	렸       "+`/"| A˪ f       A'A!}@	8D      ?H8 DKA       P%RB	P @ A       A!UOA	}B"8I 0     /"@L
ԸBRE8       @A/TTODDQAOD@      }I)' .Q	G. A       "'@U]ܠAOʜ$      !%@DB8       /"SJ	?RMEԜR      >EGB  ?@@?@g     }TUQ|G$D}]UEUT]P       @!_/O	 I%%      /ED/?D	SC%ܐ? B      /"RLPDREJQ     ! D?A$@@?@g        O  @ K      _
_	UYp%ˠ       /jOU	Gz%KA     {ސ)JJW"B	]DB?@      $QDD݉USvEMڕU7kDX       H"(KDTҺEJ+P     $$@R	JME6x     AYUKը+ք-Z(։2
      $)bVԿ*AO
      B9(B^OR	RH\B      !PR^I!{?]_B	      @A/R$OHRYK\e     %.Iԩ/wD"%N)+x"     " :R~	B ?@@?@g     !/z@0D޼Oz=8g     /zRDD}J*+x     (RK_"F#?     " :R~ 
l  ?@@?@g     	R^I{c	jw%K B     /zRDDRUKUN@     IL$Y]tqƀˑ         NO;"	B"	K8 a     !H>D @@?@g     GI!u*u9Z B     &^|I|x5ZYqf     /zRJDH!O8     	D$	^Eʱ_W$@O      ARLIc΢w%J$mp     )~e$1JQw\B     /zRJD	PIJ)+۸g     Ay*}JtyΊ%/)0f     /zRAGˑ8      ""^/{ĔJNJ)+       
@18       CH>"`B      @A/(ğ"DQ1@IeD     @B"ȈA#}DI1 BH%J      C('HJ"EP4"XH%       @A!*"TE%H8B%      C"G_"D!0J      A"$GȈIE@1BRHe       #DH "T($PRA        #D_B"DT)QA      C%'H"$D 1PT(e       C)'ȤI"D!1BRHe     C!I#!DA2 BM%      @A"ȈEP4BR%
     A((_ED1ȥRR(e      Q*|!QAEwPEU%uQBB     @@A(H""D0B%       A' #EAH4P`      GWI_%~J!i!VDI
	     @!"E 0B%"      @!H"I} fIJJ      GSIH% JTjUT@
       C?H"E%1 H%     HBr"GH_D!@3"DH%      CR*Ȁ"EH7%     A)J@	2KiQ^IJ      GRǥIW%tJPjUU
P     PCR/H "D4H%       GO	 H!`_Qwʩ	     @@ARU%TJPjUQhKR      GJN犉;*HdOQ?"      !B!B  @       CA	$H?I AA!B      ! B?$>HT BG""D      D?   @       B         O	$>HT BG""D       #BG	$>T BGD!A       @@>T AGA	       GD?I  G        C	$>hT BG	""DC       @%J_)U%DBD      @?%R_IU%$G D         G>U@@       !B'AՀ>TA'
"	       @@I>U$@"D        @@>TA'
b       @@>T AGI	      #DR>UHEG"(D        @@/UHURF/" DB      <C	$>T BGAD1A      8C8>T |GB	     @ AOH>T AGA	      xG>T @@        @AGT @A         C T AAB?        B a 0      xOO*>W@@(      @A?O_%TQ	@      #D!O>(TPAG	""D       <C	$>T BGAD5E       @AGU@'A       @@AT B!B?B      A GȂJjI$Oޒ$HB       @AGAOU> U @!	      @$`"   ?      !B$>^T BG?        @@OI>U$@A	      #@O*>W@@     DC  "   ?      8GT>UPE'ABN        @@>TB!B?B     @ C!Oޕ%>JTBWA"D      @ @@>U@@      D A!ﰕ>RT(B!B%D     @ @G!O@>U|DG"PD      P A'? >~UDDA!E      @?R_IU%$DA        G!OA>U@       GEI_"UB!        OA J>U(PGA 
       @DϤ>U@AGA	      #BA>DW&@G       (@O?>T BGAqD      @>$UA'A"      '@U>UTEWB(E     H A'A>$TH@AB        !@"   ?     @ @@ A?TAG
"	       @D!
HT BG""D      @ AA>DUB'A>D        @G>|TDAA       @AGAOU>T @G       @C!
O%>THBWB E	      P 	?I$Q$?BA      #@T @G       	$`"   ?       GT $@H       A'!O>DUB'A>D     !$AO ATB"D"B      'AGϪU>UDB         G O > UAG	"DC       !@!	>~T@C!B"      'DAJ>U(DQ}D	     ! CA!I>U$AG	DD     ( HOI>UHDB$I      #@OI>IT @       !BOU?ATTB" DB       Fw!OA>UAG	DD       @C>BU"B'A      'EwOU>UE'A<
1     H AUTHG!D       G?DjT2"$DH     !$DAOU$ UDD"$D      'H?)RHA@       GR%?/@H       GR_)jOʒ	D)      #D!ϤI>T AABDD     @ A!>UG?" D       @GUPDA
      GqUUuU_UUUqUTKQ"E       @Gτ TC!%D      #D!ϠA>T $GW*Dd      } Eq "   ?     D B'">DUB'A"        G ">DT BB?B     @DP ?D@@        @AGAOU >UTGB*A     H A'q>THA'q	$     @ @O A>U@ABDD(       '@ϪU>UTX@A	      !A'U%>V0@G
$      !B'ADTCA	}      !BO >TDQ	"$DD      @/ A*}؊B.CH!      "HD!πT@EWB*U       @OψDU@
"	      8GD>UDEBH
"      !BO>U$B D      AG>UTDB      ! C$/U T@">D      @A@GB_ *}*UWҢ=DHd     @ CЕ?>BTA!     R B
OU T$BO	"D?A      !@O> T$BO	"D?A      !B'A">|T EWB*      @ B">WHDB$       G"?I*}~I"*	2C      /r>$TNQ#q        !BA>> T EWB*      #@	O>UG?" D     p @ ?$I$DA       @OψDU4@Ȉ      @@@B_?|!D        @G?>UAOԄ0@      @@@҂%) O֢)I4G       GҒJj
|b'D     $$DϤ>U@O
$      '@OI>T"@'
     'B'"> W@ B        Kϊ?U| GR       #@"/>T @ B      !AȂ)}UWB$Ja      C D /QH     #D/A*1"N!     P"CW>T @A	       @GOA?}TB'I0      #@A?>UG!A	     <'DA?I?UHDB$       BH
$	      'B'OA>TH"?D       @@"_Uk ʢD       @$Ђ/B}\,"*$QI       #EWπ UG	B1a     !Oτ*U OBqD%      xF? D@@      !DBW"|}MȂ"D       C"?5|֨D*U     8GCQ??"?      GЊ'r"~WʢD*        D "#ʊ       C_?A| T*UH     !O$U%T_֤     !$Bg?*@Â
$       Gb$_}}wUGԂ)	$      @@$_~*}~ U      G'%?{KO)$_Ƞ       @ @?    @      @ A? @9!B       A ?
$$~H! rG""D         C?	 8G       @@?? 9GA      @ $_$~HD"       @@
$ #pE       C)$R~H"uG"(D       @@
A% "vB ?      @ AEH? 9GA      @ @  AEaC       @@?:$A?B       @ D =$J~("PwE 
       @@
?A~#t@
        ?ADI$G|IQ$DA       @ $J A~"p        @@$$~ @qGA	      @xJ*~ @p(        @@GDJBd~   p%	      @8
$$H~  @r%"DD(       G D_	 #~!H"!       C'
	$! #p       @(O$~! rGEqD      QA	 $Q@?BA      !@GER?	 ;       @x
~D%r'E!B	      @@$
J%~!HrWB E	       @@GDJ@d~  @w      @ AB?D	:'D>D      @@@ 
$A!qG
"	       GD=$J~(#tU}D	      (@H
?I~"HtB$I       GG
)R%Tz "@D      AA!
 $ @      @D ?
 $ @       'H
% P) SA@       C$ A~ "$wW*Dd       GT%*%z/@D      @@@ 
?A~ @t%""D(        GTJ)d 'qO	B)
      A$DJd$ "Dt"$D       @@$D%p
"	       CJ?~ "Dt"$D       C'D %"wE      !B'B"?| =WʤA*       @A@GB_h I*T'iW=BH	d     "DDQSD|2        @@? $~#qOԄ0@      @@@BJ?~ 'pB        G$?I$~H$%*2C      @@@҄%
)$ zO)E4G     "B'ЂIK/(rWEH)
       BH
$Ȃ#i	 
          ?     @         @   @      @ @O@ | A!B         D$(|DEDD|D      @A/@ | B!B	       ?@@   @       @ @@ 
~  C@     @ C $I  @	"        @G I~ CBDDP@      <#A 
A  @A      !HC@	"| !B     BD'x
R}_"EqBHH     @@'(
R}_"EqBHH      !B#R_!pAA	       $D# bB~"pA!       ! BG
?B!D       !B#z"~_'pAa      @D' 
"~_"BqB(@     !!$A
z"Q"%DQ     AB'x
"B}_'Bq,BT)BA     BB' 
r} GqB(q@     ?@   @$H P       ?@  % CA B        @!D    _
F      AAU2	  _
F     Uu$PhBAB&D       8 <x  G           @          @          @         @        /D 'A$P      @@A @B"DAA        /B @"D"H      @@A    @ A        B B   <($P       #  @  @ E       @@A  <P"H!        @@A  D@
"D(_!       ! @@   @@      @O   = @ A       # A   @ A      #  @ ? ~ A@      B G @ ?<0"D       OD@ ""D(1%       @@A .<	4T$H        @ @@ <  @@        /B  !B"H     !"D  @ " H      O@ ?D\"$TH      ' A   @ _     !"D^ "HPB      @@_ $I<	D A        &xH "^D	&PH      @@A  <P"I!      #  @    /H      @8G  ?D" H@A       @A    <|" HH@      #  D@!(" Y@      @xO    	DP$@I@APE       A B  D< @@      P@A  <P"H!       # A  P"H"     # @@ R	"D A       @A  B<HP@!@D@A@       @@A D@
"(A        A B@	 <$! D@!      #  @   $H "HH!A          8 @/A#      @@_ 
 $<  @_     !"D @!H$P      @@A  <	$H E      #$H P	L%J     #!B ^A"G      HDI @I<	$x$ H         D O DK<h$I!      #$H)^R	z$HPB       } J@)R$QH"
 #      @@_ D@
"(A        A D@@@ 	$H         A D   $$DP       @?D@$DH? 
 #      @@B  A<	$H         @@  <	@ A         @DI $ <@!@B@A        B D ( <>@!B       B D@%J! D@A       @@A  <8H$Q         @80#D 
 #      @@A  = " H  E      #  @ @ _     #$H)^R	'H     #$K  ^^	J$HPB      @@_  A#D       @DE  pP$Q      B @  "<D" H@A       @@@@	 <	I" D@B      OA@?J\)&H %       @A Gఀ <H>&@p       @@A  <  'H A?A
 #       @O  @	 $H %       OD@z	*T!(BP!!B
 #      B G @@|	$HH! B
#     DH  A<	"($ J ! E      A0     P*D      xGA  <	$H         A@R@ <l	T"@D!A       A C@) <f #@?
#      <GH  ?@<	~)RE      A 9"$DO 
#     A@Z*"\F	" #      @A O  @^	J%H        @DI D = "@H!A        A! [8*&U$I G      H "'H"@ #      @@A  	'H E       @DE  <	$H  E
#     '! B@)^R	$H E       8GA  I="xD@      # B 
 fJ4"HX      @@A  I<TpP$Q      A@O@<	 !ED      </B %JHI G      @A@D@@_`<@$I!     '  I $$  @      	 A2 J*$d	TP
 #     '  @  A " _      B H @ <
 @/A A      @_ ? < $H        G@  ܈$DH""EJ#     HJ@h/!B        OA  ?" 'H!?      8  O.HD!RBH #     DH @? = @'A        @@_ ?I<	"I !       @DO    $H         B H  @"<
$V@      CL  3=  O
#      @ "'@
#      D D@% |$H@      #%(JP)^R	J%(O"     O@  =J\$IH-e      DQ  A=$H         @@_  *<
""I !       /D@@~/D@A     B _ 	'H        GAR	B%(D B%       AD !<B"D AA      @_ ? B<	 'H A?       @@O@	<
"H"I !     G@ @	t!PD
      @z ( O.~D!B G     GH/D\%K@e      @B@O b	$@H        @_  	'H  E
#      @@A ?A<	       @@O  D	$D'A  
 #      8GA  I=@"N@ #     #$O@? 
J$$R       B"'A@	R"$ G      @@O  DP A 
#      @@O <D	D#PZ@AE      GIH?? @p      '  O@? 
"(_"     B_@  *dE       @@A@` 9R'IH$"ID G     BG@ =)HD       OD D 	'H  E
#      GH ?D<	B%K!O      A B (X(,B!j      @@@O <$ HA!
`#      @"  ;@'IH%"JD G     OP +P      @_
  $I A%
#     #$O@?
"T(VP!@      CD@?  "xDG       @@A ?A<	$OA      @" C"D$I!DB#     '(O ?I	$ _     ')H^  ?  @       @O  @	T*WʡB! #     BG@	z%H       #$O@? 
"$OЀ     GI=@	$OPA!EDQ      @A O@?A<  O        )&H " #     B @  <	'H         @@O "<(@'A       GD   <	@/A 
#      @ )$DK"D #      @GI  	$I A     OD@ 	H'I  E
#      @AL <~	 @/A !?       @BYp u  F@ #      ) J@@'H"" #      pA	 $@O8"~D$QTE
#     ')HR?*
"P$Q      ! _yN%J RC( G     #$H$D	DP'HB      @@O  <	!FH #     @DJH} #TR/EH""J#     #$O@? B%(R       @GI   	'H  
 #     #$O ?HT*UPB      <G@ ? @D!B? #     D_ ? <	$O!?!
#      @A  8"G
#      Az@H
'IQU* #      
 $DKQ/@D G      B OJ@(	F' Ap
 #      AAX"NQ"$J #      @AR:"NP"(J #      _BJ@) 'H  
 #      @@  H9D$IU#%$T G     G~J :PY%*JX      EP_PNa =
"@'I A%      @!$8"HGG     ! J9*$I!G     B _ I<
@'A        @DE@ I=	)xj@B
#     ?J@$OA G      @@O B=	|  _"B #     A@_ =2$G!      <HEy"9!_AB@J #     #! A?^*([!N       @GI   	'H  
D#     ')HR= H$O       @ Q@9"GBDE( G      @?D 9$NDQXDrTG      y)@@$"HJ #      $ J /i|!<BH #       AD
?H!D*$(T G     A$8 @OQ/AD G      xQAU:*UTB1G      P@$9@!DLІ3BDԔG     GIH   #Bl       O@  @^	#D   #      $GPBH  'H       D@ݹUv$DMؕQ7bDD G     @. $A)|FPIRTjP#      ?@@ @_IQD> G      !%@;
$W! G     H !?R9J$MA6Hؔ G     <|P1 zP#XA% G      A q8"HG!$*G      Q DCO;/~@ QL
 #     OR$@B]/?%H^!W
 #      e;/RHQB%CG     ' 	       |!P! D!(@A       ~|	$$PQ DQ&@      @ *?I
H@PG @     """" "? !	O@ /     ADJII$FI$gP       |!P!/D!@!       |!P!/D!@       | /D	 "@D        ADHB$BDDBP$       }P! D!@@        AG!HE
DDBP       |"D	 "@D@      !_H!@DQ$H!Q       ! HCĉ$DDIZFQ      |I$R!Q+䄑DI&"A)D       | !B""DD@     $DH!"D	"$DHB"D       ~|I$~PI!$DI&JB        H HC$DDI$QD!      !_IH!@DQDIZ&Q       !H!GGDP      ?> D /D	"$DD"        |  I%I$I"D AD      !BRII)DĢD!DD!P      D""D
"$DH"D       !B'A %HG P@      @}$"IE	 "D$       |$P%I%"JD)$     #))IRJRRd%*B
      " D|/DE>"DD"       |@$_ ) "E	$      >xD"""DD=O        |(!"Be)*RT#0Dd       |!P%DAA      |ARE)QGTB$      >"DD	"RD	!"BD	C$        $|H!"^u	"$DH*d      |$P#DLEVTeA       =bJ!H҈F!aR4"P       PH!O䀒E$@S $       (|P)JJI+"(DP        !DD!I#HDD$EP D     ~҈R!+G@        !BH!OD!BP=     !_HJ!@DqJZIR!       |  A?"D"D      ""H%/  D$      !GI0"BD$	H      |  B%I?"DH!DH`P      !DHAJ@>D$H"P$       d|0&A?$"HE QH      D@$)"D A@       |  A  "E	H        @}	(O%I$y"E$ɤ$      }$O	 _"ED$H      w>DD""D""DDD"D        ! HD$R$DQE"Q	      AJ	O䠒G$`S$       !B#A ? $"Ix@       |	"D	I!"RD)$HA      #	(I~RPd#JRC      |  I%
ID "$H@      |P$W 	  D@H      " $|P A	"DP$      AO"|褢J $(     D !	?"DDB        HDv:%TI>J#       
|!'H	:U"ET*"hP    |BQ	$$ E	&C      0|&
A
$"F%j    |}DDQ F	&C$      
 A OI$"E$$H!     D !$  "E	DH       	)IE 	"D<
      } $Q	 " E	$       }A A?	"EJ"DB      #	(I~RPe#RC      |  EE
]#D "$H@     D $$$I"D AA0H      >"DD!$ "F	BH      }RP'EC       !BID<DCxP!      IRRHQB$RD$H"P$      ~}	$BQ	'䐑BE"A      }ꔪRJRKe*RZ      >>DD I$I"E$СA"$0H       }"BE?  "~D	H      a 4|0,A??"F	$	H      A'A%?" G	"`P      @}I$OI("HEB      A'A? "E	$H!      !@~I	G~DCP!     ?IDu"J)Q*UDD
T H       }$Q(B$"E$QBDH@P     %/K¤I+U$IH'jJ      ! "|H'BE	#DH"D!      !HB]F!JIR!      PRwIDDQDE%PD       "<DHB"F;TLB"D      }A/EE
*"TGA<        ! DO  $I(P_@       GJR^JJ$)H5DB@     A D|P$I%$I"D A     ~}	䐒~Q	'G$A	      !$#Q B" Ra) Dp?     ?B~	+T%/@ E$I"DH$       }	/@ "GA      }I _	?"F$     hJ*	H#c
"      }%@Q}%Q_EETQB}      " D"A? "~E	$      )܈#JZu 	?A"E$H!     w>ET 	 "~D	@D       (|	+@)%RJE*U,     |QDUQU'EC       A'I%I?#F"U @     D  I?I"D @       /<BIL)B$)DJ	     
TT"HDD!BPI$     ! A<JR^z*K$*H-Dj@       OJR^JJS)ȾD
@(    P%-iIRJ_@ɡC
       }!%H"_"E|$H     D $I?"GB"$ (        }	'H% " D I*T      E|',PEґDD       ""O	EI$      $EJ!"	!"BD	BH        |E"G)R"E"U	H!       }	'H% "D$       @}	$O	?@"DUH      B<JR^z*K$)H!DJt@    ~}	$ S(сG$A	       !@~I	GFiZRT       I|)G"_$I|ԩI"    > $OK@AEuTWZAQ      " D'H% "GABDH@     II@I%GRD!G*Q%      }%"O)REHݥ"T&	     w>"ET%RbQ"D2Ӊ@b8      " H>H!GRD!BP! <     | $OI?D"D      E&A " G$      }$O	?@"D"څD2H     D!/ FU@
         |/@ "EA     ~	P~HORD@4P!D      @}	'H% ET (       @}%RJ?*U"G%H       |J"K )!"BD	"    AQԺ#YI(   B O     >D	'"GB"D      <JK!O?~$IG     A D| (UU')DR E	$      <HD"F A$IUJ(T H     " QEIUF4RAEP      ~*Y%	?A"E      " (A'A?$*#D $       |"I%") A"FDz$ H      }$Q/EEI@R"E$$      )FR I?I"D @     ~(S*F@      UdEHADEP     >E/z#DpQD       <NOV'* $IDH      }J%*O 	? "EDx     "|%RJ !D"p      }U'I>RDi$2(      }Q%IE"_"E|$HP     "|%RQ"EI?     " |""J")?A"E        JIK&/D%KIU!     AP~I	ORJFH~R8     "|%RN 	?I"E$     " D?IH"VjUuJJE(     > ?JH"*?҄'JDCB
Tc     =LF2JJ $I$IAb$0(     !SXb ֪Uj*       DKޔOz	
?H%M D     D@HI!W"KM'h     * ~*_* #D      RROߓKZ& $I	GDH     { =JRIJ?J)K%KrL     DH(`	 $ O      (PCQ
D+a!BH        D ""HDy H        #
Fj'X!⠄      Q'JA*WD(?       	!@OA*UIRH A?A      !@EVUҮj
*0P      |P GB*#D!       P@
D*!C"       OA@?JH)
& "@D        1`  !C       ABOQj!B"D?A      	8@CU>!0B       A@Rj)RH$I     DPZRjU«O(?     xP'Ju`*W"ES"Ƞ      	!BOQ*U$	H A?A      	PAOUHվ%J($PHA     P 
J*W(QL)?       !@GD*U!	GH(PA      P
_W!C/`       !@AU!	G(Y?A       P@D*W|$H(       Q*URWJT( _        ! AG5PU"I	$0H       ACT*U!B"D?A      EB/HU"E	($PHA"       A@B*U}	($PHA"      <@B*9j	W)B?A      !PEH*U>J
H)e?AA      ! DA*U	H A?A      QA?
$Q(%_Ѡ      !@DUE*UA$0H!      !@B/B*U"	($PHA"       AOUPjU"	!B?       JVZݮW	X%V	_`      !@AOUb}	$PHA&     Qڨ5PjU«W(?`       1G5Pj 

(PPAB      ACB*U)RH$I     @ B8 !C      |P*@*W#!       !@U_~
(PPAD       AOUWjU"	g)0bA      !DA/UUG!B?A      ADHU*
/@A      ACR*U	($PHA"       B/E*UQ=	H!E?AA      <A5JU
'H$A?A      $@_I&
O)0RC      ࠉDU@*U"!B?A      ! APR
H*U     PPj_W@0       @ 5JjLR?Jb      ! D/U_UBF
)Q?AA      QGR*UH
G)_A@     PU@)?        I!BOI*Uv݆	'H$I?A$      !@BdUT
H/U      AD5OjF
X/@A      ! @UI*U((PPAB      )HGBjk)^("Bc      ! @HU }G!B?A      !DI/Q*U!J
H%Q?A      A@@Q*UB"D?A     PD*bjWw+W,(*_`       I!OI* 

(PPAB     QUPW ')?`     |P*@*D+       	)A*U*HC~!      !@A/U 	$PHA"     I&jڦ*~!b"     P(GOW>E$_Ƞ      |P*B*W>#!        D5E*U%X*U      p@"ABC      ! @HU 
(0PA     |PUHW WX*       	ؠE_UHU)RH"IC       @_U!X*U       Q,IDuRj	("B?Ac      	EoGU̮V/H(h?       EB/E*UA}"G!B?       @D5_IB%R?      EHGOU!B	)b?      |PWjUOW WX*       UI4( !C        BU_U"X*U       A@HQ*U B#D?A      !@?*VD'ʨQ*       ! DRJ"
(*PTA     >!IA!2*BC     PPZ_W>D)?        @GUUj)
"PI?A0     D *UOmwWWx        ! AO5Uj
X+PB      )PAOUjU	('HA"     PD:B*W"ÓC$,_       xz#F BBC     @H*"@,BC      )TAOHUG!E?AA      )HCi*$I	'H'H?      A@U?*TU''ʨQ*      PPZ@*W"}/        %PI(T((>D      )G_U~
*UA     QTB*")D!        )G_U
$PE?       A5O*U)(       B/5OUwV($PU      AO@*U"}	)PhA      ! BOUijU$,j      |P UB*W #X*`      ?kTB' >UE      ! ! QwE      A*VکV;8T)     @@*kl WUX}⪀      A@OI*UIJ*U?I      !!]$!)ШB>FY      G]UE	%YA!     /IA&TIp  "0      Jj/ҨPE      yJjUQ)O1[g      !!]$Q)G{F(     y @*U'f+XVyD       "H   I!0A       "   I!0A     D#B 1 rAT!
     #9DDI1$RTI$DA     DC?6	0 sP	?     ER?	0pW	?     ?B!!            "  ?     |	$/Ą
  @@
         "          |"AEQ  _! O       
 " `  $?      $7"R      B	 B B	H!Pz          $ @ R#|       GIB @BP x
      @BFDDADV!P|"     @IBFDDADVPxP        !"  BP<(       @A	BBADA	DP@y     ! $?$H!"RBĕ#x       @	BD	$ADVPz     @@aA$@0` "H?       @!"  BP<       !"(P Q"EмA!        A$	$H!"T"E"      !A$)$H!"RBĕ	#|C         " Dg  $?        "$$/B R
#|E!     @A	BD$@@VPx     P!ȂE%	P < `       @!)R""FX8(        @!BD!BHV!P{P      DIIA&DI$DRVIQ$x Q      ! D!  BP<(        #A("dP""TBȕ#x       !!"  BP<(        !   !P% C
       !!"  BP<         !"  BP<        A ?P RBȅ<      @ @ ? @!R<?        @	@&
D)$@BVPDrP       @!"  QB<A!        $$(W!~!R#|      @ '@? BQ#x?      P !"% @ P#|      #!&D*"(P P<A!       @)&Y	$"jT#x?        @!  BP8      @A	BFDI@)AP y@     @ "?"D"RB8"!      x!	  BP8      @ "	$H!Q"E
x        "$W(1"d Q25C"      8**TP"U"ECȸ       #!$DB RQ"E8
       $(?D!R"E<B!        )$W$I"T#x?      @ @/$>D Q%CмJ!       @/7DP QB	xD      !!"D$H Q"E<"      !!"D $ WE <       CI!BD!CHV!PzP      !"DW)  QEC         @! BQB8A!         !4d!FT<        @/7$DHR"V*#xB        B"U
%C       !@)$WeL`#BT#xG       @/W	 BQB8A!       @/$I$#P#x      B	?A$DBQV}Pp     GI	@&DAGBV	P$pP!       @A"( #PE 8       8(?QD"RTȅ8"A      '$D'BD"TE!9       x!	  BP8         @%D*WDH$ JPE<0!      #!"D	!R"E8      ! A$D 
!R"E8"     @ $DW H!"RBą#x        @/!Q"8b#       @!"!Q"<b#     " A(7"v""TBȕ#xC      H "%"D P#|A     @ "? H"BTE$CA       A$/D#PB<      @A	?ADD@YBVQp      #!$"WH #Pļ       !!$D(Ā!
Q"<"!      @	ADI$GRVP p       @!8!RT%"#8       !A )$H!P
 #|       @!BD!BHV!Pz!       @!$*W*  QB<A!       @!"  QB<I!     @ @/  <H!"RBĕ	#xC            H!"RBą#x         A'(7D !R<@!       #()RH"UB#x      @ @/("DP P<A!      !$$(W?H!"RBEмA!     AGEм_`1 ?      #($W?@D"U#x       @IIA& DRVIQ$t     @ @/$"JT%C8       #($W?H"BTȅ#xa      8**TP"U"ECθ          D =J("RWE 8
        @A"$ 
P"E8       #!?HR"V*#xB       @"$A !R%Cм? B       @!?"
T%C      P !"?>!JRE< A       A/7"DD"TE8"A        ! BP%C8       !$$(W?@!R
#|?A     ! '4>@ Q<         @/
$%&RJĕ	       @	ADI$GRVIQ$tA      @IA&DIDRVIQ$tA      GIIA&DI$GRVP p       @A$DWBD  "P%8!       @/W$I$ BT8F!     @ 'D BQB8A!       @)$ BQB8A!      !$(!B!
S<?        @!"
T%C      ! ("$K{"JTE#x?         A/7@ D!BS#x         A/B "P%#        GI@F	D" CHV!Pr!     ! ($ WE#TE#x?      #!8p!RR%"#8      @ @ D 	R"Y%C         @)$ #P8       !!$D"D!R"E8         !~%
R%C? B     @B	?BD!BHV!Pz!     @ @/ BP8      ! 'D$"JT%C8       #A(/UT"UR8       !$+ה)R!JR%<?      @ $$J(&Q 8      !!$D?"D!R"E<> D     P A/W
P#QJ$         ($W A"
Pą       ALzR%/JH)REm	8D      !!$DA  !R%C? B     !!(DaB("RT"E8J         A  B Q"E8       (@I@A?D$DP1'ExA      !A "2"FP<        @/W$I$'P8A!       @%$
  B_8        @!?8!RTB8        @/	  BQEC       B	BDI$D^VIPp       P!8!RT%"#8          $H!"RBą	8       !%$	W!	"T%〸
      ! '7 !JT"#8(         @A" !JT"#8(       $!H%$*W)R!JR<?       D	GCQDUTEYUVUQTy~5Q       GIAADAGPVAQtA        $$(W?B!
S% <       @	A&D$DRVQ$p      )D!B"U"̥CxA      GIC Dy$DRVyPpP        A/"D"BT%$C        @!"  BP%#<      ! A$	rD%L!"RB̕)#x#@     @H$H 00         @/W$I"JPEC       'ĥ	*T)DRJ"U*U#x"     H !"D	$H#PEC      @ @/ A	!QB8"!       @$$$ ~Q
%8       '!$D"|!R: 8      @ $DD!R"E8> D     !! "D'R"E8"      @)@J@?A EFqx       @!$$D$H""PB8        @A$DW@D  #T%C       #!(D!BD"T8a     @ '7@D|#TJȕ#x      !$I$	7D[!&RJĕ	#x@     @ @/A!"RBą#x       @	ADUTEYUV]QtPB      GIAAvD]TEYUV]QtPB      '!?A#T%C        @! RECy        @!   BW8        @!$? #P?8       (@I@A?D$GP!'yA     !q+bD""TBȅ8_        @//B%SE8* H      #"   BW8      }" F@<A@`1$?      #Q*W*U	T"URʥCڸ"&       "JD	0c"H      "@/D	!"RBą#x      #!$D"	!R"E8B!       @A$DW@D  BW8       'A!Ȉ  BP8        @! FP¥8A!      "@/D	p!RR%Cx       8(?@|"U%Cϸ"      @AABAGhV!Pr!       @AOB  @ G 
      P A*-W,"QB	#|D      x! #T%C       " rBxOB!,BP9     ! A(bD8"UR̕8D       ?"I`pH     !$I$/!&RJ	C<      @ /
 #
Zb#x        @?  #T%C        C@@? AhFGD(      ! BDH}/JH)RI$M)'K        @%$
	p!RR%Cx      @ @/(Q%2RBE0@      #	)7$D""U*U#x     @ *DH!"RBĕ#x      @ @? 7	!T"ƅ8"!      x!? 'P       @"$!!
RCм% D     ! (D!I$#T#x?      @ "D@$R C
      ( H/"x>#P%|a      "E 0c"H       @!$DD JPECx(       !$D A!QB8A!      C∉"@$DRVIQ4t      #/W?   BP8      ! !(D WDB#RBą	x      D "0c"H       $D>E'PbE8      ( H!?HY R%"#8(       !$I"! A!R
#|"B      ')D=J(#TUx	     #!?I	!RB#x"     $ H@!@`1 ?     !A/W #QĹ        @%D
. #P8      '1?D	#T"E8~        C@A? AhFGD(       G 4@"DIDRVQ$tPC      # /א!B R%<       !$$(W?  #T
#|     ! (/)J!
Tȥ〸
      @ @($W?A"BTȥ`      '%$
" !RE86#     @ @ 
  BW8      !!CEd1 ?      #($ A"
W@      ! 
"0c"H       @!?I BQECx      !	1
"!R%C? B      @NDH%KEPP9        @NDH!OE%P9        @AOAȀ@ 8(          ( W   QB	#xC        @/*Tt$FQB8A!     @ @($W P!"RBCx     @ !($? D"B!V"҅8b#     @ $D6	 BS?8       BAN
DXHECH'x"B     ! (D!?I$#QB	xD       @A@_@@@(Qy       <!7  RE81!      C∉"@AGPVAQtPB      #($    B_8A!      #!/׈  S%Cм? B     @ $JU	0c"H       @AGI(O?DD"'8       #($W  "BT9       <!7  R"E8
       #$WIII #P8       #' W? 	#R"E86!      #( @P"UREȸ0       @A$DWDD> BW%C       x $W  B_8(         OBJdIOJC$MIG8       @O"RH%IH%JG-V&zy      #($W?   BP8       #($ @"U*U'y       #!(D!B"Wą	x      ANRD	$JAe
x     H "D$!R<?       ( H!?I"JTCI      x B!0c"H     # ^-0c"H     !!  A QBą	#x       (@I@A?DEP)'yA      "@/D	  W%C       #)$$I  BW8       @)@J@?$(H@%F)Uy      p(?D""_	8"       @!$!T"E"8
        @!?A#QB	#xD     #!?I	 !R"ExB        !$!RRE
|J       OIzR%/zH*D%FuG
       #($"D""U%C_!"      !' 	@"JTȅ`      @@AOPPO w)RFm"x     ~|	G	 0c"H       GH
TX%/ȈET '@x       @! "JP8      @ $7D( FRUx       DI*@"DAtEYUVUQttPB       @A$DW_D T"WʥCA       #)$$I #QECx        @!"B!V"҅8b#      )  
(`pH     !!(D	 $FUECx(       @p"S!ERB`1 ?       @! "
W%àE        $	  W%C       "H!D%R"E
x ?     '?"RD"
TC      @ @ U	  BW8        GIJR%/{Ȕ)RGM%'JyTS      "H)$ |""TB8"     @! )$W?I!"TB8      @ $$@"W:#x      'A";A#QB8      ! /b#TBȅ@       @@AOP( O$G%9A       NTh(WNTJӪ`F      A/ 'QB	xD       D%D
$ "
TC       #($ A "&WRxd        BJ0c"H     #!?I	!@'R"E8       @yGA?*TAP8      !$2DWD$ "FT#x     ! (D!?	 JPC8(         @"
$!_E8B!       @AABDHODH~P@@(Qy       @@AOP ?  @@&"'x(       @ @    PB8(        !D)$ !JRE8A!      @@AOP@O  B@*L9        @" "RTE8
      H y/"DH W%|       GA
JXO)H GM	G)8     !$D("D!R" <A!     @ @$W #TCE        $$? #T         ( W"D!RCм? B     !$D $"JW%C      B">@! DPVQtA     P A/W*UT"UR 8"       !$$!~@!TU	#xB       @!$ BQECx       GIIAvAtEYUV]Qx!Q      GIIA&DItEYUV]QtA     H !/$ !
RCм? B       @/*T$$FPCx        1` 	  ς?      #! D	 $FUECx(        #! P@#URʥC        @!"" BW8      !$D
J%2RBŕ#x#@       @AOA?@F)81@      A"H}GТ%Fx"C       @A@_$I@ࢥFGDy       "@) #TCE      "(D@!R"E8J!      @)GJ@HEE(]y       @AOB   G&'Dx(        '%$
"@!VE86#     >"0c"H       @!$DN"">T$y"      #/W? 'P"E8
       A!\BaB.J"BR(QA       @A$DW@D> #P%
C8       ACJ%OI"B&*Qy      @ @  ?A BT%"#x(       "B BBD &$'_       GIJR=JHD '@x     "$Q(72DK "
TC      !$D
$"J_8A!      #($ A 'Pä8"?       @!$k$#PÅ
      C∉"@
EUVUQttPB       "A' $0c"H      @@AORH$Ȓ< EF"9      8(?DD"UCȸ""       @"$ ?B BW        AIJQ%/QHBF86     @ $P?B Q%8       !!!
D%0 BWÅ
      !!$D D!SE	8        GIJR=  A  G 
       '!?"JW?8      !$D>D'TEC8      @ @ 
$#T%C8       GI
R=/JHRDM'(x     !$0c"H      !'W !TU	#x D      FqHQH:HȀ>DHFaE8A       GI
R$/{ȀD$U B!     "H/W$ 'XU/x       @!?A#T 8A!      #/W?$BP8        $$?  BP8       #)$$I 'TC8a       !#$W !&RJ	#|?A     H "D ""[%Cм? B      x!P,"JTeC      !<$TDI B_8A#     "B BIWEԪFJzh     ! ($7?D #P
ϕ#x      #a2A	}  BW8A!     !$D
 !V%C? B       @/"L0c"H      p@"A0c"H      C\"HH%IGSF$I      !x(DdH""Wȅ8Q       @AADBPH_o *TGU=GHd      ACJ-OK"B&*Qy      ')$? !S%8       HBE"_)^@@
$      #/?D W%à      ? H@
 0c"H      "H)$ @#URʥCU       @!]HB|J"!2?      #)$$I  "QR#x         @"d 'PÄ8!     !<I.	7$R"UJʕ#x
"     @ @0@W? #TC8        D!$ #
ZC? B      #/W? ""FUJx       @@*_ A
EتF.Cx!     @ @(7?@#VZJx(C      x!?"JWÄ8      R /*WD !&RJ	#|?A     !<*jXD"U
%xC        _RJdIN&JI&KF0$ H     !!? P8"!      H9KTΖ	*UIRBJFL     @ @  A RRE(0@     "H/W$("
Z*E8B!     !ABB_ x*DU%GHd      GIIAQDETV_QDy'      !/@!Sȅ!8       #/W? 	B$U*55xRB        $$?@#QC%       @@AOPBO? GG        /?	T#QBCx (       @AOA?HI# @D)       ! BGP_ DCVUx!A      @/BHA?*' `pH      x $$W%	 'P%C        @!?B WʥC       #+?Ud"TCĸ"      ADRH? @MV%'xRB     @ @0I("
[E8> D        ("|""U%Cȸ""      DADGPVAQpA       @A"D
W?ġ~!RC "       G@OO  EM"'Dx     $@DJJ@}/#TROM!'Dy
"     $@*$W|"UC9      ( H!$"JP"8       |!Oeo%H`pH     !$D
" PC        ($W$U TJΥxd     !AALh {ȔR@@
$       GIJR?   @@$9      @A"_OBRG8FJx!     @! ($W?@ #P
U*x       UI4(@b1 ?      #/W? B_ą	x     ##C
T!d`pH      @G}HJT%/UH DD"'Dx      "H)$  "
T8      ! 9$"P8        HJRH)NIB*S!1E     "X)$$I #R"8"!       ($W$U"YE86#         ? "UUxB     #	' /QD"U"        @! "
W%?8A!     ! A=OJR%Oz*D$M-Gj8       / 
" #URʥC        @!? #QJĥԸ0@      "H!?@D "
WxD       ($  BWÅ
       ($  P%(y        @@AOP ?Q4@U'8       '!/D= 	#TE8
        CDO?H@V*@x       A!GY_$B F	 x     " $Q$!RRĕ
#8      " BDA(zOOJȤ&G$_     "H!)$	7 "
W%Ñ8A!       x/7'x"TB"       DEODQ C       !!$D"| #URʥC        !+ 7"|#P 0       @A@AȀD(d     $$ $ B_Å
       GHS$OH ETV.@8     " BAD}$DhE J:A      '/W?I"'P"8
      ! BxH
^Ex"GD      #?W? #TC"      "B B@EEPFJ:@      @!KH
|B R9     !B_"HHIYB#BF"I       @  _CE`pH      AODH"Fd"'Dx     !$D ?A#P8A!      #/W?D BQ#0       CDOO?*TAP       GB"N{" @ G         GA
RJH
b@%G8     @ @$DĈ}"%Z*U/x      @AGHH%/&AE&880       )$1UT#PCxR     @ @0 ?$#T 8A!      @@AOR%Ȕ)D M)y4G      "G$bO|aoG       GJR^%OyJ@ 8      EJzUX)Oq$RO|&)GP% D      $D$?
""TB8      @@"_ I%D5f5y5      "H? 7"D BW%CJ       "H? 7"D BP8       #!/? 	'P	8f#     #A+W?E"URCϸ"&         W	P"VBȅ8"       HJJHɄ>DE!B9      @ @$D #T	xD      'A/W*  _
      @ @()H"U-CyJ       #?W?$#Q8!        0D	|"UC_      $"H%$Od䊄y"RTE8S      !!@g
AI`pH     !
	`pH     ! BDr~	WTOSF$I       A!_D?RJ@ F!8~       bG*X9HE@@
$      @@A_$/OEକF_:(        C@I(
T$DD&*'Qy" <        ("|""VJʥʸ       @AOA*$BH8A       DEH_ {Ȕ)DM%'JyVR      #!"? "
W?8        GA"GȐH@P"      !A@_"/UH@ &        O!Re(LNDFK"RF      '! *	!RW?8      ! 9$"P8ɠ     P$Q"?	 #P8A#       @AOA$@DGTx<       G}BEq*GTy_      $GPJTG &
8        BIB_
$C	      "D!OziH
ODD
$      @GA"\H"uƪU"     "E_"T)	TOSBDa       BIB_ /"D@@
$      #/ #TC"      "@DIr%zTDՀ)G	 "       GAB^%/JH(DD"'Dx       @AGA?!L|	8D     !$D$#T 8A!     I T}"JEڍbJ 0c"H     !/Hm$)A`pH     <'%D?I	"JTC      #?.8 #T˥CA       'I>!JDs 'R"E?8A!       NUkTN@JRdq
"       DEKDOO@DV$Rx"      AD"_Q/$H FeGx      AB	@*EYX]QTuPC     !(1D""TBԸ)      "*c#P"8*        @!WA	}!R"8I 0      AD"I$q'@GU+GR 
      ETrHNDH BH&GE     !AO"@=L
@UF8        GAB_%/ C        GB"UH?1SB%!8~      !$BIJ]xOUH됒B U(Ix     #DOzR=@HIE$͔)'fx      #!"? "JWÄ8      !!*T(W^ !
SC<       'A.W w(P'Q
Cx<      #/W?	 #T0      @ G?	D]`pH       OPqHT$BMRBIFI	!      #' W? 'P"8*      !y$DU	"
TC      !A!OD)O3$ C%F!8B       A%OD)RGSbp     "B G)%H0c"H     $!P0> BW?8(       !BGhX_I~A"CI&q$I      !'PC        GIJ^%/{Ȁ}RD%'Rx       GIJ^%/{Ȁ}E-(@x     /Q?)D#T"8$      D$H#҈("TjU8        |/7?HT"URc      A!GY$B }%'Nx       ByD_DU6z%      @AOQ*DH9D8A       GJ"R?J*D-(     !%D/d	{ S%/Ð? B     !!' ;U BWÅ
       @A$DW_D  "UR8U!      GIUAđEYUV}PDwP      #?"75 #T%äI       GIR&/zDF$y8       GB"_ }
Gآ5fx      #Q*  "
W	C8 a     '! R #P8ɠ      #Q/?	 W?8        DEKO
AET(P@      "H? 7"D W%ä       @@A_$/O G&%      #$D?"
W%Ñ8A!     $  "TB8      >EGB0c"H     @ @$D #TҸ=     #ࢉ"$DJ$rQC8        AIJY8%/QHBF86     #??k BW?8U!      #** $#"[ąÒ8?@       G@O   G Gw      ETrHNDH "@@
$     !DBUR[(|DGȢ&G       @@AODH.T@F?A       O"(Hnǈ     '!! #PC      '$d"BW?Ñ8!     ASEEO `pH      @@AOP)CG?"      >ECQ
(#`pH     #DAKU(/DBE&/I8     @ @1W)D "_Ä8(        #?"75 'PCU       GJ"_x"~ CUG*     ~@BG_0c"H      Q+ 	D"UC"?      @@AOPQO;ȔB$0      BG9HB^)ORG GB     !OD"@?R(G&*Ry
c     P# y?T:DRP!\E8I 0     #DI"_$I UVUsQ     #B ȺȆC 8     #!.*#TC"         )D%|"Uʥ8"A     $!P0"
W%À8"       GB"A#(k8B "8     !$DD@?RJDF6Ix      '/ Ĕ#TC"      $DIbUXwB@I3        BADIGU6@        @y@_"/_~EBR      @@AOR?JH EE(9U     "($ϑ$D{!TU8I 0     #!/W?IT$VW%à      'J$J D&?@       ')/?A#T	D     !A!Oz@%0HD}=J8g       G@]x*UH@@V*u      @@A_$O~~E𪥗 U      `pHPQ     % y3D<WP"WE8D     #DOzR=DHETV/Nx      G"	?IA$`G_     !HBJ@H?)jBfqx       !+ 7?U #URʥêU      !D!_P(?DD &?8R      '.W;"	'R"	C8 a      @ORJ_	$G-$OP     ""GBDC(n;      GB"^%/{(HB@$8      A!_D ?BJCּRT=p1     #BGHH!E(u9Z B     'H_b( UUV      @ORJHHcG%F$mx     #DOzR=JHHB "8     "D^UHuUHKʡ `       GIJR?!U/B>SFW     %(O|"JQG GB     !D?wU `pH     Ux(!7	$(`pH     !CD*Xy
OHWҨB~	Q     #DOzR=B@8     "HB_`("	O)     #DOT%ORHUFDV/Dy~      GB"^%/{Ȕ"G"'Nx      y @C      B  	 Bb      @@BAd       @x$  @@B           @@B(       @H EDDAD`@     @A ADA@a       GH  @ `
        @  @@B      x	  @@B      DHIA&DI$DDI$h A     @! A)  AD`       'D'BD"DAaE       #AdP" D@Q#BD      @A?A DAAD`      y7D@"DP# DB     @ ?"D"B@B
"      G@BTBQD	Db      '
$W"DP @EA      #!D"	!B AH!B      'H #@@# D          4"DHB        @x  A@HI      #A"GP       @@?I($HG!&H       @D
WDH$ H@AA0      @ADI$GD `        @7DHR"F(P# DB      #$WI$"HDD@      GHAAQDI$EQDed@B      8QD"PDQEA       @A #@A@       CH!@D!CD!d!A     @ WH  A@HA     @A?ADD@QD`       $W%D!@_ D      B?A$DBD}`     @ @ <H! B@I#"DC      @ @ ~!B!PC        @x"
O*  A@HA     " A$H <OA       #!D!B AH      #	$WI" D P# D?         @@!BC     P D @E#D         $H! B@I     !!D?"D!B AH> D       @?"D!PC         @*T$"HHB          D J("PGA@
       #רQD"E!P       @@(H$JH	"F%      P !? ~D"DAaE       (@H?D($DP&EHA       @"D!PC        GHAADAGDAdA        $W"G!@       GHIA&DI$GD `       @IA&DIDDI$dA      @ADI$GDI$dA       @	פ @A@HA      @ADADDAdA      @@I)	@A       @x"D( @@	"&H(        !!DA  #D!PC         A y%/Jh)REiD     ! $ WE#DAQ# D?     @ @$"HD!SC%         AB  @!H#?         A7 D!@C H#D     @ @ D R"I!LC(       #$W@D"ET#HD        A7DD"DAQEA      'D6	 #@       HBZ)IR)H*IB"     @ D@$R @C 
      @  #J`H#D      #!D"D!B ^      H D! B H?        GA	i$JE0A	       @!!BHC% D      (@H?D(EP&IA       @)T 'A@HA       OJ$IOJC$ITIE        A 5 GA&"H       #  @GB      DH)@?@`?       HB HR)H*!@      !$W?  #DP# D       C$("DDD        G	"/Dh"D)R&@H      "H	$׀#D P# D?      GT*UhUET&$H       B@D(pAP	"FDH       "@	! B@Q#"D       @D!(OE!	P	       x '@H       x #D!PC       !(Q1DT  @OB       @@  @@	     #AI @B!R#DD(        @@   G!BA     P A
W,"I@I#DD     @ DD!B AH> D     @AABAG(D!b!      A D	@HF(       ! D!I$#D P# D?     @ @ A	!A@B
"     @ @(Q%0R@AHCD0 @      @@@ (  D 	       @ @A	! B@Q#"D      " B D!D(*DT)&dHB      @@@ /A!
"      #!DBD"DQ)a     ! B }/Jh)RI$I&K        @ׄ$H!B ARA
       AD 耒"@G"F       H@"DFH      'א!	   G!PC         @@$)T@BFDI       @(I ?($(H@!BUI      D A)BBQ	      E$*R(c @@      DH*@"DADDd@B      "HDA$"HD!EA      #	$פI  @GB      #$W   @@B      @!D%Ih%JG)RzI       C$O?DDIR@H       B@D( @ "F        AQ	$JAaH     #?I	!B@P# D       @	$W9  @GB      <7  B AD
      @ D6	 @C      @ @   @GB       @@@	!(PBA
JI     ! A|	/Jh)DI&@H     ! A|	 /_hEE)Ҡ&@H     "#C* 

H1$A      !AAO GD      @ @$WA"@DP(`      # W 	#B AE6       㠐C
 )J4       N($WOTJ*F       @@( B" E        @D$ CF? B      AD
( A"F? B     !B A?"+ D! A      AD ($BH	"F$        @@
$ABB       @"PDAR
       #W '@ AH
       #	$פI 'AARCDD       #$נA "$GPQ*Dd     !W? "DP# D      GЈBA!~G%D%$i	@B      GHIA&DItEQD]dA       GI%/ B!`       @xIBH     P ?H!B@I  @       $נ 'HbD      #ADD"EPUCEA      @A!/DDE!F%      "H׈D%R AJD ?      A 
%OI"B"QI      @ @  	   G!PC        @D"D
")"@D!""      @@@@O ( B@	L	       @ B|J 
?       G$?D( D@"F?B       C! P@CQ
F*     !$DWD$ "DDR#$D     ! BxQ9O"L@"      AD
($BHA     "$Q7DK "DPC       ! yW%R%RIC% D       C	$$I @        GI= ( A F 
       xP,"HDaRC$       A!D%hGQF$I       x?"HG_      FpD:H>DHBEA     "X	$פI #B B
"       $א?  @@B     '	$ ! C!RB       @@@  A@QB0@      @@@D$< EB	     !A?@ 
"      "H?I	@'B AYf      @!OBRG8BJH!      OQ)DB	"F
"       PC
/ȡ(J4!      AD ?ACA       @@ BH# A      (@H$BH!	        GO  EI&DH       G!?(COx"R	*#       BH?@h BHD      A _$(B B H      @A D?A(@I	        ! 7"|#@B 0      @G|I%/Uh DD&DH      @@@   DR@H      @@@D	耒" G!J     !A! ? ("CQ
F*      @@@ ?Q4@Q&       @@@AO<(@B A?B      @@@(I(BB> D      'AW   OJ$        BH /("D@@       C!?( Gf      #WD @AB#$0       DD {蔑)DI&JIVR       O/BN	 K/G?I      @
 G!$H      @@@D舑}"E)R@H     " B@=$D(hE TJA     "B B=$@(EEPUCJ@       G	Jh
b@!F       GA%/ C        _QD}$BUPDCE"I	!       @@( BFDI(       IH"((@G?"      AARO?I GF?A      !A! =L
@QB      " IE_IUtRUI},RDA     !A )O3($ C!B!B       @@@TODh@@DH        G|q(*GTI_       OHOA)}D! "      Gd(B@      #"7 #D!_$I        GQ? ) DFaQ        㪈C
?!䊒*H(@       G!?J(*D(      @@@D CR=      @ Nw)TEАI	 `      @@@?Jh EA	U     !$D ?RJDBIH     !D 0$?DD "R      @O*w(DOA?b	R       ?@  ? !@A A              A       @|Ȅ"  @DDȀ       |x !AAH        |@H!@@D      >AB
H*_!T%_W@       |@DA} B!B  0     ;BH?$nȪ""F*۴ E@         B   
  " B C          !     D~? 0 `   @    D~?0A(a#  @     #*";"	H% R
(A    D~?A` @    D~? o   @    D~?$a@ @    D~?0A`  @    D~?3(bC"P @    D~?2ILd?  @         D~?7|b#
6 0    D~??~b ( @    D~?7HbC$D    D~?A`  @    D~?7axD     D~?78b$"    D~??1	BcF     			     D~?7DaCPFB    D~?0!aC @    D~?7ELTd$Z"    D~?$0H`{~@    D~?2I̒g$      D~?7d&(@    D~?3$aC  @    D~?ALTo     	)	     D~?1M "    D~?A7DoFB    D~?
1!Mar+1x @    D~?A`  @    D~?`Fa    D~?"0oPFA0    D~??2	8f3xF"    D~?1l c"    D~?*2Id"*6@    D~?"6Db#*" @    D~?"7D &A0    D~?0Ag     D~?3Lg[ 0    D~?̪eS3A0    D~?E-iU[&    D~?2	̂g$YFa2    D~?2	 o@[     D~?61b#Q>    D~?ІD8,xA0 @    D~?39Lgs  0    D~?FA7\g
PĖC    D~?F3LaC
v 0    D~?A̒g$C    D~?2	̂g FA0    D~?$3d? @0    D~?&2	 o@[     II%1{Ȁ"DFMRR@h    D~?̂d;P    D~?I$    D~?2	̂gF7    D~??2	d &A3    D~?"7Le'(PG10    D~?f4A	l;?A3    D~?7eS:
ƶȰ    D~?2Qc3    D~?Fk8&0    D~?w2̪gs &C0    D~?&*7_\!0    D~?A3Ld?(1    D~?̪gF7    D~?&2	 aF7    D~?>1 gs*T     D~?1`?A3    D~?~1gB    D~?)o    D~?Aq?#آ    D~?u0k9"6    D~?AUiب&C    D~?0Q gИ&?0    D~?2	̂g[FI4     " oDFUZKw#    D~?3Ld?"2    D~&2	̂gFI0C    D~?"1|`;TfU1    D~?&0 g F    D~?0ADg ʦ    D~?FR7݉-Rj}ȦH    D~?A̐g$    D~?FB4̄iK{ ʦ    D~?&0=M*o3H@    D~?"7-hxJΎ 0    D~?O7I̒~$<Ɗ    D~?&*7,|b# 7    D~?F9aCJ[$"    D~?&4_-oDV    D~?1)oI[ӧ    D~?|`;TfU1    D~?I3?"2    D~?ʦw0̒g$B    D~?4Mo{\FR    D~?&*7,|b#?$I3    D~?ʦ0 g!&f5    D~?І_0!e"ȆD5    D~?2̪oF3    D~?4!"iEZd    @?   0 `       @   7 `       @  0A$b       @  0 `      @ 0A`      @0aHdCBP     @  "1Db#     @? D2!`~F    @?  0A`     @3oX"V	0    @ ATdDX      @@ 1!hH     @? F"1Db#     @ 1aC     @  0Db#Y     @  5	.Eb#      @ &I3Lg$     @ 0A̒d&(    @7g  0    @ F>1Db;F    @!7LIb(>     @ I2ILd>@0    @ F"1d      @$$ 3Lg  0    @ϻLdc"Y*6@    @F0A{     @ 1c#bh& 0    @ -9jd" 0    @Ȇ;Ld?"    @P2	LaC
Ȗ    @&2	̑dS) 0    @YFBc&     @C3L`c[0    @FI<G̒g$    @?A3h 0    @&w2	(aCXv0    @&*7,|`# "2    @!g &2    @&39Lgs      @!ަE2Ee(PF8    @PI3L`      @E9o$&0C    @?A3L` "2    @?$?d$$"2    @ ظF4}|$Y" 0    @¦RqM}p? "6    @?ȃ? 1 g*T     @ A3Ld?"2    @?A3aJYJҖR    @EHv$Ib#""     @qViXR     @R ?d?̧1             @     e*JQuHB      "!!	FB2HbC Q     $ 	$ B%4"H    $$H"D>"H"$hE8@     $B	%B!4B     ?$H"D"H"$h&x      $	"!4@      C$Z,ҊJ)4F      	(";,$RMI*"( @     $ ))%(%4H"H@     #舒$H"$H" 4"      (	 $JI)"*(h      H$DI%$H4DHA"     $()H4"HHA    /$BA	"RF1(B     %	>$"(4&A      $D
 dH"$4H&A      	 $ D"H"$h&x      C$B	'B)4B	      #舢$&;$"(4!     H$DI$D?4DH!!     %	$~
$(B
(E"    _$ H1PtD      Pd$?H1APtH@@@     %	$$B!5B      C$()@dD$H4DH!!    /$BI	$"B)$(B?       
 $(H4O      C$B	%B"4D
 `      $""$"(4
X4    (I!$HI!"(M!(?      $	H$>"4?       C$~	$((
(?     C$()Bd (4D      I$RII%"R/M%(H      $) $")4
(     䀔B	%J)(F      C	)G*D%
TMI)(B"$    !	$I$b,] hX     H$I$R)H4H%     @
 ( 	$KQ*DbB      C$B	%B!J	(?    #H$@	$RJ)H4F      	+	
$%A%(F!       I$D)`b !(B       CB$$"!tҠ2      A
)~J)TjT*RD      !	$ H) (- 
     "	3'B/5      C$B	%%H4J      C $(~
(D    PJA)I%"QD!8@     !	$ J*b**hX       $*(G      C	(,_h B	4
 (      	+*!%FB-1+B1#     	+J*$ E("H     $$'ȱ5(B1#     GbS"QH2APb B    @
$$"I$ B
  ?      (	 $H	?⨊*)(      #z
#?$H"VR)HX    C)E)ؤCTeB       C%B	$J5X4(H      	+"I%$E("H     SH$DI$R!B      C	$(C	
 BI-$"#     S(B$)(J	($     CB	B)B      	 $ D(H&A      C)$J)(     B
($ B
*!$
(      B'䑊F)F	'     C	$'4R H     () 
H)?B/(B      HE# IH1ILRtAH	@      	(P#J BMI("        % 
(?    #䈒%ϑ"%Ή"$5ϡ" H    RJi)ǦJꔫRJ]#      C())H4R H     C䈐$""/4"       C$D
 $*
      C$D?$"/5H?B    䁔Y*d!"t
     <(C$I-$B      	 J%$B(b8       	KD"D"+"       C	?C$G1)(B1#    $H2!uSJ|P    $}D*BduH@     CB$F!B      SH$DI$/蠴(      C$D
$)(H     B
)ĦJeCA
B?       CdR$ ,(д~
(B    $)B@	?@)]IhIF     A
(ª*[A
((@@    ("$"J*݊")M$       $	?)(     P
_B)_RJY!(     C∑$	$@$ (     	") 
x*^J*(Jd    () 
H)? !$(B    )$J,?B_DuX@a    A*ˀR 	      Y%Ii%UiU&VXB    RII)J$ RH"H@     蠤)  B     I )$e*2IJJ&0
      	@
 H-?("      
I $(~
(B     C)? !4B     #蘺% ((
(?     #?("R-O"H$    	?%" 
_  J)Xd|     C(	 ((     ∀$
/4l
 (     C _ B/4~"?     @
?
 %RFX@    $)~O b/ h( @     
 $/uUV      C	JD"B	4Zz	Db    I"$ ")
_U5TRI      CH 
/4TJ       C(%$D!4B     ȉ{*J!%z@ H@     C$(	?((      )?(VX@`    I!+?<$*^J$&!    KI$ 	*?A8R	(`     $"JI? ( JXQb<     	 BWd)!$     CIs15""a     C))S	*Dd
NH>(@     C褤B $
/蠴
      #ޙ
*_f H- 
H      #IO @%RM$HI     IJ(~CҥTF*"      C%~" +~
WP~
h$     	W9VP)H      C$D
 $ *H*     C$DI?((H     I)DkGUeF[UiFX@    A	[
5 A?
!     	DlUiTZ@	 
      C$ hB_ 5
T    PJJeΒR{ J@     	H @I4*(d}     CHb	䐋) U`      @"Ģ	"(|Adq)I     #ĉ{{R{(Jag     	D-?JRJu/P5?h}dU       @B ?BF@+ #1A        C!?>%PA¥E2RDD(        C%_D?>%PA¥E2RDT(      	 "           A BB      	  @  A D pp     	  @"    @      	 " _B @| p      # /Q	b#A(Q?@      (PHR?H AAI @      DAI@ B B      ?@ ABOd$I $I       PR 9
R"?H 
@$I  @      P'Y	?$IA$I B@     P"R?HHB@)Ƞ @      P'Y??)RA$I @     	  @"* #0A      ?$	,@D	DA      A   @_! B        A b~#DAHQ@@      P@9R%HJ*CԄ _ @     	 " _B @ȑ"DH     P(RY?*HTRB  @      d=HI!C?@      P'Y?"H|B$  @      P@YR?H
@) @      $>~"@ODC      P@GRHHBA)_ @      P@'YR?HDB$I "@     P '9?H!RB) @     ($HLߒ$$H~!"BD       (I%K܉)ߠ]HU"D/PA       P'R?H%@I_@     @ A?FBG	?@      D{Q"CO	?HI $_䈑F     H&Kߒ$?~@A D pp     ! (@@a       (@I\_$HE"GԄ/ҐB      P YHBB)_ @     I)$I% ̈$I$I'H/       QYR?|HI@ A@      	DD H BEz     0T)eOQ(}DE       )HSli$H` N$`      PA/
?H/)*!      "(DK)ߤH BOȐ      :BCQAa      ? $H~%D     1RCkZRJRJR)O{Є!     ?
d~!H8        A$E$	%)$H"      ?@ \  ?     (       ?@ \  ?          ?@ \   	  ! @       ?@ \    + @      ?@ \  ?3N     ?@ \  |  ?@     ?@ \   " 8 p     ?@ \  `3! B(      ?@ \   ?A(0      ?@ \  ?         ?@ \  ?@ AL     ?@ \    A D     ?@ \   ?D@Pp     ?@ \@`d3   `       ?@ \  ?B!!      ?@ \           ?@ \ @!~@     ?@ \  @HC      ?@ \  ?BC @@     ?@ \          ?@ \    D@I @      ?@ \ (  0     ?@ \  $H(1DD     ?@ \   $BH      ?@ \ @@ D      ?@ \ AC
$     ?@ \ R$DI      ?@ \	 !      ?@  @?         ?@ \ |<@B 7     ?@ \  ?@  ĉC     ?@ \ RG$K      ?@ \ @      ?@ \   "D?     ?@@  <     ?@ 'B B|@     ?@ \@a      ?@ \ ?A<     ?@ \ ||"      ?@ \  '!"y     ?@ \ A ! _ A        GHh(  ! A      ?@ \ 8@ CD     ?@ \@A ?       !j5 T W$B_Đ     ?@ \  BY$B     ?@ \ O     ?@ \ 	P NR	     ?@ \@Pp     ?@ \ ~ HbB	E&1     ?@ \  {zJRB     ?@ \  cd$?B     ?@ \  {I*U$Ow      ?@ \  >D 	f     ?@ \H@DB	     ?@ \Q%Q<      ?@ \ <I-ʄ      ?@ \ }*'ֈRE3     ?IAA !      ?@ "HD!B     ?@   %T&9     ?@ \"	`J$H0     ?@  ?~Ds%     ?@ ?~@!E%JH     ?@ ?"H|! FO      ?@ \     ?@ "4ň      ?IAGB!D     ?IADr'D DCT      ?IAD"HA GJ     ?@  $?PDWP@ALa?     ?@ >"J     ?I@DDz AC}	     ?@ \  |u
"p|     ?@~%DHp$O
!       @C)?ꄄ?*$PBI(      ?@ >$ C#r#     ?@_A     ?IA@?B$I_I$$D     ?D@">DJ'D     ?@ \ ~O     ?@ \EQ/~D	5Q     ?@$?H?       C	/~*$hR+!     ?IQ_>%H@@     ?F 21HW! Ƅ1      ?@~D(p!"|     ?A0 (     ?IAGB! )?     ?IAO /D8Ҫ	 _     ?@ \$H~%D     ?IAB?A y )^~      (@* )A       E/ꂄ*TpW	 ?      ?@ ?A$ψ     ?@ \  ;UP "
J      B?D*JpI)?g     ?@ I.I$ ?     ?D  G).bj'H	     ?IQO!|	(y`$     ?E	??BH	# _     ?A?B\D C     ?B)B(}	J*     ?IB"  || #EO>>       ? " D@       ?         !'B R|IB"U$     @   |" GU        C P	C%% D        @O " I	G! E        C'ʂ?(|PB"(UC      @ G R|$(Q      @ G? }I/H($       #'  }	"UD       #B ?|!z$O      #Hg }I'H($      ! ?~ $}h"WΨU!     @D >>@ "     " x"  > @      ? @D       Ac! ~|yH@        	$HH!"BD         $HH! B        AC/U^]JU
UTJ?`     ?CP&02 /K(     !UPUBuER0R@C      BI]UW? A     ?Q) BJ)I<IG      AA  @!B  @      " DC$I '@
     ( S!FC"*(TP@A	     " DA$I  G     " D!
_ԤIR$ O!B%     " DC!_IBD ! B     "D#A$I  G       ( PD$*HT BG	"DC      ( PB#B(1*"TdA71B 
     ( PCBQ+T @'A     "DߤIH!'@"     (PPAD"2*HTBG	"D#@     ( S!BC	*TB'A      ( SI#B$I*U D" D?      (J	8$GUAU$@D!     ( WDC'*BUDDA!E     ( PCO"$_HURF/" DB     ( PC_*TpPB!BDD     ( Q!DC"*DTB'A      ( PD#B?*BTC!        ( PCE#*T @O     ((QSEC**TTPB?      P#BJ~I$Oޒ$HB     ( J8DAU"UB!     (P#AO""D*UDDAE
A     (P{ATpB!"     (S!BC9B*UAW"Ġ     (@PD#B^%*JTBWA"D      ( PCOB$I*U$@A	     ( SA?HURF/" DB     ( JI9$DIU%QcDA     ( PCABCB _?* T B!B?B     (PPAJB*,TAG	"DD     ( PC_* T D!B      ( PCA T @C          "?     (@PC_"+TD'
"	     ( QD#!*~THBg0@     |!C(_ a C ?     ( PCA? * U@@!"     (R#ADd*HTPB!(      (P;A?*DUB'A"     ( QD#B * U@@      (QHC?I*U$AG	DD     ( SA$I*U$HG
,	     (P?A" *UBA1	     #J!D(P@I"     (Q'IB ATB"D"B     ( "8@AUDDB     ( P#AO"J"*T @      ( P#@
 *T  C!B?B     ( PGEC$ UDB      ( J*8 GUAUuQUtDDB     ( PD"$QTB'      ( P#@?* T@G     (QH"_UDAQ"D     (Q!E_(qT$JWB     (HR!_)^*U@O
$     ( S!A
_%*V0@O
$     #@""?     ( Pc!D# ?*BTA'A	"     P"G%~T	WȢD$I     (PA_
*UTDB      ( SOB? *V"DEO D     PꊎW}~TR"$DH"     ~ H|a'B	E&  "?     (QH"?_ T@">D     P#"U} !`	?      (QAKBj_*UTFG&R     ( QD#!*~T @X	     (HPBC?* TJ'*H     ( Q!DC"*|T EWB*      (QDB*gTC"D?A     PG>H"? E     (QDC
"*V @B      PG T%D$I     (WD|*T@?
"	     x|9PI
#f "?     @? !""?     ( SOB?**TWPB     Q ?J=DJT
O9D     ( RK_""*DT@@      ( S_B?*U$A:	     ( SO *UDB?"     (S_.8T DB.A     (W!@*+TPG?     Q$KꪝwDU~Ԓ WȢ(IH     P@C?J~@ Udʀ     ( WOB?I+T DB? 	     (Q!_B2_U| EH
"     (T#@*UDG"      (WDd*U@G?	     ( J9GȕUU!w FD     P *TE$$G@     ( WOߔUDB?"     (HS!@)_RTDG)DE     P"?J>) /J     P"%${#"$NH          @         
_)~%HA/B"     ( I!~4PBE      !A !>~qBOB     A Bb?           AA"  | ! E>D      #Q?A( SI     !%I ߠA~G/B"B       @C!?>BD C	        !~I`DԂ0@       !! ~|@G      !!!
_%"|  !ODD      #	!"}"I?      Q@
! ~~!@ʂ$      | πxAC      !$O"}$#     D "/@?"}%H	/D$C     #(@"}"8/D     H "O	|!)%D      !!$O""|| #PO       A/!~QPD      !I ߕ!*~PG     D!
!~T@      ! ?"J| %ODR      GIUё}EWD}PED     H#! )_R|#@ϩDE     !A ߪ~DCOς
"       ?   	@"        	 $H)!'BI4DH      P@'>> H)CQEA       @@?>D @       |@" HA        A'B>"| Q*UE*       C	D>!9(P% H     @" D  @" D ?      CA   @ "      QA9$PH!"~A      J1@~ P?      "P# Ĉ9$PH!"~A     
UY@~ P?          ?   @@       'B? }$IR"      @A ?E@|ETB_E       G@DD@"}H_!D!       !HI%|%KI(_?      @ DU?|A"        $O  }AB       B'"D*|JD!GȑA        $G ?A|O"A       $A$ y$C	"       P!A? }T9PHA"      !!@g
AO      GH/{D       D#PDO2?H|!_舟"      C?B D      @A B "D      AAB
Ђ "         AAĐ!~$I4$O	 !       C B "t       P_ʠA*UT%_ʑ!A     |  @BB!B@      @ A!H!AA       @AВ!$~H"t%	 !      @A O"t      ~! (JP-BT	J儊@     (H (R?B 	D@      #@ A"ȑ A      ; $I$H$"A       G !~$I,$oȉ !      | _Є
B!B@     |   E?B(Qg䄐@     (H (P?B$I'D@      #@ʠA*UD!_A      > *
꠪H      !"~
PBHP      #PϠA#D"AA       CH?AD)"$ J "      #"? A $"A     @A J (Q	D      |!HB|!B@      !@Gϐ!~0qR)	!      #"? A ($_ϑA       ! G !A~"ȉ!!       B	O!~$I"D!	!@       AB!O!~D$$Oȉ!"       A	')DRR"@
D"      !@G! ~ $$Oω!       ;ߠA}($_ϑA    @$~
(_BD)~  @    A	$
*H)  @@    **(ꈪ" "       G >~	%D!OI0!      " (/蠢H     D WhDPBje$P@     B I COĐ!~I$"Oȉ!B      (AQ~UD(	!     ( QAA
͐!~lUD"ɉ!@       C P~"!/I!@      @HH?>B w 	 !       Aa(>$DH""GȀ
B"      !C	O!`~$I$"Oȉ!B       G H>]E!!' J@"      =A	/ʐ!~	$"O!     H@"$\R>D       !@C~(D"	!L     @ B/Ѐ!>~ B%/I!     ~$ H$BH" |        QA ~ }"/       PA~$/      !PGHJ?B!B@      @G!I~ QD"ɉ!@      @G!I~|It"/IB      Aq ~Ud(O	!`      !@ФI~!)/	!      @G!I~ qD"ɉ!@      H! 1$DK?      1@a7
>UDQ%Wˠ< "      %AGԈ>$D~""G
"      B	'>DPB" @"      !@Gʐ!*~!)/	!      PDȐ~R"ĉ@    $֊)/J-(@      B/А!/~RJ%/I$     ~!$I("|8K        C H*B  
"     @ B/Ј!"~x!!ʉ$      !A!/א!~!R%<!       AB!~~!B!	!     ~!$I("|*C(       >D @>D^B%)         !Dǐ!T~Q$Oȉ!"     T"wO?B 	'D@      AP"~HD'I#!8     $ @O?>BTB@      |##DW_B}Z(B1     |!PHJ?B%
Z$P@     %HD~ T*I*C      AG$>RD!$'Ȁ"
"     |!HH?B(U	G@       B	W(Q D%@ "      $C ?AD"G<
 "     ~! K_/D|U+P      ~D ptJ*|qS      *((E       !@Ȑ!"~|$/	!A     " D!D"}I E!     |!ЂPP?"B|	'D@     %PGʐ ~%"ĉ!@     w~"!TTAbb|Ĉ3`8      P#W_Ѐ?>B B$@      AGD(j!WĀ5
"     " D!#B߈~"D      <D!BSO~=*J薵(B)      !@Ȑ"~d"I!D     |!'B B|	DP@     ( IFAВ!$~~"$I*       B	)>D}%ʀ'"      A'P!B~H
       PAȀ >wDU"'@JD"      O|'#T_~"}*(21      G/P~ $Oω !     >DE!ZπEP
Ȁ     "|#S_Ȁ!|#p      DH?D$      #HwBDUꤕP@     ~\ L?BC?@      | #R(U"}T
?     ) PC H>HE$ˠJ?     B|!<Ȁ}Ί;X=Q     " DAwʨ	>?D"#Ā"      D"!	H	  @     @A B$I$"HE      AABJP$E"       y @A B$I$"HE       C B$I$"Hu       P_ʠI*U$IT%E
!A      @ I!$JJ!AA     @A OI$"Hu      | @ E%J(Q(a     ~A(JR-JT)J      #@ʠI*U$HD!EA      9$JH)"RE$		"!     )P@/PP$I%$JH"H     (H@(R%J )D        %J$I(Q-$c !     AA_I!$BH       !xϐ%"JD)R$	 !      #"? I $
H$"A       CH?AT)R"$PA     ~  DHJU *~T!PA@^P       !@% J )R%$C!        PJ("P!#I!A      #DI*UH=R
       !"/% J )R%$C!       I/Ѐ%J
(Qe$	I*!	     @ /Ѐ%JR)RT"!A        >J	%(VE!CI0!    A	$
*JI)(( @@      #@  $IT(EAa      Aa(*$THQ"BA      @ II$rHJ"	AA      PA*TR"ĐA     @ /Ѐ%>J (BR%#I!     @ "_ǠIq$"K#
$A	     ~!$I**T8RI      >D @
*T^PD	      }PD>TRʄ*JjJ*P@     T"s_ʀ@T	P@"BB       $BI*TURR
Q!      AG$*RT!R"A      B	Ȉ**T(S"DA     ~D Dz*T"UQR(      $ IA! *UJVک$PA     G|'ʑ*|ʑ*P$H`     ~D ptJ*TqQQDQB      ~!A
 *TPA       AGH"*xT WA      GרU T	S" A     ~#GA
 *RR      ]Ib"?BC?@     " DAwʨ	*?TȪQ"A     ?@xB
J/R)U        E(W*UP*E	$`      4/UA>R      "ĈߪUHJ+	$`     ހRFKQ*_TRD0      "uĈ*UTR*I$`      @l'J*U*}HUH`        CN*"UUQ/\Eɐ      "ĈתUj**	$`      "W*URz*	$`      
dWHUJVQ*0 ?      "E*UTR*	$`       Aj
/D}\UCH`      h(_*}|UdH`     |5%Ϩ_>Q&$0      RiGJ0D*}TQT$H`     |5ϠI>Q`Ir$0      o
/Q*}yUCI
`      |j' }~UUKTHH`     \D(}(UE_K؁      YmgRJ>TP¢E8O ?      T@(} }T*C     }Q2#B
ɪ||PH`     }	Ҏ'J>U>URQb       @yRjZJ>U$T  ?     J
n+TDU>ER/Qo      }܈5SeUJ*T}TAQ"`     }7_ʀ>* }QT`     QeWJ *>| PBY( Ȁ     }7s]ʊ*}IW`      #I\Ph}%UQ"ā      (AbH>6THQ"E)OQ(?       IiGE
A>DVR""/ ?       AjH|TR%& ?      U"DNU~T-mQ%LQdA     }މ	7;%]*$|ԪQ"`     D U;T~QE_     !\@}	O EGϊ_     ?@ ABER!E I"T       }!&͊%*TD	  (?        ~ yQQ)DR((P       @($oI=*BT
#@@P        'H'@2U"E$JHQJQR     |$Dύ>*DUB$D (?       }I)$̈́*UBܑ  (?        Y-dRI*T"DXH@P      $DH6(TPCbUHYA      @yR*ZI*U$/@@P      Q%TJ *>T B*Y0 Ȁ     !!DDI[	*T$*T Ā       I)DE	A*DV"*b(@P       H(!"BDH$I!"HB       ;2SM)QURWʊU)        HVoߪjɓ      @   $ D @             Q?@ B     )~>"> ($*2       @(	""R      Q B($"H|!BRDQL       S("| A@AB      @P("P|ABDQ     8S("|@AB%DL       P@("| A@AB       @@ABJHQR|"1@@     @
$IKQ|IDJ$@       @/"*>TDQ*Y       Pp("| A@AB       x!"D BA!      " $ /L?A      @ '(>D$I$J*       @P(>D C      $()>RDQ
 A       P@("(|PA"BD        CABGQ"e*'ID)a@     @ #(_H>D BA!        '!>D! B
        @"$AD $J? B     @Q (" |@ABD     @ @ E >ER	$J        Q"OϨ""D|B"DEH        AB"DJO@| $H1@      ! y2%?JR)JRjD!     QD"^/?L?A        @A$E0_Q> E! $!      Ph}"}DR@%@L     @S"OިJ"}QDBH%PL      ! '2>E$I$J       RH/h"}$IDI%RL     !$E(A>DB
A!     @ 9%(>DD"D/@      x!">D $J      @ @/ A?DB
"!      PBOh " |B"DEH"     P ┏($#|!BBDQ     P A*-_>,DB*YD      Rh]"}TEH%PLB     A C)!?L?A       P/hU"}TEH%PLB      ?/L?A      A "f?H?A       Q"OϨ""||BrOE@     ?B l&$OA?F!      @QB(D#}!DBHQD     @ @/$(>QE1BD0@      #Jf?L?A        @!"@D! 
(        <!1? >ED
1!     !Q$	$<JHbZ     ( H!"I>EIJI       P"(Q"<|EBAEA      # /ߐ!>BD$        @!"I>EADJY       PBOh"| aBI%bL      ha#%8?(D
J       Р&E2_ D	$ʐ% D      #(%?ߠA>D %Rđ
Yd      #)%?ߤI>D DJY      !$%*_ D@$J%      H y/"QDH$Y      '	*U_)RH JK)"     D !.(">DE"D"      @ $%0>E:*Y       QOĨ" | B"DEH"       @"(E$*Y       !D)%%>D ID
A!     @D?L?A       !'( ?E@I`     8!/'I>D@"D
        SOϨ""||CD%HL!      @Q@Bo("D}IC"XC      '"?ߪU>ETY 
A!      '!?>EI      !<I.)?$ERJ*Y
"       $%/ߐ?> EA 
        z!5I$0`?X     @ ' >RE8RJYT      !0LA=M$$K E      !x(EdH<I!%Q       ROߨ#}$DO@L      QOϨ"@|IRDRL"       @"
$HDB!      !%%/ߔ)>~D B1 A      !')_@~DJ% D      SOh>"D|CDE@      " $Q$+>DR*        SҨJ"} E"JET     ( H!?ߤ>EI "􈊉      DHP(>"| @JUL      ! (/~>$EhTY!       )%2_I>E$ʤY     @'|I4%?UR< KE+DZ     "X)%:ߤI>D "
"!     #()_>E:*Y       @!">BE򊤕J       !!$E/">|D RJ      !$E A>E 
A!      "H? ?">DDA 
      |Q"(U"| B"BB      #/2_*>TGQ
       '3$_H= JU
T@        /߄ D|IJ      !$E/>EAʄ      H"*|=JT	RDJ!q      #/" >EJ"       'I>!JRs H"DA!      !H K        '/ A>D J      < Ce`?X      '/ ҀH K      $"H=u_UR뼒O!RIZ       @!?!<I} D      "H? ?">DDA     B/H`?X     |#π/f?X      "x?K	RZ%      GH/{D`?X     #/0?QRD J        #$E?>E	$ʑA!     '!!?߄ D J      '!? ?? =H@ERĵKZ      ?Q) Bj)GY_!~A     @ @2E?I=JHJh$"     $ 0%?D=I!$R      '._;"=H"K1 a      'I2?!U=/O=	RJW     (/|!=1RQJKB!     @/!?ҪIBbR       @I  @C        @ A	   @@A        CAQ	"(D!B A&BH       @D	 ?'@"&H       CAD	(I A$I	&H%       @@
I $"HG!&H      A `	   !@! BH      @xB	   @@!       @xB	   @A"A      A 
  D@"F       @8P	?Q!DBPEA      @@HI H  A@HA      P@^	( D@&H      A R	D !$BH)"F%       A $JE!C	B& H?        OG  H"$"H(@       OIE%$  II)$Ē       @@DPI  !B("F         G!DP?(B!B!       A 
5  OA&"H       @JH/H"R)H*!@       @@ADPI@`   C("F        A D
 P!DB!~       @@@@	(A AA
"      @@@
 (Q!E0ABFH0 @     !A! "D O!B!       @@B	耒!@ (         G_! B!@ !$B 	      AQI	$J AaH       @@ADPI_h#@@	"&H(        @x$J% @ #A!
b      @@!$ h""BA!
b       C$_$I  G%BFDH        C$_ A  B$Q*Hd      BJP"9ȁ*?      @@@J? B!B F        @@
I!"G!  	       @@$_  !B)"F
"       C$RI!C/F E       F\zDh  GB6     ! CAH BDy0        @@B	 #@FR     !B Ȅ
 "G"      (@H_$!BH!	       @G|IԔ*U` #DD&DH     "B !#I!!	      ADO(!@@     #DD !R$O     "E!Ԅ	$TOQ>BĆa       GI
J`s  G!BA      @O!Ą⪑!OAbR      C @?@!      !A@	B%K!/PP      DH$GtERSDL_	!      p?  H  @@     AGAI}|H#DHJ#     PA'H>|IDQ"A      B!G HP|QJ(_G      @@@A 	H}R$LH"       @G?@|!B("      xG!G H|AB("       @AGAGDU>H|A$PH"     HA'q	H|H#tD"$     HAU|H$B_      @G
$>HT|DO_      DG? H~"EK__"     @CP?HB|$R"     @?I|TCUH_"(      B'A"H|| SUH      y"¤O $̂a      @A?H}	$_ȑA#       GLH~}HH"B     I #)/>>     ?B RJX (       A'I
? U"EUH
     C?)$RUIU$      |!B@	 U"ET	         DH%R	ZjR      ! C$RUJQA      9!$"ET0AC        A ֒9$~jU0PE       E TR
VUZAPA     ?B  $P        ! C?$"~DQJEA       #VUZB     aA		? UJU(
@      >EA)R UFU@      ~"BG	?"ETҪT)      ! DO$RUJAQ@       ! COȒ$"~DRPEA     ?@?I#B! @      ! CR$~(RQJIE"       /RBU
P@      H!$(~PER0RE#      E SDOR FUTI!     @ D	_Ȥ #Q*@D      ! C$
ETQA       A $~P%RJTI     ~|B'I?(QT%RH(B@     }'Ҋ%D>(QU(P        ! C)$RETQA      9!$?~H%RJI      ~
DR*UUvT("B!       ! C/Ғ$$~~JUJeQA     ~%J@)R? UFU
       }
%QI#  ?D $     |!BBI? U"ET	          #DR
~UZAO     >AAR U~U
         $%TJ_     ( L("  " H       A /RVUZ0AE     >"@G
 U%TH       <IA'	? UJU(
@       @đ"D@'  RK      ! DOR$ 
%UJA       ! DOR$ "T*H        CO JU*PO      H!#Db$D~RTJQ*H       A@OI(}$PEA       #R
%UJI!       #/Ē	$T~fQ
0TEG        #/R$bU0AG       @A+(Z}	IRҥEJ0E      ~ EWR*UU^T("      ~ EWR*UU֪QH$"     }(|  @? $Ĕ @       䄏$$%RJQ"      P!CO$,~ER0RED     ~!BA') U~%TH       % K)~RURQEE     Ao ?D $     ~
E)R.UUVT("B!       ! C/RvUZAE       S/TJ_       !C$~(RQJIE!       A$$(~PER0RE#     ~IA'	? UJW@        !@C(||EQEA       ! CȒ ~DQJE      !C$~rRPRE     ~JD)$IUNT("       @!D$D%TJQ>D      %BK	/T[|	%RJI0E@      J%(KRIP       *O?(TPUJJKC	!     ~QAGR*UUިQH""      ~	G	 ]UVT("B       !#$I~"R0b     ~	@' TQH!a      H!ʒ$)~TMRREK        !#$Oߒ!$B~FTʩQ1A     >EA  ? UTH        ! DOR$~"eR0bE     >EA	 UFU
 @       !#В!$B~%RJQE"      ! $$Q~<UJEA      WĪ	$PJeDB      !#Ғ?$ WP@
       ! C$"TD      A!$?~"PH      ~	CI ?TR)"       P"?$H~ET_ @     ~%JE) ]UVT("BA       !BGJ__hPBOQ       "E!tOȒ$"~R*PHB     ~	GI?? U&T)"B#      @#/R(~FUZ@E      ! Cʒ$*~"R0B       !#ϒ $ ~"ER0RE     ~|RCI
?T"R)"        A'~RWJA
      $I!$O	$JWH!      !BGJ_Dh~PPBTQC       (Q t
$w~(RWzE
     ~@2?U&P!B       Q!$~&PEA     ~	D'?UVW "      ~QGR?TJSH!`     ~ H|a'B	E& ?D $      !BQ%}TU_UVQP      @!TR%~J
T0H       @AG/@(}UZJE(C      A# TJ}
UTUREJ     }*Gʪ(YRHR      A!$Ȓ$ ~"ESB?       "ܪOP"T0       !#?~BWPH"       B#%/x}*TU^EJ     ~	GI?? TBU*      A#R?~eRPRET     }ܢ' @>)WRHPH      (%"$Q~<UJEA      !#TOВ@|~ BQ
I!     |*D? Q¥HRBB      }IJ$>U
T       ~|CI
?AUVU("B!      BI@O(}$P      A#/$I~BRڥR$      P-"KoR$~R*B
c      D	 ?&0 
      
hPUNEJQDC     C$)KYJ!  B$bK       "+TR) ~&MW0RE?A       !#O?Q~QPHD     $Q'B!&IA'I R       O$|~JPEA      OE A(}T     ~!D$?UVUX("      ~|B'?A!USH!      ~BE)(_UZVX(       @#RJHUZHE%     }I"
ɾITB"        !G/@(}"UUVpE3      OE(}AW_Є       @#ABB
HK      !#ʒ.~PEA       !#D*U~-WjIE#     }ޠJW*T>~	S(HB!      }I'"> _RBB       !D$"~|PB     !  D"      @! _"DHK      A!OR;~(RPI0     ~QEW ?>UER)"        G%ϱU(}TPUPER     D/TO}w
UVWx       ~%D
?UTP/     A?TQ
A  B$bK      Q C/ҒT$~VUڪWE C       y@/y(} 
QVeR?       D!ʒ$~TPB      %RO T\*      !_?QUFQUB      !B
?!(P~_D      !J
$Ђj      
/A(0T*!     	'=LP
UGJ     ~QEW
?U&T)"      ~UGw	$UE_!       DI /.I~R*H"     ~QEW ?"}TP/       .8 KQ.A      ւ' }(
ڢ5_jB       AACEOT ( }
URHU        TSQڱ       /R*~ SPO      $!@("B=c HK     }DPPB       PCS(| 	PJ       C >~ [_      AB)(POQ?"     ]GUO|RFȄ     "ȊA(VVP:T)     @ Oϐ?<BBHK      A$_~(Q~WʠU     $QG?*}
AW_E       t$~DWYEY!      2Oz(?IP$%Oꈑ"     B(kP }NB'I     "G<%ҥ~}Z BB     #G1DP_n;      '%?{(PHBi
$     Қ5JhQPM_1[g     HK??HH!#K       @  @        | $"HD(P4C(       @!B iG(QA     䐒RII%$_I$yIE$E      !@ I&Y?$
ht)R J?      $J$%D(:S, P?       |HI!$j(PS@      	!BA	@>	qG"B 
"	      C?H"_?9 D     ""DD"D9"$@H        !@ OI$I>@r#F 
B	     %TRUIU%WAetPQA        ""HDaB>(
Pt'(DP
J       J0_I$yID       BJ0D      A@ _	>@p!B 
       !  BO)@ >D	@s$H J     ( L( @A       ?E(~ @?       	""B	ɂ8C?B       !@!DDI  
t($P@       "^	5? rG$Q J     HE ?@ (      $RII%'AITu>XA@      	x'A	>Dr'$DH
B	      ($RHı	RT @!B 
       #HD	>Pw(DP
~      !  BO	>|Dq,DA 
      !"@	>$Hq'"DD
"     ?  @@ O
 	 >^B      @%*J^
t)HR%JD      !@'I$$> 	 t/@@
      !@!BB  DHt%DH
       A@'@
 @w!B 
     	!@$ 8!@Aa      A""H$ R">B	v'2B 
b      /DD">D	r'?@ 
!      !@'B 
Pt/DR

     I$OI$8㒢) b%       Q"G	R?>H	rG$I  @      A@/PI > @r%$R J(       !@'A$>$
Hu-dR@
      A"O	">BpG#X@
	      A@'H)?@>Tz7JJ(C     C$)KYJ!?        !bRA?} @w!E 
A	     I""B	ɂ:K/B%      ~ H|a'B	E&  @  O       @! _"D A         CReIU& yE$A      D ?&B0       ! 'H)?@>"Tu)V`J3     'JI?  ?%@RETD      I'I$" 8!REDD       !'I$1U>Tp U@JR     O/A
0T !     O<M<2<S@)       0"JLt	?I>$r'/H"     @/Qk> r.kJ'I      !@J;"=&_A1
a       ~@	 ?@@      @_ >$DH#THUA      | BR4"X|!J$Q*Ҁ       @D >DDHUA     |AЂD| A!B
      |AЂD| A!B
      ?B(I(Q._!~ A!IA      @A@ >HD!CI(UC      |"Op@"B|B!E
       AE $DH#DD"$      @%P_ޠ>JD	SDH(U       !CI?Ҡ>~DIDIQ%A      QEJ`>TDQDJU:       A_ >TE$IB$      =äI >D!CDHU5E       A_ >D	$HH?$B       !CBĠ>|DEDA$       !C@ȠDDDA$A      9H>@DI$JHI%        AH࠾ G@H
$      @EU >DE#DH>$D      =Q?Ҡ>EDC1%     }AЂPd"}$%D
À      D >$E#DD"$       I?ाQD#@$     |QҢU>"}A%DRj       @A%D >D H>$D      IJ_Ԡ>D T_U@      JਾEEJP%       I_ >D #DM$      %O`ID%DH	$       !OР> ETWUB       !D_ QDBH$D       AD>D!CI?@      #Bߠ>D@a        !Dߠ> D	$JH$      @AA >~D!C@A%       !ET EHkDT$$     |EҪ?B
""}A"!LJ8        R_>E$H%       A_ >DDyE%$     |UҪ_H}|U!OR       H#_ D#D"$      L>DyJHP%      PSU_>D H        !O >~EHH$B       +Dߠ>~DE$       }R? ȾETSP*           $I      ?@C g  0        #@ $I%RZQ`À       !'Ȕ( PRUJU`C        (  
eJWWDCB      H"pGH_!BQ*WHC      | *U"QʥWR`C     ?@! DA	 $ H `     >@0 #`  ?A H     >@0 #` " DL     >@0 #``G@"$D      >@0 #`  (0      >@0 #` T$F`     ?@` $A  !@     >@0 #`  _     >@0 #` ( F ?     >@0 #`        ?@` $A   # 
      >@0 #`  Dp     >@0 #` @A4     >@0 #`  !@     >@0 #` "!tx>     >@0 #`#  Dp     ?@` $A ?BO
     >@0 #`  H"|      ?@` $A @!~@     >@0 #` "DpO     >@0 #`  ""p     ?@` $A "$     >@0 #` 	*     ?@` $A  ?@?A       >@0 #`"C     >@0 #`"     >@0 #`Ak      ?@` $A   ~      ?@` $A        ?@3g 0c8@      >@0 #`" DAIDTG @     ?@` $A	 !      >@0 #` A") .     ?@3g?0@B0     >@0 #`  BG
$     ?@` $A        ?@` $A  "	B!     ?@` $A    ̈%     ?@` $A  >|D#HB     >@0 #`  B'#$+%~     ?@3g _A!@      ?@3g"H?@ALa     ?@` $A #Hࠂ ><     ?@3g   ?A3     ?@3g  |!B$     ?@3g @P!?@     >@0 #` HO!F     ?@` $AH%#B%"     >@0 #` @GIA     ?@3g ! @q B     ?@3g@?	#$&bC     ?@3g     D@     ?@3g @ @?@#?@      ?@3g 
 G?     ?@3g?  `     ?@3g%H Ŏ0       ?@3g$Ja      ?@3g   !"'|     ?@3g(I$       ?@3g   aG _ `D     ?@3g @$#HJBR)II     ?@3g  ""||>$DH$f     ?@3gȈ""||	?A$I      ?@3g H	$$ F     ?@` $A ?Hc     ?@` $A@`UXDH     ?@3g  !( D@     ?@3g  @G      ?@3gBB?H!"C)II     ?@3g  ?D>"3    !b  `  ` X     !baA$oX    !b o$dђX     !b b!"oAX     !bdAaA&      FA o	$&JL!1n     FA g=S%&xL2tK     FA Q~[Eb#     FA Q~[Eb#     FA o		̤2m$    $*J)@G@?     "|#꒤Q  ?JIH!C     "	x#֤  ?JIH!C         ?H$$H"       ? ?D "R!      $A$IU&JO)2RdC     >|!Vl`?    Ȉ      PB?    Ȉ       )$O Q=TII!E$CA      !+TJ@) U&JO)2RdA     }#@H   Ȉ       ADO>UI2Id     q*r>9¨C     Ȉ        B?
 $JA P@      	"HOB$" hdB	       !H_$D PhAeBI       9JR$H i!dB        !IDORJ$( PheB	       IDJ$!h!dB         	 @?!@!% H     (@IB*"|T!Qi$	 a     @?J/褾""Y~) $A      !BK8 jId	      @%BI%*D|!j	 a     ?A 
c@(_!_c"?      HQ$D if"I	       CB_ϪU*}"h a     @)JAU*|!Yi	 a     ( IK_H i!fB      $ II$OI$$ Hid       CeUOQ*}"h$ a     #C_?fjջfDEXUJ S       G#J %$
H     @_ϊ*} aj)
a     @@ARO*}"Qk a      CBUO *|| #i$	 a     BI%_ϕ*T|#o	a      AcD(_!_"?     B1zU%*|!h	 a      @}R/x}(#TiD a     !C	_߀>R@P&*     ?Q) BJ)O!?H     B*B|K?H@JL ?        AB?" "$Da       @!/T~"EH5Pj        @A!)~PICQ*      @P%RI%$_ Tb      @!)~(QH@UH        @ )~!HCB*      @yA	*}AP5Dj      @0T~%H _        @ (O)~~J 5Pj       C""~$AH D*        P@BD	/*H|RC	5Rj@       A"H)"~DI@	S* !      @!B OTH~)H@ B* `       @!B')$~HI#PQj       @A/)T~QK5Dj      @@#T%~J%LK5Hj       @!B!HȔ$~HI#@Q*       @!B T~(QH@Ij      @9H	Q*}DQTE*A       A Ԕ)(~PIC5Rj      A!B$/Ҕ)L~!JC5Zj      ?BDED      @@A/)D~IC J*        C!ǔ)"~D	K@ A*       @!B#/T?~BI P*        GA	I*}$ITD*        @!B/)>~DI UH       @Q!HOȔ~$IH UH       @!B'/TU~J5PjB      H@B	*(|PQC5Rj      A!BD	 *@|R#@Q*       @9!ǔ)~ }O 5Dj       @ (Oޔ)J~)K U@        RI%RUI}%WR_ "        @AO*| AQ@Uꠀ      D@"(Ȕ)"~DI UH "       CB )R"EH @*       @ABB}	P#@D*        @!B'/Д)"~HI5Hj      P@"B	*>|IR@E* A       A
$/TI~UJ05PjA       C!OԔ)AH D*       P@BOO*}PQKR       @" /Ĕ)T~eL 5Tjǀ     "
!.@H       @AO+|pQR UDj       @?/T~JU)_        QE)TK(_ !      @!'/TA~J5PjA      @!B TI~JK	5RjA      @"')!~HC U_ꐀ      @!BO/D*}DT@E*A      @!B )~J5PjA       @AI	Ϥ*| P D*       @A"ДA~ J UP B      @@$(Oޔ)J~	JS@5Pj      D@D)ﰕ*R|)R UP D      @@#)~ AHD*        A$ߔ)B~	K P*      @!B )~|I UH "       @ )>~DM UH "      @@D)*(|Q X*       P@JD	~+H|!RCQjA       A!Ԉ~&J5Dj"      @!B') ~ I UH "       @AA | AR 5Dj        @9H	@*}|U UO      Ag@D@	"!"       AB ԪU~UJP
TjB      @@A_ /+|T#J*      @@H) @*}DUS@5Hj       P@BJO*,|ԪQC	5Rjā       BAO+|pQR UDj        @zH/Ut}%UkB*       HIV$`AC@H      @@$H)DJ#@Q* D       A
$T]~UJ5PjB       @AA	τ*}EPQ*      A	bG	/U |	RUP B      @'脏)$I#@Q*        @AB	!*~	RUP D      @@AO A+|QCJ*       @!!HOT) ~AI U@       @!  ~!IB*      @"@	*~| AW D*        @ABB | R#@Q* D       @$/TU~UJ5_ꠀ      @@O |	Zc 5Pj      P@JD	դ*H|QR@
T a      @@BI*@}R U@       H@"DI*N|UR@Q* D      @" Д)B~I#@Qj       A!(Ĕ)~~@K UH "      @BOO*} PT       AHI!I*}$QC	Rjā      A%J"ԠA~J5PjB     @@ @D@	"!"      @!"()Q~<I@E* A       AC O *}Q B*       @!!HOT)~!Ic	5bj       @=A/ *}R@E*       GIIJ*}(TP}j      CB)*"}EP@UDj         CA	ϤI*}$IW 
H*       C!HTU~ƥJ5PjA       CA	ψ*| S UP B      (@IA	H*Y|R "5D*        @DIK|QZP*      @% ԤI~%JK	5RjC       @!H O * }QC	5RjÁ      #J!>T+ZHI" U       CI)ϤI*| AW D*    @$"Qs@ ("$P      B"@IϕU*$|HV+ UQ* 0      @B#)~ I UH "       @!A	|QR@
Ujʁ      @)J@ϢD*}TUS@Sj!      @e
BYU~%|ʩUk$5Hj"      @! ~IsR*      @ibC)/(|ZK	R        A#HԤI~%JK	5RjC       @DI>*E|Pc@Q*        A%J)(OT ~%JK	5RjA      ADI"*D|R# J*        @AA	τ |	S P D     @@FD@	"!"      CA	?I+!|@R#@F*        @!@	ϐ?* |PCB*       AOI+|!PD*         AJ$TA~UJ5Pj       @! O~ I C*        A
$/ԤI~UJ5PjA       AC O *}"AS 
UV       @! Ԥ~HCURj       @!B'ʔ)*~!H	5B*       P@B^*|PQC=J* (       @A:$/ԠA~QH@Ij       A$(Д)~~@LP	5djB       AD)ϐ!*~| !RK	RjG       @AA	*B}"AS D*      AIi*P}S UP B      |@#OȔ) ~J5PjA      @@A )D~H@UDj        @!"(/)~UKP
UjC       @AA	*B}"R#@D*        GrJOU*}ԪU#@<J 1    K@C ("$P       A" )(~ JP
Uj       @!$ϔ) ~!HC5Rj       ARHkEUVP*5\j"B      @!"(/)~AHC 
5Tj      @!z T)x~J
UjҁC      @"_OU@*}$ITD       @@A!^*UHU"GԀ*Yk)	       CAO*}TW UN      @@O"*~BPCUC*        AJ )*~|IB*        @#Oϔ)~!I{V*      @@$()O~J@R Q       COO*}APD*       @IAI* |	ZUP B      Aό}jUQ/PJ5j"B      (A%$)Q~<I@E* A       A%XTU~K+pQ*       @@"E
UU|}S#@	S* a       @!H/@*}UZ
UjC      GI)* }S B*       @A$T~Ic	URj       CIYUJ}*UW5Tjʁ       AE)ϔ)*~| RCU* A      @$ *%UZ`*aj       @R"ʔ)>~JKPjB       @AA	ψD}R#@Q* |       A"AU%*~0AW
d      @R'Oʔ) ~~!KJ      @A"(Ȕ) ~!HCB*       @AA	Ϥk*}$P
d       CK/P}T dЀ      D@I'U~J5PjA      @"DI
z*T|Z@	UR Q      @!\O*!SX*       A#OȔ) ~%JK	5RjA       CRJπ* }S  U@        AGO *|TP	5dj D      @@$Д)B~I B*        CI)ϤI*| !QS5ij       @, A*UUڪ@.Cj!       CJ)O@*}ܪ)TSa*        @AB	 |SPjB      A=J_	/$}RUK5Dj"      @@AH O*D}IPD*      A	D)
O |V UP B       @!H O *~|RU@*       A"DI"*|| USUj      @O+|TQCUJj (       @! Ȕ) ~JPPjB       @$(Oߔ)~HP
@j        @! OQ~HUH D       CDI6+| T Dj       A*&XT ~%JK	5RjA       ABG	$*H|RP
Pj       @"K_}DU U@      ! D$B+Uj+WVp(q*        A%XԄ)*~R%HC5Rj       @"_OB*~R9R@Jj!     $Q'B!&}I4OI? L       琒~	@ }QU_3V@2      @=@/?|PC	5Rj      @! Ԉ)!~KP
Uj      @@AHI*(|	[@Q* D       @yO/y*} !W B*c       @IAI*a}>S P B       AEI>* | USUj       wREQw|EUUL3V@2     "B"A:U/}TPa*       @!Hϊ+}|!WR*      @!!
'@D@	"!"     !HBϤBjUW֢/P	5j*b     *B>1ʤOQ>BTQ       ~A B?FD@	"!"      AIY*!*~ W 
d      !B=Č ҪDU~'`"Ij       G$_HU UVP.@*       C*OYQ*}PCB*      @A'OT~(JUI* 0      |@"(U~K B*        C
JU|	RUP B      P@BϪ*}S@Q* D       GBOO* }_ 
d       CBG *~|RU_ B    !"Bw "" !"       B}"DU*}J5T@R*      HBzKYO*2ĪU Uh$      @@τ ||ITUH       GOOI*|"P#Q*       CBKOE*}USUO&      A!H)"~|IB*        @!HϢ}|!VKJ       C_"/*| P U@     AQ$SX%' "" !"      @QBO/T*|US
WjC       @yO/y*} QV`E*      ABO2O* |RcURj       C"TYOUw**|bT{UI* Q      C_8| TUn        A'Ԁ)>~DI_        C_?UUTF:Uj      H@BI*~|R I*       @BϪg*}	W@Q*        CRJπ*}IW ?D*       D@Q@I|TP5PjA      CCII+|IR
UT B       G*_~!QV $Qk$      A%R@$|TH        C
O / *|PUH        @AA	w*D|ȫyPJ*       @! )"~|QK H "      D@I'/ԮI~I H "     "DӬRjVU_/PJ՝**        CDI?*}	W Q*       CRJπ }	W	Uq* a     
bp!( @D@	"!"       @"K /I*}$P_* |      @,(u*UUUV`Uk      A"G U*}ܨA_
d      CO/UR| RU_       @%/BU\T. *5Qk        Bq_}USIj       CRJϊw*}TUSj*      PCROO *| TJ*     !$AQTY|*|W `        C_"/*| T d      !B	H)τU*W P B      CBU*}JqQUi*        C_"/*| PUj       @@AB?TPU?A      BYI)ϦU*}T_ H      DCRBI?H|!S H        GJR?*AS /P B       COU*}TTC5WjB     !$DĔ?RUJT@6Ij     !$Bd?*PBÀ
$      DC T~JC
Uj     !B!|BE_jT*@*_j      GO"*~S@R b       Gr*UjPBP*u       @}O/H}TUS_ꪂ      G"@	Ϫw*D}!SR*@      @%XT)~J
W      "<<ʊUU       ?(B?B!   ?       EDU|EQD_! t        {B@*|>U  !\       @@""H*(|PRC	#xC        @A/I*}$P #x       ?B           xAD*>>DT AМJ       @)(OI*}T #x?        @ HJ*}(QW@ 8
       P@""*>|IR@8 A       @!)*T| P 8        xAA*>U AМ?B       xyAꠕA>U	 @        RUI}%WR_I$tA     @ yJ*> T@      D@$(ﰕ*R|)R C% D     @A$J>O :!      @@$(Oޕ%*J|	RS@#x      ""  @P ?   ?      @!B//D*}DT@8"A       @xDЪA> U AМ?B       @A! | AW 8        @A?* | T C       @@"H*@}R C
        @A"!*~	RC% D       C!U*}TUSCA        QAuPU]}UUUU_]tPB     @QQ*UjUUV#$x      @9(@*}|U Cϸ"        @AB$HOU>* | P       @@A$H*D}R#@8B!      @@A/A+|QC8"!      xA*>>T A     @@ @D@       Ag@D@         C (π*|W@8        C!ϤI*}$IW 
8,!     @ @=Jj)[UOҐ%#Jxk     @!DK+T	R@Q9       @BJ*OU*1|!S8        C)(ϤI*| AW 8      @	R!'HUUT <CH       @@$H6+| P@Cĸ(        C"(*"}EP@Cx(        @$ p
 @D@         @!(O * }QC	#xC       !x"_Ī~>@T AȜ"     @ LR%?zj)SWoԠ%V8        4!RUI}TR_$tPC       @A!τ |	S Ð% D       @A!*B}"R#@8       A$H"*D|R# 8A!       Gr*OU*}ԪU#@< 1      P@B>*|PQC=8 (       C((ϠA*| %WSxd      A	'O?* }T#x       QI%RUI}uUUU_]tA       @r((OA*}QC	xD     @ ADDA_Dj~TQPB(Qy         QIu_A}uUUU_]x!Q      @@A "*D|P@Cx(        @@/"*~BPCC8!       C!O*}TW Ce      A%2HOU$ }ET#x       C$H *}IT C8"!     @H$_)*^TPBÀ
$      !xDOȪ >U$I	!\?A       BI!U *|| W 8 B      !z"OЪ~> W X       A"$H"*|| USC        C)(ϤI*| TC8a        C)(ϤI*| !QS#x         CR*π* }S  C
      @$HA%jT	WWȠC$I       @@$Е?*B|Q 8        @((Ϡ* AP8       @A((Ϡ*|2iR@CĹ(       A!z5O%*R}	R	C% D       @!(/@*}UZ
x*C       C$H6+| T Äx      @!!'@D@        @@">*~~W à        Q?@ }QU_3TqP"       QUUB*|TB* t      @= /?|PC	#x?       @!$(@|QC%       @/+|TQCCx (     AHJAjUW֢/P	#x*b       GB/O* }_ 
        C?/*| P C      I T}"JEڍbJ'@D@       @ $O?* UW	8f#       ~AB?@D@        CB+OE*}USCϸ"&     @Q!>@UW UC d       C
*U|	RC? B     @ X*_~!QV $Qy$     @A*ԒWC       @ I_
$ԂS	 "      @"Ϫg*}	W@8       G$*}AW ?Ñ8!     @%P/BU\T. *#Qy        PCR/O *| T8       C//UR| RC       !B4/|S Ð? B     @@C ? $@      @H  !5T`G          I$IAH     @!B"_Ġ	%H5T`RB      @A / )R `U`    !(R
_Ҁ ! V 0     ?B ?A	$ O? IT            Dp?      @H" )R @Uf      @  _"  jU@     "E	(_ZT      @" )R  *U`      @ G! " G*UD      @ ("_Ġ!B  *UP     ?@B/P@BUU     ?H)?H	?TP@@      A'H$ |I'@UQ        "#D?@  "     @! G!  `      _BP PQK     @! H$_Ԡ @UD     @! G! ~" G@jU`       P$$/P?>@$I  Je@      @A G/ $)" G@U`      @ H" )R @UR      A G'ʠ*UW*UD      @! " G*U@      A G" 2B  *UH      @! " @*U`      @A " B  *UR     @!B" 
@U QA        D*?T@U *U@      @'H& ~I'@UR     @! G%_ )R `U`     @@G$_Ƞ"*UD     H$ $I'@UB       A 'H$ 2 @UJ      @! .QGU@        "?@$I  Jb@     ?"A   K       A |8?@@ $      AH, HR' *@     P@J$|!H~!@Q`A     $   QK      I a,?@  "     @! ($?  
 '*UD        S$"OĐU@a *`@     @9" 	 G *UG     @"((_ a5T`G      C_BD)@D	VU\a      @! G  DIGUP     @! H/) @UR      @A % " G@jU`      @ 'H% J~)U@      }mD'4?@  "     D^	y ?@  "       @$/P%@JP*UE@      @'H$ ~!@UT     @) H"G@d      @($_Ϡ"} *U@      @'H$ $y'@U@     H !%Ҕ/PDBRD       C/?@| JQ@      @A
'5 āT D      @!B'(  ~(QJUHA      ?DG(8?@@ $        C(/А?<@H#PU`     
*
%TR@H     @!G' " G@jU`        C(/P?@$I *U@      @H* |R@U@     ""   3?@  "     ?H/?	?WY@@       D$OP? @AJJ@      !C"ЪU@UPUb      8!ߐ?@| JQ@     (@QH" ")R GUR     !(OА? @#U~      )O?@$I#@*UQ      @)1 ~D*UJ     ( PD*͐?@lU @R@       C!? @  JQ@     !HTD!   RK     @G) 1rW*UD     D@I !  G*UP       '?(@~% KQ@      ! (OȐ?@$8ʩP@     @!	'H% ƀ*UTO     $G   QK     @! H/Ƞ(}" G*UD      @AGH(_  '@Ub     O@O   RK      @!   A	 U`     $ H"D*U@"EH     @AH& |IUR      A H$_ߠ GUP      @A H$ E
@U^      $ r$x	H!BT
       @D$?@(Q@UB      A'H' <I7UB      "E?@@ $       !ʐ?*@# C@a@      @	'_ ?~ !H*UG     @!!GH_ ~!`5b`         ϐ? @Q @US@      <)/ʐ?@I@
Q@      (C!ϐ?*@|SJU@        !ʐ?*@! C*U@      A'H/ D'@Ub      @! @y'@UR       !Р@x C
T@     @!"' Q~<JE A       $/?Q@<@*UQ     (
?WX@@     BH@a"%' (~PB@      @I/H?  ~@*UO      @'H' <I *Ub      C!?I@ q @R@      !S*ʐ? @! CUP     D H!O?H@ *D@     lC*"G%~l UhpF     @x!'	*?@@D     ( G>$#W  RK      C) @  JQ@     A* G
 ~QRxР     @AH' $I g@UJ       !ϐ?*@T CjUD       @$$Њ@>U UJ     IB	 0   RK      A 'Ȁ ~%PʥUR`     D@Q " R @UR       $$/?@! CJ_@      !R%Kδ+TAZRU        D%OP?*@|jUD       {'Ȑ?"@| C*UD      AU%W_*U~URbP       $$/א?@!S*|       $O?3@B*P     @A%_Ϡ*}BG*UD      A%J%( ]~U%QP       !Ѐ?"@!*x     ( P" @|J_@      $/А?/@RK*Ud     @ "/P@EP*UB       @$(Д)@~! PUR      !D"РA@ @P@     C
$_*Uj]BQ       "Ȑ@tSJE@    KPG !  2K        D"Дm@VS`Y@     P@'? H~@_@        "Ȑ @|! CUP      @E"'ʨ_  E"bP      !$/А?~@ @Us@      A
'(  
~䀉UH     $@I	'H' ITH!         ϐ?"@|!S*T@      !.P@(Q @b@      @A:$( A~QJI`       ' @| ʨU@      @WH*ʠ RU~     @! G!ʠ*" *UD       'ʐ?*@|! *UD       '
@|! JL@        'Ȑ? @|	 #*UT     AB%H?J~y@BEH       '??@HsJW@      A
'Ȉ_*U~RgP       $OȐ?@~U P*UR         ϐ? @! C*UT@     !$O?>@!P     !+D#?.@j#@Uf    UJʤQDQ_ !  R1K     "D#"{TUPEATI      P@% TR@U~      @'(T ~%b      @!$  y'U^     p !K
$"
?@@D      @HO !x
U*     @!9J:$
VIQ(I        $OA@SJD@      !܂T.? @AUJ    BRBT*ߐ@_V_a     D!'?@eS*UT      !$OȐ? @%K*U     @""G)~^x%SĆ        "Ȑ
@ CP      B*__IʲUh@       $Oϐ??@UE@     !%O?@A JE@     A$'Ȑ  ~URUP      !K/?*@|UD      A%J'(Q~E%gЈ     ߑB}(  RK     "DA" *~T@BEH       x Ј?)@Y+Uj       @/"Lc ?@@D       $/А?@%P       /P]@ CJUD@     @IJ$O_!~~%gЈ       #GЀ!*?@@D        'Ȑ? @PUb      UI4(Ѐ?@@ $       $'A@Q@      D
 ?ࠦ0 
     ( K$ߐ? @E0Uj     ! $O+U|+WUzq"     A!'R ?~HJO      @A%WϨ_% ~EҤ%R     AB%H% ^~y*UW        !ϐ?>@ CJ_@      !܀.?w@"U0Uj      !+T*P @%K*U     !$ST$OP?"@D ʨQ@       %OР>@DJU@     "(@!G_~QRE     ( HD'$@~ C*UD     !EO!>~DB "UD      Ē< E $bK     !" H"$)P@"}F     "(@   ~UR     !$O?(@ CJY@      A	$'Ȃ~ JI@     !$O?|@IQ@      !D/P@!JUD@    # */
/WTH`     A#@>~DDD QU      ?Đ!_L UʪcRC     A"%ʨ. U~ARjp      !$Oϐ?@UK*Ud     "D#".A@%j       AB'$ H~ZP`     @A('Ƞ"}"d      @$'Ȑ?@QSʢD@       'Ȑ?"@| Q@      A	$'Ȁ?@~REVPȆ     DAR! ~ |@       'ʐ?*@|%@J@     A%'H) R~R`      @! _"D@@D      ,o	?H  ?@@D     y!% _y)% $bK      !+Ԑ?^@P     !@ $
$ ?@@D      @#ABB

?@@D      !܀T&oP?@D% @*F@     }"+">_@|b     A%$?I~AEC      !K)/Е?*@S
D@       +ʐ@P      C>= Eb$bK      @AH)Ϡ*}W*Uj      @!%Sʤ*U>C e@     ?Q A"%QJ%"_A?AEV      !*Ѐ?>@D
D@      !܂T.?*@|UD      '
~ JY $bK     ( HD$В?$@~#
Uj     !C Р>@ JC     D $ Е?*@S
D@     I T}"JEڍbJ  ?@@D     >ECQ  HK       $ UPCDUjF     ( PD"Є?>@TS
Q@     !K/?A@|SJ_@     @A"'˨?  ~RPP     AB%WH__`"~|UR@     A  ?@@D      !(/Р@%S
D@     (H%TG ?@@D     !TT.PU@UPU`      !܂t*ФI@%*Ub      A
'_% ~yUW      !T/?"@| ʠJ@     "(C'ʨ.A~JI@     ~(@!"H ~RPP      A'߉$~! OA?AV      @}!
?< ?@@D     !$=L@
 PGJ      !܂t*Р]@uUb     
bp!('?B?@@D     !D/?"@|5i@     >EGB ?@@D      AU'H}~UAP       9RSIڱ     xA(G( )~JUT@F     !<*#DUqb%      A)!
cB ?@@D      AU "~(@B@     @!$ψ_/R~TІ     !(/P@ J@@     @/H?~!ʥUR@     "%Ґ)?@@D     !$]$TO#y>BH%J@     BER*WÈ?UJ@     DCR"G?H~!
H      	!$E/oUPݿCvTڱb     >#>#"$bK     $@(Ȁ~QUpZu@      @R&gH @_     QO@$ %%+"?@@D     8GCQ?"	@@D      !$$O UBUF     !H/>@D5UG
!I0       $Ē//U>ATJ     #E&A@_     @|Q  ?@@D       %O? @. UK      P Ъ@ PUj      AU%W_;"~A*G@     D!.P@~@_     wA'wʨ H O     w A'wʨ?T~URUP͆     !D?wU ?@@D      @BB  @       @/D%D$I	0_ `          J@%D!	 _ @          @ $@   
      @?I)$O d         "*DPD A	  P@     CBJ)D`       $"JD%?)P	 _E     @Q"H
&"@D	  G     @ C$JH%D! D     @!$A

&@(P	(g`       C/B%D|
 _Q       @A"E
$&~@	P J       {!
O%"DD
  `       !K)*_ФIDH D       $*OЀ% ?@E      ?D@Pq ?H         $$*R0%D	@ B      =""#a1bB       @(*@P%DJ
P?@E      }
%QI# $@   
      ""  0@"@ @        @!B'H($$@P	  HE       H ?  ?H       B$QT$"X @     #" ja      D _%D>E	?H      $ H,Ei*U|	'@H      @)B
1&@D	'@J       #*EPD"e	P?@RB       $$*P% D 
 _Q       "E $@   
        A(FH&$@
8ǩ P       AB EJ&]@ @ P       !
_РDx@ T      	  {2e(S֡k~ROe"     !O"|蠦 `a     A!(A
 @ 
'@_     lC*"F_%@l	 PhbB     ( H!
E%AD|
 _Q     !y /J褦[ da     D H!JB%HD	?D     A* F_
&@P
Wx      $H@"FD &~@'@_     "D## _ȤI }
H _      ##)%b(I }$@C     #O"H& #bb     @AJ$OQ(@HGA      AU%VNQ*U@T
WbB       $JP%3DB
?P      C'HJ &~@ x J     AB%IJ?J@x
@G@H     C
$NQ*UAj\GQ     AJ/A*&I@tX bB      O K$I(ST}R
OB      A	$&Oʈ?@T
נ B      AU'v@
 &@ B       %J_Ҡ>FD_U$    CS$,RTG(A& @     !" H$%PS|
'}B      A%J'H
(Q@D
 g       @/"Mc ?H        !$JO%DUH?@dC     !$JD%(D@
_Y      ( K$_% DE0@j"      !+T*ZP D%H?@A     !$ST$JPP%"DD
 ߨQ&     "(@ B  @T
W     "(@!FOQ@P	WE     A!&GR&?@H	GO    􄯧JJ	E      AU%VJ*AH	GL     A%&JJ)&R@ 
W`      @E#6J0dF     AB%VDJQ_f"@|	@RB     ( HD$OВ%$D~ @j      (H%TG ?H       ~(@!"IJ&@
WPB     is	?< D? /      !T/@ D|	P_@LE     !(*WPD _@      A'߉$~! OA!       DCR"FO?H@ $_     $@(Oʀ@QT	pWu     "	 K>J
@ _     AJ"A
 &'AI       @ $Q))IRS       @x$c!&0I!         @y@䤄
&4I%        Py$c&0"  A      x $Eڪ5i.`     D HxϤc!B2)       x ߤcUF65_` (       x!?ϤcwV2)$_`     !)'D 	      @!JAISa!       "?PzĆ	       D /xP R        ?Ã 88 "@!Eǟ       D /xP ?B       D"/HPa 	I"I     @@fA*("@!Eǟ      "G$ _!~B       "G  O!?@_      "G$"O<!	TG'      "G$"O<O     ||  @G ?DB"cπ     A*! "@!Eǟ      "G$"O<!
*F#      "G $ON      "G @ BȒ$G      "G  __	ҊI      "G ! I      "G @_AA      "G! \!{     DW'JQ?T|y@@A      Aオ$("@!Eǟ      "G-(dHC      "G ($WID      "G   _!	@     ?~  #&Ej "@!Eǟ      "G AAhC      "G /P@ABRH"      "G )^{IDg      "G !$^xyh/AA      "G !OQ?	TC&      "G$"_<!{BM      "G!_! @      P
UTzU눕@      "G"("_      "G ^Q*D      "G  @_	 	Ҫw     }@@*'UfUZVy       "GTHU+&KnԩM      $IUqP  ( ` 8         @  AD pp      CS"* xD!E      #APKbH*(xE@0`       C_DUD@B"
Aa      #JW)RTE *B 
`      AP(*Px	@! E0      #BI7R$~TEH%J%
QaA     @ %PW^%JTER$J"J      #AS"* xEDA      PAOUQNUUVQUTERA       C"%_BD$HTF B/
`      'A_$ITE$J'"J$C      T"˰!~*{E
E$     #AW** xI!0     !b7UDUDD%Z"J      AQb*]*TzUJE?A       #EI7UD TE%ZJ"B     #jĪTG/B?"a       C?=A!EBAA     !"=E!EQ%P      #*=T%JE*@       !B&NpR)(B        !Z*RB A?a#        !Z*RB $A!        
I x_ |P ?      Ac 'H  G       
I?RI"2@      Ac AAhC      Ac$"_D         @"      @" D@?D@ 0     "D!AB"?I!%  AD      "D!A/B$I(Q$@IHb     "D!A!?I|% DH_      " D!!?I|!$CB     !"@ "       ( ϊ(# T!PϕT!      !WE)$SO∉      
bp!(AD@      ~ "b"	 b3,.!@      @p"S!ERB@`b3$* "	B       @@$U"	T%PR`     A9%UYJT"GTNUUvLHB     ?B*C  @        ?BC   $B$HH       (I$Y> @>*R      !BHQ?	 !x' @!B*@      "HFR( Px@$Ij"     $#XEԉ)?<SJ`A      !BHU?T!P{"5Dj       !RH+  yG(Q*AA      )$K
?D HH@      EI+H"D y $UH@"     !"@)(J ?"      "JN2R!$zO)5Rj?      I%5M_D%DQxuV`      "HFB?!z(5Pj?A      !BI+F?$ |y !B*@`      !BHD?  !z (UP?@B     ?CP&02)ȿ@I      "H+E?Q< y@!E*@A      AIH* z/@
@      !BOdT!z@/Uj      !"KO"|  yW)5B*@      !"KIU!T}@$Ij"     @p"S!ER)(J ?"     A B%H!      "K*0! yG"H       !RI" xG,UC*@     $SX*D*<#?        H&Q?E!z`.Qj%      !bI&+@?B!y'@?I*"@      IOKI?$H#z@,UP*?       !"KRE? | y$UH@"      "KH"| y /E*@A     $Q'B!&It O	UM      BIRU( z"UI*@0     xz#F  ?RP!!     *B>7T[Q~BQ      AJ2Y?@! z +Tj/     ?Q) BJ)@ JĒ      HF_D y$UO
@"      A_U~>~EU     @HQ@" D?B!)B!J     PؠOI(I$ItY$I(e%     (Hؐ$
?I4uSZ1E%     $	/ʔI~uK[)*RT    Q"}(DQ"Ȣ    @!!	B       B#x}!(@      x}!(@      B  }!(         	H>ECP@       @}!(      	 DT&8C}!(        ~!!GH@}!(      
S;U<!"P	
b      @!!/}!(     AQ$SX%/%!Q|EP@     >E"?H>ECP@      Ϩ}!(       B# !@@        ?BC @?     >E"??BC @?      	O P|| D?$DDa     ?A $O	"ĈB"      @y'H$ D""      P _CDQ      H`o 	O _CDq     #@G ??"BDBA< A     #@@ ??"BDBA< A      C O	" ?ࠀ>1      $?~Gℂpc     $)@PD'?~Gℂpc      C$O	s$Hx! 	"$      CO"          C O	" ?@"8      C$O	?Q"8H        C$O	?	  B?     $)J !ĀHR C$O	s      C$O	s   @?      C$O	5?QDWP@ALa?     	@ $!	JIJx     ""D@ !B!BB!PA      	RqH$PH%$Kh-RHl      *Op!_ $ShMHl      !"Gw$PH "E$ShE$l      )Jq/D? 5$iTQ$l      ;"{&@IdFI7Q      !"Gw(0P "I$i2Hd      !Br,Pe? E'hĐMRL$l      C9$;@%J]dږH2D      "	Gr'J? $hDB$      p!D? >E%m-RHl      "Gp/RI%jL2Rd      "Gs!B?	%h$MA$l      gbHD?'I'(>       Gp'D $i-RHl      	r('H >E$iD      "p'B? }$i-Hl      
Op/B? *}$iB$l      
w(0_$'kE$l      kT0P*$      !"t$PR 	$#hMHl      	zGhQU q7
>#      t$PD? |$KkE$l      oEUGʕUJ~R(      	s$PO $#k-B$l      oRPA  VU~      ?@@  !!      $O"D_IE4_  P      |@/ 
?I(Q$PH@      | ! ?I!$C!      | B" 
?I(Q$PH@      |" 
?IX%#@H     @$"_IUT_ "       A$_?%RI@_Q(B        HO&JQB     | %G@ ?ID%_        $Oϐ?BRH"B      IKGψ &JOQ ?       yJ/ 9NzJ
_ב)B      (J ~J
Q)B      !$'	_1Ha      " (Ϯ	TEI@@     
UY?@BTJ@     
UY?@ BR)F$     
UY?@ C	     
UY?@ABB$     
#T"]Њ!wB(G      A D p&@ A       A D pqG.EBQ@      " G$*b0"B#       P@AH5A AT)\G      P@A"J5A V)\G      P@CO5A!T)\O      p"O	*kRRMh8      PB_AHU"FR      P AAO򂈕jA(QTFR      @s/E^kJ
UTMh3x       P@Ad5A!TB	D      (QrO?kTRTh8      QpOjkTRUMjx      ApAT-hSиB      P B/BQ5A|TFIP      PB/BQ5ADU&I      J	$PUZATUQkE=Q     P AAO򂊕bA|	T"F	B      P AAB"k|	"F	B       
DRWZAUUWUUk<D     A "
zdDU       As/EkRBPa3x      B/Q5APURFH,Ѐ    TOB@DT*      DQTZAETUQkE=@@      !pB뀂EQMa8A      PB/B_5AUz	g      rJ%YMTi3xA      QA@I5A U&I_       es2O*U֪-T]hxā      Aw*RWMj8      As:%ARQMdx     Hq"	* 
WhSиB      r_juV_-bSx     pB%j&mToxB      rJ*k*}Po8      !s/kHEUhS80      qR
k>MTkxB      r_ *k BS`S      r
*H~-TMk8?     DQp*kAU]jx       p@ 'Hĉ
     @sjJIU]ox     !sk"}R-o8A     wO5jk FUj8      Dw/*k }PeSx     %BK	%)"	"F"        G ? !B!"B       @y% I V(^G      @{? I!T(^O      z?߀$IHU#DR       z"E "IDU$H       AAB$$
&4H%<     @ A%J> J%5H)1|       y%Ҁ"IU(^_      Q@E
 T%R5H*|      !B% ~%Jf4(Լ@      #@ $4((QмB      z"E IU{g     #@B	*%&n4/|B      !B
?H%N4/<     @"@ B~	'H     ?D@)#(_@}bg     @Q Gψ<"BL| A      ǟ _y~
ȏ     @Q Gψ<"BL|  8     @Q Gψ>"BL|  D     !A#y %0R{ޔ/{҄Jg     @Q Gψ<"BL|D      `p @|Q      ED^CtQSEN*S     ?IAGw
@|Q      @|Q ?]_p~.5:WW       @ "D@# $PQ       !I B?b @ "      `p @CH0@~      !(PJ
H
֠_߂     =
ȨjV5+?     I T}"F>V[       ?(B?B! @@       1` T;  $C	*      PA_* !BG򊤕Q!     8S*8 iR*D!      P%*%RJUT!     HQE԰_ժ~ 
*U_      P!*D 'ʥQ!     $!HB`+_T"H| #DI"RH@    I?<HP"_I?A     		        $p$@<@~HJH~HH	        ~    PPP(H(([H       #@GJPT?R!      'h	4R%/䐉%Z
/x     }E/($~Y"  I!     ޢU%/)(~~Y"$!     ( H/$I}("0TBȃ|A        @ G@ D     d F"0(b#`           (_}|"Uȃ8"      !)J@@8                   `          ?       AA        " $          @@      #ȑ>DP  
     O O z~SW      @@?@$I!G)Ð? B      ! CEa
IL"HDO@J     @!)RB"Ri2H      CA D 0@A       !^%$0"
      ! G? $<H  @!       'ʐ?*@TST      @ 	%)$RIjA BA    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  
     '@~	A       @~	!$?   
     'BH~	A  
    ("
AH 	 
    X!D"       8 b"DpF   
    ,AH`  
    qq  
      F         8 bt$N   
    ,N"Dd 	     & 4  	      F#b1 	 
    b1@      BBBBBBBB< 	 
    Db/ p@         1Q0  
    QQYQ  
    QQ         "C!#0  
    ,DBG ` 	 
    b.  D"   
    q%YӪĈ 	      A $x 	 
    $	A C  
    j4	?П   
    pq$DDH 	      h(# 	 
    >FCAA  	 
    pD1r%  
    '"Dp 	      $ Db1p 	 
    A $# 	 
    A $  DA@@      8D >A		ᙆ  
    >A		ᙆ  
     @ 	 
    =!!p      80nɓv  
    }2n 	 
      	      D  Db(# 	 
    wDb! #A   
    "JI 	 
    @`0@$       8 	$N   
     @"D`  
    =	袊'@      88/Ŀ$G   
    %D 	 
    (D%ܘ       8D 6  
    6 
 
    3
d"        D    $D"%P   
     `DJDA   
    ( GA      "   
     	 	    DR*K  	      B+b  	 
    pD"X+8  	 
    > 1! 	 	    `0 	      Gb)# 	 
    b?F#I   
    p      8D   
      
    B< 	 
    8"(R3D      82U   
    &J?  
      
    #      "   
          xxh 	      V_b  	 
    pD"ZV+8  	 
    'D"D          AdLUVD\  	    tDXKdM` 
 
    3
dr( 	      R$xDa( 	 
    F" &	D  	 
    Cq 	      H8Q 	 
    DREA਒   
    dE%$  	   > H#E             1d$=0  
     1$1  
 
    A H H!00  	    3 0       "    XUQ$UA  	    XUQ$UA 	 
    b.         8Z@`  
    Vh~ 	 
    QhR!E  	 
    (L%y       8 **#  
    %QRD 	 
    wDBF"A  
     @ d41`1   
 
    M6`x   
    
Q(  0  
    2!L 2(L 
     @ ASL$*I  
 
     AT,	"Jd  
 
    1kF0,JЌ        "   
     	 
    3HBD3  	      D "	 	 
    ! @!L   
    /A`  
    0**       8D ||  
    || 
 
    ,#">  	     8" A?  	 
    "A   
    #   
    8EDX!!Y% 	       !(
?B  	 	    "? D"  	     hLFS)`   
    !4ᤈ"@C	 	        	     ] @@_ 	 
    b. @!  
    =SR<      " NQqqQN  
    NQqqQN 	 
    QV">        D  F"1Db#'   
    ptTb"1      ww 	      XF+b# 	 
    b1_F+I   
    h ƀ@         b:K*c20@      ʘ㌩   
    ,D2d` 	      !Q 	     RG |IDb  	 
    >$2LsEA  	      ZE$|"  	 
    b)#@!8   
      
    @`!&$        KH4   
     LHăH  
    ,"1  "  
      H$(@  
 
    %J# !hF   
    & `1  
 
     $B$HB        XE2P"  
    e$D  
    <      BJE      8 2@ɒ`  
    &H2@ 	 
    >$XFUI  	      |  H$ 	 
    `(#A       8D 1  
    1      1-# 	      ē$|*p 	 
    >$#@U 	 
    > 9A  	      h@#%3  	 
    Dba,Q  
     APL         %EEA  
    EEK	b  
 
     AV! K4  
 
    .fH$H$ 	      !DA 	 
    B'D"  	 
    b. @>  	     a2&C 	       Y`K3f 	 
    ]!4   
    Q}Q}Q 	 
     "Q(D  	     8" `p$I  	 
    c @I   
    <Bᙆ        @`IIc@   
     FI?IF4  
 
    ERW G4  	     B?d* 	 
    D"C!P@ 
 
    H2  	       B= 	 
    @ 4   
    ² 	      |  H$ 	 
    `(#A   
     """  """ 	 
    I       q r<H F   
    0.G`  
    蘀      @V$AHF 
     c6
  
 
    l)  
 
    lEU       " 	))	  
    	))	 	 
    IIA$r)$  	 
    K$rE          JAh+ B  
     VA  	 	    	06hś$          cE` @  
      ǖ8   	 
    P3h@  
     @DUI|1B0  
 
    DQD_BЌ   
 
    @P|,R،   	 	   PGB0          0@ DhC  
     `p"@І 	 
    b I$  
 
    DQEA s4  	      	"rTI 	 
    I'3H ?  
    HI	  	 
    > ?A  	      抂`0 	 
    g4Ts@  
    ` dsNGh  
 
    &ɞd,H  
      de)RXd@  
 
    JT C4        i}K@<@@|  	      0@  	 
     X0(	   
     
"HH" 
     @B "Dp 
     qÁ/ 	     "  ("$       " !  
    !       ""O3"" 	      
 A A  	 
    PG	   
    R$D?A?D( 	      H? 	 
    RGȌD!  
    ,"   	       PPb-  	 
    2@#h@  	      ED*         AtA=0p  
     p1AAЃ  
    @!Hg!I@!  
 
    "H$?$@ 
     AHF!H 
 	    R&Qe%  	    AMUE!      8 b`  
    ,^@  
    !0`         XF   
     1   
      4 	    @T
@ 	      pT>2  
 
    lDQ  
    AqA        <HI"x  
    x= <D 8 	 
    @`0@> 
      00
  
 
     (       ? F   
     @ '" h  
 
     '! 
 
     C#   
     @   h  
 
    #!   
    yy1  
    9AAAA9 	      $ D  	 
    A  B!         
    8@LIHG      8D 1-#       1-#   
    EZ"1P
DU   
    ,@b`        Xр,xF8   
     X񅬌p   
    x` Aǀ 
     ITNQ_ 
 
    UTdA<@ 	 
    c`@I  	 
    pEJ!  	      `(# 	 
    > 0A  
 
    ??*         XX	)%   
    RKO(%4 
 
    lH$  	      Y"$ 	 
    "A 4  
 
    m        BC!  
    0B   
    @>	""DH 	 
    $I$|       G55G      @sYYp@@      ?C8a'      8I&J  
     2dTp  
    #EE  
    (H_ $ 	      #I 	$ 	 
    H I$ 	     Do  I$      8q*T  
     %J  
    !ꄰ"A 	     AQDA? 	      E$|D"  	 
    b)#B!  
 
    |!E?F  	      F#b)# 	 
    b1F#I  
 
    ` $       8 ?`  
     `  
    80`ɒ         YW"_P   
     D 4 
 
    c$Hb !hF  
         
 
    c$%? &   
    b2VJV*  
    䜀 	      ̖K%F" 	      &dY,e1  	        4Z,F"Db        	x  
    `
gx  
    R `  	    JTĈ 	       H$"1 	 
    	A p! 	 
    @`0C  	      |_  	 
    @`0C  
 
    L"ȍ ?  
      00    
 
     ?      DDP  
     0 	      HT&@ 	 
    RGB4       *Ĩ Ȁ  F   
 
     !hF?          bA. @  
      3@\)c#   
    PF
P`        P*5M闲T
  
    Tj/eX  
    DeR h         0ȣ"  Z`@   
    2 "  bF     8 F wPGp      
 b   	    F"?C$      "h f" h ,    
    ("HA1      8D 		I)  
    		I) 	 
     21(d  	       DY!p 	 
    B'U  
    @1.@  
      *0
!hF  
     3
eZ  
 
    /X         ;  `t    
    v  4  
      
    pp       "  0B7   @       |
 
  N    
    ,9 b  bF       8 z`F   
    /A`  
    1@1   
    h 	      X"PJ @ 	     2@"Pr  
 
    !H"  	       ]"A& 	 
    Rw$	4  
      !cvH 	    $"D	 	     A B H  	 
    | 
   @ 8@cvAP 
     A8mÁPT  
    q1-# p  
    pp 	       &	'@ 	 
    Q0L&<  
 
    <AP;!    8q"R;       $_*TPGp  
    40e"         @IHIH  
     I~I~4  
    40e  	      |0 	     > >;ဠ 	 
    > 0A  
       &       8D OHHO  
    OHHO 	 
    @`/AH#      @H	EE @     $    
    4, p 
     @DQH|9	  
 
    DQDBp!  
 
    C!B       D  V@F    
    GNP#    
     @Sjc/       9EQDM  
    QEq40 	 
    >$1#I   
    DX@      9EAFY  
    Qif`  
    L,@ 
 
     X`@      82`LX`  
    FL0`ɋ       ,b8bb  :`        UU=CB< 
      01*'($>  
 
    p*
"I  
     ("O⊑1 	 
    b(#AH       8 bIF   
    ,C2_`  
    8Tɒ      82`j4   
    C&L XF 
 
    nv " 	 
    > 2#A  	      ED"
A 	 
    b.!T"        (HJ8       " "H" 
 "(      ($   
    !	DD\   
     cv    
 
    l @   
 
    l @,       z0 ax  
    z @  
    <BO	0      | <Bᙆ  
    <Bᙆ  
      0@>!!@G 	 
    >$1#I  	      Z,|	  	 
    g(#@ H   
     %L@G 	 
    PG  @ 	      
  P 	 
    PG  @ 	     > 4YsE  	    
(
0+       D   @Ș  	    (
,, 	     > 2  
    Db#wT"          bB!    
    bCP 4 	 	    A @     
      D       8 b$H F   
    ,D`  
     @1  	     dJQb5*A 	      `(# 	 
    A  	 
    > 4[9A        $@H	EE @    @H	 $    
    /#  	       I$  
    ""AAAII6 	     REA@@PTI@         bA 10@  
      <Ahc-`  
    ʘeM%` 
 
    H<"C  
     AHGH 
 	    R$Q%  
     D  
      ∠#$i  
 
    "("$	A      ,AGh0 	 
    |b A  	      `/hc H` 	     x@#iC  	     bA   	 
    "'1D"       80`  @   
       	 
    `(##@ 	 
    b)#@!  	       -K5F  	     lYB@` 	 
    I @#h@       D %H#E      dh4 	     > 0       8 T`  
    J1@ 
     솬Ȃ,  
 
    {!%( !(  
 
     c6 @ 
 
    DAA`    8D ~~~    ~~~  
    C `
1=   
    4!!        0i"@EH  
    `$D"⊑1 	     @b1!   
     a 4      8  @`  
    0`  
    am  	 
    V*BP4  	      `1 	 
    `0F@  
    eDO*%C ` 
 
     S   	      3hDۃ `͡n 	     B&mp` 	 
    B&@!  	       ?0 	     @`0_       "  {*#8! "x   
    1쨎bH "! 	 
    H'	D 
     "$"H  
 
    ,"?"H$  
    0DHHċD8        D!'"#       "#a	DH   	    }I  	    }'I 	      	>$ 	     H$ p |I$ 
 
    ȁ  	     p@$$$ 	     'DA'DA 8  
    >"
AH/ A  
     U2f՚%       8q XCp  	    n n 	 
     G <  	      ia( 	 
    h5M&	E      ᙇ  ᙇ        GIdLQ1FD\F       Șb  	     D"B!  
    Yeq40 	       0 $r/
3  	 
    #xP$ј   
    pp  
    C,8F   "       0#`  b   
    C,8F    `  
    K8F 
  `  
    1F( A!      r B <  
    =  @ 	 
    b. D"   
    !|      8 r F   
    .B`  	    tDCdM` 	      	$_ĒH 	     I$F">$@  
    @1 
      0+
2(J
"  
 
    

b  
     !|B!     
    Xk$A 
     cv@   
 
    m @,   
    p}"D@   
    ?
D@"@G      t@ֱTED      tkX*" 	 
     @ q      8H>&L  
    8'dɂ 
 
    E!PX K7       8 $~"`  
    D$@ 	 
    pD"(+8  
 
    L"ȍ 8 H  
     03 "   
 
    "ČH" h  	 
    Eq @I  
     @ 
#I@ 
 
    *,"D 
 
     ","D 
 
    L*ʍ ?         X(`	P2 @  
    Q
X d  	 
    5 |I$ 
 
    x x!<"  	      Eg(# 	 
    > 4Z-9A   	     
P)H       ,9 p   
    0#   
    8.H"$  
    8֋
p 
     c6   ?  
 
    l   
 
    l!@      8D %%%X$  
    %%%X$      8TT      8D q|>p  
    q|>p  	    DQ5Z2T 
      6lD1@|$  
     [4@H 
 
    (
:).  	     RGBT  	      B!sP 	 
    "EDU*  
    =CB< 
     (( 
 
    (#( > 
 
    *ʎ*
   
      CcXô  
      <> @ 
 
    B)=<  	 
    "E  ;      9EQGQ8  
    9yEQD  
     FOF4   
    Q
"       D   I@4b   
    DV$D QHD  	 
    @`/ 
      00+   
 
     (       hʉ(  
    q,hbƈ      tAp  	    pd8 	 
    > 1  @       D 
Ȕ(
(H,  	    edJ`BD@` 
     Bp*FaP8	       9D*]  	    Et  
            9x9    
    	@I  
 
    ,$"  	      `@   	 
    b         B
E      <bH"B!*F        qbō$G   
    q,XD 	 
    b	>  	 
    > 6&A  	      3f(# 	 
    > 1F1A  
 
    <UTc! 	      @8>$ 	      pd   
    PABI$  
    "SWZ8E        B)嫭"Pp  
    "SWZ8E 	 
    8Q(OD@ 	      9`(# 	 
    > 0YsA  	 
    b.U  
    G8􉈘Hq       D &Q1IPQ  	    
($(( 	 
    N#h@       8D pp  
    pp  
    D      r "EIUH  	    %%U"  
    ,@` 	      3`@ك  	 
    @ |  
 
    lƍȃ"      ! H@x       @2E A! <   
    c` 	     ""Q$Q$  	      
@ 	 
    > 7Ѐ@T*  
 
    l " 
 
    MUNuVM? 	      J@Rb  	 	    DRK  	 	    DRA       8D1-#  pp      1-#  pp 	 
    HDA       8D ||  
    || 	 
    xE"HA 	      `@pD"G 	 
    b!p>  
     c`      r 08%e  
    _  	 	    " $D      8D 1-# j2j       1-# j2j   
    E
#      D $HF   
    DhѢD  
    0      8$H    	    D"D  
     	      *F%Tj1'  	 
    Tj1/JQ8  	 
    Db1(J#8   
    @`      8C F       @> 
 
    L"ȍ :R)JB  	      B #9kÆ 	 
    "X 5 	       F |I$G 	 
     E1I$>       r |L,  
    08"  	      B#w  	 
     >        | 1@ @  	      #b)# 	 
    F#I  	 	    Od)zFC!O      r QEH  
    1ؤ 	 
    > -EA  	      -b(# 	 
    hXF#A   
     D"( 	      AQ 	 
    > @ 	 
    K$r A         D  H@$!0   
    DA$ B  	 
    RG@2  
 
    фaDpc5  	       J=q 	 
    "Q@ 4  	     |@# @ $!      r 08)`  
    চi   
    b4
2J       z$@& 	      B )B! 	 
    %H"i@      }H+      8D 	xx  
    	xx 	 
    A`Q`C!  	     A E > @      " 0  
    0 
 
    "H 	      KOM! 	 
    $]$| i 	 
    `0 >  	      >"  	 
    `0!8  	 
     #h@  	      |   	 
    `(#    
 
     c#(∂       q ,V@H  
    h"_ 
 
     /hFA@ 
     c*  
 
    l-ʀ( 
 
    lPT 	 
    g-`RU        !' #  
    ?	CO@G 	     @`/ _ 
 
     c#"   	      b)# 	 
    > 0F#I  	 
    YcI%RTA       8 b$N   
    ,@` 	 
    > 1Xf5A  
 
    ? #!hF  	      i0H1  	 
    MaGF   	     $">I  	 
    Tj1*J#QĀ         X>8$F   
     }pH7Š   
    <F$BG	0 	      F"?	$H 	     wDb1A I$@ 	   #Q^WFN8 	     !a`dB@ 	     L#
   
    =4a         Y(   @  
    Q @?    
    Dɂ  
    Q @$DH 	      k,r	$A?H  	 
    YcI$	A  	   LF^("   
      0@*%L!DG         @ #  
     P*%L!DG 	 
    jVI     QQS @ 
      2{bX"8 x  
 
    ؖ%H    	    PD 
      btSB@0  
 
     @       }0_  	      HQ 	 
    RGD@      ᙇ ᙇ ᙇ 
      p$9|$	L  
 
    @$	C   
    ,G*U$      8 bI|!   
    ,C/>$      qR%GU&H  
    V9!$ @        bA(#1QF  
    0PF(c
!0  	    Ĕ"ADqD"D  
     *(DHDHPP`` 
     cv1F1a0 
     lFьaL  
    `  AA  	 
    REIFrTID@ 	      H8( 	 
    REAPDID@  
    Ȉ
>b$ 
     bZX p  
 
    p"Xk%   
    rr       D  0f,A|@   
    D > Ai@ 
     Գ A1@0 
     cvD  
 
    l D  
    UU}UE9 
     VՌ`   
     Gc: ?        K脈H  
    ĺHHh 	       J_$M 	 
    U
A$h   
    ("~6)5!      8OL  
    8`ɒ 	     > $R(D"pP  
     1#        8 @  
    @ 
 
    lD  	 
    d0F	 	      *-*
 	 
    AQhTPP(   
    dE(R l      8 L`ɓ!  
    	2`0 
 
    PT\VՌ        8D ŵ  
    ŵ  
    zJ:Jx 
     Lzԍ " 
 
    @S#H$  	     > 1 	      -"QhA 	 
    QhGE"   
    $%&$$$$d$      8D <B}ᙆ  
    <B}ᙆ      "">cᙆ 
 
     C#?$I        Ћ  
     	 
     2E   
    qx.׈      @
0#B  B
 
 B       @
0#B  B
 
 B       @ NB"}|D   	      "  	 
    @`0@!8   
    U99Uа 
     @  H(L @ 
 
     H JH 	 
    D"@  
      ` |WT2  
 
     @!$U 
 	    R$QE%         YH R @  
     
A)    
    `$$	 HRA       8ITp   
    #*U$ 
 
    lP8@ 	 
    ND	#J%I  	      BsB  	     *ET*   	    d9EQQEd0 	 
    
BE9"$@ 
     0"8(ʮ(&  
     ##⎢` 
     c:"  
    %Q*ITp        PJ	A(%@  
    PJ	A6<4  
    ~~hh      8D yzzy  
    yzzy 
 
    MŝdD@      r B |  
    ~=  	     $EA@#h@        "           
      >H  
     b? p  
 
    p"&h)   
    weJ*L      80dի&X`  
    Fd 	 
    HbP2%!@       @EATQ@D       8իVtG   
    quZjΈ  	    !)UZKUR       8D 8DD8U99U  
    8DD8U99U 	 
    D2թk-      RU*G 
     @ |mPT  
 
    1F1a0@T  	 
    eQ䪓x       8G*!R   
    RD*T  
 
    DP$      q+QRJ@  
    j4
_RH  
     
H2H 
      	<PC 
 
    @O<   
    }F3e 
     @ 11`0@  
 
    F`  
     @P1B0$	      :h1փh1       D   &,A@4`   
    D  IHD   
    (((( 	     PWF# 	      B$#w   	 
    "'1   
 
    | X$"̂  	 
    b. @ |  	      E 	  	 
    b. @ H  	     " D  	     > 1X#Q      r B)eX<  
    =Yb@  
    =CB< 	      V#f(# 	 
    bF1A  
 
    Ď / H       8d(PB3  
    8L
(P&p      :HD; 
      R؎ "   
 
     C#. H   
     
 r(      8$E*ɪQ   	    DY5J"D 	 
    > 0FA   	    )DD)         "$DPE)"  
    DH?$R&D 
 	    "F?h)   
    ?AA??~ 	      ?`1 	 
    `1@ 	 
    c?A  	 
    D"F#  	      B%jY  	 
    pd*(+R8  	 
    >$0SEA   
    pp 	      b)# 	 
    > 0I  	 
     `0L& 	      e* 	 
    > 0)U  
 
    "4G%       8(b   
    ,@       VJ#4X  	    :,sUɄEAQ$ 	     g3L *
   
    2N" 	      B'D"?B  	 
    "?B!"  	     ?D@!B   
    AA"**p        0i"@p?  
    `$D  $   
    %d  	      2$S)"`DH 	     %2I8"$@ 
 
    D(p"D  
    0&#
" 
       D  c !@B   
    1kB !  	     A8" @ 	 
    @`0@A       8D *II      *II  	    }LRd|      8D *II  
    *II  
    3q@
9L0      8tHD   
    #       	 
    ! D  	      H"  	 
    RG@!8   
    	A 	 
    b.I$ ? 	      !PʅB  	     
O-VT*  	     > G T_ 	      b|" "1p 	 
    3HC  	    edKHBDh       "  0Da&D
  	    bb:(h*`  
     Nk      r B(@      ="  
    <@@<          @   
      0h  	 
    yC`$ <  	      Pp8*$1  	     $Q$F    
    `"HP` 	      QQ41  	     j"AF   	     _F"h,  
      00?  
 
         
    a   
    AJ $0       "  CD@2$4  
    DA $T0  
     AH"&    8D 8DD8 `      8DD8 `       D!!   
    dT
P*@$      " i]Ki]K8      i]Ki]K8  
    80`ɒ 	 
    > 1F#A       8D 蜋  
    蜋  
    			 	 
    b.P  
     !TRԈ( 
 	    bA#T"(       c%2Xb4 	 
    b.!PpH  	      ED"*D@ 	 
    b.!T"   	    1FD\       8("
#  
    %PDp 	     ] E 
      *!Ȫ* "  
 
    3
dr*"  
     `,G	dH- @   
    D7e 
     @ 1F1a0@  
 
    FьaL  
 
    @cv  
     @DQH|m 
 
    DQD1F1a0  
      d
0 $       
<. `  
    B 	      ,DGI  
     P?8UP 	       F ?  	 
     E1A  	     ĕVsUI 	 
    J \X4  	      \(2A& 	 
    fJD	4       }}| 	 
    fJ D4       8D =CB<  
    =CB<  
    D8      ,F>  	      #A 	     o]  
    &O2@      8 b4ݖ!       ,F>      %E&H      9a  
    цO 	 
    <! p        rqP*98 Q      Trp@'    ZZZP    ZZZP    ZZZP  
      
    Aq40  
     #   
        
    ,@`  
    c    
    Am   
      @1  
 
    APL C4  
    l  
    z @  
      
    <Bᙆ  
    =CB<  
    6 C  
    =  @  
     @           8 
    L  	 
    `0A   
    $H"D  
    `$D"@  
    80`ɒ 	 
    > 0A   
    tc1 	    @`0     Q 	 
     "D  	 
     *D  
 
     AT<BD   
    A=aD  
    |   
    B.!  
    ~ 	    b.     Df2`@  	    㠐DA     Db"     `$D  
    q|0  
    q|		  
    yzzy  
    Aif`  	    T)Q  
    PABA      B
E  	    tDCdM` 
 	    R$QE%  	    tDBDI@`  	    d9EQQEd0      "(  
     @  	 
    " @       b    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP      ?M*eK&        ?M*Y0 ?       ! @ D H        	       	      ptDc' D       D rQD\ 	     BC!C  	     BC!C  	     @@   	     @A  	      @        tc!>      tc> 
     $ < < 
     $ < <       *TA@         *TA@@  
     $ <	   
     $@$$p      e$BA!  
      @DQ      &L2dɓ&H      &L2dɒ 	     `  @  `  	       @     	    8|>	o  	    8(D$Q"	o  	   "     	   @  D         @-"ZUj%@(      0 ܧbQ0        	     bK)C        E
d	 	 	        @ 8$Q"H([ 
     $@$       A@" @>       A"Ȉ @>   
    r I#D 
   $$J     	 n  	 n 8R`      8|      aJǂ   @B  	     pD"CD  	     pD"UCD       ')"c`08       
@          
A    	     b>] 	     "1t#w       ! @ I        ! @ I        Ɇ      Ɇ     1x  	    <~~< q 
              "QE  @          p DU
T,E       p EU
T,U  
     a      ` `aa` `      >&RĈ     Y        	       !1s    @      A'Q      A'Qʄ      A *AQ@0       !!A!B s      wp 	      A\       tc  
     D""!JF0  
    (BJC      F!Z@! @!    
    Db#;@"PD       ! @ A        A    X       @@         p D! dI!A        
    Fh!?   	     !     1(b`08  	     !            < 
     ?"bx 	     g-`@   	     g-`@  
      B!e64@       P XYMcPP P             q        "$D        " / 	 
   wDb1D"  	 
   wDb1D  	    wDb/E        pDB"O䈄D   
     #)A8      8
PI	""DP 	     wDb?PIDb       $!"	I A8      AS @      8@D @ 0       F(Q1E       F!Z@! "FR1      `4b"@"@       @#      D  |  @> 
     ?@AD  
     ?@AD  
     ?@D_D  
      @_D  
     @_D       9E@8ĸ      9E@8ĸ 	 
    L8h     p;p8      P$PQ"(P@      @(AD@
@       0`      08@         08@ ?                   F!Z@! @!       F!Z@! @!       A0*AP@0       Mb"8         0A      A  UB@0       "DH         "DH        tcQ\ 	     (A@@PD        DI @       @D @ 
      "$"              `4b"@"@      `4b"@"Q       @"@       ?8        /!B         DI#      (B'\ @ @ @      (B'\ @      (B'\ @ @       @@DH`      08@ @       (B'\ @            ptDb#  D 
     p" P!  
     p"(P)       @@          @@         @T@            *.N          0 .?].$`       q$G H      pp%!?!%  	     bFc1r       "aFB2Q*!Q 
     ` 
      ` $p 
    $d 
 	     `$  	     aH$   	     aH$   	     aH$  	     aH$  
    *j 
    "b 
    *
j 
    *
j      1 (`
@F08       tk!>      tk!>      AS(PB 	     b1~#      0d 	     }G ]       ( P
#       ( P
#      ttt @ @      D  "D>> 	     ]E ]      ttt @      p:!c1t       	 H.?].$`  
     D"|  
     D"|       Hw@Hw@ @      Hw@Hw@P      (@ "A,?         PAAWPQE  	   <BB<BBB<  	   <BB<BB< 	       @? 
     $	`( 	     !@? 
     $	d(  	   z zax      <B@@<BB< q      1J   |       1J   |       # .3#    
     0.,0       # .3#   
     0.,0      >!!>!!>   
     ?(J(
 
     ?(J
  	   }Ld| 	     0	1 Xp      b#;v!  	 
     D	D@@ 	     D	D ?      =E@8      p$HP?@͜ـ 
     "	BP&N  	     dI&[v @       B 0, ,0 @      !
QJ)B2!J)E(B       
P(R       1J         1J         cC`0 
               	     "B!R      p:!bp8     p:!bp8  H      #8        @Æ1 0        @Æ10  	     P Xp 	     X
@Xp       D!
 0D       D!JX 4D 
 	   (_(_   	   !'! 	     `0    	     `0@  Q 	     `0  I  	              E@          E@"         E@"        E@"       <B ? @       <BA ?D @       <BQ?@       <B?(@       09@   |       09@  |       09@@  |       09@  |       09@  $  
     d&Id&Id$ 	     @P(=      09@*       ! @pQ
                 !     B$$B      uiaKW        2, 9 	     ]B!D]            z        v 9         (qDJ"QE1@
      L2`      a$BAH%`       \  |  	     B&?      D@H"$Df`       ! @         ""HI@  
     ?ȓ$         B#t  @  @   
     p""EN ` 	     ]
       	     pD"@P L 	     pD#8       BD	$$H               &)1 	     fM @ A       ! 
     E"      `4b"@"J      q$G"Dp    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    B b  
  !?v     B b  
  !?v   
    zA!      zFb^  
            
     p@      #1  
  zZe  
    PP  
    x(aC   0Aǀ      `4 `  /  
    ABH"x      AB$H 
 
  dADQEG 
     dyDQy  
    hi      hn  
    fYeYe      fYgYY  
     *hѣD      gg  
    1$      1(a  
    |A$      |?  
     *hѣ|      *h 
     PT$*E @  	     **I    ZZZP    ZZZP    ! " " B 
 	  ?E!C   
    ?!" " " B       ?D   
    A@@@      0A!   
    zaa      zm^  
     }5`      }`  
    yaama      yama    F Asֵb8sb8           (( 
P   

(                       <  <   P  	    SP{    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    
     	     
     	      """BB     @$HB    z`@^    iD"  
    x0I(# J$      x@JHH!  
     &L-       &L@     $$$FI  
  8Q"H       
     
      @        @    
(PB  
  
(P9     @   
   @8 
 
    dAG @ 
     dA  
    bH (a      df1     9A>  
   9A>    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     x    x     x     x                     
    I$  
    &I$  
    $I$  
    $M$  
    $I4  
    I$  
    $  
    K$  
    I%  
    I$  
      
      
      
      
         &     H      >     ~     #B     !	                    
             B      ``  
    {        wA    aaF    .aI     @   <       B    
    z(bh   
    taB  
    ʘ!I  
  ʟ!I     (HK1  
   (H	I2      !B      z^  
    0ĒI(aaa      ya߆a7]  
    1Jaa^      yaa^  
    2Jaa^      zaa7]  
    8) (E       x0(ec  
    8) (E       x(B'Hd    8) (E H   
  x0(ec`  
    zA4a      zM4^  
     C"$D  
     AE$D  
    )(
  
    
  
     C"$T  
     AE$T  
     A  
    '  
     A @  
    aB'  
     <BBBBBBB<       <BBBBB<       up  	     up  
    yaaaa      yaaa  
     |
   
   \
(X  
     ~P  
   yP  
     N))  
   J))))
    y
(PZP  
  u(P: 
   x!JaJ@( 
 
  tF(   
    zAA      zA8     y @  
  r %@  
     III22"TT       JILL    aF  
  &L2d    z |!8ax    d \       AHPx     CERQ@       @$(Q<A     AEa  
    c)R       e*b  
    tB!  
  tB!      I"     I (@  
    1(aA	  
  1(aA	     1(ed     @@@(BHw     `  @!?   
  $$)!II2~    
  @B(D~   	      BA @    
  @)~         @D	      
     8#       8(PB	      a^  
         
  aB       ! G"'       9Q8!  
  r(qC  
    AA  
    B!  
    (P   
  (      !B!   
  !B   
     A @Bx       A    1(@     <                   ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  
    A|A  
    ~a|A  
    a      B!	  
     AAA(((EE  
     0 P `  
           @     "@  
     "$ !                   
     @@@@@@@     "  
    "`"# . 2      
    &`*3 "            
    @@@@@@@ @    
     @@@ @@@    	  i`  
     @ @@@@@    
     `    
      !!          
      & *(2(HH   
     @ @    
       	 
    
      	` @  
      	
@
@	    
     @ @@@@@@    
      `+           
        @ 0  
      0P      
     `          
     ` ! " $ ( 0      
    @ApBHDPH`PP`H@@    
     @ @@@ @ @    
       %         
    @`  
  
 
     
     `                   `         
      `    @  
     0P     
     ` ! " $ (1 "   
   """!     dB                                 /""""     i  	   i`  	   `4d`    	 	   cJe,`S)c     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP 
   đ$ID$I @ @ 
   Bhk&  
   `Xo\4 @ 
        
    `@0 
      b!p @ 
    ?   
   f!` @ 
    ",(   
   A \  
     Ì  @ 
    NE	=@0 @ 
   @$	@`@0 
   $	@`@0 
   '	``@0 
   DABIR3 @ 
   q`%8@ @ 
   1`-8@ @ 
   ADAG @         
    ?   
   ` "   
   b!b!X$@0 
      @ 
    H H|$	@% 
   `BB 
   H$QBQd`$E	B0 
      @0H2@ @ 
   QԥIJR)JLP 0 
    @ O%1@0 
       (*`  
   !A @ 
     HB@ 
   F!d1`X  
   F!g&g& 
    @#1"DQBA 
   `61h   
    h      
      @0XA @ 
    `
̌ @ 
   DADLQD@   
   "B    
   @  @P    
    !ȊB0    
   b!b!~$@0 
   ` "   
    @#1"DQB @ 
    @#1"HTA 
    @ x@ 0 
        	    A  
   Ady``    ҚSJiM0C 
   	  
           ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     V  	   V@ 	 	    6$@G~  
 	    6D| H
~  	 	    cJiF
|  	 	    cJiF
|  	 	    JI$	x  	 	    ),	x 	 	    LdPK~  
 	    L$!H
~  	 	    wDb0G  	    wDb0GC 	 	    ? `iL<8  	 	    ? `4Vr0 	 	    ? `*V\<  	 	    ? g)2d>  	 	    ? g4Y,&j< 	 	    ? d(>1  	   NQ  	    IT$da 	 	    gDb1F#s  	 	    bJPFT*#s  	 	    @`7MC  	 	    aIT"
|  	 	    cJh
|  	 	    wDb0C)c  	 	    wDe4Z,#)I  	 	    <!"RT~E$L  	 	     FC~  	 	    > 0>  	 	    >  	 	    B$*B  	 	    > 2Y-
9  	 	    > 00  	   f!Bh( 	 	    xB!	| 	 	    cJh0~  	 	    =!`H%H"  	 	    CPD""8  	 	    HD">  	 	    \@G
  
 	    M&AdAa 	 	    ldqG  	 	    CPT""8  	 	    B	  	 	    wDb0c  	 	    @PDA@@P(  	 	    9"a2	c  	 	    aIt(,9  	 	    HڦR(F	  	 	    *>  	 	    kJe0f   	   q  	 
  T"0   	  z     q @ P@  	 	  WZ!E   
 	  hP  	 
  ue1p   	 9T8Q:  	   nR 	   7$R)U*)@ @  	   iQ@  	 
  T")0  	 
  dЄ0  	 
  R.  	 	  5EQE  	   4h-$   
     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  	     	     	   <BB<  	   tb  	   |"  	   9Fax  	   Tb*1p 	 	   bA!DB!   	   zB0  	   JYc  	   !DiH  	   (<    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  	     	      	 	   PH"!P(  	 	     	 	   l8  
 	        
 	   `x&	 
 	   ` 
 	        	    @ `  	   DPd   	     	 	   h8  	       	   ? "XP  
 	   qDQC`@ 	 	   Fl8($
   	      	   ̔ 
 	    @` 
 	   ` |   	   h	 	 	   ~@P	  	   0 "h. 	 	      	         	   ІCa!x   	   ІB@ 
 	    `  	      	 	   ph88/   	   cc  0 
 	   l  	    x  
 	   `Xfa@  	   0  	   ;           	    0`                  @~    H~ 
    h  	     	   )$@@  	   ! @@  	   DDB""  	   1*D@ 	 	   	F)    	   1ERI$QEa  	   H( 	 	       	    ( ART  	 	   
"KE   	   @RP!     	   TDB       	   AJ! B@   	   AJ! b	@  
 	   EH%Db   	    P"U 
 	   E!8!"   	    P	A  
 	   D!!"P   
   @DIR2$  	   5QR"U%R@  	   TDB "   	 	   DC!                       
  "                        `   
  L   
           U     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP 
 
    dRd     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  	   8i2   	   ȁ(*   	   8C     D'"J0	  
 	   sA"  
 	   V@x%  	 	   wDb0$    	   l4dS$p%H
  
 	   ;F P8   	   ad!      	   p*#, D	@p     p*#, D	@p$I   	   p&$`x@0   	   bTRUD1I"(A  	   qRb P   	   a)*Is  	   3&(( Q    3&(( Q(@     3&(( S	(
@#  
 	   ;F, 0   	   ph!    	   qF(P
@p  
 	   cEJ@`   	   p4Bb@B)	01     p4Bb@B)	01      p4Bb@B)	00	 0   	   	 `   	   phH    	    "$DHH@K*H`  	   `&DA   	   `DH@A@   	   `DTB P@     ` %	 %@    ` %A	@   	   `DRB H@  	 	   D! Ba `   	   9 $@0   
    `4$	@  	   8Di@"    	   1 	 `   	   ""a
T	 `    	  td    	  8A    	  8L      8Ed   
            i  
   d
(t    
  &"       	 
 H"     YR  @R    l    %U     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP 	 	   wDb0
	  
 	   ;F`(
r   	   pE`I@   
    	   p葉QH$0 
 	   ;Fl,$2   	   p:!Q	$𤤒d1   	   Da   	   `DRA HD  
 	   !Z)Db   	   9  Dq   	   8(UCIHH$@@   
       iQ$@    ZZZP    ZZZP  	   <BB< 
 	   ?3 @       px@HDTQ'   	   91	 H@JD%p  	    `BD
|!8   	   y
A@F 	 	   D! Ba `  
   !Z)Df     p葉QH$1"P    `B"B"D"P    ZZZP    ZZZP 
    !ALH!  	     	     	   &L"D    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     '@B!0 @       pB   @       pB @B       pB  
c       p"` "         pB ?        pB C       pB         pB        pB }!C       pB })HC       pB z _C       pB |@"C       pB {P       pB {JP       pB x_PC       pBC       pB@"C       pBDB"C       pB @1       pB   Rc       pB@       pB        pB        pB        pB         pB !       pB@ @A      			     IO	        IO	  !    IO	  T0    IO0	  @ ?    IO	  @>0    IO	  BDB;    IO	  @ ?    IO	  ?    IO	 }A|<    IO	 }Q}<    IO	 }_}<    IO	 |@D|D
=    IO	 }P}<    IO	 }J|
=    IO	 |@_|<    IO	 @?    IO	 @?    IO	 DDD|DJ=    IO	   `p    IO	  0    IO	 @    IO	   pp    IO	   pp    IO	       IO	   ?    IO	     IO	       'pB!0 @       @B   @       @B @B       @B  
c       @"` "         @B ?        @B C       @B         @B        @B }!C       @B })HC       @B z _C       @B |@"C       @B {P       @B {JP       @B x_PC       @BC       @B@"C       @BDB"C       @B @1       @B   Rc       @B@       @B        @B        @B        @B         @B !       @B@ @A      		     II        II  !    II  T0    II0	  @ ?    II  @>0    II  BDB;    II  @ ?    II  ?    II }A|<    II }Q}<    II }_}<    II |@D|D
=    II }P}<    II }J|
=    II |@_|<    II @?    II @?    II DDD|DJ=    II   `p    II  0    II @    II   pp    II   pp    II       II   ?    II     II       ?BA&      DB0x       DB0x B     " >!  T0     D"F (       " >!  @>0     " >!  BDB;     DB0x       DB0x      DB0x }     DB0x }     DB0x z!}     " >!  |@D|D
=     DB0x {A     DB0x {)      DB0x x}!     DB0x      DB0x@/      " >! DDD|DJ=     " >!   `p     " >!  0     DB0x	 !     DB0x      DB0x      DB0x      DB0x      DB0xBG     " >!        _PPQRP P    PEP}SP        PEP}SP  !    PEP}SP  T0    PEP]P0\ T @ ?    PEP}SP  @>0    PEP}SP  BDB;    PEP}SP  @ ?    PEP]SP  ?    PEP]SP }A|<    PEP]SP }Q}<    PEP]SP }_}<    PEP]SP |@D|D
=    PEP]SP }P}<    PEP]SP }J|
=    PEP]SP |@_|<    PEP}SP @?    PEP}SP @?    PEP}SP DDD|DJ=    PEP}SP   `p    PEP}SP  0    PEP}SP @    PEP}SP   pp    PEP]SP   pp    PEP}SP       PEP]SP   ?    PEP}SP     PEP]SP       ?BAO&      DB3       DB3 B     ""!  T0     D" (       ""!  @>0     ""!  BDB;     DB3       DB3      DB3 }     DB3 }     DB3 z!}     ""!  |@D|D
=     DB3 {A     DB3 {)      DB3 x}!     DB3      DB3@/      ""! DDD|DJ=     ""!   `p     ""!  0     DB3	 !     DB3      DB3      DB3      DB3      DB3BG     ""!        _PPQ=RP P    PEES=P        PEES=P  !    PEES=P  T0    PEEP0\ T @ ?    PEES=P  @>0    PEES=P  BDB;    PEES=P  @ ?    PEES=P  ?    PEES=P }A|<    PEES=P }Q}<    PEES=P }_}<    PEES=P |@D|D
=    PEES=P }P}<    PEES=P }J|
=    PEES=P |@_|<    PEES=P @?    PEES=P @?    PEES=P DDD|DJ=    PEES=P   `p    PEES=P  0    PEES=P @    PEES=P   pp    PEES=P   pp    PEES=P       PEES=P   ?    PEES=P     PEES=P             B@@                       B          T0          @ ?         @>0         BDB;         @ ?         ?        }B|$<         }R}$<        z z$"9        |@D|D
=        {{ 9        {yD;        xyD"9         @$?         ?         D|DJ=           `p         0        @"          p         p          '            ?                     # H@ $ ? @      	 H"q	   @      	 H"q	 @B      	 H"q	  
c      	 H"A	 "       	 H"q	 ?       	 H"q	 C      	 H"q	        	 H"q	      	 H"q	}!C      	 H"q	{QC      	 H"q	z _C      	 H"q	|@"C      	 H"q	{P      	 H"q	{JP      	 H"q	x_PC      	 H"q	 C      	 H"q	@"C      	 H"q	DB"C      	 H"q	 @1      	 H"q	   Rc      	 H"q	 C      	 H"q	       	 H"q	      	 H"q	        	 H"q	       	 H"q	  !      	 H"q	D @A      )))$		     II(		       II(		 A    II(		 T0    II$	 @ ?    II(		 @>0    II(		 BDB;    II(		 @ ?    II(		 ?    II(		}A|<    II(		}Q}<    II(		}_}<    II(		|@D|D
=    II(		}P}<    II(		}J|
=    II(		|@_|<    II(		 @?    II(		 ?    II(		DGDDJ=    II(		  `p    II(		 0    II(		 @?    II(		  pp    II(		 pp    II(		       II(		  ?    II(		 @    II(	I      /@H"     $$       $$ B     !!" T0     $$ (       !!" @>0     !!" BDB;     $$        $$     $$}     $${E     $$z!}     !!"|@D|D
=     $${A     $${)      $$x}!     $$       $$@(     !!"DDD|DJ=     !!"  `p     !!" 0     $$       $$      $$     $$       $$     $$ BG     !!""           !A     !!           !!   B      !!  T0     !!   @ ?     !!  @>0     !!  BDB;     !!  @ ?     !!  ?     !! }B|$<      !! }R}$<     !! z z$"9     !! |@D|D
=     !! {{ 9     !! {yD;     !! xyD"9     !!  @$?     !!  ?     !!  D|DJ=     !!    `p     !!  0     !! @"     !!   p     !!  p     !!   '       !!   ?     !!      !!                     @             @   B        @  T0          @ ?       @  @>0       @  BDB;       @  @ ?       @   ?       @  }B|$<        @  }R}$<       @  z z$"9       @  |@D|D
=       @  {{ 9       @  {yD;       @  xyD"9       @  @$?       @  B$?       @  FDD|DJ=       @    `p       @  0       @  @$?       @   p       @   p       @   '         @    ?       @         @  B     /@!<     ~ DDx      ~ DDx B    ~ " B / T0     $A	      ~ " B / @>0    ~ " B / BDB;    ~ DDx       ~ DDx    ~ DDx}    ~ DDx{E    ~ DDxz!}    ~ " B /|@D|D
=    ~ DDx{A    ~ DDx{)     ~ DDxx}!    ~ DDx      ~ DDx@(    ~ " B /DDD|DJ=    ~ " B /  `p    ~ " B / 0    ~ DDx      ~ DDx     ~ DDx    ~ DDx      ~ DDx    ~ DDx BG    ~ " B /"      _PEPE_Q=QP    P%PE _       P%PE _ A    P%PE _ T0    PEPE_Q=U@ ?    P%PE _ @>0    P%PE _ BDB;    P%PE _ @ ?    ~P%PE _ ?    ~P%PE _}A|<    ~P%PE _}Q}<    ~P%PE _}_}<    ~P%PE _|@D|D
=    ~P%PE _}P}<    ~P%PE _}J|
=    ~P%PE _|@_|<    P%PE _ @?    P%PE _ ?    P%PE _DGDDJ=    P%PE _  `p    P%PE _ 0    P%PE _ @?    P%PE _  pp    ~P%PE _ pp    P%PE _       ~P%PE _  ?    P%PE _ @    ~P%PE _E      /@!     ~ DD      ~ DD B    ~ " B /! T0     $A)      ~ " B /! @>0    ~ " B /! BDB;    ~ DD       ~ DD    ~ DD}    ~ DD{E    ~ DDz!}    ~ " B /!|@D|D
=    ~ DD{A    ~ DD{)     ~ DDx}!    ~ DD      ~ DD@(    ~ " B /!DDD|DJ=    ~ " B /!  `p    ~ " B /! 0    ~ DD      ~ DD     ~ DD    ~ DD      ~ DD    ~ DD BG    ~ " B /!"                 @            @  B        @ T0        @ ?       @ @>0       @ BDB;       @ @ ?       @  ?       @ }B|$<        @ }R}$<       @ z z$"9       @ |@D|D
=       @ {{ 9       @ {yD;       @ xyD"9       @ @$?       @ P?       @ TD|DJ=       @  `p       @ 0       @ @$?       @  p       @  p       @  '         @   ?       @        @ B             @        @              @    B        @   T0           @ ?       @   @>0       @   BDB;       @   @ ?       @   ?       @  }B|$<        @  }R}$<       @  z z$"9       @  |@D|D
=       @  {{ 9       @  {yD;       @  xyD"9       @   @$?       @  @$?       @  DDD|DJ=       @    `p       @   0       @   @$?       @    p       @   p       @    '         @    ?       @          @  B     /@H	      $       $ B       " T0     $ (         " @>0       " BDB;     $        $     $}     ${E     $z!}       "|@D|D
=     ${A     ${)      $x}!     $       $@(       "DDD|DJ=       "  `p       " 0     $       $      $     $       $     $ BG       ""      ?BAA&      DB0x       DB0x B     " "!  T0     D"F (       " "!  @>0     " "!  BDB;     DB0x       DB0x      DB0x }     DB0x }     DB0x z!}     " "!  |@D|D
=     DB0x {A     DB0x {)      DB0x x}!     DB0x      DB0x@(     " "! DDD|DJ=     " "!   `p     " "!  0     DB0x	 !     DB0x      DB0x      DB0x      DB0x      DB0xBG     " "!        'H"AD$""! @      H"q0   @      H"q0 @B      H"q0  
c      H"r"        H"q0 ?       H"q0 C      H"q0        H"q0       H"q0 }!C      H"q0 })HC      H"q0 z _C      H"q0 |@"C      H"q0 {P      H"q0 {JP      H"q0 x_PC      H"q0C      H"q0@"C      H"q0DB"C      H"q0 @1      H"q0   Rc      H"q0@      H"q0       H"q0       H"q0       H"q0        H"q0 !      H"q0@ @A      $I$O$IH	     I$O$        I$O$  !    I$O$  T0    I$O$	  @ ?    I$O$  @>0    I$O$  BDB;    I$O$  @ ?    I$O$  ?    I$O$ }A|<    I$O$ }Q}<    I$O$ }_}<    I$O$ |@D|D
=    I$O$ }P}<    I$O$ }J|
=    I$O$ |@_|<    I$O$ @?    I$O$ @?    I$O$ DDD|DJ=    I$O$   `p    I$O$  0    I$O$ @    I$O$   pp    I$O$   pp    I$O$       I$O$   ?    I$O$     I$O$       'H"qD'""! @      N"A0   @      N"A0 @B      N"A0  
c      N"B"        N"A0 ?       N"A0 C      N"A0        N"A0       N"A0 }!C      N"A0 })HC      N"A0 z _C      N"A0 |@"C      N"A0 {P      N"A0 {JP      N"A0 x_PC      N"A0C      N"A0@"C      N"A0DB"C      N"A0 @1      N"A0   Rc      N"A0@      N"A0       N"A0       N"A0       N"A0        N"A0 !      N"A0@ @A      $O$I$OH	     I$I$        I$I$  !    I$I$  T0    I$I$	  @ ?    I$I$  @>0    I$I$  BDB;    I$I$  @ ?    I$I$  ?    I$I$ }A|<    I$I$ }Q}<    I$I$ }_}<    I$I$ |@D|D
=    I$I$ }P}<    I$I$ }J|
=    I$I$ |@_|<    I$I$ @?    I$I$ @?    I$I$ DDD|DJ=    I$I$   `p    I$I$  0    I$I$ @    I$I$   pp    I$I$   pp    I$I$       I$I$   ?    I$I$     I$I$       ?D#I	"(F    "$DDs      "$DDs B    !!""  T0    "$DDP!(      !!""  @>0    !!""  BDB;    "$DDs      "$DDs     "$DDs }    "$DDs }    "$DDs z!}    !!""  |@D|D
=    "$DDs {A    "$DDs {)     "$DDs x}!    "$DDs     "$DDs@/     !!"" DDD|DJ=    !!""   `p    !!""  0    "$DDs	 !    "$DDs     "$DDs     "$DDs     "$DDs     "$DDsBG    !!""        _$RE$R]$TEHXP P    RE$R}$TP        RE$R}$TP  !    RE$R}$TP  T0    RE$R]$TQ T @ ?    RE$R}$TP  @>0    RE$R}$TP  BDB;    RE$R}$TP  @ ?    RE$R]$TP  ?    RE$R]$TP }A|<    RE$R]$TP }Q}<    RE$R]$TP }_}<    RE$R]$TP |@D|D
=    RE$R]$TP }P}<    RE$R]$TP }J|
=    RE$R]$TP |@_|<    RE$R}$TP @?    RE$R}$TP @?    RE$R}$TP DDD|DJ=    RE$R}$TP   `p    RE$R}$TP  0    RE$R}$TP @    RE$R}$TP   pp    RE$R]$TP   pp    RE$R}$TP       RE$R]$TP   ?    RE$R}$TP     RE$R]$TP       ?D"DI"(F    "$GDs      "$GDs B    !"  T0    "$GEЌ!(      !"  @>0    !"  BDB;    "$GDs      "<DDs     "<DDs }    "<DDs }    "<DDs z!}    !!"  |@D|D
=    "<DDs {A    "<DDs {)     "<DDs x}!    "$GDs     "$GDs@/     !" DDD|DJ=    !"   `p    !"  0    "$GDs	 !    "$GDs     "<DDs     "$GDs     "<DDs     "$GDsBG    !!"        _$RE%E$T]HXP P    R]$RE%ԅP        R]$RE%ԅP  !    R]$RE%ԅP  T0    RE%E$TQ T @ ?    R]$RE%ԅP  @>0    R]$RE%ԅP  BDB;    R]$RE%ԅP  @ ?    R]$RE%ԅP  ?    R]$RE%ԅP }A|<    R]$RE%ԅP }Q}<    R]$RE%ԅP }_}<    R]$RE%ԅP |@D|D
=    R]$RE%ԅP }P}<    R]$RE%ԅP }J|
=    R]$RE%ԅP |@_|<    R]$RE%ԅP @?    R]$RE%ԅP @?    R]$RE%ԅP DDD|DJ=    R]$RE%ԅP   `p    R]$RE%ԅP  0    R]$RE%ԅP @    R]$RE%ԅP   pp    R]$RE%ԅP   pp    R]$RE%ԅP       R]$RE%ԅP   ?    R]$RE%ԅP     R]$RE%ԅP        B B B @      @            @    B      @   T0    B B
@    @ ?     @   @>0     @   BDB;     @   @ ?    B B
@   ?    B B
@  }B|$<     B B
@  }R}$<    B B
@  z z$"9    B B
@  |@D|D
=    B B
@  {{ 9    B B
@  {yD;    B B
@  xyD"9     @   @$?     @   ?     @   D|DJ=     @     `p     @   0     @  @"     @    p    B B
@   p     @    '      B B
@    ?     @      B B
@       'H"ADD A? @     !	HBD   @     !	HBD @B     !	HBD  
c      H"B "      !	HBD ?      !	HBD C     !	HBD        H"B      H"B}!C      H"B{QC      H"Bz _C      H"B|`"C      H"B{P      H"B{JP      H"Bx_PC     !	HBD C     !	HBD@"C     !	HBDDB"C     !	HBD @1     !	HBD   Rc     !	HBD C     !	HBD       H"B#     !	HBD        H"B      !	HBD  !      H"BD @A      $I$I$IX		     I$IX		       I$IX		 A    I$IX		 T0    I$I$	 @ ?    I$IX		 @>0    I$IX		 BDB;    I$IX		 @ ?    I$IX		 ?    I$IX		}A|<    I$IX		}Q}<    I$IX		}_}<    I$IX		|@D|D
=    I$IX		}P}<    I$IX		}J|
=    I$IX		|@_|<    I$IX		 @?    I$IX		 ?    I$IX		DGDDJ=    I$IX		  `p    I$IX		 0    I$IX		 @?    I$IX		  pp    I$IX		 pp    I$IX		       I$IX		  ?    I$IX		 @    I$IX	I      ?D"DIQ!    $$      $$ B    "!"J  T0    "$D (      "!"J  @>0    "!"J  BDB;    $$       "$D    "$D}    "$D{E    "$Dz!}    !!* |@D|D
=    "$D{A    "$D{)     "$Dx}!    $$      $$@(    "!"J DDD|DJ=    "!"J   `p    "!"J  0    $$      $$     "$D    $$      "$D    $$ BG    !!* "       B B B!                   B        T0    B B   @ ?       @>0       BDB;       @ ?    B B  ?    B B }B|$<     B B }R}$<    B B z z$"9    B B |@D|D
=    B B {{ 9    B B {yD;    B B xyD"9       @$?       ?       D|DJ=         `p       0      @"        p    B B  p        '      B B   ?          B B     B B          B B@          B B@   B     B B@  T0    B B@   @ ?    B B@  @>0    B B@  BDB;    B B@  @ ?    B B@   ?    B B@  }B|$<     B B@  }R}$<    B B@  z z$"9    B B@  |@D|D
=    B B@  {{ 9    B B@  {yD;    B B@  xyD"9    B B@  @$?    B B@  B$?    B B@  FDD|DJ=    B B@    `p    B B@  0    B B@  @$?    B B@   p    B B@   p    B B@   '      B B@    ?    B B@      B B@  B     ?DD@!<     "$DBxA      "$DBxA B    !"" /	 T0    "$D" A	      !"" /	 @>0    !"" /	 BDB;    "$DBxA       "$DBxA    "$DBxA}    "$DBxA{E    "$DBxAz!}    !"" /	|@D|D
=    "$DBxA{A    "$DBxA{)     "$DBxAx}!    "$DBxA      "$DBxA@(    !"" /	DDD|DJ=    !"" /	  `p    !"" /	 0    "$DBxA      "$DBxA     "$DBxA    "$DBxA      "$DBxA    "$DBxA BG    !"" /	      _$RE$T _Q=QP    RE$REH_       RE$REH_ A    RE$REH_ T0    RE$REH_Q=T@ ?    RE$REH_ @>0    RE$REH_ BDB;    RE$REH_ @ ?    RE$REH_ ?    RE$REH_}A|<    RE$REH_}Q}<    RE$REH_}_}<    RE$REH_|@D|D
=    RE$REH_}P}<    RE$REH_}J|
=    RE$REH_|@_|<    RE$REH_ @?    RE$REH_ ?    RE$REH_DGDDJ=    RE$REH_  `p    RE$REH_ 0    RE$REH_ @?    RE$REH_  pp    RE$REH_ pp    RE$REH_       RE$REH_  ?    RE$REH_ @    RE$REH_E      ?DD@!     "$DBA      "$DBA B    !"" /  T0    "$D" A)      !"" /  @>0    !"" /  BDB;    "$DBA       "$DBxA    "$DBxA}    "$DBxA{E    "$DBxAz!}    !"" /	|@D|D
=    "$DBxA{A    "$DBxA{)     "$DBxAx}!    "$DBA      "$DBA@(    !"" / DDD|DJ=    !"" /   `p    !"" /  0    "$DBA      "$DBA     "$DBxA    "$DBA      "$DBxA    "$DBA BG    !"" /	     B B      B B@         B B@  B     B B@ T0    B B@ @ ?    B B@ @>0    B B@ BDB;    B B@ @ ?    B B@  ?    B B@ }B|$<     B B@ }R}$<    B B@ z z$"9    B B@ |@D|D
=    B B@ {{ 9    B B@ {yD;    B B@ xyD"9    B B@ @$?    B B@ P?    B B@ TD|DJ=    B B@  `p    B B@ 0    B B@ @$?    B B@  p    B B@  p    B B@  '      B B@   ?    B B@     B B@ B      B B B @     B B@           B B@    B     B B@   T0    B B@    @ ?    B B@   @>0    B B@   BDB;    B B@   @ ?    B B@   ?    B B@  }B|$<     B B@  }R}$<    B B@  z z$"9    B B@  |@D|D
=    B B@  {{ 9    B B@  {yD;    B B@  xyD"9    B B@   @$?    B B@  @$?    B B@  DDD|DJ=    B B@    `p    B B@   0    B B@   @$?    B B@    p    B B@   p    B B@    '      B B@    ?    B B@       B B@  B     ?D"DI      $$"       $$"  B    "!"B  T0    "$D"  (      "!"B  @>0    "!"B  BDB;    $$"        "$D"     "$D" }    "$D" {E    "$D" z!}    !!" |`D|D
=    "$D" {A    "$D" {)     "$D" x}!    $$"       $$" @(    "!"B DDD|DJ=    "!"B   `p    "!"B  0    $$"       $$"      "$D" /    $$"       "$D"     $$"  BG    !!" "      ?D"DI	"(F    "$DDs      "$DDs B    !!""  T0    "$DDP!(      !!""  @>0    !!""  BDB;    "$DDs      "$DDs     "$DDs }    "$DDs }    "$DDs z!}    !!""  |@D|D
=    "$DDs {A    "$DDs {)     "$DDs x}!    "$DDs     "$DDs@(    !!"" DDD|DJ=    !!""   `p    !!""  0    "$DDs	 !    "$DDs     "$DDs     "$DDs     "$DDs     "$DDsBG    !!""        $ 	 H@ #  @     $ 	 x?    @     $ 	 x?  @B     $ 	 x?   
c     $ 	 x@ "       $ 	 x?  ?      $ 	 x?  C     $ 	 x?        $ 	 x?       $ 	 x?  }!C     $ 	 x?  })HC     $ 	 x?  z _C     $ 	 x?  |@"C     $ 	 x?  {P     $ 	 x?  {JP     $ 	 x?  x_PC     $ 	 x? C     $ 	 x? @"C     $ 	 x? DB"C     $ 	 x?  @1     $ 	 x?    Rc     $ 	 x? @     $ 	 x?       $ 	 x?       $ 	 x?       $ 	 x?        $ 	 x?  !     $ 	 x? @ @A      			 	     	         	   !    	   T0    		~	  @ ?    	   @>0    	   BDB;    	   @ ?    	   ?    	  }A|<    	  }Q}<    	  }_}<    	  |@D|D
=    	  }P}<    	  }J|
=    	  |@_|<    	  @?    	  @?    	  DDD|DJ=    	    `p    	   0    	  @    	    pp    	    pp    	        	    ?    	      	        $ 	 x@ #  @     $  H?    @     $  H?  @B     $  H?   
c     $  H@ "       $  H?  ?      $  H?  C     $  H?        $  H?       $  H?  }!C     $  H?  })HC     $  H?  z _C     $  H?  |@"C     $  H?  {P     $  H?  {JP     $  H?  x_PC     $  H? C     $  H? @"C     $  H? DB"C     $  H?  @1     $  H?    Rc     $  H? @     $  H?       $  H?       $  H?       $  H?        $  H?  !     $  H? @ @A      		 	     		         		   !    		   T0    		~	  @ ?    		   @>0    		   BDB;    		   @ ?    		   ?    		  }A|<    		  }Q}<    		  }_}<    		  |@D|D
=    		  }P}<    		  }J|
=    		  |@_|<    		  @?    		  @?    		  DDD|DJ=    		    `p    		   0    		  @    		    pp    		    pp    		        		    ?    		      		        0 /     0 x@      0 x@ B    (('   T0    0 x _ (      (('   @>0    (('   BDB;    0 x@      0 x@     0 x@ }    0 x@ }    0 x@ z!}    (('   |@D|D
=    0 x@ {A    0 x@ {)     0 x@ x}!    0 x@     0 x@@/     (('  DDD|DJ=    (('    `p    (('   0    0 x@	 !    0 x@     0 x@     0 x@     0 x@     0 x@BG    (('         XXXXW P P    XX=W P        XX=W P  !    XX=W P  T0    XXX~P T @ ?    XX=W P  @>0    XX=W P  BDB;    XX=W P  @ ?    XXW P  ?    XXW P }A|<    XXW P }Q}<    XXW P }_}<    XXW P |@D|D
=    XXW P }P}<    XXW P }J|
=    XXW P |@_|<    XX=W P @?    XX=W P @?    XX=W P DDD|DJ=    XX=W P   `p    XX=W P  0    XX=W P @    XX=W P   pp    XXW P   pp    XX=W P       XXW P   ?    XX=W P     XXW P       0  `/     0@      0@ B    (   T0    0 (      (   @>0    (   BDB;    0@      0 @     0 @ }    0 @ }    0 @ z!}    ((   |@D|D
=    0 @ {A    0 @ {)     0 @ x}!    0@     0@@/     (  DDD|DJ=    (    `p    (   0    0@	 !    0@     0 @     0@     0 @     0@BG    ((         XXXW P P    XX P        XX P  !    XX P  T0    XX~P T @ ?    XX P  @>0    XX P  BDB;    XX P  @ ?    XX P  ?    XX P }A|<    XX P }Q}<    XX P }_}<    XX P |@D|D
=    XX P }P}<    XX P }J|
=    XX P |@_|<    XX P @?    XX P @?    XX P DDD|DJ=    XX P   `p    XX P  0    XX P @    XX P   pp    XX P   pp    XX P       XX P   ?    XX P     XX P        @ @ @         @ @            @ @     B     @ @    T0    @ @     @ ?    @ @    @>0    @ @    BDB;    @ @    @ ?    @ @    ?    @ @   }B|$<     @ @   }R}$<    @ @   z z$"9    @ @   |@D|D
=    @ @   {{ 9    @ @   {yD;    @ @   xyD"9    @ @    @$?    @ @    ?    @ @    D|DJ=    @ @      `p    @ @    0    @ @   @"    @ @     p    @ @    p    @ @     '      @ @     ?    @ @       @ @        "D  A? @     @"~@   @     @"~@ @B     @"~@  
c     @"~@ "      @"~@ ?      @"~@ C     @"~@       @"~@     @"~@}!C     @"~@{QC     @"~@z _C     @"~@|`"C     @"~@{P     @"~@{JP     @"~@x_PC     @"~@ C     @"~@@"C     @"~@DB"C     @"~@ @1     @"~@   Rc     @"~@ C     @"~@      @"~@#     @"~@       @"~@      @"~@  !     @"~@D @A      			|			     			       			 A    			 T0    		|		 @ ?    			 @>0    			 BDB;    			 @ ?    			 ?    			}A|<    			}Q}<    			}_}<    			|@D|D
=    			}P}<    			}J|
=    			|@_|<    			 @?    			 ?    			DGDDJ=    			  `p    			 0    			 @?    			  pp    			 pp    			       			  ?    			 @    		I      ( ~@A!    @(       @(  B    @$@#  T0    @(  (      @$@#  @>0    @$@#  BDB;    @(        @(     @( }    @( {E    @( z!}    @$@# |@D|D
=    @( {A    @( {)     @( x}!    @(       @( @(    @$@# DDD|DJ=    @$@#   `p    @$@#  0    @(       @(      @(     @(       @(     @(  BG    @$@# "       @ @ @     @ @          @ @   B     @ @  T0    @ @   @ ?    @ @  @>0    @ @  BDB;    @ @  @ ?    @ @  ?    @ @ }B|$<     @ @ }R}$<    @ @ z z$"9    @ @ |@D|D
=    @ @ {{ 9    @ @ {yD;    @ @ xyD"9    @ @  @$?    @ @  ?    @ @  D|DJ=    @ @    `p    @ @  0    @ @ @"    @ @   p    @ @  p    @ @   '      @ @   ?    @ @     @ @     @ @ ?          @ @            @ @     B     @ @    T0    @ @     @ ?    @ @    @>0    @ @    BDB;    @ @    @ ?    @ @     ?    @ @    }B|$<     @ @    }R}$<    @ @    z z$"9    @ @    |@D|D
=    @ @    {{ 9    @ @    {yD;    @ @    xyD"9    @ @    @$?    @ @    B$?    @ @    FDD|DJ=    @ @      `p    @ @    0    @ @    @$?    @ @     p    @ @     p    @ @     '      @ @      ?    @ @        @ @    B     ( ~@!<     @( BxA      @( BxA B    @$@# /	 T0    @(  A	      @$@# /	 @>0    @$@# /	 BDB;    @( BxA       @( BxA    @( BxA}    @( BxA{E    @( BxAz!}    @$@# /	|@D|D
=    @( BxA{A    @( BxA{)     @( BxAx}!    @( BxA      @( BxA@(    @$@# /	DDD|DJ=    @$@# /	  `p    @$@# /	 0    @( BxA      @( BxA     @( BxA    @( BxA      @( BxA    @( BxA BG    @$@# /	      XXW _Q=QP    XW _       XW _ A    XW _ T0    XW _Q=T@ ?    XW _ @>0    XW _ BDB;    XW _ @ ?    XW _ ?    XW _}A|<    XW _}Q}<    XW _}_}<    XW _|@D|D
=    XW _}P}<    XW _}J|
=    XW _|@_|<    XW _ @?    XW _ ?    XW _DGDDJ=    XW _  `p    XW _ 0    XW _ @?    XW _  pp    XW _ pp    XW _       XW _  ?    XW _ @    XW _E      ( ~@!     @( BA      @( BA B    @$@# /  T0    @(  A)      @$@# /  @>0    @$@# /  BDB;    @( BA       @( BxA    @( BxA}    @( BxA{E    @( BxAz!}    @$@# /	|@D|D
=    @( BxA{A    @( BxA{)     @( BxAx}!    @( BA      @( BA@(    @$@# / DDD|DJ=    @$@# /   `p    @$@# /  0    @( BA      @( BA     @( BxA    @( BA      @( BxA    @( BA BG    @$@# /	     @ @ ?      @ @           @ @    B     @ @   T0    @ @   @ ?    @ @   @>0    @ @   BDB;    @ @   @ ?    @ @    ?    @ @   }B|$<     @ @   }R}$<    @ @   z z$"9    @ @   |@D|D
=    @ @   {{ 9    @ @   {yD;    @ @   xyD"9    @ @   @$?    @ @   P?    @ @   TD|DJ=    @ @    `p    @ @   0    @ @   @$?    @ @    p    @ @    p    @ @    '      @ @     ?    @ @       @ @   B      @ @ @          @ @             @ @      B     @ @     T0    @ @      @ ?    @ @     @>0    @ @     BDB;    @ @     @ ?    @ @     ?    @ @    }B|$<     @ @    }R}$<    @ @    z z$"9    @ @    |@D|D
=    @ @    {{ 9    @ @    {yD;    @ @    xyD"9    @ @     @$?    @ @    @$?    @ @    DDD|DJ=    @ @      `p    @ @     0    @ @     @$?    @ @      p    @ @     p    @ @      '      @ @      ?    @ @         @ @    B     ( ~@      @(        @(   B    @$@#   T0    @(   (      @$@#   @>0    @$@#   BDB;    @(         @(      @(  }    @(  {E    @(  z!}    @$@#  |`D|D
=    @(  {A    @(  {)     @(  x}!    @(        @(  @(    @$@#  DDD|DJ=    @$@#    `p    @$@#   0    @(        @(       @(  /    @(        @(      @(   BG    @$@#  "      0  `/     0 @      0 @ B    (('   T0    0  _ (      (('   @>0    (('   BDB;    0 @      0 @     0 @ }    0 @ }    0 @ z!}    (('   |@D|D
=    0 @ {A    0 @ {)     0 @ x}!    0 @     0 @@(    (('  DDD|DJ=    (('    `p    (('   0    0 @	 !    0 @     0 @     0 @     0 @     0 @BG    (('         ' 	 H@ #  @     $ 	 x?    @     $ 	 x?  @B     $ 	 x?   
c     $ 	 x@ "       $ 	 x?  ?      $ 	 x?  C     $ 	 x?        $ 	 x?       $ 	 x?  }!C     $ 	 x?  })HC     $ 	 x?  z _C     $ 	 x?  |@"C     $ 	 x?  {P     $ 	 x?  {JP     $ 	 x?  x_PC     $ 	 x? C     $ 	 x? @"C     $ 	 x? DB"C     $ 	 x?  @1     $ 	 x?    Rc     $ 	 x? @     $ 	 x?       $ 	 x?       $ 	 x?       $ 	 x?        $ 	 x?  !     $ 	 x? @ @A      ɀ		 	     	         	   !    	   T0    		|	  @ ?    	   @>0    	   BDB;    	   @ ?    	   ?    	  }A|<    	  }Q}<    	  }_}<    	  |@D|D
=    	  }P}<    	  }J|
=    	  |@_|<    	  @?    	  @?    	  DDD|DJ=    	    `p    	   0    	  @    	    pp    	    pp    	        	    ?    	      	        ' 	 x@ #  @     $  H?    @     $  H?  @B     $  H?   
c     $  H@ "       $  H?  ?      $  H?  C     $  H?        $  H?       $  H?  }!C     $  H?  })HC     $  H?  z _C     $  H?  |@"C     $  H?  {P     $  H?  {JP     $  H?  x_PC     $  H? C     $  H? @"C     $  H? DB"C     $  H?  @1     $  H?    Rc     $  H? @     $  H?       $  H?       $  H?       $  H?        $  H?  !     $  H? @ @A      ɀ	 	     		         		   !    		   T0    		|	  @ ?    		   @>0    		   BDB;    		   @ ?    		   ?    		  }A|<    		  }Q}<    		  }_}<    		  |@D|D
=    		  }P}<    		  }J|
=    		  |@_|<    		  @?    		  @?    		  DDD|DJ=    		    `p    		   0    		  @    		    pp    		    pp    		        		    ?    		      		        ? /     0 x@      0 x@ B    (('   T0    0 x _ (      (('   @>0    (('   BDB;    0 x@      0 x@     0 x@ }    0 x@ }    0 x@ z!}    (('   |@D|D
=    0 x@ {A    0 x@ {)     0 x@ x}!    0 x@     0 x@@/     (('  DDD|DJ=    (('    `p    (('   0    0 x@	 !    0 x@     0 x@     0 x@     0 x@     0 x@BG    (('         _ŀXXXW P P    XX=W P        XX=W P  !    XX=W P  T0    XXX|P T @ ?    XX=W P  @>0    XX=W P  BDB;    XX=W P  @ ?    XXW P  ?    XXW P }A|<    XXW P }Q}<    XXW P }_}<    XXW P |@D|D
=    XXW P }P}<    XXW P }J|
=    XXW P |@_|<    XX=W P @?    XX=W P @?    XX=W P DDD|DJ=    XX=W P   `p    XX=W P  0    XX=W P @    XX=W P   pp    XXW P   pp    XX=W P       XXW P   ?    XX=W P     XXW P       ?  `/     0@      0@ B    (   T0    0 (      (   @>0    (   BDB;    0@      0 @     0 @ }    0 @ }    0 @ z!}    ((   |@D|D
=    0 @ {A    0 @ {)     0 @ x}!    0@     0@@/     (  DDD|DJ=    (    `p    (   0    0@	 !    0@     0 @     0@     0 @     0@BG    ((         _ŀXXW P P    XX P        XX P  !    XX P  T0    XX|P T @ ?    XX P  @>0    XX P  BDB;    XX P  @ ?    XX P  ?    XX P }A|<    XX P }Q}<    XX P }_}<    XX P |@D|D
=    XX P }P}<    XX P }J|
=    XX P |@_|<    XX P @?    XX P @?    XX P DDD|DJ=    XX P   `p    XX P  0    XX P @    XX P   pp    XX P   pp    XX P       XX P   ?    XX P     XX P         @ @          @             @     B      @    T0     @     @ ?     @    @>0     @    BDB;     @    @ ?     @    ?     @   }B|$<      @   }R}$<     @   z z$"9     @   |@D|D
=     @   {{ 9     @   {yD;     @   xyD"9     @    @$?     @    ?     @    D|DJ=     @      `p     @    0     @   @"     @     p     @    p     @     '       @     ?     @        @        #D  A? @     "~@   @     "~@ @B     "~@  
c     "~@ "      "~@ ?      "~@ C     "~@       "~@     "~@}!C     "~@{QC     "~@z _C     "~@|`"C     "~@{P     "~@{JP     "~@x_PC     "~@ C     "~@@"C     "~@DB"C     "~@ @1     "~@   Rc     "~@ C     "~@      "~@#     "~@       "~@      "~@  !     "~@D @A      ɀ		|			     			       			 A    			 T0    		|		 @ ?    			 @>0    			 BDB;    			 @ ?    			 ?    			}A|<    			}Q}<    			}_}<    			|@D|D
=    			}P}<    			}J|
=    			|@_|<    			 @?    			 ?    			DGDDJ=    			  `p    			 0    			 @?    			  pp    			 pp    			       			  ?    			 @    		I      / OA!    (       (  B    $@#  T0    (  (      $@#  @>0    $@#  BDB;    (        (     ( }    ( {E    ( z!}    $@# |@D|D
=    ( {A    ( {)     ( x}!    (       ( @(    $@# DDD|DJ=    $@#   `p    $@#  0    (       (      (     (       (     (  BG    $@# "        @ @      @           @   B      @  T0     @   @ ?     @  @>0     @  BDB;     @  @ ?     @  ?     @ }B|$<      @ }R}$<     @ z z$"9     @ |@D|D
=     @ {{ 9     @ {yD;     @ xyD"9     @  @$?     @  ?     @  D|DJ=     @    `p     @  0     @ @"     @   p     @  p     @   '       @   ?     @      @      @ ?           @             @     B      @    T0     @     @ ?     @    @>0     @    BDB;     @    @ ?     @     ?     @    }B|$<      @    }R}$<     @    z z$"9     @    |@D|D
=     @    {{ 9     @    {yD;     @    xyD"9     @    @$?     @    B$?     @    FDD|DJ=     @      `p     @    0     @    @$?     @     p     @     p     @     '       @      ?     @         @    B     / ~@!<     ( BxA      ( BxA B    $@# /	 T0    (  A	      $@# /	 @>0    $@# /	 BDB;    ( BxA       ( BxA    ( BxA}    ( BxA{E    ( BxAz!}    $@# /	|@D|D
=    ( BxA{A    ( BxA{)     ( BxAx}!    ( BxA      ( BxA@(    $@# /	DDD|DJ=    $@# /	  `p    $@# /	 0    ( BxA      ( BxA     ( BxA    ( BxA      ( BxA    ( BxA BG    $@# /	      _XW _Q=QP    XW _       XW _ A    XW _ T0    XW _Q=T@ ?    XW _ @>0    XW _ BDB;    XW _ @ ?    XW _ ?    XW _}A|<    XW _}Q}<    XW _}_}<    XW _|@D|D
=    XW _}P}<    XW _}J|
=    XW _|@_|<    XW _ @?    XW _ ?    XW _DGDDJ=    XW _  `p    XW _ 0    XW _ @?    XW _  pp    XW _ pp    XW _       XW _  ?    XW _ @    XW _E      / ~@!     ( BA      ( BA B    $@# /  T0    (  A)      $@# /  @>0    $@# /  BDB;    ( BA       ( BxA    ( BxA}    ( BxA{E    ( BxAz!}    $@# /	|@D|D
=    ( BxA{A    ( BxA{)     ( BxAx}!    ( BA      ( BA@(    $@# / DDD|DJ=    $@# /   `p    $@# /  0    ( BA      ( BA     ( BxA    ( BA      ( BxA    ( BA BG    $@# /	      @ ?       @            @    B      @   T0     @   @ ?     @   @>0     @   BDB;     @   @ ?     @    ?     @   }B|$<      @   }R}$<     @   z z$"9     @   |@D|D
=     @   {{ 9     @   {yD;     @   xyD"9     @   @$?     @   P?     @   TD|DJ=     @    `p     @   0     @   @$?     @    p     @    p     @    '       @     ?     @        @   B       @ @           @              @      B      @     T0     @      @ ?     @     @>0     @     BDB;     @     @ ?     @     ?     @    }B|$<      @    }R}$<     @    z z$"9     @    |@D|D
=     @    {{ 9     @    {yD;     @    xyD"9     @     @$?     @    @$?     @    DDD|DJ=     @      `p     @     0     @     @$?     @      p     @     p     @      '       @      ?     @          @    B     / O      (        (   B    $@#   T0    (   (      $@#   @>0    $@#   BDB;    (         (      (  }    (  {E    (  z!}    $@#  |`D|D
=    (  {A    (  {)     (  x}!    (        (  @(    $@#  DDD|DJ=    $@#    `p    $@#   0    (        (       (  /    (        (      (   BG    $@#  "      ?  `/     0 @      0 @ B    (('   T0    0  _ (      (('   @>0    (('   BDB;    0 @      0 @     0 @ }    0 @ }    0 @ z!}    (('   |@D|D
=    0 @ {A    0 @ {)     0 @ x}!    0 @     0 @@(    (('  DDD|DJ=    (('    `p    (('   0    0 @	 !    0 @     0 @     0 @     0 @     0 @BG    (('         '!	HBB$! @     !!	xB9    @     !!	xB9  @B     !!	xB9   
c     !!	xBB΀ "       !!	xB9  ?      !!	xB9  C     !!	xB9        !!	xB9       !!	xB9  }!C     !!	xB9  })HC     !!	xB9  z _C     !!	xB9  |@"C     !!	xB9  {P     !!	xB9  {JP     !!	xB9  x_PC     !!	xB9 C     !!	xB9 @"C     !!	xB9 DB"C     !!	xB9  @1     !!	xB9    Rc     !!	xB9 @     !!	xB9       !!	xB9       !!	xB9       !!	xB9        !!	xB9  !     !!	xB9 @ @A      鈘f	     	         	   !    	   T0    f	  @ ?    	   @>0    	   BDB;    	   @ ?    	   ?    	  }A|<    	  }Q}<    	  }_}<    	  |@D|D
=    	  }P}<    	  }J|
=    	  |@_|<    	  @?    	  @?    	  DDD|DJ=    	    `p    	   0    	  @    	    pp    	    pp    	        	    ?    	      	        '!	xBB$! @     !!HB9    @     !!HB9  @B     !!HB9   
c     !!HBB΀ "       !!HB9  ?      !!HB9  C     !!HB9        !!HB9       !!HB9  }!C     !!HB9  })HC     !!HB9  z _C     !!HB9  |@"C     !!HB9  {P     !!HB9  {JP     !!HB9  x_PC     !!HB9 C     !!HB9 @"C     !!HB9 DB"C     !!HB9  @1     !!HB9    Rc     !!HB9 @     !!HB9       !!HB9       !!HB9       !!HB9        !!HB9  !     !!HB9 @ @A      鈘f	     		         		   !    		   T0    f	  @ ?    		   @>0    		   BDB;    		   @ ?    		   ?    		  }A|<    		  }Q}<    		  }_}<    		  |@D|D
=    		  }P}<    		  }J|
=    		  |@_|<    		  @?    		  @?    		  DDD|DJ=    		    `p    		   0    		  @    		    pp    		    pp    		        		    ?    		      		        >C	!0΀    xB@      xB@ B    B(N':   T0    xC\ (      B(N':   @>0    B(N':   BDB;    xB@      xB@     xB@ }    xB@ }    xB@ z!}    B(N':   |@D|D
=    xB@ {A    xB@ {)     xB@ x}!    xB@     xB@@/     B(N':  DDD|DJ=    B(N':    `p    B(N':   0    xB@	 !    xB@     xB@     xB@     xB@     xB@BG    B(N':         ^XXXXfP P    YY=W P        YY=W P  !    YY=W P  T0    XXXfP T @ ?    YY=W P  @>0    YY=W P  BDB;    YY=W P  @ ?    YYW P  ?    YYW P }A|<    YYW P }Q}<    YYW P }_}<    YYW P |@D|D
=    YYW P }P}<    YYW P }J|
=    YYW P |@_|<    YY=W P @?    YY=W P @?    YY=W P DDD|DJ=    YY=W P   `p    YY=W P  0    YY=W P @    YY=W P   pp    YYW P   pp    YY=W P       YYW P   ?    YY=W P     YYW P       >Oa'0΀    N@      N@ B    BB:   T0    C	 (      BB:   @>0    BB:   BDB;    N@      N@     N@ }    N@ }    N@ z!}    N(B:   |@D|D
=    N@ {A    N@ {)     N@ x}!    N@     N@@/     BB:  DDD|DJ=    BB:    `p    BB:   0    N@	 !    N@     N@     N@     N@     N@BG    N(B:         ^X؅XXfP P    YY P        YY P  !    YY P  T0    X؅XfP T @ ?    YY P  @>0    YY P  BDB;    YY P  @ ?    YY P  ?    YY P }A|<    YY P }Q}<    YY P }_}<    YY P |@D|D
=    YY P }P}<    YY P }J|
=    YY P |@_|<    YY P @?    YY P @?    YY P DDD|DJ=    YY P   `p    YY P  0    YY P @    YY P   pp    YY P   pp    YY P       YY P   ?    YY P     YY P        }AA         }A            }A     B     }A    T0     B     @ ?    }A    @>0    }A    BDB;    }A    @ ?     B    ?     B   }B|$<      B   }R}$<     B   z z$"9     B   |@D|D
=     B   {{ 9     B   {yD;     B   xyD"9    }A    @$?    }A    ?    }A    D|DJ=    }A      `p    }A    0    }A   @"    }A     p     B    p    }A     '       B     ?    }A        B        '!	HBB A? @     !!@   @     !!@ @B     !!@  
c     !!@ "      !!@ ?      !!@ C     !!@       !!@     !!@}!C     !!@{QC     !!@z _C     !!@|`"C     !!@{P     !!@{JP     !!@x_PC     !!@ C     !!@@"C     !!@DB"C     !!@ @1     !!@   Rc     !!@ C     !!@      !!@#     !!@       !!@      !!@  !     !!@D @A      鈘f			     i		       i		 A    i		 T0    		~		 @ ?    i		 @>0    i		 BDB;    i		 @ ?    i		 ?    i		}A|<    i		}Q}<    i		}_}<    i		|@D|D
=    i		}P}<    i		}J|
=    i		|@_|<    i		 @?    i		 ?    i		DGDDJ=    i		  `p    i		 0    i		 @?    i		  pp    i		 pp    i		       i		  ?    i		 @    i	I      >C\A!    Ђ      Ђ B    B':  T0    Ђ (      B':  @>0    B':  BDB;    Ђ       Ђ    Ђ}    Ђ{E    Ђz!}    B': |@D|D
=    Ђ{A    Ђ{)     Ђx}!    Ђ      Ђ@(    B': DDD|DJ=    B':   `p    B':  0    Ђ      Ђ     Ђ    Ђ      Ђ    Ђ BG    B': "       }AA     }A          }A   B     }A  T0     B   @ ?    }A  @>0    }A  BDB;    }A  @ ?     B  ?     B }B|$<      B }R}$<     B z z$"9     B |@D|D
=     B {{ 9     B {yD;     B xyD"9    }A  @$?    }A  ?    }A  D|DJ=    }A    `p    }A  0    }A @"    }A   p     B  p    }A   '       B   ?    }A      B      B ?           B             B     B      B    T0     B     @ ?     B    @>0     B    BDB;     B    @ ?     B     ?     B    }B|$<      B    }R}$<     B    z z$"9     B    |@D|D
=     B    {{ 9     B    {yD;     B    xyD"9     B    @$?     B    B$?     B    FDD|DJ=     B      `p     B    0     B    @$?     B     p     B     p     B     '       B      ?     B         B    B     >B@!<     BxA      BxA B    B': /	 T0     A	      B': /	 @>0    B': /	 BDB;    BxA       BxA    BxA}    BxA{E    BxAz!}    B': /	|@D|D
=    BxA{A    BxA{)     BxAx}!    BxA      BxA@(    B': /	DDD|DJ=    B': /	  `p    B': /	 0    BxA      BxA     BxA    BxA      BxA    BxA BG    B': /	      ^XVe _Q=QP    XVe _       XVe _ A    XVe _ T0    YW _Q=T@ ?    XVe _ @>0    XVe _ BDB;    XVe _ @ ?    XVe _ ?    XVe _}A|<    XVe _}Q}<    XVe _}_}<    XVe _|@D|D
=    XVe _}P}<    XVe _}J|
=    XVe _|@_|<    XVe _ @?    XVe _ ?    XVe _DGDDJ=    XVe _  `p    XVe _ 0    XVe _ @?    XVe _  pp    XVe _ pp    XVe _       XVe _  ?    XVe _ @    XVe _E      >B@!     BA      BA B    B': /  T0     A)      B': /  @>0    B': /  BDB;    BA       BxA    BxA}    BxA{E    BxAz!}    B': /	|@D|D
=    BxA{A    BxA{)     BxAx}!    BA      BA@(    B': / DDD|DJ=    B': /   `p    B': /  0    BA      BA     BxA    BA      BxA    BA BG    B': /	      B ?       B            B    B      B   T0     B   @ ?     B   @>0     B   BDB;     B   @ ?     B    ?     B   }B|$<      B   }R}$<     B   z z$"9     B   |@D|D
=     B   {{ 9     B   {yD;     B   xyD"9     B   @$?     B   P?     B   TD|DJ=     B    `p     B   0     B   @$?     B    p     B    p     B    '       B     ?     B        B   B      }AA           B              B      B      B     T0     B      @ ?     B     @>0     B     BDB;     B     @ ?     B     ?     B    }B|$<      B    }R}$<     B    z z$"9     B    |@D|D
=     B    {{ 9     B    {yD;     B    xyD"9     B     @$?     B    @$?     B    DDD|DJ=     B      `p     B     0     B     @$?     B      p     B     p     B      '       B      ?     B          B    B     >C\               B    B':   T0      (      B':   @>0    B':   BDB;                  }     {E     z!}    B':  |`D|D
=     {A     {)      x}!            @(    B':  DDD|DJ=    B':    `p    B':   0                  /                  BG    B':  "      >Ca!0΀    B@      B@ B    B(B':   T0    C\ (      B(B':   @>0    B(B':   BDB;    B@      B@     B@ }    B@ }    B@ z!}    B(B':   |@D|D
=    B@ {A    B@ {)     B@ x}!    B@     B@@(    B(B':  DDD|DJ=    B(B':    `p    B(B':   0    B@	 !    B@     B@     B@     B@     B@BG    B(B':         ' @" $ @       x@   @       x@ @B       x@  
c       x@  "         x@ ?        x@ C       x@         x@        x@ }!C       x@ })HC       x@ z _C       x@ |@"C       x@ {P       x@ {JP       x@ x_PC       x@C       x@@"C       x@DB"C       x@ @1       x@   Rc       x@@       x@        x@        x@        x@         x@ !       x@@ @A      Iπ		|	     Iπ	|        Iπ	|  !    Iπ	|  T0    Iπ	  @ ?    Iπ	|  @>0    Iπ	|  BDB;    Iπ	|  @ ?    Iπ	|  ?    Iπ	| }A|<    Iπ	| }Q}<    Iπ	| }_}<    Iπ	| |@D|D
=    Iπ	| }P}<    Iπ	| }J|
=    Iπ	| |@_|<    Iπ	| @?    Iπ	| @?    Iπ	| DDD|DJ=    Iπ	|   `p    Iπ	|  0    Iπ	| @    Iπ	|   pp    Iπ	|   pp    Iπ	|       Iπ	|   ?    Iπ	|     Iπ	|       ' p" $ @       H@   @       H@ @B       H@  
c       H@  "         H@ ?        H@ C       H@         H@        H@ }!C       H@ })HC       H@ z _C       H@ |@"C       H@ {P       H@ {JP       H@ x_PC       H@C       H@@"C       H@DB"C       H@ @1       H@   Rc       H@@       H@        H@        H@        H@         H@ !       H@@ @A      Oɀ	|	     Iɀ|        Iɀ|  !    Iɀ|  T0    Iɀ  @ ?    Iɀ|  @>0    Iɀ|  BDB;    Iɀ|  @ ?    Iɀ|  ?    Iɀ| }A|<    Iɀ| }Q}<    Iɀ| }_}<    Iɀ| |@D|D
=    Iɀ| }P}<    Iɀ| }J|
=    Iɀ| |@_|<    Iɀ| @?    Iɀ| @?    Iɀ| DDD|DJ=    Iɀ|   `p    Iɀ|  0    Iɀ| @    Iɀ|   pp    Iɀ|   pp    Iɀ|       Iɀ|   ?    Iɀ|     Iɀ|       ?#0     Dx _       Dx _ B     "/(~  T0     Dx ` (       "/(~  @>0     "/(~  BDB;     Dx _       Dx _      Dx _ }     Dx _ }     Dx _ z!}     "/(~  |@D|D
=     Dx _ {A     Dx _ {)      Dx _ x}!     Dx _      Dx _@/      "/(~ DDD|DJ=     "/(~   `p     "/(~  0     Dx _	 !     Dx _      Dx _      Dx _      Dx _      Dx _BG     "/(~        _PE_݀XX|P P    PE_݀X|P        PE_݀X|P  !    PE_݀X|P  T0    PE_݀XW T @ ?    PE_݀X|P  @>0    PE_݀X|P  BDB;    PE_݀X|P  @ ?    PE_݀X|P  ?    PE_݀X|P }A|<    PE_݀X|P }Q}<    PE_݀X|P }_}<    PE_݀X|P |@D|D
=    PE_݀X|P }P}<    PE_݀X|P }J|
=    PE_݀X|P |@_|<    PE_݀X|P @?    PE_݀X|P @?    PE_݀X|P DDD|DJ=    PE_݀X|P   `p    PE_݀X|P  0    PE_݀X|P @    PE_݀X|P   pp    PE_݀X|P   pp    PE_݀X|P       PE_݀X|P   ?    PE_݀X|P     PE_݀X|P       ?/`0     D _       D _ B     "~  T0     D (       "~  @>0     "~  BDB;     D _       D߈      D߈ }     D߈ }     D߈ z!}     "(~  |@D|D
=     D߈ {A     D߈ {)      D߈ x}!     D _      D _@/      "~ DDD|DJ=     "~   `p     "~  0     D _	 !     D _      D߈      D _      D߈      D _BG     "(~        _PEŀXX|P P    P]_Ł|P        P]_Ł|P  !    P]_Ł|P  T0    PEŀXW T @ ?    P]_Ł|P  @>0    P]_Ł|P  BDB;    P]_Ł|P  @ ?    PEŀX|P  ?    PEŀX|P }A|<    PEŀX|P }Q}<    PEŀX|P }_}<    PEŀX|P |@D|D
=    PEŀX|P }P}<    PEŀX|P }J|
=    PEŀX|P |@_|<    P]_Ł|P @?    P]_Ł|P @?    P]_Ł|P DDD|DJ=    P]_Ł|P   `p    P]_Ł|P  0    P]_Ł|P @    P]_Ł|P   pp    PEŀX|P   pp    P]_Ł|P       PEŀX|P   ?    P]_Ł|P     PEŀX|P         '@ ?        @          @  B      @ T0     @  @ ?     @ @>0     @ BDB;     @ @ ?     ?   ?     ?  }B|$<      ?  }R}$<     ?  z z$"9     ?  |@D|D
=     ?  {{ 9     ?  {yD;     ?  xyD"9     @ @$?     @ ?     @ DD|DJ=     @  `p     @ 0     @ @$?     @  p     ?   p     @  '       ?    ?     @      ?        # HG   A? @      	ȀD  #  @      	ȀD  #@B      	ȀD  # 
c      	ȀC  "       	ȀD  "?       	ȀD  C      	ȀD  #       	ȀC      	ȀC}!C      	ȀC{QC      	ȀCz _C      	ȀC|@"C      	ȀC{P      	ȀC{JP      	ȀCx_PC      	ȀD  #C      	ȀD @"C      	ȀD Db"C      	ȀD  @1      	ȀD    Rc      	ȀD  !C      	ȀD  #      	ȀC      	ȀD  #       	ȀC       	ȀD  # !      	ȀCD @A      )			     I	       I	 A    I	 T0    I	  @ ?    I	 @>0    I	 BDB;    I	 @ ?    I	|	 ?    I	|	}A|<    I	|	}Q}<    I	|	}_}<    I	|	|@D|D
=    I	|	}P}<    I	|	}J|
=    I	|	|@_|<    I	 @?    I	 ?    I	DDDJ=    I	 `p    I	 0    I	 @?    I	  pp    I	|	 pp    I	       I	|	  ?    I	 @    I	|I      /P	!     %~B /      %~B /B     $@#/ 'T0     %B (       $@#/ $@>0     $@#/ BDB;     %~B /       %     %}     %{E     %z!}     $? |@D|D
=     %{A     %{)      %x}!     %~B /      %~B@(     $@#/DdD|DJ=     $@#/  `p     $@#/ !0     %~B '      %~B /     %     %~B /      %     %~B /BG     $? "        '@ ?     @          @  B      @ T0     @  @ ?     @ @>0     @ BDB;     @ @ ?     ?  ?     ? }B|$<      ? }R}$<     ? z z$"9     ? |@D|D
=     ? {{ 9     ? {yD;     ? xyD"9     @ @$?     @ ?     @ DD|DJ=     @  `p     @ 0     @ @$?     @  p     ?  p     @  '       ?   ?     @      ?       @          @          @  B      @ T0     ?   B ?     @ @>0     @ BDB;     @ @ ?     ?   ?     ?  }B|$<      ?  {z$"9     ?  z z$"9     ?  |@D|D
=     ?  {{ 9     ?  {yD;     ?  xyD"9     @ @$?     @ B$?     @ FDD|DJ=     @   `p     @ 0     @ @$?     @  p     ?   p     @  '       ?    ?     @      ?        /~@!<      %s A/      %s A/B     $? 'T0     %s @)       $? $@>0     $? BDB;     %s A/       %s A     %s A}     %s A{E     %s Az!}     $? |@D|D
=     %s A{A     %s A{)      %s Ax}!     %s A/      %s AH(     $? LdD|DJ=     $? 
  `p     $? !0     %s A'      %s A/     %s A     %s A/      %s A     %s A/BG     $?       __W _Q=QP    ~P%~T>PQW      ~P%~T>PQWA    ~P%~T>PQWT0    PEX|P _U@ ?    ~P%~T>PQT@>0    ~P%~T>PQBDB;    ~P%~T>PQW@ ?    ~P%~T>PQ ?    ~P%~T>PQ}A|<    ~P%~T>PQ}Q}<    ~P%~T>PQ}_}<    ~P%~T>PQ|@D|D
=    ~P%~T>PQ}P}<    ~P%~T>PQ}J|
=    ~P%~T>PQ|@_|<    ~P%~T>PQW@?    ~P%~T>PQT?    ~P%~T>PQTWDDJ=    ~P%~T>PQP `p    ~P%~T>PQQ0    ~P%~T>PQS@?    ~P%~T>PQW pp    ~P%~T>PQ pp    ~P%~T>PQW      ~P%~T>PQ  ?    ~P%~T>PQW@    ~P%~T>PQE      /~@!      % A/      % A/B     $? 'T0     % @)       $? $@>0     $? BDB;     % A/       % A     % A}     % A{E     % Az!}     $? |@D|D
=     % A{A     % A{)      % Ax}!     % A/      % AH(     $? LdD|DJ=     $? 
  `p     $? !0     % A'      % A/     % A     % A/      % A     % A/BG     $?       @      @          @  B      @ T0     ?  H ?     @ @>0     @ BDB;     @ @ ?     ?  ?     ? }B|$<      ? {z$"9     ? z z$"9     ? |@D|D
=     ? {{ 9     ? {yD;     ? xyD"9     @ @$?     @ P
?     @ TL|DJ=     @ (`p     @ 0     @ @$?     @  p     ?  p     @  '       ?   ?     @      ? (        '@ ?         @           @   B      @  T0     ?    @ ?     @  @>0     @  BDB;     @  @ ?     ?   ?     ?  }B|$<      ?  {z$"9     ?  z z$"9     ?  |@D|D
=     ?  {{ 9     ?  {yD;     ?  xyD"9     @  @$?     @ @$?     @ DDD|DJ=     @   `p     @  0     @  @$?     @   p     ?   p     @   '       ?    ?     @       ?        /P	       %~@ /      %~@ /B     $@# / 'T0     % @ (       $@# / $@>0     $@# / BDB;     %~@ /       %      % }     % {E     % z!}     $? |@D|D
=     % {A     % {)      % x}!     %~@ /      %~@@(     $@# /DdD|DJ=     $@# /  `p     $@# / !0     %~@ '      %~@ /     %      %~@ /      %      %~@ /BG     $? "      ?#`0     D _       D _ B     "/(~  T0     D ` (       "/(~  @>0     "/(~  BDB;     D _       D _      D _ }     D _ }     D _ z!}     "/(~  |@D|D
=     D _ {A     D _ {)      D _ x}!     D _      D _@(     "/(~ DDD|DJ=     "/(~   `p     "/(~  0     D _	 !     D _      D _      D _      D _      D _BG     "/(~        ' H"AD#  @     $ x"?    @     $ x"?  @B     $ x"?   
c     $ x"A "       $ x"?  ?      $ x"?  C     $ x"?        $ x"?       $ x"?  }!C     $ x"?  })HC     $ x"?  z _C     $ x"?  |@"C     $ x"?  {P     $ x"?  {JP     $ x"?  x_PC     $ x"? C     $ x"? @"C     $ x"? DB"C     $ x"?  @1     $ x"?    Rc     $ x"? @     $ x"?       $ x"?       $ x"?       $ x"?        $ x"?  !     $ x"? @ @A      ɄIOI 	     IO         IO   !    IO   T0    IOI|	  @ ?    IO   @>0    IO   BDB;    IO   @ ?    IO   ?    IO  }A|<    IO  }Q}<    IO  }_}<    IO  |@D|D
=    IO  }P}<    IO  }J|
=    IO  |@_|<    IO  @?    IO  @?    IO  DDD|DJ=    IO    `p    IO   0    IO  @    IO    pp    IO    pp    IO        IO    ?    IO      IO        ' x"AG#  @     $ H"?    @     $ H"?  @B     $ H"?   
c     $ H"A "       $ H"?  ?      $ H"?  C     $ H"?        $ H"?       $ H"?  }!C     $ H"?  })HC     $ H"?  z _C     $ H"?  |@"C     $ H"?  {P     $ H"?  {JP     $ H"?  x_PC     $ H"? C     $ H"? @"C     $ H"? DB"C     $ H"?  @1     $ H"?    Rc     $ H"? @     $ H"?       $ H"?       $ H"?       $ H"?        $ H"?  !     $ H"? @ @A      ɄOIO 	     II         II   !    II   T0    IIO|	  @ ?    II   @>0    II   BDB;    II   @ ?    II   ?    II  }A|<    II  }Q}<    II  }_}<    II  |@D|D
=    II  }P}<    II  }J|
=    II  |@_|<    II  @?    II  @?    II  DDD|DJ=    II    `p    II   0    II  @    II    pp    II    pp    II        II    ?    II      II        ?#/     0Fx"@      0Fx"@ B    ("(.'   T0    0Fx#_ (      ("(.'   @>0    ("(.'   BDB;    0Fx"@      0Fx"@     0Fx"@ }    0Fx"@ }    0Fx"@ z!}    ("(.'   |@D|D
=    0Fx"@ {A    0Fx"@ {)     0Fx"@ x}!    0Fx"@     0Fx"@@/     ("(.'  DDD|DJ=    ("(.'    `p    ("(.'   0    0Fx"@	 !    0Fx"@     0Fx"@     0Fx"@     0Fx"@     0Fx"@BG    ("(.'         _ńXEX]XEW P P    XEX}W P        XEX}W P  !    XEX}W P  T0    XEX]XE|P T @ ?    XEX}W P  @>0    XEX}W P  BDB;    XEX}W P  @ ?    XEX]W P  ?    XEX]W P }A|<    XEX]W P }Q}<    XEX]W P }_}<    XEX]W P |@D|D
=    XEX]W P }P}<    XEX]W P }J|
=    XEX]W P |@_|<    XEX}W P @?    XEX}W P @?    XEX}W P DDD|DJ=    XEX}W P   `p    XEX}W P  0    XEX}W P @    XEX}W P   pp    XEX]W P   pp    XEX}W P       XEX]W P   ?    XEX}W P     XEX]W P       ?/`/     0F.@      0F.@ B    (""   T0    0F#߈ (      (""   @>0    (""   BDB;    0F.@      0^.@     0^.@ }    0^.@ }    0^.@ z!}    (.("   |@D|D
=    0^.@ {A    0^.@ {)     0^.@ x}!    0F.@     0F.@@/     (""  DDD|DJ=    (""    `p    (""   0    0F.@	 !    0F.@     0^.@     0F.@     0^.@     0F.@BG    (.("         _ńXEEX]W P P    X]XE P        X]XE P  !    X]XE P  T0    XEEX]|P T @ ?    X]XE P  @>0    X]XE P  BDB;    X]XE P  @ ?    X]XE P  ?    X]XE P }A|<    X]XE P }Q}<    X]XE P }_}<    X]XE P |@D|D
=    X]XE P }P}<    X]XE P }J|
=    X]XE P |@_|<    X]XE P @?    X]XE P @?    X]XE P DDD|DJ=    X]XE P   `p    X]XE P  0    X]XE P @    X]XE P   pp    X]XE P   pp    X]XE P       X]XE P   ?    X]XE P     X]XE P        @$@#         @#            @#     B     @#    T0    @#     @ ?    @#    @>0    @#    BDB;    @#    @ ?    @#    ?    @#   }B|$<     @#   }R}$<    @#   z z$"9    @#   |@D|D
=    @#   {{ 9    @#   {yD;    @#   xyD"9    @#    @$?    @#    ?    @#    D|DJ=    @#      `p    @#    0    @#   @"    @#     p    @#    p    @#     '      @#     ?    @#       @#        #HD  A? @     "	H~@   @     "	H~@ @B     "	H~@  
c     "	H~@ "      "	H~@ ?      "	H~@ C     "	H~@       "	H~@     "	H~@}!C     "	H~@{QC     "	H~@z _C     "	H~@|`"C     "	H~@{P     "	H~@{JP     "	H~@x_PC     "	H~@ C     "	H~@@"C     "	H~@DB"C     "	H~@ @1     "	H~@   Rc     "	H~@ C     "	H~@      "	H~@#     "	H~@       "	H~@      "	H~@  !     "	H~@D @A      ɄII|			     I		       I		 A    I		 T0    II|		 @ ?    I		 @>0    I		 BDB;    I		 @ ?    I		 ?    I		}A|<    I		}Q}<    I		}_}<    I		|@D|D
=    I		}P}<    I		}J|
=    I		|@_|<    I		 @?    I		 ?    I		DGDDJ=    I		  `p    I		 0    I		 @?    I		  pp    I		 pp    I		       I		  ?    I		 @    I	I      /OA!    (%      (% B    $A#  T0    (% (      $A#  @>0    $A#  BDB;    (%       (%    (%}    (%{E    (%z!}    $A# |@D|D
=    (%{A    (%{)     (%x}!    (%      (%@(    $A# DDD|DJ=    $A#   `p    $A#  0    (%      (%     (%    (%      (%    (% BG    $A# "       @$@#     @#          @#   B     @#  T0    @#   @ ?    @#  @>0    @#  BDB;    @#  @ ?    @#  ?    @# }B|$<     @# }R}$<    @# z z$"9    @# |@D|D
=    @# {{ 9    @# {yD;    @# xyD"9    @#  @$?    @#  ?    @#  D|DJ=    @#    `p    @#  0    @# @"    @#   p    @#  p    @#   '      @#   ?    @#     @#     @$?          @#            @#     B     @#    T0    @#     @ ?    @#    @>0    @#    BDB;    @#    @ ?    @#     ?    @#    }B|$<     @#    }R}$<    @#    z z$"9    @#    |@D|D
=    @#    {{ 9    @#    {yD;    @#    xyD"9    @#    @$?    @#    B$?    @#    FDD|DJ=    @#      `p    @#    0    @#    @$?    @#     p    @#     p    @#     '      @#      ?    @#        @#    B     /~@!<     (%BxA      (%BxA B    $A# /	 T0    (% A	      $A# /	 @>0    $A# /	 BDB;    (%BxA       (%BxA    (%BxA}    (%BxA{E    (%BxAz!}    $A# /	|@D|D
=    (%BxA{A    (%BxA{)     (%BxAx}!    (%BxA      (%BxA@(    $A# /	DDD|DJ=    $A# /	  `p    $A# /	 0    (%BxA      (%BxA     (%BxA    (%BxA      (%BxA    (%BxA BG    $A# /	      _X%W _Q=QP    ~T%BS _       ~T%BS _ A    ~T%BS _ T0    XEW _Q=T@ ?    ~T%BS _ @>0    ~T%BS _ BDB;    ~T%BS _ @ ?    ~T%BS _ ?    ~T%BS _}A|<    ~T%BS _}Q}<    ~T%BS _}_}<    ~T%BS _|@D|D
=    ~T%BS _}P}<    ~T%BS _}J|
=    ~T%BS _|@_|<    ~T%BS _ @?    ~T%BS _ ?    ~T%BS _DGDDJ=    ~T%BS _  `p    ~T%BS _ 0    ~T%BS _ @?    ~T%BS _  pp    ~T%BS _ pp    ~T%BS _       ~T%BS _  ?    ~T%BS _ @    ~T%BS _E      /~@!     (%BA      (%BA B    $A# /  T0    (% A)      $A# /  @>0    $A# /  BDB;    (%BA       (%BxA    (%BxA}    (%BxA{E    (%BxAz!}    $A# /	|@D|D
=    (%BxA{A    (%BxA{)     (%BxAx}!    (%BA      (%BA@(    $A# / DDD|DJ=    $A# /   `p    $A# /  0    (%BA      (%BA     (%BxA    (%BA      (%BxA    (%BA BG    $A# /	     @$?      @#           @#    B     @#   T0    @#   @ ?    @#   @>0    @#   BDB;    @#   @ ?    @#    ?    @#   }B|$<     @#   }R}$<    @#   z z$"9    @#   |@D|D
=    @#   {{ 9    @#   {yD;    @#   xyD"9    @#   @$?    @#   P?    @#   TD|DJ=    @#    `p    @#   0    @#   @$?    @#    p    @#    p    @#    '      @#     ?    @#       @#   B      @$@#          @#             @#      B     @#     T0    @#      @ ?    @#     @>0    @#     BDB;    @#     @ ?    @#     ?    @#    }B|$<     @#    }R}$<    @#    z z$"9    @#    |@D|D
=    @#    {{ 9    @#    {yD;    @#    xyD"9    @#     @$?    @#    @$?    @#    DDD|DJ=    @#      `p    @#     0    @#     @$?    @#      p    @#     p    @#      '      @#      ?    @#         @#    B     /O      (%       (%  B    $A#   T0    (%  (      $A#   @>0    $A#   BDB;    (%        (%     (% }    (% {E    (% z!}    $A#  |`D|D
=    (% {A    (% {)     (% x}!    (%       (% @(    $A#  DDD|DJ=    $A#    `p    $A#   0    (%       (%      (% /    (%       (%     (%  BG    $A#  "      ?#`/     0F"@      0F"@ B    ("("'   T0    0F#_ (      ("("'   @>0    ("("'   BDB;    0F"@      0F"@     0F"@ }    0F"@ }    0F"@ z!}    ("("'   |@D|D
=    0F"@ {A    0F"@ {)     0F"@ x}!    0F"@     0F"@@(    ("("'  DDD|DJ=    ("("'    `p    ("("'   0    0F"@	 !    0F"@     0F"@     0F"@     0F"@     0F"@BG    ("("'         $!!	OB#  @     $?x"?    @     $?x"?  @B     $?x"?   
c     $?x"A "       $?x"?  ?      $?x"?  C     $?x"?        $?x"?       $?x"?  }!C     $?x"?  })HC     $?x"?  z _C     $?x"?  |@"C     $?x"?  {P     $?x"?  {JP     $?x"?  x_PC     $?x"? C     $?x"? @"C     $?x"? DB"C     $?x"?  @1     $?x"?    Rc     $?x"? @     $?x"?       $?x"?       $?x"?       $?x"?        $?x"?  !     $?x"? @ @A       	     IO         IO   !    IO   T0    IOI|	  @ ?    IO   @>0    IO   BDB;    IO   @ ?    IO   ?    IO  }A|<    IO  }Q}<    IO  }_}<    IO  |@D|D
=    IO  }P}<    IO  }J|
=    IO  |@_|<    IO  @?    IO  @?    IO  DDD|DJ=    IO    `p    IO   0    IO  @    IO    pp    IO    pp    IO        IO    ?    IO      IO        $!!	B#  @     $?H"?    @     $?H"?  @B     $?H"?   
c     $?H"A "       $?H"?  ?      $?H"?  C     $?H"?        $?H"?       $?H"?  }!C     $?H"?  })HC     $?H"?  z _C     $?H"?  |@"C     $?H"?  {P     $?H"?  {JP     $?H"?  x_PC     $?H"? C     $?H"? @"C     $?H"? DB"C     $?H"?  @1     $?H"?    Rc     $?H"? @     $?H"?       $?H"?       $?H"?       $?H"?        $?H"?  !     $?H"? @ @A       	     II         II   !    II   T0    IIO|	  @ ?    II   @>0    II   BDB;    II   @ ?    II   ?    II  }A|<    II  }Q}<    II  }_}<    II  |@D|D
=    II  }P}<    II  }J|
=    II  |@_|<    II  @?    II  @?    II  DDD|DJ=    II    `p    II   0    II  @    II    pp    II    pp    II        II    ?    II      II        0	!/     0Gx"@      0Gx"@ B    ("(.'   T0    0Gx#_ (      ("(.'   @>0    ("(.'   BDB;    0Gx"@      0Gx"@     0Gx"@ }    0Gx"@ }    0Gx"@ z!}    ("(.'   |@D|D
=    0Gx"@ {A    0Gx"@ {)     0Gx"@ x}!    0Gx"@     0Gx"@@/     ("(.'  DDD|DJ=    ("(.'    `p    ("(.'   0    0Gx"@	 !    0Gx"@     0Gx"@     0Gx"@     0Gx"@     0Gx"@BG    ("(.'         XXXXW P P    XEX}W P        XEX}W P  !    XEX}W P  T0    XEX]XE|P T @ ?    XEX}W P  @>0    XEX}W P  BDB;    XEX}W P  @ ?    XEX]W P  ?    XEX]W P }A|<    XEX]W P }Q}<    XEX]W P }_}<    XEX]W P |@D|D
=    XEX]W P }P}<    XEX]W P }J|
=    XEX]W P |@_|<    XEX}W P @?    XEX}W P @?    XEX}W P DDD|DJ=    XEX}W P   `p    XEX}W P  0    XEX}W P @    XEX}W P   pp    XEX]W P   pp    XEX}W P       XEX]W P   ?    XEX}W P     XEX]W P       0a'/     0G.@      0G.@ B    (""   T0    0G#߈ (      (""   @>0    (""   BDB;    0G.@      0_.@     0_.@ }    0_.@ }    0_.@ z!}    (.("   |@D|D
=    0_.@ {A    0_.@ {)     0_.@ x}!    0G.@     0G.@@/     (""  DDD|DJ=    (""    `p    (""   0    0G.@	 !    0G.@     0_.@     0G.@     0_.@     0G.@BG    (.("         XX؅XW P P    X]XE P        X]XE P  !    X]XE P  T0    XEEX]|P T @ ?    X]XE P  @>0    X]XE P  BDB;    X]XE P  @ ?    X]XE P  ?    X]XE P }A|<    X]XE P }Q}<    X]XE P }_}<    X]XE P |@D|D
=    X]XE P }P}<    X]XE P }J|
=    X]XE P |@_|<    X]XE P @?    X]XE P @?    X]XE P DDD|DJ=    X]XE P   `p    X]XE P  0    X]XE P @    X]XE P   pp    X]XE P   pp    X]XE P       X]XE P   ?    X]XE P     X]XE P        @$@$?       @'@#            @'@#     B     @'@#    T0    @'@#     @ ?    @'@#    @>0    @'@#    BDB;    @'@#    @ ?    @'@#    ?    @'@#   }B|$<     @'@#   }R}$<    @'@#   z z$"9    @'@#   |@D|D
=    @'@#   {{ 9    @'@#   {yD;    @'@#   xyD"9    @'@#    @$?    @'@#    ?    @'@#    D|DJ=    @'@#      `p    @'@#    0    @'@#   @"    @'@#     p    @'@#    p    @'@#     '      @'@#     ?    @'@#       @'@#        "	HD  A? @     A#H~@   @     A#H~@ @B     A#H~@  
c     A#H~@ "      A#H~@ ?      A#H~@ C     A#H~@       A#H~@     A#H~@}!C     A#H~@{QC     A#H~@z _C     A#H~@|`"C     A#H~@{P     A#H~@{JP     A#H~@x_PC     A#H~@ C     A#H~@@"C     A#H~@DB"C     A#H~@ @1     A#H~@   Rc     A#H~@ C     A#H~@      A#H~@#     A#H~@       A#H~@      A#H~@  !     A#H~@D @A      IɄI		     Ʉ		       Ʉ		 A    Ʉ		 T0    II|		 @ ?    Ʉ		 @>0    Ʉ		 BDB;    Ʉ		 @ ?    Ʉ		 ?    Ʉ		}A|<    Ʉ		}Q}<    Ʉ		}_}<    Ʉ		|@D|D
=    Ʉ		}P}<    Ʉ		}J|
=    Ʉ		|@_|<    Ʉ		 @?    Ʉ		 ?    Ʉ		DGDDJ=    Ʉ		  `p    Ʉ		 0    Ʉ		 @?    Ʉ		  pp    Ʉ		 pp    Ʉ		       Ʉ		  ?    Ʉ		 @    Ʉ	I      (%PI!    A/      A/ B    A'A#  T0    A/ (      A'A#  @>0    A'A#  BDB;    A/       A/    A/}    A/{E    A/z!}    A'A# |@D|D
=    A/{A    A/{)     A/x}!    A/      A/@(    A'A# DDD|DJ=    A'A#   `p    A'A#  0    A/      A/     A/    A/      A/    A/ BG    A'A# "       @$@$?    @'@#          @'@#   B     @'@#  T0    @'@#   @ ?    @'@#  @>0    @'@#  BDB;    @'@#  @ ?    @'@#  ?    @'@# }B|$<     @'@# }R}$<    @'@# z z$"9    @'@# |@D|D
=    @'@# {{ 9    @'@# {yD;    @'@# xyD"9    @'@#  @$?    @'@#  ?    @'@#  D|DJ=    @'@#    `p    @'@#  0    @'@# @"    @'@#   p    @'@#  p    @'@#   '      @'@#   ?    @'@#     @'@#     @$@#         @'@#            @'@#     B     @'@#    T0    @'@#     @ ?    @'@#    @>0    @'@#    BDB;    @'@#    @ ?    @'@#     ?    @'@#    }B|$<     @'@#    }R}$<    @'@#    z z$"9    @'@#    |@D|D
=    @'@#    {{ 9    @'@#    {yD;    @'@#    xyD"9    @'@#    @$?    @'@#    B$?    @'@#    FDD|DJ=    @'@#      `p    @'@#    0    @'@#    @$?    @'@#     p    @'@#     p    @'@#     '      @'@#      ?    @'@#        @'@#    B     (%~@!<     A/BxA      A/BxA B    A'A# /	 T0    A/ A	      A'A# /	 @>0    A'A# /	 BDB;    A/BxA       A/BxA    A/BxA}    A/BxA{E    A/BxAz!}    A'A# /	|@D|D
=    A/BxA{A    A/BxA{)     A/BxAx}!    A/BxA      A/BxA@(    A'A# /	DDD|DJ=    A'A# /	  `p    A'A# /	 0    A/BxA      A/BxA     A/BxA    A/BxA      A/BxA    A/BxA BG    A'A# /	      X%_W _Q=QP    BWBS _       BWBS _ A    BWBS _ T0    _ńW _Q=T@ ?    BWBS _ @>0    BWBS _ BDB;    BWBS _ @ ?    BWBS _ ?    BWBS _}A|<    BWBS _}Q}<    BWBS _}_}<    BWBS _|@D|D
=    BWBS _}P}<    BWBS _}J|
=    BWBS _|@_|<    BWBS _ @?    BWBS _ ?    BWBS _DGDDJ=    BWBS _  `p    BWBS _ 0    BWBS _ @?    BWBS _  pp    BWBS _ pp    BWBS _       BWBS _  ?    BWBS _ @    BWBS _E      (%~@!     A/BA      A/BA B    A'A# /  T0    A/ A)      A'A# /  @>0    A'A# /  BDB;    A/BA       A/BxA    A/BxA}    A/BxA{E    A/BxAz!}    A'A# /	|@D|D
=    A/BxA{A    A/BxA{)     A/BxAx}!    A/BA      A/BA@(    A'A# / DDD|DJ=    A'A# /   `p    A'A# /  0    A/BA      A/BA     A/BxA    A/BA      A/BxA    A/BA BG    A'A# /	     @$@#     @'@#           @'@#    B     @'@#   T0    @'@#   @ ?    @'@#   @>0    @'@#   BDB;    @'@#   @ ?    @'@#    ?    @'@#   }B|$<     @'@#   }R}$<    @'@#   z z$"9    @'@#   |@D|D
=    @'@#   {{ 9    @'@#   {yD;    @'@#   xyD"9    @'@#   @$?    @'@#   P?    @'@#   TD|DJ=    @'@#    `p    @'@#   0    @'@#   @$?    @'@#    p    @'@#    p    @'@#    '      @'@#     ?    @'@#       @'@#   B      @$@$?        @'@#             @'@#      B     @'@#     T0    @'@#      @ ?    @'@#     @>0    @'@#     BDB;    @'@#     @ ?    @'@#     ?    @'@#    }B|$<     @'@#    }R}$<    @'@#    z z$"9    @'@#    |@D|D
=    @'@#    {{ 9    @'@#    {yD;    @'@#    xyD"9    @'@#     @$?    @'@#    @$?    @'@#    DDD|DJ=    @'@#      `p    @'@#     0    @'@#     @$?    @'@#      p    @'@#     p    @'@#      '      @'@#      ?    @'@#         @'@#    B     (%PI      A/       A/  B    A'A#   T0    A/  (      A'A#   @>0    A'A#   BDB;    A/        A/     A/ }    A/ {E    A/ z!}    A'A#  |`D|D
=    A/ {A    A/ {)     A/ x}!    A/       A/ @(    A'A#  DDD|DJ=    A'A#    `p    A'A#   0    A/       A/      A/ /    A/       A/     A/  BG    A'A#  "      0a!/     0G"@      0G"@ B    ("("'   T0    0G#_ (      ("("'   @>0    ("("'   BDB;    0G"@      0G"@     0G"@ }    0G"@ }    0G"@ z!}    ("("'   |@D|D
=    0G"@ {A    0G"@ {)     0G"@ x}!    0G"@     0G"@@(    ("("'  DDD|DJ=    ("("'    `p    ("("'   0    0G"@	 !    0G"@     0G"@     0G"@     0G"@     0G"@BG    ("("'         $%))OzJ^R  @     =)yJ9    @     =)yJ9  @B     =)yJ9   
c     =)yJJQ΀ "       =)yJ9  ?      =)yJ9  C     =)yJ9        =)yJ9       =)yJ9  }!C     =)yJ9  })HC     =)yJ9  z _C     =)yJ9  |@"C     =)yJ9  {P     =)yJ9  {JP     =)yJ9  x_PC     =)yJ9 C     =)yJ9 @"C     =)yJ9 DB"C     =)yJ9  @1     =)yJ9    Rc     =)yJ9 @     =)yJ9       =)yJ9       =)yJ9       =)yJ9        =)yJ9  !     =)yJ9 @ @A      i 	     )/         )/   !    )/   T0    f	  @ ?    )/   @>0    )/   BDB;    )/   @ ?    )/   ?    )/  }A|<    )/  }Q}<    )/  }_}<    )/  |@D|D
=    )/  }P}<    )/  }J|
=    )/  |@_|<    )/  @?    )/  @?    )/  DDD|DJ=    )/    `p    )/   0    )/  @    )/    pp    )/    pp    )/        )/    ?    )/      )/        $%))zJRR  @     =)IJ9    @     =)IJ9  @B     =)IJ9   
c     =)IJJ]΀ "       =)IJ9  ?      =)IJ9  C     =)IJ9        =)IJ9       =)IJ9  }!C     =)IJ9  })HC     =)IJ9  z _C     =)IJ9  |@"C     =)IJ9  {P     =)IJ9  {JP     =)IJ9  x_PC     =)IJ9 C     =)IJ9 @"C     =)IJ9 DB"C     =)IJ9  @1     =)IJ9    Rc     =)IJ9 @     =)IJ9       =)IJ9       =)IJ9       =)IJ9        =)IJ9  !     =)IJ9 @ @A      i 	     ))         ))   !    ))   T0    f	  @ ?    ))   @>0    ))   BDB;    ))   @ ?    ))   ?    ))  }A|<    ))  }Q}<    ))  }_}<    ))  |@D|D
=    ))  }P}<    ))  }J|
=    ))  |@_|<    ))  @?    ))  @?    ))  DDD|DJ=    ))    `p    ))   0    ))  @    ))    pp    ))    pp    ))        ))    ?    ))      ))        2R_{),t     yJ@      yJ@ B    JN:   T0    yK)\ (      JN:   @>0    JN:   BDB;    yJ@      yJ@     yJ@ }    yJ@ }    yJ@ z!}    JN:   |@D|D
=    yJ@ {A    yJ@ {)     yJ@ x}!    yJ@     yJ@@/     JN:  DDD|DJ=    JN:    `p    JN:   0    yJ@	 !    yJ@     yJ@     yJ@     yJ@     yJ@BG    JN:         ZZZZVe P P    Y%Y=W P        Y%Y=W P  !    Y%Y=W P  T0    ZZZfP T @ ?    Y%Y=W P  @>0    Y%Y=W P  BDB;    Y%Y=W P  @ ?    Y%Y=W P  ?    Y%Y=W P }A|<    Y%Y=W P }Q}<    Y%Y=W P }_}<    Y%Y=W P |@D|D
=    Y%Y=W P }P}<    Y%Y=W P }J|
=    Y%Y=W P |@_|<    Y%Y=W P @?    Y%Y=W P @?    Y%Y=W P DDD|DJ=    Y%Y=W P   `p    Y%Y=W P  0    Y%Y=W P @    Y%Y=W P   pp    Y%Y=W P   pp    Y%Y=W P       Y%Y=W P   ?    Y%Y=W P     Y%Y=W P       2R_)e,t     YN@      YN@ B    JJ:   T0    YK) (      JJ:   @>0    JJ:   BDB;    YN@      YN@     YN@ }    YN@ }    YN@ z!}    NJ:   |@D|D
=    YN@ {A    YN@ {)     YN@ x}!    YN@     YN@@/     JJ:  DDD|DJ=    JJ:    `p    JJ:   0    YN@	 !    YN@     YN@     YN@     YN@     YN@BG    NJ:         ZZڥZVe P P    Y=Y% P        Y=Y% P  !    Y=Y% P  T0    ZڥZfP T @ ?    Y=Y% P  @>0    Y=Y% P  BDB;    Y=Y% P  @ ?    Y=Y% P  ?    Y=Y% P }A|<    Y=Y% P }Q}<    Y=Y% P }_}<    Y=Y% P |@D|D
=    Y=Y% P }P}<    Y=Y% P }J|
=    Y=Y% P |@_|<    Y=Y% P @?    Y=Y% P @?    Y=Y% P DDD|DJ=    Y=Y% P   `p    Y=Y% P  0    Y=Y% P @    Y=Y% P   pp    Y=Y% P   pp    Y=Y% P       Y=Y% P   ?    Y=Y% P     Y=Y% P        EQ}QEQ<       EE            EE     B     EE    T0    EE     @ ?    EE    @>0    EE    BDB;    EE    @ ?    EE    ?    EE   }B|$<     EE   }R}$<    EE   z z$"9    EE   |@D|D
=    EE   {{ 9    EE   {yD;    EE   xyD"9    EE    @$?    EE    ?    EE    D|DJ=    EE      `p    EE    0    EE   @"    EE     p    EE    p    EE     '      EE     ?    EE       EE        $%)IJJQ A? @     I"IȒC   @     I"IȒC @B     I"IȒC  
c     I"IȒC "      I"IȒC ?      I"IȒC C     I"IȒC       I"IȒC     I"IȒC}!C     I"IȒC{QC     I"IȒCz _C     I"IȒC|`"C     I"IȒC{P     I"IȒC{JP     I"IȒCx_PC     I"IȒC C     I"IȒC@"C     I"IȒCDB"C     I"IȒC @1     I"IȒC   Rc     I"IȒC C     I"IȒC      I"IȒC#     I"IȒC       I"IȒC      I"IȒC  !     I"IȒCD @A      骚i		     II|		       II|		 A    II|		 T0    ))~		 @ ?    II|		 @>0    II|		 BDB;    II|		 @ ?    II|		 ?    II|		}A|<    II|		}Q}<    II|		}_}<    II|		|@D|D
=    II|		}P}<    II|		}J|
=    II|		|@_|<    II|		 @?    II|		 ?    II|		DGDDJ=    II|		  `p    II|		 0    II|		 @?    II|		  pp    II|		 pp    II|		       II|		  ?    II|		 @    II|	I      2RK)\A!    I)%      I)% B    I$$?  T0    I)% (      I$$?  @>0    I$$?  BDB;    I)%       I)%    I)%}    I)%{E    I)%z!}    I$$? |@D|D
=    I)%{A    I)%{)     I)%x}!    I)%      I)%@(    I$$? DDD|DJ=    I$$?   `p    I$$?  0    I)%      I)%     I)%    I)%      I)%    I)% BG    I$$? "       EQ}QEQ<    EE          EE   B     EE  T0    EE   @ ?    EE  @>0    EE  BDB;    EE  @ ?    EE  ?    EE }B|$<     EE }R}$<    EE z z$"9    EE |@D|D
=    EE {{ 9    EE {yD;    EE xyD"9    EE  @$?    EE  ?    EE  D|DJ=    EE    `p    EE  0    EE @"    EE   p    EE  p    EE   '      EE   ?    EE     EE     I$yI#         EE            EE     B     EE    T0    EE     @ ?    EE    @>0    EE    BDB;    EE    @ ?    EE     ?    EE    }B|$<     EE    }R}$<    EE    z z$"9    EE    |@D|D
=    EE    {{ 9    EE    {yD;    EE    xyD"9    EE    @$?    EE    B$?    EE    FDD|DJ=    EE      `p    EE    0    EE    @$?    EE     p    EE     p    EE     '      EE      ?    EE        EE    B     2RJ@!<     I/$BxA      I/$BxA B    I'I# /	 T0    I)% A	      I'I# /	 @>0    I'I# /	 BDB;    I/$BxA       I/$BxA    I/$BxA}    I/$BxA{E    I/$BxAz!}    I'I# /	|@D|D
=    I/$BxA{A    I/$BxA{)     I/$BxAx}!    I/$BxA      I/$BxA@(    I'I# /	DDD|DJ=    I'I# /	  `p    I'I# /	 0    I/$BxA      I/$BxA     I/$BxA    I/$BxA      I/$BxA    I/$BxA BG    I'I# /	      Z^Ve _Q=QP    _W _       _W _ A    _W _ T0    _W _Q=T@ ?    _W _ @>0    _W _ BDB;    _W _ @ ?    _W _ ?    _W _}A|<    _W _}Q}<    _W _}_}<    _W _|@D|D
=    _W _}P}<    _W _}J|
=    _W _|@_|<    _W _ @?    _W _ ?    _W _DGDDJ=    _W _  `p    _W _ 0    _W _ @?    _W _  pp    _W _ pp    _W _       _W _  ?    _W _ @    _W _E      2RJ@!     I/$BA      I/$BA B    I'I# /  T0    I)% A)      I'I# /  @>0    I'I# /  BDB;    I/$BA       I/$BxA    I/$BxA}    I/$BxA{E    I/$BxAz!}    I'I# /	|@D|D
=    I/$BxA{A    I/$BxA{)     I/$BxAx}!    I/$BA      I/$BA@(    I'I# / DDD|DJ=    I'I# /   `p    I'I# /  0    I/$BA      I/$BA     I/$BxA    I/$BA      I/$BxA    I/$BA BG    I'I# /	     I$yI#     EE           EE    B     EE   T0    EE   @ ?    EE   @>0    EE   BDB;    EE   @ ?    EE    ?    EE   }B|$<     EE   }R}$<    EE   z z$"9    EE   |@D|D
=    EE   {{ 9    EE   {yD;    EE   xyD"9    EE   @$?    EE   P?    EE   TD|DJ=    EE    `p    EE   0    EE   @$?    EE    p    EE    p    EE    '      EE     ?    EE       EE   B      EQ}QEQ<        EE             EE      B     EE     T0    EE      @ ?    EE     @>0    EE     BDB;    EE     @ ?    EE     ?    EE    }B|$<     EE    }R}$<    EE    z z$"9    EE    |@D|D
=    EE    {{ 9    EE    {yD;    EE    xyD"9    EE     @$?    EE    @$?    EE    DDD|DJ=    EE      `p    EE     0    EE     @$?    EE      p    EE     p    EE      '      EE      ?    EE         EE    B     2RK)\      I)%       I)%  B    I$$?  T0    I)%  (      I$$?  @>0    I$$?  BDB;    I)%        I)%     I)% }    I)% {E    I)% z!}    I$$? |`D|D
=    I)% {A    I)% {)     I)% x}!    I)%       I)% @(    I$$? DDD|DJ=    I$$?   `p    I$$?  0    I)%       I)%      I)% /    I)%       I)%     I)%  BG    I$$? "      2R_{)e,t     YJ@      YJ@ B    JJ:   T0    YK)\ (      JJ:   @>0    JJ:   BDB;    YJ@      YJ@     YJ@ }    YJ@ }    YJ@ z!}    JJ:   |@D|D
=    YJ@ {A    YJ@ {)     YJ@ x}!    YJ@     YJ@@(    JJ:  DDD|DJ=    JJ:    `p    JJ:   0    YJ@	 !    YJ@     YJ@     YJ@     YJ@     YJ@BG    JJ:          A@
PD""	 ( @      PrB!    @      PrB!  @B      PrB!   
c      PrB!  "        PrB!  ?       PrB!  C      PrB!         A(r"         A(r"   }!C      A(r"   })HC      A(r"   z _C      A(r"   |@"C      A(r"   {P      A(r"   {JP      A(r"   x_PC      PrB! C      PrB! @"C      PrB! DB"C      PrB!  @1      PrB!    Rc      PrB! @      PrB!        A(r"         PrB!        A(r"          PrB!  !      A(r"  @ @A      		(ID) 	     	$)        	$)  !    	$)  T0    	$)	  @ ?    	$)  @>0    	$)  BDB;    	$)  @ ?    	$)  ?    	$) }A|<    	$) }Q}<    	$) }_}<    	$) |@D|D
=    	$) }P}<    	$) }J|
=    	$) |@_|<    	$) @?    	$) @?    	$) DDD|DJ=    	$)   `p    	$)  0    	$) @    	$)   pp    	$)   pp    	$)       	$)   ?    	$)     	$)        Ap
PG""	 ( @      PBB!    @      PBB!  @B      PBB!   
c      PBB!  "        PBB!  ?       PBB!  C      PBB!         A(B"         A(B"   }!C      A(B"   })HC      A(B"   z _C      A(B"   |@"C      A(B"   {P      A(B"   {JP      A(B"   x_PC      PBB! C      PBB! @"C      PBB! DB"C      PBB!  @1      PBB!    Rc      PBB! @      PBB!        A(B"         PBB!        A(B"          PBB!  !      A(B"  @ @A      	(OD) 	     	$/        	$/  !    	$/  T0    	$/	  @ ?    	$/  @>0    	$/  BDB;    	$/  @ ?    	$/  ?    	$/ }A|<    	$/ }Q}<    	$/ }_}<    	$/ |@D|D
=    	$/ }P}<    	$/ }J|
=    	$/ |@_|<    	$/ @?    	$/ @?    	$/ DDD|DJ=    	$/   `p    	$/  0    	$/ @    	$/   pp    	$/   pp    	$/       	$/   ?    	$/     	$/       ! )	"(&    "`rB`      "`rB` B    !"$$"  T0    "`rB` (      !"$$"  @>0    !"$$"  BDB;    "`rB`      !`r"`     !`r"` }    !`r"` }    !`r"` z!}     !N"$  |@D|D
=    !`r"` {A    !`r"` {)     !`r"` x}!    "`rB`     "`rB`@/     !"$$" DDD|DJ=    !"$$"   `p    !"$$"  0    "`rB`	 !    "`rB`     !`r"`     "`rB`     !`r"`     "`rB`BG     !N"$        QQR(TEDX% P P    QR$T%P        QR$T%P  !    QR$T%P  T0    QR$T%P T @ ?    QR$T%P  @>0    QR$T%P  BDB;    QR$T%P  @ ?    QR$T%P  ?    QR$T%P }A|<    QR$T%P }Q}<    QR$T%P }_}<    QR$T%P |@D|D
=    QR$T%P }P}<    QR$T%P }J|
=    QR$T%P |@_|<    QR$T%P @?    QR$T%P @?    QR$T%P DDD|DJ=    QR$T%P   `p    QR$T%P  0    QR$T%P @    QR$T%P   pp    QR$T%P   pp    QR$T%P       QR$T%P   ?    QR$T%P     QR$T%P       ! (E	"(&    "cN`      "cN` B    !$"  T0    "cB (      !$"  @>0    !$"  BDB;    "cN`      !`.`     !`.` }    !`.` }    !`.` z!}     !B"  |@D|D
=    !`.` {A    !`.` {)     !`.` x}!    "cN`     "cN`@/     !$" DDD|DJ=    !$"   `p    !$"  0    "cN`	 !    "cN`     !`.`     "cN`     !`.`     "cN`BG     !B"        QQ҅(T]DX% P P    QR%%P        QR%%P  !    QR%%P  T0    Q҅$T=P T @ ?    QR%%P  @>0    QR%%P  BDB;    QR%%P  @ ?    QR%%P  ?    QR%%P }A|<    QR%%P }Q}<    QR%%P }_}<    QR%%P |@D|D
=    QR%%P }P}<    QR%%P }J|
=    QR%%P |@_|<    QR%%P @?    QR%%P @?    QR%%P DDD|DJ=    QR%%P   `p    QR%%P  0    QR%%P @    QR%%P   pp    QR%%P   pp    QR%%P       QR%%P   ?    QR%%P     QR%%P           F          P             P     B      P    T0     P     @ ?     P    @>0     P    BDB;     P    @ ?     P    ?     P   }B|$<      P   }R}$<     P   z z$"9     P   |@D|D
=     P   {{ 9     P   {yD;     P   xyD"9     P    @$?     P    ?     P    D|DJ=     P      `p     P    0     P   @"     P     p     P    p     P     '       P     ?     P        P         AAB A? @      ADD   @      ADD @B      ADD  
c      ADD "       ADD ?       ADD C      ADD        ADD      ADD}!C      ADD{QC      ADDz _C      ADD|`"C      ADD{P      ADD{JP      ADDx_PC      ADD C      ADD@"C      ADDDB"C      ADD @1      ADD   Rc      ADD C      ADD       ADD#      ADD        ADD       ADD  !      ADDD @A      		(D)		     	(I		       	(I		 A    	(I		 T0    	(I		 @ ?    	(I		 @>0    	(I		 BDB;    	(I		 @ ?    	(I		 ?    	(I		}A|<    	(I		}Q}<    	(I		}_}<    	(I		|@D|D
=    	(I		}P}<    	(I		}J|
=    	(I		|@_|<    	(I		 @?    	(I		 ?    	(I		DGDDJ=    	(I		  `p    	(I		 0    	(I		 @?    	(I		  pp    	(I		 pp    	(I		       	(I		  ?    	(I		 @    	(I	I      ! BDphA!    !P      !P B     ""I  T0    !P (       ""I  @>0     ""I  BDB;    !P       !P    !P}    !P{E    !Pz!}     ""I |@D|D
=    !P{A    !P{)     !Px}!    !P      !P@(     ""I DDD|DJ=     ""I   `p     ""I  0    !P      !P     !P    !P      !P    !P BG     ""I "          F      P           P   B      P  T0     P   @ ?     P  @>0     P  BDB;     P  @ ?     P  ?     P }B|$<      P }R}$<     P z z$"9     P |@D|D
=     P {{ 9     P {yD;     P xyD"9     P  @$?     P  ?     P  D|DJ=     P    `p     P  0     P @"     P   p     P  p     P   '       P   ?     P      P       ``           P             P     B      P    T0     P     @ ?     P    @>0     P    BDB;     P    @ ?     P     ?     P    }B|$<      P    }R}$<     P    z z$"9     P    |@D|D
=     P    {{ 9     P    {yD;     P    xyD"9     P    @$?     P    B$?     P    FDD|DJ=     P      `p     P    0     P    @$?     P     p     P     p     P     '       P      ?     P         P    B     ! "@!<     !PBxA      !PBxA B     &2 /	 T0    !P A	       &2 /	 @>0     &2 /	 BDB;    !PBxA       !PBxA    !PBxA}    !PBxA{E    !PBxAz!}     &2 /	|@D|D
=    !PBxA{A    !PBxA{)     !PBxAx}!    !PBxA      !PBxA@(     &2 /	DDD|DJ=     &2 /	  `p     &2 /	 0    !PBxA      !PBxA     !PBxA    !PBxA      !PBxA    !PBxA BG     &2 /	      QRDX% _Q=QP    Q(\e _       Q(\e _ A    Q(\e _ T0    Q0\ _Q=T@ ?    Q(\e _ @>0    Q(\e _ BDB;    Q(\e _ @ ?    Q(\e _ ?    Q(\e _}A|<    Q(\e _}Q}<    Q(\e _}_}<    Q(\e _|@D|D
=    Q(\e _}P}<    Q(\e _}J|
=    Q(\e _|@_|<    Q(\e _ @?    Q(\e _ ?    Q(\e _DGDDJ=    Q(\e _  `p    Q(\e _ 0    Q(\e _ @?    Q(\e _  pp    Q(\e _ pp    Q(\e _       Q(\e _  ?    Q(\e _ @    Q(\e _E      ! "@!     !PBA      !PBA B     &2 /  T0    !P A)       &2 /  @>0     &2 /  BDB;    !PBA       !PBxA    !PBxA}    !PBxA{E    !PBxAz!}     &2 /	|@D|D
=    !PBxA{A    !PBxA{)     !PBxAx}!    !PBA      !PBA@(     &2 / DDD|DJ=     &2 /   `p     &2 /  0    !PBA      !PBA     !PBxA    !PBA      !PBxA    !PBA BG     &2 /	       ``       P            P    B      P   T0     P   @ ?     P   @>0     P   BDB;     P   @ ?     P    ?     P   }B|$<      P   }R}$<     P   z z$"9     P   |@D|D
=     P   {{ 9     P   {yD;     P   xyD"9     P   @$?     P   P?     P   TD|DJ=     P    `p     P   0     P   @$?     P    p     P    p     P    '       P     ?     P        P   B         F           P              P      B      P     T0     P      @ ?     P     @>0     P     BDB;     P     @ ?     P     ?     P    }B|$<      P    }R}$<     P    z z$"9     P    |@D|D
=     P    {{ 9     P    {yD;     P    xyD"9     P     @$?     P    @$?     P    DDD|DJ=     P      `p     P     0     P     @$?     P      p     P     p     P      '       P      ?     P          P    B     ! BDph      !P       !P  B     ""A  T0    !P  (       ""A  @>0     ""A  BDB;    !P        !P     !P }    !P {E    !P z!}     ""A |`D|D
=    !P {A    !P {)     !P x}!    !P       !P @(     ""A DDD|DJ=     ""A   `p     ""A  0    !P       !P      !P /    !P       !P     !P  BG     ""A "      ! (E	"(&    "`B`      "`B` B    !"$$"  T0    "`B` (      !"$$"  @>0    !"$$"  BDB;    "`B`      !`"`     !`"` }    !`"` }    !`"` z!}     !B"$  |@D|D
=    !`"` {A    !`"` {)     !`"` x}!    "`B`     "`B`@(    !"$$" DDD|DJ=    !"$$"   `p    !"$$"  0    "`B`	 !    "`B`     !`"`     "`B`     !`"`     "`B`BG     !B"$        !DB"U$E"( @     "!uRDP    @     "!uRDP  @B     "!uRDP   
c     "!DuR*" "       "!uRDP  ?      "!uRDP  C     "!uRDP        "!DuR*"      "!DuR*" }!C     "!DuR*" })HC     "!DuR*" z _C     "!DuR*" |@"C     "!DuR*" {P     "!DuR*" {JP     "!DuR*" x_PC     "!uRDP C     "!uRDP @"C     "!uRDP DB"C     "!uRDP  @1     "!uRDP    Rc     "!uRDP @     "!uRDP       "!DuR*"      "!uRDP       "!DuR*"       "!uRDP  !     "!DuR*"@ @A      I$I$O$J	     $I$J         $I$J   !    $I$J   T0    $I$OZ	  @ ?    $I$J   @>0    $I$J   BDB;    $I$J   @ ?    $I$R   ?    $I$R  }A|<    $I$R  }Q}<    $I$R  }_}<    $I$R  |@D|D
=    $I$R  }P}<    $I$R  }J|
=    $I$R  |@_|<    $I$J  @?    $I$J  @?    $I$J  DDD|DJ=    $I$J    `p    $I$J   0    $I$J  @    $I$J    pp    $I$R    pp    $I$J        $I$R    ?    $I$J      $I$R        !Dr"U$E"( @     "!ERD\    @     "!ERD\  @B     "!ERD\   
c     "!DER*" "       "!ERD\  ?      "!ERD\  C     "!ERD\        "!DER*"      "!DER*" }!C     "!DER*" })HC     "!DER*" z _C     "!DER*" |@"C     "!DER*" {P     "!DER*" {JP     "!DER*" x_PC     "!ERD\ C     "!ERD\ @"C     "!ERD\ DB"C     "!ERD\  @1     "!ERD\    Rc     "!ERD\ @     "!ERD\       "!DER*"      "!ERD\       "!DER*"       "!ERD\  !     "!DER*"@ @A      I$O$I$J	     $I$J         $I$J   !    $I$J   T0    $I$IZ	  @ ?    $I$J   @>0    $I$J   BDB;    $I$J   @ ?    $I$R   ?    $I$R  }A|<    $I$R  }Q}<    $I$R  }_}<    $I$R  |@D|D
=    $I$R  }P}<    $I$R  }J|
=    $I$R  |@_|<    $I$J  @?    $I$J  @?    $I$J  DDD|DJ=    $I$J    `p    $I$J   0    $I$J  @    $I$J    pp    $I$R    pp    $I$J        $I$R    ?    $I$J      $I$R        $D"EȊU1"    "$DS@      "$DS@ B    """"%^U(   T0    "$DuRb( (      """"%^U(   @>0    """"%^U(   BDB;    "$DS@      "$DuRb(     "$DuRb( }    "$DuRb( }    "$DuRb( z!}    """"".U%R |@D|D
=    "$DuRb( {A    "$DuRb( {)     "$DuRb( x}!    "$DS@     "$DS@@/     """"%^U(  DDD|DJ=    """"%^U(    `p    """"%^U(   0    "$DS@	 !    "$DS@     "$DuRb(     "$DS@     "$DuRb(     "$DS@BG    """"".U%R       RE$RE$R]$UJYP P    $RE$UJY P        $RE$UJY P  !    $RE$UJY P  T0    $RE$R]ZTP T @ ?    $RE$UJY P  @>0    $RE$UJY P  BDB;    $RE$UJY P  @ ?    $RE$URX P  ?    $RE$URX P }A|<    $RE$URX P }Q}<    $RE$URX P }_}<    $RE$URX P |@D|D
=    $RE$URX P }P}<    $RE$URX P }J|
=    $RE$URX P |@_|<    $RE$UJY P @?    $RE$UJY P @?    $RE$UJY P DDD|DJ=    $RE$UJY P   `p    $RE$UJY P  0    $RE$UJY P @    $RE$UJY P   pp    $RE$URX P   pp    $RE$UJY P       $RE$URX P   ?    $RE$UJY P     $RE$URX P       $D.DHU1"    "$D_@      "$D_@ B    """"RU   T0    "$DR( (      """"RU   @>0    """"RU   BDB;    "$D_@      "$\^b(     "$\^b( }    "$\^b( }    "$\^b( z!}    ""."""UR |@D|D
=    "$\^b( {A    "$\^b( {)     "$\^b( x}!    "$D_@     "$D_@@/     """"RU  DDD|DJ=    """"RU    `p    """"RU   0    "$D_@	 !    "$D_@     "$\^b(     "$D_@     "$\^b(     "$D_@BG    ""."""UR       RE$RE%E$UJYP P    $R]$UK P        $R]$UK P  !    $R]$UK P  T0    $RE%EZTP T @ ?    $R]$UK P  @>0    $R]$UK P  BDB;    $R]$UK P  @ ?    $R]$USؕ P  ?    $R]$USؕ P }A|<    $R]$USؕ P }Q}<    $R]$USؕ P }_}<    $R]$USؕ P |@D|D
=    $R]$USؕ P }P}<    $R]$USؕ P }J|
=    $R]$USؕ P |@_|<    $R]$UK P @?    $R]$UK P @?    $R]$UK P DDD|DJ=    $R]$UK P   `p    $R]$UK P  0    $R]$UK P @    $R]$UK P   pp    $R]$USؕ P   pp    $R]$UK P       $R]$USؕ P   ?    $R]$UK P     $R]$USؕ P        )Db       A(Q            A(Q     B     A(Q    T0    A(Q     @ ?    A(Q    @>0    A(Q    BDB;    A(Q    @ ?    A(Q    ?    A(Q   }B|$<     A(Q   }R}$<    A(Q   z z$"9    A(Q   |@D|D
=    A(Q   {{ 9    A(Q   {yD;    A(Q   xyD"9    A(Q    @$?    A(Q    ?    A(Q    D|DJ=    A(Q      `p    A(Q    0    A(Q   @"    A(Q     p    A(Q    p    A(Q     '      A(Q     ?    A(Q       A(Q        !DER*" A? @     "!HH   @     "!HH @B     "!HH  
c     "!HH "      "!HH ?      "!HH C     "!HH       "!HH     "!HH}!C     "!HH{QC     "!HHz _C     "!HH|`"C     "!HH{P     "!HH{JP     "!HHx_PC     "!HH C     "!HH@"C     "!HHDB"C     "!HH @1     "!HH   Rc     "!HH C     "!HH      "!HH#     "!HH       "!HH      "!HH  !     "!HHD @A      (TI)		     $Il)		       $Il)		 A    $Il)		 T0    $IZ		 @ ?    $Il)		 @>0    $Il)		 BDB;    $Il)		 @ ?    $Il)		 ?    $Il)		}A|<    $Il)		}Q}<    $Il)		}_}<    $Il)		|@D|D
=    $Il)		}P}<    $Il)		}J|
=    $Il)		|@_|<    $Il)		 @?    $Il)		 ?    $Il)		DGDDJ=    $Il)		  `p    $Il)		 0    $Il)		 @?    $Il)		  pp    $Il)		 pp    $Il)		       $Il)		  ?    $Il)		 @    $Il)	I      $DRb(A!    "$ET      "$ET B    """U%R T0    "$ET (      """U%R @>0    """U%R BDB;    "$ET       "$ET    "$ET}    "$ET{E    "$ETz!}    """U%R|@D|D
=    "$ET{A    "$ET{)     "$ETx}!    "$ET      "$ET@(    """U%RDDD|DJ=    """U%R  `p    """U%R 0    "$ET      "$ET     "$ET    "$ET      "$ET    "$ET BG    """U%R"       )Db    A(Q          A(Q   B     A(Q  T0    A(Q   @ ?    A(Q  @>0    A(Q  BDB;    A(Q  @ ?    A(Q  ?    A(Q }B|$<     A(Q }R}$<    A(Q z z$"9    A(Q |@D|D
=    A(Q {{ 9    A(Q {yD;    A(Q xyD"9    A(Q  @$?    A(Q  ?    A(Q  D|DJ=    A(Q    `p    A(Q  0    A(Q @"    A(Q   p    A(Q  p    A(Q   '      A(Q   ?    A(Q     A(Q     A(E          A(Q            A(Q     B     A(Q    T0    A(Q     @ ?    A(Q    @>0    A(Q    BDB;    A(Q    @ ?    A(Q     ?    A(Q    }B|$<     A(Q    }R}$<    A(Q    z z$"9    A(Q    |@D|D
=    A(Q    {{ 9    A(Q    {yD;    A(Q    xyD"9    A(Q    @$?    A(Q    B$?    A(Q    FDD|DJ=    A(Q      `p    A(Q    0    A(Q    @$?    A(Q     p    A(Q     p    A(Q     '      A(Q      ?    A(Q        A(Q    B     $DS@!<     $$hȐBxA      $$hȐBxA B    $"BZ) /	 T0    "$ET A	      $"BZ) /	 @>0    $"BZ) /	 BDB;    $$hȐBxA       $$hȐBxA    $$hȐBxA}    $$hȐBxA{E    $$hȐBxAz!}    $"BZ) /	|@D|D
=    $$hȐBxA{A    $$hȐBxA{)     $$hȐBxAx}!    $$hȐBxA      $$hȐBxA@(    $"BZ) /	DDD|DJ=    $"BZ) /	  `p    $"BZ) /	 0    $$hȐBxA      $$hȐBxA     $$hȐBxA    $$hȐBxA      $$hȐBxA    $$hȐBxA BG    $"BZ) /	      RE$RElY% _Q=QP    $REZY _       $REZY _ A    $REZY _ T0    $RElY% _Q=T@ ?    $REZY _ @>0    $REZY _ BDB;    $REZY _ @ ?    $REZY _ ?    $REZY _}A|<    $REZY _}Q}<    $REZY _}_}<    $REZY _|@D|D
=    $REZY _}P}<    $REZY _}J|
=    $REZY _|@_|<    $REZY _ @?    $REZY _ ?    $REZY _DGDDJ=    $REZY _  `p    $REZY _ 0    $REZY _ @?    $REZY _  pp    $REZY _ pp    $REZY _       $REZY _  ?    $REZY _ @    $REZY _E      $DS@!     $$hȐBA      $$hȐBA B    $"BZ) /  T0    "$ET A)      $"BZ) /  @>0    $"BZ) /  BDB;    $$hȐBA       $$hȐBxA    $$hȐBxA}    $$hȐBxA{E    $$hȐBxAz!}    $"BZ) /	|@D|D
=    $$hȐBxA{A    $$hȐBxA{)     $$hȐBxAx}!    $$hȐBA      $$hȐBA@(    $"BZ) / DDD|DJ=    $"BZ) /   `p    $"BZ) /  0    $$hȐBA      $$hȐBA     $$hȐBxA    $$hȐBA      $$hȐBxA    $$hȐBA BG    $"BZ) /	     A(E      A(Q           A(Q    B     A(Q   T0    A(Q   @ ?    A(Q   @>0    A(Q   BDB;    A(Q   @ ?    A(Q    ?    A(Q   }B|$<     A(Q   }R}$<    A(Q   z z$"9    A(Q   |@D|D
=    A(Q   {{ 9    A(Q   {yD;    A(Q   xyD"9    A(Q   @$?    A(Q   P?    A(Q   TD|DJ=    A(Q    `p    A(Q   0    A(Q   @$?    A(Q    p    A(Q    p    A(Q    '      A(Q     ?    A(Q       A(Q   B      )Db        A(Q             A(Q      B     A(Q     T0    A(Q      @ ?    A(Q     @>0    A(Q     BDB;    A(Q     @ ?    A(Q     ?    A(Q    }B|$<     A(Q    }R}$<    A(Q    z z$"9    A(Q    |@D|D
=    A(Q    {{ 9    A(Q    {yD;    A(Q    xyD"9    A(Q     @$?    A(Q    @$?    A(Q    DDD|DJ=    A(Q      `p    A(Q     0    A(Q     @$?    A(Q      p    A(Q     p    A(Q      '      A(Q      ?    A(Q         A(Q    B     $DRb(      "$ET       "$ET  B    """U%R T0    "$ET  (      """U%R @>0    """U%R BDB;    "$ET        "$ET     "$ET }    "$ET {E    "$ET z!}    """U%R|`D|D
=    "$ET {A    "$ET {)     "$ET x}!    "$ET       "$ET @(    """U%RDDD|DJ=    """U%R  `p    """U%R 0    "$ET       "$ET      "$ET /    "$ET       "$ET     "$ET  BG    """U%R"      $D"DHU1"    "$DS@      "$DS@ B    """"%RU(   T0    "$DRb( (      """"%RU(   @>0    """"%RU(   BDB;    "$DS@      "$DRb(     "$DRb( }    "$DRb( }    "$DRb( z!}    """"""U%R |@D|D
=    "$DRb( {A    "$DRb( {)     "$DRb( x}!    "$DS@     "$DS@@(    """"%RU(  DDD|DJ=    """"%RU(    `p    """"%RU(   0    "$DS@	 !    "$DS@     "$DRb(     "$DS@     "$DRb(     "$DS@BG    """"""U%R       !	H"AD"! @     8"! x""   @     8"! x"" @B     8"! x""  
c     8"! x"" "       8"! x"" ?      8"! x"" C     8"! x""       8"! x""      8"! x"" }!C     8"! x"" })HC     8"! x"" z _C     8"! x"" |@"C     8"! x"" {P     8"! x"" {JP     8"! x"" x_PC     8"! x""C     8"! x""@"C     8"! x""DB"C     8"! x"" @1     8"! x""   Rc     8"! x""@     8"! x""      8"! x""      8"! x""      8"! x""       8"! x"" !     8"! x""@ @A      	HIOI0	     8I/I8        8I/I8  !    8I/I8  T0    8I/I8	  @ ?    8I/I8  @>0    8I/I8  BDB;    8I/I8  @ ?    8I/I8  ?    8I/I8 }A|<    8I/I8 }Q}<    8I/I8 }_}<    8I/I8 |@D|D
=    8I/I8 }P}<    8I/I8 }J|
=    8I/I8 |@_|<    8I/I8 @?    8I/I8 @?    8I/I8 DDD|DJ=    8I/I8   `p    8I/I8  0    8I/I8 @    8I/I8   pp    8I/I8   pp    8I/I8       8I/I8   ?    8I/I8     8I/I8       !	x"AG"! @     8"! H""   @     8"! H"" @B     8"! H""  
c     8"! H"" "       8"! H"" ?      8"! H"" C     8"! H""       8"! H""      8"! H"" }!C     8"! H"" })HC     8"! H"" z _C     8"! H"" |@"C     8"! H"" {P     8"! H"" {JP     8"! H"" x_PC     8"! H""C     8"! H""@"C     8"! H""DB"C     8"! H"" @1     8"! H""   Rc     8"! H""@     8"! H""      8"! H""      8"! H""      8"! H""       8"! H"" !     8"! H""@ @A      	HOIO0	     8I)O8        8I)O8  !    8I)O8  T0    8I)O8	  @ ?    8I)O8  @>0    8I)O8  BDB;    8I)O8  @ ?    8I)O8  ?    8I)O8 }A|<    8I)O8 }Q}<    8I)O8 }_}<    8I)O8 |@D|D
=    8I)O8 }P}<    8I)O8 }J|
=    8I)O8 |@_|<    8I)O8 @?    8I)O8 @?    8I)O8 DDD|DJ=    8I)O8   `p    8I)O8  0    8I)O8 @    8I)O8   pp    8I)O8   pp    8I)O8       8I)O8   ?    8I)O8     8I)O8       '#(    8(x"N      8(x"N B    8$B(.$B8  T0    8(x"N (      8$B(.$B8  @>0    8$B(.$B8  BDB;    8(x"N      8(x"N     8(x"N }    8(x"N }    8(x"N z!}    8$B(.$B8  |@D|D
=    8(x"N {A    8(x"N {)     8(x"N x}!    8(x"N     8(x"N@/     8$B(.$B8 DDD|DJ=    8$B(.$B8   `p    8$B(.$B8  0    8(x"N	 !    8(x"N     8(x"N     8(x"N     8(x"N     8(x"NBG    8$B(.$B8        SHXEX]XET0P P    8TEX=TE8P        8TEX=TE8P  !    8TEX=TE8P  T0    8TEX=TE8P T @ ?    8TEX=TE8P  @>0    8TEX=TE8P  BDB;    8TEX=TE8P  @ ?    8TEX=TE8P  ?    8TEX=TE8P }A|<    8TEX=TE8P }Q}<    8TEX=TE8P }_}<    8TEX=TE8P |@D|D
=    8TEX=TE8P }P}<    8TEX=TE8P }J|
=    8TEX=TE8P |@_|<    8TEX=TE8P @?    8TEX=TE8P @?    8TEX=TE8P DDD|DJ=    8TEX=TE8P   `p    8TEX=TE8P  0    8TEX=TE8P @    8TEX=TE8P   pp    8TEX=TE8P   pp    8TEX=TE8P       8TEX=TE8P   ?    8TEX=TE8P     8TEX=TE8P       '/`(    8(.N      8(.N B    8$B"B8  T0    8(" (      8$B"B8  @>0    8$B"B8  BDB;    8(.N      8(.N     8(.N }    8(.N }    8(.N z!}    8$N("B8  |@D|D
=    8(.N {A    8(.N {)     8(.N x}!    8(.N     8(.N@/     8$B"B8 DDD|DJ=    8$B"B8   `p    8$B"B8  0    8(.N	 !    8(.N     8(.N     8(.N     8(.N     8(.NBG    8$N("B8        SHXEEX]T0P P    8T]X%E8P        8T]X%E8P  !    8T]X%E8P  T0    8TE%T]8P T @ ?    8T]X%E8P  @>0    8T]X%E8P  BDB;    8T]X%E8P  @ ?    8T]X%E8P  ?    8T]X%E8P }A|<    8T]X%E8P }Q}<    8T]X%E8P }_}<    8T]X%E8P |@D|D
=    8T]X%E8P }P}<    8T]X%E8P }J|
=    8T]X%E8P |@_|<    8T]X%E8P @?    8T]X%E8P @?    8T]X%E8P DDD|DJ=    8T]X%E8P   `p    8T]X%E8P  0    8T]X%E8P @    8T]X%E8P   pp    8T]X%E8P   pp    8T]X%E8P       8T]X%E8P   ?    8T]X%E8P     8T]X%E8P         D@"      ?@#            ?@#     B     ?@#    T0    ?@#     @ ?    ?@#    @>0    ?@#    BDB;    ?@#    @ ?    ?@#    ?    ?@#   }B|$<     ?@#   }R}$<    ?@#   z z$"9    ?@#   |@D|D
=    ?@#   {{ 9    ?@#   {yD;    ?@#   xyD"9    ?@#    @$?    ?@#    ?    ?@#    D|DJ=    ?@#      `p    ?@#    0    ?@#   @"    ?@#     p    ?@#    p    ?@#     '      ?@#     ?    ?@#       ?@#         Dp A? @     >"	HC   @     >"	HC @B     >"	HC  
c     >"	HC "      >"	HC ?      >"	HC C     >"	HC       >"	HC     >"	HC}!C     >"	HC{QC     >"	HCz _C     >"	HC|`"C     >"	HC{P     >"	HC{JP     >"	HCx_PC     >"	HC C     >"	HC@"C     >"	HCDB"C     >"	HC @1     >"	HC   Rc     >"	HC C     >"	HC      >"	HC#     >"	HC       >"	HC      >"	HC  !     >"	HCD @A      D))D		     xIIx		       xIIx		 A    xIIx		 T0    xIIx		 @ ?    xIIx		 @>0    xIIx		 BDB;    xIIx		 @ ?    xIIx		 ?    xIIx		}A|<    xIIx		}Q}<    xIIx		}_}<    xIIx		|@D|D
=    xIIx		}P}<    xIIx		}J|
=    xIIx		|@_|<    xIIx		 @?    xIIx		 ?    xIIx		DGDDJ=    xIIx		  `p    xIIx		 0    xIIx		 @?    xIIx		  pp    xIIx		 pp    xIIx		       xIIx		  ?    xIIx		 @    xIIx	I      #DGA!    >(%      >(% B    >$A$>  T0    >(% (      >$A$>  @>0    >$A$>  BDB;    >(%       >(%    >(%}    >(%{E    >(%z!}    >$A$> |@D|D
=    >(%{A    >(%{)     >(%x}!    >(%      >(%@(    >$A$> DDD|DJ=    >$A$>   `p    >$A$>  0    >(%      >(%     >(%    >(%      >(%    >(% BG    >$A$> "        D@"    ?@#          ?@#   B     ?@#  T0    ?@#   @ ?    ?@#  @>0    ?@#  BDB;    ?@#  @ ?    ?@#  ?    ?@# }B|$<     ?@# }R}$<    ?@# z z$"9    ?@# |@D|D
=    ?@# {{ 9    ?@# {yD;    ?@# xyD"9    ?@#  @$?    ?@#  ?    ?@#  D|DJ=    ?@#    `p    ?@#  0    ?@# @"    ?@#   p    ?@#  p    ?@#   '      ?@#   ?    ?@#     ?@#     @$ A         ?@#            ?@#     B     ?@#    T0    ?@#     @ ?    ?@#    @>0    ?@#    BDB;    ?@#    @ ?    ?@#     ?    ?@#    }B|$<     ?@#    }R}$<    ?@#    z z$"9    ?@#    |@D|D
=    ?@#    {{ 9    ?@#    {yD;    ?@#    xyD"9    ?@#    @$?    ?@#    B$?    ?@#    FDD|DJ=    ?@#      `p    ?@#    0    ?@#    @$?    ?@#     p    ?@#     p    ?@#     '      ?@#      ?    ?@#        ?@#    B     '|@!<     >(%BxA      >(%BxA B    >$A# /	 T0    >(% A	      >$A# /	 @>0    >$A# /	 BDB;    >(%BxA       >(%BxA    >(%BxA}    >(%BxA{E    >(%BxAz!}    >$A# /	|@D|D
=    >(%BxA{A    >(%BxA{)     >(%BxAx}!    >(%BxA      >(%BxA@(    >$A# /	DDD|DJ=    >$A# /	  `p    >$A# /	 0    >(%BxA      >(%BxA     >(%BxA    >(%BxA      >(%BxA    >(%BxA BG    >$A# /	      WłX%W _Q=QP    |X%W _       |X%W _ A    |X%W _ T0    |X%W _Q=T@ ?    |X%W _ @>0    |X%W _ BDB;    |X%W _ @ ?    |X%W _ ?    |X%W _}A|<    |X%W _}Q}<    |X%W _}_}<    |X%W _|@D|D
=    |X%W _}P}<    |X%W _}J|
=    |X%W _|@_|<    |X%W _ @?    |X%W _ ?    |X%W _DGDDJ=    |X%W _  `p    |X%W _ 0    |X%W _ @?    |X%W _  pp    |X%W _ pp    |X%W _       |X%W _  ?    |X%W _ @    |X%W _E      '|@!     >(%BA      >(%BA B    >$A# /  T0    >(% A)      >$A# /  @>0    >$A# /  BDB;    >(%BA       >(%BxA    >(%BxA}    >(%BxA{E    >(%BxAz!}    >$A# /	|@D|D
=    >(%BxA{A    >(%BxA{)     >(%BxAx}!    >(%BA      >(%BA@(    >$A# / DDD|DJ=    >$A# /   `p    >$A# /  0    >(%BA      >(%BA     >(%BxA    >(%BA      >(%BxA    >(%BA BG    >$A# /	     @$ A     ?@#           ?@#    B     ?@#   T0    ?@#   @ ?    ?@#   @>0    ?@#   BDB;    ?@#   @ ?    ?@#    ?    ?@#   }B|$<     ?@#   }R}$<    ?@#   z z$"9    ?@#   |@D|D
=    ?@#   {{ 9    ?@#   {yD;    ?@#   xyD"9    ?@#   @$?    ?@#   P?    ?@#   TD|DJ=    ?@#    `p    ?@#   0    ?@#   @$?    ?@#    p    ?@#    p    ?@#    '      ?@#     ?    ?@#       ?@#   B       D@"       ?@#             ?@#      B     ?@#     T0    ?@#      @ ?    ?@#     @>0    ?@#     BDB;    ?@#     @ ?    ?@#     ?    ?@#    }B|$<     ?@#    }R}$<    ?@#    z z$"9    ?@#    |@D|D
=    ?@#    {{ 9    ?@#    {yD;    ?@#    xyD"9    ?@#     @$?    ?@#    @$?    ?@#    DDD|DJ=    ?@#      `p    ?@#     0    ?@#     @$?    ?@#      p    ?@#     p    ?@#      '      ?@#      ?    ?@#         ?@#    B     #DG      >(%       >(%  B    >$A$>  T0    >(%  (      >$A$>  @>0    >$A$>  BDB;    >(%        >(%     >(% }    >(% {E    >(% z!}    >$A$> |`D|D
=    >(% {A    >(% {)     >(% x}!    >(%       >(% @(    >$A$> DDD|DJ=    >$A$>   `p    >$A$>  0    >(%       >(%      >(% /    >(%       >(%     >(%  BG    >$A$> "      '#`(    8("N      8("N B    8$B("$B8  T0    8("N (      8$B("$B8  @>0    8$B("$B8  BDB;    8("N      8("N     8("N }    8("N }    8("N z!}    8$B("$B8  |@D|D
=    8("N {A    8("N {)     8("N x}!    8("N     8("N@(    8$B("$B8 DDD|DJ=    8$B("$B8   `p    8$B("$B8  0    8("N	 !    8("N     8("N     8("N     8("N     8("NBG    8$B("$B8        #@P""	 ( @      PrB!    @      PrB!  @B      PrB!   
c      0r "        PrB!  ?       PrB!  C      PrB!         A(r"         A(r"   }!C      A(r"   })HC      A(r"   z _C      A(r"   |@"C      A(r"   {P      A(r"   {JP      A(r"   x_PC      PrB! C      PrB! @"C      PrB! DB"C      PrB!  @1      PrB!    Rc      PrB! @      PrB!        A(r"         PrB!        A(r"          PrB!  !      A(r"  @ @A      	(D) 	     	D)         	D)   !    	D)   T0    	$)	  @ ?    	D)   @>0    	D)   BDB;    	D)   @ ?    	D)   ?    	D)  }A|<    	D)  }Q}<    	D)  }_}<    	D)  |@D|D
=    	D)  }P}<    	D)  }J|
=    	D)  |@_|<    	D)  @?    	D)  @?    	D)  DDD|DJ=    	D)    `p    	D)   0    	D)  @    	D)    pp    	D)    pp    	D)        	D)    ?    	D)      	D)        #pP""	 ( @      PBB!    @      PBB!  @B      PBB!   
c      0B "        PBB!  ?       PBB!  C      PBB!         A(B"         A(B"   }!C      A(B"   })HC      A(B"   z _C      A(B"   |@"C      A(B"   {P      A(B"   {JP      A(B"   x_PC      PBB! C      PBB! @"C      PBB! DB"C      PBB!  @1      PBB!    Rc      PBB! @      PBB!        A(B"         PBB!        A(B"          PBB!  !      A(B"  @ @A      	(D) 	     	D/         	D/   !    	D/   T0    	$/	  @ ?    	D/   @>0    	D/   BDB;    	D/   @ ?    	D/   ?    	D/  }A|<    	D/  }Q}<    	D/  }_}<    	D/  |@D|D
=    	D/  }P}<    	D/  }J|
=    	D/  |@_|<    	D/  @?    	D/  @?    	D/  DDD|DJ=    	D/    `p    	D/   0    	D/  @    	D/    pp    	D/    pp    	D/        	D/    ?    	D/      	D/        / "(&    "`rB`      "`rB` B    !"$$"  T0    "@rHP (      !"$$"  @>0    !"$$"  BDB;    "`rB`      !`r"`     !`r"` }    !`r"` }    !`r"` z!}     !N"$  |@D|D
=    !`r"` {A    !`r"` {)     !`r"` x}!    "`rB`     "`rB`@/     !"$$" DDD|DJ=    !"$$"   `p    !"$$"  0    "`rB`	 !    "`rB`     !`r"`     "`rB`     !`r"`     "`rB`BG     !N"$        _QQ(RDX% P P    QRDX% P        QRDX% P  !    QRDX% P  T0    QR$T%P T @ ?    QRDX% P  @>0    QRDX% P  BDB;    QRDX% P  @ ?    QRDX% P  ?    QRDX% P }A|<    QRDX% P }Q}<    QRDX% P }_}<    QRDX% P |@D|D
=    QRDX% P }P}<    QRDX% P }J|
=    QRDX% P |@_|<    QRDX% P @?    QRDX% P @?    QRDX% P DDD|DJ=    QRDX% P   `p    QRDX% P  0    QRDX% P @    QRDX% P   pp    QRDX% P   pp    QRDX% P       QRDX% P   ?    QRDX% P     QRDX% P       / E"(&    "cN`      "cN` B    !$"  T0    "CIЌ (      !$"  @>0    !$"  BDB;    "cN`      !`.`     !`.` }    !`.` }    !`.` z!}     !B"  |@D|D
=    !`.` {A    !`.` {)     !`.` x}!    "cN`     "cN`@/     !$" DDD|DJ=    !$"   `p    !$"  0    "cN`	 !    "cN`     !`.`     "cN`     !`.`     "cN`BG     !B"        _Q(RDX% P P    QRE% P        QRE% P  !    QRE% P  T0    Q҅$T=P T @ ?    QRE% P  @>0    QRE% P  BDB;    QRE% P  @ ?    QRE% P  ?    QRE% P }A|<    QRE% P }Q}<    QRE% P }_}<    QRE% P |@D|D
=    QRE% P }P}<    QRE% P }J|
=    QRE% P |@_|<    QRE% P @?    QRE% P @?    QRE% P DDD|DJ=    QRE% P   `p    QRE% P  0    QRE% P @    QRE% P   pp    QRE% P   pp    QRE% P       QRE% P   ?    QRE% P     QRE% P          P`0        b`            b`    B      b`   T0     b`    @ ?     b`   @>0     b`   BDB;     b`   @ ?     b`   ?     b`  }B|$<      b`  }R}$<     b`  z z$"9     b`  |@D|D
=     b`  {{ 9     b`  {yD;     b`  xyD"9     b`   @$?     b`   ?     b`   D|DJ=     b`     `p     b`   0     b`  @"     b`    p     b`   p     b`    '       b`    ?     b`       b`       #AB A? @      ADD   @      ADD @B      ADD  
c      ADD "       ADD ?       ADD C      ADD        ADD      ADD}!C      ADD{QC      ADDz _C      ADD|`"C      ADD{P      ADD{JP      ADDx_PC      ADD C      ADD@"C      ADDDB"C      ADD @1      ADD   Rc      ADD C      ADD       ADD#      ADD        ADD       ADD  !      ADDD @A      	(D)		     	(I		       	(I		 A    	(I		 T0    	(I		 @ ?    	(I		 @>0    	(I		 BDB;    	(I		 @ ?    	(I		 ?    	(I		}A|<    	(I		}Q}<    	(I		}_}<    	(I		|@D|D
=    	(I		}P}<    	(I		}J|
=    	(I		|@_|<    	(I		 @?    	(I		 ?    	(I		DGDDJ=    	(I		  `p    	(I		 0    	(I		 @?    	(I		  pp    	(I		 pp    	(I		       	(I		  ?    	(I		 @    	(I	I      / BDPHA!    !P      !P B     ""I  T0    !P (       ""I  @>0     ""I  BDB;    !P       !P    !P}    !P{E    !Pz!}     ""I |@D|D
=    !P{A    !P{)     !Px}!    !P      !P@(     ""I DDD|DJ=     ""I   `p     ""I  0    !P      !P     !P    !P      !P    !P BG     ""I "         P`1     p           p   B      p  T0     p   @ ?     p  @>0     p  BDB;     p  @ ?     p  ?     p }B|$<      p }R}$<     p z z$"9     p |@D|D
=     p {{ 9     p {yD;     p xyD"9     p  @$?     p  ?     p  D|DJ=     p    `p     p  0     p @"     p   p     p  p     p   '       p   ?     p      p     ?  F          ``           ``   B      ``  T0     ``   @ ?     ``  @>0     ``  BDB;     ``  @ ?     ``   ?     ``  }B|$<      ``  }R}$<     ``  z z$"9     ``  |@D|D
=     ``  {{ 9     ``  {yD;     ``  xyD"9     ``  @$?     ``  B$?     ``  FDD|DJ=     ``    `p     ``  0     ``  @$?     ``   p     ``   p     ``   '       ``    ?     ``       ``  B     / #@!<     !PBxA      !PBxA B     &2 /	 T0    !P A	       &2 /	 @>0     &2 /	 BDB;    !PBxA       !PBxA    !PBxA}    !PBxA{E    !PBxAz!}     &2 /	|@D|D
=    !PBxA{A    !PBxA{)     !PBxAx}!    !PBxA      !PBxA@(     &2 /	DDD|DJ=     &2 /	  `p     &2 /	 0    !PBxA      !PBxA     !PBxA    !PBxA      !PBxA    !PBxA BG     &2 /	      _RDX% _Q=QP    Q(\e _       Q(\e _ A    Q(\e _ T0    Q(\e _Q=T@ ?    Q(\e _ @>0    Q(\e _ BDB;    Q(\e _ @ ?    Q(\e _ ?    Q(\e _}A|<    Q(\e _}Q}<    Q(\e _}_}<    Q(\e _|@D|D
=    Q(\e _}P}<    Q(\e _}J|
=    Q(\e _|@_|<    Q(\e _ @?    Q(\e _ ?    Q(\e _DGDDJ=    Q(\e _  `p    Q(\e _ 0    Q(\e _ @?    Q(\e _  pp    Q(\e _ pp    Q(\e _       Q(\e _  ?    Q(\e _ @    Q(\e _E      / #@!     !PBA      !PBA B     &2 /  T0    !P A)       &2 /  @>0     &2 /  BDB;    !PBA       !PBxA    !PBxA}    !PBxA{E    !PBxAz!}     &2 /	|@D|D
=    !PBxA{A    !PBxA{)     !PBxAx}!    !PBA      !PBA@(     &2 / DDD|DJ=     &2 /   `p     &2 /  0    !PBA      !PBA     !PBxA    !PBA      !PBxA    !PBA BG     &2 /	     ?  F      ``          ``  B      `` T0     `` @ ?     `` @>0     `` BDB;     `` @ ?     ``  ?     `` }B|$<      `` }R}$<     `` z z$"9     `` |@D|D
=     `` {{ 9     `` {yD;     `` xyD"9     `` @$?     `` P?     `` TD|DJ=     ``  `p     `` 0     `` @$?     ``  p     ``  p     ``  '       ``   ?     ``      `` B        P`0         ``            ``    B      ``   T0     ``    @ ?     ``   @>0     ``   BDB;     ``   @ ?     ``   ?     ``  }B|$<      ``  }R}$<     ``  z z$"9     ``  |@D|D
=     ``  {{ 9     ``  {yD;     ``  xyD"9     ``   @$?     ``  @$?     ``  DDD|DJ=     ``    `p     ``   0     ``   @$?     ``    p     ``   p     ``    '       ``    ?     ``        ``  B     / BDPH      !P       !P  B     ""A  T0    !P  (       ""A  @>0     ""A  BDB;    !P        !P     !P }    !P {E    !P z!}     ""A |`D|D
=    !P {A    !P {)     !P x}!    !P       !P @(     ""A DDD|DJ=     ""A   `p     ""A  0    !P       !P      !P /    !P       !P     !P  BG     ""A "      / E"(&    "`B`      "`B` B    !"$$"  T0    "@HP (      !"$$"  @>0    !"$$"  BDB;    "`B`      !`"`     !`"` }    !`"` }    !`"` z!}     !B"$  |@D|D
=    !`"` {A    !`"` {)     !`"` x}!    "`B`     "`B`@(    !"$$" DDD|DJ=    !"$$"   `p    !"$$"  0    "`B`	 !    "`B`     !`"`     "`B`     !`"`     "`B`BG     !B"$        'DB"U$E"( @     uRDP    @     uRDP  @B     uRDP   
c     DuR*" "       uRDP  ?      uRDP  C     uRDP        DuR*"      DuR*" }!C     DuR*" })HC     DuR*" z _C     DuR*" |@"C     DuR*" {P     DuR*" {JP     DuR*" x_PC     uRDP C     uRDP @"C     uRDP DB"C     uRDP  @1     uRDP    Rc     uRDP @     uRDP       DuR*"      uRDP       DuR*"       uRDP  !     DuR*"@ @A      $I$O$J	     (OT)         (OT)   !    (OT)   T0    I$OZ	  @ ?    (OT)   @>0    (OT)   BDB;    (OT)   @ ?    I$R   ?    I$R  }A|<    I$R  }Q}<    I$R  }_}<    I$R  |@D|D
=    I$R  }P}<    I$R  }J|
=    I$R  |@_|<    (OT)  @?    (OT)  @?    (OT)  DDD|DJ=    (OT)    `p    (OT)   0    (OT)  @    (OT)    pp    I$R    pp    (OT)        I$R    ?    (OT)      I$R        'Dr"U$E"( @     ERD\    @     ERD\  @B     ERD\   
c     DER*" "       ERD\  ?      ERD\  C     ERD\        DER*"      DER*" }!C     DER*" })HC     DER*" z _C     DER*" |@"C     DER*" {P     DER*" {JP     DER*" x_PC     ERD\ C     ERD\ @"C     ERD\ DB"C     ERD\  @1     ERD\    Rc     ERD\ @     ERD\       DER*"      ERD\       DER*"       ERD\  !     DER*"@ @A      $O$I$J	     (IT/         (IT/   !    (IT/   T0    I$IZ	  @ ?    (IT/   @>0    (IT/   BDB;    (IT/   @ ?    I$R   ?    I$R  }A|<    I$R  }Q}<    I$R  }_}<    I$R  |@D|D
=    I$R  }P}<    I$R  }J|
=    I$R  |@_|<    (IT/  @?    (IT/  @?    (IT/  DDD|DJ=    (IT/    `p    (IT/   0    (IT/  @    (IT/    pp    I$R    pp    (IT/        I$R    ?    (IT/      I$R        ?"EȊU1"    DS@      DS@ B    ""%^U(   T0    DuRb( (      ""%^U(   @>0    ""%^U(   BDB;    DS@      DuRb(     DuRb( }    DuRb( }    DuRb( z!}    """.U%R |@D|D
=    DuRb( {A    DuRb( {)     DuRb( x}!    DS@     DS@@/     ""%^U(  DDD|DJ=    ""%^U(    `p    ""%^U(   0    DS@	 !    DS@     DuRb(     DS@     DuRb(     DS@BG    """.U%R       _$RE$R]$UJYP P    R(U}TZ% P        R(U}TZ% P  !    R(U}TZ% P  T0    RE$R]ZTP T @ ?    R(U}TZ% P  @>0    R(U}TZ% P  BDB;    R(U}TZ% P  @ ?    RE$URX P  ?    RE$URX P }A|<    RE$URX P }Q}<    RE$URX P }_}<    RE$URX P |@D|D
=    RE$URX P }P}<    RE$URX P }J|
=    RE$URX P |@_|<    R(U}TZ% P @?    R(U}TZ% P @?    R(U}TZ% P DDD|DJ=    R(U}TZ% P   `p    R(U}TZ% P  0    R(U}TZ% P @    R(U}TZ% P   pp    RE$URX P   pp    R(U}TZ% P       RE$URX P   ?    R(U}TZ% P     RE$URX P       ?.DHU1"    D_@      D_@ B    ""RU   T0    DR( (      ""RU   @>0    ""RU   BDB;    D_@      \^b(     \^b( }    \^b( }    \^b( z!}    ."""UR |@D|D
=    \^b( {A    \^b( {)     \^b( x}!    D_@     D_@@/     ""RU  DDD|DJ=    ""RU    `p    ""RU   0    D_@	 !    D_@     \^b(     D_@     \^b(     D_@BG    ."""UR       _$RE%E$UJYP P    R(UEU% P        R(UEU% P  !    R(UEU% P  T0    RE%EZTP T @ ?    R(UEU% P  @>0    R(UEU% P  BDB;    R(UEU% P  @ ?    R]$USؕ P  ?    R]$USؕ P }A|<    R]$USؕ P }Q}<    R]$USؕ P }_}<    R]$USؕ P |@D|D
=    R]$USؕ P }P}<    R]$USؕ P }J|
=    R]$USؕ P |@_|<    R(UEU% P @?    R(UEU% P @?    R(UEU% P DDD|DJ=    R(UEU% P   `p    R(UEU% P  0    R(UEU% P @    R(UEU% P   pp    R]$USؕ P   pp    R(UEU% P       R]$USؕ P   ?    R(UEU% P     R]$USؕ P        )Db       }(Q            }(Q     B     }(Q    T0    }(Q     @ ?    }(Q    @>0    }(Q    BDB;    }(Q    @ ?    }(Q    ?    }(Q   }B|$<     }(Q   }R}$<    }(Q   z z$"9    }(Q   |@D|D
=    }(Q   {{ 9    }(Q   {yD;    }(Q   xyD"9    }(Q    @$?    }(Q    ?    }(Q    D|DJ=    }(Q      `p    }(Q    0    }(Q   @"    }(Q     p    }(Q    p    }(Q     '      }(Q     ?    }(Q       }(Q        'DER*" A? @     H   @     H @B     H  
c     H "      H ?      H C     H       H     H}!C     H{QC     Hz _C     H|`"C     H{P     H{JP     Hx_PC     H C     H@"C     HDB"C     H @1     H   Rc     H C     H      H#     H       H      H  !     HD @A      (TI)		     I$ɒ		       I$ɒ		 A    I$ɒ		 T0    TI		 @ ?    I$ɒ		 @>0    I$ɒ		 BDB;    I$ɒ		 @ ?    I$ɒ		 ?    I$ɒ		}A|<    I$ɒ		}Q}<    I$ɒ		}_}<    I$ɒ		|@D|D
=    I$ɒ		}P}<    I$ɒ		}J|
=    I$ɒ		|@_|<    I$ɒ		 @?    I$ɒ		 ?    I$ɒ		DGDDJ=    I$ɒ		  `p    I$ɒ		 0    I$ɒ		 @?    I$ɒ		  pp    I$ɒ		 pp    I$ɒ		       I$ɒ		  ?    I$ɒ		 @    I$ɒ	I      >Rb(A!    D      D B    ""%R T0    D (      ""%R @>0    ""%R BDB;    D       D    D}    D{E    Dz!}    ""%R|@D|D
=    D{A    D{)     Dx}!    D      D@(    ""%RDDD|DJ=    ""%R  `p    ""%R 0    D      D     D    D      D    D BG    ""%R"       )Db    }(Q          }(Q   B     }(Q  T0    }(Q   @ ?    }(Q  @>0    }(Q  BDB;    }(Q  @ ?    }(Q  ?    }(Q }B|$<     }(Q }R}$<    }(Q z z$"9    }(Q |@D|D
=    }(Q {{ 9    }(Q {yD;    }(Q xyD"9    }(Q  @$?    }(Q  ?    }(Q  D|DJ=    }(Q    `p    }(Q  0    }(Q @"    }(Q   p    }(Q  p    }(Q   '      }(Q   ?    }(Q     }(Q     }B(Q         }(Q            }(Q     B     }(Q    T0    }(Q     @ ?    }(Q    @>0    }(Q    BDB;    }(Q    @ ?    }(Q     ?    }(Q    }B|$<     }(Q    }R}$<    }(Q    z z$"9    }(Q    |@D|D
=    }(Q    {{ 9    }(Q    {yD;    }(Q    xyD"9    }(Q    @$?    }(Q    B$?    }(Q    FDD|DJ=    }(Q      `p    }(Q    0    }(Q    @$?    }(Q     p    }(Q     p    }(Q     '      }(Q      ?    }(Q        }(Q    B     >S@!<     DPBxA      DPBxA B    "-$ /	 T0    D A	      "-$ /	 @>0    "-$ /	 BDB;    DPBxA       DPBxA    DPBxA}    DPBxA{E    DPBxAz!}    "-$ /	|@D|D
=    DPBxA{A    DPBxA{)     DPBxAx}!    DPBxA      DPBxA@(    "-$ /	DDD|DJ=    "-$ /	  `p    "-$ /	 0    DPBxA      DPBxA     DPBxA    DPBxA      DPBxA    DPBxA BG    "-$ /	      _$RElY% _Q=QP    REZY _       REZY _ A    REZY _ T0    RE$VŒ_Q=T@ ?    REZY _ @>0    REZY _ BDB;    REZY _ @ ?    REZY _ ?    REZY _}A|<    REZY _}Q}<    REZY _}_}<    REZY _|@D|D
=    REZY _}P}<    REZY _}J|
=    REZY _|@_|<    REZY _ @?    REZY _ ?    REZY _DGDDJ=    REZY _  `p    REZY _ 0    REZY _ @?    REZY _  pp    REZY _ pp    REZY _       REZY _  ?    REZY _ @    REZY _E      >S@!     DPBA      DPBA B    "-$ /  T0    D A)      "-$ /  @>0    "-$ /  BDB;    DPBA       DPBxA    DPBxA}    DPBxA{E    DPBxAz!}    "-$ /	|@D|D
=    DPBxA{A    DPBxA{)     DPBxAx}!    DPBA      DPBA@(    "-$ / DDD|DJ=    "-$ /   `p    "-$ /  0    DPBA      DPBA     DPBxA    DPBA      DPBxA    DPBA BG    "-$ /	     }B(Q     }(Q           }(Q    B     }(Q   T0    }(Q   @ ?    }(Q   @>0    }(Q   BDB;    }(Q   @ ?    }(Q    ?    }(Q   }B|$<     }(Q   }R}$<    }(Q   z z$"9    }(Q   |@D|D
=    }(Q   {{ 9    }(Q   {yD;    }(Q   xyD"9    }(Q   @$?    }(Q   P?    }(Q   TD|DJ=    }(Q    `p    }(Q   0    }(Q   @$?    }(Q    p    }(Q    p    }(Q    '      }(Q     ?    }(Q       }(Q   B      )Db        }(Q             }(Q      B     }(Q     T0    }(Q      @ ?    }(Q     @>0    }(Q     BDB;    }(Q     @ ?    }(Q     ?    }(Q    }B|$<     }(Q    }R}$<    }(Q    z z$"9    }(Q    |@D|D
=    }(Q    {{ 9    }(Q    {yD;    }(Q    xyD"9    }(Q     @$?    }(Q    @$?    }(Q    DDD|DJ=    }(Q      `p    }(Q     0    }(Q     @$?    }(Q      p    }(Q     p    }(Q      '      }(Q      ?    }(Q         }(Q    B     >Rb(      D       D  B    ""%R T0    D  (      ""%R @>0    ""%R BDB;    D        D     D }    D {E    D z!}    ""%R|`D|D
=    D {A    D {)     D x}!    D       D @(    ""%RDDD|DJ=    ""%R  `p    ""%R 0    D       D      D /    D       D     D  BG    ""%R"      ?"DHU1"    DS@      DS@ B    ""%RU(   T0    DRb( (      ""%RU(   @>0    ""%RU(   BDB;    DS@      DRb(     DRb( }    DRb( }    DRb( z!}    """"U%R |@D|D
=    DRb( {A    DRb( {)     DRb( x}!    DS@     DS@@(    ""%RU(  DDD|DJ=    ""%RU(    `p    ""%RU(   0    DS@	 !    DS@     DRb(     DS@     DRb(     DS@BG    """"U%R       ! 	@P""	 ( @     8 ? qD   @     8 ? qD @B     8 ? qD  
c      ?p
4 "       8 ? qD ?      8 ? qD C     8 ? qD        ?qB       ?qB }!C      ?qB })HC      ?qB z _C      ?qB |@"C      ?qB {P      ?qB {JP      ?qB x_PC     8 ? qDC     8 ? qD@"C     8 ? qDDB"C     8 ? qD @1     8 ? qD   Rc     8 ? qD@     8 ? qD       ?qB      8 ? qD       ?qB       8 ? qD !      ?qB@ @A       (DI	     8	Ɛ        8	Ɛ  !    8	Ɛ  T0    8	D)  @ ?    8	Ɛ  @>0    8	Ɛ  BDB;    8	Ɛ  @ ?    8	Ɛ  ?    8	Ɛ }A|<    8	Ɛ }Q}<    8	Ɛ }_}<    8	Ɛ |@D|D
=    8	Ɛ }P}<    8	Ɛ }J|
=    8	Ɛ |@_|<    8	Ɛ @?    8	Ɛ @?    8	Ɛ DDD|DJ=    8	Ɛ   `p    8	Ɛ  0    8	Ɛ @    8	Ɛ   pp    8	Ɛ   pp    8	Ɛ       8	Ɛ   ?    8	Ɛ     8	Ɛ       ! 	pP""	 ( @     8 ? AD   @     8 ? AD @B     8 ? AD  
c      ?@
4 "       8 ? AD ?      8 ? AD C     8 ? AD        ?AB       ?AB }!C      ?AB })HC      ?AB z _C      ?AB |@"C      ?AB {P      ?AB {JP      ?AB x_PC     8 ? ADC     8 ? AD@"C     8 ? ADDB"C     8 ? AD @1     8 ? AD   Rc     8 ? AD@     8 ? AD       ?AB      8 ? AD       ?AB       8 ? AD !      ?AB@ @A       	(DI	     8		Ɛ        8		Ɛ  !    8		Ɛ  T0    8		D)  @ ?    8		Ɛ  @>0    8		Ɛ  BDB;    8		Ɛ  @ ?    8		Ɛ  ?    8		Ɛ }A|<    8		Ɛ }Q}<    8		Ɛ }_}<    8		Ɛ |@D|D
=    8		Ɛ }P}<    8		Ɛ }J|
=    8		Ɛ |@_|<    8		Ɛ @?    8		Ɛ @?    8		Ɛ DDD|DJ=    8		Ɛ   `p    8		Ɛ  0    8		Ɛ @    8		Ɛ   pp    8		Ɛ   pp    8		Ɛ       8		Ɛ   ?    8		Ɛ     8		Ɛ       ' Ђ"(&    8 qPQ      8 qPQ B    8 !"D(" T0     p(H (      8 !"D(" @>0    8 !"D(" BDB;    8 qPQ       qBDpH      qBDpH }     qBDpH }     qBDpH z!}      ""  |@D|D
=     qBDpH {A     qBDpH {)      qBDpH x}!    8 qPQ     8 qPQ@/     8 !"D("DDD|DJ=    8 !"D("  `p    8 !"D(" 0    8 qPQ	 !    8 qPQ      qBDpH     8 qPQ      qBDpH     8 qPQBG      ""        W _Q(RDTEP P    8PQRP        8PQRP  !    8PQRP  T0    8PQRDX% T @ ?    8PQRP  @>0    8PQRP  BDB;    8PQRP  @ ?    8PQRP  ?    8PQRP }A|<    8PQRP }Q}<    8PQRP }_}<    8PQRP |@D|D
=    8PQRP }P}<    8PQRP }J|
=    8PQRP |@_|<    8PQRP @?    8PQRP @?    8PQRP DDD|DJ=    8PQRP   `p    8PQRP  0    8PQRP @    8PQRP   pp    8PQRP   pp    8PQRP       8PQRP   ?    8PQRP     8PQRP       ' ЎE"(&    8 PQ      8 PQ B    8 D(" T0     )Ȏ (      8 D(" @>0    8 D(" BDB;    8 PQ       BEH      BEH }     BEH }     BEH z!}     ".  |@D|D
=     BEH {A     BEH {)      BEH x}!    8 PQ     8 PQ@/     8 D("DDD|DJ=    8 D("  `p    8 D(" 0    8 PQ	 !    8 PQ      BEH     8 PQ      BEH     8 PQBG     ".        W _(RDTEP P    8PQ҅P        8PQ҅P  !    8PQ҅P  T0    8PRDX% T @ ?    8PQ҅P  @>0    8PQ҅P  BDB;    8PQ҅P  @ ?    8PRP  ?    8PRP }A|<    8PRP }Q}<    8PRP }_}<    8PRP |@D|D
=    8PRP }P}<    8PRP }J|
=    8PRP |@_|<    8PQ҅P @?    8PQ҅P @?    8PQ҅P DDD|DJ=    8PQ҅P   `p    8PQ҅P  0    8PQ҅P @    8PQ҅P   pp    8PRP   pp    8PQ҅P       8PRP   ?    8PQ҅P     8PRP           pp         P&           P&  B       P& T0     PF  @ ?      P& @>0      P& BDB;      P& @ ?      p`   ?      p`  }B|$<       p`  }R}$<      p`  z z$"9      p`  |@D|D
=      p`  {{ 9      p`  {yD;      p`  xyD"9      P& @$?      P& ?      P& DD|DJ=      P&  `p      P& 0      P& @$?      P&  p      p`   p      P&  '        p`    ?      P&       p`          @
$ A? @      AB5  #  @      AB5  #@B      AB5  # 
c      AB5  "       AB5  "?       AB5  C      AB5  #       (F2      (F2}!C      (F2{QC      (F2z _C      (F2|@"C      (F2{P      (F2{JP      (F2x_PC      AB5  #C      AB5 @"C      AB5 Db"C      AB5  @1      AB5    Rc      AB5  !C      AB5  #      (F2      AB5  #       (F2       AB5  # !      (F2D @A       (I		     8		(o       8		(o A    8		(o T0    8		(i  @ ?    8		(o @>0    8		(o BDB;    8		(o @ ?    8	Ƒ	 ?    8	Ƒ	}A|<    8	Ƒ	}Q}<    8	Ƒ	}_}<    8	Ƒ	|@D|D
=    8	Ƒ	}P}<    8	Ƒ	}J|
=    8	Ƒ	|@_|<    8		(o @?    8		(o ?    8		(oDDDJ=    8		(o `p    8		(o 0    8		(o @?    8		(o  pp    8	Ƒ	 pp    8		(o       8	Ƒ	  ?    8		(o @    8	ƑI      # (HI!     BB /      BB /B      &/ 'T0     BB (        &/ $@>0      &/ BDB;     BB /       2     2}     2{E     2z!}     !Bc |@D|D
=     2{A     2{)      2x}!     BB /      BB@(      &/DdD|DJ=      &/  `p      &/ !0     BB '      BB /     2     BB /      2     BB /BG     !Bc "          pq      P           P  B       P T0     P  @ ?      P @>0      P BDB;      P @ ?      pa  ?      pa }B|$<       pa }R}$<      pa z z$"9      pa |@D|D
=      pa {{ 9      pa {yD;      pa xyD"9      P @$?      P ?      P DD|DJ=      P  `p      P 0      P @$?      P  p      pa  p      P  '        pa   ?      P       pa       ?           P          P  B      P T0     P  B ?     P @>0     P BDB;     P @ ?     Px   ?     Px  }B|$<      Px  {z$"9     Px  z z$"9     Px  |@D|D
=     Px  {{ 9     Px  {yD;     Px  xyD"9     P @$?     P B$?     P FDD|DJ=     P   `p     P 0     P @$?     P  p     Px   p     P  '       Px    ?     P      Px       > C@!<     8 ~ A/     8 ~ A/B    8 ! 'T0     qB@)      8 ! $@>0    8 ! BDB;    8 ~ A/      8 ~ A    8 ~ A}    8 ~ A{E    8 ~ Az!}    8 ! |@D|D
=    8 ~ A{A    8 ~ A{)     8 ~ Ax}!    8 ~ A/     8 ~ AH(    8 ! LdD|DJ=    8 ! 
  `p    8 ! !0    8 ~ A'     8 ~ A/    8 ~ A    8 ~ A/     8 ~ A    8 ~ A/BG    8 !      |PQ(\e _Q=QP    8PQPQW      8PQPQWA    8PQPQWT0    8PRP _U@ ?    8PQPQT@>0    8PQPQBDB;    8PQPQW@ ?    8PQPQ ?    8PQPQ}A|<    8PQPQ}Q}<    8PQPQ}_}<    8PQPQ|@D|D
=    8PQPQ}P}<    8PQPQ}J|
=    8PQPQ|@_|<    8PQPQW@?    8PQPQT?    8PQPQTWDDJ=    8PQPQP `p    8PQPQQ0    8PQPQS@?    8PQPQW pp    8PQPQ pp    8PQPQW      8PQPQ  ?    8PQPQW@    8PQPQE     > C@!     8  A/     8  A/B    8 ! 'T0     B@)      8 ! $@>0    8 ! BDB;    8  A/      8  A    8  A}    8  A{E    8  Az!}    8 ! |@D|D
=    8  A{A    8  A{)     8  Ax}!    8  A/     8  AH(    8 ! LdD|DJ=    8 ! 
  `p    8 ! !0    8  A'     8  A/    8  A    8  A/     8  A    8  A/BG    8 !       ?       P          P  B      P T0     P H ?     P @>0     P BDB;     P @ ?     Px  ?     Px }B|$<      Px {z$"9     Px z z$"9     Px |@D|D
=     Px {{ 9     Px {yD;     Px xyD"9     P @$?     P P
?     P TL|DJ=     P (`p     P 0     P @$?     P  p     Px  p     P  '       Px   ?     P      Px (          pp         P           P   B      P  T0     P   @ ?     P  @>0     P  BDB;     P  @ ?     Px   ?     Px  }B|$<      Px  {z$"9     Px  z z$"9     Px  |@D|D
=     Px  {{ 9     Px  {yD;     Px  xyD"9     P  @$?     P @$?     P DDD|DJ=     P   `p     P  0     P  @$?     P   p     Px   p     P   '       Px    ?     P       Px        # (H	       B@ /      B@ /B      &2 / 'T0     B@ (        &2 / $@>0      &2 / BDB;     B@ /       2      2 }     2 {E     2 z!}     !Bc |@D|D
=     2 {A     2 {)      2 x}!     B@ /      B@@(      &2 /DdD|DJ=      &2 /  `p      &2 / !0     B@ '      B@ /     2      B@ /      2      B@ /BG     !Bc "      ' ЂE"(&    8 PQ      8 PQ B    8 !"D(" T0     (H (      8 !"D(" @>0    8 !"D(" BDB;    8 PQ       BDpH      BDpH }     BDpH }     BDpH z!}      ""  |@D|D
=     BDpH {A     BDpH {)      BDpH x}!    8 PQ     8 PQ@(    8 !"D("DDD|DJ=    8 !"D("  `p    8 !"D(" 0    8 PQ	 !    8 PQ      BDpH     8 PQ      BDpH     8 PQBG      ""        '@B~ 8 @       pB   @       pB @B       pB  
c       p"` "         pB ?        pB C       pB         pB        pB }!C       pB })HC       pB z _C       pB |@"C       pB {P       pB {JP       pB x_PC       pBC       pB@"C       pBDB"C       pB @1       pB   Rc       pB@       pB        pB        pB        pB         pB !       pB@ @A      			     I	        I	  !    I	  T0    I0	  @ ?    I	  @>0    I	  BDB;    I	  @ ?    I	  ?    I	 }A|<    I	 }Q}<    I	 }_}<    I	 |@D|D
=    I	 }P}<    I	 }J|
=    I	 |@_|<    I	 @?    I	 @?    I	 DDD|DJ=    I	   `p    I	  0    I	 @    I	   pp    I	   pp    I	       I	   ?    I	     I	       'pB~ 8 @       @B   @       @B @B       @B  
c       @"` "         @B ?        @B C       @B         @B        @B }!C       @B })HC       @B z _C       @B |@"C       @B {P       @B {JP       @B x_PC       @BC       @B@"C       @BDB"C       @B @1       @B   Rc       @B@       @B        @B        @B        @B         @B !       @B@ @A      		     I        I  !    I  T0    I0	  @ ?    I  @>0    I  BDB;    I  @ ?    I  ?    I }A|<    I }Q}<    I }_}<    I |@D|D
=    I }P}<    I }J|
=    I |@_|<    I @?    I @?    I DDD|DJ=    I   `p    I  0    I @    I   pp    I   pp    I       I   ?    I     I       ?CA"     DB0x       DB0x B     "/!  T0     D"F (       "/!  @>0     "/!  BDB;     DB0x       DB0x      DB0x }     DB0x }     DB0x z!}     "/!  |@D|D
=     DB0x {A     DB0x {)      DB0x x}!     DB0x      DB0x@/      "/! DDD|DJ=     "/!   `p     "/!  0     DB0x	 !     DB0x      DB0x      DB0x      DB0x      DB0xBG     "/!        _P_QRP P    PE_QP        PE_QP  !    PE_QP  T0    PE_P0\ T @ ?    PE_QP  @>0    PE_QP  BDB;    PE_QP  @ ?    PE_QP  ?    PE_QP }A|<    PE_QP }Q}<    PE_QP }_}<    PE_QP |@D|D
=    PE_QP }P}<    PE_QP }J|
=    PE_QP |@_|<    PE_QP @?    PE_QP @?    PE_QP DDD|DJ=    PE_QP   `p    PE_QP  0    PE_QP @    PE_QP   pp    PE_QP   pp    PE_QP       PE_QP   ?    PE_QP     PE_QP       ?CAO"     DB3       DB3 B     "!  T0     D" (       "!  @>0     "!  BDB;     DB3       DB3      DB3 }     DB3 }     DB3 z!}     "!  |@D|D
=     DB3 {A     DB3 {)      DB3 x}!     DB3      DB3@/      "! DDD|DJ=     "!   `p     "!  0     DB3	 !     DB3      DB3      DB3      DB3      DB3BG     "!        _P_Q=RP P    PEQ=P        PEQ=P  !    PEQ=P  T0    PEP0\ T @ ?    PEQ=P  @>0    PEQ=P  BDB;    PEQ=P  @ ?    PEQ=P  ?    PEQ=P }A|<    PEQ=P }Q}<    PEQ=P }_}<    PEQ=P |@D|D
=    PEQ=P }P}<    PEQ=P }J|
=    PEQ=P |@_|<    PEQ=P @?    PEQ=P @?    PEQ=P DDD|DJ=    PEQ=P   `p    PEQ=P  0    PEQ=P @    PEQ=P   pp    PEQ=P   pp    PEQ=P       PEQ=P   ?    PEQ=P     PEQ=P           B@@    @          @   B     @  T0        @ ?    @  @>0    @  BDB;    @  @ ?    @  ?    @ }B|$<     @ }R}$<    @ z z$"9    @ |@D|D
=    @ {{ 9    @ {yD;    @ xyD"9    @  @$?    @  ?    @  D|DJ=    @    `p    @  0    @ @"    @   p    @  p    @   '      @   ?    @     @      ' OD ? @      	"q"   @      	"q" @B      	"q"  
c      	"A" "       	"q" ?       	"q" C      	"q"        	"q"      	"q"}!C      	"q"{QC      	"q"z _C      	"q"|@"C      	"q"{P      	"q"{JP      	"q"x_PC      	"q" C      	"q"@"C      	"q"DB"C      	"q" @1      	"q"   Rc      	"q" C      	"q"       	"q"      	"q"        	"q"       	"q"  !      	"q"D @A      III(		     II(		       II(		 A    II(		 T0    II$	 @ ?    II(		 @>0    II(		 BDB;    II(		 @ ?    II(		 ?    II(		}A|<    II(		}Q}<    II(		}_}<    II(		|@D|D
=    II(		}P}<    II(		}J|
=    II(		|@_|<    II(		 @?    II(		 ?    II(		DGDDJ=    II(		  `p    II(		 0    II(		 @?    II(		  pp    II(		 pp    II(		       II(		  ?    II(		 @    II(	I      ?@"     %"        %"  B     !! T0     %"  (       !! @>0     !! BDB;     %"         %"      %" }     %" {E     %" z!}     !!|@D|D
=     %" {A     %" {)      %" x}!     %"        %" @(     !!DDD|DJ=     !!  `p     !! 0     %"        %"       %"      %"        %"      %"  BG     !!"         !A    A          A   B     A  T0    !   @ ?    A  @>0    A  BDB;    A  @ ?    A  ?    A }B|$<     A }R}$<    A z z$"9    A |@D|D
=    A {{ 9    A {yD;    A xyD"9    A  @$?    A  ?    A  D|DJ=    A    `p    A  0    A @"    A   p    A  p    A   '      A   ?    A     A      '            @           @   B      @  T0     @   @ ?     @  @>0     @  BDB;     @  @ ?     @   ?     @  }B|$<      @  }R}$<     @  z z$"9     @  |@D|D
=     @  {{ 9     @  {yD;     @  xyD"9     @  @$?     @  B$?     @  FDD|DJ=     @    `p     @  0     @  @$?     @   p     @   p     @   '       @    ?     @       @  B     /@!<     ~ ECDx      ~ ECDx B    ~ "~ "/ T0     %" A	      ~ "~ "/ @>0    ~ "~ "/ BDB;    ~ ECDx       ~ ECDx    ~ ECDx}    ~ ECDx{E    ~ ECDxz!}    ~ "~ "/|@D|D
=    ~ ECDx{A    ~ ECDx{)     ~ ECDxx}!    ~ ECDx      ~ ECDx@(    ~ "~ "/DDD|DJ=    ~ "~ "/  `p    ~ "~ "/ 0    ~ ECDx      ~ ECDx     ~ ECDx    ~ ECDx      ~ ECDx    ~ ECDx BG    ~ "~ "/"      __PE_Q=QP    ~P%~P%_       ~P%~P%_ A    ~P%~P%_ T0    PEPE_Q=U@ ?    ~P%~P%_ @>0    ~P%~P%_ BDB;    ~P%~P%_ @ ?    ~P%~P%_ ?    ~P%~P%_}A|<    ~P%~P%_}Q}<    ~P%~P%_}_}<    ~P%~P%_|@D|D
=    ~P%~P%_}P}<    ~P%~P%_}J|
=    ~P%~P%_|@_|<    ~P%~P%_ @?    ~P%~P%_ ?    ~P%~P%_DGDDJ=    ~P%~P%_  `p    ~P%~P%_ 0    ~P%~P%_ @?    ~P%~P%_  pp    ~P%~P%_ pp    ~P%~P%_       ~P%~P%_  ?    ~P%~P%_ @    ~P%~P%_E      /@!     ~ ECD      ~ ECD B    ~ "~ "/! T0     %" A)      ~ "~ "/! @>0    ~ "~ "/! BDB;    ~ ECD       ~ ECD    ~ ECD}    ~ ECD{E    ~ ECDz!}    ~ "~ "/!|@D|D
=    ~ ECD{A    ~ ECD{)     ~ ECDx}!    ~ ECD      ~ ECD@(    ~ "~ "/!DDD|DJ=    ~ "~ "/!  `p    ~ "~ "/! 0    ~ ECD      ~ ECD     ~ ECD    ~ ECD      ~ ECD    ~ ECD BG    ~ "~ "/!"      '        @          @  B      @ T0     @ @ ?     @ @>0     @ BDB;     @ @ ?     @  ?     @ }B|$<      @ }R}$<     @ z z$"9     @ |@D|D
=     @ {{ 9     @ {yD;     @ xyD"9     @ @$?     @ P?     @ TD|DJ=     @  `p     @ 0     @ @$?     @  p     @  p     @  '       @   ?     @      @ B           @      @            @    B      @   T0     @    @ ?     @   @>0     @   BDB;     @   @ ?     @   ?     @  }B|$<      @  }R}$<     @  z z$"9     @  |@D|D
=     @  {{ 9     @  {yD;     @  xyD"9     @   @$?     @  @$?     @  DDD|DJ=     @    `p     @   0     @   @$?     @    p     @   p     @    '       @    ?     @        @  B     ?@      %"        %"  B        T0     %"  (          @>0        BDB;     %"         %"      %" }     %" {E     %" z!}       |@D|D
=     %" {A     %" {)      %" x}!     %"        %" @(       DDD|DJ=         `p        0     %"        %"       %"      %"        %"      %"  BG       "      ?CAA"     DB0x       DB0x B     "/!  T0     D"F (       "/!  @>0     "/!  BDB;     DB0x       DB0x      DB0x }     DB0x }     DB0x z!}     "/!  |@D|D
=     DB0x {A     DB0x {)      DB0x x}!     DB0x      DB0x@(     "/! DDD|DJ=     "/!   `p     "/!  0     DB0x	 !     DB0x      DB0x      DB0x      DB0x      DB0xBG     "/!        ' 	 H~ #  @     $ 	x@   @     $ 	x@ @B     $ 	x@  
c     $ 	x@ "       $ 	x@ ?      $ 	x@ C     $ 	x@       $ 	x@      $ 	x@ }!C     $ 	x@ })HC     $ 	x@ z _C     $ 	x@ |@"C     $ 	x@ {P     $ 	x@ {JP     $ 	x@ x_PC     $ 	x@C     $ 	x@@"C     $ 	x@DB"C     $ 	x@ @1     $ 	x@   Rc     $ 	x@@     $ 	x@      $ 	x@      $ 	x@      $ 	x@       $ 	x@ !     $ 	x@@ @A      ɀ	π	 	     	π	|        	π	|  !    	π	|  T0    	π	|	  @ ?    	π	|  @>0    	π	|  BDB;    	π	|  @ ?    	π	|  ?    	π	| }A|<    	π	| }Q}<    	π	| }_}<    	π	| |@D|D
=    	π	| }P}<    	π	| }J|
=    	π	| |@_|<    	π	| @?    	π	| @?    	π	| DDD|DJ=    	π	|   `p    	π	|  0    	π	| @    	π	|   pp    	π	|   pp    	π	|       	π	|   ?    	π	|     	π	|       ' 	 x~ #  @     $ H@   @     $ H@ @B     $ H@  
c     $ H@ "       $ H@ ?      $ H@ C     $ H@       $ H@      $ H@ }!C     $ H@ })HC     $ H@ z _C     $ H@ |@"C     $ H@ {P     $ H@ {JP     $ H@ x_PC     $ H@C     $ H@@"C     $ H@DB"C     $ H@ @1     $ H@   Rc     $ H@@     $ H@      $ H@      $ H@      $ H@       $ H@ !     $ H@@ @A      ɀɀ 	     	ɀ|        	ɀ|  !    	ɀ|  T0    	ɀ|	  @ ?    	ɀ|  @>0    	ɀ|  BDB;    	ɀ|  @ ?    	ɀ|  ?    	ɀ| }A|<    	ɀ| }Q}<    	ɀ| }_}<    	ɀ| |@D|D
=    	ɀ| }P}<    	ɀ| }J|
=    	ɀ| |@_|<    	ɀ| @?    	ɀ| @?    	ɀ| DDD|DJ=    	ɀ|   `p    	ɀ|  0    	ɀ| @    	ɀ|   pp    	ɀ|   pp    	ɀ|       	ɀ|   ?    	ɀ|     	ɀ|       ? /     0 x _      0 x _ B    (/΀(  T0    0 x _ (      (/΀(  @>0    (/΀(  BDB;    0 x _      0 x _     0 x _ }    0 x _ }    0 x _ z!}    (/(  |@D|D
=    0 x _ {A    0 x _ {)     0 x _ x}!    0 x _     0 x _@/     (/΀( DDD|DJ=    (/΀(   `p    (/΀(  0    0 x _	 !    0 x _     0 x _     0 x _     0 x _     0 x _BG    (/(        _ŀX_݀XW P P    X_݀X|P        X_݀X|P  !    X_݀X|P  T0    X_݀X|P T @ ?    X_݀X|P  @>0    X_݀X|P  BDB;    X_݀X|P  @ ?    X_݀X|P  ?    X_݀X|P }A|<    X_݀X|P }Q}<    X_݀X|P }_}<    X_݀X|P |@D|D
=    X_݀X|P }P}<    X_݀X|P }J|
=    X_݀X|P |@_|<    X_݀X|P @?    X_݀X|P @?    X_݀X|P DDD|DJ=    X_݀X|P   `p    X_݀X|P  0    X_݀X|P @    X_݀X|P   pp    X_݀X|P   pp    X_݀X|P       X_݀X|P   ?    X_݀X|P     X_݀X|P       ? `/     0 _      0 _ B    (  T0    0 (      (  @>0    (  BDB;    0 _      0     0 }    0 }    0 z!}    ((  |@D|D
=    0 {A    0 {)     0 x}!    0 _     0 _@/     ( DDD|DJ=    (   `p    (  0    0 _	 !    0 _     0     0 _     0     0 _BG    ((        _ŀXŀXW P P    X_Ł|P        X_Ł|P  !    X_Ł|P  T0    XŀX|P T @ ?    X_Ł|P  @>0    X_Ł|P  BDB;    X_Ł|P  @ ?    XŀX|P  ?    XŀX|P }A|<    XŀX|P }Q}<    XŀX|P }_}<    XŀX|P |@D|D
=    XŀX|P }P}<    XŀX|P }J|
=    XŀX|P |@_|<    X_Ł|P @?    X_Ł|P @?    X_Ł|P DDD|DJ=    X_Ł|P   `p    X_Ł|P  0    X_Ł|P @    X_Ł|P   pp    XŀX|P   pp    X_Ł|P       XŀX|P   ?    X_Ł|P     XŀX|P         @@ ?         ?            ?   B       ?  T0      ?@  @ ?      ?  @>0      ?  BDB;      ?  @ ?      ?   ?      ?  }B|$<       ?  }R}$<      ?  z z$"9      ?  |@D|D
=      ?  {{ 9      ?  {yD;      ?  xyD"9      ?  @$?      ?  ?      ?  DD|DJ=      ?   `p      ?  0      ?  @$?      ?   p      ?   p      ?   '        ?    ?      ?        ?        #D  A? @     "ȀC  #  @     "ȀC  #@B     "ȀC  # 
c     "ȀC  "      "ȀC  "?      "ȀC  C     "ȀC  #      "ȀC     "ȀC}!C     "ȀC{QC     "ȀCz _C     "ȀC|@"C     "ȀC{P     "ȀC{JP     "ȀCx_PC     "ȀC  #C     "ȀC @"C     "ȀC Db"C     "ȀC  @1     "ȀC    Rc     "ȀC  !C     "ȀC  #     "ȀC     "ȀC  #      "ȀC      "ȀC  # !     "ȀCD @A      ɀ				     		|       		| A    		| T0    		  @ ?    		| @>0    		| BDB;    		| @ ?    		|	 ?    		|	}A|<    		|	}Q}<    		|	}_}<    		|	|@D|D
=    		|	}P}<    		|	}J|
=    		|	|@_|<    		| @?    		| ?    		|DDDJ=    		| `p    		| 0    		| @?    		|  pp    		|	 pp    		|       		|	  ?    		| @    		|I      / OA!    (B /     (B /B    $$? / 'T0    (B (      $$? / $@>0    $$? / BDB;    (B /      (    (}    ({E    (z!}    $$? |@D|D
=    ({A    ({)     (x}!    (B /     (B@(    $$? /DdD|DJ=    $$? /  `p    $$? / !0    (B '     (B /    (    (B /     (    (B /BG    $$? "        @@ ?      ?           ?  B       ? T0      ?  @ ?      ? @>0      ? BDB;      ? @ ?      ?  ?      ? }B|$<       ? }R}$<      ? z z$"9      ? |@D|D
=      ? {{ 9      ? {yD;      ? xyD"9      ? @$?      ? ?      ? DD|DJ=      ?  `p      ? 0      ? @$?      ?  p      ?  p      ?  '        ?   ?      ?       ?        @           ?            ?   B       ?  T0      ?   B ?      ?  @>0      ?  BDB;      ?  @ ?      ?   ?      ?  }B|$<       ?  {z$"9      ?  z z$"9      ?  |@D|D
=      ?  {{ 9      ?  {yD;      ?  xyD"9      ?  @$?      ?  B$?      ?  FDD|DJ=      ?    `p      ?  0      ?  @$?      ?   p      ?   p      ?   '        ?    ?      ?        ?        / ~@!<     ~(s A/     ~(s A/B    ~$~$> 'T0    (s @)      ~$~$> $@>0    ~$~$> BDB;    ~(s A/      ~(s A    ~(s A}    ~(s A{E    ~(s Az!}    ~$~$> |@D|D
=    ~(s A{A    ~(s A{)     ~(s Ax}!    ~(s A/     ~(s AH(    ~$~$> LdD|DJ=    ~$~$> 
  `p    ~$~$> !0    ~(s A'     ~(s A/    ~(s A    ~(s A/     ~(s A    ~(s A/BG    ~$~$>       __ŀW _Q=QP    ~T~T>PQW      ~T~T>PQWA    ~T~T>PQWT0    XX|P _U@ ?    ~T~T>PQT@>0    ~T~T>PQBDB;    ~T~T>PQW@ ?    ~T~T>PQ ?    ~T~T>PQ}A|<    ~T~T>PQ}Q}<    ~T~T>PQ}_}<    ~T~T>PQ|@D|D
=    ~T~T>PQ}P}<    ~T~T>PQ}J|
=    ~T~T>PQ|@_|<    ~T~T>PQW@?    ~T~T>PQT?    ~T~T>PQTWDDJ=    ~T~T>PQP `p    ~T~T>PQQ0    ~T~T>PQS@?    ~T~T>PQW pp    ~T~T>PQ pp    ~T~T>PQW      ~T~T>PQ  ?    ~T~T>PQW@    ~T~T>PQE      / ~@!     ~( A/     ~( A/B    ~$~$> 'T0    ( @)      ~$~$> $@>0    ~$~$> BDB;    ~( A/      ~( A    ~( A}    ~( A{E    ~( Az!}    ~$~$> |@D|D
=    ~( A{A    ~( A{)     ~( Ax}!    ~( A/     ~( AH(    ~$~$> LdD|DJ=    ~$~$> 
  `p    ~$~$> !0    ~( A'     ~( A/    ~( A    ~( A/     ~( A    ~( A/BG    ~$~$>        @       ?            ?   B       ?  T0      ?  H ?      ?  @>0      ?  BDB;      ?  @ ?      ?  ?      ? }B|$<       ? {z$"9      ? z z$"9      ? |@D|D
=      ? {{ 9      ? {yD;      ? xyD"9      ?  @$?      ?  P
?      ?  TL|DJ=      ?  (`p      ?  0      ?  @$?      ?   p      ?  p      ?   '        ?   ?      ?        ? (        @@ ?          ?             ?    B       ?   T0      ?    @ ?      ?   @>0      ?   BDB;      ?   @ ?      ?   ?      ?  }B|$<       ?  {z$"9      ?  z z$"9      ?  |@D|D
=      ?  {{ 9      ?  {yD;      ?  xyD"9      ?   @$?      ?  @$?      ?  DDD|DJ=      ?    `p      ?   0      ?   @$?      ?    p      ?   p      ?    '        ?    ?      ?         ?        / O      ( @ /     ( @ /B    $$?  / 'T0    ( @ (      $$?  / $@>0    $$?  / BDB;    ( @ /      (     ( }    ( {E    ( z!}    $$? |@D|D
=    ( {A    ( {)     ( x}!    ( @ /     ( @@(    $$?  /DdD|DJ=    $$?  /  `p    $$?  / !0    ( @ '     ( @ /    (     ( @ /     (     ( @ /BG    $$? "      ? `/     0  _      0  _ B    (/(  T0    0  _ (      (/(  @>0    (/(  BDB;    0  _      0  _     0  _ }    0  _ }    0  _ z!}    (/(  |@D|D
=    0  _ {A    0  _ {)     0  _ x}!    0  _     0  _@(    (/( DDD|DJ=    (/(   `p    (/(  0    0  _	 !    0  _     0  _     0  _     0  _     0  _BG    (/(        ' HBB$'  @      tB    @      tB  @B      tB   
c      tB" "        tB  ?       tB  C      tB         tB        tB  }!C      tB  })HC      tB  z _C      tB  |@"C      tB  {P      tB  {JP      tB  x_PC      tB C      tB @"C      tB DB"C      tB  @1      tB    Rc      tB @      tB        tB        tB        tB         tB  !      tB @ @A       HHH 	     	DOD         	DOD   !    	DOD   T0    	DODI	  @ ?    	DOD   @>0    	DOD   BDB;    	DOD   @ ?    	DOD   ?    	DOD  }A|<    	DOD  }Q}<    	DOD  }_}<    	DOD  |@D|D
=    	DOD  }P}<    	DOD  }J|
=    	DOD  |@_|<    	DOD  @?    	DOD  @?    	DOD  DDD|DJ=    	DOD    `p    	DOD   0    	DOD  @    	DOD    pp    	DOD    pp    	DOD        	DOD    ?    	DOD      	DOD        ' HrB$'  @      DB    @      DB  @B      DB   
c      DB" "        DB  ?       DB  C      DB         DB        DB  }!C      DB  })HC      DB  z _C      DB  |@"C      DB  {P      DB  {JP      DB  x_PC      DB C      DB @"C      DB DB"C      DB  @1      DB    Rc      DB @      DB        DB        DB        DB         DB  !      DB @ @A       HHH 	     	DID         	DID   !    	DID   T0    	DIDO	  @ ?    	DID   @>0    	DID   BDB;    	DID   @ ?    	DID   ?    	DID  }A|<    	DID  }Q}<    	DID  }_}<    	DID  |@D|D
=    	DID  }P}<    	DID  }J|
=    	DID  |@_|<    	DID  @?    	DID  @?    	DID  DDD|DJ=    	DID    `p    	DID   0    	DID  @    	DID    pp    	DID    pp    	DID        	DID    ?    	DID      	DID        ? BI	!$?      tC@       tC@ B     D$ND/   T0     tB (       D$ND/   @>0     D$ND/   BDB;     tC@       tC@      tC@ }     tC@ }     tC@ z!}     D$ND/   |@D|D
=     tC@ {A     tC@ {)      tC@ x}!     tC@      tC@@/      D$ND/  DDD|DJ=     D$ND/    `p     D$ND/   0     tC@	 !     tC@      tC@      tC@      tC@      tC@BG     D$ND/         _ THTHTH_ P P    PDT}D_ P        PDT}D_ P  !    PDT}D_ P  T0    PDT]DTEP T @ ?    PDT}D_ P  @>0    PDT}D_ P  BDB;    PDT}D_ P  @ ?    PDT]D_ P  ?    PDT]D_ P }A|<    PDT]D_ P }Q}<    PDT]D_ P }_}<    PDT]D_ P |@D|D
=    PDT]D_ P }P}<    PDT]D_ P }J|
=    PDT]D_ P |@_|<    PDT}D_ P @?    PDT}D_ P @?    PDT}D_ P DDD|DJ=    PDT}D_ P   `p    PDT}D_ P  0    PDT}D_ P @    PDT}D_ P   pp    PDT]D_ P   pp    PDT}D_ P       PDT]D_ P   ?    PDT}D_ P     PDT]D_ P       ? NHI	'$?      O@       O@ B     DBD   T0     B (       DBD   @>0     DBD   BDB;     O@       O@      O@ }     O@ }     O@ z!}     D$BD   |@D|D
=     O@ {A     O@ {)      O@ x}!     O@      O@@/      DBD  DDD|DJ=     DBD    `p     DBD   0     O@	 !     O@      O@      O@      O@      O@BG     D$BD         _ TIԅHTH_ P P    PDTEE P        PDTEE P  !    PDTEE P  T0    PEEDT]P T @ ?    PDTEE P  @>0    PDTEE P  BDB;    PDTEE P  @ ?    PDTEE P  ?    PDTEE P }A|<    PDTEE P }Q}<    PDTEE P }_}<    PDTEE P |@D|D
=    PDTEE P }P}<    PDTEE P }J|
=    PDTEE P |@_|<    PDTEE P @?    PDTEE P @?    PDTEE P DDD|DJ=    PDTEE P   `p    PDTEE P  0    PDTEE P @    PDTEE P   pp    PDTEE P   pp    PDTEE P       PDTEE P   ?    PDTEE P     PDTEE P                                 B         T0          @ ?        @>0        BDB;        @ ?        ?       }B|$<        }R}$<       z z$"9       |@D|D
=       {{ 9       {yD;       xyD"9        @$?        ?        D|DJ=          `p        0       @"         p        p         '           ?                   ' HBB A? @     @   @     @ @B     @  
c     @ "      @ ?      @ C     @       @     @}!C     @{QC     @z _C     @|`"C     @{P     @{JP     @x_PC     @ C     @@"C     @DB"C     @ @1     @   Rc     @ C     @      @#     @       @      @  !     @D @A       IDID		     ID		       ID		 A    ID		 T0    ID 		 @ ?    ID		 @>0    ID		 BDB;    ID		 @ ?    ID		 ?    ID		}A|<    ID		}Q}<    ID		}_}<    ID		|@D|D
=    ID		}P}<    ID		}J|
=    ID		|@_|<    ID		 @?    ID		 ?    ID		DGDDJ=    ID		  `p    ID		 0    ID		 @?    ID		  pp    ID		 pp    ID		       ID		  ?    ID		 @    ID	I      ? BHA!    DЂ      DЂ B    ""/  T0    DЂ (      ""/  @>0    ""/  BDB;    DЂ       DЂ    DЂ}    DЂ{E    DЂz!}    ""/ |@D|D
=    DЂ{A    DЂ{)     DЂx}!    DЂ      DЂ@(    ""/ DDD|DJ=    ""/   `p    ""/  0    DЂ      DЂ     DЂ    DЂ      DЂ    DЂ BG    ""/ "                         B       T0        @ ?      @>0      BDB;      @ ?      ?     }B|$<      }R}$<     z z$"9     |@D|D
=     {{ 9     {yD;     xyD"9      @$?      ?      D|DJ=        `p      0     @"       p      p       '         ?                                         B         T0         @ ?        @>0        BDB;        @ ?         ?        }B|$<         }R}$<        z z$"9        |@D|D
=        {{ 9        {yD;        xyD"9        @$?        B$?        FDD|DJ=          `p        0        @$?         p         p         '            ?                B     / "@!<     $DBxA      $DBxA B    """' /	 T0    D A	      """' /	 @>0    """' /	 BDB;    $DBxA       ~$BxA    ~$BxA}    ~$BxA{E    ~$BxAz!}    ~"B$' /	|@D|D
=    ~$BxA{A    ~$BxA{)     ~$BxAx}!    $DBxA      $DBxA@(    """' /	DDD|DJ=    """' /	  `p    """' /	 0    $DBxA      $DBxA     ~$BxA    $DBxA      ~$BxA    $DBxA BG    ~"B$' /	      _ TED_ _Q=QP    ~RE$W _       ~RE$W _ A    ~RE$W _ T0    TH_ _Q=T@ ?    ~RE$W _ @>0    ~RE$W _ BDB;    ~RE$W _ @ ?    ~RE$W _ ?    ~RE$W _}A|<    ~RE$W _}Q}<    ~RE$W _}_}<    ~RE$W _|@D|D
=    ~RE$W _}P}<    ~RE$W _}J|
=    ~RE$W _|@_|<    ~RE$W _ @?    ~RE$W _ ?    ~RE$W _DGDDJ=    ~RE$W _  `p    ~RE$W _ 0    ~RE$W _ @?    ~RE$W _  pp    ~RE$W _ pp    ~RE$W _       ~RE$W _  ?    ~RE$W _ @    ~RE$W _E      / "@!     $DBA      $DBA B    """' /  T0    D A)      """' /  @>0    """' /  BDB;    $DBA       ~$BxA    ~$BxA}    ~$BxA{E    ~$BxAz!}    ~"B$' /	|@D|D
=    ~$BxA{A    ~$BxA{)     ~$BxAx}!    $DBA      $DBA@(    """' / DDD|DJ=    """' /   `p    """' /  0    $DBA      $DBA     ~$BxA    $DBA      ~$BxA    $DBA BG    ~"B$' /	                          B        T0       @ ?       @>0       BDB;       @ ?        ?       }B|$<        }R}$<       z z$"9       |@D|D
=       {{ 9       {yD;       xyD"9       @$?       P?       TD|DJ=        `p       0       @$?        p        p        '           ?              B                                  B          T0          @ ?         @>0         BDB;         @ ?         ?        }B|$<         }R}$<        z z$"9        |@D|D
=        {{ 9        {yD;        xyD"9         @$?        @$?        DDD|DJ=          `p         0         @$?          p         p          '            ?                 B     ? BH      D       D  B    ""/   T0    D  (      ""/   @>0    ""/   BDB;    D        D     D }    D {E    D z!}    ""/  |`D|D
=    D {A    D {)     D x}!    D       D @(    ""/  DDD|DJ=    ""/    `p    ""/   0    D       D      D /    D       D     D  BG    ""/  "      ? BHI	!$?      C@       C@ B     D$BD/   T0     B (       D$BD/   @>0     D$BD/   BDB;     C@       C@      C@ }     C@ }     C@ z!}     D$BD/   |@D|D
=     C@ {A     C@ {)      C@ x}!     C@      C@@(     D$BD/  DDD|DJ=     D$BD/    `p     D$BD/   0     C@	 !     C@      C@      C@      C@      C@BG     D$BD/         ! 	@$A! @     < ?Ht"!   @     < ?Ht"! @B     < ?Ht"!  
c     < ?0rB!"       < ?Ht"! ?      < ?Ht"! C     < ?Ht"!       < ?Ht"`      < ?Ht"` }!C     < ?Ht"` })HC     < ?Ht"` z _C     < ?Ht"` |@"C     < ?Ht"` {P     < ?Ht"` {JP     < ?Ht"` x_PC     < ?Ht"!C     < ?Ht"!@"C     < ?Ht"!DB"C     < ?Ht"! @1     < ?Ht"!   Rc     < ?Ht"!@     < ?Ht"!      < ?Ht"`      < ?Ht"!      < ?Ht"`       < ?Ht"! !     < ?Ht"`@ @A        $)BI	     <	OB)<        <	OB)<  !    <	OB)<  T0    <	$)BI @ ?    <	OB)<  @>0    <	OB)<  BDB;    <	OB)<  @ ?    8	DI8  ?    8	DI8 }A|<    8	DI8 }Q}<    8	DI8 }_}<    8	DI8 |@D|D
=    8	DI8 }P}<    8	DI8 }J|
=    8	DI8 |@_|<    <	OB)< @?    <	OB)< @?    <	OB)< DDD|DJ=    <	OB)<   `p    <	OB)<  0    <	OB)< @    <	OB)<   pp    8	DI8   pp    <	OB)<       8	DI8   ?    <	OB)<     8	DI8       ! 	p'A! @     < ?HD"!   @     < ?HD"! @B     < ?HD"!  
c     < ?0BB!"       < ?HD"! ?      < ?HD"! C     < ?HD"!       < ?HD"`      < ?HD"` }!C     < ?HD"` })HC     < ?HD"` z _C     < ?HD"` |@"C     < ?HD"` {P     < ?HD"` {JP     < ?HD"` x_PC     < ?HD"!C     < ?HD"!@"C     < ?HD"!DB"C     < ?HD"! @1     < ?HD"!   Rc     < ?HD"!@     < ?HD"!      < ?HD"`      < ?HD"!      < ?HD"`       < ?HD"! !     < ?HD"`@ @A        $/BI	     <	IB/<        <	IB/<  !    <	IB/<  T0    <	$/BI @ ?    <	IB/<  @>0    <	IB/<  BDB;    <	IB/<  @ ?    8	DO8  ?    8	DO8 }A|<    8	DO8 }Q}<    8	DO8 }_}<    8	DO8 |@D|D
=    8	DO8 }P}<    8	DO8 }J|
=    8	DO8 |@_|<    <	IB/< @?    <	IB/< @?    <	IB/< DDD|DJ=    <	IB/<   `p    <	IB/<  0    <	IB/< @    <	IB/<   pp    8	DO8   pp    <	IB/<       8	DO8   ?    <	IB/<     8	DO8       ' 9Ȋ	A$Dp    < t"O      < t"O B    < "NB$"<  T0    < rBP!(      < "NB$"<  @>0    < "NB$"<  BDB;    < t"O      < t"HF     < t"HF }    < t"HF }    < t"HF z!}    < "NB"B  |@D|D
=    < t"HF {A    < t"HF {)     < t"HF x}!    < t"O     < t"O@/     < "NB$"< DDD|DJ=    < "NB$"<   `p    < "NB$"<  0    < t"O	 !    < t"O     < t"HF     < t"O     < t"HF     < t"OBG    < "NB"B        S _ Q$T%BREP P    <PR]BT%<P        <PR]BT%<P  !    <PR]BT%<P  T0    <PQ$T%BRET @ ?    <PR]BT%<P  @>0    <PR]BT%<P  BDB;    <PR]BT%<P  @ ?    8PRDTE8P  ?    8PRDTE8P }A|<    8PRDTE8P }Q}<    8PRDTE8P }_}<    8PRDTE8P |@D|D
=    8PRDTE8P }P}<    8PRDTE8P }J|
=    8PRDTE8P |@_|<    <PR]BT%<P @?    <PR]BT%<P @?    <PR]BT%<P DDD|DJ=    <PR]BT%<P   `p    <PR]BT%<P  0    <PR]BT%<P @    <PR]BT%<P   pp    8PRDTE8P   pp    <PR]BT%<P       8PRDTE8P   ?    <PR]BT%<P     8PRDTE8P       ' 8HA$Dp    < .O      < .O B    < BB"<  T0    < BЉ!(      < BB"<  @>0    < BB"<  BDB;    < .O      < "I     < "I }    < "I }    < "I z!}    < BB"N  |@D|D
=    < "I {A    < "I {)     < "I x}!    < .O     < .O@/     < BB"< DDD|DJ=    < BB"<   `p    < BB"<  0    < .O	 !    < .O     < "I     < .O     < "I     < .OBG    < BB"N        S _х$T=BREP P    <PREC%<P        <PREC%<P  !    <PREC%<P  T0    <Pх$T=BRET @ ?    <PREC%<P  @>0    <PREC%<P  BDB;    <PREC%<P  @ ?    8P҅DT]8P  ?    8P҅DT]8P }A|<    8P҅DT]8P }Q}<    8P҅DT]8P }_}<    8P҅DT]8P |@D|D
=    8P҅DT]8P }P}<    8P҅DT]8P }J|
=    8P҅DT]8P |@_|<    <PREC%<P @?    <PREC%<P @?    <PREC%<P DDD|DJ=    <PREC%<P   `p    <PREC%<P  0    <PREC%<P @    <PREC%<P   pp    8P҅DT]8P   pp    <PREC%<P       8P҅DT]8P   ?    <PREC%<P     8P҅DT]8P          B         A            A  B        A T0       A  @ ?       A @>0       A BDB;       A @ ?       ?      }B|$<       }R}$<      z z$"9      |@D|D
=      {{ 9      {yD;      xyD"9       A @$?       A ?       A DD|DJ=       A  `p       A 0       A @$?       A  p       p       A  '          ?       A              x@?BǄG       ?DD  #  @      ?DD  #@B      ?DD  # 
c      ?DD  "       ?DD  "?       ?DD  C      ?DD  #      'C     'C}!C     'C{QC     'Cz _C     'C|@"C     'C{P     'C{JP     'Cx_PC      ?DD  #C      ?DD @"C      ?DD Db"C      ?DD  @1      ?DD    Rc      ?DD  !C      ?DD  #     'C      ?DD  #      'C       ?DD  # !     'CD @A     8	DID		     <	IB       <	IB A    <	IB T0    <	IB  @ ?    <	IB @>0    <	IB BDB;    <	IB @ ?    $)<	 ?    $)<	}A|<    $)<	}Q}<    $)<	}_}<    $)<	|@D|D
=    $)<	}P}<    $)<	}J|
=    $)<	|@_|<    <	IB @?    <	IB ?    <	IBDDDJ=    <	IB `p    <	IB 0    <	IB @?    <	IB  pp    $)<	 pp    <	IB       $)<	  ?    <	IB @    $)<I        !A      |B /      |B /B     "A#/ 'T0     |B (       "A#/ $@>0     "A#/ BDB;     |B /      ?􈠓    ?􈠓}    ?􈠓{E    ?􈠓z!}    /"$> |@D|D
=    ?􈠓{A    ?􈠓{)     ?􈠓x}!     |B /      |B@(     "A#/DdD|DJ=     "A#/  `p     "A#/ !0     |B '      |B /    ?􈠓     |B /     ?􈠓     |B /BG    /"$> "         B       A            A  B        A T0       A  @ ?       A @>0       A BDB;       A @ ?      ?     }B|$<      }R}$<     z z$"9     |@D|D
=     {{ 9     {yD;     xyD"9       A @$?       A ?       A DD|DJ=       A  `p       A 0       A @$?       A  p      p       A  '         ?       A              B            A            A  B        A T0       A  B ?       A @>0       A BDB;       A @ ?       ?      }B|$<       {z$"9      z z$"9      |@D|D
=      {{ 9      {yD;      xyD"9       A @$?       A B$?       A FDD|DJ=       A   `p       A 0       A @$?       A  p       p       A  '          ?       A            < "x@!<     ?䐡s A/     ?䐡s A/B    /$$.< 'T0     t|@)      /$$.< $@>0    /$$.< BDB;    ?䐡s A/      ?䐡s A    ?䐡s A}    ?䐡s A{E    ?䐡s Az!}    /$$.< |@D|D
=    ?䐡s A{A    ?䐡s A{)     ?䐡s Ax}!    ?䐡s A/     ?䐡s AH(    /$$.< LdD|DJ=    /$$.< 
  `p    /$$.< !0    ?䐡s A'     ?䐡s A/    ?䐡s A    ?䐡s A/     ?䐡s A    ?䐡s A/BG    /$$.<      8PRDS _Q=QP    _$T=<PQW      _$T=<PQWA    _$T=<PQWT0    _(T]DS _U@ ?    _$T=<PQT@>0    _$T=<PQBDB;    _$T=<PQW@ ?    _$T=<PQ ?    _$T=<PQ}A|<    _$T=<PQ}Q}<    _$T=<PQ}_}<    _$T=<PQ|@D|D
=    _$T=<PQ}P}<    _$T=<PQ}J|
=    _$T=<PQ|@_|<    _$T=<PQW@?    _$T=<PQT?    _$T=<PQTWDDJ=    _$T=<PQP `p    _$T=<PQQ0    _$T=<PQS@?    _$T=<PQW pp    _$T=<PQ pp    _$T=<PQW      _$T=<PQ  ?    _$T=<PQW@    _$T=<PQE     < "x@!     ?䐡 A/     ?䐡 A/B    /$$"< 'T0     |@)      /$$"< $@>0    /$$"< BDB;    ?䐡 A/      ?䐡 A    ?䐡 A}    ?䐡 A{E    ?䐡 Az!}    /$$"< |@D|D
=    ?䐡 A{A    ?䐡 A{)     ?䐡 Ax}!    ?䐡 A/     ?䐡 AH(    /$$"< LdD|DJ=    /$$"< 
  `p    /$$"< !0    ?䐡 A'     ?䐡 A/    ?䐡 A    ?䐡 A/     ?䐡 A    ?䐡 A/BG    /$$"<         B        A            A  B        A T0       A H ?       A @>0       A BDB;       A @ ?      ?     }B|$<      {z$"9     z z$"9     |@D|D
=     {{ 9     {yD;     xyD"9       A @$?       A P
?       A TL|DJ=       A (`p       A 0       A @$?       A  p      p       A  '         ?       A      (         B          A             A   B        A  T0       A   @ ?       A  @>0       A  BDB;       A  @ ?       ?      }B|$<       {z$"9      z z$"9      |@D|D
=      {{ 9      {yD;      xyD"9       A  @$?       A @$?       A DDD|DJ=       A   `p       A  0       A  @$?       A   p       p       A   '          ?       A                !       |@ /      |@ /B     "A# / 'T0     |@ (       "A# / $@>0     "A# / BDB;     |@ /      ?􈠓     ?􈠓 }    ?􈠓 {E    ?􈠓 z!}    /"$> |@D|D
=    ?􈠓 {A    ?􈠓 {)     ?􈠓 x}!     |@ /      |@@(     "A# /DdD|DJ=     "A# /  `p     "A# / !0     |@ '      |@ /    ?􈠓      |@ /     ?􈠓      |@ /BG    /"$> "      ' 8H	A$Dp    < "O      < "O B    < "BB$"<  T0    < BP!(      < "BB$"<  @>0    < "BB$"<  BDB;    < "O      < "HF     < "HF }    < "HF }    < "HF z!}    < "BB"B  |@D|D
=    < "HF {A    < "HF {)     < "HF x}!    < "O     < "O@(    < "BB$"< DDD|DJ=    < "BB$"<   `p    < "BB$"<  0    < "O	 !    < "O     < "HF     < "O     < "HF     < "OBG    < "BB"B       ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      	   @ ?      BB?D H `         !B!B  @      "' ?@ C      @ O 'H $O"?@!B     $!? @`  @       @  GDAD    8      ?P=@
*Ьo =@      ?P=@
*Ьo =@       C/Bh  D`        A   A$?    !oZj^!i
I P       Do   !A     ! B|)~t)W%^OyU
E       LD^j_x9jIGA      H KI
       ADO$@$*       G5U$AH       C $Ip!g
%    @ C)ATDGTU}	     !D!#yW9  T$F`      ((, Fw$H @      @@$*F)$ F %J @      B)J	|, F #\       ! B!H`19 A A      AD"*U$΅((PPAB      A/F(|$F"J?XB     AIJ
 AE*0h`P      
$*JR!BBy"D0        GI^5{舑""E'$UHɑ       GI^5{""E􊪗')Ub     AȈ_ 	?I$Hp],     #P#/"}$K     B! /BIB%}o     "~	 ( @%$JH      !	 ~ DH      OG	 pP )DR       @@ "r#A	      q$DʕU+tHQ"D0        BH'**U*!¤I1ކg      @Q/QHQ%$R.0@        }"/Ј~"}$1B+xPG     @@A  H@'H"!B'@     A!G 	3dI$"~`       $$O!!~B)
"D/K         "DED  * "B`     @@@@`     O$H  @@     )TDBX   @p8      @@K	?5%/B4     ! CA?D5H D      @@?)%$K/@
UE      //'H"" _     ! (? p> @ ! C     A ^_!O?DD_      '/'H""N      @$$H$K%Kи? B      >>D@u8 <      AB$DF        | <  HJ      @C":>d!JJ#GI1      A/Є:V!RJCI1      @@#D%:~$ BJCI1     ! @ !@ $Fa      @# : BJC01      "Ȉ?H M8A)n        '      ySI*U$     !GO>>HD%h @        ? C0      @"D(Aߊ ~ CI$     H$"~|       " @A    @       @D   @4DH       @!D$*&,H*d$I?LB     נ ^    O      ?BC ?I%' @     ?@"(_A	<W      @ODNsEOA|     @ _  ?@(A$ O"E	"AI     @ _ @(  (@_1RjdJʥSR&     ?BC@	@	 @       CD?~%$Cr      B!	_ҤIJ*
Tn@      DA}AdGDB       A!_QD"E
"H(aAO     @ ?Q@ xO,!L#     @" D- GB N     A"GAQ      @@/BD$S%pl     !$ ?! @Fpx          H0p          ޢx I?%      C""	``x?   @     !DB#}D= T$F`      '  x
$I?$B       H@	?  @A             @      #DCB  E RG       HD	$$    @      ?BC? C        @ " D @ bD8A       =
BT}$G/R$H%      ??DLR"$DO      $ @	?@1A Bl        R"BA           B B  H"D)$R
H`X      !$OQ?I(PG"q      $d  @       #!y@2c8 a        " @f1         "D0 ` ?A     ! !B  8 Lp     xp _ A< BD/C       DQB!DTH  !!
b         HDQ @      @@@ B0` A
$Ha       @A@GB@EH  8!B A1      CA      @L       @@ ?A9
$0      PJ*|L[%HO! ~           " DD       H Y$I$2$H C      @  '@DDI`@`     @ O$d*HB8L 8 Lp     *	W/ U$D?	        B ?D !p       @   ?A y @ DID^$0     ?@ C ?!!@     Т!BWĪ_%K$z7h0    ?B     ` @           p  & p      '+'H"" _       @A	)T$AB$OqL     @A R?*HW"_ĄITd|     I$D_ȤjA_UgV    ! bd	@      G_ֺQUB^mg      TO?DD!{	n      @CFȔbHdHzFa       @@A@A@      9s U2ID "Ȁ"      9s U2ID'H       "HD-]+m]P*#         ! B    @       @H!*(V#$OB"     #@!_F9	tɪWA(IS      "D(Oo"J4E	 @D$I      ?I%$K?B"        @@_?IP!tBH	IA     # Ȥ ]Ab?      > 8 Lp>    @        @A _?I~%tCCI     	)Bs'"?H NRJB$     !@??BC ?     ! !""      @@@?E        B ?I|!tSC
8I     DD}HQRF)DADA p      D  0y   @p8     H?Dd)S%        D A"$HH"D@ < DD      H@""Z	 bCC<     |x 0?ϠA>!B$Q/р       r$А/BH	"&"Y#       	 !    @	 H IS       @@Ȃ  3 B$EBJ       !!"/wTT#@B+B      !D$G(_El#VX     %$AERm4HnQ$AwEݶa        A     @ A        0a!f@~`Ba @     	H")@ "DD   @      	 B"~HE!      @@AHBUhP   O"D @        !" $ |   G.@   @     QT $ D     !B'" $ |   G"D @@      !""H') < H D A @       " /$ |   WD*G8  @     ׀ ^@`?A        ׀ ^  {I &	R      W ߐ! ~	$$HK!       $!,~i))Ra$I!$J       P
 WW)_ґ	      QߪZ (_Б?C       C%ꄤ| KK
$1        $D         0  @     8      @ %&1."G!J	b     (< !"B!     	 !hBABD      I"E@?$8hqG"I      !DD%}D	" T$F`      @@"c+"G!
IDa      h	_!"H     ! Bie$1c8b x      @@_` GBDF      !$?>@DOȐQ?@       @?BC ?     @ 	 DD"$E!0        J
8C~$ O)BK        OA"PB A        EOҒ%,J\)SGMd"     @@@ A  D"D$I!'     ALH I(C @'H?DHB      @ ?!  D!L$I'    P@Ez_A      A!%"JD)^'       O$E"OA%DJ)       P@!I~ )K!E!A               @A B H        )ITs?
.Ȇ3%Ȧd8F1      A_
$$HA A#      "@A Gl( P /RHE$I      	@P  "C	,     @B@@ Ih    /RHI$ID       @AB`?* }(QDR      @@A		0 @O        GABJh""@@%	     DH  * #0A      $ Bc    @       GI%$&I"BO!      D A?F*"RE A!B        A A   pp     D@,i!G"E    @A@@ DB!1!        T$F`  ?   @     H !CDI$ T$F`     @ _ @ Q )RpH) d      ?DD  @@        
MĈ&$JQ#"HDA     HTB@	?@      B ĝx       C $I8 P@      ?B!!       $KD ?I"&{4) _     CI  D "?@        @ _|"I%#T)(f       A D P 0   B       @DA*(V#HC5B!B      @A*~#!HC5C!      ! DO>>D	H$I $      AEE*$N#I#IN?F      @DD**V#IS@Z?F       BK-I	S[JʗF       @@*RT)BL     BD @B\.TTR!B A      
_ AD}%4J~)          @" D ?       @BHH@  @   @@A B ?       HBA
 >ABpE
       Q!B!B"D!!B       І  " D D`      P? TsH9*U\1     @ +  @@      !  ( p  !A@     B	'b)"G	*$b#      H Dx D$H> c       !B#@ B0!\       @ @3"D 0      !PBQ/ĈrB(DP?B           <   @@     @ _ @ R )R$H) b      ?@ C?A$\`Lq       @  | TG"?DH        @ 	 @@0      G䔊F
$c!/H	 @     ?@!   " "H       !H(_$I|$zO!F         A  @ (       x!!@@^ H     P,o?
H$ A D px      A$"K!L! ~      'P?!"`{D@@0       @@@@
+T%L 
      B_$B $
O !      !OOȂ!QJTPB E     D"HB !qP @(      <PTEKeJ% DDDP      @
" )
$OG?A     `! H"!I	$$O     B? " XRH B        @DRA$Y%*HW!      !!AGBX!(@P       '@H> Y*HW!B?A        G@  ")SDH#B      $'HB?~iJB"     @"$H @4k @$Hp      A "PB"D-(QR     !"_*~|c䒯RR?       B@*TB2      @ A
 y	GO!       @A	 p"E # A     #!""!xbH"PH@BH`     @ H}`!PD !    HEԄS@?IH"X$        @!+> &PA8        @!A>D AP8      $J?$(B*?      18STWȩR"}P$jhȠ      3P	PHI"}$$`/C       0 RIWWD"} $"hO_!      0 BK*/$@@U     ZZZP    ZZZP     	 /?QI%I A      	  @"&dԪ #DB?A         ("@$ F        D@$OI$$!" a     "!@ I?%H! AB     GDA!E$        	'$ $H,G茒(~@      /DKA/
 c    DH"|	 B O"DH     "DB%H3"@H!      	T?@BTA?/     ? O"$ʥ)$@D	@       (A@ @       $OQI$%I A       I|!%KJ)*$J0a-B䤑HC     !B@*Ԫ#DB?A      jR{DP'BL$"E$P        B@$
$ȤQ(PH      DB"%>D! bI<"P    @HC  > @       "O(IWI$A      B D`Q$/""L8      C%@#-B	      A_@
 Af     `!  / HD@      @> CB"$        I> R."(0      $!$I2DI Q?          @@ BX!(@P        @@ R$OY!*@T$      !8C H?DX)R AA       @ AD BY-R!B!      !#D'@P!~Y	*WA!     !#D PA XQ(Q@	""D      !B'@K*Z-JH)"Aā         H@ _ Y*W!     I!#@@~ H!#	)"a    ') @     HH"D$H"\D(      $'?b?dĪ"@EERj`      '!$DU?{  OPJA     @A*00(A?B@     $HB@"? ??        "_@0 F       @@`      @!@     @!@    @!$? ?Á3?      AB $q#^DIR$>H      !"D/A U+EP"EÀ     !#D@?P y"EJLT/>R       !O@ y AA    B	 
 I(       !D_1dOQ?A      @ ` @     >     @     @ H}`!PD !     " A?~ #ID_Р     "=>JTԒkH?"/@      wEB(Q	&WHCa    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     @D ""$D(Q@" D ?     GH  @@H B@B%         
 " `           HI%$VIk$RII%$L"        @H " A0     D@B!D    BBBA       @ ?   @B  @    ()I_e (      <(T2!}S*|@      $ Hi!cĤ@
@$A        I!$HI?$ ԩRJ(?       O	@"a"&B`%DD(       #@A?"G. A      " #7?D@@ A ~      " #3	 AA      @! G/DI% @!      !A OJR$R "Qa        C?H(Q$DH        Ĉ"'B  B      	DDIH  XHH!0     xO $A%P!'@!B$      'HQ*Ԑ%J/@D      @@?A(QDB"       1 g$"H|!0	     !@ *T  G!      !B!>IWGQB$	!     " B*"
M
"_P|	      P I?I$P!?H      @A@AOd *2UǨQ=DH!d     "XD/$I
 cB 
"       G/@$2Đ!D*"(      @ GȂ(<PH@"I!@     @A	 H)?H "      #	H~0#P      DώJ   @       @@U"B@
b         B             B~D `I!E      @_A D!B$II#      @|_ (H%	@@DD      AB@!	JNs!! B     B _$ D      @@O(
Q+QGE
      @   @ 	B"    @?䈖#"$H"$U JB)    A"/!$R@N!     D SD!HD!B)$H*        AOE@1T !(~         C |!B.? A    @D?I'   ?$&        $I$$I$I? $ O        	ʔ)0@I "I@         'I"I$      @  @!"BD?      JTD?      ?@@?    (~/~(~P       @? 0 @        C $	'H' A      A	B?48P@A$      @ DP !"~DB$EKI        " $H` D`     !D!D%H@!/$        @!_$kI%J      @	?$Q"EČ"       @ $@ 0 B      CQ     D@"PD     @""D"!  @       !B#EO"*|| EP\       '|q5*WTI_     "C@	!$	?8       #D  AU*G	DD       GIuAuTR]IA        D <  	*GO? B        @   	'H$ E        #DO >"EJ(_Q       !@
   &T$O? B      @!@G@_o  =*T)RROHd      !@ <A/A     ! O r~WT   p      _)URK%        @A@GB_ *}*UWҢ=DHd     ! J9*$I!G      Q,IDuRj	("B?Ac     'ĥ	*T)DRJ"U*U#x"     CdR$ ,(д~
(B     "(DK)ߤH BOȐ         @O " I	G! E      D "/@?"}%H	/D$C      GH/{D      ~! (JP-BT	J儊@      Aq ~Ud(O	!`     ?@3g     D@      !(PJ
H
֠_߂      N`A"((DBARBFB      N`A"((DG! A     ( H@*TPRDQ"       E<IU$"H)l3Gi%J(    ĉ$H"DH"D<       @%C	$JUY$(D@       C)ڞ%JJ+TDERA     @>B(KQD>@"B
     D!OAD!r"E  # A       HO&JQB     ?D@)#(_@}bg    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP      6"O$H       5QE@      =QQE@      -UUUUU@      =UUUUUU@      rI$I$H      9$n((@    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  
    Qڵjժ  
    Pz*ժ    Pjjժ @    Zjժ́     ((j    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     @  
    !      D  	     DDH"D  	    00300  	          	     3030300  	     0 0 0 
     0 0   	     0000  	     0 0 0 0  	    ?0303030      @      L2dɓ'      L2dɓ'      L2fɓ'      L2fɓ'  
  	%"Bp    	%"Bp@  
  	%"B   	     D  	    `Ab  	     H   	    QUQD  	    I   	    J     ZZZP  	    Xaa         A$A@  	    A$A      >"0    ZZZP  	    !DH    ZZZP  	    q  	    ab    ZZZP    aI@  	    aA    ZZZP  	     A    QIDA   	    A$A  	    &Ld  	    }QUQ      I$      @      A      A      #V(a     _!      (x          	^ @          ~             	^           ~ P           	^ 
          ~ P         	     $ax  	    @ B~  	       A  	         	   ( $ax  	   (  B~  	    @  A  	         	   A $ax  	   @ÀB~  	    A  A  	       
   @P  
     B  
    @ E  
     $  8$  
   @P  
    P B  
    ( E  
    ( (  8$    $DN    Q     p?       p         N    Q
      p?P      p P    *DN    H     p?(      p (     *N    H     p?P      p P P      a      /      P ~     P    	      a  	    @B  
   A @  
   @À      A)      C     A  A)     pC       A       @<      A       @<  
     A  
    $H @<  
     A  
    $H @<      A       $H @<        A       $H @<    
    Pc  
    Pb0@<  
    Pc  
    Pb0@<      	a      (                 @ "
#  	    A  A  	       
   hhi     b C     F                       !eMJ       Q       X@      ,*    P    A  
  a   
  a      ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP      Q      @!D"	       @  <        P @<    !E!	$B     A&$|I     D bI<`    DP@	>$      O)     C      #TS4 @H0    @ bI<`      	>$     O    HG$0    @O)    QC   	  "p      JK        ~                ~           'HF.     Be";  	   @ V  	    0 -    B
<      B
=      `̢8*x A     `̢8*z A      S$#**<`     S$#**=`    FPB
<      FPB
=      @t\     @a &R       @H      @C(ax     0 '  	    @H    
Y"    '       ~        (     ac@     ac@    00<       b"b    b"b(     acB  
  ?B D    @!N  
  @`@   	  (  
  (P    P!N    P N     (1 @    
  0<     ( D
    ( (     @c@     @0<       @
b    @
b(    `Fb8    `00<     `FbІ8    `00<     ?B	 D    ?B D    b00<   
  Kj@Dp  
  Kj @Dp    -@  
  P x       $@      x       L$@    L$@     &(@~ @@@"     x       Af^BЂ8     @%<     (@%<     bBЂH8    @xA@      a? "#     ay       P0 ~ @H@!      P0 ~ @@@!      P0 ~ @H@!    SBx       0c(^     0c(^@    (bЂH8    P%1$'      ( 0c(^    ( 0c(^@      E    C N    C N       @      H"D     !  	      @"  	    @"      @?AD'     @?A'     @?A'    !O!     A^    AP  
  ?B	 D  
  ?B D    @f    
  @ @       ^  
  ^@     N     N     N      0<      D
     (    !ʩzЂH8    AW!   
    4HFDp    4HFDp@  
  ?BX$D  
  ?BX D    @f 	`  
  @b@   	  	H؎  
  	HȎ	@       @          	      bBx     T     330           P           
    0 
 A       "

	`    00<         
*EDH0  
    @a Ą    @a Ą  
  Q!BD%  
  $Q!BD%  
  @ @   	     0QbHd    &$'@    &$'T     
   
 A     
  
 A     P A@       
  E!      
  i1!<  
  
  i1!<      ( A$@      (A$@      @0<        (A*C   	     ( bBx     ( bBx@  
      FDp      FDp@  
      FDp      FDp@  	  )(  	   !"$(0A    !@
D         FD8     FD8 (    !=!       Aq"    Aq"P     L  
   B     aD	      @aD	       A@       @  E!        i1!<  
    i1!<   	     @ bBx  
  Q!BD!    @0BC(  
  @%@   
   0QbH`    &$'B     &$'j       @x       @x      @	x      @x      &i($  	     R       R  	     1Hx?       @      &i(%       
  aD    	    
  aD  	    
 aD      
  0|  
   
  &i($  
     (    
    `c       (       `a @      (      `!?         (      T        T        @ ~R	P~ `         >@  
     PDR  `    
     	PDR  `           /@          ABH           ABH          $ABH          /@   
    @<1  	    >@H0  
    010       1CČ        ?   
     L<H      @ c @      @ c   
    @ Ȃ      SD'       ( AC>       (SD'        ? @       ?        ?   
    ""%      !@#       A   	    A  	    E  	     @~  	     C  
     q  @      q       $q       y            	       	            0|  	    &i($      <))>@~`      <)) @P        @JT    	     (        (   	     Q 
      @     PPH(  	    0 ($      $j($      ($      $j(%       ($  
     $j($        ($        $j($       $"     &i( $             (   $"         (    $j( $     
    DHP`pHLJ       @ $(      $(        ($       RPH(      ($ 
     VPH+  
    0*          

0*    
    
T 0      
     @#D     @#D      @  	  @P  	     Hx     Hx       $H    	  $H   P               0"Dv @             0"Dv @  @   
    !"    pA"  
    ` DD    ` DD          P  
    )D    )D      (S	    (S	      P~ADG      P~AG       
%Z@~ @@@"     P`y       
 *    @     *    @     $$   @     $$   @  
     @#Ą     @#Ą      4   	  4 P  	     PbBx     PbBx@      $$JGl@@      $$JGl@@   (           @   H         @   H      	     `p     `p P  	     `p     `p P  
     @`p     @`p P  	     

>) p     

=( x P  
     

>) p     

>) p P      ( T@D8      ( T@D8       T@D8       Jp  
    
 *  @     *  @     $$@     $$@           
$Gb              
$Gb             	 
$Gb     	         
$Gb         $f@: ( @             $f@: ( @   	             zm           zm      @  zm  	        ( zm              ( zm         @( zm  	    "   	    "      R     R      `F` P5`k P```    5X     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP       ( P@!@       (BJB/          ((B          ( P@!@         ( P@!           A        R (         ( B
    
  @@P@("  @ H `        @@  
    R?" 8           R?" 8       ! RU          ! RU          U   p   
   @ **/E    H 0         T (           T (       @@AWP@  @        * WT   
   B*/@    H 0       !RU     @	@AWxP@  @           B *      	        P R           
 U   p   P         
B
  @    	     @  Q @           
B
     	        P  @   
       U   p   
       B*׀             )P
       @ &E@A             @`?          @ `?           ,2  p   P      B=JHBg8 @  @      @z!?           #        @ p   
      38P            @ p   P   
        @ p   
     E)A
 @             E*      %)E @      
    ( E)AR{ @     
     J!	           J "      
      J "          HB        	!EP @     
    	!_` @          @ G       $ ( @          H
        !J           ?P   
    @ p   P       !J          
 (D       !J          
 (@     ZZZP    ZZZP      !J           JP         HP          @      J%BJr " D p  @   	     Op  @@            D   	      D$  p       @%@Jr(" D p  @   	     @%@Jr(" D p      @PA*          J	@         B"  p   P       
 B" @ p   P   	     
 B"  p        
 B"   p   P   
      
 B"   p       @@*(" D p  @   	     @@*(" D p   
    @ p   P       B  p        @ p          U   p   P   
   U   p   P          
 U   p   P         U   p   P       $J D           $JPD@      
  %%?  8      
  %%? " 8      	  	P܊Q    P   	  P    P         $TPD@           D$   p   P          ( @        @B   
    @ p   P          񒀉  p   P        	           @ 
 p   P         @B   
     aa@A     
     %A @       	
(/        
   B  p   P   
   B   p   P   
    @ 
D p   P         $TPD@      
    B"  p   P            )@        H(          T P@          U   p   P        D$  p   P     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP        	$%o       	A "       @@
`	$IbMX{        b đ'$)R      UB(P0, 0$f        %op   @   	        TUc  	    @MA 
         %HU`	@           	$%o`@ 0      *jj-VĀ( )`*DU=SQ      @T ReIJ     
   
 P B$1r     p_p UU}u;P)_p uT0    ZZZP    ZZZP     UU  8"A88        UU  8"A88  A      UU  8"A88  A A      UU  8"A88 @A A@      UU  8"A88  A      UU  8"A88 A      UU  8"A88  A       UU  8"A88 AA      UU  8"A88 A A      UU  8"A88 0IHI0      UU  8"A88 1P|      UU  8"A88 p	0Ax      UU  8"A88 p	0	p      UU  8"A88 HIx	      UU  8"A88 xAp	p      UU  8"A88 8ApI0         
     
  i     <  	   5  
     
   zAA @                <    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    
       
     
 <      
 	                     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP                         R"T"             #       @    	 0       ? ( @    	  #             ?       30      0003 0        30              @                  @  P     
 (     	  3   	  J0       `       `     8     |      0Ia      0Ia0Ia    8    |     0Ia    j               ZZZP    l5             T                 j      `      +$@             I            W       JJP            !>B            *"               ZZZP     !      uW       $      i    ZZZP    ZZZP    ZZZP    ZZZP    	 <<  
    00                      <<    ZZZP    	 <      0          "r"   	    (( @     <        0     	m      X`        i      $$        x  
       
    p           qI$     a @     bI<`    @a 	>$     I$q    @a     b 9$  
    a !      @ ~                        	^                                  F.     HRO     ( F     (  DP      (       (    	     $ax  	      B~  	       A  	      H       N    Q	      8       8      N    Q      p?      p      ?!       @                 p      a     /     @     @ @@P    A
F         
    B  
     @@      T       T       T      **       J"C         %Jߑ!        %J       $ **      ft       f|             R  	      c3H`  	      c3H`        e?        R     AY~     @       @H          ,2"     A$Y~     @       HH       $  ,2"  	  1$B!x    `!<      H           I^      @	        D?              ^      0С?       $P        8$  
    H $T  
    H B      H $P      H  8$     REF^     (P?      A       @<      Aa'       @      A~          pB    pg       (p      2  	      Fbp  	       DPDp                    F     C      S          O)    HA$0    
Y"    '    
Y"    
        ~        (  
    	!A8  
    r"

`  
   ba$P(  
   a	"B
'    bp     	!C0   	   bp  	   	!C    ZZZP    ZZZP      QXUFQ JHQ  UU    ZZZP      _At     <H      "?"@@  	   q8@b)#@       	8 D(        D ! YÂ"	<x    	     	 $DDB!    B""$H 	    2ma@pɄ         A                                   
     D	`P$         @ 	     > 0 
     >H  @	        `BD  8 	      
 `(# 	     򅁀P$! 	     `    
     hXaᆀ`  	     <! P
y          
  `       `0 @ 0                0  `        <B        @$j:M0`       (@   !. 
     $@	@P       &    ` 
     	@P@P	  
      @@ 	     P(@        !H @ "c@       t@$@$@$@$p       @ @ 
         !8       !@ B! . 
      @ @      : e()"IH(D.#      : $"	H"@.      @$@#  
     $@P' @      H@
 P1Pa        $ B! . 
     d	 @ `        @          t@$@$@$@$ A       t@" B 
 @       $0DBI
(PA        P  .      A"    
            !B!B                      B!B?     "            	 	    <! Dd	y      @@@\bAAAAAb\  	    8 8      :FF;  	    8 !<      !!        p    =BBBB<@~A> 	      A H.8      I.    0 AA'  	      rX2.8      $I.  	    "$D" 	 	    (H$	  	    <BB<    bAAAAb\@@    ;FF:  	    
   	    {       	 	     H$	F 	 	    㠐DB P   	    tBF$b)B)A 	 	    㠈 	   㠈DA 0   	    !A    B!BA        B!B     p 
   H"	AH" A"A 
   D !AD D    V               !           ABA  
  J A      3AA            ?    A?0C     AfA     pAA?  	    
  "Q!!             @      
d @      ?a   
    ~     ((HH(     I$QFX        08h     %b!!          ?DD       AA     $$$$$$$     @@(Q       |$"B        @s<I @    QDA@     %e!!      x @      QRB      ~    @          @  	    ~           BIC(P     ~2    A        $$$""""BAA      # <      A    
     00HHD     TRRR0  	    D(    C !        $$$"Nr     "D(        ~ @ @       #-1  
    |      AA      A!@    c1"        ((((()))*JL       bJ0      aa       aBB      @A          
 V            A      R     P              I*      x             ܥ-            a       W^       W^       K^       SN       *       _^@      c             W^      S       !       $$$Z      !             ~$$Z      p>ED                  $       9#    ZZZP    ZZZP    ZZZP                  x            '      )zR    ZZZP    ZZZP      <      /KҀ      !O      "       
_      J_    ZZZP    ZZZP      R      B       uP      _UuU@      UP           ZZZP    ZZZP           %          ZZZP    ZZZP    ZZZP 	   LB!P       @ ?      $`x       
                ( @       !	%!E
(`     ZZZP           !      #B     /     !	W            1(aH    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     UU  )8ED A!       UU  )8ED  !      UU  )8ED         UU     	HH	          ;m      @ ~               (   	       A      8       p?              T        %J              e?       @H       HH      H        D?       $P      H $P      A      A~      (p             S       ~   	    A  A  	       A     ~       ~ P  	    @  A     ~ P      p?P     p?       p?(      p?P   
    @ E  
    ( E      A       @  <  
     A  
    Pc      A    	    A  A      X@             ~       ~    
    p           a @    @a 	>$     @a   
    a !                   HRO     (  DP  	      B~    Q	    Q      @     /     @ @@P        
     @@      T         %Jߑ!      f|   	      c3H`     @     @    `!<      @	      0С?  
    H B     (P?       @    pg   	       DPDp     C    HA$0    
       (x        	   @ÀB~  	    @ B~            	   (  B~         Q
    Q    H    H  
   @À     P       /   	    @B     pC       C   
     B  
    P B       @<      @!D"	  
    $H @<  
    Pb0@<     $H @<         @ "
#      Q      b C           HG$0    DP@	>$      A&$|I      C     QC       	>$     '    JK      A  
  a                        (    	      H        8       p         p      **       $ **      R        R          ,2"       $  ,2"                      8$      H  8$       @<            2                     (  	       	                       	                    p P     p         p (      p P P  
     $  8$  
    ( (  8$       @<        P @<  
    $H @<  
    Pb0@<     $H @<    	           ,*            (                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             (memdisk)/boot/grub                                                                                                                                                                                                                        44=6B6L66666666666*7<7K7l7u7|777777"8Z8_8i888::::;;;;<<4<J<O<Y<<<<<<===	>N>S>]>>>>*?1?s??            0,06022444=66	77E7777778l888+999;<<<3<C<\<t<<<<<<<<==\=======	>>C>R>>>???           080Y0r0~0001161|11111I2[2w222a3q33334B4?5q56666666667H7_7t7y7~77777777777788"8-838P8\8j8v888888888.99;=<n<{<=>!>k>v>>>>>a???????     0     0#0:0H000000000
111 1+101B1X1d1p1|111+5q55566^6c6l666666667 717S7778f9:::~;;?<P<<<<l=~=======G>V>_>q>y>>>>>>???????   @      00"0'0,0;0@0E0J0Y0^0c0h0011"1a1k1x11'2C2^222Z3e3m3u3}3333333A4y445677797777777,818;8d8j8888q99999999::%:K:t::K;;;;;;>??? P     0F0Q0001R111111#2@2s2x222222233@3c33455666+76777777778	88r8x8A9b9g9s999:::=;;<e<w<<<<<==,=2=7=F=L=X=b=l=|============>>G>>1???     `     N0000001<13334#4e4x4}44444444444555#5*5/585E5U5]5i55T6666787\7a7l777789<9D9Z9r999999999:::Y:;#;/;?? p  P   R12)3677777777%8.8j8888::$:/:;u==>9>>>?*?3?????      L011122"2k222233<3J3]3w3333334414G4m4"5H5[5g5555 666)6.656D6]6b6i666668888 8$8(8,8084888<8@8D8H8L8P8T8X8\8`8d8h8l8p8t8x8|88888888888888H9L9P9T9X9\9`9d9h9l9p9   H  33333 4P4T4X4\4d4h4l4p4t4x444444444$6,60686<6D6H6P6T6\6`6h6l6t6x6666666666666666666666677777 7(7,74787@7D7L7P7X7\7d7h7p7t7|7777777777777777777777 888888$8(80848<8@8H8L8T8X8`8d8l8p8x8|8888888888888888888888 99999 9$9,90989<9D9H9P9T9\9`9h9l9t9x99999999999999999999999::::: :(:,:4:8:@:D:L:P:X:\:d:h:p:t:|:::::::::::::::::::::: ;;;;;;$;(;0;4;<;@;H;L;T;X;`;d;l;p;x;|;;;;;;;;;;;;;;;;;;;;;; <<<<< <$<,<0<8<<<D<H<P<T<\<`<h<l<t<x<<<<<<<<<<<<<<<<<<<<<<<====                                                                                                                                                                                                                                                                                                                                                                                                                                                              07070100000128000081A40000000000000000000000015ECE244400898600000000000000000000000000000000000000002700000000cobbler-3.1.2/loaders/grub2-x86_64.efi    MZ                @                                       	!L!This program cannot be run in DOS mode.
$       PE  d @?\               Ԉ                                                  
                                                                               x                                                                                    .text                              `.data                           @  mods                        @  .reloc      x     x             @  B                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        HA  H2  Hw  H(H(H(HH(H(HH(H(IHH(H(MIHH(H(LL$ MIHH(H8HD$@HD$(LL$ MIHH8HXHD$hHD$0HD$`HD$(LL$ MIHHXHXH$   HD$HHD$xHD$@HD$pHD$8HD$hHD$0HD$`HD$(LL$ MIHHXPH,      ZH[C      @tHT.      H?@   QHFHD7HHH!HD      HH tH      &   1H2p      1ZH<G      HÉHH<$L$H	   		AWAVIAUATI      U1SH(Ht$1E1l$\$1L|$Dl$DLAԺ  =  uEt	AAuÃ u8HL$LDAօu4Eu׺   H|$t$AԺ     Ł   lH([]A\A]A^A_AWAAVAUATI      U@4S1   HH<$t$tcL,$Dt$@LDAԺ  Ń  <?v4LD@AԺ    <t	D8t1@H[]A\A]A^A_fuf>tH(         1H2p      1SHrHHZ H9  LL9QsHI         LNLYMEKI LG(LG I
   wIt+It/   ItxI   LNM)MHM)ILNMH?M@LcLNM)M)MMcM9tHl      [   1H2p      D NLIDLNMHELcLNMHMcM9uD![LH         1H2p      Hr81[ÅtHtH 1HDLH      H        H      1I]      AUH<G      SRHtH_ HX[]AUI      ATI      UH       SH      PI} I<$H} HE     IE     H      I$    HtW      Z[]A\A]U1IHҦ      H      HAWAVI]      AUIH      ATI  SHAAE <ft<ht<cu6A}du/1I}
   Hˉ      HH0     8 uy-Hަ         1H2p      ҡ0       E} AftAht"Acu?H       H      H      H8H      HIu+HeH         1H2p      [A\A]A^A_]LUH      D	H        HcH      I\$ H@HXCIPCP1LKA֋SLUY^BH6      u-HCAD$   HID$SBuu+HR      Heؿ   1H2p      [A\A]A^A_]AD$       AL$;Ss	AL$1MT$@MHi      H        H      A1He[A\A]A^A_]AW1HP         Hx      AVAUATUSH(HL$HH   HE1I"      HD$HPHHT$   H;AHI   HH"      HItm   HP      H;Hq      HHD$tE(   HF      HHL$uHH<G      6HL` ILhLpHHHHJH<G      HL1H([]A\A]A^A_AUH)#      ATIUSHQH~HHtXHI+      H"       @f@ HtL9tH{HAՅtH[ H<G      HH1Z[]A\A]AUATIUH"      SHRH; tAI|$IHHxLHI+      AՅuHIt$HxAՅtL~<(   HF      HHt/HǺ(   LHZ      HHE H+HH qX[]A\A]AVI+      AUIATIU1SHHt>H{LAօu(H         LI      Aи   
H[ 1[]A\A]A^AUH      I;      ATLfULHSHQH0AՅth<H      LH0HAՅtfH       LH0HAՅtc   Z[]A\A]AUATUHSHHt  H      E1L    H      L E1Mm  DH         H1I      A1IH      H        H      I]      AHHӅ  Md$ ADH         H1I      A1IH      H        H      I]      AHHӅ   Md$ AMuH       L E1MtoDH         H1I      A1IH      H        H      I]      AHHӅuMd$ A1   H[]A\A]AWAVAUEATIUHSLHHG@Ht$LxIGP   ҉HEOLpHM!t4HHHD      HHt|EtHHLHZ      IGI EIDLIIHL$Hc      MIt8EuHHLHZ      H<G      HL
H	      H[]A\A]A^A_UIII]      HAVIH      AUIH      ATISHS  P17H      ALLA   HLH      ZHYt1I$HeHHҧ         1[A\A]A^]I2p      AHe1[A\A]A^]UIII]      HAVIH      AUIH      ATISH>  P17H      AE1LLHLH      ZHYt1I$HeHH,         1[A\A]A^]I2p      AHe1[A\A]A^]SHHE1Ht
L@H@(HSOHz	HI9u$HzHH9~uHH       H   [AVH	      AUATUSHH      H      HI  HI      HCHt~ut@<t	E1<tdA   HLAHHtMHLAHu7H} t0EHH      H      u
H       HE    HC    H[ HlLHkH   E <u}}uw$+fD$fD$ID$D$	D$
D$D$D$D$D$f}u3H}   HH      ЅuHLH      Hu[HCHHE <H      u!}uUAt|A ttAtly tWy   vNHH       H[ HLH      H      H_W      H[]A\A]A^HH      HH      AWAVAUATUHSHHGx  HLg@ <ft<ht
<c  H( u	I$   H      I)#      IHH   H{AHI   HH"      L @f@ H+      It$LD$H<G      ҋD$uPHCuBxu<H}(1HHt
HrHR(MHP	HH9uH@HH9GuH	H[ @H      LH1H[]A\A]A^A_AVH"      AUATUSH HH   HI"      AHH    <c  E<V  HH)#      E1HIĻ   tYLAՊu!PJw @DDf@ Ht$LH      ЅI<G      uLA1  H|$HIX      HLAHtHl$H} IW      HD$    u5CHmHߍHHw^      HH9uH;H%      HYHT$HU      HH      HT$HuHAEGHT      H31H      H|$HAHAH-Ht$HH      ЅH|$H%      H []A\A]A^H1HH   fDLNAtfD $A  wI   H
9 $  @p?΀@p΃?ɀ?H΀@p	 ?IH1|wD B  wA?HAȀHD@O (  v? $  w ?H+A??AȀɀD@@0HHLUHAVI      AUATE1SDnHNVAAUFPFPFPFPFPFPFPDN1DF
HHZ      AH@f{wHeLH      1[A\A]A^]E9vBt#H      1IASHE1E1HM  HD  E1HLZAL)EDtCDӃ   DEAA?A	AuA
Au}A      ExEhD҃uEAA   A      D҃uEA   A   ELAAuiEA   AqEulEtoHwA  vJ^A  v?A  HH
ff fPDff fPLIA?   fD HHE1LH)H[HHH@      HHHH>      HI`H@  HL$HuHD$1HAWIAVIF      AUATU@   SH(H4$HT$HD$@   AHI   H@      H$MLD$HL$HHc      Lh`I   H      H9u<LH<G      H|$AHIt1I   ILD$HL$H$HHtLH<G      1HD$HILH([]A\A]A^A_UHH@      E1HHHHI`H  RHH      HLHHMH|      ZHYuHE1U1H/      H      SHHHu   OE11HT$HH8HO      1Hu,9D$tH{HH0      1HH[]H@      HH@`H   H"         Hp      Hq      SH4         H@      1҅E11H@`H   HH      H0HO      HH@      APIHHIXHy8HHHHO      HtYH         1H2p      1ZAWIH      AVIAUIATUHSAQH| IHF      Há0     H   LLHHH      fC  H@      MM   LHH@XHxXHc      IHH<G      1Mt*AX[HH¨         ]A\A]A^A_H2p      Z[]A\A]A^A_AWH      AVIAUIATIF      USH(H    Ht$HD$    HH| AHH   HLHHH      Ic      fC  H@      E11HT$LD$HH<G      LxXIHAH      H9uH|$HtAHIuH71IHILD$HT$HAIHMuHD$IE LL1H([]A\A]A^A_AVHH      AUATUSH8Hy      HIu1gL`@1I
      A$   I   fA;$   sH      HAօufA;$   u
H(̋SIU@:mimguH[]A\A]A^ATHUSH1Ht&uuPT H|PHHu1   HF      HHtI      Kt0u"u /SHxHsH/H0ASH  HEH
t,/t\u@/
/uH\tHHH@ H[]A\ú   H`      Hq      <ut'GHtPHHxuH1ATHIUS1HHˀuxtHHHF      HHtHHLHZ      [H]A\UHAWIAVAUATSH      HAfAOAwfM<%  w<t]<     <    <  @t@H      tH      1  H      y  F<w}H       $AWAwH         AwH      5  IOIWH&      Aw  LH:        AwHC        HM        @t@t   AWAwH\      1  1Hi      MgA uAwHp      1LHt      1LI      AA| uAwHp      1LAHt      It1LI      ALHEAI|AHUL| uAwHx        LAILAI|AItH|      Lv  H        F<  H(      $AOAWH      Aw  AWAwH      IWIwH      1}  IwHȩ        AWAwHԩ      [AOAWH      AwEO
1EG	%  AwH        AG$AOH      AWAwPAG	PEO1EGAXAY  WAGH.      AOAWAwPAGPAGPAGPAGPAG
PAG	PEO1EGH@f}u>VAGHX      AOAWAwPAGPAGPEOEG1H Hq      hQAG*Hs      EOEGAOAWAwPAG(AAPAG&PAG$PAGPAGPAGPAGPAGPAGPAGPAGPAGPAG
PAG	P1Hf}<.AG3EO/Hժ      EG.AO-AW,Aw+APAG2APAG1PAG0PAwIO H      IWMG(1  AOAWH       EGIw1  AOAWH5      Aw1  LHE      K  IwHO      1z  A tSAGEOEG	AwRAAWDPAEAHX      P1H    AOAWH      AwEG1  H        F<r  H       $AG)IOH      IWAwPAG(PAGPAGPAGPAGPAGPAGPEO1EGH@r  IOIWH      Aw1S  LH      H      5  DuHF      AC|6HcHItIcHIwHH        H0          LH      1LH<G         AGAO
H	      AWAwPAGPAGPAGPAGPAGPEO1EGH0mHE      .@uAWAwIOHW      1=Hg      1-He@Hx      H      1[A\A]A^A_]A<uAtDmMHe[A\A]A^A_]AUHATUSHQtqHHtiI      E 8tCU8uCUf9t)4DHHLAՅu <u{tLL롸   1Z[]A\A]PH(m      1ZH(HJ!      HP      H=      H4      H@      E1111H@`H   HO      $j7fD$HT$fD$BD$HD$	D$
H      D$D$H(       D$D$(D$HD$    HD$    HHD$t6H|$ t.H|$HA      H,      1H|$H<G      H      H(ATHH      IUHSH8Hy      HHtmHxH      HE H!      H{ I$H}  u"HX      H
HtH{HL[]A\HǾ/   Hv      Ht  []A\PH	      ZH>      SHfH<$t$      H      Ӻ  uf   H<$t$H      ЄtIH<$t$PӉƿ  ffAADffH1[HH@      HHHH0      HI`Hy0AUATUHSHH9H|$v1   H@      HHLD$      IO      Lh`I}(AHuH|$ tHD$<Hl$I}(LD$Hٺ      AH1HH/      HtuH[]A\A]AUATUSHH9H|$v1   HHA   uHD$AH@      ELD$Hٺ   LHO      Lh`I}(HuH|$ tHD$>I}(LD$Hٺ   LHD$H1HH/      Ht`H[]A\A]AUH      IATIHULSHH8    I$H0      HZ      H9sH8      H01HH8      H0Ѻ   H0      HI$tH(      HMtH       IE Htr      E dHD$HLL$HLHDH@      MMEIHH@`H@8HHc      H   tH      H9H[]A\A]AWI0      AVIֺ
   AUIATMUHSHH(H@      fD$A fD$p Ht$fD$p fD$l HxfD$e H      ЉD$H8      I      H       H(      H0H0      Aׅ   Ht5H0      H H9E s"H         1H2p        H0      H8HF      HH8      u0       HI      H       H(      H0      H0      Ѕ(H8      H8H<G      H      OH@      H@`H   H(      HHH      H0H0      HtVH      H8      H9H9H<G      tHҬ      H      1H      WH      H    tH0      HE Ht)H0      HHH8      H0HZ      MtH(      IMtH       IE Mt      A$1|$ u D$1Hn.      H      ҋD$H([]A\A]A^A_AW1   AVAUI/      ATUSHhAHILl$uH         E11HD$( 0  HL$0HH|$(H0      ӅuZL   H/      Ht$01HD$HHt$(Ht$(H  HHHItE1HL$01HH|$(ӅyH1      1H      MLl$(L|$0LALL9   }    HUL9   HEHHHH   vvHtqLHHHZ      HUH w HE   H)HH)EHCH  HHHSH v H)HSH{ J;HELKLL$0L1H9s	HPLHн   HH=   v @ H= @ HFMLT$8LI޸
   H9sMN	HLH9sH~H9zHBLH9t#K43LHK<3HHHLHLHD$0ItH      HD$I9snMuIMI9vLIH)HHHHL$LHD$HHL$uHDHG      H      LHHAL)tLl$HH|      L   H/      Hh[]A\A]A^A_Éfu$Bfw>Jfv5ft/`   fwHP      ÍJ1f_FH      8 _  USHHH@       HX@  ~f$?    с%  tsw.!  tbw%  !  M!  %  tY!  6%  tBw%  %  t8%  %  %  t!%  t%   %  %  f$f~1҉ffADظ   A9wfD  H0      ~=PDHAw߁  $ftALFv	LFE1EfDDDHfuH{HHH{HHHtHH[]SH      H8 $4ufD$bwfD$FD$D$	D$
D$D$D$D$%D$u0H8 Hu&H@         HHx(Hq      HC8H1[H      8 u,H@      H@@Hx8HH>      HH@      Hp@H      8 tH$P   HD$   %HFHH~LD$HHcPHO      HuT$$H	H      8 t1H@      H@@H@HP@	UH      S1H8    Hw8H0      HtfH~HT$H   |$H7      l$Ѕtkye@tH   `CЉ   @0E@t;   3H@      HHr0HT$H~Hu|$H7      ЉH[]H      8 u$H@      HcH@@Hx@HH0      1PH;      1H      1ZSHH         HH;         1[H      : uSH@      HHr@trtH~(         	      H~(HH0      H      8 uUATH@      1UH0      SHX@HCHH{(HLc`H{0HH"      H{(HH[]LA\ÿ   VH      ЅuYH         H2p      H     H8 tH      H     #H      Hu"H      H     Hz      H      ЅtH     H8 tH       H     #H8      Hu!H       H     ZHz      H       ЅtXSH{      H       H       H      HH      [H9s<\uH<
tHHGUHSHQwH         1H2p      AH   Hŭ      H      Ѕu   HF      Ht	H(HX1Z[]UHSH<G      PH?ZHH[]AWH      AVIAUIATUSHHH(HT$LIE1t<
t<\uAAHLMLCIhE <#uH<
t1h  IHMcK\!H9   LD$LLL$LLH      ЅLL$LD$u0C<!=u)E1McJ4;L9s<
   AT$A<\DDLLD$LHL>      LD$IqCD>I)HI9MHLLH]LHZ      E =Lt$At<
t<\u\HAHIƈC
   jDLD)H)HH9E9McHZ      }0LE)M)H)J<+IcJ|= #   H      uJ<+LH)dH([]A\A]A^A_AVH      IAUATIHUSI,$IH]Il$LcJD#H9   LLHH      Ѕu*B<#=u#AEHcHH9sk
t$H\DHHHL>      HHHLcHZ      J4#H)[HL#   ]L)H      A\A]A^[]A\A]A^AWIAVAUIF      ATUSH(H/Ht$H]HoH9  ;#   Hڀ:=tHH9u   H9   LbLH9   <
tHOH<\HDH)HT$HAHIHT$   MH)HI)HT$LMHZ      LLD$LD$LL$I@C 
uCHT$LL@ AALH<G      Eu5HHHL>      H\uSHÈPPHHH([]A\A]A^A_S11H H	H@      H+H`      [H HHH HUSQXHH5    PXH1H         11H   H	HH@      H@      H@`H   H"      Љ1H։1H H    7   H	H@      H+0HƄ      У`      HC      HsJ      Z[]H߭      1H      @QtHH      NHh      IHHHtDHH H9v	HHH9vH@HwI0HWH(<-u'H      1H      HH4      HmtH      1H      XAUHh      ATUSH^HQHH8   H   HILDHE1MeHh      H8MIHl  LI{mR  I3LHF LHL!H)HHEHuHL      1H      HVH(<-tH]      1H      LFHI9   LIH)H)L!HuI9uHH   It	HI9uI)LFILfHu0H.H@(<-HVH)H9HPHHHu<H HL1HIII@(<-HVI0H)H)IPHFHLHH  HFmH^vH97uHHH tTL9tHH6HEuHW      A   \H~         1H2p      1Z[]A\A]HHD      1UHHHD      1SQHHtHH1H      ZH[]H.  HH>D      HT$HHT$H$H
HymuH@(<-H H   H1H9   HVH(<-tH]      1H      HH9wYH9vOH@(<-HHH$HH<$HHBHHH9u>H@    HxHzH HH$H H$H9rHHfH9fHD$H0H$HPHHH9uHF    HVHPH9HDHHHD$H0HH,  UH   HHSH9RHv
H H)Hh      H0HHttHHFHH9u[H_   HHHSHHSHt/HC(HHCHC0mH{@HSH<G      H] H]    HnHvHGHHH HH)H H9rcHHHh      H)HH HHT2H)H@0(<-HHHHHP(HHHPHHtH9rw
HJHRHHPX[]UHSHHHuHHF      H   HuH<G      rHT$H>D      HHEH$HHH9BsKHHF      HHt2H$HHHPHZ      HHH<G      H1HH[]HH      HHH      ATUSHgJ      IL)H9r[]A\AVHG      IAUIATIH   UHSHDD$HH   L`Lh HH      DD$Ls8HEC(    E1HC0Hp      H(DCII
      Ht3HuH{Aօx$uE9S|EA   IHm HI$H+tH]ELcHuK   1H[]A\A]A^SGHtHHtH   HH{      HH<G      [PH      H      HH      H      HD11ZHPH      H      11ZAVAUATUS?1HL      HR      H      H      H^      F  I0     IH:HVr      A> H  HHP      HH   HHx      о)   II} H_      HHpuIu > upHu"H         1H2p         A>uH0          MtIT$
H      HH      1H      ;Mt61HK      HAT$H      H      H^      HHeQ      HH<G      []A\A]0     A^ÅuHЮ         1H2p      QH:<(t<+uHj      
Hk      HtHHM`      1ZÅHЮ         1H2p      PHn      H:1ZUSWKHo      HRn      HH   H;H3HH      1H      H[0H*=   H_      HHHu Y[]H         1H2p        HpHH(m      =Z[1]SE1H      H      HfN      H+      HJ      HtH(   E1H/      HO      H1N      HV      E1H\      Hs      H,L      Hy      HE1H|      [H      HM      H      AVHF      I   AUIATUHSHHteHH       H<G      HIt.HI6H      1H      LHCH{ uHIEHI]1   []A\A]A^UHHSQuNH      HRn      HHt8 u+H      H         1H2p      1r   HF      HHtYH@    HHIX      HHHuHHP      HtH0     :u    HHCH{ HuHH<G      1HZ[]USHQH?HtHW      HCH<G      HtH8H{Hա0     Z[]AVAUATUHSHHvA   HHP      HHuH0             H8 IeQ      txHC    HH8HO      H      E1HAHkH0     I<G           Ht6ELu uHsH}AH}AHLAHAA   []DA\A]A^US1H(H|$Ht$HD$    H      H(Ht&HEHtHt$HQ      ЅuHm8Ãu1   H([]HHA  Hi{' HHHi H1II      Hk(LH9uH9puH9Hu@     HHA  Hi{' HHHi H1II      Hk(LH9uH9puH9Hu@    H@1AVHIHH      AUIATIUHHi{' SHHi   H1HH<G      Hk(HH{C    HC    C        HF      HHCu0     $HǺ   LHZ      D+Lc1Hk[]A\A]A^AWMAVIAUIATUHSHHH8HGHw LD$xH]S      Ht5H4(LLHZ      IFIv HڋxHS        IF         AHIL|$   IVAFI<G      HtHHs@HH9si   MF   )HLHHLAP(u@I4,LH|$HZ      IFIv LHڋxHS      LA9  LI<G      AA~   H0     I     HH	HOH؁  ILHH!H)HL$@HH	ITHHD$HHHT$(HHD$ HIHT$(tuA~Ht$IFOLHLP(tbHp      Hӯ      MH      Hί        1I]      AHEq      LAԡ0     uI"Ht$H|$LHZ      LLAIF0HtH	IN8  H| D1H8[]A\A]A^A_ATI<G      UH(     SH      H{Ht{  uAHC    H(H9u[]A\H      HH8HW8H      H      HtH9uH@8HHP8H@8AT1H߯      Hί      '  I]      USHLHӯ      AHCHtH@ HtHHgJ      I<G      HX      H{(H<G      HtHo(AHk(H;HH[]A\AWI1H      Hί         AVI]      AUATIHӯ      USHA׿H   HG      HH  @	   @    MAE IUtm<\uA},IEHD<,tIMHF      M)I~HH   HLLHZ      BD5  HH%      HLH%      LE1HH;    H      L0H0     M   HT$HHAVt HT$:uIH0     Mv8     ċKA      H         1H2p      L9tHtHH<G      H0     8   Hp      Hӯ      MH?      Hί        1AHEq      HHW      1   LHU         1H2p      VMLst<IuHH      HHC(u H-         H2p      HgJ      HX      HH  H9vHD$HW      HD$HX      HH[]A\A]A^A_AWIAVAUMATUHSHӁ  IH
  H	HHG(HH	Ht=HHHpH9rHi         1H2p      ZH)H9rHH@(IGH   AOHH9vH)H9   IH         1H2p      хt\Hp      1I0     IHŰ      Hί        Hӯ      I]      AHEq        Mu	?   HHڹ   HL)MH)LHT      H	H)H9HGLIЅ  MML)I	LTAGI9s:LIw HHHH$IGxH]S      HIu9IL;d$uE1MubM  H  (  HE1HHD$LHƺ   HHZ      LIGIw H$xHS      AG   MGLHL)HHHLAP(   E1IS      IGLLHHLD$LHL$xIw ALD$L$IM9uIG0HtDIO81HLIHL)MHIG0HtIO8   1HH@I   H   Hu0     1MHHLHT      ЅtH[]A\A]A^A_HG(HtH@HWHH9tOHЃ	HATH`      I
      UHSHHtH3HAԅt
H[P1H[]A\AWI
      AVIAUIATE1UHSHQG>W:Ho(HLt(C<A9s} LLAׅtC:AH1HZ[]A\A]A^A_SH^      HH?Ht!HH         [1H2p      1[AVHF      IAUAATIUH(   SHHt,Mt2HH%      HHCuHH<G      С0     PHhLsLc 1DkU ti?  H¹  1Hp      HHH1[]A\A]A^ATHUSHt*HoIM`      HtH}AHm CC1[]A\ATHUSHt*HoI`      HtH}AHm CȉC1[]A\AW1AVAUATUSHQ    HG8HtH`      H`      HtH9u	HCPH
HPPH@PIp      I<G      I,$MHt$H9] L} uM>H}AHAILIHX      I9uHkI<G      HI<G      tLe H}H`      HLAH{@AH;AHAԸ   Z[]A\A]A^A_AWII1H      H      AVAUI]      ATUHb  SHH&      H8AH?H0      v,H   H#HELF   H9u{tHQ         1H2p      HH@      Ѕ  f{Ht         u%C:S<HHC(H9s"H         1H2p      w  X   HG      HHZ  I@   H      1H      z  H&      I^      AHǱ      HAHIu&1Hױ         H2p      ҅tY&  HHxH      I
      Aօt2HI|$H      AօtHI|$H	      AօuH      HAHuH!         H2p      ]HHxH%      HHE t8H6      HAH   IL`Ik      LHH HL$p0     ;  A<$ tpLAHItQHHM`      п   HF      Ht,LpHULHHEH      MdL;d$r0       Hs<HC(   E119s(HP0Nd"IIM!L` H9HBS:HLHD      HIHE@   LeHID$    L{({IW H   IG0MLHI!AGM4   HIwLLL$HZ      LL$ML$IG ID$D$AD$HEI$LeC:D$IC<9D$sdAGt    HF      HIW0       -u1LLL$H      lH@    iHK<HC(19sxuN9  ILxHE1L} HP8HU(S:P(HH8H@ HS(HL$Ht1Ht$D$(-s:HHBIGz t
AOD$AID;t$(?  AOAALd$  H      $օ   fA    L12@ti?  H¾  I
      1Hp      HH  L$,HzLHT$ LL$AхHT$ L$,HLL$AWIwHEHt9PuH@H HƄIw1HLH_      ЅHAWIwHEHt9PuH@H HƄIwt)H   LH_      Ѕt0        H
      H?      LHT$҅HT$uIGHE0NHM      L҅7IGHE8*AWHEHt9PuH@H IGIG    H[         1H2p       LHԲ         1H2p      х   ILc(E1Io      C<A9s{AD$t	u/HMHt&AD$,9AtH	H}  tLHHAׅu-C:AI1Ht         H2p      ҅tHE8    H   LM@1LEHH      H      4  H&      A1LE H      H        H&      A1LE0H      H        H&      AHHS_      ЅHtH`      1H8H[]A\A]A^A_HHa      Ht.HP0HtHHD$HD$H`      HHHPP1HAV1H      AUATUSHH|$҅H|$   Hs      HH   L`@HF      Is      LHHuHA`LHHHr      I<G      IcHH9tAHA+ALHHaj      HHAHtKH1H[]A\A]A^ATHRn      UHH      SHIH^      HH   Mu,H      H         1H2p         L1HH	      H      HIu1YHHj      HLH<G      HtHH;H
      ЅtH         1H2p      H[]A\UH`      H`      SRHHtHՅtH`      HH[PX[]ATH1UHS
t
H   1I
      H`      HcHHtHH;Aԅt
H[ 1H[]A\ATHl      IUHSHHtNL`H@Ht
HHHH%      HCH{ u	Lc   LH<G         @   HG      HH   LI%      AHHtaHAHHCtRHH`      H01
t
H1ҹ   HcHHC(HHHS tHK HJ(H1#H;H<G      H{Hա0     []A\Hl      VHHtHPHpHtYH1ZUHHl      SVHHtfHx uHx tY[HH/      H(m      ]H@(HS HHC HtHS(HP(H<G      H;H{ZHH[]X[]AUI
      ATU1SHHD$    H`      HcHHt<HD$Ld$HtH3H8AՅI$L`0H@0I$HC0I$H[ ŃuHD$H[]A\A]AUIATIUHl      SHQHu-H/      HH(m      Ѕt0     HLhL`1Z[]A\A]UHl      SHQHu"H/      HH(m      ЅuH@8   1Z[]SHHP0     HD$`HT$0HL$8LD$@LL$HHD$HD$ D$   HD$H      HL$H¾   H0     H8      HP[á      	hHH      RHi     H0     Hǡ0     HGHZ      С            H0          XH          H0          á      ~SQH            H   Hi  H0     HƋH0     HZ      и   ZH0          1SH0     ; tEH0      H      H0     HH      1ҡ4     4     HEq      ЅuH      8 t(H<      1H      H           [AUE1ATUSHQ?(uv)   H_      Hu")   Hd         H2p      >H)HIHF      HHt!HIT$HsHZ      IBD% Z[]A\LA]ATUSHHOH@H9v#Hx         1H2p      H[1HtTH)H9HGHyHt>HkXLc`HuH@     H[`HK HCXHCHP(HHkXLc`~HC[]A\USHQHGH@0HtH{HtHeQ      H;H<G      Hա0     Z[]AVHVr      I<G      AUATUHSHH0     8   } (tI)   HH_      HtLhHHP      IHAMB  h   HG      HH   L`I<$ tA} /tHp      HCLHx      HHC   HCLHP    HH%      E1HH0     1     Ip     Aw"HtKD HtHHHHIHuHs      к    HP     Hp     HZ      HBLHeQ      HAֺ    HP     Hp     HZ      11[]A\A]A^H;w@v$H2p      H      Q   1HZHGHwø   AWII)[      AVAUATUSH(LoHG@LPHt$L)LH9HFH	A  IE1IGH   M   H9spK,  H)LH	H9v
H	HL)IBHI7LT$LD$HLL\$H8AӅu2III)LL\$A  H	LT$H)H)IiHLH([]A\A]A^A_AWAVIAUATI_      UHS1H8HGHt$(H HD$C,   H|$(D$AHuHD$(    HHD$(H|$( t\$ƍ{HG      HHIQ  HE@    Lt$(HE1D;l$  H|$(I0     ?+tK1Ht$(H,      HA? t%LH         1H2p         HD$(8+uHD$(1Ht$(HxHˉ      H|$(HCA? HuHtHD$(8@,t#@tH\$H      ЅHT$mHCHHH
HHL$H9QsHس         1H2p      H	HD$(HE@ALePH<G      LС0     1H8[]A\A]A^A_ATUHSH?   H      HI]      H   1LCH      H      8   H      A1Hu      H      HSH0     8 t  Hp      1LCH      H      N   H      AHEq      С0     	   H0          H+H      H8    H      8        H      ЅtH      H1Hu      H      HS0     u      ȣ      z	t      ȣ      aH0          q      ȣ      HGHt	H@@Hu&H'         1H2p      H1[]A\ATI
      UHSHHtH{HAԅt	H1H[]A\H~HHtHpHHH7HGHtHHHHtHWHPH    HG    SHHH      Ѐ;(u|)uH{HpHm      [HH%      [HP      Ht8mimguH@1AVH      AUATUS1HHP      Ht18mimgu)HHX HHPH9sz;tSHHHHu_{HF      HHH       uHq      /SHHsHZ      HЋCH       HD H3      1HP      Ht8mimguHHXHaj      HHP      HtrHHBH9sf; uMsH{HHu H0     HE      H      H0     8 tHq      ЋCHHH|1HH$    HD$    t:mimguHHB1HuA1HE{      HH      Ho      Ht$HH-      H4$Hu*zHHJH9s8HHHDHHHHHT$HtH1HM      H      HHt(HHU      H(m      HH<G      Hto} (  )   HHv      HIr  HH}Hm      H)HIHIEE1}  tHH%      IHuE1H$HuKH<$Ht6t<,u,Hl  \ux,uH,  HH<G      H|$HtoMujH      HHvNHD$HMH:/u HH	v.H|(
   H]      H      Ѕu
HD$D( Ld$H<G      HH<G      tcMHD      HIEHh      1H      I(m      HItHo      HALHHH      AHHq      LHo      HH      Ho      HP      H8 tH     HO      H       H8HtH      Hv      Hk      H0     Hv           Hp      H8Hz      Ht
11HP H      1H)HHm      IHH}      H1H      LHH<G      H<$I<G      AHHAHHH}      1H      HHH   H9tHH<G      1H9HsH9t@<@<HH<HHHHHHHt
@<@<H1ҊHuSH      HH      fD$
 HH|$H   [1H9tHDDD8tD)1tt8uHH)1Ht.HOHAtDEtH9tHD8uH)Ê9t
HǄu1H19HDHǄuH9tHuÃ   t 		SH      Ѕ   u",t;t|&	   [AWIAVAUI      ATUSH;I      AՅtH; t]MD3EtAAԅuE:u u%HIA} @t*Aԅt!AԅuH;@u;AԅtH   []A\A]A^A_HHwHE1T11DMIL	σ@uHt@1HHuE1IM)Iv
J<IH׃HHI9t	B4IH8 tHH)UHH      SVHXHF      HHtYHHH[]HZ      Z[1]ATH      IUSHH9HFHF      H{HHHtHHLHZ      + H[]A\øIH9wH9v;A   11t%HIIHIHHHH9rHH)MtIHt1I 1AVIAUI      ATUHSDe AAՅtHA0u-E<xuu(H   u0<ۃ

۸
   D1E1HcDe Et'AL$AT$ DFA0McI	v4I'I9r%uH      
   1H2p      1iI	vI9sL1HHHƄ      I9v#H         1H2p      HLHŸ   MLMtI.L[]A\A]A^AWAVAUIATIUSHHH    % QHǆ         HBH   %tHz-HJHDʃ0	wH$H1Ҁ8-HЊʃ0	wH.HЊу0	wHltHPHHPluHHPC5XHHHII$  <I$  H w
M$   AHHF      HI$   u$H0     M$   IǄ$           I$  I$   1I,      H    H      1I}W,  %tIA}-IULpHDHU ʃ0	wH$u
   1HAH1Ҁ} -HՊU ʃ0	wH.HՊU ʃ0	wHltLm1UltLm   ULm   I;$  sjdt8Xt$ctJCuTCst-pt&Dutxu:I$   I$    I$      I$       L1Hإ      I;$     I$   Hȃ:wj20$sƃHsHsHFHCHc=sƃHsHsHFHCsƃHsHsHFHCHHHoX[]A\A]A^A_H,      AWIAVAUATIUS1HXHL$HT$ 1HD$ HPHT$  g  <%tL9sAHH$E  HAH$HD$ 18-uH@HD$ H|$ Ѓ0	w0<0A 0HL$DD
   Ht$ H,      HL$AA E1HD$ 8.uHHD$ H|$ 0	w"HL$Ht$ 
   H,      HL$HD$ 8$HPuAMHT$ <HT$ luHPHT$ PluHPHT$ P%uL9?  A%5  HD$H;  &  H   dHte Xt^cH{  C    sN  
pt  ut)xt$  L9sA0HSL9sADxHxD߾   X
   EAdu	HH?uHL$0HL$1HD$0-Iu1AA@aI	r0vAx@AEtHAruAHHL$LT$HT$(
   HƄ      @|$(LT$HL$W0IHARuA LT$HHL$H      HL$LT$HDH9s@0HH@qPHD$01I)LL)M9HB@HuHH9tL9sE4HHHt$0H)ƊtL9sAH@HU  HH9H  L9sE4HL9sAH)  v4=  v3=  v8=   ҁ   =   Ƀ= ?   G11      
      L9s
	AH   L9s?ȀAHHH      HE1H9rL1H)L9HB@Hu&H< tHL9sE4HH9uHHH)H9tL9@<sA<H@Ht#H0H9tL9sE4HL9sAHH$L9sA C< HX[]A\A]A^A_AVHHg      I׉      AUATIUSH0      IH  HHL   H0      AHcH   vsH}HF      HHuIH0     L     H,       .H-       .H.       .H/        HHLHAHcHH>      HH      L9tHH<G      H  []A\A]A^HXHD$`Ht$(HT$0HL$8LD$@Ht$HD$HD$ LL$HD$   HD$H      HXHXHD$`Ht$(HT$0HL$8LD$@HD$HD$ LL$HD$   HD$H      Ht$HH      HXAWHRn      IAVAAUIH      ATIUSHXLD$@LL$HHH   H      HH      ՅuLHՅt]DLH      H      1H$   D$    Ht$LHD$HD$ HD$H      H^      HX[]A\A]A^A_1HthATIHg      UHHHSH^H  HHHHLH׉      ЉHH>      HcH9HGH  []A\HXHD$`HL$8LD$@LL$HD$   HL$HD$HD$ HD$H8      HXAVIF      HHg      AUATIU   SH  HH}AHHuH>      H1HHHLHH׉      LcI9wH>      HHHH<G      LH  []A\A]A^HXHD$`Ht$(HT$0HL$8LD$@Ht$HD$HD$ LL$HD$   HD$H      HXSH      HPHD$`HT$0HL$8LD$@LL$HHD$HD$ Ht$(D$   HD$H      Ht$HH      1HĴ      H     H8 tHδ      1H      п   H      ЍG	ATUHH:SHHu
HE     M
   H_      HIH;tHIHm      H)HE H%      E1HE L#[]1A\ATIUHSHHHPH  HRn      HH+t8 tI$HHJI$H
[]A\AWDA0AVAAAUAAAATAU@SH      H(|$D$   tFD9u;{@8t8HT$H      ЅHT$tAvA	v@_u{ tH봃; HD$HD1{ AEňCH([]A\A]A^A_AWMAVAUATU   SHH      L$   HD$8H4$HT$H|$(Ld$ HD$0HD$(I      Ht8 uH$H  HT$   H|$(H|$(    HD$(0@   HT$Hl      ЉAAՅt.DH      ЅuHT$0Ht$ H|$8H      DAՅtT$thHD$0HHHL$0VAu:t5|$H      Ѕt HD$ L9t.x t(HPHT$   T$tHD$ HHHL$ HD$(DtAՅAՅtHT$0Ht$ H|$8H      HD$ L9tx tHPHT$   H|$ IF      L)AHHt@HT$ HLHZ      L)ЋxHcHAHIuHH<G      С0     1Hl$ 19~$IHL$ HHT$ : HRHT$ uH1H  []A\A]A^A_UH      SH      H(H|$H|$ t7HT$1H|$H|$HT$H      H|$H<G      0     H([]AWAVAUATUHSH8Lo(Ht$MLd$A<$   H\$u+1Ht$HHˉ      ȉD$H     L8F߃A<wHH\$L9tBIILM)H)      LLL$ЅLL$tM?Mu   IGB< uL$Lu(HT$ HIGHD$(    H      L$ H0     H|$(: uHHT$H<G      HT$1HLm(u:u=H0          gLBHT$Lp(Ht4:,u/HIHT$H<G      MtI^(LI1H8[]A\A]A^A_UH     HSH(HD$    Ht$HT$Ht5HT$HG      HStH0          |$ uHƋD$H([]AWAVI      AUATE1UHSHH8HuH      H%         HE0I      HxAHm(Nd HuI|$HF      HH   N A M΋LL$I      H         H|$IZ      H1AH|$AI)HHt$LMAHC0HxAHS0I)LMt$HrHAAD$,H[(LL$HqLLHL)AH1H8[]A\A]A^A_UHAUIATSQH(H   HNHNHH;O   voH       ЋIHC0H      AT1   Au H&      I]      DJL@H      1AH<G      LXZ1   He[A\A]]UHSHQ9t1FH@      Ѕt@   HF      HHEtHǺ@   HHZ      и   Z[]ATH   UHSHH@HHHH@      Ѕ   HC(HHC(    HHUHD$(UtE       aH|$ uHD$(HC(E KH     L Hc(MtHHG      HAT$tH0          }  uM$$H@[]A\UH"      SHHLD$HL$Ѕ  T$        uNH߾=   H_      Ht5HD$=   H8  HHpHD$H8H(m      =   HD$H;    Hp      HH8Hz      HtHL$HHQL$qP QHH7      1H      Hp      HN      H8HtHS      1H      HD$H<G      H8H|$ӡ0     H[]AUHl      ATIHi      USHHD1H      1Һ   1H0      H      H      H^      Ѓ
      P^w;   tDkH0      HcۈD$H|$D$ H      DAu<t8H0      D$HcD$ D$ D$ H|$H      MHz      H      H0      H%      I$H1[]A\A]SH|      1H      HHq      Hl      H0     11H|$     H|$Htŀ? t1HH      H|$H<G      AT1   USHH HD$% 	$u1HF@Ht(H@I3      Ѓ)H޿    Au"HHS(
uH޿   H3      H []A\AUI3      ATIUSRA,$@t2?      CH     HHtHމAHIX[]A\A]H8      SHt1H0      HtH     HHtHS(uH1[SH     HHtHChHtHH[SH      H^      Ӆt[ATH      I]      USH(       H D$afD$ʓHT$fD$D$Ht$D$D$ D$D$D$D$+D$H|$HuHu2H      H      )   Hõ      11AE1   D Hѵ      1H      ,   Hõ      AHT$Ht$H      H|$HuHu-H      H      1   Hõ      1AE1<D H      1H      4   Hõ      AE1}  t; AHH<G      HH A[]A\UH_      SH       RH;HtSHs1HX[]                                                                                                                                                         9$      R$      f$      $      $      %      &      6&      Q&      d&      &      )      )      (      +)      &      &      '      (      }&      )      )      	)      )      )      )      )      )      =)      )      )      )      )      )      )      T)      )      \*      {*      *      +                  H  P  M  K  G  O  R  S  I  Q  ;  <  =  >  ?  @  A  B  C  D  D  W     f      f      g      h      h      W                  w                  allocation outside 32-bit range invalid arch-dependent ELF magic reloc offset is out of the segment relocation out of range relocation 0x%x is not implemented yet closing %s
 efidisk disk/efi/efidisk.c opening %s
 not a efidisk no such device m = %p, last block = %llx, block size = %x, io align = %x
 invalid buffer alignment %d invalid sector size %d opening %s succeeded
 d%d hd%d iterating %s
 fd%d cd%d writing 0x%lx sectors at the sector 0x%llx to %s
 failure writing sector 0x%llx to `%s' reading 0x%lx sectors at the sector 0x%llx from %s
 failure reading sector 0x%llx from `%s' %s,%s /%sVendor(%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x)[%x:  ] %02x  set_virtual_address_map failed could not set EFI variable `%s' mods /EndEntire
 /EndThis
 /EndUnknown(%x)
 /PCI(%x,%x) /PCCARD(%x) /MMap(%x,%llx,%llx) Hardware /Ctrl(%x) /UnknownHW(%x) /ACPI(%x,%x) /ACPI( %x, %s, %x) %s) /UnknownACPI(%x) /ATAPI(%x,%x,%x) /SCSI(%x,%x) /FibreChannel(%llx,%llx) /1394(%llx) /USB(%x,%x) /USBClass(%x,%x,%x,%x,%x) /I2O(%x) /MacAddr(%02x:%02x:%02x:%02x:%02x:%02x,%x) /IPv4(%u.%u.%u.%u,%u.%u.%u.%u,%u,%u,%x,%x ,%u.%u.%u.%u,%u.%u.%u.%u ) /IPv6(%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x,%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x,%u,%u,%x,%x ,%u,%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x /InfiniBand(%x,%llx,%llx,%llx) /UART(%llu,%u,%x,%x) /Sata(%x,%x,%x) Messaging /URI(%s) /DNS(%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x) /DNS(%d.%d.%d.%d) /UnknownMessaging(%x) /HD(%u,%llx,%llx,%02x%02x%02x%02x%02x%02x%02x%02x,%x,%x) /CD(%u,%llx,%llx) Media /File(%s) /Protocol(%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x) /UnknownMedia(%x) /BIOS(%x,%x,%s) /UnknownBIOS(%x) /UnknownType(%x,%x)
 GRUB_ENV couldn't retrieve memory map memory map buffer is too small couldn't terminate EFI services Trying to terminate EFI services again
 cannot allocate memory cannot get memory map cannot allocate conventional memory %p with %u pages too little memory cannot set text mode console invalid environment block # GRUB Environment Block
 no TSC found unaligned pointer %p double free at %p alloc magic is broken at %p: %lx out of range pointer %p null in the ring free magic is broken at %p: 0x%x out of memory  /  %s%s  (%s)  unknown 
 invalid argument (%s): Filesystem is %s.
 one argument expected %s=%s
 not an assignment Set an environment variable. [ENVVAR=VALUE] set Remove an environment variable. ENVVAR unset List devices or files. [ARG] ls Insert a module. MODULE insmod %s,%s root variable `%s' isn't set %s read failed
 disk kern/disk.c Closing `%s'.
 Opening `%s'...
 sector sizes of %d bytes aren't supported yet no such partition Opening `%s' failed.
 disk `%s' not found attempt to read or write outside of partition attempt to read or write outside of disk `%s' Read out of range: sector 0x%llx (%s).
 `%s' is already loaded module at %p, size 0x%lx
 modules kern/dl.c ELF header smaller than expected invalid arch-independent ELF magic this ELF file is not of the right type ELF sections outside core relocating to %p
 .module_license incompatible license LICENSE=GPLv3 LICENSE=GPLv3+ LICENSE=GPLv2+ .modname no module name found .moddeps grub_mod_init grub_mod_fini unknown symbol type `%d' relocation without symbol table flushing 0x%lx bytes at %p
 module name: %s
 init function: %p
 symbol `%s' not found prefix variable `%s' isn't set %s/x86_64-efi/%s.mod mismatched names  error: %s.
 assert: error stack overflow detected!
 missing `%c' symbol attempt to read past the end of file attempt to seek outside of the file invalid file name `%s' beyond the total sectors Detecting %s...
 fs kern/fs.c / %s detection failed.
 unknown filesystem blocklist  %s root (%s)/%s fw_path x86_64-efi (%s)%s prefix normal %s%s overflow is detected unrecognized number (null) debug all %s:%d:  
Aborted.  Press any key to exit.  %d sub-partition %s%d of (%s,%s) ends after parent.
 partition kern/partition.c Unknown command `%s'.
 help Try `help' for usage
 >  grub rescue>  
 Entering rescue mode...
 SecureBoot No SecureBoot variable
 secureboot kern/efi/sb.c SecureBoot: %d
 SetupMode No SetupMode variable
 SetupMode: %d
 efi_wrap_0 efi_wrap_1 efi_wrap_10 efi_wrap_2 efi_wrap_3 efi_wrap_4 efi_wrap_5 efi_wrap_6 efi_wrap_7 grub_command_list grub_current_context grub_device_close grub_device_iterate grub_device_open grub_disk_cache_table grub_disk_close grub_disk_dev_list grub_disk_dev_register grub_disk_dev_unregister grub_disk_firmware_fini grub_disk_firmware_is_tainted grub_disk_get_size grub_disk_open grub_disk_read grub_disk_write_weak grub_divmod64 grub_dl_head grub_dl_load grub_dl_load_core_noinit grub_dl_ref grub_dl_unload grub_dl_unref grub_dma_free grub_dma_get_phys grub_dma_get_virt grub_efi_allocate_pages grub_efi_allocate_pages_max grub_efi_compare_device_paths grub_efi_duplicate_device_path grub_efi_find_last_device_path grub_efi_finish_boot_services grub_efi_free_pages grub_efi_get_device_path grub_efi_get_filename grub_efi_get_loaded_image grub_efi_get_memory_map grub_efi_get_variable grub_efi_image_handle grub_efi_is_finished grub_efi_locate_handle grub_efi_locate_protocol grub_efi_net_config grub_efi_open_protocol grub_efi_print_device_path grub_efi_secure_boot grub_efi_set_text_mode grub_efi_set_variable grub_efi_set_virtual_address_map grub_efi_stall grub_efi_system_table grub_efidisk_get_device_handle grub_efidisk_get_device_name grub_env_export grub_env_get grub_env_set grub_env_unset grub_env_update_get_sorted grub_err_printed_errors grub_errmsg grub_errno grub_error grub_error_pop grub_error_push grub_exit grub_fatal grub_file_close grub_file_filters_all grub_file_filters_enabled grub_file_get_device_name grub_file_open grub_file_progress_hook grub_file_read grub_file_seek grub_free grub_fs_autoload_hook grub_fs_list grub_fs_probe grub_get_time_ms grub_getkey grub_getkey_noblock grub_gettext grub_isspace grub_list_push grub_list_remove grub_machine_fini grub_malloc grub_memalign grub_memalign_dma32 grub_memcmp grub_memmove grub_memset grub_millisleep grub_mm_base grub_modbase grub_named_list_find grub_net_open grub_net_poll_cards_idle grub_parser_cmdline_state grub_parser_split_cmdline grub_partition_get_name grub_partition_iterate grub_partition_map_list grub_partition_probe grub_pci_find_capability grub_pci_iterate grub_pci_make_address grub_print_error grub_printf grub_printf_ grub_puts_ grub_real_dprintf grub_realloc grub_refresh grub_register_command_prio grub_register_variable_hook grub_snprintf grub_strchr grub_strchrnul grub_strcmp grub_strcpy grub_strdup grub_strlen grub_strncmp grub_strndup grub_strrchr grub_strtoul grub_strtoull grub_strword grub_term_highlight_color grub_term_inputs grub_term_inputs_disabled grub_term_normal_color grub_term_outputs grub_term_outputs_disabled grub_term_poll_usb grub_tsc_rate grub_unregister_command grub_vprintf grub_vsnprintf grub_xasprintf grub_xputs grub_xvasprintf grub_zalloc memcmp memcpy memmove memset                         &      	                                ![NYd9 ir;nW	?m9 ir;1[b? ir;w/.LVIC!                      <      ;      8              R:      :      :      <      B<      ;                                                                    9              :                      `                              :              v      u                                      :                    '             "             $             \                          '             "             $             {                                       	            }          
   {          	          	      "       	             	      	      
      }                             p                               "             '                   3      0             >      >             I      O             T      c             _      |             j                   u      p                    `                    eQ                   R             ¶      P             Ӷ                          W                                       _W             #      tW             <                    T                    r      w^                   IX                   )[                                       Ƅ             Ʒ      `              ӷ      k                   a                   M`                   `                   `             "                   0                   B                   T      /             l      @/                   +                   )#             Ÿ      "                   1                   /                   "             /      !             E      y             _      0             w      (                    H                                        x             Ϲ      /                   X                    q                   #             .                   C                   Z      ?             p                         U                   @                                 պ                         o                   Rn                   (m                   n             +      o             F      4             ^      0             j      0             u      2p                   Eq                   p                                                         s             Ļ      P             ڻ      p                   Vr                   s                   @             5      r             D      u             S      <G             ]                    s                          x                   gJ                                                                       ̼                   ټ      z                   {                   4                   F                   D             %      G             9                   E      Z             R                   ^      J             n      h              {      P                    z                   P                    0              Ľ      l             ޽      "                                                    '                   ?                   T                   m                   ~                         q                                                                      ɾ      ]             ۾      I                   ^                   J                   o             ,                   :      _             F                   U      
             a                   m      %             y                         )                   m                   v                   ˉ                   ,             ǿ                   Կ                                                                              0                   B                   ]      8              p      `              ~      K                                      8                                                                             G                                      Z                   Z                                                        LICENSE=GPLv3+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  mimg           H           ELF          >                              @     @ 
 	 HHG HHHH1H9t@<DD@<HH tHG 1UHSH        PH ZHH[]AUIATI        UHH<    SQAHHt;(   AHuHH        H(H@   H@    LhHX 1Z[]A\A]AUATUHSHQHwH;wu2H7H        H HHu           HcHC H{HHI        HGHH{ HCH        HCL`Mt'Il$H;HC HHHIHHS1LHHIAZ[]A\A]AV1AUATE1UH        ISHGHHPHKO,$ImH;k   H;LHC MmHHHHS~)L;ksJH;LHC HHHHSIN'L;ks5H;LHC HIHHSLHHIAg[]A\A]A^LICENSE=GPLv3+ priority_queue                                                                                                                                                                              2                      ?                      L                      W     A       !       s                           b       o                                  2               grub_priority_queue_pop grub_priority_queue_push grub_realloc grub_memmove grub_errno grub_priority_queue_destroy grub_malloc grub_priority_queue_new grub_free grub_priority_queue_top        H                     k                                                                        
           &                    @         	                                .symtab .strtab .shstrtab .rela.text .data .module_license .bss .modname                                                                                             @       h                                   @                                                &                                                          ,                                                         <                                                          A                                                                                                                	                      H                                                                J                                    ELF          >                    @
          @     @  
         ATHAUHSHuHu1   (   H        HtH        HHHhD`Ht7D9avHIHHHQ HP HA HP HtHB*H        H        HH@    HHP []A\HWHG HtHB 
H        HW HGHtHB
H        H        ATH        IUHS8 tH        HtLH        HH        أ        H            []A\H        R8 tH        HtH        H     H        H     H             XH        8 uH           1H        UH        SQ8H        H        HHt(H        8tH[ HtASH[H        ЉH        HHtHCuЉH[ Z[]H        1PE1H        H        H        H        H        ZH        H8H        you need to load the kernel first Boot an operating system. boot    LICENSE=GPLv3+  boot                                                                                                         <                                                                                                        
       3                      E     a      U       W                      r                                  F                                                                                                
                         f        grub_mod_init grub_mod_fini grub_loader_is_loaded grub_machine_fini grub_loader_unset grub_register_command_prio grub_unregister_command grub_loader_unregister_preboot_hook grub_malloc grub_loader_boot grub_error grub_free grub_loader_register_preboot_hook grub_loader_set                           /                     @                                                                                                                                                                 ,            (       9                    D                   N                   c                   s                                (                                                                                                                                     
                                                 9            (       G                   u                                "                   s                  <                                                                                        .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .modname                                                                                              @                                          @                     `                          &      2                     A                             5                     U                                     ;                     X                                    K                     h      0                              P                      h                                                          p            	   	                 	                      h                                                         	      Y                                    ELF          >                              @     @  
 S1HHH        HH@XHxH        HtH           1H        +$fD$CD$CD$CD$CD$C1H[S1HHH        HH@XHxH        HtH           1dfHf$CD$CD$CD$CD$CD$H        H@XHx H        H1HtH           H        H[can't get datetime using efi can't set datetime using efi      LICENSE=GPLv3+ datetime                                                                                                                                                                                                       )                   ;                      F                      Q                       grub_efi_system_table grub_get_datetime grub_set_datetime efi_wrap_1 grub_error efi_wrap_2                          !                     2                     C                                                                                                                  
                              )                     .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .modname                                                                                              @       9                                   @               h                                &      2               y      :                             5                                                          ;                                                         K                                                          P                            	                                                          8      	                    	                            \                                                    p      Y                                  x  ELF          >                    p          @     @   USHPHoPH        H} HH        HC            Z[]AWIAVAUIATIUSHH@H_PuHH@@HG@IWHC1H9r:HsH<H9s-H)LH        H)L9HHt IGI)IHM   IGHs1I|H        HIHIwLsI        L9   LLL$H;H)H$AH$LH;H        HLL$y	H   I@uHHR@IW@IHI)H;$t>HSHCH9vHSHSHLH{ H)IGH)HCH        HsLH;AHSHs H;H        HoLsHCI@uHH@@IG@HCLI9LGHL)IGLHt H        I,H[]A\A]A^A_AUI        ATIh   USQAHH            x
HcI;D$@vI|$@      IF\$@HcH{ AHuHH        8L HXIT$HUIT$@HEPH        HEHU@AD$HEHH1    |   rZ[]A\A]UH        SHt$HHt,Hǋt$H        HHuHH        1HH[]bufio                                                                                 LICENSE=GPLv3+ bufio                                                                                                                                                                                                                                  +                      6                      E                      Q                      a                      p           V                                                grub_memmove grub_divmod64 grub_file_seek grub_errno grub_file_read grub_zalloc grub_file_close grub_file_open grub_buffile_open grub_free grub_bufio_open                                               2          
                                                               	                                                                                                                                                                                                2                                         (             >       0                      .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .modname                                                                                         @       J                                   @               H            	                    &      2                                                  :                           P                              5      @                     H       	                    @                                                         P                                                          U                                                                                            
                    	                                                                                      ^                                   ELF          >                              @     @   H        HH        HHEPH        HHHpHxQ1Z1ATI        H        I<$UH        SHHHI$H[]A\AVH        AUI        ATUSHH   H        HPHHtOII4$HtH        1IAII        I<$Ht	AIHH        H        HPHHtOII4$HtH        1IAII        I<$Ht	AIHH        H[x []A\A]1A^ATH        I        USHHtBH        HHHt%HH        Hsh1AHH        H[x[]1A\AVH        I        AUATUSH(HtmH]pHt^HC H{HItFHC H{PHIt"HLH3H        1I        ALAMtLAH[0Hmx[]A\A]1A^AUH        I        ATIUSWH(HtEH]pHt6LH;AՅu#HLH        H        Y[]A\A]H[0HmxZ[]A\1A]H        AVH        IAUIATIUHSLHHT$Ѕ   H|$A    </uq1HHt$H        H        :       HT$:        I}   )Ht$ȉD$H              D$I}   Ht$H           HT$HLH        ЅttH|$A   </uG1HHt$H        H        : u=<w9HT$: u/EE Ht   uEE Ht    1 LH            1H        H[]A\A]A^UH        H        SHHtGHH        1H        HHtH1HD$HH        HD$1H[]UH        H        SHHtGHH        1H        HHtH1HD$HH        HD$1H[]AWH        AVAUI        ATIUSHH(H   H]pH   H3H        1I        AI4$IHAօuHC H{H@ELI        AH3H        1AI4$HHD$AօHT$uHC H{H H[]A\A]A^A_HAH[0XHmxBH1[]A\A]A^A_AVH           H        AUATUSHH@H     H        ЅuLc*H        HH        ЅuH        L H        A   G,   HH        HtIL`I)HH        IH        L HMu"H            1H        l  E1D$    HL$HT$ Ht$LH        ЅtH           |$ H        tC   Ht$ H|$H        L0MtcH        Ht$LPHuKMvxۺ   Ht$H|$H        L0Mt H        Ht$LPHuMvx1HH        u0H        HH        uHH              IuJ   HH        H        Ѕ   H        H        HH@(      Ius   HH        I        AՅuH        H        -   HH        AՅu!H        H        HH@(    "HH           1H        kH        HPpHxP   H        HHt;LH        HHuHH        H        HC@H1H@[]A\A]A^AVH        Ih   AUATIUSHHtQh   LHI        AHCLHhH        HEHCH        H@Hx uHա        pH        LHLHpHxD@(AQH        о   HH        HIuHCH@Hx땺h   HLAL1[]A\A]A^H uH        &   1H        1H   H        HD$    HuH           H        <HH8HT$H        Ht$HH           1H        1HD$HAWH        A (  AVI (  AUATE1USHQIHtQH        H (  MLFLLLHpHxAQHHH        LHIH)H        LLZ[]A\A]A^A_ATIUHSHGHHwH@H@8H9vH)Rs_H        HHHpHxQH        HSLHHRpHxD@(HJHAQHsHtHH        H        HMHPpHxHBH[]A\AWAVAUIATUSH        H(Ht$HT$:   HIN  LH        H5     H        LH        Ѕ   MH        M)I~HHuH(H        []A\A]A^A_LLHI        H\$AID$BD5  /   H$HH        HILLD$uAMH        H        g   H        1I        AAI|$IL+,$Iv^A|$[uVI}A|<]uJHHu)H        HH        H([]A\A]A^A_IUIt$HABD+ *HL$I}AHHHL$tLH4$HB+ LI        AHIu H        HH        HsHǾ/   H        H     HHH        H        1HL$LHAHT$HHHH        H        LHH(MH        []A\A]A^A_H        ^   H        1I        AA$ XAVAAUIATIUHSH_pHtA$9C   H[08   H        HLH        HA$HkCHEpHC0A<$ tH        
H        HC H]pHC H{DLP uBH        &   H        1#H;H        LH        HH[]A\A]A^ATUSH@$    D$    tH        >H        HHI        HtHuH{hAԅt*H[xH           1H        ҉   HH}LD$HT$Ht$H        Ѕud$D$(H        tH|$,   Ht$H|$,Ht$   ЋL$HT$(Hu HH        1H        DH@[]A\AWAVIAUIATUHSH        H8HD$H        HL$HT$H        H@`H   H        H2  HD$HH        HH  H  H9tH[xH;k(uLc0
H;k8uLc@M  Ld$HH1fMUf$M    u%HD$H}LLH        HD$   u9HuHu   LI        AHuH|$    AD$    8uPHpHu   LH        D$-@D$, D$   Hsh   HT$HH        ЊU u
}  D<$LIl$h}    IE     H  I      fUu fBH9rftzf;uh$HxH        Ћ$IHuHH        HH$H$LLLH        A LH        HH)iIt$hH|$   H        HD$-@D$, D$      
  	  H        D    1I        AH        HH$1AH`  I   H        HIE t HǾ/   H        HuIE   H$H|$   H        H        ID$hHpIt$hH|$    H$D$    Hsh   HT$HH        H   H0H        H        H        H(I        H   H]pH   H3H        1AH        I1H$H        HI        I        LALAH3H        1AI1H        H$HLALAH[0dHmxNH8[]A\A]A^A_UH        SQH8H        H   HxH        ЊHfp   u}HXH        1H        /  H        II        H        AѺ   H        HՅ   t3   H        H1҅utHU1҉Z[]H        QH8H        HtCHxH        ЊHfpuux$utH1ZAW1H           AVAUATUSH        HhHL$PHHD$H\$0  HD$$    HD$PHPHHT$P2  H;H        H     H        H;I        AHI     H        H;I        AH        HD$(H;AIH        M     t   H        LAHD$	HD$    H        H;AHH        H     t   H        HAHD$	HD$    H        H;AIH        M     t#   H        LH        H1HT$8   H        HIHT$8u<H|$H        H        H8H	  HoxHH        Ht$$H        IV`M~H        MfInHIHD$(MnXIFHD$IF HD$IFPH        IFx1IFhLIFp    H        HD$$1HL$XH           HD$0HI*  HHD$XHPHHT$X  H;H        H   HE1H        HHH        Ѐ8u/Pu @f@ u @A   f@ H        L0I        M{  I>H        HHAׅtMvxպ   H        H;H        HH        tEH34  Iv8IF@HHLH        H        H|$H        HH   HCD$L    LD$L      H        HH8Ht6LChH        H          H        1I        AHCHtZD$X    LD$X      HH8Ht6LChH        H          H        1I        AH[x#HH        Iv(IF0H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        1H        H        1H        H        H        1H        H        H        H        H        H        H        1H        H        Hh   []A\A]A^A_AWH        AVI        AUATUSH        HH        L M   Il$pHtxHu H        1AH        I1HL$1HI        LLAHu H        1AI11HL$HLLAHm0Md$xkH        11H        H        11H        H        11H        H        11H        H        11H        H        H        H        H     H        H     HH        []A\A]A^A_H         H         SHzPHHtH        HCHCP    HC    HC@    H@H@8    1[SHHHrPHt[HtVMtQHBHR@H@H@8I< H9vH)It+HLLD$HH        HCLD$H@L@8L1H[AWAVAUI        ATIUHLSH   H        Lt$pHT$DD$H$   LL$H$   HX`H        LH$   H        H$   H        H$   H        H$   H        H$   H        LEH        ЅHL$LLI        tHD$pH        8 t
H        1AHItIHH        H| IH        HItILM11sLH        С        l  MtV1I@7I)ŅHG*  AAA  A҉?D	҃     HMuM)LI        IMfCG  A1|$ L|$8D$x   Ǆ$       LL$@HǄ$       Lt$PH        HD$@          I        E1D$0HD$0HD$pH$   H$   H      H{PHD$HH          AHI   H|$8AL  uh@x@Y@u      @u   @Hǃul   usIw  vK  v>  II
ff fAHff fAHHH?   fAII12   (H}HT$@HI        AHuI        IHt$@HD$H        H{pH|$8AHT$H           1H          A}  uH}(HH        HD$,Ǆ$       HǄ$       Ǆ$       HǄ$       E1H$   D$,    LL$XHD$X    H{PH              AHIt/H{pHt$@H        H|$8ALH        &H$   HD$`    H} HT$XHHD$hH          AHIuI        MH{pHt$XH        Ht$@H{pH|$8ADH           1H        y  A}  uH}(HH        H$   (   H$   I        HtH{HAH{pHt$XAH{pHt$@H        AH|$8AԃH        u"H        HT$Hƿ   1   H        ЉHƿ)   1   HD$HtkH     1I        9$   ~OH$   IH        IHJ<(AօuH$   
   1J|(H        HL$HH$   H        HtH{HH{pHt$XH{pHt$@H|$8A1H   []A\A]A^A_AWAVAUATIUDSHHxHBHt$ HT$H@H8H        ЅH        HCt7HT$: u-H@H        H        HH        HD+H@H        H        HH        HD1HIttH        H        LH        H        LH        I        HCE1I|$ A   H@HPH0AՅ            HCE1I|$ LL$H@HPH0AՅ  H|$H        Hl$IH        M|$ HL``u"H        &   1H        +  MI|$PLL$0E1H              H        HD$HLl$hHD$H    D$P    HD$X    HT$0HD$@H      l$`HD$8H        I   LH        HuH        ?HD$I|$pH        Ht$0HT$H           1H        J: uHT$I(LH        HT$܋D$`IH)I|$pHt$0H        HD$LsPCH    HC@HCH@H@8    1Hx[]A\A]A^A_AU   IATUH        S1HhLg H|$HՅD$H   D$L  H\$0   IuD$PIHD$   HL$   H        H~HH      H9uH        1H        HtH        1H           Hl$   HH        HfD$   Hl$X"D$P    1HD$0fD$:  H\$XHT$HI|$LH        H      H9t0Ht+H           1H        H        Hh[]A\A]SHBHHB    HB@    H@H@8    HzPHtH        HCP    1[AUATUHSH(tH_@H_0LchA<$ u3HcH{HH        HtH        1H        A|$ H           LmHD$      HHE  II}HL$   LH        H  It$   HH        Ѕ      H|$HH        H{X1HT$   LmHD$      HH   II}HL$   LH        Hu~It$   HH        Ѕtp   HHI        AԺ   H|$HuAH{XHL$HHH        HtH        1H        HH        H([]A\A]AWAVAUE1ATIUSH8?[Ht$H|$uHAH|$HD$8:ux:t1  HHD$1H|$?:uHǉH|$Q   Ht$H        H        : t    +H  uHcfDT HD$8:uHHD$Ã~	nI        tEHc)LtD )HcHcLHH|l A׺   1L)H        HcHк   Ht$ H|$AEtHD$8]uHHD$Mt	HD$I$   H8[]A\A]A^A_UHAWIAVAUATSHHHHE    tLg@Lg0ID$hLux HCH@t>H8HUHuH        Ѕt_HE8 uV   HuLH        <H E1H        HEHM
   HuH}C.IHEIHMuPE11I|$(LM   j LH        j AWAVj H0HtH           1H        )HECH    HCP    HC@HCH@H@8    1He[A\A]A^A_]UHAWAVAUATMSHHHHMtLo@Lo0HsPHCLeHH@t(Hp8LH}H        HCH@L`8  Hx8 H           IUhLuz t>H8HUHuH        Ѕt_HE8 uV   HuLH        <H E1H        HEHM
   HuH}C>IHEIHMuRE1LMI}(   Lj HMj HCH@pH        AVj H}H0H;{@tH        &      H      H9uzH        HIH           tnPI}(E1LML   j Lj HCH@pH        AVj H0HugLLH}H        5E1Ht-H           H        1H        1+HCMH@L`8tL{PLLH        He[A\A]A^A_]AUI        ATUH   SHHD$   AHHto1H}IHL$HI        AH      H9u.HH        H|$AH}HIHL$1HAHHtH        1HH[]A\A]ATH        IUHSHHtdpp19~LHkE$HHx9I	t0D!9u)H]pHt { uHH        HH[0HHH        1[]A\PHGI      HH8H        HZPHGI      HH8H        HZUH        H   SHHD$   HHt4H}IHL$   HH        HHtH        1HH[]AULnATIUSHQuRHH        HHt*HpH{   H        HH        CC	C
C ID$M      HH8H        Z[]HA\A]AWH        IAVAAUATD$UAMcSLHHHtQLII        D)D9},M LLD$H        L1IHALD$BD# H1H[]A\A]A^A_UH        SQHHHt*HpHxDH        HHH        H1Z[]UH        HATSH   HIt6PCH           LI        PDK1DCAZYHeL[A\]AWH        AVAUATIUSH8HHH  @pxH        HHHtE1E1  HH          x uL H@0HuAFLD$I~D$H        HD$ALD$(H        Av1H$I~LD$΅t!1AEAAD9       )L$,LD$ H        Ѓ|$( HD$LD$ L$,@uo|$    |$(    II        H<$AH|$AH|$AD9mp   MkID$pE1Lux Pc|$ uMtIcEwIt$hL<H        H$Y@jIcEwIt$hL<LD$H$H        +HIcEwIt$hL<LD$H$H        1I        AIEIcH        HH    H1H8[]A\A]A^A_UH        SQHHHt&HH        HHH        H1Z[]ATIUHS1HD$    H|$1Ht$H|$H        H        : t    LD$A8.t
uD$3H t1`L$	L$tA8.uILD$uD$   Ht$LȉD$H        HtHD$HHE    H[]A\UH        SQHHHE     H        IHH¿!   1H  fEI@AtiD $A  wI   H
1 $  @r?΀@r΃?ɀ?J΀@r	?LH1   wD
F  wA?HAɀJDJVD (A  vDD $A  w?H.AA?A?AɀAɀDJDJHIH         HH1Z[]AUI        ATI        UH   SHHD$   A1HH}IHL$HAH      H9u.HH        H|$AH}HIHL$1HAHHtH        1HH[]A\A]AWH        AVAUATIUHSQHH   DPxE1   HA@   E9~xIk!H   DJ Et^A@M$I\$@LrLzw_DHD)H1L!L9u1H!L9u)H]pHt { tHH        H2H[0IHH        1HD)HHHZ[]A\A]A^A_PHGI      HH8H        HZPHGI      HH8H        HZUH        H   SHHD$   HHt4H}IHL$   HH        HHtH        1HH[]ATLfUHSHu0HH        HtPHH        SC@HEM      HH8H        [H]A\UH        SQHHHt*HpHxDH        HHH        H1Z[]AVH        I(   AUATUSHHI   HE11fCfA   DftfEt:HH        I           H|$1AHHt$H        H|$H        HÃ   Du:@Hu:C0HIIV L1H[]A\A]A^AWH        AVAUATIUSH(HHH   @xxH        HHHtHD$    E1eHH          x tL H@0HuM   M   H   Hu~H|$I        AH|$AHD$D$9ExC  Lkt$!H        L   LI~HD$H        MHD$E1MNIvI~ID$p]MyHH      E}H9IcIt$hu)Hu$A~ @uL,HT$@   H           L,HT$AN H        lHuHt+IcE}It$hL,LD$AN HT$H        7Mu	MIcE}It$hL,AN LD$HT$H        1I        AIE EIcH        HH    H1H([]A\A]A^A_UH        SQHHHt&HH        HHH        H1Z[]AWAVAUE1ATIUSH8?[Ht$H|$uHAH|$HD$8:ux:t1  HHD$1H|$?:uHǉH|$Q   Ht$H        H        : t    +H  uHcfDT HD$8:uHHD$Ã~	nI        tEHc)LtD )HcHcLHH|l A׺   1L)H        HcHк   Ht$ H|$AEtHD$8]uHHD$Mt	HD$I$   H8[]A\A]A^A_UH        SQHHHE     H        IHH¿!   1H  fEI@AtiD $A  wI   H
1 $  @r?΀@r΃?ɀ?J΀@r	?LH1   wD
F  wA?HAɀJDJVD (A  vDD $A  w?H.AA?A?AɀAɀDJDJHIH         HH1Z[]AWH        AVAUATUSHH  H(HD$Tt$HT$ HD$(H0  |$    1H   H|$hI        H        H        п   Ǆ$      I        AHD$0 7HT$hHD$0@HD$0@HD$0@HD$0@HuPHD$0H$   H~IH|$0AMLd$t4DH        iHD$ H}hH0H        ЅG  &HuP1H~HtH        %HEPH$   HH8HtH        1H          H]pHt{ tH[0H$      H|$(I        AH$,  H|$X   AHuNHuhH        1H        IHHD$P       HT$PH        LHAHC H{   Ht$PP    H$(  H|$@I        AHC H{Ht$@P(H$8  LuPE1D$8    HL$8HHD$I~@LH        H      H9   |$8HD$HHI   II~@HL$8HT$LH        Hu_L$8M9tTI:uDRu<t8   HD$Ht/I6   HHD$HALAHL$HILA1HHD$8tHC H{Ht$8P0HmxHH  1[]A\A]A^A_AWH        AVAUATUSH   HHD$lt$HT$D$    HD$H_  |$ H        Lh`  	   I        Af  f@ If@ ;f@ H$   HD$0HD$0Hs`D$P    D$T<   H$   D$HǄ$       Ǆ$      fǄ$    HǄ$       $   HD$HƄ$    Ƅ$    D$H   H$   D$L   H        H~HǄ$       ILI        AMt4DH        zHD$H{hH0H        Ѕ	  Hs`H        H~HtH        .HC`1HT$8HH8H        HtH        1H          HkpHt}tHm0HD$@   H|$HpH        HD$}@D$| D$h   uFHshH        1H        IHH߹   HT$hH        LHAHE H}   Ht$hP Hs`HD$@E1D$,    HL$,I        HPH~@AH      H9   |$,   HAHs`IHD$@MHL$,HPH~@AHuT$,1MtqLAi9v8I4Hf> uHH|$X   H        HE H}Ht$XP0MtLAI}HHt$8I        AI}HHt$@AH[xD$E1HiH   1[]A\A]A^A_HHHP~ tHHGHLHGHHHHtHWHPH    HG    11H        HH        HHE1SH        HHt${P tHCH@ HtHCP    H1[1H        HGHHHWHHuHWHHHGHuHWHBH        ATI        H        I<$UH        SHHHI$H[]A\AUIATIU1S1HH|$1Ht$H|$H        H        : t    XHT$
.tu-H u<މ	t.u&HHT$uMA] tHD$HI$1   H[]A\A]AWAVIAUE1ATIUSH(?[H|$uHAH|$HD$8:ux:t1!  HHD$1H|$?:uHǉH|$Q   Ht$H        H        : t    +H  uHcfDTHD$8:uHHD$Ã~	ntNHc)L|D)H        HcHcLHH|lк   1L)H        HcHк   Ht$LH        EtHD$8]uHHD$Mt	HD$I$   H([]A\A]A^A_UHH        H        SQHtDHH        1H        HHtHHH        HH        Z[1]UH        H        SHHtGHH        1H        HHtH1HD$HH        HD$1H[]UHH        H        SQHtDHH        1H        HHtHHH        HH        Z[1]UH        H        SHHtGHH        1H        HHtH1HD$HH        HD$1H[]AVI        AUATIUHSLH   1LCH        H        O  H        AH{H        HtEHH        1H        H        W  H        I        A1KH        8u     H;I        HAL9s   H{AHSL) &[]A\A]A^UH        SHQHCH@HP Ht HzHCH@Hx H        H@HP0HCH@HxH        Z[1]AVH        AUIh   ATUHSHHQ  h   LHI        AHCHH@H@     HCH@H@(    HCLpH        IFHCH@Hx    H@HHP tZI        HCH@HP Ht!HzAHCH@Hx H        HxI        AHAԉ      HH        HHumH        HCH@HP Ht HzHCH@Hx H        H@HH        P0HCH@HxHա        h   HLAH        H1[]A\A]A^E1H        H uH        &   1H        1AUATUSHQL    P Iu/HGH@HtЅtH                CP   1I        
~MtA<$    HCHP0HuH        HCXrHHAH        D EtL1I        H        H        _  H        I        AH             dXZ[]A\A]H        X[]A\A]UH        H        SQHHt,HSXH9rKTHH9r1HH        HZ[]H        tH           1H        AVH        I        AUIATUHSHHt>H{0Iu Aօu%HI        HE H{0AHAH}  t
Hm H] []A\A]1A^tH           1H        VATH        I        UHSHHtH{Hu Aԅt&HH           []A\1H        ChtH           H        HH        H{H[]1A\AW   H        H        AVAUATUHSHЅuH]*H        HH        ЅuH        HA   I        G,   HH        HtIHXI)HH        IH        HIHH           :   HI        AHH$  [   HAHHD$tz]   HAHHH        t4E1x:uCHx1
   H        =  A~"H            1H          H|$H)HsQ  H$:   LpLAHH        tsHH        ЍxIH        HcHIv  Mc [HxLHH        CD7]CD7 E1   HT$҅HT$tIA>@uA>-t1Iƹ   L$1
   LH        ЋL$t7I       HHL9vQH        H           1L/HHy'H        H           1H  AH4$HH)H        IHH        E1IMH  E1H        H        HH   DD$HyLH$LӅH$DD$uVHAB<( uKP   H        HH$   HHH        DpL8HH@H@8    @H       H	wEuqIukH           LӅH        t"   LH        Ӆu1H        H        H        A        HH           1H        LH        1H[]A\A]A^A_ATH        USHH8HtH/1I        HtH9_uAHtHE 1HH݃{P tHCH@ HtHCP    HH        []A\ATLfH        UHSHLH HD$    HT$ЅtHD$8 u      HT$LHH        ЅtHD$8 u   m11A   LD$HL$HH        ЅuHH|$ uHH            H        ѹ   HHt$H        H|$1H []A\ATLfH        UHSHLHHT$ЅtfH|$   </uHH1Ht$H        ЉCH        8 uHD$8    H             u	C    {HT$LHH        ЅtdH|$   </uDH1Ht$H        ЉCH        8 u
HD$8 tH             uC   1 HH            1H        H[]A\AWHI   AVAUATUSH8H<$Ht$pH|$HHt$pDD$pL$   H        H1HtHE1A    D$A   ID;T$M  l$Ld$LH        HH1IH   EtHz8    D9B   AtAt$   z1ɅtD)z1KJ(@@   )ωLH1D)ωLHHHLZIM1Iu?Hz HH1Hu0Ht(D;@r%w AtAuH(9J(H9JHOHH(HuH        "   Mx@ taEHPHuH<$Hֹ   H|$Hֹ   D@HLXXAH        !   1H8H        []A\A]A^A_H@HIH81[]A\A]A^A_UHAWAVAUATISHH  r,I        L  LOA0   I        I'HeHH        H        [A\A]A^A_]LDAHLMHH           1AHAHALMuMd$A0   IDLHHH           1AHH        HAuHeHAH           1[A\A]A^A_]I        AGR(   HI        AԉAAPEH        1AY^He[A\A]A^A_]HeHMH        (   1[A\A]A^A_]AAVH        AUATUH        SHPHLt$He  1Hs0H        DkI        A   rXA   Hs   LD$   H        Ht$(H|$H        ЋS(Ht$(H        1vH        H        H        H1MCDKH        ȉD1 H        H        DH1Ճ{@ t7H        1AH{HHt$(H        H|$(H        HCHH        Hp1AH        1AHHP1[]A\A]A^AVAUIATUS@oH@ v< oH        H        H        H1މ[]A\A]A^H        H        M@1LcC9s5LLLL)H        L1I        AHI[]A\A]A^ATH        I        UH        SH   HHtCH{@Ht$0AH{ Ht$HsHL$HT$0H        1I        AHHĐ   1[]A\SH        H`HHt7H{ HH        HsHH        1H        HH`1[AWH        EAVIAUATI   UHSHxH$HH  HL`Hk@L` I            LAպ(   HH4$AHHt$H        I        D{hLsHCp    HCx    1HsH        AHHL  t:u _HHL$HHt$I        I        I        A1HH        AH        HH$HALHt$H        1HsH        HL$H$HHItbt:u _HHt$HA1H        HAHAHAHC@LH        HCH HHtHXHHH        1Hx[]A\A]A^A_SH        H Ht$HT$HL$D$HHt@HD$HL$HT$Ht$H        HuH$HH        H$1H [USAP/;.rYw\_:^rOwR v.H        H        Hǉ1H        YHH[]H           Z[]S;rbwetreu)HH   HH   [H        H        H        ЉHH        1	   1[AUI        ATIUHS1QH> u10HHE 8uHxLAՅu	HHE HPH P  Z[]A\A]AUIH        ATIHwxUSHLAPHt'   Y[]A\LHx((   A]H        H{x u P  H        HCxHkkpPL(   I        HkxH}(E    Aպ    H}LAHCpHP1H   HEHCpX[]A\A]Q>Hu~t"HwHH        HxH   ZAVAUATIUHSHӃu~   )t%   HFH=  u>H       H9Vu.ID$H{@ ID$P$H        S   HH8H=   uO   ID$@$C3C3CHEHHCHEHHCHEHHC	HEHȈC
/ID$I        HMHpxAHtHp(
   HE1   U tr6uBHLH        HLH        ЅA   6H        &   X[]A\A]A^H        &   1H        It$HHxAHtHp(
   H%H           []A\A]A^1H        []A\DA]A^AWAVI        AUATIUSHH(HAHxfH        HI=  S
H      $   HD$  H	CH0H	CH(H	CHH	C	HH	CH8H	H        H(HHT$Ht>L9eu2H}@HH        ЅuH} HH        Ѕ   Hm It$LI        AI|$ HHH        Ѕt.HH        AHHHH        HAHHH        AE1HHLLH        1HH([]A\A]A^A_HH   HH        1fHHuHT$
u
Hʃu1r	ȃuHATUHS    AuH(H        ЃA   h   H        HHt41HuH        H        HHC0uHH        С        JHu(H{C      H        Dc(C@    HHkHH        H        1[]A\AU1IATUSQ    o(Au,A   y"   @t       A   A   h   H        HHt41IuH        H        HHC0uHH        С        E    C   D)DcC@    LkHH!H        ȉCH        1Z[]A\A]ATUSH tH        =H        HHI        HtHuH{Aԅt$HH           1H        pH}HH        ЅuYDCHAtH           AHK HHH} H        HtHǃH        С        H []A\ATH        Ih   UHSHHt'LH        HHC0uHH        С        6H{   Ht$ H        C@    HkHHH        1[]A\UHH        h   SQHHt'HH        HHC0uHH        С        ?H{   Ht$ C@   H{HHt$@H        HH        1Z[]UHAVAUAATSH@"H           1H          LeHHzH        I        LH{H        AօuYAtSLmH{H        LЅ   H    LHH H        HLH;H@pH        L(MHStI}HAօt%Mm H           1H        'H    LHH        LH;H He[A\A]A^]AV1IHHH        AUATIH        USHHt<t:u _HI|$H        I        HHuHAա        iLHLH        BD%  HHH        AH        1HH        HH        HAHAD[]A\A]A^AWI        AVI        AUAATUHSQAIADL)H9s+Hu H        HHtHHAH}  tZ[]A\A]A^A_H        AWAVE1AUE1ATIUHSH(HGHt$Ht$HXHCLHD$HC H   LpHEMFM+FH@M9MFL@8H        M)MMHtHD11H|$ tIvLH|$H        L|$IVIFH)I9u!LH        H{ H        N:MFMtE1EHCH@8HtnHgHCH@8HtHЃ{H uOAHt$H        Akǐ  A(HSH           1H        HLH([]A\A]A^A_AVAUIATIUSHGHHoH@HP8H9  HHvDLA(Mt%H@ HHtHxH HwH+wHH9rH)   HHA   HA(I        Ht
H   HCH@HP Ht!HzAHCH@Hx H        H@HP0HCHH@H@     HCH@H@(    HCH@H@8    HCH@@H    HCH@HPHpR u>H1HH        С        uHLL[]A\A]A^H        []A\A]A^AWH        AVAUATUH        SH8Ht$HT$HD$    Ht%|$ HD$HD$H{H0ՅtHHD$H        H,    HHIHHtMtH        D$    HHLH        Hӡ        P  |$ ~)HD$H{H0H        ЅtHHud  Dl$Ls HH        LIHO<,ItJD- I        LkhHD$ I}LAׅ   Mm MuH   H        HI   H{H        HxgH        H        IE@HHT$(HsLILH        ЅHT$(t;LH        IHLH        LH        HT$(IH        LI}(   LH        HChIE LkhE1HD$ ML(SD$A   I           E1DH;D$sHL y8 u	I<A1A݅tE11I        J1DH        EuHL y8 u#IH           H@HP1AAÉH;T$rLH        HDH8[]A\A]A^A_UHAWAVAUI        ATSH   H}AIHEL`B -HEJD HxH        HHEHHXHQ  HhH{I        H`I        HpH!HKHH        H)1HAHH        Hu8H        HxAHxH{@HpH        Hx;HHxA1Lx   H        Ѕu}  :u -Hu1I        Lx   MAՅF  S tL     Hs(   HXE   H        H        HuH}HEiC(R(   HxH        AAAEP1A־   Lx   AY^      :u -HuHMH        (   Hx1A1Lx   Aׅu@OH        &   1H        0H        &   1H        HhH1HhHEB     He[A\A]A^A_]H        H8   ATH        USH        Ѕs  H        Ѕs  H        H        H        H        H0H        H        H        H        H        H0H        H        H        H        H        H0H        H        H        H        H        H0H        H        H        H        H        H0H        H        H        H        H        H0H        H            @  H        ЅyI        H        H        H        H        AH        H        H        H        AH        H        H        H        AH        H        H        H        AH        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        ,  H        H        H        H        H        H        H        H        H        H        H        1H        AH        H            []A\á          USH        RukH        H8H        H8H        H8H        H8H        H8H        H8H          11H        H        11H        H        H        H        H8H        H8H        H8H        H8H        H8H        H8H        H8H        H8H        H        H        1H     H        H        H8H        H        H        H             X[]HA   1A  t0A1HAi  AHH)  Auԉ1Aɾ  1ATU1SH        H0H        H;(   H        IIBD t$rt)u=H        "H        H        
H        H        HH        Ht$HI<H        HHt$H        1H        BH01[]A\AWIAVIAUIATUSHH(MtA     LLE1L)H$M9r1  H$HPIcH9|AuAMtA tA L9tH<HHtE  H   1; /  IOt"I9vAW?A	LcO<rHuA7H@H<HLL$LD$HHL$HH        ЅHL$LD$LL$t%8 HH9rHH9s8.H      HtHt<.tAMtA0Hu1:ALL$HLD$HH        ALD$LL$HtHh .Ht;HAM|mH([]A\A]A^A_AWAVIAUATUHSHHLfHVI\$H9s7AFfA9$u,AD$y#xuAD$ufAD$1?AF   HH          H9s0  t
H\H9rH9|fA|$MnH        fHIE IFH8 uH             D$HD$    D$    IE1   HuIN E1E1LH        HuI9   IWH9   A    u1ɅA    AMGEAE11AA HD	HuAG	EG
MWLT$D	DMI9wp   AfAD$A9z  HUI9-IH8   IFH8H          A  M|
IH8 <IFH8H        $L$9F@T$   @tF@MfCIIVH HH    IIFH:   HH8H;fIIVH HH    IIFH:   HH8HHt$H        IH AF0   t$ȅH        uH|$IF HD$I~ HEL}E1D$1LD$<H|$I        HD$ LHAՅtSD$<xH        HcHt8E11IHD$(LHt$ H|$AL\$(MuLH        E1MMF uH        AF          1H        H        y  H        I        AIv H|$H        ЅAF   H|$|$ H        F  IH8 9  A~ .  H        DD$  I        H        1H        AI~(H        LcH        MHL$III} I}IE     I~(IE    H        IE IH8H        I}HIEH        iT$  HL$IHI} IEtI}  u&MIMI} IE     I}IE    IIK|'HIFHH0H        HH        H|$HIgHH1[]A\A]A^A_UH        SHQH        H;w[   NHcH        H8HH        HH        Ht^HH        HH        H        H8H        HHWHH   H        HHHH1Z[]H(tH           1H        &HzHH        ЅuHH        H(UFSH(vH           HuD$      HzH        H        Յu
D$    oH{H        Յu
D$   QH{H        ՅtH{H        Յu
D$   H           1H        %HH;H        ЅuHH        H([]ATI        UHS1I;$s'H        HHHHH        ЅuHH        H9s>H        HHHHHH        HHt
   HH[]A\UH        HAWAVAUIATMSH   HMfHUH}HhLEQDME    HE    H}E    f        ȆHfEuH        HhH        HEH} H        `  EIE     I           L}H        H        LHHHH;H   LH        ЅuH        H;Csm1H        H          H        I        AH{HAHI$tfHSHsH        IU HI<$1  HEH<    AHHt(H}H        HHEuHH        С        N  H}I        AH   H        HILxuHH        H}먾   HH        LmHxLLHpH        M|$MwEEIL`LLpLLH        L`LpMA9IMA}  tf.   LH        HIuLHxML MM)I?wHH        H}H             A AF E1AF AFEAGAG fAG fAG  fAG  fAfAG
  E1ID$ǅp    Hǅx    H`HEHHXHXH9x  xt
Eu}  L;msLH    HHhHHUH        5   H        JIH J| u$        pH             uHEH8 V  E1I        M9  J<   H`E1ID$LHHPHhHPDt(uMtA   #uIuAA   AFA   AFEF1L@LHLMH        H        I  H        ALHLH        J<ЅLHL@tH        p    HEH8 u=IIHE   A   Hp0H        HxH}I        I        ALE1H        M9tJ<IAHAHU1H: uG} H        +   u&pt        H           1H        He[A\A]A^A_]SFH`HD$    HD$    vH           1   Hu)HzHt$H        Ѕ      Ht$H        H0H        HH;1E1LD$HL$H        H;\$H|$s=HHt$8HHHH        Ht$8H        1H        H        1H|$ uH        +   H        H`[SE1H        H        H        H        H        E1H        H        H        H        H        E1H        H        H        H        H        E1H        H        1H        H        [H        SH        H        H8H        H8H        H8H        H8H[HGHLHGHHHHtHWHPH    HG    H0HIH|$H           f
1D$D$D$D$D$D$D$D$D$f D$D$D$   DBAp@   F-  kiD>KAi30 AH|DiQ AuQ ACDBD:Dv1Etkfzuc1Et\DJAwQr@;wGR<w>AEiQ Ei  Dk<DfvyfwA:   H01AVIIAUIATUSHM  Iw:[]A\A]A^H        H          H        1I        AM`fDCfDfAfAAI9sB[]A\A]A^EEH        H          H        1I        AfEu>[]A\A]A^EH        H          H        1I        AMt	LHAMH\+I)[]A\A]A^UHSH        QH?HtH}HtH}(HtH}8HtH}HHtH}PHtH}XHtZHH[]H        AV1IHHH        AUATIH        USHH   t:u _HI|$H        I        HHHt`LHLH        HHBD%  H        H        1HH        HH        HAH[]A\LA]A^[]A\A]A^AWAVI        AUIATIUHSHH    H    HL$H    :   AHH   HH        H      H        HH        ЅAuTIH        M)I~HHE uH          HLLH        HHE B0 	H{QH}  u7MH        H        A   H        1I        Ai/   HH        HIuUMH        H        J   H        1I        AH} H        HE     E1   IH        I)IvA;[u<B|#]I|$u/HIE t4HIT$HsH        IE BD  ?I|$HIE uH        hHLHH        IE B  LH        A   HL$HHu5H        H        E0I} H} IE     HE     HD[]A\A]A^A_AUATIUHSSff_f1  wftGf   (  f  f;  AX[]A\A]HNXHVPHHvHH        H> ufuDH        H        c  `DH        LIt$HE HLH        f]  H~ ufu>DH        H        o  A[[]A\A]H        1I        ADH        LIt$HEHLH        f]  ~ ufw"DH        H        ~  zGfȉFGȉF GȉF$   AZHH[]A\A]H        H        ftt:AY[]A\A]H        H          H        1I        AfH        If^@HHE8ft*    I$H IHPIT$@   HPX[]A\A]UHAWAVAAUATISHH8HR(LMHtiHN H        IHC(H E   HE    HE@   Hu   H@HEH        LLLMH MtM)E1H{8 I        u7H{XHtIH        HSXHH        LH        fD;k@sAAHH{8AEt\H{PHtSH        LH        H        H        HeH        H        [A\A]A^A_]He[A\A]A^A_]SHH        H{8HtH        H{@HtH        HH        [UH        SRH8HtH1H        HtHtH1HHH        H     X[]AWH        AVIAUATI        U1SHxH4$Ht<$ HH{I6AԅtHHu"H        $   1H          Li   H        LHHt!H        E1L8=HH        С        8  <$ ~$II6H        ЅtM?Mu   AEDHiҐ   D$Hi   HLzHEHtAEHi   HHBHT$1IwH        I        AHT$HBAGLHz u)1I        A91HiŐ   HH|AB     Hz@Iw (   H        Dl$-H        J#pHH        HtHPHD$   A   H        H        HC1$    D,$I9.  Mi   D$    II} 	    H        HIu1H        RHǾ  H        ЅAu H        ,  LHT$҅AtLH        H  Mt$1,  H        LAAF1AUDH|$ BAFH        ЅtH        D$         Ht$H|$ H        Ѕt̋T$I~IuEAFA   f	AVfAFH        о   LHD$Mt$HT$HHt$(LfA DfAF CfAF  ID$I+D$D$(   fAFD$0H        Ѕ%  IU HL$(   LH        LfAFA   LHT$HHt$(H        ALH        Eu   D   $uE1E1I           1DH        EL$tMi   II|$AI|$ tDH        LH        ID$H           H        HP1AAEI9rHH        DHx[]A\A]A^A_ATHUHSwH           1H        CIH        `   HHt'HHuH        I|$H        H1[]A\USSf? HfDO   fAfAw@A[[]EA   H        H        G  H        1I        AH~( HuC    H        HE(    HSHE(HPHSHE(HPCȉE0CȉE4X[]AWH        I        AVI        AUATU1SHhHt$HT$H/  |$ Hs HAHIuL  HD$H{H0Aօ   ЍEH   D$    $H        H|$8IH        ЅtH        D$         Ht$H|$8H        ЅtAmAEMe0T$%    	AEH        It$EIEI}$   fAE  fAE" H        IE8    IE@    LH        H        Ћ,$H$   A   I        H        H(   0   AHHu|H        С          Hm 1H  H      D$   HD$   HD$(HT$8H}0Ht$H        ЅtH        ҉G  HǾ   H        ЅAI        tH        HA     HI        AՅ   HC   Hf  f@ f@  AՅukH{Hu 
   H        f fG 
Hо   HAՅu4HC   Hf  f@ U@    @    ʉPAՅt$H        HAԋ$B  HS   HE% ̈BJBALkHL$   HfAE "fAE#fAE  HCH+CfAEHE0HP H        A   fAEHH}0HT$8Ht$H        AHAEH        D   u1DH        E$zH        HE1H        Ht3HC0H           H        H@HP1HAH        DHh[]A\A]A^A_AUH        ATI        USHHHH(#H           3H}HAԅtHm HHSu)H}p uDH           1H          H           1H          H}x   vP11H{H        H¡        P  Hup   cu   u   Su	   ctH        ]H   HuxAH9sHyuH<u"H           1H          D9HiDat	AHH{H        I        AՅuFAHxH        HI   HHLH        CD%  LH;  H{H        AՅui11A9~HHL HH	H8-ux uHH           @   HH        1I        AHH;   H{H        AՅ   G,$H        A}HcHt1           A9~4T zWr0	G@4HT r0zW	G@tHHMcHB( H;?-u" uH        1H        1!H        HSH        fHH[]A\A]UHAWAVIAUATASHH   H} AHXLHDPLmǅp   xtHEH     MtIE     LX1H        H        K  H        I        MAIN EHpLLH        HH@
  HH   ǅT>     c          S     c  HL   -   HH0HEHH(H   LH)H;0  E2IBEuIA  EzPEH        H        MbL8E   H        I        AP1AZAY  L8w@A   wA     AtoA  ALH          A<  w*AA  ALH            A=  Aa    AE1Aǉ8  Am  ǅT       THcAƃ)9  TT u%  A     LH(E   E    H        E    E   1HXH        H        HIt4H    HuHH HHuHH        H@LH        u  D98~*CE   H}E   IƉEH        EOALH        HXH          LH        ALH        ALH        HXH           A   Mb%   H        11A<D	E1@D_WDG0@	McEGAFA<E1Mc҃DG0D_W@	EGÃFt
t	uAMcB-HHuA   H±$H        HXH        O<BH        HXH        1I        AIHH        ILI        AM  H        LH        Ѕ  H{lHMHUHhH        Ѕ!  H}I        AHUHH        HXH        ЃP tMH}H        H        H        HXH        H        H        H} t7HEH8 u-HUHhH        1AHMHH        M*  H}H        IE H        I} H   /   H        HuIE   I} A׃I   IU HHLH        t20@t*DBDNz ADF GAAF9uHHǍrJ 0FэNF F9u`H        A	uH        1AAA	I} H        IcHIcH        HXH        L@TH        LLHH        LHIFptHLHH        LLyxH             HhAH}AH}A  HHlv&HSl   H        HXH        ЃP    { H        H     t@KSH        sDC1I        AH        H        H        HXH        H        H        H} tMHEH8 uC{ t=SKH        sDC1I        AHUHH        HH,   {,    Lc,@   H        HXH        LЃP t5H        H8 u%LH        H        H        H} t8HEH8 u.LH        1H        HMHH        MtUHHlvKH{l   H        IE H        I} Ht/   H        HuIE   L@TH        LLHH        LHIFpt!HLHH        LLLyxH             H@1He[A\A]A^A_]AWH        EAVILAUIHATUSH(T$Ld$`Hl$hHHËT$uH        1   ALL$HDLLH        Mt:HsHHt1HSPHt(H        1H        I$H        HtKH{XHtBH        HE H        H} Ht/   H        HuHE   HH        H|$HtH        HD$H([]A\A]A^A_U1H        HAWAVAUIH        ATISQHvHHuHeH        [A\A]A^A_]IMME1j E1HLH        j I)H        HXH        8 ZuH        HI        HtmI|$I        AIt$H{HAօuCL{I|$Aպ	   H        I<AօuHeHH        [A\A]A^A_]HHe[A\A]A^A_]AWH        AVAUATUSHhH_HwHH)HI  H8 t%Hx tI}( H        I        H(u\LH        H           1H          SCMH H	CHH	9tHm Hu   Hu 
   I} AԅuAE9Eu   HE0H      Lm8D$   HD$   HT$8HL$(Ht$H$HH        Ѕ1     H        HH             H        H          H        1I        ALH        1  <  H}8 +H        H          HǾ   H        ЅAI        tHAD[  AuHI        HAօA   H{H        I        HL$f AEHfGAUIu AuHHAօHL$u1H{f AEHfGAUIuѾ   HAׅt$HAԋ$  I}( t    HAׅAtHAD{  HCf  f@ I}( tf@ (AUʉPAU ʉPAU$ʉPI}( t6f@ f@ IU(HRHPIU(HRHPAU0ʉP$AU4ʉP(   HI        AօA   HC   Hf  f@ f@ ;f@ AׅAu_LsH        fA fAF H+E1Ҿ
   HH        к  H=     HFH߆fAVAׅAtHADM  HS   HE% ̈BJBAׅumHkL4$HL$   HfE "fE#IV fE  HCH+CfEH        A   fEHHT$8Ht$LH        ЉHAԉ   <H}8 uH        H          HE0Lm@H        H        H@Hp1HHt5HE0HHU@E1E1   HpH        HH        HH        9Hh[]A\A]A^A_SE1H        H        H        H        H        E1H        H        H        H        H        E1H        H        H        H        H        [H        SH        H        H8H        H8H        H8H[HH@f@H  H@f@¸     9|UH        SHQH{ HH        tH8H{ H        H{(H{ H        ZHH        []AWAVIAUEATIUSHH(AHoD$hH$LLL$`D$  fEf="   fDuI        fEtpfE  Lɾ   H        fD9tLfADH        H        Eξ   H        1I        AHAP  fE   HH        ЅtHA   LHH        Ѕ  H          f= D%  fDmfEtmfE  Lɾ   H        fD9tIEH        H        fAD&  H        E1I        Ao  fE   HH        ЅtHH        ҉c  LkH        H(MuH  L9euS}  uMAE9   uA}@u;AUH}ELH        ЅuHuHH          A} tHm H        H(I        H  L9etL9e   OHT$LLL$H} AׅLL$HT$uLL$HT$H}@LH        ЅHT$LL$u~} umA9ugIy  u]HE0H     H      H!H	I9qu9A>u3Av@  33u#HHHA8vuHHA:v	uA8F
t	Hm 1A   w0A   HH$H(HHH        []A\A]A^A_At;A:uwDt$H$HIHLH        Dt$`H([]A\A]A^A_HHH        HHH        H([]A\A]A^A_A9u
Iy  tHH        1H       I9AuH([]A\A]A^A_11HH)Hvfȍ =   CHHHH@t=  v-   =  CІUHAWIAVAUATISHHhHUDEt    HGHP`HAH+AHH9  HBHuH}
   HE    HE        He        HEHtHELsHCI9  I)HEH}L9LNH        HIu          HǾ`   H        Ѕ     LH        Ѕ  AFIU   EB fB        Hxȉf	fBHK1H+KBI9ι    EEfBEB	AD$(BAGfB
  BLI}HHEH        HxLLfB
H        Ѕ  HxHsH        HzLLHH        Ѕ  H0
   HuH   H        LLH0]  1  HϾ   H        Ls   AEAF HCH+CfAF  AFfAF        У        f	fAFEAF	AD$(AFAGfAF
  AFH        H{H0fAF

   HHu      HAH+AHWHH;B`vH        *      HϾ(   H        LsIt$(   I        A`   HCI~H+CAF(fAFEAFAIwI~   AH0
   HuH݆  HLH        H0+H        &   He1H        [A\A]A^A_]He[A\A]A^A_]UHAWAVAUATSHH   LoHxHpHhEE AAT  H}AE AAAtAH        H          &DA;H        H          H        1I        AH}  LGHM)I9}4H        H          H        1I        AfEMfAEM9v:LLXL`L)H        ЅL`LXtH}rM9s7H        H          H        1I        A'fAEf?   Au H}H        HЅH}tH        ҉.  E   AELME   HpHhHxEAEEAEPHEPEE	  H        L HM0  AEA9D$u#AEA9D$ufAEfA9D$uAE	A8D$t4LM$$ID$(    ID$0    H        ID$8    AD$@AEA8D$@vAD$@I        AID$AH-_ I        H`H        H8IHt H`H9GsH7I6AII>I|$ HuH        Ѕ  fA}ff  ukHUH  HBH+BHI|$0AE HH)H        I|$0HID$(u$I$LHH        С        `  I|$(   I|$ H        H  L8I|$ H        H        I        MwLA6HЅtxLAՋx  fAFf%HI9T$8  IWI+H%  HIT$0ID$8fA~ffHH9s@IwIGH  H)H)H9HGID$(HxH        fAF tLALAAD$@ED$LAT$M|$(It$0Et$`I$DPTID$(    HXHH        HXLH        ЅTDPtLA  `DELMUE   EE   HpLHhHxPHEPu  A~  LGM)I'7H        H          H        1I        Ap  (   H        ЅAuSfEMLCL+CfAEM9vOLLXL`L)HH        ЅAL`LXtHH        D  M9s7H        H          H        1I        A   HEL}Iu   I        E   HxE   AIuI   AAEHpLMHhHxHPAWEEH        ZY   AH        H          H        1I        AHH        1   H   H        HIAEH           AD$AEAD$fAEfAD$AE	AD$H        I$LH        H        HID$ LH        He[A\A]A^A_]SHH        HH        [UHAWAVAUATSHXEȃv"H        &   1H           H AIH   HuIHuH}H        H    LeHuH}H        LЅ      H        HHttEH{0   DxHEHuHCxH        H{PL
C    HLs Lk(H        QKУ        H        H1He[A\A]A^A_]AUH        ATUHSH   HARЅ   ULcLm0H߾   Lf	fA$UfAD$  f	fAD$HCH+CfAD$HExHP H        fAD$H}xHAY[HUPLA   ]A\A]H        Z[]A\A]AWAVIAUATUHSHH2  LgLGH        I        HM)IIH        H           H        1I        A   fA$;CtCHH   fAD$;CuL;sxuL{0HHT$LAՅHT$uÃ{ ufEl$fE   fAD$  HCxL   HHH H        fD9tXEH        H        fAD   H        E1I        AHH        E1PfAD${ ufA$C   C   HH        ЅAuHC HtHS(HHHD[]A\A]A^A_HH@HHH@ɋP   9rAUATUSHRHG`HtHwpHkHI        HtLe H}AHH        LHCH    HCP    X[]A\A]AUH        IATIUHS0   HHt3L` Lh(HfXHhH        HD$H        HD$H[]A\A]H        AWIAVAAUIATI        USHH8HHsH)AԉAE fte   Iw   HI        AIuH|$   A1H|$$   H        HCH+C(   Dt$'ȉD$ -AGD$    Dt$	$AED$HCH+CfD$
HAԆ1* =  CH8[]A\A]A^A_AWAVLvxAULATUHSHHF8LoAEfAELgL+gfH<I)VfIDf8f	fAE V fAE  f	fAEH      HP H        MfAEL}t`(   H        Iš        M   IE     ImH        AE    IEHCPHu
LkPLkHL(H   H   A   HLH        Ѕu ML}uD$HH        ҋD$H[]A\A]A^A_UHSRt$HGX    HG`    HGh    uG,   } 0  E      H        HH  HǾ   H        Ѕt-HH        H        H                HH        Ѕt*HH        H        H        !  \U@HCHHf@Pf@  Pf@  H        ЅtQHH        H        H        /  1H        I        AH             X[]ATH        AUH   SHHJ  HǾ   H        Ѕt-HH        H        H        C        HH        Ѕt-HH        H        H        L     EHStB    fBPfB  E@fBPȉB1}0 uEDfBfB  MHH߉f	fM f	fBH        ЅtBH        H        d  1H        I        AH             []A\AWH        I        AVAUATUSHILpH        H(H  HExH]HHD$H   L9s   C (~HH           LcC HCLhAEt<E@A9Et1fAE  H      H{HL$HP H        fAEH   HKH   A   Ht$AHSLjtL1I        H        H          H        I        AH             HHm H[]A\A]A^A_ATH        USHwXHHW`HOhLGp   Hš        H      HH        ЅAu   HH        ЅAtHH        DZS@HEHH        f@PPSDf@  fPH        C   HHH        ЅuC8[]A\UH        HAWIAVIAUMATMSH   XHhЅ  hȃv"H        &   1H          H    HhHH        H`H}H   HUHuH`H        Ѕj     H        HHM  XH{x   HhC H`H   H        H   Hu
fLs`   LcpL{XLsxLkhQf        CH        IHH   HX     LH        Ѕ     LH        Ѕl  H           H        HH   A  Ml$   1H        LH        ЍPC4fCD L   S8AELAE    fAE`CDfAE  fAESf	fAE S fAE  AEAEAEf	fAEH   HP H        HfAEH        H        A(   HCM|$HPM|$A   H   LHXLH        ЅuXHH        HH        LH           LHP2   H        ҋLt{ t҃{ tH        LH   AIHH        Ѓ{( H        tH        '   H        #   I        1LI        AH   AHtH8AH   H        H   H        HH        1He[A\A]A^A_]AWAVAUATA  UHSHHxT$uH   H@L``I(M$   HEH+EL9   LH        HIu        4  HǾ   H        Ѕ  I           LAօL   C@MufAFPAF1{0 uCDfAFfAF  LLх   HuI~LH        LHH        Ѕ   HLH        Ѕn   HH        ЅuV|$C@HUȉBf% fPfB1{0 uCDfBfB  HHHH        []A\A]A^A_H[]A\A]A^A_AWAVIAUATUSHHH|$y  HoEffw>AH        H        A	  H        1I        A#  LGH        HIHI        I)I9}HH        H          H        1I        A  fE;CtHHu  E ;C uL;   uL{xLLAԅuDefEt}fE  H   L   H|$HH H        fD9tIEH        H        fAD*  H        E1I        A  fEEfu{ uEC   ȉC<C@EtC(   HH          t|DuLcHI        AMtQI|$M,$HwfVNɉЃfkG)fD9wALH        MMLcHuHCP    E;C@s1HH        
  {, t6EHL$HQH+QfHH9t   HH        H   Ht$H        ЅAH        tIH|$H        D  H8HG@;C@s2H        H   H        H   HuZ  uE1E1L   z1HH        3  HEH+EK@K@fAEtC   A   K@A   HEH+EH       H        H   A   H   H        H   H(LmAE;C@   H   H        fAuHH        ffHЅ,D$HH        ҋD$E  HhH     H@    LpH    tH   HH   H@H   H   H   H|$H        Et1HH        H        H   HtfHpHCXHHt$tHSpHHH   HGHHHWHHuHWHHHGHuHWHBH        HChH<  E3  HspH%  E  H        L M   fEfA;D$uID$I9tHtM$$Կ   H        HH   E H{x   LC fEL   CEH        ȉC<C@H        fCD  C4H        C8   H        HH   uH|$ա        0HIT$(LAT$ H|$ՉH|$H        1H[]A\A]A^A_Ã0 uG0   1H        Ã0 tG0    1H        AWAVAUATIUSHHHH$HL$uHH        /  LwHGL)H~fAnfAF  I        HHsH)Af9fAn      HH        Ѕ   A>H           A~    H{H+{H        HHIuHա           HsH@HSHxH        H)M~A AG fAG  I~IvH)AA   LH$Ht$LfAGH        AHLDH1H[]A\A]A^A_H        UHAWIAVAUATSH   ELwHpLxhHGL)H  fEfI        HIfAF  LLXHx:   L`AfA9tgLXHx:   LL`LAEDH        H           H        1I        AfEf  fEf   LI        AԅtxLH        $  I        ENE1H        H           H        L`AA<  w	<t  <>  <  l  Mc  A~ X  II+H        I        H   HHuLA/  IwI+wHH        H   Ѕ   IwI+wHI        Aօ   IwIWH        H{H)о   HAօu^LsIU Hx:   HH        AAF fAF  A:   fAFHHpHxLH        LxAHA  A~ 0  h#  Mo   LAԅAB  MgIOI9   AD$  H      LH9  A<$uFuBC S$It$EHEUHxH        1HUHxHH        AD$HIlH        L IEHhMP  I9\$u)A|$ u!I|$(   HhH        ЅtM$$   H        I        HHuLA֡        X     HH        Ѕ  LxAHA֋x  A~   h     LAԅA   MgIOI9k  AD$^  H      LH9D  A<$uFuBC S$It$EHEUHxH        1HUHxHH        AD$HIlA~      LAԅAtLH        D%  HEMwHHpIOI9  AF  H      LH9j  A>uDu@S$C IvHpEH        U1HUHxHH        A>  A~  A~IFAvAN@@t)HHH0H  tAAA9wA~@tkHE1H0H        H=  L`AE1@A1A~@H        P19H          P1AXZO  LkhMB  A}.  IFH      E   HEAEAUH	H0H	AUH(H	AUHH	AUHH	AUE   H8H	HHEIFHE    E@   HEH        L Mt&I9\$uI|$ HuH        ЅtxM$$1H        H          H        L`AAU8Iu@H        H        BAE81HIG  H             Mm AFHIcH        L1_     HI        AՅIt$EH{   H        о   HAՅHC   H @AՅH{   HhH        `   Hо   HAՅLkIT$ HxH߾:   H        AE AE fAE  A:   fAEHHpHxLH        IME1HUHLH        H Hu   HHLH        H LH        pHe[A\A]A^A_]AWH     H      AVAUATUHSHhH#FH4$D$   Ht$HD$   H	HT$8HD$(H        Ѕ     H        Há        H     HH        I        о   HAԅAg  HuEH{   I        A־   HAԅA7  HC   H @AԅA  H{H$       HpHA־   HAԅA   LcHU HL$:   HH        I        A$AD$ fAD$  fAD$HCA:   HHT$8Ht$HHD$AׅAuuA  I        H4$HAօuW1DH        H4$HAօu8HD$A:   HHT$8Ht$HHCAׅuAA  uAH        HDHh[]A\A]A^A_ATH       UHSH`HD$(D$   HT$8HD$   Ht$H        Ѕ1     H        Há        H     HH        Ѕ      HI        Aԅ   HuEH{   H        о   HAԅ   HC   H @AԅuuHC   H     Aԅu\LcHU HL$:   HH        A$AD$ fAD$  A:   fAD$HHT$8Ht$HH        ЉD$HH        ҋD$H`[]A\AWAVAUATIUSHHHGH        T$h$H        HDt-tHǺ   1H        AAE1ALH        Ѕ   Mt$HHt$UI        LIAHHsELLAEtAHD}Dl$DAfD	fE H{P u"HGH@HuHC@P   ЅuH{LHGP(H[]A\A]A^A_AWH        AVAUATIUSHHhDn$LF H|$HL$ALDl$HD$IAD$ LIHDl$<H|$=HL$Gt-D$8fA   ufAoAfAHI        AՅ     w3HCՃu#xuxu   HAՅueHCh  t݆  t   u4LHH        HL$8HT$LHH        H        H1Hh[]A\A]A^A_H        UHAWAVAUATISH   >t"H        &   1H          HPHHHHEH H        о   HH        HCHDh$H        Ct-@Ѕ  HSHI        HsEJ Dhf@ @f@ f	fHLLxLMALHs(   AIGLI        1HHAHIt$   J<(AH(L   I        A  HxAH0L
   HH(  HHALH0I        LHAօt1   AD$D        H        H     H        LHAօuH0L
   HH(A  HHHH0A  fnHe[A\A]A^A_]UHAWAVAUATSHX  LgV F$fA|$t1  fA$ډff9uEt$A8uA|$uHGCT6L)HH9|Ml$H  AI        HHxLHDIAHL   ǅ   IHxAL   H HH        Lǅ   It    HAH         9uH            H        L(MI} HH        Ѕ  fA|$   HPHHHEHH        о   HH        HHH        Ѕ#  HfI        IuEHff@ @Dpf@ HHHHAHH   HqHHHAHHHHHHAH   HH<A׋L(HHD,IxL(ALH0
   H  H        LHLH0Mm AHe[A\A]A^A_]HwH;wHwvH        &   1H        1HGH)H;HGsH        &   1H        1HGH)H;HGsH        &   1H        1HwH;wHwvH        &   1H        1HHwHWHGH9HWHwwH9vH        &   1H        1H?@   SHFH        H     H Hs HtH<HGHGHHH1[HtH?H        ATL   H        UHLSHHtBHLH        ЅtHH        HHH        ЅuH1[]A\HHGHG1AU1HATUSHQ  H~H9s;<%u1PD@D9s"ъDIA	v߃A   كuP<%   <%   1I        HnH9   LDbA8%uzDy@	w0 y@wtɃWtizAɊ;QЀ	wу0 QwBɍQt7D	H)H|AHHtAHDa<%tH9r1Z[]A\A]t1t*D@DJH ADB GAAF9uHHȍHP FrJ F)AWAVAUIATUSHXHHT$ LL$t-HHt%Ht HItMMtMtH$    u"H           1H          H$   H~H     HD$ I     H    H     HD$ H        HH~  HHLH        H        1+ IH          H        I        AH1Hc3t\u1/|3\HIH        AE   <:u1tALs  H8tIM^  H        HI        AE  ImAH        D$0HAׅ%  Ht,HD$/   H E   H        HIu  H           1
  HǾ;   H        к   HD$HH        H        Ѕu>HD$H        HPH        HHT$ЅH        HT$u  HD$HH          AA T$ՋT$I$LAH$   HHtI<$ E  HH        I<$  H        HAׅ  Hu(H           H        ҅    H$   I        /   HH     HD$I$    I     A׾?   HHD$AHT$@   HH9HFHT$AH;D$HD$HD$HLwHt$I HL$HHL$(HiHD$(    E1HD$    } [u]   HH;D$  HH:   HH;D$HwHL$HHL$HD$H    H|$HH;|$   H   ?:s  Ht$HHH)H\  HtwHD$H    D
   HL$8HL$H H        DD$0HHt$DD$0H        D:  H     H9t$H   Ht$HL$8|$0Ht$%k  PMtHA? tBHT$(HL$0LH        L)HHHT$HI   HT$HL$0D II)HtrHL$L HH        T$(HL$T$(I$I$Ht:B8 H|$H        H$   HHtHD$Hte @`HD$HHD$Ht @I>H        I<$H$   H8 HH           1H        AE :   HH        HL$ HAE :H9    I>HuI<$Hu&GH        I>HH        ЅypH        I<$HH        ЅxMH$   H8Ht*H        HH$   H8H        ЅxH        H1cHD$ H        H8I>I<$H$   H8H        8 u HH            1H        HՃHX[]A\A]A^A_            ; Z x     0N %s
 %s %s
 %s %s %s
 unrecognised network address `%s' net_default_interface net_%s_mac net_%s_ip tftp pxe: pxe no server is specified disk `%s' no route found https http disk `%s' not found invalid net device couldn't open efi service binding protocol Failed to create child device of http service %x :// url: %s is not valid, host/path not found
 bootp net/efi/net.c %s,%s url: %s is not valid, protocol not found
 Set Address Failed three arguments expected card not found %d.%d.%d.%d tftp,%s url:%s
 efinet https:// http:// efinet%d could not set GRUB_EFI_IP4_CONFIG2_POLICY_STATIC on dev `%s' efinetfs could not set GRUB_EFI_IP6_CONFIG_POLICY_MANUAL on dev `%s' net_default_server pxe_default_server net_default_ip net_default_mac efi grub_netfs_type efi netfs https http Host Accept */* User-Agent UefiHttpBoot/1.0 %s://[%s]%s %s://%s%s Fail to create an event! status=0x%x
 Fail to send a request! status=0x%x
 Fail to receive a response! status=%d
 file `%s' not found unsupported uefi http status code 0x%x Content-Length %s://[%s] %s://%s root_url Invalid arguments to EFI HTTP Read Error! status=%d
 The MANUAL ADDRESS is not found
 ??? %d
 couldn't configure http protocol, reason: %d Couldn't start PXE
 Couldn't set station ip
 Couldn't get file size No Offet Read Possible Short read should not happen here ERROR OUT OF MEMORY Failed to Read File %02x: %u.%u.%u.%u %s:local %s/%d %s %s:gw %s/%d gw %s %s:default %s/%d gw %s %x %s:link %s/%d %s %s:local %s/%d %s %s:gw %s/%d gw %s %s:default %s/%d gw %s dhcp4 configure failed, %d
 dhcp4 start failed, %d
 dhcp4 get mode failed, %d
 %s:dhcp dhcp6 configure failed, %d
 dhcp6 start failed, %d
  net_default_interface net_%s_mac net_%s_ip probe %s
 net net/net.c found!
 invalid net device error receiving: %d: %s
 one argument expected you can't delete this address address not found tftp pxe: pxe no server is specified mismatched [ in address bad port number overflow is detected http disk `%s' not found unresolvable address %s unrecognised network address `%s' destination unreachable route loop detected temporary %lx: %lx %d.%d.%d.%d Unknown address type %d %s  %s
 %d.%d.%d.%d/%d  %s/%d  Unknown address type %d
 gw  %s 
 Unsupported hw address type %d len %d
 XX: %02x: %s %s %s
 %s %s
 Unsupported address type %d
 shouldn't reach here unsupported address type %d timeout: could not resolve hardware address : :link %s:local three arguments expected this card doesn't support address addition card not found gw unrecognised network interface `%s' net_%s_%s timeout reading `%s' :slaac couldn't autoconfigure %s net_%s_clientuuid 01- %02X%02X%02X%02X list network routes net_ls_routes list network cards net_ls_cards list network addresses net_ls_addr Add a network address. SHORTNAME CARD ADDRESS [HWADDRESS] net_add_addr perform a bootp autoconfiguration [CARD] net_bootp net_bootp6 net_default_server pxe_default_server net_default_ip net_default_mac Perform an IPV6 autoconfiguration [CARD [HWADDRESS]] net_ipv6_autoconf Delete a network address. SHORTNAME net_del_addr Add a network route. SHORTNAME NET [INTERFACE| gw GATEWAY] net_add_route Delete a network route. net_del_route grub grub_netfs_type netfs  only ipv4 only ipv6 prefer ipv4 prefer ipv6 %s (%s)
 CNAME %s
 dns net/dns.c caching for %d seconds
 one argument expected --only-ipv4 --only-ipv6 --prefer-ipv4 --prefer-ipv6 invalid argument no DNS servers configured retrieved from cache
 domain name component is too long QTYPE: %u QNAME: %s
 no DNS record found no DNS reply received two arguments expected %s
 Perform a DNS lookup ADDRESS DNSSERVER net_nslookup Add a DNS server DNSSERVER net_add_dns Remove a DNS server net_del_dns List DNS servers net_ls_dns DHCPv6: Options stopped with remaining size %lx
 bootp net/bootp.c DHCPv6: Options stopped at out of bound length %u for option %u
 DHCPv6: Options stopped at zero length option %u
 net_%s_%s :// url: %s is not valid, protocol not found
 url: %s is not valid, host/path not found
 Skipped DHCPv6 CLIENTID with length %u
 Skipped DHCPv6 SERVERID with length %u
 Skipped DHCPv6 IA_NA with length %u
 Skip invalid length DHCPv6 DNS_SERVERS 
 boot_file net_default_interface no network card found %s:dhcp_tmp couldn't autoconfigure %s DHCPv6 packet size too small DHCPv6: code %u with insufficient length %u
 four arguments expected no DHCP info found no DHCP options found no DHCP option %d found string %s
 number %llu
 %lld
 hex unrecognised DHCP option format specification `%s' unrecognised network interface `%s' /efi/boot configuring dhcp for %s
 dhcp DHCP option %u (0x%02x) found with length %u.
 net %s:default hostname domain rootpath vendor_class_identifier extensionspath clientid clientuuid HTTPClient %s,%s / %d.%d.%d.%d tftp,%d.%d.%d.%d dhcp_server_name tftp,%s %s:dhcp :dhcp_tmp Bad DHCPv6 Packet Skipped DHCPv6 Advertised .. 
 Skipped DHCPv6 Reply .. 
 %s:dhcp6 DHCPv6 session not found
 perform a bootp autoconfiguration [CARD] net_bootp retrieve DHCP option and save it into VAR. If VAR is - then print the value. VAR INTERFACE NUMBER DESCRIPTION net_get_dhcp_option perform a DHCPv6 autoconfiguration net_bootp6 Invalid UDP checksum. Expected %x, got %x
 net net/ip.c packet too big not an IP Bad IP version: %d
 IP header too short: %d
 IP packet too short: %ld
 Cut IP packet actual: %lu, expected %lu
 not an IP address UDP packet too short: %lu
 net net/udp.c Invalid UDP checksum. Expected %x, got %x
 error closing socket
 net net/tcp.c error acking socket
 TCP retransmit failed: %s
 not an IP address connection refused connection timeout TCP header too short: %u
 TCP packet too short: %lu
 Invalid TCP checksum. Expected %x, got %x
 invalid ICMPv6 checksum: %04x instead of %04x
 net net/icmp6.c ICMPv6 message: %02x, %02x
 discarded prefix: %d, %d, %d, %d
 creating slaac
 %s:%d vlan-tag unsupported address family put out of the packet range. unput out of the packet range. push out of the packet range. pull out of the packet range. reserve out of the packet range. Invalid argument dhcpv6 boot-file-url: `%s'
 net net/url.c :// https tftp ;mode= octet TFTP mode `%s' is not implemented. http Unimplemented URL scheme `%s' Invalid boot-file-url `%s'                                                                                                                     ׺ȇS@9_][J/Cz!NaGKڞV9BsJՎK(- '?MYzqABZ[[ȽyC*]!M)H
nD[O6T`                                                                                                                                                                                                                                                                                                                                    $  b  .T  LICENSE=GPLv3+  LICENSE=GPLv3+  priority_queue bufio datetime boot net                                                                                                                                             }                                                                            	                      
                 "                      .                 @                    a                      z     <h      q                  W                                 Ѐ                                                                                                         hs             &    8
     O      7                     E          l      X                     p    z                                                                                                                         0                                _      
                           +                     ;                N                     ^    m      Y       u                                                                                                                                                   Hn                 c                [l            <                 P                     [                  s    Ȁ                                      H                ؀                                            h           0                  $                8              #          9      5    g      t       G    >d             ^    `            s    B      o                               6                                            5                                                    ]                                 )    Hj      8       K                     a                  z                         *                                                                                                           F      (          l      @                   H                     T         0       f          0      |                                                i           D      j          $o                 (                                   Y            4    :      j      P                     t         R                                                                                                                                                                                                      I             #                     3          <       C    5\             \                     k    O     .       }                                          E      A                                                    :     f      	                 	                     (	          t      ?	                     N	                g	                     	    %     n       	         !      	                 	    o      	      	          K       	    6            	
    h      y       
    5             9
                     D
    i             d
                   z
                     
                     
                     
                     
    p             
    x             
          ^      	    `      f       $                     C    ]      8      `    \             y    ^                                                      9                 @                       F                               2?             1          v      K                  c    M             |    Ut      {           6      e           Q                                      q                  q                      .           j            /                 B                     O                     \                     h                                                                   }     A                                                                   grub_mod_init grub_mod_fini .LC4 grub_strlen grub_netbuff_free grub_net_network_level_protocols grub_net_poll_cards_idle grub_net_hwaddr_cmp grub_net_recv_ethernet_packet grub_file_progress_hook grub_net_default_server efi_wrap_10 grub_errmsg efi_wrap_5 grub_strncmp grub_env_set_net_property extract_url_info grub_strtoull grub_net_tcp_close grub_priority_queue_pop grub_net_search_configfile grub_efi_system_table efi_wrap_4 grub_strcpy send_ethernet_packet grub_strrchr grub_netbuff_unput grub_dl_load grub_net_configure_by_dhcp_ack grub_get_datetime grub_env_export grub_netbuff_clear grub_error_push grub_ipv6_get_masksize grub_priority_queue_push grub_xasprintf grub_realloc grub_memmove grub_strdup grub_divmod64 grub_efi_net_create_interface grub_net_add_ipv6_local grub_net_send_ip_packet grub_net_ipv6_get_link_local grub_efi_net_bootp6 efi_wrap_1 grub_efi_net_list_addrs net_devices grub_snprintf grub_net_send_tcp_packet grub_net_app_level_list grub_xputs grub_net_ip_chksum grub_net_network_level_interfaces grub_efi_net_fs_fini grub_net_routes grub_net_udp_open grub_net_add_addr grub_net_hwaddr_to_str grub_net_addr_to_str grub_efi_string_to_ip6_address grub_efi_get_loaded_image grub_dns_init grub_errno grub_net_dns_lookup grub_strchrnul grub_memset grub_net_recv_ip_packets grub_register_variable_hook grub_net_link_layer_resolve_check grub_efi_image_handle grub_efi_net_list_routes grub_priority_queue_destroy grub_bootp_init grub_net_open grub_register_command_prio grub_efi_find_last_device_path grub_efi_compare_device_paths grub_net_icmp6_send_request grub_net_tcp_retransmit io_http grub_printf grub_netbuff_push grub_net_process_dhcp grub_unregister_command grub_net_sockets grub_net_tcp_listen grub_efi_ip6_interface_name grub_net_add_ipv4_local grub_net_cards grub_net_send_udp_packet grub_net_ip_transport_checksum grub_efi_ip4_interface_name grub_loader_unregister_preboot_hook grub_netbuff_alloc io_pxe grub_efi_locate_handle grub_efi_net_config grub_print_error grub_zalloc grub_strcmp grub_strchr grub_malloc grub_get_time_ms grub_net_add_dns_server grub_file_close grub_bootp_fini grub_net_card_unregister grub_file_open grub_netbuff_pull grub_isspace grub_net_tcp_accept grub_net_configure_by_dhcpv6_reply grub_efi_open_protocol grub_real_dprintf grub_net_arp_send_request grub_net_recv_tcp_packet efi_wrap_3 grub_net_process_dhcp6 grub_env_unset grub_net_recv_udp_packet grub_priority_queue_new grub_netbuff_make_pkt grub_net_arp_receive efi_net_ip6_config grub_net_recv_icmp6_packet grub_dns_fini grub_net_icmp6_send_router_solicit grub_net_addr_cmp grub_efi_hw_address_to_string grub_error grub_net_link_layer_add_address grub_efi_net_add_addr grub_list_remove grub_free grub_strndup grub_loader_register_preboot_hook grub_net_add_route grub_efi_net_boot_from_https grub_efi_net_fs_init grub_efi_net_boot_from_opa grub_efi_duplicate_device_path grub_net_resolve_net_address grub_net_resolve_address grub_net_route_address grub_bufio_open grub_net_tcp_unstall grub_efi_string_to_ip4_address efi_net_ip4_config grub_net_tcp_open grub_efi_get_device_path grub_efi_ip6_address_to_string grub_net_recv_icmp_packet grub_efi_net_list_cards grub_net_tcp_stop_listen grub_net_poll_cards grub_efi_ip4_address_to_string grub_net_remove_dns_server grub_list_push grub_net_udp_close grub_net_add_route_gw grub_netbuff_put grub_net_link_layer_resolve grub_efi_net_bootp grub_env_set grub_gettext grub_memcmp grub_priority_queue_top grub_env_get efi_wrap_2 grub_netbuff_reserve grub_strtoul grub_net_tcp_stall grub_memalign                                               "                    F                    P                     _          /                     8                     Z                                                                                                                 7                   O                    n                             8                    Z                                                                               8                               R                   ^         Z                    8                    m                                        /                    .                               d                    p         H                                                        E           1                    =         H                                                              8                                       N                ,                               (            8       2                    K            Y       W         ,           |                             8                    ,                       Y                m                               $            N                                      h                                       m                m                                          c                n           8                    G                   \            q       m                                               k                                      8                               !         8           3                    X                   d                    q                                                                                                         Y                                                  	                   	         Y           +	            c       <	                   F	         h           `	                   q	                    	                   	         l           	         /           	                    	                    	         o           +
                  C
         /           W
                    p
         H           |
                   
         k           
                    
                                       %         z           ?                   N                    g                    {                                                o                                                  *                    q                                                                                    n           3                    N            /      [                    r         o                    k                                      n                       3                  ^                  d               {           a         k           p                             /                    k                                        "           )            r      3         ,           ]                    g                               x                  ^                  d               {                     o                    /           ;                    G                    n                  }                                                 /                                      8                    m                             )                    R                  m                           1                    H                                                                      $         ~           A         8                                               5                  d         1                    o                             %                  9                    b                                             ,                                                          "           '                  1                   t         1                       8                                    8                    ,                       Y                M                                      '                               &            N       :                  {         O                    F                                                                               d               {                                                  .            	      b         O           p         F                                                           i           0                    J                   W         z           u                                                                 H                                                          H                              .                   A         H           [            p       h         z                    o                                        8                    8                                      ,           '         8           H         8           f                                                                    U                    8                    V           5                    Y                   f         z           u                                                                     8                                                             W      (            d      4         {           r            `      |            W                  d               {                                                          M                    '                    j                                          B       
                                               S           *                  6            B       @                    J                  V                  b                  n            8       z            8                   %                                                                                                                                                                    ?                                           (                  4         ,           D                    T         8           x            Y                M                                           N                M                                                            8       ,            8       <                  H                  X                  d                  t                                             j                                        S                                                                                         }          .                                                                
      !                  &!                  8!                  J!            %      \!                  j!         E           !         ,           !            6      !            B      !                    !         o           !                    "         H           r"                    "                  "                    "#                   H$                    Z$                   p$         6           $            r      $                    $         6           #%                  K%         6           b%            L      %                   %                   %         6           %                  %                    &         6           ;&         6           f&                    ~&                    &                  &                  &         m           &                  ,'                    H'         6           '         E           '         ,           '                  '                   (                  (                   (                  -(                  G(                  Q(                    `(                  j(                    y(                    (                   (         H           (         o           )                    #)            #      4)                    U)                  i)                    )                   )                    )                   )         6           *            F      *                    7*         6           d*         6           *         K           +                    .+            X      :+         Z           O+            y      [+         Z           y+         .           +                    +                  +                    ,         k           H,                    ,                    ,                  ,         Z           ,         o           -                    %-                    F-         .           -                    -                    -         .           -         ~           .                  .         Z           (.                    .                    .         H           /         .           Q/         K           /            =.      "0         .           60                    0                    0                  0                    B1         .           d1                  1            =.      1         .           1                    #2                    A2            	      d2         o           v2            +      2                    2         .           2            ?      2                    3         k           03                    O3         o           3                    3                    3                    3            K3      T4                    s4                    4                    4                    4         o           #5                    75                    h5            4      5         .           5                    5                    5         o           &6         9           F6            S      6            K3      6                    6                    6         o           6            Y      
7         9           47            K3      e7         o           7                    7                    7                    )8                    j8                    8            e      9            w      89                  D9         ,           _9                    9            4      9                    9                    9                    :         H           ~:         .           :            K3      :         o           ;                    <         o           !<                    n<                    <                    <            <      ^=                    }=                    =                    =                    >         o           J>                    ^>                    >            	>      >                    >                    >            <      ?                    ?                    6?         o           ?                  ?         9           ?                     ?                    +@            <      \@         o           @                    @                    @                    A                    A                  A                  A                  B                  B         ,           :B                    hB            	>      B                    B                    "C                    .C         H           C         .           C         K           D            <      AD         o           jE                    E         8           E         o           E         K           E                    F                    uF                  F         m           F                  F            #      F         Z           $G         .           OG            >      [G         ,           G         1           G         .           H                    VH                    I         8           LI                    eI         o           J                    AJ                    VJ            F      nJ         m           J         6           J            b      J         ~           J            #      J         Z           K         .           >K            >      JK         ,           iK         1           K                    BL         .           rL         6           M                    M            z      .M         b           kM         .           M                    M                    M                    M         /           N                    #N         H           O                    $O         H           O         .           O         K           O            iM      P            {      'P                    =P                  IP         ,           cP                    rP                    P            {      P                    P                  P         ,           P                    P            {      Q                    Q                  %Q         ,           ?Q                    NQ                    aQ            {      kQ                    Q                  Q         ,           Q                    Q         {           Q                  R                  R                  %R         u           9R         r           GR                  QR                  `R                  jR         {           {R         H           R                    R                    S            uM      &S                    :S         o           nS            iM      S         /           S                    
T            uM      T                    >T                    RT                    T            uM      T                    T         H           T                    T         T           T                  U                    MU         H           kU                    U         p           U         H           U                    U                  U                  U                  U         {           V         H           $V         k           9V         b           CV         p           rV            U      V         X           V                  V                    V         @           V         m           V                    *W                  ;W                    IW         >           SW         m           ~W            &      W                    W                  W            L      W                    W            =      W                    X            B      $X         m           4X                    GX            8      [X         n           {X                    X                    X            F      X         n           X            ]      Y                    +Y            u      <Y                    tY         w           Y                    Y         o           Y            iM      Z                    EZ                    OZ                  oZ                    yZ                  Z                    Z         /           Z                    Z         ;           3[         l           P[                  [                  [                  [            8      [            8      [         $           [         H           [                  \                    \                    9\         >           W\            L      \                    \            M      	]            N      B]         I           ]]                  l]                    ]                    ]            M      ]                    ]         H           ^         H           >^            N      i^                    x^         H           ^         H           ^                  ^                    _         @           l_         @           ``                  `                  `                    a         9           1a                    Ga                  Qa                     ~a            #      a            #      a                    a            (      b         9           -b         9           Sb            ,      }b            8      b         @           b         Z           b            P      b         Z           c            iM      ,c         D           @c            h      Pc                  Zc                    fc            T      c            X      c            o      c                    c                  c         D           c         <           d                  d                  ad                    kd                  wd         Z           d                  d                    d                  d         9           e         >           e         C           e         D           Ue                  ae         Z           e         b           e         C           e                  e         Z           e         l           !f            iM      Mf         C           Wf         ,           f                  f                    f         M           f                    f            M      f         '           g         D           #g                  cg            M      g         >           g         >           g         /           h            e      $h                    Yh                  ch                    yh         Z           h                    h                    h                  h                    i         Z           *i                    i            &i      i            iM      i         l           i            iM      `j            &i      j         K           `k            &i      k         W           k         |           k                  k            	      k                    ,l            !	      El                    al                    l         o           l         >           m                    6m                    Xm            L      pm                    m            M	      m         C           m            O	      m            e       n            iM      gn         *           n         l           n            U	      n         ,           n                    n         H           n            iM      	o         @           o                    zo         l           o            U	      o         ,           o                    o         H           o         @           p                    'p            ^	      3p         b           Cp         m           fp            	      wp                    p                    p            w	      p         B           p         a           p         H            q         l           $q         /           <q                    Gq         H           cq                    {q         @           q         l           q         /           q                    q         H           q                    r         @           9r            ^	      Jr                    fr                    pr         m           r            	      r                    r                    r         >           s            	      (s                    Es                    ws            	      s         ,           s         o           s                    s         H           s            iM      t                    t            (M      $t         M           3t         '           Yt            U      et         p           t         b           t         X           3u                    ku            iM      u                    u            uM      u                    v            	      +v                    v                    w            uM      }w            t      w         H           w            t      w         b           w         m           $x         l           Px         b           jx                    zx         H           x         m           x         4           x                    y         l           :y                    Jy         o           Vy            L      {y                    y            M	      y         C           y                    y            	      y            iM      %z                    cz                    tz                    z            	      z                    z                    0{         >           `{         9           q{                     {            
      {                    {            *
      {         C           	|            Q      1|            Q      |            iM      |         D           |            .
      }                  N}                  _}                    m}            	      ~}                    }         S           }                    }            T      }                    ~            ?
      ~            z      !~         P           +~            S
      :~            a
      D~            p       N~            z      X~                    b~            t
      q~            
      {~            h       ~            z      ~         7           ~            
      ~            
      ~            `       ~            
      ~                    ~            
      ~            
      ~                   ~                  ~                                                  
                   H       *                  4         5           >                  M            @       W            P       l                             M                    '                       M                  	M                  )                  )                  M                  	M                  <                  <                  P                  ^Q                  O                  O                  P      %            P      /            ^      <            ^      H            
      R            
      \            p      f            
      r            n      |                              w                                                                                           $W      Ā                  ΀            X       ڀ                                                 r                  !                                     /                        "            V      ,            G      6                   B            ?
      L            z      V            b      `            S
      j            x       v            a
                  z                  e                  t
                  p                   
                  z                  d      ȁ            
      ҁ            h       ށ            `                R                    G                        W                  fM               S           #            +M      -                    9                   C            6V      M            U      W                    a            Z      k                    w            (M                  Z                  Z                  P                   P       ǂ         ]           Ԃ            p                   h                   `                                      H                   @       .         ?           C            )      M         M           ]            <      i         s           u                                                                                         x                   p       ̃            h       ۃ            `                   X                                                      S           "            +M      .                   ;         f           G            6V      Q                    [            P       ˄            p      ل                                                                    q      +            {      7                  A                    P                   f         D           z                           Z                               +         .           ڇ                             o           A         H                             ^                                        V         .                                                          o           !                    9         H           X                  b                  q                  {         {                    m                                                          {                                                           m      .                   g         /           }         o                    p                    .                               L                   [                   z                            -                    H                                                 ō                   ҍ                                                        &                    ;                    N         q           m                                             m                             ڎ                                                                           -                    @         q           U                   l                                                                                                            @      F            @      ]                   n                               1               o                       m                                  m                    p                       K                                          (         {           Q         .                    /                                        H                               Ց         g                                                   2                    f         .                    n           Ւ                                a                  x      ͓         A                    H                    H           !         {           Ŕ                  ϔ                  ޔ                           c                    H           \                    x                                                            ȕ                           H                                                 9                  `                                                                   I           ֖         D                                      Z                                                 &                    <         T           F                  P                  Z                  d                  s                  }            "                  ]                  ,                                     8                  "                        ȗ            L      җ                                                  X                  Ä                  i                                  ]           $                   3                   B                   Q                                                   t      )                  8                  D         {                                                                          {           Ś                  Ϛ                  ޚ                           {           #                             .                       *               ,                    o                                                 #                    /                  >         M           M         '           |         n           ʜ                                4                                   o           $         k           >                  l            8      v                                             {                    n                       b      ɝ                  ؝                           {                                        o           P                  x         k                                      /           ɞ         k           Ӟ                    u            v                                                   o           ͟                                                                                 {           0         o           N                  s                  }                  Š                  Ϡ                                                                                 {           #         l                    B                                        q           &                    9            +      F                    }         /                                           5                                      5               '                                                                                       *                  E            ݢ      j                           b                    m           ԣ            K                                   l                    b           )                    4         H           P         m                       a               ,                                                 3         >           H         >           l         >           v         >                    g           ҥ                                                 [                               <         K           i         &           y         H                                               B                    g         d                    3                               ҧ                                                 )           )            b      :            m      I                    l                                                                   l           ٨                                    0                  :                  I                  U         {           q         o                    b                    4           ˩         m           @         o           T         &           d         H                                      p                                                                   2         g           <                  `            '      k         H                               ɫ            '                                                          '                [           f                  Ǭ            '      G         d           o         3                       '                          ­                  ҭ         )                       m                                      '      4         >           @         m           [                                                                          î                                                 H           .                  d                  u                                *               m           į         o                                         5      E            <      \            B      h         9                       H               o                    H                       1      %         Z           5                    G            L      ұ                  ܱ                                             {                    B                                                                          {           x            	                  :      e                                             ,           ʴ                    ݴ                             q           5                  F                    Z                  m            "                  I                                 o           F            R      W                  l            "      }            *               ,                                                   Ķ            ]      Ѷ         m                       v                          $            +      5                    N         /           Z            5      d                    u                                5               '                       h      ɷ         k                    /                    k                    "           F                           k                       n      ָ                                                                   a           +         o           L                  a         H                       +                          Ϲ                                p               ,                                        k           "            5      3                    ?            5      I         '           t            |               ,                    k           ʺ                  ۺ                                                 /                                        k           <                  H         ,           [         k                                        k                    "           λ         a                    o                                      H           I                           k                       w      Լ            h               ,                    k           
         /                    k           4         "           O                  h         2                    ,                             Ľ         k                    %                                         H                     >           -                    A                    r                              b                                                                                &                  7                    ؿ                             g                    H                             !                  0                  <         {           L                  t                  ~                                                                   [                                      [                    [           g         p                    0           8         d           ^         3                                                                          ,                       w                                      ݢ      0         T           :            &      D            H      N            }      X            O      g            Y      q                  {            0                                                                                          H                                                                     ]                                                                 W                    o                                                 Q                               	                    '         d           D            	      N            4      a            8      m         {                    v                                        k                    d                       	                  4      5            8      E         {           c         v           x                             >                                        \                    >                               m                    -                    e                                                 }                                           D                  D                g           3         H           J                    f                                D               =                               >         .           W         v                    !                    [                       D                  D      3         =           z            A               [                    .                    !           %            P      :                                Z                  4                  n                  4                  8               {           0                  :            4      I            8      U         {                    #                                         4                  8               {                    v           #                                                                 p           &            T      7                  u         +                    g                       T               H                               2                    >         v           H                             .           p            T                                                        4      %            8      1         {           H         v                    #                                                             4                  8               {                    .           j                              Z                  4                  8               {                                        o                                               ,                  6                    S                    w                                                                                                                      3         l           d            H                                    H                                   [           R         d                    3                                                                                                                {                    d                                                                          {                                        v                                                            o           $                  3                    O                    l         =                    .                    K                    d                    o           *         H           I         p                    3                                        g           4                    G                    S            0      ]            F      y                                                    0                  F                  f                                      0                   F                  J               {           (         H           >         g           k                    ~                                0                  F                                                          0                  F      [            f      k            T      u            F                  J               {                    H                    p                    3                             !                  u         d                                           i                  F                  J               {                    H                     g           H         H           c                    ~                                                                                          f                          R                  c                                                                     l                       L      P            L      `         g                                                               W                                   K                    p                    d                                                          3                                                   -                    N                    p                                                                                                                                        	                             Q           -                             g                    H                                                   C         .           U         v           o            f               [                       f      7                  A            F      T            J      `         {           y                                                                    F                  J               {           @         d           U                  _            F      y            J               {                                                 I                    z            :                  :               +                                                                       -                    b            :               o                                                   $         v           N                                                    :                          O                                               l                               '         p           <            W      N                    l         H                                           :                  :                          B         =           p         v                                                            H                    .           1         3           e         .                    d           !                  +            K      :            O      F         {           j         v                                        {                       [                  K                  O               g           (                    Y                             [                       c               d                    3                       c                                   >           >                    Y         g           c                    |         H                               O            c      k                                        #            c      B                                K                  O                  w               >                                                             K                  O                        "         ,           C         H           n                             [                       c                  c      =         d           y         3                    B                                                   B                    [         g           i         H                                        [                       c      J         d           T         3                    N                                                   m                             g                    H                                        [                       c      T         d                    3                                                                                         $         [           E         .                    .           t         v                                       L                              0        .           X                 i                           (                                      [                      .     Z        K                   !                   N                                       Ā      ,                   1           .                                                    Ā              >           	                   K        (           c                   }        [                      .             !                                                                                   1                 B                   _           -      p                              K                                                               0        g           R                   e                   y        [           	        .           
           l      
                   
        o                   .                            !           }      0                 :        {           t                                              	                              n           )           l      G        J           `                 j                                            m                                    /                                               :           l      I                   j        J                                      H           =                                              /                              #                 4                   M        /                                                                                                                                                          C        H           U           	      f                                                                                                 0                   8             
      @             	      H             F      P                                 *                  '                  1                                      ^,      (            /      0            0      8            ,      @            P      P            6      X            9      `            07      h            3      p            M5      x            4                  4                                    >                  eB                  '@                  <                  t>                  =                  =                  I                  E                   j                  T                  6S                  Mv                   R       .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                         @               K                                &                                                        .      2                    $                            B                     *     N                             =      @                                              H                     `,                                   X                     ,                                  ]                      ,     #                              f                      ,                                                         ,     (                          	                      =                                                             o                                  H$  ELF          >                               @     @   UHSHH(  HD$ HH$H$   HD$H        о   HH        о   HH        Ѕu0HD$Hf  fPH        H(  ЅuH]H(  []HWHGPHRHz01w&zH uBL    HpH9psHH        1S   HH        HH        H             [UH        SHQH;Ht H8H        H;H        H;H        Z[]SH   H_PH(      HD$ HH$H$   HD$H        о   HH        о   HH        ЅtH        IH|$   H        H        f fG  HH(  HH        ЅuH(  H        H0  H        HH        H   1[UHAWAVAUIATSHh  HGH8  H@DxH        HH  HHHHEHH        о  HH        о  HH        ЅA  HLpf  HHPLJt/u:/tHHI        L  ALHxAITH        I        HHAH        AH        HAHH        HTHHAH        AH        HAHH        HTHHAH        AH        HAHH        HTHHAH        AH        HAHH        H|AH        AH        IAHLxHHADAH        McLL)ЅAtHH        2  AEH   I]PH           H        HH0  uHH        С          IEH        H          H        I        H@L 1AIEHH@H8H        ЅA   AH        H          H        1ADKLH        H          H        1AH0  H        HH        D  1H        H          H        AEA׸E   EH    HHLH        H        H HH(  u+H        H          H        A  LL{ A  LH(  HH        ЅtFH(  H        H0  H        HH        ҋ   LDH        Ѓ{  t-Hs(   H        H        ЋC$        5AA  ?HH           1H        H        8 t+H(  H        H0  H        'HIE@1He[A\A]A^A_]HHH@HRf@fR)¸   f AWHAVAUATIUSHHZPHnHVHt$H)HH        H           <  E f  ftf     C   C    I        HnHH|$H;o      H        HAԅuH}11H        H   H        HH        ЅuH}11H        ЉCHD$HPH9HEs}  tHHcH        HC    1HH        H{$H        1  H4H        H           H        1I        AH0  Ht$H        ЅP  I        H0  AHtH(CLmfAuffx`I        fAESft~LC    H        Hu   1H        H        HH        HH        H0  H        >H0  AID$H@Hx01w HCHHpH        ЅtJ  @L      HH        Ѕ'  L}HCL+}D;{HpHssSH9ssHH        ID$H@@H   ID$H@@L   H        H(  Hǃ(      CA9wHEH+EH"   DH)H        Ѕt   ID$    LxH        IW H$HEH$HhH     H@    HPI  tIW(HIG(H@IG(IG IG0HH        H[]A\A]A^A_H        H        H        H        H        tsize  blksize  closed octet blksize 1024 tsize 0 resolving address for %s
 tftp net/tftp.c Address resolution failed: %d
 file_size is %llu, block_size is %llu
 opening connection
 connection failed
 time out opening `%s' TFTP packet too small
                                                                      LICENSE=GPLv3+ net priority_queue tftp                                                                                                                                                                                                        	                      
                                       )                      ;                      G                      _                      k                      ~                                                                                                                                                                                                    3                     D                     P                     \                     n                                                                                                                                                                                                                                       1                     F                      grub_mod_init grub_mod_fini grub_strlen grub_netbuff_free grub_errmsg grub_priority_queue_pop grub_strcpy grub_netbuff_unput grub_netbuff_clear grub_priority_queue_push grub_memmove grub_net_app_level_list grub_net_udp_open grub_errno grub_priority_queue_destroy grub_netbuff_push grub_net_send_udp_packet grub_print_error grub_zalloc grub_malloc grub_netbuff_pull grub_real_dprintf grub_priority_queue_new grub_error grub_list_remove grub_free grub_net_resolve_address grub_net_poll_cards grub_list_push grub_net_udp_close grub_memcmp grub_priority_queue_top grub_netbuff_reserve grub_strtoul      *                     >          )           R                     w                                                                                                                  (           .                    =                    N                                                 )                                                                                                               &         &           9                  H         "                                                            )                               F                    k                   u                                                                                                                                                         !                   <                   X                   e                                                                                                            "           %            ;      4                    O         "           Z                    m            "       w            <                   A                                    #                       L                   <                   A                   k                   <                   A       0                  ?         "           U                   _            <       n            A                   m                                                         <                   A                           8         &           K                  Z         "           w         $                                                                                                                                            &                                                            <                '           	                    /	         *           C	                   P	         '           h	         *           	                    	                    	                   	                   	            <       	            A       
                    
                    2
         (           e
                    
                    
                     
                    
                    
                    
                    #                    G                    ~                             &                                                   q                                                                     %                                        !                        <                     ]      0             [      8                     .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                          @                     (                          &                                                         .      2                                                  B                            @                              =      @                     `                           H                     @                                    X                     O                                     ]                      O                                    f                      b                                                          h                                	                      p      S                                                   P       o                                   -  ELF          >                    )          @     @   H        UHAUATA   SHHH   L   HEH    uH   H        H   L   M  I}hj 1E1HMLj H        ZH      H9YuUH   HUH9v	HH	HD~HH   H   H        AHǃ          FHuyHEHxH        HIt]HǾ   H        ЅLu6H   I|$H        HULHuH        ЅLtH        1HeH[A\A]]UHAWI        AVAUIATSHH(L   A׃       IE1DE1HE    I|$XHMLH        HDE   H} tǃ       fEu6I|$`H   E1j 1LH        j L   ^H_   AI  H9rA   eH           ~IEI+EHS`H9H   vH   H   IuH        H   H   I|$`1j E1LH        j L   ZHYtH           1H        >1HE    I|$XHMLH        H   u
1H}    1He[A\A]A^A_]UH        SHPH   H~(H   H~H        H   H        L   H@`H   H        HAY[]H        U    H        H        HATISH   HH%  H@x8 u)H{HH        HtIT$H        OHCx uIT$H        $   6uF11H{HH        Ht*IT$H        $   1HeH        [A\]HCx@t.u	P1H{0E1E1Hj H        ZYH        I$   H        M$   H@`H   H        HH        I$   He1[A\]UH        HAWAVAUATSHxHhHuHxHHEH        HHEp
  H} e
  HMH        H9A=
  H   H        HI
  H]I        I        HALIHAօu7H           H        HhHHp     A<	  AGPv<t<	  H}H        HHw	  AuHA @f@ HAԀxuHH         @f@ HALH @f@ AAHH        E  	H}H        H        HEHI        AIĊ <  A|$  fAD$f  A$AD$fEfAD$ H}IƊ <u A~uAAFfAF H}IA<2  AF<#     H        HH  A~H@HEN     HI        AՅI           f}    HEUIt$I        HxlAHEIv   HxAHEIv   HxAHE   Hƀ   cƀ   ƀ   Sƀ   cHSHUAՅHUudHzBIv   AHS   HHUAՅHUu2HzBIv   AHS   HHUAՅHUtH}A^  Hz<B
H        
   AHEHE   HMHUH        HEH        H@`H   H        HC  H}H6     H        HpHI  H}I        AHI   I   I|$HMLH        H      H9uBLH        H}AHI   II|$HM   LH        HtLH        nLeIMtaILkHIt$H        ЅH        tH}  HMI}AE EeLLH        LHMLc   HH        Ѕ  A$H}H        AAFE1fAF Ѐx  P$HMHpH        QAHy   z     HI        AՅ   HE   H L{AՅ   fA fAG (   HAՅujL{   HAՅuWfA fAG    L{HAՅu7IvL   I        AULsHHrHUAՅHUtH}H        ^  EIt$I~fA ;fAFAHEHE   HMHUH        HEH        H@`H   H        H6  H}H)     H        HpHI  H}I        AHI   I   I}HMLH        H      I        H9u8LAH}AHI   II}HM   LH        HumLmIMtfILsHIuH        ЅtH}AHH        d  DfA I~LLfAFH        LAA   H}H        E1L3LkM)Lxh1A  EgM  EI        >  1H        H        H  H        AMt]A	 H        I        I        H        H        L  H        LEH        LD1AHEML1A   HxHxH        uH        8 IY^tH        H} tCHx t9HxH        H        V  H        LHEL 1AA}     H           H        H        \  H        1AHELxA   ML1HxHAWH        uHEH        MH        b  H        L 1AXZHt4HH        #H}AH        HEH HEHe[A\A]A^A_]1HtH        H9WuH   H        H8   AW1H           H        AVAUATUSHHL$HHt  IE1HD$HPHHT$H  I<$H        H&  11@0@tpHHHxuHt+<u"B<wHt<u
y     H        I<$H        HI  H@xx   8 tIFx   I~LH        Hg  t+   I        AHHu3H        ?  11I~LH        H  IFxxH{`H?HH   H   AHH   u%H        HH        H   HC`DH        H        ǃ       E}H?EHH   H   1HCH        CH    HCIFxH{%  C IFx@C$IvxH        VH(  L   I$HH        H   H        IHH        H        H        H[]A\A]A^A_UH        SRH8HtH1H        Ht&H9ouH        HtH1HHH        H     X[]couldn't send network packet %s: net start failed %s: card stopped %s: net initialize failed  yes  cannot continue no HTTPClient using ipv6 and dhcpv6
 efinet net/drivers/efi/efinet.c dhcp_ack_received: %s%s
 device: `%s' path: `%s'
 using ipv4 and dhcp
 efinet%d                                                                   !M)H
nD[O6T`(- '?M2%- '?MLICENSE=GPLv3+ net efinet                                                                                                      	                       f                                                                              	                                       /                      E                      P                      o                      ~                                                                                                                                                                            !                     4                     K                     _                     p                     |                                                                                                                                                   	                                                               )                     4                     S                     l                     {                                           grub_mod_init grub_mod_fini grub_netbuff_free grub_efi_system_table efi_wrap_4 grub_net_configure_by_dhcp_ack grub_xasprintf grub_memmove efi_wrap_1 grub_efinet_get_device_handle grub_errno grub_efi_image_handle grub_efi_find_last_device_path grub_efi_compare_device_paths grub_net_cards grub_netbuff_alloc grub_efi_locate_handle grub_efi_net_config grub_print_error grub_zalloc grub_malloc grub_get_time_ms grub_net_card_unregister grub_net_configure_by_dhcpv6_reply grub_efi_open_protocol grub_real_dprintf efi_wrap_3 efi_wrap_6 grub_error grub_free efi_wrap_7 grub_efi_duplicate_device_path grub_efi_get_device_path grub_list_push grub_netbuff_put grub_netbuff_reserve                             G                     ~          &                     %                                         +           8                    O         *           b         
                                        "                    &           W                                                 &                                        $                    "           D                    m                    ~            p                                                           p                                                                   0            2       P         "           f            C       {         $                    #                                           p                                                          (           U                    {                             (                                                                                    `       =         '           ~                             %                    '                                        %                                        *                    %                                           v       	            P       )	                    >	         "           e	            P       	                    	                    	         %           
                    
         %           E
         *           S
         %           
                    
         *           
                    
                             *                                        %                       @       (                    =         "           d            @                                                        %                               1         *           K         
           v                             %                    !                                                                    
            ]                   b                   ^       (                   2                   A                   O            s                                                                                                                                                                                       /                   `                    s                                                                  
                                                                       #            p       2                    |         (                       p                            ;                    [                    p                             "                                        %                              	                    A                    v                                                 )                    %                                                                                         #                    C                                                                         A      (             |      0                     .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @       V                                   @                           
                    &      2                                                 :                                                         5      @               (      x       
                    @                                                          P                     /                                     U                      /                                    ^                      3                                                          @                
                 	                      `                                                         p)      g                                  &  ELF          >                    "          @     @   UHAWALEHMHUAVAUI1ATIH}SH        H(HE    HE    HE    E    ӅxEH}H        HIt-LEHMHUHH}Ӆ~L9LH        С        %  E   HL   AH]LHEH9   LCPH        HCB   H        I        HRH        N 1Aҋ3ZYwwH        H{Hs$HL   rEtHhHL   VHL   EHL   4HL   #H        1H        HsH{HL   1He[A\A]A^A_]1H        AVH        IAUAATUH    SHHH   H        HJ5  H H)Ht$L``HH        HI|$0H      H9tHuAAU   wH        I|$(LD$H   H        HtHH        HH        HkHH        QKHT$        HH        HS1H[]A\A]A^UH        1SAQH        HH@`Ht?9Su2Hx0HSH        HsHHtHE 5H        )HHAX[]H        &   1H        HH        Z[1]AW    H        AVIAUATAUHSHHHttH        AL$H  HA   Lx`HD$wH        D,1I(LD$HLI        AHtHH        1   H|$ tMH        HkHH        0VsHT$        HH        HSA6HC@1I(LD$HLHD$AI1HH        MxdH[]A\A]A^A_H        uHuH11uH   wHH   v
H   H91uH   wHH   v
H   H91HH        H        HD$    Ht$H|$   v	HD$   HD$HHH        H        HD$    Ht$HD$HHH        H        HD$    Ht$HD$H1LG1LH#Is	1ҿ   @uIs	@uHs	IIL	ATIAUHSHu8H        H        R   H        1I        AA   HcCLHkHL HcCHkH@    HcCHkHD@HcCHkH@    CCHHkHH(HcCHkH@   HcCHkHD@HcCHkH@    C1[]A\HHH9HBHAH9HGH9vPH)H        1Z1AWIIH        1I        AVAUATIH        U1SHH        H(Ht$|  AIT$Hr1E1HHHA @u1I        LE1AH9LsI1A   @A)I   LH)HvM,HT$HL$LILHT$H9HL$MCIBLLH        HHD$HH9sdIMIH        H          H        1I        AӺLHH        LDHHzH(1[]A\A]A^A_H1H        Ht$HT$
Kt!HHGMtHH(Tt
H
HHHHAWAVAUATI        UH        SHHH<$Ht$H        Ht$,D$,    Hc|$,Hk0AԿ   HD$0H        H|$0HLd$HtHuH        Hա        	  D$8    Ht$0H        A   11E1D$,D A9}VHt$0LRJHLL;ru4x u.~u(DhD`HǋhLHT$0LDjDbjAL띅uHD$0E1I        L(D`D$,H|$0D9A  IkH HcOt[HHكy    W9QHu'H9HtHHWHHQ"A       HH8Htw9WuHHAgHHكy uA   HcGWHTB   HD$HHT$0J@   HHcRHHHHT$0HcT*HHA{ tDCE9uAuMHD$0H4(I9t3AD$v)DD$L)HL$DLH$ЅDD$tH|$0HD$0EL,(IH        1HH[]A\A]A^A_ATUSHt!H           1H        ҉[IH:H        H$H        u5I|$HD$H        uHH        H        H[]A\ATUSH t"H           1H           H1H        H          H        H        I        HE H        HD$   Ht$H|$HD$HD$8,uHHD$   Ht$H|$H        HT$HD$:,uHHT$A<$
uH             1ZH% LD$H        IHD$H        1  H        Ht$H        H        1H []A\SE1H        H        H        H        H        E1H        H        H        H        H        [H        SH        H        H8H        H8H[                                                                                                                                  	
EFI memory region 0x%llx-0x%llx: %d
 mmap mmap/efi/mmap.c Unknown memory type %d, considering reserved
 handle %d not found Unknown memory type %d. Assuming unusable
 mmap mmap/mmap.c hook %llx+%llx
 badram %llx (size %llx) is a badram range
 two arguments expected one argument expected executing badram
 badram %llx:%llx
 Declare memory regions as faulty (badram). ADDR1,MASK1[,ADDR2,MASK2[,...]] Remove any memory regions in specified range. FROM[K|M|G] TO[K|M|G] cutmem       LICENSE=GPLv3+  mmap                                                                                                                                                     {                  -                                  	                                       +                      A                      L                  j                       g	                                                             r      F                  2                                                             /                           '                     3                     K          O      i                     {          2                                                                                                                                                    grub_mod_init grub_mod_fini grub_strtoull grub_efi_system_table efi_wrap_4 grub_mmap_free_and_unregister grub_machine_mmap_iterate grub_mmap_iterate grub_errno grub_register_command_prio grub_mmap_get_lower grub_mmap_get_upper grub_printf grub_unregister_command grub_mmap_register grub_zalloc grub_malloc grub_efi_get_memory_map grub_mmap_malign_and_register grub_real_dprintf grub_mmap_get_post64 grub_mmap_unregister grub_error grub_free grub_efi_mmap_iterate grub_efi_free_pages efi_wrap_2 grub_strtoul     *                     a                                                                                                 *                                        %       -                                :                                                                    $                    P         "                                                                                                                                                       "                    3                    V         "           t                                h                                                                                       !                   A                    V                    q                                                                                         !                               x                                                  &                                      L                                      |                                                                 r                                                                                                             !                  !                                                                                                       	         #           q	                    |	                    	                  	                    	                    	                    
            h      
                                         *                   ;                    Q            	      a                    }                                J                                      
                                                                                                                           !         
           g         
                                           2                                                                                                                  D                   o      *                  4                   C                   M                  W                  a                  k                  x                                                                                           V                   \                   \                                        Q      (                    0             V      8             \      @             @      H             m      P             ~      X             V      `             V      h             V      p                    .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .modname                                                                                         @                                          @                      
      
                    +                                                         &      @                !      h      
                    3      2                                                 B                     d                                    H                     h                                    X                     x                                    ]                      x                                                                `         
                 	                                                                               h"      f                                  pf  ELF          >                    b          @     @   H        HH        HH        HHHHH        HH        HH        H(1H        HT$HD$    HD$    D$    LD$HL$H|$HD$1Ht$H(D AT1I        UHSH LD$HL$HT$H|$HD$    HD$    D$    AH|$H        HH   LD$HL$HT$HH|$AILD$LL$1AI       L9sOHSHKHHL9IGH9v-;u(HcHk0H|5 HOHL50      HQL1H []A\H        H   : H|$u=H        HLD$H      H@`Hx(H        HHH        H: u+H        H	HHHH        HI`Hy0    HH   f    Hh   `   Hp  HR   P   `   f.     (         fD            ؎ %"  2%0 "    ؎Љf          f"     uUȎЍ&  $ t=$5d 1H1 ƃǊ&Έ4&5(4tø  ظ        и  ff    ff    f    f        f                                 HH   HX   P   H   HB   @   P    f.               fD            ؎ %"  2%0 "     ĸ    Ÿ    Ƹ    Ǹ                      f.                             HH   H        "H        HH        HH        H        H        H        %            UH        H        H)   A   HAUIH        ATI        M)SMHH(VHujZY   EH}أ        E        E         E$        E(        E        E        E,        E0        H        LLHH        H}H        1HHUHH        Ѕu
EUЋEHe[A\A]]UH        I          A   H        HAUI        L)HuATISH        I)H(j j ZY&  EH}f        fEf        fEf        Ef        fEf        Ef        fEf        Ef        E,        E         E$        E(        H             H        f   E0f        H        LHHH)H        H}H        1HHULH        Ѕu
EUЋEHe[A\A]]UH        A   HAUIATISH        HI)H(H)Mj HH        HHuj ZY   HEH}H        HE H        HE(H        HE0H        HE8H        HEH        HE@H        HEHH        H        LHHH        H}H        1HHULH        Ѕu
EUЋEHe[A\A]]H        H        H)H        H        H        H)H        HGHwG
GHH        H        HH        H        HH)H        H        HH        H        HH        H        HH)H        H        H    HGHHHtBL9@vLHL;
s	L;OsL
LH MLPI9wLPML;v	L;WsLH    LAL	LID8HH!L9sKDH!LQHJ4H9wlLAHL!H9w]DI AuL)LL9HFH!Ѓy0 tAuHQ(H;BvHQ(HBy0 ty uHQ(H;BsHQ(HBA0   1S1H|u:HH=   uH        H{   HCHHHHtHSHP[AUATUSHHt}  /    HGHWH        HHTHH+WHHHtH9t
HwHHLC    H
IHHJL@HHHH)HHzHHHxHHx LHH(H@0(<-L@ LLB LLM9tL9uL9uCILII)ILAI9L@(H	HH I9ulIHH
L9tHH:TH9OH)L@H        HPHtH9Qw
HqHIHHHHHH HH@0(<-HP(HHH H        HH  HHJH9o  HRHGHHHCHHHH?HGmH HHHHG  LgI$  LgH I L9sLHH        H)HK0Ht[C   -   )@HcT$  H|)H)H        ЊL$HC0   @t(H        H{0H{8 tbHCC   D)A   AHcHC0Aպ   H)HxH        Hs0D   D)D.H        H{8HC(HPH HH{(HH        []A\A]H@    H:HHHJHLI9tLLMMM9tMI8H8H:H9Hx HHRHH[]A\A]U1HAWI        AVIAUIH        ATISHH   HLhAPL8IIѾ  H        QH        AHhK|4LHHXH!XH)H H!HXHZHHHH9Y  H        H   HHtRH0Hx HH9s  H        1H        IL@L9sHDCH9tDH@멃} AMA D|tIE HtH H        HtH Ht	HIH        DH        H0Ht;11T1Ƀ9A=   tՃH6ADD`H        Lk0Lӿ  HpLIHHD`tHp tMu-H        H          H        1A  E1| tGIE Ht>DHk0H
   HHHJAOAHk0H   HP HPHQH H        HtCDHHk0H   H+HHJAWAHk0H   HHHL HJH@H        HDt7Hk0H   HPHWAWAHk0H   HHHJH Hk0H        HD|H        H   11AAB| 9t,|Hk0H߃|	HHPHGHWBT HH   ut,||Hk0H	   HpHBH   HJH ]H        H        H}H    HEH  H0HHym   |LH |LAI(<-t(\  H        H        1I        AHk0HL9uE   IL+@Hr|HBHz HJ(LBHk0H   HQHHT6Hr|    HJHJ(HBHk0H   HQHHHV|HH;t|HHHxH@D|HE1E1   AD;|tOuMcHHMk0ALpL!
tMcHHMk0ALpLAH0E1I          1LA19|v#Hk0HpDHHTHAD1AATHH=   uHp1A   ;|t5HpDH@ID	AqMk01HLH0ILAA@u&|1ǅ    ȃ} EƉ5  HpHpH} a  } W  ;|AEG  E1ۅE  AMk0IA:Z  E1  EAE  AEt}   LXL9LCL`LhL;HkM;ZaX   H@ǅ    ǅ    ǅ$    ǅ(    ǅ,    ǅ0    )   ǅx    ǅ4    ǅP    Ȉ#H`HhH|9P  0 @  P  VH@Hk0HNH|H9  H`H9HCHH9HGH9    8  <  L  H H        II LH)ЅZ  } LEHLDXLHLXLH1E1E1111L+hIL+hM9MGL;XL`   ȃAAEE0A	E1EAE*I        C$AAwAoAg`YRKAKEE0A	<E1EA-} IRtLITH# LhL)H# LM;Z 9HEH        HH        HpL[
  x    04 ( u, $ tҸ   nf  P  G  HcA΁  @#Hk0A  Ll   DDEAA t1DH        )I|=D   C D=  HcHqHIHLF Hk0I)HHGLL_ HH(IH)I)LH MLhHH9HP r LHL9IDHV IHI@(<-L9LEHH@LV MLvLnL9HFLELI3E1HHL9sH        1I        AHH9uH1 IHHw(H9puHOHHH0;|u   LcH1HLY Mk0IIP(IpMHLRIIM9w!HHA(<-HJHHH)HHHH)HvHHHzt4HIH9u)$HH
tHHIH9uHH9uHF HH1;|tIp(H9puIHHHH0H@    H        $ʃu'H@H@HH H;`vx4Pcx txR4J,B,:(2(*P$$00PH@0
HEHpI        E1H        ALADH        IcHH8HHPAǅ    ǅ$    ǅ(    ǅ,    HF(Dv0ǅ0    ǅ4    ǅ@    ǅx    ǅX    |9X  A0 uJ4 A   u;E0@ u/$ u, Au( t
A   uAX  PHPHk0H@HLbI9  ELmuDH8ILo(H`L9LCHhH9HFL9Hpu  HEu MeL)AIEwHcxHk0HDIELH+BIE Eu{AFwx    H        Hu@   LH}H        AEHpL`HpH        HHpHHHtHBH        IE(A   Eh  A^  HpME1I H  HHHH M9t  H        IE1HpH9Ht"L  H        LIMuM9uMulHpH9Ht\LI        A   ALE1AԺ@   LH}H        H        H8HH        AE1_  M   M)MzIzMLLI   I        LAԋL     1L)K|:LCD:AH        LIH        IBH HtLPLH        E1M   LpHH1LI~I        H-   LH)IFHALI+V1Hк   HI|AT  H)AH        LIFH HtLpILE1H        MU0Mu8$AuHcxHk0HHPIU0H@IE8EuA   H}H        HP    H        $ʃu'HPH@HpH H;`v4@XxT,L,D$<$4(,($00ǅ4    ǅ@    XHP0EtzE1I        D9H8Hx(vLIHHAI        AH        H          H        1I        AHAkH8L`HLhLxLp H        1MMH        H          H        I        AҸ   1He[A\A]A^A_]HGHGSH        п(   H        HHtKH@H        L H        H        s   H        1I        LC AH[UHHHAWAVAUIATISH(H9HuHE    H        wSHHIH        HUHuHKL% I9v?H Ht>HPL9wHHp I9sH        &   1H          H9s׿8   H        Iǡ        M  AV1H        LMLEH        AT  H        I        AXI I        Zw1HsjHL]MMj    HAAZA[L]   j MM   HULjHAAXAY   j HuHMM   j LH        ^_   HsjH   MMj HH        ZYtIGH9CvQHCK  H        H        H        1ALH        H           ^1MMGH        H          H        AKD% H9CsHCLIWH9SsHSHKI9OsH9CsHCLIGH9CsHC1LC H        H          H        AM9gsH        HC M9gvH        HC LC H        H          H        1AMgMH        Mo HH          H        IL;1MAIGIGHEL81He[A\A]A^A_]U1HAWMIAVIH}AUI        ATMSLHxHhHpHHʹ   EI9HUIFLMHuLEHxH        EM1H        k  H        HE    Aտ8   H        IHE        M&  1}jHpLILHxI        PA^_   HEH        H        w  H        L@1MAH        1MH        x  H        AHEHPHPHEHX IHEHHEIL  LxHpHUHuLH        uu1LxLpH        H          H        AjLMILHUHujLAH uIIvjH   LMIj LAZYtHEH@I9FvIFH           8H        UHuH        LH߃} uaH           1H        K  H9vCH HtEHPHNH9wIL@ L9sڃ}tH@ IDHH!HVIHuHH9s1H        MF H        H          I        AHEHxH9xsH        HIV HHH9HvH        IF MF H        H          H        1AHEH          H        HX IHEHLE1H        MMAHEHPHPHEHhH1He[A\A]A^A_]AVHAUATIUSt]HI        Ht41;k0H{(sHHAL3H        HL[]LH        A\A]A^[]A\A]A^U1HAWAVAUIH        ATISH        Hh  HLG Hx  H        H        MD$ jH        1LLjHH        LHAZA[u H           H        _  LMLt	ID$ IE MH        H          H        1Ӻ  1HH        E1M<$MtM1WH        Aw H        MOMG  H        AGIAXAYHM?Ik8H        HHHIHHHt1Mu$LI        AHAԡ        J  HHQH(HHH=   uI$   Ht/HLIpMk8HHHMLH HA   L@L  1HH        L1L9sHk8DITHH1HI HH=   uf1   L9s<Hk8DLH~H@LIIMk8HHILAA@tLIH4LH        Mǅ    DM9   Mk8H        PH        :  1H        I        N<Aw MOMGAIWI9WY^s$LH        IO IwH        IIWI9Wv$LH        IO IwH        I@HLH        HxHL0H        1He[A\A]A^A_]RH        H   H0HHymtgLH L9sH1H        I        AML@L9sLAI(<-tH1H        I        AH9LtLH@wX                                                                                                                                                                                                                                                                                                 trying to allocate in 0x%lx-0x%lx aligned 0x%lx size 0x%lx
 relocator lib/relocator.c %d: out of range pointer: %p
 events or counter allocation failed %d
 %s:%d free magic broken at %p (0x%x)
 Failed to adjust memory region: %p, %p, %p, %p, %p allocation failed with out-of-memory
 allocated: 0x%lx+0x%lx
 relocators_size=%lu
 address is out of range overlap detected min_addr = 0x%llx, max_addr = 0x%llx, target = 0x%llx
 not allocated
 out of memory allocated 0x%llx/0x%llx
 relocators_size=%ld
 cur = %p, next = %p
 chunks = %p
 Adjusted limits from %lx-%lx to %lx-%lx
 couldn't find suitable memory target Preparing relocs (size=%ld)
 Relocs allocated at %p
 chunk %p->%p, 0x%lx
 sorted chunk %p->%p, 0x%lx
 %s:%d: out of range pointer: %p
                     LICENSE=GPLv3+  mmap relocator                                                                                                                                                                   	                      
                                                       +                   @     D               [                    w                                                                                       5                                                         P              "    I      4      8                  M    A              b    #             ~    ~                                       Q                   }                                        _                          .    '            O                  d    	      J                                                                                      ,      '          +      v                                                                   '    	             A                  U                    s    |                                    5                                                       "                                    	      J       7    2              L                   o                     {                                                    3                             I                                                                       )                  >                  R    #      v       e                     r                     }                                                                                  (                                                                           7               6                  R    \       U       y    H	      C                                   >                                                                                  "    70             5                  J    #             f    \                   $             grub_relocator_align grub_relocator64_cr3 grub_relocator64_rbx grub_relocator_forward_src grub_relocator_backward_src grub_relocator16_ebx grub_efi_system_table efi_wrap_4 grub_relocator32_eax grub_relocator_forward_start grub_relocator32_start grub_relocator64_rax grub_relocator16_start grub_relocator32_boot grub_relocator32_ecx grub_relocator64_rip get_virtual_current_address grub_relocator16_ds grub_memmove grub_relocator_forward_chunk_size grub_relocator16_boot grub_relocator16_edx grub_relocator_firmware_alloc_region grub_relocator_backward_dest grub_relocator_alloc_chunk_align grub_relocator32_edx grub_cpu_relocator_forward grub_relocator16_es grub_fatal grub_relocator16_sp grub_relocator32_ebx grub_relocator_prepare_relocs grub_relocator_unload grub_relocator32_end grub_errno grub_memset grub_cpu_relocator_jumper grub_relocator16_gs grub_relocator_backward_start grub_relocator32_esp grub_relocator16_idt grub_relocator_backward_end grub_relocator16_ebp grub_relocator64_start grub_relocator16_keep_a20_enabled grub_relocator16_ss grub_cpu_relocator_backward grub_relocator64_rdx grub_relocator_backward_chunk_size grub_zalloc grub_malloc grub_efi_get_memory_map grub_relocator64_boot grub_relocator_jumper_size grub_relocator64_end grub_real_dprintf grub_relocator_backward_size grub_relocator32_ebp grub_relocator16_esi grub_relocator16_cs grub_relocator_new grub_mm_base grub_error grub_relocator16_fs grub_efi_is_finished grub_relocator32_eip grub_free grub_relocator64_rcx grub_efi_mmap_iterate grub_relocator16_end grub_relocator32_esi grub_relocator_forward_dest grub_relocator_forward_size grub_relocator_firmware_get_max_events grub_cpu_relocator_init grub_relocator_firmware_fill_events grub_relocator_firmware_free_region grub_relocator64_rsp grub_relocator16_ip efi_wrap_2 grub_relocator64_rsi grub_mm_check_real grub_relocator32_edi get_physical_target_address grub_relocator_forward_end grub_relocator_alloc_chunk_addr        d          <                     <                     ;                    I                                                            I                               6         X           L         *           V             	     v         !                                                            '                                        "                    J                    0                    B                    O                    [                               2                    B         \           Z         (                        	              N                   !                    N                                        D                    W           	                             $           $         H           1         .           ?         6           L         &           X         3           d                    p                    |         C                    1                   1                    5                                                            \                    (                    ?           6         4           U         !           |                                                 L                    8                                        V                    Y                    
                                                   	         \           %	         (           J	                    T	         ]           a	         /           k	         Q           u	         2           	         A           	         2           	                     	         /           	                    	         9           	                    	         ]           	         P           
                    
                    
                    )
                    O         U                    F                    F                    F           |         U                    ,                       5      %         ,           H            5      n         K                    @                       F       5            <       @                             F                       V                %           0                    U         R           e                            ;                       t                   <                   F                F                               "         T           :                            F                    F           M            F       W                   c         %                    ,           c                    /                             F                    K                    ,                                       %                       `                K                    F                    ;                    ;                                                                       d         ;                    ;                    K                                                                        Q          ,                                                                                 ,           N!                   x!                   !            ~      !                   "            ~      "         K           "                   "            <       "            F       #         @           :#         K           N#                  X#            <       g#            F       q#         @           #         S           #         :           #         >           #            3      #            <       #            F        $         @           B$            H      W$            3
      $            `      $         G           $         ;           $         +           $            <       $            q      %            F       %         @           ,%                  %                  %                  &                  &            <       &            F       (&         K           4&                  Q&                  [&            <       j&            F       &                  &            <       &            F       &         A           '         Q           '                  '            <       -'            F       C'                  T'            <       c'            F       '         @           (                  (            <       ((            F       B(         ;           T(         +           (                  (                  (            <       (            F       (            <       (                  (            F       B)            3
      d)                  n)            <       })            F       )                  )            
      *         M            *            >      1*         G           *            F       *                  *            <       *         @           *         A           *         Q           +                  +            <       +            F       1+                  @+            F       ^+            <       +            ~      +         K           +         K           !,            c      1,         @           Y,            <       c,            F       v,         	           ,                  ,                  ,         G           ,                  ,            <       -            F       -         ,           :-                  H-            <       _-            F       -         ;           -         K           -         +           f.         ,            /         K           M/                  X/            <       i/            F       s/         @           /         7           /         A           /         #           /         Q           0         -           0         K           :0         F           m0                  w0         %           0                   0         %                         w                   ~                   w                   ~                    ;      (             B      0             I      8             Q      @             Y      H             a      P             i      X             p      `                   h             F      p                   x             F                   _                   g                   o                   w                                                                                               !                   r"                   !                   r"                   2"                   :"                   B"                   J"                   R"                  Z"                  b"                  j"       .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                        @       0                                   @               E      8                          +                     1                                    &      @               _      `                          3      2               02                                  B                      5                                    H                     05                                    X                     @5                                     ]                      @5                                    f                      E5      
                                                    P5               	                 	                      8>                                                         xb      o                                  0#  ELF          >                    h           @     @  
 H        Ht$QP(        uH        H    1ZH        HuH           H        HtH@8H             1H        Ht@1H        HuH           H        QP@uH        H    ZËW ul$  G(u%,  0   4         ,   0   4   8      uS$   G(u",   0   4   Fuz,ut0un4uh8u`ÃuI$uTG(u,uF0u@4u:8 tA0u,,u&0u 4u8uÃ
   tv<ø   H        HuH           H        H@HH        HuH           H        H@PH        HuH           H        H@XH        HuH           H        H@`H        HuH           H        H@hH        HuH           H        H@pH        HuH           H        H@xH        HuH           H        H   H        Ht	H   1H        Ht@@H   1H        Ht@@H   1H        HuH           H        H   H        HuH           H        H   H        DT$D\$HuH           H        D\$DT$H   H        DT$D\$HuH           H        D\$DT$H   H        HuH           H        H   H        HuH           H        H   H    H        HuH           H        H   Ht3H        HuH           H        H   1H        HuH           H        H   H        HuH           H        H   11HH=   ut H           1H        H             1ÀtH           1H        Gtf6 t֊G:O8%   	ȉG=O;%   	ȉ> tt1AWAVAUATAUSH   H        Ht
x  D!H        T$Hš        H     H        HH        ӅuH        H8 u:      H        HӅtӺ   H        HӅHu{붺L   1H|$4H        H|$4H        Ѕ   tH        0     D$<D!;D$ut   A@   D$@} H]  H        Ht)P(H        8 t     H        H     D$D@D$ 1҃@Et$D$'  H        HI        AՅ:  1L   H|$4H        Ѓ|$   H        H     HH        0  Hx   HHL$(AHHL$(  11HD$(HAA> ALD$(  11IxAA> I  A  A     T$D   9  H|$ j  H\$H؊t;HH  ,x  HHD$    I        ;AՅH|$  H        HAՅ7  x   HI        AHu.AHH           1H        Dl$   I        11HD$(HI        AA> D$HL$(xHH           1H        A   11HAA> A   HH           1H        ]1HH           H        хHD$HH        ҋD$#  DEA   \$uǋ\$EH        L0M$1L   H|$4H        AV uPDD|$AV0u8H|$4AV8u+\$@D$<0	ÊD$'@uD!;D$tAV(H             M6oLH        HH        H           1H        !1  HL$E1D$    HĈ   []A\A]A^A_no video mode activated invalid EDID checksum %d no preferred mode available keep keep, keep; no suitable video mode found text auto invalid video mode specification `%s'        LICENSE=GPLv3+  video                                                                                                                                                                           ;                        1           ;       Q           0       g           3       y           k                 3            i      G                  3                                        0                 )           6      3       *    ]      :       J                  d                     o                     {                       8      I                 0                             F      0           6      0                 0       &                     2                     >    *      3       V            8       i                     v          3                 &                                       E                                8       H                 b                 G       0    v      0       H    f      3       c                     o                      grub_video_get_blit_format grub_video_map_color grub_video_delete_render_target grub_video_get_region grub_video_scroll grub_video_set_mode grub_video_get_active_render_target grub_video_blit_bitmap grub_video_unmap_color grub_strdup grub_video_set_region grub_video_map_rgba grub_video_fill_rect grub_video_create_render_target grub_video_adapter_active grub_errno grub_memset grub_video_adapter_list grub_video_edid_checksum grub_video_get_viewport grub_video_get_driver_id grub_video_get_palette grub_video_set_area_status grub_video_set_palette grub_strcmp grub_strchr grub_video_swap_buffers grub_video_restore grub_isspace grub_video_set_active_render_target grub_video_map_rgb grub_error grub_video_get_info_and_fini grub_free grub_video_get_info grub_video_edid_preferred_mode grub_video_blit_render_target grub_video_set_viewport grub_video_get_area_status grub_memcmp grub_strtoul                                               "                     :                     I                     X          &           o                                                                                              &                                                    '                    6         &           H                    W                    f         &           x                                                 &                                                            &                                                            &                                                   &         &           8                    G                    V         &           h                    w                             &                                                                                                               #         &           8                    G                    V         &           k                                                 &                                                            &                                                            &           ,                    ;                    J         &           f                    u                             &                                                            &                                                            &                                                   %         &           S                   d         &           p                                1                &                                                   '                    ?            M       L         .           \                    v            R                   X                                    )                                                   1                    F                                {                                                                            (           	         #           	                   	                     
                   )
         &           ?
                    U
         /           x
                   
         &           
                   
         &           
                   
         &                    (           ?                    a                                                                     (                       ^                &            .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .modname                                                                                              @       N                                   @               X      
                          &      2                                                  5                     9                                     ;                     @                                    K                     P                                    P                      P                                                          X            	                    	                            |                                                          Y                                  Q  ELF          >                    N          @     @   H1LcIHAL  E~&IkID LPMLI9u9Pu	LHpIkLH8HpPA1U1   AHAUH}ATSH(uH            H        8 u"H           1H          IDHULH        Ѕ  H}H        L  IH        7I f  v,  H=7HFH        HtH9HGH        L)HH        H  H HH9sH           'jHH        A   HujH8H        ZY   H}H        H}H        H        LH        H}H        HH        ЅudEAH        H        o  H        I        AH                D        H        f  H        H}С        He[A\A]]SH        H        H8H        H        H;     H        H    1[SH        H        H;H        H    H     H        H     H        H     H        H     [   U1H  	 HAUATISAQ   H71HH     H  IwH  A   J#H=  	 v  	 L)H        IUH1H4H9wZVMAH        H        R  H        I        AH        IEI)ĸ   LI] _AXHe[A\A]]1U1   HAWH`AVAUATSH        IH   H        Ht_8 tZHH        1H        HH  H1Ҿ@   H        H߉HH        ҋH1Ҿ@   H        H        Ѕt2H        H        H        H             H        AIH        ЅP  HXH}H        ЅtH                Euf        Ef        Ef        Ef        X        E  f1M        E        E        E        E        E        E        E        E        tA$<ytB<1t>w|   H  u'u"t`        H         #CH         p4H          H          H          H          H        xHH   H        HI        H   H{H        AԅuBHS@¢        HТ        S8Hߢ        S8        fH{H        AԅtH{H        AԅtHnH          H          H         PH         LeHE    H        I        LALkmH        H	I  I I   H9sHH	  H  H H        H  H% HhH        H   H        H    H        H8H        H}HI   E11HHXLH        LDH        ҋDyH           1H        7u9H        HEH9sHH        H   H        D1 H        H?  H% H        HH        0  E1DhH        H        :  H        I        I        Aպ   H`H        AH` u1H`H        APH        H        H        F  DhL`H        I        P1AH`Y^Hu"H           1H          H        HHhH        LH8H        Ѕ  H}H        IHhH        MH        W  H        H        1ALpHH   L󥋅`Hp؉(  HH        HH        H0H        HpH        H        a  H        D  1Aǅx    H`H        Aׅt        t  xHpLXLH          1H        H0H        Ѕ*  H        H`L)HHpf  fv;HuH          X  H     H3  nfv1HuH          X  H    6fv/HuH          X  H    MMH0E      HE    E    	   LEH        1H8H        H0He[A\A]A^A_]UH        HAWAVIAUATSH  PH8H        Ѕu(H           1H        E1E1  I>H        HI  HX@H        HHIH              HHLH        H9t8H        8 h  IH           1H        C  LH        h  HhffUH        H8uNYH        <@w9jHdrSufnfwH        yu"H           1H          fH        v]sHH        H   H9wH        H      DTT	HcTHH0IE@H)fH H@vqut*N1ۅu#   AAAu	HH uM11f	v9ED}Ⱥ   HHI  H% H        t7HU111H  L@HHH%    H@H        M   H IEǉ(H  HXH        HX H        HH        H        (H y  L`   jI        LA   HL jLXLAHXAYAZH҉H(L   HSH;H  H        A        jALXH        McjH(   H8H HLA_AXHXLH        Ѕ   H`H        H`H        H        ЋXRIH           H        H        H        I        QH        L 1AY^ XH        ҋXl  1  H        H        Hhw   H        H  H8Ћ|H        H        I$h  H         H                                H8H         rH        f ?H        f  H             H             H        f          Ȁ        H        f  H            H        f   H        f   H        f  H        fH        fw+HH tJH           1H          H                H EL64        BfvH                EL64 fvH                EFIL1EDTH        H        y  H        I        1AH        H     C;P
  I|   H        I        AׅI|   H1H`H`H        H        H        : t    FH`rJ Fуktmt1Ƀgu
   1Ƀ
1Ƀ
HHH9vH        H     :HH        +   H        Aׅu                 HH        HxH        HH              H        HH        H        LPHHH        HPH        H0H@I   H        H8H        8 u7H        1H        H        H            E1LH        MtLH        H        8 t)H        H8H        H                     He[A\A]A^A_]UHH        SRЅuuE1H        1H        H        H        E1H        H        1H        H        H        HH        X[]SH        Ѕu,H        H        H8H        H8H[[ù   P0D@W<	AGЃHǈWuUHSHQt0H        HH{H;H        ZHH[]X[]AWAAVIH        AUI        ATIԺ   UH        SHHLD$AH{1H{DH{1H{1H{&   H{.1LD$H{6DH{>1H{F1H{N1H{V1H{^DH{f1HknLLIHL)AHL1H        HI[]A\A]A^A_AWIIAVIAUATUHSHHH$    ;/IuHt	HÊ</u  M*HL)Mt8HHL$LI} H        ЅHL$tIE <    Mmÿ   H        HI   IHLL)IEH        MIE t[IIH        H           H        1I        AHLE1H)A  HH        IHM.H)HqHH$MUH$1H[]A\A]A^A_HGAUATUSHRH tM1I        9+H{~%LkHJ|'AHCJ< H        H        HC    X[]A\A]AWH        AVIAUATIUSH(    HB    |$HcHD$    HkHIF   IF    11|  :   HH$H        HI   HkH        H$H     H        LH     H        H     H)HIM~H        IGIFH|(HuLH        С          M~H        Hq1Ht$HIIFM~H|(H           IM~M}LkH        LH     H        HH     H        H     LIFH$H        H$HLIFH8 ,AH0Hv@HpIFJD(IF9\$~{IFM<ܺ   H        HHIFH        I<ЅuIHP:/6HIFxH|$H        1HD$    1t+$IFH|$HPHHxIVH        ҋ$H([]A\A]A^A_AW1AVE1AUE1ATIUHSH(H4$HD$    D9m c  HL1HH        MkHLHEMJ|8HtgHHt$H        HLHEA   L@HxH        LD$HUHLD$  Jt:HH        HHEtCHE11ɺ
   H        H        E1H|$HH        HD$    LHEHILxH8H        LL9tNH        8 u%H$H           H        J1H        HС        bL$EtAH1LHH        HI<E11ɺ
   H        H        H        H|$1H([]A\A]A^A_ÍWи   	v1A@AWIAVI        AUE1ATUHS1De EtUA\u%}xu}Aօt}Aօt	HA\tA'tA"uA    DDH뢍CEEMtE/[]A\A]A^A_AVI        AUIATAU1S1A9~I| 1HA֍\   D؉[]A\A]A^AWAVAUIATUS1H(|$Ht$H$;\$A   HD$Ht$$H,H        HH9$   Dd$$H)$EtAE "IMI        D} EtmA\u?}xu9}AՅt.}AՅt#A\EIHAFEAFEAFA\tA'tA"uA\IƊE IHAFELtI "MnA HADIAE  H([]A\A]A^A_filename expected you need to load the kernel first the initrd is too big Initrd, addr=0x%x, size=0x%x
 linux loader/i386/linux.c addr = %lx, size = %x, need_size = %x
 gfxpayload %s;auto auto Booting in blind mode gfxpayloadforcelfb vga_text console ofconsole cannot get memory map real_size = %x, mmap_size = %x
 real_mode_target = %lx, real_size = %x, efi_mmap_size = %x
 cannot allocate real mode pages real_mode_mem = %p
 code32_start = %x
 cannot allocate kernel buffer premature end of file %s invalid magic number too many setup sectors version too old for 32-bit boot zImage doesn't support 32-bit boot prot_mode_mem = %p, prot_mode_target = %lx, prot_size = %x
 kernel does not support 64-bit addressing bzImage, setup=0x%x, size=0x%x
 mem= quiet BOOT_IMAGE= Load Linux. Load initrd. initrd 070701 Creating directory %s, %s
 linux loader/linux.c newc: TRAILER!!! premature end of file %s      LICENSE=GPLv3+  video boot relocator mmap linux                                                                                                                  y      ?                                                                                                                     )                      G                      R                      h                      ~     4       I                                                                                                                                                               "    }       ,      =                     S                     ^                     j                                              ~                                                                                                    v                                  #                     /                     ;                     G                     S                     k                     {                                                                                                                                                                                                             /                     =    {      f       O                     [                     k                     x                                                                grub_mod_init grub_mod_fini grub_strlen grub_efi_finish_boot_services grub_puts_ grub_efi_system_table grub_relocator32_boot grub_loader_cmdline_size grub_xasprintf get_virtual_current_address grub_video_set_mode grub_memmove grub_relocator_alloc_chunk_align grub_dl_ref grub_mmap_iterate grub_create_loader_cmdline grub_relocator_unload grub_errno grub_memset grub_register_command_prio grub_video_get_driver_id grub_initrd_load grub_efi_secure_boot grub_unregister_command grub_file_read grub_term_outputs grub_get_initrd_size grub_print_error grub_zalloc grub_strcmp grub_strchr grub_malloc grub_efi_get_memory_map grub_file_close grub_file_open grub_initrd_init grub_real_dprintf grub_relocator_new grub_file_filters_enabled grub_error grub_video_get_info_and_fini grub_free grub_strndup grub_efi_mmap_iterate grub_dl_unref grub_initrd_close grub_memcmp grub_loader_set grub_env_get grub_strtoul get_physical_target_address grub_relocator_alloc_chunk_addr        z                                  p                                    /                     +                     "                        0       (            x      >            H      N            `      n            4                   @                                                          X               :                       P                  X                                      J                   h       -            n       7         ,           D            P      M            H      Y            L      c            ,      r         5                                                                              4                       p               1                       @                                      X                  h      '            P      8            `                                     n                                      h                ,           	                   R         8           h                                                                                       1                                                           #                                                                      +                   ;                    \         0           l                                B                   D                   F                   T                   H                   L                   V                   W                    X                   Y                   Z       $            [       0            \       <            ]       y            L                   ?                   ?                   ?                   6                   7                   >                   0                !                    %                              ,            0       =            1       L            7       [            >       k                                                  0                   1                   7                   >                                                           !      @            0      _                    r                                                 '                    (                    1                                      /           
	                     	                    0	                    C	                    Y	                    f	                   	                  	            h       	            n       	         ,           	         3           	            I      	            I      	                    
            ;      

            h       '
            n       1
         ,           O
            w      `
         /           q
                   
            @      
         ;           
                    
                  
            h       
            n       
            8      (            0      5                    B                    U                  _            h       n            n                                                                             8                                      8      /                   q                                                  @                          8                  c                    s                             /                    *                    '                                                                                        %         /           9                    Z                  t            
                  !                  A               /                       0                  0                  0                  H                  H      %                  <         -           K            @      W                                                                        @      Q         ;           l                                h               :                       `                  h                  h                   n                ,                       d                                    0                           6            !      V            `      b            .      t                              /                  D                  `                  @                  P                   R                   H                  L                  T                  A      !            A      +            2       :                  J            4       Y            :       h            @       w            6                                                     /                                                                                                                                         6                  @            h       O            n       Y         ,           h            x                                 6                    9                                           x      =            x      S            x      d                  t            A                  A                  0               $                                                                                 0                                              $            h      3                    B         7           N                  X            5      d            p      |         1                    )                                                          4                       p                                                                            5                  h       %                    4                   >                  J            W       T                  `                   m                  |                                                                                                         1           +            !      7                    L                                      }         6                    $                    2                       (                  C                  I               ,           4                           1                    )                    1                    $           O         &           k         .                   .                   .                   2                    5                                        
                             <         .          P         .          d         .                   *                       X               6           $                  b                                                                 
           >                  a            ^      k                                                                                         i               /                    5                               &                    F            ^      P                  \                              |      8                                                   |       .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                             @       !                                   @               /      P      	                    &      2               !                                  5                     k%                                     ;                     p%                                    K                     %                                   P                      %                                    Y                      %                                                          %            
   
                 	                      @+                                                         XN      b                                    ELF          >                    x	          @     @   U   HAWLAVIAUATI        SHH  HH11Aԅ1  1f}UHH  tH             <tHH@uH           ǅ       1LL\   HcAԅ      H        HI        Aׅ   uH        x   HPH        Aׅ   H   uIf1AD;D[  HcLP   LLH        Ѕt        *     1H          H        H        Z   H        1I        AL<1E1I\HxHpE苽r   I        LDHIщH)IV(@IHH        LHH        HRH        HH        P1AHHLHY^1He[A\A]A^A_]H        H        H        H        H                                no signature GPT entry %d: start=%lld, length=%lld
 gpt partmap/gpt.c no GPT partition map found no valid GPT header Read a valid GPT header
                                   EFI PARTLICENSE=GPLv3+ part_gpt                                                                                                                                                                                                       	                                       5                      D                      O                   n                                                                                                               grub_mod_init grub_mod_fini grub_partition_map_list grub_disk_read grub_errno grub_gpt_partition_map_iterate grub_real_dprintf grub_error grub_list_remove grub_list_push grub_memcmp                       d                                  F                                                             a                           m                    |                                                    u                   4                   8                                               ?                    W            8       i            4       z                                                
                                                                                    4                             .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .modname                                                                                         @                                          @                     @      
                    &                     @                                    .      2               P                                   B                           (                              =      @                     0       
                    H                                                         X                                                          ]                            	                                                                    
                 	                                                                                	      f                                  @  ELF          >                    x          @     @  
    PH        H        E1111H@XHxhH        PH        1PE1H        H        H        H        H        ZH        H8H        Reboot the computer. reboot        LICENSE=GPLv3+  reboot                                                                                                 H       <                                                                                                                  3                      >             ;       J                      \                      w                       grub_mod_init grub_mod_fini grub_efi_system_table efi_wrap_4 grub_reboot grub_machine_fini grub_register_command_prio grub_unregister_command                                 	           /          
           >                     P                     Z             ;       d                    n                     z                                                                .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .modname                                                                                              @                                           @                                               &      2                                                   5                                                           ;                                                          K                                                         P                                                                                      h      	   	                 	                                                                                      Y                                    ELF          >                              @     @   H(H        H        H$   D$aHT$fD$ʓfD$Ht$D$D$D$ D$D$D$D$+D$HtH|$uH H	$   HHt$H        H        ЅuH        H(H(H        H        HD$    D$aHT$fD$ʓfD$Ht$D$D$D$ D$D$D$D$+D$Ht> t9E1H        1H        H        H        H        H(H        H8HtH        OsIndications OsIndicationsSupported Reboot into firmware setup menu. fwsetup   LICENSE=GPLv3+  reboot efifwsetup                                                                                                                         i                                                                                                                           )                      ?                      Z                      p                       grub_mod_init grub_mod_fini grub_reboot grub_efi_get_variable grub_register_command_prio grub_efi_set_variable grub_unregister_command                                                                                               
                                                    0            %       <                    F            F       P                    \                    k                    }                     .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                             @                                          @               0      P      	                    &      2                     N                             5                                                          ;                                                         K                     (                                    P                      (                                    Y                      /                                                          @      h      
   
                 	                                                                                      b                                  p  ELF          >                    h	          @     @   PH        H	H	H<HH        1ZÅHuH        1SH        HH        Ѕt[H           1H        H        C  HC     H	HC1[PH        H	H	HHH        1ZATH        US1Ht 8mimguHHXSHHHH   HHPH9   ;uHkH        H        a   I        H        I1Aԋ{HHH        H        H        H        H        f   H        1AH        HHH        H8H        []A\H        H        []A\H        H8 t1PH        H8H        ZH        H        memdisk not a memdisk Found memdisk image at %p
 disk/memdisk.c Copying memdisk image to dynamic memory
                                                                    LICENSE=GPLv3+  memdisk                                                                                                                             &                 B                                                                         *                      A                      N                      Z                      f                      x                                                                   grub_mod_init grub_mod_fini grub_memmove grub_disk_dev_register grub_modbase grub_strcmp grub_malloc grub_real_dprintf grub_error grub_free grub_disk_dev_unregister                                 	           4                     D                     Q                     b                    s                                                                        	                                $                   .                    =                    G            1       c                    m                    y            @                                                          1                                                       	                                        
                                                                                          (                                                       +                    A                             (                    0                     .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .modname                                                                                         @       3                                   @                           	                    &      2               s      i                             :                           @                              5      @               x             	                    @                                                          P                     0                                    U                      0                                                          8            
   	                 	                                                                                	      ^                                    ELF          >                              @     @  
 HH8 tz/uH.uQHt/uH؀.u:Ht/u.HH9tHH9sH밀:/tHtHHJ/uHtHH AWIAVMAUIATUHSH        H(H|$HLHIH} H        Ѕ  HM IA$/t	t  tMl$MA<$/  II9sE1H|$AHIt78 g  HH} HD$Ht$H|H        HHu        ?  J H        LHL$HHT$LI        AHT$HL$:/uYH@2HHH@0z tHAM IHPA} tH  ILE H        H        q   YMt&HL$LHu HH        HL$BD#/Ld$LJ<#LE IH        H           1I        H        AH} AHH        H] A   1I)IIlH([]A\A]A^A_AWH        AVAUATIUSHhH|$HL$HzLD$HHD$H  HH        I        Hl$HHAHDH\$ H|$HH9sA1HD$(    8/u  HHH\$@HL$<HT$8Ht$@H|$A$   |$<  H|$@HD$ H|$HHHt$@H        ЅH|$@  L,/AE t</t	H  A} /uI/   LH        HIt  HuA}     Ht$@HH        Ѕu      1H|$PH        M   uD$<1%   = @  D$P	Ѓ|$< D$PxT$8D$PT$THT$Ht$PLHD$ЅH        H|$@   L$<1D$P    HT$@      u(I|$ t It$LD$PHL$HH|$H        ЉD$,H|$@H        ҋD$,u`|$P 5H|$HAD$(HŃ|$(uH           1H         H|$AT$H        H|$HH        Hա        Hh[]A\A]A^A_AWH        AVIAUIHzATUHSH(HHD$+  E1HI        A1HL$Ht$LH        U    |$u#LH           H           H|$A׋D$HT$D$    %   =   u1H} t*HuLD$HL$LH        Ѕt	H|$m|$ t.ALUAuKH           1H        8Ht$H|$H        ЅuH|$H|$1H|$H|$ӡ        H([]A\A]A^A_symlink redirected %s to %s
 archelp fs/archelp.c too deep nesting of symlinks file `%s' not found  LICENSE=GPLv3+ archelp                                                                                                                                                                                                                                &                      2                      =                      I                      U                      a                      m           x                                                                                                                grub_strlen grub_strcpy grub_memmove grub_strdup grub_errno grub_memset grub_strcmp grub_strchr grub_malloc grub_archelp_open grub_real_dprintf grub_error grub_free grub_archelp_dir grub_memcmp                                                Q                    d                    w                                                                                        	           K                    U                   f                    p            %                                    
                                                                                                               <                                                                               A            2       R                    o                                                                     
                                                   $            O       3                                                   2                                                                    .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .modname                                                                                              @       $                                   @               
                                &      2               d      c                             5                                                          ;                                                         K                                                          P                                                                                            	                    	                      	                                                          `      Y                                    ELF          >                              @     @   11H9t#HDAAwL    HȃL	HG    USH        PHoPH}(Hӡ        Z[]UHIH1SPH_PHWXHHP0HHW`HP8HWH        HSH;HHHDH@0    HZ[]H(H        S11H  H        H   LD$ЅuBH$     H        H        Ѕu8   H        HtHH        	   1H        1H   [ATIUHSHGH8H        Há        HtKLH        HH        ЅAtH{(H        HDH]PHC HE@1[]A\ATH        IUHSHH?HL$HLD$        Ht:LHH        HH        H        AH{(HDH[]A\AWAVIAUE1ATE1UHSHH(  HGHT$D$   HG1IVLD$,  I>I        Aׅ  |$, u$   uE H  H$-     H        H        Ѕt"H        	   1H          $   <L   H$      H        HxIH        HIHi  IF1LI>H   AHB*   IFI  I J(   A   IFj  <K   H$      H        IH@I9F0sGHHD$HH        H  HD$I~(H        HD$IF(HD$IF0IF1MF(LI>H   Aׅ  IF(B  IFI  I J    A   IF  E   H$  E1B<( tII   uI}fH        HH  $   I        tLH$  HAHB(/ILH;d   Ht$,AHBD(d H$      H        INL|$IF H  H% H   HMIVIFtH$      AHt=H$      ӊ$   E 21}0u̀5u@̠E EulI~0dw@e   H        HHu        PI~(H        I^(IF0e   H$   I~(d   H        IF(@d 1L$tdH(  []A\A]A^A_H        H        H        H        H        ustar not a tarfs filesystem invalid tar archive tarfs                                                                                                                   LICENSE=GPLv3+ archelp tar                                                                                                     9                   Y                                                                                    	                                       *                      6                      E                      P                      ]                      i                      u                                                                                                                                                           grub_mod_init grub_mod_fini grub_memmove grub_strdup grub_disk_read grub_errno grub_fs_list grub_zalloc grub_malloc grub_archelp_open grub_error grub_list_remove grub_free grub_archelp_dir grub_list_push grub_memcmp        :                     S                                                                                                                            !                    7                   H                    p                   ~                                P                                                                                                  P       (                    2                                                                                                   
                    7                    J                                                                                                             
                                                                                                    
           ;                    E                    O                    [                    e                                 1                                        ]      (             _       0             6       P             V      X                    `             -        .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @       o                                   @               
            
                    &      2                     7                             :                           h                              5      @                            
                    @                     X                                    P                     g                                     U                      g                                    ^                      o                                                          x      @         
                 	                      	                                                          H      g                                  boot/grub/x86_64-efi/gcry_sha256.mod                                                                0000600 0001750 0001750 00000013710 13417732100 0015664 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    H          @     @   g	jGgGrn<G:OGRQGhGكG[G     Gd    ؞G|6Gp0G9YG1GXhGdGOG     Gd    É11É11AWHAVAUATUSH  GDH$   DWDODGD$GD$GD$GD$HD$pHǊHHX^X^X^XH9u1   HH@uH$   H$  xHxpȉA
AD11ډ11ӉXH9uD$DDEEE1D$D$D$D$D$D$$H$   HD$ H$   HD$(H$   HD$0H$   HD$8H$   HD$@H$   HD$HH$   HD$PD<$DD$dH        D\$XDT$\DL$`HL$hDЋL$t$H        B2D<$DB4   H        1D!1D<0D|$DI        D!B;DD	މT$!	׍AыL$D4$H        AF<0D$HL$ 1#t$F<1H        1AщމA/D	D!I        D!L$	AA,AD|$<$I        t$L\$(AH        F<01#t$G<31AAAC<'AA	ىI        D!؉|$D!	E$7AD<$L\$0DT$t$H        AH        F<0D$G<31!1AEEC/A	A!E,D։ω$!I        D	AALL$8H        DB6t$I        C1D<0D$t$1#4$1AAEDEE	A؉\$DAD!E!I        D	ALL$@H        T$B6|$H        t$C1D<$1!1AAAA/E	E!A,DƉωL$D!I        D	ALT$HH        I        B6t$C2D<0$t$1#t$1AAӉAC<'	E$A!D!|$D	I        AALL$PH        $B6L$Dt$C1D<D$1!I 1H        ADC/E,	D!!$	D\$XDT$\AI   DL$`DD$dHL$h:D$D|$ED|$EDDD)DaЉiYAD$DyD$D|$D|$ADyHİ  []A\A]A^A_HG$AVAUATIUHSd@Hu+Hw$H        пH  H        C Cd    M   {d u'IM4,=HcCd?PIH͉SdAT$T$Hu11HH        HumLL)I?vHH        I@Cd    C IHH        H  A?I1L9tHcSd?JKdAHL$[]A\A]A^AT11UH        SHDc HcCdHDAA ,    AA	ԍP7SdD$HcCd7CPSdD$ HcCd?PSdD$ 11HH{$8   1H        DDc_@kcHs$H߈C^C\ C] C`CaCbH        H        H  ЋC'S$S%CS&C+S(S)CS*C/S,S-CS.C3S0S1CS2C7S4S5CS6C;S8S9CS:S<S=S>C?CCCS@SASB[]A\SH        H        HH        [SH        H        HH        [     /BD7q۵[V9Y?^[1$}Ut]rހܛtiGƝ̡$o,-tJܩ\ڈvRQ>m1'YGQcg))
'8!.m,M8STs
e
jv.,r迢KfpK£Ql$օ5pjl7LwH'49JNOʜ[o.htocxxȄǌlPxqSHA256 SHA224 2.16.840.1.101.3.4.2.1 1.2.840.113549.1.1.11 2.16.840.1.101.3.4.2.4                                                                                      h       @                                                                                     h       @                                               010	`He                               0-0	`He      LICENSE=GPLv3+ crypto gcry_sha256                                                                                                                            -	      '            T	      '                                                        	                      
                              `       6                      G                      N     `       `       g                      z                       grub_mod_init grub_mod_fini _gcry_digest_spec_sha256 _gcry_burn_stack memset _gcry_digest_spec_sha224 grub_md_unregister grub_md_register                         H                    e                                                                                               %                   ;                   l                                                                                                                  a                   x                                                                                               B                   W                                      U                   f                                8                                             N            8                                             *                    0	                    :	                    I	                    W	                    a	                    p	                                                                                  (                     0             8      8             E      @             3      `                    h                   x                                 F                    8                   E                   3                                       %                    ;        .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @       {	                                   @                                               &                     	                                    .      2               
      R                             B                            #                             =      @               @                                H                     H                                    X                     W                                     ]                      W                                    f                      ^                                                          p                                	                                                                                      o                                                                                      boot/grub/x86_64-efi/acpi.mod                                                                       0000600 0001750 0001750 00000040070 13417732100 0014543 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    <          @     @   ATI        US1H        H;hhs:Hk   H        HHxpAԅuH        H@pHD(1[]A\ATI        US1H        H;hhs:Hk   H        HHxpAԅuH        H@pHD(1[]A\H1@<@@<tH9uu/HcH   H   HFHH9vH)HH9AsHA1H        ATH        USH8HtH        H        HH        HtH;LcHLH        H     H        H     []A\1HH9sHH        HHHuH        H: uH        H        HHHuH        H: uH        AWAVAUATUSH(HD$    HD$    ,%  HcHt]     M1ۍCHt$H        I        
D$H        Ld$   1H        H        H        MAH|$ H        9  Hct$   LH        ЅD$u          ۺ   tHLH        1LH        H        fA$IH        HItx(z  LE1=L8   H        HՅ  HAELH)HH   H9rH$    M   I$  H        H           H        1AH9      H        HH        Ѕu_   HH        ЄuGL   HH        E1IH        H           H        1AHm1MI$      H        H        1  H        AAULH)H   H9so19~H| tHIH        H          H        1AAULHH        AEH,$E1HDHHhM   H        H          H        1AI$  H9s^1|    HHuIH        H          H        1HALE1   HH        MuMuLM$  X|$H        H           1H             H        HH        ЅtHL9r)   HH        ЄuH9tH;,$tE  IH        H        4  H        1A1fD$%  H        H        6  H        A1   H        H           H        1LAH        y   HH        ЄY{ OAU9SBLHH        I1H        H           H        AAEH$E1HDHHXHH([]A\A]A^A_AWH        AVAUATUSHX    H            H        t$     H        HT$H     H        H_H     H             H        HHuH        HH;  E1; t6H{H        HItHtpH FHBE1{ t6H{H        HItHtpH FHBM1҄У        ȣ        EHD$H$H$HL$AHH9$d  H$(D$D 1T rJ FHT?HuH        H|$@H        Ѕ  I        Hu
   H        AHu   H        A׋EHu   H                ADu(E         M   MuMu!<H        LH        Ѕt_H        LH        ЅtBA~#v9HH        H        HH           AVLHA׋E$        MuMu :Ht$@LH        Ѕ   Ht$@LH        Ѕ   }#      I        AHIu"H        H        LL>}HxAIVHIH        Hȣ        uH        С        1
  H        HLH        HH        INH$LH        LՋC u{0 t6{0         H        t   E£             {@ tHsH   H        H        Ѓ{P tHsX   H        H        Ѓ{` tH{h11H        У        {p tHsx   H        H        Ѓ    t H   11H        У        Ld$$    D$9$  I<$H        HIhHh@I        H#w8HAH        I$H           1H        g  HH        HIuLAHHLH        HcLH9tHAH        H        8 I$H           1H        Aֺ   H        LH        Ѕu5H        H8H        LH        HH        [   H        HHL(HhH        Չ        H        HHH        HQ$I@H        H1HtHRH        H        H	E1   T\   D$HT$,        HcH        HH        H        u.H        H           1H        k  H        HHI        H        I        H1I        AH        H8AH        H        HH        HH        H        L0M   IVI6H        H8AI>AH        H(   H        HIFI.HH        AׅuM}H        H        U(E$vH   H   uE	 HH        ؈E	MvJH        H1HtHRH        H(H        HHLu$H        HcLx	JD AH        AH}
   H        D}EAH}   H        Aԡ        H}   H        EAԡ        E H        HtHIAVH@uE	 HI        A؈E	H        8    H        HH        HQHHH        Hк   H        AH           H        Hx	AH        H(H           HE EE AH        H        E  H        1I        AH        8   H        H0E1HHt	AHRH        H(IcHT$HHU$H        HtHHHJHv   H        HAB$   H}
   H        EEAH}   H        Aԡ           H}H        EAԡ        uHE	 E AH        E	H        HHQ$HHH        Hк   H        AH           H        Hx	AH        L            AD$H        LAD$ AD$Aؾ$   LAD$AD$$   Il$AD$  AH        H        AD$   H        1I        AH        H8HtHoAH    H        H     uKH        Ѕt9H        |$,H        H     H        H     ҉   H        D$@qhfD$DfD$FD$HD$I"D$J D$KD$LD$M<D$ND$OH@`D$00-fD$4-fD$6D$8D$9H   D$: H        D$;D$<'D$=?D$>D$?MH|$@HH        H@`H   H        H|$0H1HX[]A\A]A^A_1PI        I        H        H        H        H        H        ZH        H8H                            x                                      n                                      1                                       2                                       o                                      t                                      r                                      c                                      d                                      e                                                                       creating ebda @%llx
 acpi commands/acpi.c couldn't find space for the new EBDA RSD PTR  Copying rsdpv2 to %p
 Scanning EBDA for old rsdpv1
 Copying rsdpv1 to %p
 Scanning EBDA for block of zeros
 couldn't find suitable spot in EBDA Switching EBDA
 EBDA switched
 Scanning EBDA for old rsdpv2
 facp dsdt premature end of file %s DSDT couldn't allocate space for ACPI tables FACP RSDT Generated ACPIv1 tables
 XSDT Generated ACPIv2 tables
 Load host ACPI tables and tables specified by arguments. [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] exclude Don't load host tables specified by comma-separated list. load-only Load only tables specified by comma-separated list. v1 Export version 1 tables to the OS. v2 Export version 2 and version 3 tables to the OS. oemid Set OEMID of RSDP, XSDT and RSDT. oemtable Set OEMTABLE ID of RSDP, XSDT and RSDT. oemtablerev Set OEMTABLE revision of RSDP, XSDT and RSDT. oemtablecreator Set creator field of RSDP, XSDT and RSDT. oemtablecreatorrev Set creator revision of RSDP, XSDT and RSDT. no-ebda Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB.                qh" <0-- '?MLICENSE=GPLv3+  extcmd mmap acpi                                                                                                                                                         M                                                    	                      
                                   0                      F           2       [                      h                                                                                                                                                 c                                                                                             )                     G                     W                     f                     x                                                                                         2                                                     c       c                                                  grub_mod_init grub_mod_fini grub_byte_checksum grub_efi_system_table grub_acpi_get_rsdpv1 grub_memmove grub_mmap_free_and_unregister grub_strdup grub_unregister_extcmd grub_mmap_iterate grub_errno grub_memset grub_machine_acpi_get_rsdpv1 grub_file_read grub_mmap_register grub_strcmp grub_malloc grub_mmap_malign_and_register grub_file_close grub_file_open grub_real_dprintf grub_acpi_create_ebda grub_strword grub_mmap_unregister grub_error grub_acpi_get_rsdpv2 grub_free grub_register_extcmd grub_machine_acpi_get_rsdpv2 grub_memcmp grub_strtoul              &                                -                    E                     g          &           u                                                                                   &                    :         #           F            (       S         #           u            (                                       H                   P                %                       P                   H                           `                   j                    {                                                                                          *                                                                                     ,                    @         "           p            O                   n                                                         O                &                               2                  D                   N                   ]                                                                                        X                                                               B                   L                   [                                                                                                                                               !           #            O       0         &           S                    x                                                                                                                                                                                   &                               K                  \            X       f                   u                               |                   x                                      8                   @       $            0       4         %           H                    l                                                    |                   x       N	            %      ]	                    q	                  	            p       	            h       	            \       	            `       	            X       	            *      	                    
            *      
                    6
                   @
                    O
                    n
                   
                    
                    
                    
            "      
         #                       0       *            0       6            "      A                    P            (       `            (       m                           #                       |                   x                   x                   p                                      h                          6         '           A            `       Z            \       d                            '                       X                                                           "                  /      	         !                               E                    _            "      k                                /               !                       H               &                                        #                                                                      "            0       1            0       ;            (       K            (       e            (                                      0                   0                                       8                   @                   "                  M               !                              &                  0                    :         #           G         &           T                    d            8       n                   {                                8                   (                   8                   8                   u                  8                                              ;                    U            (       q            8                   z                                     8                   p                   h                   `                   \                   X                   (       G                    Y            |       l            8       y            O                   P                   8                   P                   p                   P                                                                                  #                    0            x       C            (       d            8                   8                                     p                   h                   `                   \                   X       -            O       :            8       Q            H       c            8       p            H                   p                   H                   x                                                                                                      *            (       O            (       b                    t            P                                       H                           %         "           T                    i                                                                                                                          $                                                                                     ?                   G      (                   8                   P                   `                   x                                                                                         A                   J                   r                   ~                        (                  @                  P                  h            &      x            .       .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                        @                                          @               "                                +                     @                                   &      @               h:                                3      2                                                 B                                                          H                                                         X                                                         ]                                                          f                                                                                                                	                             %                                                   H<      o                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/gcry_sha512.mod                                                                0000600 0001750 0001750 00000016250 13417732100 0015661 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    (          @     @   Hɼg	jHG@    Ǉ       HH;ʄgHGH+rn<HGH6_:OHGHтRQHG Hl>+hHG(HkAكHG0Hy!~[HG8H؞]HG@    Ǉ       HH|6*)bHGHp0ZYHGH9Y/HGH1g&3gHG HXhJHG(Hd.HG0HOHGHG8HHHHH$H1H1HHHH.H2H1H1AWHAVAUATUSH@  HG LLWLOH$@  LGHD$0HG(HD$8HG0HD$@HG8HD$HH$   H@>HH@x@~@x@~@x@~@x@~@x@~@x@~@x@~@xH9uHEpHp  HHxHHxHpHIHH-IL1H1HHHH?H8HH1H1HHXH9uHD$@L|$HLLd$8LD$1LT$L\$H$HD$0HD$ H$   HD$`H$   HD$hH$   HD$pH$   HD$xH$   H$   H$   H$   H$   H$   Lt$ L$   H        L$   H$   I        L$   L$   LH        LLH*HH#4$H,   L!Lt$ Lt$H1HLIAHt$HL$I        Lt$LHHIHH!H1L!L!HT$(H1LHJ>MHD$AL4$L\$`LL<$HL!IH        L4(LH#D$ M4+L|$H1LIAML#|$LLH#t$L\$HL1H3t$(HN6MI        ALL$hIIIH        LL$(LH$H#t$ M$)H!H1IALL#t$H|$Ht$(H#t$H        LH|$L1L1HIL|$ HL$pLIH        L<(HD$L<)HH!HH#4$H1IAH|$HL$(I        HT$L!L!HLHL$PH1L1HJ<>IH|$HAL\$xH        H$H.LLHL|$ L|$I+H!H#L$LL4H1IAMLI        LL$L#L$(L!HHT$H|$XLM<H1H3t$PLHJ6HT$AL$   H        MH.ILH#t$I*HHD$ L!H1L43H\$HAHH#\$I        H|$L!HHH\$(H1H3t$XHT$(LIH$LHAL$   H        L$H.Ht$LHI+L40LLHH#t$ L!H1IAHt$LT$MLI        H!I!ILL1H3t$(LL$PHJ0HT$AL$   H        HL$ H.H|$I+H@L4LH$HHL!L!H1IAHt$LT$L$   L$   L$   H1H#t$KH3t$PL$   HL$ H$   HH  J6HD$jIHD$ HD$0Ld$8L|$HLHl$LD$LHYHA H$HD$@LLa(HiLALy8HA0H@  []A\A]A^A_HGHAVAUATIUHS      Hu/HwHH        п   H        HC@ǃ       M       u-IM4,CHc   PIH͉   AT$THHu11HH        HuwLL)Iv#HH        Iŀǃ       HC@IHH           AI1L9t"Hc   J   AHLH[]A\A]A^AT11UH        SHLc@   ILHcI9HHI H,    H=II	̃oR   DHHc   oMP   DH Hc   P   DH 11HAH{Hp   1H        LD   @   HHsHH߈   Hƃ    H8ƃ    ƃ       Hƃ    H0ƃ    ƃ       HH(   HH    HH   HH   HH   H        H           HHCOH8SHHH0SIHH(SJHH SKHHSLHHSMHHCHSNHCWH8SPHH0SQHH(SRHH SSHHSTHHSUHHCHSVHC_H8SXHH0SYHH(SZHH S[HHS\HHS]HHCHS^HH8S`HH0SaHH(SbHH ScHHSdHHSeCgHHC HSfHCoH8ShHH0SiHH(SjHH SkHHSlHHSmHHC(HSnHCwH8SpHH0SqHH(SrHH SsHHStHHSuHHC0HSvHCH8SxHH0SyHH(SzHH S{HHS|HHS}HHC8HS~HH8   HH0   HH(   HH    H   H   HH   HH   []A\SH        H        HH        [SH        H        HH        [              "(ט/Be#D7q/;Mۉ۵8H[V9YO?m^BؾopE[N1$}Uo{t]r;ހ5%ܛ&itJi%O8GՌƝew̡$u+Yo,-ntJAܩ\SڈvfRQ>2-m1?!'Y=%
GoQcpn
g))/F
'&&\8!.*Zm,M߳8ScTs
ew<
jvG.;5,rdL迢0BKfpK0TQlReU$* qW5ѻ2pjҸSAQl7LwH'Hᵼ4cZų9ˊAJNscwOʜ[o.h]t`/CocxrxȄ9dǌ(c#齂lPyƲ+SrxqƜa&>'!Ǹ}xnO}orgȢ}c
?G5q}#w($@{2
<LgCB>˾L*~e)Y:o_XGJDlSHA384 2.16.840.1.101.3.4.2.2 1.2.840.113549.1.1.12 SHA512 2.16.840.1.101.3.4.2.3 1.2.840.113549.1.1.13                                        0                                                                                             0A0	`He 0                                            @                                                                                             0Q0	`He @     LICENSE=GPLv3+ crypto gcry_sha512                                                                                                                                  '                  '                                                        	                      
                                       .                      5                      H             `       a                      r            `        grub_mod_init grub_mod_fini _gcry_burn_stack memset grub_md_unregister _gcry_digest_spec_sha384 grub_md_register _gcry_digest_spec_sha512                                                              _                                                       2                   v                                                                           d                              (                         <            0                                     8                   6                          c                              6                                            	                    U
            6      a
                                                                                                    (                    7                                                                           `       (                    0                   8                   @                   `                    h                                 4                                                                                                                                          ;                   R        .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @       B                                   @                                                &                                                        .      2                     h                             B                           3                             =      @                                               H                                                         X                                                          ]                                                          f                                                                                                                	                      x                                                                o                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/adler32.mod                                                                    0000600 0001750 0001750 00000003610 13417732100 0015062 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    H          @     @   f fG  ËfvffGfvfGG	ȉGHG1H9tXDDAEAA  CfDOGDACEDfEFADA  DCHfDGH        H        H        H        ADLER32                                                                                         @               LICENSE=GPLv3+ crypto adler32                                                                                                                                                                                                          	                                       0                       grub_mod_init grub_mod_fini grub_md_unregister grub_md_register                                                                                 
                                 (                     0             B       8                    @                     .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                           @                     `       
                    &      2                                                  :                            `                              5      @               h      x       
                    @                                                         P                                                          U                                                          ^                                                                                                
                 	                            A                                                          g                                                                                                                                                      boot/grub/x86_64-efi/gcry_tiger.mod                                                                 0000600 0001750 0001750 00000032350 13417732100 0015767 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    h1          @     @   HͫgE#G\    GX    HH2TvG`    HGHôHGHͫgE#G\    GX    HH2TvG`   HGHôHGHͫgE#G\    GX    HH2TvG`   HGHôHGH3
ATI        I        McUISIH        IEHIJ3IH(I8@IK3I        EI3HOHH @L3M3III0[EO3]L)HA\H
AWIAVIAUIATIUDSH        H HH	H|$HD$HHt$HD$HHT$HD$IL$AHT$Ht$H|$IL$AHT$Ht$H|$IL$AHT$Ht$H|$IL$ AHT$Ht$H|$IL$(AHT$Ht$H|$IL$0AHT$Ht$H|$IL$8AHT$Ht$H|$HD$IHD$IHD$IE H []A\A]A^A_ULHSLO8HwHO0L1I)ML3_LHoLHLHH1H)IL3W LH_(LHHH1H)I1LMHLHL1H)HGH1HGHHHHwH1I)HͫgE#LW I1LLW(H1HO0I)LO8[]HGAW@   H        I        AVAUATUH        SHHhH|$ LsL#HL$ LkHT$Ht$A   H|$Ld$Lt$Ll$H|$ AHL$ HT$Ht$A   H|$H|$ AHL$ HT$Ht$H|$A	   Ll$L3d$HD$L)LkL#HCHh[]A\A]A^A_AVAUATIUHSX@Hu+HwH        п   H        C\CX    M   {X u'IM4,=HcCX?PIH͉SXAT$THu11HH        HumLL)I?vHH        I@CX    C\IHH           A?I1L9tHcSX?JKXAHL[]A\A]A^AUAATI        USHR`DE11Aԋk\HcCXL D$    	ՍP7SXDlHcCX7CPSXD HcCX?PSXD 11HH{8   1H        DDcP@kTHsCQDAHDcSCR@kUH        CV CW H           Ѓ{` HHSHC   HΈKS'H8@sHH0@sHH(@sHH @sHH@sHH@sHHH8HK H@sH0K!HH(K"HH K#HHK$HHK%HHH8HS(HK&H0S)HH(S*HH S+HHS,HHS-HHS.   HΈKS HC(@sHH@sHH@sHH @sHH(@sHH8KHH0H@sK!HHK"HHK#HH K$HH(K%HH8S'HH0HK&S)HHS*HHS+HH S,HH(S-HH8H0S.C/X[]A\A]SH        H        H        HH        [SH        H        H        HH        [       U<2&`[YFL|EU)YQe¯5v
E=~
R{YSVHCo\z^N5o>֜"i t
F@ln:$IpX=$ac2D}٫[KZIm-O5ԓ@eKڿ* |$|2šn	f6fi}!å}':Ք"dۉaļ3=jL꛹\BTKqjj{"̨1+G8$_FXHy(Asw!E\ pkz8Pd o`v
b]0ZT_"2[GhO- +ٹyC-SH~;/Gxs	
Ba 9.*+e9"`%n&0qv>e&p61ɱtP\YpBJyl%YNthlqg0sw
a/Zۻajg>Q郞Krd	\7uӱ4]%354BЯ~P*5DėЙ I{ADŷ;&lj/u,@rٕT*=r/UBxN31,b|O	]f/US]'?A@lFYߒ7?^.7 Ἥ)1\D>AxҠxLɥ(w(.A9,ɯ^&%jw¼m:7[gJЙTҿ4R}do[at>'ܬ@aW7ZwibRV=F:dnC?Ȟ~0w'LH3,/CoݧGf`ǲd7%rvpN-=CCO#"m9<6i"6^Lxк8FR8z38ǊtHJgͭlǟ43	N_#Y)_&J4n*:8EW,k /xuoybZS) {Bt#tv+`St£vKcj<ɼEm>!GM'}Q)?Pskkhc;=ۡUVK\n5QNh>hKOR?6Fn^PqЙq<NeZ.hV^]zy#q{᝹.#E3!RפYr|V8u=c髍59r޷-IbAUk[M.m~īW?5ΐViWs9BJ#
(PzM4Q1X{"<w3VE6$hLx-e4;'Lk bv}͚Cwg[y 6u@m9z1o!8J%0b4f;$| rӶJǾMċIfGu*|sXa,	Uu}ݯmƭ;)Tq$MXO'b[Q:&.	F I2cπlSW$kQGϜ~(A\DN^%G0+]*!)	굏ZW!{gXJLgӉ;Kߤ-)H2R,X]ʃ`Bڥk_?q7g.R1IXSTH*fi-ܢ+<,{#7O|TMpW~쭐T::'<+ 0~ m2Ɔ@i}(z0_zyyDhsWnxנͺ/djf^!<ciHD>d;1ջ_ܠEce&(Q?`]IP@Mvpl+UA6ZpD`OuM(CVeP_Sב%
r#2cso9Û/̟oH?gcK,»K?fpe/ԓyq^w;9rP^
@8	#y5ūƖrZ7cAf'qܫt!ArJ<f03IJ(
^1薏G]v"ݐa{PMXHuIaSO5ҁ}$閅u0r'5-ks&CcTX;Z2R\#F\2SgН4QM$Q O~.
"dH99ηp,#Zh/dyp]THݹ[	uQ:gRP|N]ɢlL]}gS4*Ix넧ftТ;dQ"|VRčh&w8E;ʹ8wi.F18m@؏O<ɘ/ګJ>Zds;_uU%~N t/SqX0Nvbn= oY&YŨ=)eLMn3_'G?3@k9,4%CRb~ZaUfo	,Ӓ-ZEtGI򺞣3cbTn@&T;jV+--n	k	R:˜BYE1b6sHk
zW jDgFux)hO">q";.W0/?|ìFϟ`.3:HajnBب\stJRsIgӛ$~D6	elyC}ɹ(toVaG{_[zox0cjzЛJK+N>Vj4Y7(L05q9zhzi5B-(vyzݥ7]	<CSO١|Swl? G|@B}X{8Ove1#9sD"*KPץ\.6L+<X{m[p2vݵ)r+6 wNjW'iCq2c$206B1,18qv
\6m0?M fxuF{?mX;4+4_	%Ez$wtM.J
浽Cyp~*@'-"LcQ
3R:~5d}Wxiw2LN x  jAAl((kO҃nDl_&AMVG=濭D`_m >9XF:rTǜ&=2|,#dvBG$U8VvG-g^(M1+De|Ǒ+6,UFN{_\ECaS [^Ԩ!b*WAӼC%ƤDbee3!HT!cm^>įwr:r {N>U!ʦ`Pö~h^Ǳl7<=*.ծx`.b㣆=Q9&5*n}3WؗbY簍!)~)  UE:pl+B%kY̔VT"s
`<=Ė[Ŝ4U!8xj$Ph)#ly|Sܰ(᪮)K=I:וhA,kߵ7-%]Xp*7\?QMR[%Q<4)@<]o[t>BY/yP'7`}Z^#ӐmHV{2Pn!5η6JK$z*'iUL7%K]ەK/iӒfJFishI_fdD}'u\ak̕뼹 OgYeu#1oE>qZWTa@`ĺoLEidIAp[&;ӞW`m8!Z|"i`<V]9.FL4ۭ2 pG>geי'~uĒn-;e.oJQ=7*
O)\>S^PE Ϡ4ʇQ~6Qĳ84̉WY?ŕ"=T3*fv{A6SA%w".F_lHnTܯƿ1ٷ*'ק@ż
mVmxty*x%5ӛ	]8Apq
\bOХkT+bY}E575r^ 2`+/g,y,d$ѭ	&jPKjxZCLc6"fJG{ªsjXzf&ʑvVguH\?[ mtn(QDG4^.a箠,@eQd3Knrb) ;p01FlK~Ód}w!{sk.1cwoHRScLR\ jd]hj,Q:`V8b~6ױwYntslRKsZsU?IEA0SY
GX2F_-6+ e}O`n$,x⊚ȶ*{r'GM!~GpVCouIhZaBԭzNUPߡ*V/:&֏M:Ju=ʙ<{G-qSph^(\7
ŀe7C(PMo@v;0,7iCfεN!fsۋaMWֺ)}[%>a?-	yW;5axԫ&}r>kc0JJ	 շj?&WB-=r`yI3ABrƜ6 |
%45IN)N$PF̊cc/xEz]|5FcNd[ -szB&%!PQlH9ע˴], u|al[ؕ+i`2A_hBVݹHҤoI/ 1X#,Ҧ۪jWk]'Ky+[;D19Y2-K ktǁ0uÔ	{Ìg9)/B|vK$g=fWXgzɢWl{կOkbLߔ:H[7<Blc@onRNmo1#|$(Eɂ#Y[W@hrE>/;˨#)}uD͟&ѽ(9fJ!|z)<beDh#񛫎X#@X=_hp#}0OdepRt3	^(?=S	ȹTYm0@;iS?U˩^+5'!)zN7v("O'P9^:qȿ#."hgҰԣqӵU:i_3խH\ʡI;tĘ4w%T<y3(j"'`_mu_Iqw`S蛿=DǭsaE	^2fzX:gU*wɶ9A5ڟm!{d'U\V6ē9xwFbi$>ZvtR΃DR?[ZZC3 <$Fn/a7ZeLkJCkyboMT̺l>%O%.8ދֆTvJ]E+0Mp< 1m>GߟÍ~R8B@KD~<C Hx:Ov$r86tiLN|+2M/L&C3˼X~L4ٓ2Q_DTUd]
}1APYi8
U4-qqIMyq.*\"^|CKB[r:mx)pɡsuÃ*k2dpX>Fq\SiA|ލTL
MojZ#/W!aroH KAR&GYyŅOKov}RB6c07'hinŴ=vv}BƜ\dB3$x8}.<4k_`Tr_lOۤ"YqigEeR`yNH-;SvlS{5mW7zzfPq5JBt
j$%/9w*윴s/8Q?V(CXE\=i_׶3Dɱ&<"+;1TY e@ϣ&N5# +Nuc5՝F@@L:z.j>j?k`(Fn=e*"bGU]*逸ĆQÄ|mXS(v^,&Ґ˔u*d>߯X#(ѧ0Qo,FN*q|3{>9enmty)3q]8[duH|g{|1=K#lMIXq&8cMGbsFE`U4ΏٔʺHhow0$cdn+}3%(pKBk,m	ˁ7=ofCUQǀ1+/ߺ2h\V=Uk_夿κ
A2]Ds4Z𖦼l(e$JR.QZUםNy%3>[) TsG~A4$)mS}598`}Ggvݪ닓bzy)'a1bM\E΄^!b3䓂,,, ZGϣYDRv $ը&]>9jUKcGl:zݞfƞQ#IѢWqE}"LA2_.n:\^au{)6ë/@L]ߥHً>~?WӠEt%.Ѣ^RfIzhΐ.;_t	  ֳw7Bn~fϪM5x+J(-gO
]sQ&"aV/8Z0UNb'6%1Fp{eO9޲CT0?#<u4OUpTVOJtj䲪LpM)od1@h*WkaZZi/pӛZ?l@IM,T	\ͅ!ŴAbDܷ5?ӎ4@[![)Y	r;ڜ]:ͬ-s qԄ r
C!9	~^<^DW~Oԃ`GÇ><oWLF27e| ~YhDYa[Դ/vwЮ[P=L^uhߴ"N!.S*		92P47Mr B #iĈF[xi$L{5!{@ξXf+.'ް%A&6wK{d91X$6-܋hV<`Q6ҊY'_
g˩	CJˡ6pKVxR?JywPP8c:xgzbP?wIDJy;k D-T,C<\fg7+a#'y'V%ჾI~!e|HmkE4Sݚj"
 "VnP]7X<±Oju}ns%l:E0ir-JC81gx;2r;t'6cRN
3_P̢ͥ0-tISmW-(AHfַ2wI:ltac~ؕ=d;+ H0zx`TIGER2 TIGER 1.3.6.1.4.1.11591.12.2 TIGER192                                                                           h       @                                                                                     h       @                               0)0	+G                                                                                     h       @               LICENSE=GPLv3+ crypto gcry_tiger                                                                                                                             #      3            V      3                                                        	                      
                              `       6                      =            `       U                      f                      m                                                 `       `        grub_mod_init grub_mod_fini _gcry_digest_spec_tiger2 memcpy _gcry_digest_spec_tiger _gcry_burn_stack memset grub_md_unregister grub_md_register _gcry_digest_spec_tiger1                                                                                                          a                    k                  |            h      Z            X      k                                =                  X                          U            =                          '            X      ;                    &                    0                    <                    K                    Y                    c                    o                    ~                                          (             ~       0             =      8             J      @             S      `                    h                    x                                 ?                    =                   J                   S                                       $                                        =      (            J      0            S       .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                          @               ,      X                          &                                                          .      2               (      -                             B                      )      P                             =      @               H/                                H                     P*                                    X                     _*                                     ]                      _*                                    f                      f*                                                          x*                                	                      @,                                                          0      o                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/affs.mod                                                                       0000600 0001750 0001750 00000020120 13417732100 0014540 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   HHH9t*xHHH?ɀHHUHSH        PHGPH   H}PH        H8H        Z[1]ËWGiɀQ k< ?2   1AWAVAUIATUSHH   H    H/uNG$  1҃	  xH        HHHH      Sǃ       D  D1AAǋ   D`AG  L   H   A9sbAD$8  A4LD$H        HH   HH        8 t1q$   H   DȉD   A1D苵  AH        H)H   C4LD$H   H        8 uT$ʉH   H[]A\A]A^A_AWAVAUATI        USHHH  H/   Ht$HT$AHIuD$     HLt$<   HHL|$L   H        AׅD$uH{ t>   AHItHsHǹ<   HL   H        Aׅw  HAHI^  sM  H      I        HHHAH        8   H$   $    Lt$HD$($;    $EE  AEE    DH   HLD$x8  HD$H   HH        8 _  L;   H        HI   DpL8   HX$   H|$;Ht$(A   HHFH        I}  2   Ht$xIEHD$ A   =   t&w   =   =t   =tn      bA   LD$ 8  HD$AuA  HI   H   HЅAt:wLH        x   HL$LH|$;HD$ЅuE1D$0  Ao$BLH        LH        LӋD$HH  []A\A]A^A_ULGPHIHEP4RMXHO`HWXIxAEH   j E  APARI        ARVLL@H        H0AVI        AUIATU   SL'A$  HcH}AHH   AuA$  II$      H        I        HHH        8 u+ H|-AHIuHAdHHHH        M  H        1H        7  H        I        AHAA<$:Lu	A$/1[]A\A]A^AUH        A1ATIUHSHӺ   HHЊ$AH   	Ѓ$H        H߉D$H        HUHLU H[]A\A]AWH        AVAUATI  USHHI  11I        1M   HLI        AH        8 n     H        LH        Ѕ;  AG0  Hu    H        HH  E1AwDA   ADT$1McILL$HLA֡        L$DT$uH                   ;      {    I1B|   urL9su\E  M   I(C   HMIG     A  AGAGH        H        HL_AAHHb        tuH        	   1H        LH        H1H[]A\A]A^A_AUH        IATUH        SHHH8    H        HH        HHuH        H8g@  LD$H     I        ȉHH   HpH        H        8 t H        H8HAԡ        ,H|$H        AE H        H8HA1H[]A\A]ATH        IUSH   HH8H        HH        HH   @  LD$H   8  ȉHH   HpH        С           $      HHFH        H|-HI$t'HH$   HH          I$    H        H8H        H        HС        H   []A\AVH        IAUI        ATUHSHH8H        HD$    HEH8H        HH   L`HT$A   I        H        LLH        H        HT$8 u.B$Hֹ<   LȉHE@HAH]PHE    13L9tHAHAH        H8H        С        H[]A\A]A^AUH        IATUH        SHH(H8H        HT$HL$HD$    H;H        HHtpL`A   I        H        HT$LLH        H        8 u HT$H        H|$H        H|$L9tHH        H8H        С        H([]A\A]SHH        H        H        HH        [H        H        . .. Symlink: `%s'
 affs fs/affs.c DOS not an AFFS filesystem                                                                                               LICENSE=GPLv3+  fshelp affs                                                                                                                                3                                                                          	                                       3                      @                      M                      \                      h                      s                                                                                                                                                                                                                                                   grub_mod_init grub_mod_fini grub_fshelp_find_file grub_strncmp grub_memmove grub_disk_read grub_dl_ref grub_errno grub_memset grub_fshelp_read_file grub_fs_list grub_zalloc grub_malloc grub_real_dprintf grub_error grub_list_remove grub_free grub_dl_unref grub_list_push  =                     [                     h                                          b                    |                                                                                                                                           '                                                                                                                        %                                                                                                                       '                    [                    m                   y                                                                              	            x                           B                    r                                                                        #                                               2                    J                                                            	                    ,	            '       =	                    L	                    p	                    	                    	                    	            >      	                    	                    
                    
                    !
                    5
                    F
            x       V
                    z
                    
                    
            >      
                    
                                        D                    ]                    j                    v                                                                                                                >                                                    
           ,                                                                                                                                                        >                                          4         
           @                    T                  c                                                                                                                                                                                                                                                                 (             J      0             6       8             v
      H             l	       .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                          @                     x	      
                    &      2               4      >                             :                           P                              5      @                             
                    @                                                         P                                                         U                                                          ^                                                                                               
                 	                      x                                                               g                                                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/gcry_twofish.mod                                                               0000600 0001750 0001750 00000102130 13417732100 0016332 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    ؀          @     @   USJBZDB	DJ1AA1B1B3  1B1B1B
3  DA1BA1BA1BD3  D1DJRD1A1AF   D3D3   3  D3   AB3   AA3   EB3   A  DD  1DE1DED   LF3EAD3   EF3   AAFF3   AAD3   EF3   Aʋ  CD  D1AAAA1F   D3D3   AELAD3   DB3   EA3   EB3   A    1DD1AAF   D3D3   D3   B3   AA3   EB3   A  DD  D1DA1EAAF   D3LD3   DAD3   B3   AA3   EB3   A|  D1щڋx  DD1AAF   D3D3   D3   B3   AA3   EB3   At  D1Dp  DE1EAAF   D3LD3   DD3   B3   AA3   EB3   Al  D1ȉًh  DD1AAF   D3D3   D3   B3   AA3   EB3   Ad  D1D`  ADE1EAAF   D3LD3   DD3   B3   AA3   EB3   A\  D1؋X  DD1AAF   D3D3   D3   B3   AA3   EB3   AT  ADDP  1DE1EAAF   D3LD3   DD3   B3   AA3   EB3   AL  D1щڋH  DD1AAF   D3D3   D3   B3   A3   AAEB3   AD  DD@  1DE1EAAF   D3LD3   DD3   B3   AA3   EB3   A<  D1ȉً8  DD1ˉD   B3AA3   EB3   AAAFF3   AAD3   EF3   E4  DDD0  1EDE1EAAF   D3LD3   DD3   B3   AA3   EB3   A,  D1؋(  DD1AAF   D3D3   3   D3   B3   AA3   EB3   A$  DD   1DAADFAA^DF3  AЈVADFAAVDF3  D1ɉʈNV	NV
3  0   FVFH        V[]USZBJDB
D$  1A1B1B3   A1BAF   1B1B	3  DD1DBD1DBAD1D3  F3AAD3   EF3   AAFF3   AAD3   EF3   DREED   EAED1DBAE1DRRE1A1D3  AE1AAEF   D3D3   D3   DDLF3   E,  AD3   EF3   GD(  DABEA1D1AEAAB   3LD3   D3   AB3   AA3   EB3   4  Aҋ0  D1D1DAAF   D3D3   D3   B3   AA3   EB3   A<  A8  DED1A1EAAF   D3D3   D3   DDLF3   E틏D  AD3   AEF3   DEAʋ@  D1щCA1ADF   D3D3   D3   B3   AA3   EB3   AL  AҋH  DE1E1AEAF   D3D3   D3   DDLF3   E싇T  AD3   EF3   DEAP  D1ȉC
A1ADF   D3D3   D3   B3   AA3   EB3   A\  AʋX  D1AEE1AAEF   D3D3   D3   DDLF3   Ed  AD3   EF3   DEAҋ`  D1CA1ADF   D3D3   D3   B3   AA3   EB3   Al  Ah  D1AEE1AEAF   D3D3   D3   DDLF3   E틏t  AD3   EF3   DEAʋp  D1щC
A1ADF   D3D3   D3   B3   AA3   EB3   A|  AAҋx  DE1E1EAAF   D3D3   D3   DDLF3   E싇  AD3   EF3   DEA  D1ȉC1ˉDDӋ   B3AA3   EB3   AAFF3   AAD3   EF3   AF  D  D1EE1AEAF   D3D3   D3   DDLF3   E  AD3   EF3   DEAҋ  D1C
A1ADF   D3D3   D3   B3   A3   A3  EB3   A  A  DE1DAADFAAVDF3  ڈ^V^V3  FV	FV
3  0   D1ɉȈNFNFH        []AWBAVAUATUS   HHI  H        8 u    H        H     H           H8 H  t=H        HH        LcB DA-HcMcD$\$B 
E11D$ F\$ tZH        HH        DA-DIDMcMcF< D      HcD0|$AMcD2<F2$B2 D|$ Ft[H        HH        D   McF< D   D0|$McB2 D      HcMcF2$ 0D$ FtUH        HH        D   McF< DAD0|$McB2 DA=   HcMcF2$ 0D$ FtUH        HH        D   McF< DAFD0|$McB2 DAf   HcMcF2$ 0D$ FtUH        HH        D   McF< DA<D0|$McB2 DA[   HcMcF2$ 0D$ FtUH        HH        D   McF< DA7D0|$McB2 DAO   HcMcF2$ 0D$ FtXH        HH        D   McF< D   D0|$McB2 D   HcMcF2$ 0D$ FtAH        HH        LcF< DA-HcMcB, D|$D$D$ 1D$ F	@l$!t_H        HH        DA-DIDMcMcF< D      HcD0|$F<McD0|$AD2<B2, D|$!F
t`H        HH        D   McF< D   D0|$McB2, D      HcMcF< D0|$0D$!FtZH        HH        D   McF< DAD0|$McB2, DA=   HcMcF< D0|$0D$!FtZH        HH        D   McF< DAFD0|$McB2, DAf   HcMcF< D0|$0D$!FtZH        HH        D   McF< DA<D0|$McB2, DA[   HcMcF< D0|$0D$!FtZH        HH        D   McF< DA7D0|$McB2, DAO   HcMcF< D0|$0D$!Ft]H        HH        D   McF< D   D0|$McB2, D   HcMcF< D0|$0D$! H        H        H        V,  DFEtGAI        McGI        McG<EQ-AMcG4McD|$G<Dt$"D$" E1D$ DFD|$%EtcAI        McGI        EQ-EYDMcMcG4E   A   McD0t$G4McD0t$"EG24G2<Dt$%DFEtfAI        McGI        E   McG4E   D0t$McG2<E   A   McMcG4D0t$"G4D0t$%DFEt`AI        McGI        E   McG4EQD0t$McG2<EQ=A   McMcG4D0t$"G4D0t$%DFEt`AI        McGI        E   McG4EQFD0t$McG2<EQfA   McMcG4D0t$"G4D0t$%DFEt`AI        McGI        E   McG4EQ<D0t$McG2<EQ[A   McMcG4D0t$"G4D0t$%DFEt`AI        McGI        E   McG4EQ7D0t$McG2<EQOA   McMcG4D0t$"G4D0t$%DFEtcAI        McGI        E   McG4E   D0t$McG2<E   AMcMcG4D0t$"G4D0t$%DFEtGAI        McGI        McG4EQ-AMcMcDt$#G4G,Dt$$D$$ E1D$# DFEEt^AI        McGI        EQ-EYDMcMcG4E   A   McD0t$#G4McED0t$$G2G2,DFEtaAI        McGI        E   McG4E   D0t$#McG2,E   A   McMcG2G4D0t$$DFEt[AI        McGI        E   McG4EQD0t$#McG2,EQ=A   McMcG2G4D0t$$DFEt[AI        McGI        E   McG4EQFD0t$#McG2,EQfA   McMcG2G4D0t$$DFEt[AI        McGI        E   McG4EQ<D0t$#McG2,EQ[A   McMcG2G4D0t$$DFEt[AI        McGI        E   McG4EQ7D0t$#McG2,EQOA   McMcG2G4D0t$$DFEt^AI        McGI        E   McG4E   D0t$#McG2,E   AMcMcG2G4D0t$$I        H|$Lt$HD$8I        I        HD$I        D\$'D\$HL$(HT$0D0Dt$&D2t$EG20ED\$G21ED\$#G21EL\$G4E3@1D@C20DDC20DDC21DG   D1E   DD$C21DD$"C21DD$$C20DLG   E   Dt$&D3t$ D\$!EG21ED\$%G20ED\$'DC20DG   D   HD$I        HD$L9t$HL$(HT$0HD$8D^AEGD2^EGD2^	EGD2^AD^A   AuEGD2^EGD2^EGD2EC3D^AEGD2^EGD2^
EGD2^EC3   D^AuEGD2^EGD2^EGD2^EC3   D^AgEGD2^EGD2^EGD2^ED^AEGD2^EGD2^EGD2^AG   E3@ng@A,)@2n@A,)@2n@A,(@2n@E3   @n@A,)@2n@A,(@2n@A,(@2n@E3   ADAۉ   AD  D^AEGD2^EGD2^	EGD2^AD^A   AEGD2^EGD2^EGD2EC3D^AEGD2^EGD2^
EGD2^EC3   D^AEGD2^EGD2^EGD2^EC3   D^AEGD2^EGD2^EGD2^ED^AEGD2^EGD2^EGD2^AG   E3@n@A,)@2n@A,)@2n@A,(@2n@E3   @n@A,)@2n@A,(@2n@A,(@2n@E3   ADAۉ  AD  D^AEGD2^EGD2^	EGD2^AD^A   AEGD2^EGD2^EGD2EC3D^AEGD2^EGD2^
EGD2^EC3   D^AEGD2^EGD2^EGD2^EC3   D^AEGD2^EGD2^EGD2^ED^A{EGD2^EGD2^EGD2^AG   E3@n@A,)@2n@A,)@2n@A,(@2n@E3   @n{@A,)@2n@A,(@2n@A,(@2n@E3   ADAۉ  AD  D^AEGD2^EGD2^	EGD2^AD^A   AEGD2^EGD2^EGD2EC3D^AEGD2^EGD2^
EGD2^EC3   D^AEGD2^EGD2^EGD2^EC3   D^AvEGD2^EGD2^EGD2^ED^AEGD2^EGD2^EGD2^AG   E3@nv@A,)@2n@A,)@2n@A,(@2n@E3   @n@A,)@2n@A,(@2n@A,(@2n@E3   ADAۉ  AD  D^AEGD2^EGD2^	EGD2^AD^AJEGD2^EGD2^EGD2AE   E3^A2^A2^
A2^E3   ^JED2NEGD2NEGD2FEG3   DFAEF D2FEF D2FEFD2FEDFAEF D2FEFD2FEFD2FEF   F3DNAEF
D2NEF
D2NEFD2NEF3   DNAEF
D2NEFD2NEFD2NEF3   AEED   AD$  ^DC^EF D2FEF D2F	EFD2FEDFF   AEF D2FEFD2FEFD2EF3DCEFD2FEFD2F
EF D2FEF3   DFAEFD2FEF D2FEF D2FEF3   DFAxEF D2FEF D2FEFD2FEDFAkEF D2FEFD2FEFD2FEF   F3DVAxEFD2VEFD2VEFD2VEF3   DVAkEFD2VEFD2VEFD2VEF3   AEED(  AD,  DFAEF D2FEF D2F	EFD2FEDFF   AEEF D2FEFD2FEFD2EF3DFAEFD2FEFD2F
EF D2FEF3   DFAEEFD2FEF D2FEF D2FEF3   DFAEF D2FEF D2FEFD2FEDFA}EF D2FEFD2FEFD2FEF   F3DVAEFD2VEFD2VEFD2VEF3   DVA}EFD2VEFD2VEFD2VEF3   AEED0  AD4  DFAEF D2FEF D2F	EFD2FEDFF   AEF D2FEFD2FEFD2EF3DFAEFD2FEFD2F
EF D2FEF3   DFAEFD2FEF D2FEF D2FEF3   DFA8EF D2FEF D2FEFD2FEDFAKEF D2FEFD2FEFD2FEF   F3DVA8EFD2VEFD2VEFD2VEF3   DVAKEFD2VEFD2VEFD2VEF3   AEED8  AD<  DFAEF D2FEF D2F	EFD2FEDFF   AEF D2FEFD2FEFD2EF3DFAEFD2FEFD2F
EF D2FEF3   DFAEFD2FEF D2FEF D2FEF3   DFAEF D2FEF D2FEFD2FEDFA2EF D2FEFD2FEFD2FEF   F3DVAEFD2VEFD2VEFD2VEF3   DVA2EFD2VEFD2VEFD2VEF3   AEED@  ADD  DFA5EF D2FEF D2F	EFD2FEDFF   AEF D2FEFD2FEFD2EF3DFA5EFD2FEFD2F
EF D2FEF3   DFAEFD2FEF D2FEF D2FEF3   DFAEF D2FEF D2FEFD2FEDFAEF D2FEFD2FEFD2FEF   F3DVAEFD2VEFD2VEFD2VEF3   DVAEFD2VEFD2VEFD2VEF3   AEEDH  ADL  DFAEF D2FEF D2F	EFD2FEDFF   A7EF D2FEFD2FEFD2EF3DFAEFD2FEFD2F
EF D2FEF3   DFA7EFD2FEF D2FEF D2FEF3   DFAEF D2FEF D2FEFD2FEDFAqEF D2FEFD2FEFD2FEF   F3DVAEFD2VEFD2VEFD2VEF3   DVAqEFD2VEFD2VEFD2VEF3   AEEDP  ADT  DFAEF D2FEF D2F	EFD2FEDFF   AEF D2FEFD2FEFD2EF3DFAEFD2FEFD2F
EF D2FEF3   DFAEFD2FEF D2FEF D2FEF3   DFAlEF D2FEF D2FEFD2FEDFAEF D2FEFD2FEFD2FEF   F3DVAlEFD2VEFD2VEFD2VEF3   DVAEFD2VEFD2VEFD2VEF3   AEEDX  AD\  DFACEF D2FEF D2F	EFD2FEDFF   A0EF D2FEFD2FEFD2EF3DFACEFD2FEFD2F
EF D2FEF3   DFA0EFD2FEF D2FEF D2FEF3   DFAuEF D2FEF D2FEFD2FEDFAEF D2FEFD2FEFD2FEF   F3DVAuEFD2VEFD2VEFD2VEF3   DVAEFD2VEFD2VEFD2VEF3   AEED`  ADd  DFA7EF D2FEF D2F	EFD2FEDFF   AEF D2FEFD2FEFD2EF3DFA7EFD2FEFD2F
EF D2FEF3   DFAEFD2FEF D2FEF D2FEF3   DFA&EF D2FEF D2FEFD2FEDFAEF D2FEFD2FEFD2FEF   F3DVA&EFD2VEFD2VEFD2VEF3   DVAEFD2VEFD2VEFD2VEF3   AEEDh  ADl  DFAEF D2FEF D2F	EFD2FEDFF   AEF D2FEFD2FEFD2EF3DFAEFD2FEFD2F
EF D2FEF3   DFAEFD2FEF D2FEF D2FEF3   DFAEF D2FEF D2FEFD2FEDFAEF D2FEFD2FEFD2FEF   F3DVAEFD2VEFD2VEFD2VEF3   DVAEFD2VEFD2VEFD2VEF3   AEEDp  ADt  DFAEF D2FEF D2F	EFD2FEDFF   AEF D2FEFD2FEFD2EF3DFAEFD2FEFD2F
EF D2FEF3   DFAEFD2FEF D2FEF D2FEF3   DFAHEF D2FEF D2FEFD2FEDFA?EF D2FEFD2FEFD2FEF   F3DVAHEFD2VEFD2VEFD2VEF3   DVA?EFD2VEFD2VEFD2VEF3   AEEDx  AD|  DFAEF D2FEF D2F	EFD2FEDFF   A^EF D2FEFD2FEFD2EF3DFAEFD2FEFD2F
EF D2FEF3   DFA^EFD2FEF D2FEF D2FEF3   DFAEF D2FEF D2FEFD2FEDFAEF D2FEFD2FEFD2FEF   F3DVAEFD2VEFD2VEFD2VEF3   DVAEFD2VEFD2VEFD2VEF3   AEED  AD  DFAEF D2FEF D2F	EFD2FEDFF   AEF D2FEFD2FEFD2EF3DFAEFD2FEFD2F
EF D2FEF3   DFAEFD2FEF D2FEF D2FEF3   DFA0EF D2FEF D2FEFD2FEDFA[EF D2FEFD2FEFD2FEF   F3DVA0EFD2VEFD2VEFD2VEF3   DVA[EFD2VEFD2VEFD2VEF3   AEED  AD  DFAEF D2FEF D2F	EFD2FEDFF   AEF D2FEFD2FEFD2EF3DFAEFD2FEFD2F
EF D2FEF3   DFAEFD2FEF D2FEF D2FEF3   DFFD2FEF D2FEF D2FEDFF D2FEFD2FEFD2FEF   F3DVATEFD2VEFD2VEFD2VEF3   DVATEFD2VEFD2VEFD2VEF3   AEED  AD  DFAEF D2FEF D2F	EFD2FEDFF   AEF D2FEFD2FEFD2EF3DFAEFD2FEFD2F
EF D2FEF3   DFAEFD2FEF D2FEF D2FEF3   DFA#EF D2FEF D2FEFD2FEDFAEF D2FEFD2FEFD2FEF   F3DVA#EFD2VEFD2VEFD2VEF3   DVAEB2VҊ2VҊ2FD3   AEED  AD  D  I        IL|$Ll$DT$I        I        D|$HD$IEu E1Dt$"Dt$EG24EAGESEmEDl$#Dl$#A1D3l$ EG24EEDt$"G   E1E  EI        G2<2ED|$!G2<*G   EE  I        G   E  L9|$D^	AuEGD2^AD^A   AEGD2EC3D^
AEGD2^EC3   D^AuEGD2^EC3   D^AEGD2^ED^AgEGD2^AG   E3@ng@A,*@2n@E3   @n@A,*@2n@E3   ADAۉ   AD  D^	AEGD2^AD^A   AEGD2EC3D^
AEGD2^EC3   D^AEGD2^EC3   D^AEGD2^ED^AEGD2^AG   E3@n@A,*@2n@E3   @n@A,*@2n@E3   ADAۉ  AD  D^	AEGD2^AD^A   AEGD2EC3D^
AEGD2^EC3   D^AEGD2^EC3   D^A{EGD2^ED^AEGD2^AG   E3@n@A,*@2n@E3   @n{@A,*@2n@E3   ADAۉ  AD  D^	AEGD2^AD^A   AEGD2EC3D^
AEGD2^EC3   D^AEGD2^EC3   D^AEGD2^ED^AvEGD2^AG   E3@nv@A,*@2n@E3   @n@A,*@2n@E3   ADAۉ  AD  D^	AJEGD2^AD^A   AEGD2EC3D^
AEGD2^EC3   D^AJEGD2^EC3   D^AEGD2^ED^AEGD2^AG   E3@n@A,*@2n@E3   @n@A,*@2n@E3   ADAۉ   AD$  D^	D~AEGD2^AE_D~
A   EGD2EC3E_EGD2^EC3   D^AEGD2^EC3   D^AkEGD2^ED^AxEGD2^AG   E3@nx@A,*@2n@E3   @nk@A,*@2n@E3   ADAۉ(  AD,  D^	AEEGD2^AD^A   AEGD2EC3D^
AEGD2^EC3   D^AEEGD2^EC3   D^A}EGD2^ED^AEGD2^AG   E3@n@A,*@2n@E3   @n}@A,*@2n@E3   ADAۉ0  AD4  D^	AEGD2^AD^A   AEGD2EC3D^
AEGD2^EC3   D^AEGD2^EC3   D^AKEGD2^ED^A8EGD2^AG   E3@n8@A,*@2n@E3   @nK@A,*@2n@E3   ADAۉ8  AD<  D^	AEGD2^AD^AEGD2AE   E3^
A2^E3   ^ED2VEG3   DVA2EGD2VADVAEGD2NAE   E3DFAEF D2FEF3   DFA2EF D2FEF3   AEED@  ADD  DF	AEFD2FEDFF   A5EFD2EF3DF
A5EF D2FEF3   DFAEF D2FEF3   DFAEFD2FEDFAEFD2FEF   F3DVAEFD2VEF3   DVAEFD2VEF3   AEEDH  ADL  DF	A7EFD2FEDFF   AEFD2EF3DF
AEF D2FEF3   DFA7EF D2FEF3   DFAqEFD2FEDFAEFD2FEF   F3DVAEFD2VEF3   DVAqEFD2VEF3   AEEDP  ADT  DF	AEFD2FEDFF   AEFD2EF3DF
AEF D2FEF3   DFAEF D2FEF3   DFAEFD2FEDFAlEFD2FEF   F3DVAlEFD2VEF3   DVAEFD2VEF3   AEEDX  AD\  DF	A0EFD2FEDFF   ACEFD2EF3DF
ACEF D2FEF3   DFA0EF D2FEF3   DFAEFD2FEDFAuEFD2FEF   F3DVAuEFD2VEF3   DVAEFD2VEF3   AEED`  ADd  DF	AEFD2FEDFF   A7EFD2EF3DF
A7EF D2FEF3   DFAEF D2FEF3   DFAEFD2FEDFA&EFD2FEF   F3DVA&EFD2VEF3   DVAEFD2VEF3   AEEDh  ADl  DF	AEFD2FEDFF   AEFD2EF3DF
AEF D2FEF3   DFAEF D2FEF3   DFAEFD2FEDFAEFD2FEF   F3DVAEFD2VEF3   DVAEFD2VEF3   AEEDp  ADt  DF	AEFD2FEDFF   AEFD2EF3DF
AEF D2FEF3   DFAEF D2FEF3   DFA?EFD2FEDFAHEFD2FEF   F3DVAHEFD2VEF3   DVA?EFD2VEF3   AEEDx  AD|  DF	A^EFD2FEDFF   AEFD2EF3DF
AEF D2FEF3   DFA^EF D2FEF3   DFAEFD2FEDFAEFD2FEF   F3DVAEFD2VEF3   DVAEFD2VEF3   AEED  AD  DF	AEFD2FEDFF   AEFD2EF3DF
AEF D2FEF3   DFAEF D2FEF3   DFA[EFD2FEDFA0EFD2FEF   F3DVA0EFD2VEF3   DVA[EFD2VEF3   AEED  AD  DF	AEFD2FEDFF   AEFD2EF3DF
AEF D2FEF3   DFAEF D2FEF3   DFF D2FEDFFD2FEF   F3   DVATEFD2VEF3DVATEFD2VEF3   AEED  AD  DF	AEFD2FEDFAEFD2EF   F3DN
AEFD2NEF3   DNAEFD2NEF3   DNAEF
D2NEDNA#EB
DN2VA#EFD2NDB   B3EB3   DNAEB2F3   ADD    1H        G   HH[]A\A]A^A_SH        H        HH        [SH        H        HH        [   ug{vȚJӀxkE}8K25ؘ7qlC0u7&H?^к0[T ߼#m[=Y]҂c.ٵQ,|sLTt6aQ8:Zs,`%blNBkS|j('敽E$F;fpʕV׸Ã wúwo93@b+qyy	$A:عŚMD~چzf=pҳA{r1'S> 3`&_\v*IR!_ē
ّŅ9I-O1;G#mFN>-idH*Oe/x\Xz՘WKgZd(c?)<L<hDUMC}iW).tYĨ
r~nG"4X5j4n"Phe+@Rܻ2/a!P] o%6BVJU^	 @My>|7n0`[!BEY)R
(P4hc{<x.\=z8pW"D]9rGQ	$Hm3fKa6l#FU2d,X-Z%Je+V*T:two&L}?~'Nu/^5jCAIisOq_1b;vgkS @My>|7n0`[!BEY)R
(P4hc{<x.\=z8pW"D]9rGQ	$Hm3fKa6l#FU2d,X-Z%Je+V*T:two&L}?~'Nu/^5jCAIisOq_1b     .Sj/4TE\k0K5UF$]l1+Ls6͂VbGO%^'fm֜y2h,Z)"M`{;t7oWcܬH
PBx&e_(!Ygnz:	Aî3Di-RJ[*#Nar=|<}u>8?vp~X dw@9IQCqȡ u2!C  ɳ{+J	kkE}8ҦK&&W<<2RR7{{q7[[GG0<$$QQƺJJHp?uu^Һ }}1ff[::YY    ͝m,++]R;;պdd؄__,,,'11e*sssL_yyTAkkKKtiSS6Q86**Ľ""Zý`xHHbLLlwAAB$|c]]("66'ggDD$-??F;rrplTTL))5O䌌Yʦ;hhM (88.VwXXo
~@Ppp0+nnny=		4aaWWA:d%%ݯEEߗ\~X55zCCf77@=h̴]22qVVr`:ѿccS44>B3||&_==סv*Ia!s?ٵmmŮxx9mřͤvv>>1gˋG[#``ݰjjMMN-|UUHZ~~O!!ze&^^xfZZ\KeeXNbbE@@W33g^d}OOjc/ttu

\\t<3--00I..IIhrFFDUwwبMC((i))y.JY
BBnG//49##5bj녅"ɡqq𐐛SዋNNo>ooTRۻ{/ii99a#PDllF''%vІPPVU	Q%zz99٩gqRRevEEKKࠀZZfxjjcc**68T  Cb5$AAwl((C2u{{7&pDD~~ZHzжG$$<0祄kkAT``#E::[h=Y!ff1oo>WWc[M.mmكQS]]c|hh;?00֥zz%		5㧧#a鯌:\\s11',v%VV{Nk44SjÙ[[GGk""ȽEnⳳtt/fXXV+^^,,µIIϕ~}} dwm9j||3qqb7q=yQ	>>ܭ??-$vvUU@@xx%%͹MwwUD
PP077ӡ@aa4NNTTlpss*;;RҟA{؈Og1''Fgg'88( HHx`.LLeeK\++ǱoBBRJJ==_Y
:Ia|-!!OBrr;//GH,mF<<W֚>)iOO}d*..Iii/\^zчddե&&K`Z66"(uu?y)--3<yy_Lʖ55XĜCCUMMYY8}33WSSittĭVr~J"bbNX__##94nllDP22]FFrh&e͓ۺւnn+ppP@

u2ߍ))Ls!	ӊ]QQ    o6BJ^2u!C  ɳڋ{+ȞJ	kkE8}Ҧ覷&K&W<<2؂RR{7{7q[[GG<$0$QQƺJJHpu?u^ }}1ff:[:YY    ͼ,m++]R;;ddؠإ__,,'1,1e*sss_yLyAkTkKKiStS6Q6*8*İ""ZýxH`HbLLwAlAB$c]|]"6(6g'gDD-?$?Fr;rlTpTL))5OЌYʸ;hhM(8 8.Vw̙XXo
~Pp@p0n+nn=y		4aaWWA:d%%ݯEEߤ\~X55zCCf77@h=̴]22qVVr`:cc4S4>B|3|&=_=סv䔁*Ias!ė?mmxxm9vv>>g1G[`#`jjMMN|-ޝUUZ~H~!O!z&e^^fZxZKe\eNbXbE@@3W3g^}OdOjc/ttu

\\t3-<-00I..IIrFhFUwDwبM(C()iy)ّ.ѬJYּ֨
BBn/G/9#4#b5j܅"qqSԋNNo>ooTR{i/i99#aôDlPlF''v%PPVUQ	%zz٩9ِgqqReevEKfxZfݰjc68*6TTC Cb5b$$wlAwC(2u27{ԛ&ppDZH~ZzzЌGG<0$<ATkA#`EE[:h=hY!!1f1>o>Wc[[MM.mQSSc|]c;h;??֥0%z%	55#a#鯀:\s',1'v%vV{{NkS4jęÙ[GkkȽ"Enn/t/f̙XVԋ++^µ,I~~ } ddwm9mjj3|ѡqb7q7=y=Q	Qܭ>-$?-vU؂@x͹%MUDwU

P00ӡ7@@4a4NlpTl*s*R;RA{؈OOg1gF'F'g( 8(x`Hx..LK\eKǱ+ooBRJ_=YY
::Iaa|-|O!BB;r۸G/HH,m,FW<W>)i)}dO}*I.I/i\\^^zЇчdK&``Z"(6"?uy)y3<-3_Ly_ʖX5XĜCUMY8}8W3itSittėVVr~JJ"NXbN_94#9nDPlD]2]rhFr&e&͓Ȟւ+nP@pP܅u
u2ߍL)Ls!s		]Q    o6BJ^u{JkE}K27q0?^[ m]ՠ,sLTt6Q8Z`blB|('$F;pГ wo@+yA:䚤~zf=޳rS>3&_v*I!9ͭ1#N-HOex\XWgdc<hDMCi).Y
nG45j"R/aP%VU	gvx85lCu7&HЋ0T#[=Y󮢂c.Q|륾a:s,%NkSjEf̕VÎϿw93bqy	$ŹMDpA{1' `\R_
I-O;GmF>id*/zKZ(?)<LڰU}WǍtğr~"X4nPheȨ+@2!] o6BJ^TWOFISH128 TWOFISH                                                                                                                                                                                                      LICENSE=GPLv3+  crypto gcry_twofish                                                                                                                          \      '            \      '                                                        	                      
                                       4                      E                      Z     `       `       t             `        grub_mod_init grub_mod_fini grub_cipher_unregister _gcry_burn_stack grub_cipher_register _gcry_cipher_spec_twofish _gcry_cipher_spec_twofish128        v	                    \                                                                                                                    '                  7                                                                                             I                  Y                                                                                             `                  p                                                                          *                                                                                             K                  [                                                                                             q                                                                                                                                 c                  u                                                        @                  R                                                                          &                   ~                                                                          U                  g                                                                          0                                                                                              S                  e                                                                           /                    x                                                                             !                  IF                    eF                  oF                  F                  "G                   \                    \                    \                    \                    \                    \                    \                                          0             h      8             	      @                     `                                 h                   	                            .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @       \                                   @               Pw      X                          &                     @]                                   .      2               0t                                   B                     Pt                                    =      @                                                H                     u                                    X                      u                                    ]                       u                                    f                      'u                                                          8u                                	                      v                                                          h      o                                                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/afs.mod                                                                        0000600 0001750 0001750 00000021470 13417732100 0014403 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    8           @     @   H)HHtHt8tHHHHu1Ht)PH        HP1ZUHSHH  BDLD$HH1H   H8H        ЅtH        1I1Ҁ$@B H|$<H        ЉD$HHD$(%   = @  $	HS$SH  []SI1H|      H        Ѓu[H        	   1H        u4{ 1SFAuՁ{D1ú{puËS(tK,9uv1[UH        SHH   H    H?Ht$Ѕu    H|$H        HHĈ   []ËFLIHʍHAAABAN,	HLI4H        AWLAVAUATUSHHHhMHT$H$   HL$LD$LL$ HT$0H$   HT$8  HH;   vH           4  HD$K,IH   HH9D$   HD$A   I        L`L1El$K,IIL;l$voHL$Ht$ LLD$LLLT$(H)H9HGHt$0H)IIw0Ht$8Iw8HA҅IG0    J  Hl$Hl$LT$(H)l$ .  IAtLjHD$K,H        L   IL9d$7  HD$H   HH9D$P  HD$D   H        IN    LLL$(HHLL$(  HD$I        I1HLH   AE1Ll$(DL9   HT K,DRIML;T$   HL$HD$ MD\$HLT$@HLD$LI)I9LGHD$0L)MIG0HD$8IG8HD$(ЅAIG0    LT$@D\$HtHH        D  Ll$Ll$L)l$ uHH          AM+HH        HD$K,H        H   HH9D$  HD$I           HD$(Hd$(HD$(L,    LAHHt*C,   HHcAHIuHH        С          HD$M1I        IHLH   AE1HALl$@   HD$Ll$   AL+   C,xM@ADHcL!HL$HH@INHcI!ʍL IL;l$(wzI9tmJT HHcLT$XMDZLII9HD$@LG1HN    L\$PЅAL\$PLT$XtHH        LD   IM9v?HH        LH        	   Hh1H        []A\A]A^A_C,A   L\$PKLD$HLHHD$ AHL$HMcI)I9LGHD$0MIG0HD$8IG8HD$@ЅIG0    L\$PtD$HH        LӋD$Lt$Lt$L)t$ tLO1Hh[]A\A]A^A_UIHSHIPHwPH        LWHOw`wXHV|I:ZYHHDH]HUHAWIAVI        AUMATMSHHHEI     I    HuA    H}HULEH     HEH     j j AY^   DMȋEMk
H#HIH        LLMHLMuH        nj HUIHELHuj H}AALUXEZtLH        D/IB MU HMI$EH#HIHELEIBHHe؉[A\A]A^A_]UHBtIA   HAWIHAVAUI1ATIHSH  HH`LH        Ѕ  ǅh    Hǅ    L</uHHu!H        H1K  t	HÊ</u   LHH        AE%   = @  t"H           1H        G  j A    L1LLj HH        AXAY  HH+LHxllLHLLLLHPHPH        ^_a  LED$Et1LH          DtALE1ɉHHp   A   AE	E9   EAFDHfCZDLA<BAD$LPLXH9HxFHp)H        HcЋLXLPDLDH	uHLN4H        D  ENE   fAAD$DHHp9HxFH        ЋH        D	uHLL0    ~tSHL0tCAv=HLpLo t"AE9sHLN4H        Mt$LH        It(HH           1H        lME1  AG,LM1HHH        H   Ѕ  AE%   =   hI        u,HAH           1H        P  M   LHH        I|H        HILu1Aҡ           LHAj 1LMMLj HH        ZLYtLAҋ   C4 A<$/uHL1A   MH`LHH        ЅALt&LADR   HLH        LH        LHHP{ tH  LHe[A\A]A^A_]AUATIUHSHx  HGLl$H8LH        Ѕ   ID$H$   LHH0H        Ѕ   $   %   =   t!H           1H        ҉ch  H        HHuH        <Hǹ   L   Hx|H$   H        H$X  Il$PID$@Hx  []A\A]U1HAWAVAUATIHι&   SHHHH  HHHXHHHPH;LxH        LЅ{  HLH3LH        ЅW  %   = @  t"H           1H        #  Hj 1A    LHj LI        HAAZA[  LLMD`E   j A    L(LHHj HAAXAY  D@Hj HA   L Aj H#HHPHLA^_9  L jHHL HHH(LHLLHPHH        AVZY   E1I        HD;o   H DfD<VwA9DFELHLD H(HDH4HHAԅDLtHH        0HAF DULoH        I        He[A\A]A^A_]H        H        H        H        H        not an AFS filesystem attempt to read past the end of file incorrect direct blocks incorrect indirect blocks incorrect double-indirect block not a directory file `%s' not found too deep nesting of symlinks not a regular file afs                                                                                           LICENSE=GPLv3+ afs                                                                                                                                                                                                                             )                      6                      D                      S                      ^                      k                      |                                                                                                                                                           grub_mod_init grub_mod_fini grub_strlen grub_memmove grub_divmod64 grub_disk_read grub_errno grub_fs_list grub_print_error grub_zalloc grub_malloc grub_error grub_list_remove grub_free grub_strndup grub_list_push   =                     {                                                                                                       $                    k                                                           L                                     9            ;                                             o                                                                        S                           E                    P                    i                  P                    t                                m                                               r                                    /                    K                                        	                  ]	                    	         
           	                   	                    	                  l
                  
                    V                                                                                                                                                                                   :                    P                   a                             	                                                                     K                           
                    	                                                H                   Y                    n                                                 
           ,                   S                  y                                                                                       O       w                                                                                                                                                                                                                           (             ]      0             :       8             h       .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .modname                                                                                         @                                          @                           	                    &      2               A                                   :                     0      P                              5      @               H             	                    @                                                         P                                                          U                                                                                      (      
   	                 	                                                                                      ^                                                                                                                                                                                                                                      boot/grub/x86_64-efi/gcry_whirlpool.mod                                                             0000600 0001750 0001750 00000054400 13417732100 0016674 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    U          @     @   AW1AVAUATUSH  LH8H0H	LH	LH(H	LH H	LHH	LHH	LHHH	HH@u1HHTHHH@u0HHH   H@u0HTH1   HH@uH$    H        H        I        I        I        I        H        Lt$HD$PH        L$   Ld$xHl$pMI8HHT$XJ3MI0EJ3MI(EK3II EK3L|$hIEK3L|$`IEK3L<$H3H        J3:L|$PH        I8H$   D$XHJ3MI0HT$`EJ3MI(EK3MI EK3IIEK3L|$hIEK3L|$XH3H        I8H$   D$`HJ3L|$PHT$hI0EJ3MI(EK3MI EK3MIEK3IIEK3H3H        H$   D$hL|$`I8HHJ3L|$XI0EJ3L|$PI(EK3MI EK3MIEK3MIEK3L|$hH3H        I8H$   @HJ3LL|$`I0EJ3L|$XI(EK3L|$PI EK3MIEK3MIEK3IH3I8H        H$   AHJ3LL|$hI0EJ3L|$`I(EK3L|$XI EK3L|$PIEK3MIEK3MI0H3I8H        EH$   AI8HJ3II0LEEH(J3L|$h@I(EK3L|$`I EK3L|$XIEK3L|$PIEK3H3HT$PH$   H        JJ3J3I3Hl$hH @I3Hl$`H@I3Hl$XH@I3H3H$   1H   HlHHH@uL$   D$   H        L$   L$   H$   LH8HJ3MI0H3D$HH$   EJ3MI(EK3II EK3L$   IEK3L$   IEK3D$   H3H        H$   H$   H8HJ3MI0H3D$PH$   EJ3MI(EK3MI EK3IIEK3L$   IEK3D$   H3H        H$   H$   H8HJ3L$   H3D$XH$   I0EJ3MI(EK3MI EK3MIEK3IIEK3H3H        H$   D$   H$   H8HJ3HL$   H3D$`I0EJ3L$   I(EK3MI EK3MIEK3MIEK3DH3H        H$   H$   H8HJ3LL$   H3D$hI0EJ3L$   I(EK3L$   I EK3MIEK3MIEK3EH3H        H$   HH8HJ3LL$   H3D$pI0EJ3L$   I(EK3L$   I EK3L$   IEK3MIEK3EI8H3H        H$   LH8HJ3II0H3D$xLEEJ3L$   I(EK3L$   I EK3L$   IEK3L$   IEK3H3H        H$   JJ3I0H(H3$   E@J3H$   I3H$   H @I3H$   H@I3H$   H@I3H3H$   1H   HH   H@uH$H<$P0HTH1HH@u0H   H1HH@uH  []A\A]A^A_HG@AWAVIAUATIUSHQH   @uHw@H        Hǃ       M@  H    LtJ'H   H?wHPIHH   AT$T@Hu11HH        H   M<,ILL)I?v HH        I@Hǃ       HH1?IH9t&H   H?wHrH   A4H@t@J       1uHt(H3   3   u11ҨuHt/H        G  H        H        H        X[]A\A]A^A_U1H        SHR1H   HBH H   D@v(H   H?wHPH   D@ 11HH   HwHPH   D@ H|@H       H        H    11H1HHHC?H8K8HH0K9HH(K:HH K;HHK<HHK=HHK>uX[]H        ຨ   1H        H        H        H        H                      whirlpool_add   0x`#&F##Ƹ~?oL&mbڸ	OnBO!O6l66QYoyyyo0_oom?~RRUR`G'``5evʼ7+ͬV[ql<`0{{{5j55:itGS!{^/.C\m..K)zbK1K]!WծWAW*ATwww7n77V{#ٌF#J jJ5JDOX%X}XϏ)|RU))
Z"P
(
PO]ikkk\.<gsν]4]i] P@݋>|>>-
(gxggSs'N%''AsX2AA,SQ}}}I7ܕnVGp0q#|||fqff{S.K\GEFGG!܄Bԉ-XZu--.cyƿ?8G#Z/ZuZl63f33c\?cc
I89q⨯qqƍ2}dI;prI9I_C1HK[*[q[4>)ȤR&L-&&2d22Y}Jjw3x<3sՀt:'a|¾&4h44H2uzH=HT$zzzd=z_>_a_ =@  hghh4rhA,}u^ɴTΨTMT;v"/D""dcdd*s梿ss$ZH@z]:@@H(@ ÕV+{3MKۡ_a=z==[3̗f        6+nVE++v쳗vvd2(6wltw[C)jwjjPP]PEWLE	E80`00t+?~??UǪUIUYyeejeeihҺ/J^e//N'`_8lpF.MdRM)Mv9ru꼏uu60	$Ky@Yc~6p8>c|bU7bb:wԨM2)R1Ėbb:ţf3%J5%%Y YyYT*r䧷rr9r99LaZL-L^;^e^xxx8p88
cѥWAMCaN/aaB{E!4B!!%֔J<fxCaR"CCǱv;O+$ QQYQ%/Ǽ^m"Omme9h4y5i[~~~$H=$$;v;;K=1>"UDNkJN%NfsQѷ`<x<<|>@5Ԕjog޹&_L,QX},,k\kn9WnnĪn7VܬVEVD^IDDO7!*gTM**
kmֻF#SSQSrWS'X,'ӜNl+Gll1b11t蹇tt	FLC
FFE&	<(DPB[,NX:t::ioii	A-H	$	p୧ppoqTٶg~;.BhW*BB,-´ZUI(uP]((\1\m\k?D"0x`##&F#Ƹ~?o臇L&mb	OOnBO!66l6ئQYoyyyoo0_om?~RRRU``G'`5evʛ7+ͬV[ql<`0{{{55j5:itGS!{^/..C\m.KK)zbK1]!WWծWA*ATwww77n7V{峟#ٌF#JJ jJ5DOXX%X}Ϗ))|RU)

Z"P
(PO]ikkk\.<gs]]4]i P@݋>>|>-
(ggxgSs''N%'AAsX2A,SQ}}}镕I7ܕnVGp0q#|||ffqf{S.K\GGEFG!܄Bԉ--XZu-.cy?8G#ZZ/Zul633f3cc\?c
I89qq⨯qƍ2}dII;prI9_C1HK[[*[q4>)ȤR&&L-&22d2ȰY}Jjw3x<3st:'a|&44h4HH2uzH=T$zzzd=z__>_a  =@ hhgh4rhA,}u^ɴTTΨTM;v""/D"ddcd*ss梿s$ZH@@z]:@H(@ ÕV+{3MK_a==z=[3̗f        6++nVE+vv쳗vłd2(6wltw[C)jjwjPPP]EEWLE	800`0t+??~?UUǪUIYyeeejeih//J^e/N'`_8lpF.MMdRM)v9ruu꼏u60	$Ky@Yc~6p8>c|bbU7b:wM2)R1Ėbb:ţf3%%J5%YY YyT*rr䧷r99r9LLaZL-^^;^exxx88p8
cWAMCaaN/aB{E!!4B!%֔J<fxCCaR"CǱv;O+$ QQQY%/Ǽ^mm"Ome9h4y5i[~~~$$H=$;;v;쫫K=1>"UDNNkJN%fsQѷ`<<x<|>@5Ԕjog&_L,,QX},k\knn9WnĪn7VVܬVEDD^IDᩩO7!**gTM*
kmF#SSSQrWS'X,'ӜNll+Gl11b1tt蹇t	FFLC
FE&	<(DPB[,NX::t:iioi		A-H	$pp୧pݶoqTٶg~;.BBhW*B,-´ZUI((uP](\\1\mk?ǆD"`0x##&F#?Ƹ~Ƈo&Lڸmb	!OOnBO66l6QYoyyyoo0_o~m?URRR``G'`ʼ5evV7+ͬ[q0l<`{{{55j5t:iGS{!/^¸..C\m.1KK)zbK]!AWWծWT*Awww77n7V{F#ٌ#5JJ jJOD}XX%XϏɤ))|RU)(

Z"P
POᱺ]ikkk.\ν<gsi]]4]@ P݋>>|>-
(ggxgSs''N%'AAsX2A,SQ}}}nI7ܕGVp0q#|||ffqfS{\.KGGEFGB!܄ԉʴ--XZu-ƿ.cy?8G#uZZ/Z6l33f3cc\?c
I89qq⨯qƍd2}9II;prIC_1HKq[[*[4R>)Ȥ&&L-&22d2Y}J鰃j<w3xs3:t¾'a|&44h4=HH2uzHT$zzzzd=a__>_  =@ hhghh4rA,괴}u^ɴMTTΨTv;쓈""/D"ddcd*ss梿sH$Z@@z]:@ H(@+ÕV×{3KM۾_a==z=f[3̗        6Ϭ++nVE+vv쳗v2d(l6wtw[C)jjwj]PPP	EEWLE800`0t+??~?IUUǪUYyeeejeҺih//J^e/'N_`p8lF.)MMdRMrv9uu꼏u60	$Ky@Yc8~6p|>cbbU7bw:ԚM2)bR1Ėb:3ţfŔ%%J5%yYY Y*Trr䧷r99r9-LLaZLe^^;^xxx88p8
cѮWAMCaaN/aB{E!!4B!J%֔x<fCCaR"C;ǱvO+$ YQQQ^%/Ǽmm"Om4e9hy5[i~~~$$H=$;;v;K=1>D"U%NNkJN混fsQѷ`<<x<>|j@5Ԕ޹ogL&_,,QX},kӻ\knn9Wn7ĪnEVVܬVDD^IDO7!**gTM*ֻ
km#FQSSSWr,S'XN'Ӝll+Gl11b1tt蹇t	FFLC
FE&	<P(DB[X,N::t:iioi$		A-H	pp୧pⶶoqTٶgГ~;.BBhW*BZ,-´UI((uP](m\\1\k?"D`0x###&F?Ƹ~o&Lڸmb	O!OOnB666lQYoyyyooo0_~m?RURR```G'ʼ5evV7+ͬ[q0l<`{{{555jt:iGS{!/^...C\mK1KK)zb]!WAWWծT*Awww777nV{F#ٌ#J5JJ jODX}XX%Ϗ)))|RU
(

Z"PPOᠺ]ikkk.\ν<gs]i]]4@ P݋>>>|-
(gggxSs'''N%AAAsX2,SQ}}}ϕnI7GVp0q#|||fffqS{\.KGGGEFB!܄ԉ---XZuƿ.cy?8G#ZuZZ/6l333fccc\?
I89qqq⨯ƍd2}I9II;prC_1HK[q[[*4R>)Ȥ&&&L-222dY}Jj<w3xs3:t¾'a|&444hH=HH2uzT$zzzzd=_a__>   =@hhhgh4rЮA,괴}u^TMTTΨv;"""/Ddddc*sss梿H$Z@@@z]: H(@+ÕV{3KM_a===zf[3        6+++nVEvvv쳗2d(l6wصtw[C)jjjwP]PPE	EEWL8000`t+???~UIUUǪYyeeeejҺih///J^e'N_`p8lF.M)MMdRrv9uuu꼏60	$Ky@Yc8~6p|>cbbbU7w:M2)bR1b:3ţf%%%J5YyYY *Trrr䧷999rL-LLaZ^e^^;xxx888p݌
cƥWAMCaaaN/B{E!!!4BJ%֔x<fCCCaR";ǱvO+$ QYQQ^%/Ǽmmm"O4e9hy5[i~~~$$$H=;;;vūK=1>D"UN%NNkJ混fsQ`<<<x>|j@5޹ogL&_,,,QX}k\knnn9W7ĪnVEVVܬDDD^IߩO7!***gTMֻ
km#FSQSSWr,S'XN'Ӝlll+G111bttt蹇	FFFLC
E&	<P(DB[X,N:::tiiio	$		A-Hppp୧ⶶoqTg~;.BBBhW*Z,-´UI(((uP]\m\\1k?"D`0x###&F~?ƸoL&ڸmb	BO!OOn666lYQoyyy_ooo0~m?RURR'```Gʼ5evV7+q[`0l<{{{555jt:iSG{!^/m...C\bK1KK)z]!WAWWծT*Awww777n{VF##jJ5JJ ODX}XX%ϏU)))|RP
(

Z"POi]kkk\.ν<gs]i]]4@ P݋>>>|(-
gggxsS%'''N2AAAsX,QS}}}ܕnI7GVp0#q|||fffqS{\.KGGGEFB!ԉu---XZƿ.cy8?G#ZuZZ/l6333f?ccc\
9I8qqqƍd2}rI9II;pC_1KH[q[[*4R>)-&&&L222dY}Jjx<w3s3t:¾'a|&޽444hzH=HH2uT$zzzzd=_a__>   =@ghhhh4rA,ɴ괴}u^TMTTΨv;"""/Ddddc*sss梐H$Z:@@@z]@ H(V+Õ3{KMa_===z̗f[3        6E+++nVvvvd2(l6wtw[C)wjjjߺP]PPE	EEWL8000`+t???~ÒUIUUǪyYeeeej칺Һihe///J^N'_`p8lF.RM)MMdrv9uuu06$	Ky@cYp8~6|>c7bbbUw:)M2ĖbR1b:f3ţ5%%%JYyYY T*rrr999rZL-LLa^e^^;xxx888p
cAWCM/aaaNB{E!!!4BJ%x<f"CCCaRv;ǱO+ $QYQQ^%/Ommm"h4e9y5[i~~~=$$$H;;;v1K=>шD"UJN%NNkѷ混fsQ`<<<x|>Ԕj@5޹ogL&_},,,QXkk\Wnnn9n7ĪVEVVܬDDD^I!O7M***gTֻ
kmF#SQSSWrX,S'N'Glll+111bttt	
FFFLC	E&<P(D[BX,N:::toiiiH	$		A-pppٶⶶoqTg;~.*BBBhWZ,-IU](((uP\m\\1k?D"x`0###&F~?Ƹo͡L&bڸm	nBO!OO666lYQoyyy_ooo0~m?RURR'```Gvʼ5eͬV7+q[<`0l{{{555jit:GSݬ{!^/m...C\zbK1KK)!]WAWWծAT*www777nV{ٌF##jJ5JJ OD%X}XXϏU)))|R"P
(

ZOPi]kkk֫\.sν<g4]i]]P@ ݋>>>|(-
gggxSsջ%'''NX2AAAs,QS}}}ܕnI7GV0pq#|||fffq̎S{K\.FGGGE܄B!ԉu---XZyƿ.c8?#G/ZuZZl6333f?ccc\
89Iqqqƍ}d2prI9II;C_1HK*[q[[4ȤR>)-&&&L222dJY}j3x<ws3t:|¾'a&444huzH=HH2$Tzzzzd=>_a__   =@ghhhrh4,A^ɴ괴}uTMTTΨv;"""/Ddddc*sssZH$]:@@@z(@ HV+Õ{3ŐKMa_===z̗f[3        6E+++nVvvvd2(wl6[tw)CwjjjP]PPLE	EEW8000`t+???~UIUUǪyYeeeejhҺie///J^N'_`lp8.FdRM)MMrv9uuu06$	@KyYc6p8~c|>7bbbUģw:2)MĖbR1:bf3ţ5%%%J YyYYT*rrr999raZL-LL;^e^^xxx888p
cAWMC/aaaNEB{!!!4B֔J%fx<R"CCCav;Ǳ+O $QYQQǼ^%/Ommm"9h4e5y鄶[i~~~=$$$H;;;v=1K>UD"kJN%NNQѷ混fs`<<<x|>Ԕj@5g޹o_L&},,,QXk\kWnnn9n7ĪVEVVܬIDDD^7!OM***gTmֻ
kF#SQSS񦋮Wr'X,SӜN'Glll+111bttt	C
FFFL&	E<DP(B[NX,:::toiii-H	$		ApppTٶⶶoqg~;.W*BBBh´Z,-IU](((uP1\m\\?kD"0x`F###&~?ƸoL&mbڸ	nBO!OOl666QYoyyy_ooo0?~mRURR'```Gevʼ5+ͬV7[q<`0l{{{j555:itGSೳ{!^/\m...CzbK1KK)!]WAWW*ATwwwn777V{#ٌF#jJ5JJ OD%X}XXRU)))|"P
(

ZOP]ikkk\.gsν<4]i]] P@|>>>
(-gggxSsN%'''X2AAAs,SQ}}}7ܕnIGV0pq#|||fffqS{.K\FGGGE!܄BZu---Xcyƿ.8?G#/ZuZZl6f333?ccc\
I89⨯qqqލ2}dђprI9II;C_1HK㨶*[q[[4)ȤR>L-&&&d222}JYj3x<ws3t:a|¾'&h444uzH=HH2$Tzzz=zd>_a__@   =ghhh4rhA,u^ɴ괴}TMTT;vD"""/dddc*梿sss$ZH]:@@@z(@ HV+Õ{3߫KM_az===3̗f[        6VE+++n쳗vvvd2汩(6wlw[tC)wjjjP]PPLE	EEW8`000t+~???ڪUIUUYyeeeejihҺ^e///JN'_`8lp.FdRM)MM9rv꼏uuu06	$y@KYc6p8~>c|7bbbUw:M2)1ĖbR:bf3ţJ5%%% YyYYT*䧷rrrr999aZL-LL;^e^^xxxp888
cWAMC/aaaN{EBB!!!4%֔J<fxR"CCCav;Ǳ+O $QYQQ/Ǽ^%Ommm"9h4e5y[i~~~H=$$$v;;;K=1>"UDkJN%NNsQѷ混f`x<<<|>5Ԕj@og޹&_LX},,,Qk\kWnnn9n7ĪVEVV܈IDDD^O7!TM***gkmֻ
F#SQSS񥋮Wr'X,S'ӜNGlll+b111蹇ttt	C
FFFLE&	<(DPB[,NXt:::oiii-H	$		A୧pppqTٶⶶog~;օ.W*BBBh-´Z,UIP](((u1\m\\?kD"0x`&F###~?oL&mbڸ	nBO!OOl666QYoyyy0_ooom?~RURRG'```5evʼ7+ͬV[ql<`0{{{j555:itGS!{ל^/C\m...)zbK1KK]!ծWAWW*ATwwwn777V{#ٌF# jJ5JJDOڢ%X}XXϏ|RU)))Z"P
(

PO]ikkk\.<gsν4]i]] P@݋|>>>-
(xgggSsN%'''sX2AAA,SQ}}}I7ܕnVGp0q#|||qfff{Sݯ.K\EFGGG!܄BԉXZu---.cyƿ?8G#/ZuZZl6f333\?ccc
I89⨯qqqƍ2}d;prI9II_C1HK㹶*[q[[4>)ȤRL-&&&d222Y}Jjw3x<3st:'a|¾&͉h4442uzH=HHT$zzzd=z>_a__=@   ghhh4rhA,}u^ɴ괴ΨTMTT;v/D"""cddd*梿sss$ZHz]:@@@H(@ V+{3MK_az===[3̗f        6nVE+++쳗vvvd2(6wltw[C)wjjjP]PPWLE	EE8`000t+~???ǪUIUUYyejeeeihҺJ^e///N'`_8lpF.dRM)MMv9r꼏uuu60	$Ky@򲲅Yc~6p8>c|U7bbb:wԁM2)R1Ėbb:f3J5%%% YyYYT*䧷rrrr999aZL-LL;^e^^xxxp888
cWAMCN/aaaB{E4B!!!%֔J<fxaR"CCCv;O+$ QYQQ%/Ǽ^"Ommme9h4y5i[ߩ~~~H=$$$v;;;K=1>Ι"UDkJN%NNfsQѷ混`x<<<|>@5Ԕjog޹&_LQX},,,kӌ\k9Wnnnn7ܬVEVV^IDDDO7!gTM***
kmֻF#SQSSrWS'X,'ӜN+Glllb111蹇ttt	LC
FFFE&	<(DPB[,NXt:::oiiiA-H	$		୧pppoqTٶⶶg~;.hW*BBB,-´ZUIuP](((1\m\\k?D"O#RoyҦ65{`WK.J7wk
)Xg>]ؕ}A'Gf|3Z-lib/libgcrypt-grub/cipher/whirlpool.c ! (buffer_size || carry) WHIRLPOOL                                        @                                              @               LICENSE=GPLv3+ crypto gcry_whirlpool                                                                                                   &                  <                                                                                    	                      
                              `       9                      @                      T                      [                      n                       grub_mod_init grub_mod_fini _gcry_digest_spec_whirlpool memcpy _gcry_assert_failed memset grub_md_unregister grub_md_register               8                   0                   (                                                                                                                 @                         7                                      9                                      C                                      e                                                         %                                      O                                      y	                   
                    
            t
      %                                                                        &                                       t
                          	            t
                          (                    2                    >                    H                                  ?       (                   0                   8                   @             o
       .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @       R                                   @               P                                &                           `@                             .      2                N      I                             B                     PN      `                              =      @               T      x                           H                     N                                    X                     N                                     ]                      N                                    f                      N                                                          N                                	                      pP                                                          U      o                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/ahci.mod                                                                       0000600 0001750 0001750 00000055540 13417732100 0014543 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    W          @     @   AUH        ATUH        SQHH4  HcCI        HHC    L  HcSHHS  @t:AL9vH        H          H        1I        AHcCHHC    AL  HcSHHS  Āt:AL9vH        H          H        1I        AH{ I        AH{0AH{@AHC     HC0    HC@    HZ[]A\1A]AWAVAUI        ATUSH(I] H.         H        HH        H        HIuHH          DKDCH        H          H        1I        I        AHcCHHC    AH  H$HcCHHC  H  @t$AH;$vH        H          OPPAH  H$HcCHHC  t6AH;$vH        H          H        1A     ǀ@        H        H        HHC@HL$Ѻ   H1H        HcsHCH        H{@HD$Ht$HT$H        HHHHT$HBHcsHCHt$HD$HT$HL$HHHT$HL$HHcCHHC    H        HD$HcCHHC  H  @uQAH;$vH        1H          H        AHcCHHC    .  PPHcCHHCH    ĀuAH;$vH        H          H        1AHcCHHC    HcCHHC    H        H  H$GBHL|$%  BHk ALs0HC(LAHC8H[(LHD$ЉHCrHcCHHCH  @@t'AH;$vH        H          \HH        LH{@I} HIE H        Mm H(1[]A\A]A^A_1u@ATH        IUHSHHtsH   Aԅu	H1   []A\ÃtH           1H        DUH        AHSWHHtD9Ct%HY[]H           1H        H        1H        L  H        I        AH]8E    HHCHE(    H]0E1Z[]UH        HAWAVIAUI  ATAH        SH        H8HcGHHGH        D   1Eu1LH        IcFH        H          H        HIFD   1IcFH        H          H        HIFǀ       IcFHIFǀ8      IcFHIFD   1IcFH          H        HIF0  0  McM01MEH        AE0tH        uIEH=    v+H        Heؿ&   1H        [A\A]A^A_]H   H        t	HƃHƿ   I        HEIcFH        MN(H          H        HIFD   1I}IN(    H        f1ҁ  A}0Ѓ 	A} ҃@	A}   Ef	H        IcFH        HIFD   1IF(@    IV(I~0HUAHUH        1HMHBIF(   Hx1I~8   HMIcFH        H          H        HIFD   1IcU0tIF8Iu(Hx@H        IcFH        H        H          HIFD   1IF8H         'IF8@1HcAt HIN8H@4uMF8EXAxApAHAPA@EHE ASWH        V  QH        RH        P1MF8H0EXAxApAHAPA@
EH	E@ASWH        V  QH        RH        P1IV8H0H}HUAHUH          H   IF8ǀ       AMIF8QH           IF8   D   L   h   1RH        A}  _AXt2IuM}H        H}HuLHHuH        1H        H          H        I        IcFH        H          H        HIFD   1IcFH        H          H        HIFD  1IcFH        H          H        HIFD  1IcFH        H          H        HIFǀ  IcFHIFǀ  IcFHIFD  1IcFH        H          H        HIFD   1IcFH        H          H        HIFǀ4     IcFHIFǀ8     IcFHIFD$  1IcFH        H          H        HIFD   1AH N  HEIcFHIFH0  @   AH;EvIcF	  H        HIF     D4  D8  1QH        RH        IcFH           H        HIFǀ8      1YEA^u   LH        E1I        I~@AԋH`I~@MAIcVIv(MHIVD0  ~   D  D8  RH        Q H        P1ASWH        V  H0I~@ADX<I~@D]ADP8I~@DUAD@4I~@DEAԋp0I~@uAԋH,I~@MAԋP(I~@UADH$I~@DMAD]DUH        DEuMUASDMARAPV"  QH        RH        D@ 1H0I~@ADX\I~@D]ADPXI~@DUAD@TI~@DEAԋpPI~@uAԋHLI~@MAԋPHI~@UADHDI~@DMAD]DUH        DEuMUASDMARAPV,  QH        RH        D@@1H0A}  u!I]H}AI}HH        HH}H        HeD[A\A]A^A_]H81H        ATUSHH@HcGHHG0  0  HOwu%HcHHʋ8  u   11  HcI        HH  BBHcCHHCǀ8      HC(     HC8ǀ       HC8ǀ       HC8Hǀ       AH  HcSHHS  H  Āt?AH9vH        H        h  H        1I        A   BBHcSHHS  H  taAH9vH        o  1H        H        I        AHcCH        HHC    BBHcSHHS  ĀutAH9vH        1H        x  H        I        AHcCHHC    H           1H        B0  1H|$0  8   H        D$   Ht$HH        H@[]A\U   HAWAVAUATI        SH(  HAԺ    = k  $   HAԺ  C  H   AԉA  ƃDffDfATDI        DH        H           PH        1A1D   H        H           H        A1D  H        H           H        A1D(  H        H           H        A1D0  H        H           H        A1D  H        H           H        A1D  H        H           H        A1D  H        H           H        A1D  H        H           H        Aԋ  H        H           H          1D  A1DC(H        H           H        AԋC(A]A^   H        H           H        1I        AԋC(H        H           H        C(1AAL  C(uAC(tD1H        H           H        AC(   C(C(MAL9rH        H           H        H           H        1A1DCH        H           H        A1D  H        H           H        AԋCI        xH        H          H        H          H        1I        AA   D  H        H          H        1ADCH        H        	  H        1ADCH        H          H        1AD  H        H          H        1AԋC   I           CA׋Cx#AuH        H        %     A   DCH        H        )  H        1AD  H        H        ,  H        1AD  H        H        /  H        1ADCH        H        1  H        1AԋC      CA֋Cx4AuH        H        <  H        1A1  D  H        H        A  H        1ADCH        H        C  H        1A1DKA    H        H        H  H        A1HǄ(    HH=   uE1I        CDrJǄ    HP   AHHJ  HXDh@H   H        JVȣ        II uE0I        J-H  HcCH        g  H        I        HHC0  0  HcCH        HHCD0  1AԾ      AHHC t&      AHHC0H{ uH        JǄ-       I        AH{0HC(AH        H{(   1HHC81HH{8   HS(H{0H        HHHBH{ AH{0HAHH          H        RH        P1DKDCAHcCHHC    AZA[II   QH        L  L9s31HHtHcPHHP  @uHH   uE1NMtYIcFHIFH  @@t?EH        H          H        1ANJǄ    II u1HHtHcAHHA    HH   uL  L9s31HHtHcPHHP  ĀuHH   uE1NMtYIcFHIFH  @Āt?EH        H          H        1ANJǄ    II uE1NMd  IcELH        H        I        I          H        HIEǀ      IcEHIEǀ  IcEHIED0  1AԾ      H        HIE@A׺   1HAI} A׺    1HAI}0A1   HAMc}MuH        I}@H҉HIIMIFMc}MuI} ҉LIIMIIcEHIEǀ8      IcEHIE    II   zL  L9s31HHtHcVHHV  @tHH   uE1I        NMtYIcEHIEH  @@u?EH        H          H        1ANJǄ    II uE1E1I        NM   IcD$H        H          H        HID$D0  1AD     H        H        A	IcD$HID$    IcD$HID$    IcD$HID$       IcD$H        HID$D0  1AII L`dL9s61HHtHcPHHP(  uHH   u1I        LMt^IcD$HID$H   @t?AH        H          H        1ALHǄ    HH uE1I        J5H  HcCH        H          H        HHCD0  1AHcCH          H        HHC    HcCHHC    HcCH        HHCD0  1AHcCH        H        H          HHCǀ0  HcCHHCD0  1AHcC  HHHSD   1  D   H        WH        QH        AHcCH        H          H        HHCD0  1AAXAYII   UfE1I        J5H   HcC%  H        HHHSD   1  D   RH        QH        AHcCH        H        (  H        HHCD0  1AHcCHHCH    %  BY^II   .I        AH'  AH9s21HHtHcPHHP   uHH   u1I        LMtUIcFHIF   t?AH        H        A  H        1ALHǄ    HH u1HHtHcAHHA    HH   uAH  AH9s31HHtHcPHHP  ĀtHH   u1I        LMtYIcFHIFH  @Āu?AH        H        X  H        1ALHǄ    HH uH        ]  H        H        1I        A1ɾ   HHt$DtHcBHHB    HH uAH  A   AH9s<1HHt$DDtHcBHHBH  @@uHH u1I        LMtI|$ AI|$0AI|$@AHH   u1H*Ht&HcAHHAH   @=  uAL   HH   uHf H        ЉA  ƃDffDf1I        HHtH        AHH   u<   He[A\A]A^A_]H        R    H        HtH        H     1H        H        H        H        к,  H        H        H        H        X1PH        H        H8H        ZH        H                                       	   
   couldn't stop FR
 ahci disk/ahci.c couldn't stop CR
 found device ahci%d (port %d)
 couldn't start FR
 couldn't start CR
 not an AHCI device no such AHCI device opening AHCI dev `ahci%d'
 AHCI tfd = %x
 grub_ahci_read (size=%llu, cmdsize = %llu)
 incorrect ATAPI command size too big data buffer AHCI tfd = %x, CL=%p
 cfis: %02x %02x %02x %02x %02x %02x %02x %02x
 PRDT = %lx, %x, %x (%lu)
 AHCI command schedulded
 AHCI inten = %x
 AHCI intstatus = %x
 AHCI sig = %x
 AHCI status <%x %x %x %x>
 AHCI transfer timed out AHCI command completed <%x %x %x %x %x, %x %x>
 last PIO FIS %08x %08x %08x %08x %08x %08x %08x %08x
 last REG FIS %08x %08x %08x %08x %08x %08x %08x %08x
 couldn't stop CR couldn't set CLO
 couldn't set CLO dev: %x:%x.%x
 tfd[0]: %x
 cmd[0]: %x
 st[0]: %x
 err[0]: %x
 tfd[1]: %x
 cmd[1]: %x
 st[1]: %x
 err[1]: %x
 BH:%x
 Requesting AHCI ownership
 Waiting for BIOS to give up ownership
 Forcibly taking ownership
 AHCI ownership obtained
 AHCI is already in OS mode
 GLC:%x
 AHCI is in compat mode. Switching
 AHCI is in AHCI mode.
 err: %x
 found device ahci%d (port %d), command_table = %p, command_list = %p
 couldn't stop FR on port %d
 couldn't stop CR on port %d
 couldn't start FR on port %d
 couldn't detect device on port %d
 offset: %x, tfd:%x, CMD: %x
 port %d is busy
 couldn't start CR on port %d
 cleaning up failed devs
 Couldn't put AHCI in AHCI mode
 %d AHCI ports, PI = 0x%x
                                                    LICENSE=GPLv3+  ata boot ahci                                                                                                                                              k)                  )      ?                                  	                      
                                       -                      ?                      L                      j                      x                                                                                                                                                          	                                          &                     7                     A                     c                     w                                                                grub_mod_init grub_mod_fini grub_millisleep grub_dma_get_virt grub_memmove grub_disk_firmware_is_tainted grub_dma_free grub_memset grub_disk_firmware_fini grub_ata_dev_register grub_pci_make_address grub_loader_unregister_preboot_hook grub_zalloc grub_get_time_ms grub_real_dprintf grub_error grub_pci_iterate grub_free grub_loader_register_preboot_hook grub_memalign_dma32 grub_list_push grub_ata_dev_unregister grub_dma_get_phys                                          -                     v                                                                                               #                                                                  "                    m                                                                                           5                                                                                     r                    |                               #                                                                                     2                    F                    g                                        
                               T       %                               g                                                                 b                    l                                                                                          z       (                    5                   ]                   n                    z                                                                                                                                                          ;            L      K                   U                   d                                                                                                                  "                   <                   T                  i                                                                        (                                                               A	                   Q	                   	                    	                   	                   	                   
                     
                   *
                   4
                   Z
                    
                   
            >      
                                      (            >      3                   [                               m                                                                                                                         '                    7                   A                   P                   q                  {                                                                                                                                                      K                   U                   d                                                                                                                                    ]                                                                                                          L                          I                   V                  f                                                  8      !                                                  n                                                                 B                                      >                  H                   W                   c                                                                                                                  $                   0                  ?                   I                    q                                                                                                                                                                                                                                                      %                   4                   J                  T                   c                   y            
                                                                                                                "                                                        .                                            5            9      ?                   N                   a            9      k                   z                               E                                                        L                                                                            g                                            Q                  [                   j                                                                                                                                                                                    9                         $                   4                    B                  L                   ]            	      g                   v                                                   9                                                                                                                                                            #            9      -                   <                   S                    t            O      ~                                                                                       9                                                        9                                            &                  0                   ?                   m            O      w                                                  9                                                                                                                o                                            F                                                                                                                                                           c                                                                                            )      !                   ,                   t                                o                                                                                                    >                   H                   R                    \                    k                                                                                 "!                  ,!                   ;!                   m!                    !                   !                   !                   !                   !                   J"                   "                    "                  "                   #                   <#                    [#                   e#                   t#                   #                   #                   #                   $                   $                   $                   ~$                   $                   $                  $                   $                   $                   $                    %                   E%                   P%                  a%                   k%                   z%                   %                    !&                    Q&                  [&                   j&                   '                    H'                  R'                   a'                   '            6      '                   '                   '                    V(                    (                    #)                    :)                   m)                    ~)                    )                    )                  )                    )                    )                    )            e      )                    )                    )                    *                    *                    *                    (*                    2*                                                                        :       .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @       <*                                   @               85      !                          &                     *      ,                              .      2               *                                  B                     @0      (                              =      @               (W      H                           H                     h0                                    X                     x0                                    ]                      x0      	                              f                      0                                                          0                                 	                      3                                                         pW      o                                                                                                                                                                                              boot/grub/x86_64-efi/exfctest.mod                                                                   0000600 0001750 0001750 00000004360 13417732100 0015456 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   UI        I           H        H        HS   H        P1H        I        I        !   H           1R"   H        I        I        H        j   1Y^H]H        H        H        H        H             example_test 1 equal 1 expected 1 == 1 tests/example_functional_test.c 2 equal 2 expected 2 == 2 2 matches %d 2 != 3 exfctest   LICENSE=GPLv3+ functional_test exfctest                                                                                                                                                                                                                               	                                       0                      E                       grub_mod_init grub_mod_fini grub_test_register grub_test_unregister grub_test_assert_helper                                                                  &                    9                     H                     R             :       \             M       k                                                     T                    a                                                              h                                         h                             .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                             @                                           @                           
                    &                     8                                    .      2               E      q                             =                                                          C                                                         S                                                          X                                                          a                            	                                                          P                          	                      0      ]                                                    @      j                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/all_video.mod                                                                  0000600 0001750 0001750 00000001300 13417732100 0015556 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                               @     @   LICENSE=GPLv3+ efi_gop efi_uga video_bochs video_cirrus all_video  .shstrtab .text .data .module_license .bss .moddeps .modname                                                                                      @                                                           @                                                           @                                     '                     O                                      ,                      O       )                              5                      x       
                                                           >                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/aout.mod                                                                       0000600 0001750 0001750 00000002730 13417732100 0014600 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    X          @     @ 
 	 v=  t=   t-  ø   AVH        AHcAUMATIUSHHuH        Luk@D)HcHLHH        H        uMtI<,L1H        Љ[]A\A]A^ LICENSE=GPLv3+ aout                                                                                                                                                        0                             #                      .                      :                      I     0               grub_aout_get_type grub_file_seek grub_errno grub_memset grub_file_read grub_aout_load 4                     \                               
                                          	            .symtab .strtab .shstrtab .rela.text .data .module_license .bss .modname                                                                                             @                                           @                     x                           &                                                           ,                                                          <                                                          A                                                                                                                 	                      8      X                                                          J                                                                      boot/grub/x86_64-efi/ext2.mod                                                                       0000600 0001750 0001750 00000020540 13417732100 0014511 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                               @     @   PH        HPH        H8H        1ZAUI        ATI1UnSHHHP  w(IHcЋGOHX  @   AH           DS   M龀   AJ
KLtsX11҉ǉs(1P  |$~DD$(I L	ǅA   tDCXAJHHX  AHMเ   A1Ʌ        EHH[]A\A]ATH        I  USHHQ  H        I1ҹP     LH        Ѓ}     f{8Su{vH        {L ttC`9t"H        	   1H           tDf   ft8Hu.ft'ǃP         P  9tP  ǃP     Hp  LX  Hh  ǃ     ǃ        H`  HH        Ѓ}  uH4} uH        	   1H        HH        1[]A\UHH        SQHH8H        HH        HHu	E     @0E H        H8H        HH        С        Z[]AWAVAUATUHSH(G*L'EL$  HG0AE1I        HD$Hf;
HK   f{ s       9}HHkD;4;sBtxHHkHYAH H	MuAD$H
   AHIt@At$   1I$X  MN
NHHHH        ЅuLJLH        H        	   1H        H  HkH<9H9r9|ʃt/HcE1HkHʋJH)H9s5BRH HL$(!IH        	   1H        H;\$$  HH          Hw	D0  AI
   H^H9sG`1D$^HH)HH9sGd   D$AHH)HH9sGh   D$$H        	   1H        ҉   AIA   EqAAMcD$A͋t$DHHDI$X  L!LD$H        HH   ЅtH         Dl$uD$LH([]A\A]A^A_UH        HATISHH8H        HH        HH   fDPvxtf@rDKpfDCnKlfAfSjshASEfARI        WH        P1fAfAfEEAH I$I$    H        H8H        HH        С        He[A\]UHH        SQHH8H        HH        HHtHxx   H        HE HE     H        H8H        HH        С        Z[]UHIHWHX  j @PABtEZH L	PH        PH        AQMIHHLH0IIHOHW`HwXH        HPHh  AWAVIAUATUSHH(      HT$t1I        I        @HW   H        H?H        8 t=f|$ t5|$ u5D$;ks"A11LL$A   LHAA<$ t1   DD$Et11IOLL$ HAA<$ uԿ   H        HItHID$t$A   D  D$t%<AǇ       u   h<u   ]QIWH;H        A<$ tLH        EAGAǇ      f% f= @tf= tf= @@HL$LH|$ Aօ   H(  []A\A]A^A_UH1SHHι   H(H|$H$    HT$Ht$H        H8H        H} H        HHD$taHh  A   I        H        HHH        H        8 uHT$H        H<$H        HD$H<$H        Hh  H9tH|$H        H8H        С        H([]USHQ    tCxH        HHu/   HW   H        H?H        8 tXDCA<wHHs0LH        :I111HH        H        8 tHH        1CD  HZ[]AUH        A1ATIUHSHӺ   HHЃ    uCHS   H}H        H        8 u
ǃ      H                 tC$D$$AH	Ј$H        HUHLU H[]A\A]AVH        AUI        ATIUHSHH8H        HD$    HEH8H        HHLh  uH        D    LA   I        H        HT$LH        ЅA   HD$    t\HD$   H`  HpH        H|$AH`  PHU@H`  @lH]PHE    H H	HE@1OHP   HH        ЅAtH|$L9tAHAH        H8H        DH[]A\A]A^SHH        H        H        HH        [H        H        not an ext2 filesystem filesystem has unsupported incompatible features invalid extent something wrong with extent ext2fs doesn't support quadruple indirect blocks %04x%04x-%04x-%04x-%04x-%04x%04x%04x ext2                                                                                               LICENSE=GPLv3+  fshelp ext2                                                                                                                                3                                                                          	                                       3                      B                      O                      ^                      j                      u                                                                                                                                                                                                                             grub_mod_init grub_mod_fini grub_fshelp_find_file grub_xasprintf grub_memmove grub_disk_read grub_dl_ref grub_errno grub_memset grub_fshelp_read_file grub_fs_list grub_malloc grub_error grub_list_remove grub_free grub_strndup grub_dl_unref grub_list_push                                                                 2                                                              2                    T                    p                                                                               \            .       y                                                                                                                .                                                                                      V                                        !                    -            H       >                                W                                               I            s       Z                                                                                                    )            .      q                                                                                                                                                               (            .      E                    _                    l                    {                                                    '                                            <                  F                    \            .       k                                        M	            .       c	                    	                    

                    
            .      =
            
      G
                  W
         
           c
                    w
                  
                  
                    
                    
                    
                    
                                .       (                    M                    g                  s                                                                        .                                               E                    k                    w                                                    .                                      
                                  
           :                                .                                                                                                                                                                                                        	                    g      (                   0                     8                   @                   H                    .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @       $                                   @                      	      
                    &      2               d                                   :                     @      P                              5      @                            
                    @                                                         P                                                         U                                                          ^                                                                                      p         
                 	                                                                                       g                                                                                                                                                                                              boot/grub/x86_64-efi/appleldr.mod                                                                   0000600 0001750 0001750 00000012160 13417732100 0015431 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    0          @     @   UH        HAWI        AVAUIATASH        HH8H        H        H     H        Lp`HKHt2PH        I   E1E11PH        HAZHYuH{ uH        fH1LH        H           H        I        AH        H8H        HIu"H           1H           E   AD$LE1H        IDHEH;HMHH;]E|HMuC?H        HcHH        HtjH1ID fD HyEtHHfDGHf  A9~Hf  IV8A^0H        1H        H        1"H        H8H        С        He[A\A]A^A_]H        SH        H@`H   H        H0H        H;H        H    H        H8H        1[PH        11H@`H   H        H0H        H        С        ZSH        HЅuNE1H        H        H        H        H        H        HH        [H        QЅuH        H8H        ZXcan't find model Model: %s
 appleload loader/efi/appleloader.c no loaded image available Boot BIOS-based system. [OPTS] appleloader Core Duo/Solo Mac Pro MBP MBA MB NV MB NV2 MBP2011 MBP2012                                                                                                                                                                        +ةI               +ةI      @         +ةI      @         +ةI                +ةI                +ةI                +ةI                +ةI LICENSE=GPLv3+  boot appleldr                                                                                                                              d            L      -                                                        	                                       )                      ?                      J                      V                      p                      {                                                                                                                                                                                                                                             '                     5                      grub_mod_init grub_mod_fini grub_strlen grub_efi_system_table efi_wrap_1 grub_dl_ref grub_efi_get_loaded_image grub_errno grub_efi_image_handle grub_register_command_prio grub_efi_secure_boot grub_unregister_command devs grub_malloc grub_real_dprintf efi_wrap_3 efi_wrap_6 grub_error grub_free grub_dl_unref grub_loader_set                                             )                     :                     F                    W                     o                                                                                                                   &                                                                                 ?                            E         
           x                                                                       2                                                                                   4                    ?                   T                   a                    p                                                                                                                                  2                                                          Y                   q                                       x       )                    5                    B                   N                    _                    l                                                                                                                        (                   0                    8             P      @                    H                    P                    X                    `                    h                    p                    x                     .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @       y                                   @               
            
                    &      2                                                  :                                                        5      @               H            
                    @                                                         P                                                          U                                                          ^                            	                                                                   
                 	                      h	      E                                                         g                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/geli.mod                                                                       0000600 0001750 0001750 00000021560 13417732100 0014552 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   SIH
   HPHWXD$eD$kD$eD$yHz @Ht$   D(  1H        H           H        I        AH  H{XLL$A   HL$@   H        ЅuHc(  Ht$HH        HP[H        HD HG  AWAVAUAATI        UHSHH  AHpH  1L$     HH        Ѕ  
   H        H$   H        Ѕu$   ȃv$D$   H        H          /D$   A@DuEu7H        H          H        1I        A8  $   tH        H          "Et;u7H        H        $  H        1I        A  H        #   HD HG   H$   LL$IA   H        @   H        H        ЅujLl$Lt$II        H        Ht$IHI9s$ALH           1IAIHAE     HT$HIBH           
t/DHDQx ADI GAAF9uHHupH FrJ F9t7IH        H        1  H        1I        Ao$   fwHcH        L,MuH              LH        HHu'LH           1H        1  HI        AHItE1f$   uHAHIt$   f vH           1H        뗿0  H        HHzH@    f$   Lp8Lh@H@(    @p    u@h   @l   @h   @l   H        HCH    HCP    HCXH        ǃ      HC`$        9s
  胼$   vH        ǃ     H  H        HH  AHH   H   HC Ht$H        HHĈ  []A\A]A^A_1U1>   HAWAVAUATIHSHH  Hǅ    HF8H        H HxwHCXHx @vH        &     LH        HpHvH        1L  LH        Ѕ  1   HfDH        H        H        I|$(HtH        IE1H        MH        HL   I4$IEI|$( I        H        HD1ALH        о   HH        ЅH             DE   DHH        L H{XHj@HDA@   H/ATHH        ZY  H{XL`A@   L11H        ~H{X11H        HIĿ"     H@   LI        Hp/AHH        HHLAH`LH        Ѕ  H{XL A   H        H`I        HW Aԅ  H{XLA   H        H`HW Aԅ  fA1H        EfDH        M  H        I        E1AHLpoH HH 
D  1EH        H          H        AH{8H H        Ѕ   H{8L   LH H        Ѕ   H{XLA   H HH        HW Ѕu~HCXHH HP H        Ѕ   DH        H        fK$LDH   u4H LHHp@H        ЅtDH           H  @   H H        D(  Hǃ   Hǃ0  @   H   @   H H        11AI   A:H           1H        He[A\A]A^A_]H        H        H        H        H          rekeying %lu keysize=%d
 geli disk/geli.c GEOM::ELI wrong magic %02x
 incorrect sector size %d
 skipping one-time volume
 not a boot volume
 uuid %02x %s != %s
 Cipher 0x%x unknown Cipher %s isn't available invalid keysize %d  , cipher block is too long mdlen is too long not a geli Attempting to decrypt master key... Enter passphrase for %s%s%s (%s):  Passphrase not supplied  keylen = %lu
 Trying keyslot %d
 Slot %d opened
 access denied des 3des blowfish cast5 aes camellia128                                                                                                                                                                                                                                      LICENSE=GPLv3+ cryptodisk crypto gcry_sha512 pbkdf2 gcry_sha256 geli                                                                                                   8                   X                                                                                    	                      
                                       )                      @                      S                      ^                      q                                                                                                                                                                                                                         (                     ?                   J                     _                     q                     }                                                                                                                                                                                             ,                     ;                     G                     b                      grub_mod_init grub_mod_fini grub_strlen grub_cryptodisk_setkey grub_disk_get_size grub_puts_ grub_crypto_pbkdf2 grub_partition_get_name _gcry_digest_spec_sha256 grub_memmove grub_crypto_hmac_fini grub_crypto_hmac_init grub_snprintf grub_disk_read grub_crypto_cipher_open geli_crypto grub_memset grub_crypto_gcry_error algorithms grub_cryptodisk_list grub_password_get grub_zalloc grub_crypto_cbc_decrypt grub_real_dprintf grub_crypto_lookup_cipher_by_name grub_error grub_crypto_hmac_write grub_list_remove grub_free grub_printf_ _gcry_digest_spec_sha512 grub_list_push grub_memcmp grub_crypto_cipher_set_key grub_crypto_hmac_buffer       C                     M                    \                    f                                +                                                                          $                    =            *       O         )           v            4                                      F                                                                              `                                      z                          &                   2                     D                    u                                                +                                                                      
                    s                   }                                                                                                           !                              
         "                                `                   q         "                                        '                               H                    c                                                                             %                    ;                  X                                                                                                                                                 &                       ?               %           )                    7            b      j                                                 +                                        #           /                    U                    z            z               +                                           |                         	                   	                     ^	                  h	                   w	                   	         *           	                    	         +            
         )           7
                  A
         &           x
                    
                    
                    
                                               "           :                    D                    N         (           Z                    d         $                                                  (                   0                   8                   @                   x                                                          .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @       n                                   @               `      H	                          &                                                         .      2                                                 B                                                         =      @                                                H                     x                                    X                                                          ]                            1                              f                                                                                                                 	                            z                                                         o                                                                                                                                                                              boot/grub/x86_64-efi/archelp.mod                                                                    0000600 0001750 0001750 00000010600 13417732100 0015241 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @  
 HH8 tz/uH.uQHt/uH؀.u:Ht/u.HH9tHH9sH밀:/tHtHHJ/uHtHH AWIAVMAUIATUHSH        H(H|$HLHIH} H        Ѕ  HM IA$/t	t  tMl$MA<$/  II9sE1H|$AHIt78 g  HH} HD$Ht$H|H        HHu        ?  J H        LHL$HHT$LI        AHT$HL$:/uYH@2HHH@0z tHAM IHPA} tH  ILE H        H        q   YMt&HL$LHu HH        HL$BD#/Ld$LJ<#LE IH        H           1I        H        AH} AHH        H] A   1I)IIlH([]A\A]A^A_AWH        AVAUATIUSHhH|$HL$HzLD$HHD$H  HH        I        Hl$HHAHDH\$ H|$HH9sA1HD$(    8/u  HHH\$@HL$<HT$8Ht$@H|$A$   |$<  H|$@HD$ H|$HHHt$@H        ЅH|$@  L,/AE t</t	H  A} /uI/   LH        HIt  HuA}     Ht$@HH        Ѕu      1H|$PH        M   uD$<1%   = @  D$P	Ѓ|$< D$PxT$8D$PT$THT$Ht$PLHD$ЅH        H|$@   L$<1D$P    HT$@      u(I|$ t It$LD$PHL$HH|$H        ЉD$,H|$@H        ҋD$,u`|$P 5H|$HAD$(HŃ|$(uH           1H         H|$AT$H        H|$HH        Hա        Hh[]A\A]A^A_AWH        AVIAUIHzATUHSH(HHD$+  E1HI        A1HL$Ht$LH        U    |$u#LH           H           H|$A׋D$HT$D$    %   =   u1H} t*HuLD$HL$LH        Ѕt	H|$m|$ t.ALUAuKH           1H        8Ht$H|$H        ЅuH|$H|$1H|$H|$ӡ        H([]A\A]A^A_symlink redirected %s to %s
 archelp fs/archelp.c too deep nesting of symlinks file `%s' not found  LICENSE=GPLv3+ archelp                                                                                                                                                                                                                                &                      2                      =                      I                      U                      a                      m           x                                                                                                                grub_strlen grub_strcpy grub_memmove grub_strdup grub_errno grub_memset grub_strcmp grub_strchr grub_malloc grub_archelp_open grub_real_dprintf grub_error grub_free grub_archelp_dir grub_memcmp                                                Q                    d                    w                                                                                        	           K                    U                   f                    p            %                                    
                                                                                                               <                                                                               A            2       R                    o                                                                     
                                                   $            O       3                                                   2                                                                    .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .modname                                                                                              @       $                                   @               
                                &      2               d      c                             5                                                          ;                                                         K                                                          P                                                                                            	                    	                      	                                                          `      Y                                                                                                                                                              boot/grub/x86_64-efi/extcmd.mod                                                                     0000600 0001750 0001750 00000015520 13417732100 0015115 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   AUIATAUSH8H_@HL$(HD$     H{ H\$u
H|$S{HH        DHHLL$LD$LHH        I        Ѕt*HT$t$H|$Hl$ SH|$AHAԉHAԡ        H8[]A\A]1H        AWH        IAVMAUI    ATAUHSHLD$HHt`DD$PHL$LH        LH        HuHH        $AHX@D`(HHHkLsHC    1H[]A\A]A^A_UHPH        jZYSHH        H?HH        [HH@tHx t9PtH(Hu$@hH        t1H        @uHDAWAVAUAATAUH        SHQH{ &  sF߃]wH;H        1,LH        H9uEH        u (H        H9uEH        t
H        1H3Ht^H        1I        H;AHsIHu	   )H        1H{Aֹ   D))ɸ   N   AH        H        AuH{H        H(H        H1X[]A\A]A^A_ATIUHcSHH{ t-H;HtHLH        Ѕu	H<( t
H(1H[]A\AUIATUHSHQ6L'FHcE HH?H        HHuH        LС        HcU LlHcU HH    1Z[]A\A]ATUHSHH        Hx0IHE H        Hh[HLH]A\H        1I        AATH        U1SHHHx8H        H        HH        1H{1HHuHI        t0ډA'Hx tPhtu   D   H(뼉ډL[]A\H        H        APH9uH        H        H9uH        ЃWHH+GHi̋FHct*HHHcHqx9HHcHAH    1HH   HQZAWAVI        AUIATIU1SHht$HL$LD$ LL$(HD$P    D$L    ;l$  |$L HcH4    I\ Ht$tI$@)  ;-  HAH|  {-.  I$LK@(t?MH        A7@t)LL$8I|$HT$0H4  ILL$8HT$0MA7I|$H        HIuD$X-AHT$XD$Z D$Y  IA? t51HHL$LH        Ѕ  H        8 t|  x    U;T$  HD$A@ILL9u
L9~  HL$8T$0LLD$AHLD$T$0HL$8vA?-uH  HAHu_1HcMd I        D ;D$}IHt$LH|$PHAՅt  HD$PHT$    HL$(HD$L  =   HH        HItHIH)ك	HA֍HI|$LKHu LH        H        I+ʉL$8LLL$0H        HILL$0L$8tMu'HD$IDHt8-tMtAx  t/I(Mu#I$@(  HH           E1A@    Mu2AX   IH           1H           uRLD$1Ht$XLH        HD$XLD$HuHH        5L9t8 uH        8 uHL$L0Mt$HH           1H        1PHL$1LLH        ЅuH        8 HHt$LH|$PH        ЅuHh[]A\A]A^A_ATUSHoHtLcH1ID$HHH11   Hz tBH4HEHH(H<HH<    H        HtIHHJ4   HHHy t%    HB    AtHZHH(H[]A\                                                                                                                        -%c%c  -h,  -u,       --%s =%s   %s
 Usage: %s %s %s
 %s

 unknown argument `%s' missing mandatory option for `%s' the argument `%s' requires an integer a value was assigned to the argument `%s' while it doesn't require an argument help Display this help and exit. usage Display the usage of this command and exit.      LICENSE=GPLv3+ extcmd                                                                                                                                                                    	                                                                                   (                    ?                      L           A      [     q             n           #                                                                                                                                                                   	                                                        ,                     7                     A    x             V                      grub_strlen grub_strncmp grub_strtoull grub_extcmd_dispatcher grub_realloc grub_arg_parse grub_arg_show_help grub_unregister_extcmd grub_xputs grub_register_extcmd_prio grub_errno grub_register_command_prio grub_printf grub_unregister_command grub_zalloc grub_arg_list_alloc grub_strchr grub_malloc grub_error grub_free grub_register_extcmd grub_gettext      =                     b                     l                                                                                                       #                    7                                                                                                                (                           4                    L                    ^                   l            (       ~                                                                                                                                       %                    5            !       y         	                                                                       &                    =            %       Z            ,       f                    u                                                  6                                                                                     +                    7            (       F                                      [                                                                                                                )                    3            U      R            U                  ;                   Q                           	         
           8	            s       N	                    o	                   	                    	                  	                    	                  H
                                                             (             	      8                    .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .modname                                                                                         @       
                                   @                     `      
                    +                     
      x                              &      @               H      `       
                    3      2               X      ;                            B                                                          H                                                         X                                                          ]                                                                                                                	                            c                                                         f                                                                                                                                                                                                              boot/grub/x86_64-efi/at_keyboard.mod                                                                0000600 0001750 0001750 00000016410 13417732100 0016114 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    H          @     @   duUSH        Ӱ`@`[]ATUSH        HhI`Ã<tAH9r[]A\ATI        U@S1A@dH        <u	Ãt	1u1[]A\ATDUS1H        հ`D`H        <u	Ãt	1u1[]A\H        8 tWH        tH        Р        `   D$H        H        ЊD$`1H11H        H        8 uB1RH        H        `  H        I        AH         XH         H        8 tBSH        dt`H        H        8H        1[1H           8 +  H        8    d   `<U   UH        H        SQf   H            H        dt`    H        `1        H        1҅t7`<t<t<Ct<t<At<t<?u      	   1҈Т        H        H        8H        к   Z[]d1ҨudH            H        VЅM  dC  `<9  <uH        %H        D	AQw<uH              <  H        A1    tAt[  uHH        gA1H        ALFE9uH        `HHukH        H        	    uH        <41H        LB8uH        |zHHuuZDI        tH        H          H        H          H        1A  ɍ u|   H        $f           f           f           f           f        }f        n$  H        $f        If        :f        +f        f        f        f           Gu=f        f                        H        nSu%f         f                뼃9u%f        @f                H        0H        Y1ZH        VH8 tH        H        #H        Hu"H        H        H        H        ЅtY   H        H        H        SH        1H        H        HH        [                                                                                                                  JTZXiMkPlJpIqLrQtOuRzN}K     B ><:;E CA?=+5        !   ,	"  
#   $%  6'&  783-  4 /.  9(0 2   d    *  Y\_  cbZ]^`)SDW[VUaG    @                                                                                                                            X5T8GJHRIKKPMOOMPQQNRISL     ) !"#$%&'-.*+/0(	
3452678U,9:;<=>?@ABCSG_`aV\]^WYZ[cc  dDE            RQPO                    No sets support assumed
 atkeyb term/at_keyboard.c Unknown key 0xe0+0x%02x from set %d
 Unknown key 0x%02x from set %d
 at_keyboard                                                                             LICENSE=GPLv3+  keylayouts boot at_keyboard                                                                                                                          	                                        Y      5                                  
                                                  F      7                      I                      Z                      t                                                                                                               grub_mod_init grub_mod_fini grub_at_keyboard_is_alive grub_term_map_key grub_term_inputs grub_term_inputs_disabled grub_get_time_ms grub_real_dprintf grub_list_remove grub_loader_register_preboot_hook grub_list_push                             .                     ]                     v             (                                         (                           	            	                          %            
       8            Y       D                    b                   n            	                                                                                                                                                                               l                                            !                   9                    a                   k                    |                                                   Y                   
                                      	                   l      $                   1                   T                    g                                                                                                                                    :                  Q                   ]                   t                               p                   p                                       3                                      X                                              )                    6                   H                   Z                   l                   ~                                                  8                                                                                                                         
                                      +                   4                   C                   M                   `                   m                   v                                                                                                                                                                                                                                                              %                    ;                  E            ^      O                    \                    h                   t                                                      X                   4                                                          j      (             F      0             |      8                   @                   H                   P                   X                   `                   h                                x                            (             e       .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                           @                                          @                     x	                          +                           0                             &      @               8      P                          3      2                
                                   G                     
      @                              B      @                     H                           M                     
                                    ]                     
                                    b                      
                                    k                      
                                                                                           	                                                                                      t                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/gettext.mod                                                                    0000600 0001750 0001750 00000020060 13417732100 0015310 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    p          @     @  
 AUATUSHVLg(MttHG(    1I        H;ksHHHI<ALH        H;HtH        H    Hߺ0   Y[]A\A]1H        X[]A\A]ATHUSHu1iHIH        HHtFHLHH        H9tH        8 uH           1H        ҡ        []A\AUH        ATIUSHHH(HH   1HǺ   Ht$H        ЅAtHH        D  |$tHH        LH        #|$ t4HH        LH           1H           D$|$C     HCD$H{HCK HHHtK HH        HHC(uHH        С        ;H+H        HH        H9tHH        HH        1H([]A\A]AW1IAVIAUIATI        USH(H|$H        AHH   HH|$H        H߉D$H        ӋD$u1   H        LL     L1H        AHtUHH|$HD$HT$D$HӋD$tH        LL     L1H        AHIu        HH|$ՉLӉH([]A\A]A^A_AWH        AVAUATIUHSHHH|$1H   ;    Ht}  uM   LI        
I        1}     HLHH|$I        AׅAtfHH        HIt@HǾ_   H        Ht'  H        L     LHH|$AALH        Ѐ;eDu${nuS_tuH             1H[]A\A]A^A_ATH        UH        SHIH        LHHI        H        AH        HH        1HAHH        []A\SHH        H        HHH        1H        HH        [ATH        UH        SHIH        LHHH        H        HH        []A\AVHֺ   AUIATI        USHH?Ht$AԅuDl$Dt$H        H}HHt#LHHI} AԅtHH        1+ HH[]A\A]A^ATHUHHSILg(HI<$ uHwH        I$HC([H(]A\ATHUHHSILg(HI|$ uHwH        ID$HC([HD(]A\AWAVAUATUSHQH(   H?           y  IE1        H        I        Dc E      DHcL	H;k   HHAHuH             H        MHLH        Ѓ Du?HHH        HHH        uH               zIAPMH        uyH{ tr1HH        Ht/HLH        ЅuF1HH        HHuH             ա        ȣ        Hա        ȣ        1Z[]A\A]A^A_À? Ht=UHH        SHH        QHuHH        HHDZ[]tH           1H        PH        H:H        HH        11ZATIH        USH        H        H[HLH]A\H        H        ATH        USH        H        HIH        LHHI        H        AH        1H        HHH        AH        1H        H        1H        A   H        H        H        H        H        H        1H        H        H        H        HH        []A\SH        H        H        H        [H        premature end of file mo: invalid mo magic in file: %s mo: invalid mo version in file: %s %s%s/%s.mo %s%s/%s.mo.gz %s%s/%s.gmo /locale  prefix locale_dir secondary_locale_dir lang one argument expected %s
 Translates the string with the current settings. STRING gettext  LICENSE=GPLv3+          gettext                                                                                                	      :           
      9                                                                                               -     g	      O       H                      X                      g                      s                                                                                                                                                                                                                                                                     +                     :                     E                     O                     ^                     k                      grub_mod_init grub_mod_fini grub_env_export grub_gettext_reread_prefix grub_error_push grub_xasprintf grub_strdup grub_file_seek grub_errno grub_memset grub_register_variable_hook grub_register_command_prio grub_printf grub_file_read grub_zalloc grub_strcmp grub_strchr grub_malloc grub_file_close grub_file_open grub_error grub_free grub_error_pop grub_gettext grub_env_get                      E                     Y                     }                                                                                                                                                                       I                   _                                                                                           7                                               &                    1                    @                    M                  _            p       l                                                    Z                                                                             e       L                    g            s       {                                                                              ,                  C                    _                    s                                                                                                                                                     @       -                   <                   Q                    e                   o                                                                                                                                                   @                                                                A                    p                                                        9                    S                    ]                    g                                                                                                                                        *                    B                  Y                    n                                                                                                                                                    @       	                   	                   .	                    ;	                  J	                    W	                   n	                   z	                    	                   	            @       	                  	                   	                    	                   	                   	                  
            @       
                   
                    .
                   ;
                  G
                   S
            _      _
                   q
                   {
                   
            	      
                  
                    
                  
                   
         	           
                   
                   
                   
            @       
                    	                               p                             .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .modname                                                                                              @       )                                   @                                                &      2               i                                  5                     w                                     ;                     x                                    K                           x                              P                                                                                             	   	                 	                            x                                                         Y                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/ata.mod                                                                        0000600 0001750 0001750 00000021330 13417732100 0014372 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   H1H9sfFHHfOf  HG@H@HtUH        SHHH<$Ht$Ht#HHtHH        Ѕu
H[ 1   H[]H@H        UH        SHHH<$Ht$Ht#HHtHH        Ѕu
H[ 1   H[]H0H        H           1H        AU   I        ATIHvUHSH        H8H|$A1LD$H        H        0   H        It$.   H|$A1LD$H        H        2   H        It$6(   H|$A1LD$H        H        4   H        Ӄ}    DE H        H        8   H        1LEH        H        9   H        1ӋMA   H        :   H        1AH        H8[]A\A]UH        SH   HHHš        H   18   H|$H        HS0HC@Ht$D$D$HHD$    Hl$PtHS0    ^H|$    t)HC0H           H             1*HHH        C   H        H1HH[]AUH        AATAH   USHHHH  H        H(HE  HDDUtH        Hm      у{ Hk@      H        Hš        H  18   H|$H        HS0HC@Ht$Hl$HD$    HD$D$PuH|$       Dd$H        HH             DuD$t(HH        	  EuHC0        HC0H           H             1   C        Ectf   f% f;tExH   HC   tA   Pu      C   C       K9QSrC	   fEHHfCfEfCEfCH        HH        qtmH        8 uH           1H        HH        ,HH        H           1H        1HHH[]A\A]AWAH        AVAAUIATUSQHHuH        1     ,hI        tIM   DDAU HAZ[]A\A]A^A_AVI        AUIATE1UHSH        HALHHH        ЅtAHAuHAAD 0	w+z tp[]A\A]A^H           1H        HH        1I| 1H        DHH        HHu        EHB      HEHz(H}+J9vuBAHU@ED	HE 1[]A\A]A^AUAAH        ATIUSHHDD$HHDD$uH             x H        t	H1PIcH        H        HI        (   H|$H1AIt$H|$A$AHDHH[]A\A]AV1I        IH        AUI  ATMIUSHH        H@Ho0H        A18   H|$H        H1D$ HD$ D$	 D$HE@Ht$\$D$HLt$0Dl$8H\$ Ld$Pu"H9\$ tH           H        H@[]A\A]A^UE1I        HAWEIAVIAUATSH  HhD/HUHxH        H        H        AAu)HEHHtA~ 5A~ ҃%/A   A~ A   $f   A~ ҀX   EtA   EHE    DwHEH9E  HEH+EH        IEH        K  H        I        I9LGP1ATAӺ8   1H}H        ZAY   rVA   HEDeH]EHHELHEHHEHH EHH(E   Av1҉ANz19wAv9w9v"HH           1H        IE@}U41I   HIEH]EH؃HEH؈UHEwAND}EHxHELHA~  HEtE   IF@1HuLPuDANLHH9EtH           1H        HxLLe1He[A\A]A^A_]H@A   H        H@E1H        SH        HHu        1x u[H           1H        HC0C   1[H        HH8HW H        H        HtH9uH@ HHP H@ H        PH        ZH        H        H        PH        ZH        H        ATAPI write not implemented Serial: %s
 ata disk/ata.c Firmware: %s
 Model: %s
 Addressing: %d
 Sectors: %lld
 Sector size: %u
 device cannot be identified no such ATA device not an ATA harddisk %s%d grub_atapi_read (size=%llu)
 incomplete ATAPI read grub_ata_readwrite (size=%llu, rw=%d)
 rw=%d, sector=%llu, batch=%llu
 sector %d cannot be addressed using CHS addressing incomplete read no such ATAPI device ATA                                                                                                                           LICENSE=GPLv3+  scsi ata                                                                                                                                   .            I      .                                                        	                                       )                      6                      D                      [                      f                      r                                                                                                                                                                                                  	                                1       8                      grub_mod_init grub_mod_fini grub_strlen grub_strncmp grub_snprintf grub_disk_dev_register grub_errno grub_memset grub_scsi_names grub_ata_dev_register grub_zalloc grub_malloc grub_real_dprintf grub_error grub_free grub_disk_dev_unregister grub_scsi_dev_unregister grub_scsi_dev_register grub_ata_dev_unregister grub_strtoul    8                     g                                %                                         H                   %                                               '                    ?                    \                   f            (       u            ,                   7                   (                   ,                   E                   (                   ,                   P                   (       $            ,       6            `       @            (       O            ,       f            (       u            ,                   o                                                                   .                   =                    Y                  l                                                                                                                         -                    ~                                                                                                                                                                                                                                                             ,                    O                  r                                %                
                                                   7                   H                    W         
           l                                                                                                4            %       L                    V                   d                                                    (                                      ,       	                    `	                   o	                    	                    	            (       	                   	            ,       p
            "      
            (       
            ,       
                    
                    X            B      i                                u      )                    e            	      x            	                                                                                                                                                          0       (                    5                    ?                    K                    V                    c            0       m                                                                                                                       0                   @             5       H                   P                    X             o      `             Y       .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @       w                                   @                     P
      
                    &      2                                                 :                     `      p                              5      @               (            
                    @                                                         P                                                         U                                                          ^                                                                                               
                 	                            E                                                   0      g                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/fat.mod                                                                        0000600 0001750 0001750 00000020740 13417732100 0014403 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   PH        HPH        H8H        С        ZUH        SHQHG0  տ  HC H{ HHC(Ht1HuH        H{(ա        Z[]AWAVAUIATUHSLHHF@HT$ HL$(Lu9DfvH        A	M)L$   M9MGLЅ    ~ A   LƍO	IHIωt$M!A;uDsAED    AEH   E1E1HHD$\  EED$<Ar  Au	%  D$<H        1DL$<H        $  H        I        AӋT$<A;U$[  0  A;U,&  AEDAUHD$A;EDAuHvMAM       AuLD$<HHcH        Ѕ-I   AM HD$ LL$L$   LHAu(HE0M)HD$(I9LGIHE8LLL$H        H        HE0    8 uLL$L$   E1L)M̋D$DHۉD$O/$AEHtD$<d$<  H        	   1H        HHL[]A\A]A^A_UIHPLWPHGHO`HWXVLLGH8H        ZYAUATUHSHhH  P   H        HHe  11I        LD$Z   HAԅM>  D$t1ҨuADDAA@vD  T$t1utvS   T$D$Dc ҉S  DT$fEuDT$*AEDS  |$fu|$&{|  Dl$Em  D\$L$EIAJtDDkHHDsD)s(C,"  f|$ uQfD$.L$2C    C$KtL$9   DD҉Sf|$    f|$0 t1   =  CwC   C$  C   C$  s9   1I   HAхu~S$ u% $!u%     $%     $f|$ tD$-D$ICLD$$	9uCCDC0C@H01HH        H        	   1H        1Hh[]A\A]UHH        SQHH8H        HH        HHtHpLH        1H        HHE Ht#
tqAFHJHE     H        H8H        HH        С        Z[]UHBHAWAVAUATAEESHH(H}HuHEHC011A    HuH}L@ LC0PH        SZH Y    K   @DtDk?ADA9t	AA닅tCA9uDrHuI        
   EkMcK< H{(LEALEHs   OD 
LH{(LEAHC(LEHs   J| A<<uE8  A.  11HHuD9  EkHs(HC E11McM9  f>LNta $  wF   H

 $  H?ɀHу?ʀ?PɀH	 ?IH1xw@8@  w?HπP@xM (  v= $  w ?H)??πʀ@x@0PHILHS t@1@4@tHH@rHu   HЅ   ɉʀ<    H1@4@t3@Hxp FHHBuָ   ȉ< uHʅuHB.1@tQ@t3@Hzr FHHPuԺ   ʉр< uHȃuH  1H        ,   EHe[A\A]A^A_]AUH        ATIUSHHH/H8H    H        HH        HH   @0u$H           1H        1   H|$H        ЅuVI        HT$HHAՅu"D$߃uH|$(H        I$H|$(H        H|$0H        H8H        H        HС        HH[]A\A]AWMAVMAUATIUHSHxF0H|$HL$u"H           1H           A<$/uI/   LH        HItRHH        L)yHL$HH  HL$HLH        HHL$HL$ LH        HMH|$8E1MAA!H        ЅtRHH        1     1H|$(H        DD$CD$(D	ЃAD$(t"HT$8HH|$H        Ѕt   ; H|$XuEtLHt$(Aօ   HIAt6t/DYDQ ADXAFDP AAF9uIHJB FpH F9SD$TT$RDE0EDHE8D$L	EE@   tLHt$(A1H|$XI        AH|$`AH        8 u)A	u$HT$H           1H        1H        H1IEHx[]A\A]A^A_AUH        ATIUHSQH8H        HEH8H        HHtmLI        H}E1E1HLHH?AH        : u8HuC0tH           H        H]PHC8HE@11HH        H        H8H        С        Z[]A\A]AWH        IAVAUATUHSHL/H8HT$H        LH        HIu1   HH        HxIH        HHtHLHH        B|5/J3t /H  I        HMLD$HHLLAHtH        : tHH        LH        H8H        С        H[]A\A]A^A_SHH        H        H        HH        [H        H        fat_size=%d, next_cluster=%u
 fat fs/fat.c invalid cluster %u not a FAT filesystem %04x-%04x not a directory file `%s' not found not a regular file                                                                                               LICENSE=GPLv3+  fat                                                                                                                          5      3            h                                                                               )                      8                      E                      Q                      `                      l                      w                                                                                                                                                                                                                             grub_mod_init grub_mod_fini grub_strlen grub_xasprintf grub_memmove grub_strdup grub_disk_read grub_dl_ref grub_errno grub_memset grub_fs_list grub_strchr grub_malloc grub_real_dprintf grub_error grub_list_remove grub_free grub_dl_unref grub_list_push                                                                    +                     8                     x                                                               g                   x                                "                                               i                    u                                +                           <                   g                                                                        >                           #                    5                    D            J      [            S       g         
                                                                                           *                                       6
                    ]
                    
                    
            J      
            ]       
                    
            5       
                                      (                    ;                    H                    T                    b                                ]                                                                                       @                    g            5       z                                                                                                              m                                               .                    F                    Y            J      p            u                                                                                                                                                                     <                    K            J      i         	           |                                                    u                                                                                                          ;                    E                    O                    ^                    j                    t                                                                         *      (                   0                     8             Y
      @                    .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .modname                                                                                         @       ~                                   @               8            	                    &      2                                                  :                     `      P                              5      @                            	                    @                                                         P                                                         U                                                                                      p      
   	                 	                      8                                                                ^                                                              boot/grub/x86_64-efi/backtrace.mod                                                                  0000600 0001750 0001750 00000004730 13417732100 0015551 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @  
 UH        SHAQHH        1H{H        H        1HsH        1HsH        11Hs H        HH9sAXHH        1[]H        HH)H= H9tHYH    PH        1ZH        L HMtNI@Ht?HPH9w1HHHH9s%H)H        PH1I0I        AH M@PH        1H        1PE1H        H        H        H        H        ZH        H8H        %p:   ( %p, %p)
 Invalid stack frame at %p (%p)
 %s.%x+%lx %p Print backtrace. backtrace      LICENSE=GPLv3+  backtrace                                                                                                      M      <                                                                                                       	       ,                    C            {       `                      {                                                                   grub_mod_init grub_mod_fini grub_backtrace grub_backtrace_pointer grub_backtrace_print_address grub_register_command_prio grub_printf grub_unregister_command grub_dl_head                                               (                     4                    F                    X                    l                                                                       
             	                                
            1                           7            ;       C                    U            >       _                   i            O       s                                                                                 .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .modname                                                                                              @                                          @                     (                          &      2                     Y                             5                     ;                                     ;                     @                                    K                     P                                    P                      P      
                                                    `            	   	                 	                                                                                      Y                                                                      boot/grub/x86_64-efi/gfxmenu.mod                                                                    0000600 0001750 0001750 00000166160 13417732100 0015311 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    0          @     @   AWAVAH        AUIATAUSH        HXHIu,H        H           1H          0   H        HH  H|$H        Ѕ  A<(t3</t/H        LHH        1H        H1H        HuCH        H8H        HLT$HEt$H        H        =HHH   IDH        ЅuH        T$9PuL$9HuHI        AH        HHuHAס           D$D   I        D   L   ǃ   L$%   T$11   Aԃ    tH        ЋL$T$11AHH        H        H]HHEH        HE(H        HEH        HE H        1HX[]A\A]A^A_H        RH        HHtHtHPpHtH H        H        XPH        H8H        H        H     ZAVH        AUATUSHXpHtl1H        H        HߋP pS H        LsHDhS8AH        HߋhS0HD[D)]A\A])LA^[]A\A]A^Ë9w	G9v19w1N9w*WN9wGЉǸ   9v19w
N19UHH        SHQHPtHC(HHH Z[]X[]UHH        SHQHPtHC(HHH@Z[]X[]AUH        AATAUSQHHtH{E1DDSHX[]A\A]ATHUSH   I        H        H8H        HtHH        AH{PI        AH{XAHCpHtHPPH{8H{xH   H   H   HtHHH[]A\[]A\AVH        AUI   ATAUSHH  I        H        H8HtHH        AAk
   1DckH            C    1C   C$   ƉCkA)ADc)ŉC H        kH        H        Hǃ       HC(HC011HC8C@ CA H        CB CCCDCECFCGCH CI CJ CKHCP    HCX    C`    Cd   Ch   ClCmCnCoH        HCpH        HՋKHCx   1HHǃ       Hǃ       ǃ   2       L)      CC-      H        ЅHtH        1[]A\A]HA^UHAWIHAVAUI        ATSHH8AՅtH        1H        H}H        Ѓ}uKSH        s;IXDCDKDsD#Ht)APEDD1H        AQEE+E+OXZGAOoAWnH        AwmAlDMDEDMDEDDH        DI   Ht	HHPIwxHthI(H        EgAOCAWBAwAA@A)IG(AD@ H        A(DEIw(IxDEDH        I   HAՅ  I   A   E   E   E   H]HE   I        AOGAWFAwEADI_0L]AӋUI        EFAMLMAt$EAAOKAWJAwIAHL]AD}EDLMDDAHuHH        H߉EH        ЉC    D+mA)H}AHޙAUCL% E<H        G7Ѓ}u   H        He[A\A]A^A_]UH        HSHHHt5H{HHR8   H        HHH        HH[]USHQ   u      H        ڿ   H        HH        Ѓ    tZHH[]X[]U1Ҿ   H        H        SH1QHH        Ѓ    tZHH[]X[]UHH        SHHHPt/HHHP8   H        HHH        H[]UHAWAVAUI        ATSHHHH8AHHEu H           H          {   H{8AIŋDCDK$I        DcL]D{M   ECLDEDMDs ECECEAHL]DMDEt	@kP  EUC4	EkAAvFD9}E9|<DEM   LAHDEt	@kP  EUA   EkAA9~E9D/AkDDA   Dm))D)AAD)AIE9EOA9|E9EOE9|DmEDD%DA   Dm)șAADD)ЙAEET= D{)s DK$E9D0C    DOD)E9DkOCH؋KsH        C$1SPH        uD   DC Y^H        H        H{X uXDK`sSHKPEuA   H}H         CdA   H}PChPH        XZHEHtHCXDCDk1D#Ds11I        DEADDDEDI        I        AAՃ    t2DCK1ҋCD311DEMEADEMDUAI        H   HH        I        AHH        H   A1I        AHHAAՃ    t1AHHAHe[A\A]A^A_]UH        SHHVH        H   H   HH        H        Ѓ    tH   HHY[]H        X[]É   H        HUH        HAWAVAUATASH(HuUDE1HuH   j E1E11HHUj H}H        I        j j IH H}AMxZH]I(DHǋMuH        AWAԅuhH L}K7H9sEHH}H        HIu        1fAGf<vIAfAgI H}J7I9rA1He[A\A]A^A_]AV1IH        HAUATUSH0Ht$HIyH             1   H\$L,    1H|$J/H9s^HLHT$H)HHH)H        Ht$HLH        fD$f<vH|$(H        H        ЉH0[]A\A]A^AWAVAUIHATIUHSH        HLIIH        K|7HH        HHHu1   U HAHňP} tHH9ty/t/HA$IHAA|$ uH        @0HHQ@1x tH HHH        H        HH$H             HXAUAuA   H|$H        H<$H        HD$H[]A\A]A^A_ÿ(   QH        Ht-H     @    @    H@    H@    H@     ZAUATIUH        SRH_ Ht#LkH;H{H        HLID$     X[]A\A]UH        SHPH        H;ZHH[]UHHSHRH?H8tHH        H        ЅuH;H        HtHH        1HX[]ATAUS;wHu;WtHH        ЉkDc[]A\AW1AVAUATUSHHLf HJ  MA  M,$Hk Ht&LH} H        Ѕu	HE
  HmH;H   H        I        H        HIH        Ht*HHD$HLH        HL$HHA1LAHu8H        H        HtEHLHH        HHt(   H        HIuHH        1&LH        InIHC IFLs IFMd$H[]A\A]A^A_HcG;G} HHO<
uGG   GÃHcG;G}HÃUH        SHHՃ
tu[]@	   t@ t@
t1@UH        SHC9C})HH        ЅtHH        []ATH        I        USHЋkHAԃt0߃AvPЃ	v
_t-uHH        HcS)~H;HcH        []A\[]1A\AVH        AUI        ATUSHHAՃ"u7HI        ADck;k|HArHAՃ"tHA݃(DcuH        HՃ)tuk9D;c}PI        k;k}!HAAօuHH        H;HcIc[]A\A]A^H        KHSH        DC   1I        A[]A\A]1A^ATIUHSH        H|$HD$8    1H|$-+utHH|$݄u1Ht$H        H        uTHt$؅EȀ>%u;1E$y@A21Ad   AمEHAHt$E$XM P1H[]A\AWAVAUIATUH        SHH8HIHl$B  H        HI        AօuH           H        LAօuH           H        LAօuH           H        LAօuH        ~H        LAօuH        ^H        LAօuH        >H        LAօuH        H        LAօuH        HHu""  KHSMDCH           H HS H        HI        PHHE HSH        HPHD$     D$$    Ht$ D$(D$,HHE P0IE(HLI        HAHAՃ{L|$L,$uHE$HD$BKHSMDCH           1I        A1  #uNH        ЋC9C  HHD$I        HH        Ѓ}HuH$  +uNH$HE H        HPtHHH        Ѕ  KHSH        DC$HD$HIu.KHSH        DC   1I        AN  HAHH$Ѓ=t.KHSMDCH           1I        AHAHH        HIuLH           H        LAօu
HUHu%H        LH        ЅuHUHuLH        VH        LH        Ѕu
HUHuH        LAօuHu HT$HE LLHPHLH        H        LH        8 LH        С        H8[]A\A]A^A_AWHAVAUATIUSAPu'HHtHPP11H        I$  Hu(Y[]A\A]A^A_H           1H        HH        HH   HǾ*   H        HII        u"HH           1H        mIH        I)I~HHtOLHHH        IuHBD5  H        IHAMtI$HtHRPM,$HAס        Z[]A\A]A^A_AWH        AVIAUATUSHHxHt$H|$hHHHD$`H        HHD$tYHD$Hx@H        |$LHcHL$HHD$@D$H    D$P   D$T   HL$Xu'H|$H        H|$`H          HcT$LHH|$H        HcT$LH9  I   HtHH        I   HLHR0D$L9D$H(  H|$@H        Ѓ#H|$@uH        H        H|$@H        Ѓ+H|$@u)H        I   H|$@H          H        HIH|$@uH        p  H        I        H|$@H        Ѓ:t4MDD$TL$PHT$XH           1I        A
  H|$@H        H|$@H        Ѓ"  H|$@H        HHD$TD$ D$PD$$HD$XHD$(uDD$ L$$HH        }  HD$`H\$hLH        I        HD$AՅuHH        HC(  LH        AՅuHH        HC0  LH        H        ЅuH{8AHH        HC8  LH        I        AՅHs@  LH        AՅHsD  LH        AՅHsH}  LH        AՅudHH|$H        HI  HH|$8H        ЅLtA  AH{PH        HD$8HCP  LH        AՅ   HH        AՅuC`      HH        AՅuC`     HH        AՅuC`   b  HH        AՅuC`   B  HH        AՅuC`   "  HH           LH        AՅ   HH        AՅuCd      HH        AՅuCd     HH        AՅuCd     HH           1H        s  LH        AՅurHH        AՅuCh    ?  HH        AՅuCh     HH        AՅuCh     HH        bLH        AՅuHslHH          LH        AՅuH{pHT$HH          LH        AՅu
   1HH        ЉC$^  LH        I        AՅu+sHT$8HH        Ѕ!  D$8C  LH        AՅu+sHT$8HH        Ѕ   D$8C   LH        AՅu+sHT$8HH        Ѕ   D$8C   LH        AՅu$sHT$8HH        ЅuhD$8C _LH        AՅuH{xAHH        HCx/MDD$ L$$HT$(H           1I        AHA,DD$TL$PH        HT$X   1I        ALAH        8 -I   H        H|$H        I   I   HtHIǆ       H|$@H        H|$H        H|$`ӡ        Hx[]A\A]A^A_HtG1Ht1ATUSHoH        H}(H}8A[]DA\ATUSHoH        H}8AH} D9H}DM[A9]AMA\ATUSHoH        H} AH} D9H}DM[A9]AMA\ATUSHoH        H}(AH}D9H}DM[A9]AMA\ATUSHoH        H}0AH}D9H}DM[A9]AMA\ATI        U1SHHCH<(HtAHCH(    HCH<(HtAHCH(    HHHuH        H{H{HC    HC    HH[]A\AUHcATUSAPHGL,HGL$MtaӉuA$uAl$I} Ht9u9ot8H        IE     t tA   LLH        С        Z[]A\A]AUAATAUH        SHAQ3S   Յ   D   HՅ   D   HՅuxD   HՅud1H߉ՅuT   H߉ՅuA   H߉Յu.   H߉ՅuAXHHD[]A\D   A]X[]A\A]HcH<Ht%UGE1E1   HPPH        XZAWAAVAAUATI        USHHHoHU HHT$AAH} AD9H}DMAHT$A9I        AMŉD$HAAH}8AD9H}DMAA9ADEMH   EH        DՋD$KDH{   E,DՋH{D   DH{DD   H{DD1ՋH{D   DՋK   H{DDՋKH{D   DH{HH[]DD   A\A]A^A_AWAVI        AUIX   ATIUSH(AHH  H        @    AֿH   HCAHC1HSH    HHHu0HSH    HHHu1I        M   M   LAHD$H        H(HHT$ALHD$AHL$Ht$H|HAHI  HT$LL@8HHq@9x tH@2HHA@1z tH1AHA| uHH{LLD$H        LD$H        LH             HHHH        HCH        HC H        HC(H        HC0H        HC8H        HC@H        HCHH        HCPHHH        1H([]A\A]A^A_HGHHw0HG0HHVHG8HW@HG8HW@HHVATIUHSH_XHtH;HAH[[]A\AUATI        UHSQH_XHtH;LkHHLAZ[HH        ]A\A]HGPHXHt"H97uHWHPH        HHUHH        SHHH        QЅu2H{HH        HtHH        HCHHCH            Z[]AWH        I        AVIAUATIUSHHH|$HD$ HL$,HT$(Ht$$HH        Av<A~8t$$|$ ANDAV@AMnXM  I] EN@   A~DCKk AC$ǙŋCADKACǙHCLR@Mt<L$D$HT$0DL$Ht$HAҋT$L$D$DL$9LʋT$09LAv@    NʅNVA9DMAVDz9M1EDHυE	HǉD)DL$0D$4A9Mύ<()ƉL$89HMHt$0l$<HP0A$T$09wAL$9v9w_L$89wUAL$t$49wA|$9v9w9|$<9w/|$u9vOHLHP|$u   H        MmpL$,T$(t$$|$ AHH[]A\A]A^A_AD$T$89r9wAL$t$<9r1H        UHH           SHQHt!HHUXHHHPHEXHH@ Z[]X[]UHH        HSH        QӅ   tH        H1҅Z[]ÿ`   QH        HtH        H        HP(HZHGHHw0HG0HHVHG8HW@HG8HW@HHVÉwPWTO\DGXHPH        H        ЅZH        H        Ht#H9xuHHH        H
HH SHH        HH        [HtpHtkSH        HHHu1HH        HH|$     H        H        H     H        HD$H[1UHAWAVAUATSHH8P   W89w	N9v9  S@9  FS<9w	N9v9  SD9x  {x tSH   HtH        H   H{pI        AH   H   H{pACx    H   H      H      HEHHHPHpHH        Ћs<{8H        }uċKDS@H   D{@D[DHt7DG1E1H   Ht	D DhE1E1DA   APD)D]E1əVE1AD)   AH        D]DY^E9ANÙAE9DAMřAE0)AKXECT9~S\9~Ds`))D1DAE1҃{h tEDs`D   E1EDI        EDED]E]C:D9   1DMs` @  }DUL]E1ICdAKAH        HAE1əuE0E   H   AUH        ATXZDUL]kM̋UH        uċ}He[A\A]A^A_]AWAVAUI        ATIH        UHSHLHAՅu
   1HH        ЉC`G  H        LMAՅAW  I        } @u} -tE1AԅtHHA   
   Ht$HH        Et7I       HHL9vQH           1H        L/HHy'HH           1H        H        I        8 u~HD$8AԅtHD$H        H|$AAօuDx(1+H        H|$H        ЅtAع   -1ҾZ   AA߅DDD{d  H        LAՅu H        HAՅCh  H        LAՅu>Cx   H   H        HtHH        1H   L  H        LAՅu>Cx   H   H        HtHH        1H      H        LAՅu8Cx   H{pH        HtHH        1HCp   H        LAՅ   HH        H{HH        HtHH        HCHHCH    H{HHtLH        Aօu;   H        Ht%H        HXHHH        HHH        H[]A\A]A^A_ÿ   QH        Ht0H        H        @P   HP(H@`@   @dZ1Ʌyޱy߃1߅EHGHAW1IAVIHOhAUIATU1S1HHLWXt$D$    HL$L;T$tuM"D$,    D$0    I$LZ@Mt"D$LT$HT$0Ht$,LAӋD$LT$AT$ t$,9OڋT$09BAT$AD$9t)t$MR=   A   E1AA!Mt0=     )H        AA/l$A9/sA/MtA|$    M}XE1L;|$   I/D$,    Dt$0D$4    \$<D$(    HE H@@HtHT$,Ht$(HЋuEt$8uAE@   ED$8D$(9D$8sD$8HE Ht$0HP0Dt$8MhHH[]A\A]A^A_AWIHOh1AVIAUE1ATIUS1HHLOXt$D$    HL$L;L$tpI)D$,    D$0    HU LR@Mt"D$LL$HT$0Ht$,HAҋD$LL$Ut$09OڋT$,9BڋU E$A9t)t$MI=      1E@!Mt2=     D)H        AE/Dl$E9/sE/MtA|$    Mt$XE1L;t$   M.D$,    D$0    D|$4\$8D$(    IE H@@HtHT$,Ht$(LAM L$<uAD$D   AE$ȉD$<D$,9D$<sD$<IE Ht$0LP0D|$<MvfHH[]A\A]A^A_Hw0HG0HHV1ɾ   HG8HW@1H   HG8HW@HHVHH   H1AUIATIUHohSQH_XH9tH;LAH[X[]A\A]SH        H   Ht2HPhH        H        HH(H0HPXHPPH   HPx[AVAULohATUHSH_XL9I        tH;LsHHLA[HL]A\A]A^HGXHhH9t2H90u'HPHHHHJHPHHH        HJH@UHH        SHHH        QЅu2H{HH        HtHH        HCHHCH            Z[]AVH        AUI        ATUHSHH0H|$HD$HL$HT$Ht$HH        Ћu<}8t$|$MDU@ALeXHEhI9   M4$Ht$ ILP8T$ 9w	K9v9w[L$(9wQKt$$9w	{9v9w9|$,9w/|$u9vNIHLP|$u   H        Md$eL$T$t$|$AH0[]A\A]A^CT$(9r9wKt$,9r1H        UHH        SH   AQHtAH(HSxHHHPHBHShHPHCxHE P H   H1AX[]1Ҿ   X[]UHH        HSH        QӅ   tH        H1҅Z[]H        H        H        H        HG@Hw(HG(HHVHG0HW8HG0HW8HHVHPH        H        ЅZH        H        Ht#H9xuHHH        H
HH UH        SHPH        H{PH{XZHH[]SHOlwHH        HPHCXH        slH        HHE1HCP[ATH        IUHSHHwPH`ЉE H{`H        _ A$[]A\ATUSHH H >  W09w	N9v9$  S89  FS49w	N9v9   S<9   Cp1tJuk8HsPH        H{`)(   k8HsPH        H{`)y1;k8HL$HT$Ht$H|$H        I        Ћs4{0t$|$K<S8AHC`KkSjsi{hD@ H        DD$Hs`H{PDD$H        ЋL$T$t$|$AH []A\AWAVAUIH        ATI        UHSHLQAԅ   I        H{PAH{XAHI        uHCX    H        A   HH        AԅH        t<HH        AԅH        tH        HAԅuH        H        HHAՋslHCXH1H        HCP  H        LAԅuHH        HC`Y  H        LAԅuHshHH        -  H        LMAԅu4E1I        K| EH   HIAօuD{p   H        LAԅu H        HAԅCH   H        LAԅ   HH        H{@H        HtHH        HC@HC@    H{@HtLH        Aօu;   H        Ht%H        HXHHH        HHHZ[]A\A]A^1A_Sx   H        HHt_H        H        CH   HH        H        HCPH        Ch HC`Ci Cj CkCp    H[AWAVAUATUSHHH  G\DghD`$HU8HD$UHH  L   D$EkLAU8LAAUHHAU8HD$UHSDDL$EDDD+T$+T$E9EMD)D9MD$$H[)]1AA\A]A^A_HGHHw0HG0HHVHG8HW@HG8HW@HHVÃ    t
Ǉ       USHQ    tYH   H   H        H  H   H   H   H   H  H  ǃ       H   tH   t1H    1Z[]UHHNHVSHHvHPH        Ћu} H        MUs;AX[]OWH        w?UH        SHQH   H   H   H  H  HtHPPH   HtHPPH  HtHPPH(  HtH        H   HtHPPH   HtHPPH   H   ZHH[]UHSHPH        H   H(  H0  Z[]UHH        HSH        QӅ   tH        H1҅Z[]AWH        IAVAUATUSHHHHT$ЅHT$  C`DChH  HT$8D$C\DD$4HD$U0HD$U8HD$U@HD$UHL  D$ LAU8LAAUHLAU0LAAU@L   D$0LAU8LD$,AUHLD$(AU0LD$$AU@D\$$DT$0DL$,t$(H{pE9EMD9DME9EM9EMH        l$$H        H        AH   A9DD$4HT$8sAL$D$D$AEDkdDkTE/E/   tru-D   !D   D   D   D   EE/kD$l$$B@D<D|$D|$ ED*A        HH[]A\A]A^A_UH        SHQ;@u	;-t1ՅtHHý   1
   HH        Ѕt7H       HHH9vQH        H           1H/HHy'H        H           1HHZ[]AVAUI        ATIH        UHSHLHAՅu)HH        Ѓ{x HCp`  H   T  H        LAՅuRHuHCpCx   H   $  H        HAՅtHH        Cx    H     H        LAՅu>Ht$HH        Ѕ      D$          H        LAՅuiHu   ǃ         h  H        HAՅtHt$HH        Ѕ8  D$ǃ            H        LAՅu HH        ЋSXCTH(  2H        LAՅu/HH        ЋsTH(  CXH          H        LAՅuHH        ЉC\}  H        LAՅuHH        ЉC`R  H        LAՅuHH        ЉCd'  H        LMAՅuHH        ЉCh  H        LI        Aօu H        HAՅCP  H        LAՅuAǃ      H   H        HtHH        1H   f  H        LAՅuxǃ      H   I        AHtHH        1    H     H  AHtHH        1H    H        LAՅ   HI        u&H  AH   1Ht[H        MH        HAՅtH  ǃ      AHH        ǃ       H  @  H  ǃ      *  H        LAՅuAǃ      H   H        HtHH        1H     H        LAՅuAǃ      H   H        HtHH        1H     H        LAՅu#H        HAՅ   I  H        LAՅuHH        Љ     H        LAՅuvH        HAՅuǃ         H        HAօuǃ        H        HH        Ѕ  ǃ        H        LAՅuHH        Љ   c  H        LI        AօuHH        Љ   +  H        LAՅuHH        Љ      H        LAՅuHH        Љ      H        LAՅu#H        HAՅ      H        LAՅu>ǃ      H   H        HtHH        1H   FH        LAՅu2H{HH        HtHH        HCHHCH            H[]A\A]A^UHAWAVIAUATSH   P k  W89w	N9v9Q  AV@9E  FAV<9w	N9v9)  AVD9  LH        I      I   
  I    
  HpI~8I        AI  HS0H߉XS8H߉hS@H߉HSHLLH        A    \ǅP    L@s  I0  \H   ;W  A    tEI   I   I   I        AI   I   I   AAǆ       M   M   M   M   I  LHPAW0ALAW@LAAW8L`AWHD`HPAE   HE   H`V8H`AHVHA    Au:`LAU0ALAU@ALEAU8LAAUH`ADE;   A;NDǅP   ~Aǆ       ǅP    A   hHAv@AVD`X)+LM)+HEUuS 11HSA   tru5A   )A   EP t`A   A   )EHuH}H@I   P  I   B  I    4  AFdI~pH        Ef`8AFh4G 0I   (G $Ӊ I0  A^\D   Ex;LH        A   A9}	E   TA9~A)AEA   M   I  LHhAW0ALAW@At LAW8HhLHQ0Hh<HQ@<Hh<HQ8<LLU@LD9ADM9HUDMIrD<DHJH        EkHЋU}H        DDщU}DDDeLEI        D+։AW D+HhډHQ 0(A   D$A   A   D0])ЙA߉ D)ǉA   AA   Dȉ8AFT<A)ĉEAA   A   A   A   ADDDL@DD)D0A+FXDE)A))DD4E1AE1퉝4ȉ A   D9\B   I0  H   ;  ;   u`1AT HhHPI   H(0 8@4 U1LAT AWIFpH(08L4 $I0  H   H        HtPHI(  H        Ht5AVX8HE1E1   H        RAVTDR<XZI0  IH   H        H4HuH}DEċ0EH        D 1ɋ$H(HH        H}H        DMUH        u}H}H        ЃP   A   EA   )E`EA   tEru]HAF@)؉EG`9X~X+`&E    XAF@+H+`A+   EEHuH}H        I0  M   UI   H   L牕<D8A   hAT$8ALAT$HDL牅XAT$0ALAT$@AL H߉LS8AHSHHAS0H߉@S@L牅HAT$8<X1ɉPL)9Oȋ`+LʉX`AT$ A    XtDH߉XS8)PXh    @1E~&@uh1AƋ\1APD9s:@u0D;\~'D9v"ED+\D)1hADD1P\L牵hAT$0A    Aǋ\u@H)`\HS0\A)D)ꋵ`HS 11LAT$HߋhDSH}H        HpH        He[A\A]A^A_]U8  H        SQHH  H        H        H        HC(H        CP   HH        11HCpH   CT    CX    C\*   C`   Cd   Ch   Cx   ƃ    ƃ    ƃ    ƃ   ǃ      ƃ    ƃ    ƃ    ƃ   ǃ      ǃ      Hǃ       Hǃ       Hǃ       Hǃ       ǃ       ǃ      ǃ      ǃ      ǃ       ǃ       ǃ       ǃ       ǃ       Hǃ       Hǃ       Hǃ       ǃ      Hǃ      11H  11H   H  H        HH(  u
HHHǋSXH        sTH1Z[]HG@Hw(HG(HG0HW8HHVHGPHt HGPHt@1        HPH        H        ЅZSHHXHtH;{PtH        H{PHtH        HH        [ATUSHGPHHXHuH   H        HCX    }Hk8Dc<t9/uD9gtgH9tH        HKPHCX    Ht19uHtA1D9uHKX$E~~H{XA   DH        []        A\AUI        ATIH        UHSHLH(AՅu(H{HH        HH        HCH$  H        LAՅ   H{HHuH        @&H           HH        HH   HH|$H        Ѕt        HH{XHtH;{PtH        H{PHtH        HD$HHCPH        ЉD$HH        ҋD$OH        LAՅu2H{@H        HtHH        HC@HC@            H([]A\A]HHVHG0HW8H        UHATSHHHX    W09w	N9v9   S89   FS49w	N9v9   S<9   HEI        HHHPHpHH        Ћs4{0u}K<S8AH{XHtW11RE1E111Ҿ   PH        ЋUMu}AXZHe[A\]ÿ`   QH        HtH        HZHGHHw0HG0HHVHG8HW@HG8HW@HHVÉwPWTO\DGXHPH        H        ЅZH        H        Ht#H9xuHHH        H
HH UH        SHPH   H{`H{HHH        ZHH[]USHQ    tBH   H   H        H   H   H   H   ǃ       H    t1H    1Z[]AVAUIH        ATI        UHSHLAԅ   H{`H        HH        AԅH        t<HH        AԅH        tH        HAԅuH        H        HHH        HC`  H        LAԅuHH        HCho  H        LAԅHsptH        LAԅuHstHH        +  H        LAԅHsxtH        LAԅHs|tH        LAԅuKǃ      ǃ      H        H   HtHH        1H     H        LAԅuKǃ      ǃ      H        H   HtHH        1H   =  H        LAԅu#H        HAԅ     H        LMAԅuAǃ      H   H        HtHH        1H      H        LAԅ   HH        H{HH        HtHH        HCHHCH    H{HHtLH        Aօu;   H        Ht%H        HXHHH        HHH[]A\A]        A^AWIAVAUATUSH8P   W89w	N9v9  AW@9  FAW<9w	N9v9k  AWD9_  AGTA9GXQ  HL$,HT$(Ht$$H|$ H        Aw<A8H        t$$|$ AODAW@A    2  LH        Ѕ  M   I   Ao@EoDLAT$0LD$AT$@LAAT$8LD$AT$HDt$D$HDt$D$S0H߉D$S@HAS8H߉D$SH+l$D+l$LD$Dt$DAT$ 11LAT$A    D$D\$tD$D)D$D)\$AE)Aw\AOT19~AWX9~)Ή)Ɖ1D9   D)DH߉S T$t$HS   A_@EGDI        AOwAWvH        AwuAtE`DD$DsADD$11AWTAG\AwXAO{Ax)A)1AWzAwyA)AEsD   AOAW~Aw}A|AEٺ      I`    AOsAWrH        AwqApIohAAG\Aw\Eo@EwDH        I`1)1HHuH        H             qHHH        HAH        A)ƾ   DAE DD)E>HߙDHH        HH        ЋL$,T$(H        t$$|$ H8[]A\A]A^A_AWAVAUIATUSHH4$Hw`HT$HtBHhH        ӉI}hH        I}hH        IUhR D$E11A       LH        ЅtrM   I   LAV0ALAV@ALDAV8ALAVHAEA    u3HS0AHS@AHDS8AHSHAEAH$      CAHL$   ACĉH[]A\A]A^A_S   H        HH   H        CP   H        HC(H        HH        Cp HChCq Cr CsCt Cu Cv CwCxCyCzC{C|C}C~Cǃ       H[UHSHAPHvU HH        HPtHC(HHH        H@Y[]X[]UHSHAPHPHt!HHu H        Ѕu
HuHUHH        HPtHC(HHH        H@Y[]X[]H(H        Ht$HT$Ht$HL$H(HH        H4$HT$HHHHHP~ tHAUH9ATIUSQrAH)IH        HHzHHt HKt% HH        + H1Z[]A\A]AWHAVAUATIU   SH(t/HHcI        HAH1Ll$H  H    H9E1I        D9~gMtb/   LAHIuLH        M<L1LL)H        HJuE1,  E1A? IGLEIDeE1I        McH        J    L<HD$I?AօuI?H        II?H        AօI?u=Et8H        AHD$HD$I    L|HD$I?I    H        ElAAWAHD$IcHI  E1   I        N<MtuH        HALHA1ID9E1I        J<IAD9H        HLH([]A\A]A^A_AVAUATIUS<(t</u[]LH        A\A]A^HI        AHLAH|H        HHtgHHI        AHHAHt|/tE /E HHLAHH        HHtHH        H1H[]A\A]A^SH        H1HcHމx!Hɀ|/uH1[HcH        [H        H        UH        SHHHT$Ht$ЅuD$   řD$HH[]               .png                                                                                                                            theme variable `%s' isn't set prefix %s/themes/%s list Unknown Regular 16 Fixed 10 GRUB Boot Menu no font loaded icons/ icondir %s:%d:%d expression expected in theme file label image vbox hbox canvas progress_bar circular_progress boot_menu %s:%d:%d unknown object type `%s' theme_dir theme_path %s:%d:%d expected `{' after object type name `%s' container %s:%d:%d attempted to add object to non-container %s:%d:%d identifier expected in theme file %s:%d:%d expected `=' after property name `%s' left top width height styled box missing theme directory missing `*' in box pixmap pattern `%s' %s:%d:%d missing separator after property name `%s' %s:%d:%d missing property value title-font message-font terminal-font title-color message-color message-bg-color desktop-image desktop-image-scale-method stretch crop padding fitwidth fitheight Unsupported scale method: %s desktop-image-h-align center right Unsupported horizontal align method: %s desktop-image-v-align bottom Unsupported vertical align method: %s desktop-color terminal-box terminal-border terminal-left terminal-top terminal-width terminal-height title-text %s:%d:%d unknown property `%s' %s:%d:%d property value invalid; enclose literal values in quotes (") nw ne se sw n e s w c id component container component num_ticks start_angle overflow is detected deg ° ticks_disappear false center_bitmap tick_bitmap theme_dir id __timeout__ id component container component %d text  @KEYMAP_LONG@ Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. @KEYMAP_MIDDLE@ Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. @KEYMAP_SHORT@ enter: boot, `e': options, `c': cmd-line font color align visible false id __timeout__ Unknown Regular 16 left center right component list Typical OS overflow is detected item_font selected_item_font inherit item_color selected_item_color icon_width icon_height item_height item_padding item_icon_space item_spacing visible false menu_pixmap_style item_pixmap_style selected_item_pixmap_style scrollbar_frame scrollbar_thumb scrollbar_thumb_overlay true scrollbar_width scrollbar_slice west center east scrollbar_left_pad scrollbar_right_pad scrollbar_top_pad scrollbar_bottom_pad scrollbar theme_dir id Unknown Regular 16 component theme_dir file unspecified theme_dir id component text @TIMEOUT_NOTIFICATION_LONG@ The highlighted entry will be executed automatically in %ds. @TIMEOUT_NOTIFICATION_MIDDLE@ %ds remaining. @TIMEOUT_NOTIFICATION_SHORT@ %ds font text_color border_color bg_color fg_color bar_style highlight_style highlight_overlay true theme_dir id __timeout__ XXXXXXXXXX Unknown Regular 16 container . .. /                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              LICENSE=GPLv3+  video_colors trig bitmap_scale gfxterm font normal bitmap video gfxmenu                                                                                                                                                                  x      J                  -            
                                                                                   )           k       R     .            k                      y                           2      4            T,      &                                                             F                            !                     8    v      X       I                     X    EB             j                         {q                                      :      I                                                 	                         
      q       .                     ?                     U                     i                     ~                                                                   k      ,                                                               9                     G                     c                     n                                               #                               s      !           g      &                                      Q       @          1       h                     }                                                              u                 3      y                                                          S      4                     @                     L    e            c                     o                     {    G      ~                                                                                                                    o             
                                          B    [B             T                     g                     r    
      N           ?s      Z           \
      e                                                                                                                 0                     K                     X    aa            j                     w                                              {                 r      )        grub_mod_init grub_mod_fini grub_strlen grub_gfxmenu_icon_manager_set_theme_path grub_gfxmenu_view_redraw grub_strtoull grub_gfxterm_decorator_hook grub_gui_canvas_new grub_gfxmenu_create_box grub_utf8_to_ucs4_alloc grub_font_get_descent grub_gfxmenu_icon_manager_new grub_font_get_glyph grub_video_bitmap_load grub_get_dirname grub_xasprintf grub_gui_hbox_new grub_video_blit_bitmap grub_gui_progress_bar_new grub_memmove grub_gui_circular_progress_new grub_unicode_aglomerate_comb grub_video_bitmap_scale_proportional grub_strdup grub_gfxmenu_redraw_menu grub_trig_sintab grub_video_set_region grub_video_map_rgba grub_video_fill_rect grub_font_construct_glyph grub_trig_costab grub_gfxmenu_try_hook grub_gfxmenu_icon_manager_destroy grub_gfxmenu_timeout_notifications grub_font_get_string_width grub_video_bitmap_destroy grub_font_get grub_bidi_logical_to_visual grub_errno grub_gfxmenu_view_load_theme grub_menu_register_viewer grub_font_draw_string grub_video_parse_color grub_gui_iterate_recursively grub_gui_image_new grub_video_get_viewport grub_gfxmenu_icon_manager_clear_cache grub_gfxmenu_icon_manager_set_icon_size grub_font_draw_glyph grub_gfxmenu_view_new grub_video_set_area_status grub_file_read grub_resolve_relative_path grub_gfxmenu_icon_manager_get_icon grub_term_outputs grub_print_error grub_gui_recreate_box grub_zalloc grub_strcmp grub_gfxmenu_view_draw grub_strchr grub_malloc grub_gui_label_new grub_file_close grub_video_swap_buffers grub_file_open grub_isspace grub_gfxterm_schedule_repaint grub_gfxmenu_view_destroy grub_menu_get_entry grub_video_set_active_render_target grub_gui_vbox_new grub_video_map_rgb grub_error grub_gfxmenu_clear_timeout grub_new_substring grub_gfxmenu_print_timeout grub_free grub_video_get_info grub_font_get_constructed_device_width grub_video_set_viewport grub_gfxterm_set_window grub_video_get_area_status grub_gettext grub_gui_list_new grub_env_get grub_video_bitmap_create_scaled grub_strtoul grub_gfxmenu_set_chosen_entry grub_gui_find_by_id   
                                _           8                     B                    S          S           i          C                     X                                            %                                                                                N                    ;                               9         D           I                    h         W           u                             0                    Z                    J                    E                    b           3                    A         V           O         T           ]         2           z         )                    @                                       )                                        N                    )                                       <                              0                   K                               2                   2       3         +                    W                    +                    W                    +                    -           "         G           M         W           W         +           l         +                       7                .                    !                       J                                       S                ]                    1                    N           A                  \         M           j         P           z         \                    $                                        %                    &           M         ,                    %                    3                    %           %	         &           	         ,           	                    	         3           	         <           
         +           4
         <           F
                    {
            /      
            
      
         J           
            /      
            
      
         J                       2       B         <           T                    q         .                       b                S                               ]                   p         [                                                          `                                         R           4         &           >         J                    5                                      <                                                          5                             <                  H         J           m                           "                                        /                    W           &         :           V         '           i         0                                        0           .                    F         Y           f         W           t         W                                                            G           0                    [                    g         W           z         0                    `                    -                    G           $         W           F         -           n         W           }         8                    8                    D                    W                    !                    8           r         D                                        W                       q                >                                         x                _           /                  H         G           _         -           r         !                             6                  T                  g                  z            3                                                   U                       3      
                  +                  h                                                               U                                       S           l         a           x         0                       v                         +         D           <         H           K                   _         6           n                            Q                                                                                                                                                                                          %         ^           L                   b                  o            3                                                      (               S           4                  T            3      c                              Z                                    d                                  S           4                  E         S           ]                  t         W                                                        D                                                        D                              2         W           >         W           M         0           c         W           n         0                                                          S                    >                    F           $         W           3            )      D         S           U         G           y                                                 0                                        K           .         G           r         I                    W                    =                                                                    "             3      3                   I                   a                   r             v                                      3                W                                           P                S           !            3      !                  ,!                  f!                  !                  !         D           !         .           !                  !         .           !                  !         D           "         !           %"                  /"         D           K"                  g"                  "                  "         >           "                    "         -           "                  #                  3#            &      S#            +      s#            3      #            <      #            F      #            c      #                  #            y      $                  =$                  N$         S           b$                  v$                  $            y      $                  $                  $                   %         4           %                  1%         B           E%                  `%         a           w%                  %         D           %                    %            *      %                    %            7      &                    >&            F      Z&                    v&            V      &         !           &            a      &         S           &                  &         S           '         0           ('         W           9'         !           o'         W           '         I           '         0           '            '      '            '      -(            '      g(            '      (            '      (         -           ()         W           )         -           )         `           )         0           )            X)      *                    +            '      R+            '      +            *      Z,         G           ,                    -                   -                    -         W           -         0           -            *      -            )      .            '      .            '      .            #(      -.            ](      ;.            (      I.            (      _.            (      .         W           /         W           6/         W           P/         D           a/                  v/         W           /         !           /         0           /         \           /         Z           /         7           1         <           1         <           2         G           J2                  X2         D           n2                  2         C           2                    2                    2                  	3         D           3         +           )3         +           D3         W           `3            3      o3         W           3         >           3         0           3                    3         0           3         W           o4         -           4            z3      4         7           4         Z           z5                     6         (           k6         #           6                    6         Z           6         D           6                  #7         a           77                  U7         L           7                    7                  7         S           7                   8         S           8         0           8         L           ;8            (      `8            ,      o8         D           8            /      8            ?      8            E      9         W           9         !           29            S      T9         W           h9         !           9            _      9         W           9         !           9            i      9            3      9         W           :         !           2:            l      H:         G           Y:            2      k:         +           }:         0           :         C           :                   :                   ;            :      =            :      ?         C           0?                   :?                  v?         W           ?         W           ?         D           ?            x      @         W           '@         !           @@         0           P@         \           \@         Z           @         7           >A         <           A         <           A         G           B            {      B         D           +B                  GB            ;      QB            ?      ]B            <      gB            ?      B                  B         D           B         +           B         +           B         W           C         W           C            B      BC         W           VC                  cC                    C         ,           C                    6D         ,           \D         ,           D         7           D         Z           D         %           D         3           &E                  2E         D           SE         W           nE         !           E                  E                  E                  E            5      E            E      E                  E                  E         ]           F                    $F                  ;F         .           PF                  kF         4           |F                  F            `       F                  F                  F                  G            B      &G         W           :G         !           ]G                  sG         G           G            4C      G         +           G         C           G            p      G                  G         !           G                  	H         .           MI         B           I         7           I         Z           J         Z           J         W           J         *           J                    K            8       K         D           6K            B      TK            .I      aL            G      oL         ,           {L            G      HM         L           M                    M         S           M            R      M         S           M            R      N         D           N            g      8N         .           ^N            q      N                  N         .           N                  N         4           O                  JO                  fO         4           O                  O            EM      O                  O            EM      O         9           
P                  !P            EM      5P                  LP            EM      `P                  wP            EM      P                  P            EM      P                  P         D           P                   P                  Q         W           0Q         !           LQ                  qQ         W           Q         !           Q         !           Q            *      Q         W           R         !           %R                  PR         !           R            E      R         W           R         !           R            U      S         W           S         !           2S            e      FS            }      iS                  S            EM      S                  S                  S                  S                  S         D           !T                  8T            EM      OT                  \T         D           pT            EM      T                  T            EM      T                  T            EM      T            	      T                   U            	      ?U         W           SU         !           lU            	      U         W           U         !           U         0           :V            .I      {V            I      V            3H      .W         B           >Y                    Y            3H      Z         7           Z         Z           Z         %           e]         O           ]         ?           ]                    ]         O           ^            I      *^         3           :^            J      X^         Z           n^            J      _            I      5a            J      Ha            J      ia         C           a                  a                    a            	      a                  a         .           :c                    bc         9           c            +	      c         D           c         -           d         -           #d         W           Md         -           ~d         -           d         `           d         0           d         D           d            5	      #e         W           2e         !           Ge            ?	      he            D	      ue         S           e         >           e                    e         0           e         -           e         -            f            .d      f         W           %f            Z	      =f         W           Qf         !           jf         0           f            .d      g         Z           g         7           ag                    g         C           g            @      g            ]	      g         D           h         +           h         +           3h         W           Lh         W           sh            h      h         B           i            g	      i         D           1i         W           @i            l	      Oi            	      ^i            	      mi            	      yi            	      i            
      i         ]           i         !           i            
      i         .           i            
      j            #
      j         4           .j            0
      Fj            9
      ^j            B
      j         W           j         !           j            L
      j         W            k         !           k            \
      0k            n
      Sk            s
      {k         W           k         !           k            }
      k            h      k         W           k         !           l            
      #l         G           4l            g      Fl         +           ^l         0           l         7           
m         Z           7m            h      nn         %           n         &           :o         %           go                    o         A           o         0           o         ,           o                    o         3           p         W           p         Z           ip         ,           {p            
      p                    p            h      q         C           q                  q            
      q                  q         .           :r            
      Xr            $r      r         D           r            
      r            mr      r            mr      
s            $r      Vs         G           |s                    s         G           t         F           -t                    Ht         U           t         D           t            
      t         W           t            
      t         W           u                    Wu            %s      nu            
      u         W           u         W           u            s      u                    v         G           2v            %s      kv            s      v         W           v                    v         U           v            
      v         !                                                                                        (                   0                   8                   @                   H                   P                   `             &      h             +      p             2                     2                   /                   .                    .      (             z.      0             D2      8             /      @             .      H             .      P             .      X             .      h             J/                   2                   Z3                   2                   2                   3                   2                   2                   2                   2                   6                   A                   ?                   >                  ^?                  ;                   B      (            L@      0            >      8            >      @            >      H            >      P            >      X            ?      p            C      x            qB                  B                  C                  vB                  {B                  B                  B                  |C                  E                  J                  I                  J                  H                  K                  U                   H                  H                  H                  
I                   PK      (             N      @            c      H            zc      P            c      X            f      `            c      h            c      p            }f      x            c                  c                  d                  g                  Ih                  g                  g                  il                  g                  g                  g                  g                  @p                  h       .symtab .strtab .shstrtab .rela.text .rela.text.unlikely .rela.rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                       @       v                                   @               h      G                          +                     9w      H                              &      @                                                 ?                     w                                    :      @               8                                 G      2               x      
                            [                     Ђ                                   V      @               X      P                          a                     ؅                                    q                                                         v                            @                                                    (                                                          0      `	                          	                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   boot/grub/x86_64-efi/bfs.mod                                                                        0000600 0001750 0001750 00000024130 13417732100 0014400 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    X%          @     @   H)HHtHt8tHHHHu1Ht)PH        HP1ZUHSHH  BDLD$HH1H   H8H        ЅtH        1?HT$<D$Ht$HHT$T$,    @  	HSD$SH  []SI1H|      H        Ѓu[H        	   1H        u4{ 1SFBuՁ{D1ú{puËS(tK,9uv1[UH        SHH   H    H?Ht$Ѕu    H|$H        HHĈ   []IHʋNLAAJȋN,	HLHH        AWLAVAUATUSHHHhMHT$H$   HL$LD$LL$ HT$0H$   HT$8  HH;   vH             HD$Ht$IH;      L`HA   1I        El$K,IIL;l$voHL$Ht$ LLD$LLLT$(H)H9HGHt$0H)IIw0Ht$8Iw8HA҅IG0    :  Hl$Hl$LT$(H)l$   IAtLjHD$H        L   L9t$-  HD$Ht$H;   K  D   C,HH        IN    LLL$(HHLL$(  HD$I        I1HLH   AE1Ld$(DL9   HT K,DRIML;T$   HL$HD$ MD\$HLT$@HLD$LI)I9LGHD$0L)MIG0HD$8IG8HD$(ЅAIG0    LT$@D\$HtHH          Ld$Ld$L)d$ uHH          AM.HH        HD$Ht$H;   sH          HD$I           HD$(C,HHd$(HD$(L,    LAHHt*C,   HHcAHIuHH        С          HD$M1I        IHLH   AE1HALl$@   HD$Ll$   AL+   C,xM@ADHcL!HL$HH@INHcI!ʍL IL;l$(wzI9tmJT HHcLT$XMDZLII9HD$@LG1HN    L\$PЅAL\$PLT$XtHH        LD   IM9v?HH        LH        	   Hh1H        []A\A]A^A_C,A   L\$PKLD$HLHHD$ AHL$HMcI)I9LGHD$0MIG0HD$8IG8HD$@ЅIG0    L\$PtD$HH        LӋD$Lt$Lt$L)t$ tLO1Hh[]A\A]A^A_UHAWIAVI        AUMATMSHHHEI     I    HuA   H}HULEH     HEH     j j AY^   DMEMk
H#HIH        LLMHLMuH        pj HUIHELHuj H}AALUXEZtLH        D1IBMU HMI$EH#HIHELEIBHHe؉[A\A]A^A_]UH        HAWMA    AVAUATSH   HhH`j HM1LpHXLEj ^_m  ELeEELHXLMLEH`HhDhHEPHEPH        ZY  H]fDsfEt1AHH          tALUE1ɉEHEHxAƉT}   MA   AE	D;T   AD$EDPCZL@A<BCLHHuHpf9GHx)H        HcЉLHL@D	DPuHEHJIH        dEHM=E   ACHuHpHxf9HGH        ЉH        D	uHEHH I1   E xtKHEL t>fAv7HEL`HhEt#AEE9sHEHN$H        LcHH        It%HUH           1H        MHe[A\A]A^A_]UIHSHIPHwPH        LWHOw`wXHV|I:ZYHHDH]HUH        HAWAVAUIATISH   H    HTH?Ѕy  |H        Há        HR  HTD|1I        II<$HPtHMAօt 8HH        ҋ8   D|M$$H   J3I        H8HAH;8   Qf   qLDH H        L(IL0HH0AօL(H uDAH        < u0AA   LH@HLCH        L   H0Mf{: 
  D|1HS4IHTLAׅ   H        H        LHIH        HHTLH        Ѕ   |M1HHILA   	HHH        H   j HL@HTLj HLF1H        MZYu)Iu#H@H        1H        IE H        H1He[A\A]A^A_]UHBtIA   HAWAVIHAUI1ATSHHH(  HHLH        Ѕ  IEHǅ    Hǅ    HIH        A$</uIMu!H        H1  tIA$</u   LHH        AEHǅ    %   = @  tH           1H        QMLLM)LLHӅu.AF,HM1HHH        H   Ѕ  AE%   =   I        u,HAH           1H          AE@H        H           I   LHHH|HHtsHAj 1LLILj HH        ZYtHA׋   H ULH   HHu1Aס           HA׺   HHH        ƃ    ;/uC1A   MHLHH        ЅAt/HH        DV   HLH        HH        HA$IHPA|$ tH  HHe[A\A]A^A_]U1HAWAVAUATIHι&   SHHPH  HPH`HPHXH;LxH        LЅ  HLH3LH        Ѕ[  %   = @  t"H           1H        '  Hj 1A    L0Hj LI        HAAZA[  8L@LMD`E   j A   LLHHj HAAXAY  *(Hj HA   LAj H#HHPHLA^_;  LhHPLHHHLHL LHPHH        AVZY   E1I        HWA9   HDf4QfOf9FDALH LD HH DH4HPAՅDLtHH        0H AF DSLoH        I        He[A\A]A^A_]AUATIUHSHx  HGLl$H8LH        Ѕ   ID$H$   LHH0H        Ѕ   $   %   =   t!H           1H        ҉cd  H        HHuH        <Hǹ   L   Hx|H$   H        H$X  Il$PID$@Hx  []A\A]H        H        H        H        H        not a BFS filesystem attempt to read past the end of file incorrect direct blocks incorrect indirect blocks incorrect double-indirect block file `%s' not found be:volume_id %016lx not a directory too deep nesting of symlinks not a regular file bfs                                                                                            LICENSE=GPLv3+ bfs                                                                                                                                                                                                                             )                      8                      E                      T                      _                      l                      }                                                                                                                                                                                 grub_mod_init grub_mod_fini grub_strlen grub_xasprintf grub_memmove grub_disk_read grub_errno grub_fs_list grub_print_error grub_zalloc grub_malloc grub_error grub_list_remove grub_free grub_strndup grub_list_push grub_memcmp      =                     {                                                               	                                        a                                                           <                   v                              :       \                                      I                    n                                                    R                                               %                    >                  %                    I                    Z            l       o                                        ?                                                                              i                  	            2      3	                    	                    
                    ]
                    k
                    
                    
                                                           T                                                                                                +                    X                                                                              L                   V         	           l                               f                                                               !         
           1                                                  f                          !                    H                   Y                                                                                                            	           !                                                                              -                  C                    c                    r         	           	                   0            O      V                   g                                                  2                  O       X                                                                                           O      %                   6                    K                    _                                                                                                                                                                                                       (             ?      0             :       8             ^      @                    .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .modname                                                                                         @                                          @                     	      	                    &      2               -                                   :                     0      P                              5      @               P$             	                    @                                                         P                                                          U                                                                                      @      
   	                 	                                                                                $      ^                                                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/gfxterm.mod                                                                    0000600 0001750 0001750 00000043210 13417732100 0015302 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    HC          @     @   H         @@@H             H        P@	H        P$@ 	SfGHf<vHH        fc[ATH        H        USHxH     tIH1I                E9H        H8sHk(HAH        кX   1H        H        H        H8H        H        H     []A\ATH        I        UH        SHH|$H        H8Aԉ߃        u1111H        H|$        AH[]A\Ãtru(                	                H        x9H        H        QH8H        Ѕ   tH        1ҍDHZATI        H        U1SH        С        AD$9sFH        Hk(H<H        H        fdH        $  H             1[]A\H        8txtxtxø   AUH        AATAUSЅt+أ                BD#        BD-DH        ;H};i}        BT#;Q~У        BT-;Q~У        []A\A]AVAUATUSt|AtuH        AA8 H        t>H        11H        H             H            H؉D[]A\DDA]A^[]A\A]A^H        HpxH        AWH        AAVAAUATUSHDpIH        Mk(IA =  H        LH8H        HIuH               ASH        Dh H        DfҰt
AD1A        AN Ev$L\$H        I        H:$        L$E$AAD$DDH        L\$B+Dt$H        LH        H>Aԡ        $4        H[]A\A]A^A<H        A_H[]A\A]A^A_AVH        H        AUATUSD         AD;a   H        H        D0H        I        Dai @ AH        H8AՉDDA   H        H        H8Aա        ڹ   [A4        | H        ]A\A]A^[]A\A]A^UH        HAWAVAUATSH(ЅK  H        D H                D)Dp        )D@H        8 tH        Ht
DEDEEI        H        LEH8I        AHEHHHPHpHH        H        H        H        0H        8AH        H8LEHLE   AU1EADAVH        С        C&_AXEH        09r2@9s+AT A)A)؋}9H        EBA9ACH        ED @A9r89ÉDCDA)}H        8EDDH        H        I        x H        tAUAED   AVD+HD+@AUAED1AVD+HD+@H        H8AXZ}M̋UȋuAH        H8HEHe[A\A]A^A_]SHH        к    H1H        Ћ%   H        P<S @@C$[ATUS1ۡ        H        H        H99sHk(HH        Éơ        I        Hk(PH        HHС        X]        E9sH        Hk(HAա        []        A\H        0H        8        H        ;PsH        AWAVAUATUH        SH}T   H%   }( tH|$H        H|$ t uA% 
l    O          >  ȣ        .  HH        DHD$        D;EQ          I        I        AċE De$IH        Mk(ILAֺ    HLAfCf<-  H        HHID$tfKHsHfHAH        |$             AD$         AD$$     H        С        D;E          H             H                9   H           H                H                9rH                sHsI|$   H        UHk(H        HLHk(HH9D$HAց#  D$D9r        }( t&H        HH        []A\A]A^A_H[]A\A]A^A_á        S9t'H        uH        Љأ        [ATH        ΉUS9эjH        BZ9BH        x( ItH        A|$( ţ        ã        tH        []A\H        []A\AWAVAUATUSH        H{P   H        H        I        H8 tCH        H8H        1H        8SPAH          H        H        H8H        xH        D0EAHL$HT$Ht$HI        H        H        H        H        0H        8Aס        DCAH        H        H        0H        H        H8H        H        1DSPAԋL$T$t$<$AAtH        A   H        H        H8H        1H        8SPAH        H8H        I                     9G)Љ;ks4E1D;cs'        A;EsDH        AH        x( tH        H        H        H        H        x tH        H[]A\A]A^A_ATI        UHS1ۡ        AD$9s#H        Hk(HH        H        H             H             H        H811H        D H        H        8H        H        H8H        [HH        ]A\H            AWI        AVAUI        ATIUSDHt$T$DL$ALDkd$XH        AHD$PA    H        BD%         B#E1        D$X                DH|$PAHt@A9DBAAuE   I        AE1I        ȣ        H        p        H             H             H            H                     1҉                ȣ        H        Hk(A<$ H        z  H        "   A7H        H        A<$ E  I        H        H8AH           I         H         H        H        H8AH        E1HPpxH        У        H        AWA9s.DH        AHk(fdH        H<AA<$ uiH            D$        D$                أ        D$        H        H                    H[]A\A]A^A_UH        HAUH}ATSHXЅ  1H        1ЋEI        %   H        HPpxH        11ADEMAԅtH        DEM11DAH        H        H        HHDHH        HuH           H        2H        1AH    j
1MDE1PH        ZYHe[A\A]]SH        H        HHt8 u1Ҿ@   H        H        YHH        1H        Há        HtQ1Ҿ@   HH        H߉D$H        ҋD$u H        ЅtH        ЉH[AUH        I        ATI        UH        SH        HH|$H        H8AKSs{AH|$E@AKSs{AԉEDH[]A\A]H        P@H        H8 t H        H        H        /QH        Hu!ZH        H        H        H        ЅtXSH        H        HH        [ gfxterm_font no font loaded gfxmode auto %s;auto gfxterm                                                                                                                                                  LICENSE=GPLv3+  font video gfxterm                                                                                                                           Z      s                  '                                                        	                                    5                    Q                      f                                                                                                                                                                           *                     7                     K                     `                     z                                                                   E                                                                                                 (                     =                     T                     f                     r                                              v                                                                                                                                           7                     ^                     v                               )                            grub_mod_init grub_mod_fini grub_gfxterm_background grub_gfxterm_decorator_hook grub_video_map_color grub_video_delete_render_target grub_gfxterm_video_update_color grub_font_get_glyph grub_xasprintf grub_video_scroll grub_video_set_mode grub_video_get_active_render_target grub_video_blit_bitmap grub_memmove grub_video_map_rgba grub_video_fill_rect grub_font_construct_glyph grub_video_create_render_target grub_term_highlight_color grub_font_get grub_gfxterm_get_dimensions grub_errno grub_memset grub_term_outputs_disabled grub_video_get_viewport grub_font_draw_glyph grub_term_normal_color grub_term_outputs grub_malloc grub_video_swap_buffers grub_video_restore grub_gfxterm_schedule_repaint grub_video_set_active_render_target grub_error grub_list_remove grub_free grub_video_get_info grub_video_blit_render_target grub_font_get_constructed_device_width grub_video_set_viewport grub_list_push grub_gfxterm_set_window grub_env_get                           '             (       8             0       P             0       |          +                        0                                        f                    L                    x                 +                       0                                               (                    4                    L                    V         (           a                    y                                l                                       p                                       h                "                       i                   0                   H      !            `       /         .           D            @       a            0       k                   {         &                       L                   x                   f                   x                   x                                              %                  D                   O                   ]                   n                                                                                        ,                   !                                                        ,       $            (       U            0       j                  x            0                   x                   `                                                           `                   @       +            D       B                    L         (           [                                                !                                          <                   8                                                        0       (            T       ?            @       K            l       X            `       b         (           ~                                                                       <                   8                                                              *                   5                   E                   U            (       d                             (                                       /                                                                                                                     
           )                    4            t       H         
           s                             
                       t                                    
                    -                       0       4	                    U	                   {	            f       	                    	            0       	            H       	            x       	            0       	            f       
            L       
            u	       
                    2
            L       B
            L       V
            x       m
                   z
                   
            T       
            P       
                   
            0       
            t      
            0                   
      S            P       f            P       x                              P                   H                   f                                       x                $           8                    L            l       Z            p       t            
                  P                   P                   P                   L                   T                   	                  P                   L                   T                   	                   T       B            L       X            x                   T                   
                                    X                   
                                    X                   H       4            L       K            0       ^            
      r            P       ~            T                   
                                    0                
                    (                                                                D                   p       #            S      4            
      @                   O                   ]            t                /                                                                                                                                           0                   <                   8                                                                *            D       [         %           r                    ~                                D                   p                                                         0                   L                                      t      &            0       6            
      B                  N                  Z         %           f                   x                                0                   L                   x                   u	                  T                (                       P                                       4       &            0       2            p       >                    J                   Y            S      i                  x            ,                                                                             `                   0                   4                   8                   <       N            0       ^                    i            @       s            `                   D                   P                   T                   X                                      0                   H                   4                   L                $                       x                    4       4                    >                    U         (           _                    o            h       ~            u	                  i                   H                                  
                                           t                   L                   x                   x       1                   D                   Q                   \                   g                   t                   ~                                ,                                    ,                    (                                        
                               <         %           Y                   c         2           o                                                                    )                                        1                                       2                       %       $                    5            *       A                    O                    h                    {         +                                      &                                        (                                           0                
                               G                   \         #           l                    v                             0                                                           #                    0                                        *                                                                2                                        ]      (             
      0                   8             6       @             N       H                   P                   X                   `                   h                   p                    .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                          @               "            
                    &      2               4      :                             :                     p                                    5      @               A      8      
                    @                                                          P                                                         U                                                          ^                                                                                (               
                 	                                                                               B      g                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/bitmap.mod                                                                     0000600 0001750 0001750 00000006070 13417732100 0015105 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    x	          @     @  
 H        HH8HWH        H        HtH9uH@HHPH@AUHATUSHAPtAH    tAuH        &   [  ͿX   H        HH  D Dhh tj      @!   @    @   @   @$   @(    @,   @0   @4   @8   @<   @@      @   @   @   @   @$   @(    @,   @0   @4   @8   F@   @   @   @   @$    @(    @,    @0    @4    @8    @<    @@    :H;H        H    H           Y[]A\A]1H        D`D`H+DAH        HEPH;1HP uH        H            Z[]A\A]UHSHQtHPH        HZ[1]AVH        AUIATUSHHHu)HH        &   []A\A]A^1H        H    I        H   H+HHt$AIHAEHt$   t}D9xA)McIAt2DE Et(QAxA AP GDFD9uIHƍQA FE xP F9uHCHL[]A\A]A^H[HHH   []A\A]A^H        1H        HHtH   HHtHGP1invalid argument unsupported bitmap format bitmap file `%s' is of unsupported format  LICENSE=GPLv3+  bitmap                                                                                                                                                                                         h      ?      $                    F     F             _                       B      &                                                                                                                             1                             grub_strlen grub_video_bitmap_load grub_video_bitmap_reader_register grub_video_bitmap_create grub_video_bitmap_get_mode_info grub_video_bitmap_destroy grub_errno grub_zalloc grub_malloc grub_video_bitmap_get_data grub_error grub_video_bitmap_reader_unregister grub_free                                           !                     m                                                                                                                                              2                    S                    l                                                                                            +                            .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .modname                                                                                              @                                          @               h                                &      2               
      U                             5                     _                                     ;                     `                                    K                     p                                    P                      p                                                          x            	                    	                      X                                                         	      Y                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/file.mod                                                                       0000600 0001750 0001750 00000057440 13417732100 0014557 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    [          @     @   AWAVAUATUSH  uH        GHHW1AHH<
 tAtH        AHHuAu"H           1H        {	  H;H        HHW	  A		  DH        $H}@       HH        H     Ht$ HH        H  f|$ U  @   Ht$ HH        1H@|  H   H#D$ HELF   H9Z  |$4O  f|$$B  f|$22  @   Ht$ HH        1H@  H   H#D$ HELF   H9  |$4  f|$$  |$0 +   4   Ht$ HH        1H4  |$ ELF  |$&  |$4  |$%w  fD$2fe  D$0f= :  4   Ht$ HH        1H40  |$ ELF"  |$&  |$4  |$%  |$0    Hu HH        fxI  x  HH        LH        Љ	  u
A~  u
Ap  1ۅtLH        ЉÅS  LH        Љ=  4   Ht$ HH        1H4)  |$ ELF  |$&  |$4  f|$0  |$%  |$'	  fT$2fu1|$$1f>u|$$t11   1	  u
A  һ     Ag  4   Ht$ HH        1H4Z  |$ ELFL  |$&A  |$46  |$0       Ht$ HI        AH  |$        $   HH        H     Ht$HAH  |$(o  8   HH        H     Ht$ HH        Hl  |$ ARMdF  HH        HIu1DHHt$ H        ЅuAt!EuD$`|$`   M    E1AAǻPRA   IAEظ    LEH        LHI  HLHH        H~ 1AIH   H)LLLH        Z  9t
LH9vJ1JAuru1   LH          h  Ht$ HH        1H=h    f$  U  $  @  $"  HdrS  f$&  f=  Atf=  $1            Ht$ HH        1H`     Ht$ H        I        Aԅ5     Ht$ H        Aԅ  1AH;@H        H  HH        #    Ht$ HH        1H=    |$lemis     Ht$HH        H  |$M}  |$	Zr  <   HI        AHT     Ht$HH;  t$HAH(     Ht$HH  |$P  |$	E   |$
    |$       Ht$HH   Au	f|$LAuf|$d   -Au	f|$ Au	f|$dAu	f|$AD$w"   Ht$ H1H=   uXf|$ ,AtAuA   Ht$ H1H=   u*f|$ u!f|$d
1LH        1HH        Ѕu/        tuH           1H        ҡ        HĘ  []A\A]A^A_1PI        I        H        H        H        H        H        ZH        H8H        AWAVAUATUSHH8Dw6Do8MtMu1   MH        LHHtދs(I        H;AHLd$tLHH;I        AL9uC:IIƋDH$JD- I9s1   H|$H        A4$H;H4$HD$Hu        U   Ht$H;AHt        t*0   H        H|$H        ЅuMgH8[]A\A]A^A_AWAVAUATUSHH8DwBDoDMtMu1  MH        LHHtI        Hs0H;AHLd$tLHH;I        AL9uCFIIHDH$JD- I9s1   H|$H        A4$H;H4$HD$Hu        U   Ht$H;AHt        t*0   H        H|$H        ЅuMgH8[]A\A]A^A_AUI        ATUSHHx  H7AHHw  H        1H     H        H.  h  Ht$HH        H=h  	  f$  Uu$
  HdrSuf$  wH           $T  w"H           1H           $  $P  LI:   H        H        I        HH	L1H        A$  $T  HߍPH        	$P  HIt H3HAHHu.LH        H        1   1H        Hx  H[]A\A]UHH   1H        SHHAQHH        Ѕt&f{>u{uE@   HHH        7HH        Ѕt*f{u#{uE@   HHH        AX[]Y[]H           1H        UHAWIAVIAUATSHXG8fEfG6HF    HfEG HFH        MgHM0  AG4HIGHI9  A<$tA<$    At$A\$H        I?HtHH        HHEu          HHuI?H        H9uHHMHEe        }  IH           H        H1)  DiHyHXIUHH4HuwHMHH+EHH;E|1҃HMH        H        HЅHMuAF4   DAA@i  H        $IF늋AF0   IF wIFlIF(aIH        H           :IH        H           IH        H           H        1I        AAw"H           1H          1AH        HH        HЅPH        1H        Iؾ   AUH        EN@I        AAF@ZYȃFA   1AH        HH        HЅH        uAF<   AF@   Avw1AHMH        HHхHMuAF<   AF@   A
vC1AH        HHх  AF<   AF@     Aq1AHH        HH        ЅCAF@   6H        H          H        1I        A  AD$I;sIAD$I;FvIFI 1A~4   EDmHHEtMuH          LmH        LHIH]   Aw(H        I?HH]   LLI?H        L9   AG:LHEADHE7   HuI?H        H             H]K,H9  1   H}H        Ћ3I?HuHEHu                    IH           H        H1     H        H}H        ЅVsDcH        I?HsDHEHHI[HHI?H        H9HEGAF8   LeE1H}Hu A~0   IF HIFIF   HL)H;E}H           H        ӅIuAF@ȃ3  AF@   &     H        H}ӅuAF@ȃ  AF@        H        H}ӅuAF@ȃ  AF@   {   H        H}Ӆto   H        H}Ӆt2   H        H}Ӆt=   H        H}Ӆu@AF@ȃL  AF@   AF<   7  AF@ȃ(  AF@     H}
   H        ӅH}u"H
   HuH        IF      H        H        AׅH}uH   HuH        IF>   H        ӅH}u7H   HuH        AF0   IF         tN      H        Ӆu4HE   HuHxH        IF(        usA   ,   H}H        HuHE    @HHE41Eu3IVIV()H           1H        
   oHe[A\A]A^A_]UHAWIAVIAUATSHXGDfEfGBHF    HfEHG HFH        MgHM2  AG@Hk8IGHI9  A<$tA<$    I\$ It$H        I?HtHH        HHEu          HHuI?H        H9uHHMHEe        }  IH           H        H1-  DiHyHXIUHH4HuwHMHH+EHH;E|1҃HMH        H        HЅHMuAF4   DAA@m  H        $HIFHAF0   IF uHIFiHIF(]IH        H           :IH        H           IH        H           H        1I        AAw"H           1H          1AH        HH        HЅPH        1H        Iؾ   AUH        EN@I        AAF@ZYȃBA   1AH        HH        HЅH        uAF<   AF@   Avw1AHMH        HHхHMuAF<   AF@   A
vC1AH        HHх  AF<   AF@     Am1AHH        HH        Ѕ?AF@   2H        H          H        1I        A  ID$I;sIID$(I;FvIFI81A~4   EDmHHEtMuH          LmH        LHIH]   H        Iw0I?HH]   LLI?H        L9   AGFLHEIDHE7   HuI?H        H             H]K,H9  1   H}H        Ћ3I?HuHEHu                    IH           H        H1     H        H}H        ЅVLk HsH        I?HrLHEHI]HLI?H        L9HEIAF8   LeE1H}Hu A~0   IF HIFIF   HL)H;E}H           H        ӅIuAF@ȃ3  AF@   &     H        H}ӅuAF@ȃ  AF@        H        H}ӅuAF@ȃ  AF@   {   H        H}Ӆto   H        H}Ӆt2   H        H}Ӆt=   H        H}Ӆu@AF@ȃL  AF@   AF<   7  AF@ȃ(  AF@     H}
   H        ӅH}u"H
   HuH        IF      H        H        AׅH}uH   HuH        IF>   H        ӅH}u7H   HuH        AF0   IF         tN      H        Ӆu4HE   HuHxH        IF(        usA   ,   H}H        HuHE    @HHE41Eu3IVIV()H           1H        
   sHe[A\A]A^A_]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            filename expected multiple types specified no type specified hibr HIBR false Check if FILE is of specified type. OPTIONS FILE file is-i386-xen-pae-domu Check if FILE can be booted as i386 PAE Xen unprivileged guest kernel is-x86_64-xen-domu Check if FILE can be booted as x86_64 Xen unprivileged guest kernel is-x86-xen-dom0 Check if FILE can be used as Xen x86 privileged guest kernel is-x86-multiboot Check if FILE can be used as x86 multiboot kernel is-x86-multiboot2 Check if FILE can be used as x86 multiboot2 kernel is-arm-linux Check if FILE is ARM Linux is-arm64-linux Check if FILE is ARM64 Linux is-ia64-linux Check if FILE is IA64 Linux is-mips-linux Check if FILE is MIPS Linux is-mipsel-linux Check if FILE is MIPSEL Linux is-sparc64-linux Check if FILE is SPARC64 Linux is-powerpc-linux Check if FILE is POWERPC Linux is-x86-linux Check if FILE is x86 Linux is-x86-linux32 Check if FILE is x86 Linux supporting 32-bit protocol is-x86-kfreebsd Check if FILE is x86 kFreeBSD is-i386-kfreebsd Check if FILE is i386 kFreeBSD is-x86_64-kfreebsd Check if FILE is x86_64 kFreeBSD is-x86-knetbsd Check if FILE is x86 kNetBSD is-i386-knetbsd Check if FILE is i386 kNetBSD is-x86_64-knetbsd Check if FILE is x86_64 kNetBSD is-i386-efi Check if FILE is i386 EFI file is-x86_64-efi Check if FILE is x86_64 EFI file is-ia64-efi Check if FILE is IA64 EFI file is-arm64-efi Check if FILE is ARM64 EFI file is-arm-efi Check if FILE is ARM EFI file is-hibernated-hiberfil Check if FILE is hiberfil.sys in hibernated state is-x86_64-xnu Check if FILE is x86_64 XNU (Mac OS X kernel) is-i386-xnu Check if FILE is i386 XNU (Mac OS X kernel) is-xnu-hibr Check if FILE is XNU (Mac OS X kernel) hibernated image is-x86-bios-bootsector Check if FILE is BIOS bootsector .note.netbsd.ident .note.netbsd.ident version too old for xen boot payload too short found bzimage payload 0x%llx-0x%llx
 xen loader/i386/xen_file.c not xen image unknown ELF type premature end of file %s Xen xenversion = `%s'
 xen loader/i386/xen_file32.c name = `%s'
 version = `%s'
 invalid loader generic pae = `%s', %d, %d
 yes bimodal yes,bimodal no unknown note type %d
 no XEN note __xen_guest PAE=no, PAE=yes, PAE=yes[extended-cr3], PAE=bimodal, PAE=bimodal[extended-cr3], PAE=yes,bimodal, PAE=yes[extended-cr3],bimodal, VIRT_BASE= VIRT_ENTRY= HYPERCALL_PAGE= ELF_PADDR_OFFSET= no XEN note found premature end of file %s Xen xenversion = `%s'
 xen loader/i386/xen_file64.c name = `%s'
 version = `%s'
 invalid loader generic pae = `%s', %d, %d
 yes bimodal yes,bimodal no unknown note type %d
 no XEN note __xen_guest PAE=no, PAE=yes, PAE=yes[extended-cr3], PAE=bimodal, PAE=bimodal[extended-cr3], PAE=yes,bimodal, PAE=yes[extended-cr3],bimodal, VIRT_BASE= VIRT_ENTRY= HYPERCALL_PAGE= ELF_PADDR_OFFSET= no XEN note found    LICENSE=GPLv3+  elf macho extcmd offsetio file                                                                                                                       
      M            Z
                                                              	                      
                                       .                      ;                      I                  [                      m                                                 s
      :                                                                                                                                                                               .                     =                     L                     X                     d          	      x                                                                                                                                  S      	                                                                               <       grub_mod_init grub_mod_fini grub_macho_close grub_strncmp grub_strtoull grub_xen_get_info grub_elf_is_elf32 grub_elf32_load_phdrs grub_elf_file grub_file_check_netbsd32 grub_macho_open grub_xen_file grub_unregister_extcmd grub_file_seek grub_errno grub_memset grub_file_offset_close grub_elf_is_elf64 grub_file_read grub_elf_close grub_strchr grub_malloc grub_xen_get_info64 grub_file_close grub_file_open grub_real_dprintf grub_elf64_load_phdrs grub_error grub_free grub_xen_get_info32 grub_register_extcmd grub_file_offset_open grub_memcmp grub_file_check_netbsd64                      B                    `             +       q          $                     !                                                                                                                                      j                                                                                8         *           Q                    q                    @                                                                                .                    T                    t                                                            E         %                    %                               :                    \            =       f         )                       B                                                                                       F                    	                    	                     	                    	            G       	         $           	                    
                   
            M       &
            q       0
                    :
            ~       D
         '           P
                    \
                    i
                    
                    
                    
                                        ?                    `                    u                           )                                                                       Y                    {                                                                   )                                                   ,                    N                                                  "               $                       4                  ]               "                       Y      /         (           c                    o            t               $                                                                                           %         &           8                  I         $                                                                                           %                    C                    X                  g         $                                      )                             G                  Q                  e                  o                                                                                 "                                      $                                      )                                               3                  A         "           o            (               )                    )                       ,                  4      A            @      N         )           o            C      y                                             "                       Y                          5                    Z                                                                                                                                          '         $           B            e      P         )           k                                                                        q      D            y      y                                                                                          S                  t                                                                                          	                          	                    !            	      B                    Q                    n                                *	               $                    #           n                                                                                                                <	               $           X            U	      b         )                                         Y	                  l	                  	                   l	                  	                  l	      -            p	      9         "           Q            	      b         $           y            	               )                       	                  l	                  p	               "                        	               )           "         )           Q            	                  	                  	               )                        	      
            l	                  p	      %         "                       
                                                                  "                    7                    e                                                                        <	               $                       
               )                               1                                                    
                  "
                   +
      8             B
      Q             O
      j             j
                   {
                   
      !                    !            
      %!                    G!                    ^!            
      !                    !                    !            
      !                    !                    !                    6"            
      G"         $                         O                   O                   O                                             (                   0                   8                   @             [      H             1      P             y      X                   `                   h                   p             b      x             b                   b                                                                                                                                                                           +                                                                                                                                              (                   @            5      P            E      h                  x                                                                  
                                    2                  A                  ^                  l      0                  @                  X                  h                                                                                    !                  @                  M                  h                  w                         0                  H                  X                  p                                                ?                  N                  k                  {                                                                               8                  H                  `            %      p            1                  P                  ]                  }                                                                                                 (            +      8            7      P            c      `            o      x                                                                                    ,                  7                  B                  `                  ~                                                                                                  (                  0                  8                  @                  H            I      P                   .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                        @       l"                                   @               `:                                +                     "      X                             &      @               Q       
                          3      2               )      
                            B                     3                                     H                     3                                    X                      4                                    ]                       4                                    f                      4                                                           4                                	                      (8      8                                                   0[      o                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/bitmap_scale.mod                                                               0000600 0001750 0001750 00000012220 13417732100 0016246 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   HtHu H        &   1H           S_(uDW0AuDG8AuW@tH           D^(AuDN0AuN8uF@tH        xD9u.^$9_$u&E9u!^,9_,uA9uN49O4u9uF<9G<tH        9F9GtH           %? t t> t~ uH        &   [1H        1[UHSAP9r    1U Btr	u)    )1H        &   1H        ҉] Z[]UHSAP9r    1U Btr	u)    )1H        &   1H        ҉] Z[]HuH        @&UG(uG0uG8uG@tH        ,? t uH        G;GtH        &   1H        1AWAVAUATUHSHHx   rt     HHH        Ѕ  HCPD1D[DcE1ɋ[DmH$HEPHD$E D$E1D$D9b  DE11HD$1D9tK1EA1Lt$L4$AǉADAIL|$19vAAHL$AEt$HHH        Ѕ  HCP{E1uDCD$    D$    HD$ HEP|$8Hc}t$4HD$(|$<$CD$E D$0ȉD$`FIcD$dH7HD$hD$9D$e  DE1D$    HD$@D$E1D$HD;,$$  D$1ELT$@LT$ 4$1AËD$EEt$D$<ILL$(D;\$`r1   ;L$dsD$1A      4$1AċD$HE)D)t$)ȉ)L$L1A܉l$TDI9HD$XHD$h\$PI1I,A9~UHD$XA	A   T$LD$TT$PT AЙAA
HA9~AAHD$0AD$ED$4D$D|$8D$1+HxH        &   []A\A]A^A_1H        Hx[]A\A]A^A_AVH        EATIUSHHH    Hωt$T$Ѕ   t$~T$'HH        &   []A\A^1H        AL$ HH        Ѕu9LDH;H        ЅAtH;H        DH    H[]A\A^AWH        AVAAUEATAUHSHH8H    HD$D|$pЅ  E~E"H        &   1H          K DDHH        Ѕ  3KAD$    D$    Dt$Dd$D$     D$$    t$(L$,tbw
At@  A   A   '  AA9s1DHt$,AH|$$a1ҋL$xAHt$(H|$ &DEDD9s 1Ht$H|$L$xH         D1H|$Ht$DH           DI        A9s1DHt$,AH|$$^1DH|$Ht$GI        ADD9s1Ht$H|$L$xD1ҋL$xAHt$(H|$ AH        &   1H        ҅A   HE |$(DSDKLkPD DpLxPp;|$,CDT$D$${DL$|$ DD$H|$LHCPHE 8HE t$|$T$xHE HHPPHދ$H} H        DT$ADL$LkPDD$DDKHE D HE DpHE LxP1EtH} H        HE     DH8[]A\A]A^A_null bitmap in scale function dst format not supported src format not supported dst and src not compatible bitmap has a zero dimension Invalid v_align value Invalid h_align value null src bitmap in grub_video_bitmap_create_scaled src format not supported for scale source bitmap has a zero dimension bitmap to scale has inconsistent Bpp and bpp Invalid scale_method value requested to scale to a size w/ a zero dimension Invalid selection_method value  LICENSE=GPLv3+ bitmap bitmap_scale                                                                                                                                                                                                                   X      ;      ?                      Y                      d                   grub_video_bitmap_create grub_video_bitmap_scale_proportional grub_video_bitmap_destroy grub_error grub_video_bitmap_create_scaled                                               Q                                 7                    P                    P                    k                           ]                   n                                                                                                 &            	      =            ,      N                                        Z                    T            Y      o                                                  t                                                          [      3         
           \                              t                                                                                                    )                  s                                      $	            [      o	         
            .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                             @       	                                   @                           	                    &      2               	                                  5                                                          ;                                                         K                                                          P                                                          Y                                                                                      8      
                    	                                                                                (      b                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/gcry_crc.mod                                                                   0000600 0001750 0001750 00000007500 13417732100 0015423 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   Ht,1I        H9tAD2HEC3HGËЉGWWW    ËGWWW Ht3HH9t+HF1      tLȉuËGWWSH        H        H        HH        [SH        H        H        HH        [                   0w,aQ	mjp5c飕d2yҗ+L	|~-d jHqA}mQǅӃVlkdzbeO\lcc= n;^iLA`rqg<GKk
5lBɻ@l2u\EY=ѫ0&: QQaп!#ĳV(_$|o/LhXa=-fAvq Ҙ*q俟3Ըx4 	j-=mld\cQkkbal0eN bl{WٰeP긾|bI-|ӌeLXaMQ:t 0AJו=mѤjiCn4Fgи`s-D3_L
|<qPA' %hWo 	fa^)"а=Y.;\l ұt9Gwҝ&sc;d>jmZjz	' 
}Dңhi]Wbgeq6lknv+ӉZzJgo߹ﾎCՎ`~ѡ8ROggW?K6H+L
J6`zA`Ugn1yiFafo%6hRwG"/&U;(Z+j\1е,[d&c윣ju
m	?6grW Jz+{8Ғ|!ӆBhn[&wowGZpj;f\eibkaElx
TN³9a&g`MGiIwn>JjѮZf@;7SŞϲG0򽽊º0S$6к)WTg#.zfJah]+o*7Z-CRC24RFC2440 CRC32RFC1510 CRC32                                                                               @                                                                                             @                                                                                             @               LICENSE=GPLv3+ crypto gcry_crc                                                                                                        3                  3                                                                              	                      
                              `       =     `       `       ]                      p                                  `        grub_mod_init grub_mod_fini _gcry_digest_spec_crc24_rfc2440 _gcry_digest_spec_crc32_rfc1510 grub_md_unregister grub_md_register _gcry_digest_spec_crc32                                                                                                                                                        '                    6                                          (                    0                    8                    @             9       `                                 `                                        g                    9                                                                                 >                    9        .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @       A                                   @               	                                 &                                                         .      2                                                   B                                                         =      @               	      h                          H                                                         X                                                          ]                                                          f                            	                                                                                    	                      p                                                          P      o                                                                                                                                                                                                                              boot/grub/x86_64-efi/blocklist.mod                                                                  0000600 0001750 0001750 00000006170 13417732100 0015620 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    	          @     @  
 AVIAUAATAUSH        HA@PAPtLD$H        1LD$LI+p1H        EtDH        1H        ҉D	t$HHBT% [H        1]A\A]A^H[]A\A]A^U1   SH(  H|$Hl$H           iH        H     H        H     H        H     H        H:HH   H@H Hu H           H           H@(1Ht
HPH@(H        HT$Hk`HCX   Ht$ HH        Ht$tI11H|$H        HH        С        H(  []AVAAUATIUHSAӅtZH9HH9u$  vuځ  	HՉAHՅ   At$M11H        AD$    Et.F,3HHMD1A  H        E)D)DЅtUAA  t=	I        tމHHM11A[HML]A\A]D11A^	I,$A\$[]A\A]A^H        PE1H        H        H        H        H        ZH        H8H        , %llu +%u [%u-%u] filename expected this command is available only for disk devices Print a block list. FILE blocklist       LICENSE=GPLv3+  blocklist                                                                                                            D            9                                                                                                     (                      C                      O                      g                      v                                                                                         grub_mod_init grub_mod_fini grub_errno grub_register_command_prio grub_printf grub_unregister_command grub_file_read grub_file_close grub_file_open grub_file_filters_enabled grub_error                            7                     S                    g                    s                                                                                                     
                                       B            %       Q                    w                                                                                       	           M                                                                        i                   U                                      n       #         
           /                    ;                    H                     .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .modname                                                                                              @       R                                   @                                               &      2                     x                             5                     
                                     ;                                                         K                                                          P                             
                                                    0            	   	                 	                                                                                X	      Y                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/gfxterm_menu.mod                                                               0000600 0001750 0001750 00000017160 13417732100 0016333 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   SHH        H        HH        H        [UH        HAWAVAUATSH        HHH        H        H        H             H        H        HJ  H8H        H        Ѕ)  LmH        H        H        H        I        I        AAT$IH        LH        С        tQH        I        I        R   PH        1H        1I        AXZ  H        H           L   LH;H        H        Ѕc  H        H{HtHsH        1H           H        H        H        H        H        H        H{HtH        AIH        ILMAL$AT$IM)1H3H        I        AH        I9>HH        H9H        H        IH        H        HQH        I        I        w   P&He[A\A]A^A_]H        H        H        H        H                  P  e   M  x         gfxterm_menu            menuentry "test" {
	true
}
menuentry "s̛ ơ t o̒ s̒ u o̕̚ 8.04 m̂ñåh̊z̆x̣ a̡ b̢g̢ u᷎ô᷎ ô᷎ O̷ a̖̣ ȃ̐" --class ubuntu --class linux --class os {
	true
}
menuentry " הַרמלל(טוֹבָ) לֶךְ" --class opensuse --class linux --class os {
	true
}
menuentry "الرملل جِداً لِكَ" --class gentoo --class linux --class os {
	true
}
menuentry "ὑπόγυͅον" --class kubuntu --class linux --class os {
	true
}
menuentry "سَّ نِّ نَّ نٌّ نّْ" --class linuxmint --class linux --class os {
	true
}
menuentry "从硬盘的第一主分区启动" --class "windows xp" --class windows --class os {
	true
}
timeout=3
 png gettext gfxterm gfxmenu Unknown Regular 16 unicode font not found: %s 0 tests/gfxterm_menu.c can't start capture: %d: %s (proc)/test.cfg %s %dx%dx%s done %lld ms
 unicode gfxterm_menu theme starfield/theme.txt gfxterm_ar lang en@arabic gfxterm_cyr en@cyrillic gfxterm_heb en@hebrew gfxterm_gre en@greek gfxterm_ru ru gfxterm_fr fr gfxterm_quot en@quot gfxterm_piglatin en@piglatin gfxterm_ch de_CH gfxterm_red menu_color_normal red/blue gfxterm_high menu_color_highlight blue/red test.cfg                                                                                                                                                                                                                                                                                                                                                                  LICENSE=GPLv3+ font functional_test procfs normal video_fb gfxterm_menu                                                                                                P                   p                                                                                    	                      
                                       )                      ?                      K                      q                           @                                                                                                                                                                                                                 A                     Z                     p                     |                                                                                                8                                                                                                               1                     B                     Z                     n                     }                                           grub_mod_init grub_mod_fini grub_strlen grub_test_use_gfxterm grub_errmsg grub_terminal_input_fake_sequence_end grub_procfs_entries test_cfg grub_env_context_close grub_dl_load grub_video_checksum_get_modename grub_strdup grub_font_load grub_video_checksum_end grub_font_get grub_errno grub_terminal_input_fake_sequence grub_video_capture_start grub_env_context_open grub_printf grub_video_capture_end grub_test_video_modes grub_normal_execute grub_strcmp tests grub_get_time_ms grub_test_register grub_env_unset grub_test_use_gfxterm_end grub_test_unregister grub_list_remove grub_video_fbstd_colors grub_video_checksum grub_list_push grub_env_set grub_test_assert_helper                                         P                    P       )                     7                     M                     ]                    i                    u                                                                                                                                      !                                                               *                                	         "                    (           +                    6                    D                    N            a       X            J       i            8       u            L                ,                                                            )                                                            +                       }                           "                    .         %           :                    F                    R                    g         $           y                                                                                      !   8                                   '                                                                      $            /       .            J       R            4       \                   f         #           r                   |         &                                                                         (                    0                    8                    @                    H                    P                    X                    `                   h                    p                   x                                                    *                   3                                       >                   A                                       L                   O                                       \                   d                                       u                                                                                                                                         (                  0                  P                  X                     .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                          @               8                                &                                                        .      2                                                 B                           `                             =      @                                               H                     
                                    X                     
                                     ]                      
      ,                              f                      K
                                                          X
      8                          	                                                                                     o                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/blscfg.mod                                                                     0000600 0001750 0001750 00000011210 13417732100 0015061 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   UHAWAVAUATSH8?.H}HE    HE      H        H   HMH        H|H        Ѕ  HuH        H        HEHH        HHEH]A  Hx@   3  E1E1E1E1H}H        HHB  HǺ   H        H        Ѕu*LH        H{H        IH      H        HH        Ѕu*LH        H{H        IH      H        HH        Ѕu'LH        H{H        IHG   H        HH        Ѕu+LH        H{H        IH   HH        HEMIEMHEuH        HHI!LH        H        I        MMH        uI        LWH]H        VH        RLP1HHEE1j I        11Hu   PH        j H LUE1E1E1E1E1E1LUH        H}LLLLLULH}HtH        He1[A\A]A^A_]SH        H        Hu&[H        H           H        HH        Há        Ht\HH        Hu        1H        H        HP        HH        С        [1PE1I        1H        H        H        H        ZH        H8H        ($boot) 
 initrdefi     .conf /EFI/fedora/loader/entries/%s title  options  linux  initrd  load_video
set gfx_payload=keep
insmod gzio
linuxefi %s%s%s%s
%s%s%s%s bls root variable `%s' isn't set /EFI/fedora/loader/entries/ Import Boot Loader Specification snippets. bls_import        LICENSE=GPLv3+  extcmd normal blscfg                                                                                                         >            S                                                                                                                           )                      6                      E                      `                      q                      }                                                                                                                                                                                                                                                &                      grub_mod_init grub_mod_fini grub_strlen grub_strncmp grub_xasprintf grub_normal_add_menu_entry grub_device_open grub_strdup grub_unregister_extcmd grub_errno grub_strcmp grub_file_close grub_file_open grub_device_close grub_fs_probe grub_file_getline grub_error grub_free grub_register_extcmd grub_env_get      0          
           J                    Y                     q                    {                                                                            <                                                                    2            C       ?                    R                    b                    ~            L                                                                               S                                                                                       7                   O                    Y                   c            
       s                                                  [                                                                                      :                    X                   b                    t                   ~                                                                                                                                                                                                                                              )            U      3            
      =                    I                   U                   b                     .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                             @       l                                   @               	      X      	                    &      2                                                 5                                                          ;                                                         K                                                         P                                                          Y                                                                                            
   
                 	                            3                                                          b                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/boot.mod                                                                       0000600 0001750 0001750 00000006400 13417732100 0014571 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    @
          @     @  
         ATHAUHSHuHu1   (   H        HtH        HHHhD`Ht7D9avHIHHHQ HP HA HP HtHB*H        H        HH@    HHP []A\HWHG HtHB 
H        HW HGHtHB
H        H        ATH        IUHS8 tH        HtLH        HH        أ        H            []A\H        R8 tH        HtH        H     H        H     H             XH        8 uH           1H        UH        SQ8H        H        HHt(H        8tH[ HtASH[H        ЉH        HHtHCuЉH[ Z[]H        1PE1H        H        H        H        H        ZH        H8H        you need to load the kernel first Boot an operating system. boot    LICENSE=GPLv3+  boot                                                                                                         <                                                                                                        
       3                      E     a      U       W                      r                                  F                                                                                                
                         f        grub_mod_init grub_mod_fini grub_loader_is_loaded grub_machine_fini grub_loader_unset grub_register_command_prio grub_unregister_command grub_loader_unregister_preboot_hook grub_malloc grub_loader_boot grub_error grub_free grub_loader_register_preboot_hook grub_loader_set                           /                     @                                                                                                                                                                 ,            (       9                    D                   N                   c                   s                                (                                                                                                                                     
                                                 9            (       G                   u                                "                   s                  <                                                                                        .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .modname                                                                                              @                                          @                     `                          &      2                     A                             5                     U                                     ;                     X                                    K                     h      0                              P                      h                                                          p            	   	                 	                      h                                                         	      Y                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/gptsync.mod                                                                    0000600 0001750 0001750 00000011710 13417732100 0015315 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   A>  I҉1A=  AvAAA?   1A   AAA	1D   EAWAVAUATUSH(  t$H        |$~"H           1H          HII        ;(uBHH        Հ|)u,I] HD IE HxAMe HLA)
I} AHH   H;HuHH        H        X11LD$    H        Ѕu\1f$  UH$  tHH        H        H<tLHH@uHH        H        HH        С             HH$  D$   D$    H@HD$IEH$D$9D$o  H$+   H8H        HIu%H$-   H8H        HID$ tAA D$H$H;H0H        MItD$AMu#HH        H           ID$HIL$H9v#HH        H           HL$H9HFMHD$t"A t1I1H        Ј   HHL`(H        IH        8u     *  M!  I~H        I        AׅtJI~H        Aׅt3I~H        AׅtI~H        A׃҃,}HH@(    @t$ @+EEu-|$uHH        H        D$   UID$HMHUHI        EA|$AI|$A|$HMHUHuHAID$LEH        D$H$HcD$I        HH  |$H   1HAD$HL$H$  H$  Ƅ$   Ƅ$  Ǆ$     Ƅ$  HiH9Ƅ$   H$  Ƅ$   HGH        Љ$  fǄ$  U11LD$    H;H        ЅSIu H        1H        1CH(  []A\A]A^A_H        PE1H        H        H        H        H        ZH        H8H        device name required only 3 partitions can be in hybrid MBR not a disk no signature no such partition only partitions residing in the first 2TB can be present in hybrid MBR ntfs hfs only one partition can be active New MBR is written to `%s'
 no GPT partition map found fat hfsplus Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. DEVICE [PARTITION[+/-[TYPE]]] ... gptsync  LICENSE=GPLv3+  disk gptsync                                                                                                         D                                                                                                                                       )                      >                      O                      ^                      i                      u                                                                                                                                                                                                                                                 grub_mod_init grub_mod_fini grub_strlen grub_partition_probe grub_device_open grub_disk_read grub_errno grub_memset grub_register_command_prio grub_unregister_command grub_strcmp grub_strchr grub_disk_write grub_device_close grub_fs_probe grub_error grub_free grub_printf_ grub_strtoul  r                                                                                             
                               (            <       E                    n                    z            G                                                                                                          >                    l                                                    T                                       f                           +                    :                    a                   k                                                                                                                  (                    g                                                            J                    b                   n                                                                    W                                                                                                          .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                             @                                          @                     P      	                    &      2               2                                  5                     G                                     ;                     H                                    K                     X                                    P                      X                                    Y                      ]                                                          h            
   
                 	                      
                                                         `      b                                                                                      boot/grub/x86_64-efi/bsd.mod                                                                        0000600 0001750 0001750 00000140210 13417732100 0014374 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   H1@<@@<tH9uHHHy$Hq,u   Dу8 P4L@t2;P u-HPHHHH9uHMHpt?IxHp   .MHP$tIHLHHH   Hx   H H        :   HHH wsHHPH   vcH   HxH@$   HP,P L@$P4   H)HHPHPtH   HLHxH@   HL 111ABtI	B< EATH        IUSH}HuH           HPHhXH     I$H        :u@  u8H        Hz  tHH
HH1H8 u9H        -H        HHtH
H        H        1[]A\UH        SHH        H        HD$H        H        HH        HH        H        HHHLD$H        1H        H        HHtMCt/wr9HsH        1%u sH        sH        1HH[]UH        H        SQH8Ht
HHH        H     H        H     H             H        H8H        H        H8H        H        H     1Z[]ATH        IUSHPH8H        H        1   H        H        Ѕu"H           1H          I<$H        HH  H        HH        uHH          I4$HH        HH        HX      H        I,$H     H        HH H        Ѕ  C H        H%HH        HsHH        HI        IMu"HH        H        8   JK4HHI9sAHw)AKH9HGAKI;vHH        I H        HH        HHt$H        H8H        H)Ѕ  H|$H        H        H        E1H+E1   HHHH        Ѕ  H        8  H        I        HHH        H;HH        P  HH        Ѕ=  H        H            H        8   I        Hs A<$u"HH        HH H        #H%H        H        H     HH        HsHH        HH        IMu"HH        H        8   HK@Hk8HI9sAHw'IJH9HGIJ(H;vHH        I8H        H        LH        H          L H        1I        AH        HH        HHt$H        H8H        H)Ѕ   H|$H        H        H        E1H+E1   HHHH        Ѕu\A<$uUH;H        I        HHH        HH        H           1H        HH               H        1     HI$H        H  @   Ht$HH        H@t8H        8   HH           1H          H|$H        tH        R\$$ځ f|$HH        tھ   A       1A   H w"H           1H           HЋL$H        D$HȅLLtI  H HȋL$1H        t?H        H8HtH  H HH        H        HL)H        HHt$H        H8H        H)Ѕu;H|$H        ЋL$L$HH        IDHH        HH        H        H  H% H        H        8 tH        H8H        С        HP[]A\tH           H        8tH           1H        AUATI        USASI<$ u%AZ[]A\H           1H        A]IH:H        HH   Hh@I;,$vEHH        H        HHAY[]A\A]H           1I        AH        HH0HH        H9ItJHH        H        8 u!IU H           1H        ѡ        IH        HH        1I<L)H        H        A  A D 1Z[]A\A]AUH        ATIUSWЅH           t9H        H        8uH        8 u$H           1Y[]A\A]H        uH        1   I<$H        HHtHx@ I        uHAա        PH        I        L8 H        HH8tH        
H        ЉHAՉZ[]A\A]AWH        AVAUATUSH(8tH        H        8 u"H           1H        s     H        H        H        HD$H        H        HH        HH        H        HHHLD$H        1H        H        HHt!K`SXHsDC\H        1H1  HHH        H        L#AH        LHHa  HH@HE  H        Ht$HH        H8H        Ѕ  I        H|$H        HU@HHH        A?    H        L/   Lm@HD$H        HHHh   H        LEHHuA?    \HxO   LH        ЋD$Dk\C`1ECXH        HtHHH        HH        H        HE@H  H% H        HH        С        H([]A\A]A^A_AWH        AVAUATUHSWЅH           t H        8t(H           1Y[]A\A]A^A_H        u'H           1H        1E1Q  H} H        HI3  Hh@1H&  }H        HcHH  HcHLHH        H9    HI        
   HAHIt0HPH9v < t
	uH<"H)B Iŀ} #t~=   HH        Hte  }  t\x"HPLxHH        LD1H        HHt8HLH        ЅHH        tMt
L,1HH        MtLH        С        Z[]A\A]A^A_ATH        IUSHHt$ЅutLH|$H        H[]A\AW1   AVAUATUH        ISHXH|$Ht$H        Dt$        IcHkuHHKHDHH        HH   H        I8IuLmDu H|$1   Ht$Ll$ H        AA?DD$u"DD$I|   1H        DD$1H        H          H        I        AH        H        uH	   Hu1  HH        С        HX[]A\A]A^A_UH        HAWAVAUATSHHЅ  H        H        71Ht!HPtHLH	HLHH H0H         H8HuH        Ѕ}  H}H        I        Lx$HH        L(MMtLAEIL$IuHHMA$AEAD$IUAHMIMHH) AD$IMm 11H        A$AD$    H        AD$    E11111H        Ѕ   H        E M)E        C   C    C        CH        H
CH        H0H
DcCC    HE 	   HuH        1H8H        H0He[A\A]A^A_]UH        HAWAVAUATSH   Ѕ  H        H        Hte8 t`HH        1H        Há        H  11HH        H߉8H        ҋ811H        H        Ѕ   H        Ѕ   HHH}H        Ѕ   EǅX    0   HP   \E`EfEfdHHHPEgEjEhEkEiElH        Ѕt2H        H        H        H             H        E1HtAH DH        Hk\HHá        HttD#H        1A   CH        HtHpHk\H|LH Ek\H޿   H        AT$AHH        D     H           H        Ѕc  H        H        	E1E1Ht$HPtMtI	MtIAH H        H]HH8IcH8ILH        H8H        Ѕ  H        H}H0H0IIH        L(E>LE1I        IMtpHDLOL)8D$IuL(L0ATAEGAELIUAL(D$L0LAI}Mm j   	    H        A   A   j HH8H        ZY   H}AH}IH        E11111IH        Ѕ   H        DmM)DmD8EA        EAG    EoAG    AGH        H
AGH        H0H
	   AGHHH        1H8H        H0He[A\A]A^A_]AWH        AVAUATIUH        SHH      HH        Hޣ        H        Ѕ  H        8 u"/   H;H        HLhunL+iH;H        HH  H        H        H8 H        H8tH        
H        ЅzK  1P   H$   H        H        LO   H$   I        A1P   H$   ID$    tA   1H$   ID$   H$   H   Aպ   H$      ID$1   H$   I               H        H$   A1I        AǄ$   %  $   ID$H   H   H|$P   H        H        I        ЅH|$PuH1Ht$PH|$PAԉA
1Ht$PAԉ$             H|$P?,uBH1Ht$PH|$PAԉ$           t  H        H$   Aպ   H$      H        Hx @v"H        &   1H          1H        HH$  L8M  Mo(M  IGA   Htx uEg IU(E1HHt
LpH@(IEL$   IW(   1IuLHD$H        ЅP  4   Mo(1H|$Dd$L1HPH@(HuDt$IE   HT$ Ht$PH$   H        HD$8   I        HD$(DHD$0H        H|$@   Ht$PA׺4   Ht$
   1    H|$PIE0HtqHxH        H        Յu4$   Dt$PH$   H|$X   fD$T$  fD$VA'I}( uIE0H        HxՅtD$PDd$hAE     Ht$P   D$lH<$H        1H        H        H        С        HĘ  []A\A]A^A_AWH        AVAUATUHSH8H_    t$HT$H        H        HЃ{P            HCXI        1HD$ M<AMtaLI        ALHH|$ H        Ѕu6H\$ LAպ
   Ht$ H<H        H|$ HT$ Hu#HHuH          SvH          a   D		1HE1   H|$ x` H           HEHxhH   H|$   H        H        Ѕu)HD$1Ht$I        HxH|$AփvH          H|$%  ?,u1H1Ht$H|$AH¡           %  1D$$H        T$    Ht$ D$(   H        С         9D$    D$(   Ht$    H        С        ߣ        Ht$H        |$Ѕu-H        1H        H        Љأ                   1H        H8[]A\A]A^A_UT   1HAWE1H|AVAUI        ATSH        H   Aա        ǅ|   ET   EL II        MtZ	   H        I<$AՅu9I<$	 t/H	I        AI|$H(AH(M|IMd$0MtH        M   I I)H        8 H   H        Ѕ  111H        Ѕ  H        HH        01Ht!HJtHDH	HDHHH        HM  II I)I        I 0  H8A> LEH        HLH        H8H        Ѕ#  H        H8H(IH        L K'H        LIM   	   H        I?H        ЅufI7~	 t]I        H	HLAH        HHHLHX =IwHAHHH\M0fL9Ht
  HDeH8 *  H        I        HHH   QLHHQPQ  t  t7  uMA> tA0H        -A> t	uHpdUA> H        HtHPFPALHQHqHLLH        LHLLHAH)A> t
HHHHHH	L)L)D]I  H L)LH        11H        EH        A> H        v  j H8A   A`     	    j H        H?^_  H8H(H8IH        E1H(1111H        Ѕ<  Hغ 0  1L)HIH M$   M$    I1IL,L   HH    HH   uH(LpH@H   H8H8H        HH        H H	H`A   @EAFH        AFH        1H8H        H@L  j   	    A   Ax   H8j H        H?ZY  H8H(H8HH        E11111IH        Ѕ   H{$T   H|H        H        D8	   D<H8P           C        CH        HCH A$҉CDcH0SEHCH        C H        1H8H        H0He[A\A]A^A_]AWH        AVI        AUIATAUH/   SHH(LD$DL$HPHH        HH        HEЅH        HDHAHލP   H        Ӆ   H        8 tSHD$HHD$D$HD$AHP   Ӆ      Ht$   Ӆ      Ht$6HAHP   Ӆum   Ht$   ӅuXHt$      ӅuCE   11A9~I| HA֍\tcHt$   H        Ѕt        >Hl$1I        A9~"It HAI| HAHHh  E  1H([]A\A]A^A_AWH        AVAUATUSH8tH        H        8 u"H           1H        f  AuH        1L  HH:H        HH%  HH@H	  H        Ht$HH        H8H        Ѕ   H|$H        HS@HHH        H        8    EL}I        At4H}   H        H        ЅuHEEl$L}LpH        DK@L LDLH} H        Ѕu$H        HC@H  H% H        HH        С        H[]A\A]A^A_AUH        ATAH        UHSH    HH        H        DH        Ѕ  H        L  I LH        H        8           H        LH        HD$    HMAT$H} ۃH        HDE)H        ЅI  H} H        HH  H        H        HU 8 H        H8tH        
H        Ѕ     Ht$  H        Յ  Ht$  Յ  Ht$  Յ  H        1H            IHt;HHD  HR(H7  HJ(*Ht)+  Ż           H        H     H        8    1AHI   HH        HItnHx@ tgHxH        H        ЅuIHt$LAT$@u8H|$Ht.   1H        H|$H        H        H        Ѝ+  1H        H                H        С              HH        H[]A\A]UHH        SRЅ  H        H        H        I        I        H        1H        H        I        I        H        1H        H        H        I        I        H        1H        H        H        H        E1H        1H        H        H        E1H        1H        H        H        E1H        1H        H        H        E1H        1H        H        H        E1H        1H        H        H        E1H        H        1H        H        H        HH        X[]SH        Ѕ   H        H        H8H        H8H        H8H        H        H8H        H8H        H8H        H8H        H8H        H8[H        [AUIH        ATIHUHSLAQHu        OHLHH        H9t3        u(AX[]LH           A\A]H        1Z[]A\A]AWI        AVIAUATI1UHSHARAH   4   HHI        AH4   ;ELFu{u{tH        {t)H        AY[]A\A]A^A_   1H        C.{0H        HcHIts HAHu        cS.C0HI6HcAK0S.HcH9t7        u,AX[]LH           A\A]A^A_H        1Z[]A\A]A^A_AWH        AVIAUATUHHSHHH   H$HD$0    HL$0HT$@Ѕ  4   Ht$@  H        Ѕw  t$nD$pHT$0HH<HH9sxt'HH           1H        '  HxD`Ht$8|$x$HADjB|$H߉D$G|,AIGDyAHD$HDH        Ѕ  H|$8H        D|$(D|$HËt$HD|$,D I        AHtKDHHHHL$HH        HL$H9uZHt$HD*HT$AHHT$u        ,  LzHLH        LL9u1I        V           H$H           H           ;H        LAՋL$ͅtHD9rZDC1H        H        x  H        I        DD$8AѺ   Ht$8  H        ЅuI   Ht$(  H        Ӆu*   Ht$,  Ӆu\$,   IHĈ   []A\A]A^A_UH        HAWAVAUMATIHMSHxHpHhHdHE    HUI4$Ѕ  IE uHUH  EIH Hc1H<
H9srtBt
rH9HBLH34   uHFUHpHuHcHHHH        Ѕ7  H}H        ILuHxEUHHEI9   ENE   AF   PAF EH        H           H        I        P1AA~EFZYAVt2I+U ANH        I4$HhHHxЅt%i  I+U 1H        H<HxLAVAFHHI9LBEILhHI+U HxI        1A4   I4$LhLAHC4DEMI4$LLhI9LBELI+U HxDMcADUDE)؋MI4$EELLhHIELI+U HxDMcADDMd)IL$H        EEIDH        McMMM A)I<$LI$LHpH        He[A\A]A^A_]AWHAVIHAUIATUSH   H4$HT$HHD$8    HL$8HT$PH        Ѕ  t$~$   HD$8IHcH<I9sAtI1L  AOA_Ht$@Lk\$ I] HȃHD$@HHD$(HD4HHD$HH        Ѕ  H|$@H        IƋD$D$@   L\$D4   Ht$PMf4؉D$HH        AF    fAF,  E4fAF*  fAF2  AF 4   Lt$8D$,T$~$   HHD$8I9sqLLH        M9u$   T$~4L;t$u$   T$~D$,AD$	AD$    AD$AD$D$~IIpAwH<$I        AHt?DD$ LH<$I        LLD$ ALD$ L9u7HD$H<$pAHu        ~D|$(I4,H<$LAL9t/        uYHT$H           H        7   Ht$@   H        ЅuHL$H  H IU HĘ   []A\A]A^A_AWH        AVAUMATUSH   HT$ HL$(HT$@H<$Ht$HL$8HD$8    Ѕz  L$nD$pH|$8HH4HH9sxtHH        19  XDxI        H        AދX$Dt$\$XHHX@\$D$ALHHtDH<$H        HuHAԡ          LHH<$I        AL9tH\Dt$LHHtt$H<$H        HtLHH<$AL9uI1E11I        XHAHAԡ        (  HT$H           H          AFtt$I;L$rXA>tL$HH$H        AH$A>H        IDH$HAԅH$L$MDMtHtMI        tmHthAt+HAHAH           1H        GBHL$(IE BHT$ % H)HIEAG% H)HIEHAHAHĈ   []A\A]A^A_AWI        AVIAUATI1UHSHARAH   @   HHI        AH@   H   H#HELF   H9u{tH        {t)H        AY[]A\A]A^A_   1H        C:{<H        HcHItHs(HAHu        cS:C<HI6HcAK<S:HcH9t7        u,AX[]LH           A\A]A^A_H        1Z[]A\A]A^A_UH        HAWAVIHAUMATIHMSH   HhTHE    HUI4$Ѕ  uMIU HEH  LRIH HcL1L9s)Hx HtHp0HtLHHH!H)HLHHuLH        Ѕ  H}H        ILuHpEUHHEI9W  MN M>  IF0HtM|HHI!M~RH           EH        PH        1I        AA~IF Y^Hx   IE IvHhH`I$HXH        Hu        gLH+`HxHpHhH        H;xt_           HXH           H        хt(   LI+} HxHp1H        M~ EITI  EA)IL$IH% H        IE I<$H        Ѕu4@   Hu  H        ӅuUEʿ	  HuHe[A\A]A^A_]AWH        AVAUIATUHHSHHH   HT$HD$0    HL$0HT$PЅ  @   Ht$P  H        Ѕ  $   $   HT$0HH<HH9sxt'HH           1H        .  H(HxL` Ht$HH|$Hx8HHBH|$HHD$ HB HD$(E|IE ALpIH        LILЅ  H|$HH        ELt$8t$MLt$@HL HI        AHtHHLHHI        AL9u^HD$(t$ HHT$(HHD$AHHT$(u        .  LzHHT$LAH;D$u1I        S           HT$H           H           ;H        LAօtH\$ŉHD$L9rZLC1H        H        x  H        I        LD$HAѺ   Ht$H  H        ЅuK   Ht$8  H        Ӆu,   Ht$@  ӅuHL$@H  H IU HĘ   []A\A]A^A_AWHAVIHAUIATUSH   Ht$HT$ HHD$H    HL$HHT$`H        Ѕ  $   $   HD$HIHcH<I9sAtI1q  AO(I_ Ht$PLkH\$(I] HȃHD$H@ HHHD$0HD@HHD$HH        Ѕ  H|$PH        IƋD$I        LLD$8D$P   \$T@   Ht$`Mf@D$XAIF     fAF8  fAF6  fAF>  IF(@   LD$8Lt$H$   $   HHD$HI9   LD$8LLAM9LD$8u$   $   HH@#L;t$u#$   $   HHD@ID$	ID$    ID$ID$$   IIWIwH|$I        AHtBDD$(LH|$I        LLD$(ALD$(L9u:HD$H|$HpAHu        D|$0I4,H|$LAL9t/        uYHT$ H           H        7   Ht$P   H        ЅuHL$H  H IU HĨ   []A\A]A^A_AWH        AVAUMATUSH   HT$0HL$8HT$PH<$Ht$HL$HHD$H    Ѕ  $   $   H|$HHH4HH9sxtHH        1T  HX LxI        H        IH\$HX8EH\$X(HHHPH@ HT$ HD$(ALHHtDH<$H        HuHAԡ          LHH<$I        AL9tHdDt$(LHHtt$ H<$H        HtLHH<$AL9uD$IE1E11I        $XHAHAԡ        1  HT$H           H          AGtD$D$ID;D$r^A?tDD$ HHL$H        AHL$A?H        IDHL$HAԅHL$DD$ MDMtHtMI        toHtjI~t+HAHAH           1H        IHAHt$0HT$8IE HA% H)HIEIF% H)HIEHAHAHĘ   []A\A]A^A_                                                                                                                                                                            @                                             1                                       2                                       a                                       b                                       c                                       d                                       m                                       q                                       s                                       v                                       x                                       z                                       r                                      h                                                                                         @                       a                                       b                                       c                                       s                                       d                                       r                                      h                                                                                      @                                             D                                       h                                       a                                       C                                       c                                       d                                       g                                       m                                       n                                       p                                       q                                       r                                       s                                       v                                                                       size addr type name   %-18s  %-18s%14s%14s
   %-18s     0x%08x     0x%08x
 filename expected your CPU does not implement AMD64 architecture kern_start = %lx, kern_end = %lx
 bsd loader/i386/bsd.c invalid arch-dependent ELF magic premature end of file %s invalid a.out header load address below 1M no kOpenBSD loaded your kOpenBSD doesn't support ramdisk your kOpenBSD supports ramdisk only up to %u bytes, however you supplied a %u bytes one you need to load the kernel first only FreeBSD supports module only ELF kernel supports module no NetBSD loaded   %-18s%14s%14s%14s
   %-18s  0x%08x  0x%08x  0x%08x knetbsd_module_elf only FreeBSD supports environment kFreeBSD.%s %u entries in smap
 text gfxpayload %s;800x600 800x600 Booting in blind mode com pc mdlen too long netbsd only device specifications of form <type><number><lowercase letter> are supported only com0-com3 are supported unknown disk type name kFreeBSD. /boot/zfs/zpool.cache raw no FreeBSD loaded type= elf64 kernel elf kernel zfs gzio Load kernel of FreeBSD. FILE kfreebsd Load kernel of OpenBSD. kopenbsd Load kernel of NetBSD. knetbsd Load FreeBSD env. kfreebsd_loadenv Load FreeBSD kernel module. kfreebsd_module Load NetBSD kernel module. knetbsd_module Load NetBSD kernel module (ELF). Load FreeBSD kernel module (ELF). kfreebsd_module_elf Load kOpenBSD ramdisk. kopenbsd_ramdisk wd fd sd cd vnd rd no-smp Disable SMP. no-acpi Disable ACPI. askname Ask for file name to reboot from. halt Don't reboot, just halt. config Change configured devices. kdb Enter in KDB on boot. miniroot  quiet Don't display boot diagnostic messages. single Boot into single mode. verbose Boot with verbose messages. debug Boot with debug messages. silent Suppress normal output (warnings remain). root Set root device. DEVICE serial Use serial console. [ADDR|comUNIT][,SPEED] wdXY comUNIT[,SPEED] dual Display output on all consoles. cdrom Use CD-ROM as root. Invoke user configuration routing. gdb Use GDB remote debugger instead of DDB. mute Disable all boot output. nointr pause Wait for keypress after every line of output. dfltroot Use compiled-in root device. premature end of file %s invalid arch-independent ELF magic invalid arch-dependent ELF magic _DYNAMIC no symbol table dynamic = %llx
 bsd loader/i386/bsd32.c loading section to %x, size %d, align %d
 elf module rd_root_image rd_root_size unexpected size of rd_root_size premature end of file %s invalid arch-independent ELF magic invalid arch-dependent ELF magic loading section to %x, size %d, align %d
 bsd loader/i386/bsd64.c elf obj module _DYNAMIC no symbol table dynamic = %llx
 rd_root_image rd_root_size unexpected size of rd_root_size LICENSE=GPLv3+  elf serial crypto gcry_md5 extcmd aout video boot cpuid relocator mmap bsd                                                                                                                           2      /           4                                                              	                      
                                       )     J            E                      c                      v                                                                                                                                                                                                                          &                     3                     I                     _    [:      0      }                                                                                                                                                                                             .                     E                     W                     c                     u                                                                                        s@                                                                                                '                     ;    D            ]                     i                     ~                                              +                                                                                                                                                               "                     8                     H                     W                     i    d7                G                =                                                          M                                                      $                     5                     @                     ]                     u                                                                                                                                                                                                                      4      I                            #                     ?                      grub_mod_init grub_mod_fini grub_strlen grub_netbsd_load_elf_meta64 grub_efi_finish_boot_services grub_aout_get_type grub_puts_ grub_strncmp grub_strtoull grub_efi_system_table grub_env_update_get_sorted grub_strcpy grub_elf_is_elf32 grub_loader_is_loaded grub_strrchr grub_ns8250_hw_get_port grub_dl_load grub_elf32_load_phdrs grub_relocator32_boot grub_freebsd_load_elfmodule32 grub_elf_file grub_xasprintf get_virtual_current_address grub_video_set_mode _gcry_digest_spec_md5 grub_memmove grub_device_open grub_relocator_alloc_chunk_align grub_disk_read grub_unregister_extcmd grub_loader_unset grub_dl_ref grub_mmap_iterate grub_file_seek grub_relocator_unload grub_errno grub_memset grub_openbsd_find_ramdisk32 grub_register_command_prio grub_elf_is_elf64 grub_video_get_driver_id grub_mmap_get_lower grub_mmap_get_upper grub_freebsd_load_elfmodule_obj64 grub_printf grub_efi_secure_boot grub_unregister_command grub_file_read grub_freebsd_add_meta_module grub_elf_close grub_print_error grub_zalloc grub_strcmp grub_strchr grub_elf64_load grub_malloc grub_relocator64_boot grub_file_close grub_file_open grub_real_dprintf grub_freebsd_load_elf_meta32 grub_freebsd_load_elf_meta64 grub_netbsd_load_elf_meta32 grub_device_close grub_elf64_load_phdrs grub_openbsd_find_ramdisk64 grub_fs_probe grub_relocator_new grub_crypto_hash grub_error grub_video_get_info_and_fini grub_cpuid_has_longmode grub_free grub_dl_unref grub_register_extcmd grub_env_set grub_gettext grub_memcmp grub_loader_set grub_elf32_load grub_env_get grub_strtoul grub_bsd_add_meta grub_aout_load get_physical_target_address grub_relocator_alloc_chunk_addr                      ]         @           {         ,                                          p                   h                   h                   p                   h       &                    5         U           A                   P         U           \            
       i         U           x                            U                                       5                       p                   ,                   ?                    4                   p       %         Q           C            p       T            h       e                   u                            R                                       +                                                          (                    '                                       -                       K       "         N           7         C           O         L           ^                   m         B                                                                                                                                                                                         4                   >         ,                                                                                                ^                                                                              X           0                   C                   M                   ]                   m         .                    0                                          ]                P                                                                                       	                            I           -                   :                   O                   Y         ,                                                                                                                                      D                                                 !                   .         ^           J                    V                   `                            ?                                                                             J                                       N                    :           	         ,           	         *           @	         8           R	         ,           h	                   y	         N           	                    	                   	                   	                  
         N           
                   O
                   ]
                   
                   
                   
                   
                   
         ^           
                    
                   
         \                    B                              .                   8         ,           G                   T         R           _         ,           v            K                                      )               N                                          <               N                    C                    B           (                   @            b      Q         N           ^                   q         8                    B                    ,                                       N                    ,                                                          -                              "                    :                  K                   U                  d                   s                           N                       #               C                    B                    ,                                                                             4           "                    B                   ]                  i                   x                           N                                        U                                       U                       
                U                                       U                       *               5           +            `       K            ?      l            _      v         =                    C                                                          ^                    ,                                        8                              9                    Q         <                                           X                   `                   X                                                      B                    ,                               :                  K                   Z            r      v         N                       K                N                    C                    @                    8                    >           y         >                                                          T                    Q                    Q                    B                     ,           8            Y      h         "                    )                                                          @                              4                   ]         -           p                   z                                              D                                       [                    Q                    ,                       }      (                   2            p       j                            ^                                        "                       p                         5                     U                    i                                                                  3                    2                                                  !            }      H                  R         Y           k                  w                             ,                                         Q                                                           1           	         O                    [                    ;                                                          ,                       `                 @                    ,           (                   =            `       s         [                    Q                                        [                                          p                          5                   B         ^           V                    z            p                "                              <         $           `         ]           z                                                                   3                    2                                                  =                   S                   r            7                                                                                           C                                                                                        !         G           I         -           S         [           o                                        	                                       a                  k         V           u         Z                    ,                    ,                              )         !           :                  K         N           ^         #                    %           C          !           V          "           m          M                                        =           !                   N!         H           \!                  f!                  p!         W           {!         ,           !                   !            0      !            7      !                   !                    "                    -"                    V"         Z           |"            y      "            
      "         -           "                  #         V           $#         Z           A#            \      s#         ,           #                    #         [           #                   #         [           $                   $                   "$                  6$         W           B$                  L$                  Y$                   b$         ,           u$         N           $         -           $                    $            P       $         V           	%                  ,%                    c%                   %                   %            }      %         [           %            p       %                   &                   *&                   J&                   Z&                   g&         ^           {&                    &                   &                   &                  &         V           &                    
'                    w'            p       '                   '                   '                   2(         "           (                   (                  (                     (         $           (                   0)         ]           N)                    )                   )                   *                   ,*                   =*         A           s*                   *         ]           *                    *         "           *                   +                   ,+            T       9+            H       p+                   }+                   +                    +                    +                    +                   ,         =           ,                  1,         [           E,                   -            Y      *-         ,           =-                    -                   -                  -                   -                  -         N           -            #      -         C           ".                   4.                   A.         ^           Z.                    p.         8           |.         ,           .                  .                  .         V           .                   .         9           /                   !/                   ./         B           9/         ,           T/                   c/                  /            7      /                   /                  /                   /                   /                   /                   /                   /                  *0                  ;0         9           S0         C           k0                   u0                   0                   0         F           0         E           0         [           1            P       1         #           o1            H       1                   1         K           1                  1         =           2                    2            H       2         Q           .2         ;           F2                  P2            $      Y2            T       c2         W           n2         ,           2         H           2         6           2         S           2                  2                    2                  2                  2                  2            P/      3            
      3            P      3                  '3                  33            !      =3            +      G3            @       S3                   ]3            4      g3                  s3            9      }3            K      3            8       3         /           3            S      3                  3            e      3            0       3            v      3            -      3                  3            (       3                  
4            >      4                  4                    -4                  94            >      C4            _      M4                   \4                  h4                  r4                  |4                   4                   4            #      4            p      4            :      4                    4                   4         6           4         &           4            @        5            8       5            0       5         7           (5            (       75                    F5                   U5                   d5                   s5                    5                  5         *           5         ,           5         8           5         ,           5            H      6         N           6         *           V6         8           6            a      6                  6         N           6         @           6         ,            7         ,           57            H      L7         N           h7            6      7         [           8                  8         N           s8         ^           8                    8         *           8         8           9         ,           )9         8           ?9         =           J9         ,           `9            H      o9         N           9                  9                  9                  9                  9         D           9         [           :         [           ^:            6      3;         ^           K;                    ;                  ;                  ;                  ;         D           ;            5      <         -           k<            5      *=            	      D=         9           r=         E           =            6      e>         ^           ~>                    >         "           ?         "           ?         *           ?         8           ?         ,           ?         ,           @            H      @         N           ;@         [           w@            6      @         Q           A         Q           A         @           _A         *           uA         ,           A         8           A         *           A         =           B         ,           B            H      )B         N           jB            	      B            )	      B         Q           B            6	      B         N           QC         *           C         8           C            o	      C            	      C         N           	D         @           .D         ,           cD         ,           xD            V	      D         N           D            MC      jE         ^           E                    E            	      E            	      E            	      F         D           NF         *           ^F         ,           F         8           F         ,           F            V	      F         N           F         -           .G            	      BG         9           `G         [           G            MC      G         [           8H            
      IH         N           H         ^           H                    H         *           I         8           KI         ,           uI         =           I         ,           I            V	      I         N           I            
      I            
      I            	      J            	      J         D           -J         [           LJ         [           J            MC      yK         ^           K                    K         "           L         *           L         8           M         ,           2M         ,           EM            V	      TM         N           qM         [           M            MC      -N         Q           HN         Q           RN         @           N         *           N         ,           N         8           O         *           7O         =           QO         ,           hO            V	      wO         N           O            -
      O            ;
      P         Q           ,P            H
      =P         N                         K                   N                    Q      0             T      p             W                   [                   ^                   e                   r                  z                         0                  H                  X                  p                                                                                                                                                            D                   K      8            b      H            j      `                  p                                                                                                                                                                  P                  `                  x                                                                                    D                  K                                                             (                  0            &      @                  P                  X            +                  ;                  @                                                             0                  H            `      X            f      p                              z                                                                                                                                                       8                  H                  `                  p                              "                  +                  D                  K                  b                  j       .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                        @       P                                   @               (r      B                          +                     P      (                             &      @                                               3      2               X      h
                            B                     b                                     H                     b                                    X                     b                                    ]                      b      G                              f                      b                                                          b                                	                      k      _                                                         o                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/gzio.mod                                                                       0000600 0001750 0001750 00000026470 13417732100 0014607 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    )          @     @   UH        SHQHtH{H[Z[1]UHSHD$xۍCt,|$ t!   Ht$HH        Љt   1H[]USHRH HǇp      Hw t+H;wvH           1H        HwH?H        HX  H        ǃP       HǃH       C0    C,    H`  HǃX      Hǃ`      X[]AWH        AVIAUA1ATUSH  L\$L$H$   T$(HL$HD   LD$PLL$L$P  L\$L$1AH   A9uD9$   uHD$H     A    E1  A1    D`uHHuA   D9H$      AB܃8 uHu9   DGDA9s+     A   +   t$,     Ǆ$       11H9t      1At   r     HA9w؉J  Ǆ$       HǄ$      E1D$@AH$  Ht$8E11HD$AD$E1$D$XD)D$\C<D|$D9D$  DHcD$D$$   LH   Ht$0t$X   B>d$$D$|$ X  T$AD )AD 9D$D$ T  $щD@   ;D$v6|$\+|$D+D$HL$0A9DFD9sHD	D9vD)@A   L\$xALT$pT$lAyDD$ht$dDL$`H        HHDL$`t$dDD$hT$lLT$pL\$xu(EA     H$  H          HL$HxEH9HHH@    IcHL$H  tBD   Hc$DIAH$DH$HH  LЈIHHyT$@Dl$ D$C4'HT$8cD)H9T$sEHD$;T$(s   fAHD$Ѓ+T$(HD$PHL$HHD$HҊfDL$A   DD)ADT$ D9L$ s'AHLшIʋL$ DD$ HHLLYҋD$$DtA1A1ƺ   DHc$D!;   t$A)L$II|$, E1AA!A   H  D[]A\A]A^A_U1HATSHH  Ǆ(p   HH=@  uHpf1H@  	   HH=  uHpf1H  HHdt	   Hp0H\  HH$t	   ǃh     Hh  VI        HpLX  PH             I        A_AXt5H        8    H           1H           1Ǆp   HHxuǃl     PHl  1H        L`  PI           HpAZY~LH        8 uH           1H        HX  H        HǃX      
C,C4    He[A\]ATH        I        UHSH_PH;HX  AH`  AHH        HE     HE    []        A\SHOHHtHW1H;Ws`HBHGRH?Ht5HC H9Gt@       uǃ@       Hs@    H        Hc@   P@   D@[UHAWAVI        AUATSHH(  LH   DP   AwHADHAHI	DAII          AwHADHAHI	DAII        AwHADHAHI	ヽw+  wMAE}AD$IE1퉅AH          H        DABIAEI;s'I        AwHADHAHI	tǄ    ǃh     Hh  HX  AQE11HHIP      HH        AZA[  1Hch  E1I        H        PD;  D;h  s#HADHAHI	ԋD!HHX  H`  H@IA)wIc̉Aĉ놃u{Aw#HADHAHI	DAIAB< ;wATH          )ȃtHcɉAuZAwHADHAHI	DAIAB4 ;wAT)ȃtnHcǄ    AwHADHAHI	DAIAB4 ;5AT)ȃtHcǄ    A1?HX  I        I        AHǃ`      HǃX      I        LH   DP   Hǃh  	   LH        V  A_AXubǃl     P1ҋH        L`  I        HHl  PAZYt4HX  AHǃX      H           1H        
C,C4    He[A\A]A^A_]AWHH   AVAUATIUSHHH9p  Ht$HT$ HL$vH        HD$    H|$   H        8   I$p  H9\$  AǄ$T      A$T  =  vI$p  L  H        ? IuA|$, d  A|$0 uA$P   I$H   uLH        HH	ŉHI        AD$0wLAֈHHH	HI$H   A$P   AD$(         I        HwLAֈHHH	ŃHAD$,I        wLAֈHHH	A9D$,tH           1H        HI$H   A$P   LH        LH        AT$(~H           1H        A}    A|$( I        Ic$T  u?A|$, uA$T    A}  u]LAA,T   HcAL$,Ic$h  H        AT$<A\$8M$H   E$P   <HIc$l  H|$(D$,A|$4   E;$h  s(T$0LH        DHAHT$0I	΋t$(D!HI$X  D6A   Acu"H           1H        9  NAIA)E9s2T$8Ht$0LH        DHAHT$8Ht$0I	H        DfB#<pHHFH^NIA)Au&DuFA   A,T   o  D  AuAD$,    AP  E9s*Ht$0LH        DHAHHt$0I	H        D^BMDIE)HT$0D!E;$l  s*LL$8LH        LL$8DHHAI	̋T$,D!AIM$`  Eu AvgAcjAMAIA)E9s*LL$8LH        LL$8DHHAI	HT$0DfB#rHIEIAMLHA)E9s*Ht$0LH        Ht$0DHHAH	AEDAD$4E))H        HD!H)IA|$4 .AI             D9v)D)9DG))9s)4ʉL$8IT   DLT$0IT   AҋL$8LT$0A΍) 9Ս4(tA<T   A4T   AA   t
muAL$4A   t
D1p1A|$, AT$<A\$8E$T  M$H   E$P   I$X  H        I$`  IǄ$X      IǄ$`      A$T   jYA$T   tNHD$H|$H)H9HG%  H|$ IT   HH        H\$ H)\$H\$H\$H        8 HHDD$HD$HH[]A\A]A^A_HSHHwHHPHH        H        : u&H9t!H           1H        H[AVAUATIh   USH        H HH  x  HHuHH        x  L ID$I        H]PEH   HEH        HEH;H t1Aպ
   Ht$H;I        AH
t4H        HH             H1LAL   D$f=tf=u|$uD$uu	D$tO3   Ht$H;AHut$H;H        ЅtmH;H        ЅSD$tH;H        Ѕ2H;HGHC HG@HpAպ   Ht$H;AHD$HHE@H        H1H []A\A]A^AWIH        AVMAUIATIUHx  SAQHH   HhLxH        HH@    AHՉDH        t$H           1H        HZA1   uÀ uHH        HC    LLLHH        IHLHZ[]A\A]A^A_AWIH        AVIx  AUMATIUHSAQHHtNHLpLxH@    H        HLLHH        HHH        HHZ[]A\A]A^A_H        H        H        H        H     H        H            ?   ?                                 	      
                                 attempt to seek outside of the file failed in building a Huffman code table too much data too many codes found the length of a stored block does not match unknown block type %d an unused code found premature end of compressed unsupported gzip format gzio                              	 	 
 
                 	    ! 1 A a    0@`                                          c c         	 
         # + 3 ; C S c s                                                                                           LICENSE=GPLv3+ gzio                                                                                                                                                  #                                                        	                                       *                      9                      D                      P                      f                      u                                                                                                                   X                 \              grub_mod_init grub_mod_fini grub_memmove grub_file_seek grub_errno grub_memset grub_file_filters_all grub_file_read grub_zalloc grub_file_close grub_file_filters_enabled grub_error grub_free grub_zlib_decompress grub_deflate_decompress                         \                                                                                                         4                                        E                                                                      0                                      $                           >            @       P                    o                    ~            $                                                                                       	                    &                                                    1      	            1      H	            1      	            L       	            0       	            1      n
            0      
            1      
                                Z                                       0                                                         @       1                    o            $                                                                  H                                1                  1                  1      D            1      v            o                                                                                                                  1      ]                                1                                             A            1      g                                1      
                    G            1                  1                  1      D                    n         
           a                             
                               A                  M                    a                   r                                                                                                                       1                    >                                '                   '                   '       :                   _                                1                                                                                    5                  c                                                                                                                                                                                               (            *      0                   .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .modname                                                                                         @       0                                   @               p      	      
                    &                     p      |                              .      2                                                  B                           P                             =      @               H)      H       
                    H                     @                                    X                     O                                     ]                      O                                                          X      (         
                 	                                                                                )      f                                                                                                                                                                                                                                      boot/grub/x86_64-efi/btrfs.mod                                                                      0000600 0001750 0001750 00000047340 13417732100 0014756 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    `K          @     @   ATI        U   SH;H  H@  sHH<AH        Hx  HH[]A\PH        HP1ZAUAATAUHSHHPG9s7DD$HkGHH        HDD$u        EHCHkHCH(HkHCD`HkHCDhHkHCD@1H[]A\A]HH9r'   w#N8OrwHF	1H9G	CÃAWIAVIAUATU1SH8  L,    H        1LD$+  LJ4(H        ЃAt}H|$E   H        H        ЅuYtIFHH9D$Mv+  Ht$LH        Ht$H$   H        H	J;*vHM   AEtDt>uH        	   1H        tH             1DH8  []A\A]A^A_UHSQH? u"H        	   1H             H        HHtsHH} H        Ѕu'ǃL        H        HH@  uHH        $ǃH     H(H@  H   HPH1Z[]UH        HATISH    HH   fDP.x,f@*DK(fDC&K$fAfS"s ASEfARI        WH        P1fAfAfEEAH I$HH        С        He[A\]UHH        SQH    HHt+H+     H        HHE H        С        Z[]UH        HSH8  HH   H8H   Ht$H        Ѓ	u!HH        H             mtHH        H        LHE Ht$%   Hx H        ЅuHEH9$   tHH        H]   1H8  []AWAVLwAUIATIUHSLH8H9  I  vALH)H  H  uLpIIAI=C  y  I   IH$    HV  LHD$(   H)H  H  uLpIIA6IC    H  v	M   A   t$   M)H        HI   t$E1HL$(LLT$LHD$HH        ЅH        LT$t
L   HD$(HL$K4*LT$LH9HFL9LFH        LL)MLT$L<$Lt$HL$L6AE1HL$(LLLH        Ѕu HD$(H$MH)IE1H$HH8[]A\A]A^A_U1I        HAWAVMAUATIH        SH   v	DNHHH        HLH        LH]  AAXEǅAY D e   HkLHI        Aׅ  } ID$eHu#Lǅ    E1I          !   1HJH        E1Lǅ    I        D;m   DD !   Hk!H)HHHЅ(  12H        L)DH          H        P1AHH)H        ^ _u5HuL:E1MDLHH        Ѕt  ~ u)]!   HJH)Aǅ   HuL[9E1AUMLHH        Ѕt$  HI    1   HH     H        HtE1  1  DD    HkH)HHHЅ  12H        H        L)D  H        P1AHH)H        Z Yt4      HJH)Aǅ   D;m0Y   H)HH        Ћ>HI:HHHA   MD    tW   HJHH        Ћ_HI[HHH}AUA   MDHI    1   HH     H        H6A   M˃LHH        He[A\A]A^A_]UHAWAVAUATISH   HhH0HPDLHP   M$+  I$  LhH        H        t  H        1I        AI9seA}u^1MMME	H        H          H        AIE	H;hwIEH9h  AE=HMlA떃L
HhHE   EIL$XHE~H        	   1H        1LLxLLpHUHuPH        j _AX  }   HhH9E   HpH        HHu        =  HDLHpHxLH        ЅAt'HH        D  I]ǅH    LmǅH   ME	LhLM)M9w<H        H          H        1AH        	   h  VsI        C.H        H          H        PC,P1AHCH MHHY  w|H   H  H        H          H        1ALHsHUI        As,HUHAHSHMHH)HHE'  H    H@  LHsHUI        AHfC,1fs.HUAD{.HMAHUHUHSHH)HHE  H        H          H        1AH        s,1H;H`HUIHLH`HPHEIL)LH        H          H        1I        AHE    LuA   HL)VA   N1H        H          H        AHSH           1H        4  Hu"H        &   1H          HPǅ`    H9HG1H@HǅX    HXD9k  HUHXI          H        L(HHLt0IFHHMH8QH        PRsH        C.PC,P1LME	AҾ!  1H0LhL8H        H        H        L(AM6A$H  1LeHE    Lu9v HHHI$@  L;ruH   ` tHuH        H        H} u"H        	   1H           A$H  A;$L  A$H  v\t I$@  A$L  HH(HH        HI$@  u!H}H        H(I$@  @A$H  HI$@  LpA$H  HUHI$@  HHEHuH                    EH8H8H        L0H@HH	  ЅtCH            HXD9u``bt        ?H@H)PH0HhH WHH        C1He[A\A]A^A_]AWAVIAUIATUHSHH   LD$E t%HkHE@E PHkHEH9Hs"1}    I        I        nU H@E1!   HHk!HteHT$Aԅ   E1e   HT$;Ht$+HAԅuhE1$    $   Ht$+HA1A׋E HkHEx tH@Ld$;E1   HHkHteLH        Ѕt8D$P   H|$LIE HkHEHD$LHDeIE    HĨ   []A\A]A^A_UHAWIAVMAUIATSHHxHxHhLpHp e  Hx  Ht/L9P  w&L9`  uHxH9h  uL9X    H        j HxHUL}ElLMj LmLEHuHH        ZY  L9}u}ltH        H}HH        	   ?  HEHp  HP  H        HxHHx  L`  Hh  uH         b  E1HHMHuHH        Ѕt:  Hx  HP  HHHHX  xu HMHx  HH5H9rHP-HX  LHLE1H        H        &  H        I        AL9X  LX  HpMHx  L+P  M)I9LG t&H           1H        H\  G<vH          f tH        Wt     <uTHp  HMLLHpH        L9  H        8 qH           O<u,Hp  HMLLHpH        L9M  JtLLH        Z  HwHuLLH        :     HGL`HEHH        HHHEHx  E1HMHHpH        ЅL`tH}H        zHx  Ju#LJ%MLHuH}H        L*Hu!LJ%MLHuH}H        LHEH}H        HEtHw%E1LLHH        LЅt'H           1H        MML)pLH+hHe[A\A]A^A_]HGPIIHOH0  H8  HH        UH        HAWILHLAVIAUIATIHSH  HOPHǅ   j Hǅ    ƅj ЉÅXZ   HH9u8uHH9tH        	   1H        ME1   HHLH        Ѕu$HEAD$TID$	    I$   IAHe؉[A\A]A^A_]UH        HAUILMLEHuATISHHHHUEj HUHE    j ZYuIL;eu}tH        	   1H        E1   LHuHH        He[A\A]]UH        HAWAVIAUIATSHH  HHLHHH{  ǅ    E1E1Hǅ    A</uIFHL  /   LH        HHuLH        LHHL)HH8t*LI        AHAH             HuA>.   VH   A>.   A~.   HAELIE	j LHLHj HH        AXAYZ  AE8#  HI9E   H HIE L   AETH        LHIE	HLj LHj HH        ^_  HLH        Ѕr  HH;vlHH        LHHHHxH        HIHu&LHHHҡ          E1HLHHH        Ѕ  MI        LL)H;}MABH9uMHIzLLHLAЅLLHuH;|P  ARABLTMAB<  u>LI        ALAHAH           1H          HIHLHI        HH        ЅLtLALAHA  H LH        HHHH|H        HHLuLALAHRH1L LI2HHH        H; t!LALAHAHAHH        HH HPHH        LAH?/tLLHHLHH        Ѕt  HAR    HHLLLLHHPj HH        j ZLYt-L牅I        ALAHAԋ  HI9   A8B   E1   HHHH        ЅAt$LI        ALAHAD  HEHAETIE	    IE    HH> tKuGLI        ALAHH           H        1AHAD      LLH8JAET@LI        LAHALALH        	   1H        ARLI        AHALA1He[A\A]A^A_]AVH        IAUATIUSH   HHHuH        (   L0  HHL$Ht$H        LЅu%LD$LHT$LHH        ЅtHH           |$t0HH        H           1H        ҉QHT$H0  Ht$ HH        H8  ЅAtHH        DHD$0I\$PID$@H   []A\A]A^UH        HAWAVAUATISH8  HHHá        H  HHHHH        Ѕ   LHHLHH        Ѕ   t1HH        H           1H          I        Lǅ   ǅ      AHHLu        :j HLHLLPHHH        ZYt HH        ҋ\  'TuHH9t7LHHHHH        ЅA  E1E1E1'T  HH9  HL9v=L4 LH        I~HHIuH        D Ak  E1HLHHH        Ѕt
A:  MLL)H;   HIH0HH        1   HH        ЋtH             HEAGIHALAD A	HHЅuiAGALAWAGLDO| 	LHHHHH        ЅA5E1E1LI        AHAH        HDHe[A\A]A^A_]H        H        H        H        H        I        UA{ St1   E1ɻ   Eʹ   E1AtA	AuJ,    A   C AAAoA1u   E1AtA	AuIE+I   up9~2HA3<[]                                            _BHRfS_M not a Btrfs filesystem not BtrFS %04x%04x-%04x-%04x-%04x-%04x%04x%04x retrieving %lx %x %lx
 btrfs fs/btrfs.c internal node (depth %d) %lx %x %lx
 leaf (depth %d) %lx %x %lx
 searching for laddr %lx
 %lx %lx 
 too deep btrfs virtual nesting couldn't find the chunk descriptor no chunk
 chunk 0x%lx+0x%lx (%d stripes (%d substripes) of %lx)
 single
 RAID1
 RAID0
 unsupported RAID
 unsupported RAID flags %lx chunk 0x%lx+0x%lx (%d stripes (%d substripes) of %lx) stripe %lx maps to 0x%lx
 reading paddr 0x%lx for laddr 0x%lx
 couldn't find a necessary member device of multi-device filesystem extent not found extent descriptor is too short regular extent 0x%lx+0x%lx
 encryption not supported compression type 0x%x not supported encoding not supported premature end of compressed unsupported extent type 0x%x no root inode not found not a directory file `%s' not found too deep nesting of symlinks unrecognised object type 0x%x not a regular file                                                                                     LICENSE=GPLv3+  lzopio gzio btrfs                                                                                                                                                  (                   (                                        	                      
                                       )                      ?                      N                      [                      h                      y                                                                                                                   )                                                                                                                           
                                          .                     9                     J                     T                     a                     u                                                                grub_mod_init grub_mod_fini grub_strlen lzo1x_decompress_safe grub_xasprintf grub_realloc grub_memmove grub_device_open grub_strdup grub_divmod64 grub_disk_read grub_errno grub_memset grub_getcrc32c grub_fs_list grub_print_error grub_zalloc grub_strchr grub_malloc grub_real_dprintf grub_device_close grub_error grub_list_remove grub_free grub_strndup grub_device_iterate grub_zlib_decompress grub_list_push grub_memcmp                         8                      Z                                                               i                                                                     %                                                  0            	       A                    S                                                                                            F                                               =            z                                      *                                                           z      1         !           D                    O                    ^                                F                                                                                               %                               $                    ]                    k                                                             3                    N            O       v            l                   f                                             ;                    [                                w                   f                   l                         -	            l       	            l       	                    5
                   ?
            f       \
            l       z
                  
                    6                                                    l       7                   A            f       P            l       \                                                   f                   l                          	                    7            .      r                                                                                                             f       &            l       5                   M                    [            '      e            f       t            l                   m                  f                   l                           ?                                ^                  f                   l                                       f                   f                  l                            Q            t      [            f       j            l       {                                                                                                             l       J                  Y            f                                     f                   l                   [               "           %                  6                                                                                                    $                    O                                                             :                  D            l                                                          .      $            Y      :            j      `                                                                                        f       +            l       5                    ~                                                                                   #                               *                  Z            ;      y                                                                                                   B         #           n            ;                                                                                   .            O      ;            .                  2                                            a            .                  :                                                                                                                                         J      ~            .                          #            .      C                  j                                                                                        %                                            n                                                            ^      M                     s                                  O      !                    )!                    r!            8      !            .      !                     Z"                  p"                     "                     "            Z      "                    >#                     a#                  r#                    #                     #            z      #                    $            8      ,$                  A$                    \$                    h$                  y$                    $            ^      $                    $            z      %                    J%            8      y%                  %                    %            J      %                    %                    &                    >&            .      Y&                    &                  &                     '                    J'                  '            ^      '                    '                    }(                  (                     (                    (                    (                    (         $           (                    )                    )                                 f                    $                    #      (                   0             W       8                   @             :       .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @       )                                   @               3                                &                      *                                     .      2               @*                                  B                      .      P                              =      @               HJ                                 H                     P.                                    X                     `.                                    ]                      `.                                    f                      l.                                                          x.                                	                      2                                                         J      o                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/halt.mod                                                                       0000600 0001750 0001750 00000014400 13417732100 0014555 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                               @     @   DA?wHt   AHEtA@1҃t   H	A9HH9r
.t"/t#HBHHD<\uHHB		BHDH)UH        1HH        i   SHI        APDH        AъtUw
         wZwsHCt4Cu>      H{1H           e8 tHH9rH9tJH)LB<v\tB<wYHHH        []H        1H        1   Z[]AWHG$I        AVIAUI        ATUHSHH8HH$IcHDHL$HH9C  H9:  D1H        H           H        AAؾ   1E)H        H        H        A3@[tHw#@)  @}  @    @  @d  @P  g  DC   1H        H        H        AsLc@tuw'@tJ@   HSHHHT$A   @   HS1H        HHT$   HSHHHT$AHT$HD   HSHHHT$AHT$HHLH        HT$HHL$҅HT$HL$t<HHHHD$H҅u*$HT$H#H        1H        1
HHD$D)HcIԅ4  *  LcHH        LHcIԅ  I  H<$ LcH        u   H        Lхu*NHL$HT$H        H<$хHL$t      H        LH        Ѕ   1H        H           H        I        ALHH        ЉH        IA4$@  IHt$,H        LHcD$,IAt$@t)r@
uAD$   1   H                 LHAHcIԅ   HLH        ULcHt$,H        LHcL$,HLILHHL$AՅAtXHL$HcLLH        HЃt;ILc1H        LЉIH        1H        ҃HLH8[]A\A]A^A_AWH        AVAUATUSHHuH        HIH        1H        Y  H        I        AH  CE1I        Hh$HD$HL$AHH9   }    H        Aׅ} uaDo(Dg@H        H        m  H        EAֺ   H        LAׅu{ywAUE111LLV   H        AׅuNyJ] H        H        |  H        IA֋SE111HHH        ЉH1EAH        H          H        AEtwA
 f  H        HH        H        []A\A]A^A_H[]A\A]A^A_ÿ   PH        H        H        E111Ҿ   H@XHxhH        PH        1PE1H        H        H        H        H        ZH        H8H        data type = 0x%x
 acpi commands/acpihalt.c Unknown opcode 0x%x
 Opcode 0x%x
 Tell %x
 Extended opcode: 0x%x
 Unexpected extended opcode: 0x%x
 _S5_ \ S5 found
 \_S5_ Unknown opcode in _S5: 0x%x
 Unknown data type in _S5: 0x%x
 rsdp1=%p
 FACP PM1a port=%x
 DSDT SSDT SSDT = %p
 SLP_TYP = %d, port = 0x%x
 ACPI shutdown failed Halts the computer.  This command does not work on all firmware implementations. halt  LICENSE=GPLv3+  acpi halt                                                                                                            <                                                                                                                                       (                      8                      N                      Y                      n     @            }                                                                                             P      J                                                                          grub_mod_init grub_mod_fini grub_puts_ grub_millisleep grub_efi_system_table efi_wrap_4 grub_acpi_get_rsdpv1 grub_acpi_halt grub_machine_fini grub_register_command_prio grub_printf grub_unregister_command grub_halt grub_real_dprintf grub_acpi_get_rsdpv2 grub_memcmp                                                                                                            g            K       x            +                                                           K                   @                                             -            M       7                   A                               V                                                                 p                               m                                              *                    ;                   Z                   }                                                                                                                                K                                              E                   {                                                                                         +                           D                    a                    s                                                                                                                                                                             0                   `                  x            
                                                                                                                                          #            0      -         
           X                    d                    p                                                                        E                                                                                                                           .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                             @                                          @               H      P      	                    &      2               <	                                  5                     
                                     ;                     
                                    K                     
                                    P                      
                                    Y                      
                                                          
      @      
   
                 	                      8                                                               b                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/bufio.mod                                                                      0000600 0001750 0001750 00000005560 13417732100 0014740 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    p          @     @   USHPHoPH        H} HH        HC            Z[]AWIAVAUIATIUSHH@H_PuHH@@HG@IWHC1H9r:HsH<H9s-H)LH        H)L9HHt IGI)IHM   IGHs1I|H        HIHIwLsI        L9   LLL$H;H)H$AH$LH;H        HLL$y	H   I@uHHR@IW@IHI)H;$t>HSHCH9vHSHSHLH{ H)IGH)HCH        HsLH;AHSHs H;H        HoLsHCI@uHH@@IG@HCLI9LGHL)IGLHt H        I,H[]A\A]A^A_AUI        ATIh   USQAHH            x
HcI;D$@vI|$@      IF\$@HcH{ AHuHH        8L HXIT$HUIT$@HEPH        HEHU@AD$HEHH1    |   rZ[]A\A]UH        SHt$HHt,Hǋt$H        HHuHH        1HH[]bufio                                                                                 LICENSE=GPLv3+ bufio                                                                                                                                                                                                                                  +                      6                      E                      Q                      a                      p           V                                                grub_memmove grub_divmod64 grub_file_seek grub_errno grub_file_read grub_zalloc grub_file_close grub_file_open grub_buffile_open grub_free grub_bufio_open                                               2          
                                                               	                                                                                                                                                                                                2                                         (             >       0                      .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .modname                                                                                         @       J                                   @               H            	                    &      2                                                  :                           P                              5      @                     H       	                    @                                                         P                                                          U                                                                                            
                    	                                                                                      ^                                                                                                                                                                              boot/grub/x86_64-efi/hashsum.mod                                                                    0000600 0001750 0001750 00000020560 13417732100 0015301 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   H        H@    H@    H@    ÍG<	w@GÍG<w@GÍG<w@GÃAWH        AVI   AUIATUHSQHI   H}HH        HHtpI        HU(   LLAHxMtHLHU0HU8Lu HU@LHH        LH        LH1LH        Hա        Z[]A\A]A^A_AWHI        I        AVAUATIUS1H   Hot$Dm0Du@HHL$LD$I7H HxAЅLD$HL$uI_IH        I9u}  tH]HH        t!HH        HHu"H           1H          Hx @H        &   w׃}  HD$     t	HE(HD$ } u
E11  |$ H        uH}H        HHD$  D$    D$    1HI        AH|$H        HHL|$0  II        A<$AׅtI1I        H;K sYA<$HL$8AIT$zD$(IA׉ut$(HL$8tH           	D@HA$<	t< uAD$<	t< uHt$ IHt\1LH        H        HHD$(  EuH        H|$(H        H|$(IHD$0#EuH        LH        IMu H|$H        HHD$0#  LH$   HH        LD$(I        A׃|$( te1LH        H        Eu H|$AH        HЋD$(5  H        H        D$     H$   HS H|$@H        ЅLtb1H        H        Eu<H|$AHH        LH           1H          D$ZH        1H        =1\$\$]  L$T$H           I        A4  H$   HHHD$H        HL$D$H        HЋT$H        toE   H        H             ID9|$   EuH        K<H        HXEu        |H;C s,   T$H        HL$1ыT$HL$K4H        1H        c#1tH           H        H   []A\A]A^A_SI        H        I        H        1H        H        I        I        H        1H        H        H        I        I        H        1H        H        H        I        I        H        1H        H        H        I        I        H        1H        H        H        I        H        I        H        1H        H        [H        SH        H        H8H        H8H        H8H        H8H        H8H        H8H[                                                                                             h                                      c                                      p                                      k                                       u                                                                       no hash specified unknown hash mdlen is too long --check is incompatible with file list invalid hash list %s/%s %s: READ ERROR
 %s: HASH MISMATCH
 hash of '%s' mismatches %s: OK
 %d files couldn't be read and hash of %d files mismatches %02x   %s
 %d files couldn't be read Compute or check hash checksum. -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] hashsum [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] md5sum sha1sum sha256sum sha512sum crc sha256 sha512 sha1 md5 crc32 hash Specify hash to use. HASH check Check hashes of files with hash list FILE. FILE prefix Base directory for hash list. DIR keep-going Don't stop after first error. uncompress Uncompress file before checksumming.        LICENSE=GPLv3+  crypto extcmd normal hashsum                                                                                                                                          R      i                                                        	                      
                                       ;                      J                      W                      n                      y                                                                                                                                                                                                                                                 "                     4                     ?                     I                     V                      grub_mod_init grub_mod_fini grub_crypto_lookup_md_by_name grub_xasprintf grub_memmove grub_unregister_extcmd grub_errno grub_printf grub_crypto_memcmp grub_file_read grub_print_error grub_zalloc grub_strcmp grub_malloc grub_file_close grub_file_open grub_isspace grub_file_filters_enabled grub_file_getline grub_error grub_free grub_printf_ grub_register_extcmd                           X                                                                                                                             "                    =                    G                                P                                                                                                         I            1       Y                                                                                            #                   X       l            j       v                                                                                                                                    T       ,                    E            p       O                    h                                                                                                                                                                                   +                   7                    `                   o                                T                                                                                                                               -                    M                   q                   }                                                                       P                                                         2                  6                  d                  P                                     l      (            6      2                  <            (       H            P       R                  \            l      h            6      r                  |                                P                                     l                  6                                                       P                                     l                  6                                                       P                                            &            l      2            6      <                  I                    U                    _            (       n                    }                                                                                                                                                                              (                   0                   8                   @                   H                   P                   `                   h                   x                                                   *                   /                   6                   T                   X                   c                                             .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                        @                                          @                     	                          +                      	      @                             &      @               X      (                          3      2               @
                                  B                                                          H                                                         X                           0                              ]                                                          f                                                                                (                                 	                      (      k                                                         o                                                                                                                                                                              boot/grub/x86_64-efi/cat.mod                                                                        0000600 0001750 0001750 00000010250 13417732100 0014373 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    (          @     @   UH        SRHHtHCXHtHHX[]ËtA@<u.?	ǉ>ȃu>
uu>ws        1@x@R@u   >w9        @u   @u   >   AWAVAUATUSHH  HGD$0    D$4     D$t"H           1H        -  H:H        HHD$tE1E11             D$0    D$4      } HT$4Ht$0HD$ Ѕk     1AE1|$4   HAH;l$   H        Յ     Ht$@H|$H        H@EH             Ӿ   H        1H        1  tHl$@I        I        HHD$TE IcEA\$D;t%<
t!   AH           1A1A} I        HT$4Ht$0AׅL|$    I        A1A9t;HT$(H        1AHT$(Hu H        1AD$0    D$4    1A   |$0   vt$0t)H        1AtG^vH        Ѕu΃|$ t|$0uD$4    D$0    A   IE1   ABt$;I1H        AD91H        D$4    D$0    E111I           A9~t,;H        1HA1H        H        H        H|$H        1HH  []A\A]A^A_1PI        I        H        H        H        H        H        ZH        H8H                                                                                                  filename expected <%x> %C 
 Show the contents of a file. FILE cat dos Accept DOS-style CR/NL line endings.      LICENSE=GPLv3+  extcmd cat                                                                                                                           l      M                                                                          	                      
                                       4                      ?                      J                      V                      e                      w                                                                                                                                                           grub_mod_init grub_mod_fini grub_unregister_extcmd grub_xputs grub_errno grub_printf grub_file_read grub_term_outputs grub_refresh grub_file_close grub_file_open grub_isspace grub_error grub_register_extcmd grub_getkey_noblock                                                                  2                    T                                                                                                   "                    A                    K                                                   0                                                                 E                   ^                                                                                                  '                   1                    =                    N                    q                    {                               9                                      >                                                                                                     B                    F        .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                        @                                          @               (	      `                          +                            P                              &      @                     0                           3      2               p      k                             B                                                          H                                                         X                                                         ]                                                          f                                                                                       @                          	                      @                                                                o                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/hdparm.mod                                                                     0000600 0001750 0001750 00000025750 13417732100 0015112 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    h(          @     @   H19vf<Nff<HHfP  Ã? t11QH        HZÃAUH        AATA1Uպ8   SHHXLD$DL$H|$LcL$LD$1HC@Dd$Ht$@l$Dl$HD$LD$(LL$0P1҅        EHX[]A\A]AWEAVEAUAATIUH        SHAR}  u>Ht9? t4H        x1HH        H1H        E1E1LAAAH        Ѓ}  Au7Ht2H        H        HEH        1H        Z[]DA\A]A^A_AUH        AATIUHSHQ8 u HtH1H        H        E1E111HAH        A<$ u7Ht2H        H        HEH        1H        Z[]A\A]UH8   H        S1HHH|$HE@1D$\$D$OHt$D$D$HPu<u:H      H#T$H   O   H9tH   ,   H9D HH[]AWAVAUATUSHh  LgtH           ,  H
HӀ9(u%HH        HHD8)u  HHHL$(H        LAAD$I|$@D$AD$ D$AD$0D$I|$PD$$ӉAD$`I$   E$   D$AD$pD$ A$   D$HL$(AA$   Hϣ        H        IDL$$        M]  ID$@t	t	!I\$@<AD$#HHwID$@HX0"H           1H          Ex:   HAEAH        E%   D@BH        ExBA   tEDA   A   E1Ƀ   HH        H        Ѕ  H        8    H        1I        AՅH                 tE   a   t3   D <   щ <   k0ɉ׉	1ɿ   11H        I        AH        1AH        1H        DE1   HڃH        H        E   H        }  u3EH        H        HDH        1H        AHH        ց   Ѓ}  u2H        H        HDH        1H        ҃|$ t   HH        H        ЋD$D	  11A   LD$`   HH        ЅtH        1H          Em  H        I        (   H$   H|$6H        H1Aֺ   H$   H|$6H        H1Aֺ   Ht$tH|$6H        H1Af$
  f$  H        D$  D$  fD$1Af t2fA t$  H        1AH        
H        1A1I        H        A@Lt+At$  H        1AH        
H        11H        At-D$H        H        H        HD1H        1H        D$`  1H        I        A   AH        I        LDH        AH        H        H        HDAH        HDAH        HDH        1AH        1Aփ|$ t   Ht$`1H        Ѓ|$    H        1H        18   H|$`H        D$fD$e1HC@Ht$`HPHuT$aH           u<H        1:   H        tH        H        HEH        11|$    H        8 IuH        1H        Ҿ   HH        A}  u>H        xH        H        HEH        1H        ҅@@|$ t   HH        H        Ѓ|$  t   HH        H        H        LH             Hh  []A\A]A^A_1PI        I        H        H        H        H        H        ZH        H8H        AWAVAUIATUSHHh  1LH        P   H|$I        A   AփADLE1HD$IcBP   LL$H        H)H1ALL$ADȃuIcAD IE9   EAÕIctCHD$P   L$H)H        H1A֋L$AǉȃuIcAD EGD<|1@.APy@_IcCHA9ĈL<~AAHc1McD|Ht$BD H        I        A׃?   HC   HI        HD$HAօupHs    HAօu]Hs0   HAօuJI)H        AL|$Ll$HD$L/N,8~Iw L   IAօtLIHD)Hh[]A\A]A^A_                   B                                      C                                       F                                       H                                       M                                      S                                      y                                       Y                                       i                                       I                                                                          q                                                                        : not supported Set %s to %d Disable %s %s
 %s En Dis en dis COUNT EXPIRED count not expired frozen NOT FROZEN **LOCKED** not locked ENABLED disabled idle active/idle unknown standby *BAD* OK one argument expected not an ATA device Automatic Acoustic Management Advanced Power Management Set standby timeout to %d ( off %02d:%02d:%02d invalid or vendor-specific ) %sable SMART operations Freeze security settings Cannot read ATA IDENTIFY data
 Model:    "%.40s"
 Firmware: "%.8s"
 Serial:   "%.20s"
 Automatic Acoustic Management:  %u (128=quiet, ..., 254=fast, recommended=%u)
 disabled
 not supported
 Advanced Power Management:  %u (1=low, ..., 254=high)
 SMART Feature Set:  %sabled
 ATA Security:  %s, %s, %s, %s
 Disk power mode is:  unknown
 %s (0x%02x)
 SMART status is:  Set disk to standby mode Set disk to sleep mode Get/set ATA disk parameters. [OPTIONS] DISK hdparm apm Set Advanced Power Management
(1=low, ..., 254=high, 255=off). power Display power mode. security-freeze Freeze ATA security settings until reset. health Display SMART health status. aam Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). standby-timeout Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set drive to standby mode. sleep Set drive to sleep mode. identify Print drive identity and settings. dumpid Show raw contents of ATA IDENTIFY sector. smart Disable/enable SMART (0/1). quiet Do not print messages. %08lx   %02x      %s
 *
        LICENSE=GPLv3+  extcmd hdparm                                                                                                                        l      M                                                                          	                      
                                       )                      8           #      @                      N                      e                      p                      |                                                                                                                                     grub_mod_init grub_mod_fini grub_strlen grub_disk_open hexdump grub_snprintf grub_unregister_extcmd grub_errno grub_memset grub_disk_close grub_printf grub_error grub_register_extcmd grub_memcmp grub_strtoul        /                     G                                                              	                                       /                   P            C       l                    v                               )                                                          -                                       C                           $                   2            )       >                    ]                                       %                    L            #                                                                  4                   E                    p                                                                                                          !                                      =                  A                                      P                  k                                                                                                3                   0                   m      )                    <            R      Z                   d                    r            )       ~                                                                    C                                             	                                        1                  W                  z                                                                  D                  N      
                                ]      8            y      I            D      U            N      e                  |            :                   7                                     N                                                                            L                   >       	            ^       	            e       	            p       $	                   6	            {       H	                   V	                  g	            N      	                    	                  	                    	                    	                   
                  !
                   -
                   9
                   G
                  b
                   t
                  
                    
            R      
                   
                   
                   
            )       
                                       
                  %            &      /                  ;                    J                    q                    {            =                  Z                                    i                                                                                                                            B                                    #                  -                    O                                                    p                   t      (                   8                   P                   `                   x                                                   +                   /                   t                                                                                  (                  @                  P                  h            0      x            7                  a                  g                                           .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                        @                                          @               @      x                          +                     @                                   &      @               %      @                          3      2               H                                  B                                                          H                                                         X                                                         ]                                                          f                                                                                (      @                          	                      h                                                          '      o                                                      boot/grub/x86_64-efi/cbfs.mod                                                                       0000600 0001750 0001750 00000012430 13417732100 0014543 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   HG(HGPH        HPС        ZUHIH1SPH_PHWXHHP0HHW`HP8HWH        HSH;HHHDH@0    HZ[]AWAVIAUATIUSHH(HSH;S0HSrA  1LD$   H;I        Aׅ      H        H|$H        ЅuD$l$M͉HC tA  LmHLBM   I}H        HII$t'HC1H;LHPAׅI<$tH        С        m? uH        I$    +B/ HS8HkHHC HHkHDH!HC1'HS8HkHHC HHkHDH!HCH([]A\A]A^A_1?ORBCuLW1112t1111u9DGW1D9s%O9s9sWtJu1EAVAUI        ATI        UHSH@ALD$Hp     HAՅ$  HAHcT$H	1LD$     HHAՅ   H|$ H        Ѕ   @   H        HH   HAԋL$(T$4H	H)H)HC(AԋT$,H	Ls(HʉH)HC0D$0ȉHC8AH	I9skLs0HAH	I9vHAH	HC0HS(1LD$   HHSAՅu,   H        H|$H        ЅuH+HH        	   1H        1H@[]A\A]A^ATIUHSHGH8H        Há        HtELH        HH        ЅAtHH        DH]PHC HE@1[]A\H           1H        ATH        IUHSHH?HL$HLD$        Ht2HLH        HH        ЉHH        ҉H[]A\PH        H	H	HHH        1ZÅHuH        1SH        HH        Ѕt[H           1H        H        C  HC     H	HC1[øSH        HЅtKCH        ȍ   HH        H       H)H        H        [H        H        H        H        H        QH        H8 tZH        H        XLARCHIVE not a cbfs filesystem rom flashing isn't implemented yet cbfsdisk not a cbfsdisk cbfs                                                                                                                                                                                   LICENSE=GPLv3+  archelp cbfs                                                                                                                                                 @                                                        	                                       0                      =                      T                      c                      n                      {                                                                                                                                                                                                                                                 grub_mod_init grub_mod_fini grub_disk_get_size grub_memmove grub_disk_dev_register grub_disk_read grub_errno grub_fs_list grub_zalloc grub_strcmp grub_malloc grub_archelp_open grub_error grub_list_remove grub_free grub_disk_dev_unregister grub_archelp_dir grub_list_push grub_memcmp                                               T                                                                                    5                    h                    s                                        V                    b         
                                                                                                     	                                       P                                             '                    =                    a                   r                                P                                                                                                        
                    !            B       1                    >            B       O            K       `                    l                                                  P                                                                                                                                                  "                    /                    @            P       J                                 Z                    |                          (             &       0             
       P             B       `                   h             .      p             	       x                                _                                                .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @       V                                   @               p            
                    &      2                     _                             :                                                          5      @               8      8      
                    @                                                         P                                                         U                                                          ^                                                                                               
                 	                      P
                                                         p      g                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/hello.mod                                                                      0000600 0001750 0001750 00000003500 13417732100 0014727 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    @          @     @   H        PH        H        HH        11Z1PE1I        1H        H        H        H        ZH        H8H        Hello World %s
 Say `Hello World'. hello   LICENSE=GPLv3+  extcmd hello                                                                                                   6       >            t                                                                                                                            4                      @                      U                       grub_mod_init grub_mod_fini grub_unregister_extcmd grub_printf grub_register_extcmd grub_gettext                                                                      &                    >                    J                     T             #       ^                     j                     v                               
            .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                             @                                           @                           	                    &      2                      )                             5                                                           ;                                                          K                                                         P                                                          Y                                                                                      P      
   
                 	                      h      b                                                          b                                                                                                                                                                                                                              boot/grub/x86_64-efi/cbls.mod                                                                       0000600 0001750 0001750 00000014120 13417732100 0014547 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   1PH        H        1ZUHATI        S7HW   w&H        HHtH        1AH        1Aԋ   H        $C#KH        SsPC!PCPCPC$PC"PC PCP1LKDCAH@   S	KHCH        HTHt1A]HsH        1AHs1H        ACfw+H        H4HtH        1H        H        1AHe1[A\]1PE1H        H        H        H        H        ZH        H8H                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             tag=%02x size=%02x %s tag=%02x size=%02x : %dx%dx%d pitch=%d lfb=0x%llx %d/%d/%d/%d %d/%d/%d/%d : vendor=`%s' part_number=`%s' : `%s' : id=%d  %s 
 List coreboot tables. lscoreboot memory map (`lsmmap' to list) mainboard version extra version build compile time compile by compile host compile domain compiler linker assembler serial console framebuffer GPIO VDAT timestamps (`coreboot_boottime' to list) CBMEM console (`cbmemc' to list) MRC cache VBNV CMOS option table CMOS option CMOS option enum CMOS option defaults CMOS checksum 8250 UART VGA BTEXT log buffer console SROM EHCI debug memory-mapped 8250 UART   LICENSE=GPLv3+  cbtable cbls                                                                                                                         ~      <                                                                          	                      
                                       8                      D                      \                       grub_mod_init grub_mod_fini grub_register_command_prio grub_printf grub_unregister_command grub_linuxbios_table_iterate                                                 %                     B                    U                     f                                                      )                    `                          $                   ;                  N                   Z                    f                                                                                                                                                                                                                                                               (                   0                   8                   @                   H                   P                   X             d      `             d      h                   p             d      x                                                                                                                                                                                                                  -                   6                   =                   G                   N                  V                  b      (            g      0            l      8                  @                  H                                                                                                      	                                    !                   %                  +                  >                  C                   N       .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                        @                                          @                                               +                            (                             &      @                                               3      2               H	      f                            B                                                          H                                                         X                                                         ]                                                          f                                                                                      h                          	                      8      y                                                    `      o                                                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/help.mod                                                                       0000600 0001750 0001750 00000007610 13417732100 0014562 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   AWAVAUAATUSHXHT$t
1E1!  H        H(E1H  E  H}0H        HuHH        1H        HIq  HHT$(Ht$ H        H        HH  Ld$ E1L;d$(rD11ILH|$ H        A   HS8DAE)I           HS8A9sHt$(HT$0LH        L)HЋT$0M$    	tBHC0HtHt$0H-Cx0t8¸    uH|$0H        A AxH޿    AHAtH        1H        LH        AH|$ Hm AA  H        1H        h  HD$HHD$H        L0MtIMuHA93  1AF  L|$H        LI~HLH        Ѕ   AF( t(LH        HIuH           EE|$tH        1H        AF(0uI~@H        iI~8H        I~0HD$H        MvIH        H        LD$HLLH        1I        AEHtH1IHHX1[]A\A]A^A_1PE1I        H        H        H        H        H        ZH        H8H        %s %s 
 

 Usage: %s %s %s
%s
 Show a help message. [PATTERN ...] help        LICENSE=GPLv3+  extcmd normal help                                                                                                           F                                                                                                                                       )                      6                      N                      j                      y                                                                                                                                                                                                    "                     ,                     A                     Q                      grub_mod_init grub_mod_fini grub_strlen grub_strncmp grub_utf8_to_ucs4_alloc grub_unicode_estimate_width grub_xasprintf grub_unicode_aglomerate_comb grub_command_list grub_arg_show_help grub_unregister_extcmd grub_printf grub_term_outputs grub_print_error grub_putcode grub_dyncmd_get_cmd grub_free grub_register_extcmd grub_print_ucs4 grub_gettext   &                     M                     `                     l                                                                                                         &                                                                                                                                          *                    e         
           ~                                                                                                                                                               -                   7                    Q                   ]                                                   4                                       B                                                                                        .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                             @                                          @                     x      	                    &      2               2      G                             5                     y                                     ;                                                         K                                                         P                                                          Y                                                                                            
   
                 	                      H      ^                                                          b                                                                                                                                                      boot/grub/x86_64-efi/cbmemc.mod                                                                     0000600 0001750 0001750 00000007400 13417732100 0015055 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   H        HtP;s@tP1?uHGH           H        HuH           H        HP0H        HD$HxH    H9HGH        HD$H        1H1H        RH        H        H8 tgH        H8 tH        H        #H        Hu"H        H        H        H        ЅtE1H        1H        H        H        H        XSH        H        H        [H        H8H        no CBMEM console found Show CBMEM console content. cbmemc                                                                                                                                                                                                                               P              LICENSE=GPLv3+  cbtable normal terminfo cbmemc                                                                                                                                                =                                                        	                                       2                      H                      T                      f                                                                                                                                                                     X       2                     O                     c                     u                                                                grub_mod_init grub_mod_fini grub_terminfo_gotoxy grub_terminfo_putchar grub_xnputs grub_terminfo_cls grub_terminfo_setcolorstate grub_terminfo_output_init grub_terminfo_setcursor grub_terminfo_getwh grub_term_outputs_disabled grub_register_command_prio grub_unregister_command grub_cbmemc_terminfo_output grub_linuxbios_table_iterate grub_terminfo_getxy grub_term_outputs grub_error grub_list_remove grub_list_push                     0                    @                    O                     ^                     s                                                                          #                                                                                                                                                                          (                    6                    I                   U            >       _            3       i                    u                                                                                                                                     3                            (                     8                     @                     H          
           P                     X                     `                                                                .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                          @                           
                    &      2                     :                             :                     @                                    5      @               P
            
                    @                     (                                    P                     8                                    U                      8                                    ^                      P                                                          X               
                 	                                                                               X      g                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/hexdump.mod                                                                    0000600 0001750 0001750 00000010570 13417732100 0015303 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   AVAUATUSH   Lot"H           1H          IH:H        1A}  ItI}11H        HA}    tI}11H        HH        I<$H        ЅuHHH           I<$?(   McJD78)     I<$H        HHItxIHI  I!DHHH        LL)I1Ht-H   A   ILFLLLH        ЅtLH        1   H        HItHh   HLH        H~9HAH9~EIuIHDHH        LEtL)uLH        x1H   []A\A]A^1PI        I        H        H        H        H        H        ZH        H8H        AWAVAUIATUSHHh  1LH        P   H|$I        A   AփADLE1HD$IcBP   LL$H        H)H1ALL$ADȃuIcAD IE9   EAÕIctCHD$P   L$H)H        H1A֋L$AǉȃuIcAD EGD<|1@.APy@_IcCHA9ĈL<~AAHc1McD|Ht$BD H        I        A׃?   HC   HI        HD$HAօupHs    HAօu]Hs0   HAօuJI)H        AL|$Ll$HD$L/N,8~Iw L   IAօtLIHD)Hh[]A\A]A^A_                       s                                      n                                                                      filename expected (mem) Show raw contents of a file or memory. [OPTIONS] FILE_OR_DEVICE hexdump skip Skip offset bytes from the beginning of file. length Read only LENGTH bytes. %08lx   %02x      %s
 *
      LICENSE=GPLv3+  extcmd hexdump                                                                                                                             M            e                                                              	                      
                                       )                      7                      F     ~      #      N                      \                      k                                                                                                                                                                                                                                                  grub_mod_init grub_mod_fini grub_strlen grub_strtoull grub_disk_open hexdump grub_snprintf grub_disk_read grub_unregister_extcmd grub_disk_close grub_printf grub_file_read grub_strcmp grub_file_close grub_file_open grub_error grub_register_extcmd grub_memcmp grub_strtoul                             *                     A                     a                                                                                                                             %                    _                    r                                                                                                                        '                   1            ?       ;                    E            X       O                    [                    g                    t                                                                              N                                                                              =                                 `                    e       (                    8                     .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                        @                                          @               
                                +                           x                              &      @               (      `                           3      2               h                                   B                     3                                     H                     8                                    X                     H                                    ]                      H                                    f                      O                                                          X                                	                                                                                     o                                                                                                                                                                      boot/grub/x86_64-efi/cbtable.mod                                                                    0000600 0001750 0001750 00000002670 13417732100 0015227 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @  
    PH        H        ЅZAVIAUIATUH        S   HI        ՅufHH  u   HAԅuJHH  u1FLHAՅu4EHŋSCHHH9s؃} uH}AԅtH]kHҸ   []A\A]A^LBIO  LICENSE=GPLv3+ cbtable                                                                                                                                                                   &                                     grub_linuxbios_table_iterate grub_memcmp                                                 5                     H                      .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .modname                                                                                              @                                           @               8      `                           &      2                                                  5                                                          ;                                                         K                     '                                     P                      '                                                          0             	                    	                            *                                                          Y                                                                                                      boot/grub/x86_64-efi/hfs.mod                                                                        0000600 0001750 0001750 00000024330 13417732100 0014410 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    %          @     @   HI        H9r Êt</LGu	t	:xLIDHLGDx tLH뱋GVNDG)ЅuB1I        A8AF9}"LcBDFTAGD)u
A)PH        HPH        H8H        1ZAU^   I        ATUH1SHxL'H_H|$A1   HAAD$      It$H|$HHFH        Њ$$u$C-%|D$C#1u4Ѓ
$C0-%|D$CHUHH|$HD$U Hx[]A\A]H
H9Hu
HrHB   AV1   AUIATUHSHH0L&D2H|$D$ D$ HD$    Ht$Dt$LH        ЅHE ȉCA}u8A|$ t0C   AE ȉCE9t$uHsHCH0[H]A\A]A^H01[]A\A]A^AUATIUHSHQz HruH} H        Љ0HM )u"QF)ufQfF)A   JHEɉA|$tE13C   uC   HS H        H9UHuHFUH{Z[]A\DA]AWI        AVEAUAATAԺ   UHS1H8H|$$ADED$ ȉD$tNH        D9 u?H        A9~,H        H|$$f	к   fD$"A111fT&D9~jH\$t;Et6DL$           Ht$$        H        A׋L$   EAA)	DDhHHtuA   LD$$   fHt$H	Ћ   fD$"H        H        8 u
   1H8[]A\A]A^A_AWAVMAUIATAUSHHL$LL$u	Hc   Hc   H   T$HFH        HHIǋT$   I   I   EHDHHȉD$Hc1LHIc   Ht$H1HHHHAE1҃H        ЉIc   1H1HHD$HH        փ8 tLH        С           1HcI   MHH        Ѕu1fAG
9~~D$HL$)HIGfLHpHt$ 8H|$(8DGALHLHt$0fHt$  HHH)HT$HD$8AHL$HvAʅt|$ H        L1HH[]A\A]A^A_UHSH8D$    D$    L$Ht$LD$ LL$(1D$LL$I        HH        ЅuT$t|$ tD$1H8[]AUH        ATUH   SH   HH  1I      HI        AԅI          f;BDuS tH        f{|H+u"H        	   1H        @  f   sʉ   	H   LD$8x   Hf1HcAԅ   D$H   LD$8sH   x   	   D$Xf   f   1HcAԅ   D$HHs%H|$D$   ȉ   D$X   C$D$H        1ɋ   A   LD$Ht$HH        ЅuH        	   A}  uD$ȉ   H5HH        A} uH        	   1H        1Hĸ   []A\A]SH        HH?HtPʁꀰ%|    HH        С        [ATH        IUSH?HHtI@$   HHFH        H|m HHI$t#HHUHs%1H        I$    HH        []        A\UH        HSHQH8H        H;H        HHt*HptHt!HH        1H        HE HE     H        H8H        HH        С        Z[]AWAVAUIATUSH   >/   H$HL$D$Zt'H   H        1H        1F  HH        HI  IA?/uIHD$ZHD$LH        H  |$Zt"H           1H          /   LH        HItA>/u
IAF L\$6H\$;E u}        H;\$s<:u/Hd  x
HňV  %   E1I        =   AE1AMcDD$,LL\$ HLLL$H        ЅL\$ DD$,   LL$AIA   uXHD$;H)yLH           1B1Ɉ\$:A   AV   LD$ZHt$5LH        Ѕu LH           H        MH        8 u>\$`MtMDH<$HtV   Ht$ZH        HD$HtLH        С        AȀLDHhHĸ   []A\A]A^A_UHH        SHxH8H        Ht$HEH8H        1HHHT$Ht$H        ЅtHH        3|$tPHH        H           1H        H        H8H        С        IHt$dH      H        ЋD$4ȉHM@   D$.ȉ   HE    1H]PHx[]UH        SHH   H8H        Ht$HT$HL$ H;H        HH   HHL$HT$JHt$H        Ѕ   |$Jt H           H           D$   D$0    D$4    ȉD$(H        HD$8HD$HD$@11D$,LL$(I        HH        Յu/T$,t&|$0 tLL$(I           T$41HHH        H        H8H        С        HĨ   []AWAVAUATIUSH8HGH_PHT$Lw`LXA   D$(H1H$H@HcH1HD$HHD$DAH   HD$ L;l$  D   Ht$ A      DHH        IcD\$,ЉH        D\$,8 t	H   L;l$uHc   H$1HHHED$(1E1   I9uD$(1AHcAH)Ht^H   IcDT$,MHLx0H   Lp8H        H   H   DT$,H@0    H        8 N   ID)HIHD$H8[]A\A]A^A_SHH        H        H        HH        [H        H                     	
 !"'()*+./0123456789:;<=>?@ABCDEFGQRTUZ[\]bcdefhqrstvw|}~MGQRTUZ[\]bcdefhqrstvw|}~IKSVgixNHOIJKSVWXY^_`agmnoijyz{xuLkPpLk%& HJjll#$,-Ä  Å  Ç  É  Ñ  Ö  Ü  á  à  â  ä  ã  å  ç  é  è  ê  ë  í  ì  î  ï  ñ  ó  ò  ô  ö  õ  ú  ù  û  ü  † °  ¢  £  §  • ¶  ß  ®  ©  ™ ´  ¨  ≠ Æ  Ø  ∞ ±  ≤ ≥ ¥  µ  ∂ ∑ ∏ π  ∫ ª  º  Ω  æ  ø  ¿  ¡  ¬  √ ƒ  ≈ ∆ «  »  …    À  Ã  Õ  Œ  œ  – — “ ” ‘ ’ ÷  ◊ ÿ  Ÿ  ⁄ € ‹ › ﬁ ﬂ ‡ ·  ‚ „ ‰ Â  Ê  Á  Ë  È  Í  Î  Ï  Ì  Ó  Ô   Ò  Ú  Û  Ù  ı  ˆ  ˜  ¯  ˘  ˙  ˚  ¸  ˝  ˛  ˇ  not an HFS filesystem embedded HFS+ filesystem cannot find the HFS root directory not a HFS filesystem %016llx invalid file name `%s' not a directory file `%s' not found not a regular file hfs                                                                                                LICENSE=GPLv3+  hfs                                                                                                                                                      3                                                    	                                       )                      5                      D                      Q                      ]                      l                      x                                                                                                                                                                                                                                                   grub_mod_init grub_mod_fini grub_strlen grub_strcpy grub_xasprintf grub_memmove grub_strdup grub_disk_read grub_dl_ref grub_errno grub_memset grub_fs_list grub_strchr grub_malloc grub_error grub_list_remove grub_free grub_dl_unref grub_list_push grub_memcmp                          y                                                                                                        D                    '            \                   \       %                    O                                                                                                 '                   1                                                                                          K                                                                                                                                              L                                                                                                                                                             	            /       3	                    F	            R       W	                    t	            H      	                    	                    	            H      	                    
                    ,
                    9
                    G
                   \
                    k
            H      
            g       
                    
                   
                    
                    
                                o       '                    =                    p         
                                                                      *                   _                                                                                                                    <                    W                    b                                                                       H                  
                          	                                       &                    2                   ?                    J                    g                                                                       H                  
      "                   1                    b                                                                                                                                                                    K                          I                    p                                                                                                                                                                                                      (                   0                    8             	      @             D
      H             q	       .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .modname                                                                                         @                                          @                      P
      
                    &                     @                                    .      2               @                                   B                           P                              =      @               p$             
                    H                     `                                    X                     p                                     ]                      p                                                          x               
                 	                                                                               0%      f                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/cbtime.mod                                                                     0000600 0001750 0001750 00000007770 13417732100 0015104 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    x          @     @   HH        H        D$    Ht$Ѓ|$ uH        H        1H1?   U1HAVAUI        ATS   1LwA;^   AH        8MkI        AMM`DLIH H LH)ЉH IEHH AcwDH        LMMDտ  R1ARI        ÉAЉ1H        1AY^L?He   [A\A]A^]1PE1H        H        H        H        H        ZH        H8H                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       No boot time statistics is available
  %3d.%03ds %2d.%03ds %02d %s
 Show coreboot boot time statistics. coreboot_boottime romstage before RAM init after RAM init end of romstage start of RAM copy end of RAM copy start of ramstage device enumerate device configure device enable device initialize device done CBMEM POST writing tables loading payload wake jump selfboot jump   LICENSE=GPLv3+  cbtable cbtime                                                                                                                       L      <                                                                          	                      
                                       (                      6                      Q                      ]                      u                       grub_mod_init grub_mod_fini grub_puts_ grub_tsc_rate grub_register_command_prio grub_printf grub_unregister_command grub_linuxbios_table_iterate                    K                            0                     :                     b             &                                         &                            
                    !            '       T            D       ^                    h            h       r                    ~                                                                         z                                                                    @                    H                    P                                        @                                                       0            (      X            4                  ?                  N                  ^                  h       .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                        @                                          @                                               +                                                         &      @               p
                                3      2                     v                            B                                                          H                                                         X                                                         ]                                                          f                                                                                                                	                      @                                                                o                                      boot/grub/x86_64-efi/hfsplus.mod                                                                    0000600 0001750 0001750 00000024560 13417732100 0015321 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    0&          @     @   H1HH   fDLNAtfD $A  wI   H
9 $  @p?΀@p΃?ɀ?H΀@p	 ?IH1|wD B  wA?HAȀHD@O (  v? $  w ?H+A??AȀɀD@@0HHLËW   ;;FUSH        PHoPH  H  HH        H8H        Z[1]AUH        IATIU1SHӺ   HHЊ$@   H߃	Ћ   HL$
	T$$H        IT$HLA$H[]A\A]HOHcHHH)fHËW   ;w rN8OwrW;V;VFÃUH   SHQW;wBr=fWHFHHvH9HGH        HЅufE+CZ[]AWAVAUATUHSHQGHNf;   t
   l  ʃLdIfA$f tf t8f       fAD$*%   =      =               H        HxHU   H        Hǀ       Hǀ       HAT$ʉ   HHMUE   A   fCI        H<   AHIt2fS1:   9~5fLCf/DfLCHf|C u1<  A   A   HsLH          fC19~f|C:ufDC/ fDCHHE   HD0   DDAHHHHEIt$hH{@   I        H ǃ       Hǃ       Hǃ       HAI$   H{H@   AAD$HDL-%|   ID$XHH   I$   HH   AD$ȉ   HMULE H        ЋE Z[]A\A]A^A_ULHI        HWI   A(  E  A	AR   ASAQMIHHHH        H0AUH        ATUH8  SHH  HH  I        1H   LD$@      HI        AA<$ C  f|$@BDHǃ(      t l$@ffXH   f+H   f$   H+t"H        	   1H          f$   D$TLD$@T$\HȉH	H   H1H(  HpAA<$ a  D$htPu=  h   Ht$@HI        AՋC(ǃ         ȋ  9s
  H   H(  @   H   ǃ     ǃ      AH  Hp  H  @   H  ǃh     HH  AH`  H   H   @   ǃp      H  ǃ     ǃ      HHX  AH   11I        H   LL$A*      HH  AHM+  D$ȉ  D$(H  1fXHu
1|$;L  110  LL$A*      LH        AH   D$111LL$A   Lȉ  H   D$11H  LL$A*      ȉ  D$(H  H'H        ǃ      Hǃ           D$ȉ  D$(H  H  ǃ0     H5A<$uH        	   1H        HH        1HH  []A\A]UHH        SQHH8H        HH        HHu	E     @-%|E H        H8H        HH        С        Z[]UHH        SQHH8H        HH        HHt%HphH        1H        HHE HE     H        H8H        HH        С        Z[]AVH        IAUATI        UHSHH8H        HD$    HEH8H        HH   L  A   I        H        HT$LLH        H        8 uQH        Hu7HD$H`  2   H   HHU@HAH]PHE    1@H|$ЅtH|$L9tAHAH        H8H        С        H[]A\A]A^SH        HLWPHIIHI  L_I`  tA    tHHL[[HP`HpXLH        UHSQH   HxH        HHtBI111L   HH        H;   tHH        	 H1Z[]AWAVAUIATUHSHHHHt$ HT$(LD$0HuH      H        Iǡ        M  ] HD$    HCHD$HEHD$8H9\$uLH        H        oHL$LEMH|$8HHHHD$HHDHD$1IHD$1H        H~D$    E1cLH        H        HH	   1[]A\A]A^A_H        DLHH        AItA t5IfAG
I9r4HHt$ HD$(ЅuHD$0M} L VHt$ LHD$(Ѕ~$|$ IE     LH        fAD$   A\ˉu1HH[]A\A]A^A_AVHWHHGAUI        ATIUHSHH0    HD$    HDH1ɋt
H<
ΉH9sD7AEIHH)H@uHIH|$AIHD$          u"H           1H           D$DLD$)胻    HL$D$H        Ht$؈D$ HH  H        Ѕu
Ht$Hu)   LH           1I        A#HT$H  H        HPH|$H        H0L[]A\A]A^AUH        IATUSH8H?H    HH   H  D$   HD$     HD$(    LD$HL$H        Ht$H        Ѕu
HD$HuHH           HcT$HHH)HH  fjfH1fDefAA9~fTEfTEHfuZ<   H        HcHIE u        2HuHAH        H          H|$H1H8[]A\A]AWH        AVAUATIUHSHHXH|$8D$0       Ht$@HT$HHuA   o  Hǹ2   HHL   H        ՅAuʋ   HD$     LD$HD$(    HL$H        Ht$D$HH  H        Ѕ   Hl$H   L;Ld$1IM  fE
I9s2DHLH        Ht$0HH        Ѕu}IM tqHt&L9uH        	   1H        FHSM  I   IHډLD11IHH        H~E1HH|$H        Dd$0HXD[]A\A]A^A_AUH        IATUH        SHH(H8H        HT$HL$HD$    H;H        HHtsL  A   I        H        HT$LLH        H        8 u HT$H        H|$H        H|$L9tHH        H8H        С        H([]A\A]SHH        H        H        HH        [H        H        .. not a HFS+ filesystem %016llx HFS+ btree loop couldn't read i-node extra extents found in an extend overflow file no block found for the file id 0x%x and the block offset 0x%x . hfsplus                                                                                          LICENSE=GPLv3+  fshelp hfsplus                                                                                                                       A      3            t                                                              	                                  7                      M                      \                      i                                                                                                                F      [                                                                                               	                                          $                     2                  O                     ^                      grub_mod_init grub_mod_fini grub_hfsplus_btree_search grub_fshelp_find_file grub_xasprintf grub_memmove grub_hfsplus_read_compressed grub_disk_read grub_dl_ref grub_errno grub_memset grub_hfsplus_read_file grub_fshelp_read_file grub_fs_list grub_malloc grub_error grub_list_remove grub_free grub_dl_unref grub_hfsplus_open_compressed grub_list_push grub_memcmp       %                    K                    X                    l                                        y                    9                    W                                                                                -                    O                                                                                                  M                   ^                                                            x                                        W	                   h	                    w	                    	                    	                    	                  	                    	                    	                    	
                    
                    -
                    <
                  T
                   `
                    }
                    
                    
                    
                    
                    
                    
                    
                              G      &            o      ;                    G                    V                                                                                                    =                    Z                                                                                                    7                    C            !                                                           1                                             c                                        :            F       K                    z                           
                       u                                                                 %                  }                           
                                                   (                    ?                    I                    s                                                   B      *         
           x                                                !                                                                    C                    S                    h                                                  G                  o                                                          h                  o                          #                    .                    G                    Q                    [                    j                    v                                                                         ?                    
      (                   0             !      8             !      @             
      H             	       .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                          @               @      
      
                    &      2                                                  :                           P                              5      @               %             
                    @                                                         P                                                         U                                                          ^                                                                                                
                 	                            j                                                   %      g                                                                                                                                                                              boot/grub/x86_64-efi/chain.mod                                                                      0000600 0001750 0001750 00000047020 13417732100 0014713 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    J          @     @   ATH        I        UH        SH@`H        Hx0H        HH        H0H        H;AH} AH        HE     H    H     H        H8H        []1A\ATH        I        UH        SHX`H        H0H        H   H{0H        H        HH        H0H        H;AH} AH        HE     H    H     H        H8H        []1A\USHH        HD$    HL$HHh`H        H0H        H   H  H|$ \  H$H<   H        HHU  H<$HD$HE1HH   f0ELHte $  wIA   HA
B $  J?ɀJ?Ȁ?BɀJ	?IHE1vw@2>  w?H΀J@rK (=  v; $=  w?H)??΀ɀ@rJHAL H޿   1H        HH        H           1H        Ht$HtH}HH        H        С        H[]UI1HPH        H@`H   H        PH        LH        HH        HH        ZHYt=H	      H9H        uH           H           17H        H8H        Hu H           H        ҃9H        HH        HPHHtHP8H        HP01ATLWI1UM11SGH9uM)LA HJT?  MtH^Dt?EAA   AD?D	uuk      ExAVD<uD      D<uD      DHރ<uhD   wun.Iu=  vJ=  v>  II
ff fAIff fAIHH?   fAII1   HHfA:/ufA\ II9rЍD fDW  fG[]A\UHAWAVAUATSHxu"H           1H          H        IH8L"H        H        H     H        H     H        H     H        H     H        Lx`   H        E1H        H     H        K|IHpHxHxAv9HDHpH        |H< HH        H        HH          1ILf9Hp@tHHf~Hf   J9}Hf   LH        HH  LH        IHH        MItLH        Mz  I>H        HuoIFHtrH8HtjLmH        LЅ-  H    LHH        HuH}H   HEHxH        H        H        H8HuH           \  H        HHxtԾ)   LH        LhH/   H        MDL1HHpHxu)H           H        4  ytHqH<uH`HhLH        HhH|BH        HH           HHhHxH        H`H+xI        H        HpLLhHL)HHxAHxHpH        DiHHHxILHxLhAAEIH        AE AEfAE 1HH          HC@I        HIE uLH             H  1I(I           HHH        H        HtSH          D H        H        H        1I        AH              H        HHH        HH        HxHHpI;E HptH        8      H   9   LiHxH        ЅuHx1qH        %HHk|  t9r9u"H           1H        I  HkIAEAU9wH        4H;7v%LH           1H           HH        HxHH        0H        H8H        AAH        1H          H        I        AA I        ~HA1H        H        1uBHxH        HA1H        H        H        1   HALH        LH        HH        H        H        H8H        H0HtH        I0HH        H        H8HtH        H8H        С        He[A\A]A^A_]UH        1HAWHpAVAUATSH        H  L H        Hǅ    HH        H@`ǅpP]`fǅtFfǅv CƅxƅyHƅz=H        ƅ{ƅ|ƅ}ƅ~ƅ#Hu,H        H           H        1   H DHPHu,H        H          H        Ӹ   TH      H9H        t%H      H        H9tH        
H           1҃u,H        H        
  H        1	  u*H        H          H        =  1H        H          H        DDL(   EH        H        ,  H        ELD1G,HDH   Hx@H        HItH             HMIJD8I!tH8HLH        I        H0H;(C  H        H        H        MD MGLH        1H        H        H8   HPH        H        M  H        D DH1AHPH(
I|5 H9ƾU  IGJHIH        QIL H9H        LFH        1MLHHHǅ    ǅ    ǅ    B9  KH(1Mt5 H9LGKM| H9LG҈(pt	HH	uAW1H        ƅx LpDAVH        f  H        AXM9ZsGk  MMH        H        H        1I        AH        Y  SH0H9w8SH9v.H        H        v  H        1AԺ   H        HH        Ѕ   H tH             {   {   M  M  L9  L9u1H        H          H        1AHuX  H J  H        H          H        1AԺ(   HHH        HL) HH1DC$H        H          H        A1DCH        H          H        A1DCH        H          H        AԋC$   t-H        H          H        1A  MtMuA  H        H        H        1I        AH          t0{ tVH        H          H        1A,SH8H9sH        I  SH9rDCEtGH          H        1MH        AԋsSLHH        ЋCDCD9sJA)  MH        H        1H        Aԋ{S1H        )LLpH        H          H        1AH(cH`w7H        H          H        1I        A  HPx   H   HhL(fx  Lh0HH1I        VHL9H        HGVs  IL4L9H        H        LGMAHMu	t	?  t"H           1H        M  LH+ 	  1I        AHN L9   KtHP;HvH           LCHL9w	H;sH        L9v"H           1H          Lu
fDII9sUfAHf%  Hf
v&H           1I        AT  DC$f00H0H H        tXt"H           1H          H        H8H        HHu"H           1H        g  I        `   HHpAH(Lk@MHCHH        HC8H        C0H        HtutPH1H        HHHC H           HSMH        1I        H          H        AH        HH        H0H        H8H        H        IH        1  H        AHpHߺ`   AHHHxHH        Y  H          D H        1H        H        I        AHHtHHxHH        H        H8H           1H        H          H        ADKDC1H        H          H        AMM1H        H          H        ALLH        H          H        1AVDh4H        (H        С        He[A\A]A^A_]SHE1H        1H        H        H        H        HH        [H        H8H         .reloc                                                                                                  unknown error out of resources cannot load image no loaded image available filename expected not a valid root device invalid EFI file path premature end of file %s Failed to allocate %u pages
 chain loader/efi/chainloader.c out of memory MACHO binaries are forbidden with Secure Boot no compatible arch found linuxefi_secure_validate: %d
 no shim lock protocol context success
 context error unsupported context error invalid parameter context error code Failed to read header
 Secure Boot is not enabled
 Header read without error
 image size is %08lx, datasize is %08x
 entry_point: %p
 invalid entry point reloc_dir: %p reloc_size: 0x%08x
 reloc_base: %p reloc_base_end: %p
 Section %d "%s" at %p..%p
  base is %p but end is %p... bad.
 Image has invalid negative size  section contains entry point
 Image has multiple relocation sections  section is relocation section
  section is (overlong) relocation section
  Section characteristics are %08x
  Section virtual size: %08x
  Section raw_data size: %08x
  Discarding section
  section is invalid
 Invalid section size  UNINITIALIZED_DATA section has data?
 Section %d is inside image headers  copying 0x%08x bytes to %p
  padding with 0x%08x bytes at %p
  finished section %s
 image has no relocation entry
 relocate_coff(): reloc_base %p reloc_base_end %p
 Reloc table overflows binary Reloc %d block size %d is invalid
 Reloc entry %d overflows binary Reloc %d Invalid fixupbase Reloc %d unknown relocation type %d entry point is not within sections %d sections contain entry point no matching file path found booting via entry point
 entry_point returned %ld
 error_exit: grub_errno: %d
  section is not reloc section?
  rds: 0x%08x, vs: %08x
  base: %p end: %p
  reloc_base: %p reloc_base_end: %p
 relocation failed Load another boot loader. chainloader   LICENSE=GPLv3+  net linuxefi efinet boot chain                                                                                                                       b      L                                                                          	                      
                                       )                      ?                      J                      c                      p                      }                                                                                                                                                          	                                                                6                     Q                     f                     ~                                                                                                                                                                                                                                        ;                     F                     P                     ^                     w                                                                                                          grub_mod_init grub_mod_fini grub_strlen grub_efi_system_table efi_wrap_4 grub_efi_locate_protocol grub_strrchr grub_memmove grub_device_open grub_file_get_device_name efi_wrap_1 grub_efinet_get_device_handle grub_loader_unset grub_dl_ref grub_efi_get_loaded_image grub_errno grub_memset grub_efi_image_handle grub_register_command_prio grub_efi_secure_boot grub_unregister_command grub_efidisk_get_device_handle grub_file_read grub_strchr grub_malloc grub_file_close grub_file_open grub_real_dprintf efi_wrap_3 grub_device_close efi_wrap_6 grub_linuxefi_secure_validate grub_error grub_free grub_dl_unref grub_net_resolve_address grub_net_route_address grub_efi_get_device_path grub_memcmp grub_loader_set efi_wrap_2                                  *                                (             0       6             @       C             H       P          1           i                                 P                 +                                          *                                             (                                         0                    @       
            H                1           0                   P            P       ]         +           v                                (                %                    !           	         )                    *           &                    7         )           Q                    ]                    h                                                    (                   8                   0                                    '                    )                                                             (       '                    8            1       G         )           X                   e                                       B            K       S         )           d            P       w                                H                   (                   0                                                                                                        7                   J                   T         !           c                             #                                                            *                               /         ,           U         -                                                                                 ]                .                                                    	            u       *	         )           g	                    	         !           	            0       	                    	                  	            0       
                    R
            0       t
            0       
            8       
                   
            H       
            @       
                    
            @                                                                "         $           /                   C            H       S            8       `                                                                                                          )           A            8       V                   g         )           {            8                   8                   H                (                       5                                                     $                    "                                                 #            w      7                   A            n      K         0           g         &           v         &                    "                       0                *                       H                   @                1                                           P                +                                           8       >         $           R            H       n                                                    S                                            -            i      7                   F                   f         )           |            z                                                                                                                                                                                               '                   I                  S                   b                            %                                                           $                       <                         "                   8                   F                   P            M      k            a      u                                                                                                                                                                                                                       $                              0                  :                   I                   ]                    j         /                       #                  J                                                        j      '                   6                   T                                                                                                                                                                                                                                 %                   H                  R                   \                   h         $           u                              2                                                        Y                                                        |      (                    N                   X                   d                  y                                                                                                                                             $           V         $           l                                                                    "               )                              /            ?      U            b      h                  y         )                                      )                                               ,         )           =                    J                    ^            1       o         )                                                                                  0                          	                  "                   .         $           8                   G                   T                    a                    n                   {         1                       9                                                                                                S                                                     $           =                    I            H       V            w      i            o      s                                                                                                                                                                                                              1                  @                    K                    k                  w            )                  
                                                          P                                                                                                         (                   0                   8                   @                   H                   P                   X                   `                    .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                        @                                          @               8,                                +                           h                              &      @               I                                3      2               p                                  B                     $                                     H                     $                                    X                     $      X                              ]                      $                                    f                      $                                                          $                                	                      h)                                                          J      o                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/gcry_cast5.mod                                                                 0000600 0001750 0001750 00000034750 13417732100 0015702 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    h6          @     @   AWH        I        AVAUATUSPDWH$DELCI        3G33DA3H        3DWAALD3IG3DF3E3D3DVD_
ELCE3_C3AAB3EA3B3Aډ^DAEGDWGD3WF3D3E3E1DVFG3L<$D3E3E1E^D^AALAAFE3AE3EF3E3EWD^DADEFE3G3D^
D3F3EWD^EAAEFE3D3E3F3EWDVEALAAB3D3^AB3EAEC33DEDLD3E3F3E1D3DW^ALA3^A3DAEG33A3B3_DDE3GD3VF3D3E3E3DDWAED3F3E_D_DADEFE3G3D3E3EWD__EAAFE3E/D3E3F3EWD__DDFE3AAD3EG3D3EWDWEALAAB3D_3B3EAEC33DWELD3E3D3E1D3DV_
ELA3_C3EAAEB3A3B3^DWDAAGD3WF3AAF3E3AE3E3E3DDVAED3F3E_ D^DADEFE3E3G3D3EW$D^^EAAFE3EE3F3D3EW(^D^ELFE3@E3D3D3EW,DVEALAAB3D3^AB3EAEC33DAADLD3G3F3E3D3DWD^ELCE3^C3AAB3EA3B3Aډ_AEGDGD3VD3B4C34D334E3A34E1D1DWAw0DW_DDߋ4C34EC34AA34EB34Aw4DWEAߋ4C34AD_EB34C3434Aw8_?D@4C34A343434Aw<Z[]A\A]A^A_UI        I        SDBZOOo<AA	BA	BA	B	B	B	ONEE3HH        @D+H        Do8E1D)AAEGEH@D3OMD+A1ڋ_4D1D3ϋDAACA+_01OLAۉAEGE3D+OKD_,E1D)AډAEGED3OJD+_(A1D1D3ϋDAACA+_$1OIAۉAEGE3D+OHD_ E1D)AډAEGED3OGD+_A1D1D3ϋDAACA+_1OFAۉAEGE3D+OED_E1D)AډAEGED3ODD+_A1D1D3ϋDAACA+_1OCAۉAEGE3D+OBD_E1D)AډAEGED3OAD+_A1D1ˉD3AA+A1O@DÉىAA3+ۿ4   D1щȈND^FFDFDFDFH        []UI        I        SBDRO@/A	B	B	BA	BA	BA	DOAEE3HH        @D+H        DA1ۋ_D1D3ϋDAACA+_1OB)AډAEGED3OCD+_E1DAۉAEGE3D+ODD_A1D1D3ϋDAACA+_1OE)AډAEGED3OFD+_E1DAۉAEGE3D+OGD_A1D1D3ϋDAACA+_ 1OH)AډAEGED3OID+_$E1DAۉAEGE3D+OJD_(A1D1D3ϋDAACA+_,1OK)AډAEGED3OLD+_0E1DAۉAEGE3D+OMD_4A1D1D3ϋDAACA+_81ON)AډAEGED3OOD+_<E1DÉىAA3+ۿ4   1ȈNDVFFDFDFDFH        []UH        SHHx8 u    H        H     H           H8 *  @  VH|$H        	V	V	VD$F	V	V	V	D$F	V	V
	VD$F	V	VHt$ 	HT$0D$1T0HH@uHT$0Ht$ H|$1L0L$T$T@HHu1H           1H|$Ӻ   1H|$ Ӻ@   1H|$0H           Hx[]H        H        H        H           0ݻ맕d5w $,ϩ/
tцB*v:-7ޚ,
)p@	:$7ѴyN]h1HZ޻Bf1畏?r3uQB}\cmd!@
WS1zݨ]3CoFq"8ԚέiGb[UgfNG[oLĎnrWxzdD]Ջ` l_9 ]c2֋~pIPӻߘ)*mS~H~X.t;/RG'~[!<8zvOB9`55'{ɸ6g	{pqT3^-ZId,=4pBwbO&Ҹ$d%FN`7>͕xE_{۫v"{.1ן%$r_m
L=mPO%os#(ĴyI%4aĘnzn|l6AT޾'VAJ<mgB`u{ $;g9?T0q;Bd2̤E}JpB
}z[WZ?ՌM (ԤΤ0y43S;w7x泀hN~Ţ|9O*C}/6"+7$Wx4oagH^RA^e$.@{脠X[ݔVH۲8rWs1d[O~/<PodJ#uwz!![zM:&)Q|ceY{nr 0@wm aJF[`d힨"Π6砹dU	27-WQ+	liEzH:OvL+wVg58Y9B{6=	a>J{`,8I%vK$%GvXY f
0NndQ&#Phꃢ@g+3-fVo*ɛ`( ')dM P˲,\26K_A!PNhذy\CPIMAC8<?fϾ `&euz$dHfÆ`(m5w鲳5*kiHuM:{NgC_7IfB3ATЈl:)(G7%G+jz\7DbB
ngtr9ѱE7XXVþ0n$!)E1^ŎF8JXFNPF_C)x;$mN,dJTO 팦xoɚnn<VU;6]򡳅<a3bt(L<tmlŪy<QZ&)+/8OxW2{>wn\e0Rԋ@+>`xT7}02m-yyS"wuXȃoxkcZ\3 ]ùzv٣Byqj3ƚ`'PC=+mvN%ύHf6AN(
aϩI=߹_d:	}+p?PO+Zbbyj.H@,Z@"ғ-ES4n)olIIBr~V>olbfLTq*+9)XLVRf.S9v.i硦>iFt+LVvuOx39]O#2]2=&K/~~<O^?vf)o=E4ӷ+4grN=U"g`k8=ü0}8QcÐӝXyTGָaYwSW-XVcNx.F~eyUڑ0@5㶼P?!@=LXI6QpӱڍyKoqKl,gHL|3ەCh\SU2`	ߝWc9^28aI37~^b<#NygCHKJf-ۄoH	Ja )Yfc(`<x.2r ~AkӾt<-7HDL@Եm9ISgN=\Adjc,}sobۚ5L\SfL(#S4!:;KC9n͐m"@	~^|["/iTho):SU6%b."Ho%e۽Soxgc5+4tI}ș䍠uy&ZO(34xmE_%";ɾV-bO^W
"nҕ[N$]B'n{ܨEs/##5&攰33~t+7s%iHةb:8⇧vSH6tc ivEP*Y#56nLΤ}-l]ū/!	߉x_3ODFu+չHAܛ	Ȇ}s3 ABQ	jr v (g2u[[ SX
"rJ<f1Ɉb`zGRȶ<vi?RNM1dp8YTf	!0Qh[l/>0qt&@3/C~A^l(	ؒ0~ofos*`ژ46K-%#=%IH 6Jo 8C@TzWOpA:ZTU|5YŗZ:G:%Sj~=eI&TwQ[P]vlDȨ!帊iX`[ŗY)L;]J5ULkD$5鰽bעT/I18T(q)9H[/u~tn,fy3jXDD1  Zs"*ˁc8:$zi HIĀ@8HުL
H_%A@N$A
UeQr%
9jyMc@hV틕Z	Vqק)N-fc qw*75Wa"ɠBր[t!h!<S(= \8N$O/viOǐtU¢'-cBj ef	UU)su2hUGR<D6&t:+سIt~-dڱIh&B¥7gcPfG6ʎn7z}c0މA)f&dVTXTH˺UI0е[Z.ׇnjf:"+G>hl iwW~@PճMװx
QV$AVʔUWnྵa$
XK'aU{whkldMDfd~i/IO70j5,s@IvM;B(HDLns)	_ɋ}oaOw.+rץ<}+FYYEEهTNoHm|	ǥcs_DVj͈prͳ]ny` E`1©\1BN"r\,rN@%/N2g@#x\n܃"ukMxnXO	DH?{vw#Vu*F_(	+8=6JRft;QZylu eX&hJpFS(l\v0k)h76*g$ k%ֿh,DUueI40"	WIbuU~bڨv^FESGm {s{OJWdCQz(~c5_	 yCdcdJ$_(͸O@ C "0O7 -{$MgQLq_-_d! S^>'_aB%rqK=;&o ~~TLmDl߫I&Ǡ36~?Pa w8Pr.PwWFgO T3ɏ1 i5M\=fȦ[]oڑo/"F}F9mOCCN!и ?X(>nH&p׋wt|%
-	y#;(8itb߷@!{7 Ȋ@	YVvO@/{U MVi35'#WȯVeka^u˅nwU2?-ɿ[%;з$;mc fÀ(82
Tɪס2Zb,gTzuw11&o6FHjyZVLj~CRv/t,t* M|k	.TA5B=!&|,aRe1i% &!\1cr
^Iyp1d>>̶Ոî0rlqn/kءDVÈ9/ű1(x⤣2}o~X $Ū{ s0a !-!)۳*)e\,0?Б\,ԩT
_w:^VxV޾\!uQųåҶw#)Ei/z毲p[vF98/gs D)k)/Ifingӛ/~p%Q^$Slj>!DYܷ)eyCy9A+MWN)zkS< ~U3rŅ?~
@]%=`GK6DήPQH<p}}d^(O= &g.yr?U+HԼ?^![U@WNFRWs3NɷdW1O	g_?@k{C=K۵cUȗn-J(JqoCCl<	_P/~׿PZG.Q>pX.0_|r
*,]I鎸P'WIoyR}}Yr@EEt]>uOiVA#.'`vteyvvwHNma}/4H<0(OwVܒ M"7)}V'|@|硴f^aÝ <є`AFv\; x,WGl"}NC~8<=Q8d{h'فI]j~vh]9K9;#Im<Eub'z\aBΒ~Brrp}ȡ[(Ob<51)BSjO[}m(Ki\j#MŌ?,-ҖXRg[HJI\EkӉ7`: SRqDIK
@sg4|~q6UO/Т`?mPьGn U?墼38Wg} =3{r3O̫]ňv { {u WBdBc+ri/n+_mazgaq%9̸L!gуb>ܷν8\
=Dmn`I:T`H'W+8$ ږ%Eh;}E`P/(b4 ٠m+1+d Z0RXBA\1>26F3S75 [~iC?9zaz UQry吝5rNcZպ60ę_}֡{/6Y	 DYD̃Aѱ*	;{B[A%zzӤ0XޘN?wiy{$[ Ĭ%5P_aT1bcKU!h]Yfsc=4·~!+g\ab906;Wd/`:5F-'zy㠌l0^7%oo;j tE'4:NiOM> dY58EfCr3c%N?
(Υ'R¦սTUdpfMw&ۄgC!`X0TroSUGڿ]bVhkʃ;n-Ӧ\=	wL3{9+^S_aodC x^c"&gI{ڷ"%-U^7rRyLH[k0cq/޹SE!5(T<)c)A|-nRPf4,0P1`sY&D\dwR3A+ٺ|o!PaH?ek«dv&4{^% ;MM1$~I,;jx`]sVz\/1Co0TyXR^/2zj0>՚1B°I#ڸ(0q_`ɣaM/Ǚ."płNؼ40y;'ƸaiH ?;(ZC/v7ܱӧßn>ƼB7Q(heRwj-K'5.n\	)^XOX{iT̨g&H`K`8#~8lI
`s5GƱVL>#8d^BFzk
Od^AE#\;]>rC|m~ll9`qpsv#E@0/kz%?/?!M @`Iɟ'Կ@uИcnaf"o;h(Yy#P_w@CV/|-ҢɡHl4ma/T"2*kT:V"AӢ@f/9/M ҹ-?JDvR7,YQoz	Zh{.T"5Y/mKdPIf-徐"3;䎴]4K@E?1.eUʱծ-mԢP@"8On׿r[O/LVSTIiFXEŅc]ՊSW9j7=T*_}x:vbj Bz)^'rgP8ƌǄZ*'JkѢ*V`Cu\B&Ʉq- ls<y7bTEd2?w΢Y. xP	?_2?8ciZvtՂ8\Ê5БGAAb61;W]J T<*2 dW+7uAӯPu2ZTk&+L͜DeŅU$Ԫ?-M %ȳUꘞղ1l*)C(EiqQkx?Q"QD*AZ{|A2ôh"
`m~8lkxpj9cd6G(ZGuQ5Ojϋ
Jſ

W9/D?Sa.z9y'WA뜍֬|*u	e[@ywDGt2$ݽT~D$uU7'|M_QuVX,7۪J>5&5	M{n0f&%HVV^cϲc|EpPr(pH#yM;-ABG&LjMG\^|Y#јr8S#/nqFnEV 9q +A|iCHy}B{BIZ ݿe\CAST5                                                 P                                                       LICENSE=GPLv3+  crypto gcry_cast5                                                                                                                            Q                  g                                                              	                      
                              `       5                      L                      ]                      r                       grub_mod_init grub_mod_fini _gcry_cipher_spec_cast5 grub_cipher_unregister _gcry_burn_stack grub_cipher_register memset                                                :                    `                                                           _                   t                   
                    
                   
                   S                   h                                                                                                  '                                        9                    S                    ]                    i                    s                                          0                   8             
      @                    .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @       }                                   @               X3      @                          &                                                          .      2               0                                   B                     0      `                              =      @               5      `                           H                     01                                    X                     @1                                    ]                      @1                                    f                      G1                                                          X1                                	                      2      y                                                    5      o                                                      boot/grub/x86_64-efi/cmdline_cat_test.mod                                                           0000600 0001750 0001750 00000011150 13417732100 0017125 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   SHH        H        HH        H        [UH        H        HAUATSHhH        H             H        H)  H8H        H        Ѕ  LeH        I        H        H        H        ЋSH        HH        H        H           L   LH        H        H        Ѕu   H        HLH        H        H        H        L9HH        H        kH        H        HPH        Y   H        I        I        PH        11I        AZYHe[A\A]]H        H        H        H        H             c   a   t       (   p   r   o   c   )   /   t   e   s   t   .   t   x   t   
                  cmdline_cat_test                从硬盘的第一主分区启动
The quick brown fox jumped over the lazy dog.
Unicode test: happy☺ £ 5.00 ¡τäu!  ℤ⊆ℝ
HelloHelloHello
 gfxterm Unknown Regular 16 unicode font not found: %s 0 tests/cmdline_cat_test.c cmdline_cat unicode cmdline_cat_test test.txt                                          LICENSE=GPLv3+ font functional_test normal procfs video_fb cmdline_cat_test                                                                                                    %                   E                                                                                    	                      
                                       )                      ?                      P                      \                                                                                                                                                                                                                           *                     A                     W                     c                     v                                                                                                                                                                        grub_mod_init grub_mod_fini grub_strlen grub_test_use_gfxterm grub_cmdline_run grub_errmsg grub_terminal_input_fake_sequence_end grub_procfs_entries grub_dl_load grub_strdup grub_font_load grub_video_checksum_end grub_font_get grub_errno grub_terminal_input_fake_sequence grub_video_capture_start grub_video_capture_end grub_test_video_modes grub_strcmp grub_test_register test_txt grub_test_use_gfxterm_end grub_test_unregister grub_list_remove grub_video_fbstd_colors grub_video_checksum grub_list_push grub_test_assert_helper                                                                    )                     7                     A                     Y                     c                    s                                                                                                                                                          #                     !                                                                         %            Q       /         "           ;                    P                    `                    l                    x                                                                                             ]                                                           `                                      6                   8                $           '            4       1            e       ;                    G            e       Q                                 v                             .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @       [                                   @               @
                                &                                                        .      2                                                  B                     @                                     =      @               H      0                           H                     `                                    X                     o                                     ]                      o      ,                              f                                                                                      x                          	                      (                                                         x      o                                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/hfspluscomp.mod                                                                0000600 0001750 0001750 00000010360 13417732100 0016171 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   AUH        "   ATU1SHHhH    H|$>     HD$0   LD$HL$H        Ht$ D$ HD$>HD$(HH  H        Ѕu  H|$Hg  HHcT$H  HHH)fD$fAEIA|$3uHID$8uH        !  A|$@fpmcp  AD$HH   AT$DQ  11ǃ      LL$A     HI        I        AHt'ǃ       H|$AH               |$H           HHIH   uǃ       H|$A;  D   11  HIAՋ   HH9t1H|$ǃ       AH   AH                   ǃ   H|$H   1AH       ǃ       H   H           tH           HH        HH   t^It$8H1I|$PL   H        HHH;   t:H        8 uH           1H        H        (ǃ      1Hh[]A\A]UH   SHQW;wAr<fWHFHHvH9HGH        HЅuE+CZ[]AWAVAUATIUHSH8   HT$HL$t
I1   H\$H   H        H|$HH        H  I$   H  11  A   HI)HH|$ M9HD$MGA9$   uIHt$ I$   LH|$H        H        H  Lt$LM)Mu   I$   HD|u'HT$(   H        HHHT$(   I$   1IML1ҍ  H        L9uuM$   HHHI$   HH        I)׺   I   LC1ML9t=H        8 uH           1H        HH        FD$A$   I$   HD11HH        HD$HH8[]A\A]A^A_H        H        H        H        H        H     H        H                   c o m . a p p l e . d e c m p f spremature end of compressed   LICENSE=GPLv3+ gzio hfsplus hfspluscomp                                                                                                      )                  #                                                                                                    	                                       5                      O                      \                      y                                                                                                                                                                                 grub_mod_init grub_mod_fini grub_file_progress_hook grub_hfsplus_btree_search grub_memmove grub_hfsplus_read_compressed grub_errno grub_hfsplus_read_file grub_malloc grub_error grub_free grub_hfsplus_open_compressed grub_zlib_decompress grub_memcmp                            N                   u                                          5                    ?                    d                    }                                        T                    j                    ~                                                                                                                        P                                                            <                    H                                                                                #                    2                    C                    R                                                                                            u                                                                   .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                             @                                          @               	      `      
                    &                     P      "                              .      2               r                                   =                                                          C                                                         S                                                          X                                                          a                                                                                      (                          	                                                                                @      j                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/cmp.mod                                                                        0000600 0001750 0001750 00000005510 13417732100 0014406 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @  
 tH           1H        AWH        1AVIAUATUH        SH        HHRI6I>I~IHI  M  Iu@HH@H9tMFIH        1   H           ӿ   HHH   H   E1I        L\$   HLA׺   H$HLAL$I9uuL\$1L9};T HHDDD8tLMNIH        1I        A.I   M{H        1H        11HH        HMtLH        MtLH        С        H[]A\A]A^A_H        PE1H        H        H        H        H        ZH        H8H        two arguments expected Compare file `%s' with `%s':
 Files differ in size: %llu [%s], %llu [%s]
 Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 The files are identical.
 Compare two files. FILE1 FILE2 cmp     LICENSE=GPLv3+  cmp                                                                                                          D                                                                                                                 (                      C                      [                      j                      v                                                                                                               grub_mod_init grub_mod_fini grub_errno grub_register_command_prio grub_unregister_command grub_file_read grub_malloc grub_file_close grub_file_open grub_error grub_free grub_printf_                                            &                    <                     G                                  5                                                 ?            a       K                    j                   v                                                                                         	                                                                                                 
                                                    -                     .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .modname                                                                                              @       7                                   @                     @                          &      2               w                                   5                     L                                     ;                     P                                    K                     `                                    P                      `                                                          h            	   	                 	                      0                                                          (      Y                                                                                                                                                                                                                      boot/grub/x86_64-efi/http.mod                                                                       0000600 0001750 0001750 00000022510 13417732100 0014605 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    "          @     @   HGHWPH@Hx0w,xH u@L    HtHz HtPH        1Z1USQH_PHt9H{ Ht   H        H;H        HtH{(HZ[1]UHH        SH    QHu        ;HhH     H@    HXH; tHSHHCH@HCHHC1Z[]H        UHAWAVIAUI        ATSH(HGLgPHuUH@I|$(H@IHMȉEAHLAH   H        HH  HǾ   H        HC   HI        HEAׅus   H        H}H        HCI|$(HEAHHAׅu7I|$(AIt$(HH}H        HC   HHEAׅtEHH        ҋE8     H        H}H        HCH}HEAHHAׅAtHH        D  IFH@H8H        IVH}HJHH        H1Ѓ} t%H{MH           1I        ALk   HH        ЅAtHH        DM     H        LH        Ѓ} uJLk'   HMH        I        1LALH        HHH        Lk   HH        к   LH        H        AP   D}RH        LMH          H        I        EDADP1MD$(AYEMH        ^AH        H}ADH        E1HID$ uHH        С           HHǺ   H        Ѕu	eMl$AI|$    H        ҉   t/H        L,  H        A|$ t1   I|$    H        A|$0H        t5I\$8H        1HH        HID$8    AD$0&IT$(HeH           1[A\A]A^A_]He[A\A]A^A_]AVIAUATUSLgPHI|$ Ht   H        ID$     H        HCH@HP HtOHzHCH@Hx HWHJHOHHuHOHHHWHuHOHQH        @L    HCX   H@Lp8H        HHt-@   ID$(I        HHE(uHAHCP            @LA1HkPLHH        A1EtH}(AHAHCP    D[]A\A]A^ATH        IUHX   SHHt/HE@LH        HHC(uHH        С        BEH    H]P1H   H        Љ1tH{(I        AHAԉ[]A\HWHB8HR HtHrHHNH+NHAUHATIUSHHHT$H9w CPu/yuHH|$t&H9   {@ C   .  CP   "     1H        к   HCH*   H9  H        H    u>ID$H@@H   ID$H@@L   I|$@uI|$H        ID$@CP      { H          	   H        Յt.H        H        HH        HC8   HD$
   Ht$Hx	H        H|$IH        (	  A      A  tDA   tvLl$C0)   H        H        LHD1H        5Lc(H        C0   H        LHH        1HC8tC   i   H        ՅH|$u3{ u-H
   Ht$H|$H        ID$@C      H        ՅuC@   1H[]A\A]USHRHnPH} Ht   H        H} HE     HtH        HE     HCH@@H   HCH@@L   H{@uH{H        HC@X[]AWAVAUIATUHSHHZPH{     HH        	  {P uzI        H}I9r  L)H~LH+uHI        AօA  {@ 6  HEH+EH{HH9!  H  CP   { LeuH;HzLuLLI9sA<$
t
IE1E1MtMt$ALH)HsH        HuHH           HHCLHuHH)H        LH+MHKEHKHHLH        AH;H        EH    HC    uMH{    H        HH           {    L)MI<I9rhH        I        HHu HAH{    H        9  HUHLH        L)HSHA1  A>
tIMtLLLD$L)HLAЅALD$uMf{P CH{ H           HH        D  IEHHxH        H IEH@Hx0v@L   IEH@Hx0cvH{ H        1{@    HUH+UHSH   H        HItHHsHH        Ѕt        iHSHHuH        I|$IEH@Hx0v@L   H        H{ IELHxH        H HsHHAH[]A\A]A^A_H        H        H        H        H        GET   HTTP/1.1
Host:  :%d 
User-Agent: GRUB 2.02~beta2
 Range: bytes=%lu-

 
 opening path %s on host %s TCP port %d
 http net/http.c %s time out opening `%s' HTTP/1.1  unsupported HTTP response file `%s' not found unsupported HTTP error %d: %s Content-Length:  Transfer-Encoding: chunked                                                                           LICENSE=GPLv3+ net http                                                                                                                                                                                                       	                                       )                      ;                      I                      \                      k                      x                                                                                                                                                                                                                                               0                     B                     M                     ^                     h                     }                                                                                                                                                                                              grub_mod_init grub_mod_fini grub_strlen grub_netbuff_free grub_strtoull grub_net_tcp_close grub_xasprintf grub_realloc grub_memmove grub_strdup grub_snprintf grub_net_send_tcp_packet grub_net_app_level_list grub_errno grub_net_tcp_retransmit grub_netbuff_alloc grub_zalloc grub_malloc grub_netbuff_pull grub_real_dprintf grub_error grub_list_remove grub_free grub_net_tcp_unstall grub_net_tcp_open grub_net_poll_cards grub_list_push grub_netbuff_put grub_gettext grub_memcmp grub_netbuff_reserve grub_strtoul grub_net_tcp_stall        1                     ^                     m                                                                                             
           ^                    ~         &                    #                                                                     $                    =                   K                   y                             
                                                                              #                               (                   5                   T            ;       ^                    s         
                    #                    #                       Q                                      T                   |                                                          *
      .            
      @                     \                    g                                                                                         !                                                                      +                    S                                                                               7                    W                    w                                                                                                                      >                  V                             '           %                    g            n               %                                                          $                                        '           	                    A	                   K	         $           b	                    t	                   	         $           	                    	                   	                    
                  D
                    a
                    
            n      
                    
                                                                                                                   '                    X                    g                                                                                                   H                    \                    {                            (                                        #                                                  B         (           ]                                                                    "                                                                |                           (             }      0             B       8                      .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                          @               x      
      
                    &      2                     '                            :                     0      @                              5      @               (!      x       
                    @                     p                                    P                                                          U                                                          ^                                                                                               
                 	                      `                                                         !      g                                                                                                                                                                                                                      boot/grub/x86_64-efi/iorw.mod                                                                       0000600 0001750 0001750 00000011040 13417732100 0014602 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   AWFAAVAUATUSAPv(Y[]A\A]A^A_H           1H        I11H        II<$11HI|$ՃAIuI|$11ՉIED!Ί@<lt
<wt<buK2t!	2ftf!	Ɖft!	@ƉZ[]A\A]A^1A_SHt"H           1H           HH11H8H        HHH H@@<lt<wt1<bu
fHC8 t>H|$H        	   1I        AHCHt$HxH        H        1H        1H[SH        Ѕy  H        I        I        H        1H        H        I        I        H        1H        H        H        I        I        H        1H        H        H        H        E1H        H        H        H        H        E1H        H        H        H        H        E1H        H        H        H        H        H        [SH        ЅurH        H        H8H        H8H        H8H        H        H8H        H8H        H8H[[                       v                                                                      two arguments expected one argument expected %x 0x%x
 Read 8-bit value from PORT. PORT inb Read 16-bit value from PORT. inw Read 32-bit value from PORT. inl Write 8-bit VALUE to PORT. PORT VALUE [MASK] outb Write 16-bit VALUE to PORT. outw Write 32-bit VALUE to PORT. ADDR VALUE [MASK] outl Save read value into variable VARNAME. VARNAME       LICENSE=GPLv3+  extcmd iorw                                                                                                                                           \                                                              	                      
                                       +                      B                      ]                      i                      ~                                                                                                               grub_mod_init grub_mod_fini grub_snprintf grub_unregister_extcmd grub_register_command_prio grub_printf grub_efi_secure_boot grub_unregister_command grub_error grub_register_extcmd grub_env_set grub_strtoul $                     5                     H                                                             +                    s            -                                                           0                                                                                                   6                   R                                      W       #                    -            [       7            R       C                   M            x       W            (       c                    m            |       w            R                                                                                                                                                                                                                                                                                                        (                   2                  <                    F                  R                    _                    o                    y            (                                                                                                                                         #                   J       .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                        @                                          @                     @                          +                     0      P                              &      @                      0                           3      2                     R                            B                                                          H                                                         X                           0                              ]                                                          f                                                                                                                	                                                                                0      o                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/gcry_des.mod                                                                   0000600 0001750 0001750 00000041170 13417732100 0015430 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    >          @     @   AUI        A   ATUSGO	G	G	G	O	O	ȉ1с111%11H        ADAAABAAFAD	AAAFAD	AAAFED	AAAFAD	A	H        AD	DA<AB<AAAFAD	AA	AFAD	AAAFED	AAAFAD		D	E1CEщA)DD	ډЉAA	   %   $	DDρ   A	ȉA
   	ȉA  	ȉ   	ȉ	    	ȉ   	D   	ȍ       	ȉ
   	ȉ    	ȉ   	ȉ   	ȉ   	ȉ   	ȉ 	ȉ
	ȉك	ȉ	ȉAA   A   	ȉ	ȉBD   %    	ȉD	   D		ȉ   	ȍ   	ȉ    	ȉ   	ȍ       	ȉ   	ȉA   D	     	ȉ    	ȉ   	ȉ		   	ȉ   	ȉ 	ȍ    	؃	ȉ	BDII[]A\A]AVH   I        I        AUHDATI        UH        SH        ~DFA	~	~	~D	DFvD		111AAA1ED1AA1ADD13333D    1E1D1  1D11᪪118AAAD3hA1?EAA?C3I        D1AAA?B3L AA?A?B3I        A3D?A3DAA??A3H        B3DhA1EA?C34EAA?B3t EAAA?A?B34C34AAD3hEA?C34EAA?C34EAAA?A?C34B34DhA1EA?C3EAA?B3L EAA?B3AA?C3AAD3hEA?C3EAA?C3EAAA?A?C3B3DhA1EA?C34EAA?B3t EAAA?A?B34C34AAD3hEA?C34EAA?C34EAAA?A?C34B34Dh A1EA?C3EAA?B3L EAAA?A?B3C3AAD3h$EA?C3EAA?C3EAAA?A?C3B3Dh(A1EA?C34EAA?B3t EAAA?A?B34C34AAD3h,EA?C34EAA?C34EAAA?A?C34B34Dh0A1EA?C3EAA?B3L EAA?B3AA?C3AAD3h4EA?C3EAA?C3EAAA?A?C3B3Dh8A1EA?C34EAA?B3t EAAA?A?B34C34AAD3h<EA?C34EAA?C34EAAA?A?C34B34Dh@A1EA?C3EAA?B3L EAAA?A?B3C3AAD3hDEA?C3EAA?C3EAAA?A?C3B3DhHA1EA?C34EAA?B3t EAAA?A?B34C34AAD3hLEA?C34EAA?C34EAAA?A?C34B34DhPA1EA?C3EAA?B3L EAA?AB3A?C3AAD3hTEA?C3EAA?C3EAAA?A?C3B3DhXA1EA?C34EAA?B3t EAAA?A?B34C34AAD3h\EA?C34EAA?C34EAAA?A?C34B34Dh`A1EA?C3EAA?B3L EAAA?A?B3C3AAD3hdEA?C3EAA?C3EAAA?C3A?B3DhhA1EA?C34EAA?B3t EAAA?A?B34C34AAD3hlEA?C34EAA?C34EAAA?A?C34B34DhpA1EA?C3EAA?B3L EAAA?A?B3C3AAD3htEA?C3EAA?C3EAAA?A?C3B3DhxA1EA?C34EAA?B3t DAA??34C34AAD3X|D؃?A34D?A34DAA??A34B34Ή1%11ɉ1%  11ω1%3333    111111%11@2ƈBJ@rƉB@rBB1[]A\A]A^AWH  I        I        AVAUATUSH        HHD~DFDx|HT$A	~	~	~D	DFvD		111AAA1ED1AA1D133334    A11AAE1A  E1AA1ADD1᪪A1D1I        E΋AD3`D1ADA??B,I        A3,H        1?A3,??A3,H        A3,D?3,DAA??3,H        B3,D`A1EA?F3,EAA?G3,EAAA?A?G3,G3,AAD3`EA?G3,EAA?F3,EAAA?A?F3,DpF3,E1EA?B3,AD?E3$D?E3$DA3hA?G3$AA?G3$AAA?F3$AA?A?F3$D3$hD1AA?F3,AAA?G3,AA?A?G3,E3,D3hAA?G3,AAA?F3,AA?A?F3,D3,h D1AA?F3$AAA?G3$AA?A?G3$E3$D3h$AA?G3$AAA?F3$AA?A?F3$D3$h(D1AA?F3,AAA?G3,AA?A?G3,E3,D3h,AA?G3,AAA?F3,AA?A?F3,D3,h0D1AA?F3$AAA?G3$AAA?G3$?E3$D3h4AA?G3$AAA?F3$AA?A?F3$D3$h8D1AA?F3,AAA?G3,AA?A?G3,E3,D3h<AA?G3,AAA?F3,AA?A?F3,D3,h@D1AA?F3$AAA?G3$AA?A?G3$E3$D3hDAA?G3$AAA?F3$AA?A?F3$D3$hHD1AA?F3,AAA?G3,AA?A?G3,E3,D3hLAA?G3,AAA?F3,AA?A?F3,D3,hPD1AA?F3$AAA?G3$AAA?G3$?E3$D3hTAA?G3$AAA?F3$AA?A?F3$D3$hXD1AA?F3,AAA?G3,AA?A?G3,E3,D3h\AA?G3,AAA?F3,AA?A?F3,D3,h`D1AA?F3$AAA?G3$AA?A?G3$E3$D3hdAA?G3$AAA?F3$AAA?F3$?D3$hhD1AA?F3,AAA?G3,AA?A?G3,E3,D3hlAA?G3,AAA?F3,AA?A?F3,D3,hpD1AA?F3$AAA?G3$AAA??G3$E3$D3htAA?G3$AAA?F3$AA?A?F3$DpxD3$DE1A1D|$D   3   E1D<$$AD??,3,DD1ADA?C3,AA?C3,AA?C3,Dt$D?A3,$AAA?C3,AAA?C3,AAA?C3,EA?C3,EAA?B3,EAA?B3,ED   AA?B3,EAA?B3,EAAA?B3,ED   A?B3,A1EA?F3$EEAA?G3,EAAA?A?G3,AAD3   G3,EA?G3,EAA?F3,EAAA?A?F3,F3,D   E1EA?B3,EAA?C3,EAAA?A?C3,C3,EAD3   EA?C3,EAA?B3,EAAA?A?B3,B3,D   A1EA?F3,EAA?G3,EAAA?A?G3,G3,AAD3   EA?G3,EAA?F3,EAAA?A?F3,D   F3,E1EA?B3,AD?E3$DAA??E3$D3   G3$AA?G3$AAA?F3$AAA?F3$?D3$   D1AA?F3,AAA?G3,AA?A?G3,E3,D3   AA?G3,AAA?F3,AA?A?F3,D3,   D1AA?F3$AAA?G3$AA?A?G3$E3$D3   AA?G3$AAA?F3$AA?A?F3$D3$   D1AA?F3,AAA?G3,AA?A?G3,E3,D3   AA?G3,AAA?F3,AA?A?F3,D3,   D1AA?F3$AAA?G3$AA?A?G3$E3$D3   AA?G3$AAA?F3$AAA?F3$?D3$   D1AA?F3,AAA?G3,AA?A?G3,E3,D3   AA?G3,AAA?F3,AA?A?F3,D3,   D1AA?F3$AAA?G3$AA?A?G3$E3$D3   AA?G3$AAA?F3$AA?A?F3$D3$   D1AA?F3,AAA?G3,AA?A?G3,E3,D3   AA?G3,AAA?F3,AA?A?F3,D3,   D1AA?F3$AAA?G3$AA?A?G3$E3$D3   AA?G3$AAA?F3$AAA?F3$?D3$   D1AA?F3,AAA?G3,AA?A?G3,E3,D3   AA?G3,AAA?F3,AA?A?F3,D3,   D1AA?F3$AAA?G3$AA?A?G3$E3$D3   AA?G3$AAA?F3$AA?A?F3$D   D3$DE1A1D|$D   3  E1D<$$AD??,3,DD1ADA?C3,AAA?A?C3,C3,Dt$D?A3,$AAA?C3,AAA?C3,AHT$AA?C3,EA?C3,EAA?B3,EAA?B3,EAA?B3,EAA?B3,EAA?AB3,EA?B3,D  A1EA?F3$EAA?G3$EAAA?A?G3$G3$AAD3  EA?G3$EAA?F3$EAAA?A?F3$F3$D  E1EA?B3,EAA?C3,EAAA?A?C3,C3,EAD3  EA?C3,EAA?B3,EAAA?A?B3,B3,D  A1EA?F3$EAA?G3$EAAA?A?G3$G3$AAD3  EA?G3$EAA?F3$EAAA?A?F3$F3$D   E1EA?B3,EAA?C3,EAAA?A?C3,C3,EAD3$  EA?C3,EAA?B3,EAAA?A?B3,B3,D(  A1EA?F3$EAA?G3$EAAA?A?G3$G3$AAD3,  EA?G3$EAA?F3$EAAA?A?F3$F3$D0  E1EA?B3,EAA?C3,EAAA?A?C3,C3,EAD34  EA?C3,EAA?B3,EAAA?A?B3,B3,D8  A1EA?F3$EAA?G3$EAAA?G3$A?G3$AAD3<  EA?G3$EAA?F3$EAAA?A?F3$F3$D@  E1EA?B3,EAA?C3,EAAA?A?C3,C3,EAD3D  EA?C3,EAA?B3,EAAA?A?B3,B3,DH  A1EA?F3$EAA?G3$EAAA?A?G3$G3$AAD3L  EA?G3$EAA?F3$EAAA?A?F3$F3$DP  E1EA?B3,EAA?C3,EAAA?A?C3,C3,EAD3T  EA?C3,EAA?B3,EAAA?A?B3,B3,DX  A1EA?F3$EAA?G3$EAA?G3$AA?G3$AAD3\  EA?G3$EAA?F3$EAAA?A?F3$F3$D`  E1EA?B3,EAA?C3,EAAA?A?C3,C3,EAD3d  EA?C3,EAA?B3,EAAA?A?B3,B3,Dh  A1EA?F3$EAA?G3$EAAA?A?G3$G3$AAD3l  EA?G3$EAA?F3$EAAA?A?F3$F3$Dp  E1EA?B3,EAA?C3,EAAA?A?C3,C3,EAD3t  EA?C3,EAA?B3,EAAA?A?B3,B3,Dx  A1EA?F3$DEAA?C3EAA?C3AA?C3AAD3|  Dȃ?A3D?3DAA??3B3ˉ1%11͉1%  111%3333    11111މ1%11@2ƈBJ@rƉB@rBBH1[]A\A]A^A_PH   HHH        Z    H        PH1HHH        Z    H        PH   HHH        Z    H        PH1HHH        Z    H        AU1ATUSHHTHu?   E1I        A,   H|$HcIt H        Ѓ t~DckA9~1H[]A\A]Ã      ATH        IUS8 Hu    H        H     H        H        H8 t!LH        ЅtJ@   ո   EH        HLп    H1LxHJxL|HJ|Hu룿@   1[]A\Ã   D  AWH        AVIAULnATLfUSHQ8 u    H        H     H        H        H8 t          I        HLAH   LAH   LA׿    HHع   x  HHx    |    px  p|   x     |  u\LH        Ӆt@   ո   LӅuLӅu@   1Z[]A\A]A^A_SH        H        HH        [SH        H        HH        [                                                                   @       @   @ @      @    @   @    @     @    @    @  @  @          @ @    @    @        @   @    @   @   @    @       @     @@  @      @     @    @  @  @                                                                                                                                                                           @  @  @@   @    @@   @  @  @@   @     @  @      @       @ @   @   @@ @      @  @     @@  @@ @   @@  @@      @      @  @@ @@   @ @       @  @      @     @@  @@   @ @@  @@      @     @    @ @@  @   @ @       @@      @ @          B         @   @      @  B  B     @     @  @      @ B B    B  @       B       B       B         @    B @     @  B  @        B B     B B        @   B      @         @   @                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                3DES 1.2.840.113549.3.7 1.3.36.3.1.3.2.1 1.2.840.113549.1.12.1.3 DES                                                                                                                                                                                                    @                                                                                                                                                                                              LICENSE=GPLv3+  crypto gcry_des                                                                                                                                            ?*      '            f*      '                                  	                      
                             `       3                      J                      [                      b             `       ~                       grub_mod_init grub_mod_fini _gcry_cipher_spec_des grub_cipher_unregister _gcry_burn_stack memcmp _gcry_cipher_spec_tripledes grub_cipher_register                           v             P                          +                  5                  G                   R                  `                  G                  y                                                                                                                                                 	                  7                  '                  "'                    :'                  L'                    g'                  y'                    '                  '                    '                   '                    ;(                   X(                   i(                   s(                    (            '      (                    (                   *)                    ;)                    E)                    g)                    )            '      B*                    L*                    [*                    i*                    s*                    *                                                       `       0             (      8             '      @             V'      `                    p                                 )                    A                    )(                   ,'                   &       .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @       *                                   @                9      h                          &                     *                                   .      2               `3      E                             B                     3                                    =      @               h=                                 H                     6                                    X                     6                                    ]                      6                                    f                      6      	                                                    6                                	                      h8                                                          >      o                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/configfile.mod                                                                 0000600 0001750 0001750 00000006670 13417732100 0015744 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    
          @     @   tH           1H        AUATIUSQHW:eAAHH?H?<cuH        D AtH        t@H        @Ѓ   I<$H        EtH        tH        Z[]A\1A]SE1H        H        H        H        H        E1H        H        H        H        H        E1H        H        H        H        H        E1H        H        H        H        H        E1H        H        H        H        H        [H        SH        H        H8H        H8H        H8H        H8H        H8H[filename expected Load another config file. FILE configfile Load another config file without changing context. source Load another config file without changing context but take only menu entries. extract_entries_source Load another config file but take only menu entries. extract_entries_configfile .    LICENSE=GPLv3+  normal configfile                                                                                                                               Z                                                                                                                     5                      L                      e                      {                                                                                                               grub_mod_init grub_mod_fini grub_env_extractor_open grub_env_context_close grub_env_extractor_close grub_env_context_open grub_register_command_prio grub_unregister_command grub_normal_execute grub_error grub_cls                                             S                     l                               
                                                                                                                                ,                                       1                   <       %            ,       /                    9            o       C                    R            v       \            ,       f                    p                   z                                                  ,                                                                                                <                   ,                                       +                                                                                    )                    8                   G                    .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                             @       X                                   @                           	                    &      2                     -                            5                                                          ;                                                         K                           (                              P                                                          Y                                                                                            
   
                 	                                                                                P
      b                                                                                                      boot/grub/x86_64-efi/iso9660.mod                                                                    0000600 0001750 0001750 00000030040 13417732100 0014742 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    ,          @     @   H0HIH|$H           f
1D$D$D$D$D$D$D$D$D$f D$D$D$   DBAp@   F-  kiD>KAi30 AH|DiQ AuQ ACDBD:Dv1Etkfzuc1Et\DJAwQr@;wGR<w>AEiQ Ei  Dk<DfvyfwA:   H0USH        PHoPHh  HH        H8H        Z[1]S   HH        H        1҅uǃX     [UHH        SHcލ<   H  HcH5  19~fLU fTHH11IH9  fEMPAtiD $A  wI   H
9 $  @z?π@zσ?ɀ?Jπ@z	?MH1   wD
F  wA?HAɀJDJVD (A  vDD $A  w?H.AA?A?AɀAɀDJDJHHM 1H  []AUH        A1ATIUHSHӺ   H(H|$ЊD$AHt$H|$	ЈD$C.flfD$C/D$
C0D$C1D$C2D$C3D$H        ЅtC4i|D$   T$H	H        T$HUHt$LU H([]A\A]AWI        IAVAUIATIUHS1HM   IEH9r0H9uAHH           []A\A]A^A_1H        Hk!AT&H9rH)HHk!MHLL$IDDppIE M9HP  MFHLAхuM)LMLL$Z1H[]A\A]A^A_UHHSPH_PHWXHP  HP0HP  HW`HP8HHwH        Hh  HP  H        H@0    H: Z[HD]AWI        AVAUATIHUSHH(Ht$H$LD$AHIHt$  HHLH        Ѕ   LI        FI$MHHP  H        Ѕ   LHt$LH$Ѕ   AFIHDI9   A~       H        LAՅth   H        LAՅuAVA^HAvH        HT$Ht$HAHIHt$HT$+        H        H1H([]A\A]A^A_AW1AVAUATUHSHx  HT$HWHt$H$    H9tHk!HL&H$Ld$p1H;$  HD$8    D$@    HL$O!   HHH        I        Ѕ  T$OuH H     HM D{!D$oHD$(    D$0    D$4    X   \  uT$oIcLHAօtEV  %   ")HcH~LD$(H        HH        HcЅt  (  H        HI  H@   H@   HE AE    IE |$4 uD$h<D$4H|$( u|$ou|$p uH        HD$(H|$( u|$ou|$puH        HD$(HE `   umH|$( ueD$o;   LDp H        HHD$(t  L$4   LtrJ FHPL9t
x.u@ Ld$(HE `   tbH|$( uZ@t$oLH        @@о;   HD$(HH        Ht  |$0 tLH        D$0   I}!   Ht$OI        +IuI9uskIE!   Ht$OHPHk!IUI||$h yeD$OHL$O!   HHHAօt|$0 H        tH|$(L1D  HLIuHk!H AHtIsH|$8H   MuM+uI        AHMk!I9I        sMIkU!H|$8HT$AHT$LHt!H        Hu|$0 tH|$(ALATIIkE!Ht$8AE   I|H        H|$8AHD$8    D$@    HL$Lt$4H|$(HD$Ѕt|$0    t8H|$(H        %|$0 tH|$(H        D$OHHx  []A\A]A^A_Ã H        tHkW!H|
H        AVIAUAATUSHH?HtH        Hc1Fd- H;H        At$HcHHt!H<(IcLH        McHB  []A\A]A^AW   AVAUATI        UHSHHH        HAԅ   EtH        tH        H   DmA   A{ L3McM}t*LH        H;I4IH        HLH        E1HH;HuL3  LC   HuLH        L#C, V   H        HAԅuVEU%   =   t=   t$= @  u&C   f19  C   1+  C   C       HH        AԅuLkA   EEIWH9   BD=Et$<   w	t&   <   <      H        yH{ H        t${ uHD$   H        LHD$AL$DLTHtBD=C/   H           H        LH        BD5Ed        H[]A\A]A^A_AWH        AVIp  AUATUSH  HH  LP  A   B4    1L$a  O  LH        HcՅt"H        	   1H          I        H$b     H        AԅLd$u$a  <tWX   tAŀ$a  _H  <u〼$  %uـ$  /uϊ$  <@t<Ct<Euǃ`     O  H$a  HH        Ћ   1ǃX      HP  LD$!   4    Յ   D$7Dd$ЃD| E)DMcH        LHH     DHP  H$HIH        I        4    LЅtAHAH        	   1H        ҅HH        1      H        HHD$Ѕu~H   !   H|$TH\$8HD$H   MHD$@   D$P    E\  ~=IH        LH4$H|$8H        ЅtHAס        GHAHĸ  []A\A]A^A_ATH        I        UHSHHH8H        HH        HHu!H        H8AH        (  >     ?      @      A   uzB   uqC   uhD   u_E   uVF   uMG   uDH   u;I   u2J   u)K   u L   uM   H           A  0C  fiHH|$D?  0kd@  0k
в
fD$B  0LD  L$
E  0LF  L$G  0LH  L$I  0LJ  L$K  0LH        L$ЅuH        
   H        ҉N  i|E 1H        H8AHH        H[]A\UH        HATISHH8H        HH        HH   f>   u?H@   u5H  HH  u"H        
   1H           PM  H        @  ?  I        >  PL  PK  PJ  PI  PH  PG  PF  PE  PD  PC  PDB  1DA  AH`I$I$    H        H8H        HH        С        He[A\]UH        SHQH?HHtm`   Hx(t   H            H        HHHuHH        ': tHHH;r݀: uHB H            Z[]ATH        IUHSH0  H8H        HEH8H        HH   HD$H   HD$    HD$   D$     H|$$!   A   I        HH        Ht$LH        Ѕu<H$11Hh  H]PHqH9tHk!H|9&HHU@HE    11H        H8H        H        HС        H0  []A\AUH        ATIUH        SHHH  H8H        HT$HL$H;H        HH   Ll$HD$H   HD$(    HD$    H|$4D$0    !   A   I        H        HLLH        Ѕu*H<$HT$H        H        H<$L9tHH        H8H        С        HH  []A\A]SHH        H        H        HH        [H        H            ; Z x     0NER read out of range ST CE . ..  NM PX SL / ./ ../ not a ISO9660 filesystem CD001 SP empty date incorrect date no creation date in filesystem to generate UUID %c%c%c%c-%c%c-%c%c-%c%c-%c%c-%c%c-%c%c iso9660                                                                                           LICENSE=GPLv3+  fshelp iso9660                                                                                                                                             6      3            i                                        	                      
                                       )                      ?                      L                      X                      e                      t                                                                                                                                                                                                                                                                                                                  $                     2                      grub_mod_init grub_mod_fini grub_strlen grub_fshelp_find_file grub_strncmp grub_strcpy grub_strrchr grub_xasprintf grub_realloc grub_memmove grub_strdup grub_disk_read grub_dl_ref grub_errno grub_memset grub_fs_list grub_zalloc grub_malloc grub_error grub_list_remove grub_free grub_strndup grub_dl_unref grub_list_push                             `                    }                                                                                                    B                                                                                [                   v                    )                  C                    f                                                                              7                   P                   s                                                            G                  Q                              $                  b                          ~                                                          I	                  i	                    	                    	                    
                    d
                    {
                    
                    
                    =                    W                                                                                                                        3                    H            !       h                   x                                                                                                   (            $                   '                   *                         +            *       h            ,       y            /                                                                                     %            3       6                    G                    ^            L                           G                    |                                                    3                                                           R       B                  X            b      m                                                                                                                                                      U       q                                `                                                                                                           	                  H            o       Y                    r                                                                                /                    :                    N                  |                                                                                                  	                                      j                  y                                                                                                                                          &                    >                    W                                                                                      >                                                                                     <                     F                    P                    _                    k                    u                                                                               (                   0             \      8             K      @                   H                    .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                          @                                               &                                                         .      2                                                  B                           P                              =      @               p+                                 H                                                          X                                                         ]                                                          f                                                                                                                 	                      8      A                                                   0,      o                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/cpio.mod                                                                       0000600 0001750 0001750 00000010310 13417732100 0014553 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   11H9tHHWHH	HG    PH        HPС        ZUHIH1SPH_PHWXHHP0HHW`HP8HWH        HSH;HHHDH@0    HZ[]AWI        AVAUI͹   ATI1UHSHH8HWLD$HWH?AׅL<$   I           H        H|$AօLt$t"H        	   1H        #  I        H|$,   AHHC MtH|$&   A։E H|$   AH|$*Iƾ   AMHtEu H}H        HII$t*HC1HH;HPH$ЅtI<$H        С        vI$( H{  uCEu>Hu8   H        I<$HD$ЅuAE H        I<$"HHC HHkHHHkHHk1H8[]A\A]A^A_UHSVH HuY[]H        H        HH        HHt?I1HM HUH} H        ЅtHH        HE  H1Z[]S11H   H        H LD$Ѕu?   H        H|$H        Ѕu(   H        HtHH        	   1H        1H [ATIUHSHGH8H        Há        HtELH        HH        ЅAtHH        DH]PHC HE@1[]A\ATH        IUHSHH?HL$HLD$        Ht2HLH        HH        ЉHH        ҉H[]A\H        H        H        H        H        q invalid cpio archive TRAILER!!!  not a cpiofs filesystem cpiofs                                                                                                                  LICENSE=GPLv3+ archelp cpio                                                                                                    ^                   ~                                                                                    	                                       )                      8                      C                      P                      \                      h                      z                                                                                                                                     grub_mod_init grub_mod_fini grub_strdup grub_disk_read grub_errno grub_fs_list grub_zalloc grub_malloc grub_archelp_open grub_error grub_list_remove grub_free grub_archelp_dir grub_list_push grub_memcmp     )                     8                     p                                                                                                       $                    5                                                                                                   "                    y            #                
                                                                                                               %                    :                    P            $       a                                                                      P                                                                                     +            P       8                    I                    `                    j                    t                                                                         <                                        s      (             B       0             &       P                    X             e      `                     .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                          @                           
                    &      2                     C                             :                            h                              5      @               `             
                    @                                                         P                                                          U                                                          ^                                                                                      (         
                 	                                                                                       g                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/jfs.mod                                                                        0000600 0001750 0001750 00000021340 13417732100 0014410 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   PH        HPH        H8H        1ZUHSHQtH        HZHH[]X[]ATH        UH  SHH8  1I   @   HI        Aԅ      H        HH        Ѕt"H        	   1H           StfK   9ufv1H   ǃ      ǃ      L      h   HAԅu>S$%       @  tǃ     
ǃ      H=H        HH        8uH        	   1H        1[]A\UH        HATISHH8H        HH        HH   P   H              I           P   P   P   P   P   P   P   P   P   P   PD   1D   AH`I$I$    H        H8H        HH        С        He[A\]UHH        SQH?HHtG    H@oH{eH9s	H)Hp8 uHH      H        HE HE     HH        С        Z[]AVII1AUIATAUSDOHAD9}JGt1ApH9w1AP
EPDH9vA@HH)   APH9DCIAu	H      H        HHtMcAMII1I   Ct&H        I	H   ЅuHu HLHH        IH        HL[]A\A]A^AWIAVIAUMATULSHH(GOH4$MdHMIID$HD$L9  DCLL$HH  H  HH        DD$H        DD$LL$: t	H   H;l$DuSC.z!EKLE1HH9uAE!ED)H   H4$MLL$L\$Hq0H   Ly8KH   	HHLHH        H   H@0    H        8 OCL\$HLL$L)ILH([]A\A]A^A_IIHOHW`HwXH        HPAUL   ATUHSQF4%   = @  t"H           1H        "  IH        =  HH  L`Hh   tLh(Lh0H   HC       A|$H        HHCuHH              AL$H        H	AtHAL$I$   1LCՅH{tH        HNWAL$	HcHTGtH{(H{0WHcHHS GCH1Z[]A\A]AVH        AUIATAH  USHH  HH   H        *   KH   I   I        	H   HAօtH        (ALKAH1H   Mt	H   LAօ        EH   []A\A]A^AVUSHH   G9   HW      c  LGIHS  HGH1HDHH   H        	HLЅt          HCHC(HC0PHcHHS @    CHS HcHHC(PuHH          HsL@  9NHc1H9tfEHfDLH8  9  @9Nʋ  <tYLC0)A   HDHI4 NHcH,DLc1L^I9tfE4CfDtE H@6@@tH{8LcE11HM9   f1LQta $  wF   H
 $  W?ʀW?Ȁ?GʀW	?IH1vw@7?=  w?H΀G@wL (  v< $  w?H(??΀Ȁ@wGHIL 1H   []A^AWH  I        AVAUATUHSHH8Ht$HD$HAׅL|$   H  HD$(E </uHI  U /t	tH<.u4IGH9tA.u$IGH9u  HT$HHD$Ѕt1Ht$HH        HItILp8M)IEHD$ 5        ?        11M      LH        ЃuLH        HT$H8H        []A\A]A^A_   1H        A4@t>H;D$ t7D_DW AD^AFDV AAFH9uAMurB FAxp F)5LLLH        ЅC|,8 E$9  LH        D  HT$DHHD$Ѕ  %   =     L    ~"H           1H           I|$H        HItzI   wHLHt$(H         I111MHH        Hx)CD%  A} /   LHDDH        DLH        С        &1H8[]A\A]A^A_UHH        SHH8H        Ht$HEH8H        HHtlHǺ   Ht$H        H        8 uD  %   =   tH           1H        H]PH  HE@11H        H8H        H        HС        H[]AWH        AVIAUIATUSHH(  H8H        Ht$H;H        HHHt$u1   HǺ   H        ЅuH  HH        HHI        Lx8tHAԃts1   H|$H        Ћ9  HT$ HH        ЅuRD$THt$L%   = @  D$	LD$D$hD$AՅtH        8u     HH        HH        H        H8H        С        H(  []A\A]A^A_SHH        H        H        HH        [H        H        JFS1 not a JFS filesystem %02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x not a directory file `%s' not found too deep nesting of symlinks not a regular file jfs                                                                                       LICENSE=GPLv3+  jfs                                                                                                                                3                                                                                           *                      9                      F                      U                      a                      l                      x                                                                                                                                                                                                       grub_mod_init grub_mod_fini grub_strncmp grub_xasprintf grub_memmove grub_disk_read grub_dl_ref grub_errno grub_memset grub_fs_list grub_zalloc grub_malloc grub_error grub_list_remove grub_free grub_strndup grub_dl_unref grub_list_push                                                                    ;                     \                                                                         	                                                    {                                                                                                                                   X                                   
                                                                                                       X       3                    P                    [                                                             L            g      [                                g                                                                              t      &            _       7                    K                                                                                	                    x            g                                                                  8                                                            !	            U      
            r                                                        U      "            .       7            o       R                             	                       .       Y                   j                                                                        t                  
                                              6                    H                    `            X                   
                                                                                                                                                                     ?                    S            X       {            
                                    U                                      r      5                    M            .       \                    h                    u                                                                                                                                                                                                                     0      (                   0                     8                   @                    .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .modname                                                                                         @                                          @                     H	      	                    &      2               #                                   :                           P                              5      @                            	                    @                     0                                    P                     @                                    U                      @                                                          H      X      
   	                 	                                                                                      ^                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/cpio_be.mod                                                                    0000600 0001750 0001750 00000010330 13417732100 0015223 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   11H9tHHfWHH	HG    PH        HPС        ZUHIH1SPH_PHWXHHP0HHW`HP8HWH        HSH;HHHDH@0    HZ[]AWI        AVAUI͹   ATI1UHSHH8HWLD$HWH?AׅL<$   I           H        H|$AօLt$t"H        	   1H        #  I        H|$,   AHHC MtH|$&   A։E H|$   AH|$*Iƾ   AMHtEu H}H        HII$t*HC1HH;HPH$ЅtI<$H        С        vI$( H{  uCEu>Hu8   H        I<$HD$ЅuAE H        I<$"HHC HHkHHHkHHk1H8[]A\A]A^A_UHSVH HuY[]H        H        HH        HHt?I1HM HUH} H        ЅtHH        HE  H1Z[]S11H   H        H LD$Ѕu?   H        H|$H        Ѕu(   H        HtHH        	   1H        1H [ATIUHSHGH8H        Há        HtELH        HH        ЅAtHH        DH]PHC HE@1[]A\ATH        IUHSHH?HL$HLD$        Ht2HLH        HH        ЉHH        ҉H[]A\H        H        H        H        H        q invalid cpio archive TRAILER!!!  not a cpiofs_be filesystem cpiofs_be                                                                                                                       LICENSE=GPLv3+ archelp cpio_be                                                                                                 c                                                                                                       	                                       )                      8                      C                      P                      \                      h                      z                                                                                                                                     grub_mod_init grub_mod_fini grub_strdup grub_disk_read grub_errno grub_fs_list grub_zalloc grub_malloc grub_archelp_open grub_error grub_list_remove grub_free grub_archelp_dir grub_list_push grub_memcmp     .                     =                     u                                                                                                       )                    :                                                                                                   '                    ~            #                
                                                                                                               *                    ?                    U            $       f                                                                      P                                                                                     0            P       =                    N                    e                    o                    y                                                                         ?                                        x      (             G       0             +       P                    X             j      `             "        .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                          @                           
                    &      2                     I                             :                     0      h                              5      @               p             
                    @                                                         P                                                          U                                                          ^                                                                                      (         
                 	                                                                                0      g                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/jpeg.mod                                                                       0000600 0001750 0001750 00000021150 13417732100 0014552 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   H   H        D$ Ht$ЊD$HUHSH        VH?uH} HY[]H        H           1Z[1]ATUS	  HuSH?I        A=   	  u)H;AԄtH           1H        $ǃ	     	  1텃	  @	  []A\AWAVAULcMATIIJ7I        U1S1HHD$LAAփHD$;@  }LHIDAKD Hc(HHuH           1H        1H[]A\A]A^A_AWAVI        AUATIUS   QAAŉ9}D<LA1҅DEu   @)Z[]A\A]A^A_H   H        fD$  Ht$fD$HAWHH           AVAUI        ATU1SHHHHL$HcHHkH,D  HLc  D    AՅHL$tHH        HL$IV	AID     HDD9HL$DHAՅAHL$uHA HD$HRtHL$HH        HL$AJ<3H        D4:@  ?v렋x@p D@`D   D      D   	D	D	D		D	u+            X`X@X    D,/F#D)i'G4Ei   Ai   AT- Ei  ,)A1DE,2E$;A)C<Ei   D<i  Ei-  D)kdEi  D)i  )E)Ei  A)A4A)D)D   E)A)EkLBT D)ŉ   P BD)E)ꉘ   A)P@CE)D   P`HH;D$H   HD$HȋxpD@D`DHhDP	D	D	D		D	uXXXXXXX   D,/F#D)i'G4Ei   Ai   AT- Ei  ,)A1DE,2E$;A)C<Ei   D<i  Ei-  D)kdEi  D)i  )E)Ei  A)A4A)D)AE)D`A)BT D)EkLPBE)A)PCD)E)hAXPDXH H;D$11   ,< I   O։HH=   uH[]A\A]A^A_AWH        AVAUATUSHxH|$ H1HHD$	  	  H        HI*	  HD$LIHD$ IGH        <t~H           1H             Ht$`I?I        AHu<11D`HHuHcH        G,lHЃ}  McKD    I        A<$ LD  LH        A<$ (  DH        1H          H        I        AҀw@L  I            I?H_ADAD$     w  ^  H             =  HHI?AH9I11M1t`A@  )At@HHuI?D$HWHJH9w4H        AAAAAA8H        H9H           1H        ]I?LgH        DI?HWHJAH9wT~H        맃~H        Hc@   I?H	H        HLH@tH9H        VI?H        HLwAI?fD$<uI?AI?AGAA AGtuH        I?DtH        E 	  1D9   I?DAAvH        I?H        Eu-A  A  wvH        ^uMcI?MkC'  oD$IH        DH9BI?fH        I?A  _I?I        H        LoAI?fD$DtH           E 	  1D9I?}SȃD$vH        ZI?H        HcL$ЃHkL    I?AD$IDH9BtH           1H        =AWAw   IH        Ѕt        IGH H@PIG<A  1҉D$A  D$A      AGD1҉D$,AGDD$0[ƋD$,Ht$@t$0ȉD$4FˉD$\L$XI  HL$HI  HL$PD$,A9  r1AǇ	      AǇ      AǇ      AǇ      uA   }  D$(    HD$    HD$T$L$0)D$89-  A   t  E1I        E;  s3C,$E1E;  sAT- 1LAHI  AAA 	  ~*HT$H   LI        AHT$P   LAH        8 D$4A9  D\$uD$4AE_A)ËD$\9D$8Au	EWD+T$(DIoE1L@A   E9   DH1D$8DD$<D9   E  D$8T$<E  HA 	  H   AL   1҉A1ADAAI  Dj  Aig  x=   AM1Ei   kXAŉAD)x=   AM1i  Fx   AM	1NNHAGLAD)kHHD$@HD$IG\$(D$A  AGT$+D$XkIG7|$ x4I?H        A<$ u I?HWHtH        1H        I| HH uLH        H        8 tH\$ H        H;H    H|$H        С        Hx[]A\A]A^A_SH        H        HH        [SH        H        HH        [               	
 !(0)"#*1892+$%,3:;4-&'.5<=6/7>?jpeg: invalid maker jpeg: invalid 0xFF in data stream jpeg: huffman decode fails jpeg: invalid jpeg file jpeg marker: %x
 jpeg video/readers/jpeg.c jpeg: too many huffman tables jpeg: extra byte in huffman table jpeg: only 8-bit precision is supported jpeg: too many quantization tables jpeg: extra byte in quantization table jpeg: invalid image size jpeg: component count must be 1 or 3 jpeg: invalid index jpeg: sampling method not supported jpeg: extra byte in sof jpeg: DRI marker length must be 4 jpeg: extra byte in sos .jpeg .jpg                                                                LICENSE=GPLv3+ bufio bitmap jpeg                                                                                                                                   '            ;      '                                                        	                      
                                       ?                      X                      g                                                                                                                                                                                                                                                  "                      grub_mod_init grub_mod_fini grub_video_bitmap_reader_register grub_video_bitmap_create grub_file_seek grub_video_bitmap_destroy grub_errno grub_memset grub_file_read grub_zalloc grub_malloc grub_file_close grub_real_dprintf grub_buffile_open grub_error grub_video_bitmap_reader_unregister grub_free                          /                     O                     Y                                                                                               p       o            6                                       p                           5                    H                                                       /                    L                                                    (                   Q                                                                   ;                    V            (       s            i                   z                                                                                                                                                                                    	                   $	                   ?	                    `	                  x	                    	            F      	            _      
                  '
                    Y
                  
                  
                  
                  
                                _      ?                  N                                                                                                              .      r            .                          d                                                                                                                                                                                  !                    0                    >                    H                    W                                                     H                          (             H       .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @       b                                   @                                               &                           @                              .      2                                                 B                           8                              =      @                     `                           H                     H                                    X                     W                                     ]                      W                                    f                      d                                                          p      p                          	                            ,                                                   x      o                                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/cpuid.mod                                                                      0000600 0001750 0001750 00000005000 13417732100 0014725 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   HGx tH        
H         uH           H        1PH        1 H        I         I        H        H        H        H        H        ZH        H8H                           l                                       p                                                                       false Check for CPU features. [-l] cpuid long-mode Check if CPU supports 64-bit (long) mode (default). pae Check if CPU supports Physical Address Extension.    LICENSE=GPLv3+  extcmd cpuid                                                                                                                         E       g                                                                           	                      
                                       4                    G                      R                   j                       grub_mod_init grub_mod_fini grub_unregister_extcmd grub_cpuid_has_pae grub_error grub_cpuid_has_longmode grub_register_extcmd                                            )                     8                     H                     W                     a                     n                    x                                                      #                                                                                                       )                    3       (             g       8             k        .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                        @                                           @               H      h                          +                           x                              &      @                     `                           3      2                                                  B                     %                                     H                     (                                    X                     8                                    ]                      8                                    f                      ?                                                          H                                	                                                                                      o                              boot/grub/x86_64-efi/crc64.mod                                                                      0000600 0001750 0001750 00000004070 13417732100 0014550 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   H1I        HAI9sI2HIM3LHHHH        Hx    SI1A   I6BHֹ   1@t	MIL	HuL    H8   1HH LHIH1u?   1t	LHH	HuHK4H   uH    [H    H        H        H        H        CRC64                                                                                         @               LICENSE=GPLv3+  crypto crc64                                                                                                                      
                                                                                    	                              `       5                      H                       grub_mod_init grub_mod_fini _gcry_digest_spec_crc64 grub_md_unregister grub_md_register                             A                               
                                         
                                                     (             ?       0                     8             >       @             :        .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                           @                            
                    &      2               `                                   :                     p      `                              5      @                     x       
                    @                                                         P                                                         U                                                          ^                                                                                      8         
                 	                      (      Y                                                          g                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/keylayouts.mod                                                                 0000600 0001750 0001750 00000014330 13417732100 0016040 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   AVAUATUSH"H           1H          HIՊ<(tw<+tpH        H        Hu*H        H           H          HIU 1H        H        HH  HH        HI3     Ht$HI        AHuDH           H|$H        ЅH        u_   Ht$LAHt8H        8    HH           1H           |$
tH           1H        q 
  H        HHtX 
  HLAH= 
  t1H        8 u5HH           1H        HH        1;1I;] I        tHAHAMtLH        С        H[]A\A]A^ATGU
Sw@ t@t   J@H        Hct @t	     A   u@t	  E1E11u1H        H        @@tCw SC F   u@tEu        E؉[]A\1PE1H        H        H        H        H        ZH        H8H        file or layout name required prefix variable `%s' isn't set %s/layouts/%s.gkb premature end of file %s GRUBLAYO invalid magic invalid version Unknown key 0x%x detected
 Load a keyboard layout. keymap                                               a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z   1   2   3   4   5   6   7   8   9   0   
         	       -   =   [   ]       \   ;   '   `   ,   .   /       ;  <  =  >  ?  @  A  B  C  D  W  X              R  G  I  S  O  Q  M  K  P  H      /   *   -   +   
   O  P  Q  K  L  M  G  H  I  R  S  \                                                                                                                                                                                                                                                               A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W   X   Y   Z   !   @   #   $   %   ^   &   *   (   )   
      	     _   +   {   }       |   :   "   ~   <   >   ?       ; < = > ? @ A B C D W X             R G I S O Q M K P H     /   *   -   +   
  1   2   3   4   5   6   7   8   9   0   .   |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               LICENSE=GPLv3+  keylayouts                                                                                                                           5      <            q                                                              K             /                      >                      I                      d                      p                                                                                                                                                                                                       grub_mod_init grub_mod_fini grub_term_map_key grub_xasprintf grub_errno grub_register_command_prio grub_printf grub_unregister_command grub_file_read grub_malloc grub_file_close grub_file_open grub_error grub_free grub_memcmp grub_env_get                      #                     G                    Q                     b                    l             $       {                                  <                 
                                                                  g                                       p       6                    L            N       ]                    u            ~                                                                               N                                                                   +                    6                    {                                                           =                   G                    Q                   [                    g                    s                                                              .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .modname                                                                                         @                                          @                     x      	                    &      2                                                  :                           
                             5      @               `             	                    @                                                         P                                                         U                                                                                      (      
   	                 	                                                                                x      ^                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/crypto.mod                                                                     0000600 0001750 0001750 00000015450 13417732100 0015153 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    h          @     @  
 Hu1'@t2HHHHɈGHH	ШuII)IvLL3LHIH1HHAHL9tDD2DHt1t*D@DJH ADB GAAF9uHHȍHP FrJ F)SH1@   H        H@HH@vH{H        H@[HcH        IP1HI        HH        AATH        IH        USHPHt$(HT$0HL$8LD$@LL$HHH   H        HH        ՅtVH        H        1HD$pD$   Ht$LHD$HD$ HD$H        H        H        HՅuHP[]A\H        HH8HWXH        H        HtH9uH@XHHPXH@XH        HH8HWXH        H        HtH9uH@XHHPXH@XAUATUSHH  HH   vH        1H        IIHHS(LLHS0HS8Lc HS@HHH        LH  []A\A]AUI        ATA   UHSQH        HHtH3HAՅt$H[XH        HtEtHE1H1Z[]A\A]AWAVI        AUA   ATIUSQH        HHt?H3LI        AօtFHkHtHu HtLAׅt*HH[XH        HtEtLE1H1Z[]A\A]A^A_SHG(HHxH        HtH[HHH@0AVAUATIUHSH7H~@ tGHH1Hv
   Hu6L,LwL9s HE HLLP@HE H@HI1   []A\A]A^AVAUATIUHSH7H~8 tGHH1Hv
   Hu6L,LwL9s HE HLLP8HE H@HI1   []A\A]A^AVAUATUHSHH?H@    IH1Hw
   HuyM,LuHLM9HE sFLD$HHHHLH        HE HHLP8HE HLD$H@IHHPLH        1   H[]A\A]A^AWAVAUATUSHHHHx@    IHpHH1H
   H   Hw{L| ML9seHHHI        HPAHHLH{P@HLLLHHH        HHLHPAHH@HI1   H[]A\A]A^A_AWAVIAUATUSH(HGPH9G Ht$d  I        IHHAHIL|$  M;nPv8I~ AHH   LHHT$LH        Mn Hl$1I~PI        AHH   I~PAHI   I        LHt$HLL$ALHt$LLL$A1҉I;FPs46A4\HH        LAV(IVPHLAV01IVPHH        Hտ   HD$HtL0L`Lx.E1E111HH        LHL1H([]A\A]A^A_HHH@0AWAVIAUATUSHQHHxHH        HŸ"   H   HH{I        P8HH{P@HH{P@IHHP(HHsHHQPQ0HLHI        HQ Q0HHP8H1H{HPPAH{AH1H{HPHAH{AHHLx P@LHH        LH1HHPHAHAԺ   1HAHA1Z[]A\A]A^A_ATH        IULSHLD$HHt4LD$LHH        LHHH[]A\H        H"   []A\ÅtH           1H        111H9tDE1D8AHL1HAVI        AUAATIUS1Aփt3
t.t't	uߍE^w׍CD9sωA,1DI<1)H        H        H        H        [1]A\A]A^assertion %s at %s:%d (%s) failed
 debug all gcrypt error:  gcrypt Too large md context access denied 
    LICENSE=GPLv3+  crypto                                                                                                                                                                         m                   l       7                      D     c      #      Z                 p                      {                           ,      "            ?                                                                     :            5                                        	      $           )      1       )                 :                     F    
      )       Y          %       m    <
                                                                                                                                     o      1                                             -                 >                     I    V             `    Z             q                     {    [      m                                	      i           N              grub_crypto_ecb_encrypt grub_crypto_lookup_md_by_name grub_memmove grub_crypto_hmac_fini grub_crypto_hmac_init grub_xputs grub_fatal grub_crypto_cipher_open _gcry_log_error grub_memset grub_getkey grub_burn_stack grub_crypto_cbc_encrypt grub_vprintf grub_crypto_gcry_error grub_cipher_unregister _gcry_burn_stack grub_printf grub_crypto_memcmp _gcry_assert_failed grub_password_get grub_cipher_register grub_zalloc grub_crypto_cbc_decrypt grub_refresh grub_malloc grub_crypto_autoload_hook grub_md_unregister grub_strword grub_crypto_lookup_cipher_by_name grub_crypto_hash grub_error grub_crypto_hmac_write grub_md_register grub_free grub_crypto_ecb_decrypt grub_env_get grub_crypto_hmac_buffer grub_crypto_cipher_set_key                                                                    '                    4                    C         +           P            #                   )                #                                           -                                                           <                          +                   5                   \                   q                   {                               C                                    	           $            {       <                   a         !                       {                                      {                !           :                                                  	           K         	           |                                         /         %           L                    x         	                    )                               ,         )           }                                                  )           C	         	           	                    	         '           	         
           	            X       
         &           @
                    
                    
            f       
                    
                     .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .modname                                                                                              @       
                                   @                     @                          &      2                     h                             5                                                          ;                                                         K                                                         P                                                                                      P      	                    	                                                                                     Y                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/gcry_dsa.mod                                                                   0000600 0001750 0001750 00000006530 13417732100 0015425 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    
          @     @   H>H        AWAVAUATUSHhL"Ht$(M  LjM  H  L1M  HYH  LyM  HAHHD$   1LH        Յt  H        HLHT$҅U  1LՅF  HLHT$҅1  H        {Ջ{HD$Ջ{HD$A~HD$LLl$HHH        LHLLl$Ht$(I        H|$AHLHT$H|$AHL$ Ll$HT$HL|$0L|$Ht$0HH        HD$@    HL$8Ll$PLL|$HHD$X    HHHH        H        LHE1H        ЅH|$ALLH1Et	      Hh[]A\A]A^A_AVAUATUSL6Mt{H~ ttLfMtkHnHtbLn MtY}H        HLLHLH        HHH        ЉHH        ЃЃ   []A\A]A^H        H        H        H     DSA pqgy pqgyx  rs dsa openpgp-dsa                                                                                                                                                        LICENSE=GPLv3+ verify mpi gcry_dsa                                                                                                                                                                                                           	                                       -                      @                      R                      a             x       w                                                                                                                                                           grub_mod_init grub_mod_fini gcry_mpi_cmp_ui gcry_mpi_get_nbits _gcry_mpi_mulpowm _gcry_mpi_free _gcry_pubkey_spec_dsa _gcry_mpi_fdiv_r gcry_mpi_powm gcry_mpi_mulm grub_crypto_pk_dsa gcry_mpi_cmp gcry_mpi_invm _gcry_mpi_alloc                                      
                                                                         5                    {                                                                                T                    o                                                                                                                                                                                                   	                            (                    0                    H                   h                    p                                                              .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                          @                           
                    &      2                     #                             :                     @                                    5      @                            
                    @                                                         P                                                          U                                                          ^                            	                                                                    
                 	                                                                                	      g                                                                                                                                                                                                      boot/grub/x86_64-efi/cryptodisk.mod                                                                 0000600 0001750 0001750 00000036750 13417732100 0016034 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    (:          @     @   Hu1'@t2HHHHɈGHH	ШuII)IvLL3LHIH1HHAHL9tDD2DHHHHP~ tHAUH        ATI1UHSHӺ   HLl$H1ۺ   HH        Љڸ   )A؃s   HHHH        11J<*Hʊ	Httt$Á   uH[]A\A]SH_@1H        H          H        I        AK0uH{(H        HC(    [AWI        AVAUIATIU1SHK!I        9s   HLHAS LLI   Aր{  t\k!L{A  u   LLHA{!K L[]I   LA\A]A^A_H[]A\A]A^A_1ukATH        IUHSH HHtAHKxH           H|$1I        ALH|$Յt   H1H []A\t1t*D@DJH ADB GAAF9uHHȍHP FrJ F)AU   ATIH        UHSH        APӅ      H        HӅu5H        HLmHt_H   LH        ЅtiH11H}H        H        H        H: uHtH9Cxt)HY[]A\A]H           1H        ⋃  AD$H{( uY1IH        H          H        I        AH{H        HHC(u        %I\$@HC AD$  ID$HCxID$ C01Z[]A\A]AWH        I        AVIAUATU1SQHH    HthH  H        AׅuKH   I        AIHC8Nd%BH H8AIHCPHt	H8AIH  HLHH}H        HI  H        H(LI        H  H  H        Aׅ  HH        I        AH   HAHX  H        HM   1HI        AЀ; tHHE8H HtpH HÃFHC}hwSUhH        $H        .H        "H        H        
H        HAHÃ}lwcUlH        $H        "H        H        
H        HH        HAHUPHH2AHHC 1H;  s=8  yWq0	GH@p8  q0yW	GH@pHX 
Hm 5 L)LI1Z[]A\A]A^A_AW
   AVAUATIUSH   H8HT$ HL$DD$HHzU  A|$h HuI$     I$   HD$    HD$8HD$ H9D$  ID$8H HhI$  Ht2A$  Ll$IM;$   tLLЅ  M$   1   H|$@H        AD$lȃl  H        $ID$`HxHH        HHu
"   n  A$  HD$HHHD$`ID$`P(ID$`I$0  HHt$8P0ID$`Ht$`   HP0ID$`HP8ID$`HP@H|$@Hƺ   H        HH           HD$H D$DD$*Ht$    A+$  HHA$  D$DHHD$@eAL$pHD$HHHHHHH L<ȉD85D$HT$@I|$HH։D$@ID$8H HHH        Ѕ6  A|$h  AT$hH        $и   |$ I|$8HD$A$  H4tLD$@H        HHLD$@H        HHЅj    M|$8|$ A$  IHp   H  Hx@ o  A   1ALHH_  HD$H,JD5 I        HD$(IGHD$0H;l$(  IHH|$`I        HPAIHHHT$@HHAIHHH|$0Q8IHt$`H|$@HJHAIHhH   Hx@    A   1ALHH   HD$H,JD5 I        HD$(IGHD$0H;l$($  IHH|$`I        HPAIHHH|$0P@IHHHT$@HHAIHt$`H|$@HJHAIHh듸     
     ID$8HT$@I|$@I        HH HHAׅ  E1I        A$  D^  ID$8DHl$HT$@H HHHHHAI|$8|$ HHHHHtAH        ЅW  ID$8HHT$@HH HHA11L@	L@HHttt$@ID$8H Dh=   Ht$@H|$PH        A   I$   A$  @t$_H|$`I        HDH!ʈD$_!H$   !$   HT$PAր$    tUA$  Ht$^HD$_AA1fA uDl$_H|$pHT$PHAH0@9W҈uHHHD$LH|$`H,H        HЃ|$    I|$8A$  tHH        HHHH        HHЅ   HLH|$`H        L   |$ I|$8HD$A$  H4tH        HHH        HHA$     HD$H|$   )1%|$ HL$ HH        u
H        HĘ   []A\A]A^A_UI        II1HAWIH        AVIAUIH        ATIJ  SH H_@LUH        sAANLL1H{(MH	HHsHH        ALUXEZu>ANLHLE1H        HLHe؉H        [A\A]A^A_]DME1H        H        R  H        ADMHe[A\A]A^A_D]UH        HAWIAVIAUATISHOLo@HHuHHá        H  ANLLHH        HL}PMAu1H        H        |  H        MI        AANLA   HLH        HLI        ZYt(EHA׋EHe[A\A]A^A_]H        H        Ht%ANHuII}(1I	HIuLH        &   1H        ҉EHA׋EHe[A\A]A^A_]E1H        AWAVAUIATIUSHHXGhH8uD   uH+hLI        AօV  H8  LLI        A׃{lL  uOH{P
   LG I@  LD$LLHt$H        LD$H{HHt$DAօ   {ht{h   LHcH{@HLAօt   H   H        L   HC8HcLIt- H HPA׋     H        HH   u"V1I           1H|$H        Ћ  u"H   LHt$D$A1HX[]A\A]A^A_UHH        SHHQHHCuH        HС        UH        QТ        HCxHE H   HE@   H        HHH        1Z[]AVH        AUIATIUSH(H   H        LH        H0UHá        uhHuHm HLUAt&H        H{8H{@H{HHD'LLHH        H            1[]A\A]A^ATH        I        UHSHHtH   HAԅt	H1H[]A\H        Ht!HO H9   uHWr9   tH AUATUHSHH_"{ u{  uH           1   ; H                Hm H        HHt;L@xH        H          H        1I        A  C 1H                HH        H        H        H        H     1: r  H           HH        []A\A]{ C uuLtHH                1H    H        H        H        H        H] H                H    I        ;(u1HH        LdA<$)uH{A$ AA$)H	HAHHۡ        tHH        I        Ht@L@xH        H        H          1I        AHA1!HH} H        H߉D$AԋD$H[]A\A]ATH        UHSHHuH        1qHE1H        HuHHH        AHH        EtH        H        1: tH        H8 []A\H        PH        1H        H        I        I        H        H        H        H        H        ZH        H        PH        ZH        H                                                                                                                                                                                                         u                                       a                                       b                                                                       Closing disk
 cryptodisk disk/cryptodisk.c crypto%lu crypto No such device cryptouuid/ Opening device %s
 luks luks_mount  %lu  -ecb -cbc -pcbc -xts -lrw -null -plain -plain64 -benbi -essiv: Reading %lu sectors from sector 0x%lx with offset of %lu
 grub_disk_read failed with error %d
 Writing %lu sectors to sector 0x%lx with offset of %lu
 disk.mod not loaded device name required already mounted as crypto%lu
 no such cryptodisk found Mount a crypto device. SOURCE|-u UUID|-a|-b cryptomount luks_script uuid Mount by UUID. all Mount all. boot Mount all volumes with `boot' flag set.                                               
                                                       LICENSE=GPLv3+  crypto extcmd procfs cryptodisk                                                                                                                      	                      W                        .                                  
                                                             5                      A                 X                      l                      {                           q                                                                                                                                                                                       #                     ;          E       W                     n                     ~   	 (                                                                                                                                                                                                                                )                     B          1       e                     z                                                                                                                                                   grub_mod_init grub_mod_fini grub_crypto_ecb_encrypt grub_strlen grub_cryptodisk_setkey grub_procfs_entries grub_disk_open grub_memmove grub_cryptodisk_insert grub_strdup grub_cryptodisk_decrypt grub_snprintf grub_disk_dev_register grub_disk_write_weak grub_disk_read grub_errno grub_memset grub_crypto_cbc_encrypt grub_cryptodisk_get_by_uuid grub_crypto_gcry_error grub_disk_close grub_cryptodisk_list grub_print_error grub_zalloc grub_strcmp grub_crypto_cbc_decrypt grub_malloc grub_real_dprintf grub_crypto_hash grub_error grub_list_remove grub_free grub_disk_dev_unregister grub_cryptodisk_get_by_source_disk grub_register_extcmd grub_device_iterate grub_list_push grub_crypto_ecb_decrypt grub_memcmp luks_script grub_strtoul grub_crypto_cipher_set_key                                                                  X                    b                   q                   {         $                                                                                                       +                           K            5       Z         /           u            K                                                      1                                                               <                &           8            W       B                   Q                   [         $           l                                                                     !                       j                           X         #           p                             !                       j                   o                   {                   {                           =                    J                   V                   b                   n                   z                               (                                                                                                      B                    ^            P       t                     	                    	         (           	                    	                   
                    ,
         "           
                    
                    i                                                            3                             .                               ;                                                         1         .           V                                               .                                        .                    $           -                   A                   b                                                   o                                                                                    3         #           k                                                                                                         $                       o               (           ,                    8                    l            V      }         &                       o               2                               \         %                    (                    #                              &                    w                             (                                                                                                             	                    +                   :                   L                    u         (                                                                                                            b            j      {                                                                                                        $                                                                   	         ,                                                 ;                  N         &           q                   z                                              ,                                                                                                            "                    1         *           ;                    P                   Z                  d                   u         $                                                                              *                                                  #                    /                   @                   Y                    d                    r            ?      |                                                                                  +                                        0                                        -                                        )                    0                    '                         H                   T                   `                   l                    x      (                   0                   8                   @                   H                   P             -	      X              	      `             	      h             c	      p             3	      x             i                   b                   	                   I
                                                                                                                                                        "                                                                 0             u      8             =      @             O      H                   P             0       .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                           @                                          @               @%      (                          +                     P      P                             &      @               h6                                3      2                     J                            G                           `                              B      @               8                                 M                     P                                    ]                     `      0                              b                      `                                    k                      u                                                                                          	                      H"                                                         9      t                                                      boot/grub/x86_64-efi/keystatus.mod                                                                  0000600 0001750 0001750 00000006000 13417732100 0015656 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   AUH        ATUH        SVHGH   H        8Ӄځ  x Eډځ  x  E1H        AՅu#H        1HtHx0 tH rH        IHt1H        L 1MtID$0HtL	M$$1AH        H        \   H        AՅxu$Y[]A\A]H           1H        Z[]A\1A]1PI        I        H        H        H        H        H        ZH        H8H                          s                                       c                                       a                                                                       expect_mods: %d
 keystatus commands/keystatus.c false mods: %d
 Check key modifier status. [--shift] [--ctrl] [--alt] shift Check Shift key. ctrl Check Control key. alt Check Alt key. LICENSE=GPLv3+  extcmd keystatus                                                                                                                             0      M            }                                                              	                      
                                       4                      E                      W                      j                      u                       grub_mod_init grub_mod_fini grub_unregister_extcmd grub_term_inputs grub_real_dprintf grub_term_poll_usb grub_error grub_register_extcmd                                                 &                    Z                    m                                                                            6                                                           0                           5                    ?            @       I            [       S                    ]                   g                    s                                                                          v                    |       (                    8                    P                    `                     .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                        @                                          @                                               +                                                         &      @                                                3      2                                                  B                     8                                     H                     8                                    X                     H                                    ]                      H                                    f                      O      
                                                    `                                	                                                                                      o                              boot/grub/x86_64-efi/cs5536.mod                                                                     0000600 0001750 0001750 00000007370 13417732100 0014565 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    8          @     @  
 H1" uHH8p   A   HHH        H<$D$    HH        ЋD$HATAԺ   UH        SHH<$t$պ    D   H<$t$պ     AH<$t$պ  HH []L	A\ATAԺ   UHSH        HH<$t$Ӻ  D   H<$t$Ӻ     H<$t$Ӻ  HH H[]A\ATUSH        Iĉ@uM tH        &tH        IT$(H9vH        []A\   1H        []1A\AWA׍WAVIAUAATUSHfT$DH        DՅuqCD- DՅu^fT$DDՅuCfT$DՅu.CD-DՅufT$DՅuAH[]A\A]A^A_UH        HSӺ  HH       H           Htƃffu w#H           H1H        []N1VV؍VfDH1[]AWAVAUI1ATDDU@SH        HHL$ӅuTD$uH           H        /IDAE    L9sIL ډDAׅuH1H[]A\A]A^A_SH`    H          H   H<$t$H<$t$H       H<$t$H@      H<$t$H      H<$t$  $  H<$t$  %  H<$t$   N  H<$t$H @     @H<$t$H 0   	  @H<$t$H     
  @H<$t$H       @H<$t$H  @   H|$t$H<$t$H/  @!  H|$ t$(H<$t$HO  @%  H|$,t$4H<$t$H?  @&  H|$8t$@Ӌ%     `% H<$t$H<$t$     `H<$t$H    `H<$t$H    `H<$t$H   @  D   H<$t$H 9@9    H<$t$H  !   H<$t$H 03"   H<$t$H 67#   H<$t$H (/$   H<$t$H 45%   H<$t$H   `  H<$t$H     H<$t$H8  `  Hİ   [SM bus error NACK received SM stalled SMB controller not enabled
 invalid divisor no SPD found LICENSE=GPLv3+ cs5536                                                                                                                                                                    G      r            (       2       )                  C                      Y     z             p                                                   	                                                              u            Z       x        grub_cs5536_smbus_wait grub_cs5536_find grub_cs5536_read_spd_byte grub_pci_make_address grub_cs5536_init_smbus grub_get_time_ms grub_cs5536_read_spd grub_cs5536_init_geode grub_error grub_pci_iterate grub_cs5536_write_msr grub_cs5536_read_msr     .                     G                     g          
                     
           Q                    k                    {                                                                              }                                &                   B                           .         	           O            R       ^                                         .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .modname                                                                                              @                                          @               (
                                &      2                     _                             5                     P                                     ;                     P                                    K                     _                                     P                      _                                                          h            	                    	                      0	                                                                Y                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/ldm.mod                                                                        0000600 0001750 0001750 00000020120 13417732100 0014375 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   1HH9sHHHGH	Ã>   0~8Bu   AUIչ   ATUHSHH   HF(Lg(IHG(HcV H        Hv1ɅLe(u5   H        HH        1ɅuHCHCHIE HĈ   []A\A]AWH        AVAUATUHSH  Ht$0H|$H$  Ǆ$      H        ЅtH        E1     D$  1ۃttAE   Ãu  EtHD$Hx( uHH        HtHp]HǄ$      H$  H        H|$H        ЅtH             H$  Hr   1LD$U;  H|$H        ЅN     H        H|$UH        Ѕf|$a fD$cfA   I        AHL$0HH  H$   @   HH        I        L|$0I@@ I?AIGH$p  1HHE H$  <8 t	HH@uH$  H        HHH]  8   I        AHI)  !   H@   AԿA   IFAHHItI~ uH        I~  @   HӺ    H$E  I~IF@  I@@ I>AIF(    IFIF     H$  H$  HHHHHD$HHL$H;\$,  1L$     HH|$H        Ѕ
  L$  I   H        H        Ѕ  fAGf   A4   H   H        HH	  H@    AIOhHL$ ITH9vkHxI        AHHE@tQALHI        HAAHU@D AIDHtH;t$ sHxH>H9T$ wH  Ht$ HEAHt$ HUHHE HAHEHU  IF HE8In H$  II9HvHI        AHIGX{  HHH        HIWXD LdA$ITH99  HxAHIG  A$HIt$H        A$IWH        I         1IWI6AHI  A$IDHDH9  HDH9  HPH9  @H|H9  HGH9  wHD0H9  HH        IW@IG(HBIF(IGPM~(H$  HH9uJHD$ HD$H9D$   1L$     Ht$ H|$H        Ѕ  H$  H{   H        H        ЅufCfr{Qh`   H        HI  LpH@   8   H@    @8   HIG@  H     IG@@   IG@@     IG@@$   Mo@A}$HIE(IG@Hx( 9  ;HkhHDH9gLH          HD$HD$ IXH        IL  HDH9o  HPH9L$(\  @LdI9J  ID$HHD$8AD$HDH9)  ID$Mn(HD$@M   I}XAT$79  HHt$@H        Ѕ   |$(IE(IG(  IG    AG      H        IG@H  IE@P$;P   IU@B HHB(H@    IU@B HHB(H     IU@B Hr(xHz L|IF(IGPM~(H$  HH9uJHD$ HD$H9D$   1L$     Ht$ H|$H        ЅH  H$  H{   H        H        ЅufCfr{2h`   H        HI  @8    H@    HkhH     ;HDH9  HH        HIGXzHHH        HIWXD HDHDH9IXH        aHD$HD$ MmP1L$     Ht$H|$H        Ѕ	  H$  H{   H        H        Ѕt'H$  HH9uHD$HD$H9D$r  fCfẁ{3uHkhHDH9  LdI9  M|$I|$I9l     I        Aվ   HD$ I|$AAt$HD$(M|7I9/  I|$AHD$8AIDH9  Mn(MgM!IuXAH9uHLH        ЅtMmPAM|I9  IGMN E1HD$@Mt6Iy@A:u$LL$HHHt$@H        LL$HMDMI8Iu HuaAI|7HD7H9O  HH        IU@9B UHL$ HHB(HH@    L`H@    *AEH9u(HI}@H        Iu Hk8H   IE@AEHL$(    Hk8IE@HAEHL$8Hk8IE@HHAEHk8IE@@    AEHk8IE@@    AEHk8IE@@$   AmH        Hk8Im@HE(AEHk8IE@H@(Ht?HL$ H@    L`H@    HAE<LH        ЅLB  I^(H        HI        tAE1D;cH{@sDAHk8H|(LcPH{XH{H;HLI^ HtHk8H;AHHAI>ALA  IXH        LIG    AG   8   H        HIG@+H     IG@IU(|$(HPIG@@    uIG@@    !|$(IG@@   IG@@   AD$HL$8CLdIL$H9OAt$HL$@HD1H96MO@H        I|$HT$(LL$8LL$8HL$@HT$(AA0AD$H|7HD7H9Io@H҉E IG@P P$Io@H        }$HHE(IE@Hx( ҉P$IE@p$Hx(H        HHIU@HB(HD$0H8H        1HĘ  H[]A\A]A^A_H        H        HtHH H        H     HH        H        HH        H                   X~B4ϳPRIVHEAD VBLK ldm/%s/%s ldm                                     LICENSE=GPLv3+ part_gpt diskfilter part_msdos ldm                                                                                                                            b      M                                                                          	                      
                                       )                      <                      [                      j                      w                                                                                                                                                                                                                          "                     >                      grub_mod_init grub_mod_fini grub_strlen grub_disk_get_size grub_diskfilter_get_vg_by_uuid grub_xasprintf grub_realloc grub_memmove grub_disk_read grub_errno grub_partition_msdos_iterate grub_gpt_partition_map_iterate grub_zalloc grub_malloc grub_diskfilter_list grub_list_remove grub_free grub_diskfilter_vg_register grub_memcmp       i                                                                                                                           e                                9                                                                                                           M                    {                                                                                >                                                    	                           L                                                            T                    w                                                                                                                                   	                           E                                                                                                    	                    	            	       	                    
                    V
                    x
                    
                    
                                	                                               '                    }                                                                                                                                                                                    z                                                            A                    d                    n                                                                                                                                                                .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                          @                                               &                                                         .      2                                                   B                     @                                     =      @               0      0                           H                     `                                    X                     o                                     ]                      o                                    f                                                                                                                	                      8      J                                                   `      o                                                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/date.mod                                                                       0000600 0001750 0001750 00000006200 13417732100 0014541 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    @	          @     @   U   HAWH}AVAUATSHx|H        ufH}H        Ѕ  H}H        PEH        UMI        uDMDEP1AXZ1  E11I1   H}H        K<
   HuH        H}HUDA-tA:
  A   E1A   DIcADA   EH}tvD8DlDpDt   CL% HǺ
   HuH        AŉxЋxDlDtDpHcщD   A	AuHE8 uZAuEuEEAEEEEIcċT;TŠ|-;TŤ'AE9uEkIAD!D	D9|H           1H        rH}H        Ѕt        StEfEtEEtEEtEEtEE tEEH}H        He[A\A]A^A_]H        PE1H        H        H        H        H        ZH        H8H                                                 ;       ;   %d-%02d-%02d %02d:%02d:%02d %s
 invalid datetime Display/set current datetime. [[year-]month-day] [hour:minute[:second]] date   LICENSE=GPLv3+  datetime normal date                                                                                                                               D                                                                                                	                                       /                      A                      L                      X                      n                                                                                                               grub_mod_init grub_mod_fini grub_get_datetime grub_set_datetime grub_errno grub_memset grub_get_weekday_name grub_register_command_prio grub_printf grub_unregister_command grub_error grub_strtoul    &                     8                     P                     a                     s                                                               M                                                                                )                    |                                O                   1                                       y                                                                                        .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                             @                                          @                           
                    &                     @      0                              .      2               p      ~                             =                                                          C                                                         S                                                          X                                                           a                                                                                                                	                                                                                      j                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/gcry_idea.mod                                                                  0000600 0001750 0001750 00000010030 13417732100 0015546 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   fvRD1Ҹ  I   fAu)É1fAft1fǉAfu։D)ÉAWAVAUATIUH        SHӺ   HH|$Ջt$fDT$
LK`D$fT$HfAffD$Aft$fDT$
D׸   DAA)fEt-AE)ft"E1DEDAD)fE9AADAfyAfDYA)fEAt+AE)ft E1DDD)fA9AAqEE1D)ft()fEtE1DDD)fA9LyAwEE1ЉALD)ft+)fEt!EDDD)fA9@@DDD1D1D1E1M9tEK`ft$f|$
fDD$fT$ft*ft)f9   )   )sffDCbf{dfD$ffDD$f|$
t/ft!։Љ)f9fD$   )   )fL$fAffDD$Ht$fD$f|$
fD$L   Ht$I|$   Ht$
I|$   Ht$I|$   H[]A\A]A^A_PHHHHH        Z0   H        AWAVAUI        ATUSHLsH   ?Ht$AfkfDcA{Af$   HD$4Af$   H$   fD$   fD$   HD$fANfAHA~I        fM
fEAfAvIVfE~zL$Iމt$AAՋt$fEfD}L$fuH;l$fM ufS^fC\{`fT$2fD$0AfkbfDkdA{fAAfD$.fDl$,fl$*Ht$(fD|$(H|$h   H        H|$(h   1H        HĘ   []A\A]A^A_ATIUHS    H_huǇ      HH        HHLH        []A\0   H        H        S8 u    H        H     H           H8    t/H           H        H        H        Ǉ       1LfHHuH,   1ҍrAfPLcAMcF@fA	D	fBTPHptD1HwhH        H        G   Љ[H        H        H        H            do_setkey lib/libgcrypt-grub/cipher/idea.c keylen == 16 IDEA                                                                                                         LICENSE=GPLv3+  crypto gcry_idea                                                                                                                                               .                                                              	                      
                                       $             `       ;                      R                      c                      w                                             grub_mod_init grub_mod_fini memcpy _gcry_cipher_spec_idea grub_cipher_unregister _gcry_burn_stack _gcry_assert_failed grub_cipher_register memset      k                     "            ]       4                    F                                        }                                                    >                  ]                                              #                    4                    R                    a                    k            !       u                                >                                              $                    0                    :                                  .       0                   8                   @                    .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @       D                                   @               	      (                          &                           
                              .      2                     3                             B                           `                              =      @                     `                           H                     0                                    X                     @                                    ]                      @                                    f                      G      
                                                    X                                	                      	                                                          (      o                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/datehook.mod                                                                   0000600 0001750 0001750 00000005640 13417732100 0015431 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                               @     @   AUH        I        ATIUS1H  H        H|$Ѕ   It I<$H        Ѕ   w7H        $L$6L$
/L$(L$!L$L$H|$H        CH           H        1I        AH        HHQH[]A\A]ATI        US1I,H1H        H        HHH        H8u[]A\ATI        US1I,H11H        HHH        H8u[]A\                                                                                                           %d YEAR MONTH DAY HOUR MINUTE SECOND WEEKDAY    LICENSE=GPLv3+ datetime normal datehook                                                                                                                             M            H      E                                                        	                      
                                       /                      ?                      M                      c                                                                   grub_mod_init grub_mod_fini grub_get_datetime grub_env_export grub_snprintf grub_get_weekday_name grub_register_variable_hook grub_strcmp grub_env_unset                                         0       (                     J                     e                                                                                                                                           0                           !                    3                    L            0       f                    x                                  p                    w                    ~                                                (                    0                    8                    @                    H                    P                    X                    `             %        .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                        @                                          @                                               +                           h                              &      @               x      8                          3      2               8      -                             B                     e                                     H                     h                                    X                     w                                    ]                      w                                    f                            	                                                                                    	                      @                                                                o                                                                                                                              boot/grub/x86_64-efi/gcry_md4.mod                                                                   0000600 0001750 0001750 00000010010 13417732100 0015326 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   #EgGGܺGvT2G    GT    HGAW@   H        AVAUATUSHHHDwDgoD?HD,$Dt$D1DT$D\$0!DD$4DL$8CD= D1DC"D1!D1Dd$ ։1!11ыT$!1l$1!1t$1!1L$1!1T$1!1D1!1t$$1!1L$(1!1T$,1!1D1!1D1!1D1!A1A1|$<A!AA1A!DEyZ	!D	ADD5yZ	A!!D	ADEyZ	A!!D	ADEyZ	A!!D	ADDt$A!EyZ	!D	ADDt$A!E6yZ	!D	ADDt$$EyZ	A!!D	ADEyZ	A!!D	ADEyZ	A!!D	ADDt$A!E6yZ	!D	ADDt$(A!EyZ	!D	ADEyZ	A!!D	ADDt$A!EyZ	!D	ADDt$A!EnE6yZ	!D	ADDt$,A!E4nEyZ	!D	ADDyZ	A!!ʉȍnD	1D1ЉEnD11ƉEnD1111ʉDD\$(11EnDE3nD\$11DEn1D\$$1DDT$11DEn1DT$,1EnDE3n1D\$1DDL$E	n1щ11D1DDD$nE n11DE2n11DEn11D11SKsHH[]A\A]A^A_AVAUATIUHST@Hu+HwH        п   H        CCT    M   {T t=Ht HcCT?PIH͉STAT$T11HH        HttM4,I   H        LL)I?vHH        I@CT    CHH1?IH9tHcST?rsTA4H@t[]A\A]A^AT1I        1USHAԋkHcCTL D$    	ՍP7STDHcCT7CPSTD HcCT?PSTD 11HH{8   1H        DDcL@kPHsCMDADcO@kQCNHCR CS H        H           ЋCCCCCCC []A\H        H        H        H        MD4 1.2.840.113549.2.4                                                                        X       @                               0 0*H       LICENSE=GPLv3+ crypto gcry_md4                                                                                                 ,                  B                                                                                    	                                       $             `       :                      K                      R                      e                       grub_mod_init grub_mod_fini memcpy _gcry_digest_spec_md4 _gcry_burn_stack memset grub_md_unregister grub_md_register   8          
           2            /       C                                                                      /       &                                                  /                           .                    8                    D                    N                                                       p                    `       (                     0                   8                    @             *       `                     .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @       X                                   @               P
      P      
                    &      2                                                  :                                                         5      @                            
                    @                     8                                    P                     G                                     U                      G                                    ^                      N      	                                                    X               
                 	                      	      v                                                    `      g                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/datetime.mod                                                                   0000600 0001750 0001750 00000003620 13417732100 0015423 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @  
 S1HHH        HH@XHxH        HtH           1H        +$fD$CD$CD$CD$CD$C1H[S1HHH        HH@XHxH        HtH           1dfHf$CD$CD$CD$CD$CD$H        H@XHx H        H1HtH           H        H[can't get datetime using efi can't set datetime using efi      LICENSE=GPLv3+ datetime                                                                                                                                                                                                       )                   ;                      F                      Q                       grub_efi_system_table grub_get_datetime grub_set_datetime efi_wrap_1 grub_error efi_wrap_2                          !                     2                     C                                                                                                                  
                              )                     .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .modname                                                                                              @       9                                   @               h                                &      2               y      :                             5                                                          ;                                                         K                                                          P                            	                                                          8      	                    	                            \                                                    p      Y                                                                                                                                              boot/grub/x86_64-efi/legacycfg.mod                                                                  0000600 0001750 0001750 00000126520 13417732100 0015560 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    Щ          @     @   H    1H           1H        H        HH8H        @.t7@/t4G<	w@GÍG<w@GÍG<w@GÃ1ø   AW   H        AVAUATUSHH        H(H;Ѕt1P  tH{H        HvLk$   H        I}HIt    H        HHtH@   MfHI        )HD$1E1IA|$t$L$LD$AЃ   L$LD$t$A	ǃuĉ<.   )DEHHD|DUEH;l$uA<$H        ЃtMA|$H        Ѓt6	   w'M)SLDsIcH        HHHuHH        1H(H[]A\A]A^A_ÅuH        @1H        H2>-u~-tH        H        HQH        HH        tHH        1H        XH        H        u9HT$t$H        H        Ht$HT$ugH        <ucHT$t$H        H        Ht$HT$u)H        H           H        HHH HHH           1H        HAWAVAUA   ATAUH        SHHXE~TH        H;Յt:H        H;ՅtH        H;ՅT  H            AHAuA"H           1H          AD$H        LcD$ILIHsIHD$HxLH        HHl$IH        8wSH        H        Ht(HT$t$HP uH            j  H                     uPH        H        Ht%HDHP uH              H             H        H        Ht'H11H        ЉH             11H        H   HH   HBx    Lj IEH   Lr(AŀA)M   IF0H        H        HxՅHuA.Mv(AMuDtIF0H        Hl$HxՅHT$tIF0H        Hx҅HT$tIF0H        HxAuEAAA        t  A   At0tXDMaDH           H|$11I        ARt(DH           H|$11I        A&DH           H|$11I        AHt$1H        H        H        H        H        H        Ht(HT$t$HP uH              H             ALt$t}AD$IfD$.-rD$0 D$HD$IWIHHH        HD$.DEaH|$1DH        KD>c   K|>DD   1I        Aѡ        uQH        H        Ht&Lt$HP uH               H                     tuNH        H        Ht#Lt$HP uH            KH             L;t$tLH        HH           1H           1   H        H;ՅuH            H        H;ՅuH            lH        H;ՅuH            DH        H;Յ4H            HX[]A\A]A^A_UHAWAVAUATSHHt$H           1H        ҉  HHW:eAAăEHH|cEEtH        Ѐ} tEuH        } t@}H        @HHE    H        H        HIK  HH        HHE/  H        Hu)   H        H  HH        1H}H        HItI9H        H}I        8     H        ЅtIA} @uHEHUHuLHEH        LHEI        AH}    LI        AIH}ALItH        HIu0LAHAH}AH}A1AH        q  H}AHuILHuAIWI| HuH        MH}AHE    HEH;E   Ht~   H        HIuH}H        kLuLE1I        1ɿ   H        M4$R1j Sj LH I        A LAH} H} u?Lu1H        H        LH        LH        Hu	H]HI        I        AIH}AHItH        HIuHAH}ALAdH}AHLAHSH]I<H        HHLA8AH} td   H        HIuH}AHE   E1E111LI$PH        j Sj H LH        1H        LI        H        H        LAH1Aԃ} tYH        Ht8 tH1Ҿ   H        Ѓ} t@}H        @H        } uHe؉[A\A]A^A_]AUATIUSH(        u?t$H        H        HH        t$   LHP       nH--nounzifD$p HD$H        LcILHHu           HxIULH        HD$H        HH        Hu'H        H           H        =HHP HH        ҉H           1H        H([]A\A]AWH        AVIAUIATUSH(IH        H8H        HH  HH        I        LLHH        AFHߍPIHcHpH        LLHH        HH        HHH        H   H|$LAHH        LLHH        IcVI6HH        HH        v   Ht$HHHLHt$HHt)@       IEHH        LHHH        HHD$H        HHD$   HH|$AH        HHHD$H        tLL
Ht$   H1H   HHt AFHߍPIHcHpH        1ҹ   HHHtLLHH        H|$ H        t   Ht$LLHHHH        HHD$H        HH  HD$HIv   1H        ЅHH        @Љ1H([]A\A]A^A_SH        HHHЅu[H           H        HH        1[UHSHH  H8-ux-tQ   1HH        H1҈tHH=   u   HHH        Ѕ=H        HHt'HHH        ЉHH        ҉1H  []USH  uH           1\HH        H        о   HH        ЅtHHH        Љ1uH           H        H  []SE1H        H        H        H        H        E1H        H        H        H        H        E1H        H        H        H        H        E1H        H        H        H        H        E1H        H        H        H        H        E1H        H        H        H        H        E1H        H        H        H        H        E1H        H        H        H        H        E1H        H        H        H        H        [H        SH        H        H8H        H8H        H8H        H8H        H8H        H8H        H8H        H8H        H8H[HHHP~ tHUH        HSHHHHt$H1Ht$H9uHH        ЅH[]AWH1AVAUATUH,7SHQH9r:H)HcH|H        HIt|Du LkE  HI        Dtr'DH<'u6HH        AH        H        HIAEuH LDu 1Z[]A\A]A^A_AWAVAUI        ATIUHSHHh  H    HT$ A<$@uA$<#t"tII           AՅtIHH        IōxH        McHcLHHHH        EtB|#
uB# B#
BD# Hc  AՅuA?=tIA?@uMI        D$    M)IMLLH        HHL$ЅHL$u%B<1 uH; AE t uH        <@D$IH|$6uHH        1H          A?=uIA?Յul$H        HL$(HkHHȋP0HD$%   tNLH        I,L9wHLH        L)H/  }H        ЅtHŀ(  H|$h~   HD$`    11E1E1D$   D$    A? S     H        LH        I        Ѕ   ED$   H        LD$AօuA11IH        H        : uD$H        D$           H        LAօ      DDH        LAօ      DH        LAօ      DDH        LAօ   DA?@t,H        ЅuIH        ЅIA?@uDI        D	D$		uH        g  HD$`I        tH        H|$`AH        HAօtHH        H        ЋL$	tH        HAH        HAօtHH        H        EtH        HAEtH        HAօtH        HAH        HAօH  tZ|$ H$`  H        I        HL$H        I        LDH)1AHH        HHH        H        H|$`A	      1H|$`H        E11HD$E1Hl$0@D$HD;d$HEH        s4EIDI        ;I        AׅtH; tIH        h  AՅuIA?@uD$HA9uHkD$0HD0tLH),HH        HHt|+LuAՅtLHD$A?BD I  H        $HA     E1A   ;(  H+HKE1HD$H;L$r<)   t<)t<,t<\t<'uAHHH)HJ  {n@  {d6  HHL$XH;L$r(H)McH        J|1HH      t<\t<'uAH<,   HyHL$81Ht$XH        HHD$XAHL$88,   HD$XH;D$   H)McDD$LJ|0(Ht$@HL$8H        HHIHHL$8Ht$@DD$L   1c  HH        H        HL$XHH;L$s<\t<'u\HHHB   HHH           Pz@.DHAaHD$X\t'uAHH9w<\tF<'tBIHAFH;T$rANt/AH        #   L1I        A*A\IH        #   L1I        AA> tIHD$XH;D$s!\t'uA\IƊIHAVA HJD`  AՅtH} @u} @u} HA}  uAՅu} 'AFDDHH)McH        I<.HHJD`  IIA?    A?@uI9tA IHT$AՅHT$tIInA'A?@uE 'A?LuIHT$AՅHT$uA<'uE 'E\HE'E'E HIA   HHH          ȃ  H        $HH        HH        HH        HH           HH        HI        AՅ   HH        HAՅ   HH        HAՅuqHH        HAՅuZHH        HAՅuCHH        HAՅu,HH        HAHv;-u{-utH   H        H        A   JD`V  ;0u{xuHs   H޺
   H޺   H݊uH9u@H           H9suHȀvȃ0	vuʃ߃A<wHH)HH           11HH        H        : tH             1-   svH        H        kHkH        H0ftHPH        1I        A1HH        u;ou{nH        t
H        JD`E1IpAL$H|` u;@0t5D$HkHL
H|` uD$D$HD$HkHHD`EuLk|$EKD=L v
AE9rN   H  uutH        H        
H        H        JD`HkD$HD0   AD$/   Ll`H        LILH        MIu)HT$`H           1H        1  HxH        HHtMI        IvM)HLD$MIQLL$AHD$`J;LL$LLD$L)J<D/LL)AB; J\`HkD$HHH}HEH        HuVHk\$HHD$(LD$xHL$pHT$hHt$`H|1H        HH|$`H|$hH|$pH|$xH@Ht`1HL$ HHtHh  []A\A]A^A_                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
                                                                           
                                                                                                                                                                                                                                                                                 
                                                                     
                                                                                                                                                                                                                 	                                                                               %                                                                     )                                                                   E                                                                     I                                                      
                                                                      
                                                                      	                                                                                                                                                 	                                                                                                                                           	                                                                                                                                                                                                                 
                                                                                                                                                                                                                                                                                         	                                                                                                                                                                                                                                                                                                                                                                                                       access denied --md5 one argument expected legacy initrd can't find command `%s' module you need to load the kernel first --no-mem-option --type=biglinux filename expected linux multiboot legacy_hdbias netbsd openbsd bsd msdos ad%ds%d%c ad%ds%d ad%d kFreeBSD.vfs.root.mountfrom kfreebsd wd%d%c knetbsd kopenbsd couldn't load file %s --type=linux --type=multiboot --type=freebsd --type=openbsd --type=netbsd  initrd16 Enter password:  Parse legacy config in same context FILE legacy_source Parse legacy config in new context legacy_configfile Parse legacy config in same context taking only menu entries extract_legacy_entries_source Parse legacy config in new context taking only menu entries extract_legacy_entries_configfile Simulate grub-legacy `kernel' command [--no-mem-option] [--type=TYPE] FILE [ARG ...] legacy_kernel Simulate grub-legacy `initrd' command FILE [ARG ...] legacy_initrd Simulate grub-legacy `modulenounzip' command legacy_initrd_nounzip Simulate grub-legacy `password' command [--md5] PASSWD [FILE] legacy_password Simulate grub-legacy `password' command in menu entry mode legacy_check_password '\'' dumb vt100 --dumb --lines= console serial hercules graphics terminal_input; terminal_output; terminfo
 insmod all_video;  terminal_input  serial  console  ; terminal_output  mda_text  gfxterm  ;  terminfo serial -g 80x%d %s;  
 (tftp) %d,%d %d --with-configfile --no-apm --force --type=netbsd --type=freebsd --type=openbsd --type=linux --type=biglinux --type=multiboot --no-mem-option  0 auto %ux%ux%u 1 invalid color specification `%s' # Unsupported legacy command: %s
 blocklist blocklist '%s'
 FILE Print the blocklist notation of the file FILE. boot boot
 Boot the OS/chain-loader which has been loaded. bootp net_bootp; net_ls_addr; echo $"Default server is ${net_default_server}"; if [ x%s = x--with-configfile ]; then if net_get_dhcp_option configfile_name pxe 150 string; then configfile $configfile_name; fi; fi
 [--with-configfile] Initialize a network device via BOOTP. If the option `--with-configfile' is given, try to load a configuration file specified by the 150 vendor tag. cat cat '%s'
 Print the contents of the file FILE. chainloader chainloader %s '%s'
 [--force] FILE Load the chain-loader FILE. If --force is specified, then load it forcibly, whether the boot loader signature is present or not. clear clear
 Clear the screen. cmp cmp '%s' '%s'
 FILE1 FILE2 Compare the file FILE1 with the FILE2 and inform the different values if any. color set color_normal='%s'; set color_highlight='%s'
 NORMAL [HIGHLIGHT] Change the menu colors. The color NORMAL is used for most lines in the menu, and the color HIGHLIGHT is used to highlight the line where the cursor points. If you omit HIGHLIGHT, then the inverted color of NORMAL is used for the highlighted line. The format of a color is "FG/BG". FG and BG are symbolic color names. A symbolic color name must be one of these: black, blue, green, cyan, red, magenta, brown, light-gray, dark-gray, light-blue, light-green, light-cyan, light-red, light-magenta, yellow and white. But only the first eight names can be used for BG. You can prefix "blink-" to FG if you want a blinking foreground color. configfile legacy_configfile '%s'
 Load FILE as the configuration file. debug if [ -z "$debug" ]; then set debug=all; else set debug=; fi
 Turn on/off the debug mode. default set default='%s'; if [ x"$default" = xsaved ]; then load_env; set default="$saved_entry"; fi
 [NUM | `saved'] Set the default entry to entry number NUM (if not specified, it is 0, the first entry) or the entry number saved by savedefault. dhcp net_bootp; net_ls_addr; if [ x%s = x--with-configfile ]; then if net_get_dhcp_option configfile_name pxe 150 string; then configfile $configfile_name; fi; fi
 displayapm lsapm
 Display APM BIOS information. displaymem lsmmap
 Display what GRUB thinks the system address space map of the machine is, including all regions of physical RAM installed. fallback set fallback='%s'
 NUM... Go into unattended boot mode: if the default boot entry has any errors, instead of waiting for the user to do anything, it immediately starts over using the NUM entry (same numbering as the `default' command). This obviously won't help if the machine was rebooted by a kernel that GRUB loaded. find search -f '%s'
 FILENAME Search for the filename FILENAME in all of partitions and print the list of the devices which contain the file. geometry insmod regexp; ls -l (%s*)
 DRIVE Print the information for a drive DRIVE.  halt halt %s
 [--no-apm] Halt your system. If APM is available on it, turn off the power using the APM BIOS, unless you specify the option `--no-apm'. hiddenmenu if sleep -i $timeout; then timeout=0; else timeout=-1; fi
 Hide the menu. hide parttool '%s' hidden+
 PARTITION Hide PARTITION by setting the "hidden" bit in its partition type code. initrd legacy_initrd '%s' %s
 FILE [ARG ...] Load an initial ramdisk FILE for a Linux format boot image and set the appropriate parameters in the Linux setup area in memory. kernel legacy_kernel %s %s '%s' %s
 [--no-mem-option] [--type=TYPE] FILE [ARG ...] Attempt to load the primary boot image from FILE. The rest of the line is passed verbatim as the "kernel command line".  Any modules must be reloaded after using this command. The option --type is used to suggest what type of kernel to be loaded. TYPE must be either of "netbsd", "freebsd", "openbsd", "linux", "biglinux" and "multiboot". The option --no-mem-option tells GRUB not to pass a Linux's mem option automatically. lock if ! authenticate legacy; then return; fi Break a command execution unless the user is authenticated. makeactive parttool "$root" boot+
 Set the active partition on the root disk to GRUB's root device. This command is limited to _primary_ PC partitions on a hard disk. map drivemap '%s' '%s'
 TO_DRIVE FROM_DRIVE Map the drive FROM_DRIVE to the drive TO_DRIVE. This is necessary when you chain-load some operating systems, such as DOS, if such an OS resides at a non-first drive. module Load a boot module FILE for a Multiboot format boot image (no interpretation of the file contents is made, so users of this command must know what the kernel in question expects). The rest of the line is passed as the "module command line", like the `kernel' command. modulenounzip legacy_initrd_nounzip '%s' %s
 The same as `module', except that automatic decompression is disabled. pager set pager=%s; if [ "$pager" = 0 ]; then  echo Internal pager is now off; else echo Internal pager is now on; fi
 [FLAG] Toggle pager mode with no argument. If FLAG is given and its value is `on', turn on the mode. If FLAG is `off', turn off the mode. if [ "$pager" = 1 ]; then pager=0; echo Internal pager is now off;else pager=1; echo Internal pager is now on; fi
 parttype parttool '%s' type=%s
 PART TYPE Change the type of the partition PART to TYPE. password if [ "$superusers" =  ]; then superusers=legacy; fi;
legacy_password %s '%s'
 menuentry "Superuser menu" --users "legacy" { configfile '%s'; }
 [--md5] PASSWD [FILE] If used in the first section of a menu file, disable all interactive editing control (menu entry editor and command line). If the password PASSWD is entered, it loads the FILE as a new config file and restarts the GRUB Stage 2. If you omit the argument FILE, then GRUB just unlocks privileged instructions.  You can also use it in the script section, in which case it will ask for the password, before continuing. The option --md5 tells GRUB that PASSWD is encrypted with md5crypt. if legacy_check_password %s '%s'; then configfile '%s'; else return; fi
 if ! legacy_check_password %s '%s'; then return fi;
 pause echo %s; if ! sleep -i 60; then return; fi
 [MESSAGE ...] Print MESSAGE, then wait until a key is pressed. print echo %s
 Print MESSAGE. read read_dword %s
 ADDR Read a 32-bit value from memory at address ADDR and display it in hex format. reboot reboot
 Reboot your system. root set root='%s'; set legacy_hdbias='%s'
 [DEVICE [HDBIAS]] Set the current "root device" to the device DEVICE, then attempt to mount it to get the partition size (for passing the partition descriptor in `ES:ESI', used by some chain-loaded bootloaders), the BSD drive-type (for booting BSD kernels using their native boot format), and correctly determine  the PC partition where a BSD sub-partition is located. The optional HDBIAS parameter is a number to tell a BSD kernel how many BIOS drive numbers are on controllers before the current one. For example, if there is an IDE disk and a SCSI disk, and your FreeBSD root partition is on the SCSI disk, then use a `1' for HDBIAS. echo "$root"
 rootnoverify Similar to `root', but don't attempt to mount the partition. This is useful for when an OS is outside of the area of the disk that GRUB can read, but setting the correct root device is still desired. Note that the items mentioned in `root' which derived from attempting the mount will NOT work correctly. savedefault saved_entry=${chosen}; save_env saved_entry
 [NUM | `fallback'] Save the current entry as the default boot entry if no argument is specified. If a number is specified, this number is saved. If `fallback' is used, next fallback entry is saved. serial %s
 [--unit=UNIT] [--port=PORT] [--speed=SPEED] [--word=WORD] [--parity=PARITY] [--stop=STOP] [--device=DEV] Initialize a serial device. UNIT is a digit that specifies which serial device is used (e.g. 0 == COM1). If you need to specify the port number, set it by --port. SPEED is the DTE-DTE speed. WORD is the word length, PARITY is the type of parity, which is one of `no', `odd' and `even'. STOP is the length of stop bit(s). The option --device can be used only in the grub shell, which specifies the file name of a tty device. The default values are COM1, 9600, 8N1. terminal [--dumb] [--no-echo] [--no-edit] [--timeout=SECS] [--lines=LINES] [--silent] [console] [serial] [hercules] [graphics] Select a terminal. When multiple terminals are specified, wait until you push any key to continue. If both console and serial are specified, the terminal to which you input a key first will be selected. If no argument is specified, print current setting. The option --dumb specifies that your terminal is dumb, otherwise, vt100-compatibility is assumed. If you specify --no-echo, input characters won't be echoed. If you specify --no-edit, the BASH-like editing feature will be disabled. If --timeout is present, this command will wait at most for SECS seconds. The option --lines specifies the maximum number of lines. The option --silent is used to suppress messages. testload testload '%s'
 Read the entire contents of FILE in several different ways and compares them, to test the filesystem code.  If this test succeeds, then a good next step is to try loading a kernel. testvbe insmod vbe; videotest '%s'
 MODE Test the VBE mode MODE. Hit any key to return. timeout set timeout=%s
 SEC Set a timeout, in SEC seconds, before automatically booting the default entry (normally the first entry defined). title NAME ... Start a new boot entry, and set its name to the contents of the rest of the line, starting with the first non-space character. unhide parttool '%s' hidden-
 Unhide PARTITION by clearing the "hidden" bit in its partition type code. uuid search --set=root --fs-uuid '%s'
 UUID Find root by UUID vbeprobe insmod vbe; videoinfo '%s'
 [MODE] Probe VBE information. If the mode number MODE is specified, show only the information about only the mode. insmod vbe; videoinfo
    X  X                                           @  @  @      X  X  X                   @ @ @ @                                                                                                                                                              @                                                                                                                                                                                                                  LICENSE=GPLv3+  crypto password gcry_md5 normal legacycfg                                                                                                                                                                                                           	                      
                                       )                  <                      G                      T                      b                      z                                                                             ?                                                                                                                                        ,                     8                     J                     c                     q                                                                                                                                                                                             *                     =                  R                     d                     u                                                                                                                                                                                                                                                        &                     3                     H                     j                     y                                                                                                          grub_mod_init grub_mod_fini grub_strlen grub_legacy_escape grub_puts_ grub_strncmp grub_strtoull grub_env_extractor_open grub_strcpy grub_env_context_close grub_env_get_menu grub_legacy_parse grub_xasprintf grub_realloc grub_normal_add_menu_entry _gcry_digest_spec_md5 grub_memmove grub_device_open grub_strdup grub_command_list grub_env_extractor_close grub_snprintf grub_auth_authenticate grub_errno grub_memset grub_env_set_menu grub_normal_set_password grub_env_context_open grub_register_command_prio grub_normal_parse_line grub_unregister_command grub_crypto_memcmp grub_vesa_mode_table grub_password_get grub_print_error grub_zalloc grub_strcmp grub_strchr grub_malloc grub_file_close grub_file_open grub_isspace grub_env_unset grub_file_getline grub_error grub_legacy_check_md5_password grub_free grub_strndup grub_named_list_find grub_auth_register_authentication grub_show_menu grub_env_set grub_memcmp grub_env_get grub_strtoul grub_cls                                   5           )                     9          9                     =                                                              .                    /           +            C                   C                   C                 8                    7           @                   O         5           i            *       s         #                                       :                       j                  
                   *                   H                   1                   '                   1                   P       )            '       C            P       M            8       \         5           y            W                5                    -                       y                   L                                      H       "                   3         5           I         /           z                                H                                      '                   H                                        H                                      '       ,            H       A                     Q                   [         >           s         ?                                                             -                              '                   I                   i                               H                                                                                     "                   8                    J                   T         <           b                   l         3           x                              '                   H                                                "                  F                    R            H       a            %      k            '                   H                                        H                   -                  '                   H       	                     	         7           +	            6      <	         5           T	            Y      g	            H       |	            j      	            H       	            y      	            H       	                  	            H       
                   -
         5           t
         @           
         $           
                    
                  
                    
         1           
                             ,           -         "           ?         4           X                     f         0           ~         2                                        7                                                   .                     d                             /                    0                       *                                    7           +                    5         &           D         +           S         7           u                             7                                                            /           M                    e         7           s                             7                    &                    +                                        ;                                                   2            H       E                  O            '       ^                           /                                                                P                   '                   P                   8       !         5           ?         7           O            W       `         5           y                                H                ,                       (                                       0                   0                   0       %            @       7            8       Y            (       n            0                   0                   0                   0                   @       
            8       .            (       H            0                   0                   0                   0                   @                   8       6         (           G         7           m            u                                   5                                        !                    (           #                   =            u      N         7           y                                                                  *                    6                                        5                    %                                                            
      *                  9                  C                  M            
      W                  a            @       p                  z                              
                  Z                  8                   x                                    
                                    0                                                                         +                  (                   9                  _      )                  3            n      =                    L            |      V            _      `            $      j                  t                                                                   8                                                                                                              h                  H                                   '                       @                   8       #            0       2            (       A                    P                   _                   n                   }                                                                     /           A                    h            ^      u            ^                                   2                    2           #                    5         /           S                                                                    2                             !                    K                   u                             8                    2                       n               =                    =           ;            u      [         ?           g                     |                                 ~                                                                     2           0         2           X                    s                                                                                                                                                                                                      3                  G                  W            $      ~            h                  c                  '                                                          E                                   !           *                   =         2           J         2           j                                                                    /                               >          /           u             G                                              I!            N      ]!                    u!            T      !                    -"         /           "                    #            h       "#            W      1#            i      @#            r      M#                  a#            z      n#                  #                  #                  #                  #                  #                  #                  .$                  8$                    $                  $         8           $         ?           $                     %                     %                  )%                    9%         )           V%                  b%                    u%                    %                  %                  6&                  B&                  N&                  X&                    &         .           &                    &                  &         5           &         /           &                    f'                    '         7                         "                   #                   #                   #                    #      (                   0                   8                   @             o%      H             R$      P                    X             $      `             #      h             ;#      p             ,#      x             \#                   $                   ,$                   ,$                   ,$                   ,$                   ,$                   ,$                   ,$                   #                   :                   D                  T                  Y                                           X                  `                  h                                                                  B                  F                  T                  P                  u                        (                  0                  8            &	      @            ,	      x            3	                  E	                  I	                  X	                  d	                  	                  	                   	                  	                  	                  	      X            v      `                              T                                                                                                            %                         (                  0                  8                  h                  p                  x                                                                                                                         u                  ~      @                  H                  P                  X                                                                  L                  U                  q                  w                                                                               (            8      8            C      `                  h            ~      p                  x                                                                                                                        '                                           8                  @                  H                  P                                                                                    2                                                                                                 (                  X                  `                  h                  p                                                                                                                                                 	                  @	                  H	                  x	                  	                  	                  	                  	            4      	            v      	                  	                  	                  
                   
            n      `
                  h
                  
                  
                  
                  
            ,      
            ]      
            c      (                  0            l      8            {      @                  p                  x                                                                                                      
                   1                  C                                    !      X            !      `            
                  1                  !                  !                  !                  "                  #                   3#      (            F#      0                  8            #      h            $      p            m$      x            =&                  F&                  &                  Z)                  c)                  T                   r)                  '*                  /*      @            K*      H            P*      P            *      X            *                  *                  *                  +                  +                  +                  +                  +                                     +      (            ,      0            ,      `            *,      h            /,      p            A,      x            J,                  f,                  m,                  A,                  ,       .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                        @       '                                   @               q      (#                          +                     @(                                    &      @                      @                          3      2               @8      ,                            B                     0e                                   H                     g                                    X                     g      L                              ]                      g                                     f                      h      
                                                    (h                                	                      @n                                                         `      o                                                                                                                                                                                                              boot/grub/x86_64-efi/disk.mod                                                                       0000600 0001750 0001750 00000006020 13417732100 0014556 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    P	          @     @  
 HA  SHi HHi{' HHHH1II        Hk(LËH9u7H9su1H9Ku+H{Ht"C    H        HC    C     [AW1I        AVAUIATIH        MA  UH=   I	SHH        IH(LD$LH        AI  IE(H	Ht=HHHpI9rH           1H        sL)H9rIH@(IEHu AEHHHL!A)A	E   AuNHL9vL)H9vIU H           1H        у  AMDLD$MU(K<4Ht$H        D)H9HGHHL$IEIu HxH        AUIEHLJ   HLP0LLD$   AAEHHD$HD$ALH)E1H"  EA}uH@HH   A   @DHH        HI   AMMU(DM1IE(    HLLT$HH        ЅI        LT$MU(LA   @IEuI   H)I!AOLL9LFIEHLHL$P0uCI        Mt'IEHIu I΋xAAEH   HLd$L)H        H([]A\A]A^A_H        H        H        H     Writing `%s'...
 disk lib/disk.c attempt to read or write outside of partition attempt to read or write outside of disk `%s'  LICENSE=GPLv3+ disk                                                                                                                                                                                                                           *                      ?                      N                      Y                      e                      w                                                                                     grub_mod_init grub_mod_fini grub_memmove grub_disk_write_weak grub_disk_read grub_errno grub_malloc grub_real_dprintf grub_disk_write grub_error grub_free grub_disk_cache_table       2                     f                                                                                                       
            !                                       O                                    	                                                                                           5                    x                                                 
                    
            .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .modname                                                                                              @                                          @                                               &      2                     }                             5                     w                                     ;                     x                                    K                                                          P                                                                                            	   	                 	                      X                                                                Y                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/gcry_md5.mod                                                                   0000600 0001750 0001750 00000011360 13417732100 0015340 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   #EgGGܺGvT2G    GT    HGAW@   H        AVAUATUSHHXDwDoDgD?H|$Ћl$D|$D1DL$$DT$(D!D\$,A/xjD1A>V|$D|$ DD1DA=p $|$!D1ʉE<νD1!D1Ή1!1DF8|
1D|$0!1DF
*ƇG1!1DFF01DT$8!1DFF1!1DF8ؘi
1D|$4!1DF:D1!1DF[1DT$<!1F\DDD$@1!1AB "kA
1AD!1ȋL$DDD
qD1!1DDT$HFCyD1!D1At$LAAE5!IAA1E!A1EDt$A
EEb%DD1!D1DDt$(DE@@D1D!D1DDt$<G&QZ^&AA1E!A1EF-ǶAAEA1A!A1EE]/AEDD1!D1DDt$8DESDD1D!D1DF&AA1E!A1EDt$ AAG.EA1A!A1EE!AEDD1!D1DE7DD1D!D1DF'AA1E!A1EDt$0AAG.ZEEA1A!A1EDAEDD1!D1DDt$DED1D!D1DG#ogAA1E!G(L*A1EDl$AAEA1EA!AB9A1Dl$AEE1AƋD$0AEqDD1D1D$<DF "amDD1G*81DAE1A1EDl$A	AG5D꾤AA1E1EDt$ AEEKD1D1DE`KDD1D1AƋD$8AAF pD1F)~(D1ADA	1ED1DD'DD1F70D1AՉAD1AD1A֋T$(AEF"D1D1DE9D	D1G(D1AĉAD1F6|AD1ADA1ED1DDt$DEeVDE#D1F%D")D1D		E91DG+*CAAӉA	A1ӉEAAD	1DDT$8D	D1DE(Y[eEAA	A1EFAAD	1DE}DT$0D	D1DDL$E]D	1DGO~oAAЍ>,A	A1EAAD	1t$(DǍCЍN	D1D	1D$ B ~S	1ȋL$<Ѝ95:	1<L${1*	1AӆҋCK	1SHX[]A\A]A^A_AVAUATIUHST@Hu+HwH        п   H        CCT    M   {T t=Ht HcCT?PIH͉STAT$T11HH        HttM4,I   H        LL)I?vHH        I@CT    CHH1?IH9tHcST?rsTA4H@t[]A\A]A^AT1I        1USHAԋkHcCTL D$    	ՍP7STDHcCT7CPSTD HcCT?PSTD 11HH{8   1H        DDcL@kPHsCMDADcO@kQCNHCR CS H        H           ЋCCCCCCC []A\H        H        H        H        MD5 1.2.840.113549.1.1.4 1.2.840.113549.2.5                                                                        X       @                                               0 0*H       LICENSE=GPLv3+ crypto gcry_md5                                                                                                 	                  	                                                                                    	                                       $             `       :                      K                      R                      e                       grub_mod_init grub_mod_fini memcpy _gcry_digest_spec_md5 _gcry_burn_stack memset grub_md_unregister grub_md_register   8          
                       /                           ?                  \                    w            /                         \	                    	            /       	                    	                    	                    	                    	                                                                           `       (                     0                   8                   @             *       `                    h                     .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @       
                                   @                      P      
                    &      2               C
      ,                             :                     p
                                    5      @               p             
                    @                                                         P                                                          U                                                          ^                            	                                                    (               
                 	                            v                                                    H      g                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/diskfilter.mod                                                                 0000600 0001750 0001750 00000032430 13417732100 0015770 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    1          @     @   AWAVIAUATUSH(H   GAE1I        D$D9d$   Ik8In@EU ȉӃ	w2A$Eu)ZEu]߃DÍZ)   E1E1I        D9vfLHHE(HpHt1H~ 5HxHt3LL$T$DDD$LT$ALL$T$DD$LT$AIA9|A9|I$   1H([]A\A]A^A_H           1H        AUH        I        ATIUSQH(HtSH](HtDH;HuH{Hu'LAՅu1HH        ЅuH[PLAՅtHm01HZ[]A\A]UH   H        SH        QӅu   L   H        HӅt   H        HӅtɺ   H        HӅZ[]UI1H        H        HAWI        AVAUI   ATI        SHH        HHALk(H        L(LeMtmMe Mt^ID$HtMHK H9H uCHPHC@9Bu3IL$ HC(1Ht
HPH@(H9uMt$(HAI9S  Md$8Mm0H        L M0  HE    HE    HUHuHAT$HI  HEIt$HMuI        HEHuH        HS(HuE1Ht
LJHR(RH        H        H        LUV#  AVP1LAMu H M  HUI;VuHtHuI>H        ЅEA9   I~ uH;H        HIFu+HAI;F(r   H        8       IF I)F01HC(Ht
HPH@(IV HAIF(HEHtIF0IF IF0I        I](Ht>{0 u)H; t#1HAԅt                C0H[PMv8H} t]H}H        KH} tH}H        H        8tH        H             M$$He1[A\A]A^A_]ATUHSt        d   H        Ѕt   H        H        HHuH             9I        H1HAHHLH        HH        С        ȣ        []1A\1H        AUI        ATIU1SVH        HHtT{tHHCHt?1H        Ѕ   Mt"LAվ   HH        Ѕ   H[8ŃuAe   I        AtWH        H(1Ht=H](Ht.{4 u"H;Ht{0 t   AC4      H[PHm0뾅u$Y[]A\A]H           1H        X[]A\A]ATH        UHSHЅtZHI        AHugH        HH        8 tH        H             HAHu"HH           []A\H        HcPHE@HU H@(E  HE1[]A\AVIAUIATE1USu        1D`H        Ѓt1LH        H(HtH](Ht+{8 uH[PH;HtD9c0|LAՅt   Hm0[]A\A]A^LOHIMt5IyHtIq0H1H0H	H        IQH        &HHtH0H        HPH           1H        AWAVAUATUSH   HH|$@Ht$ HT$(HL$M  H        @     1Au0HT$hÉAAu HT$xHH)AA}IAu D  HT$pHH        AUuAE H+D$pHD$pHL$xHt$p  HHHL$xAE HT$xH9rH)HT$xEu0L|$MLd$Am0Ht$h        H)I9IFuH             H|$xLLHH        HI}(Ѕ  HH	II)&  HD$H)D$(HD$ H	HD$H|$( V  Lt$@1H|$ H        I        I^HMn@HsA~19u"H           1H          IM H9wSHIuH9vGHSHH|$ H\$(HH)H9HGHAUHD$H)σ
  H        $I8sA} u%IE(HHL$HT$HH        _  Au0HT$xAIAEuAm A      `
uKAUu%Au01I}H        A   HHIߺ   AE0HHT$A         HD$    LAu HT$pHAAU0ML\$LIIHD$HD$0E}0L+|$xM9MFE11DH9HL$8   Dd$pE11DH9           uH             HT$LHt$xDHI}(L\$PLT$HDD$\H        DL$XHL$0HLЅLT$HL\$Ptd  AE;e DL$X DD$\DDATt3HL$pHQHT$pAM H9uHD$p    MA
  LH	HD$0M)HHD$pHD$x    H+D$8AU H9rMH)HD$pT5AE )9CH9H9BHH)Ht$p  A}H             u8H        HtMLD$hILT$pt$xL[H        2H        HtLHL$hILt$xL'H        H           1H        хV  HD$xHD$h    HHD$xAEt!AU H9u	HD$x    HD$pH9D$xH;D$puHHD$xAE H9D$xAE0IA}   AMHD$ptAU Hpz1H9HEHT$pHuAE HHD$pHD$ptHHD$xAU =HL$xAU HH)H9Ht$xr	H<H9rH9rH4H9sHHD$xHD$xH9WH)HD$xJHD$x    <H           1H        х1HĈ   []A\A]A^A_H@H        AUH        I        ATIUHSQHHtH9kuHLH;AՅt
H[01HZ[]A\A]AWH        H        L  1I        AVAUATUHSH(LGH        AH](HW  H        H;QHKУ           H        E1IH        L8D$    M   Mg(MtrI<$HtbLH3H        ЅuLI$B<0 t9J|00	w1
   Ht$H        HT$: uA9DLD$   Md$PM0s|$ tD1AUH3H        H        HIu        ^H;H        L#1;CsHk8HS@zuB0@   HkHH[PH        HE0HH        1H([]A\A]A^A_AWAVAUATUSH(|$h
D$`T$LL$D$  T$hH        IIIL$ЋD$Hc|$ăD1H        IHcHD$h   1ҋ\$)ILLLH        HItPHP(HtH9Z(sHZ(HP(HR@HtHZIT$(HR@Ht
H9jvHjLH          H        8   HT$HIHT$  ML(Lpt]:   LH        HpHH        I        ID1AHHT$uI|$(H        6  ID$ID$   `   HID$(t@   ID$(O|6L@8   ID$(IT$HPID$(IT$HIT$(H        HT$HT$HBID$(HxHdH           H        о   1L9IT$(tSLBAT DʍzW0A
LA|0IT$(ILBAT DʍzW0A
LHHA8HB8   I        BD8 ID$(HX(Mt$(AIF@ID$(H@@HLt$L$Dp0ID$(H@@HID$(L$hH@@H     ID$(H@@HXID$(H@@HID$(L$H@@HcHH ID$(H@@HhID$(HX@AHC(ID$(1H@@Dp0;\$}FH   AHH@    IT$ HP8IT$(ID$ Hr@HHHHV(HBLH        ЅLI|$ HtHo8Il$ L1H([]A\A]A^A_H        H        AVH        H        AUI        ATUSH        HH   HC0H        Lc H        MtTID$8HC I|$AI|$HtH        I|$ tI<$AI|$@ALAI|$XLLc(MtEID$PHC(I<$I9|$tI|$H;{tE1E;t$I|$@sDAHk8H|(H;H{H[]A\A]A^                                                                                                                                                                                                                                                                       diskfilter writes are not supported md lvm/ lvmid/ ldm/ Scanning for DISKFILTER devices on disk %s
 diskfilter disk/diskfilter.c Inserting %s (+%lld,%lld) into %s (%s)
 DISKFILTER scan depth exceeded unknown DISKFILTER device %s physical volume %s not found unknown node '%s' unknown volume incorrect segment raid6rec module `%s' isn't loaded raid5rec unsupported RAID level %d Found array %s
 %s_%d md/%s mduuid/                                                                          LICENSE=GPLv3+  diskfilter                                                                                                                           	                      <                  R                                       
                                       )                      <                      I                      X     '      T       w                                                                                                                                        	                                                                               $                     5                     A                     M                     Y                     e                     w    R               	                   	 (                                                                                       }           {            "                     .                      grub_mod_init grub_mod_fini grub_strlen grub_disk_get_size grub_strncmp grub_disk_open grub_diskfilter_get_vg_by_uuid grub_xasprintf grub_memmove grub_divmod64 grub_partition_iterate grub_disk_dev_register grub_disk_read grub_raid5_recover_func grub_errno grub_disk_close grub_disk_dev_list grub_print_error grub_zalloc grub_strcmp grub_strchr grub_malloc grub_real_dprintf grub_diskfilter_make_raid grub_diskfilter_list grub_raid6_recover_func grub_error grub_free grub_disk_dev_unregister grub_diskfilter_read_node grub_diskfilter_vg_register grub_memcmp grub_strtoul      %                                          (                    9         "           G                   Q                                                    $                '                       '                   ,       .            3       O            8       Y            d       h                                                    o                          &                     x                                                                       d                   o                '           6                    ^                                                                                       #           ,         #           8                    G                    S                                                                                                                                  G                                                                  (                    ;            {      I            C      ]                                7                                      {                         =                   N         "           d                              C                  E                                                                                              "           1                   A            E      V                                                                      &	      	                  	         "           V	                  	                    "
                    >
                    \
         %           
                    
                    
            #      
         "           X            P                %                                                                                %                                        !           I            5      U                    }            W                  >               "                       `               "                       &	      +                   5         '                       z                  d                                       o                                                      
                              B                    w         (                                                                              #           (                   9                                                                              ?         #           P                                                                                       #           5                    a                  p                                                 &           >                    H                    V                    `         $           l         #           |                                               #                                                                                                         a                     a       (             W       0                    8                    @                    H             j       P             n      X                   `                   h                   p             f	      x             f	                   f	                                                                                                                                     +                   +                                                                            +                   +                   +                                       d                                       `                    %      (                   0             &       .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .rela.data .module_license .bss .modname                                                                                            @       q                                   @                                                +                                                         &      @               -                                 3      2                                                 G                     `      @                              B      @               0                                 M                                                         ]                           0                              b                                                                                               
                 	                            ;                                                   (1      k                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/gcry_rfc2268.mod                                                               0000600 0001750 0001750 00000006330 13417732100 0015750 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    X	          @     @   AUE1ATUSBDJDJA	BA	BD	DJRAD	IAAA!fE!AA!fAIEEĉfAEEA!DEAA!fAADfAE!ÉDAAA!fAQDfAA݉A!AAE!EfAA
DtAu4LE?fDGL?fGHȃ?fGH?fDWDAIA)NFfVDffAfNDFFV[]A\A]B
A   DBDJ	BAAD	DBE	DJRAD	IEfA!fEY~D)EfAAA!D)AA!fEY|E)AfAfA+AzA!E)AA!D)AfAfA+IxE!D)EA!D)AAA!D)AtAu0MA?fB+_IA?fF+_IA?fB+_IA?fB+_AIA:FffDFVfAfNFDFVH        8 u    H        H     H           H9       1H9wHI        H        w"DHHFDIEGD7      )AIAAȃtDB2AɊB1HH=   u0H        H        H        H                     xݵ(yJ؝~7+vSbLdDYOaEm	}2@놷{!"\kNTe`sVu;B=0<&oFiW'C>/fހRr5Mj*qZItK^AnQ$Pp9|:#z6[%U1-]㊒)gl ឨ,c?X≩843H_.G奜w
 hRFC2268_40 1.2.840.113549.1.12.1.6                                             (                                                                                             LICENSE=GPLv3+  crypto gcry_rfc2268                                                                                                                                                w                                                          	                      
                              `       :                      Q                       grub_mod_init grub_mod_fini _gcry_cipher_spec_rfc2268_40 grub_cipher_unregister grub_cipher_register                                                                                                      y                                                                                                                   `       0                   8                     @             O      `                     .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                          @                                                &                                                         .      2                     #                             B                                                          =      @               X                                 H                                                         X                                                         ]                                                          f                                                                                      P                          	                            f                                                          o                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/div_test.mod                                                                   0000600 0001750 0001750 00000013250 13417732100 0015450 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    h          @     @   UH        HAWHUAVAUI        ATISHH8IHER1I        I        @   H        H        PH9M@1SATAH HELAT1I        HI        B   PH        SHL9AVH        @1I AILH I S1ILUI        ATI        E   H        H        H@1AՉASLHEL]ATI        I        H   H        H        M9@1I @ALUL}EL]H I        SI        L   MH        H        ATM9LU@1@ALU1SI        I        O   ATH        H        I LLUHH9E@1AL}HEHEH S1I        I        S   H        ATH        ILULHI9@1AL}HE1SI        I        V   H        H        HATI9@1AL}H 1SI        I        Y   H        H        ATM9@1AL1SHAT1I        I        \   H        I9IH        @1AH 1L9}S^   H        I        I        H        AT@1AY^He[A\A]A^A_]UH        HAWAHUAVAUI        ATASHH(}LIHER1I        I        '   H        H        PH9@1SATAH HELAT1I        HI        )   PH        SHAVL9H        @1AH L1SH I        @I        1AT,   H        H        A1} SI        I        .   ATH        H        @1AՋE1H S1I        I        4   H        AATAǉUH        M9@1AD}S1L9}I        I        AT6   H        H        @1AH He[A\A]A^A_]AWAVAUI        ATUSH        RHkL#HI        HLAՉDH        H        IH9uA@       A   HkHkHkHHkHIDHIDHHA׉AIuX[]A\A]A^A_H        H        H        H        H                       test32 test64                                             remainder is larger than dividend: 0x%llx %% 0x%llx = 0x%llx r < b tests/div_test.c division doesn't satisfy base property: 0x%llx * 0x%llx + 0x%llx != 0x%llx q * b + r == a division overflow in 0x%llx, 0x%llx (q >> 32) * (b >> 32) == 0 x1 < (1LL << 32) x2 < (1LL << 32) x1 <= ~x2 x1 <= ~r division overflow test failure in 0x%llx, 0x%llx a == x1 C compiler division failure in 0x%llx, 0x%llx q == (a / b) C compiler modulo failure in 0x%llx, 0x%llx r == (a % b) (q >> 32) == 0 (r >> 32) == 0 div_test   LICENSE=GPLv3+ functional_test div_test                                                                                                k                                                                                                                             	                                       +                      >                      S                       grub_mod_init grub_mod_fini grub_divmod64 grub_test_register grub_test_unregister grub_test_assert_helper                                                =                     G             =       V                    `             C                    T                                        C                                                                                                  C       ?                   I                   X                   b            C                                                                            C                                                                           C       @                   J                  Y                   e            C                                                                           C                   "                  S                                     C       $            [      .                  =            C       M                   p            C       z                                                                                                                               =                                       C       F            T       T                   d            C       w                                                                                         C                                                                            C                   [      %                  4            C       I                    j                  t                                                  C                                                                                                h       m                  w                                                                             .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                             @                                          @               H            
                    &                           `                              .      2               P                                  =                     F	                                     C                     H	                                    S                     W	                                     X                      W	                                    a                      g	      	                                                    p	      h                          	                      
      k                                                          j                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/linux.mod                                                                      0000600 0001750 0001750 00000050700 13417732100 0014767 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    N          @     @   H1LcIHAL  E~&IkID LPMLI9u9Pu	LHpIkLH8HpPA1U1   AHAUH}ATSH(uH            H        8 u"H           1H          IDHULH        Ѕ  H}H        L  IH        7I f  v,  H=7HFH        HtH9HGH        L)HH        H  H HH9sH           'jHH        A   HujH8H        ZY   H}H        H}H        H        LH        H}H        HH        ЅudEAH        H        o  H        I        AH                D        H        f  H        H}С        He[A\A]]SH        H        H8H        H        H;     H        H    1[SH        H        H;H        H    H     H        H     H        H     H        H     [   U1H  	 HAUATISAQ   H71HH     H  IwH  A   J#H=  	 v  	 L)H        IUH1H4H9wZVMAH        H        R  H        I        AH        IEI)ĸ   LI] _AXHe[A\A]]1U1   HAWH`AVAUATSH        IH   H        Ht_8 tZHH        1H        HH  H1Ҿ@   H        H߉HH        ҋH1Ҿ@   H        H        Ѕt2H        H        H        H             H        AIH        ЅP  HXH}H        ЅtH                Euf        Ef        Ef        Ef        X        E  f1M        E        E        E        E        E        E        E        E        tA$<ytB<1t>w|   H  u'u"t`        H         #CH         p4H          H          H          H          H        xHH   H        HI        H   H{H        AԅuBHS@¢        HТ        S8Hߢ        S8        fH{H        AԅtH{H        AԅtHnH          H          H         PH         LeHE    H        I        LALkmH        H	I  I I   H9sHH	  H  H H        H  H% HhH        H   H        H    H        H8H        H}HI   E11HHXLH        LDH        ҋDyH           1H        7u9H        HEH9sHH        H   H        D1 H        H?  H% H        HH        0  E1DhH        H        :  H        I        I        Aպ   H`H        AH` u1H`H        APH        H        H        F  DhL`H        I        P1AH`Y^Hu"H           1H          H        HHhH        LH8H        Ѕ  H}H        IHhH        MH        W  H        H        1ALpHH   L󥋅`Hp؉(  HH        HH        H0H        HpH        H        a  H        D  1Aǅx    H`H        Aׅt        t  xHpLXLH          1H        H0H        Ѕ*  H        H`L)HHpf  fv;HuH          X  H     H3  nfv1HuH          X  H    6fv/HuH          X  H    MMH0E      HE    E    	   LEH        1H8H        H0He[A\A]A^A_]UH        HAWAVIAUATSH  PH8H        Ѕu(H           1H        E1E1  I>H        HI  HX@H        HHIH              HHLH        H9t8H        8 h  IH           1H        C  LH        h  HhffUH        H8uNYH        <@w9jHdrSufnfwH        yu"H           1H          fH        v]sHH        H   H9wH        H      DTT	HcTHH0IE@H)fH H@vqut*N1ۅu#   AAAu	HH uM11f	v9ED}Ⱥ   HHI  H% H        t7HU111H  L@HHH%    H@H        M   H IEǉ(H  HXH        HX H        HH        H        (H y  L`   jI        LA   HL jLXLAHXAYAZH҉H(L   HSH;H  H        A        jALXH        McjH(   H8H HLA_AXHXLH        Ѕ   H`H        H`H        H        ЋXRIH           H        H        H        I        QH        L 1AY^ XH        ҋXl  1  H        H        Hhw   H        H  H8Ћ|H        H        I$h  H         H                                H8H         rH        f ?H        f  H             H             H        f          Ȁ        H        f  H            H        f   H        f   H        f  H        fH        fw+HH tJH           1H          H                H EL64        BfvH                EL64 fvH                EFIL1EDTH        H        y  H        I        1AH        H     C;P
  I|   H        I        AׅI|   H1H`H`H        H        H        : t    FH`rJ Fуktmt1Ƀgu
   1Ƀ
1Ƀ
HHH9vH        H     :HH        +   H        Aׅu                 HH        HxH        HH              H        HH        H        LPHHH        HPH        H0H@I   H        H8H        8 u7H        1H        H        H            E1LH        MtLH        H        8 t)H        H8H        H                     He[A\A]A^A_]UHH        SRЅuuE1H        1H        H        H        E1H        H        1H        H        H        HH        X[]SH        Ѕu,H        H        H8H        H8H[[ù   P0D@W<	AGЃHǈWuUHSHQt0H        HH{H;H        ZHH[]X[]AWAAVIH        AUI        ATIԺ   UH        SHHLD$AH{1H{DH{1H{1H{&   H{.1LD$H{6DH{>1H{F1H{N1H{V1H{^DH{f1HknLLIHL)AHL1H        HI[]A\A]A^A_AWIIAVIAUATUHSHHH$    ;/IuHt	HÊ</u  M*HL)Mt8HHL$LI} H        ЅHL$tIE <    Mmÿ   H        HI   IHLL)IEH        MIE t[IIH        H           H        1I        AHLE1H)A  HH        IHM.H)HqHH$MUH$1H[]A\A]A^A_HGAUATUSHRH tM1I        9+H{~%LkHJ|'AHCJ< H        H        HC    X[]A\A]AWH        AVIAUATIUSH(    HB    |$HcHD$    HkHIF   IF    11|  :   HH$H        HI   HkH        H$H     H        LH     H        H     H)HIM~H        IGIFH|(HuLH        С          M~H        Hq1Ht$HIIFM~H|(H           IM~M}LkH        LH     H        HH     H        H     LIFH$H        H$HLIFH8 ,AH0Hv@HpIFJD(IF9\$~{IFM<ܺ   H        HHIFH        I<ЅuIHP:/6HIFxH|$H        1HD$    1t+$IFH|$HPHHxIVH        ҋ$H([]A\A]A^A_AW1AVE1AUE1ATIUHSH(H4$HD$    D9m c  HL1HH        MkHLHEMJ|8HtgHHt$H        HLHEA   L@HxH        LD$HUHLD$  Jt:HH        HHEtCHE11ɺ
   H        H        E1H|$HH        HD$    LHEHILxH8H        LL9tNH        8 u%H$H           H        J1H        HС        bL$EtAH1LHH        HI<E11ɺ
   H        H        H        H|$1H([]A\A]A^A_ÍWи   	v1A@AWIAVI        AUE1ATUHS1De EtUA\u%}xu}Aօt}Aօt	HA\tA'tA"uA    DDH뢍CEEMtE/[]A\A]A^A_AVI        AUIATAU1S1A9~I| 1HA֍\   D؉[]A\A]A^AWAVAUIATUS1H(|$Ht$H$;\$A   HD$Ht$$H,H        HH9$   Dd$$H)$EtAE "IMI        D} EtmA\u?}xu9}AՅt.}AՅt#A\EIHAFEAFEAFA\tA'tA"uA\IƊE IHAFELtI "MnA HADIAE  H([]A\A]A^A_filename expected you need to load the kernel first the initrd is too big Initrd, addr=0x%x, size=0x%x
 linux loader/i386/linux.c addr = %lx, size = %x, need_size = %x
 gfxpayload %s;auto auto Booting in blind mode gfxpayloadforcelfb vga_text console ofconsole cannot get memory map real_size = %x, mmap_size = %x
 real_mode_target = %lx, real_size = %x, efi_mmap_size = %x
 cannot allocate real mode pages real_mode_mem = %p
 code32_start = %x
 cannot allocate kernel buffer premature end of file %s invalid magic number too many setup sectors version too old for 32-bit boot zImage doesn't support 32-bit boot prot_mode_mem = %p, prot_mode_target = %lx, prot_size = %x
 kernel does not support 64-bit addressing bzImage, setup=0x%x, size=0x%x
 mem= quiet BOOT_IMAGE= Load Linux. Load initrd. initrd 070701 Creating directory %s, %s
 linux loader/linux.c newc: TRAILER!!! premature end of file %s      LICENSE=GPLv3+  video boot relocator mmap linux                                                                                                                  y      ?                                                                                                                     )                      G                      R                      h                      ~     4       I                                                                                                                                                               "    }       ,      =                     S                     ^                     j                                              ~                                                                                                    v                                  #                     /                     ;                     G                     S                     k                     {                                                                                                                                                                                                             /                     =    {      f       O                     [                     k                     x                                                                grub_mod_init grub_mod_fini grub_strlen grub_efi_finish_boot_services grub_puts_ grub_efi_system_table grub_relocator32_boot grub_loader_cmdline_size grub_xasprintf get_virtual_current_address grub_video_set_mode grub_memmove grub_relocator_alloc_chunk_align grub_dl_ref grub_mmap_iterate grub_create_loader_cmdline grub_relocator_unload grub_errno grub_memset grub_register_command_prio grub_video_get_driver_id grub_initrd_load grub_efi_secure_boot grub_unregister_command grub_file_read grub_term_outputs grub_get_initrd_size grub_print_error grub_zalloc grub_strcmp grub_strchr grub_malloc grub_efi_get_memory_map grub_file_close grub_file_open grub_initrd_init grub_real_dprintf grub_relocator_new grub_file_filters_enabled grub_error grub_video_get_info_and_fini grub_free grub_strndup grub_efi_mmap_iterate grub_dl_unref grub_initrd_close grub_memcmp grub_loader_set grub_env_get grub_strtoul get_physical_target_address grub_relocator_alloc_chunk_addr        z                                  p                                    /                     +                     "                        0       (            x      >            H      N            `      n            4                   @                                                          X               :                       P                  X                                      J                   h       -            n       7         ,           D            P      M            H      Y            L      c            ,      r         5                                                                              4                       p               1                       @                                      X                  h      '            P      8            `                                     n                                      h                ,           	                   R         8           h                                                                                       1                                                           #                                                                      +                   ;                    \         0           l                                B                   D                   F                   T                   H                   L                   V                   W                    X                   Y                   Z       $            [       0            \       <            ]       y            L                   ?                   ?                   ?                   6                   7                   >                   0                !                    %                              ,            0       =            1       L            7       [            >       k                                                  0                   1                   7                   >                                                           !      @            0      _                    r                                                 '                    (                    1                                      /           
	                     	                    0	                    C	                    Y	                    f	                   	                  	            h       	            n       	         ,           	         3           	            I      	            I      	                    
            ;      

            h       '
            n       1
         ,           O
            w      `
         /           q
                   
            @      
         ;           
                    
                  
            h       
            n       
            8      (            0      5                    B                    U                  _            h       n            n                                                                             8                                      8      /                   q                                                  @                          8                  c                    s                             /                    *                    '                                                                                        %         /           9                    Z                  t            
                  !                  A               /                       0                  0                  0                  H                  H      %                  <         -           K            @      W                                                                        @      Q         ;           l                                h               :                       `                  h                  h                   n                ,                       d                                    0                           6            !      V            `      b            .      t                              /                  D                  `                  @                  P                   R                   H                  L                  T                  A      !            A      +            2       :                  J            4       Y            :       h            @       w            6                                                     /                                                                                                                                         6                  @            h       O            n       Y         ,           h            x                                 6                    9                                           x      =            x      S            x      d                  t            A                  A                  0               $                                                                                 0                                              $            h      3                    B         7           N                  X            5      d            p      |         1                    )                                                          4                       p                                                                            5                  h       %                    4                   >                  J            W       T                  `                   m                  |                                                                                                         1           +            !      7                    L                                      }         6                    $                    2                       (                  C                  I               ,           4                           1                    )                    1                    $           O         &           k         .                   .                   .                   2                    5                                        
                             <         .          P         .          d         .                   *                       X               6           $                  b                                                                 
           >                  a            ^      k                                                                                         i               /                    5                               &                    F            ^      P                  \                              |      8                                                   |       .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                             @       !                                   @               /      P      	                    &      2               !                                  5                     k%                                     ;                     p%                                    K                     %                                   P                      %                                    Y                      %                                                          %            
   
                 	                      @+                                                         XN      b                                                                                              boot/grub/x86_64-efi/dm_nv.mod                                                                      0000600 0001750 0001750 00000005240 13417732100 0014732 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    `          @     @   UHAWAVIAUATS1H   H(   IIH        Hu1c  Hp1L\t   LH        ЅuԺ   H        H\H        ЅulH           fduiU   t%   t+   u=Mp1E1JpA   <Mp1A   "H           1H              H        HIH\   LHp8H        nID$    IUDM1L   A$IE     H        AWj HXZHeH[A\A]A^A_]H        H        H        H        H        NVIDIA unknown version: %d.%d unsupported RAID level: %d dmraid_nv                                                LICENSE=GPLv3+ diskfilter dm_nv                                                                                                                                                                                                       	                                       0                      =                      L                      X                      r                                                                                                               grub_mod_init grub_mod_fini grub_disk_get_size grub_memmove grub_disk_read grub_malloc grub_diskfilter_make_raid grub_diskfilter_list grub_error grub_list_remove grub_list_push grub_memcmp   ,          
           Z                     o                                                                                                     +                    V                                                                                                                                                         9                             .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                          @               `      h      
                    &      2               .      C                             :                                                          5      @                     0       
                    @                                                         P                                                          U                                                          ^                                                                                               
                 	                                                                                      g                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/linux16.mod                                                                    0000600 0001750 0001750 00000032100 13417732100 0015130 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    @1          @     @   U1   AHAWH}AVAUATSH(uH            H        8 u"H           1H        @  H        L A$  HdrSufA$  f=wH           f=Iֻ7vA$,  H=7HFH        HtH9HGH        HUL8LDH        Ѕ   H}H        j H  I   IIA   H)jH        HuH8H        ZYuiH}H        HH}H        HILH}H        ЅuE$  E$  H        H}С        He[A\A]A^A_]SH        H        H8H        H        H;     H        H    1[UH        11H        HSH8HfE fE  E   HC f]fEH        к  1H0f]f]f]f]HuH	   H        H8H        H0H]uZH	 wQH7H=	 v  
 H)H        HH+  	 H pH  	 HFH9rHH9wHuH1UH        HAWAVIAUATSH  DH8H        Ѕu'H           1H        1E1  I>H        HI  Lh@H        LHHH              HLLH        L9t8H        8   IH           1H        v  h  HHhH        ffUt"H           1H        .  DYH        A@wсjHdrSH        H     H        H       fnf=   yƅxrփf=\vEPH        HH`H        Hǅ`H        H`H           HH        fnf vyffE t
   E[H        fǅ?fǅ f- pfz2H        fǅ?fǅ H   	 ǅ\    A	EDDAIT$@A@A	IcH)\ HHH H        uFH        H	H   I        H9v-H           1I        A<  I        RH           H        H        I        P1AH        YHH        ^  MnǅX   D9X  H           H        HPI} хHP   IE H        I        HHPHA׃tSH        HPAׅt6H        HPAׅt11HPH        ЉH        8   fb      H        I} х   IE 1H`HxH        H`H        H        : t    FH`rJ Fуktmt1Ƀgu
   1Ƀ
1Ƀ
HHH9vH        H     HH        XI@H        I        H`MH   H        HH        H8AՅB  H        H`I        HPѺh  HhHH        AHHHh  HPH        Hh  AՁjHdrSufnw6@?   H        1)		HcHcHH        H           H        H   AH        LDHHH        H  H        Ѓ\H        H`HH        H8HH  H   Aׅ   H`HPHHHH   H        HAH        8 u6H        1H        H        H            1HH        MtLH        H        8 tBH        H8H        H             H        H8H        С        He[A\A]A^A_]UHH        SRЅuuE1H        1H        H        H        E1H        H        1H        H        H        HH        X[]SH        Ѕu,H        H        H8H        H8H[[ù   P0D@W<	AGЃHǈWuUHSHQt0H        HH{H;H        ZHH[]X[]AWAAVIH        AUI        ATIԺ   UH        SHHLD$AH{1H{DH{1H{1H{&   H{.1LD$H{6DH{>1H{F1H{N1H{V1H{^DH{f1HknLLIHL)AHL1H        HI[]A\A]A^A_AWIIAVIAUATUHSHHH$    ;/IuHt	HÊ</u  M*HL)Mt8HHL$LI} H        ЅHL$tIE <    Mmÿ   H        HI   IHLL)IEH        MIE t[IIH        H           H        1I        AHLE1H)A  HH        IHM.H)HqHH$MUH$1H[]A\A]A^A_HGAUATUSHRH tM1I        9+H{~%LkHJ|'AHCJ< H        H        HC    X[]A\A]AWH        AVIAUATIUSH(    HB    |$HcHD$    HkHIF   IF    11|  :   HH$H        HI   HkH        H$H     H        LH     H        H     H)HIM~H        IGIFH|(HuLH        С          M~H        Hq1Ht$HIIFM~H|(H           IM~M}LkH        LH     H        HH     H        H     LIFH$H        H$HLIFH8 ,AH0Hv@HpIFJD(IF9\$~{IFM<ܺ   H        HHIFH        I<ЅuIHP:/6HIFxH|$H        1HD$    1t+$IFH|$HPHHxIVH        ҋ$H([]A\A]A^A_AW1AVE1AUE1ATIUHSH(H4$HD$    D9m c  HL1HH        MkHLHEMJ|8HtgHHt$H        HLHEA   L@HxH        LD$HUHLD$  Jt:HH        HHEtCHE11ɺ
   H        H        E1H|$HH        HD$    LHEHILxH8H        LL9tNH        8 u%H$H           H        J1H        HС        bL$EtAH1LHH        HI<E11ɺ
   H        H        H        H|$1H([]A\A]A^A_ÍWи   	v1A@AWIAVI        AUE1ATUHS1De EtUA\u%}xu}Aօt}Aօt	HA\tA'tA"uA    DDH뢍CEEMtE/[]A\A]A^A_AVI        AUIATAU1S1A9~I| 1HA֍\   D؉[]A\A]A^AWAVAUIATUS1H(|$Ht$H$;\$A   HD$Ht$$H,H        HH9$   Dd$$H)$EtAE "IMI        D} EtmA\u?}xu9}AՅt.}AՅt#A\EIHAFEAFEAFA\tA'tA"uA\IƊE IHAFELtI "MnA HADIAE  H([]A\A]A^A_filename expected you need to load the kernel first the kernel is too old for initrd text bzImage zImage cannot allocate kernel buffer premature end of file %s invalid magic number too many setup sectors no appropriate low memory found too big zImage (0x%x > 0x%x), use bzImage instead [Linux-%s, setup=0x%x, size=0x%x]
 linux loader/i386/pc/linux.c vga= normal ext ask mem= BOOT_IMAGE= Load Linux. linux16 Load initrd. initrd16 070701 Creating directory %s, %s
 linux loader/linux.c newc: TRAILER!!! premature end of file %s       LICENSE=GPLv3+  video boot relocator mmap linux16                                                                                                                              ?                                                                                                                     )     g      I       B                      ^                      r                                                                                                                         ,                                                                                           7                H                     ]                     u                                                                                                                                                                                                                                                   8                     C                     M                     Z                     h          f       z                                                                                                          grub_mod_init grub_mod_fini grub_strlen grub_loader_cmdline_size get_virtual_current_address grub_video_set_mode grub_memmove grub_relocator16_boot grub_relocator_alloc_chunk_align grub_dl_ref grub_mmap_iterate grub_create_loader_cmdline grub_relocator_unload grub_errno grub_memset grub_register_command_prio grub_initrd_load grub_efi_secure_boot grub_unregister_command grub_file_read grub_get_initrd_size grub_zalloc grub_strcmp grub_strchr grub_malloc grub_file_close grub_file_open grub_initrd_init grub_real_dprintf grub_relocator_new grub_file_filters_enabled grub_error grub_free grub_strndup grub_dl_unref grub_initrd_close grub_memcmp grub_loader_set grub_strtoul get_physical_target_address grub_relocator_alloc_chunk_addr  '                     8             8       G                    X          '           i                                  4                    @                                     #           	                    6            0       G                    ]                    p         /                                        +                                           H                   0                *                       8                                        (       .            U       e                                0                                                           H       K                    [                    l         '                    "                                            i                                                                           '           ,                    C                   T         '           l                               @                                                                                   !                   4            (       p                               (                                      (       %            b       4                   E         '           W            Z       b                  q            A      {            G               $                    %                       0                ,                       ^                  c                          ;            j      X            n               .                                           r               .                                           @       U            @       k            @                                   0                       (                   0                                               	                     	                    V	                    u	                    	                    	            w      	                   	                    	                    	                   	            0       >
                   N
                    ]
         -           i
                  s
                  
            8       
         (           
         !           
                    
            H       
         *           
            8       
            0       
                                        #                    8                  D                  N                  X                    g                   q                  }                                                                      H                                                                                                         9         (           ^                  j                                      -                             ,                                        )           !                  +                  :                  F         $           g            R               (                    !                    (                                                            &                   &                   &                   )                    +                               $         
           O            J      o         &                   &                   &                   "                                      ,           W                                                        #            J      G         
           q            R                                    R                                                                                           '           &         +           4                    Y                    y                              R                                          k                                    !                   .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                             @                                          @                           	                    &      2                                                 5                     *                                     ;                     0                                    K                     @      P                              P                      @                                    Y                      Z                                                          h            
   
                 	                                                                                0      b                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/echo.mod                                                                       0000600 0001750 0001750 00000005740 13417732100 0014552 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    `          @     @   AWFAVIAUATAU1SHLoD$A}  @1D9$7  M<H        LHxH        HtHV        &  \   A}    AOt3f   ya   c   \u\HIAuH HD$H        HHD$HH        ЋD$9$tnH        1H        Trt+
nu
됀tt"vuyqi	a1]
IHTHtH        1H        H        1H[]A\A]A^A_ú  PI        I        H        H        H        H        H        ZH        H8H                               n                                       e                                                                         
 Display a line of text. [-e|-n] STRING echo Do not output the trailing newline. Enable interpretation of backslash escapes. LICENSE=GPLv3+  extcmd echo                                                                                                                                P                                                                          	                      
                                       )                      @                      K                      V                      b                      o                      {                                             grub_mod_init grub_mod_fini grub_strlen grub_unregister_extcmd grub_xputs grub_errno grub_printf grub_refresh grub_malloc grub_free grub_register_extcmd       >                     Q                     f                                                                                                        u                                                                                                                                                     +                                                                                                    0       8             T        .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                        @                                          @                                               +                     `      x                              &      @                     0                           3      2                                                  B                     X                                     H                     X                                    X                     h                                    ]                      h                                    f                      o                                                          x                                	                      X                                                                o                                                              boot/grub/x86_64-efi/linuxefi.mod                                                                   0000600 0001750 0001750 00000031420 13417732100 0015451 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    0          @     @   AWAH        AVAUATUSH8EtH        8 u)H           1H        1E11-  IcIH        HHH  E11H        E9E}fH        HT$H     H        H     H        H     K| JD IHHT$  H@@HHHH  Dt$?H        HHH        u H           H        >  IH        1H        v   H        I        E1I        AH        H        L\$  D  D9t$   J| N    LLD$ILT$(LO@LLL$ ALL$ LD$LT$(L9t3H        8 uzKT H           1H        VI H1IH        AHL$HLLD$ LD$ LD$GH        L$  1E1E1I        E9~J| IAHH        H        H8Ht&H        8 tH  H        HС        H8[]A\A]A^A_H        QH8H        H             H        H8Ht%H          H          H        H8Ht%H        8  H           H        H8Ht1H        H        H8Ht   H        1ZH        0H        HH        H8H        UH        HAWIAVAUATSH(uH8H        Ѕu"H           1H          I?H        HHE  HX@H        HHIuH           1   HHH}H        H9HEtIH           (uLH        Ѕy"IH           1H        @   ?H        HH        u"H           H        1  I        IH        1H           H        M$  A1  H        H8H        A$    MH        H           H        H  H  HGPH        H  IH  P1AH        HLMH  H        H        HH        1H           H        IAH        H           1H        Af  UH        ZY      1H        H        H        Aր  @H              1H        H        H        Af  
H              1H        H        H        Aփd   H        tE1H        H          H        I        A6  uH           %  1H        H          H        A֋8  ?   H        HH        H             IH        1H          H        AI           H        LMH        H8Aы8  H        L}HPH        HH        H        L H        1&  H        A1H        H        '  H        AH        H        H        *  H        (  1A֋d  D  HX          `  AA	  H        McLMHH        Mu*`  ?  H        H        H        L Mu"H           1H        a  H        H        <  H        1A1H        H        H        H        H        H            @  H        H        L 1AH        HUH8K44  L)AH        H        E  H        1AH        H        H  H        1ƃ  AH        H        H        L  H        ƀ'   ƀ&  H        DH        L 1AH}H        MtLH        H        8 t)H        H8H        H             H        H8Ht/Ht*H        8 u8  H           H        H8HtH        8 u1H        H        H8Ht)H        8 u   H        1        He[A\A]A^A_]UHE1H        1H        SH        H        P1H        E1H        H        H        H        HH        Z[]SH        H        H8H        H8H[Wи   	v1A@AWIAVI        AUE1ATUHS1De EtUA\u%}xu}Aօt}Aօt	HA\tA'tA"uA    DDH뢍CEEMtE/[]A\A]A^A_AVI        AUIATAU1S1A9~I| 1HA֍\   D؉[]A\A]A^AWAVAUIATUS1H(|$Ht$H$;\$A   HD$Ht$$H,H        HH9$   Dd$$H)$EtAE "IMI        D} EtmA\u?}xu9}AՅt.}AՅt#A\EIHAFEAFEAFA\tA'tA"uA\IƊE IHAFELtI "MnA HADIAE  H([]A\A]A^A_AUH        A1ATIUSH        HH$P]`fD$FfD$ CD$D$	D$
=D$D$D$D$D$#HIH        1H        ,   H        Hu.1H        H        /   H        1   H        H        13   H        DLU HIH        1H        5   H        Hu.1H        H        8   H        Ӹ   -1IH        H        =   H        ӃH[]A\A]H        PH7   H1H        H9и&   Zfilename expected you need to load the kernel first can't allocate initrd initrd_mem = %lx
 linuxefi loader/i386/efi/linux.c premature end of file %s cannot allocate kernel buffer Can't read kernel %s %s has invalid signature cannot allocate kernel parameters params = %p
 copying %lu bytes from %p to %p
 lh is at %p
 checking lh->boot_flag
 invalid magic number checking lh->setup_sects
 too many setup sectors checking lh->version
 kernel too old checking lh->handover_offset
 kernel doesn't support EFI handover checking lh->xloadflags
 kernel doesn't support 64-bit CPUs setting up cmdline
 can't allocate cmdline linux_cmdline = %lx
 BOOT_IMAGE= cmdline:%s
 setting lh->cmd_line_ptr
 computing handover offset
 can't allocate kernel kernel_mem = %lx
 setting lh->code32_start to %p
 setting lh->type_of_loader
 setting lh->ext_loader_{type,ver}
 kernel_mem: %p handover_offset: %08x
 Load Linux. Load initrd. initrdefi shim_lock: %p
 secureboot loader/efi/linux.c shim not available
 Asking shim to verify kernel signature
 shim_lock->verify(): %ld
 Kernel signature verification passed
 Kernel signature verification failed (0x%lx)
     LICENSE=GPLv3+  boot linuxefi                                                                                                                          -                                                                                                                     9                      O     @              V                      o           I                                                        @      ,                                                                                                                                        +                     7                     O                     [                     k                     z                                              l                                           ,                                                                                            grub_mod_init grub_mod_fini grub_efi_allocate_pages_max grub_efi_system_table params grub_efi_locate_protocol grub_loader_cmdline_size grub_memmove grub_dl_ref grub_create_loader_cmdline grub_errno grub_memset grub_efi_image_handle grub_register_command_prio grub_unregister_command grub_file_read grub_zalloc grub_efi_allocate_pages grub_malloc grub_file_close grub_file_open grub_real_dprintf grub_file_filters_enabled grub_linuxefi_secure_validate grub_error grub_efi_linux_boot grub_free grub_dl_unref grub_efi_free_pages grub_loader_set                       "             0       1                    B                      `                                                                                                      
         
                               )            4       8                     L            J       X            \       g            e       q                    ~                                                                                            }       #                     =                    l                                                 "                                                            $                                           8                #                       0       /                    A                    Q         $           f                   x                             $                       (                $                                        $                                                              (                !                       8       =                    M                    ^                     r                                                                                                                                                              1         
           @                    L                   [                     n                    {                              \                   e                                                                             \                   e                           2                    L                    X                    e            2      q            \                   e                   ?                  \                   e                   W                  l                  \                   e                                           #            \       -            e       C                  Z                  d            \       n            e                                                       \                   e                                                         @                  \                   e                
           (                   2            T      J            k      V            \       e            e       r                                                                                                                                                 \                   e        	                  
	            \       	            e       &	                   0	                  :	            \       I	            e       r	                   	                    	            (       	         
           	            (       	            (       	                  
                     
                  
            \       .
            e       ?
                  I
                  S
         %           _
            0       i
                  s
            \       
            (       
            e       
            (       
                  
            \       
            e       
            1      
            \                   e                           &            T      0            \       ?            e       W                   d            (       z                             "                                           8                #                       0                                      0                $                       (       %            0       6         $           B                    T            0       h         $           |                                z                                    \                                                                                                                                      8                                              .                    e            ?                  \      }            \                  ?      p                                                                                              
                                    #                  6                  @                  Q                  l                  x                                                                                                       F                                                                                   .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                             @       (                                   @                           	                    &      2               h      t                            5                                                          ;                                                         K                           H                              P                                                          Y                            	                                                                 
   
                 	                                                                               /      b                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/efi_gop.mod                                                                    0000600 0001750 0001750 00000032720 13417732100 0015242 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    2          @     @         ËGtru_    DGW1D!uKOEA	EA!u8wD!u.A	ȉAu$	θ      D	ΉtAɃu1ù      AAAuɃu        ÉA   EAAtɃu)ȉ
H        HHDH        H        HHt[        UH        H7E1E1HQ    H~QH        IQ   PH        j j H011H        Q8 t9H        H0H        H        H~H             H        H8H        H        H     H        Zh   P1H        H        ZH        AUIATUSHQH        H@Hh@G   GEEG   GHH        ЉCH           S   U SEt<rtr   C$   C(    C,   C0   C4   C8   *C$   C(   C,   C0   C4   C8    C<   C@      I        HS(Hs$}AHS0Hs,}AHS8Hs4}AHS@Hs<}AWH           1H        ҅tFH        H        0  H        1I        AXHH        ЉC H        1IE H        H        H8H        H        H     Z[]A\A]U1   H        H        SHH(H           H        H8Ht8 uaH           H        H8Hu>H        H|$   HH        H        H|$HHu-ltH      HpHFHH        `H$Hv7H   HH=   HuHFH        HH        H           1H        1H([]AUI        ATIUHS1HhH        HP;   HD$    LD$HHH8AH   HD$\$0LD$,   H|$PT$PD$   D$$   D$     T$@D$8   D$<   D$@   D$D   D$H   D$L    D$(D$P   D$T   D$4   D$   Յt   	1Hh[]A\A]UHAWAVAAUATSH   4	(HǅH    ǅ@    ǅD    ,   HPH        Ѕu8HPH        Ѕu!HDH@HPH        Ѕu@  wD  v$H        ǅ@   ǅDX       H        I        L`I\$H  HH        Ѕ  (;KuD;st,   49t  1ED$H        H          H        AH        H@DhH        H0HF@A9t1H        : u           DH~H        H        H0HFHPHH@        H            Jzȣ                H            H            H             B        H        H    H            H            H            H            H             H            H            H            H            HFH@H        H        IH        Mm  H        1H          H        AH        HH     H        H@@        H            B        B        H            H            H             B        H            H            H            H            H            H             H            H            H            H            H        L         H        H          H        H        P        PH        DH        L 1LH        H        H        AEXZtH        H          xH        H8H        ЅAtH        H          =1H           H        ЅAt/H        H        	  1H        D  1H        H          H        1|  E$H        H          H        11E1I        AHǅ8    ǅ0    H        HP;  HH8LHHPH        HtHǅH    |  HHQ  H        AH        PRH        DH1Aԋ@^_HHt19GwD9Gv!AH        H             H        Ѕu!AH        H             A$H        1AH          H        AHHD$H;(uD9pt	, uD;4t64 t-AH        H          H        1A1PHIH98r	H8AH8ǅ0   00 KH          H        1H        I        AH           1H        He[A\A]A^A_]U1H           H        SHD$    HL$HH   1H|$   H;\$   HD    H        HH        H        Ht$H        H        H        Ѓ|$ t1H        HH        H        H        7HcH        H     H        H     Q9HvHH HuH        H        HHH        H        HtH        HxH[]H        Q8 t9H        H0H        H        H~H             H        H8 tZH        H        Xunsupported video mode GOP: couldn't fill mode info
 video video/efi_gop.c EDID information not available agp-internal-edid GOP: keeping mode %d
 GOP: mode %d: %dx%d
 GOP: mode %d: too large
 GOP: mode %d: incompatible pixel mode
 GOP: mode %d: depth %d
 GOP: mode %d: rejected
 GOP: no mode found
 no matching mode found GOP: couldn't allocate shadow
 GOP: initialising FB @ %p %dx%dx%d
 GOP: Couldn't create FB target
 GOP: Couldn't set FB target
 GOP: Couldn't set palette
 GOP: Success
 GOP: %d modes detected
 EFI GOP driver                                       P                                                                                                                                                                                                                                                   aʓ +4AIlfV6D3yީB#8JzЀQjLICENSE=GPLv3+  video video_fb efi_gop                                                                                                                             c           Q      r                                                        	                                       4                      G                      b                      n                                                                                                                                                                              ,                     F                     a                     w                                                                                                                                                                                             <                     S                     _                     v                                                                                                         	                                          %                     /                     G                     n                                                                                                                               grub_mod_init grub_mod_fini grub_video_fb_map_rgba grub_video_fb_fini grub_video_get_blit_format efi_wrap_10 grub_video_fb_get_region grub_video_fb_create_render_target_from_pointer efi_wrap_4 grub_video_fb_unmap_color grub_video_fb_map_rgb grub_video_fb_scroll grub_video_fb_fill_rect grub_memmove grub_video_fb_blit_bitmap grub_video_fb_get_viewport grub_efi_get_variable grub_errno grub_memset grub_video_adapter_list grub_video_edid_checksum grub_video_fb_get_palette grub_video_fb_set_palette grub_video_fb_map_color grub_video_fb_init grub_video_fb_get_area_status grub_efi_locate_handle grub_malloc grub_efi_open_protocol grub_real_dprintf grub_video_fb_set_active_render_target grub_video_fb_set_area_status grub_video_fb_set_region grub_video_fb_delete_render_target grub_error grub_list_remove grub_free grub_video_fbstd_colors grub_video_fb_get_active_render_target grub_video_fb_set_viewport grub_video_edid_preferred_mode grub_video_fb_get_info efi_wrap_2 grub_video_fb_blit_render_target grub_video_fb_create_render_target                P                 &                        `                                        x       +                    ?                    Z            p       j            x       w            t                2                       p                   `                ,                       `                                                                                                    x       F                   W                                }       @                    Q         *           c                   m            5       |            ;                %                                           X                                       `                ,                       `                                    $                       h       .            0      G            h       V                   j            j                                                                                              ,                       K       %         *           >                    X            x                                                      0                               1            x       ;         %           Z                               |                   5                   ;                   x                   x                   p                   t                2           '            x       E                   O                   f                    q                   {                                                                                        $                   (                   ,                   0       	            4       	            8       !	            <       1	            @       A	                    Q	                   i	            X       s	         #           	            `       	            5       	            B      	            ;       	                    	            x       	                   	                    
                    
                   
                   &
                   6
                   K
                   U
            $       e
            (       u
            ,       
            0       
            4       
            8       
            <       
            @       
                    
                   
            X                                      a                  5       $            ;       .         %           8                   C                    P            X       d                    n            P       x                                                  5                   P                &                                         5                -                                                             5       #            ;       9                  C            5       R            ;       i                  s            5                   ;                %                       x                                       ;                          *            5       c                   m            5                                                         5                                      5                   ;       #                   -            5       <            ;                   5                   ;                                  %                       +               *                       @               "           O            @      \            h       f         $           w            x                                       :               ,                                                                                  x                   h                                               %                   /                    >                    S            p       c            x       p            t       |         2                       p                   x                                    +                                                  (             X      0             K      8          1           @                   H                     P                     X          /           `                     h          (           p                     x          '                     !                                                               
                                                                                    3                                                              4                     )                                         .                        :                          .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                          @                           
                    &      2                                                 :                            P                             5      @               p/            
                    @                     p                                    P                                                         U                                                          ^                                                                                               
                 	                                                                               (2      g                                                                              boot/grub/x86_64-efi/gcry_rijndael.mod                                                              0000600 0001750 0001750 00000050630 13417732100 0016446 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    N          @     @   AVI        I        I        AUATA   UH        SG3B3
DGD3BHc  H H	G3BHI DkH&  L	DAC3IIA  C3II8B3T IIA  AC3II.A  C3IIA  B3T DVHH&  AC3IIA  C3II8B3T IIHA  %  VH.A  C3A3LG3T VE9F  A3@A3AP3VH H	A@3FH DH	HH&  AC3IIA  C33II8B3T IIA  AC32II.A  C33IIA  B3T5 DVHH&  AC3IIA  C33II8B3T IIHAA  %  IVH.A  C32A33T VMcVHIB3D/B3/B3T/H H	FB3D/DH H	H        FDDII(EFDDFIIEFDDFII8FDDFII EFDDFDDDFII0EFDDFIIEFDDFDFDDFII(EFDDF	IIEFDDF
IH0I8FDDFIHI EFDDFDDDFLDNF1D1FD1FD1F[]A\A]A^ATI        I        US  H        JLcMHIB3   IB3DJH H	ȋJB3   DB3   DI        H H	HH&  C3IIA  C3II8C3IIA  ̋C3II.A  C3IIA  C3DNHH&  C3IIA  C3II8C3NH  A3HHH.%    A3A3HcHL   NV  A3A3@AH3NH H	AP3VH DH	HH&  C3IIA  C3"II8C3IIA  ̋C3#II.A  C3"IIA  C3!DNHH&  C3IIA  C3"II8C3NH  A3HHH.%  I  A3A3N3  3     3NH H	Ћ  3VDH H	H        FDII(EFDFIIEFDFII8FDFII EFDFDDFII0EFDFIIEFDFDFDFII(EFDF	IIEFDF
II8FDFII 
EFDFNHH0H
FN   1   1F   1F   1F[]A\AWH        AVAUATUSHH8 u    H        H     H           H8 q  Ǉ      tt% R     A      A
      A   D  19v$ADIAAHMcNL@G\
؍QH\$ LcJ    LH41EDHy11E1A9|A9|H        H           IcLcLl HcJL$1DAAD9}E\ EHAu1AFL!F
D3L$ DL$ F\"D3FD0\$!F\#FD0\$"F\ DL$ FD0\$#t3E1F\ F1\$IEYA9|E1A9   HA9}   DL$$D3L$ DL$$D3L$(D1L$,DL$(DL$,F
D0L$0DL$-F
D0L$1DL$.F
D0L$2DL$/F
D0L$3DL$4D3L$0DL$4D3L$8D1L$<DL$8iA9lMcHcN| LcMN4E1B,G$AA9}C,C,IރuE1DE1H           HH[]A\A]A^A_AVAUATIUHSHH      H   H   H   H   H   uLKLCH{HA   I        I        H        H        HIIHD;     A   D   AAC3E   B3D   B3D      A   AC3E   B3D   B3D      A   AC3E   B3D   B3D      A   AC3E   B3D   B3   @   H        ǃ     HI        L	t8LH   I        AHHt$HAպ   Ht$HALHHAտ@   H        H []A\A]A^AUATIUH        SHHHH	H(t4H   I        AHHt$Lպ   Ht$HAHտ@   H        H([]A\A]SH        H        H        HH        [SH        H        H        HH        [                              @         6   l         M      /   ^      c         5   j         }                           	$4,8-9'66.:$?#1*HhXpAeS~ZrNlSEbl\tHeQF~FbTwKiZаݻʦǭؽ֦įظѵʢïĨϦҴٺ;{2p)m fW\AJs#z(a5h>W^ELk;f5q'|)_REHKEWY7s:}-o avm`dwmzRYڕ[Tћ@C̉INǇ>7,%1<+&FMMCPQ[_ju˄a{Г|iٞwg=3!/29$/M֍vDۆx_̛jVdiN`@{Rr\!>(03":,=6+ 2?(%necntsyxZI޸WBУ@_ªMTAO]Sywek1?-#	|
GuLnQgZX>kQ3`J$}C)v4b=o&x	/uV3[8L%A.al{vUXOB	=Ҳ0ܩ'Π*G<zN7tU*f\!hcBjLq^xPd
ory+H2"C<9^.0U 쓺
∭-Է&ڬ;ȥ0YRODu~ch
gj}p.S4'^:<I(5D&B|KrP`Ynf;Do6Jt!X},Vz7q9l+g%8V5]"@/Kd"Gi)I~4[s?UP]qJcGm18#*ypkb]TOF    	4,8$9'6-.:$6#1*?hXpHeS~ArNlZEbS\tHlQFeFbT~KiZwаݻʦǭشֽĦʯصѢʯÌĨϦҴٺ{;p2m)f W\AJ#s(z5a>hW^ELk;f5q'|)_REHKEWY7s:}-o amv`wdzmYڕRTћ[C̉@NǇI>7,%1<+&FMMCPQ[_jua{˓|iОwg=3!/29$/֍vMۆxD̛j_dVNi@`R{\r>!0("3,:=6+ 2?(%necntsyxZIޱWBи@_£MT̪AO]SywekӲ1?-#	
G|LuQnZg>kX3`Q$}J)vCb4o=x	&u/V3[8L%A.al{vUXOB	=һ0ܲ'Ω*<zG7tN*fU!h\BcLj^qPxd
oryH2+C<"^.9U 0욺
⓭-Ծ&ڷ;Ȭ0ƥYRODu~chg
j}pS4.^:'I(<D&5|BrK`PnY;Df6Jo!Xt,V}z7q9l+g%8V5]"@/Kd"Gi)I~4[s?UP]qJcGm18#*ypkb]TOF    	,8$4'6-9:$6.1*?#XpHhS~AeNlZrEbStHl\FeQbT~FiZwKлݦʭǜشֽĦʯظѵʢïĨϦҴٺ{;p2m)f W\AJ#s(z5a>hW^EL;k5f'q)|_REHKEWYs7}:o-a vm`dwmzڕRYћ[T̉@CǇIN>7,%1<+&FMMCPQ[_jua{˄|iГwgٞ=3!/29$/vMֆxDۛj_̐dVNi@`R{\r>!0("3,:=6+ 2?(%enncstxyIޱZBиW_£@T̪MAO]Sywek1?-#	G|
LuQnZgkX>`Q3}J$vC)4b=o	&x/u3V8[%L.Aal{vUXOB	һ=ܲ0Ω'*<zG7tN*fU!h\BcLj^qPxd
oryH2+C<"^.9U 0욷
⓺-Ծ&ڷ;Ȭ0ƥYRODu~ch
gj}p4.S:'^(<I&5D|BrK`PnYDf;Jo6Xt!V},z7q9l+g%V8]5@"K/"Gd)Ii4[~?UsPq]cJmG18#*ypkb]TOF    	8$4,6-9'$6.:*?#1pHhX~AeSlZrNbSEHl\tFeQT~FbZwKiаݻʦǭشֽĦʯظѵʢïĦϴҺ;{2p)m fW\AJs#z(a5h>W^EL;k5f'q)|_REHKEWYs7}:o-a vm`dwmzRYڛ[Tщ@ĊIN>7,%1<+&MFCMQP_[uj{˄aiГ|gٞw=3!/29$/vM֍xDۆj_̛dVNi@`R{\r>!0("3,:=6+ 2?(%necntsyxޱZIиWB£@_̪MTAO]Sywek1?-#	|
GuLnQgZX>kQ3`J$}C)v4b=o&x	/uV3[8L%A.al{vUXOB	һ=ܲ0Ω'*zG<tN7fU*h\!BcLj^qPx
dory2+H<"C.9^ 0U욷⓺
Ծ-ڷ&Ȭ;ƥ0YRODu~ch
gj}p4.S:'^(<I&5D|BrK`PnYDf;Jo6Xt!V},7z9q+l%g8V5]"@/KGd"Ii)[~4Us?Pq]cJmG18#*ypkb]TOFR	j068@|9/4CDT{2#=LBN.f($v[Im%rdhԤ\]elpHP^FWث 
XE,?k:AOgst"57unGq)ŉobV>Ky xZݨ31Y'_`QJ-zɜ;M*<Sa+~w&icU!}PQAeS~'^:k;EXK0U vmvL%O*5D&bZI޺g%E]/uLFk_mzRYڕ-t!Xi)IDjuyxX>kq'O f:}Jc1Q3`SEbdwk+HhXpEl{Rs#KrWU*f(/{7(0#j\+yiNe4bѦ.S4U2u9`@q^nQ!>=>FMT]qoP`$@C̉ٞwgB[8y|
GB|    	+H2pZrNl8V=-9'6d
\!h[Tћ6.:$
gWҴO awKiZ
*"C<	ǭ򶨹-WuLݻ`&r\f;D~4[C)v#hc1cB"@ J$}=2)mǞ/K0܆Rwl+pHd"GĨ?},V3"INǇ8ʢ6Ϧz(&ڭ?:,xP_̛j~FbTظ9^.ï]Г|i-o%Ϭ;}cn;{&x	YnOne~!ٺo6J	|)1?#1*0Ƣf5N7tʦа3JAP/M֍vMCMT̖ѵjL,eQF^5]tsA.gZRV3Gmaz7Y<'a5G<zYs?Uy7sS[_=oDۆxh>$4,8@_r%<I(Aq9Vd˄a{2pl\tHWBЧPQeS~A^:'k;EXKU 0mvvL%O*D&5bZIޱg%E]u/LFk_zmYڕR-Ծ!Xti)IDɉjuyx>kXq'Of :}Jc13`QEbSwdk+hXpHElR{#srKW*fU(/{70(#j\+ϴyNieھb4ĦS4.U2u9@`^qQn>!=>FM捵T]qo`P$ֽC̉@wgB苈[8y
G||B    	H2+prNlZ8V=9'6-d
!h\Tћ[.:$6g
WҴO aKiZw
*C<"	ǭ򋨹-WLuݻ`&\r;Df~4[)vC#hc1Bc"@ $}J=һ2m)/K0ܲRwl+pHd"GĨ?,V}"3NǇI86ԁϦ(z&ڷ?,:Px̛j_FbT~^.9À]|i-o%;Ȭ}cn蜻{;x	&nY욚One~!ٺ6Jo	|)1#1*?0ƥf57tNʦа3JAP/֍vMMCMT̪䖵шLj,QFe^5]tsA.ZgRV3Gmaz7Y<'Ω5a<zGYs?Uy7sS[_o=ۆxDʯ>h4,8$@_£r%I(<Aq9شdVa{˶p2\tHlWBиPQS~Ae:'^;kEXKU 0vmv%LO*ˀ&5DbIޱZg%E]/uLFk_mzڕRY-ԾXt!)IiDjuxykX>'qOf }:cJ1`Q3EbSdwk+XpHhElR{#srKW*fU(/{70(#j\+yNie4bĦ4.SU2u9@`^qQn>!=>FM潵Tq]o`P$ֽ̉@CwgٞB8[yG|
|B    	H2+pNlZrV8='6-9d
!h\ћ[T:$6.
gWҴOŢa iZwK
⓺*C<"	ǹ-WLu`&\rDf;4[~vC)#hc1Bc@" }J$һ=2m)K/ܲ0Rwl+pH"GdĨ?V},"3ǇIN8ʢ6Ϧ(z&ڷ?,:Pxj_bT~Fظ^.9ï]|iГo-%;Ȭ}nc{;	&xnY욷Oen~!ٺJo6	)|11*?#0ƥ5f7tNʰ3JAP/vMMCT̪MѵLj,FeQ^]5st.AZgR3VmGaz7Y<Ω'5a<zGY?Usyοs7S[_=oxDہʯ>h,8$4_£@r%(<IAq9شdVa{˄p2tHl\BиWQP~AeS:'^;kEXK 0UvmvL%O*&5DbޱZI%gE]/uLFk_mzRYԾ-Xt!Ii)DujyxX>k'qݾO f}:cJ1Q3`bSEdwk+pHhXElR{s#rKWfU*(/{70(#j\+yNie4bĦ4.SU2u9@`^qnQ>!=>MFTq]o`P$ֽ闉@CgٞwB[8yۡ|
G|B    	2+HplZrN8V=6-9'
dh\![T$6.:
gWOa ZwKi⓺
*<"C	ǭ-WuLݻ`&\rDf;[~4C)v#ܶhc1Bc"@ J$}һ=2)m/Kܲ0Rw+lpHGd"Ġ?V},"3IN8ʢ6ϥz(ڷ&?,:Pxj_̛T~Fbظ.9^ï]iГ|o-%Ȭ;}cn;{&x	nY욷One~!Jo6	)|1*?#1ƥ05ftN7ʦа3JAP/vM֍CM̪MTߞѵLj,FeQ^5]tsA.gZRV3mGa7zY<Ω'a5zG<YUs?ys7S_[=oxDۆʯh>8$4,£@_r%(<IA9qشdV{˄a2pHl\tиWBcc||ww{{kkooT00P`gg++}VbMvvE@}}YYGGɎAg_E#Srr[uᓓ=&&jL66Zl??A~O44\hQ4qqs11Sb?*R##eF^(07
/	6$=&''iNuu		,,tX.4-6nnZZ[RR;;Mva})){R>//q^SSh    ,  `@㱱y[[jjFg99KrJJޔLLԘXXJk*ŪOCCņMMך33UfEEϊPP<<Dx%KQQ󢣣]@@?!88Hpcwu!!cB0 mL5&/__ᾗ5DD̈9.WU~~==Gzdd]]+2ss``OOў""fD**~T;FFʌ)Ǹk<(y^^v;22Vd::Nt

IIے
$$lH\\]nCbbđ917yy2C77YnmmڍdNNҜIllVV%eezzGoxx%%oJ..r\$8WsQ#|tt!>KKݖapp>>B|qffHHؐaa55_jWWiX':'8똘+3"iip3-"< IUU((xPzY	e1BBƄhhAAÂ)--wZ{TTm:,cc||ww{{kkooT0P`0gg+}V+b׫MvvEʂ@}}YYGɎGAgԢ_E#Srr[u=&jL&6Zl6?A~?O4\h4Q4qqs1Sb1?*R#eF#^(07
/	6$=&'iN'uu		,tX,.4-6nnZZ[RR;Mv;aֳ}){R)>/q^/SSh    , `@ y[[jjF˾g9Kr9JޔJLԘLXXJk*OCņCMךM3Uf3EϊEPP<Dx<%KQQ]@@?!8Hp8cwu!cB!0 mL5&/__5D̈D9.WħU~~=Gz=dd]]+2ss``OўO"fD"*~T*;FʌF)k<(y^^v;2Vd2:Nt:

IےI
$lH$\\]nӬCbb917yy2C7Yn7mmdNҜNIllVV%eezzGoxx%oJ%.r\.$8WsQ#|tt!>KݖKapp>B|>qffHؐHaa5_j5WWiX':'8+3"iipَ3-"< IUU(xP(zߌY	e1BƄBhhAÂA)-wZ-{TTm:,cc||ww{{kkooTP`00gg}V++bMvvEʝ@ɇ}}YYɎGGAg_E#Srr[u=jL&&Zl66A~??O\h44Q4qqsSb11?*ReF##^(07
/	6$=&iN''uu		tX,,.4-6nnZZ[RRMv;;a}{R))>q^//SSh    ,`@  y[[jjFgKr99ޔJJԘLLXXJk*OņCCךMMUf33ϊEEPPDx<<%KQQ]@@?!Hp88cwucB!!0 mL5&/__5̈DD9.WU~~Gz==dd]]+2ss``ўOOfD""~T**;ʌFF)k<(y^^v;Vd22Nt::

ےII
lH$$\\]nCbb917yy2CYn77mmdҜNNIllVV%eezzGoxxoJ%%r\..$8WsQ#|ݜtt!>ݖKKappB|>>qffؐHHaa_j55WWiX':'8+3"iipى3-"< IUUxP((zߏY	e1ƄBBhhÂAA)wZ--{TTm:,cc||ww{{kkooT`00PggV++}bMvvE@}}YYGGAg_E#Srr[u=L&&jl66Z~??AOh44\Q4qqsb11S*?RF##e^0(7
/	$6=&N''iuu		X,,t4.6-nnZZ[RRv;;Ma}R)){>^//qSSh    ,@  `yȶ[[jjFgr99KJJޘLL԰XXJk*OCCŚMMf33UEEPPx<<D%KQQ]@@?!p88HcwuB!!c 0mL&5/__5DD.9WU~~z==Gdd]]2+ss``OOѣD""fT**~;FF)k(<y^^v;d22Vt::N

II
H$$l\\]nCbb917yy2Cn77YmmdNNIllVV%eezzGoxxJ%%o\..r8$WsǗQ#|tt>!KKapp|>>BqffHHaaj55_WWiX:''8+"3iip3-<" IUUP((xzY	e1BBhhAA)Z--w{˨TTm,:c|w{ko0g+׫vʂ}YGԢr&6?4q1#'u	,nZR;ֳ)/S  [j˾9JLXCM3EP<Q@8!_Dħ~=d]s`O"*F^2:
I$\Ӭby7mNlVezx%.tKp>fHa5WiَU(ߌBhA-TAES256 2.16.840.1.101.3.4.1.41 2.16.840.1.101.3.4.1.42 2.16.840.1.101.3.4.1.43 2.16.840.1.101.3.4.1.44 RIJNDAEL256 AES-256 AES192 2.16.840.1.101.3.4.1.21 2.16.840.1.101.3.4.1.22 2.16.840.1.101.3.4.1.23 2.16.840.1.101.3.4.1.24 RIJNDAEL192 AES-192 AES 2.16.840.1.101.3.4.1.1 2.16.840.1.101.3.4.1.2 2.16.840.1.101.3.4.1.3 2.16.840.1.101.3.4.1.4 RIJNDAEL AES128 AES-128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           LICENSE=GPLv3+  crypto gcry_rijndael                                                                                                                                               O      3                  3                                  	                      
                                       $           `       :                      Q                      b                      w            `                    `        grub_mod_init grub_mod_fini memcpy _gcry_cipher_spec_aes grub_cipher_unregister _gcry_burn_stack grub_cipher_register _gcry_cipher_spec_aes192 _gcry_cipher_spec_aes256                     )                   -                   %      /             !                  -                                          
                  Y                                                                           	                                                    1      
                                      )                  3                  =                   I                    b                  ~                                                                                :                    R                    \                    h                    w                                                                                                                                                           `       0                   8                   @             
      `                    p                                 7                    O                    g                    s                    {                                       0                                                       
      0                   @                   P                   `                                                                                        P                                                                         
                                                         (      0            ?      P            V      X            _      `            f       .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                          @               F      H                          &                            2                             .      2               @      n                            B                     A      p                             =      @               0J      x                          H                     `D                                    X                     pD                                    ]                      pD                                    f                      wD                                                          D                                	                      8F                                                          M      o                                                                                                                                      boot/grub/x86_64-efi/efi_netfs.mod                                                                  0000600 0001750 0001750 00000122730 13417732100 0015575 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   H        H8   SH        Ѕv  H        E1H        H        H        H        H0E1H        H        H        H        H        H0E1H        H        H        H        H        H0E1H        H        H        H        H        H0E1H        H        H        H        H        H0E1H        H        H        H        H0H        H        H            [H        8    SH        H        H8H        H8H        H8H        H8H        H8H        H8H        H             [H        HH        HHEPH        HHHpHxQ1Z1ATI        H        I<$UH        SHHHI$H[]A\AVH        AUI        ATUSHH   H        HPHHtOII4$HtH        1IAII        I<$Ht	AIHH        H        HPHHtOII4$HtH        1IAII        I<$Ht	AIHH        H[x []A\A]1A^ATH        I        USHHtBH        HHHt%HH        Hsh1AHH        H[x[]1A\AVH        I        AUATUSH(HtmH]pHt^HC H{HItFHC H{PHIt"HLH3H        1I        ALAMtLAH[0Hmx[]A\A]1A^AUH        I        ATIUSWH(HtEH]pHt6LH;AՅu#HLH        H        Y[]A\A]H[0HmxZ[]A\1A]H        AVH        IAUIATIUHSLHHT$Ѕ   H|$A    </uq1HHt$H        H        :       HT$:        I}   )Ht$ȉD$H              D$I}   Ht$H           HT$HLH        ЅttH|$A   </uG1HHt$H        H        : u=<w9HT$: u/EE Ht   uEE Ht    1 LH            1H        H[]A\A]A^UH        H        SHHtGHH        1H        HHtH1HD$HH        HD$1H[]UH        H        SHHtGHH        1H        HHtH1HD$HH        HD$1H[]AWH        AVAUI        ATIUSHH(H   H]pH   H3H        1I        AI4$IHAօuHC H{H@ELI        AH3H        1AI4$HHD$AօHT$uHC H{H H[]A\A]A^A_HAH[0XHmxBH1[]A\A]A^A_AVH           H        AUATUSHH@H     H        ЅuLc*H        HH        ЅuH        L H        A   G,   HH        HtIL`I)HH        IH        L HMu"H            1H        l  E1D$    HL$HT$ Ht$LH        ЅtH           |$ H        tC   Ht$ H|$H        L0MtcH        Ht$LPHuKMvxۺ   Ht$H|$H        L0Mt H        Ht$LPHuMvx1HH        u0H        HH        uHH              IuJ   HH        H        Ѕ   H        H        HH@(      Ius   HH        I        AՅuH        H        -   HH        AՅu!H        H        HH@(    "HH           1H        kH        HPpHxP   H        HHt;LH        HHuHH        H        HC@H1H@[]A\A]A^AVH        Ih   AUATIUSHHtQh   LHI        AHCLHhH        HEHCH        H@Hx uHա        pH        LHLHpHxD@(AQH        о   HH        HIuHCH@Hx땺h   HLAL1[]A\A]A^H uH        &   1H        1H   H        HD$    HuH           H        <HH8HT$H        Ht$HH           1H        1HD$HAWH        A (  AVI (  AUATE1USHQIHtQH        H (  MLFLLLHpHxAQHHH        LHIH)H        LLZ[]A\A]A^A_ATIUHSHGHHwH@H@8H9vH)Rs_H        HHHpHxQH        HSLHHRpHxD@(HJHAQHsHtHH        H        HMHPpHxHBH[]A\AWAVAUIATUSH        H(Ht$HT$:   HIN  LH        H5     H        LH        Ѕ   MH        M)I~HHuH(H        []A\A]A^A_LLHI        H\$AID$BD5  /   H$HH        HILLD$uAMH        H        g   H        1I        AAI|$IL+,$Iv^A|$[uVI}A|<]uJHHu)H        HH        H([]A\A]A^A_IUIt$HABD+ *HL$I}AHHHL$tLH4$HB+ LI        AHIu H        HH        HsHǾ/   H        H     HHH        H        1HL$LHAHT$HHHH        H        LHH(MH        []A\A]A^A_H        ^   H        1I        AA$ XAVAAUIATIUHSH_pHtA$9C   H[08   H        HLH        HA$HkCHEpHC0A<$ tH        
H        HC H]pHC H{DLP uBH        &   H        1#H;H        LH        HH[]A\A]A^ATUSH@$    D$    tH        >H        HHI        HtHuH{hAԅt*H[xH           1H        ҉   HH}LD$HT$Ht$H        Ѕud$D$(H        tH|$,   Ht$H|$,Ht$   ЋL$HT$(Hu HH        1H        DH@[]A\AWAVIAUIATUHSH        H8HD$H        HL$HT$H        H@`H   H        H2  HD$HH        HH  H  H9tH[xH;k(uLc0
H;k8uLc@M  Ld$HH1fMUf$M    u%HD$H}LLH        HD$   u9HuHu   LI        AHuH|$    AD$    8uPHpHu   LH        D$-@D$, D$   Hsh   HT$HH        ЊU u
}  D<$LIl$h}    IE     H  I      fUu fBH9rftzf;uh$HxH        Ћ$IHuHH        HH$H$LLLH        A LH        HH)iIt$hH|$   H        HD$-@D$, D$      
  	  H        D    1I        AH        HH$1AH`  I   H        HIE t HǾ/   H        HuIE   H$H|$   H        H        ID$hHpIt$hH|$    H$D$    Hsh   HT$HH        H   H0H        H        H        H(I        H   H]pH   H3H        1AH        I1H$H        HI        I        LALAH3H        1AI1H        H$HLALAH[0dHmxNH8[]A\A]A^A_UH        SQH8H        H   HxH        ЊHfp   u}HXH        1H        /  H        II        H        AѺ   H        HՅ   t3   H        H1҅utHU1҉Z[]H        QH8H        HtCHxH        ЊHfpuux$utH1ZAW1H           AVAUATUSH        HhHL$PHHD$H\$0  HD$$    HD$PHPHHT$P2  H;H        H     H        H;I        AHI     H        H;I        AH        HD$(H;AIH        M     t   H        LAHD$	HD$    H        H;AHH        H     t   H        HAHD$	HD$    H        H;AIH        M     t#   H        LH        H1HT$8   H        HIHT$8u<H|$H        H        H8H	  HoxHH        Ht$$H        IV`M~H        MfInHIHD$(MnXIFHD$IF HD$IFPH        IFx1IFhLIFp    H        HD$$1HL$XH           HD$0HI*  HHD$XHPHHT$X  H;H        H   HE1H        HHH        Ѐ8u/Pu @f@ u @A   f@ H        L0I        M{  I>H        HHAׅtMvxպ   H        H;H        HH        tEH34  Iv8IF@HHLH        H        H|$H        HH   HCD$L    LD$L      H        HH8Ht6LChH        H          H        1I        AHCHtZD$X    LD$X      HH8Ht6LChH        H          H        1I        AH[x#HH        Iv(IF0H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        1H        H        1H        H        H        1H        H        H        H        H        H        H        1H        H        Hh   []A\A]A^A_AWH        AVI        AUATUSH        HH        L M   Il$pHtxHu H        1AH        I1HL$1HI        LLAHu H        1AI11HL$HLLAHm0Md$xkH        11H        H        11H        H        11H        H        11H        H        11H        H        H        H        H     H        H     HH        []A\A]A^A_H         H         SHzPHHtH        HCHCP    HC    HC@    H@H@8    1[SHHHrPHt[HtVMtQHBHR@H@H@8I< H9vH)It+HLLD$HH        HCLD$H@L@8L1H[AWAVAUI        ATIUHLSH   H        Lt$pHT$DD$H$   LL$H$   HX`H        LH$   H        H$   H        H$   H        H$   H        H$   H        LEH        ЅHL$LLI        tHD$pH        8 t
H        1AHItIHH        H| IH        HItILM11sLH        С        l  MtV1I@7I)ŅHG*  AAA  A҉?D	҃     HMuM)LI        IMfCG  A1|$ L|$8D$x   Ǆ$       LL$@HǄ$       Lt$PH        HD$@          I        E1D$0HD$0HD$pH$   H$   H      H{PHD$HH          AHI   H|$8AL  uh@x@Y@u      @u   @Hǃul   usIw  vK  v>  II
ff fAHff fAHHH?   fAII12   (H}HT$@HI        AHuI        IHt$@HD$H        H{pH|$8AHT$H           1H          A}  uH}(HH        HD$,Ǆ$       HǄ$       Ǆ$       HǄ$       E1H$   D$,    LL$XHD$X    H{PH              AHIt/H{pHt$@H        H|$8ALH        &H$   HD$`    H} HT$XHHD$hH          AHIuI        MH{pHt$XH        Ht$@H{pH|$8ADH           1H        y  A}  uH}(HH        H$   (   H$   I        HtH{HAH{pHt$XAH{pHt$@H        AH|$8AԃH        u"H        HT$Hƿ   1   H        ЉHƿ)   1   HD$HtkH     1I        9$   ~OH$   IH        IHJ<(AօuH$   
   1J|(H        HL$HH$   H        HtH{HH{pHt$XH{pHt$@H|$8A1H   []A\A]A^A_AWAVAUATIUDSHHxHBHt$ HT$H@H8H        ЅH        HCt7HT$: u-H@H        H        HH        HD+H@H        H        HH        HD1HIttH        H        LH        H        LH        I        HCE1I|$ A   H@HPH0AՅ            HCE1I|$ LL$H@HPH0AՅ  H|$H        Hl$IH        M|$ HL``u"H        &   1H        +  MI|$PLL$0E1H              H        HD$HLl$hHD$H    D$P    HD$X    HT$0HD$@H      l$`HD$8H        I   LH        HuH        ?HD$I|$pH        Ht$0HT$H           1H        J: uHT$I(LH        HT$܋D$`IH)I|$pHt$0H        HD$LsPCH    HC@HCH@H@8    1Hx[]A\A]A^A_AU   IATUH        S1HhLg H|$HՅD$H   D$L  H\$0   IuD$PIHD$   HL$   H        H~HH      H9uH        1H        HtH        1H           Hl$   HH        HfD$   Hl$X"D$P    1HD$0fD$:  H\$XHT$HI|$LH        H      H9t0Ht+H           1H        H        Hh[]A\A]SHBHHB    HB@    H@H@8    HzPHtH        HCP    1[AUATUHSH(tH_@H_0LchA<$ u3HcH{HH        HtH        1H        A|$ H           LmHD$      HHE  II}HL$   LH        H  It$   HH        Ѕ      H|$HH        H{X1HT$   LmHD$      HH   II}HL$   LH        Hu~It$   HH        Ѕtp   HHI        AԺ   H|$HuAH{XHL$HHH        HtH        1H        HH        H([]A\A]AWAVAUE1ATIUSH8?[Ht$H|$uHAH|$HD$8:ux:t1  HHD$1H|$?:uHǉH|$Q   Ht$H        H        : t    +H  uHcfDT HD$8:uHHD$Ã~	nI        tEHc)LtD )HcHcLHH|l A׺   1L)H        HcHк   Ht$ H|$AEtHD$8]uHHD$Mt	HD$I$   H8[]A\A]A^A_UHAWIAVAUATSHHHHE    tLg@Lg0ID$hLux HCH@t>H8HUHuH        Ѕt_HE8 uV   HuLH        <H E1H        HEHM
   HuH}C.IHEIHMuPE11I|$(LM   j LH        j AWAVj H0HtH           1H        )HECH    HCP    HC@HCH@H@8    1He[A\A]A^A_]UHAWAVAUATMSHHHHMtLo@Lo0HsPHCLeHH@t(Hp8LH}H        HCH@L`8  Hx8 H           IUhLuz t>H8HUHuH        Ѕt_HE8 uV   HuLH        <H E1H        HEHM
   HuH}C>IHEIHMuRE1LMI}(   Lj HMj HCH@pH        AVj H}H0H;{@tH        &      H      H9uzH        HIH           tnPI}(E1LML   j Lj HCH@pH        AVj H0HugLLH}H        5E1Ht-H           H        1H        1+HCMH@L`8tL{PLLH        He[A\A]A^A_]AUI        ATUH   SHHD$   AHHto1H}IHL$HI        AH      H9u.HH        H|$AH}HIHL$1HAHHtH        1HH[]A\A]ATH        IUHSHHtdpp19~LHkE$HHx9I	t0D!9u)H]pHt { uHH        HH[0HHH        1[]A\PHGI      HH8H        HZPHGI      HH8H        HZUH        H   SHHD$   HHt4H}IHL$   HH        HHtH        1HH[]AULnATIUSHQuRHH        HHt*HpH{   H        HH        CC	C
C ID$M      HH8H        Z[]HA\A]AWH        IAVAAUATD$UAMcSLHHHtQLII        D)D9},M LLD$H        L1IHALD$BD# H1H[]A\A]A^A_UH        SQHHHt*HpHxDH        HHH        H1Z[]UH        HATSH   HIt6PCH           LI        PDK1DCAZYHeL[A\]AWH        AVAUATIUSH8HHH  @pxH        HHHtE1E1  HH          x uL H@0HuAFLD$I~D$H        HD$ALD$(H        Av1H$I~LD$΅t!1AEAAD9       )L$,LD$ H        Ѓ|$( HD$LD$ L$,@uo|$    |$(    II        H<$AH|$AH|$AD9mp   MkID$pE1Lux Pc|$ uMtIcEwIt$hL<H        H$Y@jIcEwIt$hL<LD$H$H        +HIcEwIt$hL<LD$H$H        1I        AIEIcH        HH    H1H8[]A\A]A^A_UH        SQHHHt&HH        HHH        H1Z[]ATIUHS1HD$    H|$1Ht$H|$H        H        : t    LD$A8.t
uD$3H t1`L$	L$tA8.uILD$uD$   Ht$LȉD$H        HtHD$HHE    H[]A\UH        SQHHHE     H        IHH¿!   1H  fEI@AtiD $A  wI   H
1 $  @r?΀@r΃?ɀ?J΀@r	?LH1   wD
F  wA?HAɀJDJVD (A  vDD $A  w?H.AA?A?AɀAɀDJDJHIH         HH1Z[]AUI        ATI        UH   SHHD$   A1HH}IHL$HAH      H9u.HH        H|$AH}HIHL$1HAHHtH        1HH[]A\A]AWH        AVAUATIUHSQHH   DPxE1   HA@   E9~xIk!H   DJ Et^A@M$I\$@LrLzw_DHD)H1L!L9u1H!L9u)H]pHt { tHH        H2H[0IHH        1HD)HHHZ[]A\A]A^A_PHGI      HH8H        HZPHGI      HH8H        HZUH        H   SHHD$   HHt4H}IHL$   HH        HHtH        1HH[]ATLfUHSHu0HH        HtPHH        SC@HEM      HH8H        [H]A\UH        SQHHHt*HpHxDH        HHH        H1Z[]AVH        I(   AUATUSHHI   HE11fCfA   DftfEt:HH        I           H|$1AHHt$H        H|$H        HÃ   Du:@Hu:C0HIIV L1H[]A\A]A^AWH        AVAUATIUSH(HHH   @xxH        HHHtHD$    E1eHH          x tL H@0HuM   M   H   Hu~H|$I        AH|$AHD$D$9ExC  Lkt$!H        L   LI~HD$H        MHD$E1MNIvI~ID$p]MyHH      E}H9IcIt$hu)Hu$A~ @uL,HT$@   H           L,HT$AN H        lHuHt+IcE}It$hL,LD$AN HT$H        7Mu	MIcE}It$hL,AN LD$HT$H        1I        AIE EIcH        HH    H1H([]A\A]A^A_UH        SQHHHt&HH        HHH        H1Z[]AWAVAUE1ATIUSH8?[Ht$H|$uHAH|$HD$8:ux:t1  HHD$1H|$?:uHǉH|$Q   Ht$H        H        : t    +H  uHcfDT HD$8:uHHD$Ã~	nI        tEHc)LtD )HcHcLHH|l A׺   1L)H        HcHк   Ht$ H|$AEtHD$8]uHHD$Mt	HD$I$   H8[]A\A]A^A_UH        SQHHHE     H        IHH¿!   1H  fEI@AtiD $A  wI   H
1 $  @r?΀@r΃?ɀ?J΀@r	?LH1   wD
F  wA?HAɀJDJVD (A  vDD $A  w?H.AA?A?AɀAɀDJDJHIH         HH1Z[]AWH        AVAUATUSHH  H(HD$Tt$HT$ HD$(H0  |$    1H   H|$hI        H        H        п   Ǆ$      I        AHD$0 7HT$hHD$0@HD$0@HD$0@HD$0@HuPHD$0H$   H~IH|$0AMLd$t4DH        iHD$ H}hH0H        ЅG  &HuP1H~HtH        %HEPH$   HH8HtH        1H          H]pHt{ tH[0H$      H|$(I        AH$,  H|$X   AHuNHuhH        1H        IHHD$P       HT$PH        LHAHC H{   Ht$PP    H$(  H|$@I        AHC H{Ht$@P(H$8  LuPE1D$8    HL$8HHD$I~@LH        H      H9   |$8HD$HHI   II~@HL$8HT$LH        Hu_L$8M9tTI:uDRu<t8   HD$Ht/I6   HHD$HALAHL$HILA1HHD$8tHC H{Ht$8P0HmxHH  1[]A\A]A^A_AWH        AVAUATUSH   HHD$lt$HT$D$    HD$H_  |$ H        Lh`  	   I        Af  f@ If@ ;f@ H$   HD$0HD$0Hs`D$P    D$T<   H$   D$HǄ$       Ǆ$      fǄ$    HǄ$       $   HD$HƄ$    Ƅ$    D$H   H$   D$L   H        H~HǄ$       ILI        AMt4DH        zHD$H{hH0H        Ѕ	  Hs`H        H~HtH        .HC`1HT$8HH8H        HtH        1H          HkpHt}tHm0HD$@   H|$HpH        HD$}@D$| D$h   uFHshH        1H        IHH߹   HT$hH        LHAHE H}   Ht$hP Hs`HD$@E1D$,    HL$,I        HPH~@AH      H9   |$,   HAHs`IHD$@MHL$,HPH~@AHuT$,1MtqLAi9v8I4Hf> uHH|$X   H        HE H}Ht$XP0MtLAI}HHt$8I        AI}HHt$@AH[xD$E1HiH   1[]A\A]A^A_list network routes  net_efi_ls_routes list network cards net_efi_ls_cards list network addresses net_efi_ls_addr Add a network address. SHORTNAME CARD ADDRESS [HWADDRESS] net_efi_add_addr perform a bootp autoconfiguration [CARD] net_efi_bootp net_efi_bootp6  %s
 %s %s
 %s %s %s
 unrecognised network address `%s' net_default_interface net_%s_mac net_%s_ip tftp pxe: pxe no server is specified disk `%s' no route found https http disk `%s' not found invalid net device couldn't open efi service binding protocol Failed to create child device of http service %x :// url: %s is not valid, host/path not found
 bootp net/efi/net.c %s,%s url: %s is not valid, protocol not found
 Set Address Failed three arguments expected card not found %d.%d.%d.%d tftp,%s url:%s
 efinet https:// http:// efinet%d could not set GRUB_EFI_IP4_CONFIG2_POLICY_STATIC on dev `%s' efinetfs could not set GRUB_EFI_IP6_CONFIG_POLICY_MANUAL on dev `%s' net_default_server pxe_default_server net_default_ip net_default_mac efi grub_netfs_type efi netfs https http Host Accept */* User-Agent UefiHttpBoot/1.0 %s://[%s]%s %s://%s%s Fail to create an event! status=0x%x
 Fail to send a request! status=0x%x
 Fail to receive a response! status=%d
 file `%s' not found unsupported uefi http status code 0x%x Content-Length %s://[%s] %s://%s root_url Invalid arguments to EFI HTTP Read Error! status=%d
 The MANUAL ADDRESS is not found
 ??? %d
 couldn't configure http protocol, reason: %d Couldn't start PXE
 Couldn't set station ip
 Couldn't get file size No Offet Read Possible Short read should not happen here ERROR OUT OF MEMORY Failed to Read File %02x: %u.%u.%u.%u %s:local %s/%d %s %s:gw %s/%d gw %s %s:default %s/%d gw %s %x %s:link %s/%d %s %s:local %s/%d %s %s:gw %s/%d gw %s %s:default %s/%d gw %s dhcp4 configure failed, %d
 dhcp4 start failed, %d
 dhcp4 get mode failed, %d
 %s:dhcp dhcp6 configure failed, %d
 dhcp6 start failed, %d
                                                                                                                     ׺ȇS@9_][J/Cz!NaGKڞV9BsJՎK(- '?MYzqABZ[[ȽyC*]!M)H
nD[O6T`                                                                                                                                                                                                                                        LICENSE=GPLv3+  LICENSE=GPLv3+  bufio efi_netfs                                                                                                                                                                                                       	                                       )                      5                      @                      M                      c                      n                      z                                                                                                                                                                                                X                                    .    [             C    D      o      b                     |                                                                                                                                                                     &                     D                   L                     X                     p    RF      j          <      j                                                                                                                                                                                                 2                     D                     O                     ^                 q     8                                                                                                                                               ^      
          f       %                     D                     T    <             s    @                                      iA                                   9      e                                                                  "                     .                     ;                     F                      grub_mod_init grub_mod_fini grub_strlen efi_wrap_10 efi_wrap_5 grub_strncmp grub_efi_system_table efi_wrap_4 grub_strcpy grub_strrchr grub_env_export grub_xasprintf grub_memmove grub_strdup grub_efi_net_create_interface grub_efi_net_bootp6 efi_wrap_1 grub_efi_net_list_addrs net_devices grub_snprintf grub_efi_net_fs_fini grub_efi_string_to_ip6_address grub_efi_get_loaded_image grub_errno grub_memset grub_register_variable_hook grub_efi_image_handle grub_efi_net_list_routes grub_net_open grub_register_command_prio grub_efi_find_last_device_path grub_efi_compare_device_paths io_http grub_printf grub_unregister_command grub_efi_ip6_interface_name grub_efi_ip4_interface_name io_pxe grub_efi_locate_handle grub_efi_net_config grub_print_error grub_zalloc grub_strcmp grub_strchr grub_malloc grub_efi_open_protocol grub_real_dprintf efi_wrap_3 grub_env_unset efi_net_ip6_config grub_efi_hw_address_to_string grub_error grub_efi_net_add_addr grub_list_remove grub_free grub_strndup grub_efi_net_boot_from_https grub_efi_net_fs_init grub_efi_net_boot_from_opa grub_efi_duplicate_device_path grub_bufio_open grub_efi_string_to_ip4_address efi_net_ip4_config grub_efi_get_device_path grub_efi_ip6_address_to_string grub_efi_net_list_cards grub_efi_ip4_address_to_string grub_efi_net_bootp grub_env_set grub_gettext grub_memcmp grub_env_get efi_wrap_2 grub_strtoul                $                     A           +          %           8                     B                    L          #           V                    h             0       r             '       |                              I                        :                    (                    K                                                             b                                         r                                     <                                                                     *                   4         K           >                   P                   Z                   d                    n                   {                                                                                          0                *                       (                                                                                                        '                    9            H       F                  Y            @       }            H                >                                                            )                    F                                      >           >         >           J         9           n                           >                    >                                        )                    F                                      >           0                    :         >                                      )                                        2                       8                           ?                    M         E                    Q                                           =                   =      <                    h         Q           t                                               ;                       ;               O                       Q                          B         >           _            ;      i         O                       \                                   >                                                               \               2           K         >           [            Q                  @                   k                          	            p      	         2           (	            H       5	            f      O	         3           o	         
           ~	            H       	            t      	         ;           	            I      	         0           	            =      
                    '
         9           X
                    j
         F           
            @       
            8       
            @       
                  
                  
         N           
            @                (           )                  3         N           D            @       N         (           b            f      s            @       }         -                                      ;                       @                1                                         >                               2         4           b            =      z                             >                                           @                0                    D           3                  D         ;           \         5           v                           ;                    P                                      ;                    4                       @       E         >           a         >                       @                   @                                     @       <         3           j         
                       2               N                    4                    0                       =               3           /            6      9            a      H            g      T         6                    0                    >                                        0           )         >           B                    `            u      j                             >                       H                   {                  a                  g               6           7         4           I                    r         9           ~         F                                      ;                    >                                                                     +         2           O                  `         ;                       I                  =                                                       G           2                    F                   [         7           x                                -      *            =      l            =                                    4           9            =      \            -      p         >                       =                                                                       ?           8                    ^            =      h            H                                       ;               L                                                   	            \               !           +                  8                    B         >           ]            Q      q                           "                                        G                                                           g      ,         6           6                    H                  e                           "                                        G                                       .           g         G                                       5                                          Q                                                                                   +                    E                   e                   x                                p                5                    4                    >                                                                     *                    ^                                                                    G                    C           	         &           I                    V         '           l         G                                       5                    >                    >                    >                               +                    F                  P            Z      _            g      k         6                       c                  Z                  g               6                    >                                      !                               #         /           -                  7            y      A            7      K                  U         $           a                  m            y      w            7                                                                        ;                  ;                  \                                                                                                                                                L           %             v      1                   =                   _                   k                     {          8                                             \                !                     >                        Q      -!         !           ;!                  G!                  W!            ;      c!            ;      s!                  !                  !                  !                  !                  !                  !         /           !                    !         $           !         =           	"            Q       "            P       2"         >           "                    "                  #                    6#                  K#                  ]#                  o#                  #            (      #                  #                    #                    #            9      #            E      #         
           $         4           .$         >           9$                    $         >           $            "      %                    Y%            Q       &         P           &            Q       &                    &            u      &         ;           &                    Z'            "      '                    '            O      '            P       '            P       '                    (                  *(         ;           I(                    r(                    (         ;           (         M           (                  (                  )         2           3)                  c)         Q           )                    )                     *                    *                  **                  7*                  K*                  W*                  d*                  ~*                  *         8           *                  *         L           *         >           *            "      *                    .+         4           B+                    Z+            &      k+         ;           +            "      +                    +            P       ,         P           ,            P       (,                    >,            I      O,         ;           n,                    ,                    ,                     C-                    e-            [      q-         )           -            |      -         )           -                    -         P           .                  /.         ;           ;.         0           .         >           .         P           .                  .         )           .         4           :/                    \/         N           }/                    /                    /         N           0                    30         7           D0                  P0         )           _0         >           0         Q           0                    I1                    1                     42            t0      Y2                    m2         Q           2                    2                  2         ;           y3                    3                  3            t0      3                    3         Q           Z4                    x4                  4         4           4            .      4                    5                    5            B      ,5         ;           :5         0           g5         >           5         4           5                    5         >           6         >           56            5      6         >           6         >           6                    7                    7         4           Z7                    n7         >           7            7      7                    7         >           8                    $8         4           ]8                    }8            V      8            5      8         :           8         >           9         4           ,9            \      A9                    k9            5      9         4           9         >           9         J           :         J           `:         J           :         >           ;            h      B;            z      o;                  {;                    ;         >           ;            7      ;         J           ;         >           3<         Q           ?<                    <                    <            5      =         4           ->         >           L>         4           X>                    >         >           >         >           >            H>      ?         >           ?         >           ?                    +@                    C@         4           @                    @         >           @            @@      @         >           A                    !A            H>      BA         :           TA         >           mA         4           A                  A                    A                    B         
           bB            H>      B         4           B         >           C         >           1C         H           PC         H           C                  C                  D                  ID                  UD                    qD         >           D            @@      D         H           D         >           YE         Q           eE                    E                    E                     UF            H>      xF         4           G         >           G                    H         4           H                     #H         P           ?H         >           H                  H         2           H                  I            &      #I         )           [I                    I            A      I                    I                    I                    ?J                    J                    >K                    K                    K         4           VL         P           xL         >           L            I      L         2           L                    L            e      L         7           	M            &      M         )           NM                    uM            A      M                    M                    M                    yN                    N                                                     ,                                            0                   8             *      @             .      H             }      P             V                   ,                  )                  h"                  #"                   .      (            1      0            .3      8            P.      @            P      P            8      X            ;      `            g9      h            16      p            7      x            6                  6                                    A                  D                  ^B                  >                  @                  @                  ?                  :K                  G       .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @       N                                   @               e      9      
                    &      2               /O      }                            :                     V                                   5      @                     H      
                    @                     X                                    P                     X      `                              U                      X                                    ^                      X      
                                                    X               
                 	                      x`      S                                                   0      g                                                                      boot/grub/x86_64-efi/loadbios.mod                                                                   0000600 0001750 0001750 00000011170 13417732100 0015422 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @  
   @  USHD$    D$    <%   tH        H        1      H|$1H        H        ЉŉǾ0   Ӎ}3   Ӎ}3   Ӎ}3   Ӎ}3   Ӎ}3   Ӎ}3   Ӎ}1%          H[]U   1H        SH        HD$    D$    H|$ЉŉǾ   Ӎ}   Ӎ}   Ӎ}   HH؍}[]   AWAVAUATUSH|$f<%     f<%     11E1I        H        EL;`h  Mk   H        MLxpLAօu4H        H        H        r   H@pJ\ I      H        LAօu5H        HH        H        {   H@pND IDH   H        LAօuHH        H        H           H@pJl IH        1I        AAHf%  f%  f% 	  t  H޿	 H        Ht/|$ t(HHu   []A\A]A^A_   H        H[]A\A]A^A_ÅuH           1H        ATI        UHSH} AHHu|  HzAHH   Hx@tH           1H        HǺ   @   H        HH        С        z   Hh@  =   vH           1H        KH        Ѕt;Hcվ   HH        1   H        @H        HH        С        []A\H        QЅH        t   H        11ZSE1H        H        1H        H        E1H        H        H        H        H        [H        SH        H        H8H        H8H[ROM image is present. ACPI2: %p
 efi commands/efi/loadbios.c ACPI: %p
 SMBIOS: %p
 filename expected invalid int10 dump size invalid bios dump size Create BIOS-like structures for backward compatibility with existing OS. fakebios Load BIOS dump. BIOS_DUMP [INT10_DUMP] loadbios   1-- '?Mqh" <0-- '?MLICENSE=GPLv3+  loadbios                                                                                                                                   s            ;      -                                                                         (                      >                      K                      V                      q                                                                                                                                                                                 grub_mod_init grub_mod_fini grub_puts_ grub_efi_system_table grub_memmove grub_errno grub_register_command_prio grub_unregister_command grub_file_read grub_pci_make_address grub_file_close grub_file_open grub_real_dprintf grub_error grub_memcmp   ;                     E          	           d                     n                                                                                            
                                       
                                          !                                    
           )            =       3            !       V                    j         
           t            G       ~            !                   %                                                                   =            S       N                    ^                                e                                                                                                   }                           *                   E                    Y            Q      i                   x                                                                       Q                                                                                                                                                                          7      %                  2                    >                    H                   W                     .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .modname                                                                                              @       h                                   @               
      @                          &      2                                                 5                           0                              ;                                                         K                                                          P                             	                                                                	   	                 	                       	                                                          X      Y                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/efi_uga.mod                                                                    0000600 0001750 0001750 00000017010 13417732100 0015224 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   1H        HHDH        H        ATAUSHH        LL$LD$HL$HHH8H        H  t	;,$  t
;\$  Lԅt
;T$  $H                D$                        H        H        H            H             H            H            H            H            H            H            H            H             H            H            H        H                H        H        HH        ЅuYH        H8H        Ѕu<H           1H        H           1H        H[]A\ú`   P1H        H        ZH        UHAWAVI        AUATAԺ   SHH(H}uAֺ  A1     H}uȺ   A։A  ƃDffDfEATH        DEDMH        H        s   I        P1AA_AXE1  D  A    1u!AuC  AAĺ  DIDRI H        I	1I        AELDASA)L]H           1H        H        AYEL]^tt{ unHLH3H{HH   % = u=1  D     uB    HCHH=  uH   H9uAAAHe[A\A]A^A_]SL   HH        H        H        HH        1[U1H        H        HAUATSH8HHC  HH8LMLEHMHUH        H  1I        APEE1H{E11j HUHE PH        jj j H        H0HuHEH        H        HEE    H        Dmؿ   AE   HH        H        H        H        Ht9HvHH H        H        HHH        H        HtH        HHHe[A\A]]H        H8 tH        H        no matching mode found VMEM MMIO Display controller: %d:%d.%d
Device id: %x
 fb video/efi_uga.c %s(%d): 0x%lx
 EFI UGA driver                                         F                                                                                                                                                                                                                                                   ),A8wh9LICENSE=GPLv3+  video video_fb efi_uga                                                                                                                                        n      '                                                        	                                       4                      G                      b                      n                      y                                                                                                                                                         8                     E                     _                     z                                                                                                                                                                         1                     C                     j                                                                                                                                                   	                     0                     K                     b                     y                                           grub_mod_init grub_mod_fini grub_video_fb_map_rgba grub_video_fb_fini grub_video_get_blit_format efi_wrap_10 efi_wrap_5 grub_video_fb_get_region grub_video_fb_create_render_target_from_pointer grub_efi_locate_protocol grub_video_fb_unmap_color grub_video_fb_map_rgb grub_video_fb_scroll grub_video_fb_fill_rect grub_memmove grub_video_fb_blit_bitmap grub_video_fb_get_viewport grub_memset grub_video_adapter_list grub_video_fb_get_palette grub_video_fb_set_palette grub_video_fb_map_color grub_pci_make_address grub_video_fb_init grub_video_fb_get_area_status grub_real_dprintf grub_video_fb_set_active_render_target grub_video_fb_set_area_status grub_video_fb_set_region grub_video_fb_delete_render_target grub_error grub_list_remove grub_pci_iterate grub_video_fbstd_colors grub_video_fb_get_active_render_target grub_video_fb_set_viewport grub_efi_set_text_mode grub_video_fb_get_info grub_video_fb_blit_render_target grub_video_fb_create_render_target                 P                 "           "                     =             p       _                                                                                                `                                        h                    X                                                                                     ,            $       <            (       L            ,       \            0       l            4       |            8                   <                   @                                                                               P                   X                                       P                "                    )                                .                    ?         &           \                    f                    s                                                    P       $            !       .            M       =         !                                                             `                   M                   P                                                           X                                                                 8                    O         ,           }                                h                   `                   }               (                                           p                                              $                    .                    >                   H                    W                    p            p                                    '                        o                     R      (                     0             ,       8          -           @                   H                     P                     X          +           `                     h          $           p                     x          #                                                                                     
                                                                                    .                                                               /                     %                                         *            .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                          @                           
                    &      2                     ~                             :                     `                                    5      @                           
                    @                                                         P                           x                              U                                                          ^                                                                                               
                 	                      (                                                         `      g                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/gcry_rmd160.mod                                                                0000600 0001750 0001750 00000021670 13417732100 0015671 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    x           @     @   #EgGGܺGvT2GG    GX    HGAW@   H        AVAUATUSHHhH|$ ЋCD\$ DT$$DKk3C3C$AAËCAD[A1D1؉ωAD$(D1ADKDAt$ŉ|$D1EAE1DDD|$,1F?AʋL$0AAD,D1D1ADAED\$41AD1ADAAD1EDL$8D1ADAAD1Al$<D1DAD1DDT$@1AAD1EDl$DD1EAt$HA1AAEDD1AEAE1AADDD$PEDL$LD1EAE1ADAADD1EAE1DDDT$T1AAAEDl$XE1DED1A1AA|$\AEE1AEDd$<AEGyZEEAE!AE!E	EAA썬)yZEEAE!AE!E	Dt$TDDGyZAAAE!E!E	EAEAF*yZEEAA!E!E	EAEFyZEEAE!AA!E	Dt$8EAEG&yZEEAE!AE!E	EAA썬/yZEEAE!AE!E	DDGyZAAAE!E!E	EAAEG(yZEEAA!E!E	Dt$ EAEGyZEEAE!AA!E	Dt$DEAEG&yZEEAE!AE!E	Dt$4EAAA.yZEEAE!AE!E	DDFyZAAAE!E!E	Dt$XAEAEG.yZEEAA!E!E	EDl$LAEGyZEEAE!AA!E	Dt$@EAEG&yZEAEE!Dd$EE!D	d$ADd$EAAA/nE	E1ADFnAEEAE	A1AEDT$XAEG
nEAAE	E1EEAAAAꍬ)nE	E1Al$DAEF%nDAD	D1ADAAEF/nD	D1DDl$@DGnEAA	E1EFnAEAAAE	E1EFnAEEAAE	A1EDl$<AEG%nEAAE	E1EDl$ AAE-nDAD	D1DDl$8DGnEAAA	E1EDl$TAEGnAAE	E1EDl$LAEGnEAAFܼE	A1EDl$4AEG%nEAAE	E1EE(nAADAD	D1DDAE!EEAE!AE	Dl$DEAEGܼEEAA!E!E	Dl$LEAEGܼEA!EAAE!AE	EEAF&ܼAE!AEEE!E	Dl$ EAAE-ܼEDAE!D!AD	Dl$@DDGܼAE!EEAE!AE	EEAGܼAEEE!A!E	EF	ܼAEEA!EAAE!AE	Dl$TEAEG%ܼEEAE!E!AE	EEAE/ܼAE!AADD!D	Dl$<DDGܼAE!EEAE!E	EFܼAEAEEAE!A!E	Dl$XEAEGܼEA!EAAE!AE	Dl$4EAEG%ܼEEAE!E!AE	Dl$8EAAE-ܼEDAE!D!AD	DFܼDAE!EEAE!E	FNSEDt$<AAEEAA	E1EDT$ AEG
NSAAE	AE1EDT$4AEG"NSEAE	AE1EDd$DAAE,NSDD	D1DEAEDGNSADt$XE	AA1EEAAEA	G(NSE1EAAAEE	F NSE1EEAAEEFNSAE	AE1EEAAAE	A.NSE1ADt$@ADAAE	AEF"NSE1EEAAEE	G/NSE1EEAAEAA.NSADt$LE	AE1DEADE	GNSA1Dt$8AEAEG.NSEADl$A	E1ʉl$EF'NSAEEADADt$E	E1EAEDT$l$D#l$4DKDl$XD4$A,拢PDcAE	DcE1DG,拢PDd$kEAED[E	Dt$<A1EG3拢PDt$ADkEEAA	E1EAEDd$ G拢PAAED\$DE	AE1EEG拢PAAEE	AE1EEAAAE	፬(拢PE1ADDL$LDG)拢PEAE	A1EAEAF拢PEAA	E1EDL$TAEG!拢PAAE	AE1EDL$8AEG拢PEAE	AE1EEAAAE	፬/拢PE1ADDL$@DG)拢PEAE	AA1EEAAEA	F拢PE1EAAAEF&拢PE	AE1EG拢PAEEAE	AE1EEAAAE	A(拢PE1ADD\$8DG+$M\EAAE!E!AE	Dl$LEAEG$M\EEAA!E!E	EG$M\AEAEAE!A!AE	Dl$<EAEG%$M\EEAE!E!AE	Dl$ EAAE-$M\EDAE!D!AD	Dl$TDDG$M\EAAE!E!AE	Dl$4EAEG$M\EEAA!E!E	EAF$M\AAEE!AEA!E	Dl$XEAEG%$M\EEAE!E!AE	EEAD/$M\AE!AADD!D	Dl$@DDG$M\EAAE!E!AE	EEAG$M\AEEE!A!E	AEAF	$M\AE!AEEA!E	Dl$DEAEG%$M\EEAE!E!AE	EEAD*$M\AE!AADD!D	EDAF$M\E!DAE!E	F>pmEAEAAAE	E1EDl$4AEG>pmEAAE	A1EF">pmAEEAAE	E1EE/>pmAADAD	D1DDl$<DG>pmEAAA	E1EDl$XAEG>pmAAE	E1EDl$8AEG>pmEAAE	A1EDl$DAEG%>pmEAAE	E1EDl$LAAE->pmDAD	D1DDl$@DG>pmEAAA	E1EG>pmAEAAE	E1EF>pmAEEAAE	A1EF&>pmAEEAAE	E1EDl$ AAE->pmDAD	D1DF>pmDEAAA	E1EDl$TAEG>pmAAE	E1EDl$@AEGvmzEEAA!E!AE	EDL$8AEG!vmzEEAE!AE!E	EAA썬)vmzEEAE!AE!E	DDFvmzAAAE!AE!E	EAEGvmzEEAA!E!E	EDL$LAEG)vmzEEAE!AA!E	EAEF'vmzEEAE!AE!E	EDL$ AAA)vmzEEAE!AE!E	DDL$4DGvmzAAAE!AE!E	EAEGvmzEEAA!E!E	EAEF(vmzEEAE!AA!E	EDL$TAEG!vmzEEAE!AE!E	EDL$DAAA)vmzEEAE!AE!E	DDL$<DGvmzAAAE!AE!E	EAEFvmzEEAA!E!E	EEDL$XAEG)vmzEEAE!AA!E	EAEEAE1EEE1E1AEAAE1DADD1DA1AAEAD1ǉDD11AAt$AEAD1DAAD1AEDD$4D1DAD1AЉAAl$@D1DD1ՉDD\$<1AAEADT$8D1DD11AA҉{AEAD1DAAD1AEDD$TD1ADAAD1Al$XD1DD1DD\$ 1AAAD1EED1ADAA1DEDl$DD1E1AŉAEŉCCE1T$DL$DD$L|$TЉCCEADDŋD$D݉kEAыT$AэNSA	AD$A1AAEADKDHh[]A\A]A^A_AVAUATIUHSX@Hu+HwH        п   H        CCX    M   {X u'IM4,=HcCX?PIH͉SXAT$THu11HH        HumLL)I?vHH        I@CX    CIHH           A?I1L9tHcSX?JKXAHL[]A\A]A^AT1I        1USHAԋkHcCXL D$    	ՍP7SXDHcCX7CPSXD HcCX?PSXD 11HH{8   1H        DDcP@kTHsCQDADcS@kUCRHCV CW H        H           ЋCCCCC CC$CC([]A\H        H        H        H        RIPEMD160 1.3.36.3.3.1.2 1.3.36.3.2.1                                                                         \       @                                       0!0	+$  LICENSE=GPLv3+ crypto gcry_rmd160                                                                                                      |                                                                                                      	                              1       /                      6                      G                      N                      a                      r             `        grub_mod_init grub_mod_fini _gcry_rmd160_init memcpy _gcry_burn_stack memset grub_md_unregister grub_md_register _gcry_digest_spec_rmd160      ?                     z            6                                       ]                  6       (                    p            ]                          ?            6       K                    ~                                                                                                                   x                    `       (          
           0             ]      8             j      @             1       `             
       h                     .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                          @                     P      
                    &      2                     &                             :                                                         5      @               8             
                    @                                                         P                                                          U                                                          ^                                                                                               
                 	                      X                                                                 g                                                                                                      boot/grub/x86_64-efi/efifwsetup.mod                                                                 0000600 0001750 0001750 00000004350 13417732100 0016011 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   H(H        H        H$   D$aHT$fD$ʓfD$Ht$D$D$D$ D$D$D$D$+D$HtH|$uH H	$   HHt$H        H        ЅuH        H(H(H        H        HD$    D$aHT$fD$ʓfD$Ht$D$D$D$ D$D$D$D$+D$Ht> t9E1H        1H        H        H        H        H(H        H8HtH        OsIndications OsIndicationsSupported Reboot into firmware setup menu. fwsetup   LICENSE=GPLv3+  reboot efifwsetup                                                                                                                         i                                                                                                                           )                      ?                      Z                      p                       grub_mod_init grub_mod_fini grub_reboot grub_efi_get_variable grub_register_command_prio grub_efi_set_variable grub_unregister_command                                                                                               
                                                    0            %       <                    F            F       P                    \                    k                    }                     .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                             @                                          @               0      P      	                    &      2                     N                             5                                                          ;                                                         K                     (                                    P                      (                                    Y                      /                                                          @      h      
   
                 	                                                                                      b                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/loadenv.mod                                                                    0000600 0001750 0001750 00000022260 13417732100 0015260 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    0!          @     @   AUAH        ATAUH   SHAPHt-H(D`DhH@    HSHtHBH; HCuHX[]A\A]AVH        AUIATUSH_@HHH   E1I        Ht,Jt% HLAHHH        PH)ILHH        Hu3HH        H           1H        H1[]A\A]A^HHPH        1H        1ZAVHAUIATIUHSt1I        )LLH        HELH4AօtHH;] r[]A\A]1A^AUAATU1HSHQ   H        H        HHu,H        H           1H           HH        ЍxIH        HcHHH   McHHH        B#/J|#H        HH        EH     H        H     H        H     tH        H     HH        HHH        H1Z[]A\A]USQHG18 tHx1H        HHtPHH        HHt*HH        H        1HH        HH        С        Z[]ATHcAUSHHG1H$HT$8 ptHxH        HHtZHH        HHt4E~H1HH        H        HH        HH        С        H[]A\AWAVAUATUSHHHGt$,HD$0    HD$8    uH           S18 ItHx   H        HH9  H@H8 u1HH        H           1H          H        HHCXHD$0HC`H        HHHCX      Lt$01LHt_L@LHtHpLL  	LI9s(r  	IM9sH        	      HR볋@HLH;K@t H           H          HCE1H HD$H@(Ht
LxH@(HE HD$    E1HD$    HD$ AFMvHD$M   AFH;D$w]I6ANMAVH|$H        L)ЅuqH|$ AVLH|$H        ЅtH           1/LH        AFD, DHD$HH        HIi           I        I<$AHt:HI4$HH        Ѕu3H           H           I4$HH        IL$,uHCLd$0E1LM L8IG(Ht
LpH@(E1I        MtBI4$AL$O)AT$LL$LLT$L)A҅uAD$LL$Md$LT$IHH        H|$0I        HtHoAHHH        С        HH[]A\A]A^A_SI        H        I        H        1H        H        I        I        H        1H        H        H        I        H        I        H        1H        H        [H        SH        H        H8H        H8H        H8H[H9s<\uH<
tHHGUHSHQwH           1H        AH   H        H        Ѕu   H        Ht	H(HX1Z[]UHSH        PH?ZHH[]AWH        AVIAUIATUSHHH(HT$LIE1t<
t<\uAAHLMLCIhE <#uH<
t1h  IHMcK\!H9   LD$LLL$LLH        ЅLL$LD$u0C<!=u)E1McJ4;L9s<
   AT$A<\DDLLD$LH        LD$IqCD>I)HI9MHLLH]LH        E =Lt$At<
t<\u\HAHIƈC
   jDLD)H)HH9E9McH        }0LE)M)H)J<+IcJ|= #   H        uJ<+LH)dH([]A\A]A^A_AVH        IAUATIHUSI,$IH]Il$LcJD#H9   LLHH        Ѕu*B<#=u#AEHcHH9sk
t$H\DHHH        HHHLcH        J4#H)[HL#   ]L)H        A\A]A^[]A\A]A^AWIAVAUI        ATUSH(H/Ht$H]HoH9  ;#   Hڀ:=tHH9u   H9   LbLH9   <
tHOH<\HDH)HT$HAHIHT$   MH)HI)HT$LMH        LLD$LD$LL$I@C 
uCHT$LL@ AALH        Eu5HHH        H\uSHÈPPHHH([]A\A]A^A_                 f                                      s                                                                       invalid environment block %s=%s
 prefix variable `%s' isn't set grubenv no variable is specified disk device required malformed file sparse file not allowed invalid blocklist environment block too small Load variables from environment block file. [-f FILE] [-s|--skip-sig] [variable_name_to_whitelist] [...] load_env List variables from environment block file. [-f FILE] list_env Save variables to environment block file. [-f FILE] variable_name [...] save_env file Specify filename. skip-sig Skip signature-checking of the environment file. invalid environment block # GRUB Environment Block
       LICENSE=GPLv3+  disk extcmd loadenv                                                                                                                                                  <                                                        	                      
                                       )                      5     F      Q      I                      V     Y	              h                      w                                                                             r                                                        e                                                                                                                         +    y	            ;                     U                     `                     j                                                                                     grub_mod_init grub_mod_fini grub_strlen grub_strcpy grub_envblk_iterate grub_memmove grub_envblk_close grub_disk_read grub_unregister_extcmd grub_errno grub_memset grub_envblk_open grub_printf grub_file_read grub_envblk_delete grub_strcmp grub_malloc grub_file_close grub_file_open grub_disk_write grub_envblk_set grub_file_filters_enabled grub_error grub_free grub_register_extcmd grub_env_set grub_memcmp grub_env_get                         c                                                                                                                                                     #                   /                    W                    i         "                       !                $                       !                   (                                                                   <                    R            @       a                   u                                                                                                                                 _                         &                    7                    F                    Q                                                  _                                       =                                                                  4            H       X                  }                                a                                                           _       .            v       Y                   h                                                 #           #                   <                     [                    r                             $                                                                                                              n                                                                                                              !                                                             ]                  4                                      =                  i      "                  ,            s      6                   B                    L                   V            |      `                  l                  v                                                                                                                                      	                    	            8      &	         #           ;	                    `	                     }	                    
         #           p
                  
                                        6                    i                             #                             
                    -                    Q                                        D                     [                                                         (                   8                    .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                        @                                          @                     h
                          +                           x                              &      @               `       `                           3      2               X      R                            B                                                          H                                                         X                                                         ]                                                          f                                                                                      x                          	                      P                                                                o                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/efinet.mod                                                                     0000600 0001750 0001750 00000026430 13417732100 0015105 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    )          @     @   H        UHAUATA   SHHH   L   HEH    uH   H        H   L   M  I}hj 1E1HMLj H        ZH      H9YuUH   HUH9v	HH	HD~HH   H   H        AHǃ          FHuyHEHxH        HIt]HǾ   H        ЅLu6H   I|$H        HULHuH        ЅLtH        1HeH[A\A]]UHAWI        AVAUIATSHH(L   A׃       IE1DE1HE    I|$XHMLH        HDE   H} tǃ       fEu6I|$`H   E1j 1LH        j L   ^H_   AI  H9rA   eH           ~IEI+EHS`H9H   vH   H   IuH        H   H   I|$`1j E1LH        j L   ZHYtH           1H        >1HE    I|$XHMLH        H   u
1H}    1He[A\A]A^A_]UH        SHPH   H~(H   H~H        H   H        L   H@`H   H        HAY[]H        U    H        H        HATISH   HH%  H@x8 u)H{HH        HtIT$H        OHCx uIT$H        $   6uF11H{HH        Ht*IT$H        $   1HeH        [A\]HCx@t.u	P1H{0E1E1Hj H        ZYH        I$   H        M$   H@`H   H        HH        I$   He1[A\]UH        HAWAVAUATSHxHhHuHxHHEH        HHEp
  H} e
  HMH        H9A=
  H   H        HI
  H]I        I        HALIHAօu7H           H        HhHHp     A<	  AGPv<t<	  H}H        HHw	  AuHA @f@ HAԀxuHH         @f@ HALH @f@ AAHH        E  	H}H        H        HEHI        AIĊ <  A|$  fAD$f  A$AD$fEfAD$ H}IƊ <u A~uAAFfAF H}IA<2  AF<#     H        HH  A~H@HEN     HI        AՅI           f}    HEUIt$I        HxlAHEIv   HxAHEIv   HxAHE   Hƀ   cƀ   ƀ   Sƀ   cHSHUAՅHUudHzBIv   AHS   HHUAՅHUu2HzBIv   AHS   HHUAՅHUtH}A^  Hz<B
H        
   AHEHE   HMHUH        HEH        H@`H   H        HC  H}H6     H        HpHI  H}I        AHI   I   I|$HMLH        H      H9uBLH        H}AHI   II|$HM   LH        HtLH        nLeIMtaILkHIt$H        ЅH        tH}  HMI}AE EeLLH        LHMLc   HH        Ѕ  A$H}H        AAFE1fAF Ѐx  P$HMHpH        QAHy   z     HI        AՅ   HE   H L{AՅ   fA fAG (   HAՅujL{   HAՅuWfA fAG    L{HAՅu7IvL   I        AULsHHrHUAՅHUtH}H        ^  EIt$I~fA ;fAFAHEHE   HMHUH        HEH        H@`H   H        H6  H}H)     H        HpHI  H}I        AHI   I   I}HMLH        H      I        H9u8LAH}AHI   II}HM   LH        HumLmIMtfILsHIuH        ЅtH}AHH        d  DfA I~LLfAFH        LAA   H}H        E1L3LkM)Lxh1A  EgM  EI        >  1H        H        H  H        AMt]A	 H        I        I        H        H        L  H        LEH        LD1AHEML1A   HxHxH        uH        8 IY^tH        H} tCHx t9HxH        H        V  H        LHEL 1AA}     H           H        H        \  H        1AHELxA   ML1HxHAWH        uHEH        MH        b  H        L 1AXZHt4HH        #H}AH        HEH HEHe[A\A]A^A_]1HtH        H9WuH   H        H8   AW1H           H        AVAUATUSHHL$HHt  IE1HD$HPHHT$H  I<$H        H&  11@0@tpHHHxuHt+<u"B<wHt<u
y     H        I<$H        HI  H@xx   8 tIFx   I~LH        Hg  t+   I        AHHu3H        ?  11I~LH        H  IFxxH{`H?HH   H   AHH   u%H        HH        H   HC`DH        H        ǃ       E}H?EHH   H   1HCH        CH    HCIFxH{%  C IFx@C$IvxH        VH(  L   I$HH        H   H        IHH        H        H        H[]A\A]A^A_UH        SRH8HtH1H        Ht&H9ouH        HtH1HHH        H     X[]couldn't send network packet %s: net start failed %s: card stopped %s: net initialize failed  yes  cannot continue no HTTPClient using ipv6 and dhcpv6
 efinet net/drivers/efi/efinet.c dhcp_ack_received: %s%s
 device: `%s' path: `%s'
 using ipv4 and dhcp
 efinet%d                                                                   !M)H
nD[O6T`(- '?M2%- '?MLICENSE=GPLv3+ net efinet                                                                                                      	                       f                                                                              	                                       /                      E                      P                      o                      ~                                                                                                                                                                            !                     4                     K                     _                     p                     |                                                                                                                                                   	                                                               )                     4                     S                     l                     {                                           grub_mod_init grub_mod_fini grub_netbuff_free grub_efi_system_table efi_wrap_4 grub_net_configure_by_dhcp_ack grub_xasprintf grub_memmove efi_wrap_1 grub_efinet_get_device_handle grub_errno grub_efi_image_handle grub_efi_find_last_device_path grub_efi_compare_device_paths grub_net_cards grub_netbuff_alloc grub_efi_locate_handle grub_efi_net_config grub_print_error grub_zalloc grub_malloc grub_get_time_ms grub_net_card_unregister grub_net_configure_by_dhcpv6_reply grub_efi_open_protocol grub_real_dprintf efi_wrap_3 efi_wrap_6 grub_error grub_free efi_wrap_7 grub_efi_duplicate_device_path grub_efi_get_device_path grub_list_push grub_netbuff_put grub_netbuff_reserve                             G                     ~          &                     %                                         +           8                    O         *           b         
                                        "                    &           W                                                 &                                        $                    "           D                    m                    ~            p                                                           p                                                                   0            2       P         "           f            C       {         $                    #                                           p                                                          (           U                    {                             (                                                                                    `       =         '           ~                             %                    '                                        %                                        *                    %                                           v       	            P       )	                    >	         "           e	            P       	                    	                    	         %           
                    
         %           E
         *           S
         %           
                    
         *           
                    
                             *                                        %                       @       (                    =         "           d            @                                                        %                               1         *           K         
           v                             %                    !                                                                    
            ]                   b                   ^       (                   2                   A                   O            s                                                                                                                                                                                       /                   `                    s                                                                  
                                                                       #            p       2                    |         (                       p                            ;                    [                    p                             "                                        %                              	                    A                    v                                                 )                    %                                                                                         #                    C                                                                         A      (             |      0                     .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @       V                                   @                           
                    &      2                                                 :                                                         5      @               (      x       
                    @                                                          P                     /                                     U                      /                                    ^                      3                                                          @                
                 	                      `                                                         p)      g                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/loopback.mod                                                                   0000600 0001750 0001750 00000011300 13417732100 0015413 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                               @     @   H           1H        AWIH	AVIAUMI	ATIUSAPHG@HXH        HLLHH        H        (u,O7HC@I	I9vL1H)H        I)K<,Z[]A\A]A^A_1u<ATH        IUHSHHtHH;Aԅu
H[1   []A\AUH        I        ATIUHSAPHHtLH;AՅt*H[Y[]A\A]H           1H        HCH@@Ht
H  H	HEE @  HCH]@HE 1Z[]A\A]ÅHG H           1H           AUATIUSW8 tAH        L"HHI        H   LH;AՅ   HkH[uH           hHzH        I        HH        HH        /  H   I4$H;AՅtXH[H           Y[]A\A]1H        HCHE H        H;H{H        HH{H        Hk1       H        HHtoI<$H        HHuHH        FH        HHkHQHKHH        H        HCHH        qH        HH        ЉZ[]A\A]1PH        I        I        H        H        H        H        H        H        ZPH        H8H        ZH        H                             d                                                                       loopback write is not supported can't open device device name required filename expected device not found Make a virtual drive from a file. [-d] DEVICENAME FILE. loopback delete Delete the specified loopback drive.                                                                         LICENSE=GPLv3+  extcmd loopback                                                                                                                      	                            b                  1                                  
                                                             )                      @                      W                      f                      q                      }                                                                                                                                                                                                       grub_mod_init grub_mod_fini grub_strdup grub_disk_dev_register grub_unregister_extcmd grub_file_seek grub_errno grub_memset grub_file_read grub_strcmp grub_malloc grub_file_close grub_file_open grub_error grub_free grub_disk_dev_unregister grub_register_extcmd                                             G                     _                     k                                                                                                      <                    M                                2                                                                              G       #                    -                    <                   K                    x            Y                                                                                                                                                   '                   C                   M                   ^                   m                    |                                                                       j                                                                                                                                                                                                                                                                                                                  (                    0                      .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                           @       #                                   @               x	      h                          +                     p      P                              &      @                     0                           3      2                                                  G                           @                              B      @                     x                           M                                                         ]                                                         b                                                          k                            	                                                           p                          	                      p                                                               t                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/ehci.mod                                                                       0000600 0001750 0001750 00000061340 13417732100 0014542 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    `_          @     @   D   HWH AUAATI        USHADHKH҉!D   HL[]A\A]AUAATI        USHAHKD   D	H߉HL[]A\A]ATH        IUHSHHHtH\$HHAԅu
H[h1   H[]A\ATH        IHUSHHHH        [I)]DA\UHSHRHXHtHs@H        ЉE4F4    HkXX[]ATAH        HUSHHHH        [A)JD% ]A\AWIAVI        AUIATE1UHSHHH    Ht\C%  HtS89tDe0S8)I1S4t
{4Iu@AHD$HLH        AHD$HHt}0 yI? tADe0H[]A\A]A^A_UHAWI        AVIAUATASPH_H        HAHCH        H          H        D@1ARH          1EH        AUH        LCAYA^t A      DHH        A    AuD!CdNA   uE0A    u:   DSdu+A   A   u    DHH        1He[A\A]A^A_]SHGH        H          H        I        H X1AAщ[AUATUHSARHF l(  t~ҁ   1ҋF%  	Ѓt@`DP^   		Ӊ]HN ,  ,  %     ?	AA   l(  u ~ DEI        DmIDM H        H          H        1AEAH        H          H        1AH        H          H        1ADEH        H          H        1ADEH        H          H        1ADEH        H          H        1ADEMH        AY[]A\A]H          H        1AUH        HAWI        AVI        AUI        ATA  SH(H_UH        H        HCD@1ADHARH        EH          H        P1LCAD   HAH        HUYHUH  Lu^HEIDHAרtAH;Ev     } u[H        H          H        1ADHH        H        AH            1H        H          H        AI           DLEHAH        2   HMѺ   DHHEAHMH  HEHMDHAtAH;EvD   D	CdHH        ШttH        H          H        1Aտ
   HEDHH        H        AH          1H        A1HE    DHи
   He[A\A]A^A_]HB$?@BUHSQH_XHu61H        H        8  H        I        A12C4t{4Hu@H        HEXHGX    C4    HZ[]UHAWAVAUATSHXLgID$P6  @*  I(   H        HH
  H@    AUID$0AU HEIE   l(  uA} LuuHELp`AE1t%ωUMIt$(H        ЋUMIE1I        MtuGA      MH        H          H        1I        A   A   M9tAG%  9uL1MH        H          H        I        ALLH           AE1t,DEUMLUIt$(ADEUIǋMLUA	L}A   I   AG  AI`A   uE1H        H          H        1I        AML;  LI        AHHC  HǺ@   1H        HCHE    HE    Lu    HC@   HC@@     PD]H        DMDE1AWH          H        I        ASuAH @   1LH        A   H}H        It$@Ѓ}UAGMD]Ё  %   	ЅP  DD؀ʀ% AWE_      D)H;M  EMH        H          H        AG81AEO1EH        H          H        AEO1EGH        H          H        AEO1EGH        H          H        AEO1EGH        H          H        AEO81EG4H        H          H        AH{   L{HEL}EA9E2  HkEHKIE(HMHcDXA  MHMH@MEufH} P  vfH        1   H        HsHE    HtHM1LH        HH        и     H} @  D]LHEHID]H        xHcȁ    AtIt$@LI        AHMLA4It$@AHMHEI        I        HCHIt$@A׉C HCIH        H        Z  H        @   1LALKLCH        H        ]  H        1ALCH        H        _  H        1AH@   L3It$@H{AAFH@    I]81lMH        H        I          H        1ALLH        ALAH        It$(ЃAHe[A\A]A^A_]AUII        H        H        ATIH        UHSPH^81  AH}8H        HLHsLH        HsLH        HH        Z[]A\1A]AT1USHWHJuKH        HG L  HC@tHC@%   	L9r[]A\ATUH        SHWHHG L  HC tL9rHC[] A\UH        H        SQHHt%HSHߋωHH        H[hZ[1]UH        H        SQHH   HՅtH           1H        HH        ЅtH           1H        ҋS HCPHC0Hs(Hx`H        HSBHSHC@@   HS0HPt/@D   1҃9}HsH<7   7H[hZ[1]AW1H        AVAUATI        USHHT$H|$0H        t$8H          Aԁ" H|$0Lt$8   	  @H        H       Hu-H        H          H        1A  Hź	  @H!H       @ H	H|$0t$8H             I        Aպ  1M7  <,   #  H        1H          H        AԺ`   H|$0t$8Aպ    < t1DH        H          H        1A  A  H        1H        	  H        AԺ   H|$0t$8AD   $H|$0t$8AD$t1t-H        H          H        1A  ,$u,H        H          H        1  H|$0t$8   A׉A  ƃDffDfH        H        (  H        1ӿp   H        HIJ  @ H@    H@@    AH@(    H        DED|$$I$H        17  H        H        I$H        H        9  H        D 1I$H        H        ;  H        D@1I$H        H        =  H        D@1I$H        H        ?  H        D@1I$H        R  H        D AEI        HH        ID$1ID$H        H        T  H        D 1ID$H        H        V  H        D@1ID$H        H        X  H        D@1ID$H        H        Z  H        D@1ID$H        H        \  H        D@1ID$H        H        ^  H        D@1ID$H        H        `  H        D@@1I$H        l  H        HD@1A$H        ED$`Ӿ      AHID$  I        HI        LT$(I        AI|$ID$A1I|$   AD$ A1MD$H        H        x  H        վ `     AHID$(X  LT$(HAI|$(ID$0A1I|$0 `  AD$8A1MD$0H        H          H        վ      AHID$@  LT$(HAI|$@ID$HAI|$H   1AD$PAH        1MD$HH          H        AD$81҃HIL$HH   u1AL$PHIT$HL@J4HIT$H   HIT$HH@H=  B   uID$H`   I        ǀ     ID$Hǀğ     ID$HID$XID$0    ID$0@   ID$0@   ID$0@@   ID$0@d   IMl$0It$(LAփAE HID$0@   HID$0@   HID$0H`H `  @@   uH$H        H          H        H        A1A?  |$"   DH|$0t$8H        к  $A  D   A   1H        H          H        չ  $A   D$DI        AH  MA  HD$$D     uf  $A  D      1H        H          H        չ  $   $D   AH;D$xA   t)H        H          H        1D1H        H          H        չ  $   $DAUH|$0t$8H        п  Ɖ  1  1H        H        H        I        LH        ЅH        uE1H        H          H        ALH        Ѕt"H           1H          1H        H          H        AAT$ ID$PID$0It$(Hx`H        IT$BID$@@   IT$0I$P  ID$H        K  H        ID$H         H        ID$hLH        1DD$$1H        H        O  H        ID$H        H        Q  H        D 1ID$H        H        S  H        D@1ID$H        H        U  H        D@1ID$H        H        W  H        D@1ID$H        H        Y  H        D@1ID$H        H        [  H        D@1ID$H        H        ]  H        D@@1   @D   1҃9It$H<7   7I|$@HtH        I|$(HtH        I|$HtH        LH        1   HH[]A\A]A^A_AUII        H        H        ATIUSHH        PHn81  AI|$8H        LLHuHH        HuHH        HH        HS1HC 	   Z[]A\A]UH        HAWIAVIH        AUIATI        SH LWH^8H          IBLUID@31AHH        H          H        DHD 1AHH        H          H        DHD@1AHH        H          H        DHD@1AHH        H          H        DHD@1ALUY^IBPtILLH           @tHHKBI@   I]8MH        H          1H        AHI}8D`H        LLHsLH        HsLH        H        HA   uoA   udA(u\DNtE	u>Jt/R;S u$ILLH        He[A\A]A^A_]  uո   He[A\A]A^A_]AWH        H        AVAUI        ATIUSH(Hn8H_5  H        HE Dp1AHCEPuEut@ulI|$8H        HL$LHuHH        HuHH        HH        H        H        C    H} Hs(I        AH{01H49t9H`H `  uH        H        1H        Ҹ	   '  HE  HE @      H        I|$8H        LHL$HuHH        HuHH        HE @    Le Hs(LAփHA$H        H        H          1H        A1bHSI        @HC AHHD$HC@ t$HS࿉HSB BHC@AH;D$rH([]A\A]A^A_H        V    H        HtH        H     1H        H        H        H        Y,  H        H        H        1PH        ZH        H               grub_ehci_cancel_transfer detect_dev: EHCI STATUS: %08x
 ehci bus/usb/ehci.c detect_dev: iobase=%p, port=%d, status=0x%02x
 root hub ports=%d
 setup_qh: qh=%p, not changed: qh_hptr=%08x
 setup_qh: ep_char=%08x, ep_cap=%08x
 setup_qh: end
 setup_qh: not changed: td_current=%08x
 setup_qh: not changed: next_td=%08x
 setup_qh: not changed: alt_next_td=%08x
 setup_qh: not changed: token=%08x
 portstatus: EHCI STATUS: %08x
 portstatus: begin, iobase=%p, port=%d, status=0x%02x
 portstatus: Disabled.
 portstatus: end, status=0x%02x
 portstatus: enable
 portstatus: Enabled!
 alloc_td: end - no free TD
 find_qh: found, QH=%p
 find_qh: Mismatch in QH list! head=%p
 too long data buffer for EHCI transaction no transfer descriptors available for EHCI transfer transaction: type=%d, toggle=%d, size=%lu data=0x%x td=%p
 td=%p
 HW: next_td=%08x, alt_next_td=%08x
 HW: token=%08x, buffer[0]=%08x
 HW: buffer[1]=%08x, buffer[2]=%08x
 HW: buffer[3]=%08x, buffer[4]=%08x
 link_td=%08x, size=%08x
 setup_transfer: cdata=%p, qh=%p
 setup_transfer: td_first=%p, td_alt=%p
 setup_transfer: td_last=%p
 find_qh: end - no free QH
 find_qh: new, i=%d, QH=%p
 parse_success: info
 restore_hw: EHCI halt timeout restore_hw: EHCI reset timeout EHCI grub_ehci_pci_iter: begin
 No EHCI address is assigned
 EHCI grub_ehci_pci_iter: class OK
 EHCI grub_ehci_pci_iter: Wrong SBRN: %0x
 EHCI grub_ehci_pci_iter: bus rev. num. OK
 EHCI grub_ehci_pci_iter: registers above 4G are not supported
 EHCI: EHCI is not mapped
 EHCI grub_ehci_pci_iter: 32-bit EHCI OK
 EHCI grub_ehci_pci_iter: iobase of EHCC: %08x
 EHCI grub_ehci_pci_iter: CAPLEN: %02x
 EHCI grub_ehci_pci_iter: VERSION: %04x
 EHCI grub_ehci_pci_iter: SPARAMS: %08x
 EHCI grub_ehci_pci_iter: CPARAMS: %08x
 EHCI grub_ehci_pci_iter: iobase of oper. regs: %08x
 EHCI grub_ehci_pci_iter: COMMAND: %08x
 EHCI grub_ehci_pci_iter: STATUS: %08x
 EHCI grub_ehci_pci_iter: INTERRUPT: %08x
 EHCI grub_ehci_pci_iter: FRAME_INDEX: %08x
 EHCI grub_ehci_pci_iter: FL_BASE: %08x
 EHCI grub_ehci_pci_iter: CUR_AL_ADDR: %08x
 EHCI grub_ehci_pci_iter: CONFIG_FLAG: %08x
 EHCI grub_ehci_pci_iter: flag64=%d
 EHCI grub_ehci_pci_iter: framelist mem=%p. OK
 EHCI grub_ehci_pci_iter: QH mem=%p. OK
 EHCI grub_ehci_pci_iter: TD mem=%p. OK
 EHCI grub_ehci_pci_iter: QH/TD init. OK
 EHCI grub_ehci_pci_iter: EHCI owned by: BIOS
 EHCI grub_ehci_pci_iter: EHCI change ownership timeout EHCI grub_ehci_pci_iter: EHCI owned by: OS
 EHCI grub_ehci_pci_iter: EHCI owned by: NONE
 inithw: EHCI grub_ehci_pci_iter: ownership OK
 EHCI grub_ehci_pci_iter: EHCI halt timeout EHCI grub_ehci_pci_iter: halted OK
 EHCI grub_ehci_pci_iter: EHCI reset timeout EHCI grub_ehci_pci_iter: reset OK
 EHCI grub_ehci_pci_iter: OK at all
 parse_notrun: info
 check_transfer: EHCI STATUS=%08x, cdata=%p, qh=%p
 check_transfer: qh_hptr=%08x, ep_char=%08x
 check_transfer: ep_cap=%08x, td_current=%08x
 check_transfer: next_td=%08x, alt_next_td=%08x
 check_transfer: token=%08x, buffer[0]=%08x
 parse_halt: info
 cancel_transfer: begin
 cancel_transfer: end - EHCI not running
 cancel_transfer: end
 %s: prev not found, queues are corrupt
                                                                                                    LICENSE=GPLv3+  cs5536 usb boot ehci                                                                                                                                               '                  '      &                                  	                      
                                       -                      ?                      ]                      k                                                                                                                                                                                                                         0                     ;                     L                     V                     x                                                                                     grub_mod_init grub_mod_fini grub_millisleep grub_dma_get_virt grub_disk_firmware_is_tainted grub_dma_free grub_usb_controller_dev_unregister grub_memset grub_disk_firmware_fini grub_printf grub_pci_make_address grub_usb_controller_dev_register grub_zalloc grub_malloc grub_get_time_ms grub_real_dprintf grub_error grub_pci_iterate grub_free grub_loader_register_preboot_hook grub_memalign_dma32 grub_cs5536_write_msr grub_dma_get_phys grub_cs5536_read_msr                             g                                                                                   ;                   `                    z                                Y      	            #      O                    k                                                                       $                   3                                      $                   ^       e            ^                   b                                      $                           u                                u                                      $                                                         $                                                         $                                             %            $       8                   B                   Q            $       d            "      n                   }            $                   K                                     $                   n                                                                                                $       6                  C                   R            $       t                                                                     $                                                                                  (                   7            $       D            ^       `                                                                                         $                                             ,                   =            $                   $                                     $                                       Y      7	                    	            Y      	            Y      	            W      	                   
            $       
                    ?
            @      I
                   X
            $       b
                    u
                  
            (      
                               $                           6                  Z                                                                     $                                               
                                                                    $                                                        $                   B                                     $                   b      )                   8            $       O                  Y                   h            $                                                        $                   ~                          >                  M                                                                            	                    ,                  6                   E            $       f                  p                               $                                                        $                   C                                                          $       $                  9                   i                    s            ^      }                               $                   q                                    #                                              g                                                                      b                          	                  *            s      ;                    J            b      Z                  k                                                                             9                   G            $       v                                                                      $                                               D                  P                   _            $                                                        $                   :                                     $       2            e      <                   K            $       g                  q                               $                                                        $                            7                  P                   a            $       k                    {                                                 $                   =                                     $                   e                                     $       	                                     "            $       8                  G            $       \                    i                                                                    $                                                        $                   9                                     $                   c                         )            $       @                  J                   Y            $       p                  z                               $                                                        $                                      $                         $                    1                    @                    u            3                                     $                   b                                     $       T                   e                  t            $                                                                           $                                               :                  D                   S            $                                       		                                     $       5            @	      ?                   N            $       `            l	      j                   y            $                                       	                                     $                                                         	      '            	      1                   @            $       P            b      `            
      q                                D
                                     $                                      g
                  $       -                   9                    K                    `                  j                   y            $                                                        $                                                        $                   9                                      $                    c      #                    2             $       I                   S                    b             $       y                                                    $                                                           $       !                    -!                    C!                    R!                    }!                    !            
      !                   !            $       !            q      !                  !            #      !                    )"            
      @"                   Q"                    h"            $       "            
      "                   "            $       "            
      "                   "            $       "            ,      "                   #            $       (#            \      2#                   A#            $       t#            v!      #                  #                   #            $       #            q      #                  $            #      $                    v$            b      $                   $                  $                    $            $        %            q      ;%                  N%            #      ]%                    i%                  s%                   %                   %                    %                  %                    &                    &            q      0&                  C&            #      u&                    &                  &                   &            $       &                    '                    /'                    @'                    S'                  ]'                    i'                    s'                    '                  '                  '                    '                  '                    '                                                                                             &"                    $      (                   0                   8             G       .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @       '                                   @               9      x$                          &                     (                                    .      2               *(                                  B                     P4      X                              =      @               0^                                 H                     4                                    X                     4                                    ]                      4                                    f                      4                                                          4                                	                      7                                                         ^      o                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/ls.mod                                                                         0000600 0001750 0001750 00000015030 13417732100 0014243 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   Q> tH        H1H        H        1ZQz u?.t6H        H        HH        H        HD11ZUHAWAVIAUIATSHH(Bu	?.,  A+  L#H        LA|/LH        H        H3t
H        1HI  H        LH     H        H     H        H     H        HIu$H        L     H        ]  { Hx@H        uH1H        (HU   H        HUHH        1LH        LH        1H        H        H        HH        1AI        tA~HuH        Ѓ{ t8H}H        PEH        MUuDMDEP&EUH        QuMDMDEP1AXZAH        H        LH        HD1A1   He[A\A]A^A_]AWAVAUATUSHHLgt$HT$tE1   A$Ht$0H        D$0H        H        H        H          AD$D$AD$ D$A$$HD$JH        HHIH        HHuILH        D9l$D  HH        о)   HD$HH        LpHHT$LDMu'Mu"H           1H          A> u)H        8u     LH          H  D$<$ HL$ H\$ D$(D$D$,HBtH        
H        LHH        8  LH        A|/   H        H     H        H     H        H     H        H     H        H   HH        H߾/   H        LpHH        LH)HH   1   H|$0H        Ѓ<$ HT$ Ht$0LH        u
H        HH        H        8 uH        H        H        HH        HH1[]A\A]A^A_1PI        I        H        H        H        H        H        ZH        H8H                             l                                       h                                       a                                                                       (%s)  /  %s%s  %s%s %s/%s %-12llu %-12s DIR  %d-%02d-%02d %02d:%02d:%02d %-11s   %04d%02d%02d%02d%02d%02d  %s%s
 
 invalid argument List devices and files. [-l|-h|-a] [FILE ...] ls long Show a long list with more detailed information. human-readable Print sizes in a human readable format. all List all files.   LICENSE=GPLv3+  extcmd normal ls                                                                                                                                   M            Z                                                              	                      
                                       )                      G                      T                      k                      z                                                                                                                                                                                                                                                -                     =                     L                     ^                     l                                                                                                                                                    grub_mod_init grub_mod_fini grub_strlen grub_normal_print_device_info grub_strrchr grub_unixtime2datetime grub_xasprintf grub_get_human_size grub_device_open grub_file_get_device_name grub_unregister_extcmd grub_xputs grub_errno grub_memset grub_get_weekday_name grub_printf grub_strchr grub_refresh grub_file_close grub_file_open grub_device_close grub_fs_probe grub_file_filters_enabled grub_error grub_free grub_strndup grub_register_extcmd grub_device_iterate grub_gettext                                             %                     D                    N                    [                     e             	                                                                                                                                "                   3                    G                    Z         !           s                                                                       "                                    !                       (                %                       "                                               #                    9                    J            ,       u            P                                                         k                                    $           *            q       4                    @                    s                                                 !                                                               s                            $                    <                    z            y                   3                                                                                                                                                $                    8                    K         "           u                                y                   3                !                                           q                                                                                                          &                   0                  :                   D         #           P                    \                    i                                                             (                    8                    P             "      `             &       .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                        @       s                                   @               0      h                          +                                                         &      @                                                3      2               `      6                            B                                                          H                                                         X                                                         ]                                                          f                                                                                                                	                      P                                                         (      o                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/elf.mod                                                                        0000600 0001750 0001750 00000016300 13417732100 0014374 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                               @     @  
 ATUH        SL'HHHH{PHMtLH        []        A\1ATE1USHH H   G2o4H        DG$H           H        I        1HcIAHH        HHCHtfs$H;H        Hu2H        8 u@HSPH           1H        HsHHH;H        H9uH        D []DA\ATH        IUHSHHUH   11AHHuHtG    ?DM4IIL9s9u#DIE9EGDID9ABDID9ABH 믅uH        @D9s!H           1H        1HtDMtA4$D)[]A\AWH        MAVMAUATIUSHH(Ht$HT$L$ЉLkHH$    D$MuMB  M':  C4HHCHI9sAE tD$    L$AEt%?HDŁHl$EMH        H        }   H        I        I9ILG1AAuH;H        H   AUtNHH;H        AUH9t3H        8 u`HT$H           1H        <A}AU9s)1HH        AEH$I MtH$I        H([]A\A]A^A_SGH<   GfGfGfG0fG2GG fG4fG6fG8fG:G G$ȉG$G(ȉG(G,ȉG,H        HCHH   S4HHSHH9swH ʉPPʉPPʉPPʉPPʉPPʉPPʉPPʉPu.H        HKHHHtS4HHH9sH [ÃtH           1H        11ATE1USHH H   G>o@H        LG(H           H        I        1HcIAHH        HHCHtgHs(H;H        Hu2H        8 u@HSPH           1H        HsHHH;H        H9uH        D []DA\ATH        IUHSHHUH   11IHHuHtKH    BDM@Mk8IL9s9u&LIAM9MGLI(L9IBLI0M9ABH8뫅uH        @L9s!H           1H        1HtLMtI$L)[]A\AWH        MAVAUE1ATIUSHH(H4$HT$L$LL$ЉLsHD$MuMO  M'G  C@Hk8HCHI9sAtD$    L$InttH%HD?H?H!Hl$MN(H        H        }   H        I        I9ILG1AIvH;H        H   IV HtJHH;H        I;F t2H        8 u^H$H           1H        ;I~ IV(H9sH)1HH        Mn(I8HD$HtL(        H([]A\A]A^A_SGH<   GfGfGfG<fG>GHG fG@fGBfGDHfGFHG HG(HHG(HG0HHG0G8ȉG8H        HCHH   S@Hk8HSHH9   H8ʉPȋPʉPHPHHPHPHHPHPHHPHPHHPHPHHPHPHHPu.H        HSHHHtK@Hk8HH9sH8[ÃtH           1H        1ATH        IX   UHSHH0  L 1LH        H   Hs@   H;H        H@t8H        8    HH           1H           {ELFu{tH        SC<uHH        HH        *<H        u HH        HH        1   H        ҅uHH        HHCPtHH{PH        H{HH1[]A\UHH        SQHHt+HHH        HHuHH        1Z[H]Loading program headers at 0x%llx, size 0x%lx.
 elf kern/elf.c premature end of file %s no program headers present bad program header load addresses Loading segment at 0x%llx, size 0x%llx
 invalid arch-independent ELF magic invalid arch-dependent ELF magic   LICENSE=GPLv3+ elf                                                                                                                                                                       	      &            G       
       ,     Q              B     	      ^      P                 k                      w           !                                                                                   
                                          G                                                                       7      N                            .                     =                     O                 e    @             u                                                &                                             grub_elf64_check_version grub_elf_is_elf32 grub_elf32_load_phdrs grub_elf_file grub_elf32_check_endianess grub_strdup grub_elf64_check_endianess grub_file_seek grub_errno grub_memset grub_elf_is_elf64 grub_file_read grub_elf_close grub_zalloc grub_elf64_load grub_malloc grub_elf_open grub_file_close grub_file_open grub_real_dprintf grub_elf64_load_phdrs grub_elf32_size grub_elf64_size grub_error grub_elf32_check_version grub_free grub_elf32_load                            /                     <                     p                     ~             0                    4                                                                                                        ?                                               -                    D         	                       X                   s                                    	                                          0                   4                                               6                    K                    _            ?       p                                                            1         	                    	                                                  !                    /            0       >            4       H                    c                                                                        ?                                                                                       z            X                   s                                                                              0                   4                                                                                       "            ?       3                    V                    {                                        	                    	                   	                    	                    

                    +
                    =
                    S
            ?       d
                    
                   
                    
                    
                   
                    
                    
                    
                                         =                    Y         
           p                     .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .modname                                                                                              @                                          @                                               &      2                                                 5                                                          ;                                                         K                                                          P                                                                                      0      	                    	                                                                                     Y                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/lsacpi.mod                                                                     0000600 0001750 0001750 00000016100 13417732100 0015077 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   ATI        UHSHu @tHtH        1HAHHH        HtH        1H[]A\AT   I        UH        SHAH߾   H        sH        H        H        HE1H{	   AsH        1ՋsHH        []A\1AT   I        UH        SHՋsHH        SK	H        I        sLDH        1AH{
   H{   ՋsH        1AH{   Ջs LH        []A\1AWH        AVI        AUATUH        SHH,RЋSsH        1ՋCD`E  3@Y  @A$Ss1KH        s   @ufD  sS1KH        s   @      sS1DCKH        s@
  
   H        1H          Ss1KH        s   @u  s1HKSH        s@t   H        1H        s@K  H        18  KSH        s1DCCI        H        u
H        1AՀ{LkvsLH        1D{LH        HI9ts   H        1C    KSH        sTSDKH        DCwHcH        HsH        1sKH        S1 SH        1H        1CHA)_X[]A\A]A^A_AWAVAUIATUSHHGx    H        HHH        uH        1   H        1I        HH        E1ЋkI        HA֋EX܃vJAL,$Ht7HHL$   H        AHL$HuH        AփIIE8 ^  H        H        HHH        .  H        1HH        LCsHH        LD$H        S H        sLD$HEH        1Ջs$t$   H        1s!@u{" u{# tK#S"H        1LkH        I        ILI$AED`Av@I] Ht-Hߺ   H        AׅHuH        AIAH        1H1[]A\A]A^A_1PI        I        H        H        H        H        H        ZH        H8H                                                                                                                                   1                                       2                                                                       %c   valid invalid chksum:%02x (%s), OEM-ID:  rev=%d
 RSDT=%08x
 %4uB rev=%u chksum=0x%02x (%s) OEM= OEMrev=%08x   %08x
 ?? Local APIC=%08x  Flags=%08x
   LAPIC ACPI_ID=%02x APIC_ID=%02x Flags=%08x
    table size mismatch %d != %d
   IOAPIC ID=%02x address=%08x GSI=%08x
    non-zero pad: %02x
   Int Override bus=%x src=%x GSI=%08x Flags=%04x
   LAPIC_NMI ACPI_ID=%02x Flags=%04x lint=%02x
   IOSAPIC Id=%02x GSI=%08x Addr=%016lx
   LSAPIC ProcId=%02x ID=%02x EID=%02x Flags=%x  Enabled
  Disabled
   UID val=%08x, Str=%s
    non-zero pad: %02x%02x%02x
   Platform INT flags=%04x type=%02x (%s) ID=%02x EID=%02x
   IOSAPIC Vec=%02x GSI=%08x source flags=%08x
   type=%x l=%u   ??
 No RSDPv1
 RSDPv1 signature: APIC No RSDPv2
 RSDPv2 signature: len=%d chksum=%02x (%s) XSDT=%016lx
  length mismatch %d != %d
  non-zero reserved %02x%02x%02x
 
 Show ACPI information. [-1|-2] lsacpi Nul PMI INIT CPEI v1 Show version 1 tables only. v2 Show version 2 and version 3 tables only. LICENSE=GPLv3+  extcmd acpi lsacpi                                                                                                                                 M            T                                                              	                      
                                       )                      <                      Q                      h                      t                                                                   grub_mod_init grub_mod_fini grub_strlen grub_byte_checksum grub_acpi_get_rsdpv1 grub_unregister_extcmd grub_printf grub_acpi_get_rsdpv2 grub_register_extcmd grub_memcmp                            $                     >                     M                    l                     w                                                                                                                   .                    6                                               &                    <                   F                   W            A                   e                   r                                                                              |       )                   U                               '                                                         Y                                           )                    B                  ]                  w                                                                                                                                               y       3            P       E            +      Z            f      q                                                                                                                                               c       (                    Z                  s                                                                                                          c                                                                 $                  ?                  j            )      |                                                                                       J                  p                   L                   c      *                  4            k      >                    J                    V                    c                                                     G                   w                   k                          (             k      0                   8             S      @                   P             r      X             v      `             z      h                   p                                                                             .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                        @       m                                   @                                               +                                                         &      @                                               3      2                                                 B                     h                                     H                     h                                    X                     x                                    ]                      x                                    f                                                                                                                	                      X                                                          P      o                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/eval.mod                                                                       0000600 0001750 0001750 00000004210 13417732100 0014552 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   AV1AUATUS   ILc1I        9~I| HAILH        HHtH1        O HH9~It HyHƈW~ tHA HH        ЉHH        ҉[]A\A]A^H        PE1H        H        H        H        H        ZH        H8H        Evaluate arguments as GRUB commands STRING ... eval     LICENSE=GPLv3+  normal eval                                                                                                           D                                                                                                                                        )                      4                      O                      g                      s                                             grub_mod_init grub_mod_fini grub_strlen grub_errno grub_register_command_prio grub_unregister_command grub_malloc grub_script_execute_sourcecode grub_free               
           ?                     Y                                                                            $                                                              /                                                                                          .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                             @                                          @                     8      	                    &      2               X      4                             5                                                          ;                                                         K                                                         P                                                          Y                                                                                            
   
                 	                      H                                                                 b                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/lsefi.mod                                                                      0000600 0001750 0001750 00000012220 13417732100 0014725 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   U111H        HAWI        HMAVAUE1ATSHXHEDH;E  HUH        I        H1HAHH        HItH        1ALH        H        HMHUHH@`H0  H        HtH        1AE1EL;E   H        N    1II        HELM   LEL]HHMLUJ<A҅LMtxHMLUL]LEH(uHEH        JpHPVpVpVpVpVp
VDH	D@01AH0A3AHkH        1ItAHe1[A\A]A^A_]1PE1H        H        H        H        H        ZH        H8H        Handle %p
    Unable to retrieve protocols
   %s
   %08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x
 Display EFI handles. lsefi disk block serial network pxe device path PCI PCI root active EDID discovered EDID override EDID GOP UGA draw simple text output simple text input simple pointer console control absolute pointer EFI driver binding load file simple FS tape I/O unicode collation SCSI I/O USB host debug support debug port decompress loaded image device path to text device path utilities device path from text HII config routing HII database HII string HII image HII font component name 2 HII configuration access USB I/O  qQ4O ir;        ![NYd9 ir;        o% '?        2%- '?M        (- '?M        nW	?m9 ir;         LhL>?P        ~p/J8 '?M        V6D3y        4AIlf        1HrE"X        ީB#8JzЀQj        ),A8wh9        wt8i9 ir;        wt8i9 ir;        1uO '?M        w/.LVIC!        +YUJY*C        1CM	&q        0VL? ir;        "[NYd9 ir;        3Z֞E&m        ͅ= '?M        G/b#@><K        &Rt>E        YU'<oBT<%        X8A&G`        |ئ: '?M        1[b? ir;         >2RHUNJ        Ny}C7/r        !J_53C        r~XPyO	)        rﲡF'm2A`B        ti#L˘wP2*        j@1kFN몉	         uGWG~ZC$        \zjpOu0%        G3ONioC        h/+D[u        LICENSE=GPLv3+  lsefi                                                                                                        <                                                                                                                 3                   C                      ^                      y                                                                                                                                     grub_mod_init grub_mod_fini grub_efi_system_table known_protocols grub_efi_print_device_path grub_register_command_prio grub_printf grub_unregister_command grub_efi_locate_handle efi_wrap_3 grub_efi_get_device_path grub_memcmp     	                                          K                     U                     n                                                                        	                                                              
                               _            2                   ,                   f                                       {                                                                   ,                                        (                    @                    X                    p                                                                                                                                                               0                   H                   `                  x                              #                  3                  D                  W                  a                  k                   t      8                  P                  h                                                                                                                                          	      (                  @            )      X            4      p            >                  G                  X                  q       .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .modname                                                                                         @       6                                   @               x            	                    &      2               v      y                            :                                                        5      @               p            	                    @                                                         P                                                         U                                                                                            
   	                 	                      
                                                          0      ^                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/exfat.mod                                                                      0000600 0001750 0001750 00000020340 13417732100 0014734 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   H1HH   fDLNAtfD $A  wI   H
9 $  @p?΀@p΃?ɀ?H΀@p	 ?IH1|wD B  wA?HAȀHD@O (  v? $  w ?H+A??AȀɀD@@0HHLPH        HPH        H8H        С        ZATUHSHĀHZ  H   H        HH=  11LD$x   HI        Aԅ  H|$   H        H        Ѕ   D$tHv   T$uvC   ȉCT$X҉S   t$\s   HD$PHC   |$v    |$`{$|$d{(vkL$hC    C KD$rt|$vvSs9v<1LD$   HAԅu&D$lC<C,C    CDCC8H01HH        H        	   1H        1H[]A\UHH        SQHH8H        HH        HHtHpDH        1H        HHE Ht#
tqAFHJHE     H        H8H        HH        С        Z[]AWIAVIAUATIULSHH8~ Nt]F8F$IT$0LI	L8  LI4 LD$pH        H        ID$0    H:     	   LHHHȉT$I!;V<LD$sF8F<    F@   E1H$    HHD$N  DCD$,Ad  Au	%  D$,H        1DL$,H        $  H        I        AӋT$,;S M  "  ;S(  C<S@D$;C<s@vKK       sLD$,LHcH        Ѕ5H   HT$LL$KLD$pLH        I)s$I9LGMt$0M|$8LLL$IH        ID$0    8 uLL$LL$pL$HD$    L)͋D$DHD$N6+C@tD$,d$,  H        	   1H        H$H8[]A\A]A^A_UHAWAVAUIATSHXHHEHH        HH   LuIE     E1I        P11A    MHAVH}H        ZH YubEt[<tI Ŀ=   AHIE t@U   HHF1H9tfAtVftUHHHuH          HH        С        He[A\A]A^A_]UIHPLWPHGHO`HWXVLLGH8H        ZYUHAWMAVAUIATISH   F,H0H L(u"H           1H          A} /uI/   LH        HHH@I        tNL)yHHAHHS  HHHLH        HHHHH LH        HH@    HEE1MAA!Aֿ<  HEAHHEtH} tLx  HI        AH}AH        8 tHA  HE11A    LH0L@ PH        AVLEZH YW  Hm HEV11H0A    LL@ HXLEPH        _H AX  DXE  yAY  YE    ǅH    ǅ<    8\E89<RkHHuH}H        к     1LH        DExD	Ѓ} xt+; H}   E   H(LAׅ      1H}H        1  DxE   A@AtAuZkH1-EE   EHEHEHEHEYETfAtFHUHHf4JuH2H        H          H        1I        A<HIAt6t/DYDQ ADXAFDP AAF9uIHJB FpH F9HEEED$,AD$<ID$0EAD$8EAD$A   tUH(LAFA@<<H        H          H        1I        AE1H}I        AH}AH        8 u,E	u'H H           1H        E1H        H1EHE@He[A\A]A^A_]AUH        ATIUHSQH8H        HEH8H        HHtmLI        H}E1E1HLHH?AH        : u8HuC,tH           H        H]PHC0HE@11HH        H        H8H        С        Z[]A\A]AWH        IAVAUATUHSHL/H8HT$H        LH        HIu1   HH        HxIH        HHtHLHH        B|5/J3t /H  I        HMLD$HHLLAHtH        : tHH        LH        H8H        С        H[]A\A]A^A_SHH        H        H        HH        [H        H        EXFAT    not a FAT filesystem %04x-%04x fat_size=%d, next_cluster=%u
 fat fs/exfat.c invalid cluster %u not a directory unknown secondary type 0x%02x
 exfat unknown primary type 0x%02x
 file `%s' not found not a regular file                                                                                       LICENSE=GPLv3+  exfat                                                                                                                              3                                                                                           )                      8                      E                      Q                      `                      l                      w                                                                                                                                                                                                                                                   grub_mod_init grub_mod_fini grub_strlen grub_xasprintf grub_memmove grub_strdup grub_disk_read grub_dl_ref grub_errno grub_memset grub_fs_list grub_strchr grub_malloc grub_real_dprintf grub_error grub_list_remove grub_free grub_dl_unref grub_list_push grub_memcmp                                                 -                    8                    ]                                                                                                                	                                                                               B      '                   3         
           t                                                                                                                                    F                   (                   J                           3                    h                                                    U                           _            B                                                                                     +                    g                              h                                                                   3                    [                                                            	                  T	                  	                    	                    e
                    
            x                                      J       #                                                                      J                           -                    A                    \                   m                    |                                                                        B                  u                          (                   7                    X                    d                    q                    |                                                                        B               	                                                   5            u      ^                    p                                                                                                                                                                                                                                                                   (             B      0                   8             ?      @                    .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .modname                                                                                         @                                          @                            	                    &      2               9                                   :                            P                              5      @                            	                    @                     p                                    P                                                         U                                                                                            
   	                 	                            	                                                         ^                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/fixvideo.mod                                                                   0000600 0001750 0001750 00000005650 13417732100 0015451 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   1PH        H        1ZATH        Uպ   SHH<$t$ЍHAĺ  ȃ  1<V  H        LM	  9k   1H        H        =   H        H        DC  CDIHt	t*H        H        B   H        1A;SHHHЋ;St.H        H        I   H        1ջ   z         tiH        H        N   H        1@H1AH        H        W   H        1I        AH[]A\1PE1H        H        H        H        H        ZH        H8H        Found graphic card: %s
 fixvideo commands/efi/fixvideo.c Invalid MMIO bar %d
 Old value doesn't match
 Setting MMIO fails
 Unknown graphic card: %x
 Fix video problem. fix_video Intel 945GM Intel 965GM                    '                *                                LICENSE=GPLv3+  fixvideo                                                                                                                                   <                                                                                           8                      P                      f                      x                       grub_mod_init grub_mod_fini grub_register_command_prio grub_unregister_command grub_pci_make_address grub_real_dprintf grub_pci_iterate                                                 !                     g                                                                           !                                         9                                        !                   N                          .            !       T            g       ^                   m            !                   {                                      !                                                                                              	                                                            
                                                     .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .modname                                                                                         @                                          @               x            	                    &      2               [                                   :                     0      H                              5      @                     0       	                    @                     x                                    P                                                         U                            	                                                          P      
   	                 	                                                                                H      ^                                                                                                                      boot/grub/x86_64-efi/lsefimmap.mod                                                                  0000600 0001750 0001750 00000007160 13417732100 0015607 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    p          @     @   AWE111AVAUATUSH        HH$    HL$HӅ  H<$H        Iġ        M  E11HL$LHӅLH        a  H        1H        MLI        L,$L9su wH4H        1LH        1HMHuH        I        HHHT1HUH  tHH        H
    ?tHH        HtH   HtHH        HRH HtHH        H(0HHHtH2H        H<H        1AL} MyH        1AtH        1AtH        1AtH        1AtH        1AtH        1A   tH        1A    tH        1A @  tH        1A   tH        1A   tH        1A   tH        1H        1Hl$1H[]A\A]A^A_H        PE1H        H        H        H        H        ZH        H8H                 reserved ldr-code ldr-data BS-code  BS-data  RT-code  RT-data  conv-mem unusable ACPI-rec ACPI-nvs MMIO     IO-ports PAL-code persist  Type      Physical start  - end             #Pages        Size Attributes
 %s  Unk %02x     %016lx-%016lx %08lx  %6luKiB  %6luMiB  %6luGiB  %6luTiB  %6luPiB  %6luEiB  RT  UC  WC  WT  WB  UCE  WP  RP  XP  NV  MR  RO 
 Display EFI memory map.  lsefimmap      LICENSE=GPLv3+  lsefimmap                                                                                                                                  D            >                                                                                                     (                      C                      O                      g                      s                                             grub_mod_init grub_mod_fini grub_errno grub_register_command_prio grub_printf grub_unregister_command grub_malloc grub_efi_get_memory_map grub_free                         ?                     M          
           y                                                                                                 K                    O                    [                            '            p       E            y       g                                                                                                                                                        '                   ;                   R                   i                                                                                                                                     
                                                          (                    4                    @                    M                     .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .data .module_license .bss .modname                                                                                              @       W                                   @               x            	                    &                                                         .      2               '                                   =                     #                                     C                     (                                    S                     8                                    X                      8      
                                                    H            
   
                 	                                                                                      a                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/font.mod                                                                       0000600 0001750 0001750 00000042620 13417732100 0014600 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    B          @     @   HHHP~ tHAUE1AATUSF
A9s|G^C,(E1AAAAAFA9s?DADADA%   BD'AuE0AuE0AA{[]A\A]AUIATAUSH9HHt%WO
LW)ЉH        ЋCA9}
D)CDcAM
S)9~SAE
)CAEAD+cD;c|ADc+k9k}k[]A\A]HHtfxHFHt8AWI1AVIAUI͹   ATUSHXHH|$8HT$(LD$0LL$Ht$8LL$@tAEfFH\$HtAEAEEeÉD$D$HAEDd$PADd$ƉD$$D$LAE
D$TD$ fAGftfI_<H\$vIGHD$	HD$    1D$    fAGf9D$  T$HD$0H,H} H  HL$t$PGDL$HH
 O    fJDD)fD΀   f    wEw,
    D$TW
D$L)щ)    C  s  [  w!    Au)AuB    R    D  w1$w!4      t{S  1@    w;   /  W
D)D$HL$8T$ t$H        G        W
T$ T$ DH        HL$8HE @A  H        HL$8T$$t$HE @D$  A   tAu   )ƃ)
fAufGA   HH@ ffA)fIE @ ffAA   AHAEAU
G
H        HL$8HE @9L  
   
      H  tvfGA   HH@ ffA)f#IE @ ffAA   AH1W
T$LT$TUfW
D$TfD$L:t;fGfG
f IE    @ ff   +T$LGW
HL$8AuGH        HE Ht$8xH        D$|$AUHt$8AEH        A9AM)AE|$Ht$8)MtAF9}fA^HD$Ht9}H\$(HtHD$HHT$PHHSHX[]A\A]A^A_H        H        Ht#H9xuHHH        H
HH UHSQGxH        HHt=UHH} H        HxUH9tHH        	 H1Z[]fGH        fH;
vzHR   %  HHCHH        H        H8H        H        H<    H        HH        uH             XUHSHGt;RO	H        WI        PDO1DG
   AY^   1   HH?HuH        H   ufE0҆fH]S   HH        H   uf0҉[AWAVAUATUSHH  HW0w)HG8Ht D,pfA  MkIuE{  C(HҍHl  1HH)HHLkIA;u sHOvHGH9v;  MeM1  H{ &  H        H        AuH{H        H{Ht$Յu<H{Ht$Յu-H{Ht$
ՅuH{Ht$ՅuH{Ht$ՅtHH           D$Dt$DH        AAMcIHHtHfD$EfED$fE
fD$
fED$fEfD$fEt HuH{LH        L9gH        IImE1HL[]A\A]A^A_AT   I        UHSHHvHH;F    AHvHx1   Ht$HAHw	C   HxD$ȉC1   H[]A\AUATAAUSQ   H        H        8    1I        (   AH4HD H        Hf@ f@
 Hf@  f@f@ H     Hx   H        H   uH            JD 1Z[]A\A]H        8   (   RH        HH        c  f@ f@
 Hxf@  f@   f@ H        H        H        H     H        H     H        f   H        f   H        f  H        f   H        f   H        f   H        f   H             H        H     H        H     H        H        H        HfB
f        H        f  Bf        fB
f        H         XAWAVAUATIUSH8<(t<+u   LH        H   H        H        HHu,H        H           1H        z  H        HILI|H        HHF  HHH        H        HLHH        HH     H        HHH        H  H        Ht$HӅH\$ulLd$    H        H        LӅtH           1H        &T$$t$H           1H        1
     Ht$HI        AHuٺ   H        H|$Ӆt6L$T$H        DL$DD$   1I        A뉿@   H        HHlH     H@    f@  f@  f@$ f@  f@  f@   f@"  @(    H@0    H@8    HhHt$HHD$Ѕt|$( @       H        LI        AՅuH|$H        HH  H           LAՅHs      H        LAՅuqH|$H        HIGH        HI        AօufCd H        LAօufC LH        H           LAՅHstWH           LAՅHst:H           LAՅHs t   H        LAՅu"Hs"H|$H        Ѕf     H        LAՅe  |$$1ҹ	   tH        (  	   1I        ǉC(HkAHHC0     AHHC8  HǺ      H        E1D$    i  wHC8fD,PAIv   HD$AH  Iv   HH        H  AFIF    AAFD;k(DD   HLkLs0LAHJ  AEAY;T$OL$H           1I        A     H        LAՅt$t$$HH        Hu   H; uKH        H        i  H        1I        AH        H        Hf{ t"f{ t{( tH{0 tf{  tf{" uH           1H        2   H        HtH        HHXHHHDHH        Ht.H        H;HC    H{H{0H{8H1H8[]A\A]A^A_AUH        I        ATIUSQHHtHkLH} AՅt+HH        HtHPH        HHEH
H        Z[]A\A]HGG"ËG    ffG$W G"W$HSuH        [H        Ht[AWAVAUAATUSHHHu"H        E1H(A'  I        7H        H   LeLD$DHm LAHLD$uHu~Ht|AT$ fA|$2   AL$ftDK fEtD)ʉ1)4    ftSft)щ1)э421f;{D9}IA{LH[]A\A]A^A_AWIIAVAUMATIUSH(FD6HT$A       @fAGEftIofvIo1ANw>fHD1D9s,fyHfftAi7  1  DAH        D	LLL$HL$HHHL$LL$u+DLHHuDH        HH   MtCAE AG H   fAGtMtE1H            ifAGfA9s2DH;AƋt IH        HL$ HL$HH        MMHHT$1LH1H([]A\A]A^A_SHH        HH Ht$H        1HLD$Ht$HH        HuH        @D$H [AWH        AVAUATIUSHHHE1H        HHHLH        HH        H(  H        H8 ufAD$H  AD$ H  D$H        D$HH9sPH        H8H        ЋD$D$H| 0HH        H        H        H        H8HuH             HY  T$1H        T$HH        H(HHE Dt$$L$fDuDD$fEfMfDE
AD$E{
sS   D))E1DiC
9   D[E1ET5 EDAAEADAACA9sD@EDDA%   BD=uA˿   AuAE0AD))HHH        H        E1L HH        1HLHH[]A\A]A^A_U1HAUAATSHHhOf   AW
f   UEEHELEE  E
   HHJHPIHpHE   E    H        E   E E E E HCDSE1E1   HECH}D)C
P)CPH        ZYHe[A\A]]UH        H        H        SQH        HHt&H{H        HH        1HZ[1]AUI        ATIUS1ۅWuH           1/9t>I<HAHu        u$H           Y[]A\A]H        1Z[]A\A]SH        H        E1H        H        H        H        E1H        H        1H        H        [H        SH        H        H8H        H8H[font file format error: section %c%c%c%c length is %d but should be 2 <No Font> prefix variable `%s' isn't set /fonts/ .pf2 FILE font file format error: 1st section must be FILE font file format error (file type ID length is %d but should be 4) PFF2 invalid font magic %x %x %x %x NAME PTSZ WEIG normal bold MAXW MAXH ASCE DESC CHIX font file format error: character index length %d is not a multiple of the entry size %d font characters not in ascending order: %u <= %u DATA Font has no name.
 font font/font.c Unknown invalid font file: missing some required data Loaded fonts: %s
 filename expected invalid font Specify one or more font files to load. FILE... loadfont List the loaded fonts. lsfonts               ||  JZ   U   92q  U   ;1q  U   {yy  U   yzy  U   z{z  U   1zI  U   sss  U   xxy  U   E|D  U   AA}  U   ED  U   }}A  U   =A=  U   <9x  U   =8y  U   rJs  U   qJq  U   qJq  U   qJq  U   qJq  U   IjJ  U   41q  U   {yy  U   3G4  U   }}}  U   :2q  U   yy{  U   yyC  U   9Y;  U   qqK  U   II3  U                         """"              ~$$~HHH      >IH8	I>      1JJ4))F      """9EBF9                              I**I                                 ~                         @@      $BBBBBB$      (>      <BB @@~      <BBBB<      $DD~      ~@@@|B<       @@|BBBB<      ~      <BBB<BBBB<      <BBB>8                                       ~   ~         @  @      <BB       "JVRRRN       $$BB~BBBB      |BBB|BBBB|      <BB@@@@BB<      xDBBBBBBDx      ~@@@|@@@@~      ~@@@|@@@@@      <BB@@NBBF:      BBBB~BBBBB      >>      DD8      BDHP``PHDB      @@@@@@@@@~      BBffZZBBBB      BbbRRJJFFB      <BBBBBBBB<      |BBB|@@@@@      <BBBBBBZf<     |BBB|HDDBB      <BB@0BB<            BBBBBBBBB<      AAA"""      BBBBZZffBB      BB$$$$BB      AA""      ~ @@~          @@      pp   $B                                              <B>BBF:     @@@\bBBBBb\        <B@@@@B<     :FBBBBF:        <BB~@@B<     |       :DDD8 <BB<   @@@\bBBBBBB      >      H0    @@DHP`PHDB      >        vIIIIIII        \bBBBBBB        <BBBBBB<        \bBBBBb\@@      :FBBBBF:      \bB@@@@@        <B@0B<      |        BBBBBBF:        BBB$$$        AIIIIII6        BB$$BB        BBBBB&<      ~ @~           00    1IF             sKs  U  LICENSE=GPLv3+  bufio video font                                                                                                                                               &      -                                                                                               )                      4                  J           *       ^                      n                           +      	                                                                             A                 X                                      P      z                            (                     4                 J                     e                  s                                                                                                                                                                                                                               0                F                     Q                     [                 n                 }                           c                                                                                        grub_mod_init grub_mod_fini grub_strlen grub_puts_ grub_font_get_descent grub_font_get_glyph grub_error_push grub_video_blit_bitmap grub_font_get_glyph_with_fallback grub_memmove grub_video_unmap_color grub_strdup grub_font_load grub_font_construct_glyph grub_file_seek grub_font_get grub_errno grub_memset grub_font_get_leading grub_register_command_prio ascii_bitmaps grub_printf grub_unregister_command grub_font_draw_glyph grub_file_read grub_font_get_max_char_width grub_zalloc grub_strcmp grub_malloc grub_file_close grub_real_dprintf grub_buffile_open grub_font_loader_init grub_error grub_free grub_font_get_name grub_font_list grub_font_get_xheight grub_font_get_constructed_device_width grub_error_pop grub_memcmp grub_env_get grub_font_get_height                                                            '                                                                     T      ;            T               ,                    ,                    *                    $                                4         *           U                                                                   *                                       $                                                                       
         )           A                     t                     3	                    =	            i      Q	                    	                  	         $           ,
                     A
         /           r
                     
                               0                $           1                    p                                                   0               $                                                                                 H      ,            P      =            X      L            Z      [            d      j            \      y            ^                  `                  b                  h                  p                  x                  F                   @                                     `      
            b                  \      *            ^      4            0      i         '           }            P                1                       P                   W                )                    
                    $                                           o       $            w       >         '           P         *           e            i
                  |                0                                       )                                       )                                                   9                   V         )           j         "                                      0           !                  8                  ^            #      w                              (               #                       /               *                       4                   9                  >      ?            C      \                  z            H                  M               $                               ]                                                )                                                 :                  D                  S                  _         &           l                   v                                               )                    $                    ,                    %                    *           T         ,           ^         #                    ,                       @                  @                  
                        F         ,           \                  h                                      $            
      m                                                    l                  O                          /            4      @                  \            O                                      4                                                                                            *           =                   G         $           S                    ]                    o                                                                                                               l      ^                                                    6                                   +                    ,                       D                          0                    J            H      o                    }            Z               )                    (                                           g                                    ,                                                                                                                  )                    3                  B                   .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                             @       S                                   @               X0            	                    &      2                                                 5                     `                                    ;                     p(                                    K                     (                                   P                      (                                    Y                      (                                                          (            
   
                 	                      `-                                                         (B      b                                                                                                                                              boot/grub/x86_64-efi/lsefisystab.mod                                                                0000600 0001750 0001750 00000006770 13417732100 0016170 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    
          @     @   AWH        H        AVAUATI        USQH1HAԋSH3H        1AH        1AHCHf}  tHHH)H        H|6Iš        M!  LCLE1L)HHH   fA EIptd $=  wIA   HA
B	 $  J?ɀJ?Ȁ?BɀJ	?LHE1vw?  w?HȀJBM (  v< $  w?H)??ȀɀB@:JHAI LH        1ALH        E1Ћs H        1AHshH        1AHkpDH;Ch   HuH        1E1AMUH        u 1ABt5I1H        AIuI        I           HLAׅuIvH        AIH        I9uH        1HAA@1Z[]A\A]A^A_H        PE1H        H        H        H        H        ZH        H8H                      qh" <        0-- '?M        2-- '?M        1-- '?M        /-- '?M        QbByKyax        Address: %p
 Signature: %016lx revision: %08x
 Vendor:  %s , Version=%x
 %lld tables:
 %p   %08x-%04x-%04x- %02x    %s 
 Display EFI system tables.  lsefisystab ACPI-2.0 ACPI-1.0 SAL SMBIOS MPS HCDP  LICENSE=GPLv3+  lsefisystab                                                                                                                                D            	                                                              	                                       3                      >                      Y                      e                      }                                                                   grub_mod_init grub_mod_fini grub_efi_system_table grub_errno grub_register_command_prio grub_printf grub_unregister_command grub_malloc grub_free grub_memcmp            
                                                     <                    K             /       t                                                      8                                       ;                   I       
            W       $            \       A            l       T                    ^                    ~            q                                      w                                      y                                                                                                                                                  (                    @                    X                    p                                         .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .modname                                                                                         @       "                                   @               8            
                    +                     p                                    &      @               	             
                    3      2                                                   B                                                          H                                                         X                                                         ]                                                                                               
                 	                                                                                P
      f                                      boot/grub/x86_64-efi/lsmmap.mod                                                                     0000600 0001750 0001750 00000005540 13417732100 0015123 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   1PH        H        1ZATIUHSH        w;HcH        H<Ht%H        LHHH        1LHH        1[]1A\1PE1H        H        H        H        H        ZH        H8H                                                                                                                                                                                             base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 List memory map provided by firmware. lsmmap available RAM reserved RAM ACPI reclaimable RAM ACPI non-volatile storage RAM faulty RAM (BadRAM) persistent RAM persistent RAM (legacy) RAM holding coreboot tables RAM holding firmware code  LICENSE=GPLv3+  mmap lsmmap                                                                                                                                 <                                                                           	                      
                                       7                      R                      j                      w                       grub_mod_init grub_mod_fini grub_machine_mmap_iterate grub_register_command_prio grub_unregister_command grub_printf_ grub_gettext                                              .                     =                     P                     e                     {             )                    [                                                                                                                                                                                                                     (                    8                    `                                                    -       .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                        @                                           @               H      P                          +                     0                                    &      @                                                3      2                     G                            B                                                          H                                                          X                     0                                    ]                      0                                    f                      5                                                          @                                	                                                                                p      o                                                                                                                                                                                              boot/grub/x86_64-efi/fshelp.mod                                                                     0000600 0001750 0001750 00000007200 13417732100 0015106 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @  
 H;~tH;~tH        AWIAMAVIAUMATIUSHIqIy0AA@   IqIq H$IG0/u	HIG0uIGIAG@AG(1  IG8IW8</tt	HIW8A@It+LH        IG    H              LH        AԅuZH        ILС        IG    p  IHH        []A\A]A^A_   1H        A@  AG,IH        AG,uILI LIG    IG     H           H1H        []A\A]A^A_AHILHIG    I to} /uLIGIG M_8Iw MMLH$HH        L\$AG(L\$HAG@M_8H        H        8 tI LIG             *I I;tLH        IG     IG8H[]A\A]A^A_AUIATAUSAPuH        L1   H   HHI0HS8   H)tvH1@4H| @t<DD Et1H9t,DEYEQ AEXEFEP AEFHE9t@΍QA FpP F9UHC8H+C0|  BHCALkDc@HC    H)HH        HЅZ[]A\A]UI1H͹   SHXMH|$LT$Ht$D$0   tA:/t+LH           1H        ѡ        dDHLL$LH        ЅuFu|$0t:H           u$|$0tH           1H        HX[]AWMAVAUIATMUSHH$   H$   HL$(Ht$K4HT$ K	   HL)H9HcLGID G48LHD$Hl$LHt$HHD$HōCHΉD$4A!Ht$8H;l$   HH|$$   H        : t	H   $   HH;l$8uEAEH;l$D$0    u|$4D!|$0)HHctUH$   H|$ Ht$(HcT$0L$   I}0LIu8HH        H        IE0    8 tdH1H$   H        Љ+D$0HHH$   
LHH[]A\A]A^A_not a directory too deep nesting of symlinks file `%s' not found invalid file name `%s' not a regular file   LICENSE=GPLv3+ fshelp                                                                                                                                                                                                       $                      3                      >                      J     m            `                      k                       grub_fshelp_find_file grub_strncmp grub_disk_read grub_errno grub_memset grub_fshelp_read_file grub_error grub_free                                                                                                                     
                       -       6                    U                                                                              #                    /         
           N         
           g                                                                        A                                    
                              .            X       K                    \                             
                    	                    
                                .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .modname                                                                                              @                                          @                                               &      2               C      k                             5                                                          ;                                                         K                                                          P                                                                                      h      	                    	                      0      u                                                    `      Y                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/gcry_rsa.mod                                                                   0000600 0001750 0001750 00000006510 13417732100 0015441 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    
          @     @   H>H        AU   ATUSQHnL.Lf HV(HtaMt\HtWE< H        HLHHH        LHH        ЉHH        ЃЃZ[]A\A]ATIUHSHFHt$< H        HHUHM Ht$HH        LHH        HHH        []A\AVIֿ   AUMATIULSH HHD$HAHD$H        I6HH9uHHHT$H        HHL$HT$H        Ht
HLLHH        ЃЃD$HH        ҋD$H []A\A]A^UHSHHHHQH$HT$xH        H9HHE uHHH        H$HT$HH        H1[]H        H        H        H     RSA ne nedpqu a s n rsa openpgp-rsa oid.1.2.840.113549.1.1.1                                                                                                                                                                     LICENSE=GPLv3+ verify mpi gcry_rsa                                                                                                     7                  L                                                                                    	                                       0                      C                      R                      _                      m             x                                                                                                                      grub_mod_init grub_mod_fini gcry_mpi_get_nbits grub_crypto_pk_rsa _gcry_mpi_free gcry_mpi_set gcry_mpi_powm _gcry_pubkey_spec_rsa gcry_mpi_cmp gcry_mpi_mul gcry_mpi_new _gcry_mpi_alloc gcry_mpi_release                
           A                     Y                     k                     |                                                                                                         5                    W                   r                                                                                
                   $                    9                    C                    N                                                                                                                           (                    0                    H                    P                   h                   p                                                                          $        .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @       ^                                   @               p            
                    &      2                     =                             :                                                         5      @               P      P      
                    @                                                         P                                                          U                                                          ^                            	                                                                   
                 	                                                                                	      g                                                                                                                                                                                                                      boot/grub/x86_64-efi/functional_test.mod                                                            0000600 0001750 0001750 00000347160 13417732100 0017042 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                             @     @   ATH        I        U   SH        H        H             H        H        H        H        H        H        H        H        H        H        HHtHAԅ    HEH        H        u
H        1[]1A\UH        H        SQH   Ht6H            tHՅH            HŅH        H        u
H        1Z[1]UH        E1I        11SH        H        H        P1HE1I        1H        H        HZ[]H        H8H        AUAH        ATI0   UHSQHHt}MH        IEI        AHHCuHH        EHH        HEAHHCuH{H        HDk HC(    H1Z[]A\A]ATH        USHHHL#HMt<HLH        H        1HH        LHH[]A\H[]A\HXH(HD$`HT$0HL$8LD$@LL$HHT$HD$HD$ D$   HD$H        HXSH`LL$XurHH\$0H։HL$pHLD$H\$(H        HL$ D$(   LD$HHHT$1H        LHH        H        H`[Å   SHHHǉH        H`LL$L$L$HHH        H        1LHD$pLL$H{(HT$D$0   HD$ HD$0LHD$(H        HH        H        H`[ATH        I    UHSHHt4LH        HkHCH[]A\H        H        []A\UHH        SQH8H        HHt/HH        H        H{HtZHH[]X[]AUI        ATI        UHSQWHuH        1AH        HHtLLC(HCH        H        K H        MMDHHEHCHHE1AHH        HuH8 uH        1A1eH        H        1AH        HHt5H{(HHH        tH{HtH{HtH빸   Z[]A\A]á        UI        Ht,H        H        (   H        1AvH        x( H        H        D H                uWAɉH        PVAH        P(   H        1AXZH        UH        HAUATSQH        H        Q1HH        AH        H        HtH        ;|wH        ATI        I        c  H        H        S1I        P        P        PH        01AH0   HcD,CE9   H        RI        I        l  H        H        AU1I        ATSP        P        PH        01AH@                He[A\A]]AUH        I        ATIH        U1SH        RLH        H        H             H        H     H{LAՅ          ;C           ;C           ;C           ;C           ;C           ;C           ;C           ;C           ;Cur        ;Cud        ;CuV        ;CuH        ;Cu:        ;u-HkPH        HŋEH        HE@H        HP  H             H        H        X[]A\A]UHAUI        ATI        SH        PH        AM A$1I        I        H        I        Q9ʹ  @RPH        PR H        P31AH0H;H        H        H    AE     H     H        A$    H     He[A\A]]UHSVH        H        H        HtHxH        H        ЅuH        H8 u>H        H H        H        H        H        Hu6H        HuTQH        I        I          PfHxH        ӅtH        H H        HPt]H        I        I        PH          PH        1H        1I        AXZ   TH        H        H        HHH        HH        H        H        1H]H        8 thR     H        HP H        HH        HH        H        H        H     H        H     YH        HHt/H        H        0;1}Nȣ        HcƋÃATH        IUS8 uH        H        H        H8HtH        HcH        HHHH        HtTH        HLH        HH        Љأ        H             H            []A\H        8 tfR     H        H        H        H8H        H        H     H             H             YH        HtR1Y11H        HHDH        AUIH        H        ATI1Uպ`   SH        QH        й   HLH        HУ                H        {HH        u           HHH        H        Ѕ   H        H8H        Ѕuq1LH        ЅuZH        HH        t+H        H        H        H@(HtH        H        1Z[]A\A]H        H        AQH8H        H        H8H        H        H        HH        t>H@ HtH        H@0Ht H        H        6?11AXX             grub_test_use_gfxterm           grub_video_checksum_end checksum                                                                                -                  X                                                      -                                                                         -                                                                 -                  X                                                -                                                                   -                
                                                  -                                                                       -                  X                                                      -                                                                         -                               
                                   -                  X              
                                   -                                 
                                   -                                                                  -                  X                                                 -                                                                    -                                                                  -                  X                                                 -                                                                    -                                            
                      -                  X                           
                      -                                              
                      -                                                                  -                  X                                                 -                                                                    -                                                                  -                  X                                                 -                                                                    -                                                                 -                  X                                                -                                                                   -                                                                                         X                                                                                                                                                                                                                  X                                                                                                                                   
                                                                                                                                           X                                                                                                                                                              
                                                     X              
                                                                    
                                                                                                                       X                                                                                                                                                                                                         X                                                                                                                                                                 
                                        X                           
                                                                    
                                                                                                          X                                                                                                                                                                                                         X                                                                                                                                                                                                        X                                                                                                                                                                                                            X                                                                                                                                                                                                                  X                                                                                                                                   
                                                                                                                                           X                                                                                                                                                              
                                                     X              
                                                                    
                                                                                                                       X                                                                                                                                                                                                         X                                                                                                                                                                 
                                        X                           
                                                                    
                                                                                                          X                                                                                                                                                                                                         X                                                                                                                                                                                                        X                                                                                                                                                                                                            X                                                                                                                                                                                                                  X                                                                                                                                   
                                                                                                                                           X                                                                                                                                                              
                                                     X              
                                                                    
                                                                                                                       X                                                                                                                                                                                                         X                                                                                                                                                                 
                                        X                           
                                                                    
                                                                                                          X                                                                                                                                                                                                         X                                                                                                                                                                                                        X                                                                                                                                                                                                            X                                                                                                                                                                                                                  X                                                                                                                                   
                                                                                                                                           X                                                                                                                                                              
                                                     X              
                                                                    
                                                                                                                       X                                                                                                                                                                                                         X                                                                                                                                                                 
                                        X                           
                                                                    
                                                                                                          X                                                                                                                                                                                                         X                                                                                                                                                                                                        X                                                                                                                                                                                                            X                                                                                                                                                                                                                  X                                                                                                                                   
                                                                                                                                           X                                                                                                                                                              
                                                     X              
                                                                    
                                                                                                                       X                                                                                                                                                                                                         X                                                                                                                                                                 
                                        X                           
                                                                    
                                                                                                          X                                                                                                                                                                                                         X                                                                                                                                                                                                        X                                                                                                                                                                                                            X                                                                                                                                                                                                                  X                                                                                                                                   
                                                                                                                                           X                                                                                                                                                              
                                                     X              
                                                                    
                                                                                                                       X                                                                                                                                                                                                         X                                                                                                                                                                 
                                        X                           
                                                                    
                                                                                                          X                                                                                                                                                                                                         X                                                                                                                                                                                                        X                                                                                                                                                                                                            X                                                                                                                                                                                                                  X                                                                                                                                   
                                                                                                                                           X                                                                                                                                                              
                                                     X              
                                                                    
                                                                                                                       X                                                                                                                                                                                                         X                                                                                                                                                                 
                                        X                           
                                                                    
                                                                                                          X                                                                                                                                                                                                         X                                                                                                                                                                                                        X                                                                                                                                                                                                            X                                                                                                                                                                                                                  X                                                                                                                                   
                                                                                                                                           X                                                                                                                                                              
                                                     X              
                                                                    
                                                                                                                       X                                                                                                                                                                                                         X                                                                                                                                                                 
                                        X                           
                                                                    
                                                                                                          X                                                                                                                                                                                                         X                                                                                                                                                                                                        X                                                                                                                                                                                                            X                                                                                                                                                                                                                  X                                                                                                                                   
                                                                                                                                           X                                                                                                                                                              
                                                     X              
                                                                    
                                                                                                                       X                                                                                                                                                                                                         X                                                                                                                                                                 
                                        X                           
                                                                    
                                                                                                          X                                                                                                                                                                                                         X                                                                                                                                                                                                        X                                                                                                                                                                                                            X                                                                                                                                                                                                                  X                                                                                                                                   
                                                                                                                                           X                                                                                                                                                              
                                                     X              
                                                                    
                                                                                                                       X                                                                                                                                                                                                         X                                                                                                                                                                 
                                        X                           
                                                                    
                                                                                                          X                                                                                                                                                                                                         X                                                                                                                                                                                                        X                                                                                                                                                                                                            X                                                                                                                                                                                                                  X                                                                                                                                   
                                                                                                                                           X                                                                                                                                                              
                                                     X              
                                                                    
                                                                                                                       X                                                                                                                                                                                                         X                                                                                                                                                                 
                                        X                           
                                                                    
                                                                                                          X                                                                                                                                                                                                         X                                                                                                                                                                                                        X                                                                                                                                                                                                            X                                                                                                                                                                                                                  X                                                                                                                                   
                                                                                                                                           X                                                                                                                                                              
                                                     X              
                                                                    
                                                                                                                       X                                                                                                                                                                                                         X                                                                                                                                                                 
                                        X                           
                                                                    
                                                                                                          X                                                                                                                                                                                                         X                                                                                                                                                                                                        X                                                                                                                                                                                                            X                                                                                                                                                                                                                  X                                                                                                                                   
                                                                                                                                           X                                                                                                                                                              
                                                     X              
                                                                    
                                                                                                                       X                                                                                                                                                                                                         X                                                                                                                                                                 
                                        X                           
                                                                    
                                                                                                          X                                                                                                                                                                                                         X                                                                                                                                                                                                        X                                                                                                                                                                                                            X                                                                                                                                                                                                                  X                                                                                                                                   
                                                                                                                                           X                                                                                                                                                              
                                                     X              
                                                                    
                                                                                                                       X                                                                                                                                                                                                         X                                                                                                                                                                 
                                        X                           
                                                                    
                                                                                                          X                                                                                                                                                                                                         X                                                                                                                                                                                                        X                                                                                                                          legacy_password_test exfctest videotest_checksum gfxterm_menu setjmp_test cmdline_cat_test div_test xnu_uuid_test pbkdf2_test signature_test sleep_test ALL TESTS PASSED
 TEST FAILURE
 Run all loaded functional tests. functional_test Run all functional tests. all_functional_test <unknown_file> <unknown_function> %s%s assert failed: %s  <no message> %s:
  %s:%s:%u: %s
 %s: PASS
 %s: FAIL
 i%d bgra%d%d%d%d rgba%d%d%d%d Unexpected checksum %s_%dx%dx%s:%d: 0x%x 0 tests/video_checksum.c Checksum %s_%dx%dx%s:%d failed: 0x%x vs 0x%x Not enough checksums %s_%dx%dx%s: %d vs %d ctr == nchk gfxterm terminal `%s' isn't found terminal `%s' failed: %s cmdline_cat gfxterm_menu gfxmenu gfxterm_ar gfxterm_cyr gfxterm_heb gfxterm_gre gfxterm_ru gfxterm_fr gfxterm_quot gfxterm_piglatin gfxterm_ch gfxterm_red gfxterm_high videotest fake Render capture      pذ Щ            ;O
~53U            &r1nc>gU	[ƞ            ,M0m2D,            )^
lPߔb;*            J=IČUG&#'            ZZZZZ            )))))                        FFFFF            g<+g<+g<+g<+g<+            vVvVvVvVvV            d;1"l=lC1iJ            nV-I3?*Qz            Ea~%3al<bC            LfLfLfLfLf            *\*\*\*\*\            B*<B*<B*<B*<B*<                        כככככ            V,V,V,V,V,            ЭЭЭЭЭ            }2}2}2}2}2            +-+-+-+-+-            .i0wUmKW            6ln7J4Of'5%23y            V;|JVO%&P            F+ߘ.ibO%YK&            EEEEE            WWWWW            SSSSS            +(ݴ:e\}1:eS+(+(V6V6V6


#k{#k{#k{+(ݠSS+(=_j$tcj$th=_=_ewewew}}}   =_hh=_
pӟPӟPӟPjjjpp1
=*
^11nnnnnn1^^1zo&M55*Xszo&Mzo&M>>>&I$&I$&I$pppzo&M*Xs*Xszo&MX[iERR힂XX tr tr tr(m(m(m=aC=aC=aCXRRRR힂XfCrʄPUʄ-fCrfCr8( 8( 8( hېhېhې*'A*'A*'AfCr--fCr>`l8w `l^>>ʙ'ʙ'ʙ'ȲȲȲ>^^>ՇS2xGi2xGp+ՇSՇS@#@#@#			ĝnĝnĝnՇSp+p+ՇSfCrWvWvţfCrfCrZZZ۠ꕥꕥꕥfCrfCr>\>ts\>F5>>aaaZ>tZ>tZ>tŪ>F5F5>ՇSmےTm sՇSՇSƁƁƁ
J
J
Jǜo o o ՇSssՇS1掩fzg2T掩fi11nnnnnn1ii1zo&Mm'`/m'`e{zo&Mzo&M>>>&I$&I$&I$pppzo&Me{e{zo&MXIE^ޙIE{CXX tr tr tr(m(m(m=aC=aC=aCX{C{CXfCr`|ϓ:`|>fCrfCr8( 8( 8( hېhېhې*'A*'A*'AfCr>>fCr>H旅tfH旅6>>ʙ'ʙ'ʙ'ȲȲȲ>66>ՇS-Ji<-J@ՇSՇS@#@#@#			ĝnĝnĝnՇS@@ՇSfCr89~഻8BfCrfCrZZZ۠ꕥꕥꕥfCrBBfCr>z+"^m>>aaaZ>tZ>tZ>tŪ>"^m"^m>ՇS6nPT6%ՇSՇSƁƁƁ
J
J
Jǜo o o ՇS%%ՇSiɓ-<9ba-k*ii_U#_U#_U#쓔;;;iɉk*k*iEa[a4EEccc---111E44E oY"F"$ oY oYȂȂ888)u)u)u oY"$"$ oY4=̠f+4=4=uuu<.E<.E<.E4=++4=+(KSwKS{+(+(V6V6V6


#k{#k{#k{+({{+(=_vP#NU5=_=_ewewew}}}   =_U5U5=_+]U+raӟPӟPӟPjjjraraiɓ-<9ba-k*ii_U#_U#_U#쓔;;;iɉk*k*iEa[a4EEccc---111E44E oY"F"$ oY oYȂȂ888)u)u)u oY"$"$ oY+(-28S 2+(+(+J+J+Jϳ5ϳ5ϳ5^/^/^/+(8S 28S 2+(=_D=_=_aaay8y8y8W'W'W'=_=_VVo]o]o]\~\~\~̞PPP1@/@]r@/@4P11h2h2h214P4P1zo&Mh8%*n0h8%zo&Mzo&MD4D4D4/o~/o~/o~k{Vk{Vk{Vzo&Mzo&MX6+6+ybXXw7w7w7m:m:m:x6$x6$x6$XybybXfCrZW	ZW?fCrfCrMMMSSS_=H_=H_=HfCr??fCr>@W@x>>]]]4ȴ4ȴ4ȴ>xx>ՇS_5 _ՇSՇSu,u,u,$$$3a3a3aՇSՇSfCrMd.onMd.f=fCrfCr]]]MMMjwjwjwfCrf=f=fCr>){/]6){p'>>0H0H0HFIFIFI>p'p'>ՇSL
%ڗL?!ՇSՇSVkVkVk3:3:3:aLaLaLՇS?!?!ՇS1aa0aj11<5<5<50"Q0"Q0"Q3838381jj1zo&MQ~Q`zo&Mzo&Mrbrbrb?<?<?<zo&M`گ`zo&MX##/##RXX[ [ [ IIIEEEXRRXfCrDnP0vDnP0q]H3fCrfCrS+S+S+:::AT@AT@AT@fCrq]H3q]H3fCr>H4$&HřUt>>~~~$mu$mu$mu<<<>UtUt>ՇS>S'6>S'.-ՇSՇS4G4G4G釉}釉}釉}


ՇS.-.-ՇSfCrSY_>SY_jfCrfCr2$2$2$fffもAAAfCrjjfCr>-ёܯ-ёr>>aFaFaFl!l!l!>rr>ՇS>FfUwY>F@qՇSՇS~~~\%\%\%ՇS@q@qՇSiɭӤmӤ$pUiiBxBxBx$݆$݆$݆(,n(,n(,ni$pU$pUiEAX	?AXlzEEgKy gKy gKy  F F Fk+$k+$k+$ElzڿlzE oYFJUf[FJX oY oYߒߒ___ oYXX oY4=7UN7UB4=4=:::~E~E~E4G4G4G4=BB4=+(&I%-uby&I%-+(+(CCyCCyCCymXmXmX6B6B6B+(+(=_L|;L|jcd=_=_...>|>|>|`zc`zc`zc=_jcdjcd=_hhk&555VVVAl#8Al#8Al#8k&k&iɭӤmӤ$pUiiBxBxBx$݆$݆$݆(,n(,n(,ni$pU$pUiEAX	?AXlzEEgKy gKy gKy  F F Fk+$k+$k+$ElzڿlzE oYFJUf[FJX oY oYߒߒ___ oYXX oY+($}H$}fQW+(+(:-C7:-C7:-C7N2-N2-N2-+(fQWfQW+(=_+|/?A+|x;F=_=_ռOռOռO^%^%^%=_x;Fx;F=_$o4$o4˰d   3xl3xl3xl˰d˰d1\f\fһg/N11RRRе6е6е6f_f_f_1g/Ng/N1zo&MⲴM1tⲴ{pzo&Mzo&MBBBKY KY KY ҘҘҘzo&M{p{pzo&MX=}9ϖ=}99XXxxxJ]J]J]F4'F4'F4'X99XfCrm@mw)m@mfCrfCrQ0Q0Q0ҿfCrfCr>Q!Q1o{ڪ>>jjj%%%ު>1o{1o{ڪ>ՇS#	
+#	|uՇSՇSJCJCJCzzzzzzՇS|u|uՇSfCr{#.{#G2fCrfCrB=B=B=  z  z  zI'I'I'fCrG2G2fCr>)8,-)k*>> hI hI hI[[[>k*k*>ՇSϦĵϻϦ5ՇSՇSqqqԜԜԜBtVBtVBtVՇS55ՇS1\f\fһg/N11RRRе6е6е6f_f_f_1g/Ng/N1zo&MⲴM1tⲴ{pzo&Mzo&MBBBKY KY KY ҘҘҘzo&M{p{pzo&MX=}9ϖ=}99XXxxxJ]J]J]F4'F4'F4'X99XfCrm@mw)m@mfCrfCrQ0Q0Q0ҿfCrfCr>Q!Q1o{ڪ>>jjj%%%ު>1o{1o{ڪ>ՇS#	
+#	|uՇSՇSJCJCJCzzzzzzՇS|u|uՇSfCr{#.{#G2fCrfCrB=B=B=  z  z  zI'I'I'fCrG2G2fCr>)8,-)k*>> hI hI hI[[[>k*k*>ՇSϦĵϻϦ5ՇSՇSqqqԜԜԜBtVBtVBtVՇS55ՇSi4,Ջ4GY^iibbbUUUiGY^GY^iE0E&0O5EE{{{GGG)Ř)Ř)EO5O5E oY^4^ oY oYa a a ^^^ƿƿƿ oY oY4=#UPQ$#UP.4=4=^ܪ^ܪ^ܪuuuL]L]L]4=..4=+($}H$}fQW+(+(:-C7:-C7:-C7N2-N2-N2-+(fQWfQW+(=_+|/?A+|x;F=_=_ռOռOռO^%^%^%=_x;Fx;F=_$o4$o4˰d   3xl3xl3xl˰d˰di4,Ջ4GY^iibbbUUUiGY^GY^iE0E&0O5EE{{{GGG)Ř)Ř)EO5O5E oY^4^ oY oYa a a ^^^ƿƿƿ oY oY+(#oަ##oIv+(+(b|b|b|]]]xGxGxG+(IvIv+(=_6O`_.6O=_=_XXXɵHHɵHHɵHH44cW44cW44cW=_=_h`Xh T"M|"M|"M|QqQqQq T T1b/kTb/k.11222j\j\j\AAA1..1zo&MD}1!/D}@to zo&Mzo&MyוyוyוsssVVVzo&M@to @to zo&MX[uA2[uA`AXX B B BamzamzamztastastasX`A`AXfCrMRMR=F[fCrfCrG
mG
mG
mɴ4ɴ4ɴ4---fCr=F[=F[fCr>=·)ӌ=·}Ѫ>>uuuE$wE$wE$wFFF>}}Ѫ>ՇSvޜ09DvޜOcՇSՇS_NuD_NuD_NuD8	8	8	ՇSOcOcՇSfCr=,U=ʍ,fCrfCrU?U?U??x?x?xfCrʍ,ʍ,fCr>ob\ִobe"
3>>FY'FY'FY'111>e"
3e"
3>ՇS?ִ=?y4ՇSՇSN>LN>LN>LR錂R錂R7k7k7kՇSy4y4ՇS1b/kTb/k.11222j\j\j\AAA1..1zo&MD}1!/D}@to zo&Mzo&MyוyוyוsssVVVzo&M@to @to zo&MX[uA2[uA`AXX B B BamzamzamztastastasX`A`AXfCrMRMR=F[fCrfCrG
mG
mG
mɴ4ɴ4ɴ4---fCr=F[=F[fCr>=·)ӌ=·}Ѫ>>uuuE$wE$wE$wFFF>}}Ѫ>ՇSvޜ09DvޜOcՇSՇS_NuD_NuD_NuD8	8	8	ՇSOcOcՇSfCr=,U=ʍ,fCrfCrU?U?U??x?x?xfCrʍ,ʍ,fCr>ob\ִobe"
3>>FY'FY'FY'111>e"
3e"
3>ՇS?ִ=?y4ՇSՇSN>LN>LN>LR錂R錂R7k7k7kՇSy4y4ՇSigkggǔiiJJJֆ^%(^%(^%(sssiǔǔiE1t1EE
O
O
OmGmGmGkkkEE oYܼ]_ܼqM oY oY0t0t0tVtfVtfVtf$V$V$V oYqMqM oY4=NstAR1Nst#~4=4=0001114=#~#~4=+(#oަ##oIv+(+(b|b|b|]]]xGxGxG+(IvIv+(=_6O`_.6O=_=_XXXɵHHɵHHɵHH44cW44cW44cW=_=_h`Xh T"M|"M|"M|QqQqQq T TigkggǔiiJJJֆ^%(^%(^%(sssiǔǔiE1t1EE
O
O
OmGmGmGkkkEE oYܼ]_ܼqM oY oY0t0t0tVtfVtfVtf$V$V$V oYqMqM oY+(FuH!Fu,%|+(+(V6V6V6


#k{#k{#k{+(,%|,%|+(=_x_8^4xgB=_=_ewewew}}}   =_gBgB=_qsqpՅӟPӟPӟPjjjpՅpՅ1;?;?11nnnnnn11zo&Ml7ZFF|l7Z %zo&Mzo&M>>>&I$&I$&I$pppzo&M % %zo&MX'. '.NXX tr tr tr(m(m(m=aC=aC=aCXNNXfCrvzs1,5vzsafCrfCr8( 8( 8( hېhېhې*'A*'A*'AfCraafCr>@`|wp@`^>>ʙ'ʙ'ʙ'ȲȲȲ>^^>ՇSYH5Y2/&ՇSՇS@#@#@#			ĝnĝnĝnՇS2/&2/&ՇSfCro/oZ`c~fCrfCrZZZ۠ꕥꕥꕥfCrZ`c~Z`c~fCr>ف`x[ف`F>>aaaZ>tZ>tZ>tŪ>FF>ՇS0v04;ՇSՇSƁƁƁ
J
J
Jǜo o o ՇS4;4;ՇS1;?;?11nnnnnn11zo&Ml7ZFF|l7Z %zo&Mzo&M>>>&I$&I$&I$pppzo&M % %zo&MX'. '.NXX tr tr tr(m(m(m=aC=aC=aCXNNXfCrvzs1,5vzsafCrfCr8( 8( 8( hېhېhې*'A*'A*'AfCraafCr>@`|wp@`^>>ʙ'ʙ'ʙ'ȲȲȲ>^^>ՇSYH5Y2/&ՇSՇS@#@#@#			ĝnĝnĝnՇS2/&2/&ՇSfCro/oZ`c~fCrfCrZZZ۠ꕥꕥꕥfCrZ`c~Z`c~fCr>ف`x[ف`F>>aaaZ>tZ>tZ>tŪ>FF>ՇS0v04;ՇSՇSƁƁƁ
J
J
Jǜo o o ՇS4;4;ՇSi!S!SLDii_U#_U#_U#쓔;;;iɏLDLDiE'klYؚ'klnBEEccc---111EnBnBE oYƗyM
ƗyZ: oY oYȂȂ888)u)u)u oYZ:Z: oY4=X~TXsĦ4=4=uuu<.E<.E<.E4=sĦsĦ4=+(FuH!Fu,%|+(+(V6V6V6


#k{#k{#k{+(,%|,%|+(=_x_8^4xgB=_=_ewewew}}}   =_gBgB=_qsqpՅӟPӟPӟPjjjpՅpՅi!S!SLDii_U#_U#_U#쓔;;;iɏLDLDiE'klYؚ'klnBEEccc---111EnBnBE oYƗyM
ƗyZ: oY oYȂȂ888)u)u)u oYZ:Z: oY+(NFcNF$&+(+(@,E@,E@,Eddd5ma~5ma~5ma~+($&$&+(=_qs$?rqsA5I=_=_ccccccsKsKsKfXTfXTfXT=_A5IA5I=_m,Q5m,Q5ÈIeƔƔƧIWIWIWe<e<e<ÈIeÈIe1:l*:l11RXRXRX}}}!!!11zo&M_K_zo&Mzo&MmwmwmwҨ Ҩ Ҩ B9B9B9zo&Mzo&MX7P>7Pi~PXX]F]F]FXi~Pi~PXfCr4x r4xDfCrfCr222bbb (Y (Y (YfCrDDfCr>U+͵fHU+ᄪ>>NNN]~]~]~ooo낪>ᄹᄪ>ՇSe!m_e!ص5ՇSՇS l; l; l;> > > ՇSص5ص5ՇSfCr'd'r{fCrfCr?M?M?MujujujfCrr{r{fCr>m,mm5>>E&E&E&###>55>ՇS=`z=`b$ՇSՇS   555ZeZeZeՇSb$b$ՇS1:l*:l11RXRXRX}}}!!!11zo&M_K_zo&Mzo&MmwmwmwҨ Ҩ Ҩ B9B9B9zo&Mzo&MX7P>7Pi~PXX]F]F]FXi~Pi~PXfCr4x r4xDfCrfCr222bbb (Y (Y (YfCrDDfCr>U+͵fHU+ᄪ>>NNN]~]~]~ooo낪>ᄹᄪ>ՇSe!m_e!ص5ՇSՇS l; l; l;> > > ՇSص5ص5ՇSfCr'd'r{fCrfCr?M?M?MujujujfCrr{r{fCr>m,mm5>>E&E&E&###>55>ՇS=`z=`b$ՇSՇS   555ZeZeZeՇSb$b$ՇSiݷ~ݷ~y#iiɑ E E E]mػ]mػ]mػQSQSQSiy#y#iEi(i8¹i(i8lEE???2B2B2BТТТEllE oY7777t oY oYiii}}}ϰ oYtt oY4=Vr؅N
Vr;&4=4=FUFUFUh*h*h*A֓A֓A֓4=;&;&4=+(NFcNF$&+(+(@,E@,E@,Eddd5ma~5ma~5ma~+($&$&+(=_qs$?rqsA5I=_=_ccccccsKsKsKfXTfXTfXT=_A5IA5I=_m,Q5m,Q5ÈIeƔƔƧIWIWIWe<e<e<ÈIeÈIeiݷ~ݷ~y#iiɑ E E E]mػ]mػ]mػQSQSQSiy#y#iEi(i8¹i(i8lEE???2B2B2BТТТEllE oY7777t oY oYiii}}}ϰ oYtt oY+(ݑsRݑsy+(+(PY%PY%PY%eee%%%+(ݑyy+(=_ƻu*ƻu<j"O=_=_ӝӝӝ᥅333X,X,X,=_<j"O<j"O=_{|U*{|UMMTETETEgY?gY?gY?룥룥MMMM1s%b s%bfr11sgsgsg j j j1frfr1zo&M2Es2EWpzo&Mzo&Mm`m`m`7ve7ve7ve".".".zo&MWpWpzo&MXJJ%JXXҠҠҠa%oa%oa%otLtLtLX%J%JXfCrb|bdCfCrfCrfEfEfEƕWƕWƕWbbbfCrdCdCfCr>5oƐ5oٓ>>mmm555""">ٓٓ>ՇSOzO @JՇSՇSHHHՇS @J @JՇSfCr?/t?/>fCrfCrHHHfCr>>fCr>bsrPɅbs/kɪ>>ііenMenMenMiuiuiu>/k/kɪ>ՇSk<k+`ՇSՇSIjIjIjl%3l%3l%3%%%ՇS+`+`ՇS1s%b s%bfr11sgsgsg j j j1frfr1zo&M2Es2EWpzo&Mzo&Mm`m`m`7ve7ve7ve".".".zo&MWpWpzo&MXJJ%JXXҠҠҠa%oa%oa%otLtLtLX%J%JXfCrb|bdCfCrfCrfEfEfEƕWƕWƕWbbbfCrdCdCfCr>5oƐ5oٓ>>mmm555""">ٓٓ>ՇSOzO @JՇSՇSHHHՇS @J @JՇSfCr?/t?/>fCrfCrHHHfCr>>fCr>bsrPɅbs/kɪ>>ііenMenMenMiuiuiu>/k/kɪ>ՇSk<k+`ՇSՇSIjIjIjl%3l%3l%3%%%ՇS+`+`ՇSiEɢ[@sEɢ[iiZ:Z:Z:\]\]\]T
T
T
iiE?Cpy?C㺙mEEsx|sx|sx|~ڭ~ڭ~Ɯ*XƜ*XƜ*XE㺙m㺙mE oYs@|s@𾶬 oY oYm m m r er er e=== oY𾶬𾶬 oY4=F	F	vKO>4=4=PPPfff<<<4=vKO>vKO>4=+(ݑsRݑsy+(+(PY%PY%PY%eee%%%+(ݑyy+(=_ƻu*ƻu<j"O=_=_ӝӝӝ᥅333X,X,X,=_<j"O<j"O=_{|U*{|UMMTETETEgY?gY?gY?룥룥MMMMiEɢ[@sEɢ[iiZ:Z:Z:\]\]\]T
T
T
iiE?Cpy?C㺙mEEsx|sx|sx|~ڭ~ڭ~Ɯ*XƜ*XƜ*XE㺙m㺙mE oYs@|s@𾶬 oY oYm m m r er er e=== oY𾶬𾶬 oY+(ݝ35.35.FN+(+(`ƒ`ƒ`ƒttt+(FNFN+(=_7\&7\͍=_=_ǡǡǡܱܱL8L8L8=_͍͍=_8K8ߣߣߐNNNRjRjRjۖ1*d*͉I?11,GF,GF,GFYYY_H_H_H1͉I?͉I?1zo&Moe̜`zo&Mzo&Mr>r>r>ͨI`ͨI`ͨI`]p]p]pzo&M``zo&MX$xǦXX@@@###݂XǦǦXfCr*tHfCrfCrMMMCCC-j6-j6-j6fCrHHfCr>#UT6	#UTχ%>>C=C=C=s.s.s.>χ%χ%>ՇS7, bՇSՇS@́@́@́H_H_H_ڀ̃ڀ̃ڀՇS b bՇSfCrچx]Fچ3fCrfCr'`'`'`л'л'л'JJJfCr33fCr>:Ɖq-:Ɖť>>?t?t?tDBоDBоDBЪ>>ՇSEA7J|EAXJՇSՇS8p8p8p)F)F)FbbbՇSXJXJՇS1*d*͉I?11,GF,GF,GFYYY_H_H_H1͉I?͉I?1zo&Moe̜`zo&Mzo&Mr>r>r>ͨI`ͨI`ͨI`]p]p]pzo&M``zo&MX$xǦXX@@@###݂XǦǦXfCr*tHfCrfCrMMMCCC-j6-j6-j6fCrHHfCr>#UT6	#UTχ%>>C=C=C=s.s.s.>χ%χ%>ՇS7, bՇSՇS@́@́@́H_H_H_ڀ̃ڀ̃ڀՇS b bՇSfCrچx]Fچ3fCrfCr'`'`'`л'л'л'JJJfCr33fCr>:Ɖq-:Ɖť>>?t?t?tDBоDBоDBЪ>>ՇSEA7J|EAXJՇSՇS8p8p8p)F)F)FbbbՇSXJXJՇSip!iiL0Z L0Z L0Z ^^^iɁρiE&1&Я&oEE[[[ϺpϺpϺpXXXEooE oYQBQڧ oY oYx6*x6*x6*TTT/(/(/( oYڧڧ oY4=.Hŵ.HŵCEK4=4=ԲԲsss3JC3JC3JC4=CEKCEK4=+(ݝ35.35.FN+(+(`ƒ`ƒ`ƒttt+(FNFN+(=_7\&7\͍=_=_ǡǡǡܱܱL8L8L8=_͍͍=_8K8ߣߣߐNNNRjRjRjۖip!iiL0Z L0Z L0Z ^^^iɁρiE&1&Я&oEE[[[ϺpϺpϺpXXXEooE oYQBQڧ oY oYx6*x6*x6*TTT/(/(/( oYڧڧ oY+( OoY֒ Oj<+(+(fff---+(j<j<+(=_=';='=_=_UMUMUMM]M]M]vvv=_=_0'd ӑ0'?wYQ\YQ\YQ\j!j!j!ͨ"TQ"TQ"TQ?w?w1t	zt	䘓11/,}/,}/,}2t2t2t\#\#\#11zo&M~ϘJ~Ϯzo&Mzo&MUUU~N~N~Nkkkzo&Mzo&MX3*$3*5*XXAdAdAduSuSuS` ` ` X5*5*XfCrۃ٣ۃPQ>fCrfCr===L~dL~dL~dfCrPQ>PQ>fCr>LNLUz>>CCCsss>UzUz>ՇSjtCJjtSՇSՇSցIpցIpցIp···\=\=\=ՇSSSՇSfCrIjFIqfCrfCrMMM4Wt4Wt4Wt~pZ~pZ~pZfCrqqfCr>~_{~_>>˰z˰z˰z8`(8`(8`(˰˰˰>__>ՇSXSXSѮՇSՇS888ja'ja'ja'MMMՇSѮѮՇS1t	zt	䘓11/,}/,}/,}2t2t2t\#\#\#11zo&M~ϘJ~Ϯzo&Mzo&MUUU~N~N~Nkkkzo&Mzo&MX3*$3*5*XXAdAdAduSuSuS` ` ` X5*5*XfCrۃ٣ۃPQ>fCrfCr===L~dL~dL~dfCrPQ>PQ>fCr>LNLUz>>CCCsss>UzUz>ՇSjtCJjtSՇSՇSցIpցIpցIp···\=\=\=ՇSSSՇSfCrIjFIqfCrfCrMMM4Wt4Wt4Wt~pZ~pZ~pZfCrqqfCr>~_{~_>>˰z˰z˰z8`(8`(8`(˰˰˰>__>ՇSXSXSѮՇSՇS888ja'ja'ja'MMMՇSѮѮՇSi8x2:8Uii;s;s;s{{{UUUiɇUևUiEؖUgؖU]{EEM	M	M	@@@[[[E]{]{E oY6噸06 oY oY   `mH`mH`mHPj{Pj{Pj{ oY oY4=Um'KUm8X4=4=222ܚܚܳ4444=8X8X4=+( OoY֒ Oj<+(+(fff---+(j<j<+(=_=';='=_=_UMUMUMM]M]M]vvv=_=_0'd ӑ0'?wYQ\YQ\YQ\j!j!j!ͨ"TQ"TQ"TQ?w?wi8x2:8Uii;s;s;s{{{UUUiɇUևUiEؖUgؖU]{EEM	M	M	@@@[[[E]{]{E oY6噸06 oY oY   `mH`mH`mHPj{Pj{Pj{ oY oY+(Uª_Uª?
+(+(y+_y+_y+_x~x~x~fdfdfd+(?
?
+(=_:墘E=_=_				M	M	M5"R5"R5"R=_EE=_nn[}!nnRWRWRWEEEZZZ1i0i	W11{ O{ O{ O1	W	W1zo&M$	$ezo&Mzo&M1wԎ1wԎ1wԎlhlhlh888zo&Meezo&MXC}zCuXXwiwiwi{{{XXXXuuXfCr\,@\%fCrfCrTTT~&>~&>~&>fCr%%fCr>pPpƪ>>]:]:]:m)/m)/m)/xΫxΫxΪ>ƪ>ՇSCJCCJ|ץՇSՇSqqq___{<{<{<ՇS|ץ|ץՇSfCr:38G:3]O"fCrfCrqFqFqF===###fCr]O"]O"fCr>o6oP>>Y>Y>Y>բբբ@"f@"f@"f>PP>ՇSp(pӜՇSՇS666ooo$&$&$&ՇSӜӜՇS1i0i	W11{ O{ O{ O1	W	W1zo&M$	$ezo&Mzo&M1wԎ1wԎ1wԎlhlhlh888zo&Meezo&MXC}zCuXXwiwiwi{{{XXXXuuXfCr\,@\%fCrfCrTTT~&>~&>~&>fCr%%fCr>pPpƪ>>]:]:]:m)/m)/m)/xΫxΫxΪ>ƪ>ՇSCJCCJ|ץՇSՇSqqq___{<{<{<ՇS|ץ|ץՇSfCr:38G:3]O"fCrfCrqFqFqF===###fCr]O"]O"fCr>o6oP>>Y>Y>Y>բբբ@"f@"f@"f>PP>ՇSp(pӜՇSՇS666ooo$&$&$&ՇSӜӜՇSiɅS룏SDiiGKPGKPGKPaaa%7F%7F%7FiDDiEHSmHfEEYYYTY TY TY EffE oYx b6󨝗x b6?u oY oYueueueGXGXGX oY?u?u oY4=/4=4=^Mi^Mi^MicycycyCCC4=4=+(Uª_Uª?
+(+(y+_y+_y+_x~x~x~fdfdfd+(?
?
+(=_:墘E=_=_				M	M	M5"R5"R5"R=_EE=_nn[}!nnRWRWRWEEEZZZiɅS룏SDiiGKPGKPGKPaaa%7F%7F%7FiDDiEHSmHfEEYYYTY TY TY EffE oYx b6󨝗x b6?u oY oYueueueGXGXGX oY?u?u oY+(gAHg+(+(c c c ,._,._,._M.M.M.+(ݮ+(=_~)*r'O~)*rH=_=_iii<<<┥#┥#┥#=_HH=_UCUC҅JJJ(((cGcGcG҅҅1汐ʫ汐[E11>>>   1+1+1+1[E[E1zo&MUyUQyzo&Mzo&M
o
o
oHVHVHVzo&MQyQyzo&MXGj>GjM
XXܩܩܩ\+f\+f\+fIBIBIBXM
M
XfCrYcROYcofCrfCr+&+&+&ضHضHضHĶĶĶfCroofCr>sCwsC扈>>nWnWnW}}}-,-,-,>扈扈>ՇSClYnC_~ՇSՇS
j
j
jsEsEsEm'Em'Em'EՇS_~_~ՇSfCrLw%:t=Lw%4fCrfCr|D|D|DAEAEAEknknknfCr44fCr>T#TAq>>lVĀlVĀlVĀwww>AqAq>ՇSh;h;vՇSՇS]|]|]|p%Rp%Rp%RՇSvvՇS1汐ʫ汐[E11>>>   1+1+1+1[E[E1zo&MUyUQyzo&Mzo&M
o
o
oHVHVHVzo&MQyQyzo&MXGj>GjM
XXܩܩܩ\+f\+f\+fIBIBIBXM
M
XfCrYcROYcofCrfCr+&+&+&ضHضHضHĶĶĶfCroofCr>sCwsC扈>>nWnWnW}}}-,-,-,>扈扈>ՇSClYnC_~ՇSՇS
j
j
jsEsEsEm'Em'Em'EՇS_~_~ՇSfCrLw%:t=Lw%4fCrfCr|D|D|DAEAEAEknknknfCr44fCr>T#TAq>>lVĀlVĀlVĀwww>AqAq>ՇSh;h;vՇSՇS]|]|]|p%Rp%Rp%RՇSvvՇSic	ec	diiɇKjCKjCKjCG|<G|<G|<iddiE+6ߍ+DEEddd̽iBjiBjiBj֋֋֋EDDE oY>U>yoC oY oYg^g^g^   YYY oYyoCyoC oY4=yyt?A4=4=ƝƝƝSSSz6
z6
z6
4=t?At?A4=+(gAHg+(+(c c c ,._,._,._M.M.M.+(ݮ+(=_~)*r'O~)*rH=_=_iii<<<┥#┥#┥#=_HH=_UCUC҅JJJ(((cGcGcG҅҅ic	ec	diiɇKjCKjCKjCG|<G|<G|<iddiE+6ߍ+DEEddd̽iBjiBjiBj֋֋֋EDDE oY>U>yoC oY oYg^g^g^   YYY oYyoCyoC oY3J
/^ah
/?a9Q9Q9Q'h'h'h3J        {Z*)=f9 
*)=f?b
b
b
eee&&&{Z??        B7̷7yQ̷;ك{ڕ{ڕ{ڕ,~,~,~bgbgbgB7        1h԰nIbbb\_\_\_1԰԰        zo&MC0gC,HcyyyV!V!V!eseseszo&M,H,H        XEuE{YT4W cScScS]W]W]WX{Y{Y        fCr@ho"d@ho-1q020202[[[!!!fCr--        > !s/ !I"Aa;;; }&h }&h }&h^M^M^M>I"I"        ՇSm6@C|F4/M4/M4/M
m7
m7
m7.sf.sf.sfՇS@C@C        fCrNZYJNѡL*±±±{4{4{4fCr        >W	b3ԬWxF5w=x)\)\)\範ددLq,Lq,Lq,>xF5xF5        ՇS[Gw-[G+X1`w`w`wP`P`P`EEEՇS++        1ǗQ!Σ0%-%-%-ˀˀˀ4ʭ4ʭ4ʭ1!Σ!Σ        zo&M+KjDt+Kjޭ&]+&]+&]+yyyzo&M        X+`+`zgx	}1^y1^y1^y0
0
0
q9q9q9꾂Xzgzg        fCrBțpBMLqȜNȜNȜNrțrțrț
ɺ
ɺ
ɺfCrMM        >RLueRBYt="+Յ"+Յ"+ժ>BYtBYt        ՇSãe⭎ãGኟ!AV!AV!AV,,,;};};}ՇSGG        fCr8:h8m_/16>6>6>eeefCrm_m_        >8l80+=56ScTScTScTZ
Z
Z
;b;b;b>00        ՇSC5l9C5,|:::$z-$z-$z-MMMՇS        i(27Fԗ~(2~(2~(2gؖMgؖMgؖMi77        E_:4_:SUצ=Iئ=Iئ=IجESS         oYk>rkJG7B3j3j3jJe6Je6Je6_I_I_I oYJGJG        T9kǑgzgzgzC4C4C4gggTkk        3J0ցIw0|iDi*Y*Y*Yn=n=n=nnn3J|iD|iD        {Z~l5~l< a%遊VՐVՐVՐӠӠ{Z< a< a        B7|[|;A(xt$b$b$bXoXoXo=!=!=!B7|;A(|;A(        i_~N_~=3E$y3E$y3E$yOOOiɘ==        EXƄ}X/m[[[QQQ			E//         oY}(j=K}(}&.c	+c	+c	+sososo oY}}        +(9 ?<x9 ?SL+(+(V6V6V6


#k{#k{#k{+(SLSL+(=_e:}ve:@1 =_=_ewewew}}}   =_@1 @1 =_¼":¼"RfrӟPӟPӟPjjjRfrRfr1]#!B]#!9\׽11nnnnnn19\׽9\׽1zo&M'l'5zo&Mzo&M>>>&I$&I$&I$pppzo&M5ۥ5zo&MXk9k"XX tr tr tr(m(m(m=aC=aC=aCX""XfCrs?+4ms?+fCrfCr8( 8( 8( hېhېhې*'A*'A*'AfCrfCr>5	75"Q>>ʙ'ʙ'ʙ'ȲȲȲ>"Q"Q>ՇSXlG}XlaՇSՇS@#@#@#			ĝnĝnĝnՇSaaՇSfCr
]Ҏ
ۿfCrfCrZZZ۠ꕥꕥꕥfCrۿۿfCr>[H`յ[*3">>aaaZ>tZ>tZ>tŪ>*3"*3">ՇSgg
%lՇSՇSƁƁƁ
J
J
Jǜo o o ՇS
%l
%lՇS1]#!B]#!9\׽11nnnnnn19\׽9\׽1zo&M'l'5zo&Mzo&M>>>&I$&I$&I$pppzo&M5ۥ5zo&MXk9k"XX tr tr tr(m(m(m=aC=aC=aCX""XfCrs?+4ms?+fCrfCr8( 8( 8( hېhېhې*'A*'A*'AfCrfCr>5	75"Q>>ʙ'ʙ'ʙ'ȲȲȲ>"Q"Q>ՇSXlG}XlaՇSՇS@#@#@#			ĝnĝnĝnՇSaaՇSfCr
]Ҏ
ۿfCrfCrZZZ۠ꕥꕥꕥfCrۿۿfCr>[H`յ[*3">>aaaZ>tZ>tZ>tŪ>*3"*3">ՇSgg
%lՇSՇSƁƁƁ
J
J
Jǜo o o ՇS
%l
%lՇSi];5oy];5ټ,hii_U#_U#_U#쓔;;;iټ,hټ,hiEv՘|#v	EEccc---111E		E oYiz)di.> oY oYȂȂ888)u)u)u oY.>.> oY4=Js\J~4=4=uuu<.E<.E<.E4=~~4=+(9 ?<x9 ?SL+(+(V6V6V6


#k{#k{#k{+(SLSL+(=_e:}ve:@1 =_=_ewewew}}}   =_@1 @1 =_¼":¼"RfrӟPӟPӟPjjjRfrRfri];5oy];5ټ,hii_U#_U#_U#쓔;;;iټ,hټ,hiEv՘|#v	EEccc---111E		E oYiz)di.> oY oYȂȂ888)u)u)u oY.>.> oY+(;;؋pp;a;a88MMYYڋππnnjj-#p-#pT}~T}~II\54\54̭%̭%5lm5lmII񈁴VUVU[WvQ||            =_A7A7DVǗDVǺҺNN  BPBP.+.+o|o|ononH9H9!S!Sw'w'77YUYU77dbdbFwFwwUHwUHY FY F
I<M#M#            SvhSvh'';;ʦ%ʦ%ttHyGHyGY$Y$䮵+ w+ wBtBtoSoSAAv!v!(7a(7aXJXJ-r-r'&_'&_|w|wnhnhI\I\'r}/l}/l            1]}]}jBjBv-~v-~ZZk>k>` ` 1Կ1Ԧ
sM
sM((r6mr6meem|m|ߺPOPOLWLW~+~+RdRd__yJ<Nll            zo&M愭愭_Oj_OjPLMPLMl#Tl#TJ[
J[
Ȩ۩Ȩ۩L+L+ B B11xx}9'}9'A^ HA^ H
U
Ucscs*H*H__~O~O؟t؟t\ΓMT6T6            XKzKzY/Y/P:P:_T_T͇88]4]4ƒƒcM*cM*IIɅ-s$-s$2i2i99Kn0Kn0	o^	o^N'N'vvݟݟ
@
@w7!s!s            fCriiÏ"2"2xxSQSQ""gg䮪xx'b'b撸

||.N.N/Ś/Śvg{~vg{~ w! w!|O|O}}@T@TZ_Q'GAGA            >};ȕ};ȕʸʸpdpd^Y^YccǼouoouoXbhXbh||ZZ,b,bIIb;b;u-u-j^%j^%ّ3ّ34w4wwwn`O`O            ՇSddj3j3hhtt52tk52tkIIפyפyKSKS^G^Gaa??ّ--𺞋x? x? $lׯ$lׯEE
~
~]dzJZJZ            fCr)5)5;&;&╜CCɶ9ɶ9u"u"kkiis	Ws	W[?[?{{KX:KX:L-L-NcNcAأA/z@23*j9*j9            >68682{2{bTbTbb⣬ааtt 8& 8&WW_܀_pwUpwU``]^]^22ɁɁggdfdfLKLKsڬsڬYa5Ya5E%to(ZT:T:            ՇSKKHUHUFFYhYh V V"bl"blqCqC)ɶ)ȿSȿS  8u8u@e@e)d)d*"*"??GGkkm}	m}	=d[z+[z+            1]}]}jBjBv-~v-~ZZk>k>` ` 1Կ1Ԧ
sM
sM((r6mr6meem|m|ߺPOPOLWLW~+~+RdRd__yJ<Nll            zo&M愭愭_Oj_OjPLMPLMl#Tl#TJ[
J[
Ȩ۩Ȩ۩L+L+ B B11xx}9'}9'A^ HA^ H
U
Ucscs*H*H__~O~O؟t؟t\ΓMT6T6            XKzKzY/Y/P:P:_T_T͇88]4]4ƒƒcM*cM*IIɅ-s$-s$2i2i99Kn0Kn0	o^	o^N'N'vvݟݟ
@
@w7!s!s            fCriiÏ"2"2xxSQSQ""gg䮪xx'b'b撸

||.N.N/Ś/Śvg{~vg{~ w! w!|O|O}}@T@TZ_Q'GAGA            >};ȕ};ȕʸʸpdpd^Y^YccǼouoouoXbhXbh||ZZ,b,bIIb;b;u-u-j^%j^%ّ3ّ34w4wwwn`O`O            ՇSddj3j3hhtt52tk52tkIIפyפyKSKS^G^Gaa??ّ--𺞋x? x? $lׯ$lׯEE
~
~]dzJZJZ            fCr)5)5;&;&╜CCɶ9ɶ9u"u"kkiis	Ws	W[?[?{{KX:KX:L-L-NcNcAأA/z@23*j9*j9            >68682{2{bTbTbb⣬ааtt 8& 8&WW_܀_pwUpwU``]^]^22ɁɁggdfdfLKLKsڬsڬYa5Ya5E%to(ZT:T:            ՇSKKHUHUFFYhYh V V"bl"blqCqC)ɶ)ȿSȿS  8u8u@e@e)d)d*"*"??GGkkm}	m}	=d[z+[z+            i9"P9"PlÂlÂ c ckk((ɬ{vu{vu..QQFF#V#VPPaXl=aXl=#$P#$P),),MIMI%EP%EPCCJ"!J"!˔˔dxE۩8HLHL            EIgTIgTvӕvӕ59w59w6h)6h)++	7	7ţ&ţ&CRCRھ8ھ8##%%/	/	WWijijٙBBZcZc/4/4|F|FƟƟ+]+]#~님             oYh}h}[Z[Zw1uyw1uy[[spspmm==b,b,{{إإώώӅQQgmgm˂UU[[ŞŞ??ҥҥ/q/q3I3IуIKYY            4=	(}	(}$BR$BRRRj'cj'cpgpgxMndxMnd;;ZZ l lHfHfHH_&_&l"l""m~"m~
բ
բ//ccCQ`hII            +(;;؋pp;a;a88MMYYڋππnnjj-#p-#pT}~T}~II\54\54̭%̭%5lm5lmII񈁴VUVU[WvQ||            =_A7A7DVǗDVǺҺNN  BPBP.+.+o|o|ononH9H9!S!Sw'w'77YUYU77dbdbFwFwwUHwUHY FY F
I<M#M#            SvhSvh'';;ʦ%ʦ%ttHyGHyGY$Y$䮵+ w+ wBtBtoSoSAAv!v!(7a(7aXJXJ-r-r'&_'&_|w|wnhnhI\I\'r}/l}/l            i9"P9"PlÂlÂ c ckk((ɬ{vu{vu..QQFF#V#VPPaXl=aXl=#$P#$P),),MIMI%EP%EPCCJ"!J"!˔˔dxE۩8HLHL            EIgTIgTvӕvӕ59w59w6h)6h)++	7	7ţ&ţ&CRCRھ8ھ8##%%/	/	WWijijٙBBZcZc/4/4|F|FƟƟ+]+]#~님             oYh}h}[Z[Zw1uyw1uy[[spspmm==b,b,{{إإώώӅQQgmgm˂UU[[ŞŞ??ҥҥ/q/q3I3IуIKYY                                                                                 X                                                                                                                                                     
                                                 X                                                                                                                          
               (                                                                                                                   X                                                                                                                                                                    
                                   X           @                
                                                                
                                                                                                 X           @                                                                                                                                                                                X           `	                                                                                                                                                           
                      X           @                             
                                                                
                                                                                    X           @                                                                                                                                                                                X           `	                                                                                                                               
                                                 X                                                                                                                                                                                                                                                                                                                                                                                                                                                                            LICENSE=GPLv3+  LICENSE=GPLv3+  LICENSE=GPLv3+          btrfs extcmd video video_fb functional_test                                                                                                                          	                            o                                                    
                                                             4                 J                      ]                      x     _      &                                       v                                                                                             (                     >                 _                     o                                                                                       	                                                            y                                      
             2                     @                     Z                     q                     |                                                                     Y                                                	                     #                     /                     G                     V                 m                                                    4	                              	                                                                  \                            6                     T                     m                         O      x                 Z                                                                                                                *                >                     Y                     n                     }    P       P                                                                                                        grub_mod_init grub_mod_fini grub_video_fb_map_rgba grub_test_use_gfxterm grub_video_fb_fini grub_video_get_blit_format grub_test_run grub_errmsg grub_terminal_input_fake_sequence_end grub_video_fb_get_region grub_video_fb_create_render_target_from_pointer grub_video_fb_unmap_color grub_dl_load grub_video_fb_map_rgb grub_video_checksum_get_modename grub_xvasprintf grub_video_fb_scroll grub_xasprintf grub_video_fb_fill_rect grub_memmove grub_test_list grub_video_fb_blit_bitmap grub_strdup grub_test_nonzero grub_video_fb_get_viewport grub_video_checksum_end grub_snprintf grub_video_adapter_active grub_unregister_extcmd grub_errno grub_memset grub_term_outputs_disabled grub_terminal_input_fake_sequence grub_video_capture_start grub_term_inputs grub_video_fb_get_palette grub_video_fb_set_palette grub_printf grub_video_fb_map_color grub_getcrc32c grub_video_capture_end grub_video_fb_init grub_video_fb_get_area_status grub_test_video_modes grub_term_outputs grub_video_capture_refresh_cb grub_strcmp grub_malloc grub_test_register grub_video_fb_set_active_render_target grub_video_fb_set_area_status grub_video_fb_set_region grub_video_fb_delete_render_target grub_test_use_gfxterm_end grub_test_unregister grub_list_remove grub_free grub_named_list_find grub_video_fb_get_active_render_target grub_video_get_info grub_video_checksum grub_video_fb_set_viewport grub_register_extcmd grub_list_push checksum_table grub_video_fb_get_info grub_video_capture_get_framebuffer grub_video_fb_blit_render_target grub_test_assert_helper grub_video_fb_create_render_target                                                                      +          &           5                    G                    S             1       _             >       k             J       w             [                    d                    r                    ~                                                                              .                                                                       +         &           L         &           c                   m         .           y                            G                                                                                                                                                                    	         %                    8           A                  O                    h         A           y            &               A                                           9                          
         A           j                                                +                                  H                             8            +      B            >                                                    H                    8                                                            H                                        B           1         @           ;         A           c            Q      o         .                       ^                                     &                                    c                                     r               A           $            |      3                   O                               h                #                       x                                                        `                                                                                                      #                  3                   D                   Q         K           f            `       p            d                0                                                                                                                                        8                                  M                       d                   `                          G                    T                  ^                  m            8       w                           M                       d                   `                                                                         D                    7                       `       	         I   <       	                     	                   *	                   :	                   \	            `       n	            d       	            h       	            x       	            l       	            p       	                   	                   	                   	                   
                   
                   $
                   2
                   D
         I           S
                   a
                   
                   
            N      
         6           
                   
                   
                   
                    
                  
            >      
                           M                       `       /                    H         A           T                   t         6                    5                       @                   @                   J               7                       @                   @                 (           
         7                       @                   @       -            @       =            J      G            R      Q                  g            J      w            @                   @                                       l                                    J                                                     M                    5                       P                   @                   H       (         5           2            8       Q            8       g            @       w            H                   @                   P                5                       P                   H                                                                                                      &         +           0                   :                   L         A           [         8           q                               P               +                                                                                                                                       +                                       A                              -                   =                   O         6           k                  |         :                       P               '                       P               2                                           p                  d               8                                      &           -                  7                    K                  X         :           o         -                    $                       @                                  D                       @                                 $                                                        =                                      A                                ,            @      9         $           P            @      c                   m                   P                                P                                                               0            Ж      @                                                                  P                                           0                  p            Г                                                                        P                         `                  p                              А                                                             P            P      `                                                                  Ѝ                         @                  P                              P                                                            0            Њ      @                                                                  P                                           0                  p            Ї                                                                        P                         `                  p                              Є                         	                  	                  P	            P      `	                  	                  	                  	            Ё       
                  @
                  P
                  
            0      
                  
                  
                  0                  @                              @                                                                               0                  p            P                                                                         ~                         `            `~      p                              ~                                     }                        P            p}      `                               }                                    |                         @            |      P                              0|                                    {                        0            {      @                              @{                                    z                                     z      0                  p            Pz                                     z                                    y                         `            `y      p                              y                                     x                        P            px      `                               x                                    w                         @            w      P                              0w                                    v                        0            v      @                              @v                                    u                                     u      0                  p            Pu                                     u                                    t                         `            `t      p                              t                                     s                        P            ps      `                               s                                    r                         @            r      P                              0r                                    q                        0            q      @                              @q                                    p                                     p      0                  p            Pp                                     p                                    o                         `            `o      p                              o                                     n                        P            pn      `                               n                                    m                         @            m      P                              0m                                    l                        0            l      @                              @l                                    k                                      k      0                   p             Pk                                       k                         !            j       !                  `!            `j      p!                  !            j      !                   "            i      "                  P"            pi      `"                  "             i      "                  "            h       #                  @#            h      P#                  #            0h      #                  #            g      #                  0$            g      @$                  $            @g      $                  $            f      $                   %            f      0%                  p%            Pf      %                  %             f      %                  &            e       &                  `&            `e      p&                  &            e      &                   '            d      '                  P'            pd      `'                  '             d      '                  '            c       (                  @(            c      P(                  (            0c      (                  (            b      (                  0)            b      @)                  )            @b      )                  )            a      )                   *            a      0*                  p*            Pa      *                  *             a      *                  +            `       +                  `+            ``      p+                  +            `      +                   ,            _      ,                  P,            p_      `,                  ,             _      ,                  ,            ^       -                  @-            ^      P-                  -            0^      -                  -            ]      -                  0.            ]      @.                  .            @]      .                  .            \      .                   /            \      0/                  p/            P\      /                  /             \      /                  0            [       0                  `0            `[      p0                  0            [      0                   1            Z      1                  P1            pZ      `1                  1             Z      1                  1            Y       2                  @2            Y      P2                  2            0Y      2                  2            X      2                  03            X      @3                  3            @X      3                  3            W      3                   4            W      04                  p4            PW      4                  4             W      4                  5            V       5                  `5            `V      p5                  5            V      5                   6            U      6                  P6            pU      `6                  6             U      6                  6            T       7                  @7            T      P7                  7            0T      7                  7            S      7                  08            S      @8                  8            @S      8                  8            R      8                   9            R      09                  p9            PR      9                  9             R      9                  :            Q       :                  `:            `Q      p:                  :            Q      :                   ;            P      ;                  P;            pP      `;                  ;             P      ;                  ;            O       <                  @<            O      P<                  <            0O      <                  <            N      <                  0=            N      @=                  =            @N      =                  =            M      =                   >            M      0>                  p>            PM      >                  >             M      >                  ?            L       ?                  `?            `L      p?                  ?            L      ?                   @            K      @                  P@            pK      `@                  @             K      @                  @            J       A                  @A            J      PA                  A            0J      A                  A            I      A                  0B            I      @B                  B            @I      B                  B            H      B                   C            H      0C                  pC            PH      C                  C             H      C                  D            G       D                  `D            `G      pD                  D            G      D                   E            F      E                  PE            pF      `E                  E             F      E                  E            E       F                  @F            E      PF                  F            0E      F                  F            D      F                  0G            D      @G                  G            @D      G                  G            C      G                   H            C      0H                  pH            PC      H                  H             C      H                  I            B       I                  `I            `B      pI                  I            B      I                   J            A      J                  PJ            pA      `J                  J             A      J                  J            @       K                  @K            @      PK                  K            0@      K                  K            ?      K                  0L            ?      @L                  L            @?      L                  L            >      L                   M            >      0M                  pM            P>      M                  M             >      M                  N            =       N                  `N            `=      pN                  N            =      N                   O            <      O                  PO            p<      `O                  O             <      O                  O            ;       P                  @P            ;      PP                  P            0;      P                  P            :      P                  0Q            :      @Q                  Q            @:      Q                  Q            9      Q                   R            9      0R                  pR            P9      R                  R             9      R                  S            8       S                  `S            `8      pS                  S            8      S                   T            7      T                  PT            p7      `T                  T             7      T                  T            6       U                  @U            6      PU                  U            06      U                  U            5      U                  0V            5      @V                  V            @5      V                  V            4      V                   W            4      0W                  pW            P4      W                  W             4      W                  X            3       X                  `X            `3      pX                  X            3      X                   Y            2      Y                  PY            p2      `Y                  Y             2      Y                  Y            1       Z                  @Z            1      PZ                  Z            01      Z                  Z            0      Z                  0[            0      @[                  [            @0      [                  [            /      [                   \            /      0\                  p\            P/      \                  \             /      \                  ]            .       ]                  `]            `.      p]                  ]            .      ]                   ^            -      ^                  P^            p-      `^                  ^             -      ^                  ^            ,       _                  @_            ,      P_                  _            0,      _                  _            +      _                  0`            +      @`                  `            @+      `                  `            *      `                   a            *      0a                  pa            P*      a                  a             *      a                  b            )       b                  `b            `)      pb                  b            )      b                   c            (      c                  Pc            p(      `c                  c             (      c                  c            '       d                  @d            '      Pd                  d            0'      d                  d            &      d                  0e            &      @e                  e            @&      e                  e            %      e                   f            %      0f                  pf            P%      f                  f             %      f                  g            $       g                  `g            `$      pg                  g            $      g                   h            #      h                  Ph            p#      `h                  h             #      h                  h            "       i                  @i            "      Pi                  i            0"      i                  i            !      i                  0j            !      @j                  j            @!      j                  j                   j            	       k                   0k            	      pk            P       k            	      k                    k            	      l                   l            	      `l            `      pl            	      l                  l            	       m                  m            	      Pm            p      `m            	      m                   m            	      m                   n            	      @n                  Pn            	      n            0      n            	      n                  n            	      0o                  @o            	      o            @      o            	      o                  o            	       p                  0p            	      pp            P      p            	      p                   p            	      q                   q            	      `q            `      pq            	      q                  q            	       r                  r            	      Pr            p      `r            	      r                   r            	      r                   s            	      @s                  Ps            	      s            0      s            	      s                  s            	      0t                  @t            	      t            @      t                  t                  t                   u                  0u                  pu            P      u                  u                   u                  v                   v                  `v            `      pv                  v                  v                   w                  w                  Pw            p      `w                  w                   w                  w                   x                  @x                  Px                  x            0      x                  x                  x                  0y                  @y                  y            @      y                  y                  y                   z                  0z                  pz            P      z                  z                   z                  {                   {                  `{            `      p{                  {                  {                   |                  |                  P|            p      `|                  |                   |                  |                   }                  @}                  P}                  }            0      }                  }                  }                  0~                  @~                   ~            @      ~                   ~                  ~                                      0                   p            P                                                                                                     `            `      p                                                                     
                         P            p
      `                                
                                     	                          @            	      P                               0	                                                              0                  @                               @                         Ѓ                                                        0                   p            P                                            Є                                                         `            `      p                                                                                              P            p      `                                                                                               @                  P                               0                                                       -      0                  @            -                                    -      Ј                              -                   `      0            -      p            @                  -                         Љ            -                                      -      `                  p            -                                    -                                     -      P                  `            -                  `                  -                  @                   -      @                   P            -                                     -                                    -      0                  @            -                                    -      Ѝ                              -                   `      0            -      p            @                  -                         Ў            -                                      -      `                   p            -                                     -                                      -      P                   `            -                  `                   -                  @                    -      @                    P            -                          `            7      x                              <                  f      Ȣ         J           آ         -                    ,                    F                    !                    <                                         ;                    3                    /                                (                    0                    8                    @                    H         L           P                    X            M      `         N           h         =           p            i      x         C            .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                           @                                          @               PX     H                          +                                                        &      @               p     0W                          3      2               p      K                            G                                                        B      @                    p                          M                     XJ     /                              ]                     J                                  b                      J                                   k                      J                                                         J     h                          	                      (R     "                                                   8     t                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/gcry_seed.mod                                                                  0000600 0001750 0001750 00000036210 13417732100 0015574 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    9          @     @   AWH        I        AVAUATUSDBDJZDZDoxDg|AAA1BAA1BA1BA1BA1BA1B	1B1B
1BA1A1BA1BA1E1E1LAA,3,DH        AMc3,H        B3,ALEE$F3$EAAH        EMcF3$F3$E,,LEH        A,B3,EAAEMcB3,B3,DopA1AotE1E1D1D1HDE$F3$AAH        EHcF3$D3$ELEH        A,B3,EAAEMcB3,B3,ALEE,F3,EAAH        EMcF3,F3,DghDE11݋_lA1D1D1DEF3AAH        EHcF3D3ELEH        AB3EAAEMcB3B3ALEE4F34EAAH        EMcF34F34D_`DE1D1DWdA1E1E1LEEF3EAAH        EMcF3F3GLEE$F3$EAAH        EMcF3$F3$ELEEF3EAAH        EMcF3D_XF3DO\EE1A1E1E1E1LAED3DAH        @McD3F3GLEH        A,B3,EAAEMcB3,B3,FL LEEF3EAAH        EMcF3F3DE1DWP1݋_TA1D1D1DEF3AAH        EHcF3D3C
DE<F3<AAH        EHcF3<D3<ELEH        AB3EAAEMcB3B3DOHA1Aߋ_LE1E1D1D1DEF3AAH        EHcF3D3CDE$F3$AAH        EHcF3$D3$CDEF3AAH        EHcF3D3_DE1EDW@A1D1E1D1DEF3AAEHcF3D3ELEH        AB3EAAEMcB3B3ALEH        A,B3,EAAEMcB3,DW8B3,DO<A1D1E1A1E1LAED3DAH        @McD3F3GLEH        E<F3<EAAEMcF3<F3<ELEH        EF3EAAEMcF3F3D_0E1EDW4E1E1E1E1LAED3DAH        @McD3F3GLEH        E$F3$EAAEMcF3$F3$ELEH        A,B3,EAAEMcB3,B3,DO(AA1A1܋_,E1D1D1DEF3AAEHcF3D3CDEF3AAEHcF3D3CD_ DA,B3,AAEHcB3,3,_$AE1A1E1D1D1ED3H        @HcD3D3CDE<F3<AAEHcF3<D3<CDA,B3,AAEHcB3,DW3,_AA1E1D1E1D1ED3H        @HcD3D3CDE$F3$AAEF3$HcD3$CDA,B3,AAEHcB3,3,_AA1E1DOD1E1D1DEF3AAEHcF3D3CDEF3AAEHcF3D3ELEH        AB3EAAEMcB3B3DWB,DOA1D1A1E1E1LEH        AB3EAAEMcB3B3ELEEF3EAAH        EMcF3F3DDEF3AAH        EHcF3DD3_EE1E1D1E1D1ED3H        @HcD3D3CED3H        @HcD3D3CDA<B3<Hc3<3<AD1A1DD@~DND^FDDvFFF   FDFDF	DF
DFDFDFH        []A\A]A^A_AWH        I        AVAUATUSDBDJZDZD/DgAAA1BAA1BA1BA1BA1BA1B	1B1B
1BA1A1BA1BA1E1E1LAA,3,DH        AMc3,H        B3,ALEE$F3$EAAH        EMcF3$F3$E,,LEH        A,B3,EAAEMcB3,B3,DoA1AoE1E1D1D1HDE$F3$AAH        EHcF3$D3$ELEH        A,B3,EAAEMcB3,B3,ALEE,F3,EAAH        EMcF3,F3,DgDE11݋_A1D1D1DEF3AAH        EHcF3D3ELEH        AB3EAAEMcB3B3ALEE4F34EAAH        EMcF34F34D_DE1D1DWA1E1E1LEEF3EAAH        EMcF3F3GLEE$F3$EAAH        EMcF3$F3$ELEEF3EAAH        EMcF3D_ F3DO$EE1A1E1E1E1LAED3DAH        @McD3F3GLEH        A,B3,EAAEMcB3,B3,FL LEEF3EAAH        EMcF3F3DE1DW(1݋_,A1D1D1DEF3AAH        EHcF3D3C
DE<F3<AAH        EHcF3<D3<ELEH        AB3EAAEMcB3B3DO0A1Aߋ_4E1E1D1D1DEF3AAH        EHcF3D3CDE$F3$AAH        EHcF3$D3$CDEF3AAH        EHcF3D3_<E1EDW8A1D1E1D1DEF3AAEHcF3D3ELEH        AB3EAAEMcB3B3ALEH        A,B3,EAAEMcB3,DW@B3,DODA1D1E1A1E1LAED3DAH        @McD3F3GLEH        E<F3<EAAEMcF3<F3<ELEH        EF3EAAEMcF3F3D_HE1EDWLE1E1E1E1LAED3DAH        @McD3F3GLEH        E$F3$EAAEMcF3$F3$ELEH        A,B3,EAAEMcB3,B3,DOPAA1A1܋_TE1D1D1DEF3AAEHcF3D3CDEF3AAEHcF3D3CD_XDA,B3,AAEHcB3,3,_\AE1A1E1D1D1ED3H        @HcD3D3CDE<F3<AAEHcF3<D3<CDA,B3,AAEHcB3,DW`3,_dAA1E1D1E1D1ED3H        @HcD3D3CDE$F3$AAEF3$HcD3$CDA,B3,AAEHcB3,3,_lAA1E1DOhD1E1D1DEF3AAEHcF3D3CDEF3AAEHcF3D3ELEH        AB3EAAEMcB3B3DWpB,DOtA1D1A1E1E1LEH        AB3EAAEMcB3B3ELEEF3EAAH        EMcF3F3DDEF3AAH        EHcF3DOxD3_|EE1E1D1E1D1ED3H        @HcD3D3CED3H        @HcD3D3CDA<B3<Hc3<3<AD1A1DD@~DND^FDDvFFF   FDFDF	DF
DFDFDFH        []A\A]A^A_AWH        AVAUATUSQ8 u    H        H     H           H8     FI        VDFI        DNI        I        1FAA1F1F1V1V1V	A1VA1V
A1VD1DNvD111EAAA)D)EDEH        F3L AAHcEG3E3L LDIAGD3L DAMcE3G3L @DLu"AAɉAAD1D	!AEADAE1E	HH*1H        0   Z[]A\A]A^A_H        H        H        H             y7sn<xͻw37gnލܼy7<snxͻ㙛w37gnܼ880(-,!&38/ ``@TQED@D/lcO+hcKXSK"`bB3035)(!	 "'<642HCK/,l`L(4DAE!?<3=<1(( LBN6><2%9+(#&dbF:xrJ'$#/,#12prB@BB@AA 3psC'dcG,7- 
,, *440.)\QM8TSG. 9?=|qM1015
*hbJ1     " " (h`H1pqA!`aA>&XQIPQA#+DCG
#,?;xsK\PL"!#`cC# #LAM:82
 .,":.lbNXRJ23	HAI8xpH;0pp@5tqE?|sO541  $d`D-laM4tpD4*		6trF	> @@@ =: 0*("
\RN)TRF@CC	0%H@H9xqI<! !\SO7tsGTPD2%$!LCO    DBF-XPHPRB+>|rN	=000 %daE<<06$;<|pLPP@981	&$"202)haI743'$$ $PSC

L@L;83
HBJ7)DTP,%$!M\QC@CAPQ<
C#`c(( DD@     "% K;xs;.@0pp?<3(2026D4tp,GTSL\PKXS= $$ C3ps 2,, 'B2prц	@ ``@PP#+6OLC7JXRH8xp&/A!`aÄ4A@ABPRM=|q     	 CPS7!=F6tr/,#'$#0+"N.lbMLAI)haL<|p		

?/3>D$d`.,"KHC
! !K+hcF&db 5
 3N>|rJ:xrGDC%&$" -Ӂ! 000743.642" "8804'EDALL@)541<<0A1pqÉ	E5tq;8IXQ?I	HA	981G'dc ӈ8B@B# #L,l`ӄ$4401HH@O/lc=<1-,!@ @@>><2<*:NLBETQ;83H(h`O?|sJ
HBFTRG7ts -FDB5+(#E%da:#91N\R9&2101*M-laO\S$0
:82HXPB"`b	)(!303(I9xqJ*hb
*("088(!-,&ܳ38/`@ `QET@DDcO/lcK+hSKXbB"`3305!	)( "ࣇ'Б<264CKH/쀈`L,l(4AED!3?<1=< ((BNL62><%9#+(bF&drJ:x#'$#/,1rB2pBB@AA@ sC3pcG'd,7- 
 ,,*044.)QM\8SGT. ̂9?qM=|1105
bJ*h1     ""  `H(hqA1pؑaA!`>&QIXQAPܒ#+ЁCGD
#,쁍?sK;xPL\"!cC#`## AMLȒ2
:8 ".,:bN.lRJX23AI	HpH8x;p@0pqE5tsO?|154  `D$daM-lpD4t԰4*		rF6t	>@@ @ ్=: 0"
*(RN\)RFTCC@	0%@HHqI9x<!! SO\sG7tPDT2!%$COL    BFD-PHXRBP+rN>|	=0 00aE%d0<<6$䳋;pL<|P@P1	98"&$220aI)h374' $$$SCP

@LL3;8BJ
H7)TPD,$!%\QM@CCPQA<
`cC#( (D@D     "% xsK;;.pp@0<3?(0226tpD4,TSG\PLXSK= $ $psC3 2, ,'prB2	``@ PP@#+6LCO7XRJxpH8&/`aA!4@AAPRB|qM=     	 PSC7!=trF6,#/$#'0+"lbN.LAMhaI)|pL<		

?/3>d`D$,".HCK
 !!hcK+dbF& 5
 3|rN>xrJ:DCG%$"& -!00 0437.426 ""8084'DAEL@L)415<0<pqA1	tqE5;8XQI?HAI	81	9dcG' 8@BB ##l`L,$4041H@HlcO/<1=,!-@@@ ><2><*:LBNTQE83;h`H(|sO?HBJ
TRFtsG7 -DBF5(#+daE%:#91\RN9&2011*laM-\SO$082
:XPH`bB"(!	)033(xqI9hbJ*("
*SEED 1.2.410.200004.1.3 1.2.410.200004.1.4 1.2.410.200004.1.5 1.2.410.200004.1.6                                                                                                                                                                                         LICENSE=GPLv3+  crypto gcry_seed                                                                                                                                                                     %                                        	                      
                                       4                      E             `       \                       grub_mod_init grub_mod_fini grub_cipher_unregister _gcry_burn_stack _gcry_cipher_spec_seed grub_cipher_register                     @                   @                   @                   @                   @       >            @                   @                   @                   @       [            @                   @                   @                   @       W            @                   @                   @                   @       T            @                   @                   @                   @       X            @                   @                   @       +            @       d            @                   @                   @       %            @                   @                   @                   @                   @       y	            @       c
            @       
            @                   @       6            @       }            @                   @       v                                @                  @      [            @      r            @                   @                   @       (            @       N            @                   @                   @       
            @       V            @                   @                   @                   @       h            @                   @                   @       '            @       ]            @                   @                   @                   @       M            @                   @                   @       N            @       u            @                   @                   @       7            @       p            @       c            @                   @                   @       =            @                   @                   @                   @       :            @                                               6                    G                    r                                @                  @                  @       9            @                                                                  '                    1                                                       `       0                   8                   @                     `                    p                                 +                    >        .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @       ;                                   @               .                                &                           @                             .      2               +      Q                             B                      ,                                    =      @               7                                 H                     ,                                    X                     ,                                    ]                      ,                                    f                      ,      
                                                    ,      h                          	                      `.      q                                                    8      o                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/gcry_arcfour.mod                                                               0000600 0001750 0001750 00000004530 13417732100 0016315 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   AVLW1ATUSDDG9tCAEMcME#AAEIcLDu E3De AED2DHDDGH        []A\A^@   SH        AH   8 u    H        H     H           H8    A   G        1DHH=   u1ɉ1HAҊDH   u11@t@HcDDDDH@tH=   u1ۺ   1HH        H        ,  H   [H        H        H        H        ARCFOUR                                                                                                          LICENSE=GPLv3+  crypto gcry_arcfour                                                                                                    o                                                                                                      	                              `       7                      N                      _                      t                       grub_mod_init grub_mod_fini _gcry_cipher_spec_arcfour grub_cipher_unregister _gcry_burn_stack grub_cipher_register memset      c                     {                                                              I                    U                    q         
           {                             
                                                     0             x       H                     P                      .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                          @               `             
                    &      2                                                  :                           `                              5      @               P      `       
                    @                     P                                    P                     `                                    U                      `                                    ^                      g                                                          x      h         
                 	                            {                                                          g                                                                                                                                                                                                      boot/grub/x86_64-efi/gcry_serpent.mod                                                               0000600 0001750 0001750 00000040070 13417732100 0016333 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    <          @     @   U1SH@  H  H u1ҋ  3  5y73$  3,  10  HH   uǋ$<  D$4  D$8  $0  ED	A!1E	!!ED	AE1A1A1É1E1!D	D	A1ڋ$D  D!DL$DT$1Ћ$H  D$L  $$@  L$AA	1D	E1E1EA1DD$A1DA1	E!Ћ$X  D1	1D1AЋ$\  A1ȉL$DD$D$T  AD$$P  ADA	A1	1!AD!E1D	E!D1D1D$l  D1ADL$(1D$`  A	ЉT$$E!ȋ$d  D\$,1$h  E1ʉD$ DD	A1ɉ11	ȉT$<	A!D!D1D1D!щT$8D!1DD$t  1Ћ$x  1ʋ$p  D$01DÉT$4$|  AA!!EAE		A1D!D11ŉD$LD!	1D$  1A1щT$DD1E		D$  D11ʋ$  |$@$  EщT$HD1A	ɉA	D!E1D11DE!D	D1ωD1ȉT$T!D!D111ы$  D$  |$\1D$XL$P$  A	3$  A1EE!E1D1Љ	A|$`D	A	D$  D1E1D	D\$d1DD$  	ȉT$h$  D11$  DɉD$lA	A1D1D	D!A!A	Ӊ1	E!ډT$|D!1D1	L$xD1D1E!D1D$  D$  ЉT$t$  D$p$  DE1A!҉E	ʉ	!E!D	E1AA1ډA1!1E1D	A1D	D$   D$   D!1Љ$   $  $  $  D$  $   AA	E1D	E1EA1D$   A1DA1	E!D1	D1A1A1Ћ$  D$   D$  1ȋ$  $   $  $   ADAA		1A1!AD!E1D	E!D1D$  D1D1D$   1AD$  	Љ$   E!ȋ$  A1$  E1ʉ$   DD$   D	A1ɉ11	ȉ$   	A!D!D1D1ʉ$   D!1DD$  1D!1ʋ$  $  1$   DÉ$   $  A!A!AE	AE	1D!D11ŉ$   D!	1D$  1A1щ$   D1E		D$   D11ʋ$  $   $  Eщ$   D1A	ɉA	D!E1D11DE!D	D1ȉ$   !1D1D!D1D$  1ы$  $   1$   $   $  A	3$  A1EE!E1D1Љ	A$   D	A	D$   D1E1D	D$   1DD$(  	ȉ$   $,  D11$$  Dɉ$   A	A1D1D	D!!AA	Ӊ1	$   D!1D1	E!D1D1E!D$4  D1D$8  $   $<  $   $0  E$   DɉÉ	1A!!E	!AED	A1E1A1E1ىD	!D	1D!A1ڋ$D  1Ћ$H  D$  $   $@  D$L  D$  A҉$  A	1EE1EA1D$  A1DA1	D1	E!D	D1A1A1Љ$  D$  D$T  1ȋ$\  $X  $  $P  DAAA		1A1!AD!E1D	E!D1D$l  D1D1D$(  1AD$`  	Љ$$  E!ȋ$d  A1$h  E1ʉ$   DD$,  D	A1ɉ11	ȉ$<  	A!D!D1D1ʉ$8  D!D!1DD$t  1Ћ$x  1ʋ$p  $0  1DÉ$4  $|  AA!!EAE		A1D!D11ŉ$L  D!	1D$  1A1щ$D  D1E		D$  D11ʋ$  $@  $  Eщ$H  D1A	ɉAD!E11DE!D	D1ȉ$T  !1D!	D1D11ы$  $X  1D1D$  $P  $  AЉ$\  	3$  A1EE!E1D1Љ	A$`  D	A	D$  D1E1D	D$d  1DD$  	ȉ$h  $  D11$  Dɉ$l  A	A1D1D	D!!AA	Ӊ1ʉ$|  D!	1D1D1E!E!	D1D1D$  D$  $t  $p  $  $  $x  EDɉÉ	1A!!E	!AED	A1E1A1E1ىD	!D	1D!A1ڋ$  1Ћ$  D$  $  $  D$  D$  A҉$  A	1EE1EA1D$  A1D	D1A1D	E!	1D1A1AЋ$  1D$  D$  $  $  $  $  ADAA		1A1!AD!E1D	E!D1D$  D1D11A	A!D$  $  1D$  $  $  D$  $  DED	1E11A1	ȉ$  	A!D!D1D1D!щ$  D!1DD$  1Ћ$  1ʋ$  $  1DÉ$  $  AA!!EAE		A1D!D11ŉ$  D!	1D$  1A1щ$  D1E		D$   D11ʋ$  $  $  Eщ$  D1A	ɉAD!E11DE!D		ωD1ȉ$  !D!D111ы$  D11$  D1ω$  $  D$  AЉ$  	3$  A1EE!E1D1Љ	A$  D	A	D$   D1E1D	D$  1DD$(  	ȉ$  $,  D11$$  Dɉ$  A	A1D1D	!AA	Ӊ1D!D1ȉ$  	D!1D1E!D1E!	D$4  D1D$8  $  $<  $  $0  $  EDɉÉ	1A!!E	!AED	A1E1A1E1ىD	!D	1D!A1D$  1D$  $  $   11HcɋHHuH   uH@  []ATH        UHHֺ   SHHHЋ  3T$   3$  D  3|$D3L$AӉы  A!	D  ED!A	A11D1ADD	D1D3  D	1D	!3  113  D	D11D11ЉD11A1ƍ    A11A11AAÉA!A		A!E	3  EA!3  D1E1D	1AA1D1D!11DD1111D1D3  A1AD1ȍ    1׉1AA!D1EAA1!1E	AA!3  D1D1D  D  1!D	A1E11A1	D1D1D13  1DD1D1A    111D1AA	E	A1Љ!ED1A!A3  D1A3  A	3  A1E	1D1D1D113  11D1D11Ǎ    11A11ȉA1	A	11!A1DE1!A!1  AA	D13  E!1D1A	3  3  D11111    1111AAˉA	A11AE!AA	A	  D1EE!	A!!񋳤  E1D1D  1E1D1D!13  1Љ11ЉD1D1A1΍    11AD1AA1A1A	ȉA1D!ED	E		E!D1D1!΋  1D3  3    11E1D1AD	D1A1D11AE1A1D1B4    D11AA1EA	1EA	A11!D!D	E1EE	A1A3  D	3  DD1E!13  A	A  D1ADd  D1D1AA1A1A1A1B    D1D1A1DD1AÉA!	E!E	A111DD	A1D3|  	t  1	D!D3p  	13x  1E1A1D1A1ЉD11AD1A11֍    1A1AAÉA!A		A!E	3l  EA!3h  E1D1D	A1D1D!D3`  A111D1D11D1AD11    A11׉1AD1A!ƉE1AA1!AE	A!D13X  D1DT  D\  1!D	A1	3P  E11A1D1D1D1D11DD1A    1D111AA	E	؉3H  A1!ƉED1AA!A3L  D1A13@  A	3D  E	D11D1D1D1D11111Ǎ    1111	A1AA	11!A1DE1!A!38  14  A	A30  A	D13<  E!1D1ΉD11111    1111AAˉAA1A	1E!AA	A	(  D1EE!	A!!$  E1D1D1D!1D,  111ȉE11D13   D1A1΍    11AD1AA1A1A	ȉA1D!ED	E		E!D3  D1D1!΋  1֋  E111AAD1D1AE13  D	1D111A1DB4    D11AA1EA	1EA	A11!D!D	E1E	EA13  AD	DD113  A  AD1A3   E!A	A1A1A1D1D1AD1D   D1A1B    D11DAÉA!	E!E	A111DAD3   1	   1	D!1D	D3   13   	E1A1D1A1ЉD11AD1A11֍    1A1AÉAA		A!A!3   E	D1E1E1A1AD1A!3   D!D3   D	1DD11ǉ11D1AD1A1׍    11׉1AA!D1EAA11!E	AA!D1D   D1D   13   !D	E1A1	3   A1D1D1D11D1D11Dʍ    A111D1AA	E	A1Љ!ED1A!AD1A3   A	3   3   A13   E	1D1ωD1D1D11D1111Ǎ    11A11ȉA1	A	11!A1DE1!A!3   1   A	A3   A	D13   E!1D1ΉD11111ʍ    1111AAˉAA1A1EA	!A	A	   D1EE!	A!!񋳤   E1D1D1D!13   D   111ȉE11ЉD1D1A1΍    11D1AA1A	AA1A13   ED!E	ډD	E!	D3   D1D1D1!΋   1֋   E1111AD	A1D1D1AE1A1DB4    11ɉ1D1A1EAEA	A	1A1!D!D	EE1E	AA13   D	D13   D13   E!A	A   D1ADcdD1D1AA1A1A1A1B    D1D1A1DD1AÉA!	E!E	A111DD	A1D3C|	st1	D!D3Kp13Cx1E1D11ЉD1	A11AAA1D11֍    1A1AAA	A!	A!3SlE	D1EA!3{h1E1A1D	AD1D!1DD1111D3K`D11AA1D1ȍ    1׉1AA!D1EAA1!1E	AA!D1DC\D1DKT3SX1!D	E1A1A1D1D1D1	3CP11DD1D1A    111D1AA	E	A1Љ!ED1A!A3KLD1A3{HA	3SD1D1D1ω1A13C@E	D1D11D111Ǎ    11A11ȉA1	A	11!A1DE1!1s4AA	E!1D1D13C03{<A!3K8A	ЉD11111ʍ    1111AAˉAA11A	E!AA	A	C(D1E	A!!s$E1E!D1D!D113{ 11DS,1ȉ1ЉE1D1D1A1΍    11AD1AA1A1A	ȉA1D!EE		E!D1D1D	!D3K3C1֋KS11E1D1AD	D1A1D1A1E11A1DB4    D11A1DAʉ	A	11!D	13D!A1ΉAD	D	1D1D1!	11H$3s   D3K3Ct$HDL$D$H        п    H        H[]A\AUH        ATUHHֺ   SHH(HDKCD3L$3D$DDCD3$D3D$DΉADD	D1E11DD	AD1E!E	!D1A!D1A1D1DCD!A1D1D1׉1    1111A13KD13sD1
3SA	A	A1AA1!D!ƉE1D	E!D1DC$D1D11	!D111    11Љ1113C,13s 
3S(A1ȉAD1A	EA1	ED1A1D1AD1D	D!DS4D1	11B    1D11111ȉA11D113K<
3S03s8AAӉ׉AA	D!A1	!E!ىD	ED1D1A1D1D	D	A!D1D!D1DCD11    111։A11113sL13S@
3CHD1AD	E	!A!A1A1EE1E	A	DD!!A111A{\D	D!D1E1D[T1э    1A1AAA1E1D1E1A1AD3CPD	3sXA1AE1A
EDE!D1D1D1AD	ADE	A1B    	1D1E	1D	D11D11Љ1113ClD1DKd3s`A11
3{h!щ11AAD1E	A	A!D1AE1E!E1!D	1A1D1AD1D1{t    1D1111113S|D13sp
3KxAA҉AAD!A!A!1D	E1A	D1AA	A!D1D1A11E	D	D   D11A1A1A1Ѝ    A1DE1A113   1ΉD13   
3   A	A1D11AD	D1A	!D1A!E!1A1D1D   D!A1D1D1׉A1AD1B    DA111Dω113   D13   
3   AʉA	AA11	!D!AE1D	E!D1D1D11	!DD   1111    1Љ1A11113   
3   3   AD1A	EA1	ED1A1D1AD1D	D!D   D1	11B    1D11111ȉA11D11
3   3   3   AӉ׉AA	D!A1	AE!ى!ED1D	A1D1D1D	D	A!D1D!D1D   111    11։A1113   13   1
3   D	ǉ!D1AAE	A!1A1EE1E	A	DD!D!!A111AD	D1E11ы       1D   A1AAE1A1D1A1AD3   D	3   E1AA1E1A
EDE!D1D1D1AD	ADEE	A	1D1B    	1D	1D1D1111113   D1D   3   A11
3   !щ1D	1AAD1E	A	A!D1AE1!E!11E1؋   AD1AD11    D1D1111113   D13   
3   AA҉AAD!A!A!1D	E1A	D1AA!A	D1D1A11E	D	D  D11AA11A1Ѝ    A1DE1A113  1ΉD13   
3  AD1Ή	A1D11AD	A	!D1A!A1D!1AAAE!1D1DD1D  D1B    1D11A111D13  D13  
3  A	A	A1AA1!D!ΉE1D	E!D1D1D11	!DD$  1111    1Љ1A1113,  13   
3(  AD1A	EA1EA1D1ʉD1D	D1	D!	AD111B    1D1D4  1111ȉA11D113<  
30  38  AAӉ׉AA	D!A1	!E!ىD	EA1D1D1D1D	D	A!D1D!D1DD  111    11։A11113L  13@  
3H  D1AE	A1EA	D	A!!D!A1DE1!E	D1\  !DT  A11AD	D1E11э    1A1AAA1E1D1E1A1AAD3P  E1D	3X  EDE!D1A1A
D1D1AD	ADEE	A	1D1B    	1D	1D1D111111D1Dd  3`  A11
3h  3l  A!1E	1AA!D1A	D1E1D	A!1E!1D1E1؋t  AD1AD1D1    111113p  1D13|  
3x  AAA!AAD	A!D!1E1A	D1AA!A	D1D1A11E	D	D  D11A1A1A1Ѝ    A1D111E1A3  D13  
3  AD1	A1ÉD11AD	E!A	!D1A!1A1D1D  D!A1D1D1׉A1AB    D1D1A111Dω3  13  D1
3  A	A	A1AA1!D!ΉE1D	E!D1D1D11	!DD  111    11Љ1A1113  13  
3  AD1A	EA1	ED1A1D1AD1D	D!D  D1	11B    1D1111A1113  D113  
3  AAӉ׉AA	D!A1	!E!ىD	ED1D1A1D1D	D	A!D!D1D  1D11    111։A11113  13  
3  D	ǉA!D1E	AA!A11EE1E	A	DD!!1A11AD	D!D1E1ʋ  1э    D  1A1AA1D1D1E11A3  E	D3  A1AE1A
AE!E1D1E1DщA	A1B    	E	D11D	A	D1D1D1111113  D1D  3  A11
3  !׉11AAD1E	A	A!AE1E!!D1E11D	A1D1AD1D1D1    111113  D1
$3  3  D  AA1ǉD$A!E!AAT$D!E	DL$1D1D	A13  A	3   A!D13  1D	D11t$HD$  Ht$1D1D	D$H        1Ѻ   L$п    H        H([]A\A]UH        HSH(8 u!H        H     H            H           H: usHH        Ѓ~.H        HHH        п@  ӿ    1*Hc   CHH41HtD    H([]SH        H        H        HH        [SH        H        H        HH        [SERPENT256 SERPENT192 SERPENT128 SERPENT                                                                                                                                                                                                                                                                                                              LICENSE=GPLv3+  crypto gcry_serpent                                                                                                                          4      3            4      3                                                        	                      `       `       :                      A                      X                      i                      ~             `                   `        grub_mod_init grub_mod_fini _gcry_cipher_spec_serpent192 memcpy grub_cipher_unregister _gcry_burn_stack grub_cipher_register _gcry_cipher_spec_serpent256 _gcry_cipher_spec_serpent128                     !                    !                    !                    3                    3                    4                   4                    +4                   ;4                    X4                    k4                    {4                    4                    4                    4         
           4                    4                    5                    5         
           #5                                          0             3      8             !      @                   `                                 3                   !                                                                              3                   !                                      !        .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @       .5                                   @               H9            
                    &      2               n5      )                             :                     5      0                             5      @               @;      P      
                    @                     6                                    P                     6                                    U                      6                                    ^                      6                                                          6               
                 	                      8                                                          <      g                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/gcry_blowfish.mod                                                              0000600 0001750 0001750 00000022650 13417732100 0016474 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    ("          @     @   SH3   DD3  \$D\$DL$
3  F   FD\$	F3   D\$F   E1DT$D\$DL$F   FD\$F3   D\$F   D1ˉ\$D\$DL$
F   FD\$	F3   D\$F   D3  E1DL$DT$D\$F   FDT$F3   DT$F   D3  A1D\$\$DT$
F   D\$	D3   \$D   D3  E1DT$\$DL$F   D\$D3   \$D   D3  E1DL$\$D\$
F   D\$	D3   \$D   D3  E1D\$\$DT$F   D\$D3   \$D   D3   E1DT$\$DL$
F   D\$	D3   \$D   D3$  E1DL$\$D\$F   D\$D3   \$D   D3(  E1D\$\$DT$
F   D\$	D3   \$D   D3,  E1DT$\$DL$F   D\$D3   \$D   D30  E1DL$\$D\$
F   D\$	D3   \$D   D34  E1D\$\$DT$F   D\$D3   \$D   D38  E1DT$\$DL$
F   D\$	D3   \$D   D3<  E1DL$\$D\$L$D3D  D   FD\$F3   D   D3@  DE1DH[HDRBD
DZAA	BAAE	DZA	BRE	A	D3D  A	DL$D\$T$
   BD\$	B3   D\$B   3@  D1҉T$D\$DT$F   FD\$F3   D\$F   D3<  E1DT$D\$DL$
F   FD\$	F3   D\$F   D38  A1DL$D\$T$   BD\$B3   D\$B   34  D1҉T$D\$DT$
F   FD\$	F3   D\$F   D30  E1DT$D\$DL$F   FD\$F3   D\$F   D3,  A1DL$D\$T$
   BD\$	B3   D\$B   3(  D1҉T$D\$DT$F   FD\$F3   D\$F   D3$  E1DT$D\$DL$
F   FD\$	F3   D\$F   D3   A1DL$D\$T$   BD\$B3   D\$B   3  D1҉T$D\$DT$
F   FD\$	F3   D\$F   D3  E1DT$D\$DL$F   FD\$F3   D\$F   D3  A1DL$D\$T$
   BD\$	B3   D\$B   3  D1҉T$D\$DT$F   FD\$F3   D\$F   D3  E1DT$D\$DL$
F   FD\$	F3   D\$F   D3  A1DL$T$D\$DD$D3   L$   BB3   D   3  DDN@   FDD1҈FЈVFFFH        HSHHJHt$	J	J	JD$B	JR		HT$D$H        ЋD$@   CSD$SCSSH        SH[AVH        AUATUSHH8 u    H        H     H           H8 W  1H           HHHu0I        I        I        H        AA   A       HH=   uE11Hc1ҊD$GҊ1҈D$GҊ1҈D$GҊ1҈D$D$B1   GIIHuLcHD$    D$    HI        HT$Ht$HA֋D$HI          D$  L9uL   HHT$Ht$HAՋD$HED$EL9uHHT$Ht$HAՋD$H  D$  L9uHHT$Ht$HAՋD$H  D$  L9uHHT$Ht$HAՋD$H  D$  L9uH1ҋ8HcH4;>tHD   D9   t8D   D9   t(   9   t   ~H   u1   H        @   H[]A\A]A^H        H        H        H                j?$.Dsp"8	1).lN!(Ew8fTl4)P|ɵՄ?	Gy        79:7w«-Zg\B7O@'Ӿs~-{ kE!nn6j/HWynvIeS}ލF
sMLۻ9)PF&^Q-jc".$CaMjP[d&(::KbU/Rio?Y
w	>;Z4ٷ,Q+:Ֆ}}>(-}|%rZLZq)GW;()f(.y_xU`uD^mm%adâW<'*:m?!cf&(3uU4V<wQ(
gQ̫_QM08bX7 z{>d!Q2Ow~㶨F=)iSHd$m-if!	
FEdlX [@X̻k~jEY:D
5>ʹrdfGo<cҞ]/Tw®pcNtW[qr]}S@@NjF4(:Hn΂;?o 5K'r'`a?+y:%E49KyQ2/ɺ~ǼǪIO8
*9g6|1O+Y:CE',"*q%a뜶YdѨ^jePBn;ۘLdx22ߒ+4qAt
4K q2vÍ5./GoTLybo~>f,ҏ"W##v215VbuZ6ns҈bIPLVq
z2E{S b%ҽ5iq"|˶+v>S@`8G% 8vFšw``u N˅؍芰z~L\HjiԐ\-%	?2aN[wߏWr:hZ=@&L4)i Av.kh q$j 3ԷCa P.9FE$tO!@MpE/f	m1'A9UG%ښ
ʫ%xP()Sچ,
mbh iHפh'?Oz|Ϊ_7әxB*k@5 ٫9N;VmK1f&tn:2C[Ah xN
جV@E'H::SU kKмgUXc)3VJ*%1?~^|1)p/'\,(H"m?H܆AyG@n]Q_2Տd5A4x{%`*`lc´2Of#k>3b$;"r(-Exb}doITH}'>AcG
t.no:7`LknU{7,gm;e') ̒9i{f}ϑ^و/$[Qy{;v.97yY̗&-1.Bh;+jLu.x7BjQ满PcKkؽ%=YBD
n*Ngd_ڈ鿾dW{x`M``FѰ8Ew63kBqA_^ <Ww$轙BFUa.XXN8t½fStUuFa&zyj_YnFpW UՌLHbtu	ܩ	-f3F2Z茾	%Jn=ߤih(ڷ9WRO^Pĵ''A?wL`õa(zX` b}0מc8#S4V˻޶}vY	o|K=
r9$||_rㆹMr[xUT|=M^Pa<QloNVο*6742cg `@pzKD).	u#&İn}ߧI`fqilRdVឱ¥6)L	u@Y>:䚘T?eB[k?ҡ08-M]% L&pc^?kh	><pjk5hRS7P>\D}W7:P t<Xz%!	/|sG2G":74vȧFaD>Au8/;21>8TNmOBo
,y|$ryVw.?rU$qk.P̈́GXzt}K:zfC	cdG27;C$CMQe* P:qUN1w_V5kǣ;<	$Y,n<pEㆱo
^*>Zw=Ne)։>%fRxL.jxS<-
N=+6&9`y#RnfE{7(2åZl!Xeh;/ۭ}*/n[(!pa)uGa0a4c\s9pLު˼,b`\ndi#PZe2Zh@*<1!T_~}=b7w-_h)5ǡޖXxWcr"ÃF
T0.SHُ(1mX4a(s<|J]d]B> EꫪOlOBBǵj;Oe!AyMjGKPb=bF&[$tiGV [	Htb #*BXU>ap?#r3A~_;"lY7|`t˧@n2w΄PU5aiZ.zD4Egɞs͈Uy_g@Cge48>q(= m!>J=+ۦ1Ѭߘr/Ḗ~&jE|,G$l iciNWqX~=tXrX͋qJT{YZ90`*#`(yA8۸y:`l>w'K1/x`\`U%U攫UbHW@cj9U*4\̴ATr|*oc]ũ+1t>\3֯\$lS2zw(H;Kkē!(f	a!`|H2]]]u#&܈e>#Ŭom9BD. Ji^Bh!lagӫҠQjh/T(3Qln;zP;*~ev9>YfCoEå}^;uos D@jVbNw?6r=B$7H
ۛIrS{y%P;LylO`@\^c$johSl>9oR;Qm,0DE	^J3(fK.WtE9_ӹyU
2` yr,@%g̣饎"2u<kaP/R=2`#H{1S >W\o.ViB~(2gsUO'[iXʻ]=!lJ[-ySeEIҐK3~ˤAb Lw6~д+MەqՓkю%ǯ/[<ud+^OÏhѭ"//w-u̠toO;|٨f_ws̓w!e wBT5렉>{AI~-% ^q  h"W6d$	cUYCxSZ٢[} Źv&ϕbhAJsN-GJ{R Q)S?Wƛv`+ t恵oWk*!ec.4dV]-SGjnBLOWFISH                                              H                                                      LICENSE=GPLv3+  crypto gcry_blowfish                                                                                                                         l                                                                                	                      
                                       4                      E             `       `                       grub_mod_init grub_mod_fini grub_cipher_unregister _gcry_burn_stack _gcry_cipher_spec_blowfish grub_cipher_register                        G	                    	                    	                   	                    	                    	                    
            P      #
            P      -
            P      7
            P       
                                        N                    n                    x                                                                                  0             	      8                   @             -       .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                          @                                               &                           P                             .      2               0      	                             B                     @      `                              =      @               X!      `                           H                                                         X                                                         ]                                                          f                                                                                      h                          	                      0      u                                                    !      o                                                                                                                      boot/grub/x86_64-efi/gcry_sha1.mod                                                                  0000600 0001750 0001750 00000017270 13417732100 0015515 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    x          @     @   #EgGGܺGvT2GG    GX    AWAVAUATUSHĀHt$0HT$8H|$8 S  HT$0HD$@
HH$   HHJHJHJHH9uDd$@G\$DwDt$HD|$LB yZHD$0@D\$tG3G#G3GGyZG_1#F3yZ3G\$PȉȋAA1A!A1EAAEF>yZ1!1DEADDyZ1ы\$TD!1DAAADDyZD1\$X!1DAADDyZD1\$\!D1DAADEyZAA1\$`A!A1EAAEDyZ1΋\$d!1DEADDyZ1ы\$hD!1ADAADDyZD1\$l!1DAADDyZD1\$p!D1DAADEyZAA1AA!AA1EFyZ1E!E1AAEDT$xDByZ1D!A1΋L$|މ
yZD1D!A1DD13T$`D1DyZDD1!D1AŋD$DAED13D$dD1AyZAE1A!E1DAD3t$PDL$hD3|$TDAE1AA1AGyZAA1E!AA1EDD$lEE1EA1AAFyZD1!1At$X3t$P3t$pE1D3nD1D1DEADD|$\D3|$TAD<$D1$D1$$D<$G=nEA1E1AEAAED|$`D3|$XD|$D1T$D1D$L$D|$F=nDD11DEADD|$dD3|$\D|$1L$1t$L$D|$G>nAE1E1AEAAED|$hD3|$`D|$D<$1T$D1|$L$D|$G<nEA1A1EEAED|$lD3|$dD|$1D$D|$D1|$L$D|$F;nD1D1ADEADD|$pD3|$hD|$D1L$D|$D1|$L$D|$G=nEA1E1AEAAED|$lE1D|$D1D$D|$D1|$L$D|$F=nDD1A11DEADD|$pE1D|$1t$D|$D1|$L$D|$G>nAE1E1AEAAED<$E1D3|$EA1A1AG<nEEAEEAA1D3d$E1D3d$E1AB#nAD1AL$ Aڋ\$1\$ L$D11L$ DD1L$ 1\$ D1AAnEADDl$A1DE1D1AD1AB-nl$1DD1D11A.nAA؋\$DA1D13\$ AE1A1EnEAAED$EAE1D3\$AA1A1E1AGnEDT$EAE1D3t$A1AB1n1D1AD4$3t$4$D1<$1$$4$2nD1D1At$D1։t$D1d$D1\$L$DT$BnDAD1A1t$3t$DDT$ t$D1T$D1t$D1L$1DT$GnAAAt$3t$ED$t$D1l$D1T$AL$t$E0ܼDDAA	A!A!E	DT$At$3t$t$1l$D1T$L$DT$BܼDE	A!A!D	Et$3t$ADEE!ʉt$1\$t$1t$L$t$2ܼDAD	!D	t$D1t$D1\$t$1t$L$DT$BܼAD	E!D!D	At$ADAA!D1t$D1t$t$1t$L$t$E1ܼDAA	E!E	D$ADD|$ D1t$ D1T$ t$1t$ L$ DT$ CܼAAA	A!A!E	EAAEE1D3d$D3d$A1D3|$D3|$EA1A!D3l$D3l$ AB!ܼDADA	A!D	EB:ܼDD	E!A!D	AAB(ܼDAʉE!ƉD	D!D	D13l$D1A3\$D3$A!D3\$D1A)ܼAD1A	E!EܼE1E	AAAA!ADDAA	A!E	EABܼD	!A!D3t$D3t$D	EAADEDD!A1AF2ܼADAD	!	4$3t$Aщt$$T$ 1T$$D!1\$$L$$T$$ܼD	D!	DЋT$3T$T$D1d$D1\$L$t$A2ܼEA!DA	D!D	DT$D3T$DT$(D1|$(AD1t$(E!L$(T$(EܼD	!D	ADAADAD$3D$AE!D$,D$$D1l$,1D$,L$,D$,ܼȉD	D!D	DT$D3T$L$D$1,$A1$A!$$E	ܼ	D!D	DT$D3T$DAADDL$(DT$1\$AD1L$A!L$DL$GܼAAEAA	A!E	DT$D3T$ EDD$,DT$D1\$AD1D$A!L$DD$Fܼ	!D	EDADDT$AAE1E1DT$D1t$D$D1T$L$DT$Fbʉ1D1AAҋT$ Dd$ EDD$Dd$D1d$ D1T$T$$1T$D1D$L$T$DbD11ADAt$1t$ L$ D$ bʉDD1D1DA1D|$L$(A11L$DT$D1T$1Dl$L$D1DT$,D|$AD1D1G9bD1T$l$l$ DAADDL$D1L$L$Dl$F*bDDl$@11DAADD$D1L$1l$L$l$D(bʉl$DD11DAADDL$A1D3L$AE1CbADL$HA1D|$$A1DAAE1DDD$E1E1EDd$(AFbʉDD$L11AAt$D1E1AD1bʉt$P11ADD13L$ED1D
bʉډL$T1D1ADAADDl$,D13T$ D1DbD؉T$X1D1AADAƋ$D13D$1DbDӉD$\D1D1AADA܋\$D13\$EA1AbE\$`E1E1DD$DAD3\$D3\$A1AGbED\$dE1E1AEAAEDT$D3T$E1EA1E1AA1GbDT$hEEAEDL$D3L$E1AA1E1AE1ACbEDL$lADDD$DDt$ E1A1DE11AD1AGbDd$DD$pDAAE1DD\$D3\$A1E1AA1DG%bD1E11AD\$tDd$xD1Fb1DDL$D3L$DAADA1AE1AADBbADL$|Aǉ1Ww1_ODADHL$8Ww_OH[]A\A]A^A_HGAUATIUHSHQX@u0Hw   H        пx   H        CCX    M   {X t=Ht HcCX?PIH͉SXAT$T11HH        HtgIIt*LLHH        DkICX    L)MH        x   1H9tHcSX?JKXAHLX[]A\A]AT11UH        SHDcHcCXHDAA ,    AA	ԍP7SXDHcCX7CPSXD HcCX?PSXD 11HH{8   1H        DDcS@kWHs   CRHCP CQ CTCUCVH        H        x   ЋCSSCSCSSCSC#S S!CS"C'S$S%CS&C+S(S)S*[]A\H        H        H        H        SHA1 1.2.840.113549.1.1.5 1.2.840.10040.4.3 1.3.14.3.2.26 1.3.14.3.2.29 1.2.840.10045.4.1                                                                                 \       @                                                               0!0	+  LICENSE=GPLv3+ crypto gcry_sha1                                                                                                P                  f                                                                                    	                                       .                      5             `       L                      _                       grub_mod_init grub_mod_fini _gcry_burn_stack memset _gcry_digest_spec_sha1 grub_md_unregister grub_md_register             1                
           ?                  b            1                
                             R                                1                
           R                    \                    h                    r                                                                           `       (                     0                   8                   @                   `                    h                    p             ,       x             :                    H        .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @       |                                   @                     8      
                    &      2                     Z                             :                                                          5      @                            
                    @                                                         P                                                          U                                                          ^                            
                                                          h         
                 	                      H      p                                                          g                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/gcry_camellia.mod                                                              0000600 0001750 0001750 00000071450 13417732100 0016430 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    o          @     @   HPHH        HW?Zt  H        HPHH        HW?Zt  H        Ѓt
    ukH        8 u    H        H     H           H9 u0P    HWH        H        P  Z1SH        H        H        HH        [SH        H        H        HH        [AWAVAUATUSH   D$Gd$1D$G1D$G1D$GD$Gd$1D$G1D$G1D$G$G	$$DG\$Dl$1$GA1$G
1$G$D1DGD1E1AAA8DAAAAA8AAA?ADA8DADT$lAލ\= DAAA8DEEAADT$DA8EDEAAE:AAD\$`DEEAAD|$hEAD\$PAA\$\G<
AډADt$HCD|$TL$LADADd$XӉDAl$BEEAAAACADt$$AB'DEAAAD\$dEAG<7AD\$Dt$(AEDADd$pT$AEA;AAA;fFT= Dd$|A\$tADDAD$   DT$x$   I        H        DAEH        FHG3DEF3D I        E3ELɋ| B3<EC3<A3<A1T$$D1D$Dd$XzAщE1sLA1DLADEADEDʋ<C3<EAB3| Fd A3<F3$LEG3$E3$DD1T$1|$/7AԋT$EAOEAAAAALEFG3DEF3L EAE3LEFl F3,EG3,E3,EE1AE1D|$D|$D1|$EǋT$D1L$ASTDl$EAEEAoEELAAEFG3EF3L EAE3LEABl B3,AA3,݋L$A3,AAAAA1l$D1L$E11T$EDl$ADD$   AAAEAADt$,A,EEADADAAAEE<?EDl$0EAADT$E<DDDD<:DDEEAAl$DAE<;Dt$4ADDAAF43DDEAӉDD$   AщEAAEAD$   AB<DۉDDEDDDt$<AD\$ F|$ D$   T$8EADEAA֋$D1AȋL$DT$@$A1D$   DD$H1A1Չ$   D1D$   A1T$DDD$   Dd$(AՉ$   T$A!EDl$XAA1ȋL$LD$   D!1D$PD1A1Չ$   D$   E1A!Չ$   D$TE1D1D$HD1DD$t$   ؋\$1ЉD$LDD!D1݋\$xD$tD$ 1A1D$   Aۋ$   A1D1T$x$   DD\$PDd$d$   L$pD1l$PEADD\$<$   DE1A1D\$pEDd$$$\$|A1<$ËD$\$T\$8D1t$T1A؉ˋL$,D1\$XDEA!DE1|$\!A1D1Dt$`1A1ĉ|$\Dd$|D$   A1Dt$`AA1ED$   A1D$   Dd$4AE!D1׋T$1L$dL$AA!$   AA11D$hL$3L$D~LD$   1D#|$DV@|$|$@N$   T$43D$,D#d$`D3t$01D3d$\|$$   VDT$D1d$d1A1$   VHD1T$,T$\D1ʉT$4T$H1DDL$HD1׉T$\|$h$   A1#\$XDL$HD1E1A1D$   DT$$T$tDL$D   DT$D   AD   DT$(D\$(AD   D$   D#T$LA1|$PE1DL$$D$   E1D\$tD$E1D$   EDL$<A1AEDL$8AED$   E1Dl$ A1|$@D   D$   AEA틬$   E1E1D   DD$AA1AD1DNDL$l~|$E1A1AD1ǉ~DFD$   T$l$DD111~ |$0V$D1ω|$d1D#d$D#|$1ЉV(T$\F,DDD$`11AA1F0D1N4L$HD1D$   D1Dt$,1ǉF8DE1DD$h~<A1l$4E1AE1D~PD$   DvTD$   D111ŉFXDD1Dd$|n\11F`DD1D|$LVdD1A1FhDD1DFl11NtL$D$   |$XFpD$   !ً\$$DʋL$11D1D!DT$(ʋL$xFxA1D1Dv|1ЋT$t11É      \$p1D1   A1ȋ$   D   1A11E1A   1؋\$T   E1$D   D   1D1   A11D   1      H   []A\A]A^A_AWAVAUATUSH  $G$$1$G1$G1$GD$Gd$1D$G1D$G1D$GD$G	d$ODGD_DWDO1D$G1D$G
AAD|$D$$1D$GT$A1O1O1OD1DGD1DGAD1DGAE1DGAAAE1DGAE1DGAE1DGE1DGAE1DGAE1DOE1AA1DAA>EA9EAA9EDAAA$   E<9AAT$hDE$   ADl$lD|$AEEADd$4A9AىDEAAADAAAEl DT$8׉Dl$ E,)AA\$<߉D$   E,?DՉDAA;DAADBT Eډ͉ADL$@ADADl$pADD$   \$DAEE͉l$tAEAADAE
T$dA+F+DDD$HDT$(DEAADL$$T$LE,DAEEED$   AED\$xET AG$AEDD|$|ED$   BAD$   AB\ G<D$   Eى$   ED$   ABEl ADEA|$DFDFEH        I        ED$AfEEA1A;DEL1ADAA@DAA@GI        D3E3H        D3DAA3A3A3l$AsLDd$Dl$,D|$0XzA1D1ED1D1E1AD3T$A1AEEEAALEGF3EEG3ADT$AD3HEG$G3$DF3$D3$E1DE1l$ED|$D1|$Dd$PA/7D1\$El$AEEOAAAAALEGF3DG3ELAD3EG,G3,EF3,Dt$PD3,E1AD1\$3\$,D|$ASTEDD1AD1EAEAoELAEEAEGF3EEG3Dl$0AD3GG3EF3D3E1AED3d$E1Dt$PD|$E1E1DT$D3T$E1D|$A-hEDT$0ELA'DAEEAEEEAEGF3EAG3D|$,AD3GG3DF3A1D3D|$E1D1T$D1T$0ADT$0D1\$AVD\$DAEEAEELAAEGF3EG3AAD3EGG3DF3DD3L$E1ADL$1L$E1D|$PDD$D1T$T$0D\$DEAADDt$,FDEAAEADD$PAEADEAADDADADEAL$DEA|$DAADAAEEDt$ACEAEEEAADEAЉ$   AEEEAAAEAEAEAEEEAEAEEEEAAD$   ECEEAAEEAADL$X\$TG4EA1EEDt$\ADt$dl$dEEAAً\$1A1A1މT$`T$DT$DT$LD$   Dt$t1A҉$   A1DD$   !D$   Dt$(AA1ډE!DDt$h1DD1E1։$   D1Љ$   D$   l$<D1Dt$lD$hDd$x1ЋL$XDl$ՉD$lA1։艬$   D$   !DDt$pD1DT$8A1ĉ$   D$   Dd$A!AA1ҋT$|D11$   L$\$   T$@D1щ$   1D!щ݉$   1D!D1T$p$   D1D$   1A1ډ$   D$   EAADAAFT$ DT$tE1L$tAG*EADT$xEF41\$xADt$|D$   1L$|l$0DT$@$   BD$DD1D$Dl$DT$@AAD1L$@G"AAF$"D$   AAD1$   D$   D$   D1$   E1D$   D$   E1D$   EE!DDd$ D1EA1A!A1D\$ AD\$TE1ED$   E1D$   E1E1D$   D$   D$   Dd$4A1D$   AEE!DD\$11A1A!DED1A1D$   D$   D$   A1A1D$   D$   EDD$HA1D$   AAE!EEA1ЋT$$D!AӋ$   AA1ËD$,D3\$PD1D$   $   $1ЉD$3D$FD$D1Љ$   D$`D1D$D3D$,D3D$D#$   D,$D1<$E1D,$DD$DA1D1$   DD$HDl$$Dn@DFDDl$(D#$   D3$   DnHDl$LDnLD$   D1D#l$d$   l$4Dl$Dl$D1l$D$   DD$   $   #l$l3l$hE1DD$HD$   E1D3D$hDl$LDl$D$   DD$<D   Dl$8D   D$   D3D$ D   A!Dl$,D$   L$,DD$4D$   D1D#$      E1ŋ|$Dl$8Dl$ DT$   $   E1#|$pDl$ D$   E1DD$<D$   D1D$DT$E1D$   DT$hDT$D   DT$0D   ADE1Dl$tD1׉|$DD$   E1DL$tDL$TD1ǉ$   |$D1DD$|$   DD1D1DD$X|$|ADADD1   DL$\ً$   D$   D$   AA1A1ً$   D  DL$`D1A1~DNDL$1׋$#\$$E1E1AE1DND$   DFD$   D11~ |$PV$D1$   11ЉV(T$DF,DDL$d1D11F0DV41\$(1D1#\$A1F8DF<D$   D1DL$HD1EAD1A1DnTFPD$   |$L$   $   E1ADA1ED1D\$ A1ǉFXDD~\D$   D1A$   A1ŉF`E1DndDl$DD$   D1E!AA1ƉFhDvlAދ\$lA1DD$   11FpVtDD1Dl$81D1ED$   A1ĉFxD1ȋ\$4E113D$,Df|1ŉ   D1D$      1É      DD1DD$   D1D1A1ŉ   D   DD1A1D   Dl$pl$hT$<D$      D1DD$0A$   1E1E!DT$t1   DD|$D#|$A   DA1Ћ$   D1D$   A1ǉ   D$D   D|$xA1E1A1AD1D1D      DD111   DDt$@D1   D1Ћ$   D1A1   D   11   D$|   T$11ȉ      D11      H  []A\A]A^A_AT   IHUHSH        H0H|$HuH   HuH|$   Ӌ$H|$(Ht$   ЉD$D$ЉD$H|$,Ht$   LH|$H        H0[]A\AVI        I        AUATU.3/SD^Df.D3_@HAA3H        EED^A3_GF3E3AH        3D3OELF3E3A1E1D13^EEDfALGG3EA^AD3WEAF3DGF3AAD3OD3EF3E3E1AD1E1AE1DA.EGG3AADVD3_ EAHF3EGF3EAD3O$D3ELF3E3E1AE1A1DE1EDfD^AC3EA3_(EEALB3EGF3EA3D3O,ELF3E3A1D1D1AD1DA.^GG3AAD3W0AEAHF3DGF3AAD3O4D3EF3E3E1AE1E1EE1EADfEGG3EADVD3_8EALF3EGF3EAD3O<D3ELF3E3E1AA1D1E1ˉ.AD^_@!D1ۉ^oD	D1.DoLDHE	E1DnD_HE!AE1AAD^G$G3$AAD3gPAEAF3$DGF3AAD3OTD3$EF3E3E1AE1E1EEE1ADnDfGG3EAD3WXEEALF3EGF3EAD3D3O\ELF3E3E1AD1A1AE1DA.HGG3AADVD3_`ELF3ED3DGD3DD3OdD3E3E1AE1E1DE1EDnD^AC3EA3_hEEALB3EGF3EA3D3OlELF3E3A1D1D1AD1DA.^GG3AAD3WpAEAHF3DGF3AAD3OtD3EF3E3E1AE1E1EE1EADnEGG3EADVD3_xEALF3EGF3EAD3O|D3ELF3E3E1AA1D1E1ˉ.AD^   !D1ۉ^   	D1.D   DHE	E1ADfD   E!AE1AAD^GG3AAD3   EF3DD3AGF3AAD3   EF3E3E1AE1E1E1EEADfDVG,G3,EAD3   EEALF3,EGF3EAD3,D3   ELF3E3E1AD1A1AE1DA.HGG3AADnD3   ELF3ED3DGD3DD3   D3E3E1AE1E1EE1EADfD^GG3EAD3   LELF3ED3DGD3DD3   D3E3E1AD1E1E1D.DVAC3A3   AEEAHB3EGF3EA3D3   ELF3E3A1E1D1D1EEADf^GG3EAD3   DEGLF3AAD3F3D3   D3E3E1AE1D1E1.DND3   Df3   nDND&^[]A\A]A^AVI        I        AUATU.S3   D^Df.D3   @HAA3H        EED^A3   GF3E3AH        3D3   ELF3E3A1E1D13^EEDfALGG3EA^AD3   EAF3DGF3AAD3   D3EF3E3E1AD1E1AE1DA.EGG3AADVD3   EAHF3EGF3EAD3   D3ELF3E3E1AE1A1DE1EDfD^AC3EA3   EEALB3EGF3EA3D3   ELF3E3A1D1D1AD1DA.^GG3AAD3   AEAHF3DGF3AAD3   D3EF3E3E1AE1E1EE1EADfEGG3EADVD3   EALF3EGF3EAD3   D3ELF3E3E1AA1D1E1ˉ.AD^   !D1ۉ^   	D1.D   DHE	E1DnD   E!AE1AAD^G$G3$AAD3gxAEAF3$DGF3AAD3O|D3$EF3E3E1AE1E1EEE1ADnDfGG3EAD3WpEEALF3EGF3EAD3D3OtELF3E3E1AD1A1AE1DA.HGG3AADVD3_hELF3ED3DGD3DD3OlD3E3E1AE1E1DE1EDnD^AC3EA3_`EEALB3EGF3EA3D3OdELF3E3A1D1D1AD1DA.^GG3AAD3WXAEAHF3DGF3AAD3O\D3EF3E3E1AE1E1EE1EADnEGG3EADVD3_PEALF3EGF3EAD3OTD3ELF3E3E1AA1D1E1ˉ.AD^_H!D1ۉ^oL	D1.DgDDHE	E1ADfD_@E!AE1AAD^GG3AAD3W8EF3DD3AGF3AAD3O<EF3E3E1AE1E1E1EEADfDVG,G3,EAD3o0EEALF3,EGF3EAD3,D3O4ELF3E3E1AD1A1AE1DA.HGG3AADnD3_(ELF3ED3DGD3DD3O,D3E3E1AE1E1EE1EADfD^GG3EAD3W LELF3ED3DGD3DD3O$D3E3E1AD1E1E1D.DVAC3A3_AEEAHB3EGF3EA3D3OELF3E3A1E1D1D1EEADf^GG3EAD3ODEGLF3AAD3F3D3GD3E3E1AE1D1E1.DND3'Df3_nDND&^[]A\A]A^AVI        I        AUATU.3/SD^Dn.D3_@HAA3H        EED^A3_GF3E3AH        3D3OELF3E3A1E1D13^EEDnALGG3EA^AD3WEAF3DGF3AAD3OD3EF3E3E1AD1E1AE1DA.EGG3AADVD3_ EAHF3EGF3EAD3O$D3ELF3E3E1AE1A1DE1EDnD^AC3EA3_(EEALB3EGF3EA3D3O,ELF3E3A1D1D1AD1DA.^GG3AAD3W0AEAHF3DGF3AAD3O4D3EF3E3E1AE1E1EE1EADnEGG3EADVD3_8EALF3EGF3EAD3O<D3ELF3E3E1AA1D1E1ˉ.AD^_@!D1ۉ^oD	D1.DgLDHE	E1DfD_HE!AE1AAD^G,G3,AAD3oPAEAF3,DGF3AAD3OTD3,EF3E3E1AE1E1EEE1ADfDnGG3EAD3WXEEALF3EGF3EAD3D3O\ELF3E3E1AD1A1AE1DA.HGG3AADVD3_`ELF3ED3DGD3DD3OdD3E3E1AE1E1DE1EDfD^AC3EA3_hEEALB3EGF3EA3D3OlELF3E3A1D1D1AD1DA.^GG3AAD3WpAEAHF3DGF3AAD3OtD3EF3E3E1AE1E1EE1EADfEGG3EADVD3_xEALF3EGF3EAD3O|D3ELF3E3E1AA1D1E1ˉ.AD^   !D1ۉ^   	D1.D   DHE	E1DnD   E!AE1AAD^G$G3$AAD3   AEF3$DD3$AGF3AAD3   EF3E3E1AE1E1EEE1ADnDfGG3EAD3   EEALF3EGF3EAD3D3   ELF3E3E1AD1A1AE1DA.HGG3AADVD3   ELF3ED3DGD3DD3   D3E3E1AE1E1DE1EDnD^AC3EA3   EEALB3EGF3EA3D3   ELF3E3A1D1D1AD1DA.^GG3AD3   AAEAHF3DGF3AAD3   D3EF3E3E1AE1E1EE1EADnEGG3EADVD3   EALF3EGF3EAD3   D3ELF3E3E1AA1D1E1ˉ.AD^   !D1ۉ^   	D1.D   DHE	E1ADfD   AE!AE1AAD^GG3AAD3   EF3DGF3AAD3   D3EF3E3E1AE1E1E1EEADfDVG,G3,EAD3   EEALF3,EGF3ED3,D3   AELF3E3E1AD1A1AE1DA.HGG3AADnD3   ELF3ED3DGD3DD3   D3E3E1AE1E1EE1EADfD^GG3EAD3   LELF3ED3DGD3DD3   D3E3E1AD1E1E1D.DVAC3AA3   EEAHB3EGF3EA3D3   ELF3E3A1E1D1D1EEADfLGG3EA^D3   EDF3AGD3AF3D3   D3E3E1AE1D1E1.DND3   Df3  nDND&^[]A\A]A^AVI        I        AUATU.S3   D^Dn.D3  @HAA3H        EED^A3   GF3E3AH        3D3   ELF3E3A1E1D13^EEDnALGG3EA^AD3   EAF3DGF3AAD3   D3EF3E3E1AD1E1AE1DA.EGG3AADVD3   EAHF3EGF3EAD3   D3ELF3E3E1AE1A1DE1EDnD^AC3EA3   EEALB3EGF3EA3D3   ELF3E3A1D1D1AD1DA.^GG3AAD3   AEAHF3DGF3AAD3   D3EF3E3E1AE1E1EE1EADnEGG3EADVD3   EALF3EGF3EAD3   D3ELF3E3E1AA1D1E1ˉ.AD^   !D1ۉ^   	D1.D   DHE	E1DfD   E!AE1AAD^G,G3,AAD3   AEAF3,DGF3AAD3   D3,EF3E3E1AE1E1EEE1ADfDnGG3EAD3   EEALF3EGF3EAD3D3   ELF3E3E1AD1A1AE1DA.HGG3AADVD3   ELF3ED3DGD3DD3   D3E3E1AE1E1DE1EDfD^AC3EA3   EEALB3EGF3EA3D3   ELF3E3A1D1D1AD1DA.^GG3AAD3   AEAHF3DGF3AAD3   D3EF3E3E1AE1E1EE1EADfEGG3EADVD3   EALF3EGF3EAD3   D3ELF3E3E1AA1D1E1ˉ.AD^   !D1ۉ^   	D1.D   DHE	E1DnD   E!AE1AAD^G$G3$AAD3gxAEF3$DD3$AGF3AAD3O|EF3E3E1AE1E1EEE1ADnDfGG3EAD3WpEEALF3EGF3EAD3D3OtELF3E3E1AD1A1AE1DA.HGG3AADVD3_hELF3ED3DGD3DD3OlD3E3E1AE1E1DE1EDnD^AC3EA3_`EEALB3EGF3EA3D3OdELF3E3A1D1D1AD1DA.^GG3AD3WXAAEAHF3DGF3AAD3O\D3EF3E3E1AE1E1EE1EADnEGG3EADVD3_PEALF3EGF3EAD3OTD3ELF3E3E1AA1D1E1ˉ.AD^_H!D1ۉ^oL	D1.DgDDHE	E1ADfD_@AE!AE1AAD^GG3AAD3W8EF3DGF3AAD3O<D3EF3E3E1AE1E1E1EEADfDVG,G3,EAD3o0EEALF3,EGF3ED3,D3O4AELF3E3E1AD1A1AE1DA.HGG3AADnD3_(ELF3ED3DGD3DD3O,D3E3E1AE1E1EE1EADfD^GG3EAD3W LELF3ED3DGD3DD3O$D3E3E1AD1E1E1D.DVAC3AA3_EEAHB3EGF3EA3D3OELF3E3A1E1D1D1EEADfLGG3EA^D3OEDF3AGD3AF3D3GD3E3E1AE1D1E1.DND3'Df3_nDND&^[]A\A]A^ÉHH=   t=   tu$H        H        
H        SAHHHVN1V1V1V$F1V1V1N	D$F1N
1V1ND$F1N11A   D$tA   tAuHH        HH        Ћ$CSD$SCSSD$SCSS	D$S
CSSSH[SAHHHVN1V1V1V$F1V1V1N	D$F1N
1V1ND$F1N11A   D$tA   tAuHH        HH        Ћ$CSD$SCSSD$SCSS	D$S
CSSSH[               p pp, ,,   W WW  # ##k kkE EE  O OO    | || > >> ^ ^^  9 99 ] ]] Z ZZQ QQl ll    t tt+ ++    4 44v vvm mm    : ::  2 22 S SS    z zz$ $$ ` ``i ii   b bbT TT  d dd      u uu  	 		 ݇   ͐ s ss   R RR   Ɓ o oo c cc    ) )) / // x xx  q qq ԫ   r rr   6 66* **< << @ @@ ӻ C CC  w ww   ' ''  5 55 A AA   ! !! N NNe ee     0 00_ __    G GG= ==  V VVM MM f ff - --       L LL ~ ~~  1 11  X XXa aa     " ""D DD      P PP } }}  [ [[    H HH    ? ?? \ \\ J JJ3 33g gg    & &&7 77; ;; K KK . ..y yy n nn    Y YY j jjF FF % %%B BB   U UU 
 

I IIh hh8 88 ( (({ {{     Ǟ 88 8AA A vv v ٓ `` ` rr r «  uu u WW W     ɢ   Ґ    '' '  II I CC C\\ \  >> >  gg g  nn n // / ⅅ  SS S  ee e ꣣    쀀 -- -kk k ++ +66 6  ņ MM M33 3 ff fXX X :: :		 	  xx x BB B  && & aa a ?? ?;; ;    Ԙ  苋   

 
,, ,  oo o     NN N   yy y  "" " YY Y  == =   tt tTT T00 0~~ ~ (( (UU Uhh hPP P   11 1 ** *   pp p 22 2ii i bb b    $$ $    EE E ss smm m   JJ J .. .   %% %HH H   {{ {  ο  qq q)) ) ll l dd d cc c  KK K   __ _     FF F 77 7^^ ^GG G   [[ [  ZZ Z << <LL L 55 5 ## # ]] ]jj j  !! !DD DQQ Q }} }99 9  ܪ || |ww wVV V    44 4   RR R      齽   䡡     zz z  @@ @OO O  XXX  ggg NNN      jjj   ]]]  FFF   '''  222 KKK BBB     :::  %%% {{{  qqq ___    >>>  ||| ```      444 MMM  rrr     zzz           555    aaa ZZZ  $$$ VVV @@@  ccc 			 333     hhh   


  ooo SSS bbb  ...   (((  ttt   666 """ 888 ddd  999 ,,,  000  DDD    eee  kkk  ### HHH   QQQ     UUU  AAA  CCC   ///   <<< +++               GGG         ~~~  )))       !!! fff     ;;;     777  LLL  nnn  vvv  ---   &&& }}}  \\\   OOO  ???  yyy  RRR   mmm ^^^  iii   111      uuu  JJJ WWW   EEE     sss    YYY  lll  TTT  xxx ppp  III  PPP   www    ***  [[[     ===  ppp  ,,,   '''     WWW 555    AAA ###  kkk  EEE   !!!   OOO NNN  eee       |||    >>> 000  ___ ^^^      999   GGG ]]] ===   ZZZ  QQQ VVV lll MMM    fff    --- ttt  +++          LLL   444 ~~~ vvv  mmm   111      XXX ::: aaa     222    SSS   """  DDD     zzz  $$$    ```  iii PPP    }}}   bbb  TTT [[[     ddd        HHH   uuu      			 ???    \\\    JJJ  333 sss ggg       RRR   &&&  777  ;;;   ooo KKK   ccc ...  yyy    nnn   )))    ///   YYY xxx   jjj  FFF qqq   %%%  BBB     rrr   UUU    


 666 III *** hhh <<< 888   @@@ (((  {{{   CCC      www   CAMELLIA256 CAMELLIA192 CAMELLIA128 1.2.392.200011.61.1.1.1.4 0.3.4401.5.3.1.9.41 0.3.4401.5.3.1.9.43 0.3.4401.5.3.1.9.44 1.2.392.200011.61.1.1.1.3 0.3.4401.5.3.1.9.21 0.3.4401.5.3.1.9.23 0.3.4401.5.3.1.9.24 1.2.392.200011.61.1.1.1.2 0.3.4401.5.3.1.9.1 0.3.4401.5.3.1.9.3 0.3.4401.5.3.1.9.4                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      LICENSE=GPLv3+  LICENSE=GPLv3+  crypto gcry_camellia                                                                                                                                                      3            	      3                                  	                      
                      @      `      1     `       `       O     N      N      e                      r             `            "      9	           <+      9	                                                       <                 l!                                      uM      N      /    3      9      A           `       _    5M      @       p    u4      `       grub_mod_init grub_mod_fini camellia_decrypt256 _gcry_cipher_spec_camellia192 Camellia_DecryptBlock grub_memmove _gcry_cipher_spec_camellia256 camellia_encrypt128 camellia_decrypt128 grub_cipher_unregister _gcry_burn_stack camellia_setup128 camellia_setup192 grub_cipher_register Camellia_EncryptBlock camellia_setup256 _gcry_cipher_spec_camellia128 Camellia_Ekeygen camellia_encrypt256     	                     !                     4                     L                     l                                                                                                                                                                                                                                    "                    1                                       	                                      A                    4                   >                                                          !                    !                    "                   "                    I"                   "                   @+                   J+                    +                   +                   y4                   4                    4                   4                   @                   @                    "A                   \A                   RM                    ^M                    jM                    *N                    9N                    xO                    O                                                              0             V       8             +       @                     `                    p             p                   V                    +                                                                                V                    +                                         $       0            >       @            R       P            f       p            z                                                                                                                                            .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @       P                                   @                h                                &                     `P                                    .      2               ``      #                            B                     a                                   =      @               l                                H                     c                                    X                     c                                    ]                      c                                    f                      c                                                          c                                	                      xf                                                         8o      o                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/macbless.mod                                                                   0000600 0001750 0001750 00000011340 13417732100 0015416 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   ATUHS   HIHzHH        Ѕt^E trIT$t-t&xDAp y GAF9uHH̍HP FqQ F9uHEI$E <AD$[]1A\AVAUATUSHH   AtH           u	u"H           1H           1I      H;I        Aօ   E1f<$BDuOf|$|H+   fT$~D$IDl$   H;	fAEA1McIuAօuS$f=+Htf=XHtH        	   GEtl$Tl$PIuI   1H;H        H   []A\A]A^AVH        AAUIATIUSH HHu"H        	   1H        M  HxH        H        ӅtH}H        ӅuLH        Há        H   HH        HDH9t8/u	H@ /   HH        HD$    t-  HH        HD$; HL$H        HE"HCHL$H        H        HD$LU|$ HH        u$LH           1H        "1҃|$Dt$LH        H []A\A]A^t H           1H           AVH        IAUIATUSH:HHH        о)   II} H        HHXuI] HI        t
; tHuEMtLH        HAHA[]A\A]A^H           1H        IF1HLxtH        ЉLH        HAՉ[]A\A]A^SE1H        H        H        H        H        E1H        H        H        H        H        [H        SH        H        H8H        H8H[can't bless a directory for mactel can't bless a file for mac PPC not a HFS+ filesystem / no suitable FS found hfsplus hfs file `%s' not found one argument expected invalid argument Bless FILE of HFS or HFS+ partition for intel macs. FILE mactelbless Bless DIR of HFS or HFS+ partition for PPC macs. DIR macppcbless    LICENSE=GPLv3+  disk macbless                                                                                                        {                  -                                                                                                                     )                      6                      G            9      \                      h                                                                                                                                                                                                      	                                          "                     ,                 grub_mod_init grub_mod_fini grub_strlen grub_strrchr grub_device_open grub_mac_bless_inode grub_strdup grub_file_get_device_name grub_disk_read grub_errno grub_register_command_prio grub_unregister_command grub_strcmp grub_strchr grub_disk_write grub_device_close grub_fs_probe grub_error grub_free grub_mac_bless_file                                                        #                                                            B                                                           Z       !                    6            o       @                    T            w       g                    u                             
                                           X                                                           X       -                    >            {       O                    p                                                                                                                                           %                    E                   V                    r                                                                                                                                                                                         ,                                    0                                              )                   8                     .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                             @       I                                   @               
            	                    &      2                     <                            5                                                          ;                                                         K                                                         P                                                          Y                            	                                                                
   
                 	                      	      @                                                   x      b                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/lspci.mod                                                                      0000600 0001750 0001750 00000016140 13417732100 0014742 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   PHG1H                 H        1ZAWAщDA1AVAUATI        UH        SHH<$t$H        T$4$պ   H<$t$AԺ  ƉH        @HQHt9u9yt6HH        HQHt9u	y   tHH        1H        ՄtH        1H        1H           H        I        8    H<$t$AԺ  AAރM   t&sLH        H1HcH   u]H<$t$A׺  HAvH        H H        A^L	HcH        HDHH7sH        H        LH        HcHDHH1Ճ'H1[]A\A]A^A_1PI        I        H        H        H        H        H        ZH        H8H                           i                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     	               	              	              	              	              	              
               
                                                                                         0              @                                                                                                                                                                                                                                    prefetchable non-prefetchable %02x:%02x.%x %04x:%04x  [%04x] %s  [PI %02x] 
 	IO space %d at 0x%llx
 	64-bit memory space %d at 0x%016llx [%s]
 	32-bit memory space %d at 0x%016llx [%s]
 List PCI devices. [-i] lspci iospace show I/O spaces SCSI Controller IDE Controller Floppy Controller IPI Controller RAID Controller SATA Controller Mass storage Controller Ethernet Controller Token Ring Controller FDDI Controller ATM Controller ISDN Controller Network controller VGA Controller XGA Controller 3D Controller Display Controller Multimedia Video Device Multimedia Audio Device Multimedia Telephony Device Multimedia device RAM Controller Flash Memory Controller Memory Controller Host Bridge ISA Bridge EISA Bride MCA Bridge PCI-PCI Bridge PCMCIA Bridge NuBus Bridge CardBus Bridge Raceway Bridge Unknown Bridge Communication controller System hardware Keyboard Controller Digitizer Mouse Controller Scanner Controller Gameport Controller Unknown Input Device Generic Docking Station Unknown Docking Station 80386 Processor 80486 Processor Pentium Processor Alpha Processor PowerPC Processor MIPS Processor Co-Processor Unknown Processor USB Controller Serial Bus Controller Wireless Controller I2O IrDA Controller Consumer IR RF-Controller Satellite Communication Controller Network Decryption Entertainment Decryption Unknown Decryption Controller Digital IO Module Unknown Data Input System    LICENSE=GPLv3+  extcmd lspci                                                                                                                         _      M                                                                          	                      
                                       4                      @                      V                      g                       grub_mod_init grub_mod_fini grub_unregister_extcmd grub_printf grub_pci_make_address grub_pci_iterate grub_register_extcmd     	             ,                                                E                     P                     g                                 P                    P                                         6                   A                           %            L       6                   @                                N                                                         f                                             (                   d                    n                   x                                                                                                                                                                                   X                     h                    x                                                   "                   1                   A                   Q                   i                   }                                                             (                  8                  H                  X                  h                  x                              ,                  D                  `                  r                                                                                                                  (                  8                  H                  X                  h                  x                               /                  H                  X                  l                  v                                                                                                (                  8                  H                  X            %      h            5      x            G                  V                  c                  u                                                                                                                                    (                  8                  H            +      X            I      h            [       .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                        @                                          @               (                                +                                                        &      @                     `                          3      2                     u                            B                                                          H                                                         X                                                         ]                                                          f                                                                                (                                	                            |                                                    p      o                                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/gfxterm_background.mod                                                         0000600 0001750 0001750 00000011070 13417732100 0017500 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   ATH        AUHSHH_1Ѕt        w  H        H8Ht9H        H        H     H             H        E  Hu H        H        С           ; u-Ht$H        HH        H4$Ht$"H{H        H        Ѕth19ƋT$uHtA19tNA   H|$H        H        8 u(H        H8H        HD$H        H        H8 tH            H        H             1H[]A\tH           1H        S1HH        ЅuH        H;H        Ѕt        [H        H8H        HtH        H        H     H        H            1[I        PI        H        1H        H        H        H        H        E1H        H        H        H        H        ZPH        H8H        H        H8H        Z        m                                                                      stretch one argument expected Load background image for active terminal. [-m (stretch|normal)] FILE background_image Set background color for active terminal. COLOR background_color mode Background image mode. stretch|normal        LICENSE=GPLv3+  video_colors bitmap_scale gfxterm extcmd video bitmap gfxterm_background                                                                                                                             n                        4                                                        	                      
                                       5                      U                      l                                                                                                                                                                                                    8                     C                     W                     l                      grub_mod_init grub_mod_fini grub_gfxterm_background grub_gfxterm_video_update_color grub_video_bitmap_load grub_unregister_extcmd grub_video_bitmap_destroy grub_gfxterm_get_dimensions grub_errno grub_video_parse_color grub_register_command_prio grub_unregister_command grub_strcmp grub_gfxterm_schedule_repaint grub_error grub_video_get_info grub_register_extcmd grub_video_bitmap_create_scaled                          %                     4                     F                     R                     c                    s                                                                                                                                                                        *                    6                    E                    R                    c                    m                    }                                                                                                                                                                                                                          /                    ;                    N                    Z                   p                    {                               I                                       d                                                                             u                                                                                                                                               %                                                                                  .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                        @       0                                   @                	                                +                     p      P                              &      @                      H                           3      2                                                  B                                                          H                                                         X                                                         ]                            6                              f                                                                                                                	                                                                               H      o                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/legacy_password_test.mod                                                       0000600 0001750 0001750 00000037050 13417732100 0020060 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    :          @     @   UHAUI        ATE1SH        WHHs{A1;   R@   H        I        ATI        H        I        @I1H  AYI^uHe[A\A]]H        H        H        H        H            legacy_password_test Bad password check (%d) grub_legacy_check_md5_password (vectors[i].argc, vectors[i].args, vectors[i].entered) == vectors[i].exp tests/legacy_password_test.c legacy_password_test --md5 $1$oaL$eyrazuM7TkxVkKgBim1WH1 $1$naL$BaFO8zGgmss1E76GsrAec1 $1$maL$OKEF0PD2k6eQ0Po8u4Gjr/ hello               hello                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         hi                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             hillo                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          hellw                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          hell                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           h                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              hello                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         hell                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           hello                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         hell                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           hi                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            hello                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               LICENSE=GPLv3+ functional_test legacycfg legacy_password_test                                                                                                                                                                                                           	                      
                                       0                      E                      d                       grub_mod_init grub_mod_fini grub_test_register grub_test_unregister grub_legacy_check_md5_password grub_test_assert_helper                                              >                    H                     T                    ^                     h                                                                                                                                          1                  1                   1      0            1      @            1      P            1      `            `1      p            @1                    1      $             1      (            0      ,            0      0                   0                   0                   0                    1                   1                    1                   (1                   @1                   H1                   `1                   h1                   1                  1                  1                  1                  1                  1                   .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                           @               H6                                 &                                                         .      2               %                                  B                     @      1                             =      @               h7                                H                      4                                    X                     /4                                     ]                      /4                                    f                      I4                                                          `4      h                          	                      5      |                                                    8:      o                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/lssal.mod                                                                      0000600 0001750 0001750 00000007410 13417732100 0014746 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   UH        HAWAVAUATE1SHL(E2-fEĈ-fEEȚEI]pE EːE'E?EEMDI;EhX     HH}H        Ѕ,  H[I        H        sKAKSH        DCs
1AHsH        1A1Hs8H        ADsA`  L{`A`E1C
A9  A7@h  H        $IOIWH        Iw1AԸ0   G  IGIwH        H    1APAGH        AOAWAwPEO1EGAZY   Aw1H        AAGtH        1H        AGtH        1AAGtH        1AAGtH        1AH        1ATAWAwH        IOMG1AԸ    DIWAwH        AwIWH        1AԸ   H        1A9IA9v/A)AWHAH        1H        He1[A\A]A^A_]H        PE1H        H        H        H        H        ZH        H8H                                                             SAL rev: %02x, signature: %x, len:%x
 nbr entry: %d, chksum: %02x, SAL version A: %02x B: %02x
 OEM-ID: %-32s
 Product-ID: %-32s
  Entry point: PAL=%016lx SAL=%016lx GP=%016lx
  Memory descriptor entry addr=%016lx len=%luKB
      sal_used=%d attr=%x AR=%x attr_mask=%x type=%x usage=%x
  Platform features: %02x  BusLock  IrqRedirect  IPIRedirect  ITCDrift 
  TR type=%d num=%d va=%016lx pte=%016lx
  PTC coherence nbr=%d addr=%016lx
  AP wake-up: mec=%d vect=%lx
  unknown entry 0x%x
 SAL not found
 Display SAL system table.  lssal   LICENSE=GPLv3+  lssal                                                                                                                              D            *                                                              	                                       3                      N                      Z                      r                       grub_mod_init grub_mod_fini grub_efi_system_table grub_register_command_prio grub_printf grub_unregister_command grub_memcmp             
           s                                                                            &                    `                    o       %                    :                   _                   |                                                 8                                      A                  N                  [      !            e      <            g      b                  w                                                                                                                                   
                                                           ,                    9                                  0                   U                                      0                    X      (             l       .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .modname                                                                                         @       C                                   @                            
                    +                           0                              &      @               
             
                    3      2                                                 B                                                          H                                                         X                                                         ]                                                                                      h         
                 	                      P      ~                                                    `      f                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/luks.mod                                                                       0000600 0001750 0001750 00000022430 13417732100 0014605 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    !          @     @   U1>   1HAWLAVIHAUI1ATSH  Hǅ    LH        fPЅ  H        H        ЋH        	   ȉH=   HXt  H1   H   H   ʁq uʉH9HBH0H=  uHXH        Há        H  I~(HtH        IE1H        MLHH        M   IEI~( I6I        H        HD1ALI        AԾ   LH        ЅuHAH           X  HǅT    LHL   H   H@AD$=q   DTH        H        d  1H        I        AEL$HHH        AD8I}XH XHHHD8QA    LH        ^_  1H        H        u  H        AHXH LH        Ѕ3  EL$$At$ 1ILH        AEɉLXLL8ЅL8t XHH        ҋX  1LHLH        Ѕ   ED$$I}XHHXHH        AEЅu1H        H          H        A׋D$LlI}XjA    L8H@HARAɉH        ZL8Yt"XHH        ҋX   H   LHppH        Ѕt*H        H          H        1AhTH        1H        HXLHH        ЅAHH        tDH        :14TI0TH           1H        He[A\A]A^A_]AWAVAUATUSH  H|$  1HL$   1P  H|$H        Ѕt  H               H           H        H$   ՅHl$  f$      H$   H$h  1Ҋ-tHHH(uH     H$   Ht1t*D@DJx ADB GAAF9uHHȍpP FrJ F9tBIL$   H        H        u   H        1I        A  H        H$       H|$4H$       H|$UD$T H$      H|$vD$u Ƅ$    H|$4H        HIHT$4H        H\$!  HI        AHH  $,  ʁ   v"H           1H          H        H|$UH        E1Յ>  H        H|$UAՅ"     H        H|$UHD$H        Ѕ}     H        H|$UՅA     H        H|$UՅupLAHI  HHxtH        HH-I$A   Hl$YHx   H        HI$HPH        |     H        H|$UՅu9HA   Hx  H        HHH        HP)  HH        HT$UH          HD$LH        E1HIǹ   HT$  HH          Hl$ZA   E1   H        HHD$I        Ѕ`     H        HAׅ/     H        HAׅ      H        HAׅ      H        HAׅt#HH        HH           =HH        HHHH        HH           1H        1  E1Hl$YHHPHBHuHuH           1H        HE1H@HDHH  wA   E1   E11E1E1   1E1L$$HT$H|$vH        HHT$L$$u#HH        LLHT$v	HD$(L$$0  HT$H        HHHX8$(  L$$HT$LD$(H|$HE(    DupMlHUPHELEXH        DmhLe@L}Hǅ  	   H+EH   H   H$   HE HD$H        H  HH  []A\A]A^A_H        H        H        H        H        Hu1'@t2HHHHɈGHH	ШuII)IvLL3LHIH1HHAHL9tDD2DHAWH        AVAUIATMUHHSH   Ht$HT$8HH  H} @
     L1HH        HD$HD$    HD$ID$HD$(H$   HD$0HD$(H9D$H          HLHt$HE1I        L1Hu HT$ IM9t_D   Ht$HH$   D$HAHU LH|$0HHAHu H$   HH        HNIIH뜃|$  twD   Ht$HH$   I        D$HALLc|$ H|$0Hu LHAH$   Ht$LHIOH        Le LHt$LJ<#AHD$Ll$Ht$(LHH|$8IHt$H        H1"   H   []A\A]A^A_ , Attempting to decrypt master key... key is too long Enter passphrase for %s%s%s (%s):  Passphrase not supplied Trying keyslot %d
 luks disk/luks.c PBKDF2 done
 candidate key recovered
 bad digest
 Slot %d opened
 access denied LUKS %s != %s
 Cipher %s isn't available invalid keysize %d ecb plain cbc- pcbc- xts- Unsupported XTS block size: %d lrw- Unsupported LRW block size: %d Unknown cipher mode: %s plain64 benbi Unsupported benbi blocksize: %d null essiv: Couldn't load %s hash Unknown IV mode: %s                                   LICENSE=GPLv3+ cryptodisk crypto pbkdf2 luks                                                                                                5                                                                                                          	                                       )                      @                      S                      ^                      q                                                                                                                                                                                
                     !                     6                     H                     T                     `                     l                     ~                                                                                                                                                                                                             grub_mod_init grub_mod_fini grub_strlen grub_cryptodisk_setkey grub_disk_get_size grub_puts_ grub_crypto_pbkdf2 grub_crypto_lookup_md_by_name grub_partition_get_name grub_memmove grub_cryptodisk_decrypt grub_disk_read grub_crypto_cipher_open grub_errno grub_memset grub_crypto_gcry_error grub_cryptodisk_list grub_password_get grub_zalloc grub_strcmp grub_malloc grub_real_dprintf grub_crypto_lookup_cipher_by_name grub_crypto_hash grub_error grub_list_remove grub_free luks_crypto grub_printf_ grub_list_push grub_memcmp AF_merge     E                     ]                    g                     y             '                                                                     (                    ?                   \         $           f            7       |         "                                           Z                    r       
                                      %                    >         
                                                                                                                                1         "           S                             '                                                                                                 "           K         &           [                   e                   t                                               $                                        "                                                                       g                                                 &                              v                                                                                                 
                    !                   9                    c                  t                                 $                                      (                  .               &                       3                  9      H         "           v         "                       >                  ]               "                       b               "           	                  	                    B	         "           f	            (      x	         &           	                  	                  	                  	                  	         "           
                  #
                    >
         "           M
                  ^
                     
                  
                                         $         "           W                                                                    #           !                    +         %           7         #           A         !                                                   _            K                                                                  _                             "                        .                            .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                          @               8      
      
                    &      2                                                 :                                                          5      @               @!      0       
                    @                     0                                    P                     ?                                     U                      ?                                    ^                      X                                                          `               
                 	                                                                                p!      g                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/lvm.mod                                                                        0000600 0001750 0001750 00000022700 13417732100 0014425 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    "          @     @   Ht5t-8u LN1AtDDEtHA8tHH1H        ATH        IUSHH?HHHt/LH        H| H޺
   H        H;[]A\[]1A\AWI        AVAUIATI        USHH        QALHAIH        HAHt|H(   H        I        HAօuHI        ;AׅtH;"u3HkLLHAօuB|#"t} "tH}]tH]1   Z[]A\A]A^A_AWAVAUATUHS1H  Ht$HHT$P1L$      HHI        AօG     H        H$   I        AԅtHHu  H$      H        Aԅuԋ$   H$   1H1DAЃǍrF   ttuƄ4   -rHH tHy8 Ƅ4    t"H           1H        o  HYPLyHI        H<AHHD$H  1IHLHAօ  L|$   H        IAԅuAt"H           1H          HL$HQ0HQ(HHA H9vH)H   HH        HD$H@(HD$hIA<$ u
I9u  I9sILI        H)H}AHIHD$O  HHt$hHH        LLH        HI        HD$0  AHuHD$h      Hp&   H|$rHt$hƄ$    Ht$r&   H        HHD$#  8   AHIHD$  HL$&   HHAHIu  &   Ht$rHLIG&   L|$hH        H        LH|$hHCH  HC(    HC     H        AHv  HHD$hHD$h8H        ЅtHD$hHD$h8}I  H   H        HHD$hIA<$ tII)I        I|$ALHt$hHHCAHCH        B  H        H|$hH   H&   HD$hH        HH   &   Ht$hHALHC&   H        H        H|$hHC0HtE}   H        Ht&HL$HHC    HD$hHA HC8HY HD$h    H{H        H~
  HD$h    H        H|$hH        H  HI        HD$hHD-HD$8HD$h8H        ЅtHD$hHD$h8}k  `   AH|$hHH; tHIH        I)LHHE	  K<$H|$8I        AHHE      H        HI        AHE HT$HH;T$0s
:-tH@-HHHP -HD$hLHL$hH9s
8-tHB-HH T   AHHEL     H        HAHE&   Ht$rHxAHEH        H@,/H        HuHD$h      HpHE&   H        Ht$hHx-H        HEH        H|$h@S HE(    H        H|$hE8H        D$DH|$hH        H|$h E_  Hk8H        D$(    HHE@D$(;E  H|$hH        I        AHHD$h  H        H|$hI        AHH|$h   H|$hH        AHCH|$hIHt  H        AHuHD$h    T  HxHD$   H        H|$hLpLu(I        Aօc  C    H        H|$hAԉC H|$h   tH        H|$hAԉC0{ HAH        HC(IH|$hH        HR  HD$     HD$hD$ ;C '  "   H|$hH        HuHD$h       HHD$hIA} "tIMI)H        I~HID$  HLHt$hH        ID$IMH        H|$hB0 HL$hH        HL$HAI$H|$h ID$ LED$ $   H        H|$hAօ  C   H        H|$hAԉC H|$h o  HAH        HC(H|$hAH  HE1HD$hD;c    "   H|$hH        HuHD$h    sHHD$hIA>"tIMI)H        I}H  LHHD$ Ht$hH        LD$ DINHC( HS(HL$hLBAU|$D '  C         H        H|$hAօ+  HT$hBH̀  z"  <5t<6t C   C    C   C   C   C   H        H|$hI        AԉC H|$h   H        H|$hAԉC0H|$h   { HAH        HC(H        H|$hH7  H	D$     I        HD$hC 9D$    "   H|$hAHHD$htHx"   A1HHD$htHx"   AHuHD$h    vHHD$hIA<$"tIMI)H        I~H   LHHD$XHt$hH        ЋT$ LD$XIL$C0 HHS(HL$hLBD$ '{u0H{(PH        HLgHw ЋC HHC(L`H8D$(THD$h    H{(H        3  1   H|$hHt}   H        HD$hHD$hHtAHHD$htH}H        HHL$HMHHA(HEPHi(H}H        H  HD$h    HD$I        Lh(M   1A;]   A1Mk8IE@B;l0    HD$Lx MtMHHIE@HT$(HL$ IJD0(HtAԅHL$ HT$(uIE@JD0(L|	M8MuIE@HJD0(H| uEHD$Lx(Mt7IE@HT$ IJD0(HtAԅHT$ uIE@JD0(L|MP3MmPH|$H        ЅtwH|$H        п&   H        H\$HHHtHHǺ&   H$   H        H        HC&   H|$HD$PH HD$5H|$H        H|$H        H|$H        1H  []A\A]A^A_H        H        HtHH H        H     HH        H        HH        H        status  = [ LABELONE LVM2 001 we don't support multiple LVM data areas  LVM2 x[5A%r0N*> unknown LVM metadata header id = " extent_size =  physical_volumes { pe_start =  logical_volumes { lvm/ lvmid/ VISIBLE PVMOVE segment_count =  segment start_extent =  extent_count =  type = " striped" stripe_count =  stripe_size =  stripes = [ , mirror" mirror_count =  mirrors = [ raid device_count =  raids = [ lvm                                           LICENSE=GPLv3+ diskfilter lvm                                                                                                  .      M            {                                                                                    	                                       )                      6                      D                      c                      p                                                                                                                                                                                                                                                                                              grub_mod_init grub_mod_fini grub_strlen grub_strncmp grub_strtoull grub_diskfilter_get_vg_by_uuid grub_memmove grub_disk_read grub_zalloc grub_strcmp grub_strchr grub_malloc grub_isspace grub_diskfilter_list grub_error grub_list_remove grub_free grub_strndup grub_diskfilter_vg_register grub_memcmp     A                     O                     t          
                                                               
                                                                                            %                                                                                                                                                                         G                   X       $                    \            ?                                       ?                   t                           5                                {                   K                                              0                    V            ?       ~            t                                                                              K                           U                    t                                                                                                   *                    I                   V            ?                                      t                           I                   \            ?       l                                                                     K                                              	                    #	                   2	            K       S	                   u	                  	                  	                    	            !      	            1      
            @      1
                    n
                    
                    
            ?       
            L                  K       8            N      Y            V                  f                                              #            ?       u            r                  w                  K                   1      9                  G                    m                                                    ?       b                                                                                .                    R                    `                    w                                                    ?                                                                                       0                    :                    Q                    e                   o                    }                                                                               .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                          @                     h
      
                    &      2                                                 :                     p                                     5      @               !      0       
                    @                                                         P                                                          U                                                          ^                                                                                               
                 	                      P      ,                                                   "      g                                                                                              boot/grub/x86_64-efi/lzopio.mod                                                                     0000600 0001750 0001750 00000027570 13417732100 0015155 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    +          @     @   ATH        I        UHSH_PH;H{@AH{HAHAHE     HE    []        A\UH        SHQG0HG HHH{@HCH    Hs0   HC@    H;H        H   C0ȅC0uHHH@H9HjHs4   H;Hu`C4;C0C4wS{ u	CuGHs8   H;Ht.C09C4u
C8C<1Hs<   H;HZ[]SHH HtHH        [H?s4H        HwHu[AWAVAUATUHSHHhLoPHGH4$I9E v3Iu(I} H        LH        Ѕ_  IE     I        AU0IE LeHL9wU  LAօy   I)IE8Mu<1HD$H2  AE0&  I}H t=E}0LH<$H        M)I9LGIuHLLL<$L)      A}4HD$I        AHIE@   AU4HI} H        AU4H9urI}H   H @w^HIU@Ht$ H        к   LH|$ H        Ѕt^'LH        ЅxE1AHIEHuIH           1H        H   1   H   A}0A9}4uIE@IEHAu4E1HI}@HL$H        ЅuI}HtCH @wAM0IUHHt$ H        к   Ht$H|$ H        ЅHI}@H        IE@    9Hh[]A\A]A^A_AWAVAUATUSH        HXH<$h   HH  P   HIuHH        ^  H$IH@L}PHE@EH   HEH        HEI?H t1H        H]PI        "   Ht$.H;AH"Ld$  I        	   H        H|$.AԅLd$}  fD$9f=?	l  fD$;f=P [  Dd$?I        AA   tC   H        AtC   H        AHCA   tC   H        AtC   H        AHCA   tH        
H        AHIt8HxHH        HI  HAT$(Ht$7   LAT$0E1|$OE1@tzH        HIH        u
L;  T$OHL$HH;HD$T$OHL$H9t
L   MtHL$HLLAT$0HL$LMtLAT$8   Ht$(H;HD$H   Mu1HI        H@HC(LePLA1҅H        yDyLAT$@   HH|$(HD$ЅuYHHL$LHT$хHL$HT$x7AD$0uHU@H        Hs(H;HAՅxHC     HOLH        L4$H        1     H        H        LLHL1HX[]A\A]A^A_H        H        H        H        H     H        H     H7Åu"H        H        1H        AWH7LT7AVAUIATIM)US1HHIHD$wL)LHI        HL)HH\L9  3IM)iƝB$HLD8fDMA9uHL)"  Hw@oA$H
  HLwwEI$HGID$HG	I<.   Hw
ELoHE H=   vIH-   AF LL$8HL$0   HT$(LT$   HD$LD$AHD$LL$8IvHL$0HT$(LT$ LD$A1MH<HM3L7M[L_HH)HwHEHLXHkIJ<MHtHt1EDHH9uHHsM_   L1uHLI4I+H6H1M9sHHHHHL)Hw6H   w-HHAHA@wAD	؈GI H @  L_wTHH!w
 )H!L H=   L]vH-   LAC E     HI{AsAH	H wHH	@77LIH	IAADH=   L^vH-   LAC     HI{AkA!H)HD$H9HH[]L)A\A]A^A_HHD71ATI        HUHSHH1H)H	  @AH޿	  HH?A1H9	  @Aԉ[]A\H        øP   H        H        H        H        DH  AWIA  AVAUATUSH Md  I  A  EFDI)A  A1HD$D1DyHDiAEEEEDEA$D4$؉A\$Dt$؉AT$Dt$AADD$Dt$ADDAl$Dt$AAAiDDa\$Dt$AYDDaT$Dt$AQDEDADǋD$)ȃAAHHHAt1HADA9uAAHtD1AA1AH []A\A]A^D	A_ø   H        H        H        H        U1H        SHHHD$    H$    Հ8 $   HH8   H$    $D$!f8 H$    $D$!ڃ8 H$    D$	$!H8    !19@@!u   0H9@H@!?uH[]ÅS\$D\$DT$ D$(tftu]tuTtuKAtAu@AtAu5tu,AtAu!AtAu0tu[H        [AWIME1AVIAUIATUHSHH8H|$Ht$Hv%H   A   LFKO#HLL9wLHuk  I9L\$(LT$ sLD$   1LH        L)L\$(LD$HMLLH        LLT$ II] MbHT$H)HT$H   wL9uHÍMHw@k]HLcw
MLIL} I   I\$vI   IC HT$     H        HT$E<$1HH9uHC HC L)1I] H8[]A\A]A^A_AWAVAUIATIUSH(H    /Ht$HL$@vLLHHcH  H           H  1ATAHH9uI,L   IHE7IoI  MuU Hmu	I   Mt1MH        @ƿ]  IVHvFND3H| HLH)H)HH6HH1wIFHHH   HkHHHHvE HHHCHt7E HuHH$EHCt
HHEHHCDu IvH   HLL}HH)EHH)BCM  I   I  HSLL}HHH)E HH)CBCAo1H  @I        A־     AAH  HSIGD0HhHI?^u LHSHL  HI        H)LpL}HcH)   HT$AHT$g  AuU Hmu	I   MtfM HSL}fH)ULH؃HH)AHuM Hmu	I   MtfM L}fH)H9;  H @  1MHT$@ƿ]  I        AHT$HH)H   IvHvENT3L2MLI)H)HM HLwIFHHH<   HkHHHHvHHHCHHuH	BHCt	HBHC@2Hz@3RHsS1ۊHL9uHAGHCtHSIGAOHSIGKLl$1I@H          HD$L)M9Ht
1H([]A\A]A^A_AWH7IAVIAUATIUSH(H$HHH    /HD$@)  LoHHcHvZH           V  HD$L)H9  H4$HEL)H9  1AtA4HH9uI/L  1H  @I        AԾ     AHD$H)H9H  H4$HEL)H9$  AE H1  IEHHhH;,$D   I?  I*  Ie  u HCILmL)HcH)H9  L9  Ht$H)H  @0H@s@CAmL;,$5  Ee ImIgM  1MH        @ƿk  HL$ID$H)H99  H4$IL$H)H9  HvFND#H| HLH)H)HH6HH1wILHH   HkHHLHvM HHHKH%  De IvHuHILmL)HcH)H9  L9  Ht$H)Ha  @0@3@p@s   u LHCHILmMD$H)LD$HcH)H9"  L9HD$       I        AHt$IHD$LD$H)L9    MAu$H;,$  E Hmu	I   MD fM HCLmfH)\MAu$H;,$e  E Hmu	I   MD fM AHILmL)fH)H9  H- @  H90  L9HD$"  MLD$k  @I        @ALD$H|$IpH)H9  HD$HH)H   HvEN\L0MLI)H)HM	HLwILHH<   HkHHLHv8HHH{H@8H@;uH@xH@{t	H@HC@0Hx@3@HsC1ۊHL9uHWAEHCtHIEAMIEHKIH+E HmuI   H;,$u   Md)M HuHHMHKtHHEHHCL)I_1Iȿ  @H        L)L;,$It7/LL)ILL)IL)I1H([]A\A]A^A_ÉLZO 

 2.05 lzop file corrupted crc32 adler32 lzopio lib/minilzo/minilzo.c Assertion failed at %s:%d
 2.05 Apr 23 2011                                                                                   LICENSE=GPLv3+ crypto lzopio                                                                                                                                                 #                                                        	                      
                                   /                                        :                      X           W      n     J                                                                                                                                    f      `                                                   2                                                                                                                       #                 1                                       E                     Q                 ]                     i                     y    b                                                                                                                                                                         grub_mod_init grub_mod_fini _lzo_version_date lzo_memcmp grub_crypto_lookup_md_by_name lzo1x_decompress_safe lzo1x_1_compress grub_memmove _lzo_config_check lzo_memset lzo_copyright __lzo_align_gap grub_file_seek grub_errno grub_file_filters_all grub_printf grub_file_read lzo1x_decompress __lzo_init_v2 _lzo_version_string grub_zalloc lzo_version grub_malloc grub_file_close __lzo_ptr_linear grub_file_filters_enabled grub_crypto_hash grub_error grub_free lzo_memcpy grub_memcmp lzo_adler32 lzo_memmove                  &                     +           K                     Y          +                                O            V       b                                                    V                   ?      C                    ~         %                                        )                    -                       V       *                    ;         *                                        )                    -                    +                    #           O         +                                                                                -                               *                    G                   `                                                                                                        %                    %           /         +                       V                   ?      G                    t         +                                        +                                                                             (                                      (                      )       &            ?       2                    w                  q                              
                   Z                   _                   Z                   _                                                                            "                             ;                                                    =                        "                                                      O                  $                  S                                    H                  W                                                                                     "       (             x      0                      .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                          @               #                                &                     $                                    .      2               3      k                             B                           P                              =      @               @+      H                           H                                                         X                                                          ]                                                          f                                                                                                                	                      !                                                         +      o                                                                                                                                                                      boot/grub/x86_64-efi/trig.mod                                                                       0000600 0001750 0001750 00000004040 13417732100 0014571 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @ 
 	  @?????O??>r>>=?=<B<;!;:9+9q876675S4h3t2y1v0l/Z.A-!,*)(`' &$#=" +]~	|
d	F$  nK*slp:tr&٠f2ӿҦєЊχΌ̭͘Pȏ%~Jľ;Q;{O, ,O{;Q;þJ~%ƏPʭ˘͇̌ΊϔЦѿ2fנ&rt:pls*Kn  $Fd	
|	~]+ ="#$ &`'()*!,A-Z.l/v0y1t2h3S475667q8+99:!;;B<<?==>r>>?O??????  $Fd	
|	~]+ ="#$ &`'()*!,A-Z.l/v0y1t2h3S475667q8+99:!;;B<<?==>r>>?O?????? @?????O??>r>>=?=<B<;!;:9+9q876675S4h3t2y1v0l/Z.A-!,*)(`' &$#=" +]~	|
d	F$  nK*slp:tr&٠f2ӿҦєЊχΌ̭͘Pȏ%~Jľ;Q;{O, ,O{;Q;þJ~%ƏPʭ˘͇̌ΊϔЦѿ2fנ&rt:pls*KnLICENSE=GPLv3+ trig                                                                                                                                                                                                         grub_trig_sintab grub_trig_costab  .symtab .strtab .shstrtab .text .rodata .data .module_license .bss .modname                                                                                      @                                      !                     @                                     )                     @                                     /                     @                                    ?                     O                                     D                      O                                                          X                                 	                      0      #                                                    S      M                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/macho.mod                                                                      0000600 0001750 0001750 00000024770 13417732100 0014727 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    8'          @     @  
 ATUH        SH0 HL'uH(H{0H{x uH{pH        H{xHMtLH        []        A\AWI        AVAUATUH   SH8Ht$AHI  1H(H@H@PH@HH@XH@(    I        H@p    H@0    H@x    @8    ǀ       AHQ      Ht$I>H        H t;H        8   HT$H           1I        A  |$   Dd$   I>AHA  McMkLAHI  HLI>H        L9uL1*LH        M:   t:  t0HD9|FurΉINrzINȅt̋rΉINPrzINXLH        ЋD$=uu-IF    HE@IF=utIFP    HE@IFX   H        H|$I        AԅuuIF    HE@IF   H        H|$AԅutIFP    HE@IFXL|$LH        LLLH        I~uH        tI~PLu9t5H           1H        I    LH        1H8[]A\A]A^A_ATH        AUHSHHt.HHDH        HHuHH        1[H]A\Ã>uF81AWAVIAUIATUSHAP8 K  H0 @  IHHH        HHC0u  H{@HIH        uH{0HC0    J  HCH;H  H        Ht@HS@LH;H        H;C@u$H{0ILH        HHsHH;CHt6H        8 u LH           1H        LHLHC0PHSPHC(HS HH;SHr8LH           1H        H{0HC0    HCUHk(HtE1AY[]A\A]A^A_H           1H        LHHAՅuEAHD;c|        Z[]A\A]A^A_Ã>u1~ t+~$ uu HBBN;sHRFF;v1AV1AUATUS>H  F$IHՅu	  S}  u-{$S9k  C)1HH}H        L  9s FAID$0HtXDH2I;L$Hv2H        8 uzHUH           1H        W{HH        H}IIt$I<$H        Ht%sLI<$HuH        L9y
      H} Dk$CDcLeA9rAII        MM9   H        LAօu<HEII     M9A$0	HUIk

ȉI1[]A\A]A^AUATUHSHH(HwH>  H?I        AH      Ht$H;I        AH      H        H|$H        Ѕu.D$ȉHC@D$ȉHHCH   C8      |$tH           1H        ~|$D$CH        H{ HHC(tbHCH;HpAHuH        8 u8HS Hs(H;AH;C u(HH           1H        HCH([]A\A]HWHtHGH)1ATUHSHwHHu![]A\H           1H        IH?H        HtVHSH+SLH;H        HKH+KH9t:H        8 u HH           1H        ѡ        1[]A\UH        HSHH(    L$Ht$LHT$D$    HT$H        Ѓ|$ uH           119M sH           H        H([]H(M$HT$Ht$LD$tA     HHH        H        С        H(HHH        D$    HT$H        ЋD$HÃ>u
H   H1AWAVIAUIATUSHAP    `  Hx U  IH   H        HHCx  H   HIH        uH{xHCx    Y  HCPH;H  H        HtLH   LH;H        H;   u*H{xILH        HH   H;   t6H        8 u LH           1H        LKLHCxPH S`PHCpHShH H;   r8LH           1H        H{xHCx    HCPUHkpHtE1AY[]A\A]A^A_H           1H        LHHAՅuEAHD;c`|        Z[]A\A]A^A_Ã>u:H~  t3H~0 uu'HBBHNH;sHHRHF HFH;vH1AV1AUATUS>H  HF0IHHu	  Lk M  Hu/H{0HS H9p  H)H{1H}H        R  IT$xI9Hs(LGHt/IL5 HI;$   wQH}H{HH        LtIt$PI<$H        HtPHuHsLI<$H        L9t:H        8 u!HUH           1H        Ѹ      H} Lk0HC LeLcI9sILhMI        M9   H        LAօu<HEII     M9A$0	HUIk

ȉI1[]A\A]A^AUATUHSHH(HwPHB  H?I        AH       HH;I        AH       H        HH        Ѕu7D$ȉH   D$ȉHH      ǃ         <$tH           1H        ~|$D$C`H        H{hHHCptbHCPH;Hp AHuH        8 u8HShHspH;AH;Chu(HH           1H        HCPH([]A\A]HWPHtHGXH)1ATUHSHwPHHu![]A\H           1H        IH?H        HtVHSXH+SPLH;H        HKXH+KPH9t:H        8 u HH           1H        ѡ        1[]A\UH        HSHH(HH    L$Ht$LHT$D$    HT$H        Ѓ|$ uH           11HH9M sH           H        H([]H(M$HT$Ht$LD$tA     HHH        H        С        H(HHH        HD$    HT$H        HD$H1I        A  HI        H=  uAUHE1A  ATUSAA   uH9   DHA   At3H9   H9HZsHEQMcCEA  HH9seLR*L9vYDRHZDA   EbE1	A,  H9A,+s@(HEiMcAC,EA  E9~[]A\H)A]premature end of file %s complzss Mach-O doesn't contain suitable 32-bit architecture Mach-O doesn't contain suitable 64-bit architecture premature end of file %s couldn't find Mach-O commands Darwin Kernel Version  complzss invalid Mach-O  header couldn't read architecture-specific part no program headers present bad program header load addresses premature end of file %s couldn't find Mach-O commands Darwin Kernel Version  complzss invalid Mach-O  header couldn't read architecture-specific part no program headers present bad program header load addresses  LICENSE=GPLv3+          macho                                                                                                                                                                            k                  L       $           5       A     M            V                      c     	             u     	                        V            n                                                                                    x
      L            
      3                                                 !                     1                     @                 V    k             f                     q                     {    3	                       g          7                                            k       grub_macho_close grub_macho_load64 grub_macho_get_entry_point64 grub_decompress_lzss grub_memmove grub_macho_size32 grub_macho_filesize32 grub_macho_open grub_macho_filesize64 grub_file_seek grub_errno grub_memset grub_macho_load32 grub_macho_get_entry_point32 grub_file_read grub_malloc grub_file_close grub_file_open grub_macho_readfile64 grub_macho_file grub_error grub_free grub_macho_readfile32 grub_macho_parse32 grub_macho_size64 grub_memcmp grub_macho_parse64                         4                     S                     `                     o                                                              1                    I                    Z                                                            J                                                                                                            !           ,            "       F            V       W                    m                                                                                                    C                    p                                                 
                                                                      "                   3                    p                                                           Q                                                                                                                                           >                     Y                                                                              (                     p                                                                                                  	                    M	                   ^	                    p	                    	                    	                    	                   	                    	                    	                  )
                  <
            !      X
            <      g
                    
                  
                  
                    
                  
                  B                    j                                                                     
                                           ^                          X            ^      i                                w                                                                                                                              &                    9            ^      J                                                           &                    G                    c                  p                                                                                                   @            ^      Q                                                                                                                      
            ^                          &                    :            	      {                                                                                      7                   	                          !            	      9            
      Q                    c                     .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .modname                                                                                              @       U                                   @                                               &      2                     2                            5                                                          ;                                                         K                                                        P                                                                                      0      	                    	                                                                               &      Y                                      boot/grub/x86_64-efi/regexp.mod                                                                     0000600 0001750 0001750 00000227360 13417732100 0015132 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    *         @     @   AWAVAUATUSHht"H           1H        w  II   I4$H|$ H        Ѕ  HD$PH<   H        HH  HD$PE1It$HH|$ HPH        ЅX  IELt$PMd$HhIHu:1  :   H        HIu\IwH} H        HH} Hu뻃{tHcCH} LD(  H        HcsLHcSE,   
   Ht$H} H        HT$L9t#HU H           1H        LI9HzZL,A} KIcELD8  H        Icu LIcUE<'D$H|$ H        HH        ҋD$   1HI        I        A11Ht$ I        AHIH        HHuH|$ Aա        BLHHt$ AHH        H           1щH|$ AHAԉHh[]A\A]A^A_1PI        I        H        H        H        H        H        H        H        ZPH        H8H        H        H     ZÍWи   	v1A@AUI        ATIUHSHL9sT<\ueHCI9v<{xu6{AՅt+{AՅt E \CHHECECEHCI9wE  []A\A]ÊCHE HÈE HAW1AVIAUATIUSHHι   H8H|$Ht$H        LH        ID)B|(H        HH   E}HLH        H        L9EgrBD%  HSD+HCH$EtA\u-sHL$H        HHL$tCHBD% 	H$Fl% A1HH|$(H           H        HIH        HH   HH        HIttH|$(?(u)   H        HtTHxHHL$H        HAUu3H|$(HH        LH        HD$V1E1E1H|$(HD$HtJ<(IHtHHtHH        LH        1H8[]A\A]A^A_AUATUHSHQ~ u%H1H        H        HHu,,   H        E1H   A      IH        1H           H        I        AE111HH;H        ЅAt<H        H           H        1E1AHH        HCH{pH        HcHH>HcSHCJKH,HcSHCH    Z[]DA\A]AUHATI        UHH        SHQAԅuE1  HH        Aԅt1LKIH        H        0  H        I        AE111HH;H        ЅAu1H        H        4  H        AH1HsH        H        HHtUCH{pH        HHuHH        A(SHCJKH,ЋSHCH    A   Z[]DA\A]AWAVAUATIUSH   H    Ht$0Ѓ<(t1/9  D$    1A<$   ML1U tP\u} tH;?t1*t,/u
t#LmttLl$I9E     H멅Ll$u1H        H          H        I        AHtE1D$         H        HH  HH        L)HHH  HHLH        HC    O  H|$H        IHL)I|H        HI  HLHt$H        K|= HLH        Ѓ|$   /   LH        HIy    H@LD$P    HD$ HD$HH        HH        HHHD$(   |$P H               MLD$ H        H        1  H        1I        I        AH|$ALAD$D$HHHD$   H        HI\A} (Lu+HD$8)   LH        H0LD$8HP: H        HL$HH|$(HEH        APH        8 A D$P   A/H        H|$IcAL,EuHH        1o  McJ    LH        H        B  H        1I        A"  HL)| H        HI   ^   I9OHc   AE ME<?tt<*t\<(|qC<+t?<.<\t
<@t1<[uY+<]t'PwKA6\AEHcфt?AMEW2HcA6\WA!HcA6.WA*A6.A6MXHcA6$1A MH        H           H        I        I        AH|$`M# LH        ЅLtA  AHtE1D$       L;d$uz1A<$(HL$`D$T    HD$X    Ht$HHL$HH        E1D$PH        ЅuH\$XJ  J< IHtAHD$XHuHA%  HL$`HT$LH        H        H   LD$HL$`HT$LH        LD$II8AMuD$D$LI8Hu   M'  1AHI| u1HI| uBtDD$LH        HcHHtDD$IcL1LALA   I4A<Ht	I4HHcHD$LH    AHD$I   HLAH|$`H        HtD$   I3HD$0H1VHu+HH        H        H|$`С        &1I        H<HtAMHĨ   []A\A]A^A_SHHӀ8 uC      rtXt20@t*DADNQ ADF GAAF9uHH qQ FʍpP F9HH        Ѕt1[Ã1AÍWи   	v1ASH        Ѕ   u01҃	[HtHt       1H        IHI9   AEtLEAAu6DA?ȉAAE	ЃDuA   Aw    A    kEyYD<u#AA   ADwMA        9D<uA   AD<uA   ADHHÃy tI"Ht19 tI)IASH        Ѕ   u01҃	[ÉA@   AA   HcIL	ÉA@   AHcHH1HHH u1HH!HH uËGht1O,HcH      D0A9}LGEHAuÃhHcu	HG0HGËG49G@NG@O,1Lcƍ9}%G(LHALOPEHHGHF ԉG,G0DGE~4A1D9HOsAAB94|APމ194D1HcF89FHG1HN~h~HcN8;N,tLFA<   <\u#   F8;F@}|HVF8Hl<[uJHcN81DAD;F@}HFD<:t<=t
<.uGG	t
G   G["<]t<^t<-uGG
GG   À~0u	9~(uN21AWIcA   HkIAVE1AUAATLcIUSHHLOpL$HD$IDD$DMa0fD$D$$E9t$   ID$BLcD$ILIP   	      |$   H\$I   D$ D$9   A?	CLt|IA(JD8;L$u   L\$8LL$0LLT$(DD$DH        ЃLT$(LL$0L\$8uVu|$  t1GA?	fD$f!CH{ [|$$ tD;(u@tD;(tIHH[]A\A]A^A_HcDEHkH   DVD9|1v9|.D9A9@E1@D	tH        ø   D   1D9}"
LcMkL   A9p|ߍPD9}HcʃHkH   9qDÃAWAVIAUI        ATEUH        SHH(LpT$L$DD$DD$H1D$A9n~pIFDL$HDD$L$4HcHkH   Hc HIDDD\$AD\$D$EIFDL$HߋL$Dڋ4HA;D$t1H([]A\A]A^A_AWHG I        AVAUATUSHHXDo4D9o@DNo@o,H$D9  DDc Ds$)H{P t;1Hc;Ch}>9}:{(H;HcH{PHH{7LHHcC(HcHH3Ht$HcH$H|$AHPHwHuGC@9C4|5C(HHD$HCPHtD$Dc Ds$   
Dc Ds$<HK|$UHcՉ<Hc1H9HHsHk,k0HX[]A\A]A^A_ATIUHSHHCHtHHCHuHHAԅuHHtHAH9uHHt1[]A\ATIUHSHHHAԅu0HC1HtHHuHHtHHHCH9u1[]A\USHySL   ;w@u҃   hHc~EHWH1,uHu븀{f tH        Ѕ   u>_t91%HWHX,H        Є   u0҃
u{e҃[]ATHcAUHSHWHF<tw   18S<t(<t   H} H        Є   
uHSp1   @uyuHSp1   ufm  tYSxDHH        Љf@t1t+t1u t1tူt1[]A\AUATUSHQh~LLcIv   `IHI        LAHtH{HCHtLAHtHC{c tHcH{H        HtHCk41Z[]A\A]USHQ;Gu)D HHH4    H        HtHCHcCHSHK,1Z[]AWAVIAUIATUSHH(LgL9g   MIvS  MH?H        ILHtJ    H{HHHT$HT$H{ HD$HH{(LHD$H{0HD$LLD$MtHL$HzHT$HlHcLCHK HS(HC0LcHCHHLhL0HCHH` HCHHAu   A1H        ъP
	ʈP
HSHCH{   HH{(H{   1HH{0HCHPHSH([]A\A]A^A_AUAATAUHcHSHQHH4(HT(H        ЃtlLHcDH  HA| 	A|HL
|*APAс AD	ρ  	APHL

HS D$Z[]A\A]AUIATIUHSHAP   u/  H        H   HSpHHCpǃ       Hc   HSpHHHHB   HB    HhL`MUMM H@    H@     @8LP0`2HLH(tHE MtI$1Z[]A\A]AVI        AUIATUSHHH/Ld$11HK(LAHI$tSH(I$H2HCI,$HtLeHHHm HtHHHSH9u	HD$HtLeHH[]A\A]A^HH        L$HHAWIAVAUIATUSHF8L&LBt&Mt!R(L?   I$   H   LD$11I           LA11HŹ	   LALD$HMMt Lt$   HLLALL$IIƹ   LHLAHtMt
HtHuA   1'AU(S(U(AM2S2	ʈS2U2	ʈU2H[]A\A]A^A_UHSHHHVD$    Ht&z0u HH        H|$HHCtHHSHt&z0u HH|$H        HHCtHD$H[]UH        SHQ   G      HHCuC        (1Z[]UH        SHQ3G    HcH1HHCu
҃Z[]AWH        AVLvAUILATUHSQU vЅu;E1I        ID9e~*HEB4HcHIE @uLAׄuԸ   QA#   HI]@9C)Dd H{H        IcHHtHCDcHcHSHH,1Z[]A\A]A^A_AWIAVI        AUATU1SHHLopT$A9o   IGD$IcHIE x    ?   I   H      ;   u:H   H        HcL$HH   L$H      Hc   H       HHL$AHL$HHc   H   HHt1D`Hc   H   T$p   HH
1   H[]A\A]A^A_UHSH        PH?H}ZHH[]G%  uH?H        uH?H        H~(PH        1ZUH        SHQH H{0HC8HSH9tHxH{8H{H{HH{@ZHH[]UH        SHQHH{Հ{c tH{HZ[]X[]AWAVAUATI        U1SHQH? uH{H        E1E1OH;ksHHHH;AHC0HtJ| HC8HtJ| HC(HtJ| IIL;krH{(E1I        H{0H{8H;H{@ u,H{@H{xH        H9t@H        2ID9   rME1ILk@E9u I}~J<IAH   ZHH[]A\A]A^A_AWAVAUI        ATE1UHSRD9   ~]H   E1JD9sH{I        ~N<IIALAAHCHtHxAH{AHIAǅ       ǅ       X[]A\A]A^A_AUHATUSHQt@1I        9+H{~ IHIJ|/AHCJ|(AH        Z[]A\1A]AWIAVAULcIATIUHcSHL/EuA   HzHcH<w1  At$@DEA9}<ߊTw   ?z  <ww<tø   :<ww<t   &<ww<t   <ww<t   9x1Ҋ\s@?eHr9|  HH        AuF4I   @uIL$Hcŀ<
   IT$<*   AMm I}0 u
E1A}$ tLH        AAU$19~IM HA9u-  AFEfE~1D$AFD$A9m4   IEȃ   H        $DH           AAGAFJDH        ~DH        mA	$A^|$A	A 	|$]=A^w;DH        Ѕu(DH        ЅuBDH        Ѕu/HAU019~IMD94
IMD;4~	H1AE t_OH[]A\A]A^A_Åu1HH        H        AVAUATUHSV0HLcv8B<b  H        $1H~  H          H        [     HFHtH@HF D`8HCHtH@HC Dh8DH        Ҿ  H        D  H        Ic޿   H        HH](   HHCt=E9uC   D    C   }D HCDh   D(HCD`      }HF Icp8 HF IcP8HE1~0uXHE4[HH}(H        ]A\A]A^H          H        HC P8HEB1[]A\A]A^AWI  AVIAULcATMUSHPhH        /H        HcHHCJ    LI        (AHCHt(H        I|$AHCH|(AHCHT(HD(IT$I$HCD(Z[]A\A]A^A_ËW1;Vu2Hc1LxLWLNI HE	E9
t1Åx0G9})ȉGHcH;wHH}HWDDDHÊF0<u(H   HtlHcV(   N(HH	   P<uLHFHtCx0u=H(H@HHFtH0HcV(H   ?4Hcщ4HHH!   1ÊV0HFtuHVHRHP HFHp HtHV HP HFHtHV HP 1UHH        SHWxЋ}AAÃ1AA9~^HELCpHcHIDJAEfAzu6fEt5Att&AtuA tEtAtEu1H[]AWIAVAUI        ATIUSHHH(n8L$LD$DL$AՃADL$LD$L$~(A$   Hߋs8H        AD$Ds8  Mk8AGt<%  9kHAD$
   O  E1ADt$Hck8uq{c tk{d tT;k,Hct
HK<tHsK(H3HcD,AŀtHKŉk8D,8L\$HAL\$k8Mk(HK8Hc
MHCK8D,(C89CHXD:l$uHsHcȀ<]tID$F,0II ;)Lct$C8ID$B0 AG<t<t<u\A$   RA$   HA$   ><u*Eu%LHH|$H        Ѐ|$ t   A$    AAD$1H([]A\A]A^A_USHQ~0uHFE1HPHV@8F8ZHsHHv(HS0H        ЃC8t1E1{0u.Hcs(HHU   J 	JA   Z[D]USHQ7uH        Ѕ   GHu/   9u H        3HcHHtmHCHC;(CHc}-HHz~HsDDDH1҅I)HHsH׋LH9~>HSH,C1Z[]AWAAVAUI        ATUSHHL$D$HHcMcIIB|0HC(uQHSMHL$IHߋ,BD0    $AՃAHL$u
     HCLB   J<0DGEuHCB1u  HOIAȋ)BD     u{A9t';t$u!LH{(H        1҄3  HBD0%  	$$HAՃAVLH{(DH        Є8Cx1LcLHHHIɉH)I)AA
Lt/~+LS MI)C;,uR  9$tH뻃ue$HAՃALH{(H        ЄD$L$DHH        Ѕu-HC(JD0h LH{(H        ЄuQH[]A\A]A^A_AWI        AVAAUEATIUHSH։T$HAׅT$u"HcHHI$HD9u-D90u(A	t1}HH        1҄uf   _HH        ЄtHID$(Ptu#H@EDHLPH        ЅuID$(HDKH[]A\A]A^A_ATHIUStmFtfW/HB9}*HH        HcHH  HC+CAT$u(SIcT$It$H{HH        1   ,Pȉ x-у x&HKIt$HcLcB494t}Hc4̅x+It$HcHCHHcH<H        ЋKAD$tA)wAщKHKHcDDHc<A9~McFuCMcB<yH{HcHcHH4   []A\AWIAVAUATUSHcHH8HF(H<$L$H|$tH        Ѕ  IG0DIDDA  uIE1D   E1E1lHIG(x tH@Hc HD
uAA  LH        Ѕt  H@BLcILIG0HuAIHIG(D9hruLH|$ H        Ѕt   HPH HT$(HD$ Ht$ H|$H        Ѕ   IG0B|0 uH|$(H        yH|$H        ЄtFEIO0t|$t
D    HD$HT$HHTHD$H$HT$H1HQ   H8[]A\A]A^A_UHSHQHc~{~ ~I;H        HHHCuC        5HcUHHuH        H   1HH        1Z[]AWHAVIAUIATIUSAPtL~~EHt;B~4H        A} HcHHIE   1   1E1LMt%A|$ ~LY[]A\LH        A]A^A_   1LH           A;l$McI~IM   BI|$LcB<9~ŉ<HAV^A9|@ǉA@AT$9}3ID$Hc)HcHH4IEHc)H<H        A\$A]11   *D)HcJ4HcH<D)HH        A^Z[]A\A]A^A_AW1AVIAUATUSHH(RH|$D$u    k  9~HKD$HEE#   1I        IM~@AD$9L$~GIGL,E9e u4AEP9u)I}8Ht HL$L$HAЄL$HL$  H볿X   H        HI  H@HH$HH        ЅtLH          AGP@E1E1	AGPH$IG8D$D;kDl$#  HCJcHIPpfDfL$Eu	   AWP@x
@		AWPuu@AWPE   H$I9G8u@   H        HIG8   HHH        Ѕ   AOPE1D$t@t(D$t@uD$t@tD$@t+|$ u$t$DD$H        H<$D)DD$AIDLLH        ЅLt#LH        LHD$    1H(H[]A\A]A^A_AU1ATUHSQDnEB  IԋR4  AՋWHD9~*AHH        IcHH   HCD+SEAL$DAHuHcLcɋ4I|$B;4u8Lc1ILKxOE:HA9~t
AIcA4y
}yKUAT$ArD)х҉K~@ x9HKHcDDHc<A9~McFu1McɃB<uH{McHcHH        J41   Z[]A\A]AWI        H        AVAUIATE1USHcHH8H_8t$HT$1HL$   H|$ D9c   HCJc,;l$   IE HD(   HIM(AyHA~Dp։T$HAׅT$uH|$Aׅu*E~]DHH        ЅuGDH|$Aׅt8HIU8Ht$H|$ H        ЅtH        H|$(ЉhI*1I        9k~<HCH|$ D,DAԅu L|$DLALpH        HH        H|$(1H8[]A\A]A^A_AWAVAUATUHSHHHcF89FHG1  IHVD,G
D/G
Vh~"HcN8;N,tHv<u GG
Q  A\  u8F;E@|	C$3  }c t]~*HMHcH<    <t9u,t|9uHE5Udt
HMHcM(Hu HcD,AttHUHD,D+C}hDs
~3E8HpH        ЉǉH        Ѕ   u(_AH        Ѕ   u
A_D	ABC
  wwA9wNA1  A(O  wA'"    A)K  A+  A     I  A>   A?/  A<     Asp  w4AWI  wASs    A`  Ab     A{  wAw   k  A|t"A}[  A      I   u  A      =  C
4  A @     "  A1CD+  A         C     A        C	     A        C     A        C     A      |  C s  A      a  C!X  A      F  C"=  A      +  C#"  A        C@     A        C     A           A           A     I  A      I     C}hDs
~2u8HH        ЉAH        Ѕ   u)A_AH        Ѕ   u
A_D	A.C
u  wPA(3  wA
   A$    A*   #  A+     A     A^"  wA?   A[  C  A|tDA}   A{p  A      I   dA      N  C
@  A   I   ,  C!     C     A    C      C   A      I      C   A          C   A          C	   C   A  u#HcE8tHUA   T   te
u`C   OAu6E8;E@t,E8LHHH        ЊD$M8P   wC          H[]A\A]A^A_USHPn8H        ŉk8Z[]AVI        AUIATIUHSLLHA֊ME tBtD<,t@tԍPЀ	wtǃuXk
ػ   P=0  N릸[]A\A]A^AWAVAUATUSHHxG49G@NG@b Dw,$  HP   d   HG HD$HD$4HD$D;4$q  Hcs(HMcB6Hu1{$ u+pLHSHFAƈHSHCB:B뭋$LDk HDc$HL$H|$,H        D)HcHH   Dd$,AD$w;A Ht$H|$0DH        H9uLHH{Ht$0E\  Hcs(LH{HLH3H        DHSAFHcF$H19}`HHsHHtC@9C4|2C(HDHHHCB8HKAFBuDk Dc$
Dk Dc$ADs,  EDs0   H  Hc{4J(H9  H{   1{d   LH{HH$Ht$0H        HCH$F<HCF4   H9}  C@)D9sDC@~SHS49NAA$D;$$f  $HKPD[ DS$D)Ht2{h19}69}2DK(EDLHcA41@41@t0HHcC(McILLL$0DT$D\$HK HcLLL$H|$,H        HHD\$DT$S  D|$,McLL$AG   HD$0A Ht$4DHH        H9HLL$D\$DT$jLHH{Ht$0   H$HH        HHCH$W=  L9sHSHCdBHsJ(H9H<ruDH7HsLLH{HLH        Ѐ{d uHSAD$ADHcF<H11H9tHSJ(A4H49   HHsHHtC@9C4|UC(HDHHCPHtHCIcԈ{d tHCD4HsAHAD$uD[ DS$
D[ DS$ADc,Ds01Hx[]A\A]A^A_ËG49G@NG@AG,HcD9};O(H7HcDHwPHAtBqHww HG,G0SG4H=?v
      W@9O9LH        Ѕ   H   Ht%C4pH        HcHHtH   {` t"{hH~[H        H        ){h~HH        H{P tHH        1[ATUSG4HLc   9|;G@|?C,9}3A9}KH   1D)HcJ|HH        Љ   ;C@}ȍuHH        Ѕt1[]A\AWIAVAUATAUSHXG()9~oh~H    1H        AG<AG,    AG(    AG0    AGd AG@AGDAGHDAc AGLuIIG[  A;_0!  Ad   EG,Mw1   D1HcAA9}p9|Dh9DMDD$AuDLH        DD$AGLA9   A9   LcGJ    A9uxIDDL$)HL$I        HcH4HAAW,I)J4'HcAA)_,A)_01HL$DL$1A;W,R  IH44D)Ή4H݉AGd )AG<AG@)AGDAGHIcI1EIc1H#H9uAHIOHuAE9|uAG,    i  McC)؅AG,T  1IcW,91  IWHsDLH        AhAGL~$AW,IHc)H4H        HcHAc tAW,IHcH        )HHcA)_,A)_0"  Ad AG,D$tAGd )AG<AG@)AGDAGHAWhAG,    McO(  Aa uEw(AEw0  ILc)HcILOtH9HBI9rA<   IcO@IwPMLL)Ht2   N1HcLHxDF4LcFtBLt$BI        L\$ LL$1LT$HL$(   H|$HAHL$(LH|$<H        HcHL$HLL$L\$ ILT$KHD$L)L9 I1I    AL+l$C.Dl$<AO,A   IEo<EW McEO$LI7L\$IO H|$HE)DT$ H        DL$IcHPL\$DL$DT$ Hv.Ht$EtIF,EW EO$   AA9|E1Dl$HA)AEw,ut$DLH        AGL=Af tDH        Ѕ   uA_t1A
uAe҃AWL1A, t4IcW,9~IWHAc tI   H        AG,AG0YIAMcFdIGPAG0    HtF$ IXDH        Є   u0A
uAe҃AWLAc uHcIGAG@A)_HAo()AhAG@~(A` LtH        ЅtGOH        1Ac t.A` tLH        IP tLH        AG,AG8    1HX[]A\A]A^A_AWAVIAUATUHSHH  L/Ht$D$    A   uHGHD$HD$DH\$8H$    HD$HD$4$9p<  HD$H$H@HcHHHIE HDA    |$ AtpH FHAE@  A     IE LcH)ڊ8HD$8II;ErBI)1   H|$@H        HL$@LHH|$4H        L9f  &HIM HA%   =   uIAD$뎋D$4HsHߍHP GH        H  D$8A  AufD|$L1AIE D)H8L1Is!EtDbDZ ADGMcCHH@uHH@H u  AZ  A   L8~A4 u!AG uA0 uD$E1D$   D$8 I        I        1   H|$@A1HL$@   HAHu
D$8AD$8u  1   HH        IN    I        L\$ Ht$H|$@LT$(BAL\$ HLT$(LuE@u8IE9g$   T$@|$ A6t؍zr FHcAA   ~IBzr H|$@FHt$DHtD$@A뎃tAu%      LH        AuM8	H$HH  []A\A]A^A_AWH        AVAUAATAUHSHH(vH|$Ѕ   E1I        D9{H{   B1HcHHE0D@A9~*HH<HcHHM DIE9uD9!tHuHH|$AEDHt$HH        ЅtD$H|$H        ҋD$'I`H        HD$HT$HHS1H([]A\A]A^A_AW1AVAUIATIUHSH(RAu    v  9~HMD4HDA#$   1I        HI\$@D$9T$~8HCL<E;7u&HT$LD$IHAЄLD$HT$   H¿X   H        HH   LxHH        LЅtHH           L{819u~qHEHcHI$xu	@  tJSPD@
AD		ʃSPuu@SPt	@  tKPHDHLH        ЅHt HH        L
AE    1H(H[]A\A]A^A_AWH        AVAUATUHSHXLgpH4$T$$։L$(DD$,Ѓu1  HI        HkHD$H\$H   D3H<$DAՅ  D$$D{IcAD+{A9   HIt$(H<$HFD0DAՅ  DH|$@H        ЋT$(L$,Ht$@D$<LH        Ht$@H<$H        H|$HAH        ЋT$<D		2uۉAD։'  ID$McD4J    HD$H   JH   HDHD$HAՅ   Ht$H|$@H        DD$<H|$@H        uP|$< uILt$L   HT$@LH|$<H        IH        H|$HH   J< uMCH        H|$HЋT$<   E=DH|$@H        ЅD$<vD$<uH{ 	HX[]A\A]A^A_AWI        AVI        AUIATIU1SHH8L$9l$~cH4IT HuHJHtEHHH|$ AօD$u4HT$ LH|$AH|$(HH        ЋD$uH1H8[]A\A]A^A_AWAVAAUATAUSHH   HGpD   D$X    HcnHt$DD$LHH$HcHHEA9DL$, D$(|lA)D9}
     AExHD$IcHHxH        HtHL$McH<J    1HADyH        HD$H   HߋSx(LxH        HL$0K8L   ADL$Hk8uD9AuXDH|$`H        ЅD$X  $   T$(Ht$`H<$H        ЅD$X  |$d ug   HcM$Mt7AD$P@t/It$H|$`H        ЅD$Xk  AD$P@u   1   H|$`H        MulD$   L$(Ht$`HH        ЅD$X*  DHT$`H4$H|$XH        HIu|$X   H   HcL$HcE1H   HD$  M  LkpD$\       1H|$pH        HD$    D$A9D$  ID$ HT$4HcIHD$ IE IBD0
  HLH        Ѓ  Dt IUHL$ McJ    HD$@H   T$8J4D$t    H  HH|$pH        ЅD$\  H        H|$xЋD$\D$X   |$d Dm&  SxHH        HT$`H4$H|$XH        HIJ  H   HL$DL$AGE1MDDHD$;l$,}eD;   \H   HL$D$d    H4HMHH|$`H        ЅD$X,H        H|$hЋD$X  H|$hH        HcT$,H   1HHHPHD$HE(HD$0HH   D$HC8w  t$LH        Ѕ_  uzLIu HH        Єu^   t$8H|$pH        ЄtoHL$@H   HT$pLH|$\H        HL$8HL$8HH   J< t#IEHL$ H|$`4H        Єu)|$\ tH        H|$xи   HD$H        H|$x1$   T$(Ht$`H<$H        ЅD$XbD$   L$(DHt$`HH        ЅD$X.|$X    HĈ   []A\A]A^A_UEHAWIAVIHrAUATISDAH        H MȋJjZY  A   A9   AEl$E|sI   H        HcHkHuH        I   и   .  Ic   Ic   1I   HkHkHH        Aѧ   Ic   ~HkI   HD9Xu@Ic   M1ҋ}HkI   Ic   HkI   XIc   HkI   xIc   HkI   DhIc   HkI   D9A)fPIc   I   HHkA   D E9   }E   A\$LH        A+6He[A\A]A^A_]He[A\A]A^A_]UHAWIAVAUATSH   HGpHPHǅx    HEHcG8EHH`HPx9XW  HPHxH]H@HcEH@HHhHx  X  tTAWxuLH        Љft  t   t  t  A   uLEIGpHEIGHEH        Ѓt%HHkI   M9u1L  Hx uHEHhHE    H \EA9   ~I   HMH]L4ȋ\IcFHH9  A]E1EE;fDp   IFJHH@AD+mXEBMDELHHLH        IODIăHMs  XEB4+A;w,~%A;w@GLH        ЅA  IGHEHcuHEHcIcHHH        ЅgpA;F  E1EHcEHHEF$(D;e  DA+~XA;_,|,A;_@  sLH        Ѕ  IGHEHMHHCHcJ)@t:@84i  HHIT I   HH?  q192  HAH}HcpHHx	u
\98tHʃp   I~ t3PEAVIvDpLj	H        AZYu.   DA+>H        HcHHIFu      AFA;Fu4T I~H        HcXHHtmXIFAV   H        HtIIcNIVLDELHʋpHD`AFH        MI&HE   E   H@E1HHEHcEHEEDA;     HE]LHkI   9  ]9X  Dh@H]D)H[0MuHMHQ(HhHT
HcHuHMHVHc
DmHLHAWxA)H        AuMcI   H`N    N
H2I HtDrE1Hu'LEHHuH}H        LEI    LpMHHp8H}H        ЅEMLptH}H           M   H}HUHuH        LMLMIH        H}I   J< u} un} uMI   H`HD9p~5UHLH        ЅEu4HLH        ЅEuIHxE    EHe[A\A]A^A_]AWHIAVAUATUSHH(n8;   HNpLcH$H   ~Jቮ      N4    LHHuH   HHR8t#Lh8H|$H        LЅt   HHRE1HD$HT$AG8AWxLpH        M   HT$H4$HH        MItHD$H|$H        HD$IH$    tRMuE1HMnLH        LЅuAFP@t#LLH        ЅuI   N4H(L[]A\A]A^A_AWAVIAUATUHSHH   HGpD$d    T$XH$HcHHD$ HHD$H   H1HPHHDу} HT$uHHL$ H      H|$ u7Ld$L#HH4$H|$dH        I$DL$dE    D$h    HH4$H|$hH        DL$hE   x( L`(tLHt$HH        A]uLH        ЅD$hu8E1I        D9m~HELJc4H$IHHp8AׅD$htA   EED|$d  {  I   HD$    HD$(D$9C  HL$HC HcL$XHkHD$(;H  9H{  HcH$H9L$XH9HD$tE1-  D]A1DA9~6HUHcHHDQAuD;!DA	uD;!DDHŅyE1Eyf   HL$HH<$H        Ѕt   HEIcDD$0HcH$HHHT$8Hx8H        ЅHT$8tAD;e|   H$HDHx0H        ЅuHL$Ht$0H<$H        Ѕu_AHEH$B4HcHHPvID9m#D; uHL$HH<$H        Ѕt
HD$BAED|$d  H|$   I   Ht$ E1H@P@  t$XLH        ЃInpD$(  HL|$hHD$h    HD$8H$    HkHD$@HD$<$9xL  HD$H4$HU H@D,IcHHD;kHL$0T
uL$X;K    Ld$@M   HHD$HHD$    D$(D$E9,$D$   AD$A+D$t$XDtHEHL$HDHE(Ht$0HD0D D;Kq  HIcDL$\H<HY  HDDD$PH        ЅDD$PDL$\/  LSL$XDLH        LLT$PЄLT$P   H|$h t/D$XDl$xIt$ D$|H        Єu3      
   LHH        ILЅt   HD$hHL$LLL$H        Ѕ   HsHuNHD$hHt$L$0Mgt$ H        LLpH        Ld$Ld$8MkM   !D$XHT$hHHH        Ѕt%HD$A|$ ID$tIH$1H|$h t$H$   H        ҋ$AEE1HĘ   D[]A\A]A^A_AWH        AVAUATIUHSHX^vLt$@LЅj  LHLH        ЅD$2  LcE1Lt$ I  H} AGE1J</ DDE;$   ~)L1H        H        H|$H1  I$   D$D    JD(HHD$u.HL$ HLH        IЅkD$  Mt$pHD$    HD$L$9H~HD$HL$H@ HcD$0HD$HHHD$(ID
u&Ht$(I6LH        Є      EMD$pLt$0D$4LLD$8H        Ѓ ~K;D$4{HU HL$4H<HtLD$8HT$HI@4H        ЅL$4a9u7XHE J<(HtXIFHL$H4H        Ѕt8   } t7IFHT$HuADD$0LH        Єt
HD$t$0H|$ H        ЄuD$   H        H|$HЋD$HX[]A\A]A^A_AWAVAUAATEUDSH  HH|$0Ht$hT$pH$P  HL$HO HHL$ t'G8tE9t    HDHD$ 	HD$     L|$01   H$P  IG(HD$XH        HD$D$x    H$  IG0H9v؉D$xHD$0Hx tHD$H@HHtHt$HVPHu
   "  HNXHtH~` tx u0z u*y tHD$0x8 xEtE   ^"  E1E1HcD$xǄ$      H)H\$uHD$    $   H\$0t$pL|$hHCHS(L$P  HHD$HHXH$  	ʈ$  $  $  $  H\$\$$  $  ƍ{HË      $  9ǈ$  Mǈ$  H$P  9OH        ЅD$<   H   $  H$     ҈$  LtH$X  H$X  1uH\$   LD$p$|  $  HD$0$  $  Ǆ$  @8$  HD$    D$$`  ۉ$  #H|$$  Ǆ$     $   w\LLcH        IkJ<    H$  H$   H$  uD$<     HuHD$   t3$  wH        HcHHH$  uHǄ$      $`  D$   $  1E9D $   DANĉD$|DAMĉD$@HD$   H|$  $   t<   uHD$00@@uH|$X҃1E91H|$X 		   H$   1E9HOHH$   $   $   HH$   $   9D$@;D$|tD$<   S  $     H$   H        $H\$hHcH\$XH\$ < u$   $   ;D$@|ʋD$@9$   V  /H\$hHcH\$ < u$   $   ;D$@|1\$p9\$@}HcD$@HL$hHL$XHtH\$ <    1;D$p}HL$hHcH\$XHtH\$ <    ȉ$   $   ;D$|}$`  H$P  H        ЅD$<	  $   +$x  $   1;T$p}H$X  HD$ < uB$   ;D$@$   [;D$|Q$   +$x  ;$  rc$`  $   H$P  H        ЅD$<e  $    u$|   tH$`  8$  H$  Ǆ$      Ǆ$      Ǆ$      $   Ǆ$       L{HAP $   $  D$   p$  H$P  H        ШtL{PBtZuL{`.tL{X$t<IW8HH$   H        IMu1҃$   g  J  H$  Ht~HcT$L<Ѓ    $   D$`tlI_1H$P  H        HЅ$     AGP@uD$` 2HH$P  H        Ѕ$   tJ  $   D$`AGPuD$t    x>$      D$D$t   L$D$H$   $   H$      T$LH$P  H        Ѕt롋$|  9$   C  AGP G  Hc$  P$  H$X  $   IG@H4  $   HH$   t"HH$P  H$   H        HH  |$` t&L$`I9߰ Eȋ$   D$   L$`$   CP  Iߋ$  9$    F$   $  9;$  H$P  H        Ѕ$   1҃  H        H        6;$  H$  1A9o  IGD,McLHH@
  DpA  tcA$  $  H$P  H        DfAt  tw   tj  t]  $  H$P  DHH        Ѕ4  $  $  H$P  9LAΉL$($  H        Ѕ$     HCJcH$  McN4    N,HHS0MuHHRH$(  H$0  'Iu8H$(  H        Ѕ$     t$($  H$P  H        L$  H$(  HH$  H        MItH$0  H        H$  J< u$  u
H1$   
  I_HHtG$  $  H$P  pH        Ш$   tH   HH$   0  H        HHD$(	  H   IG@    IGH    HD$HH$   H        E1HǄ$       $   A9G  H$   HHH$   IGHc,HH+EDeAD$PfAuu H$   H           |$PuHu H$   H        ||$Pu*   ~HsxH$   H        .    |$P     H$   H        H   @uH$   t	H$   fEuHD$(E1Ld$HH$     A t8L$   H$   H        A   M)  H$      AĀ  AuA   댃|$Pu
E
@     ~6Hsx11HHH   HH#   H   H	H u)11H   H#   HH   H	H uH  m|$Pu
E
@U     ~6Hsx11HH#   HHH#   H   H	H u,11H   HHH#   H   H	H uH  {|$Pu1u LH        ЄuH$   AI E9|H  11IH#   HH   H	H uHt0HǄ$       1H   HHI#H(  H	IHHH!H	$   H   H uH   IcI            HH$   H$(  HH|$HL$   Aк    H$  LL$   AH$   HD$(H$   HH<H        Ѕu;AIGH$   H$   4H        ЄtH$    E   E9ukIc    H$   HH        HHH|$HIGH$   4HD$(H<(H        Ѕu.AH$   H        H$   mEDj,1H        A9~HL$(HHHH|H|$(H        Ѕw     H        HIG@
T  AvH$  H        Ѕ$   uC<vH        HcHHHuG1H$  H        HL$(HHHH|A9H|$(H          IcH$(  E1HLd LH$   H        HD$(D$P H$   HD$HH$   Ǆ$      1H$   9P~]H$   H@HcHCHc4t;HHs0H$   H$  H        Ѕ$   H$   +  H1H$  HH$   H        HJD u$      xP       H$  HH$   H        HKu$      J9D t   L$PMȈL$P   H$  HH$   H        H$   HJu$$    tI  KH$   JD JIH$   H$(  H        H$    H$   E9]|$P H              HIIG@  H1LT$HH(  1   IHtA@t/E1MMIIKtH   tOND L9HHHHH   H u      HIIGH?  H1H\$HH(  1   LHt<t+E1MMIIK<tND L2OL2   HHHHH   H u$)  t[Ld$H1H        HT$H
   L҄HT$Ht&H$   |$P HHIUPtH IP  HI A9H1H        H$  HL$(HHHH|A9H|$(H        Ǆ$      1$    H$   u%H$       H$   $      |$t t
$    tH        $  H$  $  HcH1<9$  HH< t1H$P  H$   Ճ$    Hu
Ht1H(Ny&$  HH$P  H        Ѕ1$    $  D$tD$t   HǄ$       D$|$uH$P  H        F  D$$  HD$0@8ÈD$(uH|$wHD$    t0L$H$  H$P  HcH4ЉH        Љ$  uH|$vHD$   uHD$      D$L$  $  =u  DhI        McILAHH  A$    T  LAHI  H$@  I        HD$(D|$1LAOLcɉL$PILLL$HAպ   1D$<  H|$(H$(  L$0  $8  AH$(  H$P  H        AH$H  H        Em  H; L$Pu^I> uXH$  LL$HJT1L$|$4  HtHuHFPtT$H$P  H        Љ
LHLH        ALH        E      H$(  D$   1H$@  HǄ$0      $8  $<  H        H$(  H$P  H        AH$H  H        EuIH; tHH        H$  E1ЋD$H$  E1$  1ۉ$  E1A   E1	E1A   HH        LEu-A      A  $   $   1H|$   HH;D$tH$X  DH$X  H$X       $  CHD$0@8tH$X  HL$H  H|$tH\$1   t    H\$0Ǆ$(      Ǆ$,     HǄ$0      I        HH\$0t#@   AHH$0  &  H$(  1HD$0L$  1   L   H        HD$HHD$@HAHI  I        HT$@H$X  HAH$X  Lt$(Ll$ $   HD$D$ HHHD$H   Hc$   H$  M}(H|$L4IFHD$PH        Є  AGE1I        D$XD9t$X~RIGLD$`H|$PF,DAЅLD$`    H|$H        ЅH  H     H$X  $   ;P~  HL$0HcHHH    ;D$ }H$X  HH@H$X  @9$     L$  LcMILIE P@
+     H$X  HHPHc )Hr  #  `  H$  H        LHH          	@q;t$ 1H$X  HcH9}QH$X  LHT$H@
t#A<tHT$HH$X  LHD$(Q;$  HtQ1H;D$  H$X  < x1|u*HLD$T$ H$   HH        ЉHH$  H        LLc3D$   Av;s3u'HcH{H        HH  cHCHCIF<0HCL|$@Fl0MLkLH        IEHCJ|0H  LH$X  HD$(LsHt$H        I~ЅD  AID$   H$P  LH        Ѕ      tBHc$   H$X  HcщL$PHHH        ЅL$P      H|$H        Є  IE(Hc$   JD8(H$  H<ЉH        HЅ`LIu $   H$P  H        Є1IE$   B,BʅEHۉ$   t>;$  H$  HH<HHH        ЅǄ$      DHt/LD$H$X  H$   T$ HH        ЉH$  H        LӸ   '  H$  H        LHH        ЅN         HcuHH9uX$   t@$|  9u	$  H$h  HcH9u	$  H$h  H$   H19D$x~DHHD$H    tVH\$1HH9tGHL$H   Hc9t#H$X  TTH   HcTTHD|$<D$<H$  H        HD$    t(H$P  H        H$  H$  H        H$P  ЋD$<HH        H  []A\A]A^A_AWAVIAUIATMUHSHHA  @ tJH        LI        Aׅt"LH        AׅH        LD
I        AA;E4u,D| I}H        IcHH[  IEE>IcE4IUI        HHAM4E1H        HT$LLH$I        хHT$tAI
H$AuE1D*H        LAօI        uiE1HI        I        t8E1DAՅtBt% HAII   u1  AA   tDAՅtDHAH        LAՅu^E1HI        t7E1AD$^vBt% HAII   uAA   {AD$^vDHAH        LAՅuaE1HI        t:E1AD$wBt% HAII   uAA   AD$wDHAH        LAՅukE1HI        I        t:E1DAՅtBt% HAII   uAA   DAՅtDHAH        LAՅukE1HI        I        t:E1DAՅtBt% HAII   uAA   DAՅtDHAH        LAՅuaE1HI        t:E1AD$Ѓ	wBt% HAII   uAA   AD$Ѓ	wDHAH        LAՅuaE1HI        t:E1AD$^wBt% HAII   u.AA   AD$^wDHAH        LAՅuaE1HI        t:E1AD$wBt% HAII   uAA   AD$wDHAH        LAՅueE1HI        tBE1A	tA uBt% HAII   uBA tAA   ,A	uDHAH        LAՅ   E1HI        tiE1AD$^wDAՅuBt% HH        II   uDAՅuDHH        AA   AD$^wH        LAօukE1HI        I        t:E1DAՅtBt% HAII   u"AA   DAՅtDHAH        LH        Ѕ   upE1HI        I        t:E1DAՅtBt% HAII   uAA   DAՅtDHAۺ   H[]A\A]A^A_AWEAVIAUMATI    USH        H8H4$HT$D$    ӿ8   HHHn  HHT$`  EtH E1IHL$HHH<$H        ЅuH        -$HH        HH        ҋ$AE   A6@tH$HIH$EtHH        A$   ~It$xHH        11D$(Hl$ HL$ LI        AHItbA$   ~CA$   11D$(H\$ HL$ LAHt0H¹
   LLH        <H        HL(HH        HH        AE    1H8[]A\A]A^A_AWAVAUATIUH́   SHH   H|$HL$LL$CM4$P#  H        $11HLH        HIuHD$    f  A   I          HL$HcA89AH  ;A,  HQ<  HT$Ht$HA11HLLHIĹ   LH        HIjMu`Il$0L|$ADD$ Ht$HHELH   ID$0H        Ѐ{	tqLl$LDD$ LHH|$H        MA}  Iu1{	t+Mt1H        LH        HD$    HD$8 t   E1Hw   @HI	   1ҹ   LLH        HIuHD$    Yh(T    H        D$l    տ8   IHD$ HIu@H|$ H        LHD$    E1HD$8   M  g
  MtHT$Ht$HH        AǊC<uHD$      <D$P uJAM HD$   t
   H|$ H        HD$HT$HDx8HՀ{AtD$P{uCD$8    AD$0    H$   ALD$DHHt$HD$xH|$pI        Aԅ   HT$Ht$HH        AǋD$p
  
  C<uHD$      <
  HD$HT$H$   Dx8HՊ$   tuHD$D)x8Cf
  H$   A   LD$Ht$H$   H$   H$   AԅtHL$t  E1HT$Ht$HA   AǋD$pMO    $   x  o  
  $   uH$   H        H
  T$p
  t$x$     $     @ƀDփ
  Dȃ0
  '
  HD$     M3  D$8A;D$0  DD I        L$\T$XI|$IcDD$TLT$HH    HHD$@AI|$HHt$@LT$HAH
     HL$k  H|$ H        LH           HI   uHD$      I	   11HLH        HITA     HtHD$      HT$DD$  utHt$HH        DD$ <	uHD$   uHD$    X  11CHLH        HI       A      A   u4H      HI   I   A   A   uE1E1H        aI      1H        bE$T$8HT$0Ht$ DօHt$ HT$0L$8u'A_t!HH@uAA@AIc1I,A   IL	   ͋I              tu~t   H11LA	   H   H11LA
   H11HLAԹ
   HIHLH        HI3Mu)H11LAIMH        HT$Ht$HLj  11HLH        HIA      A      <!Hl$HD$AH        H        EHpPI/<#HD$Hl$AH        H        EHpPILH        Ѓ}  I2HD$      Ll$H        Ht$HLA    Hl$0Ll$8C<A<@  H|$Hk<Do8H;Hl$(H|$   HT$HH|$H        ЃAu{uE1;,tHD$ 
     t2C<t/Ƚu);,u$HT$HH|$H        Љ1DtAuAH|$8 u{uHD$ 	   ?  HD$HT$(Dh8HD$ HSCH  A9~	X{Nu	A    Ht HD$      1<E@ōl-HT$Ht$HHD$0M  D	u 1H        LH          E1E   MA   I        E9TLDD$PLLL$ ALHIŹ   LH        HI  M  DD$PLL$ AA9  LLH        MIA0uIcW(H        LH        1ɃLL1҃
H        H   At$MIǉt$ 9l$ XLLH        LIĹ   HLI        AHtGMtB1ҹ
   HLAHIt*D$ Mt-L   LLH        IHD$    E1HD$8 tMtFHD$   C<s<fEL  1  9/   t$xH|$ H        ЊC<{<tE1HD$Dx8|$P tH|$ H        A   ~IvxH|$ H        A}$ H        u&I}( uA}0 uA   ~qA}4 uAE tcA   11Ƅ$   L$   H$   LI1MtqHt$ H<   HH uH|$ H        ]LH        HD$ Ƅ$   H$   11LH$   HIHD$    S|$pv,  H        H        1H        T$pH        $ЋD$0A;E$u,D I} HcD$0H        HHzIE IcE$IU HAM$L$x)Hl$xH        HHu7u H|$ H        1zH|$xH        HS   UHl$xH        HHuu H        H|$ 1   Ht$HD$LL$HL$lLD$xLHt$ HxPH        H|$1HD$x01H$    T$x$   HtDD$TL$\T$XIl$ID$DD$8Ict$0ID$IcD$0It$xA|$01I        99L$HT$@H|$ AԋL$HT$@Ł   u}HD$ 11Ƅ$   H$   LH$   H{Hƹ
   LLH        PH   []A\A]A^A_AWAVAUEATIUHSLH(HH|$HL$H$H        Ѓ; IuI        HuqMupMMEMAD$   E   EIHL$LHH|$A׃; ItHuMt1H        LH        1vMtLLD$   LH<$H        HLD$u4L1H        H        1H        L   I,<	CLH([]A\A]A^A_AWEAVIAUIATULSHH(HH|$HD$H        Ѓ}  ItHtnLH   HD${
   HT$H        Ht$HЊCt8Eu/IELHLH|$H        Ѓ}  tHu
1:<	u1HL
   H|$H        HInE    LH([]A\A]A^A_AWAVIAUIATUHSH   G8HMHt$D$8    HG    HG0    H   HG8w,H߾   H        HHu  HE   HE 1HE      HH        I?ǃ      vA   
  I}H        A   H{HHDL9wEAHI        AD   HC@H        ǃ      H        H        Ѕu            ~VtH        HCxB    AHHCx01   <    1ɍ9V  @uHH uH; H{@ E1EDd$8  LE(LH        %  @ p   Dl$AHD$1LD$(H|$PHL$ LD$(HD$D$   D$   D$   D$   MHD$PL$   DAD$   D	$      $      E툄$   $   $    u/HD$-DD$(AuH|$PH        ЅDD$(t   HD$XEHD$Xts   ~YI        H|$PAՅ   D$9$      D$|   $   9sH|$PH        ЅtWH|$PH        .   ~H|$PH        EtH|$PH        $   D$|$   AEDd$8tqLe I        I|$pHtL/ALI|$ ID$p    H        AǄ$      ID$h    ID$     H|$PH          Lm LHE0    H   Ht$PH|$@H        M   E1LL$8LHT$@HH|$PH        Ѓ|$8 ItHtQI        11   LLD$AMIt   HLLLD$AHtMHu
D$8   1HHKhLu I        IFH<    AIFIFH<    AI~IF HAI~IF(HAI~ IF0t}I~    pE1I        M;~D|$sxIF0L1HLLIF09T  Ic<HL$(LL$ HT$t$HI~8AHT$LL$ HL$(HuA   E8  A      EDd$8      H|$    H}(    LC111I        L9taHHH@x@wF@A$H Hx    Hx  8 H  tw@ttw   H@u2u.          ǃ      Nу	Ј   61H;SsHHH@p@u8 y`

@u@HHChH|$@H@Hcp8H           HHs0ЅD$<$  E1탻    I        M1HT$@HH|$<I        AHHCHu`   H|$HIcLHc1HMAyt"AŋL$DA9|Hc4HLƀ~	tH9A|c  ED9uV  xP yd   HT$@HH|$<Aչ   HT$@HH|$<HCPAչ   HCXHT$@HH|$<AH{P HC`tH{X G  Dd$<"HC`HCXHCPH|$HH        ADd$8Le I        I|$pHtL/ALI|$ H        ID$p    AǄ$      ID$h    ID$     H|$PH        Ѓ|$8 tHH        HE     HE    D$8       HHSxIIL	I~( HHE0H<    A1HI   tiH;U0sI   HLI~hH        H        HU01H9ЉI   t4H9tH        Iǆ       I~hHH        I        AՅC  I~hLH        AՅ'  I~hLH        I        AI~hLH        AՅ   E1E1IcI;~uEE1E1IF0McIB|8 uNDD$   DLH|$@H        ЅDD$   IF0B|8 uH|$HH        AAH}0 A   	HH        HIF8E1M;n]L   1HI~8HD$ IIDAA9fHC(H|$@HDD8DAօGIcH|$@H        HHs0ЅE1HH   []A\A]A^A_HHQH        H
DG8HHH        IAIAAE	AȀDG8ЅtHcH        H        H1ZH        HH:AU1   H        I        ATUSHQH/Lg LHuHLHAHuPH9uHt	LHAHuXH9uHt	LHAHu`H9uHt	LHAՀK81Z[]A\A]UHAWF< AVAUATSH8M̋M9LmM?  4  D9I|'A9}D yExD9}A    DEAE1AD$8@@Me	}D9}}1I|$  t)u%DMULHuH        DMUHuAD$8u0Mt$<uA] I;D$0wAD$0X      E1LcDMUHuJ<    LEH        HI:  PELLEDMM̋UPHuH        AVAPEH t1Ã  M  AD$8D{uVIcHHEHH        HIE   H}H        HIEuI}kE} E      uwE;} E      IcH        I}HHMHEHHHEt&I}HuHMHHUuHH        1   IUIEE} F1҃(  H        I        A1A9] *  H        AE   19~AIUALIUH1I1HcHA;E s%H2MEHHI}AՋE AD$8	ШAD$8tX} tMD}1E9>  H        H        A^D)H        LЉAܻHe[A\A]A^A_]UHAWAVAAUATSBH(E(H}DMĉEuDt
   E u9|EDEtRIHu~JHcH        HItMcHuHLI        ADELK<<MIcAIE1D}DM DEMLH}H        AWuH        LXZHe[A\A]A^A_]AVIAUAH        ATMAO UI SHH    HG    HG       HHC    LC8H  @ L	AtH心ȀH   C8C8AALHC(    AD	C8H        HHLHH        ЃtuHH        1&   H        H{ HC        []A\A]A^AUIATUHSVwHcH        H        H
H        HH        HL`t$I9Lv
HUAD- HLH        Z[]LA\A]USHRH?HtH        H{ H        H    HC    HC     H{(HC(    X[]A      UHAUIATISHHAt		AT$#DEHHuH        DEHu؉1C8H        t
AQAPj j WAPATAUHAAH He[A\A]]UAH        HjAPE1ZYUH        Hj AQAZYUHjEPuH        j H UHj E PEuPH        H ÅҊG8tG8HNLFÃG8    HF    HF    1HH	HH uú    1H        GS^v1&H        ЅuH        Ѕ[                  s                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               alnum     cntrl     lower     space     alpha     digit     print     upper     blank     graph     punct     xdigit                                                        ,       H       e       x                                                               D      _              Success No match Invalid regular expression Invalid collation character Invalid character class name Trailing backslash Invalid back reference Unmatched [ or [^ Unmatched ( or \( Unmatched \{ Invalid content of \{\} Invalid range end Memory exhausted Invalid preceding regular expression Premature end of regular expression Regular expression too big Unmatched ) or \) two arguments expected invalid variable name format %s %s Test if REGEXP matches STRING. REGEXP STRING regexp set Store matched component NUMBER in VARNAME. [NUMBER:]VARNAME *.\|+{}[]? (%s) matching: %s
 expand commands/wildcard.c not matched
 . .. matching: %s in %s
 matched
 %s%s / no expansion needed
 file <%s> in <%s> not found
 paths[0] = `%s'
 Regexp is %s
   Assertion failed at %s:%d
 gnulib/regcomp.c gnulib/regexec.c alpha upper lower alnum cntrl space digit print blank graph punct xdigit _ 8 UTF-8 unknown regexp error           LICENSE=GPLv3+  extcmd normal regexp                                                                                                                                                     a                  -                                                      
                                                             #                                            /                      ;                   M                      Z                      j                      y                           <      #                                                                                                                                                                 _      8                            (          m       ;                   T          !       _                     k                     r    P      "      z                                                                                                             E                                                                                                     r                                      ?             #                     .    .             <                     F                  P                     _                     t                                                    S                                                  grub_mod_init grub_mod_fini .LC18 grub_strlen grub_strcpy re_syntax_options grub_strrchr grub_error_push grub_xasprintf grub_realloc re_search_2 memcpy grub_memmove grub_device_open grub_file_get_device_name re_match grub_encode_utf8_character grub_unregister_extcmd re_set_registers grub_errno re_compile_pattern grub_filename_translator re_match_2 grub_printf memcmp regcomp memset grub_zalloc grub_strcmp grub_strchr grub_malloc regexec grub_isspace grub_real_dprintf grub_env_unset grub_device_close regerror grub_fs_probe re_compile_fastmap grub_error re_set_syntax grub_free re_search grub_error_pop grub_register_extcmd grub_device_iterate grub_wildcard_translator regfree grub_env_set grub_strtoul                           &          2           K          $           n          &                     *                     (                     -           +         ;           Y         <           s                            2                    ;                    :                    4                    4                    /           2         :           E         )           `                                7                2                                           :                   Y                                       g                7                                                             9                               ,                    8         9           j            I      )                    8                    Q         )           s                             (                                       4                                                   5         0           X         (           u            a               .                    6                    .                     6           5                   ?                    Z         (                                                                             ,                    *                                                                             4                               j         '           x                                                                                                        ,                    *                                                                   4                  >                    \                    t         4           m	                  w	                   	                   	         ,           	         )           	         )           	            f      
                    1
         )           T
                    k
            f      
                    
                    
                    
                                2                         &                   2         ,           <         4           v         0                    (                                         7                                   4           C         4           d            O      n                   }                            ,                    )                       `                                                     ,                    4                    $           '                  ;         8                       n                                          $                             :                    4                    :                                        4                    '                             2            o      :                                    `                                                t                                    7                  }                  }                        h                                                            Z                    J         %                                      )           $            \                  \      )                   !                  C!                  i!         )           !         )           !            !       "                  ~"                    "         &           >#                    #         4           ($            #      <$         4           N$            $      _$         4           $         4           $            $      %         4           v%            \$      %                  %         4           &         4           I&         4           &         4           &         4           '                  (                  (            P       (            7      )         +           +)                  r)         +           )            7      )                  *         "           *            p      E*                   Y*                  h*            )      *            )      *                  *                  *         )           +            d!      +            )      +                  ,            )      ,                  ;,         4           T,                    -                  .                  .                  K0                  0                  1            d!      H1                    1                  2            1      2            1      3            1      3            1      3            1      4            Z      p4            1      4            1      4            4      !5                    f5                    5                    6            !      	7            1      ]7            Y6      7            4      7         4           7            1      L8         )           8                    8         %           8         )           -9            28      I9         %           9                    :                    :            ,      :         &           ;            28      $;         4           ;         )           <            28      n<            ,      <            !      <            \$      "=                    $>                    G>            Z      Q>         %           ?            Z      ;?            <      M?         4           l?            Z      ?            ,      ?         4           @                  @            7      A                  'D                  8D            7      WD                  `F            ?      F            ?      F            F      H                  PH                    H                    xI                    QJ                  J                    J         )           ^K                    L            9      L                    +M            MG      7M            SL      LM                  bM                  M         %           M            L      N         %           N                  3O                    AP                  iP                    P                    Q         %           Q                  gR                  R                  R            7      bS         %           S            }      T            MG      T                  1T            SL      GT                  vU         %           U                  U                    V         %           V                  W         %           +W                    W         %           *X            !      aX            4      X            4      X         4           Y         4           Y            ,      Y         &            Z            28      Z         4           Z            !      Z            \$      Z            t      3[            Z      [            d!      [            &X      [            4      [         4           x\            28      \            1      \            7Y      \         4           \         4           ]            d!      _]            7Y      k]            8      ]         4           ^                    ^         %           ^                  &_            d!      R_            &X      _            28      _         %           _            Z      `            .:      }`         %           `            '      4a            4      La         4           a                  a            .:      b            4      0b         4           Ob         4           b            Z      b            K      b            1      c            7Y      Gc            1      ec         4           c         4           c            &X      c            Z      Nd            ^      d                    d         4           d         %           e            pM      f                  g            t      g            'd      ?h            pM      oh         #           h            L      i            ^      i         &           j                    5j         &           oj            'd      Lk                  k            .:      k            8      k         4           l            .:      -l         4           xl            "      l            f      Am            8      }m                  m            .:      m         4           m            "      n            f      n            7Y      o            7Y      =o            <      To            !      ko            4      p            C>      p            Z      q            Z      'q            C>      zq            C>      q            t      s            Z      8s                  vs            1      s            28      s            t       t            Z      t            ,      Gt            []      t         4           t            d!      u            ?n      Uu         %           au         4           u            ?n      "v            K      Xv            '      v            Z      v            Z      w                  5w            1      Mw         4           w         %           y            9      z         )           z         )           >|            (      Z}            M      }            M      ~                  ~            .:      X            "                  f                  -                  l      B            L      j                  t            )                        L            '                  pM                  8      '                  R            .:      n         4           ԃ                           )           L                   Ą            ^                                              B         %                                          }                          *            28      T            1                          ƈ            d!                                  4           5         4           N         &           x            !               )                    4                    4                                          4      Ί            .:                  .:      j            .:                                   &                        }      y         4                    4           !            l                  -                  &      s            -      ԏ         )                     %                       t               4                       -      .            []      @         4                    %                       t               4           ّ         4           -         4           2         )                    %                               -            1      K            Z                  Z               4                       &                  +               4           Ֆ                             )           V            28                  '      ٗ         #                       1      :            Z      h            K      ͘            Z                  +      5         4           X         4           l            &               4                       &      Ś            $               4           5                  B         '           V                  e                  u                                                         ԛ         '                    '                             +         '           =            ^      G                                                ^                        ,            ^                                    ^               +                                          ^      *                                                ^                                    ^      o                              ^                                    ^      ]                  {         +                       ^      Ԡ            ^                                    ^                   (       {                           '                       ^                        9         &                                         ^               4           ͢            #                        '                  I            \                                    #      ã         4           ң            #      <            P      S            \                  F                        4            F      ^            >                  G$                                                   &           ;         4                             Ѧ            ^      D            z.      f                                      8                             4                       #                  \      P            F                  \                        -         %                       \                        W            F                  \      Ŭ                  Ϭ                              o                                           E            F                  F                  F                  G$                                           L                                                 n                        ԯ                                     !                  i                               ^      8                  W                  h            \               4                        #      Z                  d            p      p         "                       p                                                          ^                          B                    Z            ^                        Y            ^      Ѵ                                    3                              G$                        Ե                              G$                                    G$      j                              F      ۶                                                        η         %                    )           -         &           E                  Y                   c         '                                      %                       9      $            MG      k            9                  SL                                                   4                    4           A            $      r            F                  >                                 )                             J                  8            28      h            Z                  .:      t         4                    4                    4                       $                   $                  -                  K               4                                                            0      '            -      1            K      E             *                  Y6               4                    )                       4                                      =                                    @      0                    J         %           T            pT      r         1                    )                       ow      g         )                    )                               
         4           8                  B            )      Z                                                )               4                    )                                                 .         4           d         )                                           =      5         1           J         4                                         @                                                                             $               4                                           ow                                          *            V      O            V                %           9          +           K                                 n                    r                           P             (      X             (      `             )      h             )      p             &)      x             5)                   ;)                   A)                   H)                   Z)                   g)                   )                   P*                   +                   f+                   +                   +                   +                   Z+                   Z+                   z*                   z*                   Z+                  +                  +                  +                   +      (            7}      0            7}      8            |      @            r|      H            }      P            G      X            ۰      `            ۰      h            ĩ      p            v      x            ۰                  ۰                                    h                  ۰                  2                                    ۰                  ۰                  ۰                  ۰                  ۰                  2                  2                                    ۰                  ۰                                                       ۰                  ۰                   ۰      (            ۰      0            ۰      8            ۰      @            ۰      H                  P                  X                  `                  h            .      p                  x                                                ;                  ~                                                      u                                                      %                                                                                                                                       .symtab .strtab .shstrtab .rela.text .rela.text.unlikely .rela.rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                       @                                          @                     D                          +                           _                              &      @               !     H                           ?                     @                                   :      @               !     @                          G      2                                                 [                                                         V      @               *                                a                                                         q                                                          v                                                                                 .                                                          8                                	                                                                               (*                                                                                                                                                                                                                                                                                                                   boot/grub/x86_64-efi/mdraid09.mod                                                                   0000600 0001750 0001750 00000005300 13417732100 0015235 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   UH        HAWIAVIAUATISH8HH  IH           IHUIEHEHI  I1L   HuH        ЅI        f  A} N+X  A} M  A}ZB  AE HH92  A]   LMD؃v1Cv)
t$H           1H           A  -        AHI   AEL]I        H            H}AAE4ACAE8ACAE<ACI    IF    A  A1AM,AE  AE A   LEL]A	tAMAU(SL޿   H        QHMLHAXZHLA1He[A\A]A^A_]H        H        H        H        H        unsupported RAID level: %d md%d mdraid09                                   LICENSE=GPLv3+ diskfilter mdraid09                                                                                                                        /                                                                                    	                                       0                      >                      M                      Y                      s                                                                                                               grub_mod_init grub_mod_fini grub_disk_get_size grub_snprintf grub_disk_read grub_malloc grub_diskfilter_make_raid grub_diskfilter_list grub_error grub_list_remove grub_free grub_list_push              
           8                     v                                                                                    B                    L                                                                               %                    1                    ;                                                               .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @       E                                   @                     P      
                    &      2                     )                             :                                                          5      @                     0       
                    @                                                         P                                                          U                                                          ^                            	                                                                   
                 	                                                                                      g                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/reiserfs.mod                                                                   0000600 0001750 0001750 00000033600 13417732100 0015452 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    3          @     @   W   t;w  t%+     t/0u$Ãtw    t   ø   ø   ø   SH        HЃuHCH        H<[USH        PHoPH} HH        H8H        Z[1]ATH        I   UH        SHHtoI1ҹt      LH        Ѓ}  uKH{4   H        H        ЅtH        	   1H        	LcxH4} uH        	   1H        H        H1[]A\UH        HATISHH8H        HI$    H        HH   1f|T uHHu~fDSb{`fC^DK\fDCZKXfAfSVsTASEfARI        WH        P1fAfAfEEAH I$H        H8H        HH        С        He[A\]UHH        SQHH8H        HH        HHtHxd   H        HE HE     H        H8H        HH        С        Z[]AUH        A1ATIUHSHӺ   HHЊ$AH	Ѓ$CD$H        HUHLU H[]A\A]Åu"H        H        1H        ÃSwlH        $1            HH#WH<H	HGH        19ؾ  [@H        [SH        HЃtCHH#C[AVHAUATIUS   HHt~9r   w{F9GrpwqI        AIHAI9rSwTLH        AHAuPv!u
AT$v1A9ĻC1
[]A\A]A^AWAVIAUATUSHHHDg,DHt$L$8AHD$HH        HH{  fA	HC    AALeD$ HL$t$ II~xH        HIA  H        8   E I        H        LL$(H          H        fD$D1AfD9l$LL$(r<  H        H        H        1AH        	   I  fDm1H        H          H        EAf|$   E1I        IK<MHD$(fD9uHD$(fD9D<r.h  T$<LLD$0H|$IAЅLD$0T$<xHD$HL790)  O9H  H        HC  M1I        fD9t}T$(LD$ LLD$H|$LL$AхHL$T$(tTLL$LD$ u,Itfu(H           1H        9|$8 tHkL1fD9ut|$8 umftHkLZI        1  A<$ H        @H        H1A<$   @A$   Dl$HHL3uC    fC  C(   AfST$HD{H        ЋT$C(H{,H           HkLH        1  8 H        @H        H1HH[]A\A]A^A_UH        HSHЃtk"H       H#CHH!H	Hs[]UHAWIAVAUATISHxH   HHhHXHH   L@L8IH(Dp,G,HE    xG0H߉|H        HHID$ LLeMI        (  H        HQH        H9HFH        IH`L)P1AIwHI        A1LHLH        AYAZm  } u'HhH           H        @  I|$,H        DLhHf	LL ʉTAH0L;`  HHHHй   H HH(H        ЅA  DuE  E]ƃt9    DT1H        H        F  H        I        EAI\ H9h  DhH`EVH        H        O  H        E)EHL)H9McHGL IM)C!P1AHEH@DL LXHPxHJ0H8HPxHJ8ULHxxH        LHEH@xH@0    H        8 _AX_  LXL  Hf H        HI&  HETMuUHHxxH        H        8   HEH@LE1HPxHJ0H8H@xHH8H;`C  D; 6  DDTI        E4L1H        H        t  H        EAH0LL<L;h   Dh    L`EH        H        ~  H        A)DHH0I)McLI9LGPLM)C9P1AHELLDLXHxxLH        H        8 ZY   LXLIALHELH@xH@0    H        HCIML+h1LHH        H          H        I        MALE1H        LHHe[A\A]A^A_]HIHHwLH`LL@XHPH        ATH        UHSLg I|$HHt<E1E1H1LHH        HyHH        	 H1[]A\UH        HAWIAVI        AULmATSHHhHǅp    H8H        HCH8H        HI5     HxH        ǅx   ǅ|   HE    о   HxH        й   LHxLH        Ѕ   } u H        	   H           A   I        H        HpLLH        A> udHpH        H          H        I        L@ LC@PM1I APAHpHC    HCP1ZYZ1A>   H        H        @HpL9tLH        H8H        С        He[A\A]A^A_]AWAVAUATUSHH   (L'Ht$HT$ Lt$H           1H        1.  El$,AHxH        HH	  Ds1[H        H          H        I        ADf	D$AHD$(HEHD$0HD$(DI|$xt$IHHIIH          H        8 h  HkBD5  fD$8  H\$0CfKH\$fL$:HHD$IfD$:f9D$8  AE  AEEu   Lt$H|$HD$HAEHD$P    D$LH        о   H|$HH        пH   H        HH  H¹   Ht$HLH        ЅuP{(  1H|$HH        1H|$HH        й   HHt$HLH        ЅtHH        *  s   t$f{B LD$XI|$xS@uP    H        H        8   D$hE1ɉCD$Xf% f= D$`AGL	HC    ,   H        H        8   D$tE1ɉCHD$`HC D$Xf% f= AGL	iH        LH        Ѕt5MH        H          H        1I        AHH        eA   DDL$<HL$ HLHD$ЅDL$<t<MH        H          H        1I           AhA fD$8IXMtOH\$LH        Hй   HT$XHLH        ЅuQDt$`\$dL|$hE1H        1  8 H        @H        HЉ5H        1  8 H        @H        H1HĨ   []A\A]A^A_AUH        IATI        UH        SHHxH8H        HT$HL$H;H        HH     H|$H        D$   D$   HD$     о   H|$H        й   HT$(Ht$HH        Ѕ   |$0 uH        	   H        xA   I        H        HHt$(LH        H        8 u8HT$H        H<$H        HAH        H81HAH        H8ա        Hx[]A\A]SHH        H        H        HH        [H        H                                                         ReIsEr not a ReiserFS filesystem %04x%04x-%04x-%04x-%04x-%04x%04x%04x fs/reiserfs.c Assertion failed at %s:%d
  at level %d
 reiserfs_tree level loop detected, aborting
 level loop  number of contained items : %d
 unexpected btree node Reading from %lld to %lld (%lld instead of requested %ld)
 reiserfs offset %lld not found D: %u
 reiserfs_blocktype Reading direct block %u from %u to %u...
 I: %u
 Reading indirect block %u from %u to %u...
 Have successfully read %lld bytes (%ld requested)
 unable to find root item file size : %d (%08x%08x)
 not a directory Iterating directory...
 .. Warning : %s has no stat block !
 Found : %s, type=%d
 root not found                                                                                            LICENSE=GPLv3+  fshelp reiserfs                                                                                                                      	                            3                                                    
                                                             3                      B                      O                      ^                      j                      u                                                                                                                                                                                                                                                                                             grub_mod_init grub_mod_fini grub_fshelp_find_file grub_xasprintf grub_memmove grub_disk_read grub_dl_ref grub_errno grub_memset grub_printf grub_fs_list grub_strcmp grub_malloc grub_real_dprintf grub_error grub_list_remove grub_free grub_strndup grub_dl_unref grub_list_push grub_memcmp U                     m             0                                                                                                                                                                             -                   >                    [                   l                    x                                                                                                   -            !       k                    x                                                                                                                                                                                                       (                    8                                                    F                   T                                                           R       6                  E                                B                  R       N                                                                                            o                   }                   F                   F       "                   ,            }       ;                   V                   `            }       o            F                   l                  B      .            l                                                                                                       h            R                                                                                                         	                  	                    	            F       	                   	            '      
                  $
                  I
            0      X
                    n
            B      
                  /            F      9            M      H            F       R                                `                  '                  F                           4                    k                                                            
                    "                  ,            M      ;            F                                     '                  F                                               I                    q                  {            '                  F                                                           	                          +            	      ?                    ^                    r                                                                                               #                  =                  L                    c                  m            a                                      	                  '                  F                                                                 2                    ?                    J                                $                                                          4                  '                  F                           S                    e                                      	                                      B                  c                  v                                                                                                0                    <                    y            L                                      O                  '                  F                                                           q                  '      !            F       -                    `                                                                                                                                                        )                    8                    C                    X                    q                                                                                           
                                      (            a      =                    I                    ]            4      k            a      }                                                                                                                                                                                                                                                                                                  '                   %                    [      (                   0                    8                   @                    .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                           @                                           @                                               +                     @      @                              &      @               (2      x                           3      2                                                 G                            P                              B      @               2                                 M                     p                                    ]                                                         b                                                          k                            	                                                                                    	                      `                                                          H3      t                                                                                                                                                              boot/grub/x86_64-efi/mdraid09_be.mod                                                                0000600 0001750 0001750 00000005340 13417732100 0015707 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   UH        HAWIAVIAUATISH8HH  II           ILMIEHEAHI  I1L   HuH        ЅI        ~  A} +Np  A} e  A}   ZW  AE ȉHH9C  A]   LM˃D؃v1Cv)
t$H           1H           A  -        AHI   AEL]H        I            H}AAE4ACAE8ACAE<ACI    IF    A  AAM,1AE  AU A   LEL]AA	tAMAU(SHML޿   PH        LHAXZHLA1He[A\A]A^A_]H        H        H        H        H        unsupported RAID level: %d md%d mdraid09_be                                       LICENSE=GPLv3+ diskfilter mdraid09_be                                                                                                  (                   H                                                                                    	                                       0                      >                      M                      Y                      s                                                                                                               grub_mod_init grub_mod_fini grub_disk_get_size grub_snprintf grub_disk_read grub_malloc grub_diskfilter_make_raid grub_diskfilter_list grub_error grub_list_remove grub_free grub_list_push              
           8                     w                                                               
                    N                   X                                        *                    4                    >                    J                    T                                                               .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @       ^                                   @                     P      
                    &      2                     ,                             :                                                          5      @                     0       
                    @                                                         P                                                          U                                                          ^                      
                                                                         
                 	                                                                                8      g                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/relocator.mod                                                                  0000600 0001750 0001750 00000063150 13417732100 0015625 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    b          @     @   H        HH        HH        HHHHH        HH        HH        H(1H        HT$HD$    HD$    D$    LD$HL$H|$HD$1Ht$H(D AT1I        UHSH LD$HL$HT$H|$HD$    HD$    D$    AH|$H        HH   LD$HL$HT$HH|$AILD$LL$1AI       L9sOHSHKHHL9IGH9v-;u(HcHk0H|5 HOHL50      HQL1H []A\H        H   : H|$u=H        HLD$H      H@`Hx(H        HHH        H: u+H        H	HHHH        HI`Hy0    HH   f    Hh   `   Hp  HR   P   `   f.     (         fD            ؎ %"  2%0 "    ؎Љf          f"     uUȎЍ&  $ t=$5d 1H1 ƃǊ&Έ4&5(4tø  ظ        и  ff    ff    f    f        f                                 HH   HX   P   H   HB   @   P    f.               fD            ؎ %"  2%0 "     ĸ    Ÿ    Ƹ    Ǹ                      f.                             HH   H        "H        HH        HH        H        H        H        %            UH        H        H)   A   HAUIH        ATI        M)SMHH(VHujZY   EH}أ        E        E         E$        E(        E        E        E,        E0        H        LLHH        H}H        1HHUHH        Ѕu
EUЋEHe[A\A]]UH        I          A   H        HAUI        L)HuATISH        I)H(j j ZY&  EH}f        fEf        fEf        Ef        fEf        Ef        fEf        Ef        E,        E         E$        E(        H             H        f   E0f        H        LHHH)H        H}H        1HHULH        Ѕu
EUЋEHe[A\A]]UH        A   HAUIATISH        HI)H(H)Mj HH        HHuj ZY   HEH}H        HE H        HE(H        HE0H        HE8H        HEH        HE@H        HEHH        H        LHHH        H}H        1HHULH        Ѕu
EUЋEHe[A\A]]H        H        H)H        H        H        H)H        HGHwG
GHH        H        HH        H        HH)H        H        HH        H        HH        H        HH)H        H        H    HGHHHtBL9@vLHL;
s	L;OsL
LH MLPI9wLPML;v	L;WsLH    LAL	LID8HH!L9sKDH!LQHJ4H9wlLAHL!H9w]DI AuL)LL9HFH!Ѓy0 tAuHQ(H;BvHQ(HBy0 ty uHQ(H;BsHQ(HBA0   1S1H|u:HH=   uH        H{   HCHHHHtHSHP[AUATUSHHt}  /    HGHWH        HHTHH+WHHHtH9t
HwHHLC    H
IHHJL@HHHH)HHzHHHxHHx LHH(H@0(<-L@ LLB LLM9tL9uL9uCILII)ILAI9L@(H	HH I9ulIHH
L9tHH:TH9OH)L@H        HPHtH9Qw
HqHIHHHHHH HH@0(<-HP(HHH H        HH  HHJH9o  HRHGHHHCHHHH?HGmH HHHHG  LgI$  LgH I L9sLHH        H)HK0Ht[C   -   )@HcT$  H|)H)H        ЊL$HC0   @t(H        H{0H{8 tbHCC   D)A   AHcHC0Aպ   H)HxH        Hs0D   D)D.H        H{8HC(HPH HH{(HH        []A\A]H@    H:HHHJHLI9tLLMMM9tMI8H8H:H9Hx HHRHH[]A\A]U1HAWI        AVIAUIH        ATISHH   HLhAPL8IIѾ  H        QH        AHhK|4LHHXH!XH)H H!HXHZHHHH9Y  H        H   HHtRH0Hx HH9s  H        1H        IL@L9sHDCH9tDH@멃} AMA D|tIE HtH H        HtH Ht	HIH        DH        H0Ht;11T1Ƀ9A=   tՃH6ADD`H        Lk0Lӿ  HpLIHHD`tHp tMu-H        H          H        1A  E1| tGIE Ht>DHk0H
   HHHJAOAHk0H   HP HPHQH H        HtCDHHk0H   H+HHJAWAHk0H   HHHL HJH@H        HDt7Hk0H   HPHWAWAHk0H   HHHJH Hk0H        HD|H        H   11AAB| 9t,|Hk0H߃|	HHPHGHWBT HH   ut,||Hk0H	   HpHBH   HJH ]H        H        H}H    HEH  H0HHym   |LH |LAI(<-t(\  H        H        1I        AHk0HL9uE   IL+@Hr|HBHz HJ(LBHk0H   HQHHT6Hr|    HJHJ(HBHk0H   HQHHHV|HH;t|HHHxH@D|HE1E1   AD;|tOuMcHHMk0ALpL!
tMcHHMk0ALpLAH0E1I          1LA19|v#Hk0HpDHHTHAD1AATHH=   uHp1A   ;|t5HpDH@ID	AqMk01HLH0ILAA@u&|1ǅ    ȃ} EƉ5  HpHpH} a  } W  ;|AEG  E1ۅE  AMk0IA:Z  E1  EAE  AEt}   LXL9LCL`LhL;HkM;ZaX   H@ǅ    ǅ    ǅ$    ǅ(    ǅ,    ǅ0    )   ǅx    ǅ4    ǅP    Ȉ#H`HhH|9P  0 @  P  VH@Hk0HNH|H9  H`H9HCHH9HGH9    8  <  L  H H        II LH)ЅZ  } LEHLDXLHLXLH1E1E1111L+hIL+hM9MGL;XL`   ȃAAEE0A	E1EAE*I        C$AAwAoAg`YRKAKEE0A	<E1EA-} IRtLITH# LhL)H# LM;Z 9HEH        HH        HpL[
  x    04 ( u, $ tҸ   nf  P  G  HcA΁  @#Hk0A  Ll   DDEAA t1DH        )I|=D   C D=  HcHqHIHLF Hk0I)HHGLL_ HH(IH)I)LH MLhHH9HP r LHL9IDHV IHI@(<-L9LEHH@LV MLvLnL9HFLELI3E1HHL9sH        1I        AHH9uH1 IHHw(H9puHOHHH0;|u   LcH1HLY Mk0IIP(IpMHLRIIM9w!HHA(<-HJHHH)HHHH)HvHHHzt4HIH9u)$HH
tHHIH9uHH9uHF HH1;|tIp(H9puIHHHH0H@    H        $ʃu'H@H@HH H;`vx4Pcx txR4J,B,:(2(*P$$00PH@0
HEHpI        E1H        ALADH        IcHH8HHPAǅ    ǅ$    ǅ(    ǅ,    HF(Dv0ǅ0    ǅ4    ǅ@    ǅx    ǅX    |9X  A0 uJ4 A   u;E0@ u/$ u, Au( t
A   uAX  PHPHk0H@HLbI9  ELmuDH8ILo(H`L9LCHhH9HFL9Hpu  HEu MeL)AIEwHcxHk0HDIELH+BIE Eu{AFwx    H        Hu@   LH}H        AEHpL`HpH        HHpHHHtHBH        IE(A   Eh  A^  HpME1I H  HHHH M9t  H        IE1HpH9Ht"L  H        LIMuM9uMulHpH9Ht\LI        A   ALE1AԺ@   LH}H        H        H8HH        AE1_  M   M)MzIzMLLI   I        LAԋL     1L)K|:LCD:AH        LIH        IBH HtLPLH        E1M   LpHH1LI~I        H-   LH)IFHALI+V1Hк   HI|AT  H)AH        LIFH HtLpILE1H        MU0Mu8$AuHcxHk0HHPIU0H@IE8EuA   H}H        HP    H        $ʃu'HPH@HpH H;`v4@XxT,L,D$<$4(,($00ǅ4    ǅ@    XHP0EtzE1I        D9H8Hx(vLIHHAI        AH        H          H        1I        AHAkH8L`HLhLxLp H        1MMH        H          H        I        AҸ   1He[A\A]A^A_]HGHGSH        п(   H        HHtKH@H        L H        H        s   H        1I        LC AH[UHHHAWAVAUIATISH(H9HuHE    H        wSHHIH        HUHuHKL% I9v?H Ht>HPL9wHHp I9sH        &   1H          H9s׿8   H        Iǡ        M  AV1H        LMLEH        AT  H        I        AXI I        Zw1HsjHL]MMj    HAAZA[L]   j MM   HULjHAAXAY   j HuHMM   j LH        ^_   HsjH   MMj HH        ZYtIGH9CvQHCK  H        H        H        1ALH        H           ^1MMGH        H          H        AKD% H9CsHCLIWH9SsHSHKI9OsH9CsHCLIGH9CsHC1LC H        H          H        AM9gsH        HC M9gvH        HC LC H        H          H        1AMgMH        Mo HH          H        IL;1MAIGIGHEL81He[A\A]A^A_]U1HAWMIAVIH}AUI        ATMSLHxHhHpHHʹ   EI9HUIFLMHuLEHxH        EM1H        k  H        HE    Aտ8   H        IHE        M&  1}jHpLILHxI        PA^_   HEH        H        w  H        L@1MAH        1MH        x  H        AHEHPHPHEHX IHEHHEIL  LxHpHUHuLH        uu1LxLpH        H          H        AjLMILHUHujLAH uIIvjH   LMIj LAZYtHEH@I9FvIFH           8H        UHuH        LH߃} uaH           1H        K  H9vCH HtEHPHNH9wIL@ L9sڃ}tH@ IDHH!HVIHuHH9s1H        MF H        H          I        AHEHxH9xsH        HIV HHH9HvH        IF MF H        H          H        1AHEH          H        HX IHEHLE1H        MMAHEHPHPHEHhH1He[A\A]A^A_]AVHAUATIUSt]HI        Ht41;k0H{(sHHAL3H        HL[]LH        A\A]A^[]A\A]A^U1HAWAVAUIH        ATISH        Hh  HLG Hx  H        H        MD$ jH        1LLjHH        LHAZA[u H           H        _  LMLt	ID$ IE MH        H          H        1Ӻ  1HH        E1M<$MtM1WH        Aw H        MOMG  H        AGIAXAYHM?Ik8H        HHHIHHHt1Mu$LI        AHAԡ        J  HHQH(HHH=   uI$   Ht/HLIpMk8HHHMLH HA   L@L  1HH        L1L9sHk8DITHH1HI HH=   uf1   L9s<Hk8DLH~H@LIIMk8HHILAA@tLIH4LH        Mǅ    DM9   Mk8H        PH        :  1H        I        N<Aw MOMGAIWI9WY^s$LH        IO IwH        IIWI9Wv$LH        IO IwH        I@HLH        HxHL0H        1He[A\A]A^A_]RH        H   H0HHymtgLH L9sH1H        I        AML@L9sLAI(<-tH1H        I        AH9LtLH@wX                                                                                                                                                                                                                                                                                                 trying to allocate in 0x%lx-0x%lx aligned 0x%lx size 0x%lx
 relocator lib/relocator.c %d: out of range pointer: %p
 events or counter allocation failed %d
 %s:%d free magic broken at %p (0x%x)
 Failed to adjust memory region: %p, %p, %p, %p, %p allocation failed with out-of-memory
 allocated: 0x%lx+0x%lx
 relocators_size=%lu
 address is out of range overlap detected min_addr = 0x%llx, max_addr = 0x%llx, target = 0x%llx
 not allocated
 out of memory allocated 0x%llx/0x%llx
 relocators_size=%ld
 cur = %p, next = %p
 chunks = %p
 Adjusted limits from %lx-%lx to %lx-%lx
 couldn't find suitable memory target Preparing relocs (size=%ld)
 Relocs allocated at %p
 chunk %p->%p, 0x%lx
 sorted chunk %p->%p, 0x%lx
 %s:%d: out of range pointer: %p
                     LICENSE=GPLv3+  mmap relocator                                                                                                                                                                   	                      
                                                       +                   @     D               [                    w                                                                                       5                                                         P              "    I      4      8                  M    A              b    #             ~    ~                                       Q                   }                                        _                          .    '            O                  d    	      J                                                                                      ,      '          +      v                                                                   '    	             A                  U                    s    |                                    5                                                       "                                    	      J       7    2              L                   o                     {                                                    3                             I                                                                       )                  >                  R    #      v       e                     r                     }                                                                                  (                                                                           7               6                  R    \       U       y    H	      C                                   >                                                                                  "    70             5                  J    #             f    \                   $             grub_relocator_align grub_relocator64_cr3 grub_relocator64_rbx grub_relocator_forward_src grub_relocator_backward_src grub_relocator16_ebx grub_efi_system_table efi_wrap_4 grub_relocator32_eax grub_relocator_forward_start grub_relocator32_start grub_relocator64_rax grub_relocator16_start grub_relocator32_boot grub_relocator32_ecx grub_relocator64_rip get_virtual_current_address grub_relocator16_ds grub_memmove grub_relocator_forward_chunk_size grub_relocator16_boot grub_relocator16_edx grub_relocator_firmware_alloc_region grub_relocator_backward_dest grub_relocator_alloc_chunk_align grub_relocator32_edx grub_cpu_relocator_forward grub_relocator16_es grub_fatal grub_relocator16_sp grub_relocator32_ebx grub_relocator_prepare_relocs grub_relocator_unload grub_relocator32_end grub_errno grub_memset grub_cpu_relocator_jumper grub_relocator16_gs grub_relocator_backward_start grub_relocator32_esp grub_relocator16_idt grub_relocator_backward_end grub_relocator16_ebp grub_relocator64_start grub_relocator16_keep_a20_enabled grub_relocator16_ss grub_cpu_relocator_backward grub_relocator64_rdx grub_relocator_backward_chunk_size grub_zalloc grub_malloc grub_efi_get_memory_map grub_relocator64_boot grub_relocator_jumper_size grub_relocator64_end grub_real_dprintf grub_relocator_backward_size grub_relocator32_ebp grub_relocator16_esi grub_relocator16_cs grub_relocator_new grub_mm_base grub_error grub_relocator16_fs grub_efi_is_finished grub_relocator32_eip grub_free grub_relocator64_rcx grub_efi_mmap_iterate grub_relocator16_end grub_relocator32_esi grub_relocator_forward_dest grub_relocator_forward_size grub_relocator_firmware_get_max_events grub_cpu_relocator_init grub_relocator_firmware_fill_events grub_relocator_firmware_free_region grub_relocator64_rsp grub_relocator16_ip efi_wrap_2 grub_relocator64_rsi grub_mm_check_real grub_relocator32_edi get_physical_target_address grub_relocator_forward_end grub_relocator_alloc_chunk_addr        d          <                     <                     ;                    I                                                            I                               6         X           L         *           V             	     v         !                                                            '                                        "                    J                    0                    B                    O                    [                               2                    B         \           Z         (                        	              N                   !                    N                                        D                    W           	                             $           $         H           1         .           ?         6           L         &           X         3           d                    p                    |         C                    1                   1                    5                                                            \                    (                    ?           6         4           U         !           |                                                 L                    8                                        V                    Y                    
                                                   	         \           %	         (           J	                    T	         ]           a	         /           k	         Q           u	         2           	         A           	         2           	                     	         /           	                    	         9           	                    	         ]           	         P           
                    
                    
                    )
                    O         U                    F                    F                    F           |         U                    ,                       5      %         ,           H            5      n         K                    @                       F       5            <       @                             F                       V                %           0                    U         R           e                            ;                       t                   <                   F                F                               "         T           :                            F                    F           M            F       W                   c         %                    ,           c                    /                             F                    K                    ,                                       %                       `                K                    F                    ;                    ;                                                                       d         ;                    ;                    K                                                                        Q          ,                                                                                 ,           N!                   x!                   !            ~      !                   "            ~      "         K           "                   "            <       "            F       #         @           :#         K           N#                  X#            <       g#            F       q#         @           #         S           #         :           #         >           #            3      #            <       #            F        $         @           B$            H      W$            3
      $            `      $         G           $         ;           $         +           $            <       $            q      %            F       %         @           ,%                  %                  %                  &                  &            <       &            F       (&         K           4&                  Q&                  [&            <       j&            F       &                  &            <       &            F       &         A           '         Q           '                  '            <       -'            F       C'                  T'            <       c'            F       '         @           (                  (            <       ((            F       B(         ;           T(         +           (                  (                  (            <       (            F       (            <       (                  (            F       B)            3
      d)                  n)            <       })            F       )                  )            
      *         M            *            >      1*         G           *            F       *                  *            <       *         @           *         A           *         Q           +                  +            <       +            F       1+                  @+            F       ^+            <       +            ~      +         K           +         K           !,            c      1,         @           Y,            <       c,            F       v,         	           ,                  ,                  ,         G           ,                  ,            <       -            F       -         ,           :-                  H-            <       _-            F       -         ;           -         K           -         +           f.         ,            /         K           M/                  X/            <       i/            F       s/         @           /         7           /         A           /         #           /         Q           0         -           0         K           :0         F           m0                  w0         %           0                   0         %                         w                   ~                   w                   ~                    ;      (             B      0             I      8             Q      @             Y      H             a      P             i      X             p      `                   h             F      p                   x             F                   _                   g                   o                   w                                                                                               !                   r"                   !                   r"                   2"                   :"                   B"                   J"                   R"                  Z"                  b"                  j"       .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                        @       0                                   @               E      8                          +                     1                                    &      @               _      `                          3      2               02                                  B                      5                                    H                     05                                    X                     @5                                     ]                      @5                                    f                      E5      
                                                    P5               	                 	                      8>                                                         xb      o                                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/mdraid1x.mod                                                                   0000600 0001750 0001750 00000005250 13417732100 0015341 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    h          @     @   UH        HAWIAVIAUIATS1H8  LHII        Iu
I  tE1AIM1LLL   LLLAӅ~  N+LLLN  L9`A  ?  Ev/Hv'
t"H           1H           p;E   H    L   LLH        Ѕ   ;,   AIF       H        HH   H   HHpH        L HPD(MIuLXRH,   PHN H        HZYÀ)1He[A\A]A^A_]H        H        H        H        H        Unsupported RAID level: %d mdraid1x                                               LICENSE=GPLv3+ diskfilter mdraid1x                                                                                                     (                   H                                                                                    	                                       0                      =                      L                      X                      r                                                                                         grub_mod_init grub_mod_fini grub_disk_get_size grub_memmove grub_disk_read grub_malloc grub_diskfilter_make_raid grub_diskfilter_list grub_error grub_list_remove grub_list_push                 
           4                                                              E                    |                                                            *                    4                    >                    J                    T                                                              .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @       ^                                   @                     8      
                    &      2                     $                             :                                                          5      @                     0       
                    @                                                         P                                                          U                                                          ^                      
      	                                                                   
                 	                                                                                       g                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/true.mod                                                                       0000600 0001750 0001750 00000003510 13417732100 0014604 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @  
 1H           1H        SE1H        H        1H        H        E1H        H        1H        H        [H        SH        H        H8H        H8H[false Do nothing, successfully. true Do nothing, unsuccessfully.        LICENSE=GPLv3+  true                                                                                                           k                   -                                                                                               8                      P                       grub_mod_init grub_mod_fini grub_register_command_prio grub_unregister_command grub_error                                                &          	           0                    <                     F                     U                    _             %       k                    u                                                    
                                                     .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .modname                                                                                              @                                           @                     P                          &      2                      A                             5                     9                                     ;                     @                                    K                     P                                    P                      P                                                          X             	   	                 	                      x      [                                                    (      Y                                                                                                                                                                                                                      boot/grub/x86_64-efi/memdisk.mod                                                                    0000600 0001750 0001750 00000006150 13417732100 0015261 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    h	          @     @   PH        H	H	H<HH        1ZÅHuH        1SH        HH        Ѕt[H           1H        H        C  HC     H	HC1[PH        H	H	HHH        1ZATH        US1Ht 8mimguHHXSHHHH   HHPH9   ;uHkH        H        a   I        H        I1Aԋ{HHH        H        H        H        H        f   H        1AH        HHH        H8H        []A\H        H        []A\H        H8 t1PH        H8H        ZH        H        memdisk not a memdisk Found memdisk image at %p
 disk/memdisk.c Copying memdisk image to dynamic memory
                                                                    LICENSE=GPLv3+  memdisk                                                                                                                             &                 B                                                                         *                      A                      N                      Z                      f                      x                                                                   grub_mod_init grub_mod_fini grub_memmove grub_disk_dev_register grub_modbase grub_strcmp grub_malloc grub_real_dprintf grub_error grub_free grub_disk_dev_unregister                                 	           4                     D                     Q                     b                    s                                                                        	                                $                   .                    =                    G            1       c                    m                    y            @                                                          1                                                       	                                        
                                                                                          (                                                       +                    A                             (                    0                     .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .modname                                                                                         @       3                                   @                           	                    &      2               s      i                             :                           @                              5      @               x             	                    @                                                          P                     0                                    U                      0                                                          8            
   	                 	                                                                                	      ^                                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/udf.mod                                                                        0000600 0001750 0001750 00000025670 13417732100 0014416 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    '          @     @   AVHIAUATUSu1  II<t<u<u6I^H        H<HHt1H9sAL fLU 11A} uKI^H        HH<HHt1H9s# JAT AL 	fTu Mu H<   H        HI  HL1HH   f:LBt` $  wE-   H
 $  Q?ʀQ?Ȁ?AʀQ	?IH1yw@9A  w?Hπ@q@yM (  v= $  w?H)??π΀@y@qHL H        HL[]A\A]A^USQH_PHtH;H        HH        H8H        Z[1]AVH        AUA1ATIUHպ   SHH@H|$ЊD$A	ЈD$Ef=uHE`f=
  HEhff f   fPDHD@DXDPDhf%tf     f=DH        H|$(   󥍊D$D$D$D$f D$D$D$D$D$D$D$D$v1   AIwN  kiɀ>Ki3D9 AHcL|(iɀQ DuDQ AACD:D<wEu(늅tAAHHH	H  fAZA;PA<FAEiQ Ei  DEk<DDAfv
Eyfw	EDl$   @t$kD$	@t$HH        IT$Ht$HA$H@[]A\A]A^;	  |"H        H        Q	   11ZH	  HHi     AWAVAUATUSHQGf=tf=
u,   H      8   H      "H        	   1H        2  C.HD      L1I        H  AA?uxsWH;AHAu!H   H        HH  HL1I苈	  H8H        HLЅ}  f} u\EH}jM9s)DoH        HA   S  s   M)HH,L1I        vH        	   H           wWH;AHA   HL1I苈	  H8H        HLЅ   f} uEH}H   AA?tM9spDofDwH        HA   unADH;H        H	  	ILDH   H        HH2M)HH]HH        1Z[]A\A]A^A_AWH        AVAUI	  ATUSH  HH  L(1I        A4$tR@1LD$L   I        Aׅ   f|$uA$9D$uD$$D$te  IŃu~   H        LI        Aօtg   H        LAօtN   H        LAօ)  D$$4$@1LD$L   AׅtH        rHCǃ	      ǃ	      H$Dt$@1LD$LI        A   LAׅuD$fK  Hc	  	  H        	   1H        /    HH        H        :   HH        1;  M	  	  Ld$$  D$   H        LAօ   H        LAօ   H        LAօ   H        LAօcHi   1ҹ   LLL  Aԅ\	     f   1L$   LLAԅ+  	  ЃvH        H  ~N8tH        hHc	  ʍq	  Hː	  HHfvH        0t	D$19	  ,	  19}&HHӐ	  Li   fFZ  fD9NufNH;	  uH        @1LD$  LAׅ*f|$ H        	   H$  H	  H$  H	  HH  []A\A]A^A_UHH        SQH?HHt,Hx\1Ҿ   H        HHE H        HE             Z[]ATIH        UHSHӋVvЉǡ           	     LCH} N	@HcHHH        1Ѕt        >Cf=
t'f=t![]A\H        	   1H        AD$H+C1[]A\AVH        IAUI        ATIUSHH8H        ID$H8H        HH   	  H	   HHxH        HHtxHH	  HH        Ѕu]A   I        H        HT$HLH        Ѕu(HD$ID$    HID$PH@DID$@A101H        H8H        HAHAա        H[]A\A]A^UHSARfDW.AfAtJfALuafu   H      H   HHLH        HdH        	   1H        1CHAPI        j D	  APwDIHHHASAQIH8H        H0H]IIHOHW`HwXH        HPAWAVAUATUHSHLoDI  LH        HI  I111MHH        Hx K|-HHtHK,MHD$'LH        4     H]E /ML;|$   LL)HBL9   A    A    AGLvLL9   AQ   H        $H9t/H.C.HxH9t/H.HbH9t/HIvIHH        Ht.HH        H$H         LH3LH        HH        	   1H        1H[]A\A]A^A_AWAVIAUATUHS1HX  HD$4HT$HD$H;]Dt  11LL$ A&   HHH        H&I  f|$ t"H        	   1H          D$DD$2HD&HD$  HE    	  H        	HcHHH   HHt$H} H        Ѕ   D$2t'HL$Hھ   H        Aօ      DD$3LL$P<   HL$EHA{'DD11H        T$3H9u<1HH|$PH        I        HIu0H        LA18D$3HL$H\HfHL$HDHAօtLAո   HX  []A\A]A^A_AVA   AUIATIUSHHD	  H        	HcHHHtcHDHH	  H        	HcHLH   H        Aԅu!HLL[]A\A]A^H        1   []A\A]A^AUH        IATI        USHH(H8H        HT$HL$HD$    H;H        HHu1   	  H	   HHxH        HHtHH	  HH        ЅubA   I        H        HT$HLH        Ѕu-H|$HT$H        H        H|$H9tAHAHAH        H8H        С        H([]A\A]SHH        H        H        HH        [H        H                   ; Z x     0N                                        invalid part ref invalid file entry invalid aed tag not an UDF filesystem NSR03 NSR02 BEA01 BOOT2 CD001 CDW02 TEA01 too many PDs too many partition maps partmap type not supported invalid tag ident can't find PD invalid fileset descriptor invalid fe/efe descriptor invalid extent type invalid symlink invalid fid tag .. . udf                                                                                                         LICENSE=GPLv3+  fshelp udf                                                                                                                           	                            3                                                    
                                                             )                      ?                      L                      [                      g                      r                      ~                                                                                                                                                                                                                            grub_mod_init grub_mod_fini grub_strlen grub_fshelp_find_file grub_memmove grub_disk_read grub_dl_ref grub_errno grub_memset grub_fshelp_read_file grub_fs_list grub_print_error grub_malloc grub_error grub_list_remove grub_free grub_dl_unref grub_list_push grub_memcmp    1                     r                                                                                                       -                    A                                        m                                                            *                   ;                    f                                                                              J                  V            $       e                                                                              E                    r                                                    P                           4            J       A                    W            P       p            V                   4                           !	            t       2	                    P	                  \	                    r	                    	            \       	            b       	            h       
            n       
                   
                   
                   S                                                                                                "                    5                  Q                                                                                                                                                               (                  V                    w            .                  
                                                                                                        o                                	                                                                                  .                    U                                      
                   ^                    r                                                                                                  &                  E            -      V                                                    .                  =      3                  S                    ]                    q                                        (                    K            @      m                                                                                                                    &            .      <            
      F                  [                    u            =                                                                                                                                                                                                                                                   (                   0             0      8             F                   B                                             (                   0                   8                    .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                           @                                          @                      X                          +                     `      @                              &      @               x&      x                           3      2                     F                            G                           \                              B      @               &                                 M                     P                                    ]                     `                                    b                      `                                    k                      g                                                          p                                	                                                                               '      t                                                                                                      boot/grub/x86_64-efi/memrw.mod                                                                      0000600 0001750 0001750 00000011040 13417732100 0014751 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   AWFAAVAUATUSAPv(Y[]A\A]A^A_H           1H        I11H        II<$11HI|$ՃAIuI|$11ՉIUD!ȊRdtwtbuC.t!	0,ftf!	fft!	Z[]A\A]A^1A_SHt"H           1H           HH11H8H        HHHRRdtwt1ɀbuHC8 t>H|$H        	   1I        AHCHt$HxH        H        1H        1H[SH        Ѕy  H        I        I        H        1H        H        I        I        H        1H        H        H        I        I        H        1H        H        H        H        E1H        H        H        H        H        E1H        H        H        H        H        E1H        H        H        H        H        H        [SH        ЅurH        H        H8H        H8H        H8H        H        H8H        H8H        H8H[[                v                                                                      two arguments expected one argument expected %x 0x%x
 Read 8-bit value from ADDR. ADDR read_byte Read 16-bit value from ADDR. read_word Read 32-bit value from ADDR. read_dword Write 8-bit VALUE to ADDR. ADDR VALUE [MASK] write_byte Write 16-bit VALUE to ADDR. write_word Write 32-bit VALUE to ADDR. write_dword Save read value into variable VARNAME. VARNAME   LICENSE=GPLv3+  extcmd memrw                                                                                                                                          S                                                              	                      
                                       +                      B                      ]                      i                      ~                                                                                                               grub_mod_init grub_mod_fini grub_snprintf grub_unregister_extcmd grub_register_command_prio grub_printf grub_efi_secure_boot grub_unregister_command grub_error grub_register_extcmd grub_env_set grub_strtoul $                     5                     H                                                             &                    j            -       {                                                    0                                                                                                   6                   R                                      W                           $            a       .            R       :                   D            ~       N            (       Z                    d                   n            R       z                                                                                                                                                                                                                                                                                                                  )                   3                    =            +      I                    V                    f                    p            (                                                                                                                                         7                   ^       .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                        @                                          @                     @                          +                            P                              &      @                      0                           3      2               p      f                            B                                                          H                                                         X                           0                              ]                                                          f                                                                                                                	                                                                                0      o                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/ufs1.mod                                                                       0000600 0001750 0001750 00000017210 13417732100 0014505 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   PH        HP1ZQIЉ1ҋOD      !DOMuLh    ЋwA   AD΋OdH`  湀   HcH        HС        ZAUH        ATI  USQHH   H        I        Hcu t1Iع`  LAH        8 t        tfu`\  T uKC0tDPu=ǃ           9s
  L`  ǃ      H7HdH        	   1H        HH        1Z[]A\A]UH        HSHQH8H        H;H        HHu	E     @ E H        H8H        HH        С        Z[]UHH        SQHH8H        HH        HHt4H    t*      H        1H        HE HE     H        H8H        HH        С        Z[]UHH        SHQH8H        HE     H        H;HHtH  H        HE H        H8H        HH        С        Z[]AWAVAUMATIUH        SHHhHp  HL$ IHT$8Ht$0LL$HH)H9A$  LGID HHHD$(AD$0HDHD$HHl$HD$HD$HHD$@H;\$  AD$0HD$HwA    AD$dA   L{D$A$  DHDAIcI9s(A$  L$LD$\I$`  HT$H   jI)HI9siDLA$  HAΊL$McHI$`  M!LD$\H   J    t$\L$LD$\I$`  H   Ջt$\   I)CILHH   C	A$  LDL$LI$`  LD$\HL$AHMcH   DL$Lt$\LI$`  LD$\DHL$L!M!HH   J    BH        	   1H        1H        8 t	H   H;\$@tD$HAT$0BH#D$(HDA$  HT$ E1HH9u|$HWH#T$ AHcH)HtcI$`  H|$0LD$Hz0H|$8I$`  Hz8AL$dIcI$`  HHI$`  H@0    H        8 t DAt$01H|$H        D)AD$0HHD$D)HD$YLHh[]A\A]A^A_IIHOHW`HwXH        HPAWH        AVAUATUHSHHH8Ht$HxH        HI  E </uHH,$uH        L1n  h  f% f= @t)H           1H        $  t
HŊE </uE1EL;p  r'HT$H           1H          I        11LL$(A   LHLT$AH  D$.IL+$$LT$L9HD$  IO11MMHAHm  LLH<$H        ЅB  L9d$tC|%  /  1I        D  t$(HAԋh  L$$f% f=   Lp    ~"H           1H           IH        HI      u"Hp  <wHH  H        MM111HH        C< A<$/   HDD1H$DI        ЅuLHH        LAH        8 D$,ALH        С        H8[]A\A]A^A_AWH        AVAUATUHSH   H?HT$HL$HH  1I           HAԡ        Ld$  Ht} /t%HH           1H          HHH        H        8 S  h  f% f= @t"H           1H        !  E1I        EL;p    11LL$(A   LHAH   f|$,    D|$.AHxH        HH   1   H|$0H        IL$11IMHAHI        yH[BD=  HT$@t$(HHD$ЋD$@HHt$0f% f= @D$0	ЋT$XD$0HD$T$4HT$ЅHtAAD$,AHH        С        H   []A\A]A^A_AUATIUHSQHGH8H        HHtgI        1HǾ   H        A}  tH        HAE sHt} /t+HH           1H        ѡ        =HHH        A}  tHH        I\$PHp  ID$@1Z[]A\A]SHH        H        H        HH        [H        H        not an ufs1 filesystem %08x%08x ufs does not support quadruple indirect blocks not a directory file `%s' not found too deep nesting of symlinks invalid file name `%s' ufs1                                                                                                            LICENSE=GPLv3+  ufs1                                                                                                                               3                                                                                           )                      6                      B                      Q                      ]                      l                      x                                                                                                                                                                                                       grub_mod_init grub_mod_fini grub_strlen grub_strncmp grub_strcpy grub_xasprintf grub_strdup grub_disk_read grub_dl_ref grub_errno grub_memset grub_fs_list grub_malloc grub_error grub_list_remove grub_free grub_dl_unref grub_list_push                           w                                                                            P                                                                      i                    z                                                                                                                                                                                                        2                    A                   k                   w                                                                                                                                                                                                       +                    :                    E                    b                    m                    ~                                        C                    c                                Q               	                                                   ?            O       P                                _                                       Q      "         
           K                               s                                                                   	            Q      ;	                    Q	                  c	                    	                    	                    	                   	                   	                     
                   1
                    H
                  T
                    w
            O       
                    
            Q      
                                        9                                                                                                                       3                    V                   g                    r                                                                                                                                                                                                                    	                          (                   0                     8                   @                   H                    .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .modname                                                                                         @       
                                   @                           	                    &      2               J                                   :                            d                              5      @               h             	                    @                     h                                    P                     x                                    U                      x                                                                X      
   	                 	                                                                                (      ^                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/minicmd.mod                                                                    0000600 0001750 0001750 00000013160 13417732100 0015247 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @  
 AUH        1H        ATI        USQH        HHtSH3H        1I        AHkHt8H;ktH        H        HEH        H01AHm H        H        H[P|Z[]A\1A]UH        H        SQHHt3SHsH        LC8%   1+HZ[1]ÃWvYH           1H        t!H1
   H8H        Ht܉H        AVAAUATUSu%[]A\A]A^H           1H        I11I<$H        Iš        uPAν   ~I|$11H1I        H9t%B4+H        1HÉ@@A1[]A\A]A^ÅuH           1H        UATH        I        USH*HHtH3HAԅt'H[P[]A\H           1H        HH        ЅHH        []1A\AWAVAUATUSH  "H           1H        0  H:H        HIt1   HLH        HI   1I        @           DH        Ѕt1t,DH        1AHL9t,DAG^vH        HHtHCXHt
   HHDH        1AH        HHtHCXHt1HHH        H        H        LH        1H  []A\A]A^A_SE1H        H        H        H        H        E1H        1H        H        H        E1H        H        H        H        H        E1H        H        H        H        H        E1H        1H        H        H        E1H        H        1H        H        [H        SH        H        H8H        H8H        H8H        H8H        H8H        H8H[Name	Ref Count	Dependencies
 %s	%d		 , %s 
 %s (%d%c)	%s
 one argument expected no address specified %x%x  no module specified no such module filename expected %c <%x> Show the contents of a file. FILE cat Show this message. help Show memory contents. ADDR [SIZE] dump Remove a module. MODULE rmmod Show loaded modules. lsmod Exit from GRUB. exit    LICENSE=GPLv3+  minicmd                                                                                                B      ?                 i                                                                                               '                      9                      D                      O                      j                      y                                                                                                                                                                                                                                                                     )                     6                      grub_mod_init grub_mod_fini grub_exit grub_command_list grub_xputs grub_errno grub_register_command_prio grub_dl_unload grub_printf grub_unregister_command grub_file_read grub_term_outputs grub_strcmp grub_refresh grub_file_close grub_file_open grub_isspace grub_dl_head grub_error grub_dl_unref grub_printf_ grub_strtoul                                                                     +                     C                    O                     k             %       u                                  '                    *                                      
                                             ,       %            :       6                    V                    j         	                       P                                                                                                   e       .            k       ?                    M                    W                                                                                                                                                              $                    >                    I                    [                    s                                                                                          *       	                                        $                    H                    R                   \                   f                  p                                                                                        (                                                         t                                                                                            (                  %                                     +      (                    2            @      <                   K                   U            F      a                  k            V      x                                                    (                                                                                                         .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .modname                                                                                              @                                          @                                               &      2               *      [                            5                                                          ;                                                         K                           0                              P                                                                                            	   	                 	                      X
      C                                                   P      Y                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/ufs1_be.mod                                                                    0000600 0001750 0001750 00000017410 13417732100 0015155 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   PH        HP1ZAUH        ATI  USQHH   H        I        Hcu t1Iع`  LAH        8 t        tl   b\   TuMC0tFPu?ǃ      Ⱥ     9s
  L`  ǃ      H7H^H        	   1H        HH        1Z[]A\A]UH        HSHQH8H        H;H        HHu	E     @ ȉE H        H8H        HH        С        Z[]Q   IЉ1D   DWOAA!ADAMuLh    A   wOdH`  AD湀   HcH        HС        ZUHH        SQHH8H        HH        HHt8H    t.      H        1H        HE HE     H        H8H        HH        С        Z[]UHH        SHQH8H        HE     H        H;HHtH  H        HE H        H8H        HH        С        Z[]AWAVIAUATMUH        SHHhHp  HL$ IHT$8Ht$0LL$HHH)H9A  LGIHHHD$(AF0ȉHDHD$HHl$HD$HD$HHD$@H;\$  AF0HȉD$HwA  Ή  AFdA   L{ȉD$A  DHDAIcI9s*A  L$LD$\I`  HT$ΉH   oI)HI9snA  DLHL$AHI`  LD$\McM!H   Ջt$\J    ΊL$I`  LD$\H   Ջt$\   I)CILHH   C	A  LDL$LI`  LD$\HL$AHMcH   DL$Lt$\LI`  LD$\DHL$L!M!HH   Ջt$\J    :H        	   1H        1H        8 t	H   H;\$@tD$HAV0ʍBH#D$(HDA  HT$ E1HH9u|$HWH#T$ AHcH)Ht`I`  H|$0LD$Hz0H|$8I`  Hz8ANdIcI`  HHI`  H@0    H        8 t!EAv01H|$H        D)AF0HHD$D)HD$ALHh[]A\A]A^A_IIHOHW`HwXH        HPAWH        AVAUATUHSHHH8Ht$HxH        HI  E </uHH,$uH        L1  h  f% f= @t)H           1H        @  t
HŊE </uE1Hp  EHI9r'HT$H           1H          I        11LL$(A   LHLT$AH  fD$.IL+$$LT$L9HD$  IO11MMHAH~  LLH<$H        ЅO  L9d$tC|%  <  t$(1I        D  HAԋh  L$$f% f= v  Lp  I΃  ~"H           1H           I~H        HI      u(Hp  HH<wH  LH        MM111HH        C4 A<$/   HI        DD1H$DЅuLHH        LAH        8 uD$,ALH        С        H8[]A\A]A^A_AUATIUHSQHGH8H        HHtgI        1HǾ   H        A}  tH        HAE vHt} /t+HH           1H        ѡ        @HHH        A}  tHH        I\$PHp  HID$@1Z[]A\A]AWH        AVAUATUHSH   H?HT$HL$HH  1I           HAԡ        Ld$  Ht} /t%HH           1H          HHH        H        8 m  h  f% f= @t"H           1H        9  E1I        Hp  EHI9  11LL$(A   LHAH   f|$,    fDd$.fAAHxH        HH   E1   H|$0H        IM11IMHAHI        yHaBD%  t$(HT$@HHD$ЋD$@HHt$0f% f= @D$0	ЋT$XD$0HD$ʉT$4HT$ЅHtAAՋD$,AHH        С        H   []A\A]A^A_SHH        H        H        HH        [H        H        not an ufs1 filesystem %08x%08x ufs does not support quadruple indirect blocks not a directory file `%s' not found too deep nesting of symlinks invalid file name `%s' ufs1_be                                                                                                                 LICENSE=GPLv3+  ufs1_be                                                                                                                      9      3            l                                                                               )                      6                      B                      Q                      ]                      l                      x                                                                                                                                                                                                       grub_mod_init grub_mod_fini grub_strlen grub_strncmp grub_strcpy grub_xasprintf grub_strdup grub_disk_read grub_dl_ref grub_errno grub_memset grub_fs_list grub_malloc grub_error grub_list_remove grub_free grub_dl_unref grub_list_push                                                >             P       H                     k                     y                                                                                  +                    @                    O                   t                                                                                                    -                    =                    O                    ^                                                                                                                                                                                                     /                    ?                    L                    [                    f                                                                                                    ~                                                    r                	           *                    V                    ~            O                                       _                                       r      l         
                                         s                           	                    J	                    g	            r      	                    	                  	                    	                    	                    
                   /
                    C
                  V
                    y
                   
                    
                    
                  
                    
                   $                  8                    ]                   n                                                                      O                                       r      ;                    c                                                                                ?                    I                    S                    b                    n                    x                                                     
                    
      (                   0                     8                   @             7      H             (       .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .modname                                                                                         @                                          @               H            	                    &      2                                                  :                           d                              5      @                            	                    @                                                         P                                                         U                                                                                       X      
   	                 	                      X                                                                ^                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/minix.mod                                                                      0000600 0001750 0001750 00000012600 13417732100 0014751 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   PH        HP1ZHO
LD$H@HH           HcfD$HPHfw4HP~L@TH
HcHfHHx@  HH            1ZAWAVAUIATUSLHHGHt$I4HT$ LL$HH)H9HG1H  HDHwP1E1H	HH	1҉D$D$HD$HT$(D$4HD$8|$DB,';l$m  IUPfAM
II	wfADE"   	D$4HHH9ȉsAu0LH        X)9s01Au2I        LT$0AT$0LAH           1H        1H        8 t	H   ;l$uMuPHD$81I	IHLEE1;l$uD|$(M)IE@Ht$LLD$IHp0Ht$ IE@Hp8AM
H        HLHI}@IE@H@0    H        8 cIEPH	L)HD$~HHH[]A\A]A^A_IIHOHW`HwXH        HPUHH        X   SQHH   I1ҹ      HH        H        8 u>Cf=u	CH   f=u&CH   f{
wHk@C8    HHCP   .HH        H        	   1H        1Z[]AWAVI        AUATUHSHHHHt$E </uHI  C@u)H           1H          t
HŊE </uIE1M)D;cr$HT$H           1H        DE11LL$LL$A   HAHL$xLcCH11IJLL$!HAHy          HcCHLHt$!LD! EdH        ЅWB|,! KC4t$HI        f$A׋Cf% f= C8DkC8~H           1H        kI}H        HItSI111MHH        Hx3C, A<$/   fE$HAׅuLHH        С        1HH[]A\A]A^A_AWH        AVIAUATIUSHhH?HL$HHx  H           HI        AՃ}  @  LHH        Ѓ}  $  C@t1I           H           1H           C41   H|$0I        fD$AA11LL\$LL$.A   HAHL\$   LcCH11IKLL$AHAH   t$.CHHcfDA ul;koXHAՋCHt$0H|$AfD$0	HT$D$0CD$4Aԅut$HH        ЋCHHH        С        Hh[]A\A]A^A_AUATIUHSQHGH8H        HHteI        HǾ   H        A}  tH        HAE oHt} /t+HH           1H        ѡ        9HHH        A}  tHH        I\$PCID$@1Z[]A\A]SHH        H        H        HH        [H        H        file bigger than maximum size not a minix filesystem not a directory file `%s' not found too deep nesting of symlinks invalid file name `%s' minix                                                                                           LICENSE=GPLv3+  minix                                                                                                                        Z      3                                                                                           *                      9                      D                      P                      ]                      i                      t                                                                   grub_mod_init grub_mod_fini grub_strncmp grub_disk_read grub_errno grub_memset grub_fs_list grub_malloc grub_error grub_list_remove grub_free grub_list_push                        1          
                     
                                                                                                             b         
                                                                               
           &                    v                                                                                          5                           )            E       :                                                 	                       Q                   Y       "                    4                    W                                                                                                           Q       "                  @                    O            5       `                                       K            Q       _                    j                                                                      Q                                       v                                               !                  7                    `                    j                    t                                                                                                                                           (                   0                      .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .modname                                                                                         @                                          @               P      X      	                    &      2                                                  :                     	      P                              5      @                     x       	                    @                     	                                    P                     	                                    U                      	                                                          	            
   	                 	                                                                                       ^                                                                                                                                                              boot/grub/x86_64-efi/ufs2.mod                                                                       0000600 0001750 0001750 00000017210 13417732100 0014506 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   PH        HP1ZQIЉ1      MAuLh  h  й   wOdDH`     HcH        HС        ZAUH        ATIx  USQHH   H        I        Hcu t1Iع`  LAH        8 t        tfu`\  TuKC0tDPu=ǃp         p  9s
p  L`  ǃl      H7HdH        	   1H        HH        1Z[]A\A]UH        HSHQH8H        H;H        HHu	E     HcP U H0  H9}E H        H8H        HH        С        Z[]UHH        SQHH8H        HH        HHt4H    t*      H        1H        HE HE     H        H8H        HH        С        Z[]UHH        SHQH8H        HE     H        H;HHtH  H        HE H        H8H        HH        С        Z[]AWAVAUMATIUH        SHHhHx  HL$ IHT$8Ht$0LL$HH)H9A$p  LGID HHHD$(AD$0HDHD$HݠHl$HD$HD$HHD$@H;\$  AD$0HD$HwI    AD$dA   L{D$A$p  DHDAIcI9s(L$I$8  LD$XI$`  HT$H   kI)HI9skDLI$@  HAΊL$McHI$`  M!LD$XH   J    L$Ht$XLD$XI$`  H   Ht$X   I)CILHH   C	LI$H  DL$LI$`  LD$XHL$AHMcH   DL$LLHt$XI$`  LD$XDHL$L!M!HH   J    ?H        	   1H        1H        8 t	H   H;\$@tD$HAT$0BH#D$(HDA$p  HT$ E1HH9u|$HWH#T$ AHcH)HtcI$`  H|$0LD$Hz0H|$8I$`  Hz8AL$dIcI$`  HHI$`  H@0    H        8 t DAt$01H|$H        D)AD$0HHD$D)HD$VLHh[]A\A]A^A_IIHOHW`HwXH        HPAWH        AVAUATUHSHHH8Ht$HxH        HI  E </uHH,$uH        L1o  h  f% f= @t)H           1H        %  t
HŊE </uE1EL;x  r'HT$H           1H          I        11LL$(A   LHLT$AH  D$/IL+$$LT$L9HD$  IO11MMHAHn  LLH<$H        ЅC  L9d$tC|%  0  1I        Dh  t$(HAԋh  L$$f% f= l  Lx  l  ~"H           1H           IH        HI   H   u"Hx  xwHH  H        MM111HH        C< A<$/   HDD1H$DI        ЅuLHH        LAH        8 D$,ALH        С        H8[]A\A]A^A_AWH        AVAUATUHSHH  H?HT$HL$HH  1I           HAԡ        Ld$  Ht} /t%HH           1H          HHH        H        8 T  h  f% f= @t"H           1H        "  E1I        EL;x    11LL$(A   LHAH   f|$,    D|$/AHxH        HH   1   H|$0H        IL$11IMHAHI        yH\BD=  HT$@t$(HHD$ЋD$@HHt$0f% f= @D$0	HT$hD$0HD$T$4HT$ЅHtAAD$,AHH        С        HH  []A\A]A^A_AUATIUHSQHGH8H        HHtgI        1HǾ   H        A}  tH        HAE sHt} /t+HH           1H        ѡ        =HHH        A}  tHH        I\$PHx  ID$@1Z[]A\A]SHH        H        H        HH        [H        H        not an ufs2 filesystem %08x%08x ufs does not support quadruple indirect blocks not a directory file `%s' not found too deep nesting of symlinks invalid file name `%s' ufs2                                                                                                       LICENSE=GPLv3+  ufs2                                                                                                                               3                                                                                           )                      6                      B                      Q                      ]                      l                      x                                                                                                                                                                                                       grub_mod_init grub_mod_fini grub_strlen grub_strncmp grub_strcpy grub_xasprintf grub_strdup grub_disk_read grub_dl_ref grub_errno grub_memset grub_fs_list grub_malloc grub_error grub_list_remove grub_free grub_dl_unref grub_list_push                           g                     v                                                       P                                                                      Y                    j                    y                                                                                                                                                                                    2                    A                   k                   w                                                                                                                                                                                                       +                    :                    E                    b                    p                                                            F                    f                                Q               	                                                   B            O       S                                _                                       Q      %         
           N                               s                                                                   	            Q      ?	                    U	                  g	                    	                    	                    	                   	                   	                    $
                   5
                    L
                  X
                    {
            O       
                    
            Q      
                                        =                                                                                                   %                   8                    [                   l                    w                                                                                                                                                                                                                   	                          (                   0                     8                   @                   H                    .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .modname                                                                                         @                                          @                           	                    &      2               O                                   :                            d                              5      @               h             	                    @                     h                                    P                     x                                    U                      x                                                                X      
   	                 	                                                                                (      ^                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/minix2.mod                                                                     0000600 0001750 0001750 00000012730 13417732100 0015037 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   PH        HP1ZHO
LD$HH`H           ЋD$HPHfwTHP~L@TH
HcHfHHx`  HH        @   1ZAWAVIAUATULSHHGHt$I4HT$L$HH)H9HG1H  HD)Hwp1E1H	HH	1҉D$D$(HD$HT$ D$4D HD$8D$DF$(D;d$(  IvpfAN
HH	AwDAD,   	T$4HHH9ʉsAvHLH           Љ)9s1AvLLI        T$,E)HʉHHH9s@1LI        T$,1AvPT$0A׋T$0LA׋T$,LAH           1H        1H        8 t	H   D;d$uI^pHD$81H	HHHEE1D;d$uD|$ L)IF`HL$LL$IHH0HL$IF`HH8AN
H        HHHI~`IF`H@0    H        8 bIFpH	L)H$6HHH[]A\A]A^A_IIHOHW`HwXH        HPUHH        x   SQHH   I1ҹ      HH        H        8 u>Cf=h$u	Ch   f=x$u&Ch   f{
wHk`CX    HHCp   .HH        H        	   1H        1Z[]AWAVI        AUATUHSHHHHt$E </uHI  C@u)H           1H          t
HŊE </uIE1M)D;cr$HT$H           1H        DE11LL$LL$A   HAHL$xLcCh11IJLL$!HAHy          HcChLHt$!LD! EdH        ЅWB|,! KCTt$HI        f$A׋Cf% f= CXDkCX~H           1H        kI}H        HItSI111MHH        Hx3C, A<$/   fE$HAׅuLHH        С        1HH[]A\A]A^A_AWH        AVIAUATIUSHhH?HL$HHx  H           HI        AՃ}  @  LHH        Ѓ}  $  C@t1I           H           1H           CT1   H|$0I        fD$AA11LL\$LL$.A   HAHL\$   LcCh11IKLL$AHAH   t$.ChHcfDA ul;koXHAՋCHt$0H|$AfD$0	HT$D$0C$D$4Aԅut$HH        ЋChHH        С        Hh[]A\A]A^A_AUATIUHSQHGH8H        HHteI        HǾ   H        A}  tH        HAE oHt} /t+HH           1H        ѡ        9HHH        A}  tHH        I\$PCID$@1Z[]A\A]SHH        H        H        HH        [H        H        file bigger than maximum size not a minix2 filesystem not a directory file `%s' not found too deep nesting of symlinks invalid file name `%s' minix2                                                                                        LICENSE=GPLv3+  minix2                                                                                                                             3                                                                                           *                      9                      D                      P                      ]                      i                      t                                                                   grub_mod_init grub_mod_fini grub_strncmp grub_disk_read grub_errno grub_memset grub_fs_list grub_malloc grub_error grub_list_remove grub_free grub_list_push                        .          
                     
                                                                                        !                    1                             
                                                  *                    [         
           g                                                                                                  &            6       7                    j            F       {                                                 	                       J       R            Z       c                    u                                                                                         $      4                    F            J       c                                                  6                                                          J                                                           $                                      J                           4            w       E                    P                    b                  x                                                                                                                                                                                                       (                   0                      .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .modname                                                                                         @                                          @                     p      	                    &      2               $	                                   :                     	      P                              5      @                      x       	                    @                     
                                    P                      
                                    U                       
                                                          (
            
   	                 	                                                                                x      ^                                                                      boot/grub/x86_64-efi/romfs.mod                                                                      0000600 0001750 0001750 00000013170 13417732100 0014756 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    8          @     @   USH        PHoPH}HZ[1]UHISPH_PHWXHCH@HP0HCHW`H@HP8HGHCHKHyHHH	  HH        HCH        H@H@0    H: Z[HD]UHSQG ȍxH        HHtTHuM IHEHH	  HxH        ЅtHH        E ȉ H1Z[]AWAVI        AUATUHS1HXLgHt$ HT$(HD$    M  ID$LL  H	LD$0HD$HE   HxAօ   HD$E1HD$EL9|$w,CD-HHHD$H        HH   HHt$HEIN;   I        HHxH	  AօuZD1< tiuAHD$l   H        	   1H        HH        и     H        H1  D$0T$4EMB4    D$8D$<19xHDL$(   H        HItDL$L ALL$LHHEIED$0Ht$0H|$8ȃIuI} tr0   1@ƍ4v   D$4   ȉIE   T$4ME   Aԁ  Me HELH	HxAׅAEȃwMHEILD$@LL     H	HxAׅ1|@ tHHuIMeAEȃtt1uAE@ȉIE      HL$(LHHD$ Ѕ Dd$0AA	HX[]A\A]A^A_AUH        A1ATIԺ   UHSHHHЊ$AL	Ј$H        HSHHH[]A\A]AVAUIATUSH   H?HuH        @	   11I   I        HAփuH         	       D$H        =  v,   H        HH        Ѕt"H        	   1H        ?  T$   ʁ   HHF1ɃHH9sHruD$H]ȉN1H        	   H        ӅtH        	   1   ; tH$   HH9tHH)H9|E1H$   H9u[I1I   LI} AփulD$LHH	ȉHH)HH9s; tH$   HH9u똿   H        HtH)I	HSHLHIU HP1H   []A\A]A^AUIH        ATUHSQH    HHt/H I        HxH        HIHE uHAԡ        SH1I}    HHH        ЅAtHAH} AHE     DHHU HD A1Z[]A\A]ATH        IUHSH0HH$    HHtlH A   I        H        HHt$LHD$HH\$HD$H        H        8 uH$B HUPȉHE@1H        HС        H0[]A\UH        HSHHHT$HL$H$    HHttH A   I        H        HHt$HHD$HH\$ HD$(H        H        8 uHT$H        H<$H        HH        С        HH[]H        H        H        H        H        invalid checksum not a disk too short filesystem -rom1fs- not romfs checksum incorrect romfs                                                                                             LICENSE=GPLv3+ fshelp romfs                                                                                                    	                   1	                                                                                    	                                       3                      @                      O                      Z                      f                      s                                                                                                                                     grub_mod_init grub_mod_fini grub_fshelp_find_file grub_realloc grub_disk_read grub_errno grub_memset grub_fs_list grub_malloc grub_error grub_list_remove grub_free grub_list_push grub_memcmp                      t                                                                                                        )                                                            B                    S                    b                    x                                        a                                                                                                   1                   I            1       V                    f            :       w                                                                        D                                                                                     /                    M                                                                     #               
           
                    0                    >                    R                                                 #               
                                           ]                  #                          	                    	                    	                    '	                    3	                    =	                                 W                    O                          (             "       0                     8                    .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @       G	                                   @               0            
                    &      2               	      ]                             :                     	      P                              5      @               @             
                    @                     @
                                    P                     O
                                     U                      O
                                    ^                      V
                                                          `
               
                 	                      p                                                                g                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/minix2_be.mod                                                                  0000600 0001750 0001750 00000013100 13417732100 0015475 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    @          @     @   PH        HP1ZPHfwTDGfDNfH
fAfEAT8Hx`L@H        @   HcLfAEH  L1ZHfO
LD$HH`H           ЋD$HAWAVIAUATULSHHGHt$I4HT$L$ȉHH)H9HG1H  HD)Hwp1E1H	HH	1҉D$D$(HD$HT$ D$4D HD$8D$DF$(D;d$(  IvpfAN
HH	AwDAD,   T$4	HHH9ʉsAvHLH           Љ)9s1AvLLI        ΉT$,G)HʉHHH9sB1AvPI        ΉT$,1LT$0A׋T$0LA׋T$,LAH           1H        1H        8 t	H   D;d$uI^pHD$81H	HHHEE1D;d$uD|$ L)IF`H|$LL$IHx0H|$IF`Hx8fAN
H        I~`HHIF`H@0    H        8 cIFpH	L)H$-HHH[]A\A]A^A_IIHOHW`HwXH        HPUHH        x   SQHH   I1ҹ      HH        H        8 uCCf=$hu	Ch   f=$xu+Ch   fC
fwHk`CX    HHCp   .HH        H        	   1H        1Z[]AWAVI        AUATUHSHHHHt$E </uHI  C@u)H           1H          t
HŊE </uIE1M)CA9r$HT$H           1H        DE11LL$LL$A   HAHL$xLcCh11IJLL$!HAHy        %  HcChLHt$!LD! EdH        ЅSB|,! Gft$CTHI        ff$A׋Cf% f= CXDkA̓CX~H           1H        nEH        I}HItSI111MHH        Hx3C, A<$/   fE$HAׅuLHH        С        1HH[]A\A]A^A_AWH        AVIAUATIUSHhH?HL$HH  H           HI        AՃ}  S  LHH        Ѓ}  7  C@t1I           H           1H           CT1   H|$0I        fD$AA11LL\$LL$.A   HAHL\$   LcCh11IKLL$AHAH   Chft$.HcfDA ulC9kcfHAՋCHt$0H|$AfD$0	HT$D$0C$ȉD$4Aԅut$HH        ЋChHH        С        Hh[]A\A]A^A_AUATIUHSQHGH8H        HHteI        HǾ   H        A}  tH        HAE sHt} /t+HH           1H        ѡ        =HHH        A}  tHH        I\$PCȉID$@1Z[]A\A]SHH        H        H        HH        [H        H        file bigger than maximum size not a minix2 filesystem not a directory file `%s' not found too deep nesting of symlinks invalid file name `%s' minix2_be                                                                                           LICENSE=GPLv3+  minix2_be                                                                                                                                  3            (	                                                                               *                      9                      D                      P                      ]                      i                      t                                                                   grub_mod_init grub_mod_fini grub_strncmp grub_disk_read grub_errno grub_memset grub_fs_list grub_malloc grub_error grub_list_remove grub_free grub_list_push                        P          
                     
                                                                    8                    I                    Y                             
                               =                   Q                             
                                                                                                              V            6       g                                F                                                (         	           S                               Z                                                                                                        E            K      w                                                                                         6                                                                                                         .            K      B                    T                   g                                w                                                                                                         	                    	                    	                    *	                    4	                                                     A                          (             )      0                      .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .modname                                                                                         @       >	                                   @                     p      	                    &      2               ~	                                   :                      
      P                              5      @               h      x       	                    @                     p
                                    P                     
                                    U                      
      
                                                    
            
   	                 	                      X                                                                ^                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/uhci.mod                                                                       0000600 0001750 0001750 00000024010 13417732100 0014553 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    $          @     @   ATH        IUHSHHHtH\$HHAԅuHX  1   H[]A\ø   AU1IH        H        ATUSH        HLgH        t$   E$DL$IEt
At1z      A$fDH        1H        +  H        AtAE    f%DA$fAE     tH[]A\A]AW1AVAUI        ATAH        U  SQH_H        H        DA1AEH        H          H        AՅt     @   AfH        DH        1  H        AEI           1fH        H          H        I        AAH  DftAH9v      fH        DH             f%  ff2   I        A׉ff%ff   A׉f%  
fff%  ffAH  DfuAH9vX
   ADfH        DH          1H        A1Z[]A\A]A^A_ATAH        HUSHHHH        [A)JD% ]A\ATH        IHUSHHHH        [I)]DA\AWI        AVIAUMATE1UHSHHHG(H)HDX    I     H   1IH        H          H        AMt
tEf0C1%  IE Ct{Hu8H        HHT$Hu8H        H}PAHT$H]PHaH[]A\A]A^A_ATH        H        1I        UHSHH^8Lg  H        AHLD$HL@   H        HSH3HH        H1[]A\UHAWIAVI        AUATS1HLf8LoH    HuI$Pt]xIu H        HHt?I$H        H        d  H        @DKDCPA1SAXZI$@thH        H        j  H        1AI$MHML@   H        IT$I4$H        L1/  1DCH        H        t  H        A֋C   u<C  @ udC    uaC   u^C   u[C   uXC   uU1H        H          H        Aָ         !               H        H          H        1AI$MHML@   H        IT$I4$H        LЉHe[A\A]A^A_]UH        HAWIAVAUATSHHH_   Iĸ   ML  ID$    1|\ PtHH=   u   HK(HcHHȁ   u!H           1H        1HS(HH)HHDX   HI$  DH        H          H        1I        E1AHE       A} Hs8I        AHCPPH        uLU1AUMI        }DMVDE  ARQH        WH        AH0}LU    AE    u}H        EMҺ  AEIBHEЋE	Mu		AEAuI|$    Ml$HEMEA9G   HkEIW E_LkPA?IG(l(  D]eM}MHLcPMHLUUM1H           H        MHE    tAF    A   IT$HtLE1I4$HH        H        Lи      H        Hs8LHULAFHUHs8AAAAF    H        A   H        EGC  H        1I        AM4$Hs8H        I|$H        AFH        1I  H        AMg81He[A\A]A^A_]U   HAWAVAUI        ATSHH}uAպ  A  D@  <5  -      H}uAպ  DA	      H}uȺ   AՉA  ƃDffDf1EH        H           H        I        AԿ`  H        HH  A   H}fD0uAպ     f   f   H        Ћ1Qfff      I        AHHC  HI        I        AH{HCAՉCPA   sA   H        H          H        P1j AH       AHHC n  HAH{ HC(Aվ P  C0   AHHC8@  HAH{8HC@ALK@CHH        1LC(H          H        A1HS@KHHL H H= P  
uHC@1ǀO      HC@HCPC0HHKHH   u3CV1S0HK(THHK(HHS(HHH=   B   uHC(ǀ        f1H        H        K  H        AH        HX  HH        1,H{ I        AH{AHH        и   He[A\A]A^A_]H        AR    H        HtH        H     1H        H        H        H        AYH        H        \  H        1I        AH        H1HtfHX  H        H             i      -   detect_dev, iobase:%08x
 uhci bus/usb/uhci.c detect=0x%02x port=%d
 portstatus, iobase:%08x
 enable=%d port=%d
 detect=0x%02x
 waiting for the port to be disabled
 >3detect=0x%02x
 Freeing %p
 transaction cancel
 >t status=0x%02x data=0x%02x td=%p, %x
 transaction complete
 t status=0x%02x
 transaction fallthrough
 transaction failed
 no free queue heads available transfer, iobase:%08x
 transaction: endp=%d, type=%d, addr=%d, toggle=%d, size=%lu data=0x%x td=%p
 setup transaction %d
 initiate transaction
 no transfer descriptors available for UHCI transfer base = %x
 class=0x%02x 0x%02x interface 0x%02x base=0x%x framelist=%p
 QH=%p, TD=%p
 UHCI initialized
 registered
                                                                                                    LICENSE=GPLv3+  usb uhci                                                                                                                                                                           7                                  	                      
                                       -                      ?                      ]                      k                                                                                                                                                                                                    #                     4                     >                     R                      grub_mod_init grub_mod_fini grub_millisleep grub_dma_get_virt grub_disk_firmware_is_tainted grub_dma_free grub_usb_controller_dev_unregister grub_disk_firmware_fini grub_pci_make_address grub_usb_controller_dev_register grub_zalloc grub_malloc grub_get_time_ms grub_real_dprintf grub_error grub_pci_iterate grub_free grub_memalign_dma32 grub_dma_get_phys                          \                     f                    t                                                      -                                               D                    S                   k            D       u                               ]                                                                            p                          
                                        *                   9                   C                    y                                                          $                   2                   C                   c                    }                                                                                                   %                   4                   n            \                                                                                                                       +                    M                                \                                                                                                                        &                  ;                    W                  a                   p                               $                                                        =      '                   6                   Z                  o                                                    Q                          O            o      Y                   h                   t                                \                                                                                  	                    	                  	                    '
                  3
                    L
                  
                  
                   
                   
                    
                  
                  
                                      3                                3                                                                ,                                                                                                                >                                                        {                                            m                  w                                                                                                                                                                                  &            "      0                    <                    F                    T                  ^                   m                   y                                                                                                                                                          @                          (             M       0             :      8             S        .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                          @               @                                &                                                          .      2                                                 B                           X                              =      @               X#                                 H                                                         X                     (                                    ]                      (                                    f                      ,                                                          8                                	                            d                                                   $      o                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/minix3.mod                                                                     0000600 0001750 0001750 00000012730 13417732100 0015040 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   PH        HP1ZHHwxLD$HHh   H        ЋD$HPWHOw`L@ H        LHHHcɁ  HOxHhHι@   1ZAWAVIAUATULSHHG(Ht$I4HT$L$HH)H9HG1H	  HD)Hwx1E1H	HH	1҉D$D$(HD$HT$ D$4D HD$8D$DF$(D;d$(  IvxANHH	AwDAD8   	T$4HHH9ʉsAvTLH           Љ)9s1AvXLI        T$,E)HʉHHH9s@1LI        T$,1Av\T$0A׋T$0LA׋T$,LAH           1H        1H        8 t	H   D;d$uI^xHD$81H	HHHEE1D;d$uD|$ L)IFhH|$HL$LIHx0H|$IFhHx8H        I~hIvxIFhH@0    H        8 jIFxH	L)H$?HHH[]A\A]A^A_IIHOHW`HwXH        HPUHH           SQHH   I1ҹ       HH        H        8 uPf{ZMuHf{Cp<   w:CHkhCd    fu
HCx   ftfuf	HCxH.HH        H        	   1H        1Z[]AWAVI        AUATUHSHHhHt$E </uHI  C!@u)H           1H          t
HŊE </uIE1M)D;c(r$HT$H           1H        DE11LL$LL$A   HAHL$xLcCp11IJLL$#HAHy          HcCpLHt$#LD# EdH        ЅWB|,# KC`t$HI        $A׋C f% f= CdDk(Cd~H           1H        iI}H        HItQI111MHH        Hx1C, A<$/   E$H߉AׅuLHH        С         1Hh[]A\A]A^A_AWH        AVIAUATIUSH   H?HL$HHt  H           HI        AՃ}  <  LHH        Ѓ}     C!@t1I           H           1H           C`1   H|$0I        D$AA11LL\$LL$,A   HAHL\$   LcCp11IKLL$CHAH   Cpt$,HcЅDC ul;k(rWHAՋC Ht$0H|$CfD$0	HT$D$0C0D$4Aԅut$HH        ЋCpHH        С        HĈ   []A\A]A^A_AUATIUHSQHGH8H        HHteI        HǾ   H        A}  tH        HAE oHt} /t+HH           1H        ѡ        9HHH        A}  tHH        I\$PC(ID$@1Z[]A\A]SHH        H        H        HH        [H        H        file bigger than maximum size not a minix3 filesystem not a directory file `%s' not found too deep nesting of symlinks invalid file name `%s' minix3                                                                                           LICENSE=GPLv3+  minix3                                                                                                                             3                                                                                           *                      9                      D                      P                      ]                      i                      t                                                                   grub_mod_init grub_mod_fini grub_strncmp grub_disk_read grub_errno grub_memset grub_fs_list grub_malloc grub_error grub_list_remove grub_free grub_list_push                        6          
           `          
           t                                                                                                 &                             
                                                                      H         
           T                                                                                                  %            6       6                    i            F       z                                                 	                       I       O            Z       `                    r                                                                                               2                    D            I       a                                                  6                                                          I                                                                                                 I                           1            w       B                    M                    _                  u                                                                                                                                                                                                       (                   0                      .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .modname                                                                                         @                                          @                     p      	                    &      2               !	                                   :                     	      P                              5      @                      x       	                    @                     
                                    P                      
                                    U                       
                                                          (
            
   	                 	                                                                                x      ^                                                                      boot/grub/x86_64-efi/scsi.mod                                                                       0000600 0001750 0001750 00000015730 13417732100 0014575 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   UH        SHHH<$Ht$Ht#HHtHH        Ѕu
H[(1   H[]SH   1H GD$H|$D$ D$ D$D$ D$H        HLD$HT$H߹      PH [SH_@HH@HtHHH        [AWH        AVAUATUHSHHhL|D$    I9rAPwDAFD$II9sAG0<	v   A0	vI11H        E1I)п8   IH        IH                MY  LHHHL$H        ЅtnHL$AHAu)LDAWt\M(H             MuLH        H           1H          H        DL8븋t$DALs@H        H        H        H        	D	I        HC 1M>AvEn  D$,AF1H|$2   I        D$. D$/ D$0$D$1 D$-AILD$<$   HT$,   LPLAAԅL|$tD        EuQD$<H        H        )  H        AFDL$=D1AEENAF<tQ-LH        H        H        $    tLH        H        XI        AH  HD$HD$BHD$AH;D$v@LH        1H        H        B  H        ո     D$< AF1   H|$D$> D$? D$@ D$A D$=HD$IE11HT$<   LPLAAԅtD        ADH        D$<%LD$,     AF   D$>    D$B HT$<D$C D$D    D$E fD$F  D$=ILPLAAԅtD        Eu'D$,ȉIF D$0AF(I9F    >LH        H        H        Q  1H        D|  D$,AFLD$<HD$.    D$6        D$: D$; HT$,   LD$-IPLAAԅtD        EuHD$<HIF D$DAF(-LH        H        H        [  <IF C   HHCAF(Puu2LH        AV(H           1H        {C       KEN(D9sKMF H        H        s  H        11LCH        H        u  H        1Hh[]A\A]A^A_ATUSHH_@C<u"H           1H              HII        H t<$CHHt$D$    D$ D$ȉD$
K(HHH@$*CΉt$D$    D$	 fD$
  D$ІfD$K(HHHHP H߉Aԅt        1H[]A\UIHSHHGO(Ht$$   D$ D$ D$ȉD$
HHHPH߉H        Ѕt        H[]UISHH_@Ct	<t?   HH u:D$(CΉt$D$
 D$ fD$  D$ІfD$FHH tLHH        ЉaD$CΉt$D$ D$ D$ȉD$
K(H   HHHT$PH߉H        Ѕt        1H[]AWAVAAUAATUHSHtLcH        1O<I}HcH        DH4H        H        H1HHtuHuHU HH        ҉_HuHU LD$H        ҋD$u1D9}11KaDLH        I        AHIu   1H[]A\A]A^A_H        HH8HW(H        H        HtH9uH@(HHP(H@(H        H        H        H               usb  ata  ahci not a SCSI disk dev opened
 scsi disk/scsi.c inquiry failed
 inquiry: devtype=0x%02x removable=%d
 unknown SCSI device LUN is not ready - timeout
 READ CAPACITY10 failed
 READ CAPACITY16 failed
 invalid sector size %d last_block=%lu, blocksize=%u
 Disk total sectors = %llu
 cannot write to CD-ROM %s%d %s%d%c            	                                                       LICENSE=GPLv3+  scsi                                                                                                                         
                  
                                                              	                                       )                      6                      E                      \                      g                      s                                                                                                                                                             d
      1            O
                                   grub_mod_init grub_mod_fini grub_strlen grub_strncmp grub_xasprintf grub_disk_dev_register grub_errno grub_memset grub_scsi_names grub_malloc grub_get_time_ms grub_real_dprintf grub_error grub_free grub_disk_dev_unregister grub_scsi_dev_unregister grub_scsi_dev_register grub_strtoul                         2             W	                                                          
           [                    u                                                                                                                        
                                        ,                    P                   Z                   d            !       n                    }            V                                                            =       *                   9            !       p                    |            -                                                          c                                                           w                                      !                                               	                    B                    N                   X                   i            !                                                                                     O                    _                   p                                                                      !                                                         !                         ,                    K            V                           Q            V       b                                      1	            V       B	                    x	                    	                    	            *      	                    	                    	                    
            /      $
                    Q
                    f
                    p
                    
                    
                    
                    
                                                                                                       (             s      0                    .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .modname                                                                                         @       
                                   @               8      h      
                    &                                                         .      2                     6                            B                     P      @                              =      @                            
                    H                                                         X                                                         ]                                                                                      p         
                 	                                                                               0      f                                                                      boot/grub/x86_64-efi/minix3_be.mod                                                                  0000600 0001750 0001750 00000013040 13417732100 0015501 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                               @     @   PH        HP1ZPHw`fPL@ fҍLHHHxhHcɁ  HHxH        Hι@   1ZHHwxLD$HHh   H        ЋD$HAWAVIAUATULSHHG(Ht$I4HT$L$ȉHH)H9HG1H  HD)Hwx1E1H	HH	1҉D$D$(HD$HT$ D$4D HD$8D$DF$(D;d$(  IvxANHH	AwDAD8   T$4	HHH9ʉsAvTLH           Љ)9s1AvXLI        ΉT$,G)HʉHHH9sB1Av\I        ΉT$,1LT$0A׋T$0LA׋T$,LAH           1H        1H        8 t	H   D;d$uI^xHD$81H	HHHEE1D;d$uD|$ L)IFhH|$HL$LIHx0H|$IFhHx8H        I~hIvxIFhH@0    H        8 jIFxH	L)H$5HHH[]A\A]A^A_IIHOHW`HwXH        HPUHH           SQHH   I1ҹ       HH        H        8 uRf{MZuJCCp<   fw8CHkhCd    fu
HCx   ftfuHCxH.HH        H        	   1H        1Z[]AWAVI        AUATUHSHHhHt$E </uHI  C @u)H           1H          t
HŊE </uIE1M)C(A9r$HT$H           1H        DE11LL$LL$A   HAHL$xLcCp11IJLL$#HAHy          HcCpLHt$#LD# EdH        ЅSB|,# GC`t$HI        $A׋C f% f= CdDk(A̓Cd~H           1H        lEH        I}HItQI111MHH        Hx1C, A<$/   E$H߉AׅuLHH        С        1Hh[]A\A]A^A_AWH        AVIAUATIUSH   H?HL$HH  H           HI        AՃ}  J  LHH        Ѓ}  .  C @t1I           H           1H           C`1   H|$0I        D$AA11LL\$LL$,A   HAHL\$   LcCp11IKLL$CHAH   Cpt$,HcЅDC ulC(9n]HAՋC Ht$0H|$CfD$0	HT$D$0C0ȉD$4Aԅut$HH        ЋCpHH        С        HĈ   []A\A]A^A_AUATIUHSQHGH8H        HHteI        HǾ   H        A}  tH        HAE sHt} /t+HH           1H        ѡ        =HHH        A}  tHH        I\$PC(ȉID$@1Z[]A\A]SHH        H        H        HH        [H        H        file bigger than maximum size not a minix3 filesystem not a directory file `%s' not found too deep nesting of symlinks invalid file name `%s' minix3_be                                                                                       LICENSE=GPLv3+  minix3_be                                                                                                                                  3            	                                                                               *                      9                      D                      P                      ]                      i                      t                                                                   grub_mod_init grub_mod_fini grub_strncmp grub_disk_read grub_errno grub_memset grub_fs_list grub_malloc grub_error grub_list_remove grub_free grub_list_push                        W          
                     
                       m                   m                   m                            1                    A                             
                                                  2                    c         
           o                                                                                                  F            6       W                                F                                                        	           B                   {            Z                                                                                                         ,            ,      a                    s                                                                      6                                                                                                                     ,      &                    8                   K                    n            w                                                                                                                                                  	                    	                    	                                                     (                          (             
      0                      .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .modname                                                                                         @       "	                                   @                     p      	                    &      2               b	                                   :                      
      P                              5      @               H      x       	                    @                     P
                                    P                     `
                                    U                      `
      
                                                    p
            
   	                 	                      8                                                                ^                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/search.mod                                                                     0000600 0001750 0001750 00000012360 13417732100 0015075 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    p          @     @   AWE1AVIAUATAUSHH_{P tHSX1AHH| u򃻐    tH   1A HH| uAЃ    tH   1A HH| uAIcDD$H        HHHDD$  11{P tHSXHHt	HH胻    t%HcH<1H   H4HtH4H䃻    t
HH411I        KH   HHtHHHL$DD$   I<H        HAׅDD$HL$uD9Lc|ǃ{0 tH{8H   H        1E9t4HK<{ t8S@H        С        H[]A\A]A^A_H           8{  tS@H        ; tS@H        H           H1H        []A\A]A^A_E9H        TV  PI        I        H        H        H        H        H        ZH        H8H                      f                                       l                                       u                                       s                                     n                                       h                                                                                                                                                                                                                                                                   root --hint- one argument expected unspecified search type Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME search file Search devices by a file. label Search devices by a filesystem label. fs-uuid Search devices by a filesystem UUID. set Set a variable to the first device found. VARNAME no-floppy Do not probe any floppy drive. hint First try the device HINT. If HINT ends in comma, also try subpartitions HINT hint-ieee1275 First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions hint-bios First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions hint-baremetal First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions hint-efi First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions hint-arc First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions LICENSE=GPLv3+  search_fs_uuid search_fs_file extcmd search_label search                                                                                                                             A      P                                                                          	                      
                                       4                      ?                      K                      _                      s                      ~                                                                   grub_mod_init grub_mod_fini grub_unregister_extcmd grub_errno grub_malloc grub_search_fs_uuid grub_search_fs_file grub_error grub_register_extcmd grub_search_label grub_memcmp                                                 F                                                                                                                                                       #                           .                    I                    S            ;       ]                   g                    q            $      {                                                                                              +                   0      (             J      8             P      P             v      `             ~      x                                                                                                                                                  P                   U                   c                  P                        (                  0            P      @            =      P            L      X            P      h                  x                              P                  *                  3                  P       .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                        @                                          @               P                                +                                                        &      @               H                                3      2                                                 B                     h	                                     H                     h	                                    X                     x	                                    ]                      x	      2                              f                      	                                                          	                                	                                                                                       o                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/minix_be.mod                                                                   0000600 0001750 0001750 00000012770 13417732100 0015427 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   PH        HP1ZHfO
LD$H@HH           HcfD$HPHfw4DGfDNfH
fAfEAT8Hx@L@H            HcLfAEH  L1ZAWIAVAUATUSLHXGHt$I4HT$ LL$ȉHH)H9HG1H  HDHwP1E1H	HH	1҉D$D$8HAƃHT$(D$<HD$@C,&;l$8D  IWPfAO
II	wfADG"   D$<	HHH9ȉsAw0LH        fg)9s?1fAw2H        HL$HLfT$0T$0LHL$HH           1H        1H        8 t	H   ;l$uMoPHD$@1I	IHLEE1D9uD\$(M)IG@H|$LLD$L\$0IHx0H|$ IG@Hx8fAO
H        I@HLIG@H@0    H        8 `IGPL\$0H	L)HD$aHHX[]A\A]A^A_IIHOHW`HwXH        HPUHH        X   SQHH   I1ҹ      HH        H        8 uCCf=u	CH   f=u+CH   fC
fwHk@C8    HHCP   .HH        H        	   1H        1Z[]AWAVI        AUATUHSHHHHt$E </uHI  C@u)H           1H          t
HŊE </uIE1M)CA9r$HT$H           1H        DE11LL$LL$A   HAHL$xLcCH11IJLL$!HAHy        %  HcCHLHt$!LD! EdH        ЅSB|,! Gft$C4HI        ff$A׋Cf% f= C8DkA̓C8~H           1H        nEH        I}HItSI111MHH        Hx3C, A<$/   fE$HAׅuLHH        С        1HH[]A\A]A^A_AWH        AVIAUATIUSHhH?HL$HH  H           HI        AՃ}  S  LHH        Ѓ}  7  C@t1I           H           1H           C41   H|$0I        fD$AA11LL\$LL$.A   HAHL\$   LcCH11IKLL$AHAH   CHft$.HcfDA ulC9kcfHAՋCHt$0H|$AfD$0	HT$D$0CȉD$4Aԅut$HH        ЋCHHH        С        Hh[]A\A]A^A_AUATIUHSQHGH8H        HHteI        HǾ   H        A}  tH        HAE sHt} /t+HH           1H        ѡ        =HHH        A}  tHH        I\$PCȉID$@1Z[]A\A]SHH        H        H        HH        [H        H        file bigger than maximum size not a minix filesystem not a directory file `%s' not found too deep nesting of symlinks invalid file name `%s' minix_be                                                                                           LICENSE=GPLv3+  minix_be                                                                                                                                   3                                                                                           *                      9                      D                      P                      ]                      i                      t                                                                   grub_mod_init grub_mod_fini grub_strncmp grub_disk_read grub_errno grub_memset grub_fs_list grub_malloc grub_error grub_list_remove grub_free grub_list_push                        1          
                     
                                                                                          "                             
                                                  #                    T         
           `                                                                                                  (            5       9                    p            E                                                        	           %            U       d            Y       u                                                                                                                   I                    [            U       x                                                  5                                                          U                                                                                      &            U       9                    \            v       m                    x                                                                                                                                                              	                                                                               (                   0                      .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .modname                                                                                         @       	                                   @                     X      	                    &      2               P	                                   :                     	      P                              5      @                      x       	                    @                     @
                                    P                     P
                                    U                      P
      	                                                    `
            
   	                 	                      (                                                                ^                                      boot/grub/x86_64-efi/usb.mod                                                                        0000600 0001750 0001750 00000037340 13417732100 0014426 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                     <          @     @  
 UHAWAVAUATSHH                IIE1I        HC(@A9   MU0H        EH        +  H        ABLUPABPEJ1AA}@ LUXZu#ABA;Fu1DHAVtAE@   AI(oHe1[A\A]A^A_]UHcDǄt(      1ɺ   HPE1ɾ   H        j ZYU   H        HATA1SHHt(  PA̺	   HE1E1j 1H        ZYHe[A\]U	Iɺ   HPH           APE1ZYAW1I      AVAUI        ATUSHHG AՅ  1Iع      HAՅd  1HD(    H  H=@(  u{   HE1CA9   LD$   D   HA|$	H        HI   L$	HE(ID   HH        ЅA   HE(t$	11 H}(9}g9Hc}M<AxuLH|0?!A8@tRM<AxtA8@t:9Hc|LH|8H|0H(kAH  15A
   A   1I        H|+(H  AH@(  uDH[]A\A]A^A_UHAWAVIAUATE1SHQIF(@A9)  Lk0H        EH           H        I        AEPAEPEM1A҃{@ XZ   H        L8Mt'AEA;Gu1DLAWtC@   M?ԃ{@    AE<t<t4<utH        
H        H        H        DH        I        I        AAH        AAH        AAAH(He[A\A]A^A_]H        HHH8H        HH        H        H        H        H        H     AWAVIAULcATIUHoSHAPHGHPAuTI        AIHCLLHPt(u(AL9vHCLHP A   DEE1AZ[]A\A]A^DA_ATUSHcG0HLg xHk1HG(x @HcGAt(  1AH        H        1  H        I        AHcCAt(  { u/CH{@hH        HcHH{HHH        H{(H        HH{@H        []A\AWEI        IAVAUIATEIUSHH        H(F   H$H        Dt(  1H        AH޿   H        HH{  HH        HHD$H        AD$uHH4$H|$H        H        P   HT$HT$HHI   Ap(   A@   tEGD1DD$HDHt$HSH4$H$QAAWD$HHkPQAh(  A   DaDALi A0Hi@HqHAH$HHA(t11DD$Ht$ HH        HH        R9T$F~CHkD\$IHA(H9LFEDpAAHxDED`DXL)HDH1H([]A\A]A^A_AWA   AVIAUATIUSHHHGT$ HL$LD$H@HHt p(   A@   t
HtDNELHl$1E1H;\$   Ht$L9LHFDD$ LHD$HH        HLI   Mt=LHL$8  LD$(LH        LD$(D$$H        LҋD$$HT$8IՅuL)H9T$u
L[1L;l$t
   DHH[]A\A]A^A_UH        HAWAVAUATI   SLHhMɉu@u   UIEMDEHIHEE     HI        I        ALHEAHډEHuH}H        PEH        DMDEH        Sj   H        I        PEP1AH P   H        HIt.       H        HHEu$LH        H}H          H}AH}IAՉtAD$A@   Mᾅ   MH        H        DE1H        DUI        ADU1A_AG    EDUIDIxEHxAA$h(  HcHkPEWAG    Mg AH        HIG(I        DUHxDtu*LH        H        H}H}  EMHE11AEAFEfAFEfAFfA^IG(    IG(@   IG(DXIG(A   @    ;UIG(}BLML9LFHL)D0AIAADpDuEDpEELpHcHHk    IG(D    IG(t} y
D   D    IG(LLMHMLI        D     H        AAH        H           1LMH        AI(ALAH}I        AH}AHHuH}H        DeEHe[A\A]A^A_]IH        HѺ   IH        H1SHHHHH HGHPtD$HH        ҋD$H[UH        SHAPE1HHu1HCH{HPuHZ[]HPH HGHP H             ZATH        EE1UHSHLL$Hø   Ht0LL$HDHH        LЉHH        ҉H[]A\UH        HAWI,  AVAUAATASAQHI   IIWLAl(  E,  E,  IFIV H        1҅H        uH< Dz   HHu1I        H           1H        I|(H  AH@(  u$1I        I|(H  AH@(  uLH        1   PE1E1D   1j LH        ZYun   IcH        L4EEh(  MH        H        H        1I        Aǆp(     AVAEH        H        p   AUH        1A׿   H        LH        _AXLHe[A\A]A^A_]UE1   A    )     HAVHEAUATI        SHHPA^_  EDMH        DEH           H        MI        I        PEPEPEP1AH H        H        1   H        AԾ   HH        }@H,  A֋,  H,  HkAH,  H,  MHtHtA   !I        AH,  AԸ      EA9P1EH        H           H        APE      E1ɾ#   j HAAZYHC0H19~UHkHs8~ yBVu7H,  F   H,  HHHFH        H,  HH            1He[A\A]A^]AUHATUSHR   	uLH,  HtH        1I        ;,  H,  sH<AH        HE1E1H}( uGAH  AuHch(  H        H    +Ik(HDHHtDDHIHE(@A9|X[]A\A]AUATAԺ   UHcSHQHHP0   HCL(H        H  
   IE@                H        11H{DH        HSHH        HHB@    HɉУ        t$HSHy	uZ[]A\A]HH        X[]A\A]AUI        ATA   UHSQH70   AHH   H           HHH        AHHCuHH           H   HH        HC(    HE HH        P(CHH<    Hc{HCHkH{HC HtE1Hu,E1H        H{ H{HH        Z[]DA\A]H        H        HtH9uH@PHHPPH@PAWAVAUATIUSHH        HGPHH        HGHtHH        1H        HH   HCE1L9    D;s   D$    H{HT$MkDHMP8L{ AWu?tqH        H   ILHC HH  HPHC BD(   bu2H        uH   ICLHS H;v	B   *HC B|(u H        Lk I;Ev
AE   I Ht   H        H        HHt[HC1L9 uK;k}FHkHC xu3D$    @    HT$H{HP8HH        HHH[]A\A]A^A_UH        HAWAVAUATSHHH}H   E1D;cE   E    HCH Hx@ t5H        HSHH;B@v        HB@    ȣ        H{E1HHx@ uHUDP8AŃ} t:HCJ<H        HCEJ    tDDHH        ICH/H        8      H        H        HE         HuH        H0H  {	  H,  H  HuH        ЃAl  ,  H,     H,  H߉EFHHFH        EH,  %  H}   } A  D;,     EDeD  Et$H,  MkB|8  HEQI        E11PLUA   E辣   HA҉EEľ  H        EIH        H        I        $1AӃ} LU^_J  Et!AS   E1E   #   j HAXZEt,APE1E      #   j HH        AYAZEt)Q#   HE1E   j    H        ^_HCHx@    E   PE1ɺ   E   #   j HH        H,  J<H        H,  J    EXZtMML,  H        H   IE LH,  HH  HPH,  BD8     E   AQEE1ɹ      #   j HH        ЋEAZA[   A   u%   EA
   H        At"l(  uh(  ,  ,  E	1E    UH{DH        HSHHz@ t!H        HB@    ʉУ        Ht H,  Jy	uHH        AHEH}   0E1E1A  IcH        HH  {	  E  A   E    D;,  R  EuH,  MkB|0/  VHuAI        A1V1HL]E    A   E   A_L]AXtH,  BD0      L]H        EL]uH,  H   J2LH,  H;   HCHx@    P      E1DE#   j HAH,  BD0    LsH            H        H  IF@        ZY        H;Br	B   E   A} tHCE1Hx@ AA   A7E   H        E1E1H        8 t
} He[A\A]A^A_]AUI        ATIUHS1QI| HuHH   u1HAԅt   Z[]A\A]iterate: interf=%d, class=%d, subclass=%d, protocol=%d
 usb bus/usb/usb.c usbms usb_keyboard usbserial_ftdi usbserial_pl2303 usbserial_usbdebug bulk: toggle=%d
 usb bus/usb/usbtrans.c bulk: size=0x%02lx type=%d
 control: reqtype=0x%02x req=0x%02x val=0x%02x idx=0x%02x size=%lu
 control: transfer = %p, dev = %p
 control: err=%d
 Added new usb device: %p, addr=%d
 usb bus/usb/usbhub.c speed=%d, split_hubport=%d, split_hubaddr=%d
 can't assign address to USB device Hub descriptor:
		 len:%d, typ:0x%02x, cnt:%d, char:0x%02x, pwg:%d, curr:%d
 Hub set configuration
 Power on - port %d
 dev = %p, i = %d, status = %08x
   LICENSE=GPLv3+          usb                                                                                                                      &                                                                                    )      U       8                  K                      [                      m           ?                  ,                                  	                                                                                    1       /    ~      2       G                     R                     ^                y          K                           y      `          m      %                                                                            8       "                     .                     ?                     Q                     d                     o                                                               2      ;                                                           h        grub_mod_init grub_mod_fini grub_usb_set_configuration grub_usb_bulk_read grub_millisleep grub_dma_get_virt grub_usb_check_transfer grub_usb_register_attach_hook_class grub_dl_load grub_usb_control_msg grub_usb_unregister_attach_hook_class grub_memmove grub_dma_free grub_usb_controller_dev_unregister grub_usb_get_descriptor grub_errno grub_memset grub_usb_device_initialize grub_usb_iterate grub_usb_poll_devices grub_usb_device_attach grub_usb_cancel_transfer grub_usb_controller_dev_register grub_print_error grub_zalloc grub_usb_clear_halt grub_malloc grub_get_time_ms grub_real_dprintf grub_term_poll_usb grub_error grub_list_remove grub_usb_bulk_write grub_free grub_usb_bulk_read_background grub_memalign_dma32 grub_dma_get_phys grub_usb_bulk_read_extended   G          #           f             8       s                                  <                           1                    i                                                            [         !                               G         (                       8                                       <                #                               L            P       X            J       b                    n                    |            ]                                                           l                   }                                                                            &                                        $           (         $           g         "                                                                    %         #           N                    g                    w         (                                        #                                                                             *           !                    5         +           W                    c         !           *         (           9                    3	                  h	            8      }	                  	         *           /
                    9
         +           ^
                    o
                   
                   
                   
         #           
         !           
         *           
         (                               ?                  I                   ^                   l         #                    !                    #                    (                               #         (           :            8      L            9      V                   k                                                                                                                 5                                                                    8                                            Z                    j            8                (                                      %                    (                    (           !                    ;            0       V            J      `            m      j            q      v         #                                         m                  q                                                                  C                  R            m      a            q      n         #           x                                                   m                  q               	           #         (           R            7      \            m      k            q               )                        $       D                    R                  x         (                       0       "         "           <                    G                    Q                    h                  {                                                                   !                                                 /         (           K                    f                             (                                                                                        /                   E                  S                            "                    "           1         "           j                    {                                                        F         "           ^                    q                                                                    $                                       $       )            0       ^                             )                               J            q      Z            K      d            m      n         #                               
                    L                    c                           "                               3                    z                                                                                        0       p                             "           B            $       R         "           g                    t                                                                        0        .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .modname                                                                                              @       Z                                   @               `)      `                          &      2                     l                            5                     "                                     ;                     "                                    K                      "      0                             P                       "                                                          ("      8      	   	                 	                      `&                                                         ;      Y                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/mmap.mod                                                                       0000600 0001750 0001750 00000023020 13417732100 0014555 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    "          @     @   UHAWALEHMHUAVAUI1ATIH}SH        H(HE    HE    HE    E    ӅxEH}H        HIt-LEHMHUHH}Ӆ~L9LH        С        %  E   HL   AH]LHEH9   LCPH        HCB   H        I        HRH        N 1Aҋ3ZYwwH        H{Hs$HL   rEtHhHL   VHL   EHL   4HL   #H        1H        HsH{HL   1He[A\A]A^A_]1H        AVH        IAUAATUH    SHHH   H        HJ5  H H)Ht$L``HH        HI|$0H      H9tHuAAU   wH        I|$(LD$H   H        HtHH        HH        HkHH        QKHT$        HH        HS1H[]A\A]A^UH        1SAQH        HH@`Ht?9Su2Hx0HSH        HsHHtHE 5H        )HHAX[]H        &   1H        HH        Z[1]AW    H        AVIAUATAUHSHHHttH        AL$H  HA   Lx`HD$wH        D,1I(LD$HLI        AHtHH        1   H|$ tMH        HkHH        0VsHT$        HH        HSA6HC@1I(LD$HLHD$AI1HH        MxdH[]A\A]A^A_H        uHuH11uH   wHH   v
H   H91uH   wHH   v
H   H91HH        H        HD$    Ht$H|$   v	HD$   HD$HHH        H        HD$    Ht$HD$HHH        H        HD$    Ht$HD$H1LG1LH#Is	1ҿ   @uIs	@uHs	IIL	ATIAUHSHu8H        H        R   H        1I        AA   HcCLHkHL HcCHkH@    HcCHkHD@HcCHkH@    CCHHkHH(HcCHkH@   HcCHkHD@HcCHkH@    C1[]A\HHH9HBHAH9HGH9vPH)H        1Z1AWIIH        1I        AVAUATIH        U1SHH        H(Ht$|  AIT$Hr1E1HHHA @u1I        LE1AH9LsI1A   @A)I   LH)HvM,HT$HL$LILHT$H9HL$MCIBLLH        HHD$HH9sdIMIH        H          H        1I        AӺLHH        LDHHzH(1[]A\A]A^A_H1H        Ht$HT$
Kt!HHGMtHH(Tt
H
HHHHAWAVAUATI        UH        SHHH<$Ht$H        Ht$,D$,    Hc|$,Hk0AԿ   HD$0H        H|$0HLd$HtHuH        Hա        	  D$8    Ht$0H        A   11E1D$,D A9}VHt$0LRJHLL;ru4x u.~u(DhD`HǋhLHT$0LDjDbjAL띅uHD$0E1I        L(D`D$,H|$0D9A  IkH HcOt[HHكy    W9QHu'H9HtHHWHHQ"A       HH8Htw9WuHHAgHHكy uA   HcGWHTB   HD$HHT$0J@   HHcRHHHHT$0HcT*HHA{ tDCE9uAuMHD$0H4(I9t3AD$v)DD$L)HL$DLH$ЅDD$tH|$0HD$0EL,(IH        1HH[]A\A]A^A_ATUSHt!H           1H        ҉[IH:H        H$H        u5I|$HD$H        uHH        H        H[]A\ATUSH t"H           1H           H1H        H          H        H        I        HE H        HD$   Ht$H|$HD$HD$8,uHHD$   Ht$H|$H        HT$HD$:,uHHT$A<$
uH             1ZH% LD$H        IHD$H        1  H        Ht$H        H        1H []A\SE1H        H        H        H        H        E1H        H        H        H        H        [H        SH        H        H8H        H8H[                                                                                                                                  	
EFI memory region 0x%llx-0x%llx: %d
 mmap mmap/efi/mmap.c Unknown memory type %d, considering reserved
 handle %d not found Unknown memory type %d. Assuming unusable
 mmap mmap/mmap.c hook %llx+%llx
 badram %llx (size %llx) is a badram range
 two arguments expected one argument expected executing badram
 badram %llx:%llx
 Declare memory regions as faulty (badram). ADDR1,MASK1[,ADDR2,MASK2[,...]] Remove any memory regions in specified range. FROM[K|M|G] TO[K|M|G] cutmem       LICENSE=GPLv3+  mmap                                                                                                                                                     {                  -                                  	                                       +                      A                      L                  j                       g	                                                             r      F                  2                                                             /                           '                     3                     K          O      i                     {          2                                                                                                                                                    grub_mod_init grub_mod_fini grub_strtoull grub_efi_system_table efi_wrap_4 grub_mmap_free_and_unregister grub_machine_mmap_iterate grub_mmap_iterate grub_errno grub_register_command_prio grub_mmap_get_lower grub_mmap_get_upper grub_printf grub_unregister_command grub_mmap_register grub_zalloc grub_malloc grub_efi_get_memory_map grub_mmap_malign_and_register grub_real_dprintf grub_mmap_get_post64 grub_mmap_unregister grub_error grub_free grub_efi_mmap_iterate grub_efi_free_pages efi_wrap_2 grub_strtoul     *                     a                                                                                                 *                                        %       -                                :                                                                    $                    P         "                                                                                                                                                       "                    3                    V         "           t                                h                                                                                       !                   A                    V                    q                                                                                         !                               x                                                  &                                      L                                      |                                                                 r                                                                                                             !                  !                                                                                                       	         #           q	                    |	                    	                  	                    	                    	                    
            h      
                                         *                   ;                    Q            	      a                    }                                J                                      
                                                                                                                           !         
           g         
                                           2                                                                                                                  D                   o      *                  4                   C                   M                  W                  a                  k                  x                                                                                           V                   \                   \                                        Q      (                    0             V      8             \      @             @      H             m      P             ~      X             V      `             V      h             V      p                    .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .modname                                                                                         @                                          @                      
      
                    +                                                         &      @                !      h      
                    3      2                                                 B                     d                                    H                     h                                    X                     x                                    ]                      x                                                                `         
                 	                                                                               h"      f                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/usb_keyboard.mod                                                               0000600 0001750 0001750 00000013370 13417732100 0016303 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   @ E@E@E@E@@ESH_8H        {S
[	UHHfG
E @tE tMPHE   	   A   !   PH        DGH?H             ZYAVIAUI        ATUH        SH        HC8HtLL90uGHxHtH        HI        HH{AHC    H{8AHC8    H@L9u[]A\A]A^UH        HAWAVI        AUAATASHH0RH        VG   PDO1DGH        AH 1MH        HEHH<
 tHHu   K1 .  IcMcHk(HEIi  HƉHHV0z  z  J1E19ȉ}LkLF8Ax ypAPud19LE  H        H           H        AѿP   H        HILEuH        1k  HsD`L@AuHHH        PEE1E1I        j    !   HA1E1EH$    
   !   HI        ADm̺@   H        Mi  DHIH        LHkE(M|$8H        DH        IH        JD3H1ID$HZYAG IO Iw   HH        HIGAG,fAG
  AG(    ID$HuLH        H        	LЅtܸ   He[A\A]A^A_]AU   I        ATUSHQoHN;kL}iHcŊD8<Dw01ECH       Hs@H{8   H           1TBA9tHHuA9ufs
@HACH    1mASufs
 {8H        S
D	ЉH        ЉC,H        H  HC0H             1;kLLŋk,CHZ[]A\A]UHAWAVAUIATSH(H_8{( t1  {H uH{HuH        ЃAuGHH        Ѕ`  Ƀ{,tI        AH;C0vAH2HC0C,2  HK8I        uH}vHHMH{@   AHMLs HϺ   LAHsL   H;H        HHCu!IuH        H        C(   C?C,ELMH        H          H        I        PC>PC=PC<PC;PC:PC9PC8P1AH@EHEHS8HSwCLCH   HH        He[A\A]A^A_]H        H        AUI        ATUH        SH        QHC8HtGHxHtH        HI        HH{AHC    H{8AHC8    H@L9uZ[]A\A]H        H        %x %x %x %d %d
 usb_keyboard term/usb_keyboard.c HID found!
 usb_keyboard%d %s failed. Stopped
 err = %d, actual = %lu report: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x
                                                                                                       LICENSE=GPLv3+  keylayouts usb usb_keyboard                                                                                                                                            &                                                              	                                       8                      J                      b                                                                                                                                                                                                                          /                     ;                     L                     ^                     o                     y                                           grub_mod_init grub_mod_fini grub_usb_set_configuration grub_term_map_key grub_usb_check_transfer grub_usb_register_attach_hook_class grub_usb_control_msg grub_xasprintf grub_usb_unregister_attach_hook_class grub_memmove grub_errno grub_term_inputs grub_printf grub_usb_cancel_transfer grub_print_error grub_malloc grub_get_time_ms grub_real_dprintf grub_list_remove grub_free grub_usb_bulk_read_background grub_list_push   I                                                                                                                                                                     U                    f                                                                      8       a            1       k                   z                                                                    
                               #                    9                    T                    m                    z            =                                                                                      8            _                                                                                                           v                                /                                              "                    ;            L       E                    j            `       t                                                                      /                                              *                   7                    B                    _                    n                                                                         R      H             A      P             B        .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                          @                     @      
                    &      2                                                  :                           `                              5      @                     H       
                    @                      	                                    P                     0	                                    U                      0	                                    ^                      ?	                                                          P	               
                 	                                                                                P      g                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/usbms.mod                                                                      0000600 0001750 0001750 00000025220 13417732100 0014760 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    P'          @     @   AWI        AVAAUAATIUH        SH        QH;HtL9'uD9wuD9ou
AH    HH9uX[]A\A]A^A_UHAWAVAUATSH8        E Ez  EHHcAH}        HcHk(HEHi  HL|0AGPv<.  AG<v<P  8   H        DeI        HMK   HKI           L]H        H        DpAWKP(AWKP,H        1AHku(L]1HAG9~JHkHF8x HyuKL HA!uKL HA u	KL HA0HK| H tH  t, u#H0 uH        KD     1I  1H        H           H        I        AӾ   HH        KD x,P   PHE1ɺ   A   EP   HH        ZYtWu.KHI        H@pAKHH@ pADeH             H        JUKP@   1H        H           H        I        ALkm(Li}  H        MJD+H   He[A\A]A^A_]ÅtH           1H        UATH        IUHSHcH< u   H        IHu[]A\H           H        HE0H        H؋@E1[]A\1u`AUI        H        ATIUH   S1QID HuHH   u11PLՅt   Z[]A\A]UH        HH,PDGuAQEE11ɺ   !   j H?LH?HUVEEA   REEEE1EE1EE!   EEEZYUHAWAVAUATISLHXL0H}HuHUDMA,PtE   Lu\          E           MuH          1   H}H        I        I        Ѓ}        HUHuEUSBCDeEUEHE@EHEHxH        ЋEAPH        DMDEH        @  H        P1AEDMH        DEH        B  H        $1AEDMH        DEH        G  H        PEPEPEPEPEPEPEPEPEPEPEPEPEP1AHIw HM   I?AՅt+jIG I?A   pH        h  M   }    IwHLI?H        AAA   1H        H        [  H        AEtA  IGf  1H        H        c  H        AI@wHE1DL9s5DEH        H        h  H        1AAE1z  H        H        k  M  Iw HLI?AA   AAH        1H        p  H        ACDH        H        u  H        PCPCPCPCPC
PC	PCPCPCPCPCPCPCPDK1AHpEt#A   IG pI?H        uI   wDE1DL9DEH        H          H        1AAH        H          H        1AIwHM   I?H        Ѕ   IGI?I        pAIwHM   I?H        ЅtbH        H        I          1H        ALH        IGI?pAIG I?pA"EQH        DMDEH          H        I        P1ADE1  H        H        H        A֊E^_<t	}USBStbH        H          1H        I        ALH        IGI?pAIG I?pABu	E  } H           $       A, uLIw0HM   I?H        DMAH        H          H        1AMuH          1   LH        I        HE   HuLHHFH        EDMH        DEH          H        PEPEPEPEPEPEPEPEPEP1AHH1A   AVEG1ɾ!   I?H        AEXZtLEDM1H        H          H        ADMAH          M   } udIwHLI?H        H        AEH        1  H        ADME   AXIG^Iw HLI?H        H        AEH        1  H        ADMEt&AIG pI?H        A, 3  Iw0HM   I?H        I        H        AEH        1  H        ADME   AG(uf} \      Et"H           1H           %   ffErpH        H        2  H        1ALH        I        IGI?pAIG I?pAIG0I?pA1He[A\A]A^A_]A   H        E1H        H        PH        ZH        H        H        H        HHHcyHcQHk(Hi  HHHBH    HHHcQHcyHk(Hi  HH9D@    uH        PH        ZH        H        alive
 usbms disk/usbms.c not USB Mass Storage device unknown USB Mass Storage device USB Mass Storage stalled CBW: sign=0x%08x tag=0x%08x len=0x%08x
 usb CBW: flags=0x%02x lun=0x%02x CB_len=0x%02x
 CBW: cmd:
 %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x
 read: %d %d
 buf:
 0x%02x: 0x%02x
 Too much data for debug print...
 write: %d %d
 First 16 bytes of sent data:
 %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x
 Bulk-only reset device - errCSW
 CSW: sign=0x%08x tag=0x%08x resid=0x%08x
 CSW: status=0x%02x
 Bulk-only reset device - bad status
 error communication with USB Mass Storage device USB Mass Storage CBI failed cbicb:
 %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x
 CBI cmdcb setup err=%d
 USB Mass Storage CBI request failed CBI cmdcb setup status: err=%d, status=0x%x
 read: %d
 write: %d
 read status: %d
 USB Mass Storage CBI status type != 0 CBI reset device - phase error or persistent failure
                                                                                    LICENSE=GPLv3+  scsi usb usbms                                                                                                                       '      .            U                                                              	                                       8                      K                      o                                                                                                                                                                                                                          !                     5                     ?                     X                      grub_mod_init grub_mod_fini grub_usb_set_configuration grub_usb_bulk_read grub_usb_register_attach_hook_class grub_usb_control_msg grub_usb_unregister_attach_hook_class grub_memmove grub_errno grub_memset grub_usb_poll_devices grub_zalloc grub_usb_clear_halt grub_real_dprintf grub_error grub_usb_bulk_write grub_free grub_scsi_dev_unregister grub_scsi_dev_register                                          )                    |                                                                                (                    ;                    E                   k                                                           #                   2                   <                   Q         
                                                                                                                                 %                   /                    I                    s                                                                                          6                                                                                     n                    8                    J                    Y            V       s                    }                                                                                            o                                                                -                   <                   W                   f                   u                                       ,                    F            #      P                   _                               0                                                        6                                                        F                         4            h      @                   O                   d            v      n                   }                                       	            6      )	                   8	                   L	            F      V	                   e	                   	                    	                    	                    	                  	                   	                    	                   
            k      6
                   H
                  W
                   a
                    }
                   
            0      
                   
            D      
                   
                   
                    
            k      #            i      Y                    m            7      w                                                                                                                                                                            n                                                                                                                              d                                            P                    \            n      l                   }                                                                                           y                                            M                  ^                                                                                        k                                                              )                    4                    A                    K                    W                   a                                                                                                               j                           (             m      8                   @                    .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                          @               x            
                    &      2               &                                  :                           P                              5      @               p&      x       
                    @                     `                                    P                     p                                   U                      p      	                              ^                      y                                                                         
                 	                            o                                                   &      g                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/usbserial_common.mod                                                           0000600 0001750 0001750 00000005710 13417732100 0017172 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   HcHcHk(Hi  HH|7PHH        H        HcWTHcGPHk(Hi  HHGHH@H    HcGTHcWPHk(Hi  HGHD@    AWHcIHi  AVIAUATLcMk(USLH8HD0   DD$DL$H$H        HIDL$DD$t\H        0DL$DD$H        H        F        1HIEDD$DL$u"LH        H        1N  MuHM}1MH$@9~SHkID$8p@x@y@u/AtA9u$I   @uAtA9uI   HI    tI    tsLH        1I    tI    ttI}H        L1H        H|$   A]PHt$LAmTIELH        IcMTIcEPH        Hk(Hi  HIEHHPHIcMTIcEPHk(Hi  HIEHLhP   H8[]A\A]A^A_USHHHc   ;   }P   DX]HOXHLL$H   A
   HH@   H        Ѕt&HD$   9ŉ   }EHc퉃   D+XH[]  %                            usb%d   LICENSE=GPLv3+  serial usb usbserial_common                                                                                                                                                                                            	                                            t       .      2                      I                      X                      m     2       B                    2                                                                                                                  grub_usb_set_configuration grub_usbserial_attach grub_serial_unregister grub_xasprintf grub_serial_register grub_usbserial_fini grub_usbserial_detach grub_print_error grub_zalloc grub_usbserial_fetch grub_free grub_usb_bulk_read_extended                       (                                                                                                                           (                    4                             	                                                   >                    R                                         .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                             @       .                                   @                     h      
                    &                     p                                     .      2                                                  =                                                          C                                                         S                                                         X                                                          a                                                                                               	                 	                                                                                      j                                                                                      boot/grub/x86_64-efi/morse.mod                                                                      0000600 0001750 0001750 00000006420 13417732100 0014755 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    	          @     @   1ËAT?U% SHP GDH        1MkH        IHA|@t+CBBaai   aa   []A\  H        H        H8 t H        H        H        /QH        Hu!ZH        H        H        H        ЅtXSH        H        HH        [                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  morse                                                                                                                                                      LICENSE=GPLv3+ morse                                                                                                                                s                  '                                                        	                                       -                      H                      Z                      k                       grub_mod_init grub_mod_fini grub_millisleep grub_term_outputs_disabled grub_term_outputs grub_list_remove grub_list_push       '                     7          
                     
                                                                                                                                                                                                                                                                                                                                   (                    8                     @                     H                     P                     X                     `                      .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .modname                                                                                         @       *                                   @                     h      
                    &                     p                                    .      2               p                                   B                                                         =      @               x             
                    H                                                         X                                                          ]                                                                                (      h         
                 	                            z                                                    h	      f                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/usbserial_ftdi.mod                                                             0000600 0001750 0001750 00000006620 13417732100 0016631 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    
          @     @   UHATSHH@ fE  fE fE fE  fE fE    8V   HH@   I        j E1E1уAԃ{8H{H   H$    @   E1E1уA_AXS 1H        9uH        DDHHuE1PAH{HE1A   j @   AԋS,C(E1H{HE1@   fLUfLE   K$H$    AC@   ZYHe[A\]SHH        H@t$H   H{HHL$   H        H[SHH        H߾   H        [fu%f
`uAH        H        E1ËH1H        9uH        f| u	HHuH        9~vH        '~vH        FvH           1H        Hz    1B@    H        H        H        PH        ZH        H            `	      q  %  8A   K       N     4       unsupported serial port speed unsupported serial port parity unsupported serial port stop bits number unsupported serial port word length                                                                              LICENSE=GPLv3+ serial usb usbserial_common usbserial_ftdi                                                                                                                            h                  ~      .                                                        	                      
                                       3                      W                      l                                                                                                                                     grub_mod_init grub_mod_fini grub_usbserial_attach grub_usb_register_attach_hook_class grub_usb_control_msg grub_usb_unregister_attach_hook_class grub_serial_unregister_driver grub_usbserial_fini grub_usbserial_fetch grub_error grub_usb_bulk_write Q                                                               7                    a                    w                                                                                                                                                               !            =       8            f       I                    j                    t                                                                                                                                           (             q      0             1      8                      .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                          @                                               &                           8                              .      2               (                                   B                           @                              =      @               (	      x                           H                                                          X                                                          ]                                                          f                      +                                                          @                                	                                                                                 	      o                                                                                                                                              boot/grub/x86_64-efi/mpi.mod                                                                        0000600 0001750 0001750 00000125060 13417732100 0014417 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   UHSH        PH}HZ[]S   tHH        u
H        ЅuH     [U   H        SQH1t1H        HC+HC    C    C    Z[]U   H        SQH1t   H        HC+HC   C    C    Z[]Ht'HuH        HH  HH9uATAH        UHSHH3HkD#[]A\ATAUS;7Hw#Hcw1HcH0H9s~HKHH    HHt7H4    H        HcHC1HH9s9HsHH    C   HH        u
H        HCD#[]A\G    G    UHSHQtRGH        Ht3H        CtH        1H        ZHH[]X[]ATHIUSHu1H        HCH{tH        3H        Lc    HC    kC   []A\GuH        PH        1HtGHGUHSHV   G   HH        ЅCt   HcH           HcH        HŋC   HsHHcH        ЋSH1Y[]H        tH        
H        ЋSPSPSP19P~HKH4HHH4H1Z[]ATHUSH   GtqG   HHcH        ЅHtH        
H        HsIHHH        ЋSL1[]A\H        tH        
H        @    @    SP1[]A\ATHUHSHH^DfuH        9}HHD$H        HD$HHHu19~H<H<HXUD`PH[]A\SHHHHu   H        Ѓ8 HHD$   H        HD$HPH1H@    @    PH[Ã#       uHGH H1H        SH        H   HPH1H@    P[SHD_DW   DOLGDXDPDHL@[Ã?H        ?H        H        USQ   GH   HoGu8H   H           H        H        H        о   H        19S~HL HHHC3HZ[]H        H        1H        X[]H        PH        1҃tt H        PH        1ҋGËGHtGtHWHcH| uȉGGuHSHtGtGdH        HЋs1tLHCHcHD@   Ht/8   HHuHu@   H)H        ))[É1;WsHGHHAUATU?ASHR;orDeH        DDcHSD   HH	X[]A\A]AUATU?ASHR;orDmH        DDkD   HHAL$HHs   H	@tHHsHHHH!ŉkX[]A\A]É;Gs1AA   ?ILHwLHHH!@uGAAD;GsHW   HHJ!ËOHW9s1)G    9sDNLHH    )wAUI?ATUSHHH9uH;orC    S  1t)S)9HSs<(H<H<H    )kS   FDfG   D9'}L$DH        ЋL$Dc1A;EsIuH<HsH<9ŉCb1S)9HSs<(H<H<H    S)S   t~H{H8D9'}L$DH        ЋL$EDctPu1IuH{DH        /;Cs*IMH4HKH4HSHcH| uȉCCH[]A\A]ATUSHDgtXEtSB4&97sH        HSAD$HcH41ɅxL<(HL19vH    Hk[]A\AWAVAUATAUHSHQu	H9   EAH9tJDuD}Ct593sHH        HSHM1A9vH4H4HDsED{CD?uEtDHH        GEtBAuHH        к@   HH)H        HSHcH| uȉCCX[]A\A]A^A_AVAUIATIUHS^Dvs97}H        ЅIMID$u1HH({EHucHHHpH9H(s%tHHQHHHHVt   1H9u19~LLHHcHuH9s
H)H(1iHHHpH)H9H8v7tHHQHLBHLFtHcH| )ø   H9t19~LLHA\$AD$[]A\A]A^AWAVIAUATIUSHHcj^BD~9}7u97AD|$}HT$H        HT$LzIt$Hc-s97ED$}HT$H        HT$M|$Hr1Mfu9  IIHD;l$  9   HLLH        Љ)HM/LI8IPHH)HHMH9HE v*tHHBHHxHHytHcI1+H9t19~H<H<HHH<   ˅	  CHcHIH<1҅  LHL;Lu   LLH        HcI1~HH< tEA   HLLH        9ti)HM/LHMI8IPHH9HE s%tHHBHHHHAt   1H9u19~H<H<HHcIEAEA^EnH[]A\A]A^A_HLLH        HcI1~HH< uAVAUIATIUHS^Dvs97}H        ЅIMID$u1HH({EHtcHHHpH9H(s%tHHQHHHHVt   1H9u19~LLHHcH_uH9sH)H(   fHHHpH)H9H8v4tHHQHLBHLFtHcH| )1H9t19~LLHA\$AD$[]A\A]A^UH        HHSHHt$H1H{ HHt$CH        HHH        []UHSHPH        YHHH[]H        UHSHPH        YHHH[]H        AWAVAUIATUSHHHHcnD~tuC    C    QDeD9'}HT$DH        HT$LsHIuH        LHtIDkD{H[]A\A]A^A_AWIAVAUATUSHH(DFDvEuG    G       IIC,DL$DmD9/}-LL$HT$DDD$H        LL$HT$DD$HLcMcɃ?t(IwK<DH        Ht@HcID4AIcIH    1K4ExHIAH<H<H19D$~I    HkDsH([]A\A]A^A_AWAVAUATUHSH(FZzHJDNLV9؉D$BV}"ILDT$A׉\$ADDAAAMԃA1t$LmDL$މt$uu4ut+HL$   |$H        E1E1A   IYD$9E }ZI9HL$tM9u!|$H        E1E1IA    t$HH        LmE1E1E1HL$   M9uE|$HL$DH        AHL$II9HD19D$~IT IHM8E1E1I9u-H        AH19~IT HHIE1҅D$    t6DT$A؋T$LLH        Ћ\$HDT$)É\$Et[Au?1|$H        1H9T$~ID HHLI1H        ЋT$LHH        ЋD$MED$Et H(LD[]A\A]A^A_H        H([]A\A]A^A_UHSHPH        YHHH[]H        SHH        C    [AUH        ATIUSQо0      H        ЅHtLH        C   HL A|$I        {Aվ   HHH        ЋCH4 H        LHHH        ЋCHk| AHCC| AHC HZ[]A\A]UHSHQtDH        HH{H{ H{(HtՃ{ tH;ZHH        []X[]AWAVAUATIHUHSH8HDrLjLzHZ Ht$HD$H        HL$C69A~%HT$H8L[]A\A]A^A_HH        I        HHL$(LL$ HAH        AvHHD$LEnI        LD$HHADHHD$HL$(LLL$ HAE9oLD$~EoHT$HHAD9k~DkHLLH        A|$ tXH}( u;A~H        о   HHE(H        H}(DH        HU(LLH        H        Ht$LՅxHT$LLH8[]A\A]A^A_UHSHPH        YHHH[]H        AVI        AUIATIHUSH        HLE    H@    1HI        Aօt)HHLH        HHALHAHLAHH        HL   H        []A\A]A^ATH        IUHSHvH}HtI)ă} IEHtHSH1HS[]A\AWIAVAUIATILUSH   AGIcoYHL$ D$AD$EAƉD$(A)H        HD$EHD$HT$ PM9u M  AD$    AD$      AGAEAGAE19~IWHIUHHMtHT$DLHT$D$3D$MOLZD$ IEHD$uyMt>I\$ILH        HIc֋|$ H| A|$A)Et$ILH        H|$HHAED$AE  Mt^M|$E1M9u`At$HT$0L\$l$TH        L\$HT$0IHD$h19~IIHA   H|$HcE1L<Hcù8   HItHD$0HHuHu@   H)H        1)ȉD$   rIcLL$HL\$@\THL$8H        AƃL\$@HL$8HHD$@LI        HDhL\$8L$ALL$HL$H|$L\$8LAHLD$@   H|$Hl$(   L;\$t
M9u\MtWrIcL\$@LL$8\THL$(H        AƃHL$(LL$8IL\$@HDh19~IIHML9L$t19~IH|$HH1AىHT$LH        Mt)Ht	HcI׋D$ Al$AD$HT$0HT$1~HH< t;t;|$ t4L|$ڋL$H        LLHcI| )벋D$A]H        AEEtAIcƋtTH|hHĘ   []A\A]A^A_AWH9AVIAUATIUHSHAPDytE1H9uHH        HIHLHLH        E;~t2} t,   LLH        HHHH        MtZ[]A\LH        A]A^A_X[]A\A]A^A_AUIATIUSHPH        LHHLHH        Z[HH        ]A\A]HH        HH1AVAUIATE1H9UHSHDruH        HIHH        LHA} E8t{ tHHHH        Mt[]LH        A\A]A^[]A\A]A^AWIAVAUAATAAUHSQ^A9|	G    QD)9}H        DLuIG?t)McLJ4H        HcI| )É]X[]A\A]A^A_HPH        wHHZAUATSHHHHEubHI        uHHL$H$H        {H4$IHHL$HHAHLH        [A\A]HLHFyOHuHHH        HuHH        H[A\A]HH        HH[A\A]H        1H        UH        HSHQЋCu1H&{ uuHSH9*H9*F
   Z[]ATHUHSHtGuHt{CtuHtEtH   Cu   HtCt
      Eu{ u1   ;C|yۃ   HsH}[]A\HcH        HI        AHAԋuUKu{ u)'{ uH98dC9u?jHcHIHCLEI1II HI|H9u[]A\AWAVAUI        ATUH        SHHXH|$@HHIHD$1LH        AՅt31H|$I        Aƿ   AEHD$ tAHD$    @1H|$AՅuLL   H        H|$   H1AHD$LH|$HD$(EHD$0HD$    u-A|$H        LHD$HHt$ H        H|$I        1HD$8LӅt=1E1AEHu   AI@   H|$H1} E      E1AEHu1AILH1EHI        ufAׅt.HT$HHH        LLLH        1LAׅuƺ   HHI        A׺   LL3AׅtHT$HHH        к   HHI        A׺   HHA1HH        Ѕ)} u;HH|$ I        AEuLH|$AHH|$(H        sH        HHt$HD$HH|$0E|$1HD$HEEAT$uLLH|$E|$D}1HH|$8EEH        D}HT$0Ht$ HI        AEuHT$Ht$LAHT$8Ht$(HI        A׃{ t(HT$HHH        EuLLLA1HH        ЅL|$ H|$@H        LLI        AH|$0AHAEuH|$AH|$ALAH|$(AH|$8AHALAH|$AHX   []A\A]A^A_AWAVIAUATIUHSH   BHDiD$ AD$lBD$DAt
D~AE1HJEH]HL$uH        1H        ҃|$  uQA͸   uID$H8Et%}     HH        HEH    E      1ɃDAE͉ƉD$(L$pH        It$HD$IcH8   HD$8HTHHuHu@   H)H        )ЉD$@u1L$@DH|$H        A9~IT$HL$HHHEfAFE9쉄$      A|$1EDEǉD$`H        HD$1A9~IVHL$HHHHT$DELD$1H        EILT$8LLT$0LT$01E~HI< unAHD$HD$0IFD$`    HD$0    HD$EuHE    E    HD$     D$t    D$d    HD$X    HD$P    Z  HD$HD$0H;\$uwH|$0 t(H           H        H           1EDAEDD$`H        HD$1A9~HHL$HHHD$HD$0t$D@H;\$$   uF|$ 1EǉD$dH        HD$19D$ ~HHL$HHHD$HD$PD$d    HD$P    H;\$uuHt/H           H        H        H        Ћt$(1DAEŉD$pH        HD$1A9~H    HL$HHG|- D9} }DHH        H]1A9~Ht$HHHt$(A1EǉD$tH        1HD$X(   H$   H        HD$D$|     t1A~ D$|D$ HL$ȉD$xHH8   HHuHuHָ@   D$D?   H)EHH        D$h    HD$     ))D$DHD$XHH4HD$(Ht$H|$D   ADHH|$(H        |H|$  uC61D$hH        HD$ 9G<6D9|$h}.1H|$ H        1DH        D|$hHD$ HL$ DHH|$(H        G<6E9~)HT$(DEELD$1H        HH|$8HD$HH?H$   u$    uHEH\$(HD$(   A!EHL$DHt$(HH        'L$   EHL$DHt$(HH        G4'E9~(HD$8DEELD$H1H<H        Ѐ$    ^HD$HL$DHD$HVL$xx HcD$xHL$D$D@   HHD$H;|$@ t/HH}L$@DH        HH]t-IcAH!H9]t1A9HU~HHHHE9|(HD$8DEELD$H1H<H        Ѓ|$@ tL$@DHHH        IcH1E~HH< t0H$   H        Et|$| u$   D$l   A뻃|$@ tH|$L$@DH        HDHHt$HH        E9uHT$8E1HyHL$McDID)LIH9HQHH)HIJH9IvtHHBHHxHHytH9t19~H<H<HHH< uAEH9]t(H        E  H        H        D$lDuEH|$Htt$pH        H|$0Htt$`H        H|$PHtt$dH        H|$XHtt$tH        H|$ Ht1H        H   []A\A]A^A_AW1AVIAUATUHSHHH|$Ht$ H\$ AHH| uEtE11I        %H        R   H        H        FDd$0IJ|Ht
A9LD9l$0t/H        Z   H        H        H        Ѕu%H        [   H        H        A	~%H        \   H        H        DD$   d$Hc|$   H        IAFxH        о   HD$H|$H        AEHD$    HD HD$(CD$4HD$9^  Ht$H        LH|$E1HЋD$01DxD$4)HD$(EHT$8H<H        DHT$8DEAHAuExD;l$|(H        i   H        H        yIcI,H}     E1EuF   H        I$dH} HD$ HJu%HH        HE ID9|$0~EsLHH        H}  u1H        HE LHU Ht$H|$H        HD$1H|$H        I<H9\$HHLH        []A\A]A^A_AVA@   LcA)AUDHoSNILLE1LHIx JDIDIIM	NDIDHcILD []A^AWIAVAUATIUHSHH
Hw.    u9~HT IH19~I    HH        HcE1I        H4    IIHt$AU9}IKLHw     u$HLLH        HLAH|$IIID?H[]A\A]A^A_AWAVAUIATMUHSHHH4$L$   YH        H4$H        LcH4$N| KL I        LA֍LLHcHD H$JDd$DDHcAHD W  HcD$LcJ4    H2H4$H<ǉH        H4$H<ǉH        J    DCHHD$H$McDIHHJ<1JxLHL;Tuv$LL$ DD$H$HH        E1(A   HLL$ DD$H4$HH        HD$LL$ DD$It 1JMExHHI;LuA  HD$ALH| H        HD$HT HLH        HcD$HLMH        HcT$H    HD$0HHD$ HD$HHD$19~HL$ Ht$HHHIH|$ I        N| LD$8HLAH|$LD$8EHD$(L$LHMtH        HL$(H)HL$(AHD$(HD$(LH4$LH         LD$0LH4$LH        MH|$L$LHALt$(Iu1/III9M7sItIIOHQHIWt9~IHT HHT$H|$H        LHHtaH|$ HHPH9HsMHHL$t>HHXHSHHPu)L$HD$HLH| H        HH[]A\A]A^A_AWAVAUATIUHSQHHw/    u9~IHT H19~HD     HH        HcE1I        L4    HD HAE9}DKLHw     u$LHHH        LHAJD5 IHX[]A\A]A^A_AWAVAUIATIUHSH8T$t{ZH        H        LcLII        O<,ILIA֍LLHcHD ID|$DDHcAHD @  D$LcJ<LcJ4H        H        J    1I4HD$CHcHH<LxLHL;D
uvLHLHH        ЃHLH        KL HLH        N    JD HD$HD$HHD$19~Ht$HL$HHHMH|$LD$(N| I        HLAH|$HD$ LL$H        HH)D$ LD$(LLH        KL LLH        H|$L$LHAHD$ u1/IHH9IsItIIwHVHIWt9~IT HT HHT$H|$LHAHt>HL$HHPH9Hs*HHL$tHHpHVHHPuL$H8[]A\A]A^A_AWH9AVAUIATIUHSARueAY[]A\A]A^A_H        D,HH        DH        IHHLH        DLzAX[]A\A]A^A_H        HI        Aօ   uLA1@D4H        DIIHLLH        DLZ[]A\A]A^A_H        ATUSHHHts H        H{HtsH        HH        Ht3H{L#Hts H{HtsHH        L[]A\AWIAVIAULcATIUIcSHH   1  H	Hw*u19~IIH19~I    HH        J4    KMoE1Ht$AW9   KLHw     u-LLLH        LLH        H|$IIID=I(   1H|$H        LL$ALLLH        H        H|$KDHH[]A\A]A^A_AWIAVIAUATIULSDH(IyT$HtE9A}[AqH        D,H        LH$Dm҅   H$uL1@DH        Љ]HELLLH        LELLLH        LcIK/HD$K,Dd$H$A)A9Z  H}Ht9]$}]u H        D<H        H<$HT$D} ҅   HT$uL1@DH        Љ]$HEL|$A)Dd$D$MMH}M)LH4$H        LELH4$H        HULLH        LHML|$H1HQIOHH9IsBtHHBHHHHAt$D$Dd$MD$L,$D$9EH9t19~H<H<HE   AH}EH$LH        AH}  u(      H        HE H}LM EH$LH        ЉH\$HUH        HHLHMIH1HQIMHH9IE sAt4HHBHHHHAtH9t1AA9~H4H4HH([]A\A]A^A_AUE11ATI       UH͉H SNMEI LHMLLII LMMM9AO,!MBMII MI9NI ILLFEu[]A\A]AUE11ATI       UH͉H SNMEI MLLHLMEI LIMI9LO,!MBIH II9I 1LNNIHLFEu[]A\A]AUE11ATI       UH͉H SNMEI LHMLLI݉I LMMM9MO,!MBHI LNI)H9I 1LN;NIHLFE{[]A\A]E11E1JAJINIFLEuE11NE1JMAI)1M9NIFLEuAW1AVAUATUS  Iй8   LHuHuLH        @   HAA)A)0  HcDD)LtI@MHcL,I 1LDH   1Md @IMIDIM	HH ILH H	L9sLrJ L9HBL)1EIHHHH L	H9sLrJ H9HBH)HMp1DIIHH HLH H	H9sLrJ H9HBH)1EIHHH L	H9sLr
IH9IBH)DH   NHcHL9sN1LHcEHH 1xo1L;HIH ILH H	L9sLrJ L9HBL)1EHIIHH L	L9sLrJ L9HBL)H[]A\A]A^A_AWIMAVAUIATUSHhAt$Pt+A  E  H        1H        HcI0HD$    HDH9rH)HD$   Hc\$PMII E1ɉLcIHI| O,2I   1Od IMI IHHI M	II9sIIrI9sLXILEH)1IIH LL	IL9sIHrL9sL`HI HM	L)OIfDL$PH)1AAIcL,Ex1IHHHIH H9sHHrH9sHxHH1H)IIH HML9sHHrL9sHXHH HAH	L)I|- H|I   HcIHI8HtHD$    HFLH9r,I9sH9v"LH)E1H)HD$   L9IAL)\$PE1AI       DD+HH H\$HIcH Il H\$ H\$HHH\$(E  D;D$P|HH    H9u@LsH)1ILJD HB  1HILT$(I)H   1Ll$MHt$I LH HL	L9sHHrL9sHXHH1EL)Ll$Ht$LH IM	IM9sIIrM9sLPIH Lt$ LHL)L	҉II IMMIMMMII EMI9LO4#MBH I IMHI9w
I9v$I9uMHI)M9AEM)HMsJT HL)L)I1I9H)AIlHFL  McHD$    D)IHK\ KL L4ID$I|$MHD$H|$0HL$IH9rpw6AQ1HcHI<6LƅxLHL;TuHD$    v8L\$DDL$ LLLH        L\$DL$ HD$   Il$PHAQH HD$     H|$(H|$HcH4    D)H Ht$HHcH|$@I| H|$8  ;l$P|
IO&3HL$Ht$H1MAILxH<H|HI    IH9  1HL$Ht$(IHH IHIHH L	H9sIHrH9sLhHH1҉H)Ht$(HH H	HH9sHHrH9sHHHI D$LD$@I	H)DLHH HIHII IHI       LH9HNIBH H HHH9vIHr#H|$1H9@H)H)uH|$0I;>wL\$XDDL$TLLLH        L\$XDL$TI9t DLLLH        IDL$THD$8Ht$ Hl$ L,0HD$I"HD$Hh[]A\A]A^A_AW1AVAUATUSAP  Iȹ8   LHuHuA@   LEHA)H        A)D${  HcZDL\E)IHcDMHDd$I LLL$H1EŅ   1M44L$ILH$IIH L	IMHH H	L9sILrL9sLXLH1҉L)IIH MH	HL9sHLrL9sHhLI HI	L)M\2HMT1Ҋ$EIILH HH HIH	H9sHLrH9sHXLH1EH)IMLH HL	L9sHLrL9sHHLH HH	ˊ$L)HH   DJIcHL9sDJH    1IcME1HI EHHE   1J,IHH IH HMH	L9sHLrL9sHXLH1҉L)IIH MH	HL9sHLrL9sHhLH HAH	L)JIiZ[]A\A]A^A_ATHIUHStGE   A$HEuEH        t
H        HH   EHڍHHcH4ÅxfH}HH)HHHH8@zHH0@zHH(@zHH @zHH@zHH@zHH@zBHA$t> uHA$H9tHH        H1H[]A\AV1AUATUH        SHH        Hu[HH        1]A\A]A^{ ItH        1ՋkI        LcI~';kHCH        Jt(ID1AIՃ{ u[]LH        1A\A]A^[]A\A]A^UHHH        SH        P1HH        YHH        1[]1H           H        AVAAUAATEeUAHSD9'H}DH        JD+H{Du1H9rcPpHD@HHH	pL	LEHH	pH H	pH(H	pH0H	pH8H	IHH9   HpH9   pHH	HpH9wopHH	HpH9w[pHH	HpH9wGpH H	HpH9w3pH(H	HpH9wpH0H	HpH9w@H8H	HEqHcHD9ut/H        o  H        H        H        []A\A]A^AWAVAAUMATIUHSHHHtHH        1҅1A  AAuBҍ}tH        H        ЅIt^AEt:L  Aucҍ}tH        H        ЅIt1ɉHLH        MLi  H        M,$`  A     D3CAA	A @     AHH        AAn҉u
H        AމhA@    H1   tT1A)D9vHH        15HHISL	E.AuIL@HE1J11MtIu H  MHn  HD$H        HD$I$K  +C	C	C	ŅLcItHH        HH        MIt?CAFtLH        и	     Hs1ɉLH        MtIM} ML  H        M4$  A
     H  1H        u
H        E1;-HuHA;0u{xHCHDHH        D<    1AAAEoAD9m sT$DHH        ЋT$DEDmDuIE1E   1uHSu   Hڹ0   :HZtxQЃ	wQwWQwW7W	vWwWWw4W	HHHcH	΃uLHEAI1I4 1VHH        HHH        1-H        и   MtHH        I,$H[]A\A]A^A_AVH        ALAUIATIULSHHЉHD$MLDAI$       } 	   s  1HHt$H        HHb  T$1t}  y°T$HI        t-T$L9  t H)HHH        HAjAumHۉT$tUL9     1HHt$H        HH  T$HHH        HH        ЋD$U  A   J
   } L$_  Ht`L9L  ЈSH1Ht$H        HH1  T$H{HH        HH        ЋD$   A   } 	     1HHt$H        HH   T$1t}  y°T$HI        tRT$JL9vHA   шSH{KKtH{C )HH        HA֋D$I$"  A
     1HD$    Ht$H        HHuH           D$   t	H   } @@֍TBL9vH        и      @HtHS-t0B0H19v<DADN0DV7	EGADJAp0EH7A	AG@tJHHB  HH)1҃} DBI$H        1H[]A\A]A^AVII        AUAATI1UHSHHH    1HL$Aօ   HH|$tEH        u
H        HHuH        FIHL$HT$HDAօtH;H        H    Mt	HD$I$1H[]A\A]A^LAVA@   A)AE1DSLHID9~ JDIDIIM	NLI؅ҹ   OHcDILL[A^HLFHwHH9Hs$tII@HHHHFt   1L9u19~IHHAT1AUHSHHEtHDD$DH        DD$E9t,IcHDHHD)Ht= HH        []A\H[]A\HLFHH)HOH9H7v%tII@HHpHHqt   1L9u19~I4H4HAT1AUHSHHEtHDD$DH        DD$E9t,IcHDHHD)Ht= HH        []A\H[]A\HcHHH1xHHLDL9u1I9H        H        H        1HH        QHuH        H        ZH        QHuH        H        ZHH        QHuH        H        ZH        QHuH        H        ZH        QHuH        H        ZATH        IH        USHPHt$(HT$0HL$8LD$@LL$HHH   H        HH        ՅtVH        H        1HD$pD$   Ht$LHD$HD$ HD$H        H        H        HՅuHP[]A\S1HH        HPHL$8LD$@LL$HHt$(HT$0H        HD$`HHt$D$   HD$HD$ HD$H        H        H        1H        H        t   "   D1               mpi_set_secure   gcry_mpi_powm   _gcry_mpi_mulpowm               _gcry_mpi_set_buffer invalid flag value in mpi
 mpi_get_opaque on normal mpi
 lib/libgcrypt-grub/mpi/mpiutil.c !ap invalid flag value
 mpi rounding to ceiling not yet implemented
 mpi division by zero lib/libgcrypt-grub/mpi/mpi-pow.c !bp_marker !mp_marker res->d == rp lib/libgcrypt-grub/mpi/mpi-mpow.c k i==k t k < 10 idx >= 0 && idx < (1<<k) mpi division by zero %016lX %lX   [MPI_NULL] - 0 %s: 
 lib/libgcrypt-grub/mpi/mpicoder.c i == nlimbs gcry_xcalloc failed gcry_xmalloc failed gcry_xrealloc failed debug all gcrypt:  gcrypt gcrypt bug:  gcrypt bug     LICENSE=GPLv3+ crypto mpi                                                                                                                                                                                              	                                            xZ                              ,     U            :     T             K                  \     :            m     E"      R       }     )S                  G	      :                               Kb                  _      n                  z                              :                 x1      6      '          -       =                     J                     Q           T       h          a       w    >                                                              x           "                        -           eO                `      n           :                       L       !    +F      +      2    [?      F      A    (      r	      O    i             d    rD             x                      _      b           E      3                 L           C                       X       L                      a      *                                       9                  -       /    E             C    A!      "       Z                     e                r          <                            VH                -      1           pa      .           :T                                      )      +            c             !                 /    4      n       A    c      $       Y    	            i    X             {    a      .            b      *                 1                             _      @                                     -           E      8           Jb                       !          a      9       )                     =                     D                  V                h          P       y    ^      (                                                                       }                                      KT                                     S      D           "      3          _      W       $                1          0       H    aa             R    o      @      b    Ua             u    a      *                                G`      [           $      -                 .           #      <          @      ;          2      j                                             !    ma             0    Q             @    g      k       T                 a    (             n    ,T                       n                                              W       Q           L                       S           =                $	      #                            +    c!             8    Ia             D    Q^              grub_strlen gcry_mpi_print _gcry_mpi_clear gcry_mpi_scan _gcry_mpi_resize _gcry_mpi_get_ui _gcry_mpih_sqr_n gcry_mpi_cmp_ui gcry_mpi_dump _gcry_mpi_rshift_limbs _gcry_mpi_copy _gcry_log_printf _gcry_mpih_add gcry_mpi_get_nbits _gcry_mpi_barrett_init _gcry_mpih_sqr_n_basecase _gcry_mpi_mulpowm _gcry_mpi_mul_barrett grub_realloc memcpy _gcry_mpi_alloc_secure _gcry_mpi_free _gcry_mpih_release_karatsuba_ctx grub_memmove _gcry_clz_tab gcry_mpi_set _gcry_mpi_fdiv_r gcry_mpi_addm _gcry_mpih_divmod_1 _gcry_mpih_sub gcry_mpi_snew gcry_mpi_set_bit _gcry_mpih_mod_1 _gcry_mpih_mul gcry_mpi_powm gcry_mpi_set_highbit _gcry_mpih_addmul_1 _gcry_mpi_alloc_like _gcry_mpih_rshift _gcry_mpih_add_n _gcry_mpi_fdiv_r_ui _gcry_mpih_mul_1 gcry_mpi_sub gcry_xmalloc grub_fatal _gcry_mpi_alloc_limb_space _gcry_mpi_free_limb_space _gcry_mpih_submul_1 _gcry_mpi_divisible_ui grub_errno gcry_mpi_add gcry_mpi_clear_highbit gcry_mpi_clear_flag _gcry_mpih_divrem gcry_mpi_get_flag gcry_xcalloc _gcry_mpi_get_secure_buffer grub_vprintf _gcry_mpi_assign_limb_space _gcry_log_bug _gcry_mpi_mod _gcry_mpih_lshift gpg_error_from_syserror gcry_mpi_rshift gcry_mpi_set_flag gcry_xcalloc_secure gcry_xrealloc gcry_mpi_swap _gcry_mpi_tdiv_r gcry_mpi_sub_ui grub_printf gcry_mpi_mulm _gcry_mpih_sub_n _gcry_check_heap _gcry_mpi_tdiv_qr _gcry_mpih_cmp _gcry_assert_failed memcmp gcry_mpi_test_bit gcry_mpi_mul_2exp _gcry_mpi_fdiv_q _gcry_mpi_normalize memset grub_zalloc _gcry_mpi_tdiv_q_2exp gcry_mpi_lshift grub_refresh _gcry_mpi_set_buffer grub_malloc _gcry_log_mpidump gcry_mpi_cmp _gcry_mpih_add_1 gcry_mpi_mul _gcry_mpi_alloc_set_ui gcry_free gcry_mpi_add_ui gcry_malloc_secure gcry_xmalloc_secure grub_strword _gcry_mpih_sub_1 gcry_mpi_subm gcry_mpi_get_opaque gcry_mpi_invm _gcry_mpih_mul_karatsuba_case gcry_mpi_set_ui _gcry_mpi_fdiv_qr grub_free gcry_is_secure gcry_mpi_mul_ui gcry_mpi_set_opaque gcry_mpi_gcd gcry_mpi_new _gcry_mpi_get_buffer _gcry_mpi_lshift_limbs _gcry_mpi_mod_barrett _gcry_mpi_m_check _gcry_mpi_alloc gcry_mpi_release _gcry_mpi_barrett_free _gcry_mpih_mul_n gcry_mpi_clear_bit grub_env_get gcry_mpi_div gcry_malloc gcry_mpi_aprint               S           4          k           @          5           a          5           |          7                     5                     7                    h           0         8                    L                    K                    A                    h           -         8           B                    N         E           |         ~                    h                    8                                       E                     u           A         k           [         5                                        w                                        ~           $         u           7         j           C                    \                    t         w                                        ~                    ~                               I         ~           g                                                 ~           -         ~           ?                    N                                                    9                   Z                V                    7                    8                       ^                E                       ^       !         E           9            ^       D         E                    [                    !           =                                        
                    
                    
         /           /                                        	         {           #         {           <         I                                                   !                    x         R           K         R                    0           9         R                                                            <                                        <                    #           /         3           G         #                                        2           G                    |         G                    7                    7                               )         7           o         7                    *                    7                    8           3         D           f         8                    f                    #                    #                    [                    A                                        ~           <         r           Q         {           f         Z                                        h           $         [           W         F           c         "                                        f                    3           &         ~           >         r           Q         {           g         <           s         d                    f                    |                                                            "           5         #           a                    z                             )           *                             %                    )           s         7                    !           #         7           L         G                    7           ;         ?                    /                    8           0                    N         T           q         O                    <                                        ~                    s                                         T           A                     V          N                     <                                                     !         /           G!         )           !         T           !         ~           !                    !         Z           !         #           "         s           /"            r       ;"         E           H"         [           "#         W           1#         [           #         X           #                    $         X           %$         g           j$         I           $         ~           $         3           $         g           k%         X           %         <           %         3           %         I           %         <           &         I           &&         X           H&         "           m&         "           {&         3           &         "           &         3           *'         3           H'         <           j'                    '         "           '                    b(                   n(         6           (                    (         7           .)         !           T)         G           )         7           )         ?           *                  *                   *                   *         7           @+         7           +                  +                   +                   +         V           +         7           ,                    Q,         7           q,         \           ,         !           ;-                    ]-         7           -         8           -         7           -                    -         ?           B.         *           k.         q           .         ?           /         G           g/         ?           /         /           /                    /         /           0         R           0                  0                   0                   0         8           1         8           *1         8           D1         8           \1         8           1                    1                   1                   1                  2                   2                   $2                  .2         V           >2                   M2                   W2            !      i2                   x2                   2            #      2         A           2         ~           2         r           3         Q           W3         X           3                   3                   3            *      3         g           3                    #4         Q           :4         ~           [4         Q           x4                    4         h           p5         2           5         -           5         0           36            5      G6            5      f6         -           6            5      6            5      S7         R           7         R           7         R           7            5      8            5      u8         0           8         R           8            5      9            5      9         0           9         R           [:         2           m:         -           :         0           
;                    ;                    2;         -           ;                    ;                    <         R           <                    7<                    <         0           <         R           <                    <                    =                    >         u           >         7           7>                    \>            5      k>         u           >         7           >            5      >         8           >         8           ?         8           ?         8           G?         h           ?         2           @         0           %@         -           S@         \           r@         q           ~@                    @         8           @         u           A         7           >A            5      [A            5      A         8           A         u           A         7           +B            5      FB            5      ^B         0           	C         *           (C         A           LC         q           cC         0           \F         !           H            C      H         6           M         R           N         9           O         0           O         !           MR                    YR         j           S                     4S                    BS            c      WS            e      uS            p      S            _      S            X      S            r      S            t      S                    T                    T            x      0T            R      AT            R      qT                    U            @      U            z      U                  U         V           V         u           9V                    HV         ~           V                    V         ~           V         a           V         [           W                    ,W         ~           kW                    W         [           X                    ,X         ~           RX                    sX         a           X         [           X                    X         ~           Y         	           CY                    Z                    .Z                    >Z                    YZ         [           |Z                    Z         z           [         h           =[                    ~[         z           [                    [         h           \         z           1\                    @\         h           {\         z           \         h            ]                    C]         z           W]         H           ]         h           8^         h           X^         
           ^         j           ^                    ^         H           ^         h           _         0           0`         e           `         R           `         m           Ka         b           Wa         b           ca         t           va         ]           a                  a         6           a         b           a                  a         6           a         ]           a                  a         6           a         b           
b                  b         6           "b                    4b                  >b         6           Ob                    \b                  b                  b         l           b         P           b                  b         C           b         `           c                  (c                  Oc         P           c         C           c         `           c                  c         6           c         ;            .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                             @       c                                   @               |      )      
                    &                      d      U                             .      2               ue                                  =                     g                                     C                     g                                    S                     g                                     X                      g                                    a                      g                                                          g               	                 	                      Xt      T                                                         j                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/search_fs_file.mod                                                             0000600 0001750 0001750 00000011560 13417732100 0016565 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @  
 AWAVAUATIUSHQ~ t?fuduGP1	  1HLH        H        HHu
   o  H        HH     H        H     H        H     H        HtHA   H        E1HI        Aփ{(    E   {$       H        HHtZH;I        ALHEAHHEt$H} tH        HE HH        *HAH}AHAH             Et5H{C$LHtH        H        1H        H             1EtH{ Z[]A\A]A^A_AWH        AVAUIATI        USHHH(HtNH}H3AԅW  IHm {$ C(    u&I        H}AH}AHAHE IE E1I        D;c    HCEJ,}     HAHl} ,uE  HCHJ<H        Ѕt}     E ,   }  uwHCJ<H        HItH8I        HuHA׀}  u=E ,7HH        H        Ѐ}  uE ,T$LA׋T$uXAHHH        []A\A]A^A_H        C(   HH}H        ЅC(    H[]A\A]A^A_ATH        IUSHHHHu   RHH3H        1H        HHH        HtLHH        AHD[]A\ATI        UH        SHH@HH|$Ht$T$ HL$(DD$0D$4    D$8    tDH        H|$HD$H        H     Aԃ}  HD$H        u|$4 uH|$Aԃ}  u'|$4 u HH           1H        H@[]A\ÅuH           1H        HЍVE1QHHDMtHp11H8H        С        ZH        PE1H        H        H        H        H        ZH        H8H        (%s)%s  %s %s,%s no such device: %s one argument expected Search devices by file. If VARIABLE is specified, the first device found is set to a variable. NAME [VARIABLE] [HINTS] search.file     LICENSE=GPLv3+  search_fs_file                                                                                                 Z      D                                                                                                                 )                      ?                      W                      f                      w                                                                                                                                                                                                          .                                   /                     A                     [                     f                     p                                           grub_mod_init grub_mod_fini grub_strlen grub_fs_autoload_hook grub_partition_get_name grub_xasprintf grub_device_open grub_strdup grub_partition_iterate grub_errno grub_register_command_prio grub_printf grub_unregister_command grub_strcmp grub_malloc grub_file_close grub_search_fs_file grub_file_open grub_device_close grub_file_filters_enabled grub_error grub_free grub_device_iterate grub_env_set        =                     G                     e                    y                                                                                                                                                6                   G                   f                                                                                                                                          8                    a         	                                                                                                              Y                    m                                                                                                                                           2                  =                    |         
                    
                    
                                                              $                           E                    P                    \                   j            :       t                  ~                                                                                                    .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .modname                                                                                              @                                          @               X                                &      2                                                  5                                                          ;                                                         K                                                         P                                                                                            	   	                 	                      	                                                         P      Y                                                                                                                                                                              boot/grub/x86_64-efi/msdospart.mod                                                                  0000600 0001750 0001750 00000007120 13417732100 0015642 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   AU   ATIUHSH  HIHX(HS(Dk HP(1HsH?H        ЅtHE HX(           A<$ tI|$11H        IcHHDA|$ tA|$ tttu'HE H           H        HX(1OIcH        HHDH        1HsI   1H} H        HE HX(1H  []A\A]AUATUHSH  HHX(H{ t"H           1H           HS(Dc II1   HP(1H?H        ЅtHE HX(           A}  IctOA} tHHƄ$   Ƅ$   HƄ$   Ƅ$   DDH        1H        &HDH        HH        D 1I   11H} H        HE HX(1H  []A\A]SH        H        H        H        H                H        H        [        SH        H        8H        8H[the partition type 0x%x isn't valid Setting partition type to 0x%x
 not a primary partition Partition %d is active now. 
 Cleared active flag on %d. 
 msdos type Change partition type hidden Set `hidden' flag in partition type boot Make partition active                                                                                                                                 LICENSE=GPLv2+ disk parttool msdospart                                                                                                 u      _                  +                                                                              	                                       4                      C                      \                      g                      s                                                                                         grub_mod_init grub_mod_fini grub_parttool_register grub_disk_read grub_parttool_unregister grub_errno grub_printf grub_disk_write grub_error grub_printf_ grub_strtoul 9                     P                     o                                                                            $                                                \            D       m                                                                        \                           "            z       0                    S                    x            P                
                       <                                                                                                                                                                                                                                                                      P                    X                     .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                          @               `            
                    &      2               ?                                   :                     @                                    5      @               
             
                    @                                                         P                                                          U                                                          ^                            
                                                                   
                 	                                                                                
      g                                                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/search_fs_uuid.mod                                                             0000600 0001750 0001750 00000011460 13417732100 0016613 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    p          @     @  
 t1t*D@DJH ADB GAAF9uHHȍHP FrJ F)AVAUATIUSHH~ t?fuduGP1	  LH        HH   HH        HuE1VH@@HtHt$HH        8 uLt$MtLE1H3H        ЅLH        AHH        E1{(    E   {$       H        HHtdH;I        ALHEAHHEt$H} tH        HE HH        4HI        AH}AHAH             Et5H{C$LHtH        H        1H        H             1Et
1H{ H[]A\A]A^ATH        IUSHHHHu   RHH3H        1H        HHH        HtLHH        AHD[]A\AWH        AVAUIATI        USHHH(HtNH}H3AԅW  IHm {$ C(    u&I        H}AH}AHAHE IE E1I        D;c    HCEJ,}     HAHl} ,uE  HCHJ<H        Ѕt}     E ,   }  uwHCJ<H        HItH8I        HuHA׀}  u=E ,7HH        H        Ѐ}  uE ,T$LA׋T$uXAHHH        []A\A]A^A_H        C(   HH}H        ЅC(    H[]A\A]A^A_ATI        UH        SHH@HH|$Ht$T$ HL$(DD$0D$4    D$8    tDH        H|$HD$H        H     Aԃ}  HD$H        u|$4 uH|$Aԃ}  u'|$4 u HH           1H        H@[]A\ÅuH           1H        HЍVE1QHHDMtHp11H8H        С        ZH        PE1H        H        H        H        H        ZH        H8H         %s %s,%s no such device: %s one argument expected Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. NAME [VARIABLE] [HINTS] search.fs_uuid   LICENSE=GPLv3+  search_fs_uuid                                                                                                       D                                                                                                                 )                      ?                      W                      f                      w                                                                                                                                                                                                                      $                     /                     9                     M                      grub_mod_init grub_mod_fini grub_strlen grub_fs_autoload_hook grub_partition_get_name grub_xasprintf grub_device_open grub_strdup grub_partition_iterate grub_errno grub_register_command_prio grub_printf grub_unregister_command grub_malloc grub_search_fs_uuid grub_device_close grub_fs_probe grub_error grub_free grub_device_iterate grub_env_set                                                                                                                                   L                    c                                                                                                                                                                                  @                    l                   x                                                    V                                                                  >         	                       V                                                           <                          6            V       J                    d            V                                                      
                    
                    
           6            
       G                    `                   q                                                                                           3                   Z                                                                                                          .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .modname                                                                                              @                                          @               0                                &      2               U                                   5                                                          ;                                                         K                                                          P                                                                                 0            	   	                 	                      	      Z                                                         Y                                                                                                                                                                                                                                              boot/grub/x86_64-efi/multiboot.mod                                                                  0000600 0001750 0001750 00000045600 13417732100 0015651 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    H          @     @   HHxHHpHPH    1HATH        AUHSHH`  ЅtH        H             1HT$`   H        H        1Ʌ   Ht$H|$H        Ѕ   HD$D$HCXD$(C`D$CdD$ChD$ CltHT$,   Cm DcpHf FfCt1St9vLT`HVTaVTbHVڋD$<CmCpD$8CqD$DCrD$@CsD$LCtD$HCu   1H`  []A\AWH        AVAUATIUH    SH(HHtkI            HHAHL|$~
IHTYH        HH        8 u LH           1H        ѡ          A?tII9vAGAOORu1HH        H           1H        F    t'HH        AWH                     t1HLHH        ЃuAGtH             AG  AWLH)AE+wAAGAA)ԅuDe@E)AOt)IcH        Ht$H8H        ЅAt:1H        H        c   H        I        AD   H|$H        IcIHH        Hu        fMcLHLHD$С        uFAWtA+WK|5 1H        D)AG        2HLHH        ЅtD$HH        ҋD$AGtXAW tu,E1E110Ҿ   IAO(AW$E1EG,      3H           1H         E1E111Ҿ      H        H([]A\A]A^A_UHAWI        AVI        AUATSHHHH        E'LhH        IIHEAH        H        HHHML}HkHuL  MMMH        HtHxp tL@xH j   
    L)H        A   j HuH8H        ZY  H}H        I        IH}H        ЉI]xLxx1x   LH        HH        HH        H0AH        AM H        E}HPHHI׺   HAAU E}@IL[ЀAE            AEE}H  E1IIH        LAU HED;snIQDDUHL]LMLH߉AQDxPIcQ IqALMDUL]AA AM	HHIAE    AE    LAAHuH        MkH]H        AM @E}0H        Eu,LMH
AEH        H
AEAE AU H        : tAE    AE H        L8Mt0IwpHt"HIWxAEu8IGxAE4IGxHIM?H        Ht`HMEu$HHHH        H0AH        H        HAM  H        1AEAU HAu(HIDHLH        ЅtH        H             E11111H        He[A\A]A^A_]HH        У        HH        HH        ATH        UH        SH     H        H     H             H        H8H        H     H             H        HHtL#H{HLH        H     H        H     H        H8H        H     H        H     H        H     []A\ATIH        USLH        ЉH        HHH                Ht#HHLH        H        1[]A\AWIAVI        AUIATAUH(   SAPAHHtGHhLxLH     DH        AǉLAHHHCuHH        С           H        MGHk HcDIIHLLH        H        H        HtHHH        HH                        1Z[]A\A]A^A_H1ATH        USHH        H     H             tlH        H;I        Aԅu        Hͣ        t1H        H;Aԅu>        Hͣ        u![]A\H           1H        H;H        HI   H        H8H        Hs}H        H        H        H8H        HH        tDH3LH        Ѕu.H        1H        H        H        LH        H        8 t9H        H8H        H     H        H8H        []        A\SH        H        H;H        H    H        H8H        1[U1	   HATH}SH]H0        E  H{E+EH        ЅAu0H0	   HHH        1H8H        H0HeD[A\]UHAWAVAAUATSH(t-IH        H:H        ЅuAtIH        1H        H: u"H           1H          uI} H        HHu:s  H        H     H        H     H        H     뮡        1ҨtH        H H Lc@I        MtxjH       H        L)A   Mj HuH8H        ЉXYtUHA׋U   H}H        H}HEH        
1HE    AVHIMLH        ЅAtHADiMt\LHuHH        L9tAHAH        8 u!IU H           1H        ѡ        HA1He[A\A]A^A_]HH        H        HD$    Ht$ЋD$HUH        H        SVHt8 uY[]11H        H        HH        1H        Há        Ht&11HH        ЉHH        ҉Z[]UHAWAVAUATISHHHBHu<  :ELF  z  fze  z[  Bf  DrB,R*D=      ME1AT$,A9f  AD$*AHJ<0?E  DOWH        B
H;vHGEH        ]   H        I        P1RH        AAD$*HuAHLHPH        H8H        AZAA[L  H}H        IAD$*AHLx tYpHH        H  AD$*LHAHATH        AT$*AHcATH9  AD$*AHLxP9s)1LH        AE1A9}?A|$*AL$AHcLw9wDGAA9vO)ȣ        AA9M  A|$0fI  AD$.H        HcHI%  At$ I        HAHLu  AT$0AD$.I        LHHcAAT$0AL$.LuHH9t  ME    A|$09E   A~    EFE   j D1H        Huj EN H8H        _AAX  H}H        H}HEH        AvIHHEH  AVHuHHEAVH9  E~AD$.EI*AT$2At$.  <  H   H#HELF   H9tH          ID$H  >    f1H9  AD$fvH        z  AD$8AT$6Mt$ HLH=    vH        4  ME1`H}H        IAD$6AHLHx  *  AD$6AHLHx HP(H9sH)1LH        AAt$8A9D  AD$6AHJ<0?uLOHW(H        J
H;vHw1EH        ]   H        RI        H        AAD$6HuAHLHH(HPH        H8H        YA^DM1EH        H        f   H        ADMD  HpHH        H  AD$6LHAHIT H        AT$6AHcI;D -  E1A9}OA|$6IL$AHcLHWH9wDILG(I9v8LGB<LH))׺H9ѣ        wA9u'H        AH             A|$<f  AD$:H        HcHI  I        It$(HAHLu  AT$<AD$:I        LHHcAAT$<AL$:LuHH9  ME    hH}H        H}HEH        IvIHHEH  IV HuHHEI;F    M~AD$:EIA|$<9E   I~ uMF Mtj H       1L)H        Huj H8H        MN0AEXZ41DEH        H           H        I        ADuH        8 u>HUH           1H        AT$>At$:LH        С        H           1H        He[A\A]A^A_]UD@SAR        u`Et Y[]H           1H        H        H        H             H                   ։DEt)tGt!AAH        1I        A8ttH        1H        H        H        Há        HtjHH        H        HH         H        H        H        H                    1Z[]UHH        SRЅuuE1H        1H        H        H        E1H        H        1H        H        H        HH        X[]SH        Ѕu,H        H        H8H        H8H[[ÍWи   	v1A@AWIAVI        AUE1ATUHS1De EtUA\u%}xu}Aօt}Aօt	HA\tA'tA"uA    DDH뢍CEEMtE/[]A\A]A^A_AVI        AUIATAU1S1A9~I| 1HA֍\   D؉[]A\A]A^AWAVAUIATUS1H(|$Ht$H$;\$A   HD$Ht$$H,H        HH9$   Dd$$H)$EtAE "IMI        D} EtmA\u?}xu9}AՅt.}AՅt#A\EIHAFEAFEAFA\tA'tA"uA\IƊE IHAFELtI "MnA HADIAE  H([]A\A]A^A_premature end of file %s unsupported flag: 0x%x Error loading aout kludge
 multiboot_loader loader/i386/multiboot_mbi.c unsupported graphical mode type %d no multiboot header found GRUB 2.02~beta2 --quirk-bad-kludge --quirk-modules-after-kernel filename expected --nounzip you need to load the kernel first premature end of file %s gfxpayload auto %s;auto invalid arch-independent ELF magic invalid arch-dependent ELF magic this ELF file is not of the right type program header at a too high offset segment %d: paddr=0x%lx, memsz=0x%lx, vaddr=0x%lx
 multiboot_loader loader/multiboot.c Error loading phdr %d
 entry point isn't in a segment Error loading shdr %d
 invalid entry point for ELF64 OS requires a console but none is available WARNING: no console will be available to OS %dx%dx%d,%dx%d,auto %dx%d,auto Load a multiboot kernel. multiboot Load a multiboot module. module LICENSE=GPLv3+  net video boot relocator mmap multiboot                                                                                                                        ?                                                                                                    X              6                      T                      _     j      T      s                                                   I                                  }      1                                                            3       2                 P                     ]                     i                                                                                                                                                  D                ]      ,      6    	      z       N                     d                     o                     {                                                                                              r                                                                     6                     E                     V                     b                     n                     ~                                              }                                                                                                  f
            '                     D                     N                     \                     i                     y                                                                                  grub_mod_init grub_mod_fini grub_multiboot_relocator grub_efi_finish_boot_services grub_puts_ grub_multiboot_load grub_multiboot_free_mbi grub_relocator32_boot grub_loader_cmdline_size grub_xasprintf grub_get_multiboot_mmap_count get_virtual_current_address grub_video_set_mode grub_multiboot_add_elfsyms grub_multiboot_set_video_mode grub_memmove grub_strdup grub_relocator_alloc_chunk_align grub_multiboot_make_mbi grub_loader_unset grub_net_network_level_interfaces grub_dl_ref grub_mmap_iterate grub_file_seek grub_multiboot_load_elf grub_create_loader_cmdline grub_multiboot_init_mbi grub_relocator_unload grub_errno grub_memset grub_register_command_prio grub_video_get_driver_id grub_mmap_get_lower grub_mmap_get_upper grub_multiboot_set_console grub_efi_secure_boot grub_unregister_command grub_video_get_palette grub_file_read grub_print_error grub_strcmp grub_malloc grub_file_close grub_file_open grub_real_dprintf grub_multiboot_set_bootdev grub_relocator_new grub_file_filters_enabled grub_multiboot_payload_eip grub_error grub_multiboot_add_module grub_video_get_info_and_fini grub_free grub_dl_unref grub_env_set grub_loader_set grub_env_get grub_multiboot_quirks get_physical_target_address grub_relocator_alloc_chunk_addr (                     J          /           V          $           r          -           ~          '                     ;           n         1                    .                    <                    $                                        9                    $           =         <           I                   Z         9           u         <                                       A                                         $                    
           ,         C           A            0       K            K       Z            \       d         4           ~                                                 $                    $                    %                    8           	                               <           r            x                9                    *                       0                                       @                   8                                             Q                             
                                                                                B                    %                        @                   (                   @       ,                   k            0                   P       -                    ?                    T         (           r         )                                                                                          $                   .                   @                   k            $       {         /                    $                                                                                                                        @                <           	            8        	            0       0	            (       ?	            (       P	                    `	            P       	            P       	            H       	                    	                    	                   	                   	                    
                    
         1           (
            (       1
         $           I
            @       U
         !           o
         1           
                    
         <           
         $           
            8                   8       #         !           /            H       F            P       S            H       \            0       g            0                                       p                A                                       0                    A                    A                                       A                     A           0                   A         9           P         3           h            x       u                             "                    #                    
                    6                    
                                        5                       o                                  ?                    2                    $           *         
           9         
           J            x       W         =           d         $           r         
           |                             #                       x                =                    8                                        
           (                    _                  l         0                                       
                                      9                    3                    7                   7                   7                   A           .            p       J         2           e         
                                                            B                    :                    .           -         $           @            3      Q         9           \         $                       ~                                      L               @                       W                                      \                                   $           #                    4         <                       p                         $            7      .         4           <            &      b         
           o         C                                                            .           +         %           u         8                    1                                        .           c         
           |                                                 B           ;            d      s                                                                 %           F            p       d                  s            7      ~         4                       &               
                    C                       J                  &                  7                          D         .                    8                                         a               1           #                    Q         .                                        B           .         
           A                    e                  o            &      ~            7               4                    $                       3               9                                        $                                      9           *                   >                  O         9           [                  e                    q                                                                                        !                                      W                                   $           %            L      /         >           >         <           L            W      V            L      `         >           l                                               +                       ,                                    E               &                       h                   O                  B                  h                  `                   x                 +           0         ,           :            h       I            `                   \                  y                  y                  \       .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                             @                                          @               -      p      	                    &      2                     o                            5                     8"                                     ;                     8"                                    K                     H"                                    P                      H"                                    Y                      f"      
                                                    p"      `      
   
                 	                      (                                                         H      b                                                                                                                                                              boot/grub/x86_64-efi/search_label.mod                                                               0000600 0001750 0001750 00000011370 13417732100 0016234 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    8          @     @  
 AVAUATIUSHH~ t?fuduGP1	  LH        HHtHH        HuE1UH@8HtHt$HH        8 uH|$HtE1H3H        ЅH|$H        AHH        E1{(    E   {$       H        HHtdH;I        ALHEAHHEt$H} tH        HE HH        4HI        AH}AHAH             Et5H{C$LHtH        H        1H        H             1Et
1H{ H[]A\A]A^AWH        AVAUIATI        USHHH(HtNH}H3AԅW  IHm {$ C(    u&I        H}AH}AHAHE IE E1I        D;c    HCEJ,}     HAHl} ,uE  HCHJ<H        Ѕt}     E ,   }  uwHCJ<H        HItH8I        HuHA׀}  u=E ,7HH        H        Ѐ}  uE ,T$LA׋T$uXAHHH        []A\A]A^A_H        C(   HH}H        ЅC(    H[]A\A]A^A_ATH        IUSHHHHu   RHH3H        1H        HHH        HtLHH        AHD[]A\ATI        UH        SHH@HH|$Ht$T$ HL$(DD$0D$4    D$8    tDH        H|$HD$H        H     Aԃ}  HD$H        u|$4 uH|$Aԃ}  u'|$4 u HH           1H        H@[]A\ÅuH           1H        HЍVE1QHHDMtHp11H8H        С        ZH        PE1H        H        H        H        H        ZH        H8H         %s %s,%s no such device: %s one argument expected Search devices by label. If VARIABLE is specified, the first device found is set to a variable. NAME [VARIABLE] [HINTS] search.fs_label    LICENSE=GPLv3+  search_label                                                                                                   ]      D                                                                                                                 )                      ?                      W                      f                      w                                                                                                                                                                                                                                                '                     1    1             C                     W                      grub_mod_init grub_mod_fini grub_strlen grub_fs_autoload_hook grub_partition_get_name grub_xasprintf grub_device_open grub_strdup grub_partition_iterate grub_errno grub_register_command_prio grub_printf grub_unregister_command grub_strcmp grub_malloc grub_device_close grub_fs_probe grub_error grub_free grub_search_label grub_device_iterate grub_env_set     9                     P                     y                                                                                                                             /                   @                   O                    i                                                                                                                                           ;                    d         	                                                                                         #                    \                    p                                                                                                                                            5                  @                             
                    
                    
                       
                                                                  H                    S                    _                   m            3       w                                                                                                                      .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .modname                                                                                              @                                          @               
                                &      2                                                  5                                                          ;                                                         K                                                         P                                                                                            	   	                 	                      	      d                                                         Y                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/multiboot2.mod                                                                 0000600 0001750 0001750 00000051450 13417732100 0015733 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    O          @     @   H1SH        H        H;H        H    H        H8H        1[U1	   HATH}SH]H0        E  H{Eԉb6EH        ЅAu0H0	   HHH        1H8H        H0HeD[A\]UHAWAVAAUATSH(t-IH        H:H        ЅuAtIH        1H        H: u"H           1H          uI} H        HHu:N  H        H     H        H     H        H     L`@I        MtzjH       1L)H        A   j MH8HuH        ЉXYtUHA׋U   H}H        H}HEH        
1HE    AVHIMLH        ЅAtHADiMt\LHuHH        L9tAHAH        8 u!IU H           1H        ѡ        HA1He[A\A]A^A_]ATAH        UHSH        EH     u![]A\H           1H        H} H        HH   H        H8H        HuA|$H        I        H        H8AH        HH        tEHu HH        Ѕu.H        1H        H        H        HH        H        8 t:H        H8AH        H     H        H8H        []        A\HH        H        HD$    Ht$ЋD$HUH        H        SVHt8 uY[]11H        H        HH        1H        Há        Ht&11HH        ЉHH        ҉Z[]UHAWAVAUATISHHHBHu<  :ELF  z  fze  z[  Bf  DrB,R*D=     ME1AT$,A9f  AD$*AHJ<0?E  DOWH        B
H;vHGEH        ]   H        I        P1RH        AAD$*HuAHLHPH        H8H        AZAA[L  H}H        IAD$*AHLx tYpHH        H  AD$*LHAHATH        AT$*AHcATH9  AD$*AHLxP9s)1LH        AE1A9}?A|$*AL$AHcLw9wDGAA9vO)ȣ        AA9M  A|$0fI  AD$.H        HcHI%  At$ I        HAHLu  AT$0AD$.I        LHHcAAT$0AL$.LuHH9t  ME    A|$09E   A~    EFE   j D1H        Huj EN H8H        _AAX  H}H        H}HEH        AvIHHEH  AVHuHHEAVH9  E~AD$.EI*AT$2At$.  <  H   H#HELF   H9tH          ID$H  >    f1H9  AD$fvH        z  AD$8AT$6Mt$ HLH=   vH        4  ME1`H}H        IAD$6AHLHx  *  AD$6AHLHx HP(H9sH)1LH        AAt$8A9D  AD$6AHJ<0?uLOHW(H        J
H;vHw1EH        ]   H        RI        H        AAD$6HuAHLHH(HPH        H8H        YA^DM1EH        H        f   H        ADMD  HpHH        H  AD$6LHAHIT H        AT$6AHcI;D -  E1A9}OA|$6IL$AHcLHWH9wDILG(I9v8LGB<LH))׺H9ѣ        wA9u'H        AH             A|$<f  AD$:H        HcHI  I        It$(HAHLu  AT$<AD$:I        LHHcAAT$<AL$:LuHH9  ME    hH}H        H}HEH        IvIHHEH  IV HuHHEI;F    M~AD$:EIA|$<9E   I~ uMF Mtj H       1L)H        Huj H8H        MN0AEXZ41DEH        H           H        I        ADuH        8 u>HUH           1H        AT$>At$:LH        С        H           1H        He[A\A]A^A_]UD@SAR        u`Et Y[]H           1H        H        H        H             H                   ։DEt)tGt!AAH        1I        A8ttH        1H        H        H        Há        HtjHH        H        HH         H        H        H        H                    1Z[]UHH        SRЅuuE1H        1H        H        H        E1H        H        1H        H        H        HH        X[]SH        Ѕu,H        H        H8H        H8H[[ÍWи   	v1A@AWIAVI        AUE1ATUHS1De EtUA\u%}xu}Aօt}Aօt	HA\tA'tA"uA    DDH뢍CEEMtE/[]A\A]A^A_AVI        AUIATAU1S1A9~I| 1HA֍\   D؉[]A\A]A^AWAVAUIATUS1H(|$Ht$H$;\$A   HD$Ht$$H,H        HH9$   Dd$$H)$EtAE "IMI        D} EtmA\u?}xu9}AՅt.}AՅt#A\EIHAFEAFEAFA\tA'tA"uA\IƊE IHAFELtI "MnA HADIAE  H([]A\A]A^A_HH8HHpHP1HSH        HH`  ЅtH        H             HT$`1   H        H        1҅   Ht$H|$H        Ѕ   H    @    HT$f@  HPT$(D$PT$PT$PT$ PtRL$,   @ f FHfP v"P1H9vU@|`@y@|a@y @|bH@y!@T$<P T$8P!T$DP"T$@P#T$LP$T$H@&   P%@1҃HH`  [HH        У        HH        HH        AWH        AVAUATIUSHHH|$   HH   Hƺ   H|$H        H~
IHLAHH        LH           1H        >  A?PRtII9v  AWAGAG=*u݅uXLD$(H|$8H        IcIH|$H        HLD$(  HH        С          H        MoD$        11D$    HD$     E1D$    H        A   AU f,  f   $AE   AU1HHAI9   CLv,        HH        CTH           MIA tAuD$   Ht$    t$AUE΀   DT$L$T$ZL$LP   IAEuB        HH        AU H           1H        D  MAuVIM        |$ u+Z  HH        H             /  A@AuE`HL)II)APE+xAEA)ŅuHD$H@@HD$(Dl$(E)AHtL)IcLD$(H        LH8Ht$8H        ЅALD$(MH        H           H        1I        AH        HD  McLD$(LLH|$H        H        LD$(8 APtOL)K<.1L)H        5LHH|$H        ЅAtHH        D   |$ tD$         HH        tMU   DL$DEt$DL$t$E111ҿ   ,HH        H           1H        HH[]A\A]A^A_UHAWAVIAUATI        SHXI<$    I$   I        H        H8H}AHH   E11HHMH}H        AHH        ExUu3HEI9$s
H        H        H   H        xH        H?  H% H        H        H        I        Au I        H        HxH        HHHEH        HH}HuLxAԉIHHkHHEHH]HuH}tPHH1H        E1HtHxp tHHxLIIMH HEjA   j H  HH        HHHHuJ8HMH        H8H        HʹI1L)ZY  H}H        I        H}HEH        ALuIFI~AF   HEH        HBAFH        H0AAF   H        H˃H]H]H{   C   A׋CE1ɃHEH        L E;M H]sR   A@ H{DMLECI@CA@CIcP IpA׋CDMLEAHEM HCHE   AkHuH        C   C    CH        DcH        HH        AALeHH        H0LeI|$AL$A$	   AH        AD$H        AD$        AD$Ed$H        AALeLeA$   AD$   H
AD$H        H
AD$AD$HEH        L MtEI|$p t7LmAE    AD$xI}AEIT$xIt$pAAEHEM$$H        8 tCHEH        H        PH            @   HEPPH}H        ЅAtH        H             HEH            @   LmHHPIEHEH        Ht-AE   AE   I}   HAAEHELmHEHt-AE    HI}HƍQAUPAAEHEH]I        1LEHMH           HsH        A}  CuH        -H        Ѕ H           1H        AEDumHEȉCECH        PSHEA}  HEt    @   HEHE     @   HEAF    HL)A1He[A\A]A^A_]ATH        UH        SH     H        H     H             H        H8H        H     H             H        HHtL#H{HLH        H     H        H     []A\ATIH        USLH        ЉH        HHH                Ht#HHLH        H        1[]A\AWIAVI        AUIATAUH(   SAPAHHt@HhLxLDH        AǉLAHHHCuHH        С           H        MGHk HcDIIHLLH        H        H        HtHHH        HH                        1Z[]A\A]A^A_H         H         H                                                                  filename expected --nounzip you need to load the kernel first premature end of file %s gfxpayload auto %s;auto invalid arch-independent ELF magic invalid arch-dependent ELF magic this ELF file is not of the right type program header at a too high offset segment %d: paddr=0x%lx, memsz=0x%lx, vaddr=0x%lx
 multiboot_loader loader/multiboot.c Error loading phdr %d
 entry point isn't in a segment Error loading shdr %d
 invalid entry point for ELF64 OS requires a console but none is available WARNING: no console will be available to OS %dx%dx%d,%dx%d,auto %dx%d,auto Load a multiboot 2 kernel. multiboot2 Load a multiboot 2 module. module2 premature end of file %s unsupported information tag: 0x%x unsupported tag: 0x%x load address tag without entry address tag Error loading aout kludge
 multiboot_loader loader/multiboot_mbi2.c no multiboot header found GRUB 2.02~beta2 couldn't retrieve memory map  LICENSE=GPLv3+  net video boot relocator mmap acpi multiboot2                                                                                                                        w                        ?                                                        	                      
                                     6                      T                      _     &            s                                                                                               I                                  f      1                            .                     B          3       ]                 {                                                                                                                                                                                        .    -            F    F      ,      a           z       y                                                                                                                                                             r                           2                     J                     a                     p                                                                                                                                                       6"      1                                                 *                  E                     P                     e    &!                                                                                                                                                                                     grub_mod_init grub_mod_fini grub_multiboot_relocator grub_efi_finish_boot_services grub_puts_ grub_multiboot_load grub_efi_system_table grub_multiboot_free_mbi grub_acpi_get_rsdpv1 grub_relocator32_boot grub_loader_cmdline_size grub_xasprintf grub_get_multiboot_mmap_count get_virtual_current_address grub_video_set_mode grub_multiboot_add_elfsyms grub_multiboot_set_video_mode grub_memmove grub_strdup grub_relocator_alloc_chunk_align grub_multiboot_make_mbi grub_loader_unset grub_net_network_level_interfaces grub_dl_ref grub_mmap_iterate grub_file_seek grub_multiboot_load_elf grub_create_loader_cmdline grub_multiboot_init_mbi grub_relocator_unload grub_errno grub_memset grub_register_command_prio grub_video_get_driver_id grub_mmap_get_lower grub_mmap_get_upper grub_multiboot_set_console grub_efi_secure_boot grub_unregister_command grub_video_get_palette grub_file_read grub_print_error grub_strcmp grub_malloc grub_efi_get_memory_map grub_file_close grub_file_open grub_real_dprintf grub_multiboot_set_bootdev grub_relocator_new grub_file_filters_enabled grub_multiboot_payload_eip grub_error grub_acpi_get_rsdpv2 grub_multiboot_add_module grub_video_get_info_and_fini grub_free grub_dl_unref grub_env_set grub_loader_set grub_env_get get_physical_target_address grub_relocator_alloc_chunk_addr       	                                          "          &           5                     B          B           m          <                                                                                                       3                                .                    >                   O         =           h         7                    ;                   ;                   ;                   6                                                   !                    5         F           [         ?                    1                    '                       >                =                    '                                                  !                    2         =           B         7           Z                    g                     |         %                    &                                        :                                                            9                                          P                D                    6                    '                                0                    A                    N         B           [         '           l                    v         !                       W                E                       b                                       g                                    '                                        A                                                             B               8           %            1      K                    X         G           w                             "                    1                    (           ^         <                    4                    "                    1           L                    e                                                 F           $	            o       \	                   	                   	                    	         (           /
                   M
                   \
            B      g
         8           q
            1      
                    
         G           
            U      
            1      
            B               "           -         1                    <                                         l               4                    "           :         1                                        F                               *                    N                  X            1      g            B      q         8                    '                       >                =                                        '                                       =                       (       '                  8         =           D                  N                    Z            0       j            ,                                                         ,                                      b                                    '                       W                C           '         A           5            b       ?            W       I         C           U            0       i            ,       }         .                       7                                    R               )                                          ]                                     x                                             	         .                    /           #                   2                   k            E                  b                  b                  E                                   2                    '                    0                    *                    @                       `                   P                   X                   H       *         4           h         1                    A                                      =                                        "           (         A           3         '           B            @       ~                                @                A                             r            @                A                                      =                       @                A                             l                             G                                                           (               8                    A                    1                    '           1         (           J         #           `         A           ~         <                    -                    A                       @               =                       8       6         4           @            8       p         5                    A                       8                   8                   8                   8                   8                                      X                          
                             >           "                   8            `                                       8                                                *                    4                    H         F           o                               x                   Z                         [            r      y         !                       `                   X                   H                   `                   X                   P                +           E         ,           i                                t                   p                   l                   h                         )         2           5         '           I                    s                                @                   8                   8       0                    >         5           N            j      _         =                       8                                   A                               "                    2             x       A             x       R             t       b                                                                                                                4                        x                 '           	!                   !         $           /!         4           h!                    !         A           !         '           !                   !                   !         $           !                   !                   "                   "                    "                   8"            l       H"            h       X"            p                                                                              /                    Y      (                   0             c       .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                        @       g"                                   @               2                                +                     "      8                              &      @               N                                 3      2               "                                  B                     g&                                     H                     h&                                    X                     x&                                    ]                      x&      #                              f                      &                                                          &                                	                      h-                                                         8O      o                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/serial.mod                                                                     0000600 0001750 0001750 00000034220 13417732100 0015106 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    4          @     @   UHSHH(@ E   E   E   E   E   E   uoK,HwHE1G(W H~LDLH        QHcK$Q1ZHYtCD   {8HsHH        H~HH H@  C@   H]SHH        HHD$   @t$Ѓ{D uHsHHL$HT$H        H~(H[SHH        HHD$   Ѓ{D t0HsHHL$HT$H        H~0HuH|$ tD$H[Ã~HvH        '~vH        FvH           1H        H    1B@    AW1H           H        AVAUATUSH8HL$HH  HE1HD$HPHHT$      H        H} H        HI      H        HI      H        HIE   HDH           1I        AH        H           IEH|$MuHHt$LE|$IEtH        ELH        HHH        H8[]A\A]A^A_H(HH        H   HBHHH(HG  HHHHE1ҍ>E1Ǎ@=  w*1Ҿ   A)A)9ȉDF1A9DFDAT1   USHH{@ H|$D$
 D$D$D$   H{ CD    H        ЋKHA1yqDLS(C,@{$D
D
W	Љ{8 Qt
QQH        L  KHQtL9vCD   C@   H[]A\AUH        AATUH        SHRЋCD~I~L`2	L   KHQ uL9vCDSDtʉSDAŉX[]A\A]SHH        ЋKHQt[SH        HHHHt$fHt$uH           C~vH        *FtH        Fv"H           1HH        [H{    1C@    H[AVAUI        ATI        UH        S1HfEt fE   AVZ<Zu<tH           hH           L1I        AH        LefDuHHEHH        ЅtH        HH        HH   IH?[]A\A]A^1w!H        rH        fxAT1AH        USHHi   fD9$1u.H        s1   HkH        H   HHuUZ<Zuϰ<uǿ   H        HHt1AH        H        HHCuHD$HH        HD$4H        HHCH        fkHHH        HCH[]A\H   HxXHGH@HG8Hx(HGH@H        HH8 tH        H        %HHGHuH        H        HHt$ЅHt$tHH        HH8 tH        H        %HHGHuH        H        HHt$ЅHt$tHATH        I        UHSHHtH{HAԅtHH      H        HH        ЅuEЃ0	v߃A<v1aH}1   H        H        HHtH        HI        HtH{HAԅ^H[]A\AUAATIU1SHXH_; t?Hl$(H{11H        H        H(   H|$(1I        AЃ{ t?Hl$(H{11H        H        H(   H|$(1I        AE~I,$HH        HDH        HHIu%HH           1H          {  H|$Hp    tH{(11H        ЉD${0 tH{811H        ЉD${@ tpH{HH        H        Յu
D$    HH{HH        Յu
D$   *H{HH        Յu
D$   H        T{p tfH{HH        H        ՅuD$    H{HH        Յu
D$     "H           1H          {P tsH{XH        H        Յu
D$    KH{XH        Յu
D$   -H{XH        Յu
D$   H        o{` tb1H{hHH        H        HD$t   H$Ht(:MuHi@B HD$<KuHiD$  HD$ID$Ht$L   H        I9T$   H        8 uLH        H        H        H        H        H        H        LH        H        H            1HX[]A\A]AWI        AVAUATI@   USQAHHt0   AHIuHH        С          @   H        HI        ALk8H        It$1H        Һ0   HCH        LAH{ uHH        Ly   H        HHuLH        H{HA`   AHIu(I        LAH{AHAHA	   H        HAL   HC`   H        LHEALH        H        HC8H        HL`(H   L`XI$   H        I$   HH        H        H1Z[]A\A]A^A_ATUHSHGH@HtL   H        Mt
LLL   Mt
LLHH[]A\ATH        I        UHSH8HtH9oHuAH[]A\SI        I        H        H        1H        H        H        к`   H        H        H        Ӻ0   H        H        H        [H        SH        H        H8HtH        8 t:H        H        H        H        H        [H        H8H              %                            %                                                                                                            P                                                                              u                                      p                                      s                                      w                                      r                                      t                                      b                                      f                                                                      unsupported serial port parity unsupported serial port stop bits number unsupported serial port word length efi%d unsupported serial port speed unsupported serial port parity unsupported serial port stop bits number unsupported serial port word length com%d port%lx port com0 com%ld port%lx serial port `%s' isn't found no odd even unsupported serial port parity on off unsupported serial port flow control 1 2 1.5 unsupported serial port stop bits number vt100 serial_%s Configure serial port. [OPTIONS...] serial unit Set the serial unit. Set the serial port address. speed Set the serial port speed. word Set the serial port word length. parity Set the serial port parity. stop Set the serial port stop bits. base-clock Set the base frequency. rtscts Enable/disable RTS/CTS. on|off                                        o% '?                                                                                                                                                                                                                                               LICENSE=GPLv3+  extcmd terminfo serial                                                                                                                       	                      "                                                          
                                                             2                      @                      V           X       m           	                                   )                                                                                                          9                            8                     R                    h                     v                                                                                                                                              	                                      +                     D    0               W                     k                                                                                                                                                                                                                                       !                     2                     <                     G          g      [                     p                                                                                     grub_mod_init grub_mod_fini grub_terminfo_gotoxy grub_strtoull grub_terminfo_putchar grub_serial_unregister grub_serial_ns8250_add_port grub_ns8250_init grub_ns8250_hw_get_port grub_terminfo_output_register grub_xasprintf grub_memmove grub_terminfo_cls grub_serial_unregister_driver grub_terminfo_setcolorstate grub_terminfo_output_init grub_efiserial_driver grub_snprintf grub_terminfo_setcursor grub_terminfo_getkey grub_unregister_extcmd grub_serial_register grub_terminfo_getwh grub_errno grub_term_outputs_disabled grub_serial_find grub_term_inputs grub_terminfo_input_init grub_ns8250_driver grub_terminfo_getxy grub_efi_locate_handle grub_term_outputs grub_term_inputs_disabled grub_print_error grub_zalloc grub_strcmp grub_malloc grub_get_time_ms grub_efi_open_protocol efi_wrap_3 grub_error grub_list_remove grub_free efi_wrap_7 grub_efiserial_init grub_register_extcmd grub_list_push grub_memcmp efi_wrap_2 grub_strtoul      [          4                     9                                          0                               5         0           f                    x                               H                1                                        '                               -         /           J         +           g         -                       l                                                                            *                                        3           /                                R      ^         .                                      .                             ?            R      d            r       {                                                                  1                       @                                              3            P      N                   b                    o         %                       &               *                                           P                  @                   H       '            P      C                   v         -                                                          3                    %                       &                          .         #           A         )           K         7           d         #           n         7                    (                    !                    7                    (                    7                              	         ,           ;	            
      H	         8           	         :           	                    	                   	         ,           
         :           
                  '
                    G
         :           S
                  l
                    
                  
         "           
            #      
         1           
         :                    :           %            @      /         ,           M            C      k            G                  L                  k               ,                       n                  r               1                                      ,           /                  M                  g                                                                    %                       h                        %            P       /                    ;                   E            ,      Q            P       [                  j                  t                  ~            h               -                    3                                                                                         $                    9                  S         3           n         +                    3                    3                       P                   p                                  7           /                  S                    j            ,      v                           2                                                  %                   /                  9                  C                    O            	      Y                  c         6           t            P       ~            p                  `                                                                        5                                                              h               2                                                             P       &            P       3            `      @                                                                                                            
                        0            :      @            @      X            [      h            `                                                                                                                                                                  
                    [                                              0             <      8                   @                   `                   h                     x                                                    &                                                                                                            p                                   $                                                  .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                           @       J                                   @               h!      H                          +                           H                             &      @               0                                3      2                                                 G                                                         B      @               x2                                M                                                         ]                                                         b                                                           k                      0                                                          8                                	                                                                               X4      t                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/nativedisk.mod                                                                 0000600 0001750 0001750 00000014670 13417732100 0015777 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   AUH        ATAUHSQH    HH   H0Hu5H        H        @;H        1I        A   HFHwU   H  u  t?Eu:LH        H        \   H        1I        A   HH        I        HIuHAԡ        \H@@Hu8HAH        8 uIUH           1H        HHЅuH}  tHA1Z[]A\A]AWIAVAUATUSHXt$HD$     uI        D$   H        H        HHu,H        H           1H          8(IuHǾ)   H        LpHLDHc|$H        HHI[  11Ht$ H        Ӆ>  HH        H        : tH        11Ht$(HӅLL$ tLH          1LD$(H        H           H        1I        A;\$\$}@IH$H        L(M   Iu H<$H        Ѕz  MmP19l$~7IHt)HC0HtHH        HCPHH        HHD$(HuH|$  tiHT$ HHD$8H        HH    Lt$@D$H1HHT$0Ht$0D$LH        H        HH        H|$ H        H|$(1s  I1HH        H        HHt.HH$H        H$IH        HMuV1H        H|$ H        H|$(H        9\$              I    H2IE@HD$HH        HH$H        u
LuHL$HT$LH4$H        H;D$HL$tLH<$H        2LHD$Ht$H<$H        HITIHtH@8    I<HHX[]A\A]A^A_t1t*D@DJH ADB GAAF9uHHȍHP FrJ F)AT   H        UHSHHHt$Ѕt(H        8u     H        1      1LL$IH        H        H        I        AHsHtdH|$H        ЅuOHSH        HH        IHH        H        LH        C   H3Ht5H|$H        Ѕu HH        H        C   Ct	1{ H[]A\H        PE1H        H        H        H        H        ZH        H8H        Skipping non-disk
 nativedisk commands/nativedisk.c Skipping native disk %s
 %s does not support UUIDs prefix variable `%s' isn't set uuid_prefix = %s, uuid_root = %s
 %s/x86_64-efi/%s.mod checking %s: %s
 (%s)/%s root Switch to native disk drivers. If no modules are specified default set (pata,ahci,usbms,ohci,uhci,ehci) is used [MODULE1 MODULE2 ...] pata ahci usbms ohci uhci ehci                                                        LICENSE=GPLv3+  nativedisk                                                                                                                                 D            `                                                                               3                      B                      S                      m                      x                                                                                                                                                                                                                                                /                     H                     Z                     g                     u                                                                                                          grub_mod_init grub_mod_fini grub_fs_autoload_hook grub_xasprintf grub_device_open grub_file_get_device_name grub_errno grub_register_command_prio grub_dl_unload grub_unregister_command grub_file_read grub_print_error grub_strcmp grub_strchr grub_malloc grub_file_close grub_file_open grub_real_dprintf grub_dl_load_core_noinit grub_device_close grub_dl_head grub_fs_probe grub_error grub_free grub_device_iterate grub_env_set grub_env_get                      6                     @                    M                    Y                                  4                                                                                                                                                       #            M       4                                                    g                !                       g                   n                                                                   4                    K                    W                    f                                                                                                                                                             ?                    P                             	                                                          	                                                           
           '                    :                    P                    _                    p                                                                                                                        /                                                                                0                   :                   D                   N                    i            y      }         
                                          g                                                            y                                                          K      ,                   6            c      @                   J                    V                    b                    o                                  a                   f                   k                   q                    v      (             {       .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .modname                                                                                         @       y                                   @               x      P      	                    &      2                                                 :                     @	      0                              5      @                            	                    @                     p	                                    P                     	                                    U                      	                                                          	      0      
   	                 	                                                                               X      ^                                                                                                      boot/grub/x86_64-efi/usbserial_pl2303.mod                                                           0000600 0001750 0001750 00000007310 13417732100 0016623 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    H          @     @   f{u%f
#uAH        H        E1UE1A           HAULmATI        SHH HHAUAH{HE1H$    E1     @   AH{HE1L,$A           AH{HE1L,$A           AH{HE1L,$A           AH{HE1H$    A        @   AH{HE1L,$A           AH{HE1L,$A           AH{HE1H$    1A      @   AH{HE1H$    E1      @   AH{HE1H$    AD         @   AH{HE1H$    E1      @   AH{HE1H$    E1@   	      AԋC,^_uEE݋C(truE
E EC$E11A       !   EߋC EPHEH{HPAH{HE1H$    E1   "   !   Aԃ{8H{H   H$    @   E1E1AAaAC@   ZYHe[A\A]]SHH@ @t$uH        H   H{HHL$   H        H[H(IHDH|$H           1D9LtHHuH        7xvH        %xH        wHQv!H           1H        H(HIx    1A@@    H(S@ HuH        H1H        [H        H        H        PH        ZH        H                  `	    %   K          unsupported serial port speed unsupported serial port parity unsupported serial port stop bits number unsupported serial port word length                                                                          LICENSE=GPLv3+ serial usb usbserial_common usbserial_pl2303                                                                                                                                                  .                                                        	                      
                                       3                      W                      l                                                                                                                                     grub_mod_init grub_mod_fini grub_usbserial_attach grub_usb_register_attach_hook_class grub_usb_control_msg grub_usb_unregister_attach_hook_class grub_serial_unregister_driver grub_usbserial_fini grub_usbserial_fetch grub_error grub_usb_bulk_write                                            V                                 0                           A                    e                    w                               =                   f                                       0                                                                                       %                    2                    <                                                       -      (                   0                   8                      .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @       F                                   @                                               &                                                         .      2                                                  B                     @      @                              =      @               `
      x                           H                                                         X                                                          ]                                                          f                                                                                                                	                                                                                
      o                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/net.mod                                                                        0000600 0001750 0001750 00000412200 13417732100 0014413 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   H        HH        HHEPH        HHHpHxQ1Z1ATI        H        I<$UH        SHHHI$H[]A\AVH        AUI        ATUSHH   H        HPHHtOII4$HtH        1IAII        I<$Ht	AIHH        H        HPHHtOII4$HtH        1IAII        I<$Ht	AIHH        H[x []A\A]1A^ATH        I        USHHtBH        HHHt%HH        Hsh1AHH        H[x[]1A\AVH        I        AUATUSH(HtmH]pHt^HC H{HItFHC H{PHIt"HLH3H        1I        ALAMtLAH[0Hmx[]A\A]1A^AUH        I        ATIUSWH(HtEH]pHt6LH;AՅu#HLH        H        Y[]A\A]H[0HmxZ[]A\1A]H        AVH        IAUIATIUHSLHHT$Ѕ   H|$A    </uq1HHt$H        H        :       HT$:        I}   )Ht$ȉD$H              D$I}   Ht$H           HT$HLH        ЅttH|$A   </uG1HHt$H        H        : u=<w9HT$: u/EE Ht   uEE Ht    1 LH            1H        H[]A\A]A^UH        H        SHHtGHH        1H        HHtH1HD$HH        HD$1H[]UH        H        SHHtGHH        1H        HHtH1HD$HH        HD$1H[]AWH        AVAUI        ATIUSHH(H   H]pH   H3H        1I        AI4$IHAօuHC H{H@ELI        AH3H        1AI4$HHD$AօHT$uHC H{H H[]A\A]A^A_HAH[0XHmxBH1[]A\A]A^A_AVH           H        AUATUSHH@H     H        ЅuLc*H        HH        ЅuH        L H        A   G,   HH        HtIL`I)HH        IH        L HMu"H            1H        l  E1D$    HL$HT$ Ht$LH        ЅtH           |$ H        tC   Ht$ H|$H        L0MtcH        Ht$LPHuKMvxۺ   Ht$H|$H        L0Mt H        Ht$LPHuMvx1HH        u0H        HH        uHH              IuJ   HH        H        Ѕ   H        H        HH@(      Ius   HH        I        AՅuH        H        -   HH        AՅu!H        H        HH@(    "HH           1H        kH        HPpHxP   H        HHt;LH        HHuHH        H        HC@H1H@[]A\A]A^AVH        Ih   AUATIUSHHtQh   LHI        AHCLHhH        HEHCH        H@Hx uHա        pH        LHLHpHxD@(AQH        о   HH        HIuHCH@Hx땺h   HLAL1[]A\A]A^H uH        &   1H        1H   H        HD$    HuH           H        <HH8HT$H        Ht$HH           1H        1HD$HAWH        A (  AVI (  AUATE1USHQIHtQH        H (  MLFLLLHpHxAQHHH        LHIH)H        LLZ[]A\A]A^A_ATIUHSHGHHwH@H@8H9vH)Rs_H        HHHpHxQH        HSLHHRpHxD@(HJHAQHsHtHH        H        HMHPpHxHBH[]A\AWAVAUIATUSH        H(Ht$HT$:   HIN  LH        H5     H        LH        Ѕ   MH        M)I~HHuH(H        []A\A]A^A_LLHI        H\$AID$BD5  /   H$HH        HILLD$uAMH        H        g   H        1I        AAI|$IL+,$Iv^A|$[uVI}A|<]uJHHu)H        HH        H([]A\A]A^A_IUIt$HABD+ *HL$I}AHHHL$tLH4$HB+ LI        AHIu H        HH        HsHǾ/   H        H     HHH        H        1HL$LHAHT$HHHH        H        LHH(MH        []A\A]A^A_H        ^   H        1I        AA$ XAVAAUIATIUHSH_pHtA$9C   H[08   H        HLH        HA$HkCHEpHC0A<$ tH        
H        HC H]pHC H{DLP uBH        &   H        1#H;H        LH        HH[]A\A]A^ATUSH@$    D$    tH        >H        HHI        HtHuH{hAԅt*H[xH           1H        ҉   HH}LD$HT$Ht$H        Ѕud$D$(H        tH|$,   Ht$H|$,Ht$   ЋL$HT$(Hu HH        1H        DH@[]A\AWAVIAUIATUHSH        H8HD$H        HL$HT$H        H@`H   H        H2  HD$HH        HH  H  H9tH[xH;k(uLc0
H;k8uLc@M  Ld$HH1fMUf$M    u%HD$H}LLH        HD$   u9HuHu   LI        AHuH|$    AD$    8uPHpHu   LH        D$-@D$, D$   Hsh   HT$HH        ЊU u
}  D<$LIl$h}    IE     H  I      fUu fBH9rftzf;uh$HxH        Ћ$IHuHH        HH$H$LLLH        A LH        HH)iIt$hH|$   H        HD$-@D$, D$      
  	  H        D    1I        AH        HH$1AH`  I   H        HIE t HǾ/   H        HuIE   H$H|$   H        H        ID$hHpIt$hH|$    H$D$    Hsh   HT$HH        H   H0H        H        H        H(I        H   H]pH   H3H        1AH        I1H$H        HI        I        LALAH3H        1AI1H        H$HLALAH[0dHmxNH8[]A\A]A^A_UH        SQH8H        H   HxH        ЊHfp   u}HXH        1H        /  H        II        H        AѺ   H        HՅ   t3   H        H1҅utHU1҉Z[]H        QH8H        HtCHxH        ЊHfpuux$utH1ZAW1H           AVAUATUSH        HhHL$PHHD$H\$0  HD$$    HD$PHPHHT$P2  H;H        H     H        H;I        AHI     H        H;I        AH        HD$(H;AIH        M     t   H        LAHD$	HD$    H        H;AHH        H     t   H        HAHD$	HD$    H        H;AIH        M     t#   H        LH        H1HT$8   H        HIHT$8u<H|$H        H        H8H	  HoxHH        Ht$$H        IV`M~H        MfInHIHD$(MnXIFHD$IF HD$IFPH        IFx1IFhLIFp    H        HD$$1HL$XH           HD$0HI*  HHD$XHPHHT$X  H;H        H   HE1H        HHH        Ѐ8u/Pu @f@ u @A   f@ H        L0I        M{  I>H        HHAׅtMvxպ   H        H;H        HH        tEH34  Iv8IF@HHLH        H        H|$H        HH   HCD$L    LD$L      H        HH8Ht6LChH        H          H        1I        AHCHtZD$X    LD$X      HH8Ht6LChH        H          H        1I        AH[x#HH        Iv(IF0H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        1H        H        1H        H        H        1H        H        H        H        H        H        H        1H        H        Hh   []A\A]A^A_AWH        AVI        AUATUSH        HH        L M   Il$pHtxHu H        1AH        I1HL$1HI        LLAHu H        1AI11HL$HLLAHm0Md$xkH        11H        H        11H        H        11H        H        11H        H        11H        H        H        H        H     H        H     HH        []A\A]A^A_H         H         SHzPHHtH        HCHCP    HC    HC@    H@H@8    1[SHHHrPHt[HtVMtQHBHR@H@H@8I< H9vH)It+HLLD$HH        HCLD$H@L@8L1H[AWAVAUI        ATIUHLSH   H        Lt$pHT$DD$H$   LL$H$   HX`H        LH$   H        H$   H        H$   H        H$   H        H$   H        LEH        ЅHL$LLI        tHD$pH        8 t
H        1AHItIHH        H| IH        HItILM11sLH        С        l  MtV1I@7I)ŅHG*  AAA  A҉?D	҃     HMuM)LI        IMfCG  A1|$ L|$8D$x   Ǆ$       LL$@HǄ$       Lt$PH        HD$@          I        E1D$0HD$0HD$pH$   H$   H      H{PHD$HH          AHI   H|$8AL  uh@x@Y@u      @u   @Hǃul   usIw  vK  v>  II
ff fAHff fAHHH?   fAII12   (H}HT$@HI        AHuI        IHt$@HD$H        H{pH|$8AHT$H           1H          A}  uH}(HH        HD$,Ǆ$       HǄ$       Ǆ$       HǄ$       E1H$   D$,    LL$XHD$X    H{PH              AHIt/H{pHt$@H        H|$8ALH        &H$   HD$`    H} HT$XHHD$hH          AHIuI        MH{pHt$XH        Ht$@H{pH|$8ADH           1H        y  A}  uH}(HH        H$   (   H$   I        HtH{HAH{pHt$XAH{pHt$@H        AH|$8AԃH        u"H        HT$Hƿ   1   H        ЉHƿ)   1   HD$HtkH     1I        9$   ~OH$   IH        IHJ<(AօuH$   
   1J|(H        HL$HH$   H        HtH{HH{pHt$XH{pHt$@H|$8A1H   []A\A]A^A_AWAVAUATIUDSHHxHBHt$ HT$H@H8H        ЅH        HCt7HT$: u-H@H        H        HH        HD+H@H        H        HH        HD1HIttH        H        LH        H        LH        I        HCE1I|$ A   H@HPH0AՅ            HCE1I|$ LL$H@HPH0AՅ  H|$H        Hl$IH        M|$ HL``u"H        &   1H        +  MI|$PLL$0E1H              H        HD$HLl$hHD$H    D$P    HD$X    HT$0HD$@H      l$`HD$8H        I   LH        HuH        ?HD$I|$pH        Ht$0HT$H           1H        J: uHT$I(LH        HT$܋D$`IH)I|$pHt$0H        HD$LsPCH    HC@HCH@H@8    1Hx[]A\A]A^A_AU   IATUH        S1HhLg H|$HՅD$H   D$L  H\$0   IuD$PIHD$   HL$   H        H~HH      H9uH        1H        HtH        1H           Hl$   HH        HfD$   Hl$X"D$P    1HD$0fD$:  H\$XHT$HI|$LH        H      H9t0Ht+H           1H        H        Hh[]A\A]SHBHHB    HB@    H@H@8    HzPHtH        HCP    1[AUATUHSH(tH_@H_0LchA<$ u3HcH{HH        HtH        1H        A|$ H           LmHD$      HHE  II}HL$   LH        H  It$   HH        Ѕ      H|$HH        H{X1HT$   LmHD$      HH   II}HL$   LH        Hu~It$   HH        Ѕtp   HHI        AԺ   H|$HuAH{XHL$HHH        HtH        1H        HH        H([]A\A]AWAVAUE1ATIUSH8?[Ht$H|$uHAH|$HD$8:ux:t1  HHD$1H|$?:uHǉH|$Q   Ht$H        H        : t    +H  uHcfDT HD$8:uHHD$Ã~	nI        tEHc)LtD )HcHcLHH|l A׺   1L)H        HcHк   Ht$ H|$AEtHD$8]uHHD$Mt	HD$I$   H8[]A\A]A^A_UHAWIAVAUATSHHHHE    tLg@Lg0ID$hLux HCH@t>H8HUHuH        Ѕt_HE8 uV   HuLH        <H E1H        HEHM
   HuH}C.IHEIHMuPE11I|$(LM   j LH        j AWAVj H0HtH           1H        )HECH    HCP    HC@HCH@H@8    1He[A\A]A^A_]UHAWAVAUATMSHHHHMtLo@Lo0HsPHCLeHH@t(Hp8LH}H        HCH@L`8  Hx8 H           IUhLuz t>H8HUHuH        Ѕt_HE8 uV   HuLH        <H E1H        HEHM
   HuH}C>IHEIHMuRE1LMI}(   Lj HMj HCH@pH        AVj H}H0H;{@tH        &      H      H9uzH        HIH           tnPI}(E1LML   j Lj HCH@pH        AVj H0HugLLH}H        5E1Ht-H           H        1H        1+HCMH@L`8tL{PLLH        He[A\A]A^A_]AUI        ATUH   SHHD$   AHHto1H}IHL$HI        AH      H9u.HH        H|$AH}HIHL$1HAHHtH        1HH[]A\A]ATH        IUHSHHtdpp19~LHkE$HHx9I	t0D!9u)H]pHt { uHH        HH[0HHH        1[]A\PHGI      HH8H        HZPHGI      HH8H        HZUH        H   SHHD$   HHt4H}IHL$   HH        HHtH        1HH[]AULnATIUSHQuRHH        HHt*HpH{   H        HH        CC	C
C ID$M      HH8H        Z[]HA\A]AWH        IAVAAUATD$UAMcSLHHHtQLII        D)D9},M LLD$H        L1IHALD$BD# H1H[]A\A]A^A_UH        SQHHHt*HpHxDH        HHH        H1Z[]UH        HATSH   HIt6PCH           LI        PDK1DCAZYHeL[A\]AWH        AVAUATIUSH8HHH  @pxH        HHHtE1E1  HH          x uL H@0HuAFLD$I~D$H        HD$ALD$(H        Av1H$I~LD$΅t!1AEAAD9       )L$,LD$ H        Ѓ|$( HD$LD$ L$,@uo|$    |$(    II        H<$AH|$AH|$AD9mp   MkID$pE1Lux Pc|$ uMtIcEwIt$hL<H        H$Y@jIcEwIt$hL<LD$H$H        +HIcEwIt$hL<LD$H$H        1I        AIEIcH        HH    H1H8[]A\A]A^A_UH        SQHHHt&HH        HHH        H1Z[]ATIUHS1HD$    H|$1Ht$H|$H        H        : t    LD$A8.t
uD$3H t1`L$	L$tA8.uILD$uD$   Ht$LȉD$H        HtHD$HHE    H[]A\UH        SQHHHE     H        IHH¿!   1H  fEI@AtiD $A  wI   H
1 $  @r?΀@r΃?ɀ?J΀@r	?LH1   wD
F  wA?HAɀJDJVD (A  vDD $A  w?H.AA?A?AɀAɀDJDJHIH         HH1Z[]AUI        ATI        UH   SHHD$   A1HH}IHL$HAH      H9u.HH        H|$AH}HIHL$1HAHHtH        1HH[]A\A]AWH        AVAUATIUHSQHH   DPxE1   HA@   E9~xIk!H   DJ Et^A@M$I\$@LrLzw_DHD)H1L!L9u1H!L9u)H]pHt { tHH        H2H[0IHH        1HD)HHHZ[]A\A]A^A_PHGI      HH8H        HZPHGI      HH8H        HZUH        H   SHHD$   HHt4H}IHL$   HH        HHtH        1HH[]ATLfUHSHu0HH        HtPHH        SC@HEM      HH8H        [H]A\UH        SQHHHt*HpHxDH        HHH        H1Z[]AVH        I(   AUATUSHHI   HE11fCfA   DftfEt:HH        I           H|$1AHHt$H        H|$H        HÃ   Du:@Hu:C0HIIV L1H[]A\A]A^AWH        AVAUATIUSH(HHH   @xxH        HHHtHD$    E1eHH          x tL H@0HuM   M   H   Hu~H|$I        AH|$AHD$D$9ExC  Lkt$!H        L   LI~HD$H        MHD$E1MNIvI~ID$p]MyHH      E}H9IcIt$hu)Hu$A~ @uL,HT$@   H           L,HT$AN H        lHuHt+IcE}It$hL,LD$AN HT$H        7Mu	MIcE}It$hL,AN LD$HT$H        1I        AIE EIcH        HH    H1H([]A\A]A^A_UH        SQHHHt&HH        HHH        H1Z[]AWAVAUE1ATIUSH8?[Ht$H|$uHAH|$HD$8:ux:t1  HHD$1H|$?:uHǉH|$Q   Ht$H        H        : t    +H  uHcfDT HD$8:uHHD$Ã~	nI        tEHc)LtD )HcHcLHH|l A׺   1L)H        HcHк   Ht$ H|$AEtHD$8]uHHD$Mt	HD$I$   H8[]A\A]A^A_UH        SQHHHE     H        IHH¿!   1H  fEI@AtiD $A  wI   H
1 $  @r?΀@r΃?ɀ?J΀@r	?LH1   wD
F  wA?HAɀJDJVD (A  vDD $A  w?H.AA?A?AɀAɀDJDJHIH         HH1Z[]AWH        AVAUATUSHH  H(HD$Tt$HT$ HD$(H0  |$    1H   H|$hI        H        H        п   Ǆ$      I        AHD$0 7HT$hHD$0@HD$0@HD$0@HD$0@HuPHD$0H$   H~IH|$0AMLd$t4DH        iHD$ H}hH0H        ЅG  &HuP1H~HtH        %HEPH$   HH8HtH        1H          H]pHt{ tH[0H$      H|$(I        AH$,  H|$X   AHuNHuhH        1H        IHHD$P       HT$PH        LHAHC H{   Ht$PP    H$(  H|$@I        AHC H{Ht$@P(H$8  LuPE1D$8    HL$8HHD$I~@LH        H      H9   |$8HD$HHI   II~@HL$8HT$LH        Hu_L$8M9tTI:uDRu<t8   HD$Ht/I6   HHD$HALAHL$HILA1HHD$8tHC H{Ht$8P0HmxHH  1[]A\A]A^A_AWH        AVAUATUSH   HHD$lt$HT$D$    HD$H_  |$ H        Lh`  	   I        Af  f@ If@ ;f@ H$   HD$0HD$0Hs`D$P    D$T<   H$   D$HǄ$       Ǆ$      fǄ$    HǄ$       $   HD$HƄ$    Ƅ$    D$H   H$   D$L   H        H~HǄ$       ILI        AMt4DH        zHD$H{hH0H        Ѕ	  Hs`H        H~HtH        .HC`1HT$8HH8H        HtH        1H          HkpHt}tHm0HD$@   H|$HpH        HD$}@D$| D$h   uFHshH        1H        IHH߹   HT$hH        LHAHE H}   Ht$hP Hs`HD$@E1D$,    HL$,I        HPH~@AH      H9   |$,   HAHs`IHD$@MHL$,HPH~@AHuT$,1MtqLAi9v8I4Hf> uHH|$X   H        HE H}Ht$XP0MtLAI}HHt$8I        AI}HHt$@AH[xD$E1HiH   1[]A\A]A^A_HHHP~ tHHGHLHGHHHHtHWHPH    HG    11H        HH        HHE1SH        HHt${P tHCH@ HtHCP    H1[1H        HGHHHWHHuHWHHHGHuHWHBH        ATI        H        I<$UH        SHHHI$H[]A\AUIATIU1S1HH|$1Ht$H|$H        H        : t    XHT$
.tu-H u<މ	t.u&HHT$uMA] tHD$HI$1   H[]A\A]AWAVIAUE1ATIUSH(?[H|$uHAH|$HD$8:ux:t1!  HHD$1H|$?:uHǉH|$Q   Ht$H        H        : t    +H  uHcfDTHD$8:uHHD$Ã~	ntNHc)L|D)H        HcHcLHH|lк   1L)H        HcHк   Ht$LH        EtHD$8]uHHD$Mt	HD$I$   H([]A\A]A^A_UHH        H        SQHtDHH        1H        HHtHHH        HH        Z[1]UH        H        SHHtGHH        1H        HHtH1HD$HH        HD$1H[]UHH        H        SQHtDHH        1H        HHtHHH        HH        Z[1]UH        H        SHHtGHH        1H        HHtH1HD$HH        HD$1H[]AVI        AUATIUHSLH   1LCH        H        O  H        AH{H        HtEHH        1H        H        W  H        I        A1KH        8u     H;I        HAL9s   H{AHSL) &[]A\A]A^UH        SHQHCH@HP Ht HzHCH@Hx H        H@HP0HCH@HxH        Z[1]AVH        AUIh   ATUHSHHQ  h   LHI        AHCHH@H@     HCH@H@(    HCLpH        IFHCH@Hx    H@HHP tZI        HCH@HP Ht!HzAHCH@Hx H        HxI        AHAԉ      HH        HHumH        HCH@HP Ht HzHCH@Hx H        H@HH        P0HCH@HxHա        h   HLAH        H1[]A\A]A^E1H        H uH        &   1H        1AUATUSHQL    P Iu/HGH@HtЅtH                CP   1I        
~MtA<$    HCHP0HuH        HCXrHHAH        D EtL1I        H        H        _  H        I        AH             dXZ[]A\A]H        X[]A\A]UH        H        SQHHt,HSXH9rKTHH9r1HH        HZ[]H        tH           1H        AVH        I        AUIATUHSHHt>H{0Iu Aօu%HI        HE H{0AHAH}  t
Hm H] []A\A]1A^tH           1H        VATH        I        UHSHHtH{Hu Aԅt&HH           []A\1H        ChtH           H        HH        H{H[]1A\AW   H        H        AVAUATUHSHЅuH]*H        HH        ЅuH        HA   I        G,   HH        HtIHXI)HH        IH        HIHH           :   HI        AHH$  [   HAHHD$tz]   HAHHH        t4E1x:uCHx1
   H        =  A~"H            1H          H|$H)HsQ  H$:   LpLAHH        tsHH        ЍxIH        HcHIv  Mc [HxLHH        CD7]CD7 E1   HT$҅HT$tIA>@uA>-t1Iƹ   L$1
   LH        ЋL$t7I       HHL9vQH        H           1L/HHy'H        H           1H  AH4$HH)H        IHH        E1IMH  E1H        H        HH   DD$HyLH$LӅH$DD$uVHAB<( uKP   H        HH$   HHH        DpL8HH@H@8    @H       H	wEuqIukH           LӅH        t"   LH        Ӆu1H        H        H        A        HH           1H        LH        1H[]A\A]A^A_ATH        USHH8HtH/1I        HtH9_uAHtHE 1HH݃{P tHCH@ HtHCP    HH        []A\ATLfH        UHSHLH HD$    HT$ЅtHD$8 u      HT$LHH        ЅtHD$8 u   m11A   LD$HL$HH        ЅuHH|$ uHH            H        ѹ   HHt$H        H|$1H []A\ATLfH        UHSHLHHT$ЅtfH|$   </uHH1Ht$H        ЉCH        8 uHD$8    H             u	C    {HT$LHH        ЅtdH|$   </uDH1Ht$H        ЉCH        8 u
HD$8 tH             uC   1 HH            1H        H[]A\AWHI   AVAUATUSH8H<$Ht$pH|$HHt$pDD$pL$   H        H1HtHE1A    D$A   ID;T$M  l$Ld$LH        HH1IH   EtHz8    D9B   AtAt$   z1ɅtD)z1KJ(@@   )ωLH1D)ωLHHHLZIM1Iu?Hz HH1Hu0Ht(D;@r%w AtAuH(9J(H9JHOHH(HuH        "   Mx@ taEHPHuH<$Hֹ   H|$Hֹ   D@HLXXAH        !   1H8H        []A\A]A^A_H@HIH81[]A\A]A^A_UHAWAVAUATISHH  r,I        L  LOA0   I        I'HeHH        H        [A\A]A^A_]LDAHLMHH           1AHAHALMuMd$A0   IDLHHH           1AHH        HAuHeHAH           1[A\A]A^A_]I        AGR(   HI        AԉAAPEH        1AY^He[A\A]A^A_]HeHMH        (   1[A\A]A^A_]AAVH        AUATUH        SHPHLt$He  1Hs0H        DkI        A   rXA   Hs   LD$   H        Ht$(H|$H        ЋS(Ht$(H        1vH        H        H        H1MCDKH        ȉD1 H        H        DH1Ճ{@ t7H        1AH{HHt$(H        H|$(H        HCHH        Hp1AH        1AHHP1[]A\A]A^AVAUIATUS@oH@ v< oH        H        H        H1މ[]A\A]A^H        H        M@1LcC9s5LLLL)H        L1I        AHI[]A\A]A^ATH        I        UH        SH   HHtCH{@Ht$0AH{ Ht$HsHL$HT$0H        1I        AHHĐ   1[]A\SH        H`HHt7H{ HH        HsHH        1H        HH`1[AWH        EAVIAUATI   UHSHxH$HH  HL`Hk@L` I            LAպ(   HH4$AHHt$H        I        D{hLsHCp    HCx    1HsH        AHHL  t:u _HHL$HHt$I        I        I        A1HH        AH        HH$HALHt$H        1HsH        HL$H$HHItbt:u _HHt$HA1H        HAHAHAHC@LH        HCH HHtHXHHH        1Hx[]A\A]A^A_SH        H Ht$HT$HL$D$HHt@HD$HL$HT$Ht$H        HuH$HH        H$1H [USAP/;.rYw\_:^rOwR v.H        H        Hǉ1H        YHH[]H           Z[]S;rbwetreu)HH   HH   [H        H        H        ЉHH        1	   1[AUI        ATIUHS1QH> u10HHE 8uHxLAՅu	HHE HPH P  Z[]A\A]AUIH        ATIHwxUSHLAPHt'   Y[]A\LHx((   A]H        H{x u P  H        HCxHkkpPL(   I        HkxH}(E    Aպ    H}LAHCpHP1H   HEHCpX[]A\A]Q>Hu~t"HwHH        HxH   ZAVAUATIUHSHӃu~   )t%   HFH=  u>H       H9Vu.ID$H{@ ID$P$H        S   HH8H=   uO   ID$@$C3C3CHEHHCHEHHCHEHHC	HEHȈC
/ID$I        HMHpxAHtHp(
   HE1   U tr6uBHLH        HLH        ЅA   6H        &   X[]A\A]A^H        &   1H        It$HHxAHtHp(
   H%H           []A\A]A^1H        []A\DA]A^AWAVI        AUATIUSHH(HAHxfH        HI=  S
H      $   HD$  H	CH0H	CH(H	CHH	C	HH	CH8H	H        H(HHT$Ht>L9eu2H}@HH        ЅuH} HH        Ѕ   Hm It$LI        AI|$ HHH        Ѕt.HH        AHHHH        HAHHH        AE1HHLLH        1HH([]A\A]A^A_HH   HH        1fHHuHT$
u
Hʃu1r	ȃuHATUHS    AuH(H        ЃA   h   H        HHt41HuH        H        HHC0uHH        С        JHu(H{C      H        Dc(C@    HHkHH        H        1[]A\AU1IATUSQ    o(Au,A   y"   @t       A   A   h   H        HHt41IuH        H        HHC0uHH        С        E    C   D)DcC@    LkHH!H        ȉCH        1Z[]A\A]ATUSH tH        =H        HHI        HtHuH{Aԅt$HH           1H        pH}HH        ЅuYDCHAtH           AHK HHH} H        HtHǃH        С        H []A\ATH        Ih   UHSHHt'LH        HHC0uHH        С        6H{   Ht$ H        C@    HkHHH        1[]A\UHH        h   SQHHt'HH        HHC0uHH        С        ?H{   Ht$ C@   H{HHt$@H        HH        1Z[]UHAVAUAATSH@"H           1H          LeHHzH        I        LH{H        AօuYAtSLmH{H        LЅ   H    LHH H        HLH;H@pH        L(MHStI}HAօt%Mm H           1H        'H    LHH        LH;H He[A\A]A^]AV1IHHH        AUATIH        USHHt<t:u _HI|$H        I        HHuHAա        iLHLH        BD%  HHH        AH        1HH        HH        HAHAD[]A\A]A^AWI        AVI        AUAATUHSQAIADL)H9s+Hu H        HHtHHAH}  tZ[]A\A]A^A_H        AWAVE1AUE1ATIUHSH(HGHt$Ht$HXHCLHD$HC H   LpHEMFM+FH@M9MFL@8H        M)MMHtHD11H|$ tIvLH|$H        L|$IVIFH)I9u!LH        H{ H        N:MFMtE1EHCH@8HtnHgHCH@8HtHЃ{H uOAHt$H        Akǐ  A(HSH           1H        HLH([]A\A]A^A_AVAUIATIUSHGHHoH@HP8H9  HHvDLA(Mt%H@ HHtHxH HwH+wHH9rH)   HHA   HA(I        Ht
H   HCH@HP Ht!HzAHCH@Hx H        H@HP0HCHH@H@     HCH@H@(    HCH@H@8    HCH@@H    HCH@HPHpR u>H1HH        С        uHLL[]A\A]A^H        []A\A]A^AWH        AVAUATUH        SH8Ht$HT$HD$    Ht%|$ HD$HD$H{H0ՅtHHD$H        H,    HHIHHtMtH        D$    HHLH        Hӡ        P  |$ ~)HD$H{H0H        ЅtHHud  Dl$Ls HH        LIHO<,ItJD- I        LkhHD$ I}LAׅ   Mm MuH   H        HI   H{H        HxgH        H        IE@HHT$(HsLILH        ЅHT$(t;LH        IHLH        LH        HT$(IH        LI}(   LH        HChIE LkhE1HD$ ML(SD$A   I           E1DH;D$sHL y8 u	I<A1A݅tE11I        J1DH        EuHL y8 u#IH           H@HP1AAÉH;T$rLH        HDH8[]A\A]A^A_UHAWAVAUI        ATSH   H}AIHEL`B -HEJD HxH        HHEHHXHQ  HhH{I        H`I        HpH!HKHH        H)1HAHH        Hu8H        HxAHxH{@HpH        Hx;HHxA1Lx   H        Ѕu}  :u -Hu1I        Lx   MAՅF  S tL     Hs(   HXE   H        H        HuH}HEiC(R(   HxH        AAAEP1A־   Lx   AY^      :u -HuHMH        (   Hx1A1Lx   Aׅu@OH        &   1H        0H        &   1H        HhH1HhHEB     He[A\A]A^A_]H        H8   ATH        USH        Ѕs  H        Ѕs  H        H        H        H        H0H        H        H        H        H        H0H        H        H        H        H        H0H        H        H        H        H        H0H        H        H        H        H        H0H        H        H        H        H        H0H        H            @  H        ЅyI        H        H        H        H        AH        H        H        H        AH        H        H        H        AH        H        H        H        AH        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        H        ,  H        H        H        H        H        H        H        H        H        H        H        1H        AH        H            []A\á          USH        RukH        H8H        H8H        H8H        H8H        H8H        H8H          11H        H        11H        H        H        H        H8H        H8H        H8H        H8H        H8H        H8H        H8H        H8H        H        H        1H     H        H        H8H        H        H        H             X[]HA   1A  t0A1HAi  AHH)  Auԉ1Aɾ  1ATU1SH        H0H        H;(   H        IIBD t$rt)u=H        "H        H        
H        H        HH        Ht$HI<H        HHt$H        1H        BH01[]A\AWIAVIAUIATUSHH(MtA     LLE1L)H$M9r1  H$HPIcH9|AuAMtA tA L9tH<HHtE  H   1; /  IOt"I9vAW?A	LcO<rHuA7H@H<HLL$LD$HHL$HH        ЅHL$LD$LL$t%8 HH9rHH9s8.H      HtHt<.tAMtA0Hu1:ALL$HLD$HH        ALD$LL$HtHh .Ht;HAM|mH([]A\A]A^A_AWAVIAUATUHSHHLfHVI\$H9s7AFfA9$u,AD$y#xuAD$ufAD$1?AF   HH          H9s0  t
H\H9rH9|fA|$MnH        fHIE IFH8 uH             D$HD$    D$    IE1   HuIN E1E1LH        HuI9   IWH9   A    u1ɅA    AMGEAE11AA HD	HuAG	EG
MWLT$D	DMI9wp   AfAD$A9z  HUI9-IH8   IFH8H          A  M|
IH8 <IFH8H        $L$9F@T$   @tF@MfCIIVH HH    IIFH:   HH8H;fIIVH HH    IIFH:   HH8HHt$H        IH AF0   t$ȅH        uH|$IF HD$I~ HEL}E1D$1LD$<H|$I        HD$ LHAՅtSD$<xH        HcHt8E11IHD$(LHt$ H|$AL\$(MuLH        E1MMF uH        AF          1H        H        y  H        I        AIv H|$H        ЅAF   H|$|$ H        F  IH8 9  A~ .  H        DD$  I        H        1H        AI~(H        LcH        MHL$III} I}IE     I~(IE    H        IE IH8H        I}HIEH        iT$  HL$IHI} IEtI}  u&MIMI} IE     I}IE    IIK|'HIFHH0H        HH        H|$HIgHH1[]A\A]A^A_UH        SHQH        H;w[   NHcH        H8HH        HH        Ht^HH        HH        H        H8H        HHWHH   H        HHHH1Z[]H(tH           1H        &HzHH        ЅuHH        H(UFSH(vH           HuD$      HzH        H        Յu
D$    oH{H        Յu
D$   QH{H        ՅtH{H        Յu
D$   H           1H        %HH;H        ЅuHH        H([]ATI        UHS1I;$s'H        HHHHH        ЅuHH        H9s>H        HHHHHH        HHt
   HH[]A\UH        HAWAVAUIATMSH   HMfHUH}HhLEQDME    HE    H}E    f        ȆHfEuH        HhH        HEH} H        `  EIE     I           L}H        H        LHHHH;H   LH        ЅuH        H;Csm1H        H          H        I        AH{HAHI$tfHSHsH        IU HI<$1  HEH<    AHHt(H}H        HHEuHH        С        N  H}I        AH   H        HILxuHH        H}먾   HH        LmHxLLHpH        M|$MwEEIL`LLpLLH        L`LpMA9IMA}  tf.   LH        HIuLHxML MM)I?wHH        H}H             A AF E1AF AFEAGAG fAG fAG  fAG  fAfAG
  E1ID$ǅp    Hǅx    H`HEHHXHXH9x  xt
Eu}  L;msLH    HHhHHUH        5   H        JIH J| u$        pH             uHEH8 V  E1I        M9  J<   H`E1ID$LHHPHhHPDt(uMtA   #uIuAA   AFA   AFEF1L@LHLMH        H        I  H        ALHLH        J<ЅLHL@tH        p    HEH8 u=IIHE   A   Hp0H        HxH}I        I        ALE1H        M9tJ<IAHAHU1H: uG} H        +   u&pt        H           1H        He[A\A]A^A_]SFH`HD$    HD$    vH           1   Hu)HzHt$H        Ѕ      Ht$H        H0H        HH;1E1LD$HL$H        H;\$H|$s=HHt$8HHHH        Ht$8H        1H        H        1H|$ uH        +   H        H`[SE1H        H        H        H        H        E1H        H        H        H        H        E1H        H        H        H        H        E1H        H        1H        H        [H        SH        H        H8H        H8H        H8H        H8H[HGHLHGHHHHtHWHPH    HG    H0HIH|$H           f
1D$D$D$D$D$D$D$D$D$f D$D$D$   DBAp@   F-  kiD>KAi30 AH|DiQ AuQ ACDBD:Dv1Etkfzuc1Et\DJAwQr@;wGR<w>AEiQ Ei  Dk<DfvyfwA:   H01AVIIAUIATUSHM  Iw:[]A\A]A^H        H          H        1I        AM`fDCfDfAfAAI9sB[]A\A]A^EEH        H          H        1I        AfEu>[]A\A]A^EH        H          H        1I        AMt	LHAMH\+I)[]A\A]A^UHSH        QH?HtH}HtH}(HtH}8HtH}HHtH}PHtH}XHtZHH[]H        AV1IHHH        AUATIH        USHH   t:u _HI|$H        I        HHHt`LHLH        HHBD%  H        H        1HH        HH        HAH[]A\LA]A^[]A\A]A^AWAVI        AUIATIUHSHH    H    HL$H    :   AHH   HH        H      H        HH        ЅAuTIH        M)I~HHE uH          HLLH        HHE B0 	H{QH}  u7MH        H        A   H        1I        Ai/   HH        HIuUMH        H        J   H        1I        AH} H        HE     E1   IH        I)IvA;[u<B|#]I|$u/HIE t4HIT$HsH        IE BD  ?I|$HIE uH        hHLHH        IE B  LH        A   HL$HHu5H        H        E0I} H} IE     HE     HD[]A\A]A^A_AUATIUHSSff_f1  wftGf   (  f  f;  AX[]A\A]HNXHVPHHvHH        H> ufuDH        H        c  `DH        LIt$HE HLH        f]  H~ ufu>DH        H        o  A[[]A\A]H        1I        ADH        LIt$HEHLH        f]  ~ ufw"DH        H        ~  zGfȉFGȉF GȉF$   AZHH[]A\A]H        H        ftt:AY[]A\A]H        H          H        1I        AfH        If^@HHE8ft*    I$H IHPIT$@   HPX[]A\A]UHAWAVAAUATISHH8HR(LMHtiHN H        IHC(H E   HE    HE@   Hu   H@HEH        LLLMH MtM)E1H{8 I        u7H{XHtIH        HSXHH        LH        fD;k@sAAHH{8AEt\H{PHtSH        LH        H        H        HeH        H        [A\A]A^A_]He[A\A]A^A_]SHH        H{8HtH        H{@HtH        HH        [UH        SRH8HtH1H        HtHtH1HHH        H     X[]AWH        AVIAUATI        U1SHxH4$Ht<$ HH{I6AԅtHHu"H        $   1H          Li   H        LHHt!H        E1L8=HH        С        8  <$ ~$II6H        ЅtM?Mu   AEDHiҐ   D$Hi   HLzHEHtAEHi   HHBHT$1IwH        I        AHT$HBAGLHz u)1I        A91HiŐ   HH|AB     Hz@Iw (   H        Dl$-H        J#pHH        HtHPHD$   A   H        H        HC1$    D,$I9.  Mi   D$    II} 	    H        HIu1H        RHǾ  H        ЅAu H        ,  LHT$҅AtLH        H  Mt$1,  H        LAAF1AUDH|$ BAFH        ЅtH        D$         Ht$H|$ H        Ѕt̋T$I~IuEAFA   f	AVfAFH        о   LHD$Mt$HT$HHt$(LfA DfAF CfAF  ID$I+D$D$(   fAFD$0H        Ѕ%  IU HL$(   LH        LfAFA   LHT$HHt$(H        ALH        Eu   D   $uE1E1I           1DH        EL$tMi   II|$AI|$ tDH        LH        ID$H           H        HP1AAEI9rHH        DHx[]A\A]A^A_ATHUHSwH           1H        CIH        `   HHt'HHuH        I|$H        H1[]A\USSf? HfDO   fAfAw@A[[]EA   H        H        G  H        1I        AH~( HuC    H        HE(    HSHE(HPHSHE(HPCȉE0CȉE4X[]AWH        I        AVI        AUATU1SHhHt$HT$H/  |$ Hs HAHIuL  HD$H{H0Aօ   ЍEH   D$    $H        H|$8IH        ЅtH        D$         Ht$H|$8H        ЅtAmAEMe0T$%    	AEH        It$EIEI}$   fAE  fAE" H        IE8    IE@    LH        H        Ћ,$H$   A   I        H        H(   0   AHHu|H        С          Hm 1H  H      D$   HD$   HD$(HT$8H}0Ht$H        ЅtH        ҉G  HǾ   H        ЅAI        tH        HA     HI        AՅ   HC   Hf  f@ f@  AՅukH{Hu 
   H        f fG 
Hо   HAՅu4HC   Hf  f@ U@    @    ʉPAՅt$H        HAԋ$B  HS   HE% ̈BJBALkHL$   HfAE "fAE#fAE  HCH+CfAEHE0HP H        A   fAEHH}0HT$8Ht$H        AHAEH        D   u1DH        E$zH        HE1H        Ht3HC0H           H        H@HP1HAH        DHh[]A\A]A^A_AUH        ATI        USHHHH(#H           3H}HAԅtHm HHSu)H}p uDH           1H          H           1H          H}x   vP11H{H        H¡        P  Hup   cu   u   Su	   ctH        ]H   HuxAH9sHyuH<u"H           1H          D9HiDat	AHH{H        I        AՅuFAHxH        HI   HHLH        CD%  LH;  H{H        AՅui11A9~HHL HH	H8-ux uHH           @   HH        1I        AHH;   H{H        AՅ   G,$H        A}HcHt1           A9~4T zWr0	G@4HT r0zW	G@tHHMcHB( H;?-u" uH        1H        1!H        HSH        fHH[]A\A]UHAWAVIAUATASHH   H} AHXLHDPLmǅp   xtHEH     MtIE     LX1H        H        K  H        I        MAIN EHpLLH        HH@
  HH   ǅT>     c          S     c  HL   -   HH0HEHH(H   LH)H;0  E2IBEuIA  EzPEH        H        MbL8E   H        I        AP1AZAY  L8w@A   wA     AtoA  ALH          A<  w*AA  ALH            A=  Aa    AE1Aǉ8  Am  ǅT       THcAƃ)9  TT u%  A     LH(E   E    H        E    E   1HXH        H        HIt4H    HuHH HHuHH        H@LH        u  D98~*CE   H}E   IƉEH        EOALH        HXH          LH        ALH        ALH        HXH           A   Mb%   H        11A<D	E1@D_WDG0@	McEGAFA<E1Mc҃DG0D_W@	EGÃFt
t	uAMcB-HHuA   H±$H        HXH        O<BH        HXH        1I        AIHH        ILI        AM  H        LH        Ѕ  H{lHMHUHhH        Ѕ!  H}I        AHUHH        HXH        ЃP tMH}H        H        H        HXH        H        H        H} t7HEH8 u-HUHhH        1AHMHH        M*  H}H        IE H        I} H   /   H        HuIE   I} A׃I   IU HHLH        t20@t*DBDNz ADF GAAF9uHHǍrJ 0FэNF F9u`H        A	uH        1AAA	I} H        IcHIcH        HXH        L@TH        LLHH        LHIFptHLHH        LLyxH             HhAH}AH}A  HHlv&HSl   H        HXH        ЃP    { H        H     t@KSH        sDC1I        AH        H        H        HXH        H        H        H} tMHEH8 uC{ t=SKH        sDC1I        AHUHH        HH,   {,    Lc,@   H        HXH        LЃP t5H        H8 u%LH        H        H        H} t8HEH8 u.LH        1H        HMHH        MtUHHlvKH{l   H        IE H        I} Ht/   H        HuIE   L@TH        LLHH        LHIFpt!HLHH        LLLyxH             H@1He[A\A]A^A_]AWH        EAVILAUIHATUSH(T$Ld$`Hl$hHHËT$uH        1   ALL$HDLLH        Mt:HsHHt1HSPHt(H        1H        I$H        HtKH{XHtBH        HE H        H} Ht/   H        HuHE   HH        H|$HtH        HD$H([]A\A]A^A_U1H        HAWAVAUIH        ATISQHvHHuHeH        [A\A]A^A_]IMME1j E1HLH        j I)H        HXH        8 ZuH        HI        HtmI|$I        AIt$H{HAօuCL{I|$Aպ	   H        I<AօuHeHH        [A\A]A^A_]HHe[A\A]A^A_]AWH        AVAUATUSHhH_HwHH)HI  H8 t%Hx tI}( H        I        H(u\LH        H           1H          SCMH H	CHH	9tHm Hu   Hu 
   I} AԅuAE9Eu   HE0H      Lm8D$   HD$   HT$8HL$(Ht$H$HH        Ѕ1     H        HH             H        H          H        1I        ALH        1  <  H}8 +H        H          HǾ   H        ЅAI        tHAD[  AuHI        HAօA   H{H        I        HL$f AEHfGAUIu AuHHAօHL$u1H{f AEHfGAUIuѾ   HAׅt$HAԋ$  I}( t    HAׅAtHAD{  HCf  f@ I}( tf@ (AUʉPAU ʉPAU$ʉPI}( t6f@ f@ IU(HRHPIU(HRHPAU0ʉP$AU4ʉP(   HI        AօA   HC   Hf  f@ f@ ;f@ AׅAu_LsH        fA fAF H+E1Ҿ
   HH        к  H=     HFH߆fAVAׅAtHADM  HS   HE% ̈BJBAׅumHkL4$HL$   HfE "fE#IV fE  HCH+CfEH        A   fEHHT$8Ht$LH        ЉHAԉ   <H}8 uH        H          HE0Lm@H        H        H@Hp1HHt5HE0HHU@E1E1   HpH        HH        HH        9Hh[]A\A]A^A_SE1H        H        H        H        H        E1H        H        H        H        H        E1H        H        H        H        H        [H        SH        H        H8H        H8H        H8H[HH@f@H  H@f@¸     9|UH        SHQH{ HH        tH8H{ H        H{(H{ H        ZHH        []AWAVIAUEATIUSHH(AHoD$hH$LLL$`D$  fEf="   fDuI        fEtpfE  Lɾ   H        fD9tLfADH        H        Eξ   H        1I        AHAP  fE   HH        ЅtHA   LHH        Ѕ  H          f= D%  fDmfEtmfE  Lɾ   H        fD9tIEH        H        fAD&  H        E1I        Ao  fE   HH        ЅtHH        ҉c  LkH        H(MuH  L9euS}  uMAE9   uA}@u;AUH}ELH        ЅuHuHH          A} tHm H        H(I        H  L9etL9e   OHT$LLL$H} AׅLL$HT$uLL$HT$H}@LH        ЅHT$LL$u~} umA9ugIy  u]HE0H     H      H!H	I9qu9A>u3Av@  33u#HHHA8vuHHA:v	uA8F
t	Hm 1A   w0A   HH$H(HHH        []A\A]A^A_At;A:uwDt$H$HIHLH        Dt$`H([]A\A]A^A_HHH        HHH        H([]A\A]A^A_A9u
Iy  tHH        1H       I9AuH([]A\A]A^A_11HH)Hvfȍ =   CHHHH@t=  v-   =  CІUHAWIAVAUATISHHhHUDEt    HGHP`HAH+AHH9  HBHuH}
   HE    HE        He        HEHtHELsHCI9  I)HEH}L9LNH        HIu          HǾ`   H        Ѕ     LH        Ѕ  AFIU   EB fB        Hxȉf	fBHK1H+KBI9ι    EEfBEB	AD$(BAGfB
  BLI}HHEH        HxLLfB
H        Ѕ  HxHsH        HzLLHH        Ѕ  H0
   HuH   H        LLH0]  1  HϾ   H        Ls   AEAF HCH+CfAF  AFfAF        У        f	fAFEAF	AD$(AFAGfAF
  AFH        H{H0fAF

   HHu      HAH+AHWHH;B`vH        *      HϾ(   H        LsIt$(   I        A`   HCI~H+CAF(fAFEAFAIwI~   AH0
   HuH݆  HLH        H0+H        &   He1H        [A\A]A^A_]He[A\A]A^A_]UHAWAVAUATSHH   LoHxHpHhEE AAT  H}AE AAAtAH        H          &DA;H        H          H        1I        AH}  LGHM)I9}4H        H          H        1I        AfEMfAEM9v:LLXL`L)H        ЅL`LXtH}rM9s7H        H          H        1I        A'fAEf?   Au H}H        HЅH}tH        ҉.  E   AELME   HpHhHxEAEEAEPHEPEE	  H        L HM0  AEA9D$u#AEA9D$ufAEfA9D$uAE	A8D$t4LM$$ID$(    ID$0    H        ID$8    AD$@AEA8D$@vAD$@I        AID$AH-_ I        H`H        H8IHt H`H9GsH7I6AII>I|$ HuH        Ѕ  fA}ff  ukHUH  HBH+BHI|$0AE HH)H        I|$0HID$(u$I$LHH        С        `  I|$(   I|$ H        H  L8I|$ H        H        I        MwLA6HЅtxLAՋx  fAFf%HI9T$8  IWI+H%  HIT$0ID$8fA~ffHH9s@IwIGH  H)H)H9HGID$(HxH        fAF tLALAAD$@ED$LAT$M|$(It$0Et$`I$DPTID$(    HXHH        HXLH        ЅTDPtLA  `DELMUE   EE   HpLHhHxPHEPu  A~  LGM)I'7H        H          H        1I        Ap  (   H        ЅAuSfEMLCL+CfAEM9vOLLXL`L)HH        ЅAL`LXtHH        D  M9s7H        H          H        1I        A   HEL}Iu   I        E   HxE   AIuI   AAEHpLMHhHxHPAWEEH        ZY   AH        H          H        1I        AHH        1   H   H        HIAEH           AD$AEAD$fAEfAD$AE	AD$H        I$LH        H        HID$ LH        He[A\A]A^A_]SHH        HH        [UHAWAVAUATSHXEȃv"H        &   1H           H AIH   HuIHuH}H        H    LeHuH}H        LЅ      H        HHttEH{0   DxHEHuHCxH        H{PL
C    HLs Lk(H        QKУ        H        H1He[A\A]A^A_]AUH        ATUHSH   HARЅ   ULcLm0H߾   Lf	fA$UfAD$  f	fAD$HCH+CfAD$HExHP H        fAD$H}xHAY[HUPLA   ]A\A]H        Z[]A\A]AWAVIAUATUHSHH2  LgLGH        I        HM)IIH        H           H        1I        A   fA$;CtCHH   fAD$;CuL;sxuL{0HHT$LAՅHT$uÃ{ ufEl$fE   fAD$  HCxL   HHH H        fD9tXEH        H        fAD   H        E1I        AHH        E1PfAD${ ufA$C   C   HH        ЅAuHC HtHS(HHHD[]A\A]A^A_HH@HHH@ɋP   9rAUATUSHRHG`HtHwpHkHI        HtLe H}AHH        LHCH    HCP    X[]A\A]AUH        IATIUHS0   HHt3L` Lh(HfXHhH        HD$H        HD$H[]A\A]H        AWIAVAAUIATI        USHH8HHsH)AԉAE fte   Iw   HI        AIuH|$   A1H|$$   H        HCH+C(   Dt$'ȉD$ -AGD$    Dt$	$AED$HCH+CfD$
HAԆ1* =  CH8[]A\A]A^A_AWAVLvxAULATUHSHHF8LoAEfAELgL+gfH<I)VfIDf8f	fAE V fAE  f	fAEH      HP H        MfAEL}t`(   H        Iš        M   IE     ImH        AE    IEHCPHu
LkPLkHL(H   H   A   HLH        Ѕu ML}uD$HH        ҋD$H[]A\A]A^A_UHSRt$HGX    HG`    HGh    uG,   } 0  E      H        HH  HǾ   H        Ѕt-HH        H        H                HH        Ѕt*HH        H        H        !  \U@HCHHf@Pf@  Pf@  H        ЅtQHH        H        H        /  1H        I        AH             X[]ATH        AUH   SHHJ  HǾ   H        Ѕt-HH        H        H        C        HH        Ѕt-HH        H        H        L     EHStB    fBPfB  E@fBPȉB1}0 uEDfBfB  MHH߉f	fM f	fBH        ЅtBH        H        d  1H        I        AH             []A\AWH        I        AVAUATUSHILpH        H(H  HExH]HHD$H   L9s   C (~HH           LcC HCLhAEt<E@A9Et1fAE  H      H{HL$HP H        fAEH   HKH   A   Ht$AHSLjtL1I        H        H          H        I        AH             HHm H[]A\A]A^A_ATH        USHwXHHW`HOhLGp   Hš        H      HH        ЅAu   HH        ЅAtHH        DZS@HEHH        f@PPSDf@  fPH        C   HHH        ЅuC8[]A\UH        HAWIAVIAUMATMSH   XHhЅ  hȃv"H        &   1H          H    HhHH        H`H}H   HUHuH`H        Ѕj     H        HHM  XH{x   HhC H`H   H        H   Hu
fLs`   LcpL{XLsxLkhQf        CH        IHH   HX     LH        Ѕ     LH        Ѕl  H           H        HH   A  Ml$   1H        LH        ЍPC4fCD L   S8AELAE    fAE`CDfAE  fAESf	fAE S fAE  AEAEAEf	fAEH   HP H        HfAEH        H        A(   HCM|$HPM|$A   H   LHXLH        ЅuXHH        HH        LH           LHP2   H        ҋLt{ t҃{ tH        LH   AIHH        Ѓ{( H        tH        '   H        #   I        1LI        AH   AHtH8AH   H        H   H        HH        1He[A\A]A^A_]AWAVAUATA  UHSHHxT$uH   H@L``I(M$   HEH+EL9   LH        HIu        4  HǾ   H        Ѕ  I           LAօL   C@MufAFPAF1{0 uCDfAFfAF  LLх   HuI~LH        LHH        Ѕ   HLH        Ѕn   HH        ЅuV|$C@HUȉBf% fPfB1{0 uCDfBfB  HHHH        []A\A]A^A_H[]A\A]A^A_AWAVIAUATUSHHH|$y  HoEffw>AH        H        A	  H        1I        A#  LGH        HIHI        I)I9}HH        H          H        1I        A  fE;CtHHu  E ;C uL;   uL{xLLAԅuDefEt}fE  H   L   H|$HH H        fD9tIEH        H        fAD*  H        E1I        A  fEEfu{ uEC   ȉC<C@EtC(   HH          t|DuLcHI        AMtQI|$M,$HwfVNɉЃfkG)fD9wALH        MMLcHuHCP    E;C@s1HH        
  {, t6EHL$HQH+QfHH9t   HH        H   Ht$H        ЅAH        tIH|$H        D  H8HG@;C@s2H        H   H        H   HuZ  uE1E1L   z1HH        3  HEH+EK@K@fAEtC   A   K@A   HEH+EH       H        H   A   H   H        H   H(LmAE;C@   H   H        fAuHH        ffHЅ,D$HH        ҋD$E  HhH     H@    LpH    tH   HH   H@H   H   H   H|$H        Et1HH        H        H   HtfHpHCXHHt$tHSpHHH   HGHHHWHHuHWHHHGHuHWHBH        HChH<  E3  HspH%  E  H        L M   fEfA;D$uID$I9tHtM$$Կ   H        HH   E H{x   LC fEL   CEH        ȉC<C@H        fCD  C4H        C8   H        HH   uH|$ա        0HIT$(LAT$ H|$ՉH|$H        1H[]A\A]A^A_Ã0 uG0   1H        Ã0 tG0    1H        AWAVAUATIUSHHHH$HL$uHH        /  LwHGL)H~fAnfAF  I        HHsH)Af9fAn      HH        Ѕ   A>H           A~    H{H+{H        HHIuHա           HsH@HSHxH        H)M~A AG fAG  I~IvH)AA   LH$Ht$LfAGH        AHLDH1H[]A\A]A^A_H        UHAWIAVAUATSH   ELwHpLxhHGL)H  fEfI        HIfAF  LLXHx:   L`AfA9tgLXHx:   LL`LAEDH        H           H        1I        AfEf  fEf   LI        AԅtxLH        $  I        ENE1H        H           H        L`AA<  w	<t  <>  <  l  Mc  A~ X  II+H        I        H   HHuLA/  IwI+wHH        H   Ѕ   IwI+wHI        Aօ   IwIWH        H{H)о   HAօu^LsIU Hx:   HH        AAF fAF  A:   fAFHHpHxLH        LxAHA  A~ 0  h#  Mo   LAԅAB  MgIOI9   AD$  H      LH9  A<$uFuBC S$It$EHEUHxH        1HUHxHH        AD$HIlH        L IEHhMP  I9\$u)A|$ u!I|$(   HhH        ЅtM$$   H        I        HHuLA֡        X     HH        Ѕ  LxAHA֋x  A~   h     LAԅA   MgIOI9k  AD$^  H      LH9D  A<$uFuBC S$It$EHEUHxH        1HUHxHH        AD$HIlA~      LAԅAtLH        D%  HEMwHHpIOI9  AF  H      LH9j  A>uDu@S$C IvHpEH        U1HUHxHH        A>  A~  A~IFAvAN@@t)HHH0H  tAAA9wA~@tkHE1H0H        H=  L`AE1@A1A~@H        P19H          P1AXZO  LkhMB  A}.  IFH      E   HEAEAUH	H0H	AUH(H	AUHH	AUHH	AUE   H8H	HHEIFHE    E@   HEH        L Mt&I9\$uI|$ HuH        ЅtxM$$1H        H          H        L`AAU8Iu@H        H        BAE81HIG  H             Mm AFHIcH        L1_     HI        AՅIt$EH{   H        о   HAՅHC   H @AՅH{   HhH        `   Hо   HAՅLkIT$ HxH߾:   H        AE AE fAE  A:   fAEHHpHxLH        IME1HUHLH        H Hu   HHLH        H LH        pHe[A\A]A^A_]AWH     H      AVAUATUHSHhH#FH4$D$   Ht$HD$   H	HT$8HD$(H        Ѕ     H        Há        H     HH        I        о   HAԅAg  HuEH{   I        A־   HAԅA7  HC   H @AԅA  H{H$       HpHA־   HAԅA   LcHU HL$:   HH        I        A$AD$ fAD$  fAD$HCA:   HHT$8Ht$HHD$AׅAuuA  I        H4$HAօuW1DH        H4$HAօu8HD$A:   HHT$8Ht$HHCAׅuAA  uAH        HDHh[]A\A]A^A_ATH       UHSH`HD$(D$   HT$8HD$   Ht$H        Ѕ1     H        Há        H     HH        Ѕ      HI        Aԅ   HuEH{   H        о   HAԅ   HC   H @AԅuuHC   H     Aԅu\LcHU HL$:   HH        A$AD$ fAD$  A:   fAD$HHT$8Ht$HH        ЉD$HH        ҋD$H`[]A\AWAVAUATIUSHHHGH        T$h$H        HDt-tHǺ   1H        AAE1ALH        Ѕ   Mt$HHt$UI        LIAHHsELLAEtAHD}Dl$DAfD	fE H{P u"HGH@HuHC@P   ЅuH{LHGP(H[]A\A]A^A_AWH        AVAUATIUSHHhDn$LF H|$HL$ALDl$HD$IAD$ LIHDl$<H|$=HL$Gt-D$8fA   ufAoAfAHI        AՅ     w3HCՃu#xuxu   HAՅueHCh  t݆  t   u4LHH        HL$8HT$LHH        H        H1Hh[]A\A]A^A_H        UHAWAVAUATISH   >t"H        &   1H          HPHHHHEH H        о   HH        HCHDh$H        Ct-@Ѕ  HSHI        HsEJ Dhf@ @f@ f	fHLLxLMALHs(   AIGLI        1HHAHIt$   J<(AH(L   I        A  HxAH0L
   HH(  HHALH0I        LHAօt1   AD$D        H        H     H        LHAօuH0L
   HH(A  HHHH0A  fnHe[A\A]A^A_]UHAWAVAUATSHX  LgV F$fA|$t1  fA$ډff9uEt$A8uA|$uHGCT6L)HH9|Ml$H  AI        HHxLHDIAHL   ǅ   IHxAL   H HH        Lǅ   It    HAH         9uH            H        L(MI} HH        Ѕ  fA|$   HPHHHEHH        о   HH        HHH        Ѕ#  HfI        IuEHff@ @Dpf@ HHHHAHH   HqHHHAHHHHHHAH   HH<A׋L(HHD,IxL(ALH0
   H  H        LHLH0Mm AHe[A\A]A^A_]HwH;wHwvH        &   1H        1HGH)H;HGsH        &   1H        1HGH)H;HGsH        &   1H        1HwH;wHwvH        &   1H        1HHwHWHGH9HWHwwH9vH        &   1H        1H?@   SHFH        H     H Hs HtH<HGHGHHH1[HtH?H        ATL   H        UHLSHHtBHLH        ЅtHH        HHH        ЅuH1[]A\HHGHG1AU1HATUSHQ  H~H9s;<%u1PD@D9s"ъDIA	v߃A   كuP<%   <%   1I        HnH9   LDbA8%uzDy@	w0 y@wtɃWtizAɊ;QЀ	wу0 QwBɍQt7D	H)H|AHHtAHDa<%tH9r1Z[]A\A]t1t*D@DJH ADB GAAF9uHHȍHP FrJ F)AWAVAUIATUSHXHHT$ LL$t-HHt%Ht HItMMtMtH$    u"H           1H          H$   H~H     HD$ I     H    H     HD$ H        HH~  HHLH        H        1+ IH          H        I        AH1Hc3t\u1/|3\HIH        AE   <:u1tALs  H8tIM^  H        HI        AE  ImAH        D$0HAׅ%  Ht,HD$/   H E   H        HIu  H           1
  HǾ;   H        к   HD$HH        H        Ѕu>HD$H        HPH        HHT$ЅH        HT$u  HD$HH          AA T$ՋT$I$LAH$   HHtI<$ E  HH        I<$  H        HAׅ  Hu(H           H        ҅    H$   I        /   HH     HD$I$    I     A׾?   HHD$AHT$@   HH9HFHT$AH;D$HD$HD$HLwHt$I HL$HHL$(HiHD$(    E1HD$    } [u]   HH;D$  HH:   HH;D$HwHL$HHL$HD$H    H|$HH;|$   H   ?:s  Ht$HHH)H\  HtwHD$H    D
   HL$8HL$H H        DD$0HHt$DD$0H        D:  H     H9t$H   Ht$HL$8|$0Ht$%k  PMtHA? tBHT$(HL$0LH        L)HHHT$HI   HT$HL$0D II)HtrHL$L HH        T$(HL$T$(I$I$Ht:B8 H|$H        H$   HHtHD$Hte @`HD$HHD$Ht @I>H        I<$H$   H8 HH           1H        AE :   HH        HL$ HAE :H9    I>HuI<$Hu&GH        I>HH        ЅypH        I<$HH        ЅxMH$   H8Ht*H        HH$   H8H        ЅxH        H1cHD$ H        H8I>I<$H$   H8H        8 u HH            1H        HՃHX[]A\A]A^A_            ; Z x     0N %s
 %s %s
 %s %s %s
 unrecognised network address `%s' net_default_interface net_%s_mac net_%s_ip tftp pxe: pxe no server is specified disk `%s' no route found https http disk `%s' not found invalid net device couldn't open efi service binding protocol Failed to create child device of http service %x :// url: %s is not valid, host/path not found
 bootp net/efi/net.c %s,%s url: %s is not valid, protocol not found
 Set Address Failed three arguments expected card not found %d.%d.%d.%d tftp,%s url:%s
 efinet https:// http:// efinet%d could not set GRUB_EFI_IP4_CONFIG2_POLICY_STATIC on dev `%s' efinetfs could not set GRUB_EFI_IP6_CONFIG_POLICY_MANUAL on dev `%s' net_default_server pxe_default_server net_default_ip net_default_mac efi grub_netfs_type efi netfs https http Host Accept */* User-Agent UefiHttpBoot/1.0 %s://[%s]%s %s://%s%s Fail to create an event! status=0x%x
 Fail to send a request! status=0x%x
 Fail to receive a response! status=%d
 file `%s' not found unsupported uefi http status code 0x%x Content-Length %s://[%s] %s://%s root_url Invalid arguments to EFI HTTP Read Error! status=%d
 The MANUAL ADDRESS is not found
 ??? %d
 couldn't configure http protocol, reason: %d Couldn't start PXE
 Couldn't set station ip
 Couldn't get file size No Offet Read Possible Short read should not happen here ERROR OUT OF MEMORY Failed to Read File %02x: %u.%u.%u.%u %s:local %s/%d %s %s:gw %s/%d gw %s %s:default %s/%d gw %s %x %s:link %s/%d %s %s:local %s/%d %s %s:gw %s/%d gw %s %s:default %s/%d gw %s dhcp4 configure failed, %d
 dhcp4 start failed, %d
 dhcp4 get mode failed, %d
 %s:dhcp dhcp6 configure failed, %d
 dhcp6 start failed, %d
  net_default_interface net_%s_mac net_%s_ip probe %s
 net net/net.c found!
 invalid net device error receiving: %d: %s
 one argument expected you can't delete this address address not found tftp pxe: pxe no server is specified mismatched [ in address bad port number overflow is detected http disk `%s' not found unresolvable address %s unrecognised network address `%s' destination unreachable route loop detected temporary %lx: %lx %d.%d.%d.%d Unknown address type %d %s  %s
 %d.%d.%d.%d/%d  %s/%d  Unknown address type %d
 gw  %s 
 Unsupported hw address type %d len %d
 XX: %02x: %s %s %s
 %s %s
 Unsupported address type %d
 shouldn't reach here unsupported address type %d timeout: could not resolve hardware address : :link %s:local three arguments expected this card doesn't support address addition card not found gw unrecognised network interface `%s' net_%s_%s timeout reading `%s' :slaac couldn't autoconfigure %s net_%s_clientuuid 01- %02X%02X%02X%02X list network routes net_ls_routes list network cards net_ls_cards list network addresses net_ls_addr Add a network address. SHORTNAME CARD ADDRESS [HWADDRESS] net_add_addr perform a bootp autoconfiguration [CARD] net_bootp net_bootp6 net_default_server pxe_default_server net_default_ip net_default_mac Perform an IPV6 autoconfiguration [CARD [HWADDRESS]] net_ipv6_autoconf Delete a network address. SHORTNAME net_del_addr Add a network route. SHORTNAME NET [INTERFACE| gw GATEWAY] net_add_route Delete a network route. net_del_route grub grub_netfs_type netfs  only ipv4 only ipv6 prefer ipv4 prefer ipv6 %s (%s)
 CNAME %s
 dns net/dns.c caching for %d seconds
 one argument expected --only-ipv4 --only-ipv6 --prefer-ipv4 --prefer-ipv6 invalid argument no DNS servers configured retrieved from cache
 domain name component is too long QTYPE: %u QNAME: %s
 no DNS record found no DNS reply received two arguments expected %s
 Perform a DNS lookup ADDRESS DNSSERVER net_nslookup Add a DNS server DNSSERVER net_add_dns Remove a DNS server net_del_dns List DNS servers net_ls_dns DHCPv6: Options stopped with remaining size %lx
 bootp net/bootp.c DHCPv6: Options stopped at out of bound length %u for option %u
 DHCPv6: Options stopped at zero length option %u
 net_%s_%s :// url: %s is not valid, protocol not found
 url: %s is not valid, host/path not found
 Skipped DHCPv6 CLIENTID with length %u
 Skipped DHCPv6 SERVERID with length %u
 Skipped DHCPv6 IA_NA with length %u
 Skip invalid length DHCPv6 DNS_SERVERS 
 boot_file net_default_interface no network card found %s:dhcp_tmp couldn't autoconfigure %s DHCPv6 packet size too small DHCPv6: code %u with insufficient length %u
 four arguments expected no DHCP info found no DHCP options found no DHCP option %d found string %s
 number %llu
 %lld
 hex unrecognised DHCP option format specification `%s' unrecognised network interface `%s' /efi/boot configuring dhcp for %s
 dhcp DHCP option %u (0x%02x) found with length %u.
 net %s:default hostname domain rootpath vendor_class_identifier extensionspath clientid clientuuid HTTPClient %s,%s / %d.%d.%d.%d tftp,%d.%d.%d.%d dhcp_server_name tftp,%s %s:dhcp :dhcp_tmp Bad DHCPv6 Packet Skipped DHCPv6 Advertised .. 
 Skipped DHCPv6 Reply .. 
 %s:dhcp6 DHCPv6 session not found
 perform a bootp autoconfiguration [CARD] net_bootp retrieve DHCP option and save it into VAR. If VAR is - then print the value. VAR INTERFACE NUMBER DESCRIPTION net_get_dhcp_option perform a DHCPv6 autoconfiguration net_bootp6 Invalid UDP checksum. Expected %x, got %x
 net net/ip.c packet too big not an IP Bad IP version: %d
 IP header too short: %d
 IP packet too short: %ld
 Cut IP packet actual: %lu, expected %lu
 not an IP address UDP packet too short: %lu
 net net/udp.c Invalid UDP checksum. Expected %x, got %x
 error closing socket
 net net/tcp.c error acking socket
 TCP retransmit failed: %s
 not an IP address connection refused connection timeout TCP header too short: %u
 TCP packet too short: %lu
 Invalid TCP checksum. Expected %x, got %x
 invalid ICMPv6 checksum: %04x instead of %04x
 net net/icmp6.c ICMPv6 message: %02x, %02x
 discarded prefix: %d, %d, %d, %d
 creating slaac
 %s:%d vlan-tag unsupported address family put out of the packet range. unput out of the packet range. push out of the packet range. pull out of the packet range. reserve out of the packet range. Invalid argument dhcpv6 boot-file-url: `%s'
 net net/url.c :// https tftp ;mode= octet TFTP mode `%s' is not implemented. http Unimplemented URL scheme `%s' Invalid boot-file-url `%s'                                                                                                                     ׺ȇS@9_][J/Cz!NaGKڞV9BsJՎK(- '?MYzqABZ[[ȽyC*]!M)H
nD[O6T`                                                                                                                                                                                                                                                                                                                                    $  b  .T  LICENSE=GPLv3+  LICENSE=GPLv3+  priority_queue bufio datetime boot net                                                                                                                                             }                                                                            	                      
                 "                      .                 @                    a                      z     <h      q                  W                                 Ѐ                                                                                                         hs             &    8
     O      7                     E          l      X                     p    z                                                                                                                         0                                _      
                           +                     ;                N                     ^    m      Y       u                                                                                                                                                   Hn                 c                [l            <                 P                     [                  s    Ȁ                                      H                ؀                                            h           0                  $                8              #          9      5    g      t       G    >d             ^    `            s    B      o                               6                                            5                                                    ]                                 )    Hj      8       K                     a                  z                         *                                                                                                           F      (          l      @                   H                     T         0       f          0      |                                                i           D      j          $o                 (                                   Y            4    :      j      P                     t         R                                                                                                                                                                                                      I             #                     3          <       C    5\             \                     k    O     .       }                                          E      A                                                    :     f      	                 	                     (	          t      ?	                     N	                g	                     	    %     n       	         !      	                 	    o      	      	          K       	    6            	
    h      y       
    5             9
                     D
    i             d
                   z
                     
                     
                     
                     
    p             
    x             
          ^      	    `      f       $                     C    ]      8      `    \             y    ^                                                      9                 @                       F                               2?             1          v      K                  c    M             |    Ut      {           6      e           Q                                      q                  q                      .           j            /                 B                     O                     \                     h                                                                   }     A                                                                   grub_mod_init grub_mod_fini .LC4 grub_strlen grub_netbuff_free grub_net_network_level_protocols grub_net_poll_cards_idle grub_net_hwaddr_cmp grub_net_recv_ethernet_packet grub_file_progress_hook grub_net_default_server efi_wrap_10 grub_errmsg efi_wrap_5 grub_strncmp grub_env_set_net_property extract_url_info grub_strtoull grub_net_tcp_close grub_priority_queue_pop grub_net_search_configfile grub_efi_system_table efi_wrap_4 grub_strcpy send_ethernet_packet grub_strrchr grub_netbuff_unput grub_dl_load grub_net_configure_by_dhcp_ack grub_get_datetime grub_env_export grub_netbuff_clear grub_error_push grub_ipv6_get_masksize grub_priority_queue_push grub_xasprintf grub_realloc grub_memmove grub_strdup grub_divmod64 grub_efi_net_create_interface grub_net_add_ipv6_local grub_net_send_ip_packet grub_net_ipv6_get_link_local grub_efi_net_bootp6 efi_wrap_1 grub_efi_net_list_addrs net_devices grub_snprintf grub_net_send_tcp_packet grub_net_app_level_list grub_xputs grub_net_ip_chksum grub_net_network_level_interfaces grub_efi_net_fs_fini grub_net_routes grub_net_udp_open grub_net_add_addr grub_net_hwaddr_to_str grub_net_addr_to_str grub_efi_string_to_ip6_address grub_efi_get_loaded_image grub_dns_init grub_errno grub_net_dns_lookup grub_strchrnul grub_memset grub_net_recv_ip_packets grub_register_variable_hook grub_net_link_layer_resolve_check grub_efi_image_handle grub_efi_net_list_routes grub_priority_queue_destroy grub_bootp_init grub_net_open grub_register_command_prio grub_efi_find_last_device_path grub_efi_compare_device_paths grub_net_icmp6_send_request grub_net_tcp_retransmit io_http grub_printf grub_netbuff_push grub_net_process_dhcp grub_unregister_command grub_net_sockets grub_net_tcp_listen grub_efi_ip6_interface_name grub_net_add_ipv4_local grub_net_cards grub_net_send_udp_packet grub_net_ip_transport_checksum grub_efi_ip4_interface_name grub_loader_unregister_preboot_hook grub_netbuff_alloc io_pxe grub_efi_locate_handle grub_efi_net_config grub_print_error grub_zalloc grub_strcmp grub_strchr grub_malloc grub_get_time_ms grub_net_add_dns_server grub_file_close grub_bootp_fini grub_net_card_unregister grub_file_open grub_netbuff_pull grub_isspace grub_net_tcp_accept grub_net_configure_by_dhcpv6_reply grub_efi_open_protocol grub_real_dprintf grub_net_arp_send_request grub_net_recv_tcp_packet efi_wrap_3 grub_net_process_dhcp6 grub_env_unset grub_net_recv_udp_packet grub_priority_queue_new grub_netbuff_make_pkt grub_net_arp_receive efi_net_ip6_config grub_net_recv_icmp6_packet grub_dns_fini grub_net_icmp6_send_router_solicit grub_net_addr_cmp grub_efi_hw_address_to_string grub_error grub_net_link_layer_add_address grub_efi_net_add_addr grub_list_remove grub_free grub_strndup grub_loader_register_preboot_hook grub_net_add_route grub_efi_net_boot_from_https grub_efi_net_fs_init grub_efi_net_boot_from_opa grub_efi_duplicate_device_path grub_net_resolve_net_address grub_net_resolve_address grub_net_route_address grub_bufio_open grub_net_tcp_unstall grub_efi_string_to_ip4_address efi_net_ip4_config grub_net_tcp_open grub_efi_get_device_path grub_efi_ip6_address_to_string grub_net_recv_icmp_packet grub_efi_net_list_cards grub_net_tcp_stop_listen grub_net_poll_cards grub_efi_ip4_address_to_string grub_net_remove_dns_server grub_list_push grub_net_udp_close grub_net_add_route_gw grub_netbuff_put grub_net_link_layer_resolve grub_efi_net_bootp grub_env_set grub_gettext grub_memcmp grub_priority_queue_top grub_env_get efi_wrap_2 grub_netbuff_reserve grub_strtoul grub_net_tcp_stall grub_memalign                                               "                    F                    P                     _          /                     8                     Z                                                                                                                 7                   O                    n                             8                    Z                                                                               8                               R                   ^         Z                    8                    m                                        /                    .                               d                    p         H                                                        E           1                    =         H                                                              8                                       N                ,                               (            8       2                    K            Y       W         ,           |                             8                    ,                       Y                m                               $            N                                      h                                       m                m                                          c                n           8                    G                   \            q       m                                               k                                      8                               !         8           3                    X                   d                    q                                                                                                         Y                                                  	                   	         Y           +	            c       <	                   F	         h           `	                   q	                    	                   	         l           	         /           	                    	                    	         o           +
                  C
         /           W
                    p
         H           |
                   
         k           
                    
                                       %         z           ?                   N                    g                    {                                                o                                                  *                    q                                                                                    n           3                    N            /      [                    r         o                    k                                      n                       3                  ^                  d               {           a         k           p                             /                    k                                        "           )            r      3         ,           ]                    g                               x                  ^                  d               {                     o                    /           ;                    G                    n                  }                                                 /                                      8                    m                             )                    R                  m                           1                    H                                                                      $         ~           A         8                                               5                  d         1                    o                             %                  9                    b                                             ,                                                          "           '                  1                   t         1                       8                                    8                    ,                       Y                M                                      '                               &            N       :                  {         O                    F                                                                               d               {                                                  .            	      b         O           p         F                                                           i           0                    J                   W         z           u                                                                 H                                                          H                              .                   A         H           [            p       h         z                    o                                        8                    8                                      ,           '         8           H         8           f                                                                    U                    8                    V           5                    Y                   f         z           u                                                                     8                                                             W      (            d      4         {           r            `      |            W                  d               {                                                          M                    '                    j                                          B       
                                               S           *                  6            B       @                    J                  V                  b                  n            8       z            8                   %                                                                                                                                                                    ?                                           (                  4         ,           D                    T         8           x            Y                M                                           N                M                                                            8       ,            8       <                  H                  X                  d                  t                                             j                                        S                                                                                         }          .                                                                
      !                  &!                  8!                  J!            %      \!                  j!         E           !         ,           !            6      !            B      !                    !         o           !                    "         H           r"                    "                  "                    "#                   H$                    Z$                   p$         6           $            r      $                    $         6           #%                  K%         6           b%            L      %                   %                   %         6           %                  %                    &         6           ;&         6           f&                    ~&                    &                  &                  &         m           &                  ,'                    H'         6           '         E           '         ,           '                  '                   (                  (                   (                  -(                  G(                  Q(                    `(                  j(                    y(                    (                   (         H           (         o           )                    #)            #      4)                    U)                  i)                    )                   )                    )                   )         6           *            F      *                    7*         6           d*         6           *         K           +                    .+            X      :+         Z           O+            y      [+         Z           y+         .           +                    +                  +                    ,         k           H,                    ,                    ,                  ,         Z           ,         o           -                    %-                    F-         .           -                    -                    -         .           -         ~           .                  .         Z           (.                    .                    .         H           /         .           Q/         K           /            =.      "0         .           60                    0                    0                  0                    B1         .           d1                  1            =.      1         .           1                    #2                    A2            	      d2         o           v2            +      2                    2         .           2            ?      2                    3         k           03                    O3         o           3                    3                    3                    3            K3      T4                    s4                    4                    4                    4         o           #5                    75                    h5            4      5         .           5                    5                    5         o           &6         9           F6            S      6            K3      6                    6                    6         o           6            Y      
7         9           47            K3      e7         o           7                    7                    7                    )8                    j8                    8            e      9            w      89                  D9         ,           _9                    9            4      9                    9                    9                    :         H           ~:         .           :            K3      :         o           ;                    <         o           !<                    n<                    <                    <            <      ^=                    }=                    =                    =                    >         o           J>                    ^>                    >            	>      >                    >                    >            <      ?                    ?                    6?         o           ?                  ?         9           ?                     ?                    +@            <      \@         o           @                    @                    @                    A                    A                  A                  A                  B                  B         ,           :B                    hB            	>      B                    B                    "C                    .C         H           C         .           C         K           D            <      AD         o           jE                    E         8           E         o           E         K           E                    F                    uF                  F         m           F                  F            #      F         Z           $G         .           OG            >      [G         ,           G         1           G         .           H                    VH                    I         8           LI                    eI         o           J                    AJ                    VJ            F      nJ         m           J         6           J            b      J         ~           J            #      J         Z           K         .           >K            >      JK         ,           iK         1           K                    BL         .           rL         6           M                    M            z      .M         b           kM         .           M                    M                    M                    M         /           N                    #N         H           O                    $O         H           O         .           O         K           O            iM      P            {      'P                    =P                  IP         ,           cP                    rP                    P            {      P                    P                  P         ,           P                    P            {      Q                    Q                  %Q         ,           ?Q                    NQ                    aQ            {      kQ                    Q                  Q         ,           Q                    Q         {           Q                  R                  R                  %R         u           9R         r           GR                  QR                  `R                  jR         {           {R         H           R                    R                    S            uM      &S                    :S         o           nS            iM      S         /           S                    
T            uM      T                    >T                    RT                    T            uM      T                    T         H           T                    T         T           T                  U                    MU         H           kU                    U         p           U         H           U                    U                  U                  U                  U         {           V         H           $V         k           9V         b           CV         p           rV            U      V         X           V                  V                    V         @           V         m           V                    *W                  ;W                    IW         >           SW         m           ~W            &      W                    W                  W            L      W                    W            =      W                    X            B      $X         m           4X                    GX            8      [X         n           {X                    X                    X            F      X         n           X            ]      Y                    +Y            u      <Y                    tY         w           Y                    Y         o           Y            iM      Z                    EZ                    OZ                  oZ                    yZ                  Z                    Z         /           Z                    Z         ;           3[         l           P[                  [                  [                  [            8      [            8      [         $           [         H           [                  \                    \                    9\         >           W\            L      \                    \            M      	]            N      B]         I           ]]                  l]                    ]                    ]            M      ]                    ]         H           ^         H           >^            N      i^                    x^         H           ^         H           ^                  ^                    _         @           l_         @           ``                  `                  `                    a         9           1a                    Ga                  Qa                     ~a            #      a            #      a                    a            (      b         9           -b         9           Sb            ,      }b            8      b         @           b         Z           b            P      b         Z           c            iM      ,c         D           @c            h      Pc                  Zc                    fc            T      c            X      c            o      c                    c                  c         D           c         <           d                  d                  ad                    kd                  wd         Z           d                  d                    d                  d         9           e         >           e         C           e         D           Ue                  ae         Z           e         b           e         C           e                  e         Z           e         l           !f            iM      Mf         C           Wf         ,           f                  f                    f         M           f                    f            M      f         '           g         D           #g                  cg            M      g         >           g         >           g         /           h            e      $h                    Yh                  ch                    yh         Z           h                    h                    h                  h                    i         Z           *i                    i            &i      i            iM      i         l           i            iM      `j            &i      j         K           `k            &i      k         W           k         |           k                  k            	      k                    ,l            !	      El                    al                    l         o           l         >           m                    6m                    Xm            L      pm                    m            M	      m         C           m            O	      m            e       n            iM      gn         *           n         l           n            U	      n         ,           n                    n         H           n            iM      	o         @           o                    zo         l           o            U	      o         ,           o                    o         H           o         @           p                    'p            ^	      3p         b           Cp         m           fp            	      wp                    p                    p            w	      p         B           p         a           p         H            q         l           $q         /           <q                    Gq         H           cq                    {q         @           q         l           q         /           q                    q         H           q                    r         @           9r            ^	      Jr                    fr                    pr         m           r            	      r                    r                    r         >           s            	      (s                    Es                    ws            	      s         ,           s         o           s                    s         H           s            iM      t                    t            (M      $t         M           3t         '           Yt            U      et         p           t         b           t         X           3u                    ku            iM      u                    u            uM      u                    v            	      +v                    v                    w            uM      }w            t      w         H           w            t      w         b           w         m           $x         l           Px         b           jx                    zx         H           x         m           x         4           x                    y         l           :y                    Jy         o           Vy            L      {y                    y            M	      y         C           y                    y            	      y            iM      %z                    cz                    tz                    z            	      z                    z                    0{         >           `{         9           q{                     {            
      {                    {            *
      {         C           	|            Q      1|            Q      |            iM      |         D           |            .
      }                  N}                  _}                    m}            	      ~}                    }         S           }                    }            T      }                    ~            ?
      ~            z      !~         P           +~            S
      :~            a
      D~            p       N~            z      X~                    b~            t
      q~            
      {~            h       ~            z      ~         7           ~            
      ~            
      ~            `       ~            
      ~                    ~            
      ~            
      ~                   ~                  ~                                                  
                   H       *                  4         5           >                  M            @       W            P       l                             M                    '                       M                  	M                  )                  )                  M                  	M                  <                  <                  P                  ^Q                  O                  O                  P      %            P      /            ^      <            ^      H            
      R            
      \            p      f            
      r            n      |                              w                                                                                           $W      Ā                  ΀            X       ڀ                                                 r                  !                                     /                        "            V      ,            G      6                   B            ?
      L            z      V            b      `            S
      j            x       v            a
                  z                  e                  t
                  p                   
                  z                  d      ȁ            
      ҁ            h       ށ            `                R                    G                        W                  fM               S           #            +M      -                    9                   C            6V      M            U      W                    a            Z      k                    w            (M                  Z                  Z                  P                   P       ǂ         ]           Ԃ            p                   h                   `                                      H                   @       .         ?           C            )      M         M           ]            <      i         s           u                                                                                         x                   p       ̃            h       ۃ            `                   X                                                      S           "            +M      .                   ;         f           G            6V      Q                    [            P       ˄            p      ل                                                                    q      +            {      7                  A                    P                   f         D           z                           Z                               +         .           ڇ                             o           A         H                             ^                                        V         .                                                          o           !                    9         H           X                  b                  q                  {         {                    m                                                          {                                                           m      .                   g         /           }         o                    p                    .                               L                   [                   z                            -                    H                                                 ō                   ҍ                                                        &                    ;                    N         q           m                                             m                             ڎ                                                                           -                    @         q           U                   l                                                                                                            @      F            @      ]                   n                               1               o                       m                                  m                    p                       K                                          (         {           Q         .                    /                                        H                               Ց         g                                                   2                    f         .                    n           Ւ                                a                  x      ͓         A                    H                    H           !         {           Ŕ                  ϔ                  ޔ                           c                    H           \                    x                                                            ȕ                           H                                                 9                  `                                                                   I           ֖         D                                      Z                                                 &                    <         T           F                  P                  Z                  d                  s                  }            "                  ]                  ,                                     8                  "                        ȗ            L      җ                                                  X                  Ä                  i                                  ]           $                   3                   B                   Q                                                   t      )                  8                  D         {                                                                          {           Ś                  Ϛ                  ޚ                           {           #                             .                       *               ,                    o                                                 #                    /                  >         M           M         '           |         n           ʜ                                4                                   o           $         k           >                  l            8      v                                             {                    n                       b      ɝ                  ؝                           {                                        o           P                  x         k                                      /           ɞ         k           Ӟ                    u            v                                                   o           ͟                                                                                 {           0         o           N                  s                  }                  Š                  Ϡ                                                                                 {           #         l                    B                                        q           &                    9            +      F                    }         /                                           5                                      5               '                                                                                       *                  E            ݢ      j                           b                    m           ԣ            K                                   l                    b           )                    4         H           P         m                       a               ,                                                 3         >           H         >           l         >           v         >                    g           ҥ                                                 [                               <         K           i         &           y         H                                               B                    g         d                    3                               ҧ                                                 )           )            b      :            m      I                    l                                                                   l           ٨                                    0                  :                  I                  U         {           q         o                    b                    4           ˩         m           @         o           T         &           d         H                                      p                                                                   2         g           <                  `            '      k         H                               ɫ            '                                                          '                [           f                  Ǭ            '      G         d           o         3                       '                          ­                  ҭ         )                       m                                      '      4         >           @         m           [                                                                          î                                                 H           .                  d                  u                                *               m           į         o                                         5      E            <      \            B      h         9                       H               o                    H                       1      %         Z           5                    G            L      ұ                  ܱ                                             {                    B                                                                          {           x            	                  :      e                                             ,           ʴ                    ݴ                             q           5                  F                    Z                  m            "                  I                                 o           F            R      W                  l            "      }            *               ,                                                   Ķ            ]      Ѷ         m                       v                          $            +      5                    N         /           Z            5      d                    u                                5               '                       h      ɷ         k                    /                    k                    "           F                           k                       n      ָ                                                                   a           +         o           L                  a         H                       +                          Ϲ                                p               ,                                        k           "            5      3                    ?            5      I         '           t            |               ,                    k           ʺ                  ۺ                                                 /                                        k           <                  H         ,           [         k                                        k                    "           λ         a                    o                                      H           I                           k                       w      Լ            h               ,                    k           
         /                    k           4         "           O                  h         2                    ,                             Ľ         k                    %                                         H                     >           -                    A                    r                              b                                                                                &                  7                    ؿ                             g                    H                             !                  0                  <         {           L                  t                  ~                                                                   [                                      [                    [           g         p                    0           8         d           ^         3                                                                          ,                       w                                      ݢ      0         T           :            &      D            H      N            }      X            O      g            Y      q                  {            0                                                                                          H                                                                     ]                                                                 W                    o                                                 Q                               	                    '         d           D            	      N            4      a            8      m         {                    v                                        k                    d                       	                  4      5            8      E         {           c         v           x                             >                                        \                    >                               m                    -                    e                                                 }                                           D                  D                g           3         H           J                    f                                D               =                               >         .           W         v                    !                    [                       D                  D      3         =           z            A               [                    .                    !           %            P      :                                Z                  4                  n                  4                  8               {           0                  :            4      I            8      U         {                    #                                         4                  8               {                    v           #                                                                 p           &            T      7                  u         +                    g                       T               H                               2                    >         v           H                             .           p            T                                                        4      %            8      1         {           H         v                    #                                                             4                  8               {                    .           j                              Z                  4                  8               {                                        o                                               ,                  6                    S                    w                                                                                                                      3         l           d            H                                    H                                   [           R         d                    3                                                                                                                {                    d                                                                          {                                        v                                                            o           $                  3                    O                    l         =                    .                    K                    d                    o           *         H           I         p                    3                                        g           4                    G                    S            0      ]            F      y                                                    0                  F                  f                                      0                   F                  J               {           (         H           >         g           k                    ~                                0                  F                                                          0                  F      [            f      k            T      u            F                  J               {                    H                    p                    3                             !                  u         d                                           i                  F                  J               {                    H                     g           H         H           c                    ~                                                                                          f                          R                  c                                                                     l                       L      P            L      `         g                                                               W                                   K                    p                    d                                                          3                                                   -                    N                    p                                                                                                                                        	                             Q           -                             g                    H                                                   C         .           U         v           o            f               [                       f      7                  A            F      T            J      `         {           y                                                                    F                  J               {           @         d           U                  _            F      y            J               {                                                 I                    z            :                  :               +                                                                       -                    b            :               o                                                   $         v           N                                                    :                          O                                               l                               '         p           <            W      N                    l         H                                           :                  :                          B         =           p         v                                                            H                    .           1         3           e         .                    d           !                  +            K      :            O      F         {           j         v                                        {                       [                  K                  O               g           (                    Y                             [                       c               d                    3                       c                                   >           >                    Y         g           c                    |         H                               O            c      k                                        #            c      B                                K                  O                  w               >                                                             K                  O                        "         ,           C         H           n                             [                       c                  c      =         d           y         3                    B                                                   B                    [         g           i         H                                        [                       c      J         d           T         3                    N                                                   m                             g                    H                                        [                       c      T         d                    3                                                                                         $         [           E         .                    .           t         v                                       L                              0        .           X                 i                           (                                      [                      .     Z        K                   !                   N                                       Ā      ,                   1           .                                                    Ā              >           	                   K        (           c                   }        [                      .             !                                                                                   1                 B                   _           -      p                              K                                                               0        g           R                   e                   y        [           	        .           
           l      
                   
        o                   .                            !           }      0                 :        {           t                                              	                              n           )           l      G        J           `                 j                                            m                                    /                                               :           l      I                   j        J                                      H           =                                              /                              #                 4                   M        /                                                                                                                                                          C        H           U           	      f                                                                                                 0                   8             
      @             	      H             F      P                                 *                  '                  1                                      ^,      (            /      0            0      8            ,      @            P      P            6      X            9      `            07      h            3      p            M5      x            4                  4                                    >                  eB                  '@                  <                  t>                  =                  =                  I                  E                   j                  T                  6S                  Mv                   R       .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                         @               K                                &                                                        .      2                    $                            B                     *     N                             =      @                                              H                     `,                                   X                     ,                                  ]                      ,     #                              f                      ,                                                         ,     (                          	                      =                                                             o                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/usbtest.mod                                                                    0000600 0001750 0001750 00000012650 13417732100 0015323 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    (          @     @      PH        H        H        11H        H        1ZUHAWAVAUATSH(H}f  IHEVA	     LA   Pٺ   I        A_AX  }I        AHI  PDMΉٺ   A	     ATLAA<$ ZYu6LH        H        H        HH}  U  EH| AHHuLH        -  E$IT$HE11AEAMcM9   f:LJt` $  wE-   H
 $  Q?ʀQ?Ȁ?AʀQ	?IH1yw@9A  w?Hπ@q@yM (  v= $  w?H)??π΀@y@qHIL LH        #   HUH        1H        .H        HHu1H        HH        He[A\A]A^A_]AWHI        AVAUATUSHHWH        ASHH        ASHH        AsDCH        K@wHcH        HI        H        1AfCKH        DKDC
11fAԋl(  H        H        H41ACH9}%Hi  HH        H PAIE1HC(@A9   In0D1H        UAuDEH        M@wHcH        HH        1AUHH        AE1I        ED9~dIkI        H        IF8LT$L$@p@xHDH@IIMH        1ALT$L$IAI(H        1AH1[]A\A]A^A_1PE1H        H        H        H        H        ZH        H8H                                                                                                                                                                                                 USB devices:

  Error %d retrieving %s
 %s: `%s'
 Unknown IN OUT Product Vendor Serial Class: (0x%02x) %s, Subclass: 0x%02x, Protocol: 0x%02x
 USB version %d.%d, VendorID: 0x%02x, ProductID: 0x%02x, #conf: %d
 %s speed device
 Configuration: Interface #%d: #Endpoints: %d    Interface Endpoint #%d: %s, max packed size: %d, transfer type: %s, latency: %d
 
 Test USB support. usb Low Full High Control Isochronous Bulk Interrupt Audio Communication Interface HID Physical Image Printer Mass Storage Hub Data Interface Smart Card Content Security Video LICENSE=GPLv3+  usb usbtest                                                                                                                          "      <            ^                                                              	                      
                                       2                      >                      Y                      e                      }                                                                                         grub_mod_init grub_mod_fini grub_usb_control_msg grub_strdup grub_register_command_prio grub_printf grub_unregister_command grub_usb_iterate grub_usb_poll_devices grub_malloc grub_free                                                                      .                   8                                                                                                                            <                    l                                                                       (                                                           F                   A                   I       $            P       :            2       Q            @       _                    i            W                                                                                                       6            2       M            @       [            W       q                                                  =                   :                                     d      *            f      4                    >            x      H                    T                    `                    m                                                      |                                                                (                   0                   8                   @             2       H                   P                   X                   `             2       h                   p                   x                                                                                                                               "       .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                        @       w                                   @               X      P                          +                                                         &      @                                               3      2               p      (                            B                                                          H                                                         X                                                         ]                                                          f                                                                                                                	                      
                                                                o                                                                                                                      boot/grub/x86_64-efi/newc.mod                                                                       0000600 0001750 0001750 00000010600 13417732100 0014557 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    @          @     @   HG    PH        HPС        ZUHIH1SPH_PHWXHHP0HHW`HP8HWH        HSH;HHHDH@0    HZ[]UHSVH HuY[]H        H        HH        HHt?I1HM HUH} H        ЅtHH        HE  H1Z[]U11n   H        SHHxLD$ЅuY   H        H|$H        Յu(   H        HtH9   H        H|$ՅtH        	   1H        1Hx[]ATIUHSHGH8H        Há        HtELH        HH        ЅAtHH        DH]PHC HE@1[]A\ATH        IUHSHH?HL$HLD$        Ht2HLH        HH        ЉHH        ҉H[]A\110	v@փ߃A@w8DB@փA	vr@wrrHHHHH	HuAWI        AVAUI͹n   ATI1UHSHH   HWLD$HWH?AׅL|$      H        H|$I        Aօt=   H        H|$Aօt"H        	   1H          I        H|$HAHHC MtH|$@A։E H|$ AH|$pIAMHtEu H}H        HII$t+HC1HH;HPnHD$ЅtI<$H        С        |I$( H{  uHEuCHu=   H        I<$H        ЅuAE H        I<$#HqHC HHkHHHkHHk1HĈ   []A\A]A^A_H        H        H        H        H         070701 070702 not a newc filesystem invalid cpio archive TRAILER!!! newc                                                                                                                  LICENSE=GPLv3+ archelp newc                                                                                                                                                                                                           	                                       )                      8                      C                      P                      \                      h                      z                                                                                                                                     grub_mod_init grub_mod_fini grub_strdup grub_disk_read grub_errno grub_fs_list grub_zalloc grub_malloc grub_archelp_open grub_error grub_list_remove grub_free grub_archelp_dir grub_list_push grub_memcmp                                               S                                                    
                                                                                              2                   A                    V                    q                                                                                                            P                                                &                  M                    b            P       o                                                            D                   S                    i                               %                                                                 $                    /                    Z            :       h                                                                                                                                                         E                    "                          (             %       0             	       P                   X                    `                      .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                          @               	            
                    &      2               =      J                             :                           h                              5      @                            
                    @                                                         P                                                          U                                                          ^                                                                                      (         
                 	                      @                                                                g                                                                                                                                                              boot/grub/x86_64-efi/verify.mod                                                                     0000600 0001750 0001750 00000046650 13417732100 0015145 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    I          @     @   H        H     H@    H@    H@    AUIATIUSHPH        Hy(LK AH        1H          H        I        AAHC LLAY[9ž   GE1H        ]A\A]UHSHQtH        HZHH[]X[]H        AWH        AVIAUATUHSHH|$Hy Lc}D`L} AIGI9s
      LH        HHt  @LL)HSHDH9LzsL HcULHuI        AHc}HU LLAE1LHھ   H|$H        ЉHH        ҉H[]A\A]A^A_SHHWPHHrHwHHH        H[SHHHwPHwHH        H[AUIATIUH        SHӺ   HHt$
HtHt"
AE                 D$
u
AE       @tc?   Ht$AE LH   D$<   <w/-      Ht$LHHH   D$H	[<AU t#r<ua@   Ht$LHuKD$   Ht$LHu/D$H1<   Ht$LHu
D$ȉH        -   1H        H[]A\A]AUI        ATIUSQH_Ht/1H| HtAHH
uH+HH        HZ[]LH        A\A]USHPHoPH        H} HH        HCP    HC    H            Z[]ATUSH"H           1H           H1   H8H        Iġ           DH        ȉD$HHt-HhHtDH}   Ht$H        Ѕt+Hm DH        -   H        HH;H        H/1H+H[]A\AVH        AUI        ATUSL MtUI\$HtEHkLs!U uH1H        AL9uH        1H        HM$$[]A\A]1A^ÊH        e1	        H        HDH        AWAVAUATUH   SH        HHHH$u1H             IH        H8HH_  MV  H$HHD$HT$8Ht$-HH        Ѕ(  D$-<tuHH        LH$%  1DD$8H        H          H        I        AъD$-LmLl$8<t<     Ht$.HI        AH  DD$.1H        H          H        I        Aր|$.     Ht$4HAHw  1DD$4H        H        #  H        Aֺ   Ht$/HAH1  DD$/1H        H        +  H        AD$/<  Hk0H        H< {  p   H        HIu     1HH        E1HH        к   H        HH        ЋD$8   Ht$0H߆fD$0H        к   Ht$.HH        к   Ht$4HH        H           Ht$/HIF HD$   fDD$2fAEAAMcI     LLD$It$HLD$HD$L9      Ht$2LH        HL$LHH        HHHL$E1HL$L   H|$H        HD$uJID$/H        Hk0L;|sOH           Ht$2HL$HHHL$H        -   1H           HH        HH        I~Hƺ   H        HD$ELt$H        H        h  H        I        L01DEALHH        H<$H        HH        L1HH[]A\A]A^A_ÅH           1H        UH        SQH     H        H     H        H     HG8 tH        H     H:H        HHt&HH        HHHH        uС        H        HE HH        1Z[]SHH^H|$Ht#H{   Ht$H        Ѕt	H1HH[ATH        I        UHSHHtHHAHuH1[]A\AWH        AVAUIHATUSH   Ht$HT$Ht$MHL$LD$0HT$`ЅF  |$M      Ht$NH|$H        Hu|$Nu   Ht$[H|$HtH        8|$[ l$]Dd$\u@wH        H<IHuH        -   1  AwIcH        Hk0H< tH        HIu&IH        -   1H        U  H        H          1I        H        Afl$^I        I~HfŃȉD$TA׿   H$AHI  H<$   H<$AV(Mt"HT$LH<$AV0)t'HLH<$AV0   LH|$HyU  L,$   Ht$NLAV0LA      Ht$[AV0Ht#H   LLHNH|$H   uYH,$   Ht$NHAV0   Ht$OHD$OAV0   Ht$THAV0   Ht$PH|$H   HHD$LH<$AV0HD$H)_l$PfH   m  HLH|$H        H9M  LE1LH9s$2HJ@   @   HJH9wcH<$H        AV8H        H        E  1H        H<$AV@   HD$Ht$RH|$H  BJ?	HJ   HJH9xr΀9u	vLiH2   Ht$RH|$H        ЅS  HD$H        H        N  H        D@1HD$pH        HD$    HD$ IcHD$(Hk0HHD$8HD$8H\$H;XH          1H        H        T  H        H        I        Ӻ   Ht$hH|$AH}  1H        H        W  H        DD$h1H        H        Y  H        fAEAhHcH  
  1H        H        \  H        IwHH|$AH9I  H        1H        _  H        Ӻ   Ht$hLH        1H        H        a  H        E1IL$L   H|$ H        HD$ 2  H        H        f  H        HD$Ht$0LHtH        H        HHuLH        -   1zLkd$(0HLHt$H|$hIAT$    ID$H8 u!I|$(H        H             Lkd$(0LHCH Hu!HS(H        -   H        6E1E11HM HT$pHt$hPhuH<$H        L1=H<$H        Lӡ        uH        -   H        H   []A\A]A^A_AWH        HAVAUIATUSH8: Ht$v  HGH HtH@@W  N  Lt$H        H        ILHxHLHH  HHWx tHH           H        պ    H        H|$H        I        HH        Iĺ    Ht$H        HAMp  h   AHHI        uLAK  Hǹ   LH        CH    HCH{@ yH           1H           H        HHuLA   H{@H        HHEuLAHA   HHS@LH        H;C@tWH        8 u"HT$H           1H        LAHH        HH        B1E1HH}LH        LD$A׋T$tHH        HA1Lm HHkPLH8[]A\A]A^A_HI1HH        1AV1IH        H        AUIH        ATUH        S  Ճ%[]A\A]A^H           1H        1H        H          H        I        Ճ   H        H     H        H     H        H     IF8 tH        H     I}AHHt&HH        HHHH        uС           1H        I} AHIuH        (UI}H        I        HIuH        (HLHH        LALAHtHH        Љ[]A\A]A^UH        H        SHxHHt <et<1uH            H             H        1H        H        H        H        H        1H        H        H        H     H        HtT8mimguLHHXCH        H@H9   1h   H|$H        Ѓ;tCHHHHurH        H|$HD$CHHD$HHCHD$XH        Hu H        H        H        H        HHHxHu<H        H        H        H8 H        HDH        H        I        I        H        1H        H        I        I        H        1H        H        H        H        E1H        1H        H        H        E1H        H        H        H        H        H        Hx[]H        SH        H     H        H     H        H8H        H8H        H        H8H        H8H[              s                                                                       must be %u bits got %d bits
 crypt commands/verify.c bad signature one argument expected public key %08x not found %02x%02x  
 enforce no len = %x
 v = %x
 time = %x
 pk = %x
  actual pos: %x, expected: %x
 unknown hash hash `%s' not loaded alive
 @ %x
 l = 0x%04x
 module `%s' isn't loaded .sig big file signature isn't implemented yet premature end of file %s two arguments expected check_signatures error loading initial key: %s
 Verify detached signature. [-s|--skip-sig] FILE SIGNATURE_FILE [PUBKEY_FILE] verify_detached Add PUBKEY_FILE to trusted keys. [-s|--skip-sig] PUBKEY_FILE trust Show the list of trusted keys. list_trusted Remove PUBKEY_ID from trusted keys. PUBKEY_ID distrust pseudo verified_read rsa gcry_rsa dsa gcry_dsa md5 sha1 ripemd160 sha256 sha384 sha512 sha224 skip-sig Skip signature-checking of the public key file.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               LICENSE=GPLv3+  crypto mpi extcmd gcry_sha1 verify                                                                                                     	                                       s      w                                                        
                                                             )                      7    	 (              G                      S                      a                      t                                                                      	 0                                                `                                 	 8                                                     $                     /                     >                     I                     U                     q            P       {                                                                                                                            	 @                                                                              7                     C          =       k                     {                                `                                     C           P       P                                                                                                                "                     /                     ;                      grub_mod_init grub_mod_fini grub_strlen gcry_mpi_scan grub_pk_trusted grub_errmsg grub_strtoull gcry_mpi_get_nbits grub_crypto_lookup_md_by_name grub_dl_load grub_env_export grub_crypto_pk_rsa grub_memmove hashes grub_strdup grub_crypto_pk_ecdsa grub_verify_signature grub_unregister_extcmd grub_fatal grub_file_seek grub_errno grub_memset grub_register_variable_hook pseudo_fs grub_register_command_prio grub_file_filters_all grub_load_public_key grub_printf grub_unregister_command grub_file_read grub_crypto_pk_dsa grub_modbase grub_zalloc _gcry_digest_spec_sha1 grub_malloc grub_crypto_pk_locate_subkey_in_trustdb grub_file_close grub_file_open pkalgos grub_real_dprintf grub_crypto_pk_locate_subkey verified_fs grub_file_filters_enabled grub_error grub_free grub_register_extcmd gcry_mpi_release grub_env_set grub_memcmp grub_env_get           3           <                     U                     a                    p             #       z          0                                          5                                                     @         +                                                           5                              $                   @         &           s                                5                4                    7                    5                    5                    -           *                   L                    f            C       w         4                                                                                9                        Y                4           %                  D                    P         $                       s                   }                $                                                                                                  )           5         5           P         *   H                   3               5                                                             #                0           +         &           I                   S                   b            #       l         0                                                             #                                                         #       #         /           =         )           _                    q         *   (                                   *   0                *   0                *   0                *   0                *   0       q	                   	         *   0       	                    	         /           	         &           
            5       &
         4           :
         *   8       I
         *   @       a
                   z
                   
                   
            #       
         0           
                    
                  
         5                       C                4           !         3          4         3          E         3          _         3           s         .                    #                    -                                                                                9                                *         1           ]            3               &                       5                           '                   F         /           [                    s                            4                                                          0                       #                )           K         &                    0                                                             #       F         9           _                   i                   x            #                /                    /                                                             #                0                    &           2                   <                   K            #       ^                   h                   w            #                                                         #                                                          #                          '                   1                   @            #       a                    {                                                  #                1                    ,                       Y       %                    1                    Z                  i         4                    5                    5                                           5                4                               R         +           \                                                   $               3                                        5                    .                    3           (         -           L         2           h            )      y         4                    +                    +                    &                                           R               4           +                   :         5           W            Y      x                               Y                                     #                                   0                       k      %         4           3                   =                   L            #       V         .           k         3          |         3                   3                   3                    #                    -                                                                       0         .           :         -           N                    e                                                                 :                                                                                                "                    3                             "                    0                  :                    F                    W         (           w         (                                                             #                                                                                         8                    B                   L                  Z                   h         8           t         6           ~                                                                                                                                              0                  
                  L                                  !                       R                  @                  q      !                   0                    :            ~      D                  N            X      X                  d                   u         "                                        3                                                          %                                                                                                            (                   `                   x                                                                                                                     0                  H                    P                   X                                             '                       *                                                                               @                  H                  P                  X                   .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                           @                                          @               8-                                +                     0      P                              &      @                G      0                           3      2                     L                            G                           `                             B      @               0G      @                          M                     0$                                    ]                     @$      H                              b                      @$                                    k                      \$                                                          h$                                	                      )      H                                                   pI      t                                                                                                                      boot/grub/x86_64-efi/nilfs2.mod                                                                     0000600 0001750 0001750 00000023110 13417732100 0015020 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    #          @     @   DG1E11AE9=CLcЃNI9tu   s	DHD@   뾀v~@@1@1PH        HPH        H8H        1ZULHI        HWI  j ERAARpASAQMIHHHH        H0IIHOHW`HwXH        HPH   SGIA   EDHx)ЍX
DDID)ADADHcH!DH@D!IAA[TAWAVIAUAATIUSHH8F8#  G   H
H        HcHH  AD$9IL$8I        HT$,LLL$HHL$D$AAAD$8HL$Hc|$,H4ыK   u
HcHHHcHEHHDtHHH        Dd$AE  s   H  AIN
ANMc1LHH        H        8    ED9tH           EuHT$,LHHD$AD$,    C@u HcT$,H
      HHH@D9}D@@E@HH| HEHHDHHH        H        	   1H         HD$HH        EHD$t-HH        HHD@tHH        H8[]A\A]A^A_AU   H        ATIUSHH(L  oH  1HH        HHu"H        	   1H        H?M
   HމIIMLHcҹ    HL!H        H$H([]A\A]AWH        AVAUATIIU   ASHHDL  HT$   AOAAO
H  HH           HcL!HLD$u+HH        	   []A\A]A^A_1H        HHL[]Iƹ   A\A]A^A_HH        USHQ    tHCHxH        HHu-eHWH   H        H?H        8 t:I111LCHH        H        8 tHH        1HCD  HZ[]AWAVIAUATUSHH(      HT$t1I        I        FHWH   H        H?H        8 t@f|$ t8DD$Eu4D$HH;ks11LL$A   HHAA<$ t1   11HMLL$ HAA<$ u߿   H        HItHID$Ht$I   D  D$t%<AǇ       u   h<u   ]QIWH;H        A<$ tLH        OAG8AǇ      f% f= @tf= tf= @@HL$LH|$ Aօ   H(  []A\A]A^A_AUH        A1ATIUHSHӺ   HHЃ    uDHSH   H}H        H        8 u
ǃ      H                 tHC $D$$AH	Ј$H        HUHLU H[]A\A]SH   HwH        H?HHuH        	   1H        H[AWH        AVAUATUH  SHX  HH  1H  I      HI        Aօ   f{44    HC A   H	H  H1LD$PH4   HAօtH             o  f|$V44D$P^  Eu'*  H        	   1H        tH$   H9C8  I        A<$   CA   LS@E1LD$HI        HL$A8   LLL$IAA<$ E  D$@L$1LL$L     HpILIAA<$   CE   1H  HAH
DHHH{8HT$HH        H  H¹   HH        HuH        	   1H         ILD$P   HiT$   HHAA<$ ucH     H$   H        H(  H   Hǃ     ǃ        HH  H        HzA<$uH        	   1H        HH        1CHH        E1n   Ht$PHH        EHX  []A\A]A^A_UHH        SQHH8H        HH        HHu	E     H@hE H        H8H        HH        С        Z[]UH        HATISHH8H        HH        HH   P   H              I           P   P   P   P   P   P   P   P   P   P   PD   1D   AH`I$I$    H        H8H        HH        С        He[A\]UHH        SQHH8H        HH        HHtH   P   H        HE HE     H        H8H        HH        С        Z[]AVH        IAUATI        UHSHH8H        HD$    HEH8H        HHL      LI        A   I        H        HT$LH        A> uvHD$    tHHD$H     HpH        H|$AH  H@H]PHE    HE@1UHPH   HH        A> tH|$L9tAHAH        H8H        С        H[]A\A]A^UH1SHHι   H(H|$H$    HT$Ht$H        H8H        H} H        HHD$taH   A   I        H        HHH        H        8 uHT$H        H<$H        HD$H<$H        H   H9tH|$H        H8H        С        H([]SHH        H        H        HH        [H        H        btree level mismatch
 btree corruption
 btree lookup failure not a nilfs2 filesystem %02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x nilfs2                                                                                           LICENSE=GPLv3+  fshelp nilfs2                                                                                                                              3                                                                          	                                       0                      F                      U                      b                      p                                                                                                                                                                                                                                                                                             grub_mod_init grub_mod_fini grub_disk_get_size grub_fshelp_find_file grub_xasprintf grub_memmove grub_divmod64 grub_disk_read grub_dl_ref grub_errno grub_memset grub_fshelp_read_file grub_fs_list grub_malloc grub_error grub_list_remove grub_free grub_strndup grub_dl_unref grub_list_push                                                                                                                                                                          g                                                                              r                                                                                                                               %      7                  L            (       ]                                                    %                        :            (       U                                                                                                                                                             Z                   d                    {                                                          e                  {                                        *                  6                    O                                                                      (                                               >	                    	                    	            =       	                    
                    D
                    
                                                  (       $                    m                                                  =                                                        
                               L                    ^                    m                                                                                                                                                                        U       '                                                                                                                                                               /                    I                    V                    e                    p                                                                                                                                                    1                          F                                                                                                  
                                        '                  J                  T            1      d                    p                                                  1                                                                                                                                                                      !                    +                                                                         |      (                    0                    8                   @                   H             F       .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @       5                                   @               X            
                    &      2               u                                   :                            P                              5      @               !             
                    @                     p                                    P                                                         U                                                          ^                                                                                               
                 	                      0      !                                                   "      g                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/normal.mod                                                                     0000600 0001750 0001750 00000534300 13417732100 0015123 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                             @     @   SHGPHHuHH        
   HChHtH[[SHH        HH        HH        HH        HH        [SHHH        HtHH        [1[ATI        UHSHHAHHu        8#uHH        1[]A\AUAATAUHH        SQH        u
H        E	HHt3HH        HHE u&Et1H        HE             1Z[]A\A]1H        1>1SHH        @HH        [PH        1ZH                9H           1H                1AVAUIATUH        SH_HtrLc LsHMt I<$Md$MuH{ H        H{8 tE1HC8J< IHtHH{H{H;H{(HLLH        []A\A]A^H        H        AWAVAUATUSHH(t$T$uGH        H        HH        H        1H        H        H   H        HHu(   H        HHtJHH        HH        Ht'1HH        HIu1H        16  I        H        AHL,$tHH        IE1H        H$HtHH        IE1;(I        u5HH        H        HH        HHuT   H        H$HHH        1H        HHtTHH        H        о/   HH        Ht  H        HH        HAH        H        H        H        H        H        1L     H|$Ӆu&H|$HtLHH        H|$AMtLH        H        H        H        MtLH        H        H        H        LALALH        Ѓ|$ H             u5Ht0}  t*\$1HH        ЅtHH        H([]A\A]A^A_AVH        AUA1ATUSHЅt!H        H             i  H        H        H        EH        I        HEH        HHH        1HH        HH   HtwHAHC`Ht
   HHS8f HH        v      11I        HH޿
   AH޿
   AH޿
   AHHH        H        8 u[H        H        1H|$     DH        H|$Ht1H        H        H|$H[]A\A]A^R        11        H        1H        С        ȣ                tȣ        XATH        USHHu
     Hx   H        H        A   ЅubHH        L`/H        LHHtLHHH        1I        AHH        ЅAtF1HH        H        HHt5HH        Ht!HH        E1HH        H        H     H        D[]A\ÅStH:.H        H        ӃuH        Ӄu1H        1[AWH        AVAUATUSHH        QH             H        H        H        H        H        HH        H        H        tHH        E1H        I        H        1H        H        H        I        AԿ2   H        H        H        1H        H        E1H        1H        H        AE1H        1H        H        AH        1H        H        1H        1H        I        H        H        H        AH        H        AM,/HH        I        LALI        HPuH        H        AH        AH        H        AZ[]A\LH        A]A^A_PH        H        H        H        H        1H        H        1H        1H        H        H     H        H8ZH        ATHULd7 HSHH L9t(CK1HHCfSfCHCsHPH[]A\AWMAVIAUAATI        U1SHt$HL$;l$ttH\$L9sbEIvDu;AfAPAFfAҍH9r2AFfAVfA  H9rANfAVIv
   AHI H[]A\A]A^A_AWEIAVMAUIATIUSH(IH9   I        HHD$L$L)AII        LT$HHMD     L)IL AL$LHLL$AIHD$KL HH$L)It H        H   IHH$1LT$L)IMD ALL$H(H[L]A\A]A^A_AH([]A\A]A^A_SH        H        HfD$
 H|$H   [ATUHSuvI        AԃH        wKH        $H        :H        .H        "H        H        
H        Aԃu$HH        H             []A\[HH        1]A\H        SGHfHGHP@fCCHCHP8CHCHP8C[AUIATUSHcH,    HH        Ht$H<H        H        Ld J,   H        HI$H        Ht$H<HuH        H             &HUH        H        HD(    H[]A\A]á        IH        11H        LUHH        SHAP        9|@        yȣ                HcH        H<H                        ȅ        yH        У        H        8H        HHHcH    H        Y[]AWAVAAUMATIUHSHL|$PH<$L; tHL)I0HHI$H9rXHLD$H        I0HI} HLD$tIE )LD$H        LD$H             I(I$HI;    HE IM H)H4HH<H        H   HL$Hu IE H    HL$H<LI        I$DH<$HU AIE DI$HM L$$L1LHH        HHU LDLHU H[]A\A]A^A_H[]A\A]A^A_AWH        AVAUI        ATUHcHSQHH        H        HM          9}t)A   LcAƉ        IM9        s#HL)yH        HcHH<IAD)        yH        У                H        9}-)HHcH4H        HH8H           H        : twH        I        )HHcH4H        HH8Aԡ        H        H        Hc	HcС        HHH)HHH<AHAՉ        H                             1Z[]A\A]A^A_UHAWAVAUATSH        HxH}HE      HHEH]@	  HE    HE    I             H        HHtHS@ftH޿
   AHL}H        H        E1LH        H        LH        ILpH        H]HtAH DHEHHHtJ<    H        HIuH}H        D  IuE1HHHUH        H        A    IDL9II        HEMt;M}LLxHuLALAEH        I M?LxI        LAH        Lx8 uHuH}H        E1H        H        Ѓ
    =a     y=H  z  2	7    5    =G       =O     =K     =M  Q=P    =S      =i     4=d    =b  to  =e     =f       =p    =k    =n    y  =u    =y    ^  HE    1HUH  HHUDHH        c  HUHUH;UO  HHUHEHD8     H        HuH}HUIHEMD<   H        HuLH        I        LHEAHEЃ}    H        H        E1H}H        H        H        HH        E9t*HHhHpHhAHpH HEHM1DHLH        H}H  H        H<   HpHEHIHpu(H}AH        H               E1HHHUH        H   IT: uHHMHu< u:H    t)ASH        LMLEHMHUAVDHA_XHE2A    APLMLEHMHUAVDHH        AYAZH}I        ALAHUHEH9E  H        H8HxHEH+EH<   HEH        H        : tH        H             FHMHUHHuH        H)H   H4HEH+EH        H    HMDMA)  EHE    ~NDHUHuH        A2        HE    A9}DAHUHuH        HHMHUH        DMLEDС        WH        1D1H        4k  LuM  N<   H        H8H        LHEH        H        8 tH        H             H        H8Ht'IWHuH        H        BD8    HE    1DHH        ELEHMmH        H   V   HH        H}>  HUH   HDHHUH        HMH;Ms^A   LEHUDHH        <P^w4EHEQE    PHUH        LMLEHMDHXZH        -H        H        H        HuH8 tHH)Ht+1H        E    HU1H}H        HEH}I        HpH        IH}AHAL1He[A\A]A^A_]AWH        AVAUIATAUSHHHT$LsH+LIHT$        M   HT$LI        ALH        HmHH        H        H8H        HLHt3H(HT$PPuHIMDH        DHP 	        D$HӋD$H[]A\A]A^A_AUH        ATUSHHHo@LeLHIt`LI        ALH        H[HH        H        H8H        HHHD$AHD$1H[]A\A]UHHAWAVAUATSH(H  H        1H        HHHEi  H        HHE@  H        HE1I        HtdC( L#t'MtM&LH        H{@AHLAILE1A<$*uIAA$!]vHLH        H}H        HI   IH        A<$ӅtI:   LH        HtHX  <	uH< t!]wH        L(I        Mt_Iu HLEAЅNMmPLEH}H        H}H        H             He[A\A]A^A_]H        LHUHIHUHI        HHLt@P1E1ɺp   I        H        AWLH        ZHYuLAHAHXLH        H8H        [AUH        I        ATIH        USQHH        HHu   7{( u
HHu%MuHsHAՅtHsLAՅt1Z[]A\A]AUH        IHATIUHSQH8H        HHu0   H        HHt8Hk 1H{ LkuNLH        HHCuHH        H        (HH        H        Z[]A\A]UHH        HSAQH8H        HHu$AX[HH           ]1H        x( u&HxH        HH        HH@    H@     Z[1]ATHH        IUSH8H        HHu0   H        HHt71H{ C(   uNLH        HHCuHH        H        (HH        H        []A\UHH        HSAQH8H        HHu$AX[HH           ]1H        Hx u&HxH        HH        H@(    Z[1]AW1   AVAUI        ATUH        SHH  H|$H|$AHՅtH        H    1  1I        H        I        AA׃Ats
tntgt!uH        1H        AF^wC=  wCDDtH        H        D$1ҋ\$1HD$ٺ  )1H<AH        H        H        A   H        AԾ   H$  H        ЅtiH        L(E1I        MtIuH|$AօMDMm Mt-ID$Ht#IT$ H$  H|$H|$ՅqH        i  H        H        HH9wHH        H           1H        H  []A\A]A^A_Å~H:
H        H        H        PE1H        H        H        H        H        ZH        H8H        AV    H        AUI        ATUSH        IH HӺ    H        H        H        HHtiH        LsH(HtWHu LAՅtHmPH        8 tH        HH{H        H        H1H{H        Ht   H    H        AH []A\A]A^AWHAVAUATUSHH  1H        H        HI  H        LH$H        H     H        HIE  H        H        H8Ht;HHH        A?Aօt{IAG L9rHH        LH        HH   HH        HL|H        } HL$I        хHL$tHݿ   H        I        HIuH#HH        HIGAI uLANH        ILH        /LH        H$H        LH        H             H        H        H[]A\A]A^A_SH        HHtHCXHt
   HH[AWAVAUATUSHH"  IH        HHHuH           HǾ/   H        HIHH             1I        @l$I4HL$I        I        AׅtHL$HuHH        DI1,$It LAׅuD<$Dl$1AE	E.5HHuLH           H        1H        HH           H[]A\A]A^A_SH        HH        ЅuH        HH        [1[SH        HH        ЅuH        HH        [1[AUH        AATUHSHQH8H        HHH        H8H        ЅA"                  tt6WHH        HH           HH          H        HtH        1DH9H        HH        Ht)H        DHE t8uHHŊuH        HSH@2@Ɖǁ   ǀu>HH9s1Ɓ      u,HrH9w#H)H RA   JE1E@xH6Ɓ      u	HrH9v%   =   uHBH9wH)HH)Z[]DA\A]ATH        IUSHH   H        LH0H        H        ЅH        u:   H        LЅu:H;Ht>1H        H           H        LЅtHո   HH             1[]A\ATH        USHHHHu   ^HHH        1H        HHH        Htĺ   H        HH        AHD[]A\USHHuT        H        tH        H        HE   HH        Ѕ   H        H        Յu1vH        HՅtHH        1H        Һ   HHH        H        ЅH        tHҸ   D$HҋD$H[]AWH        AVAUATUSHH(H     H             H        H4$H        H   H        11LD$HL$H        Ѕ  T$H        t^HL$HcHDH        ~MH        H9H        Ѕu0H        =   H8H        HtHH        Hݸ   u @tHHT$H        ߃|$        wEH        HH        H  Ct1H{H        Յ  HH        H8<-u  H        fD$- H8D$ HH        H.  @($  Hh@H}      H        H        I        Aԅ7  H]H{ t0Ct#D$   H        H|$Aԅ  H(ɺ   H        H        Aԅ     H        H        H        Ѕ  H]I        H{ B  H3HtJ1H        AHHo  HǺ   H        AԅHH        tB  H(<(
  )   H        H   H        ,   HxHH        HHuH1H        H(Ht'HEHt1H        Ѕ  Hm8ÃX    H        H8H        HH        E ,H     j  H;H        Ht&1H        H        Ѕt
H2  H  H        H8H        HH        8 HD$  HH        I        HHj  HH        HI  HH        L tHH        H1I</   H        Iľ/   H        I        H8AMH        tbHLH        HIl  /   HAHt@ 1LH        HAVLE1AHD$8 A.  H        L HT$H        LLH        HT$H        HH          H        E1H        H              A   HAEP  H        1H$} H        H8 #  H        H        H8IH        H8IH        McE1It< HAE)H        H8McMcJ|0H        LHH        H        	HLt ut\HǊHHW݃}  uH        H0H        Ѐ; H        uH%|$ t
HD$H8H        H8H_|$ H        tHD$H8H|$H        H8H             1A   HH        BH([]A\A]A^A_DOE1w  AA1D)Ɖfd 1Ɖȹ   1Ek)CDk1PH        H        HH<H        ZHD$D$D$D$D$D$	D$
D$D$D$D$D$yQ AQ 1)AQ 1A  iЀrb  1ALDm  l  fDwfpm  fAm  1AAfD1ɃAut]D9r%Au
   tDH)HuA   ¹  V1Af< DFF1FVHÃwʀ>>u~>t	1? HƊ:utHH1ø   UH        SRHHtHsSHX[]UH        SRHHtHsSHX[]SH        HHtH{S H[UHH        SH        P1Hu H        H        1H        1Z[]	  H        ATH        UH        SHHtL#H{S(HLH        H     []A\ATH        H        UH        SH        H        H        1H        L'  L9r[]A\H        H        ՅtH        Q8 tH        H             H        H        1H        H        1ZH        HG~HtH@HSH        H        HHtkH        11HH        H        : u)H        H        H             H        Љ[Å~BHH           HI        1AHH        H        HH        HH8HAWAVAUATUSHHH4$T$I        H        AHHLd$uE1   I        H        11HH        A} 
tANL{H        E1     I        Mt$HI?AօuIHAօuMHAAA}  tH        A     H        EED;#<I        AՅLl$yH        H        H        HD$HIt#I        I        II} Hu1LAׅuAEP  D$uOtKH        HH        H        ЉH        1H        H        I        AAL|$ II        Aׅt,HSE1A9}9B@tAHRHAEy6t.~!HD$ HL)H=  >  LILuH        I        AH        AEDU    DH        L(M   I}p    H        HD$H   H        H8 u"H        H        H        H        Ht$HމЅA   tc'H        H           1H        H        H        H             AUp	Mm E1H        L(I        MtWI}H        AׅuEu7$HډLH        ЅtH        H             Mm I        AIHD$ЅLl$~H        I        8H        ~iHD$HL)H  w%H        ЅurHD$A? At  AHD$ H        DDH        HD$ IEuH        H        AH        V  Ex8D$ H        I        AH        AH        ҋD$ =M  =  ncd  $'  
   +  ^   =G     eJ  v   v  =H     =I     [  =c     ,=P  t{=O  t`9  =Q     =a  t4"  =g  t_=e  t4=f  t}  =n  t3=p  t!   1H        1Yh61)+9	~
1
P9MH        	H        AE1   <$ H          H        п   H        H        ЉHH        HHH        HSE1A9i9B@t	AHRHERH        D  A   ED  I        HAHHLd$H        EI          H        1Hо   HAH        HD$HII  H        1Ht$8LH        H        9
tKLsH        1     I        Mt#LI>AׅuI~LAׅuMvH؃H        I        8 u8HD$88@uHt$8H        H        7AԅtHD$8H        H        H             H        Ѕx?H        H        H     HD$1HHH        |$ u&1H        1HAՃ|$ H        H        8    1H        Ѕ   H        D$         ̀|$ HT$(H        H8H        ЉH        H        1H        HT$(rE1ZHH1[]A\A]A^A_AWAVAUATUHSH t$t5HH        Ѕt!H        H                       H        H        E1D$H        IӃ}D Ht_H        п   H        HIq  HH        Ѓ|$ t H        H        H        HEH$    t>H$HHLH$Mt%LH        HIuH        E1Ht%HH        HIuH        E1H$HMtH$LH        H$HHzH        HHuH           Mt!A4$HPI@rA|$ tH >HHE@0@t@>u>H@0HH@rHH$ H        H        H        H        H$H        Ht<>t
HHu{>  HH        H        H        HU8u0H}(H        ЋD$;tH        H        D H        8 uBH        Ѕt2H        H        H8H        Ht
11HP D;#tH        Ѓ}D t?Mt.A}  t'LT$   H        LH        H        MH        tLH        H        H        MtLH        H        H        HHH        []A\A]A^A_{ xHsH        H        oH[]A\A]A^A_HGHAVI        AUATU1SH? Hu7H        H{H;H{(HH[]A\A]A^LkL#u
H9kE1I|$ uI<$AI|$AD;k0sID$DAH<ASHcWHHH4HHH        ЋK1[HSHcGHHkHHcPH 9H<OHcH4H        HcSHkHH+HC[SwH9w   })H        wH?HcHHH[AUATUH        SHR        H        L H        L(HIDI9IsuH        L(HIlPH        H8H        HHuH                H        HH         HH        H        H        H:HHtH HH        HH        H        H(HAHH        X[]A\A]UHD  H        SHQF    FP   H} H        HH;HCHt
H   uH        H{1҉Z[]UHAWIAVE1AUATSHHHUDfHMH        DEDMLckE9}$HHUHMLAHUAHMHMkHcCIL+I} H4H        Aw1HHAHuHtAM9KAD$DDExAGA9|.D)DAGE   E   E    E   
}   EgL+E1H        LLHUDAIAHUEDE    EEEEHcCHkHI9  LH+C(Hm۶m۶mIUHHLI8 u%AELExH        HcHLEI MA9tHcCHkHI9tA9   }u1EAwLEUAII?AGM	H        AGMEULEAI} )EDIRIcuAO(AWA0Mj\H4PH        H LLH        AE;gEv|D;s   MEȉEI}u_D;suYE;g}SDAGAwI?	H        1H        A9G|EHU    I7ҋEHUAE;gXAurEE  AwAwAG$I?tAG	H        EI7H        t} !     } !     }    } tKAwAwAG$I?tAG	H        Ѓ} I7!  H        u    Ѓ} tRAwAwAG$I?tAGAG	H        Ѓ} I7H        t!      HcSLH+C(Hm۶m۶mHkHHHHRHH   HcSL$I9rA$tEoE1H        IHcCHD9~IkHMLIHHMAHkLH+C(Hm۶m۶mHHT
AOHAwL;$H        rA$fAL$fAAD	D	I?I?HGhHtHe[A\A]A^A_]He[A\A]A^A_]AWEAVAAUAATI        UHS1Ht$;]0s!EEHk8DT$Hu(HAH[]A\A]A^A_AUATAUSHH(GHco   HkI        H/GHH} H4AHcSH+E HkHHCrH)HH<HcHH        HcCH} H4AH+E HCfD$f<v,H|$H        ~͉oHcHkH@GCECtsE111HH        H(   []A\A]AW1IAVAUATUHSH(DgT$A;G0s"IO(Hk8D0    IO(D4    IG0HD$E   <
  AGI?pH        AwHcHkHIu1  AWAOr9}+Hc)HǃHkHcHkH48H|8H        IcwH|$H        HHkI7ЅtMcoH        MkM/A]A+_I}ЅoIcOIE HcHI}E1H4H        AGH        AEE;w0s2IMDHT$HD$AH<IMHD$HT$H    A] AGA9DO1A;G0s"IO(Hk8D4   IO(D0   AG    AG    LmAG0  
   HH        HIuHH        Ll Ic_LH        H)H<    Ht$HkIHICHt$E1HHH        HH߉HH        Ѕ
AWHLcŋCLD$HcH4)LH<HH        H    HL$IcwLD$HHL$J    H<LH        LE1HD$HD$HE;w0s2HKDHT$HD$AH<HKHD$HT$H    E1H        E;w0s/DHL$HHk8AIW(HHT$HT$HL$B,kI        AGA9DOE1E;w0s[DLD$HHk8HIw(HL$AHL$LD$HIW(9B,tB4   IG(D0   z4tB4   AAwH        LAGAGL51ۃ|$ H        u   &A;_0s1DHk8LIw(DN4DF0H([]A\A]A^A_AWAVAUATUSHQGOHcHkH/9M  E1I        D;c0sEHAMk8Lk(LAAE,݋SHM E1I        HcUH   H4H|H        HcHMD;c0sHEEAJ<AHEJ    ۋCDkE1I        CD;c0  EHMk8LHs(ALHs(9F,H        tA   A   E11DHA9G   u HH        Ѕ   HcU HcMI        HE HuE1I        HH<AՋE ED;c0sHEEAJ<AHEJ    H}H        ЋS+SHu0H}HcHkAՋCKA   s   1H߉CH        и   Z[]A\A]A^A_AWH        AVAUATUSH1HXЅt!H        H             1  8   H        HI  CD   AG   AG$H        HIt|HI0H        ЅteHs(1LH        AG    AG    1AG    A;G0sDHk8IW(B    AG     H        8 i  LH        \  IG(    H        I(H        AG0    IHt	AG0H E1H        E;os;DIHkH|IAM'A0HID$IH| AA0H        Hk8HIG(`H        1Ht!Iw(Hk8HIw(D    H 1H        A;_0sؾ   1Hk8IG(HPH1A         1LH        A;_0s!Hk8IG(H8HG`Ht   E1H        A  AH\$ a1A;_0M1Lk8Mo(IE HP@fD$  D$L$AEI} L$	D$t$H        A;m }WD$    IE HP89D$sIu     H        D$A;m }Iu 
   H        I} H        t$I} HGhHt%Ab       AG    RA  A	  A
  A   A<    AD    A(
  AO  7  ,AK    AM  {  AH  
     AS    Aa    AP     Al  SAf  '  Ad    6    Ai    Ak    Ah  1
    Au  6Ar  |EAo  i  Ap  t.An  	  SAx    Ay     	  AG  AwAGHHkI@AG    9O   AOAGQHcI9H        }!HkAGD1 AwAG    9OHkt1LgAWIcwHcHkIHcH9}0H HtH<H        IcWHkIH+HAGBA9G~AG    AGAGAGAwE11     LH          AG    AG    IcGHkIpLH        E9u                H             H        IcwH     H        H     H        H     IcGHkIH8H        HHH        Ht$HH        HD$ H        H8HuLH|$  H          Hl$ L   H        HH        H   H        H<   HH        HIu!H        H              E1H        HHHLH        ID      |$H HD$(D$    D$A;G0\$IG(Hk8HHP8vC1HHD$(H        HDHD$0IG(HHP@HIW(fD$  AG    L$D$4BH:L$	D$H        t$HIG(x    H0H        I        AH        IG(:wp2H        HH        L$$H        
H        LHH        NH        H        H        H4H        H        Ht$8Ht$8HAIG(H        H4H        С        1t$0HD$(Md I,IG(M9H4t!      H        Ht$IG(LH9LH        HF11H9l$vIG(!  H4H        IG(t$4H<H        D$H        H        H8j1AoA_LH        Ѕ  A;o  A;_  0MoMAk  t	tAE  Ic_HkIkA+otLH        LcE1   A,LpD$H        HcHI  IcOHHcK|% H4H        Hcl$AD-  Mo1I        A;o0sAHMk8Mg(LAAD$,AG1I        CA;o0<AHMk8LIw(ALIw(AW9F,H        tA   A   	A   E11LAGA;GAt$LH        HcH  B 
BD  IGLH          IwH     1H        LH        Ѕ  1LH        Ѕ  AwA      1LH        !   H        H     H        aH        HD$H    1A$         D$t8H        п   H        HHHH        E11I        E9o~IkIIHcpH8AHl(H}H        HIE1E1I        E9g~8IkHKT5 IL)LD$IHcpH8ALLD$LpAD 
1HT$HLCD5  H        H        LH        L$;tH        H        }  uBH        Ѕt2H        H        H8H        Ht
11HP A$ t;Ht*; t%H1Ҿ   H        HH        H        Ѓ}  }H        H             H        PAF^Ht$HDt$HD$I    LH        ЅLH        H        H        H        H             H        H        1H        HD$ HX[]A\A]A^A_PHP8ZHGhHtHGHHGXHtUIH        HAWEAVIAUAATASHLMHpH        H<    HuHH   LME1HHuHH        LH4E    tDMDHH        A)PDE1MDHj H        E1j jH H        HD1He[A\A]A^A_]UHAWIAVAUAATASH(HtL2
I        LH        H<    HEH        HH  E1HHLHuH        HHE8          AI8I        EI        EǠ        EƠ                                AAwDI8	A1H;Ut#΃t
tu    HA   H           PAO$E1HE1Hj Ah!  H4H        jMG8H I8   AAwAwI8D	A֊EI8           EƢ        AHeHH        [A\A]A^A_]HUHM    Iw8HUHMHuCHe[A\A]A^A_]AWH        AHAVAUATA   USHAREH        t7H        AYHAH[]A\A]A^A_      H        H        к!  HǾ!  1H        HItrAHٺ      HI        ALAH        EH        H        u
H        AHٺ      HAD1Z[]A\A]A^A_AVAUI        ATUHSHvsC H{8tC	AՃ{t; !  Hs8H        u    H3H        E1I        HŋC{A9}$1D9cHH@DAHtHmHAыssDS H{8t	AՃ{Hs8H        u; tH!  u!  
Ht+!  ЋsCsCH{8	A[]A\A]A^ÿ    AWAVI        AUATE1USHHD;cH{8I        }RDCf1I        	ŉAH{8H        L{8ȉD$L$xL    AA뚋CP{  uJsCs	AHs8    H        CC    HH{0H        ЋsCsCH{8	AH{8HH        []A\A]A^A_AT1ɉUSHn+3S9s)S   { H{0yC    tHH        I3I        Aԋ{HH1H        Ջ3sH{0Aԋ{{HH¾   H{8H        []A\SHGPHHt[HH        
   HH        [SHH8HG`Ht   H{8H        HH        [AUIATIU1SHH(L9   Lfd$HH)HH        HH$   % 	tBID$0Ht
HL+AD$x0t8    uHH        HfD$Hf<hH|$H        RH(H[]A\A]E1H        AWI        AVAUAATI        USHQvH{8A׋C(H        wH        
H        DH1AHHu(H        H             X[]A\A]A^A_Ã{( I        u|HHK8A         H        ;CC(uFHAH        H        DH1AH{8HH        Ѓ	wC(   1҃{(HK8HH        4RHA֋sCsCH{8	AH{8H        Z[]A\A]A^A_AWAAVAAUIATI        USHH8B    B    |$(HAԃHAE   AEAE   S8A+EHA+E   DDAE H        ЉAE Ld$)~A}	A   AmAMAE E1AEAE )~A}	AMAMAE AE    AEAE )A}uAE   AE AE    )AM0AE AE )~AE A   E1        I        T$,LL$ H        D$        D$D$        D$        AH        HH        HL$H        LL$ AH        HHL$ыT$,tDHH        HH        ЊD$Au        D$        Au AuDEAut1HH        1HD|$(H        AmHHD$AUAUAUH8[]A\A]A^A_AWI0   AVAAUAATIUSH        APHHt@   HHuHH        С           Lx8HEH        HEH        HEH        HE H        HE(H{8Lc0Ds    HG`Ht1HS1H        HK8DЋCS9)CHLH        H{8H        H        H1Z[]A\A]A^A_AUAATIUSH(tHkdH1H vH   H
DHkHH        H<H        ЅIH        uAuMLD$HT$H߾d   H        LD$HH           H        1MLD$ LH           H        1H(H        []A\A]U,   H        HAVAUATI        SHHHt%H        H        HH        HH        1AH        H        HH        HHu6H        H        H        HH        1s  H8 i  HH        IH        M       MuH        H        LЅH        H        LD1LAIE8H   HuHH        8 u\H}HtCH        Ht2H        H        HuH        1H        H}H        H             IEHH   HuHH        8 ufHu؋}H        H        H        H}H        PEH        UMuDMDEP1AXZH             IE@H   HuHH        8 uFH}Ht-H        HtHuH        1H        H}H        H             1H        H        H        HH        1HHB(Ht^E1L`H@(HuAH        I        LDH        H        LHLH1H        J   H        1AH;I        AHuH        H        fH;I        AԨtH        H        IH;AIH        H        LHLH1H        HH        H        H        С        He[A\A]A^]H        8    ATI        UHS    H        HH   HKHt1t*D@DJx ADB GAAF9uHHȍpP FrJ F9u+H{AHtHH        H             Hf[        ]A\ȣ        AWHHAVAUATUSRuH               1H        H        HHtHH        IHH        MtH        H(HtLe H}H}HLH        H     LH        HI   HI        } AԅtH:   HH        H   L`  A$<	uI< t   H        HIuH             rHH        HIGuH        L     'LHIGuH        L     IH        ILH        LLH        H             H        H        X[]A\A]A^A_HGHUH        SRHHtHCXHtHHX[]Ë% 	t6HG0HtGx0t8¸    uHH           HHHH        AU1   ATAUDSHHcH(HH$    S8HDHH        H(IM[H]A\A]H)HAW1   AVAUATUHSHHXH|$0E D$8% 	ukt*D$0	   %   D$0  Ht$0HS(HF@Ht4H   ЋT$0)Ł   T$0Ht$0HS(uU  CxHH߃0  H        IAI        D$8I        fEfA9   Au5Cx} 8 |$uAEtA׉D$@u|$A ftHEvHE1B(% D$HT$      H|$H        HT$t1ȋD$0HT$Ht$0H%  	ȉD$0S(HT$D$8 HAI!D$8S(E % 
uD$0Ht$0H%  D$0S(HX[]A\A]A^A_H(A1H   AD$De  Nx8   P  A%     wOA!     w A!        A!     A!        A!     A%  tPwA%        A%  vA%        A%  Y                  A%  tlw4A!  tvw<   A!  A!  >   t]vA!  tRDA%  t4wA%  |   t7A%  A%  tA%  t	-   +   ?   ^   $% H  	H        $H(ATH        I        UHSHHtH   Hu AԅteH俈   H        HHuH             16H} H        H   H        HHH        H[]A\H        H        Ht@x    H H        H     1        H        H        1HtH ATHH        USHIt6H        HLHtHHS@fEfUHL1[]A\ATHH        I        UHSHtHtu HHAH[]A\AWHAVAUATUSHH  1H        H        HHm  HH        IHH        MC  H        H(HtLm H}H}HLH        H(HtLm H}H}HLH        H     H        H     LH        HI   HI        } AօtHE <it
<o   gI        HE:   HD$HH        Ht;Hh  E <	tt< tp   H        HIu\H             LFLH        H             H[]A\A]A^A_I        \HH        H|$HL$HIGHL$uH             $HHIGu H        I     LPIIM>BSH        HHt$ЅHt$uH1[H        H[ATI        UHSxH    A[]A\ATAUSHS8HS@)D)~HH        []A\[]A\AWHAHAVHIAUATA   ULSLH(H|$Ht$L$HD$L;t$  A% 
u|$p tt$HH        H        T$`HLAA% 
   HtWExHD`DexMcS8HI9|4IF LH+L$HEHD$HH)HHE D$`E      |$h uDHH        $fEHES@f1HA	H        DE1fAFf<vI~H        fAfI Et|$p tt$HH        1H([]A\A]A^A_AWAVAUATMULSH  $P   H|$Ht$0T$HL$LD$`  HD$@    uLAP@+D$HHHD$@T$Lt$HLH        HD$ HD$HHHD$u#H$      1H$   H        HI        HÉl$T);E(}{+$X  L    AHD$ H\$Ll$@D$(    HD$    HIHD$XH;\$0   wH   Huu6HcE(<~El(PU(T,EltȉElE(tȉE(;H        ЅHD$8    ujH|$h   % H$   D$ht,HH+T$CL- H$  t$(fr	fHt$hLH        HD$8Iŋ u0$x   HL$Ht$HDIDL;l$ HL$Ht$  L;l$ 	
  
D$SuE(    El    L;l$ L9|$vu+tL;|$uLH+D$H;D$X|LH+D$8HD$H\$HD$@H\$HD$D$($P   D$RE4  |$R )  I9sAAD$x8u$X  LA?H        A?H        ЅtI뺀|$S u'$p   t$X  L拼$p  H        Ѓ$   tt$LLH        Ѓ$h  u
$p   uL
   H        H$   H9tcExLDxD}xMcAT$8HI9|>H;\$t;
HuHCHL$0HEH)HHHE $X  E     L+l$H;\$t;
uH;H$   t0HH+T$DH$  +L$8Ƀ	ȋL$(ffJEtA$h  t$h     E   |$R    $p   ut$HLH        2D$HLfD$,AT$@t$,f1Lt$,	D$,H        t$,II        D+D$TI;E(}A~+$X  L    AIE1IHIH$   t(H+\$EL$(H$  fKD	fL;|$0T$( Eu{$P   uq$h   H        tnL;|$0s7AD$x8u$X  LA?H        	A?ӅtI$   t&t$LLH        1$P   ED$(1H  []A\A]A^A_UHAWIAVE1AUATASLH8} HuMDm0uWEtIxH        IHS@D9}1EuDHH        )f1AH	H        ЋCx8t	   1E1Ƀ} EuHS@D)HcHMUDHH        IEHMHuIHULPu@H        L)AUHQH        H HyH        P  L}HI4L}  u}(Hu>JH9s 
H )U H9s
 
H )M(}( uH)HH)H}    H1HLL9s 
H HtAT 
I        H}HI9s*fAOfvHEIAHEfAgI H        Љ   PE8MI؋MDPEAUPH        H H}uH        1KI~pEE8u@MI؋MDHuLP1EPE(AUPE PEPEPH        H@He[A\A]A^A_]UH        HAUATSHHHHuHHUHuH        H        H}LEH   Lm   1   LE% EH        L MtLLAT$(M$$;
u1E%  EH        L MtLLAT$(M$$HzPE111HuH        j j j jj j j H@H}H        He[A\A]]UHPu EjPEPH        AQE1jj H@UE1HPH        j j j jj jj H@UE1HPH        j j j jj jjH@UH        HAWAVAUIATISHHJ<    H        HH        H   M  Lm1   LA$E% EH        HHtHLS(HA<$
u.E%  EH        HHtHLS(HILLE1HHH        L4H        L E1I        M   RH        M11Lj Hj j jj j j DAH@   DEM$$H        H        IH        HUHHuH        H} u=H             H        L E1I        M   Eu      I        I        AH        L(MtM11HuH}AMm    I        AH}I        AH        LAAH        H        HtHHEHM   HEHMH LALAA
tAu7H        H        HtHxH H        H     H        I|$AHI   HxHtgH@ j 11MMj H4j j jj AFPH        j H@   I~pH        IFp    IF     IF    ]HxHtTPIv 11MMj j AFPH        H uBI~pH        IFp    IF     IF    M$$HH        A   He[A\A]A^A_]SHH        HHH        [UH        H        SRHHtFCxt$H        H޿
   HChHtHH        HuHSPHX[]AUIATI        US1ۅW$Y[]A\A]H           1H        I| HA9Z[]A\1A]H        H     H        H H        H8AUATI        U1SVH        Hxh u+Y[]A\A]H           1H        Ńt2H        HcHHtLk H;AH{AHLAH        H8H        HohHH        H        H8HhHtH        H        H8HH        1Z[]A\A]AVAUAp   ATUSH        HI      HH   H        HLH        H        1I        IT$hHHH        HQID$hHcH*H;H        HSHsH        H;H[ Ht-DC8tHsH;AօtH        С        	Ńu1[]A\A]A^1H        H         H        US1ۅQtH        HH        H        Hۉt1t-H        HHHJH1HtHNHHsH1
H        ʉУ        Z[]H        PE1H        H        H        H        H        ZH        H8H           RH        HH        tH           H                 wlBJDJ   AID	Ƀɀ8IDJrC<AADJHA?IA	
H	JHH	D9rHJJ?HH	tAJ2E1HH	rHAA	yAII	D8\XH        SH8 uH        H        Ht vH        ,bJHH	BHH	9v"HJJ?HHH	u9s؊BRH	1[H        SH8       H        HH        tH        sH                 wRJI8DJrC<AADJHA?IA	
H	JHH	D9rHJJ?HH	t'J2E1HH	rHAA	yH        Ht vH        *UHHH	PHH	9v"HHH?HHH	u9s؊@1[ËtA@<u.?	ǉ>ȃu>
uu>ws        1@x@R@u   >w9        @u   @u   >   H9   w   Á  w&HGH9   Ѓ?ʀW   Í (=  vv  w0HGH9vjЃ?ʀ?WȀG   HGH9v:?ȀGЃ?ʀ?WȀG   HHAWI        AVLt
AUIATIUHSHMt3L9s.IAT$LHAHtHu?HHI H[H)]A\A]A^A_11H9tBv  wH'D (A  wHL@H  IFHAUIH        ATIUSQHhH        HHHtHHLLH        ZH[]A\A]ATI        UHSHHD$    D$    Ht31HHT$H}H)Ht$Aԅt|$ uЋD$u   	= v1H[]A\AWAVIAUIATUHSHH(MD$     D$$    tIMH        M   HtDL$ 1H;LD$H)H$HT$ DL$Ht$$L{хH$DL$LD$uED$$?   D$     IDL|$  uD$$tA$IIsMtIH(L[]A\A]L)A^HA_AUH        ATIUHSHQH<    IH        HHE t.E1HHLLH        HtHU HHHZ[]A\A]H        SH8       H        HH           H        JJ?HH	   J2E1HH	rHAA	DJrC<AADJHA?IA	
H	JHH	D9s* w"JDJIAEHL	Ɉ8HKH             H        Ht vH        *bJHH	BHH	9v"HJJ?HHH	u9s؊BBH	1[SH?H         1҅u-H        HȃH)H,HHH[AWIH            AVAUATILUSH1H(HuIE1LE1HD$IGHD$^A$tw% AgfAgAAG%  	A   fAg.  ; wfEu'HH;\$r   =   wEtf fAG	fAGH        Ѕ  EtfAWw
fDfLD$~pHcvHIH        HIuSH<    H        HuH             &HHD$   Ht$H        LD$MGfAGDUfD9Љs0fAtfDA!u
A   !   @w{H)H        M8HI|8@LLL$LL$A %  	AfAAf%	fAAfAGf%f	fAG;A9wCEu7AA   AgfAgAG %  	AfAgHL)HH([]A\A]A^A_AWH        AVAUATUHSH  H|$HHT$0HHL$@LD$hLL$8HH  E11I        DH9sHD$<Aթt
tAHt$E1E1HID$AE1HT$E111E1L;t$q  A=   u!EtAGHLIE1A   =   u,EtAGHHBBIE1A   -   vHt$EDT$TIDL$HL$(IDD$PD\$XL)LLHH        HD$ LH+D$A} H IEH        ЍPHt$ DD$PL$(DL$HDT$T
  H        D\$X$D=w&D   D  AD=vA     A   D   D  AA      D=w*D   D  A   D=v   D   D  AA      t      ͉D   D  mA   AuAM
AuAUAUAUD?	EAUAUtA@?A	A   E1AUM4Eu
H1(  1H        D9r
H1  HHD9DjuD\$t,PHD\A?DH@2|@?uD9tHDTA?DT$AA?D߃A9  HHDAAAA  EBd DAA?A	DAz  Ap  y?  Y  ET  %  z9  H|;      9   HL    u܁   uf9tfHHߋOAA  A  uG?   OʉHHߋOAA  A  u?  O9u   DBuA9sWIB|     -u;A9s6IB|    t   uAuy?   #y?  yE?   yAIIAHAA  A   uEu
?AHAAAA9   9t:H|    uށ     t  t9u'9u%HD%  BEAA9uDуD9u6AAA9sAIIAy?D	AyAC9;ADII؃AH?	AHωo   tA  t9H D9t[@xP@?@u      uƃ?@&  t    uƊP?	PDE1HHD$u  D9t`H H|$8 L|$0D$T   HD$8H9$  rv$   t6    L1H        M AG$  %   	AGL    1H        I AG%  
AGHǄ$      H$   H$  L$  D$P    HD$H    HD$(HD$    D$    HD$Xl$H;l$   H$   tLH;l$tNHH$  C4$H|$PHHJ	H$  fHBf|HBQH;l$uJpHt$XC$	ЋT$PffVNL+|$0IHH        6  I-  H|$@ t1HHt$hHD$@HHHD$ I!H|$@ HD$     uAH;l$HD$     t1HH% 	t u$   uD$Ld$HHD$(L;d$8~|$T uH;l$  D$PH;l$tiHcD$H9D$(~L+d$Hl$(Ld$ Q|$ uFH$   t;$   u1|$Pu*L+$  Ht$8    HD$ I9Cl$IBHD$ l$L$1҃9s$H@|3?9B9s@EA   D$`;T$`wDt$H          DL$D9j  ;D$t%HL?9rHHL?9DBȉHHފN?9!  H9tHL?9  H$   t/DH$  HvHHLD,fAEfE11AE1AE)AAE9   G$AH$   E)LIIIIH$   LLLLLH$   LtWIL$H$  DH4D&Df)D	DfH$  IKH4DDf)D	fIJeEIIE,$A H> uHt$`H        Ht$`H        Hu=H        HP?H<    H	u)AD$umAA9r   A wB(9HHH	PHH	D9wA9s@H끅tAD$?tAL$AD$?t
	ʈ		AD$eDl$E1H        A9smEHL$`IIA> AVHL$`@փuǃuEt
	AV    DF   DFADmE1I        McIJ#E1HD$`E   AE;D$   HD$`LD$pI:HT$x AHT$xLD$pJ@σuDHAwEt
	J    DDPvuA   AI hD$ALA)ĉH        IHHLMЉH;D$tj$   t6    L1H        I AG$  %   	AGL    1H        I AG%  
AGHcH;D$(H$   D$t3H;D$t,HH$  HHPf$T$PH@fTLd$ D$Ld$ HĨ  L[]A\A]A^A_UH        HAWAVAUIATISH8H}HUHk`HMLELMHUH   HHI$   L]HUO4MM9   t
A?
   PE(LL)LMLEAUHHMLPEu PH        RHH0HyHEI<$H        HEYHHM9t.Hߺ    1H        H ЋCM_%  
CM1IIHI+$HHHe[A\A]A^A_]1H        Hcʋ΅t9uH        D߉Í    wX1I        HcHkLt79u/@t"w
@u"@@t@u@@@u빉ATI        UHSHH9r,; v =   vAԅuH	HH[]A\ATI        UHSHH9s,; v =   vAԅuH	HH[]A\AVH        I@   AUATUSHHH   @   E1   Ht$LH        Hu?|$tMl$I9rHHH        HHt+HÊD$<
tB#M1   B# uMuHH        1HH[]A\A]A^SH        HHt*HH        ЋuHH        ȉ        [SE1H        H        H        H        H        E1H        H        H        H        H        E1H        H        H        H        H        E1H        H        H        H        H        E1H        H        H        H        H        [H        H        RH8HtH        H        H     H        H8HtH        H        H     H        H8HtH        H        H     H        H8HtH        H        H     H        H8HtH        H        H     XUHH        H~SQHHtFIH        1H        2   H        I        AHEHH]HC1Z[]ATI        USHHtBH+IH        H        A   H        1AHH        H[]A\HGHG    HGHwATHUSHtSHHtH        H{ I        HtHouAʉHHH        []A\[]A\AWAAVIAUI        ATIUH    SAPAHHtjD8H@    LH        DxLMcLAHHCt7HLLH        HHC    tHHPHtHHXHHZ[]A\A]A^A_AT1H        I        IH        UHH        SH   Aо   HH        Ht6HH     L`@    u	@   CHH
HtHHH[]A\U1H        I        H   SHH        QH        Aо   HH        HtH        H@    HhHZ[]AU1I   ATIH        UHH        SHH        API        Aо(   HH        Ht!H        H@    LhHL`Hh Z[]A\A]AU1I   ATIH        UHH        SHH        API        Aо(   HH        Ht!H        H@    LhHL`Hh Z[]A\A]ATH        AUHSH(   Ht!H        H@    HXHHhD` []A\AT1IH        H        I        UHH        SH&  AHHtJHu,   LH        Ht*H        HhHHPHtHHhH1[]A\UHH        SH(   QHtHhHX     H@     H@    Z[]AWIH        AVI1AUI1ATUSQHH   0   H        I        HHt~LHLLH        HIuHAHVHC(LsHHC    H        I        ЅH{u{ t$H        LsLAHAHA)LsH}LHC HEHCHE AHAH1Z[]A\A]A^A_ÍWи   	v1A@H        SHHtAHHHH)H tHxH        H        H8tH        HH        [AWAVIAUIATE1USHH(HL$HX  N  <$   <\L|$  DM@ŨD$   @t~{xuxH        {HL$хHL$tZ{хtPIGHkHD$AHD$HPHT$SHD$HPHT$SHD$HPHT$S  At@tIGHD$A\HkDd$o  EH{tHD$HtHPHT$HD  CH<Z<A}3<9<0}0<#<?      <z<a}<_t   <{t   HrHNH}   H        HHH   HLHT$H)HAՅt
      H   E 0<	w&H߃AwHŊE PЀ	v<_tHLHT$H)AՅtiLHT$   AՅuHkMHD$HtCHPHT$ $5EtMtIGHD$A\HD$HtHPHT$HkE1HHD$Ht  1H([]A\A]A^A_USHPHHAH,HHH        HKHE HHSH| Z[]ATUHH:SHHu
HE     M
   H        HIH;tHIH        H)HE H        E1HE L#[]1A\HHtQSHH|$ÉH           I        1AHt$H        H        H[1AWH        AVAUATUSHHЍ| H        HcHI   1I        D3HCLcHD$E   EA\D$uO{xuI{AՅt>{AՅt3Lct$C<\UCHHcC4KEHASAA*tA\tA?u	l$C<\HcH\$E4^C< L1H[]A\A]A^A_AWH        AVAUATUSHHЍxH        HcHH   E1I        Mc   At$<\t$ueD{AxuP{AօtE{Aօt:BD- \Lcl$AT$CHHcBD- KAD$AHL ST HF|- HBD- Dd$oBD-  H1H[]A\A]A^A_AWI        AVIAUIATIUHS1API;\$s$I$LLH<AׅuI$HB<( uI;\$u
   HIuQA>#uKH        H           H} I        H1AH] H        HHH] 9I$H<H        Ht HU @0HHJ@2x tHHU Z[]A\A]A^1A_AVI        AUIATIU1SHH;ks"HLLH<AօuHHB<  uH;kuJHIuA} #uHC2HH<H        HHtHkH        HHk[]A\A]1A^USHQ0	w   DH        H        ՅtH        HՅtH        HՅZ[]SH        HHHt$ЅHt$t%HHH        [   1H        HHH        [AWAVAUATIUSHXH\$ Ht$D$     HD$(    HD$0    M)  I|$   HH        Ѕ	  Il$H  Du A  DH        $LmH|$8D$8    HD$@    HD$H    H        Ѕc  LH        ЅuLLH        HH"  8   E  HH$H        H4$H  H        H8 u	11  H        LI        AׅuNH        H           H|$I        H1AH|$H        Ht$HW  H        LAׅ   E1I        H        D;h3  EuGEu(H        DH|$8H@H4H        hH|$8H        Ѕt  EuYH        DH$H@H<H        H        HH$H|$8HRH4HAׅ  AB   H        H|$8Aׅt|  H        LAׅ   E1I        H        D;h0  Eu-EH        Du5H@H|$8H4H        VH|$8H        Ѕt   H@H$H<AH        HH$H|$8HRH4HH        Ѕ   AT1
   LH        Ht}H        HJH9whEHRuHtH|$8H        CL,    H        J|*H        HHRJt*HH|$8H        ЅuLl$@E1M   E1H|$8H        LH          E   }  K|    H        HI  HH        LHHH        L$H        ҋ$g  K| IH        K|  oVHH        Ѕ\&  HH        H$Ѝ| H        HcHI  H$HHAt*<\u\@1@*t@?tHB\HH LL)HH        Ѕ2LH             H        HI        AՅ`  H}H        HID  HH        HHLAՅLH        >  к   H        HAՅ  HEHD$0  H}?   H        HuHHH        Ѕ  L}1HD$8    HD$@    HD$H   Lt$HHHI        I        A1HD$8HT$8H        LH        ЅtA   E1   LH        1HIHT$8H        H        ЅuLH        HD$HHAHItHLHT$8H        H        A   ЅuKLH        H        HH$HHH4$H        ЅH<$tAE1ALE1AL;t$@H|$8sJ<IAAEUH}H        HI  HH        LHHH        ALH        E  HmM$$D$ HT$(H|$8HȉH<    ED$ E1D$ D$     HD$(    cHH        HD$@J< H        HHt3HH        HHHH        HH        ILHT$@H:    H        HD$    Ht$Ht$H:tH|$8H           H|$ C1E1I        Et$A   HD$H<(HAH|$H</ uKHH        ЅuHD$L,(H        LLHE1HH        ЅAH        E?H|$8H        й   H|$H1H        Hи   HX[]A\A]A^A_UHSHHD$    t~H        GHHt$
   H8H        HH           HD$8 t!H           1H        ҉pHH        uػ   H}H        H        Ѕ1H        HH        H        HH9vHH        H[]HH        HH: HD$    t`t0~   S
   H8Ht$H        HT$: u   H        HJH9w)BHHBJ1HUH           SH8H9 t$H$D$    HD$     HD$(    t    H        HHH$t$t'Hl$H        HЅtHH        С        ,C    H{   HH           H1H8[]HH        HH: t~H           uKH        H        H    H        Hu1   HǺ
   1H        rH8
   Ht$H        Hǡ        uIHD$8 tH            H        HH    tH        1H        HU1H        SQH_Ht,H}  u%HH        H        H: uH[Z[]ATUH        SHHH        H: uaH        H        IH        H    t&HH        H        Ѕu	H{HH{ L[]A\[]A\AUH        ATUHSH(HD$    HD$    Ht$HD$    Ѕt           H        E11I        HH        ;\$suH        H8 tI<$uH        H     I<$ uBHD$H4HEHxH        H} H        AH        H8 uH        HtHH        H        H|$HH        H        DH([]A\A]AUI        ATUSHQH        HH        I        H{H        AI<$ ub{  tuLH{H        I<$ u3H} u!H        H: tH        H     H}  zH        HHtHHH        H        HHHH        Z[]A\A]HtHH        1ATH        USH        H0L#H(HL$t$HT$ H    D$    HD$    H        HЉD$H        L#H     HH        ҋD$H0[]A\AWH        AVAUATUSHHHD$(    HD$0    Ht$(HD$8    ЅuLd$0I$Hu          D|$(H        HH        H        ЅtAIT$E1PD|$(AvHT$0HZHu)H|$(H           1H        K  AHA   HT$H        HH8H        I        HI        HT$  H        H     H        HHT$   HH        I        о=   HHH        HtH        HpH      AHH        H        H           H|$1AHt$H        AH|$(A1$  HDH        EtCuH        0     *u!H           1H        ҉1AH|$(H        8u     AԉH           H|$1AHt$H        H        ЉoH        9 t+@)u%HH           1H        #H(PPuHHL$8DH        DHP HH[]A\A]A^A_AVI        AUI        ATUS1H H|$H|$ tx1HT$H|$AHT$H        H|$AHHI        uH        H|$A*HH        HH        H|$AH []A\A]A^UH        SH        H(H+t$H#HT$$    H+H([]AUH        ATIUH(   SQHH   H}H        HHuHH           LcH        I        HE HtH3H8AՅxHE HuLHm HH8H3H        Ѕu,Hm H        H}H        LeHHHE HCH] H1Z[]A\A]AUH        I        ATIUHSQHHtMH3LAՅu6HCHE H        H;H{H        ZHH[]A\A]HkH[X[]A\A]ATH        IUSH        H H(HtHu LӅ   HmH\$1A҈t	HHuD$ HH        HHPH9r@2@Ήρ   ǀuOH1΁      u@HrH9w7H)HD H        Hڿ   1H        L@xH=΁      uHrH9wH      uHJH9wH)HH)H H[]A\GOUHSQH_(CH{ u>C     C$      H        HHCuH        EC$    C Z[]ATUSH_(Cu1{H{ Ctk AH        )uHcHt!DHs1ҊɈtH9uHc( { Hu&H{H        HC    C$    C     [H]A\AVAUATIUSH_({    H{    IHH        ЋS HŋC$9|_9Ls}k$C$L4 H        s$HcHHCu0LH        C     C$    H        AD$Hc{ LH        H{k []A\A]A^UHSHQt1H        HXH        H{H{8ZHH[]X[]AWAVAUATIUHSHH^(H    Ft
     {(    C,    C0    I        HC8C@   H  HsXA=  A   {, t
Ls8DSHH{XH        A   I1DT$MEH        H        A  H        I        ADT$LHu LH        DHE {, t
{0 BH}  A|$ DH[]A\A]A^A_HSHt   1H        H        C[AWAVAUATIUSHH_(HD$    { uH{P u	H  HHuHu!H        =HuHS@H|$HH        HD$H|$HuH        LH        &  I        AH|$Hŀ? u$H        H        H        -Ht-|
t&HpH        Ht(
D( HHD$H|$ fH{PI        Ht_ALcH        J|-HHu
H|$AnHsPHI        AJ|- Ht$HCP    AH|$AHl$HsXH|$H        HH|$A1HuH        AD$   H[]A\A]A^A_AVH        IAUIATIUHh   SHH   @D        H        HHC8uHH           L3LkH{XH        ЅtH{8H        gHsXHH        MH        H](IEHH        Ѕt5HE(    H        H{XH        H{XH{8H1H[]A\A]A^ω			Љ		1ATUSH Ht-1I        ;+H{sH<AH        HC    HC        []A\USHQHoHttPH|  tM<   H        HH        Ht(HCQuH     HCH    1   Z[]AVHIAUATUHSHPHGL$tqMtLH        IE1B|-H        LH        HIt/IHLLH        AD-  PHCL$1   []A\A]A^AVAAUIATIU1SH H\$D$    HD$    HD$    A9~ZHH        ЅtH        Hи   @I| H        It HHH        HЅt빹   LH1H []A\A]A^AUHATUHSQtIH        1   ӅtH} @uI        QAՅuH;@uHHLH)H        Љ;@u(; tLH        ŅuH݀}  tHAՅtHĉZ[]A\A]AWAAVAUMATMUHSHHH$   $   Ht$HL$ H$   H$D$,H        HIH$u+HHH           []A\A]A^A_1H        HH        H        HEH        1HHD$   H   H}     1HH| uH        HcHHHn  HHhH        H:Ht<HT$H$HHE=  HT$1H$Hz HEHHHE1MtLH        HH$u  H$    Mt_E1H        LDl$LHHt H        Ѕul$H        HD(,  IIuA$  D$    Eu"H           1H        k  HD$H8H        HHR  H|$ HHDH        HI1  AGHHHD$ HH        HI
  1H        A9~1HD$HL$8Ht$0H<HL$8Ht$0ID HHu   HD$ INID    HHtHHHHL$P   H        HL$HH   H(Ht$H<$ L`Hp@HHX t
H@   HH4$H\$T$,HpHDx0HLh8HHX(HPD1A   E11H$    
E11E1E1H|$I        AHuHAMt9IIIHtALAH<$AHALA֡        LHH{HtAD$HH[]A\A]A^A_UHAWAVAUATSH        HHt4HGIIԃx0 tH H        u2H u+H        Heؿ   1H        [A\A]A^A_]x tL@E1xP H        LDI} uKIU 1Hp8LH(HHHHHR:s@1҃8 tHPARH        WVLj H   HcLEMtII    HHEH        DxL}LE
   AA EÍCE19E~&IH
tH'H|OHHLEH        HH1  I        H        HLUALULEHC	19M     HP@'ILXACta<'uSHL]HMLEHUH        LUAH        H        HULULEHML]HHIHB'Hl 
@ IERIu Lmȋ}HHHHPH6Hv>s@@VLHVLSLH(H        AĊEH HH        AM.D	        He[A\A]A^A_]SI        H        I        H          H        H        I        H        I        H          H        H        [H        SH        H        H8H        H8H[AWE1AVAUA   ATUSHH  L$   Hl$pD$0    D$Ld$Hl$HL$KD- fD} HTH9   H)HI'  Le_  H='  A'  LFH        IkHHI/  K,$HHt$OL- 1HIAHt$HHkMkLHLH|$HL$pH9t LL$HD$H        LL$HD$Il.KTNd H9  HD$Lt$A  I        IcAV   |$u*HT$ L$HH|$@H        HT$ L$D$t$~ !     wHcH        
1D$       weHcH        49uPH        L<E
AD|$LMD$   Ht$@|$0D$LǃT$0MHH        D$  DT$H           H|$XIcЈD$7   )HHkLHLxHHDЃ=HL$(  H        $I$HC C      IT$It$A  HD$X    H        HH        D$0      I$1HH        HD$Xi  H{(H        HH        H߉D$XH        HD$(  It$HMt$H        At$HD$ HH        HHt!HHD$8}   H        HL$8  1   HH        HHD$XuH|$ H          HD$8I|$H        Ht$ HT$8HHBtHKHH ID$HuHBMHC@  IFHtIHBIF%  HD$X    '  ID$Ht&I$HtHID$I$RPI$@    ID$zI$ID$HtHHH        IT$HtHtHIT$ЋHJ@    It$HH        I$I$1	It$I$HH        H{(H        HH        HL{HC    1  H3HH        HHI|$H        HuH;H        HSHHP H        I$pID$HC   ID$   IT$It$1%IL$IT$I$XIT$I$pI$HH        IL$IT$HI$@H        <IT$It$1H{(H        1IT$It$   HH        HD$XH{(H        D$7ML|$h   Ht$XHkHH)HD$(HD$`HcD$I)H        M`LH        #M H4   w#HcH        f4f9uH        
H        L<|$0 uH        HH        |$0u|$ u   D$H        H        C~t=   wH<u
L<EH;l$t^HIL} MD$   Ht$@D$0   LMIHH        H           Lt$1   H|$HD$pH9tH        H  []A\A]A^A_HG(HWHHH@ HG8HH@HGHH   HHHW G0USHRO\yCH        H        HH        H        HHH        1HcS\HChD CTX[]ATUSHH(H   @H        HHC(uCH        H        HH        H        HHH        1H{(   1H        HC    HC       Hk HEH9C   HH        H4    HHC(uCH        H        IH        H        LHH        1HS HC(1H<к@   H        Hk []A\ATUSHv`9s\   H{hs`HcHHuHH        H        HChH{h uCH        H        IH        H        LHH        1HcC\   HshPHǋCTS\șD-CT[]A\AUATIUSHQuHH        ЉHC(P@DhDD9rNT- EHx8H        L9LCLHuZH1H        []A\A]HS(HB8HC(DhDHC(LP@H@8H|H        HC(h@X[]A\A]ATIUSHHHh(H        H}PLH        1HHEPuH        H;H        к   []A\UH        HHSHRHC(HtgHSHH9t_Ht1HCHS0HSHC(HHSHHPHSHC(HHS8HP HC(HSHH,H        CX   HuX[]UHSHQt>HF(HtHVHH;8uH     {( H        tH{ZHH[]X[]HtOHGHG       HG@ HGG0   G@    HGHF(HtHVH;<uHH        AV        ATIHAH        UHSHL#C<   HE(Ht
HUH;tC4   C8    C,    D[]A\        A^AWAVAAUIATIH   UH        SQHHuCH        H        IH        H        LHH        1IcHCHxHHCuCH        H        HH        H        HHH        1LC(   LHH        ZH[]A\A]A^A_ATUHSHF(HHtHVH< u7HH        HSHC( @  H{L$HH        I$HC(Ht
HSH<1HHH        HH        []A\UHHSR   HH        HHC(Ht<HSH< t1HCHS0HSHC(HHSHHPHSHC(HHS8HP HC(HtHSH< tHHSHSHH,H        CX   X[]SHG(HHtfHWH<HtYH        HHC(HSH    HCHtHHCHC(Ht!HSH< tHH        CX   [H   AVAUATLfUHS|7    |7    IտH   H        HHuCH        H        IH        H        LHH        1H        LcHkHkC(    LH    Lc HC,    C0   C<    C@    H11[]A\A]A^AWH        AVIAUIATIUHnSHQHHuCH        H        IH        H        LHH        11L9tAD HD  HLHH        HHuCH        H        HH        H        HHH        1C(   HZ[]A\A]A^A_UHSHPH        YHHH[]H        SH        HHt&HH޿   H@(@,   H        1H        1H;и   [HHG(HtHWHHt@81HG@H   H>ATAUSHF(HHtHVH< uCH        H        HH        H        HHH        1HSHC(HD`8[]A\H   H   HSHuH         
   )   H        HHuH                  HǺ   1H        HH@(    H@    H@     H@H    @P    @T    @\    @`    H@h    Hǀ       ǀ       ǀ       H@    H@    1[UHSHQuH         
   ,HH           HHuH                  HǺ   1H        HH(HH@(    H@    H@     H@H    @P    @T    @\    @`    H@h    Hǀ       ǀ       ǀ       H@    H@    1Z[]UH        SHQHC(Ht3HSH<Ht&HHC(HSHH    H        HH        H{hHC(    HCh    HC(    HHC    HC     HCH    CP    CT    C\    C`    Hǃ       ǃ       ǃ       HC    HC    Z[1]H?HG(xL u1H           AWAVAUATUSHH(~P H   un~T FP   uFT   HC(HtHSH< u7HH        HSHC( @  H{H,HH        HE HH        H   HCHHH$C0HʈCTI        I        I        I        I        I        
H        @<HcfA<J tCpHSxCDE =   ~A<Lc@CCLcG<|A9uAIH=   uLcxCpHH        D,AH$LH)H   HK@A$C0A$ H{@  vCH        H        IH        H        LHH        1ыC@H   19~@<2@|5 HLcHAK  H        B$C0A$2C0Mt$LA$H$LsHH)H   HK@AD$C0AD$ H{@  vCH        H        IH        H        LHH        1ҋC@H   P19~@4@t HLsHHH;H        H        HH;и  
  H        HH;и  
  H        HH;и  
  H        HH;и  
  H        HH;и  
  H        HH;и  s
  H        HH;и	  W
  H        HH;и  ;
  H        HH;и  
  H        HH;и
  
  H        HH;и  	  H        HH;и  	  H        HH;и  	  H        HH;и  	  H        HH;и  w	  H        HH;и  [	  H        HH;и  ?	  H        HH;и  #	  H        HH;и  	  H        HH;и    H        HH;и    H        HH;и    H        HH;и    H        HH;и  {  H        HH;и  _  H        HH;и  C  H        HH;и  '  H        HH;и    HCHHKHPHC(HHC8HIHDH9u;HHH        Ѕt  H        HH;и     H        HH;HC(Hu;1HH        HHH        ЅtHH          HSH<HH@(@L   HH;H          H޿   H޿   H        ]H޿   H        X  H޿   HH        H        HHH@(@L    HH@(@0   HH@(@H      S@HHS@H   Ƅ    H;H        H        HЋCTHH@(w	@H    o@H   fH        HHH@(@H   G   H           HH        H޿   H        HH@(@H   !       H        G   H        6HH        HH@(@H   뵺   H        S@HH;H        H        HHH@(@(   10  H          LH+   ȉD$C0A$HSHC(HHz@ u%HR HS8HSH HHSHC(H@@   HsHS(HCHL   HLrHS8I4H9   HcD$HIH        L{HH        HcHSHf<N tCpHSxI        I        HcH        qHcA<x9tAqH        H    =   DH   H$]HHSHITH9vCH        H        IH        H        LHH        1HSHC(LkHHЃx< H   uI)I    I)1AA9~AAHHSHC(HЃz@uHC8    HB        IcHD$HHBHSHHC(   L<LsHII)A( t:IGHHuHHHIGIwIGHpH        IGIG    I uGH        H        H        HD$H        Ht$HH        1McMwHC(HSLsHHHD$!HC8    HH@     E1H{8 u6EuH{HH        AHSHC(A   H@@   H{HS(McHs8L<ID5 I;GvpHIHH        IGHSHC(HHx uCH        H        IH        H        LHH        1Lk8HSAHC(Lk8HH@B( HSHC(HHPHC8D HSHC(HH@H   t9A   HcT$HHHCHH        H   HSHH$CX    HH        Ѕt!H      HCHCTșDhF{X IH{HH        1HSHC(HHH@HC8HCHH        H   LcHH$H        H        IH        H        LHH        1  H([]A\A]A^A_AWI        I        AVI        AUI        ATI        UH        SQH_HGTH   H$H        H;$sZ2@tAHcfA<s tGpHWxCL=   ~CL LcDB4KDLcF|} A9uAvHZ[]A\A]A^A_                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           	               S              R              ;              <              =              >              ?              @              A              B              C              D              W              X                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
   #%$&&&''())**++,,--................0/112234555556687:9;;;=<?>A@.  !"
!@!!".89:Q`IL5NOP@3J YQSTUVa_g !"!"!"!"!"!"!"!"!"!" !"    89K;-	K1
2`aJ<	Y@
PKD-^EFHW3f  Q  SATUV-?R  _X Z[\] gK     e    Ki 	K L
N   	  O
K	   
   Kb    	  K
 c d  	  K
 	  
 h   K	   
 	   
 	   
  !"#$%&'()*+,    5BGC.=I>/0M6:74     5>< ( ,-./0	:3 !"#(&)
      *$'+(1 6    2      7   % ?=4 9 ;8      
 9               C P Z            l {                   	
 !"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            " !  " d !  d  !                                            #  Z   #        Z            $      %    $ [ %   ?   2 2 [ 2      6 6 ?   D 2 =   M = = I I 6 = = > D > K >  M \ K e I   \ >    \   e _     y     _ `    f    `  f   c     @ @ c y | @ @ { {  @ @ N O N O N O | O Q  {  Q Q N O  Q Q @ F F F  F F F   F F F  V  V F V W  W  W     V     W F F F J J J J J J J J J J J J J J J J J J J J J J J J J J J J J J J J J J J J J P   P P P  P P  ~ ~  P P  P P P X Y X Y X Y ~        X Y                                                                                                                                                  } z x v b a ^ ]                                               U S                               L G  C              B A                     ;  - +  '                                 
         	                                                                                                                                                                                !     " # $ % & ' ( * * + + , , / 0 > 1 / 0 w 1 - - 4 5 4 5 U 2 E U U 2 c U a [  6 b 6 9 9 9 9 : 9 9 9 : ; 9 9 9 : : < 9 9 9 < < < < < < < < < < < < < < < = 9 9 ? U @ U A U  U \ ? d @ ] A B G H I  J G K V B G G G U ? U @ L A ^ U U _ e U f ` > B Y m n  o G G G M N r s E N O > p x N N > x y | F t x x ? E @  A U  U F U } Q >  B ? > @  A >  U U  > > y > B > >  U ? > @ U A > U  U  > > U > B > Z M N   > N O | F U N N ? ? @ @ A A E   > }    B B F   Q G H I  J G K U U G G G  ?  @ L A ? U @ U A U    B U  U  B G G G G G H ~  G G G   G G G    G G G                 G G > >  ? > @ U A >   F U > >  > B > ? ? @ @ A A  ? U @  A U U B B  U U U  B  U                  G G H G  G G G   G G G    G G G                G G G ? H @  A H  U U  F    B >  U ? > @  A >  U   > > U > B > U      G G H G G G G G G  G G G G G  G G G                G G  ?  @ > A  |   v U U U  B ) ) ) ) ) ) ) ) ) ) ) . . . . . . . . . . . 3 3 3 3 3 3 3 3 3 3 3 7 7 7 7 7 7 7 7 7 7 7 > U > > > > > > > D D D D D D D D D D D F F F F F F F F F F F P P  H P C P S S S S S S S S S S S U X > U U U U U U W W W W W W W W W W W h h h v h k i h g h h j j j j j j j j j j j l l X T l > l l R l l q q C  q q q q 8 q q u u u u u u 8 u u u u z   z G G G G G G G G G G G { { { { { { { { { { {                                                                                                                                                                                                                                            F F F    F                           F                 F                                              " # ) - 3 5 G   i * z   r   & Z t * ) ^ v { b          w      dh[   X * W   O 3&_``      -                W  i   f   H\  
 B[ M  fbaWH\ `       | "-8ALT^ir}*                                                         	                                                   
                                                                                                                                                	                  
   
   
   
   
   
   
   
   
   
                                                                                                                                                                                     !      "            #   $   %                                                                                                                                                                                                                                                                                                                                                                                                                                   E "    " #   	 
  ! " # " ! ! ! ! ! ! ! ! !    + & ) ' * 9 < : ; < @ C A B 4 3 2 , - . 2 "           "           " " "      !  "    !  ! !  ! !   ! ! ! !  + ( $ % 9 8 7 5 6 @ ? > = 4 - .            " " "     "     " "       ! ! ! ! !  ! ! ! ! ! / 0   1     " "       "        ! !  ! ! "   ! !   !  !    > grub> not in normal environment prefix config_file config_directory root (%s)%s  ESC at any time exits. Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s tftp %s/grub.cfg fw_path gzio Clear the screen. clear pager Enter normal mode. normal Exit from normal mode. normal_exit color_normal color_highlight light-gray/black black/light-gray y x86_64 grub_cpu efi grub_platform feature_chainloader_bpb feature_ntldr feature_platform_search_hint feature_default_font_path feature_all_video_module feature_menuentry_id feature_menuentry_options feature_200_final feature_nativedisk_cmd feature_timeout_style  Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible arguments are: Possible things are:  %s   
 %s/x86_64-efi/command.lst module isn't loaded superusers user '%s' not found Enter username:   %c 
 Enter password:  access denied  Check whether user is in USERLIST. [USERLIST] authenticate %s/x86_64-efi/fs.lst Warning: syntax error (missing slash) in `%s'
 Warning: invalid foreground color `%s'
 Warning: invalid background color `%s'
 black blue green cyan red magenta brown light-gray dark-gray light-blue light-green light-cyan light-red light-magenta yellow white )  %s,%s "  '    . .. %s/ set -u --help --usage --%s / Sunday Monday Tuesday Wednesday Thursday Friday Saturday 
    Falling back to `%s' 

 
 Press any key to continue... 
   Failed to boot both default and fallback entries.
 timeout %d default timeout_style %d     theme gfxmenu module `%s' isn't loaded gfxterm fallback chosen 0 boot menu countdown hidden     Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible arguments are: Possible things are: 
     
 boot Press any key to continue...  Press Ctrl-x to start, Ctrl-c for a command prompt or Escape to discard edits and return to the menu. Pressing Tab lists possible completions. Use the %C and %C keys to change the selection. Press 'e' to edit the selected item, or 'c' for a command prompt. Press Escape to return to the previous menu. Press 'e' to edit the selected item, or 'c' for a command prompt. %ds The selected entry will be started automatically in %ds. menu_color_normal menu_color_highlight %lu.%02lu%s %llu%s ext* .5  	 Partition %s:   Device %s: Filesystem cannot be accessed %s ext2 Filesystem type %s - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s , UUID %s No known filesystem detected  - Partition start at %llu%sKiB  - Sector size %uB  - Total size unknown  - Total size %llu%sKiB 
 B KiB MiB GiB TiB PiB K M G T P B/s KiB/s MiB/s GiB/s TiB/s PiB/s %s/x86_64-efi/crypto.lst %s/x86_64-efi/terminal.lst --MORE-- debug one argument expected cannot close the initial context Export variables. ENVVAR [ENVVAR] ... export Exit from loops [NUM] break Continue loops continue Shift positional parameters. shift Set positional parameters. [VALUE]... setparams Return from a function. return malloc %p
 scripting script/script.c free %p
 arglist
 cmdline
 cmdif
 cmdfor
 append command
 %d ? %u # * @ invalid variable name `%s'   { } one argument expected unrecognized number can't break 0 loops break not in function body false 0 ! no command is specified %s isn't allowed to execute in an extractor can't find command `%s' token %u text [%s]
 lexer script/lexer.c unexpected end of file out of memory 
  no menu context %s%s menuentry is missing title missing arguments multiple menuentry definitions no menuentry definition setparams '\'' Define a menu entry. BLOCK menuentry Define a submenu. submenu backspace tab delete insert f1 f2 f3 f4 f5 f6 f7 f8 f9 f10 f11 f12 class Menu entry type. STRING users List of users allowed to boot this entry. USERNAME[,USERNAME] hotkey Keyboard key to quickly boot this entry. KEYBOARD_KEY source Use STRING as menu entry body. id Menu entry identifier. unrestricted This entry can be booted by any user. Incorrect command syntax error memory exhausted start-condition stack underflow fatal error: %s
 out of dynamic memory in yyensure_buffer_stack() out of memory expanding start-condition stack out of memory out of dynamic memory in yy_create_buffer() out of dynamic memory in yy_scan_buffer() out of dynamic memory in yy_scan_bytes() bad buffer in yy_scan_bytes() yyset_column called with no buffer token too large, exceeds YYLMAX $ \ " \\ flex scanner jammed fatal flex scanner internal error--end of buffer missed fatal error - scanner input buffer overflow out of dynamic memory in yy_get_next_buffer() fatal flex scanner internal error--no action found                                                                                                                                                                                                                                                                                                                 G                 ? { `                                                     ?ymӇ9^? ӿ;  ӟ9 == =` =`@ = ?/_                                                                       ======                                                         _               0<                /                                                                                                                                                                                                              a                                                l               x  | g                                              ?C        G >                                 M x??`??Cpgᇿ???0                                          $!                ;              ?   ?   ?                  0@p 0                   ?                                                ?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ?                                     "  `                   x          ?                                                b  c  e  d                B          0              5          7          -          D                                              Z  [  ]  \  J          C          8                                      ~  V  W  Y  X  '              "              (                          ~                  E          ,                        q  P  Q          4          %              {  R  S  U  T  F                        +          1                          v  w  y  x  *          :          $              y  f  g  i  h                #                            A          H                            G            j  k  m  l  .                      z  {  }  |              n  o  q  p  9          3                        6          /                                                &                                    r  s  u  t                z  ^  _  a  `  2                            )                                              (   )   )   (   <   >   >   <   [   ]   ]   [   {   }   }   {               :  ;  ;  :  <  =  =  <          9   :   :   9   E   F   F   E   }   ~   ~   }               "  "  	"  "  
"  "  "  "  "  	"  "  
"  "  )  <"  ="  ="  <"  C"  "  R"  S"  S"  R"  T"  U"  U"  T"  d"  e"  e"  d"  f"  g"  g"  f"  h"  i"  i"  h"  j"  k"  k"  j"  n"  o"  o"  n"  p"  q"  q"  p"  r"  s"  s"  r"  t"  u"  u"  t"  v"  w"  w"  v"  x"  y"  y"  x"  z"  {"  {"  z"  |"  }"  }"  |"  ~"  "  "  ~"  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  )  "  "  "  "  "  *  "  *  "  *  "  *  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  C"  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  #  	#  	#  #  
#  #  #  
#  )#  *#  *#  )#  h'  i'  i'  h'  j'  k'  k'  j'  l'  m'  m'  l'  n'  o'  o'  n'  p'  q'  q'  p'  r'  s'  s'  r'  t'  u'  u'  t'  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  '  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  "  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  )  "  )  )  )  )  )  )  )  )  +*  ,*  ,*  +*  -*  .*  .*  -*  4*  5*  5*  4*  <*  =*  =*  <*  d*  e*  e*  d*  y*  z*  z*  y*  }*  ~*  ~*  }*  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  "  *  "  *  "  *  "  *  *  *  *  *  *  *  *  *  *  *  *  .  .  .  .  .  .  .  .  	.  
.  
.  	.  .  .  .  .  .  .  .  .   .  !.  !.   .  ".  #.  #.  ".  $.  %.  %.  $.  &.  '.  '.  &.  (.  ).  ).  (.  0  	0  	0  0  
0  0  0  
0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  Y  Z  Z  Y  [  \  \  [  ]  ^  ^  ]  d  e  e  d    	  	            ;  =  =  ;  [  ]  ]  [  _  `  `  _  b  c  c  b                      	    
         @       `        @ ! @ # ` & @ ( @*   +  @ ,    -  @ . @  0 @ :    ;   <  =   >  ? @ [  \   ]  ^ ` {  |   }  ~         @                   P @  @  @      `               @        B3W @CW@V @CW @V@V!@@SV#@V'@@SV)`AV4@P9@V= A3WE @WF @3WG`@VJ`@3WM@@VO @WP`@3WS@VW @3WX @CWY@@V[ @3W\ @KW]@@SW_ @KW`@@SWb @KWcA3Wt@ ~  @     @3W@@W   @V@3W @V`@3W @V @V@3W@V@@3W @V@@3W @V @#W @3W @SP @[P @cP @kP @sP @{P @P @P @P@@P @P @P @P    @P    @P @P    @3W @V    @P`      @    	@          @  A3W @P @P @Q   @     0!   "  &  0'   (  0)   * 0/  30@  @A 0H   I@ 0K @PL @PM @PN @PO @PP @QQ @QR @QS@@3WU@@VW@3W\ @V]@@3W_ @V`@ j  k@ m   n@ 0p @Qq`  t   u`  x 0@ 0   @ 0    0     0   @ 0@        @3W    @3W @V @3W@  @@3W   @V@@3W @V@  @ ` 0@    0   P    @#Q` 0   0    0(   )  0*   +  0,   -@ 0/   0 @3W1 @V2@@3W4 @V5@@3W7`@V: @3W;@@V= @3W> @V?`@3WB @VC @3WD @VE @3WF @VG @3WH @VI@@3WM   N`0Y`  \0k@  m 0q   r  0s@  u` 0x@  z 0 `AW   @    0@3W @V @3W@     @   @3W    A3W$   %`@3W(   )@3W0  @   Y`@V^    	`@W	  :	 @W;	  <	 @;P>	` A	 AWI	 M	 @KPN	@ Q	 @3WR	 @VS	@@3WU	`@Wb	@@W	 @W	@ 	 @;P	` 	@W	@ 	@ 	 @KP	  	@@W	@ 	  
@@W
  <
 @;P>
` A
@@WG
@@WK
@@WM
 @KPQ
 @Wp
@@Wu
 @W
@@W
  
 @;P
` 
@W
@@W
  
@ 
 @KP
@@W
   @W@ < @;P>  ? @W@  A@WG@ K@ M @KPV @WW  b@@W @W@  @W@ ` `  @KP       ` >`@WA F`@WJ`@WM @KPU @RV @Rb@@Wx @  @;P    W   W@ @  @W @KP@ @@W@ >` A@WF` J` M @KPW  b@@W@  @KP` `@W @W @ 1 @W4@W8@@;S: @KP?  G @WH@[SL`@W @W@W@@S@@W@S@@W@@V5 @V7 @V9 @V:>@ q @Tr @Ts @Wt @#Tu@Wz@T~ @W   @T @W@@3W @KP@@3W`AWDW @V+@ -@W1  2@W7 @;P8  9@@KP;@ =@@WV@ X@@W^`@Wb` g q@W @W@ @@W  @V  `  @W]`@3W@     @ @@@W @KP2@@W4 @KPR@@Wr@@W  @W  @W@  AW @KP @W   @3W@  ` `@W @  @#W `@W# '@@W)` 0@ 2 @W3 9 @V: @3W; @V@  D@  @ @  @3W @V` U  V @WW  X@W` @KPa  b @Wc@ e AWm s@@Wu A3W @V @W  4 @;P5  6@W;  < @W= B @WC  D  H k @3Wl @Vm@3W@@W    @W@ @@W  H  @;P  @@W`  @W  `@W@ H $ , AW4@ 6 @W7 @;P`@3W @P@V@@3W@V @3W  @P @V  @@3W @V@3W @V@@3W @SW @V @V @SVB3W @KW @V @3W @V  ` ` ` ` @   `A   P     @   P   (  @ )   *  @ P+  @P,  P-   P.  P/    0  5  9 @;   D    E @G   _  @ ` Pj Pp    t   z @@ |   } @ @  @@     @ @  @@3W @@P @3W `@P @@3W @W  @3W `@W @@P  @3W  @V  @3W @@P @V  @3W !@ ! !@ !  !` ! %!  '!  )!  .!  :!@ @! A! J! P!  !  !  ""` ""` " " @ "  "  "@"` ""  "#"  $" %"  &" '" +" 4" 9" :"  ;"@M" R"V"  _"@a"  b" c"  d" l"@ n""@ "" " "  "@"@ "`" "@"  ""@ "@" " "@ "  #  ##  #@"# )#@+#` {#@ #  $ @$` `$  $ $@ &` ' h'v'@ ' '@ ''  '@'  ' ' '' '`'` ''   )` ))@ ))  ) ) ))` ) ) ))  )@)@ )) ) )  )`)@ )@)@ ))@ )@) 
*`*  *"*@ $* %*  &* '*@ )* **  +*/* 4*@6* <*`?*  W*@Y*` d*@f* j*n*  o*@q*@ s*@u* y*`*@ * *  * * * *  * *` ** *`* * *` **  * * P+@ , ,`@3W, - @KP- D3W .@ ..` 	.@.  .@. .@.@  .@*.  .@ .   / /  0 @ 0 0@0@ 0 0 *0 @V+0 @#W,0 @CW-0 @V.0@@W00  60@ =0` 0@@CP0@ 0  0  1 2@ P2  |2` 2 2 w3 3@ 3  M   ` o @3Wp`@Ws  |@@3W~@ @@3W @    @W @KP @W#@ %@@W'  ( 8@ t @  Ĩ @KP@B3W&@W+`@VG`AWR  S  H `@W   @;P@ @W@  @W`   H )@W/@ 1@@W3@ 5@@WC @WL @WM  {   @3W@@3W @V@@3W@@3W @3W@  @W@  @W@    @KP    @P@  ) @ *  8  >   @@  C@  F@  P@ `- >@ P        BW@  @3W0  P   Q  R   T  U   V` Y_  `@ b@@ d@f  h  i@ k  p  v  P@ ` @ @
   @     @ @  @          @ ; <  = >` [ \  ] ^  _@a  b@d@ @ ` @  `P@ ! @a  !@V   !  
  7A  <!  ?  W!   	  	!  	A  ?	!   
!  
a@W
A@W
!@W
!@V
!@W
!@3W
  
a  
a  8
!@3W9
!@P:
!@V?
!@KP@
  P
!  `
     9 @  Xa  x   !  `  ! !@W! 8AWF!@KPR A@W! a @WA !@KP!@;PeA ga@Pm! nѡ sP{AVѡ@3WA@Vс@3W A Ba@3WE!   !!O!!!A   0      a  ! 0 7    !   @! BA a    %! P   a ! ! ! a   ( -! 0 5 Ea     .P  P ^W          LICENSE=GPLv3+          net terminal crypto bufio extcmd boot gettext normal                                                                                                                                                                     	                 U                  
                                                                                   )          M       :     |      P      M           -       a     s             u                           z      k           M      	           u                 0       @            ӕ      #                                                                              %                     5    \            I                     _    /            z    A                      M                                s-      >                                                                                    ;                 S          v       k                         0                                      =      ?           $     u                                                     P                                             0    )            =                 T                     l    9      .                               ƨ      P                                                                 x<                                  	    T                                  /    ,            :                 R    i             d    s            p                                         W      q                                                 a%                                 (             "                 :                G                     T    y             h    !                                                       %      E                          H      @           ̇      q           %      D           V      4      4                E                     Q                     _                     y    '$                                                                                          {      6                                            8    @&      X      P    x9      \       a    'v            u                               I                                                k                                                           s     !                 d       !          -       6                     A    u       w      S                     _                     y          i           >      <          S      y           $                                                                            	                     	    w             &	    P             @	    S>             Z	    9      *       p	    w             	                	                     	          A      	    9            	    {=             	          L       
    x             $
    
>      I       :
                     U
                     k
                     
    x      J       
                     
                 
    x      )      
          H       
                                          :     U       /                     >                 T                     k                     ~    t                       Y                            W                                                       
     -                        7                     I          j       \          |      p                               W           z      0       	                                                                                   +      O          2                                                      (                     4                 E    ̊      <       R                     l    y      7                                `      M                 2                                     V           (                                            A       (                     5    	           C                     U                c                     r                                              e=                                                                                         N      -           1                                 8                     E                P    i             b                 t                   ~                                                               1                                                      N(      D           ¾             %                     6                     @                     M                     b    \            v                         r      #                                ?      q                 	           q#                 0             
                                          .          a       E                     Y    =     v       f    g>      
      u    #      (                                                     ~                                                     <           1            	                                          #    5-      >       ?    ̥             Q    K      (       g    W      z       }                                                                     i                 9          :      ]                                         grub_mod_init grub_mod_fini grub_strlen yy_delete_buffer read_terminal_list grub_script_yyerror grub_getstringwidth grub_disk_get_size grub_normal_print_device_info grub_cmdline_get grub_set_history timeout_style_names grub_puts_terminal grub_puts_ yylex_init grub_script_lexer_ref yyrestart grub_millisleep grub_menu_entry_run grub_fs_autoload_hook grub_unicode_get_comb_type grub_cmdline_run grub_unicode_get_comb_start grub_strncmp grub_env_write_color_highlight grub_script_function_create grub_extcmd_dispatcher grub_script_function_list grub_net_search_configfile grub_env_extractor_open grub_utf8_to_ucs4_alloc grub_term_input_autoload grub_script_function_call grub_strcpy grub_term_restore_pos yypop_buffer_state grub_loader_is_loaded grub_strrchr grub_script_create_cmdfor yy_scan_buffer yy_create_buffer read_fs_list grub_env_context_close grub_partition_get_name grub_unixtime2datetime grub_dl_load grub_unicode_estimate_width grub_set_more grub_env_export yyget_extra grub_wait_after_message grub_gettext_reread_prefix grub_script_setparams grub_error_push yyget_leng grub_script_lexer_deref grub_env_get_menu grub_xnputs grub_script_parse grub_xasprintf grub_script_create_cmdline grub_realloc grub_script_mem_record grub_auth_deauthenticate grub_normal_add_menu_entry grub_script_argv_split_append grub_script_argv_append yyget_column grub_memmove grub_get_human_size grub_script_append_cmd grub_device_open grub_script_shift grub_auth_check_authentication grub_unicode_aglomerate_comb grub_script_lexer_fini grub_term_save_pos grub_context_init grub_script_function_find yylex_init_extra grub_strdup grub_divmod64 grub_file_get_device_name grub_auth_unregister_authentication grub_partition_iterate grub_unicode_arabic_shapes grub_script_execute grub_gfxmenu_try_hook grub_script_yyparse grub_command_list grub_env_extractor_close grub_unicode_bidi_pairs grub_get_weekday grub_menu_init_page grub_term_output_autoload grub_script_create_cmdwhile grub_snprintf yyset_lval grub_encode_utf8_character grub_term_highlight_color grub_unregister_extcmd grub_script_free grub_print_ucs4_menu grub_xputs read_command_list grub_dl_ref grub_register_extcmd_prio grub_unicode_shape_code grub_bidi_logical_to_visual grub_is_valid_utf8 grub_auth_authenticate grub_errno grub_parser_cmdline_state grub_memset grub_getkey grub_env_set_menu grub_script_execute_cmdif grub_menu_register_viewer grub_get_weekday_name grub_script_argv_make yypush_buffer_state grub_register_variable_hook grub_script_execute_cmdfor yyset_extra grub_menu_get_timeout grub_get_num_of_utf8_bytes grub_env_context_open grub_menu_set_timeout grub_register_command_prio grub_file_filters_all grub_parser_split_cmdline grub_normal_parse_line grub_printf grub_script_break grub_menu_try_text grub_script_execute_cmdlist grub_script_lexer_record_stop grub_unregister_command yy_flush_buffer grub_file_read grub_normal_free_menu grub_term_normal_color grub_disk_dev_list grub_print_message_indented grub_script_lexer_record_start grub_script_create_cmdif grub_env_unset_menu grub_script_return grub_term_outputs yy_scan_string grub_script_execute_cmdwhile grub_password_get grub_script_malloc grub_normal_execute grub_print_error grub_ucs4_to_utf8_alloc grub_unicode_mirror_code grub_zalloc grub_strcmp grub_script_lexer_yywrap grub_parse_color_name_pair read_crypto_list grub_strchr grub_refresh grub_malloc grub_script_fini grub_putcode grub_crypto_autoload_hook grub_normal_reset_more grub_get_time_ms grub_unicode_get_comb_end grub_script_execute_cmdline grub_file_close grub_script_argv_free grub_normal_auth_fini grub_file_open grub_script_create grub_isspace yy_scan_bytes grub_real_dprintf yylex_destroy grub_env_unset grub_device_close grub_dl_head grub_menu_get_entry grub_normal_init_page grub_fs_probe grub_script_add_arglist grub_script_arg_add grub_menu_fini grub_normal_do_completion grub_file_filters_enabled grub_strword yyget_lval grub_context_fini grub_file_getline widthspec grub_err_printed_errors grub_error grub_dyncmd_get_cmd grub_unicode_compact grub_current_context grub_script_execute_sourcecode grub_normal_auth_init grub_script_init grub_list_remove grub_free grub_strndup grub_named_list_find yy_switch_to_buffer grub_bufio_open grub_xputs_normal grub_printf_ grub_ucs4_to_utf8 grub_script_mem_record_stop grub_auth_register_authentication grub_extractor_level grub_error_pop grub_register_extcmd grub_enter_normal_mode grub_getkey_noblock yyset_column grub_show_menu grub_print_ucs4 grub_list_push grub_script_function_remove grub_wildcard_translator grub_normal_exit_level grub_script_execute_new_scope yyget_text grub_env_set grub_gettext grub_env_write_color_normal grub_utf8_to_ucs4 grub_ucs4_count_lines grub_script_argv_next grub_env_get grub_strtoul grub_menu_init grub_cls grub_script_yylex grub_script_mem_free grub_script_lexer_init grub_script_lexer_record                        8          s           G          3           V                     e                     t          =                        2                 Z                                          z                                                                                           9                    U                    h         z                                       9                    Z                                                                                                                                                     G                                                                                            "                                       2       	                               "                           4         B           M                    d         ~           s                                                                                            )                Z                       5                Z                               '            )       1                    @         Z           Y            F       o            K       {         E                       )                                    /                       5                                       )                :                       5                                                       z           K                    i            )       s                                )                                       5                                       5                                                        z                               (                    E         S           d                    p         z                       S                                       R                   j                                                        E                               $                    @                    x                                                                     z                                          |                                             
                                       "                    -                   8                   A                    P                    ^                                               !                                                                              j                    &           	                  	         E           /	                    C	                    U	                    a	         z           t	                    	            $      	            Z      	            "       	                    	         7           	            ,      	         z           
                    
         W           
                    (
                    4
         r           A
                   K
                    U
         r           d
         t           s
            1      }
                    
                    
                  
         :           
            C      
                    
                   
                    
                  
            I      
            I                   O                  	                  b      &            i      2                  <                  I                    U                  a         "           m                  {                                                                                                                                                                               :                                                                 &                  0                  E                  X                    d                    p                    |                                                r                                           I                                                                                     K                                      :            8               N                    r                             9                  I                    W            P       d                  p                  |                                                .                  F                                   z                       [                          O            0       b                    n            0                                       0                                    z                    N                       0                   (                   8                   5      0            8       ?                    N            $       ]            $       f            $       s            0                                                           (                   (                   8                   (                   (                   0                   5      N         G           z                             z                    N                             8            8      y            0                                                           0                                                           $                   8                   $       +            8       8            $       A            (       K            $       f            0       w         N                                           8                N                       0                   $                   (                   0                   8                   8                   (       .                    7            $       \                                                                     r                                           _               r                               )                    a                    y                                                                                                                      #                    A            *      P                    \         }                                                             *      &                    0                    V            a      `         r           s         r                    r                       _                                    8                          5                    A         z           c                                                                             *            @       V         z           `            @       o                    {         z                    N                       @                                             2                  I                  _            (       j            8       {            0                   @                                       @                z                                        z                       @                N           !            @       D                  ]            @       y                                                                                              /            a      9         r           E                    n                              *                                                       7                    z           3                    C         t           V         n           b         c           o                             $                    z                    7                                          t           0          n           <          c           I                                  c                E                                          c                                
!         c           L!                    \!                    w!                    !                    !                    !                    	"                    "                    %"         z           D"         Z           j"                    "            }      "                  "         u           "         c           "                    "                    "                    	#                  #            P       u#            P       #                    #                    #         Z           #                    #         z           	$            P       $                    -$            P       @$                    Z$                  l$                    $                    $                    $            P       $                    $                    %         Z           )%                    5%         z           F%            P       P%                    g%            P       z%                    %                  %                    %                    %                    %         |           &            "      1&                    K&         }           U&                  _&                    &                  &                    &                  &                    '                  '         r           '                    -'                  G'                    W'            P       g'                    '                    '                    '                    '                    (                  (                    :(                  D(         S           P(                  ^(                  h(            /(      r(                  |(                    (            H       (            H       (                    (                    (                    (         N           (                    (                    (            X       )                    ;)         z           J)                    ])                    g)            X       )         7           )                    )            #      )         E           )                    *                    *                    4*                    >*            X       X*            X       *                    *                    *                    *                    *                    *                    *                    +         Z           =+            X       M+            X       _+                    o+                    |+                    +         z           +            (      +                    +                    ,         Z           ,         <           2,                    G,            8      \,                   v,                    ,                   ,            g      ,                  ,                    -         <           -                    8-                    E-                    U-            +      d-         Z           v-         m           -                    -            +      -         Z           -                   -                    -                   -         !           .            x       .            x       ).         Z           8.                   K.            p       Z.            h       i.                   }.                   .            h       .            x       .                   /         Q           /                   /                    /                    /            -      /            ;      /            H0      /         ^           0            =      30         z           L0         5           u0            >      0         E           0                    0            ;      0            -      0            `       0            D      0            G      1            J      1            -      41            L      >1                    R1            N      h1            Q      t1         E           1            =      1            -      1                    1                   1            x       2            =      2            p       "2            h       :2                    R2            =      o2                   {2            U      2                    2                   2                    2                   2         {           2            `       3         c           3            -      -3            J      F3                   ]3         c           y3                    3            J      3            Y      3            -      3            J      4            J      4            \      94            J      C4            c      M4            -      e4         E           4            k      4            J      4                    4                    4                   
5                    5                    ?5            {/      i5                   v5         Q           5         z           5                    5            H0      5         ^           5                   5         \            6         z           6         Q           %6                    @6                    [6                   m6                    6                    6                   6         /           6         Z           6                   6            0      )7                   ;7                    M7            p      \7                   k7                   {7            =      7            p       7            x       7            x       7                   7                   7                    8                   8                   D8            p       ^8                    p8                   z8            `       8            p       8         +           8                    8                   9                    .9                   =9         z           Z9                    9         f           9                   9                    a;                   ;                   ;                   ;                  ;                    ;                     <                  <                  $<                    2<                   =<                    d<                   |<                  <         r           <                    <                    <                  <                    <                    <                  <         r           <         z           =                    =         z           *=                  4=                    B=                    L=                  [=         <           ~=                  =                    =         ?           =                    =         z           =                    =                  =         z           =                    >            &      (>         j           :>                  D>                    U>                   >                    >            )      >         z           >         ?           >                    >         z           >            ,;      7?         z           K?                    i?                    ?            1      ?                    ?            1      ?                    ?                    ?         V           @                   @         ,           %@            ?      1@                    =@                    I@                    b@                    @                  @                    @            1      A                    ,A            F      FA         a           VA            L      `A         7           lA                    xA         a           A            L      A            T      A                    A                    A         <           A         z           A                    B                    B            m      ?B                    OB                    [B         z           qB                    B            ;      B                    B            ;      B                     C                    C            ;      +C                  5C                    DC            .<      ^C                  hC                    uC            u      C            ;      wD            ^;      D            ^;      D            .<      D            .<      E            .<      E                    .E            .<      ?E                    WE                    E            .<      E                    E                    E            lH      E                   F            u      0F         ?           FF                    RF         z           iF         z           {F            ,;      F         z           F                    F            u      F                    G                    G            u      G         z           *G                    :G                    FG         z           jG                   G                    G                    G                    G         S           G         z           H                   H         ,           'H            ?      1H                    ?H                    H         S           H                    H         z           H                    H                    H            ~      H            )      H                    I                    (I         ~           ;I                  EI                  OI                    I         Z           I                    I         Z           I                    I                    J                     J                    J            ~      J                    J            ~      J         :           J                    J            )      J                    K                    K                    .K         <           :K                    GK         z           VK         .           fK         c           pK                  }K                    K         <           K                    K                    K         4           K                     L            ~      
L                    L            ~      ,L            )      6L                    DL            )      WL                  {L            )      L                    L                    L                    QM                    M                    M         G           M                    N                   N                   N                   8N                   ON                   \N         G           pN         z           N                   N                   N                   N                   N                   N                   N         +           N                   O                   O                    DO                    jO                    O            :M       P                    P            :M      Q                    Q            L      Q         q           Q            :M      /R            L      =R                    R            L      R                    S            L      /S                    mS            L      S                    S            :M      RT            L      T            O      ;U                     U         T           U                    U            T      V         G           V         N           V            O      W            M      KW         N           [W                    W                    X                    .X                    kX                    X            M      X         N           X                    OY            :M      Y            :M      Z            gM      6Z            O      Z            :M      Z                    [         N           G[            :M      |[            O      [            M      [         N           [                    .\                    q\            T      \         S           \                    \         z           \                    ]                    ]            O      7]            V      ]                    ]            L      ]                    ]                    ]                    4^                    Q^                    ^         g           ^            T       _         }           i_            L      _                    _                    _            L      a            gM      :b                    b            U      b            gM      b            p       b            p       b            p       b                   c                   $c                   Cc                    [c            M      jc                    {c                   c                    c            V      c            p       c                    c                    d                    d         z           (d                   >d                    d                   e            L      ,e                  6e                    Ce                   Xe                    ee            8      ve                  e                  e                    e                  e                  e                   e                  e                    e            -      f                    f            p       Gf                    ff                    f                    f            L      f                    f                   f            U      Jg                    tg         G           g         N           g            :M      g            :M      +h            O      qh         G           h            |Z      h            3      h            V      h            U      i            T      )i            3      =i                    Ni                    ii                    yi                    i                    i         ~           i                    i                    j                    [j                    gj                    vj                    j         <           j         z           j         .           j         c           j            5      j                    k                    k                    k         4           2k                    >k         z           Nk         <           k            V      k            L      k                    k                    k         z           k            3      k         r           k            :      k                    @l                    pl                    l                    l                    l         q           
m                    Sm            W      `m                    xm                    m                    m                    m            .l      m            (l      m         m           m                   m                    n                   n         m           gn                    n         q           n                    n         m           n                    Eo            .l      qo                    }o            X      o            :l      o                  o         E           o            :l      	p                    p                  "p                    .p                  gp            (l      p                    p                    p            -m      8q                    q            (l      q            (l      q                    q            l      Dr                    ar            ap      r            l      r            ap       s                    s            -m      Ks            l      ns                    s            l      s            Ys      s                    s         T           Qt         8           yt                    t            :l      t            (l      t         E           t                    t                  t                  u                    &u         z           Fu                    iu            :l      u                  u                    u            l      u                    v            l      :v            l      v            Ao      ow                    yw                    w            	      w         m           w                   w                   w                    w                   w            	      w                   x                    'x            Ys      :x                    Gx         m           kx            (l      x            Ao      x                    y                    y         z           $y            r      2y            t      @y            q      Ny            s      y         g           y            ap      y            l      y                    ,z            `      :z                    Kz         j           oz         [           z            ,	      z                   z            8	      z                   z                   z                    z                    {            H	      {         r           *{            J	      9{            Z	      H{            X	      R{         r           a{         Q           u{            e	      {                    {            	      {                    {                    {         z           {            	      {                    {            ?	      	|            	      5|         z           M|                    ^|            X	      h|         r           x|            	      |                    |                    |         z           |         z           |         6           |            X	      |         r           }                    }            	      ;}         z           a}         z           y}                    }            	      }                    }                    }         z           }            	      }                    }            	      }                    ~            G	      #~            D	      1~            

      ;~                    U~                    k~            *
      ~                    ~            =
      ~                    ~            G	      ~            D	      ~                    ~            S
      ~                                                                     r           (            k
      3         z           J                   _         7           t                           t                    z                              )                   G         z           ^            
      h         E                                                                     ΀                                                                              Q                    e         z           z         Z                    z                    z           ρ                  ߁                                               z                       H                          9                             8                       f                   f      ك            f               v                                                   ņ            #      ۆ            (                                              ,         z           D         Z           W            (      g            (      {            (                                                                                 ·                                                            D                    N            0                  
               E                               ш                             h                    )           >         )           O         h           c                    ~                             )           ĉ                                                  z                               )         z           H         h           \         Z                    z                    z           ϊ                                &                          Z                  ҋ            1      ދ            #      q                              0                                      1      g            Â               |                       &      r                                f                  &                          5            &      R            1      z                                                  0      ϑ            &      o                                &      ʒ            1      4            ׆      \                  v            0      œ            Â               w                                                                     )                    S            m      k                                      ֕         ?                     (                               R                                                                              
                  -                  U                  v         ?                                                                       #                    X                    h                    x                                     ̘         V           ؘ            
                                   (                    z                               /            ׆      Q            6      [                    h                             ,                                        }           ʙ                    ԙ                              (      $                  ;                  Q                                                                      m                          O                    x                             C                                                                                   
               :           #            
      4                    Y            x       k            x       y            x                                                                 Ü                    ֜                                                            (                    2            x       H                    T            x       f            x                                               ŝ                    ϝ            x       ۝                                x                :           #                    Q         4           \         z           |            x                                      x                  x                           Ğ         4           ۞            x                                               '            ;      5            )      ?                  I            O      S                    _            8      k            8      x                                                    X                                   z                       X                                    X      Ӡ                    K            `      g                    v            `                                   z           A            `      X                    C         l                                                   >                    W                                                                                                1            P      M                    \            P      l                    +         z           ;            P      R                    Ψ                                                 |                               W         G           u                             z                    N                    N                               8                  D         T           o                                    *            `               |           г         |                               Q            X                                    X      !                                I      w            I      ;         N           u         |                    |           A                                                          *         |           ~         e                    e                    _                               d                                                                     G           Z                    {         D                    `                    p                    z           Ⱦ                    Ҿ            V      ܾ            f                                      l                  r      	            f                                            '                  6                  @            f      J         R           T                  ^                  m                  w                           >                                         x                  p                                    f      ¿                    ̿                  ٿ            h                                                                                &                    2                  C            x      U                    a            x      r            p                                      p                  h                                      h                                                                                                    >                    X            !      b                  q                                                                   p                                                   S                             N                       *                                                              
                    \                  f                    |                              3                                                                            <                                                                )                    c                  q            C                                                                                                                            *            K      4                  >                    L                  w                                                                                /                    9                    Y                             b                    U                               '                  Q                    ]                  o                    ~                                                        =                                                                     Z                       [               j                       ^                          6                    U                    r                  ;                    Y                    w                  0         !                                         `               j                                                   -         !                                                               c                                      e                  g      .                  V            i      h                    {                                                          8                    O                  b                                                                      c                                                        `                j                               0            e      K         L           U                  s                           K                                                                                                         3            g      N                    X                  t                           K                                                          L                                                 G         K           ]                    n                           L                                                               2      
                             L           1                    P                    p                                                                     L                               -                  :         L           S            2      n                                                                                       L           =                    G                    `            &      m                                                  )                                                        ,                                    2                          :         L                       2                                   L                               2                    G            7      ^                    s         L                                                                                           )                    B                    ]         L           q                                                                                                           z           5                  F                    Y                  p                  z                                                                                                                                  (                  W                                                                                       z                       %                        5                  H                  R            ^      c                                                                     z                                                                                                       ,                  8                  U                  i                  y            ^                                   z                                                                            z           -                  <                  I                  Y                  p                              +                                                                                                                                      "                  4                  A                  K                  Y                                                                                                                                                #                  4                  @                  |         `                                         %                                 z           "                  /                    9                    v                                               c                                        j                                        z                    X                    Z           #            +      :                    K         z           k                    w            [               z                       ^               *                    z                                                 "         z           <            [      Z            ^      d                    t                                                                   $                    D                        f      5            f      M                    Y         z           r         `                    p                                                                              Z           )                    >         %           H                                                 p                                        %                                                   +         p           Z         %           i                                                    1      &                                                                                Y                                                 G                                                   .         +           U                    c                                                            8            I      B            ]      Q            c      [                    w                                                            1            r      U         Z           p                  }                                                                                       Z                    G                               #                    M         +                                                                                                               9                    M                    `                    o                                                                                                  2                                               G                                                 (         G           H         N                                                                                L           <                    a                             L                               "         B           >                  Y                    h                  r                           E                                        Z           =         Z           g                                                                                                       Z                    Z           H                    b         Z                               o                             z                             *                  ?                  T                    }                           J                               \                    t         +           ~                                                                          u         J                                        z                                                             "                  7                                    =                                                      G                  7      .                  8            Y      E                  Q         n           [                  j                                      w                                
                                      
      D                  V                              	                                     0      P                  ]                                                                                         H                                                            /           6                    Q                    l                    %                    ]         F                    P                                        H                                                                                #           y                             0                                        i                    A           1            `      F            	      n                                                `	                                                                                W                  a                                                                                                                 ,                   g                   |                                                                                                                      G                            (                   7                 A                   S                   t                                              G                      H                                                                                b                           G                                      +                              "        Z           9           v      F                   _           N                                                                  z                                      z                              -                 7                   F                 P                   b                                                                                                                                         N     9        2           d                s                            N                      @                                                                                                            		                   	                   )	                   	                   	                 	                   	                 	                   	                    
        1           4
                 >
                   M
                 W
                   i
                   
                   
                   
                   
                
                   ]           !      g                   v                                                               z                                      z                                      z                                      z                                                          -                                                            N             2                            ?           `#      I                 S                 ]           `      g                 q                 ~           `                 `#                 D      (                   7                 A                   S                                                D                                          	                                      T                   e                                                                                                                                     )                   E                   a                   }                                                                                               	                   %                   A                   ]                   y                                                                                                                  !                   =                   Y                                                                                                       
             -           O                   r                                                         -                      J                      P                 t           d                                                  j                 h                                  f                 J     ,        -           P           m                                    `#                                   `      -                 P                                                                                                                    G                                                                                                      W                           G                                                                                                      {                           o                                                 3                 =                   L                 V                   h                                `                   `#                         &                   2             `      =                   [                                                                                          2                    L      (             e      0             z      8                   @                   H                   P             b      X             n      `                   h             z      p                                                                                                                                                                                                                                                                                                           .                   5                   r                  y                                                             (                  0                  8            te      @            e      H            e      P            e      X            e      `            m
      h            o
      p            s
      x            w
                  {
                  
                  G	                  
                  
                  
                  
                  
                  
                  
                  
                  
                  
                  
                                    A                                                                         խ                   x      (                  0                  8                  @                  H                  P                  X                  `            $      h                  p                  x            $                  k                                                                                          ,                  M                                                                                                                                                                                     &                  a                   k      0            o      @            v      P            }      `                  p                                                                                                                                                                                                                          (                  8                  H                  P                  `                  p                  x            6                  C                  J                                    i                  l                                                            0            *      8            "      @                  H            6      P            E      X                  `                  h                  p                  x                                                                                                      t                  t                  l                                    t                  t                  t                  t                  t                  t                  t                  t                   t                  t                  t                  t                   t      (            t      0            t      8            l      @                  H                  P                  X            l      `                  h            l      p                  x                              l                  l                  l                  l                  l                  u                  }                                                                        7                  A                  O                  c                                                                                                                                     (            L     0                 8            c     @                 H                 P                 X                 `                 h                 p            '     x            C                 _                 {                                                                                                      #                 ?                 [                 w                                                                                                                        ;                 W                                   s     (                 0                 8            G     @                 H            '     P            ^     X            h     `            ~     h                 p                 x                                                                                                                                   y                 N                                  m                                                   '                                                                                                                        '                       (                 0                 8                 @            N     H            ]     P            *     X                 `            *     h            *     p            *     x            *                  ;                   ;                    <      0                   @                   P                   x             @       .symtab .strtab .shstrtab .rela.text .rela.text.unlikely .rela.rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                       @                                         @               x     (                          +                                                        &      @                                               ?                          $                             :      @               H                               G      2               xB     F                            [                     T     DK                             V      @               P                                a                                                        q                                                        v                            .                                                    N                                                         X                               	                      p                                                                                                                                                                                                                                                                                                                                                                                                                           boot/grub/x86_64-efi/video.mod                                                                      0000600 0001750 0001750 00000021450 13417732100 0014736 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    h           @     @  
 H        Ht$QP(        uH        H    1ZH        HuH           H        HtH@8H             1H        Ht@1H        HuH           H        QP@uH        H    ZËW ul$  G(u%,  0   4         ,   0   4   8      uS$   G(u",   0   4   Fuz,ut0un4uh8u`ÃuI$uTG(u,uF0u@4u:8 tA0u,,u&0u 4u8uÃ
   tv<ø   H        HuH           H        H@HH        HuH           H        H@PH        HuH           H        H@XH        HuH           H        H@`H        HuH           H        H@hH        HuH           H        H@pH        HuH           H        H@xH        HuH           H        H   H        Ht	H   1H        Ht@@H   1H        Ht@@H   1H        HuH           H        H   H        HuH           H        H   H        DT$D\$HuH           H        D\$DT$H   H        DT$D\$HuH           H        D\$DT$H   H        HuH           H        H   H        HuH           H        H   H    H        HuH           H        H   Ht3H        HuH           H        H   1H        HuH           H        H   H        HuH           H        H   11HH=   ut H           1H        H             1ÀtH           1H        Gtf6 t֊G:O8%   	ȉG=O;%   	ȉ> tt1AWAVAUATAUSH   H        Ht
x  D!H        T$Hš        H     H        HH        ӅuH        H8 u:      H        HӅtӺ   H        HӅHu{붺L   1H|$4H        H|$4H        Ѕ   tH        0     D$<D!;D$ut   A@   D$@} H]  H        Ht)P(H        8 t     H        H     D$D@D$ 1҃@Et$D$'  H        HI        AՅ:  1L   H|$4H        Ѓ|$   H        H     HH        0  Hx   HHL$(AHHL$(  11HD$(HAA> ALD$(  11IxAA> I  A  A     T$D   9  H|$ j  H\$H؊t;HH  ,x  HHD$    I        ;AՅH|$  H        HAՅ7  x   HI        AHu.AHH           1H        Dl$   I        11HD$(HI        AA> D$HL$(xHH           1H        A   11HAA> A   HH           1H        ]1HH           H        хHD$HH        ҋD$#  DEA   \$uǋ\$EH        L0M$1L   H|$4H        AV uPDD|$AV0u8H|$4AV8u+\$@D$<0	ÊD$'@uD!;D$tAV(H             M6oLH        HH        H           1H        !1  HL$E1D$    HĈ   []A\A]A^A_no video mode activated invalid EDID checksum %d no preferred mode available keep keep, keep; no suitable video mode found text auto invalid video mode specification `%s'        LICENSE=GPLv3+  video                                                                                                                                                                           ;                        1           ;       Q           0       g           3       y           k                 3            i      G                  3                                        0                 )           6      3       *    ]      :       J                  d                     o                     {                       8      I                 0                             F      0           6      0                 0       &                     2                     >    *      3       V            8       i                     v          3                 &                                       E                                8       H                 b                 G       0    v      0       H    f      3       c                     o                      grub_video_get_blit_format grub_video_map_color grub_video_delete_render_target grub_video_get_region grub_video_scroll grub_video_set_mode grub_video_get_active_render_target grub_video_blit_bitmap grub_video_unmap_color grub_strdup grub_video_set_region grub_video_map_rgba grub_video_fill_rect grub_video_create_render_target grub_video_adapter_active grub_errno grub_memset grub_video_adapter_list grub_video_edid_checksum grub_video_get_viewport grub_video_get_driver_id grub_video_get_palette grub_video_set_area_status grub_video_set_palette grub_strcmp grub_strchr grub_video_swap_buffers grub_video_restore grub_isspace grub_video_set_active_render_target grub_video_map_rgb grub_error grub_video_get_info_and_fini grub_free grub_video_get_info grub_video_edid_preferred_mode grub_video_blit_render_target grub_video_set_viewport grub_video_get_area_status grub_memcmp grub_strtoul                                               "                     :                     I                     X          &           o                                                                                              &                                                    '                    6         &           H                    W                    f         &           x                                                 &                                                            &                                                            &                                                   &         &           8                    G                    V         &           h                    w                             &                                                                                                               #         &           8                    G                    V         &           k                                                 &                                                            &                                                            &           ,                    ;                    J         &           f                    u                             &                                                            &                                                            &                                                   %         &           S                   d         &           p                                1                &                                                   '                    ?            M       L         .           \                    v            R                   X                                    )                                                   1                    F                                {                                                                            (           	         #           	                   	                     
                   )
         &           ?
                    U
         /           x
                   
         &           
                   
         &           
                   
         &                    (           ?                    a                                                                     (                       ^                &            .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .modname                                                                                              @       N                                   @               X      
                          &      2                                                  5                     9                                     ;                     @                                    K                     P                                    P                      P                                                          X            	                    	                            |                                                          Y                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/ntfs.mod                                                                       0000600 0001750 0001750 00000036040 13417732100 0014603 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    8          @     @   Hw@HHxH9HFPHG8    HG    HG    HG(    HHG UHSH        PHH}H}8HZ[]SHH        H0H{H        [AUIH<   ATUH        SHQH<IHHt	Mt1LH        H1+  H9tfATE fTE HHL1HH   f8L@ta $  wF   H
1 $  J?ɀJ?Ȁ?BɀJ	?IH1uw@:>  w?HπJ@zJ (=  v; $=  w?H(??πɀ@zJHLH         HLZ[]A\A]USQH_PHt$H{xH        HHH        H        H8H        С        Z[]AUH        A1ATIUHSHӺ   HHЊ$AH{¾ 	1҃$H         oIH߉D$H        HUHLU H[]A\A]ATH        IUHպ   HSHЅt$[HH        	   ]A\1H        fCH        PL9u?CHHf@0@3@p@sft1H   Hf9tH        []A\	   1H        []1A\AWI        AVAUATIUSHH(HT$HL$C   @kQDsP@   E   CHA   u%   EAx   AHH   I$AHT$H{RHH  H#HB HC HBH        HItLDLHL$@HT$DEHD$DЅLH        t	и   CH1H([]A\A]A^A_HHcHD$    tt| y	HD$HH        H|$HD$HAWAVAUI        ATUSHVHG(@(AA   HC0HtS tNHC8Hh0H@0    H{0HG0AHS8HHj0t#x uH        P HC     HH        Y[]A\A]A^A_	   1H        L{Lh@AE1MLL{I        A@I@LL{   IAHC Hu#Lc(1Z[]A\A]A^A_UH        HAWIHAVMAUIպ   ATISH1H  DIG@LDH  MH H   H H        H H9EuHEHEȀ{ u7CK4H        H9w_sLLH        IJ4#^  C Hǅ    HCHCH tAuyEu"H        	   1H        W  H        HtHLLL1  H        H        	   1H          	LH        HHH HH9wHӅtZAMtuHH+   I	HcHI!HHHIID$H9u/HH        Ѕt        dHMHEe AE1KPK4MMHUHj H QHMPH        PH        AUС        H0He[A\A]A^A_]UHAWIAVEAUIATSHHLgHuLg A4$u$LMHH        HHLMue   HG@H   H׹   H)HH	H	HHAD$HK(LH9s@80uD@I9wHC D@L1MtMuLHUMHH        AQEZY(        uH        	   H        LcHe[A\A]A^A_]UE1E1H        HAUIATISHH   HHOPj H	HZYt*HeLH        	   1H        [A\A]]H   HeLH        H        [A\A]]UHAWAVAAUAATSHH5  HG HGHC8T  H{(   HC@I        H H   H	AHHC  Lc(A|$   AD$0LcD  A LLEAHHC  LEM  HCHC AT$0HHC(HK(ЃHC H9R  D8(0  tbAu\HCI        HS@D`HH  PHS@HH  PLc L;c(sA<$  HC#HC HS(HC H9  HCHHHK D8(uLCpHK@u   EuHI           H   1Aԅ{  HSHC   rHS@L   HH   1AԅI  HC@H{H        H H   H        Ѕ  HCPHH9LH        :
tPHHSufrf9pu  H        	   1H           PHS HS 8 uHC(D8(   E   HSoj E11HLHj H        ^_H        	   1H        7AD$LHC AD$ILc(EpHHC 1CHC@E1E1It$HH H   PAT$j H	HAZYuAD$IHe[A\A]A^A_]AVI        AUI        ATIU@SHA։HAHtSuPHAHuH        H     H        LHAH߉H        []A\A]A^1[]A\A]A^UHSHAQHG(   H   H        H	HHCtHHH;H        Ѕt           HCf@uHH        	   13H{0u`   HH        Hu"HH        	   AX[]H        x u@H@0HC1C0uHCX    H        H1Z[]ATUHSH`Hu1     H        HHt11H   LD$T   HI        Aԅ  H|$   H        H        Ѕ  D$  P  T$fr  Jg  	Y  ǃ           9s
  HT$L~)Ѻ   HH   HT$P~)Ѻ   HH   H   HT$<HHH     H       H	H[xHH        HIH      H   1H  HH	AԅupHD$TH   H        H   H  H        Ѕu<HsxH      H        Ht   HH        ЅHtH1H        	   H        Ht$H{xH        HHH        1H`H[]A\UHH        SQHH8H        HH        HHtlH  H        1H        HHHE u&H{xH        HHH        #tӍpHFHBHE     H        H8H        С        Z[]ATH        IUHSHH8H        HD$    HEH8H        HH   HA   I        H        HT$LH        H        8 uxH9\$uHCH]PHE    HE@1   HH        кx   Ht$HH        H|$H        Ѓ{( uHs HH        ЅtH{xH        HHH        H        H8H        С        H[]A\ATIH        USHHH8H        HD$    I$    H        H;HH   E1HA   H        HT$H        H        H        8    Hl$}( t6Ht$H        H~0HD$`   Hx0H        HuHlHE H   H        H	HEHD$HpHt?HP H8H        Ѕu(넀x u ptxHH        I$H|$Ht"H9tH        H|$H        Ht$H{xH        HHH        H        H8H        С        H[]A\UHHSHAPHxX HPtG`   HH0RA   HPp`LHXH        H        H: Y^HDH]UHAWAVAUATI        SHHHH   H	AHHCtYHHS H;H        Ѕu?Lk0   HH        LHu&HS H        	   H        1Q  VE1A   1LH        j    Hu_IAXuɋU  t  u(DuI	DuI]HAHIu$H        	   1H        lPE1HLA   Lj LAZYGHLH        HHHLH        uqIA$t<\uA$/I   H        HH        Ѕu4{:u.{/u(C߃A<wI)HsHIT$H        HeH[A\A]A^A_]UHAWAVAUATSHH   Dw(HhH`Et HH}I        I        A"Hw H        Ѕt~  x  t4   H}AHuH        	   H        E1  x$ I uÁx3 0 uPHЀ80uPH`HHtHhH        ЅA  H}H        HH}AԾ   H}H        HI   A	AG
uA<$ I uA|3 0 u1A uEoEo(xLH        HIċx-  tAwHLH        LOMt>j E11HLH}j MH        ^_tH        	   1   Eo0E1E1H}H        к   HH}H        Ht2x@ ux@$ I u	xD3 0 t   H}H        MHu(L  H        	   H        /  $  HH   H        H	HI  J    LpAHǅx    HXHXH9x   HpD(uE    HpA   HHxE1E1LH}H   PH        j H	HZYumHH        LH   H        ЅuFAGH`HHhItH        ЅWAHx&E1E1H}H        H        LLHeD[A\A]A^A_]UH        HSHH(H8H        HT$HL$HD$    H;H        HHt`HA   I        H        HT$HH        H        8 u HT$H        H|$H        H|$Ht"H9tH        H|$H        Ht$H{xH        HHH        H        H8H        С        H([]SH;wHrH        HuHS 1uHw HH+WH[SHH        H        H        HH        [H        H        %s label not found size not match fixup signature not match $DATA should be non-resident run list overflown read out of range attribute can't be compressed ntfscomp module `%s' isn't loaded attribute not found read MFT 0x%llx fails FILE can't find 0x%X in attribute list fail to read non-resident attribute list MFT 0x%llx is not in use no $DATA in MFT 0x%llx NTFS not an ntfs filesystem %016llx /$Volume no $SYMLINK in MFT 0x%llx symlink type invalid (%x) /??/ no $INDEX_ROOT fails to read non-resident $BITMAP $BITMAP without $INDEX_ALLOCATION INDX ntfs                                                                                          LICENSE=GPLv3+  fshelp ntfs                                                                                                                                3                                                                          	                                       5                      K                      Z                      g                      u                                                                                                                                                                                                                                                              )                     3                     A                     P                      grub_mod_init grub_mod_fini grub_file_progress_hook grub_fshelp_find_file grub_xasprintf grub_memmove grub_divmod64 grub_disk_read grub_dl_ref grub_ntfscomp_func grub_errno grub_memset grub_fshelp_read_file grub_fs_list grub_ntfs_read_run_list grub_zalloc grub_malloc grub_error grub_list_remove grub_free grub_dl_unref grub_list_push grub_memcmp     O                     v             H                                                                                          0            p       D                    P                    ]                    h                    x                                                                                 '                    ;                    K                               "                                               h                                                           %            y
                  <                   Y                                             @                             
                       l                           >            ~       O                    `                                                                                                  8                    G                                w                                               	            y
      	            =      	                    	                   	                    	                  .
                   ?
                    _
                   i
                  
                    ~                                      t                                                 	                                             I            =      _                  p                                                    y
      U                    h            H                   y
                                      	                                      8      .            	      B            Q      U                                                                                            h                                              T                   l                              	                                    m                                      p                                               "                    1                  L                    X                  t            p                                                                                                                                                 7            X      A            S      S                    _                                p                                                                             p                           
                                        "                    :                    P                    m                              S                                                                                                y
                          A            	      i                               p                                       p                                                                                       1                  =                    f                                	                  	                                                              ]                  n                                                                                                 7                                                    y
                                                              1                  L            H       k            y
                                                          =      0                  V            H       n            	                  y
                                                                                               "                                                      H       $                    M                    e                                                  X                  S                                                          t                  S      
            p                           0            p       D                    P                    ]                    h                                                                                                                                                                             '                   J                          (                   0                   8             3      @             
       .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                          @               (%            
                    &      2               ;      ,                            :                     p       P                              5      @               7             
                    @                                                          P                                                          U                                                           ^                                                                                                 
                 	                      #      \                                                   x8      g                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/setjmp.mod                                                                     0000600 0001750 0001750 00000002010 13417732100 0015121 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @ 	  ^H1HHgVHoLgLo Lw(L0Hw8É	uHHgHoLgLo Lw(L0g8LICENSE=GPLv3+ setjmp                                                                                                                                                   %                                     grub_longjmp grub_setjmp  .symtab .strtab .shstrtab .text .module_license .data .bss .modname                                                                                       @       K                              !                                                          1                                                           7                                                           <                                                                                                                   	                      h                                                                E                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/ntfscomp.mod                                                                   0000600 0001750 0001750 00000013100 13417732100 0015452 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    @          @     @   SHHc;{|[H        	   1H        ⋳         DL   +DN	@HcH        H1HH;Ѕt        ,   PC   Hc;TrCǃ       1[UHSHQ   H	   tH        Ѕt           H   H   E 1Z[]ATIUHSH        HD$ D$ Ht$Ӆt        $Ht$HӅuD$T$fA$1H[]A\AWAVIAUATUSHH8   D$   )D$HG8HT$H$H|$   IFt9IFL$A   H|$A)AL9LFL)d$A     A~DA9~@t(Au"H        	   1H        :  A      AFD    AF@    A   O	I;FA   rLH        Ѕ  H        I~IFHWH9*A AVDLHcIΉAHAF A+FALAVDՅtK  L$LHHA~D IF   HL1HHH        HHH        HI   HyD11hf  D$+ E1E1E   D$+3  Ht$.H<$HD$Ѕ!  E|$.   H        	   1H        H   HHEH        H  IMH        Ht$,H<$ՅHl$  D$,fH-E1I        T  Ht$+H<$H        Ѕ_  fcA   Au     v!Dэ4D3D3D)9r2D$. Ht$.H<$H        Ѕ   L$.DAE͈l$+Af=   vH         A\f IH        	   1H           Mt(LcI   L$LLT$LALT$L$MA   f)IH<$H        Ѕu(A   A   H	   )9Oȅt뇡        ]  I   H   11L$LI        HIcF@A;FD   HIIvxHII)L9LFLHIvt|A   @LMI؍J	H)I~8IHƈH1LAׅ   H        Ht%I   HtA   LO	1HH1A   H	LHHAF@L)HcATHI9V0AF@%HIHt|A   Iv HIvI~8II+vH	HH        HH1Ѕt        BA   HH	H        HIHtI   Ht11InLI1H8[]A\A]A^A_AWAVAUATIUHSHHLi0H<$IU8Ht{AM0HH% H9   II)I   I9LGH)H        HLH        HtH   Ht	D11I9u1  L,$L)M'   H        IE8HC0Hx8 tJ@0         MII        HLLHHCHCH9CwHAօt                CD    C@    H	H        HcHH   8HCI        I9v$   +   LH)1HHAօ.  A     HCL      Hǃ       D   HHD$HC0Hp8Aօ   L   Ll$AO	HC0LH<$IDh0A   E)DH9HC0DGEHp8LH        H        HtH   Ht	D11I9   L<$L)IH4$HILAօuI     HC0L      Hǃ       LsHD   Hp8H        Ѕt        RHC0AO	H<$IHIDp0HC0LHp8H        H        HtMtL111H   Ht$H        ҋ$H[]A\A]A^A_H        H        H        H     compression block overflown invalid compression block compression block too large nontext window empty invalid compression block size    LICENSE=GPLv3+ ntfs ntfscomp                                                                             
                  
                                                                                                                                                 5                      B                      Q                      d                      o                      {                                                                                         grub_mod_init grub_mod_fini grub_file_progress_hook grub_memmove grub_disk_read grub_ntfscomp_func grub_errno grub_memset grub_ntfs_read_run_list grub_malloc grub_error grub_free                          !                     Z                     v                                                                                  7                                                            Z                    n                                                 
                       R                                    
                       	                          )                                                  6                   g                           d                                                            V         
                                                   '         
                                        
                               G                    w                                                    n      	                    	         
           
            n      '
                    X
                    d
         
           
                    
            i      
                    
                     .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                             @       
                                   @               X            	                    &      2                                                  5                                                          ;                                                         K                                                          P                                                          Y                            	                                                                
   
                 	                                                                                      b                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/video_bochs.mod                                                                0000600 0001750 0001750 00000022000 13417732100 0016104 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                               @     @     	   fH        xf1H        IЃxuK   wR>=   v   )1A  A  9v 9DADADADHLH        1AUAպ   ATIUSH        HH<$t$Ӻ    =   t1qA4u   H<$t$Ӻ          tH$A$      H<$H        D$ƣ        Ӻ     H[]A\A]úp   P1H        H        ZH        H        8   H           Ht21A  I          DfAfHH
u     f0f  11A    DHH   uf1A  H          DHH   uf1A  H          DHH   uf1A  I          I        H        DA	AHH   uATA  DU@@S     H        H        H8H        @D        H             H        []A\
H        AWAAVAUATUSH(L$D$    tNtH@  v@  H          v1  H           1H             X     H        uLąA  D$AtDEAAAFvDtAH        usAH           tcAFH        D$|$D$AĉD$DI   w,Ht$H        H        Ѓ|$ uH           1        u H           H          HH        H            H        8   1A  A  I        @DDA8HH   uf1A  A  I        @DDA8HH   uf1A  A  I        @DDA8HH   uf1A  A  I        I        I        @DDA:A9AD= HH   uں     fff1        uV  A  D   H        H        а          DH            4A  A  I        DfDfA8HH
uvA     Dȉf  0fA   Df؉f   ff   fDfDȉfDf1H        ЉA                H            D        D$        D$        H            H             H                At[AtUG  A   A    A)  H            H            H            UH            H               H            H         
   H            H            H            pH            H            H            H            H            H            H            H             H        H        У        K$H=   H        HH        wN!I        E1E1t$DH        H           1H         H([]A\A]A^A_H        H        H        Ht9HvHH H        H        HHH        H        HtH        HpH        H        width must be at most height must be at most width must be a multiple of %d only 32, 24, 16, 15 and 8-bpp are supported by bochs video 4-bpp isn't cupported Not enough video memory for this mode Couldn't find graphics card PCI BAR not set Bochs PCI Video Driver                                d                                                                                                                                                                                                                                           LICENSE=GPLv3+          video video_fb video_bochs                                                                                                                           	      t            
                                                              	                                       4                      G                      b                      {                                                                                                                                                                               5                     A                     Y                     s                                                                                                                                                   3                     Q                     j                                                                                                                                                                        +                     ?                     `                      grub_mod_init grub_mod_fini grub_video_fb_map_rgba grub_video_fb_fini grub_video_get_blit_format grub_video_fb_get_region grub_video_fb_unmap_color grub_video_fb_map_rgb grub_video_fb_scroll grub_video_fb_fill_rect grub_memmove grub_video_fb_blit_bitmap grub_video_fb_get_viewport grub_video_fb_swap_buffers grub_memset grub_video_adapter_list grub_video_fb_get_palette grub_video_fb_set_palette grub_video_fb_map_color grub_pci_make_address grub_video_fb_init grub_video_fb_get_area_status grub_video_fb_get_info_and_fini grub_video_fb_set_active_render_target grub_video_fb_set_area_status grub_video_fb_set_region grub_video_fb_delete_render_target grub_error grub_list_remove grub_pci_iterate grub_video_fbstd_colors grub_video_fb_get_active_render_target grub_video_fb_set_viewport grub_video_fb_get_info grub_video_fb_setup grub_video_fb_blit_render_target grub_video_fb_create_render_target                          &                                                                           |      !                  0                  _                   i                    v                                                                             *                  Z                                                                                                       p      	                                      (                    8                    H                                                                    #                       -       *            L       :                   O                                               %                                          |                                  #                       p                  x                                             S                                                                                                            ;                   E                    X                  f                                                                             '            $      1            (      C            ,      P            0      ]            4      g            8      w            \                  `                  D                  H                  L                   (                  8      %            D      5            H      E            L      U            P      e            T      w            \                  `                  D                  H                  L                  P                  T                  X                         	                    	            @       	            p      -	         *           =	                    V	                   b	         &           s	            $       	                   	                    	                    	                    	                    	                   	                    
                    
                    
         $                                             U      (                   0             R      8          )           @                     H             $       P                     X          (           `                     h          !           p                     x                                                                                               
                                                                                    +                                                               ,                     "                                          '            .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @       &
                                   @               p      `	      
                    &      2               f
                                  :                     p                                   5      @                           
                    @                     x                                    P                                                        U                                                          ^                                                                                      8         
                 	                                                                               X       g                              boot/grub/x86_64-efi/odc.mod                                                                        0000600 0001750 0001750 00000010310 13417732100 0014366 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   11H9t#HDAAwL    HȃL	HG    PH        HPС        ZUHIH1SPH_PHWXHHP0HHW`HP8HWH        HSH;HHHDH@0    HZ[]AWI        AVAUI͹L   ATI1UHSHHhHWLD$HWH?AׅL<$   I           H        H|$AօLt$t"H        	   1H          I        H|$U   AHHC MtH|$D   A։E H|$&   AH|$OIƾ   AMHtEu H}H        HII$t*HC1HH;HPLH$ЅtI<$H        С        iI$( H{  uCEu>Hu8   H        I<$HD$ЅuAE H        I<$HCHDLHCHC HC1Hh[]A\A]A^A_UHSVH HuY[]H        H        HH        HHt?I1HM HUH} H        ЅtHH        HE  H1Z[]S11HL   H        HPLD$Ѕu?   H        H|$H        Ѕu(   H        HtHH        	   1H        1HP[ATIUHSHGH8H        Há        HtELH        HH        ЅAtHH        DH]PHC HE@1[]A\ATH        IUHSHH?HL$HLD$        Ht2HLH        HH        ЉHH        ҉H[]A\H        H        H        H        H        070707 invalid cpio archive TRAILER!!!  not a odc filesystem odc                                                                                                                 LICENSE=GPLv3+ archelp odc                                                                                                     a                                                                                                       	                                       )                      8                      C                      P                      \                      h                      z                                                                                                                                     grub_mod_init grub_mod_fini grub_strdup grub_disk_read grub_errno grub_fs_list grub_zalloc grub_malloc grub_archelp_open grub_error grub_list_remove grub_free grub_archelp_dir grub_list_push grub_memcmp     9                     H                                                                                                        #                   4                    E                                                                                                   2                    |            '                
                                                                                                               (                    =                    S            (       d                                                                      P                                                                                     .            P       ;                    L                    c                    m                    w                                                                         =                                        v      (             R       0             6       P                    X             h      `             -        .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                          @                           
                    &      2                     A                             :                            h                              5      @               `             
                    @                                                         P                                                          U                                                          ^                                                                                      (         
                 	                                                                                       g                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/setjmp_test.mod                                                                0000600 0001750 0001750 00000005110 13417732100 0016164 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   UH        HSPH             H             H        H        1:   I        I        H        I        R9H        @P1AH        H
ZYtuD   1t(tn.      H        H              I        I        I   H        H        11I        AH]H        H        H        H        H              setjmp_test setjmp returned %d instead of %d val == expected tests/setjmp_test.c setjmp didn't return enough times 0 setjmp_test        LICENSE=GPLv3+          setjmp functional_test setjmp_test                                                                                                                           4                   T                                                                                    	                                       0                      E                      R                      j                       grub_mod_init grub_mod_fini grub_test_register grub_test_unregister grub_longjmp grub_test_assert_helper grub_setjmp                                           "                     2                     >                    Q                     [             !       e             1       o                     |                                                                                                E                    g                                       1       #                    6                    @            i       J                    V            i       `                     .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                             @       j                                   @               p      (      
                    &                                                         .      2                     u                             =                     1                                     C                     8                                    S                     P      P                              X                      P                                    a                      g                                                          x                                	                            v                                                          j                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/offsetio.mod                                                                   0000600 0001750 0001750 00000004220 13417732100 0015442 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   SHGPHH8HtH        HC    1[UHH        SHH_PHwHT$HsH;HtH;HT$H[HH        ]H[]HGPH     H        AVIAUIh   ATIUH        Sտ   HHHtHuHH        H1yL`L(E1IE1Ls@HkPI        HCH        HCAD$w"HtKHtHIu HHIHuHE     H        H[]A\A]A^offset                                                                                  LICENSE=GPLv3+ offsetio                                                                                                                                                                                        {              '                      6                      B                      R                      l                      v                    grub_file_seek grub_file_offset_close grub_file_read grub_zalloc grub_file_close grub_file_filters_enabled grub_free grub_file_offset_open                          .                     i          	                                          
                                                                        R                                         (             (       0                      .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .modname                                                                                         @       h                                   @                            	                    &      2                                                  :                           P                              5      @                     H       	                    @                                                          P                                                          U                            	                                                          h      
                    	                                                                                0      ^                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/video_cirrus.mod                                                               0000600 0001750 0001750 00000022710 13417732100 0016325 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    H"          @     @     @@H        HcϺ  HHPH  ȉŲωʃ	׺  	ǰ@@ԃူ	@1H        IЃxuK   wR>=   v   )1A  A  9v 9DADADADHLH        1AUAպ   ATIUSH        HH<$t$Ӻ    =   t1   A u   H<$t$Ӻ          tA$      H        H8H        0Ӻ     H$H        D$           H[]A\A]úx   P1H        H        ZH        H        8 :    QH        H           H8H        1A  H          DHHu0A  H          DHHu0A  H          DHH	u0A  I          I        H        DA	AHH   u޺          H             H        Z
H        AWAVAAUATUSH($D$    tAuAX     @   H        u   v'   H           1H        }  A      H        wH$܅uAt$ۃ t CvH           DkAEDA  ~0  H           I        A1A  DH        H        AԉHpPHt$H        Ѓ|$ uH           1        u H           H        Y  HH        H            H        8 #  1A  A  H        DDHHu0A  A  H        DDHHu0A  A  H        DDHH	u0A    I        I        I        DA
A	AHH   uݺ          İ   H        H        H            DA  EL$D1@D@@DD@D@ADD@D@ADDDDD@	к  1	D`D@D@DADD@D@D@  A  HDD؉DD@DȲDò1H        ЍCwH        @4H        1@  @        D        H            أ        D        D        H            H             H                Ctr@  H            H         
   H                      H            H            wH            H               H            H            H            H            H            PH            H            H            H            H            H             H        H        H        У        H        I        HH H   wLI        E1E1H        D<$AH           1H        H([]A\A]A^A_H        H        H        Ht9HvHH H        H        HHH        H        HtH        HpH        H                                    screen width must be a multiple of %d screen width must be at most %d screen height must be at most %d only 32, 24, 16, 15 and 8-bit bpp are supported by cirrus video screen width must be at most %d at bitdepth %d Couldn't find graphics card PCI BAR not set Cirrus CLGD 5446 PCI Video Driver                                      d                                                                                                                                                                                                                                           LICENSE=GPLv3+          video video_fb video_cirrus                                                                                                                                                f
      t            
                                        	                      
                                       4                      G                      b                      {                                                                                                                                                                               5                     A                     Y                     s                                                                                                                                                   3                     Q                     j                                                                                                                                                                        +                     ?                     `                      grub_mod_init grub_mod_fini grub_video_fb_map_rgba grub_video_fb_fini grub_video_get_blit_format grub_video_fb_get_region grub_video_fb_unmap_color grub_video_fb_map_rgb grub_video_fb_scroll grub_video_fb_fill_rect grub_memmove grub_video_fb_blit_bitmap grub_video_fb_get_viewport grub_video_fb_swap_buffers grub_memset grub_video_adapter_list grub_video_fb_get_palette grub_video_fb_set_palette grub_video_fb_map_color grub_pci_make_address grub_video_fb_init grub_video_fb_get_area_status grub_video_fb_get_info_and_fini grub_video_fb_set_active_render_target grub_video_fb_set_area_status grub_video_fb_set_region grub_video_fb_delete_render_target grub_error grub_list_remove grub_pci_iterate grub_video_fbstd_colors grub_video_fb_get_active_render_target grub_video_fb_set_viewport grub_video_fb_get_info grub_video_fb_setup grub_video_fb_blit_render_target grub_video_fb_create_render_target                   @                   @                                               s                                                                                                      @                                                                  ,            @       6                  H                    \                               7                   .                   @                  @                  @      0            ?       ;                    K                    X                                                    &                $                       F       )            g       ^                   n         $                       @                                 &                                                                            $                                                                   @                   n            7                   .                   @                  @                  @                  ?       /            @       9                    E                                                                                           @                  D                  H                  L      *            P      6            T      @            X      P            |      `                              d                  h                  l                  |                                    H                  X      	            d      $	            h      4	            l      D	            p      T	            t      f	            d      v	            h      	            l      	            p      	            t      	            x      	            @      	                    	                  	            `      	                  	         +           
                   )
            @      <
         '           M
                   h
                   t
                    ~
                    
                    
                    
                   
                    
                    
                    
         %                                                  (             	      0             b      8          *           @                     H                    P                     X          )           `                     h          "           p                     x          !                                                                                                                                                                        ,                                                               -                     #                                           (            .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @       
                                   @                     	                          &                     0      2                              .      2               b      $                            B                                                        =      @               P                                H                                                         X                                                        ]                                                          f                                                                                      P                          	                                                                                !      o                                                                                      boot/grub/x86_64-efi/ohci.mod                                                                       0000600 0001750 0001750 00000037600 13417732100 0014556 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    ;          @     @   ATH        IUHSHHHtH\$HHAԅu
H[h1   H[]A\H        HtZHHJHPǂ       HB   H(HJ HB$    H@HJ(HB,    HJB   H@hAVH        AUATUH        SHH
  HD`H1H{8 Eu	1H{  2HHK8H@H=  HHK H@H=   uHI        @   LhHBtAL9sT   1D9H}HH   H        A      H@    H@     H@$    H@(    H@,    H@0    H@    HH[h@H        
   []A\A]1A^AUI        ATDf  UIHLH        SQLoH        H        IE 1AA   tE    Me A$   E     1tZ[]A\A]AWAVI        AUA   ATAH        US^  QHoHHH        H        HE D 1AEI        uWHHE     AL  HHU tAL9v      DH        H             HHE     AL  HHE    u
AL9v    HHE A͋u    HHE  AL  HHU uAL9v\   
   H        H] H        H          D1H        A1Z[]A\A]A^A_SHGH        H        6  H        I        H XH1AAщ[UA1H        HAWAVAUI        ATSH        H(H}uH           AՁ" H}Lu     @H        H       Hu-H        H           H        1AB  HAƺ  @H!H       A H	H}uH             I        A׺  A  DE1  <       H}uA׺  DAu-H        H          H        1A  H}uȺ   A׉A  ƃDffDfVA   H        A   H        H        j  1A_AXx   H        HI  1x   HI        I        AE1H        MH        &  H        Ӿ      AHIGq  HI        AI        IIGLUA1I   AGAPAGH        H        0  H        I        P1MOMGAӾ      ALUIG0HZYM  HAI0IG AI AG(   1A1HIW HH=    @  uAQAG(H        H        @  H        P1MO MG0H             HUIGHHAZA[4  HAIHIG8AI8AG@  1A1HIW8HH=   @  uVAG@H        H        O  H        P1MGHMO8ӿ     P  HEIG`H_AX  HAI`IGPIGpAIPAGX P  1A1IWPHH HH=O  HQuPAGXH        H        `  H        I        P1MOPMG`IH        H        d  H        D(1EEZAY  II        @   1H        H        o  H        AIA
   @   I@uH        H        x    d   AAuIH          BBH        h  tH        H          H        H          H        1AI   I        @   A1H        H          H        IH          H        @4.x'I@@%  IGǀ       AWIP1H        IGA   ǀ       I@   AW(IP I@$    IAW@P(I@,       H        H          H        1AIH        H          H        D   1AIH          H              H        1AIH        H          H        @   ID@1AAIBHBHH        IGhLH        E1NH        I`IHI0ILH        A   H        1HeD[A\A]A^A_]UH        HAVAUATISHFH          D(D@HH        H        D@DHDp1EL$H        H        E  H        1ID$EH          H        PDHP1RH        ZYHe[A\A]A^]AUHATUSHRt^FHt#Ft	+GXHGP1HPH9uH@    I        Lc1    HAHEpMHCH]ptLX[]A\A]UHSHQHVBBHVBt.Bt	+GXHGP1HHH9uH@    HC@    H        H          H        1I        AHHsH        ZHH        []AWH        AVIAUIATIUSQL~8H_H    Hv8HIG@t	+CXHCP1hA/t+kXHkPt] EAD$0AD$011AE1AH        H          H        I        A׀   H        $ػ      H           1H                          DMIH        H          H        1A\1DMIH        H        	  H           AIcD$0t1HkUMID$(0)HPI         It$8I}H        Z[]A\A]A^A_AUATIUHSHH_Ln8H@   H    H        Hv8HI        H        H        [  H        1AH   @   H@H        H        H        e  H        1AHCǀ       H@   S(HP H@$    S@HP(H@,    HP@   H        Hu8I|$и	      IEHtHHL[]A\A]H        pH1uj@uHT$H        LHAEHT$AE t+CXHCPt@E0E0EHHH        Hu8I|$1   H[]A\A]AVH        I        AUIATIUSH_Hn8HHH        1H          H        AH@   HBtHE@t	+CXHCP1D@EDE tD+kXHkP11IH        H          H        AHt
EAD$0	AD$0It$8I}H        []A\A]1A^UH        HAWAVAUIATSH8H_    HI  IM     A} AUEul(      EAMt     1AA	A	A	EA  tHS8Bt+C@H1A  HS Bt+C(H1A   1Ht9D9}4Hu1ɋ  D9tNHHօt	+K@HK8+K(HK D9})HHtHt	H+K8K@H+K K(1ɉJ1HID$u(H        H          H          D@DHAAE9DMtiDE1H        H          H        H        DMDEH        H          H        1*  EuCHCpHtHPHSpH@    HID$  H+CPIT$CXBID$PPD+CXHCPID$ID$ED$E1ID$KHPHHSpH@    IT$HBH+KPKXIT$JIT$H  H+SPSXPIID$E;UDU  IkM|$LUIE(H        H        MpDXuȋ0ED]I        HcupW1H}H        Vup  AD]LUXZE  1Ҹ   ADЋE  	H}    }ȋuT7AAWAAG    ID$DPID$H   H+CPCXAD$HCpH} t&ID$p  +sXHsPHH        I|$    1H        H        H          H        1I        ALH        и   O     AG    AG    191;1H        MD$H        &  H        I        AID$D@ID$IT$Ht	H+CPCX1BID$H        H        7  H        D01I        AAEt8ul1H        H        >  H        AH@   21H        H        H  H        AH@   H@Me811?He[A\A]A^A_]H        R    H        HtH        H     1H        H        H        H        к,  H        H        H        H        X1PH        H        H8H        ZH        H                                                                                                                          detect_dev status=0x%02x
 ohci bus/usb/ohci.c begin of portstatus=0x%02x
 end of portstatus=0x%02x
 root hub ports=%d
 pciid = %x
 No OHCI address is assigned
 EHCI: EHCI is not mapper
 ehci class=0x%02x 0x%02x interface 0x%02x
 base=%p
 hcca: chunk=%p, virt=%p, phys=0x%02x
 EDs-C: chunk=%p, virt=%p, phys=0x%02x
 EDs-B: chunk=%p, virt=%p, phys=0x%02x
 TDs: chunk=%p, virt=%p, phys=0x%02x
 OHCI revision=0x%02x
 OHCI is owned by SMM
 Ownership changed normally.
 OHCI is owned by BIOS
 OHCI is not owned by SMM nor BIOS
 OHCI reset
 OHCI HCCA
 Legacy Support registers detected
 Current state of legacy control reg.: 0x%04x
 OHCI Legacy Support disabled.
 OHCI enable: 0x%02x
 Ownership changing timeout, change forced !
 loop finished: control=0x%02x status=0x%02x
 intstatus=0x%02x, td_last_phys=0x%02x
 TARGET=0x%02x, HEAD=0x%02x, TAIL=0x%02x
 OHCI finished, freeing
 OHCI tderr_phys=0x%02x, errcode=0x%02x
 OHCI failed without reporting the reason Overrun, failed TD address: %p, index: %d
 Underrun, failed TD address: %p, index: %d
 Unrecoverable error! Unrecoverable error - OHCI reset
 Timeout !
 Cancel: tderr_phys=0x%x, tderr_virt=%p
 Fatal: No free ED !
 Fatal: HEAD is not equal to TAIL !
 HEAD = 0x%02x, TAIL = 0x%02x
 OHCI transaction td=%p type=%d, toggle=%d, size=%lu
 Fatal: No free TD ! Tail TD (not processed) = %p
 program OHCI
 BULK list filled
 CONTROL list filled
                                                                                                  LICENSE=GPLv3+  cs5536 usb boot ohci                                                                                                                         	                                              ?                                  
                                                             -                      ?                      ]                      k                                                                                                                                                                              %                     6                     H                     S                     d                     n                                                                                                          grub_mod_init grub_mod_fini grub_millisleep grub_dma_get_virt grub_disk_firmware_is_tainted grub_dma_free grub_usb_controller_dev_unregister grub_memset grub_disk_firmware_fini grub_pci_make_address grub_loader_unregister_preboot_hook grub_usb_controller_dev_register grub_zalloc grub_malloc grub_get_time_ms grub_real_dprintf grub_error grub_pci_iterate grub_free grub_loader_register_preboot_hook grub_memalign_dma32 grub_cs5536_write_msr grub_dma_get_phys grub_cs5536_read_msr                            L                                                             2                    {                                                            &                   6                    @                                                                      .                                              9            J       C                                                   J                          	                   )            d       3                   B                   L                    q            w                                                                                                                            	                   J                    `                                                                             ;                   K                   U                   s                                                                                                                                                             3                   =                   L                   V                                                                                                s            ;      }                                      	            b      	                   %	                   /	                    I	                  S	                   b	                   	                    	                  	                   	                   	                  	                   
                  (
                   ;
                  E
                   V
                  `
                   o
                   
                    
            
      
                   
                   
                  
                                      a            !      k                   z                               D                                                        r                                                                                                    D                   U                   d                                                                                                                                       &                   0                   B                   X            '      g                   |                                       [                   e            P      t                                                                                               <            h      F                   U                   _                    x                                                                                                                                                                          s            
                                                                                                                        !            %      +                   :                               
                                          9            
      d                  n                                                   G                                     R                                             N            
      f                                z                                                                                                                        *                  4                   C                   +                   5                  U                    o                   *                  B                    N                  X                   g                   s                                                                                                                    ,            8      6                   E                   T                    o            F      y                                                  X                                                                                                        ,            i      6                    B                    L                    ]            J       g                   q                    }                                                                                                                                                                           c                   U                          (                   0                   8                   @                   H                   P             \      X             \      `             U      h             U                                                             c                                       `      (             "      0                   8                    .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                           @                                          @               p%                                +                           p                              &      @               89      P                          3      2               x      m                            G                           X                              B      @               :                                 M                     H                                     ]                     X                                     b                      X                                     k                      h                                                           p                                 	                      #                                                         H;      t                                                                                                                                                              boot/grub/x86_64-efi/setpci.mod                                                                     0000600 0001750 0001750 00000021370 13417732100 0015120 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    x          @     @   AVH        AUAATIUSHH     H             HG8    Hx   Ht$H        H|$%          H        8
u     HCH@HD$                            H|$?:)  H        D0HH|$   Ht$D	        H        8
u                       H                !ЉH             H             H             HCx /  Hh   Ht$I        Hl$HA֣        H        8
u     Hl$H                    f  Hl$} :t%:   H           H        6  Hź   Ht$Hl$HA֣        H        8
u     Hl$H            H|$?.u?HǺ   Ht$H|$A֣                  H            HCx  tH@(H        H        H     H        A     tH           I$1I        HD$HI        HI,HAHHH|$H        ЅtoHHuH           Ht$     H|$H        f        H        8 tbH           1H          H        H\$HHHAf        A        AHH\$        F  H|$?+t&   H        H|$H        ӅteIH        fHH|$   Ht$H        f                t     H        H|$ӅuH            p   H        H|$ӅuH            D   H        H|$ӅtԺ   H        H|$ӅuH            HD$   H        H|$ӅtH        8 uH        BH|$H             ?=   HǺ   Ht$H|$H        ӣ                   H|$H         ?:u:HǺ   Ht$H|$ӣ                uWH         H        8 tH        H        H8 kH        1H        1H[]A\A]A^AUH        H        ATUSH8#1;H|$t$Dd$  H        : tH        ;:  H        8 tH        1D;"  H        8 tH        1;  I        H|$t$AU H        AH        DAt-AtFE1AuLDк  D҃fD.Dк  D҃ffD  DAH        H8 tNDH        	   H|$'I        1AH        Ht$'H8H        и              uDEm DL$H        H        DL$HADD1I        AnЉH        D!0At)AtAAuJDк  A@A  ,Dк  AA  f  D1H8[]A\A]1PI        I        H        H        H        H        H        ZH        H8H                             d                                      s                                      v                                                                                                                                                     	              
                                                                                                                                             $              (              ,              .              0              4              <              =              >              >      missing `%c' symbol one argument expected unknown register .L .l .W .w .B .b unknown register size option -v isn't valid for writes %x Register %x of %x:%02x.%x is %x
 Manipulate PCI devices. [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] setpci Select device by vendor and device IDs. [vendor]:[device] Select device by its position on the bus. [bus]:[slot][.func] Save read value into variable VARNAME. VARNAME VENDOR_ID DEVICE_ID COMMAND STATUS REVISION CLASS_PROG CLASS_DEVICE CACHE_LINE_SIZE LATENCY_TIMER HEADER_TYPE BIST BASE_ADDRESS_0 BASE_ADDRESS_1 BASE_ADDRESS_2 BASE_ADDRESS_3 BASE_ADDRESS_4 BASE_ADDRESS_5 CARDBUS_CIS SUBVENDOR_ID SUBSYSTEM_ID ROM_ADDRESS CAP_POINTER INTERRUPT_LINE INTERRUPT_PIN MIN_GNT MAX_LAT        LICENSE=GPLv3+  extcmd setpci                                                                                                                              M            
	                                                              	                      
                                       )                      6                      D                      [                      f                      r                                                                                                                                                                                 grub_mod_init grub_mod_fini grub_strlen grub_strncmp grub_snprintf grub_unregister_extcmd grub_errno grub_printf grub_pci_make_address grub_error grub_pci_iterate grub_register_extcmd grub_env_set grub_gettext grub_memcmp grub_strtoul                  8       '             <       R                     g             8       q                                  <                    <                                         8                    8                                        <                   <       )            8       2            <       B                    R            $       b            (                                       4                                       (                                                                   0            0       :                    V            $                   ,                                                                                                                                                                  9                    R                   q                    }                                                   *                                                                                                                    ;       '                    9                   X                    f                   o                                >                                      A                                      D                   G                          +            J       @                   O            M       c                                                                                                                                                                                                 !            c       5                    A            Z      ^            <       h            8                   (                   4                   $                   0                                       ,                                               '                                                                                                                                       
                                       5                    H                                                                                                                                         	                    	                    	                                                    *      8             <      @             f      `             z      h                                                                                                                                                                                             0                  @                  P                  `            +      p            :                  I                  X                  g                  v                                                                                                                                      0                   .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                        @       #	                                   @                      
                          +                     p	      @                             &      @                                                3      2                                                 B                                                          H                                                         X                           @                              ]                                                          f                                                                                      X                          	                                                                                      o                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/part_acorn.mod                                                                 0000600 0001750 0001750 00000004350 13417732100 0015760 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   AW   AVI   AUIATUH        SH  HT$L$  1Յ   $  <	ux11  HH  u8$  uK$  $  LD$D$    L$  AǃA1ELՉ"H           1H        ҉E1   H        Ld$1H$@  A$=t=ޡugAD$HǄ$(     H$  $0  $  LHT$LH$  AD$H$   AօtH        I*uH  []A\A]A^A_H        H        H        H        H        Linux/ADFS partition map not found acorn                                        LICENSE=GPLv3+ part_acorn                                                                                                                                                                                                                              5                      D                      O                      Z                      k                       grub_mod_init grub_mod_fini grub_partition_map_list grub_disk_read grub_errno grub_error grub_list_remove grub_list_push                 
                                                                          o                                                 	                                                                                    #                             .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .modname                                                                                         @                                          @               h             	                    &      2                     )                             :                     @                                     5      @               X      0       	                    @                     `                                    P                     o                                     U                      o                                                                h      
   	                 	                            z                                                          ^                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/sfs.mod                                                                        0000600 0001750 0001750 00000016770 13417732100 0014434 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   HHH9t*xHHH?ɀHHAVIAUI        ATA   DUSH/   HcAHH      AvD1H   II        HHHH        H        8 u   D| HcAHIuHA2   DHHsH        HcH  AL1[]A\A]A^AWAVAUATI   UH        SQHH  I        11Ip   LI        AA}  1     H        HH        ЅuC4tP t"H        	   1H           ǃ   	   Ⱥ      9s
   CA   	   %      DHcHHt{   sh1ILAMcHLAA}  uRE(H}1C|    H[pHǃ       L   ȉCxH        HH   H        H<1A} uH        	   1H        HH        H1Z[]A\A]A^A_AUIH        ATI        USQH?HHtVH   H        H| HH        HHIE tH   HH          H   AHAԡ        Z[]A\A]AWAVAUI        ATUSH8HDg   Ht$HT$   HcAHHLl$uzH        H1        D1H   IHHHH        H        8 uA      EIF	HHtDeAEu|IIFHIH$H        IH        K|=IGd<AA~ tAF u@9  xA   0  EnA   AAvEVH        H<$Aʉt$,DT$(п8   HD$ HD$HI   HT$ H        H|HI        HT$ DT$(t$,uLA   LL$ EVHEnAvEnH4$IIIF0    H        AF    IF(    IF          LHL$LHD$D	MALLL$ AE`H        Hи   A   EnAH8[]A\A]A^A_USH        PHoPH   H   HH        H8H        Z[1]ULGPIHHMPpRMXpHO`HWXI   j E   ARE@|I        APARVLL@H        H0AWAVIAUATUSHH(HHuG  H0 u~   GG    HG(    h   HHFGGH<    H        HHC0uH        HC          Hk      HC0SPDcM9s\Hs(1HHHtA   t D	H9sLK0A<L9FHS0HI)ƋBL/  kE1D$      L;   H        A   HcEWlIH@HD$AA      DDT$MLL$1I   HHHH        H        LL$DT$8 tH        LС           fAAȃt]AQHcHT$
9wAy u	DRA59uAy tfDzDjLfAAAǉD$H        ?Ay LH        H           1H        ҅   H{0HtQHs H9s(rGHH        Hu*H        H{0     H        HC0    Hc HC0HC0Ht't$DkB&SHS(D$HS(HC0lHC(T$LL)H9sH*IDH           1H        1H([]A\A]A^A_AVH        IAUATIUH        SHH8H        HD$    ID$H8H        HH   LhpHT$A   I        H        LLH        H        HT$8 u,BHֹ   LID$@HI\$PID$    1:L9tHH   HH        H8H        С        H[]A\A]A^AUH        IATUH        SHH(H8H        HT$HL$HD$    H;H        HHtyL`pA   I        H        HT$LLH        H        8 u HT$H        H|$H        H|$L9tH   HH        H8H        С        H([]A\A]AUH        IATA1UHSHӺ   HHЊ$KAH{0I        	Ѝ ?T$$AHAHUHLU H[]A\A]SHH        H        H        HH        [H        H        SFS not a SFS filesystem not an SFS filesystem SFS extent not found reading a SFS block outside the extent sfs                                                                                       LICENSE=GPLv3+  fshelp sfs                                                                                                                                 3                                                                          	                                       )                      ?                      L                      Y                      e                      t                                                                                                                                                                                                                                                   grub_mod_init grub_mod_fini grub_strlen grub_fshelp_find_file grub_strncmp grub_realloc grub_strdup grub_disk_read grub_dl_ref grub_errno grub_memset grub_fshelp_read_file grub_fs_list grub_malloc grub_error grub_list_remove grub_free grub_dl_unref grub_list_push        ?                                                                                                         .                    H                    a                    ~                                                                                                                                                                                                                        $         
           8                    Z                    x                                                                                                    h         
           w         
                    
                               #                    r                                                            -                    :                                                                              $                                        /                    ;                    T                    b                                                                        /       
	                    5	                    F	                    Z	                    	            D       	                    	                    
                    
                    ;
                  b
            6       l
                  |
                    
                    
                    
                    
                                        !                    6                    X                  v            6                                                                                                                                                                                     T                                                                                                                                                         k                                        	      (             J      0                   8                    .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                          @                     (      
                    &      2                     o                             :                           P                              5      @                            
                    @                                                         P                                                         U                                                          ^                                                                                                
                 	                            	                                                   P      g                                      boot/grub/x86_64-efi/part_amiga.mod                                                                 0000600 0001750 0001750 00000005000 13417732100 0015725 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                               @     @   G   uȉ11H9tHAWAVAUATUHS1HX  H4$HT$1LD$P   HHI        AՅN     H        H|$PI        Aօu(H|$PI        AׅuDd$l1AAu	HHuH        ZMc1L$P     LHAՅ      H        H$P  AօuH$P  Aׅt"H           1H           $  $  H$  Ld$(\$D$0    ȉHt$$  ΍NHt$)щHT$HD$ H        HD$@H$Ѕt        D$`  AA1HX  []A\A]A^A_H        H        H        H        H        RDSK Amiga partition map not found PART invalid Amiga partition map amiga                                              LICENSE=GPLv3+ part_amiga                                                                                                                                                                                                                              5                      D                      O                      Z                      k                      z                       grub_mod_init grub_mod_fini grub_partition_map_list grub_disk_read grub_errno grub_error grub_list_remove grub_list_push grub_memcmp   \          
           v                                                                                                #       #            (       4                                                                                         	           	                                                                         D                    )        .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .modname                                                                                         @       )                                   @                     h      	                    &      2               i      J                             :                                                          5      @               p      0       	                    @                                                         P                                                          U                                                                                             
   	                 	                                                                                      ^                              boot/grub/x86_64-efi/signature_test.mod                                                             0000600 0001750 0001750 00000021000 13417732100 0016657 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   H   H        H        H   H        H        SH        H`   `   HHtHǺ`   H        H        H[UH        HATASH        H H}HuH8HUH        HE    H        HuAQH        I        I           H        PH        11vHUо   HP AI        I        1   -H        9H        H        P        @P1H             XZHe[A\]SH        HL  L  HHtHǺL  H        H        H[SH        H    HHtHǺ  H        H        H[SH        Ho  o  HHtHǺo  H        H        H[SH        H        H        H        H        H        H        H        H        H        H        H        H        H           H        H        H        ӹ   H        H        H        1H        H        H        ӹ   H        H        H        1H        H        H        H        H        H        H        HH        [H        H        H        H        H        do_verify hi
 hj
 verify_detached can't find command `%s' 0 tests/signature_test.c verification failed: %d: %s err == (is_valid ? 0 : GRUB_ERR_BAD_SIGNATURE) (proc)/hi_dsa.pub (proc)/hi_dsa.sig (proc)/hi (proc)/hj (proc)/hi_rsa.pub (proc)/hi_rsa.sig signature_test hj hi hi_rsa.pub hi_rsa.sig hi_dsa.pub hi_dsa.sig                                                                                                                                                                                                      R+ k#	 M7dGpw_xFb^H×NCKE=4QYB|mN=pU<|bZ*ޭ}`\/_q30x:k*؁:s4.LR(^ſa"<Wj)> ElSVO	*G঎tn:prGk-ޡA3l&ǏO8B5ޔ<ag&-5 g ϛⱓ	@ޫSϧEk,@$bu,БZhEʏ^aq]L[_=0orW*(U 
*Ng ӯ?όdY{F%-'<VnI# c@\uٷ' La+]¬7NJoa̞j>Uf&߀o%y^EFtިȏo=!4lDsFˠ\eMT~{QFP"$.^3B~t I
ŐE2_CwzeYqh6GOHA!5,7#{zD_SV͌Vm&m_`,qwg	|#UZTA-ƇgC=;FJ3FbfZJ@å=m)},mĪ
Ijs-ORFTלw2tJ_c>ye!}YඣRF1l&I+L` O×2KzQ:{!Tx+ƒr3xC<k?%gn^z<.n-cOfr}8I}:m2bNF&g&Iޕυ?vu G/޲_PE+o:FS;lнRJI/az&ot9QmJO. i^"r4|q _6+u8+xW&ο?)-Ԡ&kzH1@	<e9%.BCP6LR7 JZVPT&<:"Ok[d2"^[K&.Fq`SыGNU GRUB DSA signing test keyz "R+		
 
	֑ C7@GKv0=~*R` ul-A)O7&(U0pnJ=    ^  R, 
	G 1mONay'!Ǖƛ aMo8 /S\=46wbNOHdXR, `/<jr)a&.Nb+E*n_BDv0.-Z?*wƻKx78R^wLtNbzek	)v},3~L(A,s/a^\DT@|rQ!,*f<1l)QvSFdR~ǾO"jhr][	9{E74M̆+igUUVh'SM^$	+=(y]Jo߯o "N} b*|?ȎTs쌵KLP8'S9q<^Y"$b](iu%&v-iDI>-R8.FM@9We&']cϠ4KJG'?m2Yh]0H[T9Zȴ2s1:%m^
!^/0SRG&Ja*`#!/!4d(a1 >_.g  "GNU GRUB RSA signature testing key8 "R,		
 
	!wj
E7Qwgqtǫ4Em^tB7"63%}N"f`Jrz3b^{}7K15(vbLL>}ZDb"A?I-
KemQ=L\J!o7^Rt91RLr^i LLO3udϓB$!;"ב76R"Iz 	1kᇋ 'Y7@wʨ^F E`@(t4L\`j\&on+|,J-ͤUTS#g(v/*@G0М"hrrI^MA|icؐJB0{X02t=ܶ?>Gu6(O֡=taww%qU1@PI?@OG#QGSr9gϊ ?iMAs˯)"gSe#i1.   R- 
	!wj^ 6,&6򝓠˧g3+~Q-	ռؐqoj*pi+/rr(2*R5J;o$is~^(tIcph 2  ȺEwk`kp8	ZU@R:{?!Xdl3ۓZV:"J/w+
WCK>}Y6
;xPfbxa;& g<u:QO|"#L#PĤh.S30VbhgARIOacH]beѿFܚ߹n1<^	o.CSj>([7+dxx*n&ijĺt܀F(LzmJ(lYS|"ȍ:l'<OKktʬv Xi@BB8;ĵ9zZ>/nF=|kx;^0G\ՀtN|_kܩ$,	O+io(sQϧ LICENSE=GPLv3+ functional_test procfs signature_test                                                                                                                                            
                                                              	                      
                                       )                      =                      J                     M                      Y                      k                      v                     y                                                                                                                                                           grub_mod_init grub_mod_fini grub_errmsg grub_procfs_entries grub_memmove hj grub_strdup grub_command_list grub_errno hi grub_malloc grub_test_register grub_test_unregister grub_list_remove grub_named_list_find grub_list_push grub_test_assert_helper       	                                          &                     0                    =                     e                   o                                                                                                                                                             0                                        2       (            I       2            e       H            2       T                    ^                    h                    {                                                                                                               
                                              G            p      Q                    c                    m                    w                                                                                                                                                      @                                       `                                       ~                           
                                      %                   /                   9                   G                   Q                   [                   l                   v                                                                                                                                                                                                             `                                                                                                                             0                   8                     P                   X                   p                   x                                                                      &                   :        .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                           @               H                                &                     `      
                              .      2               j      1                            B                                                        =      @                                                H                                                         X                                                          ]                                                          f                                                                                      p                          	                      H                                                                o                              boot/grub/x86_64-efi/part_apple.mod                                                                 0000600 0001750 0001750 00000005740 13417732100 0015763 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   UH           HAWLAVI        AUIATSHx  HxHp11HAօLh  DfAfAREtAARE  EH        H        {   H        1I        A  HfDE11HH`HfALx0EDDL	     HHcLHhЅ*  DfAfAMPtPRH           1EAhMP  H        H        I        AY^   1  Eu
DAfA؋L`H        I        HH	HHƾ   H	HDHP1QH        RH        AWAH HpHLHxЅt        <fÆAD9r	H           1H        He[A\A]A^A_]H        H        H        H        H        bad magic (found 0x%x; wanted 0x%x)
 partition partmap/apple.c partition %d: bad magic (found 0x%x; wanted 0x%x)
 partition %d: name %s, type %s, start 0x%x, len 0x%x
 Apple partition map not found apple                                      LICENSE=GPLv3+ part_apple                                                                                                                                                                                                                              5                      D                      O                      a                      l                      }                       grub_mod_init grub_mod_fini grub_partition_map_list grub_disk_read grub_errno grub_real_dprintf grub_error grub_list_remove grub_list_push                                     
                                             %                    /                            @            ?       ]            %       g            /       q                                /                                       r       $            %       T                                                                                        	                                                                                                                 .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .modname                                                                                         @                                          @               @            	                    &      2                                                  :                                                          5      @               P      0       	                    @                                                         P                                                          U                                                                                0            
   	                 	                                                                                      ^                                                              boot/grub/x86_64-efi/sleep.mod                                                                      0000600 0001750 0001750 00000006420 13417732100 0014740 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    	          @     @   AWAVAUATUSHHot+HH           []A\A]A^A_1H        H1
   H8H        ЅI  I        1AH        H        EA)ރ}  t7H        H8H        DH        H        1AՃ} t;I        I        AHD$AH+D$H=  w A׃u   [  H        HA9_}  t6H        H8H        1H        H        1A1H[]A\A]A^A_1PI        I        H        H        H        H        H        ZH        H8H                  v                                       i                                                                       one argument expected %d     Wait for a specified number of seconds. NUMBER_OF_SECONDS sleep verbose Verbose countdown. interruptible Allow to interrupt with ESC.      LICENSE=GPLv3+  extcmd normal sleep                                                                                                                          x      M                                                                          	                      
                                       -                      C                      V                      m                      y                                                                                                                                     grub_mod_init grub_mod_fini grub_millisleep grub_term_restore_pos grub_term_save_pos grub_unregister_extcmd grub_printf grub_refresh grub_get_time_ms grub_error grub_register_extcmd grub_getkey_noblock grub_strtoul                      7                     P                     g                     v                                                                                                                                                                                         3                   @                    N                   X                    }                                                   E                                       W                                                                                                     ]                    e       (             x       8                     .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                        @                                          @               P      p                          +                            x                              &      @                     `                           3      2                                                  B                     ;                                     H                     @                                    X                     P                                    ]                      P                                    f                      ^                                                          h                                	                      x                                                           	      o                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/part_bsd.mod                                                                   0000600 0001750 0001750 00000010110 13417732100 0015415 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   AWI        AVAUMATI̹   UHSHH  T$L\$1LL$LD$|AӅL\$DT$   |$|WEVt"H           1H           E1f$  Mv2Et-HLD$8   H	   HH	AӅ   Dt$<H	D$8    HÔ   $T$(D$,Ld$hHHD$@HT$HuWD$8H$  D$89}btHމLD$(H	     T$XHt$PHcHAׅt        %L9rL)HT$Ht$8HD$@HAՅt1H  []A\A]A^A_SIHIHHG(HtQH@0H4$H        HT$HxH        ЅL$LL$uHC(H           x8   HC(H   H@0LL$H        L$HxH        Ѕt>HC(H        H@0H9t'H        H9tH        L$LL$H9u"HH           [1H        H        1HH߾   [H        AUIATIUSHHHHG(Ht6H@0LD$H        HxH        ЅH        LD$tO@l$Ld$ HT$Ll$(LD$0H        D$8    HH        Ѕu"|$8 uH           H        HH[]A\A]HIо   H        H        HIо   H        H        U1SHQ8F8uPHvHJH        LJLB1HЅuC @#uH             H        Z[]SH        H        H        H        H        HH        H        [SH        H        H        HH        [no signature msdos no embedding supported no bsdlabel found openbsd netbsd bsd                                                                                                               LICENSE=GPLv3+ part_msdos part_bsd                                                                                                           Q            `      3                                                                              	                                       5                      D                      O                      l                      }                                                                                         grub_mod_init grub_mod_fini grub_partition_map_list grub_disk_read grub_errno grub_partition_msdos_iterate grub_print_error grub_strcmp grub_error grub_list_remove grub_list_push                          b                     s                     C                                                                       @                                              *            @       =                    L                    h                   z                                @                                                                                                       -                    D            *       S                    u                                                                                                                                                                        @       &         
           2                    <         
           K                    U         
           c                    m            @       y                                                     <                    h      0             D       8                   P             K       X                    .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                          @               8            
                    &      2                     O                             :                     0      `                              5      @                            
                    @                                                         P                                                          U                                                          ^                            	                                                                   
                 	                                                                                      g                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/sleep_test.mod                                                                 0000600 0001750 0001750 00000006550 13417732100 0016003 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    (
          @     @   H0HIH|$H           f
1D$D$D$D$D$D$D$D$D$f D$D$D$   DBAp@   F-  kiD>KAi30 AH|DiQ AuQ ACDBD:Dv1Etkfzuc1Et\DJAwQr@;wGR<w>AEiQ Ei  Dk<DfvyfwA:   H0UHATI        H}SH        H E    E    A1I        @I        $   H        H        1ӿ'  H        H}A1I        @I        &   H        1I        H        HuH}AI        I        '   H        H        1HuH}AH        I        1I        (   H        ӋE+E1R)   H        I        I        PPH        @1Y^He[A\]H        H        H        H        H                     ; Z x     0Nsleep_test Couldn't retrieve start time !grub_get_datetime (&st) tests/sleep_test.c Couldn't retrieve end time !grub_get_datetime (&en) Invalid date grub_datetime2unixtime (&st, &stu) grub_datetime2unixtime (&en, &enu) Interval out of range: %d enu - stu >= 9 && enu - stu <= 11 sleep_test       LICENSE=GPLv3+ functional_test datetime sleep_test                                                                                                                                                                                                                                  	                                       -                      ?                      R                      g                       grub_mod_init grub_mod_fini grub_millisleep grub_get_datetime grub_test_register grub_test_unregister grub_test_assert_helper                       d                    s                                                                                          6                                       I                   d                                                          6       1            }       ;                   J                   V            6       o                   {            }                                      6                   6                                                                            \                                                                                   .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                             @       &                                   @                           
                    &                     p      #                              .      2                                                 =                                                          C                                                         S                                                          X                                                          a                                                                                                                	                      h                                                          	      j                                                                                                                                                                                      boot/grub/x86_64-efi/part_dfly.mod                                                                  0000600 0001750 0001750 00000005140 13417732100 0015612 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    `          @     @   UH           HAWLEAVAUATISH        H   HhH`HE1Ҿ   ӅHX  DEAYLFu1I           1AYLFH        H        H   H        I        AH           1H           H        PH        x^   1LpAH        AHxY^HuXAAA  ;]   EA  LpA	D   LLHXЅl        EHpH	]HULuHuDmH`LH	HEHhЅg1He[A\A]A^A_]H        H        H        H        H        bad magic (found 0x%x; wanted 0x%x)
 partition partmap/dfly.c disklabel64 not found partition %2d: offset 0x%llx, size 0x%llx
 dfly                                              LICENSE=GPLv3+ part_dfly                                                                                                                                                                                                                               5                      D                      O                      a                      l                      }                       grub_mod_init grub_mod_fini grub_partition_map_list grub_disk_read grub_errno grub_real_dprintf grub_error grub_list_remove grub_list_push                          %          
           o                                                       %                    /                                         >                                         T                    %                   /       k                                                 	                                                                                                                 .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .modname                                                                                         @                                          @                            	                    &      2               ?                                   :                                                          5      @                     0       	                    @                                                         P                                                          U                            
                                                                
   	                 	                                                                                       ^                                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/spkmodem.mod                                                                   0000600 0001750 0001750 00000006250 13417732100 0015450 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    h	          @     @   C@BfBaatBB	f9wATM  A   UH        S   As   T  
(   *  վ
     Ճu[]A\1M  H        aaH             1SH1M  H        HH        1[H        H8 t H        H        H        /QH        Hu!ZH        H        H        H        ЅtXSH        H        HH        [spkmodem                                                                                                                                                                                                                         P              LICENSE=GPLv3+  terminfo spkmodem                                                                                                                                   s            \      '                                                        	                                       2                      H                      Z                      v                                                                                                                                                X                            ,                      grub_mod_init grub_mod_fini grub_terminfo_gotoxy grub_terminfo_putchar grub_terminfo_cls grub_terminfo_setcolorstate grub_terminfo_output_init grub_terminfo_setcursor grub_terminfo_getwh grub_term_outputs_disabled grub_terminfo_getxy grub_term_outputs grub_spkmodem_terminfo_output grub_list_remove grub_list_push      M                                                                                                                                                                                                              ,                    6                    @                    L                    _                    i                    x                                                                                  (                     8                     @                     H          
           P                     X                     `                                                       ;        .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                          @               H            
                    &      2                     	                             :                                                         5      @                            
                    @                                                         P                                                         U                            	                              ^                            	                                                          (         
                 	                            ;                                                    	      g                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/part_dvh.mod                                                                   0000600 0001750 0001750 00000004150 13417732100 0015435 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    h          @     @   AVH        Iֹ   1AUI1ATIUSH@  HD$0LD$@H        Ѕ   D$@H        =Au&11ҋL@HH=   utH           1H        XH$x  1ۋU uHu1
tEʉ\$ $HLȉHD$LHD$AՅt¡        H@  []A\A]A^H        H        H        H        H        not a dvh partition table invalid checksum dvh                                         LICENSE=GPLv3+ part_dvh                                                                                                                   #                                                                                                     5                      D                      O                      Z                      k                       grub_mod_init grub_mod_fini grub_partition_map_list grub_disk_read grub_errno grub_error grub_list_remove grub_list_push                            7          
           O                     ~                                                                                           	                               %                    /                                 +                             .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .modname                                                                                         @       9                                   @                           	                    &      2               y      /                             :                                                          5      @                     0       	                    @                                                         P                                                          U                            	                                                          h      
   	                 	                      P      z                                                          ^                                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/squash4.mod                                                                    0000600 0001750 0001750 00000022620 13417732100 0015220 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    P"          @     @   AWAVAUIATIUHSLH8H4$M`  I        HH  H	LD$.   I} LL$Aх*  H  LL$vD$.H    HHD$.A    I)M9MGfy-HtL$LI} HH	  Aх      HuLL$HD$HH        Ht$HIHt$LL$tiHIH	  HL$I} AхI        t$LAӋ$PL\$LMMH$HHt$A   HLL\$yAӡ        AM)LL4$1H8[]A\A]A^A_AWAVAUATUSHXLgPHoHt$HT$AD$hftf	8  I\$xE$   
A\$xED$|A  I$    tFA$   H۸`   HDHLt$HHL<    HI$   HD$0HL$p  ftf	u I$   A8   A$   A    E11I$   A$   LlH        HT$IN<    LJ<    I$   HT$I$   I$   HtHuH8A$   I$   LIL$HLMH        Ѕt;I$   H        I$   IǄ$       IǄ$         I$   1H        L9I$   I$   HVHHHAD$Ll$LHD$M)IHD$0I.H9D$  HH+D$M$   HL$0I)HD$ I$   M9MG      H        HL$(HHI  I$   HML\$8HL$(I<$J48H        HH	  ЅL\$8tLH          LHT$ ML\$ MHL$Ht$(A$   L\$ L9H        L.  I$   Ht$ LLD$I<$HJ48H        HH	  Ѕ  1E1II$      Ht$@LH        Ѕ   |$HH\$@%   fA|$h	u
A$   A$   HՅ   H        HI   HڋL$HH	  HII<$H        H        ЅtLXL|$t$HLMHL$HMA$   L9Lt4H        8 uH        	   1H        H90Ht LD$HL$I<$H        HH	  ЅuHD$HX[]A\A]A^A_USHQGxH        HHC@H;SHHHpPHHHH        HOHLFHЅtH        H1CD  HZ[]AV11`   AUATUHSH        HpLd$MH        Aƃ:IuH        	   1H        Es  |$hsqsuD$tPt"H        	   1H        8  Ht$`LD$   HHH	  A} uH        	   1H        ҅      H        HH   Hx   LH(HD$H   D$$ftft+f   H        
H        H      H            H   H        HH   uHH        5   H        HH   uOH   H        H1hHH        T$$H        	   1H        ɋCǃ          H      H9s
   HHp[]A\A]A^H        USHQH   HtH        H        H   H   H   ZHH[]SH        HH?Hu        PHH        1[PH        HP1ZUHX   SH1HPH        H+HC@   HsM*H8   H        HKHDE(fDCPHMHAY[]ATIUHSH`HGH$    H8H        HHtkHHt$H        Ѕ&  A   I        H        HHt$LH        H        8 tHH        С           H$H]PH{h   HpHǃ       Hǃ       HH@HQHHTH   HH@HQHTf   D`H        fAtfA	uHH HM@@p$Hu@7HHH        AH        	   1H        H1H`[]A\AUH        A1ATIUHSHӺ   HHЊ$AH	Ѓ$CD$H        HUHLU H[]A\A]AWIAVAUATUSHH   HT$WftfuSo*GDD$G o"G DD$GH{@HD$I        HHXAHIu$   H        	   1H        eHS@HHI        HHXALHL$   H        AׅA   H{@H   HHXAHIuE1X  HS@HHHHXAIF@IvHPHHIV@H;LHHHD@P8   H        HOHЅuHL$L   H        AׅtA     I        ;H;HL$A   Ht$<HOPAօ  D$(    D$<9D$(r;l$r(H;HL$A   Ht$4HOPAօd  H;L$@DD$48   Ht$HHOHAօ;  D$:HxH        HI  H;D$:AHL$LHOPHPAօ   D$:AD D$8lftE1fAGL	A   HC@DL$,HHxhH        H   HS@HHHD$ H        HHXLD$    Ht$HDL$,Ixt$@L$4LI@@HHHLHrHfJPDLI@@HL$ALD$ H        ҋD$ u	D$(dAHĈ   D[]A\A]A^A_UH        HSHxH?HT$HL$H$    HH   HHt$H        ЅuwA   I        H        HHt$HH        H        8 uHT$H        H<$H        HH        С        Hx[]AVIAUIATI    ULSH I   Ht$H=    HCH        H|$HHtsE1HLHL$Ht$H        ЅI        t%H        	   1H        HA!J43HLH        HAHHH []A\A]A^AWH        AVAUMATIUHSLHHI   H$HL$I   Hl$1Ld$ HD$    E1HD$8    HD$(H   HD$0    I   Ht$H        ЃAv#H           1H        HpHL$0HD H;$rOHH+<$Ht$(H        xH9HFH|$IHHH)H9HGHH|$IHML)Hl$0A>LHH[]A\A]A^A_H        H        H        H        H        incorrect compressed chunk not a squash4 not squash4 unsupported compression %d unexpected ino type 0x%x . .. invalid xz chunk squash4                                                                                           LICENSE=GPLv3+ fshelp lzopio xzio gzio squash4                                                                                                 i                                                                                                       	                                       3                      @                      V                      c                      o                      ~                                                                                                                                                                                                                                                                        grub_mod_init grub_mod_fini grub_fshelp_find_file xz_dec_reset lzo1x_decompress_safe grub_memmove xz_dec_init grub_disk_read xz_dec_run grub_errno grub_memset xz_dec_end grub_fs_list grub_zalloc grub_malloc grub_error grub_list_remove grub_free grub_zlib_decompress grub_list_push       )                                          !                    k                                                                                                    D                    i                                                            %                    o                                                                                                                        8                    u                                                                                	                                       /                    ]            )       n                                                                               !            .	      -            b      C            2      Y                    t                                                                                            5                           0	                    N	                    Z	                    	                  	                    	            :	      	            :	      	                    
                    R
                  n
            	      
            g      
                  
         
           
                    
            :	      
                    ?                    r            :	                  P                                                                   }                                P                                                           i       l                                k                           Q                                                            c                                                  	                  g                                 
                               +                  9                  H            :	      S                                                                                                                                            6                                                    n                                               k                    u                                                                                                                                     3
      (                   0             	      H             	       .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                          @                     	      
                    &      2                                                  :                     p      P                              5      @               X!             
                    @                                                         P                                                          U                                                          ^                                                                                               
                 	                                                                               !      g                                                                                                                                              boot/grub/x86_64-efi/part_gpt.mod                                                                   0000600 0001750 0001750 00000006270 13417732100 0015453 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    x	          @     @   U   HAWLAVIAUATI        SHH  HH11Aԅ1  1f}UHH  tH             <tHH@uH           ǅ       1LL\   HcAԅ      H        HI        Aׅ   uH        x   HPH        Aׅ   H   uIf1AD;D[  HcLP   LLH        Ѕt        *     1H          H        H        Z   H        1I        AL<1E1I\HxHpE苽r   I        LDHIщH)IV(@IHH        LHH        HRH        HH        P1AHHLHY^1He[A\A]A^A_]H        H        H        H        H                                no signature GPT entry %d: start=%lld, length=%lld
 gpt partmap/gpt.c no GPT partition map found no valid GPT header Read a valid GPT header
                                   EFI PARTLICENSE=GPLv3+ part_gpt                                                                                                                                                                                                       	                                       5                      D                      O                   n                                                                                                               grub_mod_init grub_mod_fini grub_partition_map_list grub_disk_read grub_errno grub_gpt_partition_map_iterate grub_real_dprintf grub_error grub_list_remove grub_list_push grub_memcmp                       d                                  F                                                             a                           m                    |                                                    u                   4                   8                                               ?                    W            8       i            4       z                                                
                                                                                    4                             .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .modname                                                                                         @                                          @                     @      
                    &                     @                                    .      2               P                                   B                           (                              =      @                     0       
                    H                                                         X                                                          ]                            	                                                                    
                 	                                                                                	      f                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/syslinuxcfg.mod                                                                0000600 0001750 0001750 00000072550 13417732100 0016215 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    q          @     @   WG GAWAVAUI        ATUHSHQDu I        Et'D;EtDAAD$A9D$uHHDA;AZ[)ŉ]A\A]A^A_SH11H        HCX1[SHH        HC 1[SHH        1HCH        [DЉAVAUIATUSH~ tHI        %[]A\A]A^H           1H        ;    IA$<,t	tI   AHHt-LHH        H)HHEuHH        С        9HE     IEHP0HtH*Hh0IEHh(L;,iH1[]A\A]A^AUATUHSAPH~ tIHI        .Y[]A\A]H           1H        AՅuH;@uLmHLL)H        I        IE HEHx  u:AԅtH;@u; t.LeHH        ID$@HEHx@ u        HE@p	   1Z[]A\A]AUH        ATUHSHAPLkLd Mu$Y[]A\A]H           1H        HH        IE HCHx  u        M  M@p   I)I4  I|$H        H        ЅuHC@p   I~,I|$H        H        ЅuHC@p   
I   I|$H        H        ՅuHC@p   I   IH        LՅuHC@p   H        LՅuHC@p   H        LՅuHC@p   H        LՅuHC@p   H        LՅuHC@p   1Z[]A\A]ATH        Ix   UHSHHt=1HǺx   H        LH        HHCuHH        С        "HEHC    HHEHtHXH]1[]A\À>/HuHw(Hw8H        1H        ATU1SHGHHH)H9r5Ld0
HH        MLHuH        (L#HC[]A\AWHAVAUI        ATUHoSHHHD$DuI        Et/D;Et'H;l$t AHAAD$A9D$uHAA;AH)[]A\A]A^A_HFHuH           H        @d   1AVAUATIUSHnHu%[]A\A]A^H           1H        HH        HxH        HEID$HhHtI                7<^tHHÈEu{@tMt$HAAF`E  1[]A\A]A^USHAPHnHu Y[]H           1H        H        HE HCHx  u        	@p
   1Z[]USHAPHnHu Y[]H           1H        H        HE8HS1H        Hz8 DZ[]USHAPHnHu Y[]H           1H        H        HE HCHx  u        	@p   1Z[]USHAPHnHu Y[]H           1H        H        HE HCHx  u        	@p   1Z[]USHAPHnHu Y[]H           1H        H        HE HCHx  u        	@p   1Z[]USHAPHnHu Y[]H           1H        H        HE HCHx  u        	@p   1Z[]USHAPHnHu Y[]H           1H        H        HE HCHx  u        	@p   1Z[]USHAPHnHu Y[]H           1H        H        HE HCHx  u        	@p   1Z[]USHAPHnHu Y[]H           1H        H        HE HCHx  u        	@p   1Z[]UHHSHQuHH        HT H)HH        H4   Ѕ   HCHSHHHK'M HSHCtZ'HHHKuB'HCHSHHHK\HCHSHHHK'HCHSHHHK'M HHHHK'1Z[]AVAUATAUHSHGHH   LpXMu1> !  HH        LkItH        I}PIEPHSHBPH   HBXM HHP} tHHSH+BPEHBXtHCHPXHHPHrHpX
HCHPPH@X   LoPMu1> tHH        H{ItH        HHCu        GHCPM HHP} tHHSH)EuHCPHHHKP
HSHCP 1[]A\A]A^AUIH        HATUHSHQЅAuH{H{HLH        HkZ[]DA\A]AUHIATIUHSHAPuHH        L$;/uIu0Iu@1HI        AՅu7   H        HH        ЅuYHHL[]A\LA]Z[]A\A]SHH           I        H 1H|$AH|$H        Ht$HHH        H [AUI        ATIUHSQAHxH        Há        HtXHC    HEHtH@hHHEHXhHE`HH]`HHtHXLAH{HPLH        1Z[]A\A]AWH        AVAUATUHSH8HHHHD$tHD$               Y  HT$ ҅HT$ tIA>@u   LH        IAׅH        B  A>@  A> +  HEHL`HH        H|$H        H|$H        HHD$  L|$H        LH\$(LH;D$w  H\$I        PuH؀
tAԅtH;@uH\$t<#I        u$   HHH        5  ; tH;I        AՅtI;AԅuI; tHA}  tIA} AԅtLl$ A} AԅuI        E1L+t$>A}  tIMI<$t;LHt$H        Ѕt#AIA   I<$HD$(L9uI|$Ht9H        HT$ H)H9uHI|$tHHH        ЅuMkH        IIGHI HIEHЅ1H|$H        Љ  I}     Ht$H        I        AׅT  HD$ H)HB     HH        Aׅ%  LH        1LIH        HD$    IHH        H|$H        HH   IH        HT$ ҅HT$ tIA<
t<tHHD$(JD(H9D$s'HLHD$HH        HIuH/K,HH@8HHr@:x tHH)I01H        С        c   @1HH        H        1Ht$HӺ   H        HH8[]A\A]A^A_AUH        ATUSHQLnHHHHš        H   HkHHH        AăuOH        I        1H        H     A1HHAԺ   H        HAE1H        HLkHDZ[]A\A]UHAWAVAUIATISHHhHzPHt"H        IuPHHH        MuhMuI        oIHtII~ t`   H        HAׅ  1IvHH        Ѕ     H        HAׅ~  MvMuA}p
  AUpH        $M}8I        MtHA? n  M;}8u'   H        LH        ЅuA  AAօuIMu8HE    N   H        HI        Aׅw     H        HAׅX  I        1IU LHLEAк   H        HAׅ  MtLH        LHHA׺   H        HAׅ  H} uI}(      H        HAׅ  H} uMm(n1HULHHEк   H        HH        Ѕtd  1IULHHEк   H        HAׅ   Mm MuȺ   H        HAg   H           H        HI        Aօ  IU LH1H        к   H        HA։  Me I        A<$@uA<$-tE1AՅtIIA   11LH        EI        t7I       IIL9vSH           1H        M7HIy)H           1H        I*Aw$H        	   HAՅD  -Et$A	wJ	   H        HAՅ  DHH        Ѕ     H        H   H        HAՅF  DHH        Ѕ     H        HH        [Mu 1Lt\t/uHHHBHH        I        LELAׅ  IE8AE    DuE    E1HEHE8 uA    I        HE8AׅtHEHMD9Ahu$yduHy1HuH        E1ЉEI        HHMLE   H        AЅLEHMuCLiLmHE8@uHE8 D  HE8H        ЅuHEHHM   H        AЅHMuHE   HMAfu*ydu$Hy1HuH        A   ЉEA0A	w1HuHH        ЉE   H        HI        Aׅ  EH}H        HuHHAׅM     H        HAׅ,     H        HH        Ѕ    HE8 
  EH        H        HD   HI        AօD  uHI        Aׅ	  }t2   H        HAօ  uHAׅG	     H        HI        Aօ  Mta   H        HAօ  LL1HH        к   H        HAօn  } 	     H        Ӻ   H        HH        Ѕ	  xH        LAׅ  M}8E   A   A? p	  MA} @uIGL9uUH        ЅuIA?-u8A-u1   H        HH        ЅA      Eti} H        t   H        	   H        HЅLLLHH        Ѕ|  E    E1LLHH        ЅS  MH        LAׅ  Mm8I        A} I        AօtILmA} @tAׅuILmA} AׅtIA} -u4A}-Muu)A>AׅtIMA} @tAׅuI1E1LA} HMAׅHMtIA} -uKA}-uDIA} HMAׅHMtIL:@t!HMHUAׅHUHMu
H1E1HEH  t Ht Mt	LMIƺ!   H        HI        Aׅ  HULHH        Ѕ  Mt<   H        HAׅ@  LLHH        Ѕy     H        HH        Ѕ  LLHH        Ѕ4     H        H        LAׅu	   H        H        LAׅu   H        ]H        LAׅ*  H}   Mm8H        HEH        HEH        HEA   A}    A} H        ЅtILm   H        LI        AׅuI먺   H        LAׅuIA   뉺   H        LAׅu"IA   aH        ЅuIA} @uAE AE  A|$h EurAI        upG   H        HAׅxAD$h   HULHH        AD$h       H        HAׅ3AD$huy      H        HAׅDHtŰH        HHuHuHHAׅ   H        HAׅEt$hBD9uHULHH        ЊEAE    H        HI        Aԅ  LH        LHHAԅ  L  M}8MuM}@H        MLDLLI        AHHE  A?/uIt$0It$@1LH        H        HHE  Iu LAHI  L
t[/uLL9tx/tFz.u;@r@/uH0@.u%z/uHL9r
8/tHA/LHHHI             H        HLEAЅ  I        1IU LHLEAк   H        HHEЅ  I        LLEALHHHEк   H        HHEЅ?  LI        H~  tHzHLHxLEAЅ   tt{HxLEH뺺   H        HI        Aԅ  AupHH        ЅtH             H        HA   H        HHEЅ]  1H        LHHEк   H        HH        Ѕ  1LLHH        к   H        HH        Ѕ  IU LH1H        к   H        HH        Ѕ  LH        H}H}1|  A? L}I}8H        I        HEIGHEA?@uA? tA IAօuIHEL)HEHEHxH        HIOIu8HUI        HLEH)AIE8HuLEHH)L)HUI<6LAHEA 	AD$hIT$0MIt$(HMHLEPH        ATЉY^H           H             HHEЅI        u5LHELHHAԅu   H        HAXHe؉[A\A]A^A_]AVI        AUIATIUHSH^Ht,H{LAօuHHLH        ЅuH1[]A\A]A^AVH        AUIATI1UHպp   SHH   LD$L$H|$ Ћ$   LD$H|$ L$Ld$HHl$PLl$X$   H$   LD$`LL$hHD$ H        ЅT  H$   HuI        pHE HtHH} t`   H        HAԅ	  1HuHH        Ѕ     H        HAԅ  HmHuH|$@ uH|$x tk      H        HH        Յ  1HT$@Ht$ HH        Ѕh     H        HՅtK  H|$( tRHT$0HtHHt$ HH        Ѕ  H        H|$0H|$8H|$@H$   |  Hl$(HtHE HtH   H        HI        Aԅ  HD$x
   1HH	HH        Ѕ     H        HAԅi  H|$8HuH|$0 u(   H        Ht$8HHAԅt/  	   H        HAԅ  1Ht$0HH        Ѕ     H        HH        Ѕ  
   H        HAԅ  HuHuHu1I        HAՅM  E`teD$D$    H        HI        AԅP     Ht$HAՅ8     H        HAՅ     H        HAԅI           1HuHAօ      H        HAՅ   HHt$ HH        Ѕ      H        HAՅ   HmHXHtLe H}HLHl$(HtPLm Le(MtM4$I|$LMH}PH} H}H}H}8H}HHL1HĐ   []A\A]A^UH        HH AQHE    MHE    IHE    j HHHH}ZYt1'   H        H}H        ЅuHEH    1tH           1H        UHAWAVIAUATSHH(HH HP:eAEAHH|cAAŅEtH        EtEuH        EtDH        @II        HEHC8 tLxE1҃x tLPx0 P A   u	E1Aƃx@    DE1MuXH}H        HH   HǾ/   H        HuHH        1I          IPI        1L]LUMARLEH        H        m   H        ALUELELLH        LLZHIL]YtO1H        H        s   H        AH        Hu3   H        HuH        NHH        1H        LH        H        LI        AH1Aփ} tUH        Ht8 tH1Ҿ   H        EtAH        AH        EuHe؉[A\A]A^A_]SI        H        I        H        1H        H        I        I        H        1H        H        H        I        I        H        1H        H        H        I        H        I        H        1H        H        [H        SH        H        H8H        H8H        H8H        H8H[                                                                                                              r                                      c                                      i                                       p                                       s                                                                       kernel without label .0 .bin .bs .bss .c32 .cbt .com .img %s/%s / %d text help endtext   # UNSUPPORTED command ' ' # File   not found  root=fd  root=hd  echo  
 initrd=  if test x$grub_platform = xpc; then linux_suffix=16; else linux_suffix= ; fi
   linux$linux_suffix      initrd$linux_suffix    chainloader    chainloader --bpb  overflow is detected   root=fd ;
  chainloader +1;
   root=hd   # UNSUPPORTED localboot type  chain.c32 file= swap   # UNSUPPORTED option    # no drive specified
 , ;
  chainloader +1;
  drivemap -s hd0 "root";
 mboot.c32   multiboot    module  ifcpu64.c32 if cpuid --long-mode; then true;
 elif cpuid --pae; then true;
 else
 fi
 reboot.c32   reboot
 poweroff.com   halt
 whichsys.c32 iso pxe sys -iso- -pxe- -sys- if [ x$syslinux_flavour = xiso -o x$syslinux_flavour = x ]; then true;
 if [ x$syslinux_flavour = x  ]; then true;
   # UNSUPPORTED com(32)  
true;
 # :
  -c   not found
   # UNSUPPORTED entry type    syslinux_configfile -r    background_image  set timeout=  default= menuentry   --hotkey '  --id   {
 }
 include menu label kernel linux boot bss fdimage comboot com32 config append localboot initrd default background timeout say prompt nocomplete noescape implicit allowoptions / filename expected transforming syslinux config %s, root = %s, cwd = %s
 syslinux commands/syslinuxcfg.c syslinux config transformed
 Execute syslinux config in same context FILE syslinux_source Execute syslinux config in new context syslinux_configfile Execute syslinux config in same context taking only menu entries extract_syslinux_entries_source Execute syslinux config in new context taking only menu entries extract_syslinux_entries_configfile root root directory of the syslinux disk [default=/]. DIR cwd current directory of syslinux [default is parent directory of input file]. isolinux assume input is an isolinux configuration file. pxelinux assume input is a pxelinux configuration file. assume input is a syslinux configuration file.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          LICENSE=GPLv3+  extcmd normal syslinuxcfg                                                                                                      	                      0                 1      K                                                        
                                                             )                      7                      O                      \                      s                                                                                                                                                                                                                                                !                     7                     N                     _                     k                     w    G-      v                                                                                                                                                                                                                p                           -                     <                     I                      grub_mod_init grub_mod_fini grub_strlen grub_strtoull grub_env_extractor_open grub_strrchr grub_env_context_close grub_env_get_menu grub_xasprintf grub_realloc grub_memmove grub_strdup grub_env_extractor_close grub_snprintf grub_unregister_extcmd grub_errno grub_memset grub_env_set_menu grub_env_context_open grub_normal_parse_line grub_print_error grub_zalloc grub_strcmp grub_syslinux_config_file grub_malloc grub_file_close grub_file_open grub_isspace grub_real_dprintf grub_file_getline grub_error grub_free grub_strndup commands grub_register_extcmd grub_show_menu grub_strtoul grub_cls                            /                               -                                                                                    !           	                             '           Y         )           t         (                                        $                               	         '           4         )           >         $           y                                                                                         '                                                   I                   S                    y                                                                                        !                    &                   +       <            0       Z            5                !                                                            (                               &            :       2                    _                    v                                                            '                    6         '           h                    y         '                                        !                                                                        1         '           =                    W                                                 '                                                                                '                                                   D                    U         '           a                    {                                                 '                                                   
	                    	         '           '	                    A	                    m	                    ~	         '           	                    	                    	                    	         '           	                    
                    3
                    D
         '           P
                    j
                    
                    
            <                                              -                    B                    V                                <                                              A            
      W            @       d                              B                                                                                     
         !                               q                             #                                           O                $           7         (           H         (           Y         &           x                             $                    $                       T               $           d         *                                                                            *           M         "           t            E       ~                              J                                                        (                    &                     $           {                             (                                           T                  W                   q       8                  X                    r                                                  T                  s                   {                (                               /                  D                  i                               
                                                      $                                                L                   Y                  u                                                                                              !                  _                  l                                                                   '                  6                                          )                   D         $                                                             K               '                       K               '           	            `      =                  ]                  v            j                                                                                                                    e         $                    -                                                        $           7                  v         -                    -                                                                                      4                  A                  l                   v                                                                                                             )            '      N                  _                                                                                                   $           3                   @                  h                  y            )                  6                                    
                  @               $                    $           A            L      N                  o            '                  n                  '                                                      '                                            6                   E                   ^                   m                                                                                      $                                                 !                  @!                  c!         $           !                  !                  !            '      !                  "            3      9"                    f"            O      "            '      "            _      "                  "                    #                   &#                  W#            :       a#                    #                  $                  $$                  F$                  c$                    $                  $                    %                  %                  -%                  =%                    S%            x      m%                  %            @       %                  %                  %                  %                  %                  &                  &&                   3&                  L&         (           }&                    &         $           &         !           &                    \'            Q(      z'                    '            s       '                  '                  '                   3(                  U(                    (                  (                  )                   9)            
      R)                   )                  )                  )                  )                   *            '      *         (           e*                  r*                  *                  *                   *                    +                  1+            
      J+                   W+                  p+                  +            
      +                  +                  ,            q       #,                  5,                  ^,                  ,                  ,                  J-            Q(      -            X       -                  -                  -         '           5.         .           K.                    a.                    w.                  .                    .                    /         (           /                  $/         %           A/                  K/                  Z/                  x/                     /            4      /                  /                  /                    /                    /                    /                    0            -      0                    0                    .0         (           I0                    i0         ,           ~0                    0                    0            `       0         +           0            Q      0            y      0            -      0            ~      0            `       0                  	1            y      1            -      1                  )1                   51            `       ?1                  I1            y      U1            -      _1            
      i1                   u1            `       1                   1            *      1            y      1            -      1            j      1                    1                    1                   1                   1                   1                                  $                                                         $                    $      (                   0                   8                   @             $      H              #      P             >      `                   p                   x                                                                                                                                P                   Y                                                                            4                   $                          (             4      0             )      @                   H             /      X                   `             6      p             
      x             <                   	                   A                   X	                                                         E                                      M                   /                   U                                     [                                     b      0            n      8            i      H                  P            s      `                   h            z      x                               $                  )                  J                  $                  z                                    $                                                                                                                                                        (                  @                  X                   .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                           @       
2                                   @               D      %                          +                     P2      P                             &      @               @j      (                          3      2               3                                  G                     `;      p                             B      @               hl                                M                     =                                    ]                     =                                     b                      =                                    k                      =                                                           >      h                          	                      hB      R                                                   0q      t                                                                                                                                                                                      boot/grub/x86_64-efi/part_msdos.mod                                                                 0000600 0001750 0001750 00000006060 13417732100 0016003 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    0	          @     @   UHAWAVIAUE1ATSHh  HG(HHxHt+H        H9P0ux8uLhH          H        Hǅ    ǅHE1A   E1I        1LpDL   HLH        Ѕ  HDLpHu,H1H  <uH        eHH@uEtI9uH        EAADȉIEf}UtH         H1H  t"H           1H          HH@uǅ    DA   IcHHHHAFrLZHBLprHHHWH        Q@H        L)PH1VDJ   H        ALpH ACtt<uO%HHH  H  P@փ@tAu1:HxHLHЅt        <HH9uAN@ID	HLMLDHHe[A\A]A^A_]H        H        H        H        H        no embedding supported dummy mbr loop detected no signature bad boot flag partition %d: flag 0x%x, type 0x%x, start 0x%llx, len 0x%llx
 partition partmap/msdos.c msdos                                              LICENSE=GPLv3+ part_msdos                                                                                %                   E                                                                                                                           5                      D                      O             %      l                      ~                                                                   grub_mod_init grub_mod_fini grub_partition_map_list grub_disk_read grub_errno grub_partition_msdos_iterate grub_real_dprintf grub_error grub_list_remove grub_list_push        3                     O                     ^                                                    
                              $            !       I            /       k            <       |                                                   J       0                                       '                    1         	           ;                    G                    Q                                                              .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .modname                                                                                         @       [                                   @                           	                    &      2                                                  :                     P                                     5      @                     0       	                    @                     p                                    P                                                          U                                                                                            
   	                 	                      (                                                                ^                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/tar.mod                                                                        0000600 0001750 0001750 00000011360 13417732100 0014415 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   11H9t#HDAAwL    HȃL	HG    USH        PHoPH}(Hӡ        Z[]UHIH1SPH_PHWXHHP0HHW`HP8HWH        HSH;HHHDH@0    HZ[]H(H        S11H  H        H   LD$ЅuBH$     H        H        Ѕu8   H        HtHH        	   1H        1H   [ATIUHSHGH8H        Há        HtKLH        HH        ЅAtH{(H        HDH]PHC HE@1[]A\ATH        IUHSHH?HL$HLD$        Ht:LHH        HH        H        AH{(HDH[]A\AWAVIAUE1ATE1UHSHH(  HGHT$D$   HG1IVLD$,  I>I        Aׅ  |$, u$   uE H  H$-     H        H        Ѕt"H        	   1H          $   <L   H$      H        HxIH        HIHi  IF1LI>H   AHB*   IFI  I J(   A   IFj  <K   H$      H        IH@I9F0sGHHD$HH        H  HD$I~(H        HD$IF(HD$IF0IF1MF(LI>H   Aׅ  IF(B  IFI  I J    A   IF  E   H$  E1B<( tII   uI}fH        HH  $   I        tLH$  HAHB(/ILH;d   Ht$,AHBD(d H$      H        INL|$IF H  H% H   HMIVIFtH$      AHt=H$      ӊ$   E 21}0u̀5u@̠E EulI~0dw@e   H        HHu        PI~(H        I^(IF0e   H$   I~(d   H        IF(@d 1L$tdH(  []A\A]A^A_H        H        H        H        H        ustar not a tarfs filesystem invalid tar archive tarfs                                                                                                                   LICENSE=GPLv3+ archelp tar                                                                                                     9                   Y                                                                                    	                                       *                      6                      E                      P                      ]                      i                      u                                                                                                                                                           grub_mod_init grub_mod_fini grub_memmove grub_strdup grub_disk_read grub_errno grub_fs_list grub_zalloc grub_malloc grub_archelp_open grub_error grub_list_remove grub_free grub_archelp_dir grub_list_push grub_memcmp        :                     S                                                                                                                            !                    7                   H                    p                   ~                                P                                                                                                  P       (                    2                                                                                                   
                    7                    J                                                                                                             
                                                                                                    
           ;                    E                    O                    [                    e                                 1                                        ]      (             _       0             6       P             V      X                    `             -        .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @       o                                   @               
            
                    &      2                     7                             :                           h                              5      @                            
                    @                     X                                    P                     g                                     U                      g                                    ^                      o                                                          x      @         
                 	                      	                                                          H      g                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/part_plan.mod                                                                  0000600 0001750 0001750 00000005020 13417732100 0015603 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   AWH        I        AVAUIATUHS1HxHT$HD$`D$h D$0    HcLD$+	      HI        HHD$H%  D$PAׅ     H        H|$+H        Ѕ~  D[E1҃McKL\$LT$LD$*      HAԅj  D$*LT$L\$F40	wI볈߃Av<   HD$8    1McJL\$LD$*      HAԅ   D$*ETHЃ0	wHkD$8
HcL\$HHT$8<    HD$@    E1McDT$KL\$LD$*      HAԅ   D$*DT$C\2Iƃ0	wHkD$@
HcL\$HHT$@<
u2HD$8HT$Ht$0H)D$@HAՅt        -D$01|$0 uH           H        Hx[]A\A]A^A_H        H        H        H        H        part  not a plan partition table plan                                        LICENSE=GPLv3+ part_plan                                                                                                       ]                   }                                                                                                     5                      D                      O                      Z                      k                      z                       grub_mod_init grub_mod_fini grub_partition_map_list grub_disk_read grub_errno grub_error grub_list_remove grub_list_push grub_memcmp                                  
           _          
                                                                         5                   D                    _                    i         	           s                                                                         !                             .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .modname                                                                                         @                                          @               H      8      	                    &      2                     &                             :                                                           5      @                     0       	                    @                                                          P                     /                                     U                      /      
                                                    @            
   	                 	                                                                                      ^                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/part_sun.mod                                                                   0000600 0001750 0001750 00000004230 13417732100 0015460 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   AUH        Iչ   1ATI1UHSHH  HD$0LD$@H        Ѕ   f$<  ھtH           -11f3T@HH=   u1ft"H           1H           HcÊ   tgtcH  $  f$  \$ $VɉHHHD$FȉHHD$tLHHAԅ   EÃ~        HH  []A\A]H        H        H        H        H        not a sun partition table invalid checksum sun                                      LICENSE=GPLv3+ part_sun                                                                                                6                   V                                                                                                     5                      D                      O                      Z                      k                       grub_mod_init grub_mod_fini grub_partition_map_list grub_disk_read grub_errno grub_error grub_list_remove grub_list_push                            5          
           U                                                                                   8                    B         	           L                    X                    b                                 +                             .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .modname                                                                                         @       l                                   @                            	                    &      2                     /                             :                                                          5      @                     0       	                    @                                                          P                                                          U                            	                                                          h      
   	                 	                            z                                                    8      ^                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/terminal.mod                                                                   0000600 0001750 0001750 00000015230 13417732100 0015442 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @  
 AWAVIAUATULSH8HD$p|$HL$HD$I  LH        I        M>MI        tIwH        1AM?H        1AH|$HD$HHtHsH        1AHI        H   HD$HH  HuH{Aԅt{L}A? tCH        LHT$A|*HT$u"H}HuHPH{H        Ѕt.HL}A?   HHHu  H{AԅuHm SH        1Ak  HI        H        H;Aׅu|$t4D$   H        H;AׅtD$    HcD$L$   H          H        I<$H        Ѕ  IU:   Mm MtCIuI<$AׅuI}H        HtHH        H             
   H        I<$H        ЅD  H        H1     D$    HD$L(M  IuI<$AׅuD$ID$9D$}LD$     H        I<$H        ЅuIuH        H        ЅtMm H        H;I        Aׅ   1E;D$   HD$L(MtxIuH|Aׅt1H|H        AԅuIuH        AԅtMm IEHtLЅ  LH        LLH        Hf1  H        H;1Aԅ   E;D$}M.M   IuH|Aׅt1H|H        AԅuIuH        AԅtMm I}  u	M;.$  H        LIE HtLLH|$H        HaIuH<Aׅ  H<H        AԅtMm MuH9l$~$HD$L(IuH        Aԅu  M&H        7H        LID$ HtLLH|$H        Ld$ MI$E1HD$ D;l$Dl$}It$J<AׅuAD$9D$uI<$ uM;&uH        H8   1[]A\A]A^A_H        J<H        ՅuIt$H        ՅtIrIQH        LHT$A|*HT$)H}HuHPH{H        ЅH        1AM.MtYIuI<$AׅVH        I<$H        Ѕu"IuH        H        ЅMm 뢃|$  tCHcD$HMI$H8H           []A\A]A^A_1H        IIuH        H        ЅH        HHT$(HL$ HT$(HL$ |*I}IuHPI<$H        ЅIEHtLЅt        &LH        LLH        H8[]A\A]A^A_UH        HI        H        HPH        PH        L H        ZYUH        HI        H        HPH        PH        L H        ZYSE1H        H        H        H        H        E1H        H        H        H        H        [H        SH        H        H8H        H8H[%s  
 --append --remove no terminal specified ofconsole console terminal `%s' isn't found serial_usb can't remove the last terminal Active output terminals: Available output terminals: Active input terminals: Available input terminals: List or select an input terminal. [--append|--remove] [TERMINAL1] [TERMINAL2] ... terminal_input List or select an output terminal. terminal_output      LICENSE=GPLv3+  terminal                                                                                                       {      {                  -                                                                                               )                      4                   M                      Z                    t                                                                                                                                                                                                     "                     .                     A                     L                     ]                     l                      grub_mod_init grub_mod_fini grub_strlen grub_puts_ grub_term_input_autoload grub_dl_load grub_term_output_autoload grub_dl_ref grub_errno grub_term_outputs_disabled grub_register_command_prio grub_term_inputs grub_printf grub_unregister_command grub_term_outputs grub_term_inputs_disabled grub_strcmp grub_term_poll_usb grub_error grub_list_remove grub_list_push grub_memcmp 4          
           >                     P                     `                     t                                                                        	                               f                   }                                                                                         .                           0                    D                    P                    e            Z       s                                                    .                                       8                           '                   4                    z            .                   8                                                                  0            .       E            8       l                                                    .                   8                                               8                                e                                       .                   8                	           +                    D                    s            .                                       8                                       @                                       8                           2         	           r                                                                                                                                                                                                      0                    =                   G                    U                   `                    m                                                                                         +                  >                                     M                                                      p                                             	                   	                    .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .modname                                                                                              @       #	                                   @               8      @                          &      2               c	                                  5                     
                                     ;                     
                                    K                     
                                     P                      
      	                                                                	   	                 	                            x                                                   x      Y                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/part_sunpc.mod                                                                 0000600 0001750 0001750 00000004630 13417732100 0016007 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   AWH        AVIAUIATI@   USH  HH  H        1IHC0      LH        ЅtHH        ҉   f$  tHH        H        :11f3HH=   u1fA   t.HH        H           1H        aHcHkTHft1ft,HDHHHK@+HHCtLHLAՅAEŃ~HH        С        H  []A\A]A^A_H        H        H        H        H        not a sun_pc partition table invalid checksum sunpc                                               LICENSE=GPLv3+ part_sunpc                                                                                                      h                                                                                                                        5                      D                      O                      [                      f                      w                                             grub_mod_init grub_mod_fini grub_partition_map_list grub_disk_read grub_errno grub_zalloc grub_error grub_list_remove grub_free grub_list_push                      9                     Y          
           n                                                                                                                             C                    N                    j                    t         	           ~                                                                         .                             .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .modname                                                                                         @                                          @                           	                    &      2                     4                             :                                                           5      @                     0       	                    @                     @                                    P                     O                                     U                      O                                                          `            
   	                 	                                                                                8      ^                                                                                                                                      boot/grub/x86_64-efi/video_colors.mod                                                               0000600 0001750 0001750 00000023540 13417732100 0016321 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                     $          @     @   )1Jw<HʊD$tFD$D$ H|$   1H        HAVIAUI        ATIUS1H؉HI| Ht5LH        HЅuHcH        HDA   1[]A\A]A^AVAUATIUH        SHH;@u<#u9Hk1ՅtHރ߃A  HTAʃ0	w0	   11HH        I        վ,   D$HAHtqLp11Lվ,   D$LAHtPHX11Hվ,   D$HAHuD$KHx11ՈD$;Ht$HH        Ѕu#HH           H        	  H        8 uD$A$           @wV1H           HӺ      HD$Ӻ   D$   HAD$7      cAAtAu]1H           HӺ      HD$Ӻ   D$   HED$      HHH           1H[]A\A]A^                                                                                                                                                     +            **            ޸            _                         i            P            d                        <                                                                             d                         k                         Uk/                         2                          z                        H=            /OO            /OO                                                               iii            iii                        ""                        ""                                                              ڥ                                       /                                    i            \\            K                                                             |                                                                                                                         z                                     w            w                                                  22                                                   fͪ                          U            p            <q            {h                         H                        p                                                ޭ                                                   k#                         E             p                                                p                        ڹ            ͅ?                        ݠ                                                               Ai            E            r            `            .W                        R-                                    jZ            p            p                                     F            Ҵ                         ؿ            cG            @                        ޳                                                 2                    invalid color specification `%s' aliceblue antiquewhite aqua aquamarine azure beige bisque black blanchedalmond blue blueviolet brown burlywood cadetblue chartreuse chocolate coral cornflowerblue cornsilk crimson cyan darkblue darkcyan darkgoldenrod darkgray darkgreen darkgrey darkkhaki darkmagenta darkolivegreen darkorange darkorchid darkred darksalmon darkseagreen darkslateblue darkslategray darkslategrey darkturquoise darkviolet deeppink deepskyblue dimgray dimgrey dodgerblue firebrick floralwhite forestgreen fuchsia gainsboro ghostwhite gold goldenrod gray green greenyellow grey honeydew hotpink indianred indigo ivory khaki lavender lavenderblush lawngreen lemonchiffon lightblue lightcoral lightcyan lightgoldenrodyellow lightgray lightgreen lightgrey lightpink lightsalmon lightseagreen lightskyblue lightslategray lightslategrey lightsteelblue lightyellow lime limegreen linen magenta maroon mediumaquamarine mediumblue mediumorchid mediumpurple mediumseagreen mediumslateblue mediumspringgreen mediumturquoise mediumvioletred midnightblue mintcream mistyrose moccasin navajowhite navy oldlace olive olivedrab orange orangered orchid palegoldenrod palegreen paleturquoise palevioletred papayawhip peachpuff peru pink plum powderblue purple red rosybrown royalblue saddlebrown salmon sandybrown seagreen seashell sienna silver skyblue slateblue slategray slategrey snow springgreen steelblue tan teal thistle tomato turquoise violet wheat white whitesmoke yellow yellowgreen        LICENSE=GPLv3+ video_colors                                                                                                                                                                      	                                                   K      #                      /                      ;                      H                      S     I       m       n                       grub_errno grub_video_parse_color grub_strcmp grub_strchr grub_isspace grub_error grub_video_get_named_color grub_strtoul      :                     R                     {          
                                                     /                    9                                                                                                                                                                                                  !                    +                     8       0             =       @             H       P             N       `             T       p             [                    a                    p                    u                                                                                                                                                                      0                   @                   P                   `                   p                                                                                                                           ,                  ;                  F                   Q                  Y                   d      0            q      @                  P                  `                  p                                                                                                                                                                                                                          0            #      @            (      P            2      `            7      p            =                  I                  N                  W                  _                  i                  p                  v                  |                                                              0                  @                  P                  `                  p                                                                                                                        !                  .                  =                   L                  [                   g      0            l      @            v      P            |      `                  p                                                                                                                                                                                                                    )      0            3      @            <      P            H      `            M      p            U                  [                  e                  l                  v                  }                                                                                                                    0                  @                  P                  `                  p                                                                                                                                          &                  /                   6                  =                   E      0            O      @            Y      P            c      `            h      p            t                  ~                                                                                                                                     	                  	                   	                   .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .modname                                                                                         @                                          @                     h      
                    +                     P      @	                             &      @                           
                    3      2                                                 B                     a                                     H                     h                                    X                     w                                     ]                      w                                                                                          	                            {                                                    #      f                                                                                                                                                                                              boot/grub/x86_64-efi/terminfo.mod                                                                   0000600 0001750 0001750 00000046730 13417732100 0015463 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    J          @     @   PHP8ZATUHSL   H3@tHHAT$P[]A\UH        SHPHH{HC    H{HC    H{ HC    H{(HC     H{0HC(    HC0    H{8HC8    Z[]H   H@AUH        ATI        UHSAQH   HHH        AԅuH        H        H        HCH        HCH        HCH        HC H        HC(H        HC0HC8}  HH        Aԅ   H        H        H        HCH        HCH        HCH        HC H        HC(H        HC0H        HC8   HH        Aԅu{H        H        H        HCH        HCH        HCH        HC HC0    HC(H        HC8       HH        MAԅ   I        H        AH        HCAH        HCAH        HCAH        HC AHHC(H        AՅu>H        AH        HC0AHC8*HH        AԅQ#HC0    HC8    H        AHC@fHH        AԅucH        H        HC    HCHC    HC     HC(    HC0    HC8    HC@            Z[]A\A]AX[HH           ]A\A]1H        AWAVAUATUSHXHGt$;  H        H        H        HD$H        H        HD$H        H        HD$ H        HD$(H        H        HD$0H        H        HD$8H        H        HD$@H        H        HD$HH        H        HHtBSxH   H        HsHDHND@LHLHP1H   H1  xHպ   Ӄx  Eڃx0    Hx80Ht$I        H|$AIġ        *  H|$?xt H           H           H1Ht$H|$AIš        t   E1E1H        L8I        M   IwH} Aօu*AGx	EAGxtDEt?I   fD`HfDhJ,H        H} Aօu5IwH        Aօu 1|$tEHuLH        0I   L8eHU H           1H        HX[]A\A]A^A_SH        HЅu$H        H   HHH
H        [H        SH        HtH9t(H   H[H        &   H        H   H        HH   H H1[H   @LAVAUAAATAEUHSHH   U8fD9As-HDH        []A\A]A^&   1I        AT$HH        A9ƋT$wH{Ht%D1H        HHH        fD;kNuCL9u   HSPfDcLfDkNH[]A\A]A^SH   HH        Hx1HHH        H1H        [SHH H   LB@Mt`H        H   vu{H        
H        LH        ҃41"vu/Hz Hz(1H        H HH[H        H [UH        H        SHQH   tHx0Hx81ZHHH[]AUATIUHSQH   % 
t1   t:u=CLf   fCL   DkNH        A9smfCNgfCL  _HU8KLAT$9};DkNfCL  HH        A9sfCN   HSP
   HSPfAD$fCLA4$HCPHZ[]A\A] H   @HAWAVAUATIUSHXH_8St  Lk AՅyC       C   t-t   Pvt`      H        H|$
   H        H|$H        tI*ILAՃu+L)HcvJL)Hcw?LAՃAt   HcCCOuZILAՃuRL)HcvC  P+SHcHHsHH        Љ  HHu[uIHcCC1t
9u؉HHtt
9uD"HHt@4D9uH        DC   VHcCH        D41CA9A1   A0#IcAOt,A[ILAՃuuL)HcvILAՃuvL)HcvL)HcLAՃAtXILAՃ   L)HcvHcCBCo  HcC1҉CHcCD<A0CA8ILAՃuL)HcvHcS0C	Ek
AAEILAՃuL)HcvHcSCqAMcBDAHcSA0PC	waEk
Ft0ILAՃuL)HcvfHcSC~SAIH        B3~%HX[]A\A]A^A_HG8@    1PH        1Z1PI        I        H        H        H        H        H        ZH        H8H                %HcH        H        HB:á        1H                HHHЀx tً á        H        H                HHHЀx uH H        HHDHH    L  ATHNE1E1E1E1U1S%1@8@u"E  %@8HNE1E1@~   Eu@XtR0@-tv@ tf@#u~H#   @.t3@:ugHZ@otDgAwP@st@xuB@9H}HHy.t_HE1AUH A@tT-HH@7DgA	w9Ek
D@9GD AA'  EMHHEHE1A1tDE D9[]A\DMDH        HH        H;8v6H4?PHH        H        H8H        H        ZS      DH        H        HHQHH        H        H
[ATк   AUNHSXH        H        H8H        HcDHI        H1AH        HH        H<H        H[]H        A\AWAVAUATUHSH  HH$   H$   H$   L$   L$   8	  H$@  I        D$(   HD$0H$   HD$8H        H     H        H     H        H     AH$AHH        H9w9H|$@H   1H        E1E1HcHAHD$H        PHtHH        H        H8H        HH        uE11  ?%t?HHH)H;D$|l  HH$   H        H0ӊHǀX   [-'  &'  !  &K*w   ><   /+O   P   Aotb6dc}V^H   ltJm   1gH%xt%ptDst |t}~t~{tbErmE~IcH        HL8AHP@H׃0	A9ADLAHHHǊ0<	vAAA{	   A	ANH        H8   LD$8D$(1HT$0A9AEMA9~PH|@ t!/wAMIHM	LL@"/wAMIHM	L   H롉D$(EH        HT$0     t"Hc$HI        I        HD$o^I        tHcHĈ   A;@%u`HH{HT$$H        H        H$HAHÊ !<]v; F  HHH)H;D$|1  A$ǿ%   H        Dl$$H        H<$D0H        ЉH        HA1҉H        H        kDl$$H        HHD$AHIcA9HOH        HHHt$H        H8H        HL$H$I        Ht$H1AH        L(H        I| ALH        CHÃ1HHL@Ht=        HcH        H        HB H
gHĈ      DkHSAE<w1H$H        AAH$McH        BHAEH<	AaH        McH        BCLkPw&AH        LH<H        PLaH        H<H        {H        HdH1PЀ	wk
HÍ|I        AՉ$AՋ<$I        AՉ$A+$GI        AՉ$AՋ<$lH        H$AH$1EH1A<H        H$AH$1E1AI        A1AՅ@@I        AՅ   I        AՉ$A#$iI        AՉ$A$NI        AՉ$A3$3I        AՉ$A;$LI        AՉ$A;$@SI        AՉ$A;$@4H        Ѕ@H        H|$@ uH$   H|$H fH$   YH        ЅHSA
Hӄ4%u-RHÀ?u;ueu;HHH1Ҋ%HuKH?u;utʀ8HHHH           H        H        H 1
H        H  []A\A]A^A_                         PQwxtuqrpMABHF  ;  <  =  >  ?  @  A  B  C  D  W  X  G  O              G      S      I  Q  G  O                                  @  A  B  C  D      W  X              4   S  A   H  B   P  C   M  D   K  F   O  H   G  K   O  P   S  ?   I  /   Q  @   R          a                                       u                                       v                                       g                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      vt100 [%i%p1%d;%p2%dH [H[J [7m [m [?25h [?25l vt100-color [3%p1%dm[4%p2%dm arc %i%p1%d;%p2%dH 2J 7m 0m 3%p1%dm4%p2%dm ieee1275 [2J[m ieee1275-nocursor dumb unknown terminfo type `%s' ASCII CP-437 UTF-8 visually-ordered UTF-8 Glyph descriptors Unknown encoding Current terminfo types: %s: %s	%s	%dx%d
 incorrect terminal dimensions specification ofconsole console terminal %s isn't found or it's not handled by terminfo terminal not found invalid point (%u,%u) Set terminfo type of TERM  to TYPE.
 [[-a|-u|-v] [-g WxH] TERM [TYPE]] terminfo ascii Terminal is ASCII-only [default]. utf8 Terminal is logical-ordered UTF-8. visual-utf8 Terminal is visually-ordered UTF-8. geometry Terminal has specified geometry. WIDTHxHEIGHT.  %d               LICENSE=GPLv3+  extcmd terminfo                                                                                                                      	                            M            _                                        
                                                             )                  >                      I     	             _                   y           >                                                              B                                                                                          	      A       +                     E    
            Z                     q    
                       	                                                                         Z      n                                                        |      &                 :                     F                     W                     b                     l                                                                grub_mod_init grub_mod_fini grub_strlen grub_terminfo_gotoxy grub_puts_ grub_terminfo_putchar grub_terminfo_get_current grub_terminfo_output_register grub_realloc grub_memmove grub_terminfo_cls grub_strdup grub_terminfo_setcolorstate grub_terminfo_output_init grub_snprintf grub_terminfo_setcursor grub_term_highlight_color grub_terminfo_getkey grub_unregister_extcmd grub_terminfo_getwh grub_terminfo_tparm grub_errno grub_memset grub_printf grub_terminfo_output_unregister grub_terminfo_input_init grub_term_normal_color grub_terminfo_set_current grub_terminfo_getxy grub_strcmp grub_get_time_ms grub_error grub_free grub_register_extcmd grub_gettext grub_strtoul      :          )                        7                 &                                                                                                                0                   @            #       P            '       `            .       |            5                                       5                                                                            #                   '                   .                   A                   T       .                    8            T       D            X       T            h       d            l       t            p                   t                                                                                                                                      #       &                   7            '       D            .       ^                               A                                                                                                        +         (           U                   _         +           i                     z                                               +                                       +                                                         +                                      +                                      +                             )                    5                   Q            .               ,                                           ?               (           #                    <                   I         &                       k                  u               $                       }               (                    $           4                   N                   \                   g                                              (                       7                         &         (           :                    ]                    o                                                                              	                    *	                    6	         #           E	                    	                    	                   	                    	                   B
                    
                    a                    z            0                '           *                                                                      p                                       @      !                  +                  5            5      ?            %      I         *           U                    a                    n                    y                               0                                                        0                                                                           0                         $                                                                                                                                                                                       $                  P                  ^                  k                  ~                                                                                                                  :                   K                  \                  |                                                   4                                                                                   1                   !                                      )                   G            4      Q                  e            x                                                                                                   )                  ?                  I            4      _                                                                                                                                                                      6            0      E                                                                                                                             x      *                    9            x      L            x      }                                                                                          -                  V                  r                                                                                                                              0                  l                                    %                  /                  F                  @            .      P            4      h            V      x            [                  ~                                                                                                                                                       (                  0            p      8            F      @                  H                  P                  X            {      `                  h                  p                  x                                                                                                                                                                                                                                                                                                                                                 +                                                             (                  0                  8                  @                  H                  P                  X                  `                  h                  p                  x            T                  i                                                                                                                                                                                                                                                                                                                                                                                (                  0                  8                  @                  H            A      P                  X                  `            '      h                  p                  x                                                                                     X                  j                                                                                                                              _                                                      .                           .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                           @       `                                   @               +      X                          +                                                        &      @               ?      	                          3      2               !                                  G                     $                                    B      @               I                                 M                     $                                    ]                     $      p                             b                      $                                    k                      $      	                                                    $      8                          	                      (                                                         I      t                                                                      boot/grub/x86_64-efi/test.mod                                                                       0000600 0001750 0001750 00000016740 13417732100 0014615 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                               @     @  
 1~ t> tF    AWH        AVAUATUHSHAPF    HIH        ILH        Mu  LH        HIu)LH        Y[]LH        A\A]A^A_H߾)   H        HPHI        HEڀ; u</   HH        HHE H        u/H        H] I5HAր|/uHAD HHHE IHE H)A ; uV1E   H}   H        ЊEEIGHHt:HuLЅuMH             HH        LLAWH        LH        LLHZ[]A\A]A^A_Q?-H        uH1111ZAW
   1AVAUATI        UHSHHXH|$(T$D$0   Hc;D$  P;T$X  H|H        AԅuHcHHt H|Aԅq  HcH        H|AԅtHcH        H|AԅHcu/HHt H|Aԅ@Ht$(@H          H|H        AԅHcuHHt H|A   H|H        AԅHcuHH|Ht Aԅ@H|H        AԅHcuHH|Ht Aԅ@RH|H        AԅHcu"HHt H|AHt$( H|H        AԅHcu,H| I        AAHcH|AA9@H|H        AԅHcu,H| I        AAHcH|AA9@H|H        AԅHcu,H| I        AAHcH|AA9@HH|H        AԅHcu,H| I        AAHcH|AA9@H|H        AԅHcu,H| I        AAHcH|AA9@H|H        AԅHcu(H| I        AAHcH|AA9yH|H        AԅuHc1HL LD&HcH        H|Aԅt   H@t@4A:4 t1HcH	Hȅ~40	vDH        H|AԅMcHcI        u0LH| 11AIHcL11H|AI9@LH| 11AIHcL11H|AI9@yHc   H        I        H|AׅuZHcHt$(H| H        HD$HD$8HcHt$(Dt$4HD$D$<H|AHD$HcH| u'15Hc   H        H|Aׅt   HH        ЉHcL$   H        H|AׅL$H        u.Et|$4    tM1D$tDD$8t=D;L$<@,Eu|$4    u1D$tD$8tD;L$<@@Ht$(ЃHcP;T$  H| H        AԅHcuZH|Ht$(H        1|$4 t|$8Ht$(H        Ѓ|$,      1|$0   H| H        AԅHcu!H|Ht$(H        Ht$(|$4H| H        AԅHcu0H|Ht$(H        1|$4 W@|$8GH| H        Aԅ   H        H     H        H     H        H     HcH|H        HHt1Hx@ @1Ht$(H        HtHH        H             HcH        H| AԅHcu
HD8'H| H        Aԅu*Hc1HD8 @Ht$(H        ЃpHcH        H| Aԅu&HcH        H| Aԅu0HHT$H        Ht$(H        HcH        H| Aԅu1|$( D$(oHcH        H| AԅtVHcH        H| Aԅu!|$, u
1|$0 D$,D$0   HcHt$(HD 8H        hHX[]A\A]A^A_UHSHD$    ~$HcH        H|H        Ѓ Ht$HH        Љ1uH           H        H[]UHSHQHr tXIt.At&pDIP q GAF9uHIˍHP AFqQ F9H        Ѕ1tHE HUC   HCHS   Z[]SE1H        H        H        H        H        ӁH(   H        E1H        H        H        H        ӁH(   H        [SH        H        H8H        H8H[/ = == != < <= > >= -eq -ge -gt -le -lt -ne -pgt -plt -nt -ot -d -e -f -s -n -z ) ( ! -a -o ] false Evaluate an expression. EXPRESSION ] [ EXPRESSION test        LICENSE=GPLv3+  test                                                                                                                           -                                                                                               )                      6                      G                      S                      m                      x                                                                                                                                                                                                                           (                     3                     =                     I                      grub_mod_init grub_mod_fini grub_strlen grub_strrchr grub_device_open grub_strdup grub_file_get_device_name grub_errno grub_memset grub_register_command_prio grub_unregister_command grub_strcmp grub_strchr grub_file_close grub_file_open grub_device_close grub_fs_probe grub_file_filters_enabled grub_error grub_free grub_memcmp grub_strtoul   *                     S                     e                     {                                                                                              	                     
                                                   n                                                    w                                                                  .                    v                                                                                         
       :                   l                                                                           !                   :                  f                                                                                       $       	                  5            (       N                  v            ,                   1                   ,       	                    }            6                                       &                   :                         8            6       P                                >                   &                           Q            A       o            &                   D                   &                   G                                             	                   $	                    L	                    `	                    l	                    	            J       	            M       	                    	            P       

            R       ,
                  ?
                    S
            T       |
            V       
            Y       
                                \       '                    C                  W            ^       f                                                            (            d       2            |       <            
      F                   Y                   f            d       p                   z            
                                                                                                         .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .modname                                                                                              @                                          @                                               &      2                                                  5                                                          ;                                                         K                                                         P                                                                                            	   	                 	                            V                                                         Y                                                              boot/grub/x86_64-efi/parttool.mod                                                                   0000600 0001750 0001750 00000016410 13417732100 0015474 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   AWH        AVAUIATUS1HL M   IE It$H@(H@0HxH        Ѕ   Il$I        H} H      I        AHu )H        1A֋Et9uFH        H        HD$H        HHD$H        1Aօ~H        1AH}H        HI   M$$u(IE H        H        H@(H@0Hp1H1[]A\A]A^A_AWAVAUATUSHHt$%H        H        H           H*II        } (uCHH        Ӏ|)u-Im HD IE HxAMe HLAD)
I} AHH          HE Hu:HH        H        HH   1[]A\A]A^A_H        Hx( uHH        H        H        H        H1  HH        1H        HH
  HH        HI   LH        HI   IH        A?H$хH$tIA!]wr:   LH        HtYHH  <	uH< t!]w:HE H$LH@(H@0HpH        ЅH$uHH        LH        /LH        HH        1ۃ|$H             I        tI|H        AԅuHHHH        []A\A]A^A_HÍC;D$|Hc|$H        HHD$0HHD$(   HD$IEH$D$(9D$  HD$8   H        HH   HE HsH@(H@0HxH        Ѕ   LcI        I<$HtHAHH$I<$H0H        Ѕu}A|$t
A|$umMH$I<$L8AA<+uI<$ tX   H$I<$L8AA<-tH$I<$L8AA< uH$I<$L8H        A<=tIPH	HD$(H           H        IT HH1[]A\A]A^A_Hc{H        HL$$HD$ HD$    HD$HL$< txHD$ID$D$(;D$|Lt$ HLS LH        ЅuHD$H$HD$(&1H|$0H        HH        Љ  LsI>HxH        I4$HI>H        Ѕl  A~tA~Z     M<$I>H        A<+   HD$HL$H   LH+CHL$ HHH   AF      ML+{I>H        ILIL|$ L|$8M<$IDL|$8IG   M<$I>H        A<-OM<$I>H        A< 1M<$I>H        A<=uIML+{I>H        ILIL|$ L|$8M<$A<-L|$8AGIUHH[]A\A]A^A_AVH        IAUIATUHSH8 uH        H8H        п(   I        AHH        LHH        HCH        QKLУ        1HHkH|5 uDbSMcMkLLHCHHH        HLk H        C[]A\A]A^AVH        AAUATI        U1SHHtND9su=H{AH{AHHtHE 
H        L+HH        HL+HLH        H8 u![]A\A]A^H        H8H        []A\A]A^PHH        H        E1H        H        H        H        H        ZH        H8H        %s +/- =VAL   Sorry, no parttool is available for %s
 too few arguments not a disk not a partition prefix %s/x86_64-efi/parttool.lst help unknown argument `%s' PARTITION COMMANDS parttool                Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands.        LICENSE=GPLv2+  normal parttool                                                                                                                      	      Q            
                                                                                                     )                      4                      A                      N                      ]                      j                      {                                                                                         
	                                                                                                                          $                     0                     <                     H                     X                     g                     t                                                                                                                                                                         grub_mod_init grub_mod_fini grub_strlen grub_puts_ grub_strncmp grub_dl_load grub_xasprintf grub_memmove grub_device_open grub_parttool_register grub_strdup grub_xputs grub_dl_ref grub_parttool_unregister grub_errno grub_register_command_prio grub_printf grub_unregister_command grub_zalloc grub_strcmp grub_strchr grub_malloc grub_file_close grub_file_open grub_isspace grub_device_close grub_file_getline grub_error grub_free grub_dl_unref grub_printf_ grub_gettext grub_env_get                           @                     Y          
           u                                                                                             '                                                                       0                   :         &           {                                                    6                                    
                               !         !           -            H       L         #           b         !           n            S       z            c                (                       j                                                        "                                .                    u                                                 $                                        $                                                                      
                    1                    |                                                
                               \         
                                       #                                        $           A         $           P         !           s         
                                        
           ,         
           l         
                    
                    
                    
           #                   B                   O                    `                    p                                                                                                                    	                   	         $           W	                   g	         $           	                   	                   	         %           	                   	                   	                    	            c      	                   	                    
                    
                    
                     .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                             @       %
                                   @               x      (      	                    &      2               e
                                   5                     0      a                              ;                                                         K                                                          P                                                          Y                            	                                                                
   
                 	                                                                                     b                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/test_blockarg.mod                                                              0000600 0001750 0001750 00000004000 13417732100 0016443 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                               @     @   SH Hu[H           1H        HcH        1HtH        H{H        1[ú@   PE1I        H        H        H        H        H        ZH        H8H        no block parameter %s
 Print and execute block argument. BLOCK test_blockarg     LICENSE=GPLv3+  extcmd normal test_blockarg                                                                                                    ]       I                                                                                                                                        1                      H                      T                      _                       grub_mod_init grub_mod_fini grub_script_execute grub_unregister_extcmd grub_printf grub_error grub_register_extcmd                                               .                    ?                     O          
           h                    r             9       |                                  ?                                                                                            .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                             @                                           @               `      8      	                    &      2                      M                             5                     L                                     ;                     P                                    K                     `                                    P                      `                                    Y                      n                                                                h      
   
                 	                            t                                                          b                              boot/grub/x86_64-efi/password.mod                                                                   0000600 0001750 0001750 00000005570 13417732100 0015477 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    x          @     @   SH        HHHֺ   Ѕt[H           1H        HH        1[ATH        I   UHSHá        H   HH        к  =  HNHH        HcHH        LH        ЅtHH        ҉H        H8H        1[]A\ÃtH           1H        HrH:H        PHH        H        E1H        H        H        H        H        ZH        H8H        access denied two arguments expected Set user password (plaintext). Unrecommended and insecure. USER PASSWORD password     LICENSE=GPLv3+  crypto normal password                                                                                                 ;      Q                                                                                                                                       )                      6                      B                      Y                      d     P              }                                                                                                                                                           grub_mod_init grub_mod_fini grub_strlen grub_memmove grub_dl_ref grub_auth_authenticate grub_errno grub_normal_set_password grub_register_command_prio grub_unregister_command grub_crypto_memcmp grub_zalloc grub_error grub_free grub_auth_register_authentication                        "                     3                     B                     T                     o                               
                                                                                                                                                                               1                    A            `       K                   X            %       b                  l            n       v                                                                                 .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                             @                                          @                     X      	                    &      2                     w                             5                     \                                     ;                     `                                    K                     p                                    P                      p                                    Y                      ~      	                                                          (      
   
                 	                                                                                     b                                                                                                                                                                      boot/grub/x86_64-efi/testload.mod                                                                   0000600 0001750 0001750 00000007360 13417732100 0015453 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    0          @     @  
 USQ  vH        H           ځ  tH        H        Z[]H        AWAVAUATUSH(  "H           1H          IH:H        HH  HX@H uHH        '  HH        HI  I6H        1I        I        AH        HLHEXHAH9L<$  H        1E1AI6H        1AH        1HHT$Iظ   Ht$ M)HI   LCH$LLD$LD$L9O  I        Kt= HHD$H|$ LD$AЅLL$tLH        1A  MI9vH        1AI6H        1AH  v	H   1HHHD$к   Ht$ HH$H=      Mt    H|$ HD$LЅteHI        1H        1AA41H        Aԉ؃uH        1AHH   uH        H5H        1A1SHH        H        LH        8 uH           1H        ҡ        H(  []A\A]A^A_H        PE1H        H        H        H        H        ZH        H8H        . filename expected Reading %s sequentially  Done.
 Reading %s sequentially again 
Differs in %lld
 Reading %s backwards %02x  
 bad read Load the same file in multiple ways. FILE testload       LICENSE=GPLv3+  testload                                                                                                       `      D                                                                                                                 (                      7                      B                      ]                      i                                                                                                                                                                                                       grub_mod_init grub_mod_fini grub_xputs grub_file_seek grub_errno grub_register_command_prio grub_printf grub_unregister_command grub_file_read grub_refresh grub_malloc grub_file_close grub_file_open grub_error grub_free grub_memcmp                                       	           7                     A          	           P                     q                                                                                                                                                                                         :            ,       O            4       ^         
                                           R                   ,                   d                                       R                   y                                                          ,                                                                    *                   ;                    F                    b                   p                   z            Z                                                                                                           .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .modname                                                                                              @                                          @                                               &      2                                                  5                                                          ;                                                         K                                                         P                            	                                                          (      	   	                 	                                                                                      Y                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/password_pbkdf2.mod                                                            0000600 0001750 0001750 00000010420 13417732100 0016715 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   G<	w@GÍG<w@GÍG<w@GÃUH        HAWAVAUATISHH(H}Hz HIǿ"   tmDKLCLLk L3H        DMLEAUHLDMLELAWH        H        AEXZt,LH        DHeH        [A\A]A^A_]HS HsLH        Ѕt+HeH           1H        [A\A]A^A_]H}H        He1[A\A]A^A_]AWAVAUATUSH8tH        0HzIH           H        Ѕt"H           1H          ID$(   I        HHD$(AHH   1Ht$(H|$(H        ЉC        9  H|$(?.u!HǾ.   H        H|$(HHuHH        GH+D$(uHEI        H$HAרL|$uHH+D$(H<$HHCAHH{HC AHHHtI        jHH        С        x  A} HL$A׉D$IEHD$(A}AIUHT$(u't$HL$uH	ALl$(I9rH;H           H{ AHIHCuH;H        H[H$HI        HD$(HD$HH$uDI	AFLl$(L;,$sJA} A׉IEIHD$(A}A׉Ll$(tH{H        H;HHH        I<$H        ЅtHH        ҉H        H8H        1H8[]A\A]A^A_PHH        H        E1H        H        H        H        H        ZH        H8H        access denied two arguments expected grub.pbkdf2.sha512. invalid PBKDF2 password Set user password (PBKDF2).  USER PBKDF2_PASSWORD password_pbkdf2      LICENSE=GPLv3+  crypto gcry_sha512 pbkdf2 normal password_pbkdf2                                                                                                       ^      Q                                                                                                                                       )                      <                      H                      _                      j                                                                                                                                                                                                                           /                     ;                      grub_mod_init grub_mod_fini grub_strlen grub_crypto_pbkdf2 grub_dl_ref grub_auth_authenticate grub_errno grub_crypto_gcry_error grub_register_command_prio grub_unregister_command grub_crypto_memcmp grub_strchr grub_malloc grub_error grub_free grub_auth_register_authentication _gcry_digest_spec_sha512 grub_memcmp grub_strtoul 4                     }          
                                                                                                                                        "                    <                    l                               %                                       9                                                                                       *                    F                    d         
                                                                       5                    Z                    w                                                    1                           &                    6                   C                    d            n       n                   {            Q                   W                                                                                                          .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                             @                                          @               	            	                    &      2                                                  5                                                          ;                                                         K                                                         P                            !                              Y                                                                                            
   
                 	                      p      H                                                         b                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/video_fb.mod                                                                   0000600 0001750 0001750 00000073250 13417732100 0015412 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    hs          @     @   HqAHHGH        SD@TpLPPDPXx\H`EDXdXhtCEt>Et9t59ADCAAE9EG9ADCAD9DFE9sE9r(@p    @t    @x    @|    ǀ       <E)E)9DHpD@tDXxDP|v
)   
ǀ       9v
)щ   
ǀ       1[S        H        H        9NH        19L9KH        H)ơ        QHH   HcH        H|H        H        H        H        @        H             H                ߣ        أ        H        Ѕt"H        У        أ        [H        HH;Bu!9z,~        79B0}	        H        Q        :9AH        H6)ǋVHH   HH        H<H        H        @        H             1ZSH        H        H{H    HC    1HC    C(    HCH    [UH        SH        PH{PH{H    HC    1HC    C(    HCH    HCP    Z[]úL   PH        H0H        1Z1I        9s"A;H(sI        M
AH1AU7IATUSQH        ;A(Iw1r        H4    H        H8H        HH        uH        С        (A;L$(sAt H        HH49r1Z[]A\A]H        DD9v11D@D9v11D:EʉxLA)pPE9EAGD1A)PTE9AGɃxl HXtH        1HtH        @LHtH        @PHtH        @THtH        @X1H        DD9v11D@D9v11D:Eʉx\A)p`E9EAGD1A)PdE9AGɉHhH        1HtH        @\HtH        @`HtH        @dHtH        @h1H        u	@l   @l    1HtH        xl 1UH        DSL @A@tkH        DH        1E1E1D9s?<tLD)))tD9}	AuDHAD   t1A:xHuwA:pIuq1A:PJfA   @DA+H$   @AH(@DA+H4AH8DA+H<AH@DA+H,	AH0@		[]H        ;x(s<H        HBu)H        HPp8H        1H        L AA@t( tɸ      @@H        t1A:xHuzA:pIutA:PJun1A:HKA   @@DA+H$AH(@DA+H,AH0DA+H4	AH8DA+H<	AAH@	AVUSHHˋHtkH        @ t   u  A  A I     wH        HH    
HTHTAHD3t6@tHH
PIPJA@KHD
PEPFA@GA   H(AA   DAH$A!   AA)DEAADAA	DH0EH,AA)DAED!AED	ʈH8H4A)ˉADD!	AH   y< t#H@H<DЉ)͉!AD	A[]A^HH        MIHHHH$H   HD$H        1HAVEAUATAUSH H        xl tDppDhtD@xp|+   +   DpLDhPD@TpXE      D9      9   D   y1ۅyA1ҍ+D)D9B
G)9DGAH        DDL$DH        B3DL$ADDH|$HD$H   HD$H        H 1[]A\A]A^UHAWAVAUATESH8HWPuH        DUEH}HUHzl t rpDBtDrxDZ|+   +   urLDBPDrTDZXuEb  EY  EP  H  D9?  D4  D9+  !  D/D  w  E9   DD   A9   EA   Ey	D)AE1Ey	D)DE1ɅyAA)1ۅyA)1F<DDM)HUE9D4DGD)E9G"GDD)E9FDG׉D)A9GE9EF9FH   AADDEHEH        DMPHuMDEH}UH        AQEATAVH He1[A\A]A^A_]UHAWAVAUATESH8H   uH        DUEH}HUHzl t rpDBtDrxDZ|+   +   urLDBPDrTDZXuEb  EY  EP  H  D9?  D4  D9+  !  D/D  w  E9   DD   A9   EA   Ey	D)AE1Ey	D)DE1ɅyAA)1ۅyA)1F<DDM)HUE9D4DGD)E9G"GDD)E9FDG׉D)A9GE9EF9FH   AADDEHEH        DMPHuMDEH}UH        AQEATAVH He1[A\A]A^A_]AWAAVAUATUSHH	Љ|$d  H        1xTD`X)DAՉ|$DE1xPH        A)ЅH        yDpLDDt$)߉|$xL;|$L$EHPyAD)|$E4L$1);PT  DD1);PX  |$H   I        LT$(HD$0t$)DD`D)Dh|$HT$8T$DH|$0ALT$(IHD$ E)D  HD$(Dt$H|$0AҨLL$(#  DD	  McMcIIEEMcyD    HEHH1N$1t7Et0L9LJ<
  1D9}HDoIEkt$t$AT.DT$ I        H|$0A֋L$t$H|$0t$HD$IT)ADLt$1HkDT$ EHI11L)IH9ML|  1D9}IEaIEcHAM  LL$(Dt$H|$0H        ШLL$(#  DD	  McMcIIEEMcyDH1EHIM1I1t9Et2L9LJ<
  1D9}HfDgIfEct$t$AT.DT$ I        H|$0A֋L$t$H|$0t$HD$MT)ADLt$1HkDT$ EHI11L)IH9ML'  1D9}IfEaIfEcHExtkEuft$DH|$0H        Mc119   1A9~H|$ @<@<HEH|$ AIHcHHLLH|$ 빋t$t$AT.H|$0I        McA֋L$t$H|$0t$HD$IݍT)ALt$H11I9}71҉D9}@<A<HEAIHcHHIMLA ~H        E1ҋHT*t:H        DދPX9DBHTEDA1|$H        Ѓ ~H        11D@X(t6H        ًpTD@X9B1҉ً|$H        HH1[]A\A]A^A_AWAVAUIATUSHHttAu+HH        &   []A\A]A^A_1H        Aο   I        AHH0  A"ǀ      @L    @P    hTD`X@\    @`    hdD`h@l    @p    @t    hxD`|ǀ       ǀ       (D`u%@"   @   @   @   @ 	   `@!   @    @   @$   @(    @,   @0   @4   @8   @<   @@           C    CkkAHHT$AHHH   HT$uHH        С        A"   H        t1I] 1H[]A\A]A^A_AVH        AUI   ATIUHSHá        H   L   ǃ       L   HHH        CL    CP    E1E I        CTEC\    C`    CXE CdECl    Cp    Ct    ChE CxEǃ       ǃ       C|D;esDU 1}UAH   AI] 1[]A\A]A^UHSHQt!    H        t	H   HZ[1]H        HHDH    uH        &   1H        HH        1H        H        HH;B    HDH1AWAVAAUAATMUHSHHXM  @Mt
@s  {K   H        {HH        tJHHH        H        Ѕt@H        H8H        H        H                  H        H0H             H        1    H        H        Hǆ      H        LH        F        H             F        H             AԅtH        H8H        LH        2  coH             At
A=  K   H|$   HH        |$|$HH        tLHHt$H        H        Ѕt=H        H8H        H        H                rH        ǀ      H        H        HH        H             H             D$        H             H        1H           coH             HHH        H        Ѕ   H        H     HH        H             H             H        H     H        HB        H             cH        HHH        HX[]A\A]A^A_H        Ht1UH        HL   SH        QH0H        H{H t{< tH        С        HHDHE H        Z[1]HqAHHGAWIHAVADAUI        ATUSHHDL$DD$T$t$HXD`IT$PAHhA))ADLHËt$ALcD$1DL$EII1LRL    D9}DHH1D9}'D)DqHDyHDrDjDzBLLLHH[]A\A]A^A_AWIHAVADAUI        ATUSHHDL$DD$T$t$HXD`IT$PAHhA))ADLHËt$ALcD$1DL$EII1LRD9}@HH1D9}#DDjHDrHDiDqDYLLLHH[]A\A]A^A_AWIHAVAAUAATEkUSAkHHDL$DD$T$PH        pID`H4$t$HDDHLLcD$1DL$EIIE1L,RL4    E9}OHH1D9}0DYHHA   D	DYAD	ډWLLAH$LH[]A\A]A^A_AWIHAVAAUATUSIckH8HDL$t$pыT$xHIDhH$DI        )HD$ADLIĉAE1҅ILII        E1KRHD$D;|$}[MLDD)9}0} uHUILT$(L\$ ALT$(AEL\$ HD$OLd$L$$AM4 H8[]A\A]A^A_AWAAVAAUIATI        UHHSHD$DL$T$Xt$PADDHLI        AIHE D$E1D@IcH$D;d$}&HLH$AHE Aċ@HIE @IH[]A\A]A^A_UHAWAVAUATESHH   L>HphD|DUD] AG   ȃ	  H        $L/AE ȃ  H        $|AGH        EEuDDA)AEHpHpA)HID⋵hHpHc|E1LI1I;}"  HL1;|})DDZHZDJHDYDQYDIMLML뮋|AGH        EwE}DDA)AEHpHpA)D⋵hHIHpHc|1҅HI1L    LR;u!  H19|~(A| HHAADRAADR@zMLMLH        DDHpHpHD⋵hIHpHc|1kDkEEAwHIL    LRI1;u)!  H19|~AHHZ@zZMLML뽋|DDkDAwE}I        DLcD)H`DHXHpADIŋhHAE1EIMII        E1J    HpD;}d   LMD);|}>IAD$HLPLhALPCLhHXKLpL`AL4H@ ȃM
  H        $ASDMDD|hHHpARH        XZ  Hx 	    H@ 	    L/AE  wh	  H        DDHpHpDHIƋhHpA]EgI|E1I        )A)    V	  H        DDHpHpHDIƋhHpы|A]IEgE1I        A))LpDABDILpIu1111H        Ћ|1LpE̅I1HcL    ;M&  19|~ A<@uA|A<HIMMIH        DDHpHpDHIƋhHpы|EeHEoH        E1A)A)DHpBDIHpIu1111H        Ћ|1҉E̅I1LcO@;}6  HLD);|}2@1@t	tA@2HAHDR@rMLMLH        DDHpHpHDIƋhHpы|A]IEgE1I        A))LpDAfBDmILpIu1111H        ЉfEHc|1LpHI1L	;E   19|~#A4@ufA<PftufA4PHIMMILpDABD-ILpIu1111H        Lp@ƈE11;E  19|~AuA4LAHHc|HHIIMIHB       A|DBHpDI        AAA)A)EADPHD`ADAH        AуAAMcLnDXhAOKAWJHAwIAHAHpAHpExDHGPFAԿ   1E1+`DPDX  U    A|DBHpDA͉AA)A)EADPHD`DA   H        AAAAMcLnDXhAOKAWJIAwIAHI        AHpHpExDHGPFAHc|E1DPDXLI   +`I1;uI  19|~EU DAAuIAHۊ`AMAMAEu@IAM룋|ADrHpDI        vA)ƉA)hAŃ`H        ADA   AAMcLGADXHLPAOKAWJHAwIAHAHpAHPFpExDHGAԋ|DD   ADXLPΉpA   |   +`ǉhA1;U  1;|} EEDDADuIAHELctpD;KhK
@{DKAuIA`AMAAEu@IAK4jA|DBHpDA͉AA)A)EADPHD`DA   H        AAAAMcLnDXhAOKAWJIAwIAHI        AHpHpExDHGPFAHc|E1DPDXLI   +`M1;uT  19|~EU DAfATuIAHڊ`AMAMAEu@IAMEU DDA
uIAH);||Hc|`IHMHAAAEu@IAL;u  HE1D9u  E1D9|   LpC4*C3DXD`H        LLMLEHMHULH        MUH        u}ЋhC4H        B4/HIDXD`UI@r  w	t  	"  
7    Hx W  H        $ы|AWH        EwDhDA)֋PHpHpA)DHpD⋵hIHHc|I1   HIE1HHpDHhDH`D;U  MA19|   At~D   DtREhA1ADDAD1ALEAD1EC,AAD	D		ApHI_HpAIILhL`,k|I        ։AwxDE1H`DHXHpADIŋhHAIHc|   LIE1ID;U  IyE1D9|   C\       u_{WAADEAAAӉpADDDp11AƉA	1A	DA	DwIHOMML`LXA"|AWH        EwDhDA)֋PHpHpA)DыhDHHpIHc|I1   HIE1H    H@HpDHhH`ED;U3  IIE1D9|   CtiD   DtHAA1ADAAD1AAA1҉ADAD= ADaYDYIHsLpLhAL`MB|I        kADDkDDxH`HpA֋hIDHAIHc|E1   LIE1J    O4vHpD;U  IIE1D9|   CD tkD   u	DaYJQADAyAADDaǉ11EAD1҈AAIHpLpMAL`MCLc|@I        HpAkAwDH@D)H8DAՋhH`DHAHh1EIIǅX    HPHHHX;E  HhHǅp    L`p9|   H`HpAA   DA   ADuDD   At$D0LEHMHUHH        LMEE   A1D0EEAED1AǈEEAAD1AňEEADCEH        AD$HpIH`HhHHHPH@H8XH`HhH@ ȃ?  H        $ASDMDD|hHARHpH        _ASDMDD|hHARHpH        .ASDMDD|hHARHpH        ASDMDD|hHARHpH        Hx O\
     H`d  9  9
  APDpHp|A)HAŃH        DA   `AA)ADMcLFAD8hH        AL0AOKAWJIAwIAHHphHPFHGpExDHc|X1D8L0A   HIE1H    DH@HPDA   D+`HHD;}  19|   EHpH txKh
xGX@uA|@twE4AAEAA1ADȉ	A1A1	LAA	AAuIAH4`ALPALHAEuDIAL@AAPDpHp|A)HAŃH        DA   `AA)ADMcLFAD8hH        AL0AOKAWJIAwIAHHpXHPFxDHGpEHc|P1ǅh   D8   L0HIE1H@`)hHHDH@D;}  LE1D;|   EHpH tHKX
HGPuǈF^^tZDAAEAA1LAA11҈FAAFAuIAHADHH`L@IAAAEuhIAN$2AAPDp|ALp)׉ƃH߉`DA   XAыhAA)McMCAD8DH        I        L0AOKAWJIAwIAHALpIPFxDHGpEAHc|1҉@Xǅh   D8L0HIHXE1H<HP`)hHD;}  19|   EHpH t@DHKDHGHAufA|M    E   fA\M EˉAӃ1EۉރAA   1҉ƉffD?EADA   A1	Ɖػ   ?AA?	fAtM AuIAHHP`LXIT AAAEuhIAN,2AL/AE=  whr  H        DDHpHpDHIƋhHp1EmIE|H        A)A)        H        DDHpHpDHIƋhHpы|EmIEH        A)1A)ŉHp҉DHHpHuዝ|1IHc1H<    ;Ec  19|~A4@ttA4HIIMMH        DDHpHpDHIƋhHpы|EmIEH        [A)1A)ŉHp҉DHHpHuዝ|1IHc1L;E  IT$19|~0A4@ttA@rA@rDJHHIMMMH        DDHpHpDHIƋhHpы|EmIEH        A)1A)ŉHpfD]HHpHuHc|1ɅHI1H<	;E  19|~A4@tftufA4THIIMMHp҈DHHpHu11;EE  19|~AtLAHHc|HHIIMMHǅ`    `9E  E1D9|  H`LpC42DHDPDXALAH        LLMLEHMHUI        AՊEDPDHO  hXG<'0XuJUu   }H        DXHH        DPDH   DHDPDXHH        LMLEHMHUHADmEA   }1uEADmAEAA1҉ǈEE@AAUƈEE@A1AЈEH        DXHH        DHDPI$H`He[A\A]A^A_]AWAVAUAATAUHSH(HP   w$\  @11DD)MLg+  t_2  @B    AD1)MLgEAI1HH4    D9Q  1A9~	AHII݋@C@EkADA)1MLeEAI1HL@D9   L1D9}@0@xHXMMы@C ED1)MLgEAI1HH4 D9   1A9~
fADHIIEAEIMcMID9}k1A9~AHE1I        E9~IC<E1D$E9~4DL$DD$Ct5 LT$ًT$HIADL$DD$LT$IH([]A\A]A^A_HqAHHGHHw(setr   H        D    t u|H        D nH        D@P AA	A	GH        D 5E1x 
u,   2HOHD   )AAE1DAPHL$D@Aw-AsmAt|A   H        ЋT$   AtA    H        ЋT$nH        ЊT$T$PT$PLH        ЋT$f7x 
u1   2LcLO)A|$AE"A	EX                                                                                                                                                                                                                                                                                                                                                  invalid argument given invalid render target given                         T TTTTTTTTTTTT  U   $  $U $ $ H  HU H H l  lU l l   U   U    U ت    U  $  $ U$ $ $$ $$U$$$$$H $HU$H$H$l $lU$l$l$ $U$$$ $U$$$ $U$ت$$ $U$$H  H UH H H$ H$UH$H$HH HHHl HlUHlHlH HUHHH HUHHH HUHتHH Hl  l Ul l l$ l$Ul$l$lH lHUlHlHll llUlllll lUlll lUlll lUlتll lUll   U  $ $U$$H HUHHl lUll U U Uت U U $ $U$$HUHHl lUll U U Uت U   U  $ $U$$H HUHHl lUllؐ ؐUؐؐش شUشش Uت U   U  $ $U$$H Hl lUll U U Uت LICENSE=GPLv3+  video_fb                                                                                                                                                                         	                      z                        W       +           S       D     v      	      t     A                 	      B                                                                    
                                  	    +            #    :G             -          S       H                 c                     n                     z          5                            ,      N                 E                                                                            m       /          H       V          !       t    '      `                 2           zF                                             #          mD                                                              *       F    n      f       a    o      #       x    #                                             grub_video_fb_map_rgba grub_video_fb_fini grub_video_fb_get_region grub_video_fb_create_render_target_from_pointer grub_video_fb_unmap_color_int grub_video_fb_unmap_color grub_video_fb_map_rgb grub_video_fb_scroll grub_realloc grub_video_fb_fill_rect grub_memmove grub_video_fb_blit_bitmap set_pixel grub_video_fb_get_viewport grub_video_fb_swap_buffers grub_errno grub_memset grub_video_fb_get_palette grub_video_fb_set_palette grub_video_fb_map_color grub_video_fb_init grub_video_fb_get_area_status grub_zalloc grub_malloc grub_video_fb_get_info_and_fini grub_video_fb_set_active_render_target grub_video_fb_set_area_status grub_video_fb_set_region grub_video_fb_delete_render_target get_pixel grub_error grub_video_fb_dispatch_blit grub_video_fb_fill_dispatch grub_free grub_video_fbstd_colors grub_video_fb_get_active_render_target grub_video_fb_set_viewport grub_video_fb_get_info grub_video_fb_setup grub_video_fb_blit_render_target grub_video_fb_create_render_target                                   ,                   0                   4                   8       3                   C            @       c                    r                    ~            ,                   4                                      ,                   0                   @                   <                   @                   <                   H                   <                   @                   <                           4            ,       E            0       P            0       Z            ,       j                                                                                         ,                   0                                    )                    )           &                    w                                                                                                               (                                                                 )         	           4                    O                   p                                                                                                                       )                    z                                                                                                                                                               =            (       J                   .                    =                    R                   m                    |                                        U                                       	                    	                    &
                    
                  
                             (           J                                               '           :                                               '           -                    ]                  n                                                                                T                                         l                                                            0                    A                    Y                                                                     &                                           (       3         )           >                    S                    z                                                                                         )                                                          &                                                                       h                    {            P                                                          P                )                       P                                                          <                   @                                       X       7                   D                    P            ,       Z            0       l            4       v            8                                   $                       H                                                           P       #                   -                    =            P       J         )           V            P       f                    z                               N                  X                                      <                   @                   ,                   0                                                                  $                   .                    D            X       X                   b            <       r            @                   H                                      ,                   0                                                          X                                               !                    :            X       E            <       Z         	                       j      v            j      p            j      c            j                          )             j      _                     !                    1!            P       H!            j      
"            j      "            j      #            j      #                    $                   $                  %            j      Q%                    w%            j      %                    &                    t&            j      &                    &                    '            j      '                    	(                    (                    H)                    )            j      i*            j      *                    +                    +            j      _-            j      -                    /         %           +/                    ?/                    _/                    /                   /            j      G1            j      2            j      3            j       5            j      16                    6                    7                  K7            9      |7            b      7                   7                  M8                    8            j      }:                    :            j      <            j      <                    >            j      4?                    [?            j      ?                    1@            j      z@                    A            j      eA                    B         %           B                    +C                    EC                    ~C         %           D                    2D                     F                    F            eF      F            eF      F            eF      F            eF      eG            eF      G            eF      G            eF      G            eF                    !                   $                   .                   m$                    .      (             .      0             .      8             $      @             $      H             )      P             7      X             <!      `             .      h             "      p             !      x             .                   .                   o#                   '7                   $                   .                   7                   X7                   .                   .                   7                   >1                   /                   YB                   3                   2                   YB                   YB                  5                  '7                  $                   YB      (            7      0            X7      8            YB      @            YB      H            7       .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .modname                                                                                         @       H                                   @               hV            
                    +                     PH      P                             &      @               o            
                    3      2               I      3                             B                     I                                    H                     M                                    X                     M      `                              ]                      M      	                                                     N                                	                      R                                                          s      f                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/pata.mod                                                                       0000600 0001750 0001750 00000016240 13417732100 0014556 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                               @     @   AUI   ATI        US   APAfAEPym9|]DAH        H        Y   H        1I        AY[]A\A]H           1H           AZ[]A\1A]1uFATH        IUHSHHtC   4PHAԅu
H[1   []A\USHVGfOQ2   H        fCPZ2   fSDH        1H        '  H        I        AрZt Y[]H           1H        Z[1]t H           1H           UH        AHSWHHtCPD9tH[1H        H          H        I        AHu Y[]H           1H        HH        ЅuH]8HE     HE(   H]0Z[]UAAH        1I        HAUAH        ATA<  SHRH        Aҿ   H        ZHYuH        ]H        D(fXHD`H@   H@    Ht
HJHRHH1H        ЅtH        He[A\A]]UHAWAVAUATAԺ   SH        H8H}uӺ  A" EH]
  E   E   A   1ۃ} ]uMDr7H        H8    HH            1D,   A  DH}uHEDA  DAT$AH}uHEDDAt]tYAtSH}uȺ   H        ЉA  ƃDffDf   1   E1RDMH        DEH          AUH        I        PEP1AH E           MI        1A    DI        <AAA> tH        A            MD   <AAA> tH        H             HA9]"                 E=  uE   E    He1[A\A]A^A_]UHAWAVAUAATSHHF0Lw8ttH             VCI        DH        H           H        PDC1AsCH        H           H        PDK1DCAԊCANfAv%   	ȍVVH LexfAv1ɍ~+ALH        '  Ѕ  ɊDHHu~0ɊHHuCVI        '  LAׅMF  fAFPH        EDH        1   H        LUA҃{0 uEE1	Ew'  LAׅ  fA~WEttH           1/  Hcs0LC(1HH9s	fA fAtfAVfDIL;cr{  +  U  }u'  LAՅQ  {0    fANQ<fQDQAH        A	H        1E   H        LUAEtHCDL)H9wAtH9tH        A   HCDH{HD)L)H9DG{  Dt(IL1IL96fAVffIL1IL9fAVfD6fB'  LAՅu5fAFP	H           WLc'  LA1Ʌt           fAVT
HHuPCH        DH          H        LUPDC1A1C	ZYt)H           HeH        [A\A]A^A_]He[A\A]A^A_]H        Q    H        HtH        H     H        H        1ZH        H        H        H        ptimeout: %dms, status=0x%x
 pata disk/pata.c PATA timeout sectors=0x%x
 ata no device connected not a PATA device opening PATA dev `ata%d'
 no such PATA device detecting device %d,%d (0x%x)
 PCI dev (%d,%d,%d) compat=%d rega=0x%x
 ATAPI non-12 byte commands not supported pata_pass_through: cmd=0x%x, features=0x%x, sectors=0x%x
 lba_high=0x%x, lba_mid=0x%x, lba_low=0x%x, size=%lu
 status=0x%x
 ATAPI protocol error DRQ count=%u
 invalid ATAPI transfer count ATA write error status=0x%x, error=0x%x, sectors=0x%x
 PATA passthrough failed                                              LICENSE=GPLv3+  ata pata                                                                                                                                                   $
      b            
                                        	                      
                                       -                      K                      V                      n                                                                                                                                                                                 grub_mod_init grub_mod_fini grub_millisleep grub_disk_firmware_is_tainted grub_errno grub_disk_firmware_fini grub_ata_dev_register grub_pci_make_address grub_print_error grub_malloc grub_real_dprintf grub_error grub_pci_iterate grub_ata_dev_unregister                         >                     H                    W             !       c                     w             -                                                                    >            :       J            H       Y            !       c                    x            L                                       `                                                          r                                      !                           '                   8                    G                   }                                                   !                                                                                     +                   ;                    i                                                           \                                                                      !                                                                               t      2                    D                    e                    q                                                                                                   &                  0                   ?            !       [            J      e                   t            !                                               H                  Y                   j            !                         e                  r                               !                         [	                  	                    	                  	                   	            !       	                  
                    &
                    7
                    H
                    Y
            R      c
                    r
                    |
                    
                    
                                                                                .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @       
                                   @               p                                &                     
                                    .      2               
                                  B                            (                              =      @               h      H                           H                     (                                    X                     8                                    ]                      8                                    f                      <                                                          H      (                          	                      p                                                                o                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/videoinfo.mod                                                                  0000600 0001750 0001750 00000013130 13417732100 0015606 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    X          @     @   AWAVAUATUSH   D$    D$    D$       H:HHt$p1H        H|$pӉD$        n  H|$p?xt$HU H           H        @  H1Ht$pH|$pӉD$          H|$p?xu&H1Ht$pH|$pӉD$          H        H        H        AH        H        HH  1I        HsH        MAH    uH        ^  D9cHD$    u1Lt$$H        LЅuLt$*H             S tH           H   HtHt$H           H   H   H|$pЅ   H|$pH        ЅtH        k$   $   H        1I        AHT$HH|$pH        ЅuT$4$H        AH        1AH             D9cHD$    tS(tH             HV1H   []A\A]A^A_UHATSHtVt9  9G  Ft	9Ct  SI        uH        1A9HFHt;PH        t
H        1AԋsH        1A1KSDC3H        AC@t)H        H        L H        HACt;PC@H        K4S,I        s$PC8PC0P1DK(DC<AH Ct)H        H        L H        HACt)H        H        L H        HAC
t)H        H        L H        HAC
t)H        H        L H        HAC
t)H        H        L H        HAC
t)H        H        L H        HACt)H        H        L H        HAC
t(H        H        HH        HH        H        He1[A\]H        PE1H        H        H        H        H        ZH        H8H        invalid video mode specification `%s' List of supported video modes: Legend: mask/position=red/green/blue/reserved Adapter `%s':
   No info available   Failed to initialize video adapter   EDID checksum invalid   EDID version: %u.%u
     Preferred mode: %ux%u
     No preferred mode available
          *    0x%03x  %4d x %4d x %2d (%4d)   Text-only  Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Paletted  YUV  Planar  Hercules  CGA  Non-chain 4  Monochrome  Unknown video mode  
 List available video modes. If resolution is given show only modes matching it. [WxH[xD]] videoinfo       LICENSE=GPLv3+  video videoinfo                                                                                                      D                                                                                                                                       (                      3                      >                      V                      o                                                                                                                                                                                                                           grub_mod_init grub_mod_fini grub_puts_ grub_xputs grub_errno grub_video_adapter_list grub_video_edid_checksum grub_register_command_prio grub_video_get_driver_id grub_printf grub_unregister_command grub_error grub_video_get_info grub_printf_ grub_video_edid_preferred_mode grub_gettext grub_strtoul     @                     T                     t                                                                                              
                                             &                   E                           3                    A            s       [                                                                                                                                       9                   E                    _                    v                                                                             !                    0            &      M            /      Y            1      k            3                  <                                      T                                      _                                                                "                    :                    D                  Q                    i                    s                                                                                                                                                                                                                     %                    /                  <                    T                    ^                  k                    |                                                  6                                                        @                                                                                       .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                             @                                          @               0            	                    &      2               8      J                            5                                                          ;                                                         K                                                         P                                                          Y                            
                                                          X      
   
                 	                             ,                                                         b                                                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/pbkdf2.mod                                                                     0000600 0001750 0001750 00000003730 13417732100 0015001 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @  
 AW
   IAVAUATUSH   Lg Ht$HT$ DL$,L$8  I@  E  InH9  I@MHL$HD$`HH        Hø"   H~  H1HL$IDd$LHHHō@AD$(H        DD$    )   HD$hE;D$(  L1H$   H        E1ЉD$0%   D$@D$PEu.D$0Bl+LL$pLD$`HB+D$@BD+D$PBD+LL$pMLHT$ Ht$LH        Ѕu1D$HH        ҋD$q9D$vTp0   HAD;t$,d;l$(HT$hH$   |$H        IEH$0  ЋD$D$H        H1H   []A\A]A^A_      LICENSE=GPLv2+ crypto pbkdf2                                                                                                                                                                                                         !                      -                      9                      C                       grub_crypto_pbkdf2 grub_memmove grub_memset grub_malloc grub_free grub_crypto_hmac_buffer      o          
                                          	           l                                                                                 .symtab .strtab .shstrtab .rela.text .data .module_license .bss .moddeps .modname                                                                                            @                                          @                                                &                     Z                                     ,                     `                                    <                     o                                     A                      o                                    J                      v                                                                8      	                    	                            [                                                          S                                                                      boot/grub/x86_64-efi/testspeed.mod                                                                  0000600 0001750 0001750 00000006550 13417732100 0015634 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    	          @     @   AWAVAUATUSH(HGuH        48 HA   t>Hx11H        HI"H           1H        =  LH        HH  H;H        HI   I        1AH        ILHLH$H~	HH$AILI        H        I        1HAH        H1ALH        HT$L)  HL$HH$ыT$H        1AM9t1Hi 1H4$HL$Ѿ   HAH        H1AHH        С        H([]A\A]A^A_1PI        I        H        H        H        H        H        ZH        H8H                s                                                                      filename expected invalid block size File size: %s
 Elapsed time: %d.%03d s 
 Speed: %s 
 Test file read speed. [-s SIZE] FILENAME testspeed size Specify size for each read operation  LICENSE=GPLv3+  extcmd normal testspeed                                                                                                                            M                                                                          	                      
                                       1                      ?                      V                      a                      p                      |                                                                                                                                                                                 grub_mod_init grub_mod_fini grub_get_human_size grub_divmod64 grub_unregister_extcmd grub_errno grub_file_read grub_malloc grub_get_time_ms grub_file_close grub_file_open grub_error grub_free grub_printf_ grub_register_extcmd grub_strtoul                      :                     N                    _                     s                                                                                                                                                               %       %                    P            4                   N                                                                               Z                   p                                                                                      	                                                                                  .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                        @                                           @                     p                          +                     `      P                              &      @               H	      0                           3      2                                                  B                     g                                     H                     h                                    X                     x                                    ]                      x                                    f                            
                                                          X                          	                                                                                x	      o                                                                                                                                                                                      boot/grub/x86_64-efi/pbkdf2_test.mod                                                                0000600 0001750 0001750 00000006630 13417732100 0016042 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    
          @     @   UHAWI        AVAUATLeSH        H(L3HKH        HSHsH        DKLCI        AVAT1$@I        I        Z   1H        H        AHsLLH        1H        @H81I        I        \   H        AXL9Z)He[A\A]A^A_]H        H        H        H        H                   pbkdf2_test K yeHI&!e) pass word sa lt                                                                                                                                                                                                   $                                     	                                            gcry error %d err == 0 tests/pbkdf2_test.c PBKDF2 mismatch grub_memcmp (DK, vectors[i].DK, vectors[i].dkLen) == 0 pbkdf2_test password salt `q$`/7 lM-o*AމW passwordPASSWORDpassword saltSALTsaltSALTsaltSALTsaltSALTsalt =.O6bJ)Lp8 VjUH	74%  LICENSE=GPLv3+ functional_test pbkdf2 gcry_sha1 pbkdf2_test                                                                                                                       /                                                                                    	                      
                                       0                      G                      Z                      o                      {                       grub_mod_init grub_mod_fini grub_crypto_pbkdf2 _gcry_digest_spec_sha1 grub_test_register grub_test_unregister grub_memcmp grub_test_assert_helper                                      h       2                     D                     V                     q                     {                                                                                                                    +                    ;                                                           r       %                    1            r       ;                    @             ~       P                    p                    x             ~                                                            ~                                                                                                                       !       0            +       P                   .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                        @       E                                   @               x                                +                           X                             &      @               @      h                          3      2                                                 B                                                          H                                                         X                                                          ]                            !                              f                      8                                                          H                                	                                                                                	      o                                                                                                                                      boot/grub/x86_64-efi/videotest.mod                                                                  0000600 0001750 0001750 00000013060 13417732100 0015634 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    0          @     @   UH        H        HAWAVAUATISH   ЅtI$HH        @   HD1HH        Ѕ  HMHUH|HxH        H}!   UuH        ЅH}  H  H        H        I        к      1AH        AH        H`H        IHhH        IHPH` HtMt
MtHu"H           1H          I        *   HL@I        AI        1DLH   HAѺ         ALhA    Aǹ   H        LALLhI        AHhH        \ы\HH        T C DAȉ\   AHAAHH        ֺ   AǾ   D\   ADs Hމ¹   H        \EEAHAAHH        Aƹ   H        EL`AV LA׋\EALL`AAH`H        Aƹ   H        ELhAW LA֋\EALLhAAHhH        Aǹ   \ELPH        EG LEALALH        H߾*   L@ALHI1M͉H        ЍSDHÉƹ   LAHuE1I        1H        AH        G  111ADEM1111   AAd   d   1111   AAd   d   1Ҿd   11   AAd   d   1Ҿ   1      AAd   d   1d   1      AAd   d   d   d   1Ҿ      AAd   d   d      ӋEE|   x   H        кM   !   M   ADEM11DM   !   A11DEMAӋE1E1E11ɾ   H}PEPH        H        XAZD1I        H        H}H        H        ЋTH1H        AHuH             1!H        H        С        He[A\A]A^A_]H        PE1H        H        H        H        H        ZH        H8H        auto gfxmode Unknown Regular 16 Fixed 20 no font loaded The quick brown fox jumped over the lazy dog. Unicode test: happy☺ £ 5.00 ¡τäu!  ℤ⊆ℝ color %d: %08x
 Test video subsystem in mode WxH. [WxH] videotest   LICENSE=GPLv3+  font video gfxmenu videotest                                                                                                   v      D                                                                                                                                       2                      H                      h                      |                                                                                                                                                                                                     1                     I                     U                     m                                                                                                                                                                        %                      grub_mod_init grub_mod_fini grub_video_map_color grub_font_get_descent grub_video_delete_render_target grub_font_get_glyph grub_video_set_mode grub_video_fill_rect grub_video_create_render_target grub_font_get grub_errno grub_getkey grub_font_draw_string grub_font_get_leading grub_register_command_prio grub_video_get_viewport grub_printf grub_unregister_command grub_font_draw_glyph grub_video_swap_buffers grub_video_restore grub_video_set_active_render_target grub_video_map_rgb grub_error grub_video_blit_render_target grub_video_set_viewport grub_env_get                                     "           <                     T                     ~                                                                                                                                                                    !                    S            )       d                    u                                                                        8                                               .            8       c                                f                                       f                           )            f       k                                f                                    
                                                   *                    T         !                                                                                                                
                    !                   4                    H                    T                    _                    x                                                                                                                                                              .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                             @                                          @                     (      	                    &      2                                                  5                                                          ;                                                         K                                                          P                                                           Y                            
                                                           H      
   
                 	                      h      2                                                         b                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/pcidump.mod                                                                    0000600 0001750 0001750 00000007030 13417732100 0015267 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    
          @     @   AT1   USHH0H|$HC8    Hx   Ht$H        H|$%  D$H        8
u     HCH@HD$L$            H|$?:   Dd$HǺ   H|$Ht$D	D$H        8
u     L$  D$!D$HCx    HX   Ht$H        H\$HՉD$H        8
u     H\$D$$              H\$;:t%:   H           H           Hú   Ht$H\$HՉD$H        8
u     H\$D$(   H|$?.u-HǺ   Ht$H|$ՉD$         u%D$,   H        Ht$H        1H0[]A\ATUSH#;QH<$t$   y tA9$u}y t	A9D$uny t	A9D$u_1I        H<$t$AԺ  H        H        1Չ؃uH        1Ճ   uH1[]A\1PI        I        H        H        H        H        H        ZH        H8H                  d                                      s                                                                      missing `%c' symbol %08x  
 Show raw dump of the PCI configuration space. [-s POSITION] [-d DEVICE] pcidump Select device by vendor and device IDs. [vendor]:[device] Select device by its position on the bus. [bus]:[slot][.func]     LICENSE=GPLv3+  extcmd pcidump                                                                                                                             M                                                                          	                      
                                       4                      ?                      K                      a                      l                      }                                             grub_mod_init grub_mod_fini grub_unregister_extcmd grub_errno grub_printf grub_pci_make_address grub_error grub_pci_iterate grub_register_extcmd grub_strtoul  6                     P                     {                                                                                  <                    ]                    l                                                                                                  b                                                                                                                                 J                                       d                                                                   $                                 l                           8                    @                     .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                        @       .                                   @               X      p                          +                     p      x                              &      @               	      `                           3      2                                                  B                                                          H                                                         X                                                         ]                                                          f                                                                                                                	                                                                                (
      o                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/xfs.mod                                                                        0000600 0001750 0001750 00000024340 13417732100 0014431 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    %          @     @   PH        HPH        H8H        1ZULHLWLHWI   j E[xIA	ASARI        ARAQMIHHHH        H0IIHOHW`HwXH        HPH   AUH        A1ATIUHSHӺ   HHЃ{ tC<$ȉD$$AH	Ј$H        HUHLU H[]A\A]UII        HAWA   LAVIAUATA   SHHW{w|L@HHL!II@   HHH        Hξ  IKx	IH        AKzMAA!1AH        ATAKzIcH   MLH        ILZYt        O   H        LH        Љ1t)HeH        	   H        [A\A]A^A_]He[A\A]A^A_]AVH        AUIp  ATUSHH  1H        H        g  H        I        A11Iع   LH        ЅMa  H        H           H        AԺ   H        HH        ЅuCx<v   Ѓ~H           Cdf% f= uE1  H        H        H        Aԋ   H        H%Htxaf=    1  H        H        H        AԋCdH         tBut+   u  tH        	   1H        *Kz   HH        HH  HHuBH        8uH        	   1H        HH        1   CLC8H   ǃ     Iȉ   CTL   ȉ   Cdf f u	   ut         H          H        L   ǃ       f 		H           1AH  H   HH        H[]A\A]A^UH        HATISHH8H        HH        HH   fDP.x,f@*DK(fDC&K$fAfS"s ASEfARI        WH        P1fAfAfEEAH I$I$    H        H8H        HH        С        He[A\]UHH        SQHH8H        HH        HHtHxl   H        HE HE     H        H8H        HH        С        Z[]AUIATIUHSAQHBH Hz   HHxH        HHttLh@   HSHELH HHEH8H        ЅuAfCLM    HMf% f= @tf= @t
1f= @AXHL[]A\A]AH        Z[]A\1A]AUH        IATIUSHH8H        HD$    ID$H8H        HH   H   LI        A   I        H        HT$HH        A}     HD$x t<Ht$H9tRKz   HH        HHH|$H         HPHpHH        A}  u#HD  I\$PID$    HID$@1=H|$H9H        tHH        H8H        С        H[]A\A]ATUSGHLgL<It	<t+   {H   Hx[]IcA\HGH        A|$H        HcHHt>McI111MHH        L9tHH        
D  H1[]A\AUATIUSHQW  HHc   H        HH  {H   HCxKfHGfPHtH   IzHHH)HL1HLm19A}H<HHI9sEuHH        t  BLHIHcHJ|   Lc   HHHH   HJxHH!H        HH   1҃	HLЅ	  H   tH   twS   H        HH        ЅtHH        H        	   1H              H        HH        ЅuHfUHEH   Hc   HIDH)HHf} EuW`HGxH   HG1$H           1H        1   E1A9}fpxDHAA	AD	AA I9r5IHM9s$Dʁ  HH+H	I)H	IAE1H        HHLH|   HHи   HHL!HZ[]A\A]AWAVAUATUSHHHHT$0WHt$(H|$8t"      H   LwxLGAF<HE1HH
AuE~AEM~IH{HT$(H        I        Aԅ  HT$(H        LAԅ  LE1AA9  HM    уHDHEt px	p		P8PH8H0H	PH	PH(H	PH H	PHH	P@HHH	H	DDHuD HT$(DD$Aԅ   E DD$HLDDA~HHHHl   <HAHA   Px   ЈD$H        AMcLHIf  H@@1Ld$H$IFHD$   AGL$Iw	HT$(AD	 I?H        HЅL$   LH        и      HL<$MMH      LD|$Hx   11L$HMlHHHH        H;D$   AM AE)M9rHHCLL$HHH9v@fA?fAG$tAWH3B   E%  ILH        H           1H        1HH[]A\A]A^A_ATH        IUSHH H8H        HT$HL$HD$    H;H        HH   H   A   I        H        HT$LHH        H        8 u HT$H        H|$H        H|$H9H        tHH        H8H        С        H []A\SHH        H        H        HH        [H        H        Reading inode (%lu) - %lu, %d
 xfs fs/xfs.c IN not a correct XFS inode Reading sb
 Validating superblock
 XFSB not a XFS filesystem XFS v5 superblock detected
 XFS filesystem has unsupported incompatible features XFS v4 superblock detected
 XFS filesystem without V2 directories is unsupported XFS filesystem has unsupported version bits Reading root ino %lu
 not an XFS filesystem %04x%04x-%04x-%04x-%04x-%04x%04x%04x BMAP not a correct XFS BMAP node BMA3 XFS does not support inode format %d yet . ..                                                                                 LICENSE=GPLv3+  fshelp xfs                                                                                                                           P      3                                                                          	                                       3                      @                      O                      \                      i                      x                                                                                                                                                                                                                                                                                           ,                     :                      grub_mod_init grub_mod_fini grub_fshelp_find_file grub_strncmp grub_xasprintf grub_realloc grub_memmove grub_disk_read grub_dl_ref grub_errno grub_memset grub_fshelp_read_file grub_fs_list grub_print_error grub_zalloc grub_malloc grub_real_dprintf grub_error grub_list_remove grub_free grub_strndup grub_dl_unref grub_list_push                                                                        X             	      u                                  .                                                ,                                #                                                                                                  ,       $                    <            /       K                    r                                G                                      #                                                           S                          	            #                   j       (                    P            o       s                   }                               #                                                                            #                                      &                          3                    Q                    `            h      q                                                    R                  #       =                   c            &      |                                                    n                                      ~      D                    Q                    `                    k                                                                        n                                                                                                          7                    n            &                                                                              n      1                    A            B	      K                  ]         
                                                               &      	                    	                    $	                    /	                    |	                    	                    	            .       	                    
                    
                    
                    0                  =                    P                    \                  m                                                                                                                    Y                  c                  }                                                        /                                .                           "                  3                    R                    k                                n                  B	                                 
                                                                                         '                    4                    ?                    V                    `                    j                    y                                                                                             N                          (                    0                     8             |      @             y       .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                          @               x            
                    &      2                                                 :                           P                              5      @               $             
                    @                                                          P                     0                                    U                      0                                    ^                      7                                                          @               
                 	                      (      I                                                   8%      g                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/play.mod                                                                       0000600 0001750 0001750 00000007420 13417732100 0014576 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    P          @     @  
 ATH        1H        I        UH        SHDND9   Affua:f   v N  f NF4 CBBaaI        ASHH        i`  1HAH9wӅt[]1A\AVAUATUSH"H           1H        u  H  H:H        HHt^   Ht$HI        AHtLHH        H        8 u HH           1H        ѡ          DD$H        H        o   H        1I        AѺ   Ht$HAHu3f|$\$t'H        ЅuHt$H        ЅtHH        I  1Ht$H;I        AHT$: t%HH           1H          HAAH        HH           HH        1I        AH9   I        1H{Ht$AA> fD$   HD$8 tH        
   1H        c1Ht$H;H        A> fD$uBHD$8 uf|$t0H        Ѕu Ht$DH        HЅDaa1H[]A\A]A^H        PE1H        H        H        H        H        ZH        H8H        pitch = %d, duration = %d
 play commands/i386/pc/play.c filename or tempo and notes expected premature end of file %s tempo = %d
 file `%s' not found unrecognized number Play a tune. FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...       LICENSE=GPLv3+  play                                                                                                         D                                                                                                                 (                      C                      [                      j                      {                                                                                                                                     grub_mod_init grub_mod_fini grub_errno grub_register_command_prio grub_unregister_command grub_file_read grub_get_time_ms grub_file_close grub_file_open grub_real_dprintf grub_error grub_getkey_noblock grub_strtoul                                                               '                                                                            8                                                7                    M                    Y         	           k            ]       |                             	                       v                                                                                                                              4                    N                   _                    ~            v                                                                           	                                                                      C                    [                                                                                                         
                                                                        .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .modname                                                                                              @                                          @                                               &      2               $                                   5                                                          ;                                                         K                     (                                    P                      (                                                          0            	   	                 	                                                                                      Y                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/xnu.mod                                                                        0000600 0001750 0001750 00000122540 13417732100 0014444 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   H        QH8HtH        H        H     H        1ZUH        HAWAVAUATSH8  H     H        H     H        HH     H        HH  HǺ  HH        I        H=  tHA4  <emistHAH        H\ t(HAH           1H        R  H uHAH        ̋ EH        H8HtH        H        HH        uHA  HHH           HЅAtHAD  HI        I        ALj H       1HA   j H        HL)H8H        AEXZtHAD  HAHHH        DHHI        I  AHt@HHI        HHAHH9u1HAHuBHAH        8 N  HH           1H        %  HHHAH;uHH        AHHH        DDH        HH        H)EHHH        H        D        D                   1ӋH        H           H        E   11H        H        H        H                1He[A\A]A^A_]H        AWIAVIAUMATI0   UH        SHL$DL$HHDL$L$t8LpLxIcH DH$HHC(u&HH        H{H{ա        ,HcS$HLH        H        I|$H1H[]A\A]A^A_UH        SQHHHt+HxH        H{H{(HH        Z[1]AUH        ATI        UHSQH]HI        t#H{AH{AH{(AL+HALH}AHAZ[]A\1A]AUIH        (   ATUSQHHtbLcH        LHHCuHH        6HLLk H        H        HH        H1Z[]A\A]AWH        AVAUAATIUHHSHAPHI  HH        LcH        K<?HHtHLLE1E1hLH        o  MtT1IHxI)EۊtpAAA&  EAAAA?E	Au9A  HHuH)H  LH        H   AulA뿄xDeЃ<uAAA   A   뙈Ѓ<uAA   AAHAAusAA   A_EVEUHwA  vIAA  v;A  HH
f%f fADf%f fAHHA?   fDHHE1        ;HEMHLH        Љ1tLI        AHAԉZ[]A\A]A^A_AWEAVIAUI        ATLcUK$SH(H|$HT$HHL$AHHHT$tAHLH        Ѝ<   HcAHItH11   1H        С        H  fA6MFto $  wV   H
 $  J?ɀJ?Ȁ?BɀJ1HMI9u   ?MHw@2C=  w?H΀B@rD (A  vED $A  w?HA?A?΀AȀ@rD
BHf_ ELD$HLH|$H        Љ1tLI        AHAԉH([]A\A]A^A_tH           1H        AWH        AVAUATUSH(H:HHtKLh@H        I        LHHHt HHLH        L9IHtA֡          L}IE1AI        D;m   M9   IHXHÀu#xuHH)AE1HD$I        L9sHAE;Ws}L9sxHsDT$L9sbH\L9s^HKL9sRH\9L9sGHL\$D@HH|$AӅL\$DT$tD$HH        ҋD$$HHAIH        H1H([]A\A]A^A_UH        H        SRH8Ht
HHX[]U	   HH`        HuHE܉E        E        EH        1H8H        H0UH        H        HAWAVAUATSH        IH           Hǅ@    HǅX    Hǅ`    ǅ,    HtcH        E1H   Ht'J \HJHtq \s
Y$H	AHHxH        H        HIu          w  HcH        A]IELh@   D`H        L0M(  I]AE    IcV IvH        HIcF MfHM   AD$ HD CAD$ HIt$ H        HcIcD$ HCf  AD$$HCIcT$$HIt$(H        IcD$$I|$HH        I|$H        I|$(H        I$LH        HAEL-HLL)AE M&H        IMH        H     H        H        H        HII,  H        @   I        AH        IEH        HI  H        @   AH        IEH        AH  HH        HHHI  @      I        AHIEd  H        H1IcUH        HHH H        HHIH  H        Hp1Hf|F u|HH        A}HcAHIEH   H        H6IcUHHvH        HAHI   @      HID$tqIcT$HH        H        H        HAHt:HxH        H        HIt@      HID$u         F  H        H        H   11ۊt.DBz AF׃0HcH	wHk
H   HHi@B .uHHH
   @B t3DJDB AAFЃ0LcI	wH   HcLLƅt	H   XHH5    PXH1Hu
    E1DH        UAŉ]M   H}H        ЅuEtt  2H        AЃ1D1҃Hi  D>	1҉HH        HID$H        H          H        I        HID$L 1AH        HAHǅ    C  HpHHH
HH        HH;Bh  Hk@   H}HBpI        E1I        HHHPH HxH H        HpyDvDtpPxP1A^_HH}B0IƉAH}IAHM@   H        L)I        H<1AIuHEtJw HHuHAH  L`H        I        LAH  @   H   I        AHHHB  H        HcRHpHHH        LAHHI]  @   H   AHHHB3  H    HpH        I        HAՅt"   HpH        AՅu}  E1LH        H        HI   MkH        IH        I}AD$HcH        HID$twIcT$IuHA7H        HAHtDHxH        H        HIt"@      H        HID$u        H        HHRXH  H        Ѕ     H        Ѕ  H        H        LH        H          D H        1I        Hǅ@    HǅH    HǅX    Hǅ`    I        ǅ,    AH        AHItVH        HI        AՅt$H        H        H        H        LAՅuI        H8H0   AօL  E1
L0   H        LMeA1EtMeI  Hǅp    H        AHt8 u"    @  H        H        dHH        1H        Há        H      @  HH        H߉H        ҋ  H}H        Ѕ  H        HHt7H        :u!A   UuHpH        HpHp tQH        :u.H        A   HUuHpH        H        HHpHpHttMDA   DUD_D)șADD)ؙAE9AEFA9AF1ARAASAAمDIA؅DIHIH        1ZYt'H        H        Hǅp         HhH}H        ЅuTEA$  EA$   EA$$  EA$  HhA$  HpЃA$  ~tzH        H        H             H        AǄ$      AǄ$      AǄ$       AǄ$$      AǄ$      AǄ$      L,H`HXHHH@H        Ѕy          Hk`HPHHHH@H@Ѕ  HpHhH        Ѕ     H        LH        HhL,H`HXHHH@A$(  HpA$,  H        Ѕ=  EH        Ht	AP  AD  H        H        HL`E1L  H@1III1LH        HHL;t`DHxESHxAwCLXIILPLH9wIII9vB) tH    I	LPILEtAE@fAE   fAE AP  AƅH  @fAE  fAE AD  HPH        HD)Ƌ,H@A$<  H`A$   H        A$4  E$8  A$  A$  A$0     A$  HH        H8        H        С        E        E        EE!H0Hu	   HH        1H8H        H0A   He[A\A]A^A_]1PE1H        H        H        H        H        ZH        H8H        G<	w@GÍG<w@GÍW1w@GAWAVIAUIATI        UHoSHAPL9HEsDHCI9v.;%u){H$HAA{AAD	H$EHÈEHL)X[]A\A]A^A_AUIATI        UHHSQAHLH0AԃI        H)Ht?HcMt"Ⱦ   H\$)к    DHH}Hu AHHmZH[]A\A]tH           1H        H:H        tH           H        H8 uH           1H        SHGHӃ8 t0HxH        H        ЅuH            H             H3H        H        1҅tH        H    [t1t*D@DJH ADB GAAF9uHHȍHP FrJ F)AWHAVAUI1ATUH1SHHHtxuH@LcƉS3    1LI        I        Aֺ   H        LI        H,AHAHCAHHHAHAHػ   HHD$AHڃ1H)H|$AHLAԃH)H\$H   Ett   A       HA)Ժ    ADD1AHu 1҈t	HHuEH$McCHcUHHuAHcEL1HHLAHmrH        Mt"A}uHIuIU HHtMmH1H[]A\A]A^A_AUH        IATUHcHSHHHH        Ht$HH        H8H        ЅAu~H|$H        HH        HH        H        H   H        I        HH        IE H        HH        1LAHD[]A\A]H        HH        HcHHH2HHt7H!H)H1ATUH        SHHt<H;Ճ{H{uH        HtLcHH        L[]A\ATI        UHSHHtHH;Aԅt
H[1H[]A\AUIH        ATIUSQH?HHuW    H        HHt>LH        HHuHH        CI$HHCI$Z[H]A\A]AVH        AUI   ATIUSHЅ0  H        H        H        HtwHxH        HHt_    I        AHHtEH        H        HHt'C   HE   HCH]AHHHCuH           H        H        H8H        Ѝ   I$LHt$H         Ѕu6IE H        E I$EH        H|$H0H        H[]A\A]A^AWH        AVAUATUSHH8 H|$u+HH           []A\A]A^A_1H        HIIH        H        H        H   HxH        HH       I        AHI   Ht)U Ht$H        I        BE 1AH|$H        I$I<$ uLH        9AD$   HC   ID$AHID$u I<$H        Lӡ        LcD0Dh1H[]A\A]A^A_AWAVAUI        ATUHSH/   H8HT$AHuH,$fH9tHx/   AHItH9uHE>HǺ
   H        H        ЅtID$I|$/   AHtHH$L4$/   H        LHtD)H<$H        ЉD$D$D$H        H8 u"H           1H          Ht{H        Ht$HH        HIuHH        HD$    /H        L8 tH        
H        HD$D$D$HD$    E1HtHH        IE1H        M     tD$Mw@BD0D$E1   H        Ѕ  HT$(Ht$ |$H        Ѕ  Ll$ 1   H        LI]MtvHH+D$ HD$(Ht$LAED$AEH        8 tH        
H        ЅH        t$LЋ$  LH\$H        M        HH+D$ LD$(LHAE AFAEH        L9LH        t<H        8 u HH           1H        ѡ        B3 J\3H        L$H4$     HH+D$ D$(HHcHAEAEH        HcL$+ H        HT$(H        H        H8[]A\A]A^A_ATUSHtH           H        H8 u"H           1H           IH:H        HH      H        Ѕ   Hk@HT$HH        Ѕ   HH4$HH        H9tJHH        H        8 u!I$H           1H        ѡ         HHT$1H        H        H[]A\AWAVAUATUSH8tH           H        H8 u"H           1H        \  IH:H        HH  I           Ht$(HAHLt$tHH          D$(=   Dt$,H        AIcHkHHIuHH        w  HHHHD$H9uH        L0H1E1bH        LH        8 &  I$H              :  uDiiAEHD9|LH        Hk@E1HI        uHAH        s   H        ЅAuHT$ Ht$H        ЅAtHAD   LHH        HHHt$HD$H9Ht>AH        8 u!I$H           1H        ѡ        8AHHT$ H        H        H          H8[]A\A]A^A_ATH        IUHSH?HHt?@uH{H        tH{H        C    HC    M    H        HHt9LH        HHuHH        HE HCH] H1[]A\AUH        ATUSHH(H8 H|$Ht$T$u"H           1H           H        HIH        HHt^HH        HIž)   H        HPHHEMtHL$H        HHAUHH        H        L1H([]A\A]ÍFvH           H        H8 uH           1H        UHSWu"H} 
   H        Y[]H        HzH        HHu        FtqQ FHHH} 
   HH        ЉHH        ҉Z[]AW1   AVAUATI        UHSH        H   H|$`Ht$Ht$hT$pHHl$`AHxHH$   u          HHH        L$   HAHAD /L$   AHAD H        HD$0HH        HIHD$8}  HI        H        о)   IHAL`H)   H$   LDAMtHL$`H        LLAUHD$xHHHD$(  H        HI  Lx@LHHD$H        u
L  LLHt$H        L9Lt)H        8 r  HT$(H           H|$ u
D$$   <H        H|$H        ӅuH        H|$ӅD$$HD$H$    E1D$    D$     E1E11IHL|$H+|$  AtsMD$@   <HE1E1HH;\$H0  <<t<>uHM  H|$H        HT$(H           1H        X  MtH        H        LHL$PѺ   H        DDT$@LHL$PыT$@ET$T$3EtjH|$ tbELtZtpH FHBLH|$I        AԅD$$   uH        H|$AԅD$$|$@ |$ EH<$HtH        LH        H$ z?t{/u>E1x|$ u]LBH        HT$XH        HL$@L{LLD$PLD$PH        MDHL$@LхHT$XuM7HzHT$@H        H        Ћt$1HT$@DEEt$>z/u	L$ D$ H|$I        A׃|$$ V  H<$ I        I           HI        AHH<$AH|H        HHHH        Ճ$    HtAH        H<AH<H        HAH4$H<H        1ILD$xH        H          H        AHH        HuH            HHH|$xAHAH<$A9H          H        LD$xH        1A11H|$xAH|$xH        H|$8H        H        H|$01HĘ   []A\A]A^A_   AVAUATIUS?.   IH        H   Lպ   I|H        H        Ѕ   I} HLH|H        HHtqIu HI        AHHD H/LH<AAUIuHH        H        8u     HH        []A\A]1A^1AVAUI        ATIUHSHAH  Ls H;AHI|H        A$t7H        HH        ЅuCHsH{ PH        A$t7H        HH        ЅuCHsH{ PH        A$t$H        HH        ЅuC(   A$u8H        HH        ЅuH{ uH{ H        HC[]A\A]1A^H        H8 u H           1H           AUATUSHARutH        HzH        ՅItH{H        HHu1H;LcH        A1tH;AY[HLH        ]A\A]uH;
   1AX[]A\A]H        Y[]A\A]H           1H                Z[]A\A]AWH        AVAUATUSH(HH     H        H} H        Ѕ}  HE .   I        I        L`LAHHHE1HH        tpHLL)HHI(  HHL$LHH        IHcD$LLAD H        HLp.   AHHHHL$LI        AITHpLHL$H$HHH$   HL$LHI        AHcD$HL H        HIH        H}AHxH        HHt2LuLAHuIHL$HAԋD$I]AEHm0J        H([]A\A]A^A_H        8 u,PH        H8H        H            ZH            H        8 t,PH        H8H        H             ZH             SH        H        H;H        H        H    H             H        H;     H        H        H    H     H        H     H        1[AW   AVAH        AUATUSH(E  IH        վ   I<$H        HH   HM$   HT$HH        ЅAtHH        D)  L$LD$1H        H          H        I        AAL$LD$AH        HH        u          H$|$HT$Ht$I        )H        H        ЅAu2HT$H+$I           I4$HH        ЅAtHAD1  HI4$H        %H߅        u'AH           1H           Aտ   H        Ѕu&I\$AFH        II        L4TՉ   H;AHTH        H9s6H;HAHsHHH        H{AHE  HL9uL9tE 1H        H        H        H        H            1H([]A\A]A^A_AW   AVAH        AUATUSH(E  IH        1I<$H        HH   HM$   HT$Ht$H        ЅAtHH        D  DL$DD$1H        H        q  H        I        AH        HH        u          D$|$H        Ht$I        )H        H
HT$ЅAu5D$HT$I           I4$HH)H        ЅAtHAD,  HI4$H        Ѕ        Hu'AH           1H           Aտ   H        Ѕu&I\$AFH        II        L4TՉ   H;AHTH        H9s6H;HAHsHHH        H{AHE  HL9uL9tE 1H        H        H        H        H             1H([]A\A]A^A_UHH        SRЅ  H        E1H        1H        H        E1H        1H        H        H        E1H        1H        H        H        E1H        1H        H        H        E1H        H        H        H        H        E1H        1H        H        H        I        H        I        11H        H        H        E1H        1H        H        H        H        H        HH        X[]SH        Ѕ   H        H        H8H        H8H        H8H        H8H        H8H        H8H        H8H        H        H8[H        [                    m                                                                      premature end of file %s hibernate header has incorrect magic number encrypted images aren't supported yet hibernate image is empty entry point 0x%x
 xnu loader/xnu_resume.c image at 0x%x
 filename expected efi device-properties model ACPI compatible firmware-revision firmware-vendor firmware-abi EFI64 platform FSBFrequency fsb GenuineIntel fsb autodetected as %llu
 xnu loader/i386/xnu.c configuration-table %08x-%04x-%04x-%02x%02x- %02x guid table runtime-services eip=%x, efi=%p
 debug all Press any key to launch xnu gfxpayload auto %s;auto Booting in blind mode alias Load `device-properties' dump. xnu_devprop_load ACPI_20 filename expected you need to load the kernel first stretch name val=%p
 xnu loader/xnu.c chosen memory-map DeviceTree / %s%d /Contents/ premature end of file %s Driver- RAMDisk no suitable architecture is found DriversPackage- directory name required console,root,local-root,network-root all - OSBundleRequired can't parse %s key /key /MacOS/ %s:%s
 %s:0
 CFBundleExecutable string .kext Contents Plugins MacOS Info.plist XNU.DeviceTree. endcode = %lx, startcode = %lx
 couldn't find entry point Load XNU image. xnu_kernel Load 64-bit XNU image. xnu_kernel64 Load XNU extension package. xnu_mkext Load XNU extension. xnu_kext Load XNU extension directory. DIRECTORY [OSBundleRequired] xnu_kextdir Load XNU ramdisk. It will be available in OS as md0. xnu_ramdisk Load a splash image for XNU. xnu_splash Load an image of hibernated XNU. xnu_resume mode Background image mode. stretch|normal                qh" <        0-- '?M        LICENSE=GPLv3+  macho bitmap_scale extcmd boot video bitmap relocator xnu                                                                                                                            	                      E                 tG                                        
                                                             )     %3            E                      c                      t                                                                                                                                        	                   	 4                 	              !                     .   	 8              D                     [                     q   	                                                                                                                                 C                                                #    2%      8       5    o             G   	              \                     n                     z                                                                   #                                                          	 (                              =    $      7       Q                     _                     m                         Y1                                      $                                                          $      W                                                                      "                     .   	               >    %      l      X                     j    3      <       |                         <                                                                                                	                 %          ^       :                     [                     l    @       O      |                                              j%                                                                                                                         	                  '?      L                            ,                     >   	                Q                     c                     s                         0                                                                                                     ^      L           >      L                                                 9                     C                     X                     f                     |   	 0                 	                                             -                                                                                                                #                     0                     P                     l                               m        grub_mod_init grub_mod_fini grub_strlen grub_xnu_load_kext_from_dir grub_efi_finish_boot_services grub_macho_close grub_macho_load64 grub_puts_ grub_macho_get_entry_point64 grub_efi_system_table grub_env_update_get_sorted grub_strcpy grub_xnu_cmdline grub_xnu_is_64bit grub_xnu_relocator grub_strrchr grub_xnu_devtree_root grub_video_bitmap_load grub_relocator32_boot grub_xnu_arg1 grub_xasprintf grub_realloc get_virtual_current_address grub_video_set_mode grub_video_blit_bitmap grub_xnu_devprop_add_property_utf8 grub_memmove grub_device_open grub_xnu_find_key grub_cpu_xnu_fini grub_xnu_bitmap_mode grub_macho_size32 grub_strdup grub_divmod64 grub_file_get_device_name grub_relocator_alloc_chunk_align grub_xnu_heap_malloc grub_macho_filesize32 grub_macho_open grub_xnu_heap_target_start grub_xnu_devprop_add_property_utf16 grub_xnu_align_heap grub_tsc_rate grub_snprintf grub_macho_filesize64 grub_xnu_scan_dir_for_kexts grub_unregister_extcmd grub_xnu_boot grub_dl_ref grub_file_seek grub_xnu_free_devtree grub_relocator_unload grub_errno grub_memset grub_getkey grub_xnu_bitmap grub_xnu_writetree_toheap grub_macho_load32 grub_cpu_xnu_init grub_register_command_prio grub_xnu_fill_devicetree grub_macho_get_entry_point32 grub_efi_secure_boot grub_unregister_command grub_file_read grub_xnu_devprop_add_device grub_xnu_boot_resume grub_efi_set_virtual_address_map grub_print_error grub_xnu_resume grub_zalloc grub_strcmp grub_xnu_create_key grub_strchr grub_malloc grub_efi_get_memory_map grub_file_close grub_file_open grub_xnu_stack grub_xnu_unlock grub_macho_readfile64 grub_real_dprintf grub_xnu_heap_size grub_device_close grub_macho_file grub_fs_probe grub_xnu_create_value grub_relocator_new grub_file_filters_enabled grub_strword grub_error grub_xnu_devprop_remove_property grub_xnu_lock grub_list_remove grub_video_get_info_and_fini grub_free grub_named_list_find grub_dl_unref grub_macho_readfile32 grub_xnu_darwin_version grub_xnu_entry_point grub_video_get_info grub_cpu_xnu_unload grub_register_extcmd grub_list_push grub_macho_size64 grub_memcmp grub_loader_set grub_env_get grub_video_bitmap_create_scaled get_physical_target_address grub_relocator_alloc_chunk_addr grub_xnu_devprop_remove_device                                     h           !                     2          X           C          a          g          a          x          a                    V                     I                     U                                           E                c           @            k       {                             h                    `                                        x           
                             U           E                    \         ,                    w                    :                    I                    =           .                    ?         c           p         Z                                                          0                                       [                    W                    m                                                                      /                   G                    Q         K           [         t           g         e           t         =                    #                    S                    h                    =           /                  ;         q           a         i                    h                    f                    f                    h                    h                    O           A         S           \         h           v                           q                                       )                                        S                    h                    h                    =                                      h                    S           <	                  k	         h           v	         =           
                  
         h           
                   
         c           
         V           &         S           0         U           S         I           l         =                    J                    1           V         h           {         h                                       y                    W                    m                                                                       '                   1                    G         Q           Z         l                                                          _                    =                    S           =                   g                                                               h                    h                    h           1         h           d         h           {                            _                                                                              )                                                                                        !                    ;                   i         S                                                                                                S           $                    >                  ~            *                                    0                  9               _                    =                       F               u                       J               s                    3           d         *           x            W                  q                  u               Z                                                 '         4           4                    W                                             4           '                  1         _           ]         S           ~                                                        	         s           )                   E            9      O         _           k                    x                             S                                                        _           	         S                    =           *                    H         E           a         2           u                                                  q               m                       u               Z                    u                                               #         b           4                  >                    J         ?           X            q      l         -                    >                                                                    !                  -                    ;         =           [                     p         h                    n                    @                    '                    v                    '                    @           $         v           2         @                    !                    M                    =                    g           d         M           p         =           z            #                                   T                    =           b         A           {                                                                                       0                    [           U                             [           N         0                    W                                        L                    m                                        W                               	                    ;            ?      E            
      O            ^      Y         D           e                   q                   ~         H                             B                     h             9                    w                c                     N                        w      	!         [           !                  *!         c           G!                  Q!         P           a!         '           s!         '           !         @           !                    !         @           Y"         >           c"         #           u"                  "                    ~#            "      #         [           #         0           #                    $         x           $                    .$         [           ;$         0           E$                  T$                  ^$         Z           k$                  y$         [           $         [           $         0           $         [           $         h           %         ;           %         h           6%         P           q%         %           %         O           %         )           %         h           %         2           &                  )&                    3&         Q           H&                  a&         S           v&                  &         )           &         =           &                  &                    &            9       '         -           '                  1'                    C'            "      `'         [           '                  '         c           '                  '                    '         Q           '                  '         S           %(                  /(                    K(         )           e(         h           (         h           (         =           (                    5)                  ?)         s           x)         R           )                    )         [           )                  )         c           )                    )         ]           *         U           )*                    ;*         5           G*         .           v*         V           *         =           *         2           *         -           *         >           7+                    F+         Y           R+         k           b+                    +         =           +         I           +         U           +         =           +                   ,         c           ,         =           *,         =           c,         #           x,                   ,                  ,            \'      ,            w      ,         [           ,                  ,         c           -         V           -         2           >-         -           ^-         I           r-         U           ~-         =           -                   -         c           -         =           -            !      -            \'      -            w      .         [           .                  &.         c           =.         V           U.         I           }.         U           .         S           .         U           .                    /         h           /         =           ./                   r/         h           /         U           /            )      /         2           /         -           /         :            0         =           30                   D0         c           O0         =           f0                   p0            K      z0            \'      0         %           0         ;           0         h           1         O           1         )           51         h           ]1         [           1                  1         c           1         +           1         $           1         ^           1         R           	2            9       2         \           ,2         h           P2            [      a2         [           q2                  2         c           2            s      2         6           2         )           2         =           3         6           3         h           63                    E3         S           3         =           3                    3         +           3         $           4         R           4         ^           Q4            :      {4         V           4         U           4         I           4         =           4                   5                  %5         b           55                  5         h           5                  5         c           6         P           6                  26                  6         b           6                  6         h           7         )           B7         P           Q7                  u7                  7                  7         P           7         h           8         Z           8            (      ,8                    H8         S           ]8                    y8                  8                  8                    8                  8                  8                  8         V           8         =           '9                  69                  E9                  e9         h           v9         \           9         h           9                    9                  9         s           :         S           8:                    r:                    ~:         =           :         h           :                    :                    :                  
;            !      (;                    ;;                  H;            !      f;         6           y;                  ;            !      ;                  ;            !      ;         )           ;         [           ;                  <         c           '<         P           5<                  L<         V           k<                  <            (      <                    <            w      <         c           <         =           <                    =                  +=         s           H=         R           R=                    w=                    =                  =         Q           =                    :>                  V>         _           h>         h           >         S           >         =           >                   >                   >         9           ?                   ?                   )?                   9?                   F?         j           R?                   d?                   v?                    ?         o           ?         ;           ?                   ?                    ?                   ?         <           ?         0           ?         [           @         X            @            w      @@            s?      U@         /           @         r           @                    @            .      @                  @                  @         Z           @         `           A                    A         =           :A                    FA         0           PA         -           lA         l           A                    A                    A         m           A            N      A         c           A         2           B                    $B                    HB                   kB         #           B            s?      B         8           B         t           B         e           B                    B            w      C            s?      #C         /           QC         (           gC                    C            .      C                  C                  C         Z           C         `           C                    C         =           C         0           C                    D         -           +D         l           DD         B           nD         F           {D         m           D            N      D         c           D         2           D                    D                    E                   (E         #           UE            s?      _E         8           iE         t           uE         e           E                    E         G           E         D           E            h      E            B      E            x      E                  E            @      F                  F            p       F                  )F            -      3F                  =F            x       LF                  XF            ;      bF                  lF            h       {F                  F                  F            F2      F            %      F            `       F            1      F            ,      F            f      F            X       F                    F            P       F            r       G                   
G                  G         p           #G                  /G                   9G                  CG            @       OG            H       YG         C           hG                   wG         G           G         H           G            H       G            h       G            `       G            X       G            P       G            p       G            @       G         7           H            x       H         &                                                                                  o      (                     .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                           @       $H                                   @               `c      P=                          +                     pH      P                              &      @                     H                           3      2               H                                  G                     N      0                              B      @                     0                           M                     N                                    ]                      O                                   b                       O      6                              k                      6O                                                          @O      p                          	                      Z                                                         (      t                                                                                                                                                                                              boot/grub/x86_64-efi/png.mod                                                                        0000600 0001750 0001750 00000023670 13417732100 0014422 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    8$          @     @   1119G~(HwH4DDDHwAA)DHAWAVAUATUSHAPO,yH           u:@v(H        Y[]A\A]A^A_   1H        @  H  HPH  @0Hc{<  W  9  HHHH     tH        HHu
m  H1  t20  K$1HcHt  HH{H51<;{<   @| @ <H9S<   @4@ t HAA)D;C$}H H1A<;{<   D| D@ <HAA)D;S$}H H1ED;C<}nDD$Dl EEE)EEE)AG4E1E)EAE1E)EAE1E)D<E9E9~
E9EOEED,HHH        ǃ      ǃ              Z[]A\A]A^A_DOD9HcE11HH           1H        D9tILWCI19LDO}A)McGTGA)McC4HGGDH   H        D$    Ht$ЋD$HATUSHHP twT uqH        H;H;CH9GtH        H;A=TADIt!H           1H        1CHEH@ADCtDcTD$    Ht$H;H        Ѓ{P tKTD$H[]A\AVAUATUS HuH        C   CE1E1I        A> uUC{   9ŉNՈD!A)u)C{!AHH        C   C[]DA\A]A^AV1I        AUATIUHS19]~8D,    LAHMH    DH;}HMHU H1[]A\A]A^AVLP	  AUATUSHH        8 L  LHH        =   <Hc  H߈	  H        Ћ  P1  N  =      -  H        HD$H        4@tHH        AHp	  HH        HD,H        4@tHH        Aŋ  D)I           HEHcH	  Hc  @	  AՋ  P1  OŁ     MA[]A\A]        A^AWH        AVAUATUSH  H|$ H1HHD$    H        HIA  HD$HL$    Ht$EIE HIMH        H  H           H|$EH        ЅH          I} H        I} I} =DNEIHWTAU  w=TADI  -  =RDHIt=ETLP'    I} AEՅAE tA} uH        <LI        A1LAE(At't'H           1H        
  uAE8   A}( tA}8 uÈAu8Ƀut
AE$   AE0   AE$   t$tuA}0 uuH        otAE$AU AuH        I}Ѕ
  AE(tAe$A]@AUAM$~	AU<ڃA]<uA}0 uA}8 t-A}<H        A} H        IEH: t	  IEIEH    H H@PI  AE<LAǅ      Aǅ     H        AE AE,AԄH        tLӄH        ]LӄH           A	  1ҹ     I   MI        H$EE)A9rI        &L;4$tE1LAC>P  IIuIA9sLAAI} ~  A]TLI        AEP   AE    AԈLAԀH        u   H           1H        c  IEXI  IP	  Aǅh	      Aǅl	     @   IP	  I  IX	  1I        E1I`	  AH        DAH$   HH        A   H$uDAǺ	   HA   uDAǺ   HA  uDAǺ   HA   uHI        Ip	  AIX  I  Aǅ	      Aǅ	     @   1Ip	  I  Ix	  I	  AE1DAƺ   HAuHALH        Ѓ|$,   H        8      LH        Ӿ   D$,LӃMtc~  LAE    I        ALAԉL1ALAf9kLALH        ۾   L     LAƉ$   LAǉD$0ӃA   D$A~"H           1H        H$   D$x    D$|       1H$   HD$`H$   H        E1HD$hH$   HD$pH        D;t$D}#F<1HL$   LIHL$BD<MH        tHc
DM 1TMtH|$`H        HHuH|$`H        0IP	  I  @   1Aǅh	      Aǅl	     HD$IEXIX	  IP	  I  I`	  Ip	  I  Aǅ	      Aǅ	     @   1HD$IX  Ix	  Ip	  I  I	  1$D$09   H        8 !;$|AL|$D+4$L|$AHt$`LH        Ѓ)   D$4DLH        ыD$4   H        uM   L҃1ɉD$4T$4A4)ʅ~$tHL$8LH        HL$8HˍX#u   Lҍ\   Lҍ\
ÉH|$H        H|$H        I} H        I} AEP      IEHH  IUAM@HHZPAU(HcHŃ   A   AAA}0 t.H$   1u<i   1HAFFFIP  0   H$   H        1A   A;U B  DA+M@HH1EMD9sIDAE!EOIMER  DXEQ  DXEP  DA+M@yHǃHIcE<EkHLA}8 HtVAU AU)9  HHHRAR  SPHRAQ  SPHRAP  SA}0 u1   AE$tLtK  H   1AE AE90  EHHCECECEC˅t11AE AE9   EHHCECECAE AE9   EHHCECECECAU AU)9   HHSPSPSAE AEAE$9v_DU HHGHtH        H        8 u/IU AEH9BXH           1H        I}HH        LH        8 tH\$ H        H;H    H|$H        С        H  []A\A]A^A_H        H        H        H                 PNG

            		

                    	            !   1   A   a                                0  @  `                   cc                   	   
                           #   +   3   ;   C   S   c   s                              	
image size overflown invalid filter value png: invalid code length png: chunk size error png: unexpected end of data png: not a png file png: invalid image size png: color type not supported png: bit depth must be 8 or 16 png: compression method not supported png: filter method not supported png: interlace method not supported png: only support deflate compression method png: dictionary not supported png: too much data png: unknown block type .png                                  LICENSE=GPLv3+ bufio bitmap png                                                                                                                      [                  q                                                              	                      
                                       ?                      L                      e                      t                                                                                                                                                                                                                                                 '                      grub_mod_init grub_mod_fini grub_video_bitmap_reader_register grub_memmove grub_video_bitmap_create grub_file_seek grub_video_bitmap_destroy grub_errno grub_memset grub_file_read grub_zalloc grub_malloc grub_file_close grub_buffile_open grub_error grub_video_bitmap_reader_unregister grub_free grub_memcmp      J                     e                                                              J                    i                                *                           
                    E                  `            C       }            Y                                                           ,                          f            ,                                                              C            4       {                                                                    0                                                        4       g                    v                                                                                                                u       1                                                 ,                                             n                                                                               N	            ,      h	                   	                  	            %      	            ,      	            ,      =
            ,      h
            I      |
            v      
                    
                    
            }                  }      |                                                          .                  i            ,                  4                                             \                    }            P                  P                  }                                                                             }      8                  v            }                                                                                                                                      C                                                                                       6                    A                    ]                    g                    s                    }                                                     r       .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                          @                                               &                           c                             .      2               3                                  B                                                          =      @               #      0                           H                                                         X                     '                                     ]                      '                                    f                      4                                                          8                                	                            3                                                   #      o                                                                                                      boot/grub/x86_64-efi/tftp.mod                                                                       0000600 0001750 0001750 00000022100 13417732100 0014576 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                               @     @   UHSHH(  HD$ HH$H$   HD$H        о   HH        о   HH        Ѕu0HD$Hf  fPH        H(  ЅuH]H(  []HWHGPHRHz01w&zH uBL    HpH9psHH        1S   HH        HH        H             [UH        SHQH;Ht H8H        H;H        H;H        Z[]SH   H_PH(      HD$ HH$H$   HD$H        о   HH        о   HH        ЅtH        IH|$   H        H        f fG  HH(  HH        ЅuH(  H        H0  H        HH        H   1[UHAWAVAUIATSHh  HGH8  H@DxH        HH  HHHHEHH        о  HH        о  HH        ЅA  HLpf  HHPLJt/u:/tHHI        L  ALHxAITH        I        HHAH        AH        HAHH        HTHHAH        AH        HAHH        HTHHAH        AH        HAHH        HTHHAH        AH        HAHH        H|AH        AH        IAHLxHHADAH        McLL)ЅAtHH        2  AEH   I]PH           H        HH0  uHH        С          IEH        H          H        I        H@L 1AIEHH@H8H        ЅA   AH        H          H        1ADKLH        H          H        1AH0  H        HH        D  1H        H          H        AEA׸E   EH    HHLH        H        H HH(  u+H        H          H        A  LL{ A  LH(  HH        ЅtFH(  H        H0  H        HH        ҋ   LDH        Ѓ{  t-Hs(   H        H        ЋC$        5AA  ?HH           1H        H        8 t+H(  H        H0  H        'HIE@1He[A\A]A^A_]HHH@HRf@fR)¸   f AWHAVAUATIUSHHZPHnHVHt$H)HH        H           <  E f  ftf     C   C    I        HnHH|$H;o      H        HAԅuH}11H        H   H        HH        ЅuH}11H        ЉCHD$HPH9HEs}  tHHcH        HC    1HH        H{$H        1  H4H        H           H        1I        AH0  Ht$H        ЅP  I        H0  AHtH(CLmfAuffx`I        fAESft~LC    H        Hu   1H        H        HH        HH        H0  H        >H0  AID$H@Hx01w HCHHpH        ЅtJ  @L      HH        Ѕ'  L}HCL+}D;{HpHssSH9ssHH        ID$H@@H   ID$H@@L   H        H(  Hǃ(      CA9wHEH+EH"   DH)H        Ѕt   ID$    LxH        IW H$HEH$HhH     H@    HPI  tIW(HIG(H@IG(IG IG0HH        H[]A\A]A^A_H        H        H        H        H        tsize  blksize  closed octet blksize 1024 tsize 0 resolving address for %s
 tftp net/tftp.c Address resolution failed: %d
 file_size is %llu, block_size is %llu
 opening connection
 connection failed
 time out opening `%s' TFTP packet too small
                                                                      LICENSE=GPLv3+ net priority_queue tftp                                                                                                                                                                                                        	                      
                                       )                      ;                      G                      _                      k                      ~                                                                                                                                                                                                    3                     D                     P                     \                     n                                                                                                                                                                                                                                       1                     F                      grub_mod_init grub_mod_fini grub_strlen grub_netbuff_free grub_errmsg grub_priority_queue_pop grub_strcpy grub_netbuff_unput grub_netbuff_clear grub_priority_queue_push grub_memmove grub_net_app_level_list grub_net_udp_open grub_errno grub_priority_queue_destroy grub_netbuff_push grub_net_send_udp_packet grub_print_error grub_zalloc grub_malloc grub_netbuff_pull grub_real_dprintf grub_priority_queue_new grub_error grub_list_remove grub_free grub_net_resolve_address grub_net_poll_cards grub_list_push grub_net_udp_close grub_memcmp grub_priority_queue_top grub_netbuff_reserve grub_strtoul      *                     >          )           R                     w                                                                                                                  (           .                    =                    N                                                 )                                                                                                               &         &           9                  H         "                                                            )                               F                    k                   u                                                                                                                                                         !                   <                   X                   e                                                                                                            "           %            ;      4                    O         "           Z                    m            "       w            <                   A                                    #                       L                   <                   A                   k                   <                   A       0                  ?         "           U                   _            <       n            A                   m                                                         <                   A                           8         &           K                  Z         "           w         $                                                                                                                                            &                                                            <                '           	                    /	         *           C	                   P	         '           h	         *           	                    	                    	                   	                   	            <       	            A       
                    
                    2
         (           e
                    
                    
                     
                    
                    
                    
                    #                    G                    ~                             &                                                   q                                                                     %                                        !                        <                     ]      0             [      8                     .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                          @                     (                          &                                                         .      2                                                  B                            @                              =      @                     `                           H                     @                                    X                     O                                     ]                      O                                    f                      b                                                          h                                	                      p      S                                                   P       o                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/priority_queue.mod                                                             0000600 0001750 0001750 00000004230 13417732100 0016712 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @ 
 	 HHG HHHH1H9t@<DD@<HH tHG 1UHSH        PH ZHH[]AUIATI        UHH<    SQAHHt;(   AHuHH        H(H@   H@    LhHX 1Z[]A\A]AUATUHSHQHwH;wu2H7H        H HHu           HcHC H{HHI        HGHH{ HCH        HCL`Mt'Il$H;HC HHHIHHS1LHHIAZ[]A\A]AV1AUATE1UH        ISHGHHPHKO,$ImH;k   H;LHC MmHHHHS~)L;ksJH;LHC HHHHSIN'L;ks5H;LHC HIHHSLHHIAg[]A\A]A^LICENSE=GPLv3+ priority_queue                                                                                                                                                                              2                      ?                      L                      W     A       !       s                           b       o                                  2               grub_priority_queue_pop grub_priority_queue_push grub_realloc grub_memmove grub_errno grub_priority_queue_destroy grub_malloc grub_priority_queue_new grub_free grub_priority_queue_top        H                     k                                                                        
           &                    @         	                                .symtab .strtab .shstrtab .rela.text .data .module_license .bss .modname                                                                                             @       h                                   @                                                &                                                          ,                                                         <                                                          A                                                                                                                	                      H                                                                J                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/xnu_uuid.mod                                                                   0000600 0001750 0001750 00000006310 13417732100 0015466 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    	          @     @   UHAVAUAATSH0"H           1H          E1It'H        H:H        Ѕu
AIA1   I<$H        HHEH        H8H        Há        H_  HH        к   H        HH        к   HuHH        HH        HH        IPH        A@A%   H}I        PA@PA@PA@PA@PA@
PA@	PA@?PA@PA@0PA@PA@PA@PEH1E@AHpEt#Au=HuH        1H        4HUtҍpHFHBI|$HuH        H        H1He[A\A]A^]H        PE1H        H        H        H        H        ZH        H8H        UUID required -l %02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x %s
 Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. [-l] GRUBUUID [VARNAME] xnu_uuid  9֗ 0eCLICENSE=GPLv3+  gcry_md5 xnu_uuid                                                                                                                            "      D            f                                                                                                     +                      A                      O                      Z                      u                                                                                                                                                           grub_mod_init grub_mod_fini grub_strtoull _gcry_digest_spec_md5 grub_snprintf grub_errno grub_register_command_prio grub_printf grub_unregister_command grub_zalloc grub_strcmp grub_error grub_free grub_env_set                           )                     E                    R                     w          
                        H                                                              (                                         0                    0                    8                   @                          ;                                V                                                                   $                   2            Z       <                    F                   P                    \                    h                    u                     .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                             @                                          @                           	                    &      2                                                  5                                                         ;                                                         K                                                         P                            	                              Y                            	                                                                
   
                 	                                                                                `	      b                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/probe.mod                                                                      0000600 0001750 0001750 00000010150 13417732100 0014732 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   ATUSHH_H          L"HH        LH} H        ?(u$MdA<$)uA$ H} HA$)HHHt}{ t/HEHt
H@Hp
H        HE Ht5H@H0,{  t+HE HtH@(Ht
H@0Hp
H        ; 2HH        HIu        M  {0 t;; HptH{H           H        1H           {@ t6H@@HtHt$HЅ   Ht$HubIT$H        >{P    H@8HtHt$HЅ   Ht$Hu"IT$H           H        ; tH{H        H        1H        H|$H        HH        1,HH        H           1H        H[]A\1PI        I        H        H        H        H        H        ZH        H8H                    s                                      d                                       p                                       f                                       u                                       l                                                                       none device name required %s %s does not support UUIDs filesystem `%s' does not support labels unrecognised target Retrieve device info. DEVICE probe set Set a variable to return value. VARNAME driver Determine driver. partmap Determine partition map type. fs Determine filesystem type. fs-uuid Determine filesystem UUID. label Determine filesystem label.     LICENSE=GPLv3+  extcmd probe                                                                                                                         V      M                                                                          	                      
                                       )                      :                      Q                      \                      h                      z                                                                                                               grub_mod_init grub_mod_fini grub_strlen grub_device_open grub_unregister_extcmd grub_errno grub_printf grub_device_close grub_fs_probe grub_error grub_free grub_register_extcmd grub_env_set                      '                     :                                                                                                                             &                   2                    s                               7                                                                                                                              &                    2            _       C                    [                    e            s       o                   y                                                                                                                                                                                    (                    8                    P                    `                    x                                                                      '                   B                   H       .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                        @                                          @               p                                +                                                         &      @               @      8                          3      2                     d                            B                     |                                     H                                                         X                                                         ]                                                          f                                                                                                                	                                                                                x      o                                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/xnu_uuid_test.mod                                                              0000600 0001750 0001750 00000006320 13417732100 0016526 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    P	          @     @   UH        H        HSH        H(H8H        HH        H}ع   u$VH        I        I        'PAHUؾ   HP tOH        I        I        P        ,   PH        1H        1XZ   H        H        Hu1I        I        3   H        H        1PHH        H        1I        @I        7   H        H        1H]H        H        H        H        H                                xnu_uuid_test xnu_uuid can't find command `%s' 0 tests/xnu_uuid_test.c %d: %s tstvar tstvar isn't set 944F9DED-DBED-391C-9402-77C8CEE04173 UUIDs don't match grub_strcmp (val, "944F9DED-DBED-391C-9402-77C8CEE04173") == 0 fedcba98 xnu_uuid_test      LICENSE=GPLv3+ functional_test xnu_uuid_test                                                                                                   z                                                                                                       	                      
                                       )                      ;                      F                      R                      e                      z                                                                   grub_mod_init grub_mod_fini grub_errmsg grub_command_list grub_errno grub_strcmp grub_test_register grub_test_unregister grub_named_list_find grub_env_get grub_test_assert_helper                                                                    ,                     ;                     S                     ]             	       g             !                                         9                    !                                                             #                    @                                         G                    !                                      #       '            X       1                    A            }       O                   ^                   h            #       |                                                                                                                                    @        .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                        @                                          @                                               +                           &                              &      @                     0                           3      2                                                  B                                                          H                                                          X                                                          ]                                                          f                                                                                0                                	                                                                                      o                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/procfs.mod                                                                     0000600 0001750 0001750 00000006530 13417732100 0015126 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    X
          @     @   ø   ø   PH        HP1ZSHHHwPHwHH        H[ÅHuH        1AVAUIATIUHSH} /uHH        HI        Ht>HsHAօu+H|$SHID$Pu        3HD$ID$@1%HLH           1H        H[]A\A]A^SH        HH        Ѕt[H           1H        HC    HC     1HC@    [AUIH        ATIUHպ   SH1HHIE H        H8H        ЅtH        	   1H        :</uHt1'H        HHtH{LHՅuHH[]A\A]H        PH        ZH        H        H        H        PH        ZH        H        proc file `%s' not found not a procfs disk not a procfs procfs                                                                                                                                                LICENSE=GPLv3+  procfs                                                                                                       8            C      .                                                                                             1                      >                      U                      `                      l                      y                                                                                                                                     grub_mod_init grub_mod_fini grub_procfs_entries grub_memmove grub_disk_dev_register grub_errno grub_memset grub_fs_list grub_strcmp grub_error grub_list_remove grub_free grub_disk_dev_unregister grub_list_push                           6          
           N                     }          	                                                                                                                                      #                   4                    a                                                                        +                                    	                       P                           %                    /                    9                    E            P       P                    ]                    g                                 8                    Z                    [       (             "       0                    P                     `             E       h                   p                     x                                         .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .modname                                                                                         @       q                                   @               h            	                    &      2                     ?                             :                                                         5      @                           	                    @                                                         P                                                         U                                                                                            
   	                 	                                                                                	      ^                                                                                                                                                                                                      boot/grub/x86_64-efi/tga.mod                                                                        0000600 0001750 0001750 00000014440 13417732100 0014404 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   USHH u-HcWHw$H        H0  HcSH9       uUH0     Ht$H        Hu]T$C StHcSHs$H0  HcSH9u*{  u/HcSHs$H0  H        HcSH9t        K1H[]AW@  H        AVAUATUHSH1HH  H1HH        HH$0  f  HǺ   HI        AHH$0  0  4$I        H        HwA<$ tH$0  H        A$  H        1H        H        F  H        D$1H        H        G  H        EDD$1H        H        H  H        EDD$1H        H        I  H        EDD$1H        H        J  H        EDD$1H        H        K  H        EDD$1H        H        L  H        EDD$1H        H        M  H        EDD$
1H        H        N  H        EDD$1H        H        O  H        EDD$1H        H        P  H        EDD$1H        H        Q  H        EDD$H        H        R  1H        Et$T$L$$8  $<  r vA<wD$   2D$    (H$0  H        T$H          D$@@
@|$     H             <d     HH        A<$   HE E1I        H$(  $<  A9T  D$ H$(  HHPtDXE1H3D)HAׅ  D$$HAƈCD$$CD$$CD;$8  rA<  H     H#$H       H9  H   H        A<$ H$0    HE    Lt$(LH$(  D$H@H=   HFHAH9u	1Ht$*E1I        LH9sJ0H0H@9DD@:D$ H$(  HHPt+DXE1HD;$8  rAŋ$<  A9r  D)HAׅ  D$$HAH@D(CD$$H@D)CD$$H@D*C<t<    [     HH        A<$   HE E1I        H$(  $<  A9K  D$ H$(  HHPtDXE1H3D)HAׅ  D$&HAƈCD$%CD$$CD;$8  rA댹   HH        A<$    HE E1I        H$(  $<  A9   D$ H$(  HHPtDXE1H6D)HAׅujD$&HAƈCD$%CD$$CD$'CD;$8  rAH$0  H        T$H           1H        <A<$ tH} H        HE     H$0  H        С        HH  []A\A]A^A_H        H        H        H        tga: header
 tga video/readers/tga.c data.hdr.id_length = %d (0x%04x)
 data.hdr.color_map_type = %d (0x%04x)
 data.hdr.image_type = %d (0x%04x)
 data.hdr.color_map_first_index = %d (0x%04x)
 data.hdr.color_map_length = %d (0x%04x)
 data.hdr.color_map_bpp = %d (0x%04x)
 data.hdr.image_x_origin = %d (0x%04x)
 data.hdr.image_y_origin = %d (0x%04x)
 data.hdr.image_width = %d (0x%04x)
 data.hdr.image_height = %d (0x%04x)
 data.hdr.image_bpp = %d (0x%04x)
 data.hdr.image_descriptor = %d (0x%04x)
 unsupported bitmap format (unknown encoding %d) unsupported bitmap format (bpp=%d) .tga                             LICENSE=GPLv3+ bufio bitmap tga                                                                                                                                                                                                      	                                       ?                      X                      g                                                                                                                                                                                                       grub_mod_init grub_mod_fini grub_video_bitmap_reader_register grub_video_bitmap_create grub_file_seek grub_video_bitmap_destroy grub_errno grub_memset grub_file_read grub_file_close grub_real_dprintf grub_buffile_open grub_error grub_video_bitmap_reader_unregister                            U                                                                                                        4                    W                    a                                                                                                                                  %                                                         G                                             -            n       7                   F                   ]                   g                   v                                                                                                                                                                                                         5      '                   6                   M            \      W                   f                   }                                                                                                                                                                        N                    _                                                                                                                                          }                                        ,                    =                   N                    g                                                                                         
                                                                 C                           .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                        @                                          @                           
                    &      2               	      H                            :                     `                                    5      @               H      0       
                    @                     x                                    P                                                          U                                                          ^                                                                                               
                 	                            
                                                   x      g                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/progress.mod                                                                   0000600 0001750 0001750 00000005550 13417732100 0015477 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    h          @     @   AWH        AVAUATUSHHHQ 8 Q      H        IH        H{ LH+H   vH;{u
H;{@  LH+s(E1H	vH+{01H        Hi IHs@Ad   HtHk{ d1H        ILL$/   H;H        H        I        HPHH{ I        HELHS81I        HHS8AHH        ILL$H        P   H        1AH        AHH{8   HD$AH|$H        HH        1H)AHAHD$H        H(I        H      B   E|9wHK@H9K uftbHU@HAAU8p+t$AAHD	UHHH        AAHD	UHHEhǅ       HtHHm hHC Lc(HC0LH        H             H[]A\A]A^A_H        H        H        H            [ %.20s  %s  %llu%%   %s ]      LICENSE=GPLv3+          normal progress                                                                                                                                                                                                                                             )                      A                      T                      a                      u                                                                                         grub_mod_init grub_mod_fini grub_strlen grub_file_progress_hook grub_puts_terminal grub_strrchr grub_get_human_size grub_divmod64 grub_snprintf grub_term_outputs grub_get_time_ms                  X       2                     A             P                                                                                                                          
                               %                    7                   F                    U                    {            P                                                                                      c            P       m            X                                                                    .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                             @                                          @                     @      	                    &      2                     "                             5                                                          ;                                                         K                     0      \                              P                      0                                    Y                      7      	                                                    @            
   
                 	                                                                                       b                                                                                                                                                                                      boot/grub/x86_64-efi/time.mod                                                                       0000600 0001750 0001750 00000004460 13417732100 0014570 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    p          @     @  
 AVAUATAUSu%[]A\A]A^H           1H        H        HH8H2H        HHu(HH           []A\A]A^1H        I        AIHSAt$HU Aչ  D)1H        H        1[]A\A]        A^H        PE1H        H        H        H        H        ZH        H8H        no command is specified can't find command `%s' Elapsed time: %d.%03d seconds 
 Measure time used by COMMAND COMMAND [ARGS] time      LICENSE=GPLv3+  time                                                                                                          D            !                                                                                                     /                      :                      U                      m                      ~                                                                   grub_mod_init grub_mod_fini grub_command_list grub_errno grub_register_command_prio grub_unregister_command grub_get_time_ms grub_error grub_named_list_find grub_printf_                           *                     6          	           I                     `                    y                                                       0                                      
                        m                    P                                        |                                               #                    0                     .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .modname                                                                                              @       :                                   @               `                                &      2               z                                   5                                                          ;                                                          K                                                         P                                                                                            	   	                 	                                                                                      Y                                                                                                                                                                                                                                              boot/grub/x86_64-efi/raid5rec.mod                                                                   0000600 0001750 0001750 00000003720 13417732100 0015326 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @  
 AWH        AVAUATIUHSLH	H(H߉t$HL$Iš        M  H1LH        E1I        HH	HD$D;u    D;t$   LLHT$HH}(Ht$AׅuLLH0D$LH        ҋD$   t@1H@02HHHuHH	@u1HH)HvH<1H1<2HHƃHH1HHH9t@4@04HI3H        L1H([]A\A]A^A_H        H        H        H            LICENSE=GPLv3+ diskfilter raid5rec                                                         b                  w                                                                                                                                                 5                      @                      L                      X                      b                       grub_mod_init grub_mod_fini grub_raid5_recover_func grub_errno grub_memset grub_malloc grub_free grub_diskfilter_read_node                          7          
           R                     _                                          D                    d                    n         	           y         	            .symtab .strtab .shstrtab .rela.text .data .module_license .bss .moddeps .modname                                                                                            @                                          @                                                &                                                          ,                                                         <                                                          A                                                          J                            	                                                          h      	   	                 	                      `      |                                                          S                                                                              boot/grub/x86_64-efi/tr.mod                                                                         0000600 0001750 0001750 00000007050 13417732100 0014255 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    
          @     @   AWIAVAUIATUSHHG8 tLp4$H        LЋ4$H1E1IG1H        IH        x LEHEx  LEHEuI] Ku
Im Me<uIm MeI])~H        EHt
MtHuH        *HI        ALH$AH9$t+H        H   1[]A\A]A^A_H        HAHxH        HItHPH        :           HT$H$HHH$HT$tH)ABHH3@uB IGL8 tLH        H        1H        H        L1H[]A\A]A^A_1PI        I        H        H        H        H        H        ZH        H8H                     s                                      U                                       D                                                                       ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz too many parameters missing parameters set sizes did not match %s
 Translate SET1 characters to SET2 in STRING. [OPTIONS] [SET1] [SET2] [STRING] tr set Set a variable to return value. VARNAME upcase Translate to upper case. downcase Translate to lower case. LICENSE=GPLv3+  extcmd tr                                                                                                                                  M            2                                                              	                      
                                       )                      @                      K                      W                      c                      o                      z                                                                                         grub_mod_init grub_mod_fini grub_strlen grub_unregister_extcmd grub_errno grub_printf grub_strchr grub_malloc grub_error grub_free grub_register_extcmd grub_env_set grub_env_get      &                     H                     U                                 6                    J                                         ]                           "                    :                    E                                                    u                                                                               y                                                                                     (                    4                    A                                                                                 (                    8                    P                   `                    .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                        @       K                                   @               P      @                          +                                                         &      @               	                                 3      2               0      8                            B                     h                                     H                     h                                    X                     x                                    ]                      x                                    f                                                                                                                	                                                                                8
      o                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/raid6rec.mod                                                                   0000600 0001750 0001750 00000006230 13417732100 0015326 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    	          @     @  
 Hu1'@t2HHHHɈGHH	ШuII)IvLL3LHIH1HHAHL9tDD2DH1I        I        H9ttAECHAWI	AVILAUI        ATULSHHHt$4T$0LD$AHIuE1#  HAHItD$0AV D$     19DDyL$,A9DDHH	HD$D$D$AF 9D$    AFD$ AED;|$4D$(   IcHHT$HI~(Ht$H        ЅuHH        HHHD$8LLHHދ|$(H        HHLLHD$8-|$ ,  H             D$(D$D$(D$AE;~     DDD$ |$   |$ IF(Hc|$0   HHHT$HHt$I        AׅuHLHHH          Hc|$,H        H     HT$Ht$HI~(Aׅ[  LHHHH        п   +|$HHH        #  HHHT$HHt$I        Aׅ   I        HHLD$ LLAHc|$,HHT$Ht$HI~(AׅLD$    HLD$HLLA   ADt$D$H        LADHH        ҋ14DI        AT$H|$A֋D$D$1LAHALLLHLD$AHLHH        LH        Lӡ        HH[]A\A]A^A_1ҰH        H        I        ȄLcɈCy	HH   uH        H        H        H         LICENSE=GPLv3+  diskfilter raid6rec                                                                              I      a                                                                                                                                       *                      5                      A                      Y                      c                       grub_mod_init grub_mod_fini grub_memmove grub_errno grub_zalloc grub_raid6_recover_func grub_free grub_diskfilter_read_node                                                                                                                      {                
           a                    ~                             
                                           {                           %                                                                       {                	           "                    2         
           O                   Y                  c                                                                                .symtab .strtab .shstrtab .rela.text .data .module_license .bss .moddeps .modname                                                                                            @                                          @                     p                          &                                                          ,                                                          <                                                        A                                                          J                            	                                                    (      h      	   	                 	                            }                                                    	      S                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/xzio.mod                                                                       0000600 0001750 0001750 00000050470 13417732100 0014625 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    xM          @     @   USHPHoPH        H}8H} H        HH        HC    H            Z[]U	   HH        SHHHt$Hxiu1ET$H		   HFHU 1H| yH9s@|@tkHH	} HHHH)HsH        HHH[]AWAVAUIATIUSHH(LPI@@  H9GsDI8H        IǇ@@      IG(    1IG    IG    H        I?IG@I@@  E1HD$M   LHC    LH)H=    HFIGI9GIW0u.    Ht$I?H        H   IGIG    IwI8H        A@wH           1H        {Iw(HCHH9wBHDL$LH)HHL$L)IH)Iw HM)H        MLt$DL$AIG(    MLxHCI@@  LHH([]A\A]A^A_AWAVIh   AUATUH        SH8HH   H@  HHuHH        sL0IFHkPHC@CH   HCH        HCH} H t1H        п   H        HHE8uHH        H1  HE@HE0       I        I        HEH@   HE LcPIt$@I<$AHID$uhIt$I|$8H        ЅuNLcPI<$HG@HpAպ   Ht$I<$AHu$   H        H|$H        ЅtDH        1L     AH        H}8HH        HL   I<$HG@HpAպ   Ht$I<$AHuD$   D$I<$HO@HqH)Aպ   Ht$I<$AHt|$ TI        Ht$(I<$AHL|$0E1H|$( tCHt$ I<$HD$HHt$ I<$H        HL|$ HL$(L{@   I<$AHH8[]A\A]A^A_H        H        H        H        H     H        H     1HDG  AWHBHI        AVA   AUA    ATUSH        QH$1  HLPH)Hw4AAt,DMI)A< B   Qv   E1Bʀ   HTAD+_JDJA)AD	D
D	DJAD	EFt4DE,   )ADɀvD)DD1DA   AA	DD
JDADJJHLGD HHH;$HH)1HwDWZ[]A\A]A^A_AUATIUSHLk@PH~ HF(Hk0H)H9HFH~H        HLIl$ Ht+@LHS8H)k0H        H)HS8Y[]A\A]AW1AVAUATUH        SQLPI94  BLA   1ۃDt AJL$ArA)A   uLEDE1AE1Iŉ$N<.G$B    IIM	Iu$MILH%HuA   uLMI  H$IM!A A   ID	DL$DD)AɁ   A HII	Ɋ$M	ADHcI!ˊ$IM	E1B    MIG| IIuZ[]A\A]A^A_1ALHI9wT|uHLDDAD	DD	ED+A)AAADAA
LDDLAV1AUATAUSHHH9   HlDm Du{L\EDuhLHHAAAND3AA
AD	D	D	ED+A)AHAAM 	ALEH[[]A\A]A^H1A   @LHI9   ADAAD	DAD	DAD	AAA  t	A   uRAEA)DD)A%? A  @    @E)D	AAADAADAAADAHLVE1I@H9soNDNFAD	D	AD	ɉ%  =  Hu3D)  HȈNFFIHHHUHHSHE HHH)wkH        $H        NHH        >HH        .HH        HH        HH        1HE C[]AVAUATIUHSHHH0 uH} HE(HS8H)H9   -HH        H{0 t1n  {uø   ^  Lk@H|$H}I        LAHC8HE HLH        ЃCt  { uHM HuHT$HH        Ѓ{tHU H+T$LHS8HE H)HE HEHS8HAH{8 uC   HELk@HLHCHE HC HE(HC(LmHC8HE(   HE H        ЉCHE HC8HCHEHC HE HC(HE(CwJHK8HS0LHH        Ѓ{uHC8HC0HHH        H{0 FH[]A\A]A^SH        P   HtX[ÍV   w-@G    G    7G    0HG0    HG8    US   = w8H   L         LIL   Aȉ   D   D   9s7   f   HDD)fHtǇ         )A)D      ff)f   = w8H   L         LIL   Aȉ   D   FD   9s@   fN   HDHD)fFHtǇ   
   A   ?A))H  D      A   ff)fǇ      D         HV    w9L   L         IiH   G
Dʉ   D   EAAD   A9s$   fD	AAA)DDf)A)A)ҍD D   D   fAfAD)fD9<E)D؉   []É1H;Os|;W0swHG H+GAI9IF)AHWHBH)H9rHG(1E1HwLHVHWHPA A0H;W(IDHA9tHHWH9W   sHWAVAUATUSH   HH9Gps&    t   H   H        H`HL  A   A   H{pH;      '  H   H;        D   ! w0H   LX      L      DD   HD   HHEHAHf   DEE9s2DD   D)Hf   HwHu}H   HHpADED)fAE)D)ց    D   f     H   A   H   LVL   47AD   m  HSx1HtHC`D+   芋   AÉ#   HDHi   ALP        IS    w7H   H         LFL   47򉓜      ֋   9s   f1D)׉f"))׍D       ff)f=   N     HH)H9rH   1HtHS`<      AA!B4   HLށ w;L   L         Mt$L   Gd% Dቋ   D   EAAD   A9s'   fD&EAAA)DDf)A)A)͍D D   D   fAfAD)fD!=   #HSpHK`HrHspHCpH9CxsHCx   wǃ       Y	w   AHD   D   Hfd  DDAA9         HD)AHH  fd  
                     H        Ћ      A   JHFHLD       A)A)D   DAfAD   D)A fd  w4H   AD   L   LVL   A41      fD|  D   EAA9s]      D)Dρ f|     H   A   H   HxH   AD   k)A)Df   D   A) fD|     H   A   H   HyH   AD      D   f     DDA9s;      D)Af  ǃ           A))ǉfD      )f  A     f  D   DAA9s%      D)f        )A)ȉf   D   )΁ f  w4H   H      AHyH   AD   D   f     DDA9s"      D)f     3A))ωfD      )f                             HH   H        D     ֋   9sr   f1D)׉f?wtIP    wH   H         LVL   47򉓜   s))׍D       ff)f뇃@w        DAH1A   A   D≓   HSD  H)LJ   I4A   = w8H   L         LiL   Aȉ   D   D   9s!   fEA)Df2)A)čT   D   ff)@fD   D9:l        = w7H   H         HzH   Љ         )   !   ɉ   DF   uL(  1ɉ      A   A   I4A   = w8H   L         LgL   A<8   D   Dǋ   9s!   f>EA)Df/)A)T   D   ff)fD   =   H   H{`H        Ѕ1D    w7H         H   HyH   ʉ   []A\A]A^AVAULoATUHSHHEHUH9Z  ;wH        $I          HU HHHMt=   vW    C   C    uHMHM HK`HM(H+M H   HCh    HCp    Hǃ       HCx    
{ 5        =   SvC    C   {   =   C   H   ǃ       ǃ       ǃ       ǃ       1ǃ       fB HH=67  uǃ   ǃ       ǃ        g     C   mHM HpSHu   ЉCGHM HpSHu   DC"HU HHHM   CHM HpSHuDCCHU HHHM<  ǃ       <,v-         ǃ       ʉ   <v	         ȃM     H   ǃ       ǃ       ǃ       ǃ       ǃ          1fB HH=67  uǃ   ǃ       ǃ         {      t:HUH;Uu1  HM Hr   Hu   Љ   뽃k   SHE(H+E H   HH9HGHSpH)H9w	H   
HH   CHuHUH)u
{   Dc*   H|)A)H        A9DGDH9DGHu ELЋSA;Cu-к?   1H)IDL)H|H        DCwCLu7  H   L   HHǃ       H        Ѕi  SH   AH9R  )CH9s)HtLSH          HEH)HEC    HEH+EHvtHU H   HUH   SJH9rHEHEHH   HH        Ѕ  H   KHH+UH9  )щKHEHuLeI)I  CLL9LFHu H        LDcLe   H}HEH9Hu HM(H9H)H)H{pH9ȉHFH   H)H9HFH9HFH{`)ISHu LHuALHCpH9CxHCpsHCx    u HCpHChLe LeS`  H;   uHCp    Hu H}LHuH} H        뮃;      HCpHshDsII)􃻔    t,H;   uHCp    H}Hs`LH} H        HCpE)HChLe EDsu?{ t   j    u    uǃ   ǃ       ǃ      -HE(H9E HEH9EC9C    []A\A]A^AT   USw;Po  I        AHHt!t!AHHC`uHH        1	   H[]A\@      S   @H@΃҉   t+9s'H`H        Ht?HC`         ǃ           C   C    H   1   [UH        SHQ    tH`ZHH[] Iu7HG    -DHHOLȃHH	GEyDAA?DGtHL9ru
t   G       1ATIUSIl$HHwHGxH)H   HtI4$HhHP0H   HtI4$H{pHHsH@0[]A\[]A\AWAVAUAATIUSHQLwpH   LDwhHDox` u_HtZH} @wSLU8L} LU@H{ HH        LЀ   C`   tEtC S#C#S C!S"C"S!ID$I9D$u1   EuH    uCSE    uH   HH9s-ID$I;D$tHtI$@4@8t uBHID$HCxHtH{hP(H   HtH{pP(C`    C          Z[]A\A]A^A_ATUHSH  HHvH   HUH(  H)H)H9HFHu IHH        Le1L  L;   L  uHǃ      []A\AT10   UH        SL   H    Ǉ       H   ǇL    L   1L  H   0   HCxL  Hǃ      Hǃ      Ht#H{hP(HCxH  P(HCxH   P(C`    []A\AWAVAUATIUSHH(    tH        HC HkM$  H$I$   Il$HD$A$	wH        $HLH        Ѕ	  I$(     H        H        Ѕ  H        I        AHI$      Hx   HI$.     Ht$H        A$3  Ht$H|$D$A$2  D$A$1  D$A$0  D$I$   HP H        Ѕ  A$.   
  A$/  <

  I        HI< u
  A$   I$   Ht,HxHH        HID$p
  I$   HR(A$/    HIIGI?I$   AHID$x   I$   H9H 3
  HxHI        AHID$huI|$pH        	  ID$xHxHAHI$  uI|$hI        3ID$xHxHAHI$   u*I$  I        AI|$hAI|$pA	  ID$xI|$hP(ID$xI$  P(ID$xI$   P(ID$x    IǄ$       AD$`    A$   HCH;Cl  HuHPHSID$A$      IǄ$      A$   A$   I$   HLH        Ѕ  I$   I$   HHHI$      H   I$(  Ht$H        I$   Ht$H|$A(  T$A)  T$A*  A+  T$D$I$   HP H        Ѕ/  A$)  IǄ$     >  @t9I$   I$(  LLH          ID$I$   IǄ$   A$)   y9I$   I$(  LLH          ID$I$   IǄ$   A$)  A$8  u!I$   I$  HH)Hw{B  I$  I$   H)H  HPI$0  I$  A(  H        Ѕ[  I$  HPI$  A(     iHpI$  A(  !  HPI$  A)    H9  HI$(  I$  A(  H        Ѕ  I$   I$  H9sHPI$  A(   t  IǄ$      IǄ$       IǄ$       A$   HCA$8   I$(  ID$HC ID$tHHI$0  H        HH        HKI$   AI+L$It$I$   HS I$   H)I;$   I$   i  I;$   [  IL$xHtHS I|$hH)HsQ0I$   HtIt$HS I|$pH)HsQ0A  I$   HtI;$     I$   HtI;$     I$   I$   I$   A$   HI$   I$   I$   ID$xHtI$      Ht$P0I$   A$   +HCH;C  HHHHK< H  I$   A$   uA$   1HLH        Ѓw  A$   LkHKLH3LH        ЃAtHLH          A$   t%rt9zID$I;$   I$   tW  ID$AǄ$      I$   CID$I$  ID$xHtI$   I$     P0I$   AǄ$      I$    )A$   HHHHK< 	  HCHI$   I+T$tH;CuHLH        18  H        HLID$xHuA$      I$   P8ID$xI$  P8I$   I9$   w  I$  I9$   a  ID$xI$  Lp P@IID$xI$   P@LHLH        Ѕ  c   HLH        Ѓ_  IǄ$      A$	   HLH        ЅI$2     H        H        Ѕ  I$   H   H   I$,     Ht$H        A$+  Ht$H|$D$A$*  D$A$)  D$A$(  D$I$   HP H        Ѕ  A$-  A$.  I$   H	A$,  	A$/  	H9   A$0      A$   A8$1        A$    t*uHCH9Ct|H$HkHK nu/H;ku)H$H;K uA$       AǄ$      E;AǄ$       -   냸   y   oDg   ]H([]A\A]A^A_UH        @  SQHH   1HǺ@  H        1H        @ǉ   HH0  tAH        HH(  tH        HH$H0  H        HH        1Z[]UHSHQtOH        H        H(  H  H   H{hH{pH0  ZHH[]X[]                                                                                                                                                                                        7zXZ                                                                                                                                                                                                                                                                         xz file corrupted or unsupported block options YZ xzio CRC32 YZ CRC64 SHA256                                                                                    LICENSE=GPLv3+ crypto xzio                                                                                                                           [                  z      #                                  	                      
                                       a                           (             *                      H                      U                      \                      i     Q5             u                       $                        t                                 (                                       v$      [                  ;                                 6      ^                                                 %                     ,                     8                     D                     T                     n                                                                                   i%      *                             grub_mod_init grub_mod_fini xz_dec_reset grub_crypto_lookup_md_by_name grub_realloc memcpy grub_memmove xz_dec_init xz_dec_bcj_create xz_dec_lzma2_reset xz_dec_lzma2_run grub_file_seek xz_dec_run grub_errno xz_dec_lzma2_create xz_dec_bcj_reset grub_file_filters_all xz_dec_end grub_file_read memset grub_zalloc grub_malloc grub_file_close grub_file_filters_enabled grub_crypto_hash grub_error xz_dec_bcj_run grub_free xz_dec_lzma2_end grub_memcmp                                 !           /          &           I                     `                                                              O                                                                                         $           I                                                 &           
                    %                    6                    N         &           w                                                                        /                (                               5                    H         &                       U                   U       ]                  g                   q         "          |                            "                      P                   p       a                                                    0                                                         
                                    	                  j	                  (
      2            4      i                                                    a      9                    ~            a                  4                           V                                    9                                    .            x       ;                                         =!                    !            &      !                    /"            &      "                    s#                    #                    $                     $         &           %                    l%         &           &                    '                    ((                    (                    +)                   >)            '      _)                   i)                    })            7       )                    )         #           *         (           M*                   *                     *                     +         &           D+         &           q+         &           L,            '      ,         #           ,         (           A-            %      -            %      2.                    .                    n/         %           /                    1            W&      H1            %      b1            %      V2            %      i2            %      	3         (           -3            W&      \3            '      }3            =       3                    3         #           4         (           V5                     5                    5                    5                    5                    5         &           5         &           6         '           6         &                                                                                                            (                   x             H                                                                                               7                   .                                        9                   6)                   +                   D,                   9/                   0                   1                   51                   /2                   3                  T3      0            7       `            @                   F                    2       (                    0                      .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                           @       c6                                   @               >      @                          +                     6                                   &      @               J                                3      2               8      M                             G                     8      P                              B      @               L      H                           M                      9                                    ]                     /9                                     b                      /9                                    k                      69                                                          @9                                	                      =                                                          M      t                                                                                                                                                                                                                                      boot/grub/x86_64-efi/read.mod                                                                       0000600 0001750 0001750 00000004340 13417732100 0014542 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                               @     @  
 AW   H        AVAUAATIUSQHHt{1I        A<Lct[<
tW+F^wH        1H        HuHH        HHtHHH        
HB3 u        )E~HI<$H        H        H1Z[]A\A]A^A_H        PE1H        H        H        H        H        ZH        H8H        %c Set variable with user input. [ENVVAR] read        LICENSE=GPLv3+  read                                                                                                          D            )                                                                                                     *                      5                      A                      \                      h                                                                                         grub_mod_init grub_mod_fini grub_realloc grub_errno grub_getkey grub_register_command_prio grub_printf grub_unregister_command grub_malloc grub_free grub_env_set      	                     .                     T                     `                     s          	                                          
                                                                  !                                                	            *                                               +                    8                     .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .modname                                                                                              @       B                                   @               (                                &      2                     /                             5                                                          ;                                                         K                                                         P                                                                                            	   	                 	                                                                                      Y                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/zfs.mod                                                                        0000600 0001750 0001750 00000160070 13417732100 0014434 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    x          @     @   O   1҉@k   H    HA    HA    HA    @t-@t(H        @@H        H1IH  1AW1I        AVAUATAULAH        SHH        H   H|$Ht$H          AA   AtA  1I               E   ¹   1Ht$H        I        HD$H )HH9  tAHcӊHD3E I        DCU   EDDDDC01B.1A?A2  H        +1DD$$H        HcE$DA<1҈D$DDA<1ADDA<DD$$A1DE1DA<L$D$0AŉD$8L$$AΉL$(DH;\$n  Ll$Iߋt$$AM} E7DՈD$IELl$t$(D,D3D$HL$Dt$0AHYAǋt$8DD1HD$`D31LD 1AAA8HHuHHuLd$`L|$pD$q D$r D$t 1D$v D$x D$y D$pD$uD$zHc\$H   Hc|7 u ~uKH        	   @  ;D$u1HH           E1D`+HcH        ,SHHL$`1HH<D7E4D7E4HHuHL$p@0H@<0E7D0A<7HHu|C<,H        C,II        IuE0C</AC/IIuHcD$kE0HD$(ID$HD$0IGHD$8   HL$0HcE1H   N)HL$(DD$C2C<4H        LT$@t$D$$3D$$LT$@C2IIuHD$8E0N(C2C<7H        LT$@t$D$$3D$$LT$@C2IIuIKHIIH
HD$`HL$lH\$xLd$hHl$bI        HL$0D$@D$@E1D$    D$(D$(9D$   HD$`E1N0BD5 D$$C9C<<LL$Ht$$D$8A3D$8LL$HC9IIuHD$pE0MC9B<;LL$Ht$$D$8A3D$8LL$HC9IIuD$IeHIHH;\$0:HD$|1I        HD$;\$   1HL$HHL[HuLt$Ll$pI1 IM>t,\A|- HAA0HuIIL;l$uHH        &   HĈ   1H        []A\A]A^A_HĈ   1[]A\A]A^A_UHH        HAUATAMkSHHIԃ
w	M$MuY1AH        H          H        I        AщH           1H        [  A|$ AItNLlH}   DIuI}HuHMLHA$I}Hu   HuH}HMLHA҃
       HDHuH}H        Љ1   H        MD$H        H          H        uLMH        uLEH          H        1u(u H          H        1LMLEH        H H        	   1H        He[A\A]]HQ   HHGt)HcHH        H        L  }H8    HpH  H9wH        H        W  HHʃHcHHqH9vxHcHTH9sQH        H        f  H        1I        AH        	   1H        1ZAWH        MAVIAUMATIUSHHH(T$Ѐ;u{wH1r1H        H          H        I        AH        	   1H           ALAȍPHcҋT;T$tHHH        HHu   H9t	vA<( uHL$HLLD$LH        ЅLD$HL$uA1΃HIA@Iȅ'T$H        	   1H        ыT$HcMMI7tHIE    1H([]A\A]A^A_HGH9sʅtHHPHH)H9FU1H        O  I        SHQH        LOLH        A҅HCuHZ[H	]UЙHAWI        AVIι@   AUAATE1SH_NHLEED;e}^PCIH        H          H        P1LKAHCEHZYHHUHHEH@Aօu	A1   He[A\A]A^A_]H        AWHIAVAUIATIUHSHHD$L;d$KT= r"H9   H)1HH           H9sA$yÃAHc
H?HYH)Mt$H9HOڨ@uyHH1H        MHxHD$HLL)HPH9H        HNHHMdCH1[]A\A]A^A_HSHHI1HH        H9t7H        8 uH           1H        ҡ        1[UHAWIAVIAUATSHH   H8tUr     HC8H  @ H	HuH        	   HHH8L81H          ~  tE11I        WH        	   1H        M  DH8LHi   LHs(AՅtH        A    D;c rţ          V0Bv"H           1H          Nv    H~ID)HHHL HH        ЋS0tE1AGlm A   K   DK A)HDIDHH9rAAȉ$H8E1L0E1H( DD)H0   s K01҉)Au$CH+KLHHDH9AŋKLDL DH@HHH        DKH@H0EHH        I        WDH        H9APMHGIH        VH  1AӋK   HHi@   H HHH(HHs(L!H	H        ЅL   D;c0  H(D$+AHpHPHLŐH             h  1E}  H        8 HtE1E1  1ҰH        I        ȄLcɈCy	HH   u뱋KLD1s HH׃{0u+KLHHD(H@HH        ЋK   EHi@   JT͐L0HJpHcHs(L!H	HH        ЅL0D(t2S0ATD)D9a  H             AE9)F`AD$ A   I        D)ȉ00DM7  s +s01ҋKL9HIG1D9sHH8H;huD9   1A9   `H9LILFDHptEuhH8MtHH	tI0HH1MI)IvLL1HLE1AHHHM9tPBB0IA1E1AM9t2H8BtAE\ LI        AB0IHH8I)AHu1D9r1D9A\$uRHH9tňt9vHpHLHLŰHLPH`H+tŐH}H        ЅuZHtݐLPH`DHpH        /H        HAH(H)0IHe[A\A]A^A_]ATUSHtw\1I        "    uEH8Ht<[]A\H        ;k H{(sHi   HA[]A\H        []A\ATI        U1SH;  Hx  sHi   HAE1H        H{H{ H;DH;h  Hp  sHkAH<HH[]A\PH        HPH        H8H        1ZÅuHHHH	ÅH*   uHGHH9H9WH        uHP uH        	   1H        1SHHtIH        H        -  It4H        H        4  H        1I        AxIcAIILILL$LLHkIH   L@IcAI	IHkH   HPIcYIIQHkH   H        HKLL$HAAH1[IuHuH2IIQH1UHSHAPH    H8 u Y[]H        &   1H          H        HIHE8Hu@1ҹ  H8H        Љ1tH        H;H    Z[]1Ht%? t H        PH        ZAWH        I        AVMAUIATE1UHSHHHD$  19v.Hi   KHHx  H9NuLLH|$AׅuX1At!HH        H        A   랅u.SHH        []A\A]A^A_	   H        1H[]A\A]A^A_UH        HAWAVIAUATASLHhHUHMH0HIF0HcHxHp1H; uH{   EHCuHH?  1    H}H        п   H        Iš        M  AH        H        HEH        1  H        I        AA   LHUDHH        Ѕ   CDHHEH        HEIFPH HE    H   HuLHEH        D   f H uKEIF0uHH?ME   HEHEHEIP tLHMHULuH        ЅtELH        ҋERI0uH        HEIMuLH        pLpHMDHUHH        ЅtKH            HH;xuH        	   H        ң        1He[A\A]A^A_]UHAWAVIH}AUIATAIv`SH˹   HXELEH    IF0HuHHH(HH u}H(HH uH}H<HE    փI~P utEuHHHEHe	I~0DH        HHEtHEH}v"UH           1H        @EteHH        HHx u(HH           1H        A  HEHxH        HHHu  H}H        HIE 1EH        H        6  H        I        AHMHDLH        ЅY  HE1HHPHH)H        H Hu   HHH        DHM}H tNEH        H        D  H        1AHH        DEIE     E`  }   H        H8 tHE1E1Hh  1WH        H        	   1H        Z  HuHkHp  IvPEIHIIIDH9vH9rH9vHAHu|HH        IE     IFPEH        H        b  H        I        IILE1AH        	   1H        IFPEEHuH        H        I        HHHEMkLHp  Rj  H        0LH1AHuUHLMLEH        Lp  HLIwD$$I?ZYt"EHH        IE     EE1}t}H}H        I        HIE uHAH        D EDEHH        HMHUHIBT AHAEtI} EAIE     HeD[A\A]A^A_]AWHG@IAVIAUATUSHXDg   HD$Ht$0H        HT$LD$HD$H    HA        H>  EoD   A   HAHD$ DE؉D$,Dd$(Ld$A  I        H          H        1LT$8AH        AҊL$(Ht$0HLT$8HH#t$     HLL;d$tLH        E1LT$8H}P u}A    uEofAI	A EoA	McLH        HT$HHt           11LH        ЅH]0uHH?   EAH        H        uB1  H        A1ɉLD$HT$HH        ЅH]0uHH?e1  H        I        A1ɉLD$HT$HHH        ЅH]0uHH?T$,T$(uLd$HA21L;d$I        tD$LAՋD$MtAD$HAՋD$HX[]A\A]A^A_AWAVAUIATIUSH(H_PHt$HwHCH9r)H2H;SwH)H3LH|$H          H   uP  fH	 P  	HcMH$    M   H<$I}1HH        IH;H        1LH    HH  IHT$H        Ht$H3tH    HC    HHC    YLH$H|$HL<*HSL{IEI)I)M9MGHH)M)LHH        L|$L<$&LH([]A\A]A^A_AT1IH        H          UI        SHHD   H        AC   MHL$HHHH   H        H   ЅuxH|$  H4$I        w%HAH        	   1H        :    H   uHH?   H߉   H        H<$A1H[]A\AW   I        AVAAUE1ATAԉAL$UHSHHD0H(H$M9   HcL   L)T$LL$HkLD$DH,$HHFA׋T$9}KLL$HuHH        K<)LL$ELL$LD$ufUUIv1	   H([]A\A]A^A_AWAVIAUIATUSHx   HT$HL$8LD$@LL$HuGH	% 1G	HHvHLH        ЅuyI~ H           uU   @/v5ME1MHHHcIH0   H\$ HD$P   H        	   1H        1  H\$ HHHHDH9t?HL9uLD$HHL$dHT$hLH        ЅH\$htBH             IIN LHHuHD$ A   JHHHE1뒃|$d H       uHHH9%  C=H9  {  H        ЉD$,HD$PfD$*  HHD$0D$*;D$,  DT$*HD$0MkN$A<$  |$d ufA|$fA|$H|$H        HЋt$dHD$ufED$fAEED$LD$uAL$AL$LL$HH        ЅtH|$H           AD$HT$HD$ AD$
AT$|$d Lcuf	LD$XH        Ћt$dHD$LD$XuAL$AL$LL$HH        ЅtH|$I        AH|$AZAL$
At$ED$LL$@HT$H|$HD$8ЅH        tHи   6H|$HD$H|$HD$fD$*(HH        uHx[]A\A]A^A_AWIAVIAUIATUHSH8    u
__HT$1	MHL$HH        1҅F  |$ HD$L uII        1H        LD$H        	  H        AH      LD$I9uG1H        H        	  H        AMLڋt$H|$H        lH      I9utH        H        	  H        1L|$ Lt$(AMLD$ H           Ht$HH        ЉH|$H        ЉH        H        	   11H8[]A\A]A^A_AWIH        AVIAUI1ATIUHSHHL$HT$E1҅   |$ HD$HuH1	  H        H        H        I        AH      H        H9t{H      H        H9ubH        H        
  H        1AMML   Ht$HH        ЉH|$H        A	   1H        E1HD[]A\A]A^A_AWIAVMAUATAUHSHH(    uGH	% 1G	HHvHBA   MLL$D$AIAE!I~ tfI~   HH        ЅLL$uEM;N(r?M;N0s9Ic   HH	IvH        AF8E䉅   Y  1y  I        1ML\$D   H        H        8
  H        AMHL$HT$LHH        ЅL\$  H        H        <
  H        AH        I~HD$I~ HD$п  H        HIF uH        IF         BHHǺ  H        HD$\$IFLHIIF(D$IM~0AF8Ic   HH	Ht$H        ЋD$D8e H        	   1H        H([]A\A]A^A_ATH        I1UHSHӺ   H   H|$LC1HL$LH        IP  Ѐ|$,   f|$" t!HSK  HHH  H$aD$t*1H$  LCH⋴$  H        Ѕt2H        	   1H        H        1   H$L$Pf
$   u
HD8HD8D$HCH`  D$	ЈD$|$u<L$$   D$uHHH   HHH   D$DD$D$  H        IH        I        A	H        D$1AHSHt$HH   []A\AW1I        AVAUATIUHH        SHXHT$HL$H        DD$H        I	  A׃    u
]]1	LD$HL$8HT$@HI        AօAC  |$8 HD$@L uI1L$H        H        	  H        AL$H      I        I9b  1H        H        	  H        ALl$@CDD$81H        $Mu@IN;,$   |$ t`LLt1t*DPDZx ADR GAAF9uHHȍpP FrJ F9DD$LLDD$I@t*EHcuHI.HHI.H\$E1H*@LH           1H        AEH        H        	  H        1AO  H      I9O  	  1H        H        H        AՋ   L|$@uEH	% 1E	HHvHLH        ЅA  H        IWPH    t|$ uVL   1IBוWlIL    HA   HHHL!H1AtHHK
H   uLtFDHHD@HAAFH1H3<HъtH1HHH3<HH    H           H!I H$uhIW 1HtH$@   )H能       KuHcHI4HHcHI4A   D/w%H        	   1H        A"  LD$HL$<HT$HHAօA  Dl$<HD$HH       EuHHH9tH9tH        "Pʁt-	xthH        	   1H        }  E   H$)*H HKAAMcL!flP0fK   HcHHD0HD$KE   H$)*H HKAAMcL!flP0HEEHHHDH;$tbEfmuff  H        ЉƉD$9|H        #HkHl$} tH        DE1H        H          H        I        AEufD]EfAE	D]EE1M9   LcLA   MkL)LD$HLF;D$|$ K44Ixt1%L\$(LD$ LH        LD$ L\$(4L9t3DHHAFDQDIAAFH9t)ȅuEufA@M9A@M4}uEuf}
 f}
tH        EH\$E1HkHDH\$HH#LH           1H        AH|$HH        EH        H        	  H        1I        AH|$@H         H        	   1H        AHXD[]A\A]A^A_UH        HSHӺ   H8  H$(  Љ$(  IHL$       H$(  H        ՄunE1HHT$H        H|$ H        ЄuDIHL$    Ht$H$(  Մu$1IHL$HT$H|$ H        Єt?$    uT$(T$(	E1H        t$H|$H        H8  []AU   H        ATUH1SHH(  Ѐ$P  u|$P   $S  uHHH  HHHH  H}@IH$P     H        ЅAtH        H        9  	  HH$P  H        Ѕ  IHL$      H$P  I        AԅAtH        H        D  FE1HHT$H        H|$H        ЅAt:H        H        K  1H        I        AD[  1IHL$Ht$H$P  AԅAt:H        H        R  1H        I        AD   |$,   f|$" tD$HHH   HD$]D$t.1H$  IHT$$  H        Ѕt-   H        	   1H        ҡ        tHD$Pf
$   u
HD8HD8C1|$u;$   D$uHHH   HHH   C1H(  []A\A]UH        HAVAUIATISHH   LBH1Ix@ЅtH             1   1   H  ID$   HHHHH        H  uLI        AHxH        HL @AH{HPLH        IT$HHA$AHH        DHe[A\A]A^]UH        HAUIATLSLHH(  LB1Ix@ЅtH             1T1uIH  HC   HLHHH        H  uHSHLHe[A\A]]UHAWAVAUIATI        SH  HHHpL@   AHHu6HpLE1    H        Hǅx    H)  /   HIAIHpM)I~I             AHHt\LLHI        AHB0 C</t]tYMI)LAHHxu$HH        H        8  HsHxIVHABD3 Hǅx    H        MH        LDPH        LxLr  ATH        1I        AZY1H        H        t  H        I        AH1H        H          H        I        L{@D@  AIH      LAօ  1H        H          H        AE1HHH        HH        Ѕ  1H        H          H        ALH   HLAօG  1H        H          H        AHHH`;    </uHHh   D+A/t
EtHH     @uHHHH   HHHHH   LH   LI        Aօu[E1HH`HhHH        Ѕu,LH   HLAօuD+1  1H        H        }  H        I        AH    @uHHHH   HHHHH   LHH        1H          H        I        E   ALL   HLH        ЅA   HH          H        H        D   1AHP   BHuHHLX  IHHLX  H        H8   M  H1   HHcHHHH  uHLH   LH        ЅAt!HH        Hx   E1HHH        HH        ЃAuH        Hǅ         >t:H        H          H        1I        AD
  LLH6   LH        ЅAt$H        HHxD/
  LHHH        HI        Iǆ      AIk  H        HI   	  HHH        HAHx    H    @uHHHH   HHHHH   LH   LI        AՅuRLE1HHHxH        LЅu LL   HLAՅt/H        HHxӋ  LHHI  LH        1E   H        H          H        I        AHp8     H        HHh  HhI        L      HLhH     LAօLp  E1HHH        LI        Aօ   Hv'HhH        H             HE1HH        LH  Aփu"H             HHǀ      E1HHH        LI        Aׅu)1LLHHHpЅtHhH          LH        Ht(LhHHpL(H0MPHhH        H        "    IE/A/u%HXLPL9u.uH؊/uHXEtIHXL9uN.uIx.uCI<$ tM.LH        MMH           1H        #  A A~t'HpH        H             HI~HH0D  HH(Ѕ    H        HIu          L0H  H#H@1LHH@HH        HЅ  E/A|$Mg  AL$A$  ҍAHuHI  HHI  HH
  AHHH   MlXuIAD$uI  E1H`   uEL$fALH	 EL$A	IcLH        HHH`ID1HHLXE1HH8L;8t1LHLH@H        Ѕp  HXHH        HHH9HGIHH        H)XHHxA   LH        I|H        HI  H        LH`HXHHXEItH`H        C/ HPILIUI<HPH        AHpMIA?/tM4$LL;htILMAILpMA~,L.fA~ tAFHHI   H\AFt31A  I  LHH        Ѕt'  H        	   1H          HA  Jf
H
uHHH
   H
   H`Ll
uILH        J|(H        HHuHpH        LH`HH`LB+ H        IHH        IULH<H`I        HpMAՀ;/tM>LMAML;htM.LMAMHptLluIv  HH        1H        MtM&LӋMHpH        ҋHI        AHxAMHe؉[A\A]A^A_]UE1HH           S1HLD$HЅt:H|$wH        	   1H        H$   H HHE H[]UE1ɺ	   H        SHLD$HЅt}HT$HwH        	   1H        SH$H ȉH9HFH        HHzHHt#H$HHHpH        + H1H[]UE1H   H        SHLD$HЅtHHD$HxH        HHt+H   HH        H{HT$H4$H1H[]H(   H        LL$LD$HL$ЅtD$H(AWH        AVIֺ   AUIATUSH(LL$LD$HL$Ѕ   L;t$H           sEH\$1I        ILd$HHÉLHL9s&AׅyH        	   1H        VH        ЅxLcH        I|$HHt*L   HI        AH}LHAH1H([]A\A]A^A_AWH        AVIAUEATIUSHHH|$H4$HLD$H        HHD  IVH        H<$I        H        AׅtIVH        H<$AׅuHH        IHT$8H        H<$H        ЅtHD$8AF3AtEn'HH        	   1H          I        AF    H        HMAՅuI~8 A    u~H        HAՅtpID$I9Fu[ID$8I~HIt$H*   IF8ID$@IF@A$   A   HD$H   uL  AFAD$HD$    H  H        HAՅu H        HAׅuJA      H        HAՅtHH           1H        H[  A   HT$8H        H<$H        ЅuHH        yHD$8AF0H        H<$H        ЅAHH        ;I~( uHcAF H        Hi   IF(1I        L\$(HH        H<$ALi   IHENLD$LH|$H        LIV(LT$ LD$I        A׋D$LLT$ L\$(t$HA׋$1IF(BDA;FvAFHA9[H1	        HH[]A\A]A^A_UHAWIAVAUATISH        H  H0    HHHt&    HH(u$HHH        H          H0 HH8H        ]HHǅ@    D HHHH@9ȉ  H@1II	~"H0H8H        H%  H-   I1LHIE I      HH0H8H        Ѕ1  1AH        H          H        I        AHǅ`    A    HhHH        Ѕ?  HhHzzHؿ H9t)HE1H9t"HH        H          AHH Hǅ    Hǅ    Hǅ    HH   H	HH          Dƿ   H   1H        H          H        H        AHXH        HhI        AՅu5H        HhH        H        8     1H        H          H        HXu"HhH        H        Y  1H        H          H        H`H        HhAՅu5H        HhH        H        8 4    1H        H          H        H` u"HhH        H          1H        H          H        HxH        HhAՅu5H        HhH        H        8 f  N  1H        H          H        HxHPH vJH=  tBHhH        й!   HxH           1I        A  1H        H        $  H        H        I        HhHH        AՅHhu'H        H        H        8 uYDHpH        AՅuPH        HhH        8 uH        	   1H        H          1H        H        :  H        A$8   tHpI9$@  H        uQHpH        HhI$@  H        HIu5HhH        H        	   1H        2  HA    HH        H        ЅtA$  H19H        	   1H           Hi   HHH9r   9I$x  wݍAA;$  A$  vEt HH        A$  Hi   HI$x  uI$x  H        iA$     1xH        Hi   I$x  A$  PHi   I$x  AMHLLH        ЉÅLI        tAHhA  A1H        H        S  H        I        E1AH        HhH        HI!  LLH        HI  AF2   IvHȉH2HFH        HH8H8I        1L8LH        c  H        Ƅ H        A1Ҿ   HH        ЅL841LH        H        f  H        AHH           1H        G1H        H        l  H        I        AHhH        
Å  A? u  ǅ$   ǅ8    	
   OE1ӽ$   HH1$98  D8HAH	McI  ILHIH= uIvH~H v	H  uHH= uIFHHtE1H!v3H=  t+Au"H        	   1H           1DH     HH        H DHLHEHHDH H        HH   Dƿ   HH tH               Mt~1I> IvIUII@1I}  IIIIMDMDM9r<M9w4Iv IU IIIIIIMDمMDM9rM9MGM8MuW        H        H          H        1I        AH        H@     %   LH I        Aփ  tI$     LAHHI        AH(A;H        HHH(H        	   1H        ҉He؉[A\A]A^A_]UHSH(H? HD$    u"H           1H           H  H        HH   ǀ       H        ǃ      Hx  HL$   HHH        Ѕur1H   H  IHL$HT$H        @݉Ѕu9H|$  wA	   H        1H        H|$H        HH        1{H    w*H{@   Ht$H        ЅH  u!HHډH|$H        ЅtH?H|$@  H        ǃ8     HH([]S    HH        Hu        .H   H  uHǉH        1H[UH        SHQH    Hš        HtFH        H@  H        1HHH        1H; H        DZ[]AUH        ATIUSHHHthH  Ht$H        ЅAH        t
HD>H        H|$H        H|$I$H        Hա        H[]A\A]ATH        IUHSHHHá        H  LHH  HP  IHL$H        ЅAtHH        D  |$ t6HH        к@   H           1H        M  H  t HH        H           zL  <,   fR   tK  HHH  HD$WO  t,1ɋH  H  IHT$H        Ѕt'   H        	   1H           HD$Pf
H   HDu;$<ubH   K  uHHHX  HHHHX  HE@H]PH        HE    H8H        1H        QH[]A\UI1HAWIH   AVIAUATISHX  HLLH        HH  LH  HP  ILHH        LI        Ѕ    H  H  L   HH        HHH  AtHAD  LHH        AօtHA1  H   K  u HHH  Hp LhHIHHH  Hp LhLs@IH   I        LAׅtHAԋP  I        LHLHH        HALIH   LALALMtHAD   } uHHHHHHHLIH   AхAtHAD   HHH        HAQH  t%HAH           1H        2HHH        LH        HAԡ        He[A\A]A^A_]SH        H Ht$HHt~H8 Ht$td1HHL$H        Ѓ	u!HH        H             7tHH        H        |$ uHH        H 1[UH        SHHt$HHt$        Ht&H  H        ЉHH        ҉H[]ATH        IUHSHHá        HtELHH  HP  IHL$H        HX  AHHU H        DH[]A\SHH        H        H        HH        [H        H        AVHHHA   E1SH9   H9   EA   uDfA HH9r [A^H        	   1H        EEDtXD_DAHE	IA  M)I9rH9wE1ɃD9fH9]G4HIDpDHH?H9d[1A^AWAVAUATUSH   /G	G	G	ōEH9  LwLcHcIIH|$LIAMQL}H           LHD$LH9  DHB   D҃uH9s   uHHHcHL9vL9  HL9v2L,I9j  HH        I9LHL  B  HHHHWH9rH)HH)HH)L9H  AAuH9sHHAˁ   ILCI)IHH|$PH           
JtPJKJKJJ+TKJHH)KLH
HHLMcK|L9v[L9w|M9s5LHLHHLYL9rHL$L)HH4   I0HH9sH@rH@qL9u!I9sH2HHHqH9H1D)D)ǅy.HĘ   H        	   []A\A]A^A_1H        HĘ   1[]A\A]A^A_AW1AVAUATUSH  L	L	L	ȉDHH@uHD$TL$  D pHpHDEA
AD1D1A։AD11PL9u_GE1wOI        D/݉\$_$t$AɉL$Aމ\$_Dډ\$_\$AAFdAAG$E1AIAE1AA1EAA!AA1EAEA1AA!A!EE1AAE1AAE1EEI   tAɉىDADkl$Dt$E\$$t$T$L$DoDwG_wWOH  []A\A]A^A_AWIAVE1AUATAUH͹   SHH        AHH   A?H|$EL)H$H        DH;4$s$LLL$HD$H|$A@LL$HD$E1E9vCBD8IAEBD<8?8tD8 AH8   HލPH@t8uA1'D9s#HD$8ރ@H|$HH        Ѓ@vED$T$uH H	HH H	EHE T$$D$ uH H	HH H	EHET$,D$(uH H	HH H	EHET$4D$0uH H	HH H	HEHĸ   []A\A]A^A_HSE1H1E1E1H9s1LLHLDML_LHLDMHLILƅHLDHHLHDHALHLDLHLQLDLI[HE11HE1E1H9s$uDAEDMHMLIL΅HLDLHL	LDHHLAHDHALHLDLQ                                                                                                                                                                                                                                                                                                                                                                                      g	jgrn<:ORQhك[/BD7q۵[V9Y?^[1$}Ut]rހܛtiGƝ̡$o,-tJܩ\ڈvRQ>m1'YGQcg))
'8!.m,M8STs
e
jv.,r迢KfpK£Ql$օ5pjl7LwH'49JNOʜ[o.htocxxȄǌlPxqrecovering %u buffers
 zfs fs/zfs/zfs.c singular recovery matrix too big matrix unknown checksum function %d
 unknown checksum function %d checksum %s verification failed
 actual checksum %016llx %016llx %016llx %016llx
 expected checksum %016llx %016llx %016llx %016llx
 checksum verification failed nvpair with size <= 0
 incorrect nvlist nvlist overflow
 incorrect nvlist header
 empty nvpair dva=%llx, %llx
 zap: name = %s, value = %llx, cd = %x
 premature end of compressed couldn't find a necessary member device of multi-device filesystem non-positive number of mirror children raidz%d is not supported RAIDZ mapping 0x%lx+%u (%lx, %x) -> (0x%lx, 0x%lx)
 unsupported device type bad ZAP magic bad ZAP salt Unexpected key index size %lu
 Unexpected key element size %lu
 member drive unknown org.illumos:lz4_compress unknown device %d little-endian gang
 big-endian gang
 couldn't find a valid DVA compression algorithm %u not supported
 compression algorithm %s not supported
 endian = %d
 incorrect checksum
 zfscrypt module `%s' isn't loaded no key for txg %lx
 no key found in keychain using key %u (%lx, %p) for txg %lx
 too small osp external pointer tables not supported ZAP leaf is too small zap iterate
 micro zap
 fat zap
 unknown ZAP type micro ZAP where FAT ZAP expected incorrect dnode type endian = %d, blkid=%llx
 alive
 filesystem is corrupt type=%d, name=%s
 looking for '%s'
 zap read
 file `%s' not found returned %d
 invalid leaf type invalid leaf magic invalid chunk number invalid chunk entry fzap: length %d
 invalid leaf chunk entry features_for_read failed here
 ROOT / fsname = '%s' snapname='%s' filename = '%s'
 root_dataset salt VERSION too new ZPL version casesensitivity can't resolve .. not a directory invalid uint64 invalid string trying to lookup past nvlist array incorrect nvlist array type id couldn't find vdev id guid ashift couldn't find ashift disk file mirror raidz nparity couldn't find raidz parity children incorrect mirror VDEV vdev %s isn't supported label ok %d
 bad vdev_phys_t.vp_zbt.zec_magic number check 2 passed
 state state not found check 3 passed
 zpool is marked as destroyed check 4 passed
 txg txg not found check 6 passed
 zpool isn't active check 7 passed
 version version not found check 8 passed
 too new version %llu > %llu check 9 passed
 guid not found pool_guid pool_guid not found check 11 passed
 another zpool vdev_tree couldn't find vdev tree check 10 passed
 str=%s
 feature missing in check_pool_label:%s
  check_pool_label missing feature '%s' for read check 12 passed (feature flags)
 invalid uberblock magic No uberblock found
 couldn't find a valid label not a disk OSP too small %016llx name missing `%c' symbol not a regular file bad bonus type @ inherit on off label gang_header zilog fletcher2 fletcher4 SHA256 zilog2 SHA256+MAC lzjb empty gzip-1 gzip-2 gzip-3 gzip-4 gzip-5 gzip-6 gzip-7 gzip-8 gzip-9 zle lz4 lzjb decompression failed lz4 decompression failed.                                                                                                                                                                                                                                                                                                                                                          LICENSE=GPLv3+          gzio zfs                                                                                                                             	                      fn      3            n                                        
                                                             )                      <     'v      u       G                      V                      c                      p                           R      6            m      Z                                                                                                   	                                                          "    n             2    s            F    o            U                     b                     s                                                                   u                                      yQ                                                                                Q      n                            *                     4                     B                     V                     k                     z                         R                m      y          	                   %R      z        grub_mod_init grub_mod_fini grub_strlen grub_disk_get_size fletcher_4 grub_xasprintf grub_realloc grub_memmove grub_device_open grub_zfs_nvlist_lookup_nvlist_array_get_nelm grub_zfs_fetch_nvlist grub_strdup grub_divmod64 grub_disk_read grub_dl_ref grub_zfs_load_key grub_errno grub_memset lzjb_decompress zio_checksum_SHA256 lz4_decompress grub_fs_list grub_print_error grub_zalloc grub_strcmp grub_strchr fletcher_2 grub_malloc grub_zfs_nvlist_lookup_string grub_real_dprintf grub_device_close grub_error grub_zfs_nvlist_lookup_uint64 grub_list_remove grub_free grub_dl_unref grub_device_iterate grub_zlib_decompress grub_list_push grub_memcmp grub_zfs_nvlist_lookup_nvlist_array grub_zfs_getmdnobj grub_zfs_decrypt grub_zfs_nvlist_lookup_nvlist     O                   g                             &                                                                                           5                  ?                                                                  C       }            (                                           "            C       5            C                   C                   C       e            C       G            C                   A                (                       P       =            P       G                   V                   `         &           o            n                (                    0           -         &           <                   F                   U                   h                   y                                                                                                                          (           	            -      "	                   M	            U      W	                   	            U      	                   	                   	         &           	            D      	         (           	                    .
            f      8
                   G
                   Q
         &           ^
            D      o
         (           
                  
         0           "                  3         (                                       &                                                         &           ;                  E                   T                                                           J                    v                           .                                                          (                               T                  t                                                  "               (                                                               I      #         (           e                    W                                                &                                          b                        n                                                                          +                    x                                                                                                                                  .                  P         '           |         +                                      +                             #                  0         ,           w                                             (                                                                                                                  &           k                                	               (                    $                               !         +           I                  T         !           l                  v                              l               -                       7      (         (           F            >                                   $                                           ]                  I                         $                   .         &           N            h      o                                                C               +           -            >      I         +           l            h      |                                n               (                                           >                                 (                                                          (           !         $           B         $           Z                  d                   s                   }         &                       C                                                                                                    ,         +           V         3           z                                             (                    +           
                                     #                   -         &           F            /      W         (           v            H                                  &                                       3           
          +           3          $           =          +           X                     n                               $           !                    e!         &           o!                  ~!                   !                   !         +           "         $           2"                    H"                    n"                  x"                   "                   "                  "                   "         &           "                  0#         +           #                    $                    !$         +           H$                   $                    $                  $                   %         &           %                   Q%                  u%         +           %            l      %         (           %                    %                    v&                  ('            T      ='            z      '                  '         (           '                   (                    (                    (         $           X)            %      m)         +           )         $           )            %      *         +           N*         +           *         +           *                   +         &           %+                  4+                   C+                   f+                  p+                   +                   +                  +                  +                   +                   +                  ,            &      ,         +           .,         (           8,                  c,                   ,                  ,                   ,                   ,         &           ,                  -                  -                  -                   --                   R-            &      e-         +           }-         (           $.         0           X.                    ~.         &           .                  .                   .                   .                   .            7      .                   /                   /         +           6/         $           K/                    p/                  /                    /            	      /         (           0                    @0            -      0                  0            >      0         (           0                    1                   1            T      1         &           1                   1         &           1                   2                   '2            f      j2                   2            x      2                   2                   2         &           2                  2                   2                   3         !           3                  4         (           4                   4                   /4                   ]4                  g4                   q4                   4            T      4                   5            z      6                  '6         (           6                  6                  6         (           i7                    7                  7                  7                  7                   7                   7         &           e8         0           8                  ,9                  =9         (           Q9         +           `9                  j9                   y9                   9         &           9         +           9                  9         (           9                    ":            -      =:                  L:            1      :                   :            ;      :                  :                    l;            -      ;            -      ;                   ;            $      ;            -      ;            -      ;                   <            :      <            1      2<            -      <<                   M<                   W<         &           <            -      <                   <                   <         &           =                  +=            >      <=         (           G=                    =            -      >                    Z>            :      t>                    >         $           >                  >         +           >            -      #?                    d?            :      ?         "           ?                    8@         $           d@                  @         +           @                    @            ?      @            A      A                   'A                   3A         &           DA            7      NA                   ]A                   gA         &           }A                  A                   A                   A            -      A            7      A                   A                   B            n      &B            1      >B            7      HB                   WB                   B            7      B                   B                   aC            -      C            1      C            7      C                   C                   D         &           dD                  pD                   D                   D         &           D            -      D                   D                  D                   HE                    E            -      E         +           E            {      F            1      "F                    CF            -      MF                   \F                   hF         &           F            -      F         +           F            x       F            \,      G                     =G                  G            -      G            1      %H         +           mH            $      H                  H                   H                   H         &           H         $           H            -      ?I                  LI            1      tI         +           I                  I                  I                    I            :      J            1      DJ         +           XJ                    J         +           J                    K         +           -K                  >K         (           aK         +           mK                  K         $           K                    L            -      L         $           QM                   sM                  M         +           M                    M         $           M                  N         +           ON         +           N                  O            >      !O         (           O                    O         $           O                  O                    O                    P         +           P                  P         +           P         +           P         +           Q            	      @Q                  QQ         (           Q            	      Q                  Q         (           Q         $           	R                  3R            	      YR                     xR                  R            	      R            	      S                  0S            q      _S                  pS         (           ~S            q      S                     S                  S         %           T            %      3T            *      AT         )           KT         +           `T            C      zT            -      T            H      T         )           T            O      T         (           T         !           T            d       U            i      U            n      U            n      U            u      U                  V         (           $V            {      2V         )           GV                  _V                  mV                    V                  V                     V         1           V                  V            S      W         +           rW                    W         $           W         +           W                    X                    X                    X                    X                  X                   Y                   Y         &           ?Y                  ~Y         +           Y                  Y                  Z            
      Z                   'Z                   1Z         &           EZ                  VZ         )           gZ         +           zZ                    Z                   Z            0      Z                   Z                   Z         +           Z            @      Z            ]      Z                   
[                   [            m      5[         +           H[                    R[            q      l[                  v[                   [                   [         +           [                  [                  [                   [                   [                  \         +           \                     \                  :\                   D\                  S\                   \         +           \                  \         (           \                  \                   \                   \         &           \         )           ]            C      ]         +           ']                    1]            	      I]            	      Z]         +           m]                    |]            !	      ]         (           ]                    ]            5	      ]                   ]                   ]            F	      ]            T	      ^         4           2^         +           >^            ^	      O^         (           q^            *      {^         )           ^            -      ^         (           ^                    /_                    O_                    _            S      _         +           _            v	      _                   _                   _         &           `                  `         4           0`                  h`                  `         &           `                   `                   `            	      `            ;      `            	      	a                   a                   ,a            	      =a         (           Ma            	      Wa                   fa                   pa         &           a         +           b            
      b         (           b                    c                  5c                    c                    c             
      c                   d                   d         &           d                    Fd                    vd         +           d         +           d            4
      d         (           d            P
      e         (           e                     Ae         $           ne            W      e                  e            [
      e         (           e         +           e                  f                    Df            9      ef         +           f            d      f                    f                  f            d      f                    g                    g            i
      *g                  <g                    Qg            d      |g                  g                  g            q
      g         %           g         +           g                    g            d      h                    8h            ?      Nh                  lh                  }h            v
      h         (           h                  h            
      i                  3i            >      Di         (           i                  i                    i            
      6j            d      ij            ?      vj                  j            :      j            
      gk            -      k            *      k            >      ll            =      l                  l         (           l            0      l            *      l                    l                    $m            W      8m         '           Dm                    ]m         '           im                    m         '           m            d      m                    m                  m                  m            d      n                    3n            ?      Pn                  ln         /           vn                    n                    n                  n                    n         *           n            T      o         (           o                   ~p                    q            @      q            n      r         (           r                  t                  At            .r      t            .r                    
                   
                                         
      0                   8                     @                   P                   X                   `                   h                   p                   x                                "                                      )                                      0                                      7                                      >                                      E                                      L                                      P                                                            i                    g      (             m#      0                   8             Mg      @             f      H             f      `             
      x             
                   #                    
                                        
                                        
                   
                #                        
                                       
                                       
      8            
      @                    P            
       .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .rela.data .module_license .bss .moddeps .modname                                                                                           @       v                                   @               x      `H                          +                     v                                   &      @                                               3      2               y                                  G                           X                             B      @                     p                          M                     h                                    ]                                                        b                                                          k                                                                                                                	                                                                                      t                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/reboot.mod                                                                     0000600 0001750 0001750 00000003470 13417732100 0015124 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    x          @     @  
    PH        H        E1111H@XHxhH        PH        1PE1H        H        H        H        H        ZH        H8H        Reboot the computer. reboot        LICENSE=GPLv3+  reboot                                                                                                 H       <                                                                                                                  3                      >             ;       J                      \                      w                       grub_mod_init grub_mod_fini grub_efi_system_table efi_wrap_4 grub_reboot grub_machine_fini grub_register_command_prio grub_unregister_command                                 	           /          
           >                     P                     Z             ;       d                    n                     z                                                                .symtab .strtab .shstrtab .rela.text .rodata.str1.1 .data .module_license .bss .modname                                                                                              @                                           @                                               &      2                                                   5                                                           ;                                                          K                                                         P                                                                                      h      	   	                 	                                                                                      Y                                                                                                                                                                                                                                      boot/grub/x86_64-efi/usbserial_usbdebug.mod                                                         0000600 0001750 0001750 00000004420 13417732100 0017477 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   1AT   AH        @U
   SHHLD$Љ1u*DL$DD$H        DHH        H[]A\H   H        @t$HL$H   HHH1H        H        H        H        PH        ZH        H                                                                         LICENSE=GPLv3+ serial usb usbserial_common usbserial_usbdebug                                                                                                      .                                                                                                                     3                      W                      }                                                                                                               grub_mod_init grub_mod_fini grub_usbserial_attach grub_usb_register_attach_hook_class grub_usb_unregister_attach_hook_class grub_serial_unregister_driver grub_usb_get_descriptor grub_usbserial_fini grub_usbserial_fetch grub_usb_bulk_write                      H                     Z          	           x                                                                         
                                                                                                                                         (                    0             m       8                      .symtab .strtab .shstrtab .rela.text .rela.data .module_license .bss .moddeps .modname                                                                                       @                                           @               8            	                    +                     0      @                              &      @               @      x       	                    1                     p                                    A                                                          F                                                          O                                                                                            
   	                 	                      H                                                                X                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/videotest_checksum.mod                                                         0000600 0001750 0001750 00000007340 13417732100 0017522 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   UH        H        HAVAUATSHHU  H8H        H        Ѕ4  H        I        I        I        SH        HAՅt]PH        >   H        I        I        PH        11I        AH        ZY      H}E
   AH        H        H        HE    H8H        H        HtHU1HP H        H        H        HLL9lH        H        HVH        I        1I        .   PH        H        1I        A_AXHe[A\A]A^]H        H        H        H        H                      videotest_checksum Unknown Regular 16 unicode font not found: %s 0 tests/videotest_checksum.c can't start capture: %s videotest unicode videotest_checksum      LICENSE=GPLv3+ font functional_test video_fb videotest_checksum                                                                                                                                                                                                                             	                                       )                      O                      ^                      p                                                                                                                                                                                                    .                     C                     X                     p                                           grub_mod_init grub_mod_fini grub_errmsg grub_terminal_input_fake_sequence_end grub_font_load grub_command_list grub_video_checksum_end grub_font_get grub_terminal_input_fake_sequence grub_video_capture_start grub_video_capture_end grub_test_video_modes grub_print_error grub_strcmp grub_test_register grub_test_unregister grub_named_list_find grub_video_fbstd_colors grub_video_checksum grub_test_assert_helper                                               3                     =                     Q                     [             4	      e                     o                     |                                                                            K                    .                    0                                                              c       
                                        +            c       5                    R                    ^                    j                                m                                                           .                                                          0                                                           u                                       u       (                     .symtab .strtab .shstrtab .rela.text .rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                             @       2                                   @                     x      
                    &                                                         .      2                                                  =                                                          C                                                          S                     /                                     X                      /                                    a                      M                                                          `                                	                                                                               0      j                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/zfscrypt.mod                                                                   0000600 0001750 0001750 00000020450 13417732100 0015513 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                              @     @   Hu1'@t2HHHHɈGHH	ШuII)IvLL3LHIH1HHAHL9tDD2DHAUI           ATI        UHS1H(H|$AԺ   1HH        Љ؉HD ਀t   HT$HHA11T	THHt߅tt$Á   uHH   AH([]A\A]AWAVAUMATULSHH   HHT$HL$tH  w     +$   H|$aH$   H        Њ$      D`$   D	D$`1;$   t    H)H@|4`Lt$P   HT$`HI        LAׅ  HEDd$`Lt$E1H$H,$DH;$   EI   AAt$   M)ILC0;$   t    A)AD\<`LL$    HT$`Ht$pHAׅP  LL$ HD$LHT$pNHD$LLT$(J4H        HD$ LLT$(Lt$HD$ LLLй   LLHAׅ  A1   ;$   t)D`    HT$`Ht$pHH        Ѕ  M  $   $HT$pHt$PLI        AЋ$b  1   H|$PI        I        Aֹ   HT$PHt$`HAׅ"  A   D+$   Au4   H$   H|$0H        D$< D$= D$> D$?X   1H|$0ADH$   H|$0H        I        AHt$`H|$0AD0d$?Ht$`H|$0ALD$0   Ht$pHLL$Aׅ^  L$LuE1IMDL9   EI   AIwM)ILC0H0@9W҈u	HHuHD$Ht$PI        LLL$(LD$ HL$NLL\$AHt$`H|$PH        й   LHt$@HH        Ѕ   HD$LL$(HT$@LD$ L\$AL$J<LLAHT$_H1kHH0HHuHt$`H|$PH        Mt $   HT$pHt$PLH        1   HĈ   []A\A]A^A_UIHAWAVAUATSH   H   HhHXt7H        H        @  H        1I        A  I   H8H        I           AՅt"I|$@   H        AՃۃ AH        L(KD4HPMS  H        H        HH`uH               L}1    H        LA} IUIuuI9LH        IF7AVHhA  A   H        H        AWY^  LH`H        Ѕ   RID$HIL$XLMA    HpjHXI        H`jPAH tH        H        u  nIt$x   H}H        ЅuPID$IL$LMMHpjHXH`jPAH tGH        H        ~  H        1I        AH                   HPH}H        ЅuH        H        HItHǉHpH        Ѕt!H        L     H        LMm 1He[A\A]A^A_]UH        HAWIAVIHֺ   AUIH}ATMSH8]LELEuMu,H              1TʉTHHuPHELLMLLjHLjPH        H 1҅tH        BAۉEȋD9tH        	   1H        HHu1He[A\A]A^A_]AUIATAUHSQuH     HGH}H        Há        Ht:DcHkH{HLH        H        HHH        1Z[]A\A]ATUHSH   ~2H:H        Ht_HǺ   HH        Hy`AH        H        L H        HAԾ  HH        Ѕu           HH        HMy th   HH0H9}SDL|LApAP DODFW AApFAWW@
DLƃW
MAA	DH1y     u0҅u1҃9 HHH        H   []A\PH        1H        H        I        H        I        H        H        H        H        H        ZH        H     H        H     H        H8H                                                        r                                       h                                       p                                                                       Unexpected key size %lu
 zfs fs/zfs/zfscrypt.c key loading failed
 no decryption key available MAC verification failed Enter ZFS password:  Import ZFS wrapping key stored in FILE. [-h|-p|-r] [FILE] zfskey raw Assume input is raw. hex Assume input is hex. passphrase Assume input is passphrase.   LICENSE=GPLv3+  crypto pbkdf2 extcmd zfs gcry_sha1 gcry_rijndael zfscrypt                                                                                                                                  u                  ;                                                        	                      
                                       5                      A                      T                      a                      x                                                                                                                                                                                                                          %                     <                     H                     W                     i    G
             z                                                                                                                                                    grub_mod_init grub_mod_fini grub_crypto_ecb_encrypt grub_strlen grub_crypto_pbkdf2 grub_memmove grub_unregister_extcmd grub_xputs grub_crypto_cipher_open grub_zfs_load_key grub_errno _gcry_cipher_spec_aes grub_memset grub_crypto_gcry_error grub_crypto_memcmp grub_file_read grub_password_get _gcry_digest_spec_sha1 grub_malloc grub_file_open grub_real_dprintf grub_zfs_add_key grub_error grub_free grub_register_extcmd grub_gettext grub_memcmp grub_zfs_decrypt grub_crypto_cipher_set_key                                                                                                                                   F                    z                                                                                6                    @            {                           +            {       G                                {                           1                    ;                   J                   V                    t                    ~         #                                                                                                                                 A                    h                    r                             %                       <                  /                                              ^            /       h                   w                                                                                                                                %                               	                     @	                    	            C       	            <      	                    
            _        
                    n
                    |
                    
                    
                   
                   
                                                                         w       *         "           D                    S                    e                                                    =	      '         $           1                  ;                    E                    O                   Y                   c            
      m                   w         !                                        $                                                                                            0                    H                    X                    p                                 
       .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                        @                                          @                                               +                                                         &      @                                                3      2                     &                            B                                                          H                                                         X                                                         ]                            1                              f                      9      	                                                    H                                	                                                                               8      o                                                                                                                                                                                                                                                      boot/grub/x86_64-efi/zfsinfo.mod                                                                    0000600 0001750 0001750 00000024620 13417732100 0015310 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   ELF          >                    &          @     @   ATI        US19}H        1A[]A\AWAVAUI        ATIUHH        SHHAIơ        M  H        LI        Aׅu_H        HAHHE H        AI$H} HtHu"H        I<$HE     I$    1   H        LAׅuH        HH        E1I        ЉD$D9l$~LH        HAIHLHH        LH        H}  tI<$ hIH[]A\A]A^A_UHAWAVAAUATSH(HE    HE    HE    "H           1H        =  IH:H        Há          HH        IHH        M  HuLH        о)   AI} H        HtHpIu EuHULH        ALH        ED}  H        H}H        HIu5H        8    H        	   1H           H        H}H        HItHHUHuH        LH}HEH        H        HuH        HHLEI        H        MuI        MLWI        H        VLP1RHUAH HIu        MAtHI}H        HH        1H        LLH}H}1He[A\A]A^A_]ATH        I        UHS   HHT$H        HAԅt0H        H        HT$H        HAԅt1H        H        HT$H        HAԅt1H        H        HT$H        HAԅtH        H        ЅtH        H        H        H        H1[]A\AWI        AVAUATI        UHSH        H(AHIu)AH        H        С          H        HI        Aօ%  I        AH        A։HH        H        HAIŉAMuH        ALH        1H        H        HA׉H$AH<$ uH        AH4$H        1H        HH        AHŉAHuH        AHH        1H        LH        HH<$  H        LAօH        LD$AօAt|$ Q  H        HH        Ѐ|$ $tH        H        @Et;HT$H        HH        Ht$H        1H        ҉Aԃ<$ H        H           4$H        1I        E1A׉HH        ЍCD$H        LHH        IƉAMDuH        1A1H        1ALt$H        LH        ID9,$ ALH        1H        1H([]A\A]A^A_AUATUSH(HD$    "H           1H          H*HI        } (u5HI        AԀ|)uH;HAHHtBHAD H;AHHt'HH        I        HHAHu        o  Ht$HH        ЉHH        Ѕۉ@  H        H|$H        HH        uH        HH        1H        HT$H        H|$H        ՅuH        Ht$H        1H        H|$HT$H        ՅH        t#HD$H        HwH        H<H        H|$H        HHuH        HǾ   H        HAH|$A1H([]A\A]SE1H        H        H        H        H        E1H        H        H        H        H        [H        SH        H        H8H        H8H[                                                                           type disk phys_path devid mirror children " ,diskdevid="  ,bootpath=" one argument expected name No poolname found vdev_tree zfs-bootfs=%s/%llu%s%s%s%s%s%s %s
 removed Virtual device is removed faulted Virtual device is faulted offline Virtual device is offline Virtual device is degraded Virtual device is online 
 Incorrect virtual device: no type available Leaf virtual device (file or disk) Bootpath: unavailable
 Bootpath: %s
 path Path: unavailable Path: %s
 Devid: unavailable Devid: %s
 raidz This VDEV is a mirror nparity This VDEV is a RAIDZ%llu
 Incorrect VDEV VDEV with %d children
 VDEV element number %d isn't correct
 VDEV element number %d:
 Unknown virtual device type: %s
 Pool name: unavailable Pool name: %s
 pool_guid Pool GUID: unavailable Pool GUID: %016llx
 state Unable to retrieve pool state Unrecognized pool state No virtual device tree available Print ZFS info about DEVICE. DEVICE zfsinfo Print ZFS-BOOTFSOBJ or store it into VARIABLE FILESYSTEM [VARIABLE] zfs-bootfs Pool state: active Pool state: exported Pool state: destroyed Pool state: reserved for hot spare Pool state: level 2 ARC device Pool state: uninitialized Pool state: unavailable Pool state: potentially active        LICENSE=GPLv3+  zfs zfsinfo                                                                                                                          
      {            z      -                                                        	                      
                                       )                      4                      C                      T                                                                                                                                                                                                                                                *                     H                     Z                     e                                                                                                                                                    grub_mod_init grub_mod_fini grub_strlen grub_puts_ grub_xasprintf grub_device_open grub_zfs_nvlist_lookup_nvlist_array_get_nelm grub_zfs_fetch_nvlist grub_strdup grub_file_get_device_name grub_xputs grub_errno grub_register_command_prio grub_printf grub_unregister_command grub_strcmp grub_strchr grub_zfs_nvlist_lookup_string grub_device_close grub_error grub_zfs_nvlist_lookup_uint64 grub_free grub_printf_ grub_env_set grub_zfs_nvlist_lookup_nvlist_array grub_zfs_getmdnobj grub_zfs_nvlist_lookup_nvlist                                               6                     I                    `                     s                                                                                                                                      #                                    !           8            #       T            .       c                                H                                                                                       "                    >                    V                    }         "                                           ^                                                           c                                       u                #           +            .       F            ,       P            .       _            ;       s            ,       }            <                   ;                                                                                                                               5                    ?                    `                   v                                                                                                                                                                                                                    !            #      +                    7                    A            <      Z                    j                    {                               >                                                                                                                     j                   1                         )                  ;                  G                    S                  s                                                                                                                                                                                            >            #       K                    a                  k                                                                                                            /                                      >                                      1                  #       &         !           B            U      S            {      i            V      x                                                                      H                                               	                    U	                    _	                    x	                    	                    	                    	            ^       	                    	                    	                  	                  	                    
                  
                    -
                  @
                  L
                    b
                  p
                  
            4      
                    
            u       
         #           
            L      
            V                                      m                        #                  -                  <                   F                  P                  Z                  d                  q                    }                                                                                                                                  &                    I      (             h      0                   8                    .symtab .strtab .shstrtab .rela.text .rela.rodata .rodata.str1.1 .data .module_license .bss .moddeps .modname                                                                                        @                                          @               p      p                          +                           @                              &      @               $                                 3      2               0                                  B                                                          H                                                         X                                                          ]                                                           f                                                                                      `                          	                      p                                                         %      o                                                                                                                                              boot/grub/x86_64-efi/moddep.lst                                                                     0000600 0001750 0001750 00000011404 13417732100 0015121 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   videotest: font video gfxmenu
odc: archelp
loopback: extcmd
macho:
gcry_des: crypto
memrw: extcmd
terminfo: extcmd
part_gpt:
romfs: fshelp
read:
lsefimmap:
aout:
gcry_arcfour: crypto
tftp: net priority_queue
newc: archelp
minix2_be:
elf:
videotest_checksum: font functional_test video_fb
password_pbkdf2: crypto gcry_sha512 pbkdf2 normal
gcry_seed: crypto
pcidump: extcmd
bsd: elf serial crypto gcry_md5 extcmd aout video boot cpuid relocator mmap
sfs: fshelp
reiserfs: fshelp
part_sunpc:
gfxmenu: video_colors trig bitmap_scale gfxterm font normal bitmap video
backtrace:
jfs:
help: extcmd normal
configfile: normal
cbls: cbtable
gfxterm_menu: font functional_test procfs normal video_fb
gcry_idea: crypto
tr: extcmd
ohci: cs5536 usb boot
afs:
spkmodem: terminfo
usb_keyboard: keylayouts usb
xzio: crypto
syslinuxcfg: extcmd normal
search_fs_file:
usbms: scsi usb
test_blockarg: extcmd normal
true:
affs: fshelp
iso9660: fshelp
exfat:
setjmp_test: setjmp functional_test
gfxterm: font video
efinet: net
efi_netfs: bufio
disk:
appleldr: boot
xfs: fshelp
testspeed: extcmd normal
cpio_be: archelp
functional_test: btrfs extcmd video video_fb
sleep: extcmd normal
memdisk:
gcry_rijndael: crypto
mdraid09_be: diskfilter
gettext:
gcry_sha1: crypto
hfspluscomp: gzio hfsplus
cmp:
offsetio:
file: elf macho extcmd offsetio
usbserial_usbdebug: serial usb usbserial_common
video_colors:
morse:
hashsum: crypto extcmd normal
usb:
halt: acpi
gfxterm_background: video_colors bitmap_scale gfxterm extcmd video bitmap
search_fs_uuid:
gcry_dsa: verify mpi
keystatus: extcmd
linux: video boot relocator mmap
geli: cryptodisk crypto gcry_sha512 pbkdf2 gcry_sha256
cmdline_cat_test: font functional_test normal procfs video_fb
part_sun:
cbtable:
pbkdf2_test: functional_test pbkdf2 gcry_sha1
video_bochs: video video_fb
bufio:
usbserial_ftdi: serial usb usbserial_common
legacy_password_test: functional_test legacycfg
cpuid: extcmd
blscfg: extcmd normal
bfs:
hdparm: extcmd
gcry_blowfish: crypto
test:
nilfs2: fshelp
gcry_rsa: verify mpi
cryptodisk: crypto extcmd procfs
nativedisk:
minicmd:
signature_test: functional_test procfs
ata: scsi
udf: fshelp
gzio:
xnu_uuid: gcry_md5
uhci: usb
pata: ata
adler32: crypto
terminal:
ehci: cs5536 usb boot
crypto:
part_bsd: part_msdos
cs5536:
gcry_sha512: crypto
password: crypto normal
fshelp:
sleep_test: functional_test datetime
iorw: extcmd
xnu: macho bitmap_scale extcmd boot video bitmap relocator
mmap:
exfctest: functional_test
zfsinfo: zfs
ldm: part_gpt diskfilter part_msdos
eval: normal
part_dvh:
lssal:
ext2: fshelp
blocklist:
net: priority_queue bufio datetime boot
part_acorn:
videoinfo: video
btrfs: lzopio gzio
lsmmap: mmap
bitmap:
ntfs: fshelp
multiboot: net video boot relocator mmap
gcry_crc: crypto
png: bufio bitmap
jpeg: bufio bitmap
macbless: disk
div_test: functional_test
regexp: extcmd normal
parttool: normal
usbserial_pl2303: serial usb usbserial_common
cpio: archelp
gcry_rmd160: crypto
fat:
ufs1_be:
archelp:
raid6rec: diskfilter
http: net
zfs: gzio
lsefisystab:
minix2:
lsacpi: extcmd acpi
datehook: datetime normal
loadenv: disk extcmd
bitmap_scale: bitmap
probe: extcmd
minix3:
tar: archelp
loadbios:
hfs:
procfs:
boot:
keylayouts:
progress: normal
kernel:
usbtest: usb
relocator: mmap
linuxefi: boot
acpi: extcmd mmap
tga: bufio bitmap
reboot:
serial: extcmd terminfo
zfscrypt: crypto pbkdf2 extcmd zfs gcry_sha1 gcry_rijndael
efi_uga: video video_fb
dm_nv: diskfilter
luks: cryptodisk crypto pbkdf2
font: bufio video
raid5rec: diskfilter
crc64: crypto
datetime:
efifwsetup: reboot
video:
cbmemc: cbtable normal terminfo
hfsplus: fshelp
gcry_cast5: crypto
extcmd:
squash4: fshelp lzopio xzio gzio
part_plan:
minix_be:
gcry_whirlpool: crypto
gcry_tiger: crypto
fixvideo:
search: search_fs_uuid search_fs_file extcmd search_label
lspci: extcmd
cbtime: cbtable
video_fb:
verify: crypto mpi extcmd gcry_sha1
minix3_be:
trig:
msdospart: disk parttool
priority_queue:
gcry_twofish: crypto
part_dfly:
xnu_uuid_test: functional_test
diskfilter:
testload:
part_apple:
hexdump: extcmd
date: datetime normal
pbkdf2: crypto
gcry_sha256: crypto
ls: extcmd normal
usbserial_common: serial usb
ntfscomp: ntfs
lzopio: crypto
video_cirrus: video video_fb
hello: extcmd
scsi:
cat: extcmd
ahci: ata boot
normal: net terminal crypto bufio extcmd boot gettext
linux16: video boot relocator mmap
ufs1:
mdraid09: diskfilter
lvm: diskfilter
chain: net linuxefi efinet boot
cbfs: archelp
ufs2:
time:
setpci: extcmd
gptsync: disk
search_label:
setjmp:
multiboot2: net video boot relocator mmap acpi
gcry_rfc2268: crypto
mdraid1x: diskfilter
mpi: crypto
legacycfg: crypto password gcry_md5 normal
play:
part_amiga:
efi_gop: video video_fb
minix:
echo: extcmd
lsefi:
gcry_serpent: crypto
gcry_md4: crypto
gcry_md5: crypto
part_msdos:
gcry_camellia: crypto
at_keyboard: keylayouts boot
all_video: efi_gop efi_uga video_bochs video_cirrus
                                                                                                                                                                                                                                                            boot/grub/x86_64-efi/command.lst                                                                    0000600 0001750 0001750 00000007320 13417732100 0015271 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   *acpi: acpi
*all_functional_test: functional_test
*background_image: gfxterm_background
*bls_import: blscfg
*cat: cat
*cpuid: cpuid
*crc: hashsum
*cryptomount: cryptodisk
*echo: echo
*extract_syslinux_entries_configfile: syslinuxcfg
*extract_syslinux_entries_source: syslinuxcfg
*file: file
*functional_test: functional_test
*gettext: gettext
*hashsum: hashsum
*hdparm: hdparm
*hello: hello
*help: help
*hexdump: hexdump
*inb: iorw
*inl: iorw
*inw: iorw
*keystatus: keystatus
*kfreebsd: bsd
*knetbsd: bsd
*kopenbsd: bsd
*list_env: loadenv
*load_env: loadenv
*loopback: loopback
*ls: ls
*lsacpi: lsacpi
*lspci: lspci
*md5sum: hashsum
*menuentry: normal
*pcidump: pcidump
*probe: probe
*read_byte: memrw
*read_dword: memrw
*read_word: memrw
*regexp: regexp
*save_env: loadenv
*search: search
*serial: serial
*setpci: setpci
*sha1sum: hashsum
*sha256sum: hashsum
*sha512sum: hashsum
*sleep: sleep
*submenu: normal
*syslinux_configfile: syslinuxcfg
*syslinux_source: syslinuxcfg
*terminfo: terminfo
*test_blockarg: test_blockarg
*testspeed: testspeed
*tr: tr
*trust: verify
*verify_detached: verify
*xnu_splash: xnu
*zfskey: zfscrypt
.: configfile
[: test
appleloader: appleldr
authenticate: normal
background_color: gfxterm_background
backtrace: backtrace
badram: mmap
blocklist: blocklist
boot: boot
break: normal
cat: minicmd
cbmemc: cbmemc
chainloader: chain
clear: normal
cmp: cmp
configfile: configfile
continue: normal
coreboot_boottime: cbtime
cutmem: mmap
date: date
distrust: verify
dump: minicmd
eval: eval
exit: minicmd
export: normal
extract_entries_configfile: configfile
extract_entries_source: configfile
extract_legacy_entries_configfile: legacycfg
extract_legacy_entries_source: legacycfg
fakebios: loadbios
false: true
fix_video: fixvideo
fwsetup: efifwsetup
gptsync: gptsync
halt: halt
help: minicmd
initrd16: linux16
initrd: linux
initrdefi: linuxefi
keymap: keylayouts
kfreebsd_loadenv: bsd
kfreebsd_module: bsd
kfreebsd_module_elf: bsd
knetbsd_module: bsd
knetbsd_module_elf: bsd
kopenbsd_ramdisk: bsd
legacy_check_password: legacycfg
legacy_configfile: legacycfg
legacy_initrd: legacycfg
legacy_initrd_nounzip: legacycfg
legacy_kernel: legacycfg
legacy_password: legacycfg
legacy_source: legacycfg
linux16: linux16
linux: linux
linuxefi: linuxefi
list_trusted: verify
loadbios: loadbios
loadfont: font
lscoreboot: cbls
lsefi: lsefi
lsefimmap: lsefimmap
lsefisystab: lsefisystab
lsfonts: font
lsmmap: lsmmap
lsmod: minicmd
lssal: lssal
macppcbless: macbless
mactelbless: macbless
module2: multiboot2
module: multiboot
multiboot2: multiboot2
multiboot: multiboot
nativedisk: nativedisk
net_add_addr: net
net_add_dns: net
net_add_route: net
net_bootp6: net
net_bootp: net
net_del_addr: net
net_del_dns: net
net_del_route: net
net_efi_add_addr: efi_netfs
net_efi_bootp6: efi_netfs
net_efi_bootp: efi_netfs
net_efi_ls_addr: efi_netfs
net_efi_ls_cards: efi_netfs
net_efi_ls_routes: efi_netfs
net_get_dhcp_option: net
net_ipv6_autoconf: net
net_ls_addr: net
net_ls_cards: net
net_ls_dns: net
net_ls_routes: net
net_nslookup: net
normal: normal
normal_exit: normal
outb: iorw
outl: iorw
outw: iorw
parttool: parttool
password: password
password_pbkdf2: password_pbkdf2
play: play
read: read
reboot: reboot
return: normal
rmmod: minicmd
search.file: search_fs_file
search.fs_label: search_label
search.fs_uuid: search_fs_uuid
setparams: normal
shift: normal
source: configfile
terminal_input: terminal
terminal_output: terminal
test: test
testload: testload
time: time
true: true
usb: usbtest
videoinfo: videoinfo
videotest: videotest
write_byte: memrw
write_dword: memrw
write_word: memrw
xnu_devprop_load: xnu
xnu_kernel64: xnu
xnu_kernel: xnu
xnu_kext: xnu
xnu_kextdir: xnu
xnu_mkext: xnu
xnu_ramdisk: xnu
xnu_resume: xnu
xnu_uuid: xnu_uuid
zfs-bootfs: zfsinfo
zfsinfo: zfsinfo
                                                                                                                                                                                                                                                                                                                boot/grub/x86_64-efi/fs.lst                                                                         0000600 0001750 0001750 00000000326 13417732100 0014262 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   affs
afs
bfs
btrfs
cbfs
cpio
cpio_be
exfat
ext2
fat
hfs
hfsplus
iso9660
jfs
minix
minix2
minix2_be
minix3
minix3_be
minix_be
newc
nilfs2
ntfs
odc
procfs
reiserfs
romfs
sfs
squash4
tar
udf
ufs1
ufs1_be
ufs2
xfs
zfs
                                                                                                                                                                                                                                                                                                          boot/grub/x86_64-efi/partmap.lst                                                                    0000600 0001750 0001750 00000000157 13417732100 0015320 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   part_acorn
part_amiga
part_apple
part_bsd
part_dfly
part_dvh
part_gpt
part_msdos
part_plan
part_sun
part_sunpc
                                                                                                                                                                                                                                                                                                                                                                                                                 boot/grub/x86_64-efi/parttool.lst                                                                   0000600 0001750 0001750 00000000021 13417732100 0015506 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   msdos: msdospart
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               boot/grub/x86_64-efi/video.lst                                                                      0000600 0001750 0001750 00000000051 13417732100 0014753 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   efi_gop
efi_uga
video_bochs
video_cirrus
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       boot/grub/x86_64-efi/crypto.lst                                                                     0000600 0001750 0001750 00000001650 13417732100 0015173 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   RIJNDAEL: gcry_rijndael
RIJNDAEL192: gcry_rijndael
RIJNDAEL256: gcry_rijndael
AES128: gcry_rijndael
AES-128: gcry_rijndael
AES-192: gcry_rijndael
AES-256: gcry_rijndael
ADLER32: adler32
CRC64: crc64
ARCFOUR: gcry_arcfour
BLOWFISH: gcry_blowfish
CAMELLIA128: gcry_camellia
CAMELLIA192: gcry_camellia
CAMELLIA256: gcry_camellia
CAST5: gcry_cast5
CRC32: gcry_crc
CRC32RFC1510: gcry_crc
CRC24RFC2440: gcry_crc
DES: gcry_des
3DES: gcry_des
DSA: gcry_dsa
IDEA: gcry_idea
MD4: gcry_md4
MD5: gcry_md5
RFC2268_40: gcry_rfc2268
AES: gcry_rijndael
AES192: gcry_rijndael
AES256: gcry_rijndael
RIPEMD160: gcry_rmd160
RSA: gcry_rsa
SEED: gcry_seed
SERPENT128: gcry_serpent
SERPENT192: gcry_serpent
SERPENT256: gcry_serpent
SHA1: gcry_sha1
SHA224: gcry_sha256
SHA256: gcry_sha256
SHA512: gcry_sha512
SHA384: gcry_sha512
TIGER192: gcry_tiger
TIGER: gcry_tiger
TIGER2: gcry_tiger
TWOFISH: gcry_twofish
TWOFISH128: gcry_twofish
WHIRLPOOL: gcry_whirlpool
                                                                                        boot/grub/x86_64-efi/terminal.lst                                                                   0000600 0001750 0001750 00000000242 13417732100 0015462 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   iat_keyboard: at_keyboard
iserial: serial
iserial_*: serial
oaudio: morse
ocbmemc: cbmemc
ogfxterm: gfxterm
oserial: serial
oserial_*: serial
ospkmodem: spkmodem
                                                                                                                                                                                                                                                                                                                                                              boot/grub/x86_64-efi/modinfo.sh                                                                     0000600 0001750 0001750 00000004201 13417732100 0015111 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   #!/bin/sh

# User-controllable options
grub_modinfo_target_cpu=x86_64
grub_modinfo_platform=efi
grub_disk_cache_stats=0
grub_boot_time_stats=0
grub_have_font_source=1

# Autodetected config
grub_have_asm_uscore=0
grub_i8086_addr32=""
grub_i8086_data32=""
grub_bss_start_symbol=""
grub_end_symbol=""

# Build environment
grub_target_cc='gcc'
grub_target_cc_version='gcc (GCC) 4.8.5 20150623 (Red Hat 4.8.5-36)'
grub_target_cflags=' -Os -Wall -W -Wshadow -Wpointer-arith -Wundef -Wchar-subscripts -Wcomment -Wdeprecated-declarations -Wdisabled-optimization -Wdiv-by-zero -Wfloat-equal -Wformat-extra-args -Wformat-security -Wformat-y2k -Wimplicit -Wimplicit-function-declaration -Wimplicit-int -Wmain -Wmissing-braces -Wmissing-format-attribute -Wmultichar -Wparentheses -Wreturn-type -Wsequence-point -Wshadow -Wsign-compare -Wswitch -Wtrigraphs -Wunknown-pragmas -Wunused -Wunused-function -Wunused-label -Wunused-parameter -Wunused-value  -Wunused-variable -Wwrite-strings -Wnested-externs -Wstrict-prototypes -g -Wredundant-decls -Wmissing-prototypes -Wmissing-declarations  -Wextra -Wattributes -Wendif-labels -Winit-self -Wint-to-pointer-cast -Winvalid-pch -Wmissing-field-initializers -Wnonnull -Woverflow -Wvla -Wpointer-to-int-cast -Wstrict-aliasing -Wvariadic-macros -Wvolatile-register-var -Wpointer-sign -Wmissing-prototypes -Wmissing-declarations -Wformat=2 -m64 -freg-struct-return -mno-mmx -mno-sse -mno-sse2 -mno-3dnow -fno-dwarf2-cfi-asm -fno-asynchronous-unwind-tables -mcmodel=large -mno-red-zone -Qn -fno-stack-protector -Wtrampolines'
grub_target_cppflags=' -Wall -W -I$(top_srcdir)/include -I$(top_builddir)/include  -DGRUB_MACHINE_EFI=1 -DGRUB_MACHINE=X86_64_EFI -m64 -nostdinc -isystem /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include'
grub_target_ccasflags=' -g -m64'
grub_target_ldflags='-static -m64 -Wl,-melf_x86_64 -Wl,--build-id=none'
grub_target_strip='strip'
grub_target_nm='nm'
grub_target_ranlib='ranlib'
grub_target_objconf=''
grub_target_obj2elf=''

# Version
grub_version="2.02~beta2"
grub_package="grub"
grub_package_string="GRUB 2.02~beta2"
grub_package_version="2.02~beta2"
grub_package_name="GRUB"
grub_package_bugreport="bug-grub@gnu.org"
                                                                                                                                                                                                                                                                                                                                                                                               boot/grub/locale/ast.mo                                                                             0000600 0001750 0001750 00000043627 13417732100 0014025 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                             ,    <      X    Y     ^  !   p       7                    !        7     Q     h                                             6     H     [  !   b                                
   #     .     <     I     b     ~       +          #        "  $   9     ^     x  '     9               
   &     1  +   >     j                                               )        I     ^  '   {  P               "        0     B     R  %   j  +                    !             3     ?     ]     y                                2   !     T  8   n                      3     +   /     [     p                          }                 )                        /     E     Y     r            "     '                  0  )   A     k  &     )     ^     ^   1  _     >     D   /   !   t   '      -            )   !  ,   6!     c!     |!     !  E   !     !     "     '"     B"      a"     "  :   "     "     "  0   #     6#     K#     h#     #  -   #     #     #     #  <   #     ;$     I$  '   P$     x$     $  '   $  -   $  '   $  '   %  .   E%  B   t%     %  	   %     %     %     %     &     &  )   -&  0   W&  6   &      &     &  "   &     '  1   >'  7   p'  /   '     '     '     (  F   /(    v(  @  *     D+  $   U+     z+  =   +     +  
   +     +  +   ,     8,     W,  $   o,      ,     ,     ,     ,     -     -  *   1-  ,   \-     -     -     -  #   -     -      .  '   .  +   @.  '   l.  )   .     .     .     .  "   .     /     -/      I/  !   j/     /  $   /     /     /     0     0  3   90  I   m0     0  +   0  
    1     1  =   1     V1     o1     1     1     1     1     1  )   1     2     (2  =   E2     2  (   2  '   2  J   2     43     73  4   P3     3     3     3  1   3  8   4     >4     Z4     r4  )   4  #   4     4  #   4      
5     +5     B5  "   T5  '   w5  '   5  &   5      5  @   6  &   P6  G   w6     6     6     6     7  @   7  5   _7     7     7  "   7     7  5   7     *8     9  #   $9     H9     _9  *   n9     9     9     9     9     9     :     ):     A:      ^:  8   :  5   :     :     	;     ;  7   4;  #   l;  ,   ;  2   ;  i   ;  i   Z<  j   <  J   /=  W   z=  "   =  (   =  /   >  )   N>  *   x>  1   >     >  &   >     ?  L   8?  &   ?  #   ?  $   ?  '   ?  5   @     S@  K   k@  ,   @     @  :   @     9A  !   RA     tA     A  ;   A     A      B     B  :   6B     qB     B  /   B     B     B  ,   B  A   C  '   ZC  .   C  /   C  N   C     0D     ?D      LD     mD     vD     D     D  )   D  6   D  B   E  $   VE  %   {E  2   E  %   E  C   E  B   >F  8   F     F  &   F  (    G  m   )G     ^          I                           {   /   |   +                 2      4   k   [      U   d      3   "   9            1      0   c                 B          Y          =   x   .   Z      :   ?          5                                 Q                     _             M      -                ,            V             K   L      e          C      i   $   ;          X       b                           p   w          F                                    t   }   @           R   '         6      P       r         s   `                               	                     S   !   J         7                                 y   v             *         D   u       \             (       #          E                         a   T                     m          G   8      O       h   
   f       >           q   o      %   W       n                ~          z   j   g   ]             l   A                       <   H   )             &   N    %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with kFreeBSD %s - Last modification time %d-%02d-%02d %02d:%02d:%02d %s -l | -r | [-s] grubdev osdisk. ADDR ADDR VALUE [MASK] Ask for file name to reboot from. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting a command list Change configured devices. Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check key modifier status. Clear the screen. Compare two files. DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DIRECTORY [OSBundleRequired] Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Display a line of text. Display output on all consoles. Display the usage of this command and exit. Display this help and exit. Do not output the trailing newline. Do not print messages. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. ESC at any time exits. EXPRESSION EXPRESSION ] Enable interpretation of backslash escapes. Enter in KDB on boot. Enter password:  Enter username:  Evaluate an expression. Exit from GRUB. FILE FILE1 FILE2 Filesystem cannot be accessed Filesystem type %s Fix video problem. Freeze ATA security settings until reset. GNU GRUB  version %s Get/set ATA disk parameters. Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. ID Invalid device `%s'.
 Invoke user configuration routing. List PCI devices. List all files. List devices and files. List memory map provided by firmware. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load Linux. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load a multiboot 2 kernel. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load another boot loader. Load another config file without changing context. Load another config file. Load host ACPI tables and tables specified by arguments. Load initrd. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load variables from environment block file. Loading Linux %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... MODULE Manage the BIOS drive mappings. Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s NUMBER_OF_SECONDS No device is specified.
 PARTITION COMMANDS Partition %s: Perform both direct and reverse mappings. Play a tune. Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Press any key to continue... Print a block list. Print drive identity and settings. Print sizes in a human readable format. Read only LENGTH bytes. Reboot the computer. Remove a module. Reset all mappings to the default values. Retrieve device info. Save read value into variable VARNAME. Save variables to environment block file. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set a variable to return value. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set drive to sleep mode. Set drive to standby mode. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Show a help message. Show a long list with more detailed information. Show loaded modules. Show the contents of a file. Show the current mappings. Show this message. Skip offset bytes from the beginning of file. Specify filename. Test USB support. Test video subsystem. The highlighted entry will be executed automatically in %ds. USER PASSWORD Usage: Use GDB remote debugger instead of DDB. Use serial console. Verbose countdown. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Your embedding area is unusually small.  core.img won't fit in it. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [ENVVAR] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [PATTERN ...] [[year-]month-day] [hour:minute[:second]] attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again cannot compress the kernel image cannot read `%s' correctly diskboot.img size must be %u bytes no terminator in the core image non-sector-aligned data is found in the core file the first sector of the core file is not sector-aligned the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small unable to identify a filesystem in %s; safety check can't be performed Project-Id-Version: grub-1.97+20110101
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2011-02-05 16:04+0100
Last-Translator: Marquinos <maacub@gmail.com>
Language-Team: Asturian <ubuntu-l10n-ast@lists.ubuntu.com>
Language: ast
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8bit
X-Poedit-Language: asturian
 %s paez contener un sistema de ficheros %s que nun sabi cómo acutar espaciu pa l'arranque estilu DOS. Instalar GRUB ehí podría probar una DESTRUCCIÓN DEL SISTEMA DE FICHEROS si se sobreescriben datos pervalibles per aciu de grub-setup (--skip-fs-probe desactiva esta comprobación; úsalu baxo la to responsabilidá) %s, con Linux %s %s, con Linux %s (mou recuperación) %s, con kFreeBSD %s - Hora de cabera modificación %d-%02d-%02d %02d:%02d:%02d %s -l | -r | [-s] grubdev osdisk. DIREICIÓN ADDR VALOR [mázcara] Entrugar pol nome del ficheru pa reaniciar. Arrancar un sistema operativu. Arrancar en mou únicu. Arrancar con mensaxes de depuración Arrancar con mensaxes detallaos. Arrancar una llista d'órdenes Camudar preseos configuraos. Comprobar tecla Alt Comprobar tecla Ctrl Comprobar tecla Mayús Comprobar les carauterístiques de la CPU. Comprobar l'estáu del modificador de tecla. Llimpiar la pantalla. Comparar dos ficheros. PRESÉU PRESÉU [PARTICIÓN[+/-[TIPU]]] ... DIREUTORIU [OSBundleRequired] Determinar controlador. Determinar UUID de sistema de ficheros. Determinar etiqueta de sistema de ficheros. Determinar tipu de sistema de ficheros. Determinar el tipu de mapa de particiones Preséu %s: Desactivar ACPI Desactivar SMP. Desactivar tola salida d'arranque. Desactivar/activar SMART (0/1). Amosar una llinia de testu. Amosar salida en toles consoles. Amosar l'usu d'esta orde y colar. Amosar esta aida y colar. Nun amosar la llinia nueva al final. Nun imprentar mensaxes. Nun usar APM pa parar l'equipu. Nun faer res, con ésitu. Nun faer res, ensin ésitu. Nun amosar los mensaxes de diagnósticu d'arranque. Nun carga tables d'anfitrión especificaes na llista separtada por comes. Nun reaniciar, namái parar. Calcar ESC en cualisquier momentu pa colar. ESPRESIÓN ESPRESIÓN ] Activar la interpretación de los escapes de barra invertida. Entrar en KDB al bootear Introduz contraseña:  Introduz nome d'usuariu:  Evaluar una espresión Colar del GRUB. FICHERU FICHERU1 FICHERU2 Nun puede accedese al sistema de ficheros Sistema de ficheros triba %s Correxir problema de vídeu. Conxelar les configuraciones de seguridá ATA hasta reaniciar GNU GRUB  version %s Llograr/afitar parámetros ATA del discu Parar el sistema, si ye dable usar APM. Pa l'equipu. Esta orde nun funciona en toles implementaciones de firmware. ID Preséu inválidu `%s'.
 Invocar configuración d'encaminamientu del usuariu. Llista de preseos PCI. Llista de tolos ficheros. Llista de preseos y ficheros Llistar el mapa de memoria apurríu pol firmware. Llista de variables dende'l ficheru de bloque d'entornu. Cargar imaxe XNU de 64-bit. Cargar volcáu de BIOS. Cargar entornu FreeBSD. Cargar módulu (ELF) del núcleu FreeBSD. Cargar módulu del núcleu FreeBSD. Cargar Linux. Cargar direutoriu d'estensión XNU. Cargar paquete d'estensión XNU. Cargar estensión XNU. Cargar imaxe XNU. Cargar núcleu de multiarranque 2. Cargar un núcleu d'arranque múltiple. Cargar un módulu d'arranque múltiple. Cargar una imaxe de bienvinía pa XNU. Cargar otru cargador d'arranque. Cargar otru ficheru de configuración ensin camudar de contestu. Cargar otru ficheru de configuración. Cargar tables ACPI del anfitrión y tables especificaes por argumentos. Cargar initrd. Cargar núcleu de FreeBSD. Cargar núcleu de NetBSD. Cargar núcleu de OpenBSD. Cargar namái tables especificaes en llista dixebrada por comes. Cargar variables dende'l ficheru de bloque d'entornu. Cargando Linux %s ... Cargando discu RAM inicial... Cargando núcleu de FreeBSD %s ... MÓDULU Xestiona les asignaciones del controlador de la BIOS. Almítese una mínima edición de llinies al estilu BASH. Pa la primer pallabra, TAB amuesa les posibles formes de completar comandos. En cualesquier otru sitiu, TAB amuesa les posibles formes de completar preseos o ficheros. %s NÚMBERU_DE_SEGUNDOS Nun s'especificó dengún preséu.
 ÓRDENES DE PARTICIÓN Partición %s: Realizar asignaciones direutes ya inverses Afinar. Los posibles argumentos son: Les posibles ordes son: Los posibles preseos son: Los ficheros posibles son: Les posibles particiones son: Les posibles coses son: Calca una tecla pa siguir... Imprentar una llista de bloques. Imprenta la identidá del controlador y configuraciones. Imprentar tamaños nún formatu lleíble por humanos. Lleer namái LENGTH bytes. Reaniciar l'equipu. Desaniciar un módulu. Reaniciar toles asignaciones a valores predeterminados. Recuperar información del preséu. Guardar el valor lleíu na variable VARNAME. Guardar variables nel ficheru de bloque d'entornu. Guetar preseos por UUID. Si s'especificó VARIABLE, el primer preséu alcontráu guárdase nuna variable. Guetar preseos por ficheru. Si s'especificó VARIABLE, el primer preséu atopáu guárdase nuna variable. Guetar preseos por etiqueta. Si s'especificó VARIABLE, el primer preséu atopáu guárdase nuna variable. Afitar el xestor avanzáu d'enerxía
(1=baxu, ..., 254=altu, 255=apagáu). Afitar el xestor automáticu d'acústica
(0=apagáu, 128=silenciosu, ..., 254=rápidu). Afitar OEMID de RSDP, XSDT y RSDT. Afitar OEMTABLE ID de RSDP, XSDT y RSDT. Afitar revisión OEMTABLE de RSDP, XSDT y RSDT. Afitar una variable pa devolver el valor. Afitar campu creador pa RSDP, CSDT y RSDT. Afitar revisión de creador de RSDP, CSDT y RSDT. Afitar la unidá en mou dormir. Afitar el controlador pal mou n'espera Afitar el preséu raigañu. Afitar tiempu d'espera
(0=apagáu, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Afitar la direición del puertu serie. Afitar la paridá del puertu serie. Afita la velocidá del puertu serie. Afitar el bit de posa del puertu serie. Afitar el llargor de la pallabra del puertu de serie. Afitar la unidá serie. Afitar la contraseña d'usuariu (testu planu). Non encamentáu ya inseguru. Afitar la variable cola entrada del usuariu. Amuesa un mensaxe d'aida. Amosar una llista llarga d'información con más detalles. Amosar módulos cargaos. Amosar el conteníu d'un ficheru. Amosar asignaciones actuales. Amosar esti mensax. Saltar bytes de desplazamientu dende l'empiezu del ficheru. Especificar nome del ficheru. Comprobar sofitu USB. Comprobar subsistema de vídeu. La entrada resaltada va executase automáticamente en %ds. CONTRASEÑA D'USUARIU Usu: Usar el depurador llonxanu GDB n'arróu de DDB. Usar consola serie. Cunta regresiva detallada. Esperar un númberu específicu de segundos. Esperar por cada tecla primida dempués de cada llinia de salida. Avisu: color de fondu nun válidu `%s'
 Avisu: color de primer planu nun válidu `%s'
 Avisu: fallu de sintasis (falta barra) en `%s'
 La so área d'empotráu ye inusualmente pequeña. core.img nun va caber nella. [-e|-n] CADENA [-f FICHERU] [-f FICHERU] nome_variable [...] [ENVVAR] [OPCIONES] DISCU [OPCIONES] FICHERU_O_PRESÉU [PATRÓN ...] [[añu-]mes-día] [hora:minutu[:segundu]] intentando lleer la imaxe del nucleu `%s' dende'l GRUB intentando lleer la imaxe del nucleu `%s' dende'l GRUB otra vegada nun puede comprimise la imaxe kernel nun puede lleese «%s» correchamente el tamañu de diskboot.img tien de ser de %u bytes nun hai terminador na imaxe principal atopáronse datos non alliniaos con un sector nel ficheru principal el primer sector del ficheru principal nun ta alliniáu col sector los sectores del ficheru núcleu tán enforma estrizaos. el tamañu de «%s» nun ye %u el tamañu de «%s» ye enforma grande el tamañu de «%s» ye enforma pequeñu nun ye dable identificar un sistema d'ficheros en %s; nun puede llevase a cabu una comprobación de seguridá                                                                                                          boot/grub/locale/ca.mo                                                                              0000600 0001750 0001750 00000317264 13417732100 0013622 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                       L     |"    D      [  #   [      [     \     9\     Q\  $   h\     \  6   \     \     \  	   \     \     ]     "]     :]     P]  .   ]]  .   ]  %   ]     ]     ]    ]    ^    _     a  7    a  F   Xa  v   a  +   b     Bb      Sb     tb  !   b     b  ,   b     b     
c  $   c     Dc  *   `c     c     c     c     c     c  
   c  	   c     d  ,   d  ,   Ld  ,   yd  '   d  -   d      d  (   e  (   Fe  )   oe     e     e     e     e     e  "   e  4   f     Pf     Xf  7   ef     f  1   f     f  %   f  '   g  %   Eg  '   kg     g     g     g     g     g     g     g     g     h     %h     7h     Eh     Uh     bh  3   oh     h  $   h     h     h     h     i     i     6i     Ki  -   ci     i  !   i     i     i     j  #   j     :j  `   j  Z   #k     ~k     k     k     k     k     k     k     l     (l     Bl     Yl     sl     l     l     l     l     l     l     l     m     m  %   m     =m     \m     pm     m     m     m     m     m     m  *   n  3   .n     bn  "   }n  8   n     n     n  	   o  #   o     6o     To     go     o     o     o  )   o     o     p     4p  P   Rp     p     p  H   p  &   q     =q     Uq  !   \q  ,   ~q     q     q     q  	   q  !   q  *   r     /r     Gr     \r     nr     r  $   r     r     r     r     s      s     ;s  
   Ys  
   ds     os  1   s     s     s     s     s  3   t  >   8t  $   wt     t     t     t     t     u     #u  +   7u     cu     u  #   u     u     u  $   u     v     6v  '   Rv  9   zv     v     v  z   v     fw     mw  8   w     w  
   w     w     w     x     #x     x  +   x     y     y     3y  "   Fy     iy     zy  (   y     y     y     y     y     y     z  "   !z  0   Dz     uz     zz     z  7   z     z     z     z     z     {     {  0   {     O{     c{     u{     {  2   {  %   {     {  *   |  6   ;|  +   r|     |     |     |  !   }  d   }  e   '~  d   ~  i   ~  o   \  H             (     >     O     b     x            #                    1   .  )   `                 /                    5   (     ^     }  K                       3     8  '   =  P   e          Ճ  	                    '   !  +   I     u       )        ̄                     1     I     _  $   t            "   ƅ            (     "   +  +   N  -   z               І            O        S     i                 %          )     !   )  "   K     n       +        ͈            !        (     D     ]     i                     ω          	       4   -     b                    Ɗ                     0  !   Q     s  4     M     2        C     ]  *   {  8        ߌ                    2  3   J  $   ~  +        ύ                         /      K     l            D               7     ;   C            !               s                       А                    *     ;                    Ē     ˒     ג            '   &  
   N     Y     h     ~                      H   Γ          *     F     V  %   e            #                       %      <     ]      |       "     (   ͕       %        8  2   R            #     *   ˖          	  #        2     7  "   I  ;   l  #     <   ̗     	          5  .   C  	   r     |  `          !     )   &     P     X  q   e     י                    (     ;     Q     f       "        ǚ     ߚ               (     >     R     k  #               g   ݛ     E     ʜ       -        /  !   C     e  "   v  '     Q             /     I     ]     k                    ؞               -     E     S     h      {               ˟     ܟ  -        *  "   >  b   a  )   Ġ                 ,   7     d     }  	     "     %        ա     ڡ            &     )   &     P  ^   c     ¢  $   ܢ  %        '  ^   ڣ  _   9  }          )   Υ  '     >      D   _  !     '   Ʀ  -     #        @  )   `       )     )   ѧ  ,        (     H     a     |       E     $     A     )   U                    ө             q   (       :                       ?     \     s            0             	       )   4  &   ^                    Ь  )          %   &  %   L  ,   r  '     :   ǭ       -   !     O  .   _            '     "   ݮ                )  *   7     b     j  )   q            6   n       0         ݰ  !     "      #   C     g     y       !        ر  
          <     %   P     v                 d   ˲  *   0  0   [  6        ó     ˳     ٳ                 0   "     S  !   f            $        ܴ               *     ;  $   X  "   }  $        ŵ     ڵ                $     6     H     Z     g            '        ߶       $     +   =  "   i       )             Ϸ               "  '   6     ^     }       <                     m   '               ʹ            +     3   C  1   w       '     -   ߺ       '     '   >  .   f  	                  Ի               (     D     _     z            *     ?   ߼  B     /   b            .     O     )   <     f     |  	          5                       )     D  :   ^                    ɿ     п     ߿                      	   *     4     C     \     q                      
     
     	          !     )        /     C     U     u  F     N        (  "   6     Y     ^  -   p  -     $     #     0     6   F     }       (     1     )        #     2  !   I     k             %          &             3      Q  7   r  .     4             +     @     [     p  %                                 /     >     G  ,   d                                #        +     E  B   _                              #  &   ?     f                      &                  ,     <  ;   P  V     "     &     !   -     O     f     k  H     F     (        B     ^  I   j  $     '          %        @     F     Z     n  $     '     *                  !  J   9                 -     +        )  $   /     T  "   ]  +     J     %              5  "   V     y                               	          6  %   Q     w            %                  !     5     =  [   Q       !                            2     ?     R     j                                        +     B     T     q            1                       $     9     O       1        Q  0   o            !          "   
     -     C     \     o                                                    &   ,     S     o            '     &          L        h       !                       
          1     A     R     g     v  #     #     $               &        9  !   H     j     ~                 	     7          %     [   ?  w     7     K   K  #     /                  $  &   B  U   i  @     Q         R     k       +          R     L   2  .               F             '     >     T     l                            2     !   5  #   W     {                                   (     G  (   e  #     )          '     '     '   G     o  0          -     8        D     \  !   s                  .          !   .  B   P  E     B         $     *          2        C  (   _       G               
          $   -     R     r       3     4     0        4     8  8  D  #  }  =         C     _   C       6   <     s  )          *          0   	     :     T  -   k  "     7                       1  "   F  
   i  	   t  &   ~  ,     8     ,     ,   8  -   e  #     -     -     .     &   B  &   i  
     	     	     *     :               @   .     o  7   x       7     :     7   B  :   z            +          %        *     /  
   E  "   P     s                      6          +         L     h                           0        3  2   O  )     -     "     -        +  s     d   A        !                          %   %  !   K     m       $                %          $   6  /   [                      F     C        :      M  #   n                  !     ,     >   =  O   |  *     )     M   !     o  (     	     ,     (         &   ! 3   H    |     5    &    (    %   0 _   V           Z    &   S    z 
    "    =                   2 :   > ?   y                    - 0   H    y     (    ,    )     )   *    T 
   c    n ;            +    #    8   7 V   p 7               ; %   V '   |     $        (   	    .	    N	    d	 *   ~	    	    	 8   	 R   
    i
 %   
    
 	   0    : O   T     
             %       ! ,    ;       Q    q     *            P       W    n                 )    ;       6    =    M 1   c 	                        3       "    :    R    i @    -         B    A   Y 8    (                x   1 {    y   & ~        _            4    O    e "    $        &    3   
 %   > %   d     K    @    	   1    ;    S 1   n              K    '   ? *   g U    1    4    ,   O    |     -    ]    %    	   9 	   C    M "   P    s 2    <        #    8   1 &   j )    (        "        #    @ -   [     #    -            *    '   : 1   b 3                       * o   C                     '  8   C  (   |  3     )     +   !    /!    M! 2   j! &   ! +   !    ! .   " (   =" !   f"    "    " *   " $   "    	# /   !# &   Q#    x#    # <   # +   #    $ "   4$ "   W$ #   z$     $ !   $ +   $ $   %     2% $   S% S   x% n   % B   ;& )   ~& 6   & -   & N   '    \'    n'    '    '    ' G   ' .   ,( 3   [(    (    ( !   ( !   (    ) (   $) ,   M) )   z)    ) #   ) V   )    =*    D* P   L* Q   * 0   * (    + '   I+    q+ +   + s   +    %, (   C,    l,    ,    , "   , *   ,    -    %-    -    . #   .    /    / ,   %/    R/    p/ 5   /    /    /    /    /    /    0    0    00 u   L0    0 !   0    0    1 ;   +1    g1 $   1 A   1 %   1 /   2    C2    c2 1   2 $   2 5   2    3 !   3 !   >3     `3 .   3 7   3 5   3    4    '4 #   ?4 2   c4    4    4 /   4    4    4 4   4 X   25 5   5 [   5    6    /6    O6 A   ]6 
   6    6 p   6    07 .   I7 1   x7    7    7    7    `8    {8    8    8    8    8    9 /   !9 &   Q9 1   x9     9 %   9    9    :    *:    J:    f:    : &   : !   : !   : z   ;    ; %   '< .   M< 5   |<    < %   <    < 9   = 3   K= g   = '   = +   >    ;>    U>    c> $   y> %   > $   > %   > #   ? $   3?    X?    w?    ? "   ? $   ? #   ?    @    /@    ?@ ;   ^@    @ *   @ {   @ 6   aA '   A    A    A 0   A #   $B    HB    OB (   WB )   B    B    B    B    B /   B /   C    2C s   EC     C 4   C :   D    JD s   E w   E    F    F 5   YG ?   G J   G T   H (   oH >   H :   H 3   I -   FI 4   tI    I 0   I 0   I 8   *J -   cJ    J     J &   J    J W   K .   mK `   K ?   K !   =L "   _L $   L 3   L .   L    
M    #M -   M F   M /   )N    YN )   rN &   N    N    N '   O    +O 8   GO -   O    O #   O 0   O 5   !P     WP    xP    P )   P /   P    Q 9   Q 9   VQ @   Q ;   Q S   R $   aR 5   R    R F   R    S %   <S =   bS *   S    S &   S    T 3   T    KT    QT 2   ZT )   T    T E   U    U D   U *   $V +   OV /   {V .   V     V "   V .   W 3   MW    W    W    W 8   W .   X    2X !   9X    [X    zX v   X 6   Y /   :Y F   jY    Y    Y    Y    Y     Z #   Z B   *Z    mZ *   Z %   Z    Z <   Z %   /[     U[ *   v[    [ !   [ =   [ ;   \ 7   V\    \    \ 2   \    \ #   ] "   7] #   Z]    ~]     ] "   ] #   ] :   ^ 6   <^ ,   s^ 7   ^ >   ^ 3   _    K_ (   X_    _ (   _     _    _    _ 3   ` .   C` 1   r`    ` J   ` #   a    0a    <a x   Ta $   a    a (   b %   ;b    ab .   b J   b ?   b    ;c '   Kc A   sc    c %   c +   c 3   d    Bd    Kd    kd "   d #   d "   d #   d !   e "   8e    [e    ue    e *   e K   e K   f /   [f    f    f 1   f S   f /   Eg    ug    g    g !   g 6   g    h    h    4h    Kh     gh B   h    h    h    h 	   i    i    (i    4i    Ri 	   ji 	   ti 	   ~i    i    i    i    i    i 	   j    j    j    j 
   /j    :j    Zj (   lj $   j    j    j %   j "   k d   4k B   k    k (   k    l    #l 4   <l 4   ql 5   l $   l @   m L   Bm    m    m &   m 0   m A   n    Mn %   ^n "   n    n /   n    n /   o    Do 5   _o *   o .   o '   o V   p D   np N   p *   q    -q $   Hq    mq -   q )   q ,   q ,   r    <r    Yr     yr    r 
   r >   r F   r    Es    Vs %   ls    s "   s    s 0   s '   t +   Ft h   rt *   t )   u    0u '   Iu    qu %   u .   u '   u    v 
   v    'v    Bv *   _v    v /   v    v    v G   w f   Ww -   w 1   w .   x    Mx    mx 0   qx O   x h   x ;   [y #   y    y R   y 4   z /   Oz #   z 0   z    z    z    z    { .   -{ 8   \{ G   { ,   {    
|    | I   9|    |    |    | C   | :    }    [} -   a} 
   } 2   } A   } J   ~ 0   Z~ $   ~ B   ~ A   ~    5 0   U     &         (           5 *   T 9    "    !   ܀      0       P    l             w   ȁ    @ (   X "            *   Â     #    !   '    I "   h !    $    ,   ҃     &    !   C     e     ,       τ      *    A   :    |                ޅ        Ԇ 6    &   # ?   J         -   Ň !    $       :    T *   q     -    ,    0    +   D (   p '    )    &    *       = *   \         $   Ŋ !    *    1   7    i E   w        ݋ /    %   ,     R $   s     9    #    %   	     /    P    m 3    3    <    *   / ;   Z 6    '   ͎ .    :   $    _    }              =    !    $    [   @     D   & `   k (   ̑ 8       .     J "   k *    h    E   " a   h    ʓ )    *    <   : 6   w o    _    @   ~        ٕ W   ߕ (   7    `    { "    )        1    %   4 /   Z *    B    (    -   !    O    d     .    +   Ø 0    +     0   L 2   } 1    <    <    ,   \ <    :   ƚ >    +   @ ?   l *    H   כ Q     &   r     (    %   ߜ 2       8 F   L !        K   ՝ F   ! K   h    z        V  A  P                            ,      i                     %       Z     L      #          Y    b                       q      Z     1          4            M              "                      R  L  F  U              ~    K            /                        P            U       j  p   )  X  E     '             H     F                          .  8                G       +        -                       	  `  .           T         2           
  "   r    8                               ?        j   (  z  l               .                      5  E                K       Z             t         =             {      u  H      :  M  $   d  `        7                             #         Y     ;    	          b                      O        \    x     -                         [  %        \                      g                    d    P    )                              B          
        9           q      =  4                               #      I        1      n                      D   :      u     r                       6      D    3           Q  }   B               >         a  C            1            B     [                ~         =  	    ~          I                         C  	  >                                     ^               s               b        m      4  x           T          S  ?  N            +    N  _       h  @              '      L                              1         ;          4                          ,      ^      e   <  *       n                          &      $  X  >  P   K              -      @       0  s              i  ;        C                    _     5       e           ^         H               R       7  p      e             &  D      /  }    S                               :      /  h                             z      9      s              I  D                  ~      u  /               B       v       $  (                   6      !        s  $          !     d                   v  a                     k         5     W                    |    p  {   l  |         A  p           0         1  ,  ]             U     m            =            d      3  )   [   W              c          i    "        :   =                     2   K     8   0             3             2                          w      n            A        E                                       |      ?    6               G    U            F    x         V        !           X                N         H             y        {          t        L           q            J  r        i   8  +  :                          g    )      t    _  h                                       J      y          }  3               
  o               Q       >        W      '    	   e           ^       0        X                 ?                          k         k        ]              (                 o          5  b                 a     "    %                 <  (    #                           ]                                        O  I  V  v         N                     "            Q              n                         (            O                             9  %             C  t         -    ]          Y   @        Y                     ;  M      l            /      M      \                   *  z    V             w         c       c  #     
        g           G          w    &          S        8          >      h    )              @       o              <                                       J  D                 a           ;       <            ,                   `              m      m      Z     0         2  |  -                            \                   6          y  .  !       9        $                                   ?                       
            R   +      `      %     9  E      *            f       F   g           J  2      K                *               5    r   k       y           u                 l     j  f    o      '   B  *                         C        7     Q        _        4      @  {        T  c      W      +     G            j  7            .     E  q  R  H                &  G  v    F                                    !            w  I          J           x  S                      O         &     }        3                        ,  [      7  '  <  L          f  A            6                A  T                f                   total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: option '%c%s' doesn't allow an argument
 %s: option '%s' is ambiguous; possibilities: %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS Import ZFS wrapping key stored in FILE. Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List coreboot tables. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MODULE MODULES Mail xorriso support requests to <bug-xorriso@gnu.org>. Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Option -- switches to native xorriso command mode. Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show CBMEM console content. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show the contents of a file. Show the current mappings. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 TARGET Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This entry can be booted by any user. Thursday Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME Verbose countdown. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. Your embedding area is unusually small.  core.img won't fit in it. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `cryptomount' command fails: %s `loopback' command fails: %s `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format blocklist FILE blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s cannot compress the kernel image cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot get translator command line for path `%s': %s cannot open OS file `%s': %s cannot open `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. diskboot.img size must be %u bytes do not probe for filesystems in DEVICE domain name component is too long don't update LED state done embed FILE as an early config embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to get canonical path of `%s' failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification install GRUB images under the directory DIR/%s instead of the %s directory install even if problems are detected invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid block size invalid color specification `%s' invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no `/' in canonical filename no command is specified no decryption key available no network card found no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found pre-load specified modules MODULES premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory of TFTP server route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the argument `%s' requires an integer the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use DIR as the EFI System Partition root. use FILE as font for label use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub-2.00+20130519
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-08-18 15:27+0100
Last-Translator: Àngel Mompó <mecatxis@gmail.com>
Language-Team: Catalan <ca@dodds.net>
Language: ca
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=(n!=1);
               memòria toal: %d KiB
     No hi ha cap mode preferit disponible
     Mode preferit: %ux%u
   La suma de verificació de l'EDID no és vàlida   Versió de l'EDID: %u.%u
   No s'ha pogut inicialitzar l'adaptador   No hi ha cap info disponible   informació de la VBE:   versió: %d.%d  rev del programa OEM: %d.%d
   o:   (d'esquerra a dreta)  (centrat)  (de dreta a esquerra)  - La partició comença a %llu%sKiB  - Mida total %llu%sKiB sectors  - Mida total desconeguda  [OPCIONS...] %.*s: el paràmetre ARGP_HELP_FMT ha de ser positiu %.*s: el paràmetre ARGP_HELP_FMT necessita un valor %.*s: el paràmetre ARGP_HELP_FMT és desconegut %ds Falten %ds. %s sembla contenir un sistema de fitxers %s que no sé si pot reservar espai pel sistema d'arrencada de l'estil del DOS. Instal·lar el GRUB pot DESTRUIR EL SISTEMA DE FITXERS si el grub-setup sobreescriu dades importants (--skip-fs-probe deshabilita la comprovació. Utilitzeu-la sota la vostra responsabilitat) %s sembla contenir un LDM i un mapa de particions %s que no és una combinació segura coneguda. Instal·lar-hi el GRUB pot DESTRUIR EL SISTEMA DE FITXERS si el grub-setup sobreescriu dades importants (--skip-fs-probe deshabilita la comprovació. Utilitzeu-la sota la vostra responsabilitat) %s sembla contenir un mapa de particions %s que és sabut que no reserva espai pel sistema d'arrencada de l'estil del DOS. Instal·lar-hi el GRUB pot DESTRUIR EL SISTEMA DE FITXERS si el grub-setup sobreescriu dades importants (--skip-fs-probe deshabilita la comprovació. Utilitzeu-la sota la vostra responsabilitat) %s és compatible amb els UUIDs %s genera una distribució de teclat pel GRUB fent servir ckbcomp\n ja no és permet l'ús de %s. En canvi, utilitzeu set gfxpayload=%s abans de l'ordre de linux.
 ja no es permet l'ús de %s. No es reconeix el mode VGA %d. En canvi, utilitzeu set gfxpayload=AMPLADAxALÇADA[xPROFUNDITAT] abans de l'ordre de linux.
 el grub-mkconfig encara no és compatible amb el %s.\n %s, amb el Hurd %s %s, amb el Hurd %s (mode de restabliment) %s, amb el Linux %s %s, amb el Linux %s (mode de restabliment) %s, amb Xen %s i Linux %s %s, amb Xen %s i Linux %s (mode de restabliment) %s, amb el Xen hypervisor %s, amb el kFreeBSD %s %s, amb el kFreeBSD %s (mode de restabliment) %s, amb nucli %s (a través de %s) %s, amb nucli %s (a traves de %s, mode de restabliment) %s: EL HASH NO CONCORDA
 %s: CORRECTE
 %s: ERROR DE LECTURA
 %s: Massa arguments
 %s: Heu d'executar-ho com a root\n %s: error: %s: info: %s: l'opció -- «%c» no és vàlida
 %s: l'opció «%c%s» no permet un argument
 %s: l'opció «%s» és ambigua; les possibilitats són: %s: l'opció «--%s» no permet un argument
 %s: l'opció «--%s» necessita un argument
 %s: l'opció «-W %s» no permet un argument
 %s: l'opció «-W %s» és ambigua
 %s: l'opció «-W %s» necessita un argument
 %s: l'opció -- «%c» necessita un argument
 %s: l'opció necessita un argument -- «%s»\n %s: l'opció «%c%s» no és coneguda
 %s: l'opció «--%s» no és coneguda
 %s: avís: (32 bits) (64 bits) (ERROR DEL PROGRAMA) Versió desconeguda!? (ERROR DEL PROGRAMA) S'hauria de reconèixer les opcions!? (a %s) - Etiqueta «%s» - Hora de la darrera modificació %d-%02d-%02d %02d:%02d:%02d %s --MÉS-- -h HASH [-c FITXER [-p PREFIX]] [FITXER1 [FITXER2 ...]] -l | -r | [-s] grubdev osdisk. és compatible amb la interfície protegida de 16 bits
 no és compatible amb la interfície protegida de 16 bits
 és compatible amb la interfície protegida de 32 bits
 no és compatible amb la interfície protegida de 32 bits
 =VAL > RAM d'emmagatzemament no volàtil de l'ACPI RAM que pot reclamar l'ACPI Ha fallat l'ordre d'apagar per l'ACPI ADDR ADDR VALOR [MÀSCARA] ADR [MIDA] ADR1, MÀSC1, [,ADR2,MÀSC2[,...]] ADREÇA SERVIDORDNS L'APM està deshabilitat
 L'APM està desocupat
 L'APM està habilitat
 L'APM està ocupat
 ARGP_HELP_FMT: el valor de %s és menor o igual que %s ASCII Accepta finals de línia CR/NL d'estil DOS. Terminals d'entrada actius: Terminals de sortida actius: Adaptador «%s»:
 Afegeix un servidor DNS Afegeix una adreça de xarxa. Afegeix una ruta de xarxa. Opcions avançades de %s Opcions avançades de %s (amb hypervisor de Xen) Permet interrompre amb ESC. Demana el nom del fitxer des d'on arrencar de nou. S'assumeix que l'entrada és hexadecimal. S'assumeix que l'entrada és una contrasenya. S'assumeix que l'entrada és crua. S'està intentant desxifrar la clau mestra... Esteu intentant instal·lar el GRUB amb múltiples etiquetes de particions o ambdues etiquetes de partició i de sistema de fitxers. Encara no se'n permet l'ús. Esteu intentant instal·lar el GRUB en un disc amb múltiples etiquetes de particions. Encara no se'n permet l'ús. Esteu intentant instal·lar el GRUB a un disc sense particions o a una partició. És una MALA idea. Terminals d'entrada disponibles: Terminals de sortida disponibles: BIOS_DUMP [INT10_DUMP] BLOC BYTE:BIT Mode d'imatge de fons. Directori base per la llista de hash. Arrenca el sistema basat en BIOS. Arrenca un sistema operatiu. Arrenca en mode simple. Arrenca amb missatges de depuració. Arrenca amb missatges detallats. S'arrenca «%s» S'està arrencant una llista d'ordres S'arrenca en mode cec. Camí del directori d'arrencada: %s
 Camí del directori d'arrencada: no disponible
 Entra al GDB CGA COLOR ORDRE [ARGS] La inactivitat de la CPU no fa disminuir la velocitat del processador
 La inactivitat de la CPU fa disminuir la velocitat del processador
 CS5536 a %d:%d.%d
 No es pot habilitar l'àrea ROM. Canvia els dispositius configurats. Canvia el tipus de partició Comprova la tecla d'alternativa. Comprova la tecla de control. Comprova la tecla de majúscules. Es comprova les característiques de la CPU. Comprova el hash dels fitxers amb el FITXER de llista de hash. Comprova si la CPU és compatible amb el mode de 64 bits (llarg) (per defecte). Comprova l'estat de la tecla modificadora. Comprova si l'usuari és a LLISTAUSUARIS. Comprova els errors de sintaxi del fitxer d'script de configuració del GRUB. Neteja la pantalla. S'ha netejat l'indicador d'actiu a %d. 
 Comandes: Compara el FITXER amb el fitxer local LOCAL. Compara el fitxer «%s» amb el «%s»:
 Compara dos fitxers. Calcula el UUID de XNU del dispositiu. Calcula o comprova la suma de comprovació del hash Configura el port sèrie. Continua els bucles Converteix els fitxers de fonts comunes al format PF2 Copia el FITXER al fitxer local LOCAL. copia el FITXER a la sortida estàndard. No es pot trobar el controlador FPSWA No s'ha pogut trobar el volum físic «%s». Deuen faltar alguns mòduls a la imatge del nucli. No s'ha pogut carregar el sha256 No s'ha pogut carregar el sha512 Crea estructures semblants a una BIOS per mantenir la compatibilitat amb els SO existents. Crea un fitxer de blocs d'entorn buit. tipus de terminfo actuals: DISPOSITIU DISPOSITIU [PARTICIÓ[+/-[TIPUS]]] El DISPOSITIU ha de ser un dispositiu del SO (p.e. /dev/sda). NOM_DISPOSITIU DIR DIRECTORI [NecessitaOSBundle] SERVIDORDNS Eina de depuració pel controlador de sistemes de fitxers. Declara regions de memòria com a memòria defectuosa (badram). El descompressor és massa gran Defineix una entrada del menú. Defineix un submenú. Esborra una adreça de xarxa. Esborra una ruta de xarxa. Esborra el dispositiu de retrobucle especificat. Esborra les variables. Determina el controlador. Determina l'UUID del sistema de fitxers. Determina l'etiqueta del sistema de fitxers. Determina el tipus de sistema de fitxers. Determina el tipus de mapa de particions. Dispositiu %s: Devid: %s
 Devid: no disponible Color directe, màscara: %d/%d/%d/%d  posició: %d/%d/%d/%d Deshabilita l'ACPI. Deshabilita el SMP. Deshabilita totes les sortides d'arrencada. Habilita/deshabilita l'SMART (1/0). Es descarten les particions mal imbricades (%s, %s %s%d) Estadístiques de la memòria cau del disc: encerts = %lu (%lu.%02lu%%), errors = %lu
 El compte de discs ha de precedir al llistat de discs.
 Mostra la versió del FPSWA. Mostra l'estat de salut SMART. Mostra una línia de text. Mostra la llista de blocs del FITXER. Mostra la sortida a totes les consoles. Mostra el mode d'alimentació. Mostra l'ús d'aquesta ordre i surt. Mostra aquesta ajuda i surt. Mostra/modifica el dia i l'hora actuals. No mostris els salts de línia. No mostris missatges. No provis cap disquetera. No utilitzis l'APM per aturar l'ordinador. No facis res, amb èxit. No facis res, sense èxit. No mostris els missatges de diagnòstics de l'arrencada. No carreguis les taules d'amfitrions especificades en llistes separades per comes. No reiniciïs, només apaga. No s'atura després del primer error. No actualitzis l'EBDA. Pot corregir defectes o penjades a algunes BIOS, però el fa ineficaç amb SO que no rebin el RSDP del GRUB. VARENTORN VARENTORN [VARENTORN] ... ERROR: no s'ha trobat cap distribució de teclat vàlida. Comproveu l'entrada.
 En qualsevol moment ESC surt. EXPRESSIÓ EXPRESSIÓ ] Temps transcorregut: %d.%03d s 
 Temps transcorregut: %d.%03d segons 
 No s'ha pogut incrustar. El GRUB només es pot instal·lar d'aquesta manera fent servir llistes de blocs. De tota manera, les llistes de blocs NO SÓN FIABLES i es desaconsella la seva utilització. Emula una seqüència de pulsació de tecles Habilita la interpretació dels caràcters amb contrabarra. Introduïu la contrasenya ZFS:  Entra en KDB a l'arrencar. Entra al mode normal. Introduïu la contrasenya de %s%s%s (%s):  Introdueix la contrasenya:  Introdueix el nom d'usuari:  S'ha produït un error quan s'analitzava els arguments de la línia de comandes
 Avalua una expressió. No s'ha pogut sortir Surt del GRUB. Surt dels bucles Surt del mode normal. Exporta les variables. Exporta les taules de la versió 1 al SO. Exporta les taules de la versió 2 i de la versió 3 al SO. FITXER FITXER [ARG...] FITXER [ARGUMENTS...] FITXER | INTERVAL [TO1 DURADA1] [TO2 DURADA2] ... FITXER... FITXER1 FITXER2 NOMFITXER ORDRE SISTEMAFITXERS [VARIABLE] FITXER|prompt FORMAT el protocol FPSWA no ha pogut trobar la interfície Revisió del FPSWA: %x
 DESDE-FINS[,DESDE-FINS] DES DE[K|M|G] A[K|M|G] Ha fallat l'FT_Init_FreeType No ha pogut arrencar ni l'entrada per defecte ni l'alternativa.
 No s'ha pogut crear l'arbre «device-mapper» S'arrenca alternativament «%s» El sistema de fitxers «%s» no és compatible amb la incrustació Els fitxers són diferents a l'òfset %llu: 0x%x [%s], 0x%x [%s]
 Els fitxers tenen mides diferents: %llu [%s], %llu [%s]
 No es pot accedir al sistema de fitxers. Tipus de sistema de fitxers %s Omple l'MBR híbrid del DISPOSITIU unitat GPT. Les particions especificades seran una part de l'MBR híbrid. Es permeten fins a 3 particions. TIPUS és un tipus de MBR. + significa que la partició és activa. Només es pot activar una partició. S'ha carregat l'emulador EFI. Primer prova el dispositiu PISTA si s'executa sobre l'ARC. Si PISTA acaba en coma, també prova les particions inferiors Primer prova el dispositiu PISTA si s'executa sobre una BIOS. Si PISTA acaba en coma, també prova les particions inferiors Primer prova el dispositiu PISTA si s'executa sobre un EFI. Si PISTA acaba en coma, també prova les particions inferiors Primer prova el dispositiu PISTA si s'executa sobre un IEEE1275. Si PISTA acaba en coma, prova també les particions inferiors Primer prova el dispositiu PISTA si és compatible amb l'accés directe al maquinari. Si PISTA acaba en coma, també prova les particions inferiors Primer prova el dispositiu PISTA. Si PISTA acaba en coma, també prova les particions inferiors Corregeix un problema de vídeo. S'ha trobat %s a %s (%s)\n S'ha trobat %s a %s\n S'ha trobat un GNU Mach: %s S'ha trobat el mòdul del Hurd: %s S'ha trobat un nucli de NetBSD: %s\n S'ha trobat el fons: %s\n s'ha trobat una imatge de initrd: %s\n S'ha trobat el directori de mòduls del nucli: %s\n S'ha trobat un nucli de FreeBSD: %s\n S'ha trobat una imatge de linux: %s\n S'ha trobat el tema :%s\n s'ha produït l'error %d del Freetype mentre es carregava 0x%x per U+0x%x%s Congela la configuració de seguretat ATA fins que es reiniciï. Divendres Versió %s del GNU GRUB Menú d'arrencada del GRUB El GRUB encara no sap com parar aquesta màquina! Emulador del GRUB. DISPOSITIUGRUB=DISPOSITIUPLAN9 Hi ha brossa a ARGP_HELP_FMT: %s Genera una distribució de teclat pel GRUB des de la de la consola de Linux Genera el hash PBKDF2 de la contrasenya Genera un fitxer de configuració del GRUB Genera una imatge independent (que conté tots els mòduls) amb el format seleccionat Calcula la suma de verificació crc32 del FITXER. Recupera la informació de la memòria cau del disc. Llegeix/escriu els paràmetres del disc ATA. HASH PISTA Atura el sistema, si pots, fent servir l'APM. Atura l'ordinador. Aquesta ordre no funciona en totes les implementacions de microprogramari. Tracta N bytes del fitxer de sortida. Hola món Hercules  ID IMATGE1 [IMATGE2 ...] PUNTMUNTATGE CAMÍ_IMATGE COMANDES Importa la clau d'encapsulat ZFS desada al FITXER. Dispositiu virtual incorrecte: no hi ha cap tipus disponible Insereix un mòdul. Instal·la GRUB a la vostra unitat. Ha acabat la instal·lació. No s'ha reportat cap error. La referència anterior no és vàlida El nom de tipus de caràcter no és valid El caràcter de paginació no és vàlid L'ordre %s no és vàlida.
 El contingut de \{\} no és vàlid Dispositiu «%s» invàlid.
 Compte de discs invàlid.
 L'expressió regular precedent no és vàlida El rang no és vàlid L'expressió regular no és vàlida Invoca el camí de la configuració d'usuari. ARGUMENTS KERNEL TECLAT_TECLA Tecla per arrencar ràpid aquesta entrada. Dispositiu leaf virtual (fitxer o disc) no es permet l'ús de l'antic paràmetre «ask». Llegenda: màscara/posició=roig/verd/blau/reservat Longitud del hash generat Longitud de sal Llista els servidors de DNS Llista els dispositius PCI. Llista tots els fitxers. Llista els modes de vídeo disponibles. Si es dona una resolució, mostra només les modes que hi coincideixin. Llista les taules del coreboot. Llista dispositius i fitxers. Llista dispositius o fitxers. Llista els dispositius. Llista els fitxers a CAMÍ. Llista el mapa de memòria proveït pel microprogramari. Llista dels modes de vídeo compatibles: Llista d'usuaris que poden engegar aquesta entrada. Llista o selecciona un terminal d'entrada Llista o selecciona un terminal de sortida. Llista les variables actuals. Llista les fonts carregades. Llista les variables del bloc del fitxer d'entorn. Carrega una imatge del XNU de 64 bits. Carrega l'abocament de memòria de la BIOS. Carrega l'entorn del FreeBSD. Carrega el mòdul del nucli del FreeBSD (ELF). Carrega el mòdul del nucli del FreeBSD. Carrega el kernel.sys de FreeDOS. Carrega el Linux. Carrega el NTLDR o el BootMGR. Càrrega un mòdul del nucli NetBSD (ELF). Càrrega un mòdul del nucli NetBSD. Carrega el nucli Plan9. Carrega el directori de les extensions del XNU. Carrega un paquet d'extensió del XNU. Carrega una extensió del XNU. Carrega una imatge del XNU. Carrega un disc ram XNU. Estarà disponible al SO com a md0. Carrega el bolcat de «device-properties». Carrega una imatge PXE. Carrega una disposició de teclat. Carrega un nucli multiarrencada 2. Carrega un mòdul multiarrencada 2. Carrega un nucli multiarrencada. Carrega un mòdul multiarrencada. Carrega una imatge de presentació pel XNU. Carrega una imatge de XNU hibernada. Carrega i inicia l'emulador EFI. Carrega un altre gestor d'arrencada. Carrega un altre fitxer de configuració però agafa només les entrades del menú. Carrega un altre fitxer de configuració agafant només les entrades del menú però sense canviar el context. Carrega un altre fitxer de configuració sense canviar el context. Carrega un altre fitxer de configuració. Carrega unes altres dades fonamentals de «coreboot». Carrega una imatge de fons al terminal actiu. Carrega les taules d'amfitrions ACPI i les taules especificades per arguments. Carrega l'initrd. Carrega disc de ram kOpenBSD. Carrega el nucli del FreeBSD Carrega el nucli del NetBSD. Carrega el nucli del OpenBSD. Carrega només les taules especificades en llistes separades per comes. Carrega el mateix fitxer de diferents maneres. Carrega les variables del bloc del fitxer d'entorn. Carrega la clau de xifrat zfs. Fonts carregades: S'està carregant el GNU Mach ... S'està carregant el Linux %s ... S'està carregant el Xen %s ... S'està carregant la ramdisk inicial ... S'està carregant el nucli de FreeBSD %s ... S'està carregant el nucli de Illumos ... S'està carregant el Hurd ... ha fallat la verificació de la MAC ENTRADA_MENÚ és un número, el títol d'un element del menú o el seu identificador. MÒDUL MÒDULS Envieu les peticions de compatibilitat amb el xorriso a «bug-xorriso@gnu.org». Fa una imatge de GRUB que pot arrencar des de CD-ROM. disc, llapis USB i disquet. Fa un fitxer de distribució de teclat pel GRUB. Crea una imatge de GRUB que pot arrencar Fes una unitat virtual des d'un fitxer. activa la partició Gestiona els mapatges d'unitats de la BIOS. Els arguments opcionals o obligatoris per les opcions llargues també ho són per les opcions curtes corresponents. Manipula els dispositius PCI. Mesura el temps que ha utilitzat l'ORDRE S'ha esgotat la memòria Tipus de memòria: DDR2. Tipus de memòria: desconeguda Identificador del menú d'entrada. No s'ha especificat cap entrada del menú. Tipus de menú d'entrada. Es permet l'ús d'una línia d'edició mínima tipus BASH. Per la primera paraula, TAB mostra les opcions per completar possibles. A qualsevol altre lloc, TAB mostra completats de dispositius o fitxers possibles. %s Es permet l'ús d'una pantalla d'edició mínima semblant a l'Emacs. TAB llista els completats. Premeu Ctrl+x o F10 per arrencar, Ctrl+c o F2 per una línia d'ordres o ESC per descartar els canvis i tornar al menú del GRUB. Falten arguments
 No s'ha trobat el fitxer d'entrada
 Dilluns Monocrom Hi ha més d'un dispositiu d'instal·lació? Més d'una entrada del menú? Munta un dispositiu xifrat. Munta tots els volums amb el senyal «boot» activat. Munta-ho tot. Munta per UUID. Munta dispositius xifrats. NOM NOM [VARIABLE] [PISTES] NÚMERO NOMBRE_DE_SEGONS Nom	Cont ref	Dependències
 Els controladors de disc nadius s'estan utilitzant. Es rebutja la utilització del microprogramari de la interfície. Protocols de xarxa: El nou MBR està escrit a «%s»
 No s'ha trobat cap CS5536 No s'ha trobat cap FPSWA No hi ha disponible cap estadística del temps d'arrancada
 No heu especificat cap ordre.
 No s'ha especificat cap dispositiu.
 No hi ha disponible cap estadística de la memòria cau del disc
 No s'ha canviat el mapa de cap unitat No s'ha detectat cap sistema de fitxers conegut No s'ha trobat cap concordança No heu especificat cap camí.
 No s'ha especificat cap camí ni cap dispositiu.
 No hi cap expressió regular prèvia No hi ha cap arbre de dispositius virtuals disponible Non-chain 4  A l'ordre li falten paràmetres.
 Ara connecteu el depurador remot. Nombre d'iteracions de la PBKDF2 Disk d'SO #num ------> dispositiu de GRUB/BIOS s'ha produït un error en obrir el fitxer %s del SO: %s Opció --canvia al mode de comandes nadiu de xorriso. Opcions: Cerca fora de rang: %d
 Substitució fora de rang (%d, %d)
 Sobreescriu el mapa de dispositius Plan9 suposats. ORDRES DE PARTICIONAT CAMÍ el hash PBKDF2 de la vostra contrasenya és %s
 PORT PORT VALOR [MÀSCARA] Analitza la configuració anterior en el nou context Analitza la configuració antiga en el nou context agafant només les entrades del menú Analitza la configuració anterior en l'antic context Analitza la configuració antiga en el mateix context agafant només les entrades del menú Nº de part: %s.
 la partició %d està activa. 
 Partició %s: L'estil de partició «%s» no és compatible amb la incrustació Camí: %s
 Camí: no disponible Executa ORDRES a la partició.
Utilitzeu «parttool PARTICIÓ help» per obtenir la llista d'ordres disponibles. executa una cerca de DNS Executa la configuració automàtica de l'IPV6 Realitza ambdós mapatges, el directe i l'invers. Planar  Reprodueix una melodia. No utilitzeu l'antic títol «%s» per al GRUB_DEFAULT. Feu servir «%s» (per versions anterior a la 2.00) o «%s» (per versions 2.00 o posteriors) GUID del conjunt: %016llx
 GUID del conjunt: no disponible Nom del conjunt: %s
 Nom del conjunt: no disponible Estat del conjunt: actiu Estat del conjunt: destruït Estat del conjunt: exportat Estat del conjunt: dispositiu de nivell 2 d'ARC Estat del conjunt: potencialment actiu Estat del conjunt: reservat com a disc de recanvi Estat del conjunt: no disponible Estat del conjunt: sense inicialitzar Els arguments possibles són: Les ordres possibles són: Els dispositius possibles són: Els fitxers possibles són: Les particions possibles són: Les possibilitats són: Final prematur de l'expressió regular Premeu una tecla per continuar... Premeu una tecla per arrencar xnu Premeu enter per arrencar el SO seleccionat, «e» per editar les ordres abans d'arrencar o «c» per una línia d'ordres. Premeu enter per arrencar el SO seleccionat, «e» per editar les ordres abans d'arrencar o «c» per una línia d'ordres. Premeu ESC per tornar al menú anterior. Mostra la informació de la memòria. Mostra la informació ZFS sobre el DISPOSITIUS Mostra el ZFS-BOOTFSOBJ o l'emmagatzema a la VARIABLE Mostra una llista de blocs. Mostra i executa el bloc d'arguments. Mostra la traça de la pila. Mostra la identificació i la configuració de la unitat. Mostra les mides en un format llegible pels humans. Cerca informació del dispositiu en un camí especificat (o per un dispositiu, si es dona l'opció -d). Taules del coreboot que suporten la RAM codi del microprogramari que suporta la RAM ranura de RAM número %d
 EXPREG CADENA Hi ha una imatge ROM. Llegeix un valor de 16 bits de ADDR. Llegeix un valor de 16 bits del PORT. Llegeix un valor de 32 bits de ADDR. Llegeix un valor de 32 bits del PORT. Llegeix un valor de 8 bits de ADDR. Llegeix un valor de 8 bits del PORT. Llegeix només LONGITUD bytes. No s'ha pogut arrencar de nou Reinicia l'ordinador. Torna a introduir la contrasenya:  El registre %x de %x:%02x.%x és %x
 L'expressió regular és massa gran Esborra un servidor DNS Treu un mòdul. Esborra una variable d'entorn. Esborra totes les regions de memòria del rang especificat. Informeu de les fallades a %s.
 Informeu dels errors a <bug-grub@gnu.org>. S'ha demanat un terminal sèrie, però no s'ha especificat el GRUB_SERIAL_COMMAND. S'utilitzen els paràmetres per defecte. Es reinicien tots els mapatges als valors per defecte. Recupera la informació del dispositiu. Torna d'una funció. Torna a l'indicador IEEE1275. Executa «gdb %s %d», i posa ARGS.HOLD a zero.
 Executeu «go» per tornar al GRUB. SEGONS NOMCURT NOMCURT TARGETA ADREÇA [ADREÇAFÍSICA] NOMCURT XARXA [INTERFÍCIE] gw PASSARELA] MIDA FONT|-u UUID|-a|-b CADENA Dissabte Desa el valor llegit a la variable NOMVARIABLE. Desa les variables al bloc del fitxer d'entorn. Diu «Hola món». Cerca dispositius per l'UUID. Si s'especifica VARIABLE, el nom del primer dispositiu trobat s'escriu a la variable. Cerca dispositius per un fitxer. Cerca dispositius per un UUID del sistema de fitxers Cerca dispositius per una etiqueta del sistema de fitxers. Cerca dispositius per fitxer o per etiqueta o UUID de sistema de fitxers. Si s'especifica --set, el primer dispositiu trobat s'escriu a una variable. Si no s'especifica cap nom de variable s'utilitza «root». Cerca dispositius pel fitxer. Si s'especifica VARIABLE, el nom del primer dispositiu trobat s'escriu a la variable. Cerca dispositius per l'etiqueta. Si s'especifica VARIABLE, el nom del primer dispositiu trobat s'escriu a la variable. El sector %llu ja l'està utilitzant el controlador de raid «%s»; eviteu-lo. Demaneu al fabricant que no desi dades a l'espai del MRB El sector %llu ja l'està utilitzant el programa «%s»; eviteu-lo. Aquest programa pot causar problemes d'arrencada o d'altres en un futur. Demaneu als autors que no desin dades al sector d'arrencada Selecciona el dispositiu per la seva posició al bus. Selecciona el dispositiu per proveïdor i IDs dels dispositius. Configura el gestor avançat de consum
(1=baix, ..., 254=alt, 255=apagat). Configura el gestor acústic automàtic
(0=apagat, 128=silenciós, ..., 254 ràpid). Aplica l'OEMID de l'RSDP, XSDT i l'RSDT. Aplica l'identificador de l'OEMTABLE de l'RSDP, XSDT i l'RSDT. Aplica la revisió de l'OEMTABLE de l'RSDP, XSDT i l'RSDT. Activa l'indicador «oculta» al tipus de partició Estableix una variable per retornar un valor. Estableix una variable pel primer dispositiu trobat. Assigna una variable d'entorn. Estableix el color de fons per al terminal actiu Aplica el camp creador de l'RSDP, XSDT i l'RSDT. Aplica la revisió del creador de l'RSDP, XSDT i l'RSDT. Estableix la variable d'entorn de depuració. Posa la unitat en mode descans. Posa la unitat en mode d'espera. Estableix els paràmetres de posició. Indica el dispositiu arrel. Configura el temps màxim d'espera
(0=apagat, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Assigna el tipus de terminfo de TERM a TIPUS.
 Estableix l'entrada del menú d'arrencada per defecte del GRUB, només per la propera arrencada. Estableix l'entrada del menú d'arrencada per defecte del GRUB. Indica l'adreça del port sèrie. Indica la paritat del port sèrie. Indica la velocitat del port sèrie. Indica el nombre de bits d'aturada del port sèrie. Indica la longitud de paraula del port sèrie. Indica la unitat sèrie. Configura les imatges per arrencar des del DISPOSITIU

Normalment no hauríeu de fer servir aquest programa directament. Utilitzeu grub-install. Estableix una contrasenya d'usuari (PBKDF2).  Estableix una contrasenya d'usuari (text pla). No recomanat i insegur. Estableix la variable amb una entrada d'usuari. Estableix les variables. S'estableix el tipus de partició a 0x%x
 Desplaça els paràmetres de posició. Mostra la informació del ACPI. Mostra la informació de l'APM. Mostra el contingut del terminal CBMEM. Mostra un missatge de text. Mostra una llista llarga amb informació més detallada. Mostra el contingut de FITXER en hexadecimal. Mostra els mòduls carregats. Mostra el contingut de la memòria. Mostra el contingut cru del sector IDENTIFY ATA. Mostra el contingut cru d'un fitxer o de la memòria. Mostra el contingut d'un fitxer. Mostra els mapatges actuals. Mostra aquest missatge. Mostra només les taules de la versió 1. Mostra només les taules de les versions 2 i 3. No s'ha pogut apagar Simula una ordre «initrd» de la versió antiga del grub Simula una ordre «kernel» de la versió antiga del grub Simula una ordre «modulenounzip» de la versió antiga del grub Simula una ordre «password» de la versió antiga del grub Simula una ordre «password» de la versió antiga del grub al mode menú d'entrada Salta N bytes del fitxer de sortida. Salta els bytes d'òfset des del principi del fitxer. La ranura %d està oberta
 S'ha trobat alguna cosa del Hurd, però no és suficient per arrencar. Especifica el nom del fitxer. Especifica el hash que cal utilitzar. Especifiqueu un o més fitxers de fonts que vulgueu carregar. Especifica el nombre de fitxers d'entrada. Velocitat: %s
 Inicia l'estub del GDB al port indicat Atura l'estub del GDB Desa el component coincident NÚMERO a NOMVARIABLE. Èxit Diumenge Suprimeix la sortida normal (conserva els avisos). Hi ha un error de sintaxi a la línia %u
 S'han detectat errors de sintaxi al fitxer de configuració del GRUB generat.
Assegureu-vos que no hi ha errors a /etc/default/grub o als fitxers
 /etc/grub.d/* o bé envieu un informe d'error adjuntant el fitxer %s  L'espai I/O del controlador de bus de gestió del sistema és a 0x%x
 OBJECTIU No s'ha especificat el format de l'objectiu (utilitzeu l'opció -O). El terminal té una geometria específica. El terminal és només ASCII [per defecte]. El terminal està ordenat lògicament en UTF-8. El Terminal està ordenat visualment en UTF-8. Prova la compatibilitat amb USB. Comprova el bit a BYTE:BIT a CMOS. Comprova si l'EXPREG coincideix amb la CADENA. Prova els subsistema de vídeo en mode Ample x Alt. Prova el subsistema de vídeo. Només text  Els fitxers són idèntics.
 L'entrada realçada s'executarà automàticament en %ds. Qualsevol usuari pot arrencar aquesta entrada. Dijous Eina per editar el bloc d'entorn. Mida total de la flash: %d B.
 Contrabarra final Transforma un UUID de 64 bits a un format adient per XNU. Amb l'opció -l el manté en minúscules tal i com fa blkid. Transforma un nom de fitxer del sistema en un del GRUB Tradueix la cadena amb la configuració actual. Proveu «%s --help» o «%s --usage» per a obtenir més informació.
 Dimarts CONTRASENYA D'USUARI CONTRASENYA_PBKDF2 D'USUARI NOMUSUARI[,NOMUSUARI] UTF-8 No s'ha pogut crear el conducte: %s No s'ha pogut determinar la vostra plataforma. Utilitzeu --target. No s'ha pogut bifurcar: %s No es pot obrir el flux de dades de %s: %s No es pot obtenir l'estat del conjunt Descomprimeix les dades. Descomprimeix el fitxer abans de fer la suma de verificació el tipus d'adreça %d és desconegut
 L'ordre «%s» és desconeguda.
 El format de compressió %s és desconegut Codificació desconeguda Argument extra «%s» desconegut. La característica gsub 0x%x (%s) de la font no és coneguda
 El número identificador de la tecla 0x%02x és desconegut
 El símbol identificador de la tecla %s és desconegut
 Error de sistema desconegut Mode de vídeo desconegut  El tipus de dispositiu virtual és desconegut: %s
 Descarrega l'emulador EFI. Falta el tancament d'un ( o d'un \( Falta la obertura d'un ) o d'un \) Falta el tancament d'un [ o d'un [^ Falta el tancament d'un \{ No es reconeix l'opció «%s»\n L'estat del conjunt no es reconeix No es permet el tipus d'adreça %d
 No és compaible amb l'especificació de la cobertura: %d
 No és compatible amb l'ús del tipus de maquinari %d
 No és compatible amb el format de la imatge No és compatible amb la substitució del senyal: 0x%x
 No és compatible amb l'especificació de la substitució: %d
 No és compatible amb la substitució de tipus: %d
 Forma d'ús: Ús: %s -0 SORTIDA CKBMAP_ARGUMENTS...\n Ús: %s DISPOSITIU
 Ús: %s [FITXERENTRADA [FITXERSORTIDA]]
 Ús: %s [OPCIÓ] ENTRADA_MENÚ\n Ús: %s [OPCIÓ]\n Utilitza el CDROM com arrel. Utilitza el depurador remot GDB en comptes del DDB. utilitza STRING com a cos del menú d'entrada. Utilitza el dispositiu root compilat internament. Utilitza una consola sèrie. Utilitzeu les tecles %C i %C per seleccionar quina entrada voleu realçar. VAR INTERFÍCIE NÚMERO DESCRIPCIÓ NOMVARIABLE Compte enrere detallat. versió %u.%u
CS de 32 bits = 0x%x, long = 0x%x, òfset = 0x%x
CS de 16 bits = 0x%x, long = 0x%x
DS = 0x%x, long = 0x%x
 El dispositiu virtual està degradat Ha fallat el dispositiu virtual El dispositiu virtual està desconnectat El dispositiu virtual està connectat S'ha tret el dispositiu virtual AVÍS: el SO no tindrà cap consola disponible AVÍS: no s'ha realitzat cap instal·lació per una plataforma específica AVÍS: no és compatible amb la característica de la font: %x
 AMPLADAxALÇADA Espera un nombre especificat de segons. Espera que es premi una tecla després de cada línia de sortida. Avís: Avís: color de fons invàlid «%s»
 Avís: color de primer pla invàlid «%s»
 Avís: error de sintaxi (falta una barra) a «%s»
 Dimecres Windows NT/2000/XP (carregador) Windows Vista/7 (carregador) Escriu un VALOR de 16 bits a ADDR. Escriu un VALOR de 16 bits al PORT. Escriu un VALOR de 32 bits a ADDR. Escriu un VALOR de 32 bits al PORT. Escriu un VALOR de 8 bits a ADDR. Escriu un VALOR de 8 bits al PORT. Bytes SPD escrits: %d B.
 Hipervisor de Xen, versió %s YUV  Heu d'especificar com a mínim una ordre.
 Heu d'establir manualment les variables «SystemPartition» i «OSLoader». La vostra àrea d'incrustació és petita. El fitxer core.img no hi cabrà. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FITXER [--md5] CONTRASENYA [FITXER] [--no-mem-option] [--type=TIPUS] FITXER [ARG ...] [-1|-2] [--exclude=TAULA1,TAULA2|--load-only=TAULA1,TAULA2] FITXER1 [FITXER2] [...] [-c FITXER [-p PREFIX]] [FITXER1 [FITXER2 ...]] [-d] NOMDISPOSITIU FITXER. [-e|-n] CADENA [-f FITXER] [-f FITXER] nom_de_variable [...] [-f|-l|-u|-s|-n] [--hint PISTA [--hint PISTA] ...] NOM [-h|-p|-r] [FITXER] [-l] GRUBUUID [NOMVARIABLE] [-l|-h|-a] [FITXER...] [-m (amplia|normal)] FITXER [-s POSICIÓ]... [-d DISPOSITIU] [-s POSICIÓ] [-d DISPOSITIU] [-v VAR] REGISTRE[=VALOR[:MÀSCARA]] [ADREÇA|comUNITAT][,VELOCITAT] [ARG] [TARGETA [ADREÇAFÍSICA]] [TARGETA] [VARENTORN=VALOR] [VARENTORN] [PULSACIÓ1] [PULSACIÓ2] ... [NÚMERO:]NOMDEVARIABLE [NÚMERO] [OPCIONS] [OPCIONS] [OPCIONS] DISC [OPCIONS] FITXER_O_DISPOSITIU [OPCIONS] FITXERS_FONT [OPCIONS]...[MODULS] [OPCIONS]... [CAMÍ|DISPOSITIU] [OPCIONS] [CAMÍ] [PATRÓ...] [LLISTAUSUARIS] [VALOR]... [AmpladaxAlçada[xProfunditat]] [AmpladaxAlçada] [[-a|-u|-v] [-g AMPLExALT] TERM [TIPUS]] [[any-]mes-dia] [hora:minut[:segon]] [bus]:[ranura]:[.func] [proveïdor]:[dispositiu] ha fallat l'ordre «cryptomount»: %s ha fallat l'ordre «loopback»: %s no s'ha trobat «obppath» al directori de nivell superior de «%s», no s'ha trobat un nom IEEE1275 s'ha assignat un valor a l'argument «%s» que no en necessita cap s'ha denegat l'accés afegeix el segment NOTA al CHRP IEEE1275 adreça no s'ha trobat l'adreça s'ha intentat llegir o escriure fora del disc «%s» s'ha intentat llegir o escriure fora de la partició s'ha intentat llegir més enllà del final del fitxer s'ha intentat buscar fora del fitxer s'està intentant llegir la imatge del nucli «%s» des del GRUB sestà intentant llegir la imatge del nucli «%s» des del GRUB un altre cop RAM disponible formats disponibles: base_addr = 0x%llx, long = 0x%llx, %s
 base_addr = 0x%llx, long = 0x%llx, tipus = 0x%x
 el fitxer de mapa de bits «%s» té un format que no és permès blocklist FITXER les llistes de blocs no són vàlides blocksize no és divisible per 512 no es pot sortir de 0 bucles no es pot determinar el sistema de fitxers a %s no s'ha pogut trobar l'ordre %s no s'ha pogut muntar el volum xifrat «%s»: %s no es pot obrir «%s»: %s no s'ha pogut obrir el fitxer %s, índex %d: error %d no es poden recuperar les llistes de blocs no es poden recuperar les llistes de blocs: %s no es pot comprimir la imatge del nucli no s'ha pogut trobar cap unitat de disc anomenada %s. Comproveu el mapa de dispositius no s'ha pogut trobar cap dispositiu anomenat %s (/dev està muntat?) no es pot obtenir una línia de comandes del traductor amb el camí «%s»: %s no es pot obrir el fitxer de SO «%s»: %s no es pot obrir «%s»: %s no es pot llegir «%s» correctament no es pot llegir «%s» : %s no es pot canviar el nom del fitxer %s per %s no es pot restaurar el directori original no es pot executar «seek» sobre «%s»: %s no es pot executar «stat» sobre «%s»: %s no es pot escriure al CD-ROM no es pot escriure a «%s»: %s no es pot escriure al stdout: %s no s'ha trobat la targeta cat FITXER ha fallat la comprovació del valor de la suma de verificació escolliu la compressió que s'ha de fer servir com a imatge del núcli cmp FITXER LOCAL comUNITAT[,VELOCITAT] ha fallat la comparació al punt %llu s'ha refusat la connexió s'ha esgotat el temps de connexió converteix la font en negreta la imatge del nucli és massa gran (0x%x > 0x%x) la versió del core.img no es correspon no s'ha pogut configurar automàticament %s no s'ha pogut trobar el membre de dispositius necessari del sistema de fitxers de dispositius múltiples no s'ha pogut trobar el consumidor de geli no s'ha trobat la classe «part» de geom no s'ha pogut obrir geom no s'han pogut llegir les metadades ELI no s'ha pogut obtenir el UUID no s'ha pogut obtenir l'UUID del geli no s'ha pogut obtenir dades aleatòries de sal no s'ha pogut enviar un paquet de xarxa cp FITXER LOCAL crc FITXER error de xifrat número %d ha fallat cygwin_conv_path() esborra el mapa de dispositius si existeix no s'ha pogut accedir al destí el recompte de dispositius ha excedit el límit deshabilita l'autohint no s'ha trobat el disc «%s» el disc no existeix, per tant es torna a la partició %s del dispositiu mòdul de disc que cal utilitzar (biodisk o nadiu). Aquesta opció només està disponible per a BIOS. la mida de diskboot.img ha de ser de %u bytes no comprovis el sistema de fitxers del DISPOSITIU el component del nom de domini és massa llarg no actualitza l'estat dels LEDs fet incrusta el FITXER com una configuració prèvia no s'ha pogut incrustar, però és necessari quan s'instal·la un RAID i un LVM +No s'ha pogut incrustar, però es requereix quan grub s'instal·la en un disc diferent del de la imatge introduïu: boot, «e»: opcions, «c»: línia de comandes el bloc de l'entorn és massa petit error: %s.
 s'esperaven imatges del GRUB al directori DIRECTORI/%s en comptes del directori %s no s'ha pogut aconseguir el camí canònic de «%s» no s'ha pogut llegir el sector 0x%llx de «%s» no s'ha pogut llegir la contrasenya no s'ha pogut escriure el sector 0x%llx a «%s» fals RAM defectuosa (BadRAM) el fitxer «%s» no s'ha trobat s'esperava un nom de fitxer s'esperava un nom de fitxer o un tempo i notes el sistema de fitxers «%s» no permet l'ús d'etiquetes el sistema de fitxers «%s» no és compatible amb les llistes de blocs la imatge del microprogramari és massa gran força l'autohint s'esperaven quatre arguments fwstart.img no té la versió bona coneguda. Assumiu el risc de continuar genereu una imatge al FORMAT Mostra un missatge d'ús curt mostra aquesta llista d'ajuda l'argument que s'ha donat és un dispositiu de sistema, no un camí el grub-mkimage no porta compilat la compatibilitat amb XZ grub> atura durant SEGONS segons (per defecte 3600) hex FITXER ignora els mapes de bits preformats quan carreguis l'especificació de les dimensions del terminal no són correctes instal·la imatges de GRUB al directori DIR/%s en comptes del directori %s Instal·la encara que s'hagin detectat problemes la contrasenya PBKDF2 no és vàlida el màgic de l'ELF no és vàlid segons quina sigui l'arquitectura el màgic de l'ELF no és vàlid sigui quina sigui l'arquitectura la mida del bloc no és vàlida l'especificació «%s» del color no és vàlida el bloc d'entorn no és vàlid el nom del fitxer «%s» no és vàlid el rang de la font no és vàlid el format de la línia no és vàlid: %s el paràmetre %s no és vàlid valor %lld d'escapada invàlid el nom de la variable «%s» no és vàlid l'especificació «%s» del mode de vídeo no és vàlida error del ioctl GET_ARRAY_INFO: %s error del ioctl GET_DISK_INFO: %s error del ioctl RAID_VERSION: %s la imatge del nucli és massa gran (0x%x > 0x%x) llista les adreces de xarxa llista les targetes de xarxa llista les rutes de xarxa ls CAMÍ el fitxer lzop és corrupte fa que la unitat es pugui arrencar també com un disquet (per defecte per dispositius fdX). Pot fallar en algunes BIOS. falta el símbol «%c» falta una opció obligatòria per «%s» el mòdul «%s» no està carregat no s'ha carregat el mòdul nom necessita una imatge i un punt de muntatge no s'ha trobat l'APM no s'ha trobat cap informació DHCP no s'ha trobat cap opció DHCP %d no s'ha trobat cap opció DHCP no s'ha trobat cap registre de DNS no s'ha rebut cap resposta de DNS no hi ha cap servidor DNS configurat no hi ha cap «/» al nom de fitxer canònic No heu especificat cap ordre no hi ha disponible cap clau de xifrat no s'ha trobat cap tarja de xarxa no s'ha especificat cap servidor no s'ha trobat la partició no s'ha trobat cap mode de vídeo disponible no hi ha cap taula de símbols no s'ha especificat cap terminal no hi ha terminació a la imatge del nucli s'han trobat dades no alineades amb el sector al fitxer del nucli no és un directori no és una clau primaria no és un fitxer regular no és el cos d'una funció s'esperava un argument algun altre programa està fent servir l'àrea incrustada, i no hi ha prou espai per al core.img. Aquests programes sovint proven d'emmagatzemar dades de manera que no permeten la detecció. Us recomanem que ho investigueu s'ha acabat la memòria desa la imatge generada al FITXER [per defecte=stdout] heu d'especificar un fitxer de sortida envia la configuració generada al FITXER [per defecte=stdout]  s'ha detectat un desbordament la contrasenya no coincideix executa la configuració automàtica de bootp no s'ha trobat el volum físic %s pre-carrega els MÒDULS especificats Final del fitxer prematur final del fitxer %s prematur premeu la tecla de bloqueig de majúscules premeu la tecla d'inserció premeu la tecla de bloqueig del bloc numèric premeu la tecla de bloqueig de desplaçament premeu la tecla de petició de sistema (Pet Sis) premeu la tecla d'alternativa de l'esquerra premeu la tecla de control de l'esquerra premeu la tecla de majúscules esquerra premeu la tecla d'alternativa de la dreta premeu la tecla de control de la dreta premeu la tecla de majúscules de la dreta mostra la versió del programa mostra informació sobre la versió i surt mostra aquest missatge i surt mostra els missatges detallats. no s'ha trobat la clau pública %08x error de lectura al punt %llu: %s subdirectori relatiu del servidor de xarxa la recolocació 0x%x encara no està implementada RAM reservada recupera l'opció DHCP i desa-la a VAR. Si VAR és - mostra el valor. directori arrel o servidor TFTP s'ha detectat un bucle de ruta Desa les imatges de ROM al DIRECTORI [opcional] desa la sortida al FITXER [necessari] selecciona l'índex de l'aspecte no s'ha trobat el port sèrie «%s» set [NOM=VALOR...] estableix el mode de la tecla de fixació de majúscules. estableix els ascendents de la font estableix els descendents de la font. estableix la família de la font estableix el rang de la font estableix la mida de la font estableix el nom del fitxer per la part de 32 bits. estableix el nom del fitxer per la part de 64 bits. estableix el nom del fitxer d'entrada. Per defecte és STDIN estableix el mode de la tecla d'inserció. estableix el mode de la tecla de bloqueig del bloc numèric estableix el fitxer de sortida. Per defecte és STDOUT estableix el mode de la tecla de pausa. estableix el directori prefix [per defecte=%s] estableix el mode de la tecla de fixació de desplaçament Estableix el nom del programa mida ampliat|normal no s'ha trobat el símbol «%s» temporal no s'ha trobat el terminal %s o no és gestionat per terminfo no s'ha trobat el terminal «%s» l'argument «%s» necessita un enter L'entrada «%s» de device.map no és vàlida. S'ignora. Corregiu o esborreu el device.map. El nom de la unitat «%s» dins device.map no és correcte. Se substitueix per %s. Utilitzeu la forma [hfc]d[0-9]* (ex. «hd0» o «cd») el primer sector del fitxer del nucli no està alineat amb el sector el dispositiu d'instal·lació és extraïble. Aquesta opció només està disponible per a EFI. el tipus de partició 0x%x no és vàlid els sectors del fitxer del nucli estan massa fragmentats la mida de «%s» no és %u la mida de «%s» és massa gran la mida de «%s» és massa petita aquest tipus de fitxer ELF no és correcte aquesta etiqueta de partició GPT no té cap partició d'arrencada per a la BIOS; no es podrà incrustar Aquest LDM no té cap partició per incrustar; no es podrà incrustar aquesta etiqueta de partició d'estil msdos no té espai després del MBR; no es podrà incrustar s'esperaven tres arguments S'ha excedit el temps quan s'obria «%s» s'ha excedit el temps de lectura de «%s» temps excedit: no s'ha pogut resoldre l'adreça de maquinari la profunditat dels enllaços simbòlics és excessiva el traductor «%s» pel camí «%s» conté diverses paraules que no són opcions, com a mínim «%s» i «%s» el traductor «%s» pel camí «%s» només te opcions. No es pot trobar la part del dispositiu la línia de comandes del traductor pel camí «%s» està buida s'esperaven dos arguments tipus No s'ha pogut identificar el sistema de fitxers de %s; no es pot comprovar la seguretat la mida del dispositiu no està alineada final del fitxer inesperat argument «%s» desconegut. la compressió %d no és coneguda
 el tipus de dispositiu %s és desconegut
 sistema de fitxers desconegut el tipus de dispositiu RAID «%s» és desconegut error d'expressió regular desconegut el format «%s» de l'objectiu és desconegut.
 el tipus de terminfo «%s» és desconegut no es reconeix l'especificació del format de l'opció DHCP «%s» no es reconeix l'adreça de xarxa «%s» no es reconeix la interfície de xarxa «%s» número no reconegut l'adreça %s no es pot resoldre unset [NOM ...] no és compatible amb l'error %d de l'HTTP :%s no és compatible amb la resposta de l'HTTP no és compatible amb la versió del RAID: %d.%d no és compatible amb aquest format de gzip no és compatible amb la paritat del port sèrie no és compatible amb la velocitat del port sèrie no és compatible amb el nombre de bits d'aturada no és compatible amb la longitud de paraula del port sèrie utilitza el DIRECTORI com a partició arrel del sistema EFI. utilitza el FITXER com a font per l'etiqueta utilitza el FITXER com a imatge d'arrencada [per defecte=%s] utilitza el FITXER com a imatge del nucli [per defecte=%s] utilitza el FITXER com un mapa de dispositius [per defecte=%s] utilitza el FITXER com a xorriso [opcional] utilitza els fitxers de GRUB del directori DIR [per defecte=%s] utilitza STRING com a versió del producte utilitza l'identificador de fitxers encara que estigui disponible l'UUID utilitza les imatges i els mòduls que hi han a DIR [per defecte=%s/<plataforma>] la variable «%s» no està establerta ordenat visualment en UTF-8. espera fins que es connecti un depurador no continuarà amb la llista de blocs la versió o el màgic de les ELI són incorrectes xnu_uuid DISPOSITIU el fitxer xz és corrupte o no és compatible amb les opcions del bloc no podeu esborrar aquesta adreça primer heu de carregar el nucli Aquesta etiqueta de partició GPT és massa petita; no es podrà incrustar! el vostre core.img és massa gran. No cabrà a l'àrea d'incrustació. la vostra àrea d'incrustació és petita. El fitxer core.img no hi cabrà.                                                                                                                                                                                                                                                                                                                                             boot/grub/locale/da.mo                                                                              0000600 0001750 0001750 00000274324 13417732100 0013622 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                       0     !    C      pY  #   qY      Y     Y     Y     Y  $    Z     %Z  6   9Z     pZ     wZ  	   Z     Z     Z     Z  .   Z  .   Z  %   [     A[     E[    T[    Y\    ^]     f^  7   ^  F   ^  v   ^  +   v_     _      _     _  !   _     `  ,   %`     R`     j`  $   `     `  *   `     `     `     a     a     .a  
   Na  	   Ya     ca  ,   a  ,   a  '   a  -   b      /b  (   Pb  (   yb  )   b     b     b     c     c     "c  "   +c  4   Nc     c     c  7   c     c  1   c     d  %   *d  '   Pd  %   xd  '   d     d     d     d     d      e     e     e     ,e     8e     Xe     je     xe     e     e  3   e     e  $   e     f     f     2f     Af     Rf     if     ~f  -   f     f  !   f     g     g     4g  #   Ig     mg  `   g  Z   Vh     h     h     h     h     i     i     %i     Ci     [i     ui     i     i     i     i     i     i     
j     !j     0j     5j     ;j  %   Jj     pj     j     j     j     j     j     j     k     k  *   6k  3   ak     k  "   k  8   k     l     l  	   ;l  #   El     il     l     l     l     l     l  )    m     *m     Im     gm  P   m     m     m  H    n  &   In     pn     n  !   n  ,   n     n     n     n  	   o  !   o  *   7o     bo     zo     o     o     o  $   o     o     
p     p     7p     Sp     np  
   p  
   p     p  1   p     p     p     q     q  3   7q  >   kq  $   q     q     q     r     r     6r     Vr  +   jr     r     r  #   r     r     s  $   *s     Os     is  '   s  9   s     s      t  z   t     t     t  8   t     t  
   u     u     u     <u     u  +   u     !v     6v     Lv  "   _v     v     v  (   v     v     v     v     w     w     (w  "   :w  0   ]w     w     w     w  7   w     w     w     w     x     $x     0x  0   7x     hx     |x     x     x  2   x  %   x     y  *   )y  6   Ty  +   y     y     y     y  !   z  d   z  e   @{  d   {  i   |  o   u|  H   |     .}     A}     W}     h}     {}     }     }     }  #   }     }     ~     5~  1   G~  )   y~     ~     ~     ~  /   ~     ~          $  5   A     w       K                  /     L     Q  '   V  P   ~     π       	                  &  '   :  +   b            )                       5     J     b     x  $             Ă  "   ߂            (     "   D  +   g  -             ڃ                 O        l                 %          )     !   ,  "   N     q       +        Ѕ            !   	     +     G     `     l                     ҆                  4   0     e                    ɇ                     3  !   T     v  M     2   ވ          +  *   I  8   t               щ             3     $   L  +   q                    Պ                     :     X     m  D        ʋ     ы  7   ً  ;        M     m  !             Č  s        X     p                    Ǎ     ލ          	          k     r     ~            '   ͏  
                   %     *     B     F     X  H   u          ѐ                    &  #   ?     c                          ޑ             "   +  (   N     w  %          2   Ӓ            #   (  *   L     w       #               "   ʓ  ;     #   )  <   M                 .   Ĕ  	          `        p  !     )        ѕ     ٕ  q        X     l                         Җ            "   %     H     `     z                    ӗ       #        %     B  g   ^     Ƙ     K     e  -          !   ę       "     '     Q   B                    К                     =     Z     v                    ͛                       -   @     n  "     b     )        2     H     `  ,   {            	   Ɲ  "   Н  %                  3     :  &   C  )   j       ^          $      %   E     k  ^     _   }  }   ݠ     [  )     '   <  >   d  D     !     '   
  -   2  #   `       )        Σ  )     )     ,   ?     l                    ۤ  E     $   2  A   W  )        å                     6     W  q   l     ަ  :        6     T     c                    ͧ  0             1     F  )   \  &             ʨ            )        >  %   N  %   t  ,     '   ǩ  :        *  -   I     w  .             Ȫ  '   ݪ  "        (     E  *   S     ~       )             Ы  6          0   Ȭ        !     "   <  #   _                 !   ҭ       
   
       <   /  %   l                    Ԯ  d     *   L  0   w                    ӯ            0        8  !   K     m       $             ڰ                  $   =  "   b  $                   ӱ          	          -     ?     L     g       '        Ĳ       $     +   "  "   N     q  )   x               ҳ            '        C     b       <         д            m        z               ɵ       +     3   (  1   \       '     -   Ķ       '     '   #  .   K  	   z                    շ               )     D     _     y       *     ?   ĸ  B     /   G     w       .     O   ѹ  )   !     K     a  	   p     z  5        κ                    )     @     F     Y     `     o     x                 	        Ļ     ӻ                    1     8     ?  
   M  
   X  	   c     m  !   s  )             Ӽ            N   "     q  "               -     -     $     #   :  0   ^  6        ƾ     Ծ  (     1     )   B     l     {  !              ȿ       %        '  &   ;     b        7     .     4        =     Z     o            %                       &     ?     ^     m     v                                #   	     -     G  B   a                              %  &   A     h                      &                  .     >  ;   R  V     "     &     !   /     Q     h     m  H     F     (        D     `  I   l  '          %             #     7     K  $   ]  '     *                    J        a     }       -     +          $        1  "   :  +   ]  J     %                "   3      V     w                                 %        A     `     ~                           [        Q  !   e                                             $     8     N     h                                        %  1   E     w                                1          0        .     C  !   Y     {  "                                       5     A     P     `     q                 &                    '   3  &   [       L               !        0     O     a     ~                                $             -  &   >     e  !   t                           	     7        +  %   E  [   k  w     7   ?  K   w  #     /             2     P  &   n  U     @     Q   ,     ~            +          R     L   ^  .               F        =     S     j                                      2   .  !   a  #                                      <     T     s  (     #     )     '     '   0  '   X       0     -     8        7     O  !   f                  .          !   !  B   C  E     B         #     ,         "     C     `  %   w       :     	          	             3     R  0   `  /     $               7      1     P     q  =     H     {     /          (          )        6  3   Q            ,          1        )  	   G     Q     `  "   z  	     	          2     2     )   5  3   _  $     *     (     )        6     Q     l     z       #     5               8        6  0   ?     p  ,     1     ,     1        M     R  /   T                                             #     4     D  7   P       1                                 5     O  4   o       .          !         *  &   K     r  h     f   o                     .     3  <   <     y                 #             "     /     H     a     r                      4     /             1     P     m                      9     C   '  *   k  $     =                  '  "   3      V     w       )               4         -     N     k  X               I        b     ~             /     
               	     +   $  8   P  "                         +        9     H     W     r       $     	               3         4     E     U      u  2     M     %        =     P     j                  2           )     )   F     p       (               $     9   '     a     |       	   4    > 9   X $            !            @                &   /    V    l 0                            (   ) 6   R             @        	            
        + -   2    `    t         5    '        .   * =   Y 8                (    |    }   ~ |       y	    	 V   
    
    
            '    <    U    j                 :    8   !    Z    a    v 3                @        < "   ] O         $           3    8 %   < U   b      
    	        %        '   - .   U         /                   2    H    a    v &            &            2   $ (   W ;    5               "    2    L j   e                 6   / '   f F    %    &       "    > $   \             !               %    4     Q    r                     4   	 $   >    c    z                     	 )   * !   T #   v V    ;    #   - !   Q ,   s >               	         6 2   M "    #                       &    ;    W    v         Y           " 9   * F   d           "           %    E     "               -    F    e            Z    O 	   V     `         +                              3     7     F  X   e                    !    !    -! 8   C!     |!    !    !    !    !     " '   ""    J" !   W" &   y"    " $   " !   " A    #    B#    K# &   i# 0   #    #    # %   #     $    $ *   $ F   D$ -   $ I   $    %    %    /% 3   =%    q%    z% p   %    %     & -   4&    b&    h&    z&    &    '    ''    6'    O'    d'    |' !   '    ' )   '    (     (    >(    T(    j(    }(    (    ( $   ( %   ( "    )    #)    )    `*    * .   *    *    *    * '   + *   8+ [   c+    +    +    +    ,    ,    ;,    X,    t,    ,    ,    ,    ,    ,    	-    "-    @-    T-    d- 1   }-    - '   - g   - 1   X.    .    . #   . ,   .     /    //    3/ !   </ ,   ^/ 
   /    /    /    / *   /    /    0 i   0    0 *   0 *   0    0 h   1 k    2    2    3 +   3 -   4 O   A4 S   4 %   4 +   5 4   75 $   l5 $   5 3   5    5 (   6 ,   +6 .   X6 &   6 $   6 &   6    6    7 X   $7 &   }7 ;   7 .   7 %   8 &   58 (   \8 %   8 *   8    8 v   8 &   g9 D   9 !   9    9     :    &:    @:    V:    k: 2   :    :    :    : .   ; 3   5;    i;    ;    ;    ; )   ;    ; *   < )   << 1   f< ,   < D   < #   
= 0   .=    _= 9   p=    =     = 8   =    > !   3>    U> '   c>    >    > 3   >    >    > B   ?    @ 1   
@    <@ +   [@ $   @ %   @    @    @ !   
A )   ,A    VA 
   mA    xA 9   A ,   A    A (   A !   'B    IB y   hB )   B 5   C    BC    JC    ]C    wC    C    C .   C    C     C    D    ;D !   TD    vD    D    D    D    D .   D !   E '   ?E    gE    yE !   E    E    E    E    E 
   F    F    $F    9F .   XF !   F    F )   F 0   F '    G    HG )   NG    xG    G     G    G    G '   G !   H    9H    VH 6   jH #   H    H     H {   H    jI    I    I    I    I 4   I ?   J A   \J    J    J .   J 	   J &   K &   +K 4   RK    K    K    K    K    K    L    !L    ?L    [L    xL    L    L $   L L   L N   #M /   rM    M    M -   M M   M (   LN    uN    N    N    N 3   N    N    O    O    0O    JO    eO    kO    ~O    O    O    O    O    O    O 	   O    O    O    P    0P    GP 	   `P    jP    pP    P    P 	   P    P !   P (   P    P    	Q %   Q "   DQ U   gQ    Q &   Q    Q    Q 4   R 4   @R +   uR #   R /   R 4   R    *S    ;S )   SS 2   }S 3   S    S    S )   	T    3T $   RT    wT -   T    T +   T    U    &U ?   FU 2   U :   U     U    V    -V    IV     aV %   V    V     V    V    V    W    :W    KW &   SW    zW    W $   W    W    W    W &   
X    1X    OX F   mX    X '   X    X    Y    0Y    FY 0   aY    Y    Y    Y    Y    Y .   Z    2Z    LZ    jZ    }Z <   Z o   Z .   @[ #   o[ !   [    [    [ '   [ L    \ Q   M\ 1   \    \ 
   \ @   \ '   5]     ]] (   ~]    ]    ]    ]    ] (   ] -   ^ .   F^    u^    ^    ^ S   ^    _    *_    E_ 1   \_ 5   _    _ (   _    _ $   _ '    ` C   H` '   `    ` /   ` 0   `    0a    Pa    ca    ya    a    a    a    a '   a    %b    Cb    `b    |b    b    b    b    b w   b    Jc %   `c    c    c    c &   c    c    c    d    ,d    Fd    cd    {d    d    d &   d    d    
e #   !e    Ee    We !   ne -   e    e    e    e    e    f    )f    f 5   f    1g =   Jg    g    g !   g    g $   g    h '   4h    \h    uh    h    h    h    h    h    h    i    $i    9i    Oi !   bi    i    i    i )   i +   j    2j H   Aj    j    j    j    j    j    k    )k    ?k     Wk !   xk    k    k    k *   k    l    #l *   :l    el $   zl    l    l    l    l    l    l @   m    Im !   em a   m x   m 3   bn L   n    n ,   o    0o    Oo     oo *   o ]   o J   p a   dp    p    p    p .   q #   Mq c   qq K   q .   !r    Pr    hr L   mr    r    r    r    s    s    3s    Ds    cs    s    s ,   s    s !   s 
   t    )t    Ft    Wt    wt "   t    t $   t &   t )   u (   Du +   mu )   u &   u %   u    v -   /v 4   ]v ;   v    v    v !   v "    w '   Cw    kw 4   zw    w    w H   w O   5x N   x    +    T                             a      \           Z        :       H  L  o          U                        _                        I           O                               J   d                   i                       G           1                R    Q      u                   I    h              $  /                                              .              l    g                  p  u       }        e                i          @  [    Y                d      (  \     t                O      y  {        E                    :  
      =   [  <   %  r                     
  t       P      z   F      I                  |        o   #      l  )        >    5        B             G    w    x  y                                 !               2            n  k              \    9  |     L  )          	  
                  F      *  A  Q                           i      ~         $  7              F      U    j            >        V               A  5              ;                 1                     ]              @       !        /                   `     .   s  N              W                         S        #        )      F                          }      J     "  M                 "   `    H  	  b  ;       `  C          #            9        |      f   v              Q         N             h               =         l         "      *       '  M                     1    T      k      5       &     k          z        A       !               <      n      V                   )   0        E   H              u                %     M             ,           >   C          %         ,                7    $    f  K  Z      '                                      	         g   4  t              a                                        R         ]           ^             "                          *  #  V    ~                c                    ,    B        6    :  b     f  ,  K  n      4                !  =            	    m   c           "            y    .    r  Y        M          '                           -                                  ^                                p  J  k                             1        -  (  }       T                @    {  &                  3  w                       {            )                                D  6  [    S      z            j  c                 v                                               _  B  .            /      m            L   3       ^             0      P     h            =    p     p  g                 8       ?   v                         X  #                       8  ?               K  $      N                                  7   (  g                   9   I  Y    |                   q               U  P       S     a         n         ]         q           -        4            b               Y         U             R  S    6            G      Q      9  C          &                      J      W                        <      -  ;              3          O  $  j                           ~   @                        d          T     x   d       0  '  P    O  2     q              `  h                   H           +                                     \  6  R                                     D          f      s  Z  X           v          N        ]      w   X  0      4    7      '           C      X      
    Z             j               r      -  E                    :  m                       A     e           !  &                    b                   m               K               &        u     W  o    %                             B              *                       x    D              i  ?                       c      /             ^  ?  }      8  E  l            q      
   _  3                	      e        .  {                               s           >         (   t           %      G                     a                   *           +                             _                        2   L                         [   r          +                     5           D      8                   V      W                    2               ,     o        s     /             ;       +  w  <  (            z      x                      y  ~  0     e                         total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: option '%c%s' doesn't allow an argument
 %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS Import ZFS wrapping key stored in FILE. Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MODULE MODULES Mail xorriso support requests to <bug-xorriso@gnu.org>. Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Option -- switches to native xorriso command mode. Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot the computer. Reenter password:  Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show the contents of a file. Show the current mappings. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Specify the number of input files. Start GDB stub on given port Stop GDB stub Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 TARGET Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This entry can be booted by any user. Thursday Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Translates the string with the current settings. Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME Verbose countdown. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. Your embedding area is unusually small.  core.img won't fit in it. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `cryptomount' command fails: %s `loopback' command fails: %s a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format blocklist FILE blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists: %s cannot compress the kernel image cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot get translator command line for path `%s': %s cannot open OS file `%s': %s cannot open `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. diskboot.img size must be %u bytes do not probe for filesystems in DEVICE domain name component is too long don't update LED state done embed FILE as an early config embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification install GRUB images under the directory DIR/%s instead of the %s directory install even if problems are detected invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid color specification `%s' invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no `/' in canonical filename no command is specified no decryption key available no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found pre-load specified modules MODULES premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. read error at offset %llu: %s relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory of TFTP server route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the argument `%s' requires an integer the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use DIR as the EFI System Partition root. use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub-2.0.0-pre6
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2012-12-30 18:57+0100
Last-Translator: Ask Hjorth Larsen <asklarsen@gmail.com>
Language-Team: Danish <dansk@dansk-gruppen.dk>
Language: da
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Launchpad-Export-Date: 2010-12-18 15:32+0000
X-Generator: Launchpad (build Unknown)
          samlet hukommelse: %d KiB
     Ingen foretrukken tilstand tilgængelig
     Foretrukken tilstand: %ux%u
   EDID-kontrolsum er ugyldig   EDID-version: %u.%u
   Kunne ikke klargøre videoadapteren   Ingen tilgængelig info   VBE-info:   version: %d.%d  OEM-softwarerevision: %d.%d
   eller:   (længst til venstre)  (medial)  (længst til højre)  - Samlet størrelse er ukendt  [TILVALG...] %.*s: ARGP_HELP_FMT-parameter skal være positiv %.*s: ARGP_HELP_FMT-parameter kræver en værdi %.*s: Ukendt ARGP_HELP_FMT-parameter %d s %d s tilbage. %s synes at indeholde et %s-filsystem, for hvilket det ikke vides om der er reserveret plads til DOS-agtig opstart.  Installation af GRUB der vil måske resultere i ØDELÆGGELSE AF FILSYSTEMET, hvis værdifulde data overskrives af grub-setup (--skip-fs-probe deaktiverer denne kontrol - bruges på eget ansvar) %s synes at indeholde et %s-partitionskort samt LDM, hvilket ikke vides at være en sikker kombination.  Installation af GRUB dér kan resultere i DESTRUKTION AF FILSYSTEMET, hvis værdifulde data overskrives af grub-setup (--skip-fs-probe deaktiverer dette tjek.  Brug på eget ansvar) %s synes at indeholde et %s-partitionskort, hvilket vides ikke at reservere plads til DOS-agtig opstart.  Installation af GRUB dér kan resulterer i DESTRUKTION AF FILSYSTEMET, hvis værdifulde data overskrives af grub-setup (--skip-fs-probe deaktiverer dette tjek.  Brug på eget ansvar) %s understøtter ikke UUID'er %s genererer et tastaturlayout til GRUB ved brug af ckbcomp\n %s er forældet. Brug i stedet set gfxpayload=%s før linux-kommandoen.
 %s er forældet. VGA-tilstand %d genkendes ikke. Brug i stedet set gfxpayload=BREDDExHØJDE[xDYBDE] før linux-kommandoen.
 %s understøttes endnu ikke af grub-mkconfig.\n %s, med Hurd %s %s, med Hurd %s (genoprettelsestilstand) %s, med Linux %s %s, med Linux %s (genoprettelsestilstand) %s, med Xen %s og Linux %s %s, med Xen %s og Linux %s (genoprettelsestilstand) %s, med Xen hypervisor %s, med kFreeBSD %s %s, med kFreeBSD %s (genoprettelsestilstand) %s, med kerne %s (via %s) %s, med kerne %s (via %s, genoprettelsestilstand) %s: UOVERENSSTEMMELSE I HASH
 %s: O.K.
 %s: LÆSEFEJL
 %s: For mange argumenter
 %s: Du skal køre dette som root\n %s: fejl: %s: info: %s: ugyldigt tilvalg -- "%c"
 %s: tilvalget "%c%s" tillader ikke noget argument
 %s: tilvalget "--%s" tillader ikke noget argument
 %s: tilvalget "--%s" kræver et argument
 %s: tilvalget "-W %s" tillader ikke noget argument
 %s: tilvalget "-W %s" er flertydigt
 %s: tilvalget "-W %s" kræver et argument
 %s: tilvalg kræver et argument -- "%c"
 %s: tilvalg kræver et argument -- "%s"\n %s: ukendt tilvalg "%c%s"
 %s: ukendt tilvalg "--%s"
 %s: advarsel: (32-bit) (64-bit) (PROGRAMFEJL) Ingen kendt version!? (PROGRAMFEJL) Tilvalget skulle have været genkendt!? (på %s) - Etiket "%s" - Sidste modifikationstid %d-%02d-%02d %02d:%02d:%02d %s --MERE-- -h HASH [-c FIL [-p PRÆFIKS]] [FIL1 [FIL2 ...]] -l | -r | [-s] grubdev osdisk. 16-bit beskyttet grænseflade understøttes
 16-bit beskyttet grænseflade understøttes ikke
 32-bit beskyttet grænseflade understøttes
 32-bit beskyttet grænseflade understøttes ikke
 =VAL > ACPI-RAM til persistent (ikke-"volatile") lager ACPI-RAM der kan frigøres ACPI-slukning mislykkedes ADR ADR VÆRDI [MASKE] ADR [STØRRELSE] ADR1,MASKE1[,ADR2,MASKE2[,...]] ADRESSE DNSSERVER APM slået fra
 APM kører ikke
 APM slået til
 APM kører
 ARGP_HELP_FMT: %s-værdi er mindre end eller lig med %s ASCII Acceptér CR/NL-linjeafslutninger i stil med DOS. Aktive inddataterminaler: Aktive uddataterminaler: Adapter "%s":
 Tilføj en DNS-server Tilføj en netværksadresse. Tilføj en netværksrute. Avancerede indstillinger for %s Avancerede indstillinger for %s (med Xen hypervisor) Tillad afbrydelse med ESC. Spørg om et filnavn, der skal genstartes fra. Antag at inddata er heks. Antag at inddata er adgangsfrase. Antag at inddata er ubehandlede. Forsøger at dekryptere hovednøgle... Forsøger at installere GRUB til en disk med flere partitionsetiketter, eller både partitionsetiket og filsystem.  Dette understøttes endnu ikke. Forsøger at installere GRUB til en disk med flere partitionsetiketter.  Dette understøttes endnu ikke. Forsøger at installere GRUB til en partitionsløs disk eller en partition.  Dette er en DÅRLIG idé. Tilgængelige inddataterminaler: Tilgængelige uddataterminaler: BIOS_DUMP [INT10_DUMP] BLOK BYTE:BIT Baggrundsbilledtilstand (stretch=stræk, normal=almindelig). Rodkatalog for hashliste. Start BIOS-baseret system. Start et operativsystem. Start i single-tilstand. Start op med fejlsøgningsbeskeder. Start med ekstra information. Starter "%s" Starter en kommandoliste Starter i blind tilstand Opstartssti: %s
 Opstartssti: utilgængelig
 Bryd ind i GDB CGA  FARVE KOMMANDO [ARG] Processor kører ikke langsommere når CPU er ledig
 Processor kører langsommere når CPU er ledig
 CS5536 på %d:%d.%d
 Kan ikke aktivere ROM-område. Ændr konfigurerede enheder. Ændr partitionstype Kontrollér Alt-tasten. Kontrollér Ctrl-tasten. Kontrollér skift-tasten. Kontrollér for CPU-funktioner. Kontrollér hashværdier for filer med hashliste fra FIL. Kontrollér om CPU understøtter (lang) 64-bit-tilstand (standard). Kontrollér status af modifikationstaster. Tjek om bruger findes i BRUGERLISTE. Tjekker om der er syntaksfejl i GRUB-scriptkonfigurationsfil. Ryd skærmen. Fjernede aktiv-flaget på %d. 
 Kommandoer: Samenlign FIL med lokal fil LOKAL. Sammenlign filen "%s" med "%s":
 Sammenlign to filer. Beregn XNU UUID for enheden. Udregn eller kontrollér hash-tjeksummen. Indstil serielport. Fortsæt løkker Konvertér almindelige skrifttypefilformater til PF2 Kopiér FIL til lokal fil LOKAL. Kopiér FIL til standard-ud. Kunne ikke finde FPSWA-driver Kunne ikke finde fysisk diskenhed "%s". Visse moduler mangler måske fra kerneaftrykket. Kunne ikke indlæse sha256 Kunne ikke indlæse sha512 Opret BIOS-agtige strukturer til bagudkompatibilitet med eksisterende OS. Opret en tom miljøblokfil. Nuværende terminfo-typer: ENHED ENHED [PARTITION[+/-[TYPE]]] ... ENHED skal være en OS-enhed (f.eks. /dev/sda). ENHEDSNAVN KAT KATALOG [OSBundleRequired] DNSSERVER Fejlsøgningsværktøj til filsystemdriver. Erklær hukommelsesregioner som fejlbehæftede (badram). Dekomprimeringsinstans er for stor Definér en menuindgang. Definér en undermenu. Slet en netværksadresse. Slet en netværksrute. Fjern det angivne loopback-drev fra listen. Slet variable. Bestem driver. Bestem UUID for filsystem. Bestem etiket for filsystem. Bestem type af filsystem. Bestem type af partitionsafbildning. Enhed %s: Enheds-id: %s
 Enheds-id: utilgængelig Direkte farve, maske: %d/%d/%d/%d  pos: %d/%d/%d/%d Deaktivér ACPI. Deaktivér SMP. Deaktivér al opstartsudskrift. Deaktivér/aktivér SMART (0/1). Forkaster forkert indlejret partition (%s,%s,%s%d) Statistik for diskmellemlager: træffere = %lu (%lu.%02lu%%), forbiere = %lu
 Diskantal skal stå foran diskliste.
 Vis FPSWA-version. Vis SMART-helbredsstatus. Vis en linje af tekst. Vis blokliste for FIL. Vis udskrift på alle konsoller. Vis strømtilstand. Vis brugsinformation for denne kommando og afslut. Vis denne hjælp og afslut. Vis/indstil nuværende tidspunkt og dato. Udskriv ikke afsluttende linjeskiftstegn. Udskriv ikke meddelelser. Undersøg ingen diskettedrev. Brug ikke APM til at standse computeren. Gør intet, med success. Gør intet, fejlagtigt. Vis ikke boot-diagonstikmeddelelser. Indlæs ikke værtstabeller angivet i kommaadskilt liste. Stands kun, genstart ikke. Stop ikke efter første fejl. Opdatér ikke EBDA. Vil måske rette fejl eller nedbrud med visse BIOS'er, men forringer effektiviteten, da operativsystemet ikke modtager RSDP fra GRUB. MILJØVAR MILJØVAR [MILJØVAR] ... FEJL: intet gyldigt tastaturlayout fundet. Tjek inddata.
 ESC på ethvert tidspunkt afslutter. UDTRYK UDTRYK ] Forløbet tid: %d.%03d sekunder 
 Indlejring er ikke muligt. GRUB kan kun installeres med denne opsætning ved brug af bloklister. Dog er bloklister UPÅLIDELIGE, og deres brug frarådes. Emulér en følge af tastetryk Aktivér fortolkning af undvigesekvenser med omvendt skråstreg. Indtast ZFS-adgangskode:  Gå ind i KDB ved opstart. Gå i normal tilstand. Indtast adgangsfrase for %s%s%s (%s):  Indtast adgangskode:  Indtast brugernavn:  Fejl ved fortolkning af kommandolinjeargumenter
 Evaluér et udtryk. Afslutning mislykkedes Gå ud af GRUB. Afslut løkker Afslut normal tilstand. Eksportér variable. Eksportér version 1-tabeller til OS'et. Eksportér version 2- og version 3-tabeller til OS'et. FIL FIL [ARG ...] FIL [ARG...] FIL | TEMPO [TONEHØJDE1 VARIGHED1] [TONEHØJDE2 VARIGHED2] ...  FIL... FIL1 FIL2 FILNAVN KOMMANDO FILSYSTEM [VARIABEL] FIL|prompt FORMAT FPSWA-protokol kunne ikke finde grænsefladen FPSWA-revision: %x
 FRA-TIL[,FRA-TIL] FRA[K|M|G] TIL[K|M|G] FT_Init_FreeType fejler Kunne hverken starte standard- eller reservepunktet.
 Kunne ikke oprette "device-mapper"-træ Falder tilbage på "%s" Filsystemet "%s" understøtter ikke indlejring Filer er forskellige fra position %llu: 0x%x [%s], 0x%x [%s]
 Filerne har forskellig størrelse: %llu [%s], %llu [%s]
 Filsystem kan ikke tilgås Filsystemtype %s Udfyld hybrid-MBR for GPT-drevet ENHED. Angivne partitioner vil være en del af hybrid-MBR. Der tillades op til tre partitioner. TYPE er en MBR-type. + betyder at partitionen er aktiv. Kun én partition kan være aktiv. Færdiggør indlæsning af EFI-emulator. Prøv først enheds-FIF, hvis der i øjeblikket køres på ARC. Hvis FIF slutter med komma, så prøv også underpartitioner Prøv først enheds-FIF, hvis der i øjeblikket køres med BIOS. Hvis FIF slutter med komma, så prøv også underpartitioner Prøv først enheds-FIF, hvis der i øjeblikket køres med EFI. Hvis FIF slutter med komma, så prøv også underpartitioner Prøv først enheds-FIF, hvis der i øjeblikket køres med IEEE1275. Hvis FIF slutter med komma, så prøv også underpartitioner Prøv først enheden FIF, hvis der understøttes direkte hardwareadgang. Hvis FIF slutter med komma, så prøv også underpartitioner Prøv først enheden FIF. Hvis FIF slutter på komma, så prøv også underpartitioner Fiks videoproblem. Fandt %s på %s (%s)\n Fandt %s på %s\n Fandt GNU Mach: %s Fandt Hurd-modul: %s Fandt NetBSD-kerne. %s\n Fandt baggrund: %s\n Fandt initrd-aftryk: %s\n Fandt kernemodulkatalog: %s\n Fandt FreeBSD-kerne: %s\n Fandt linux-aftryk: %s\n Fandt tema: %s\n Freetype-fejl %d ved indlæsning af glyf 0x%x for U+0x%x%s Fastlås ATA-sikkerhedsindstillinger indtil nulstilling. Fredag GNU GRUB  version %s GRUB-opstartsmenu GRUB ved endnu ikke hvordan denne maskine standses! GRUB-emulator. GRUBENHED=PLAN9ENHED Skrald i ARGP_HELP_FMT: %s Generér GRUB-tastaturlayout fra et Linux-konsol-tastaturlayout. Generér PBKDF2-adgangskodehash. Generér en grub-konfigurationsfil Opret et selvstændigt aftryk (som indeholder alle moduler) i det valgte format Beregn crc32-tjeksummen for FIL. Hent oplysninger om diskmellemlager. Vis/angiv ATA-diskparametre. HASH FIF Stands systemet, med APM hvis muligt. Standser computeren.  Denne kommando fungerer ikke på alle firmwareimplementationer. Håndtér N byte i udskriftsfil. Hej verden Hercules  Id AFTRYK1 [AFTRYK2 ...] MONTERINGSPUNKT AFTRYKSSTI KOMMANDOER Importér ZFS-omslagsnøgle gemt i FIL. Forkert virtuel enhed: ingen type tilgængelig Indsæt et modul. Installér GRUB på dit drev. Installation fuldført. Ingen fejl rapporteret. Ugyldig tilbagereference Ugyldigt navn på tegnklasse Ugyldigt sorteringstegn Ugyldig kommando %s.
 Ugyldigt indhold af \{\} Ugyldig enhed "%s".
 Ugyldigt diskantal.
 Ugyldigt forudgående regulært udtryk Ugyldig intervalafslutning Ugyldigt regulært udtryk Aktivér brugerkonfigurations-routing. KERNE ARGUMENTER TAST Tastegenvej til hurtigt at starte med dette punkt. Virtuel bladknude-enhed (fil eller disk) Den forældede parameter "ask" understøttes ikke længere. Forklaring: maske/position=rød/grøn/blå/reserveret Længde af genereret hash Længde af saltnummer Vis DNS-servere Vis liste af PCI-enheder. Vis liste af alle filer. Vis de tilgængelige videotilstande. Hvis der er givet en opløsning, vises kun dertil svarende tilstande. Vis liste af enheder og filer. Vis enheder eller filer. Vis liste af enheder. Vis filer i STI. Vis hukommelsesafbildningen tilgængelig via firmware. Liste af understøttede videotilstande: Liste af brugere, der har tilladelse til at starte op med dette punkt. Opskriv eller vælg en inputterminal. Opskriv eller vælg en outputterminal. Vis de nuværende variable. Vis de indlæste skrifttyper. Vis variabelliste fra miljøblokfil. Indlæs 64-bit XNU-aftryk. Indlæs BIOS-dump. Indlæs FreeBSD-miljø. Indlæs FreeBSD-kernemodul (ELF). Indlæs FreeBSD-kernemodul. Indlæs kernel.sys fra FreeDOS. Indlæs Linux. Indlæs NTLDR eller BootMGR. Indlæs NetBSD-kernemodul (ELF). Indlæs NetBSD-kernemodul. Indlæs Plan9-kerne. Indlæs XNU-udvidelseskatalog. Indlæs XNU-udvidelsespakke. Indlæs XNU-udvidelse. Indlæs XNU-aftryk. Indlæs XNU-ramdisk. Den vil kunne ses som md0 i OS. Indlæs dump af "device-properties". Indlæs et PXE-aftryk. Indlæs et tastaturlayout. Indlæs en multiboot 2-kerne. Indlæs et multiboot 2-modul. Indlæs en multiboot-kerne. Indlæs et multiboot-modul. Indlæs et startbillede for XNU. Indlæs et aftryk af XNU i dvaletilstand. Indlæs og klargør EFI-emulator. Indlæs en anden opstartsindlæser. Indlæs endnu en konfigurationsfil uden at ændre kontekst, men hent kun menuindgange. Indlæs endnu en konfigurationsfil uden at ændre kontekst. Indlæs endnu en konfigurationsfil. Indlæs en anden coreboot-payload Indlæs baggrundsbillede til aktiv terminal. Indæs ACPI-værtstabeller og tabeller angivet ved argumenter. Indlæs initrd. Indlæs kOpenBSD-ramdisk. Indlæs FreeBSD-kerne. Indlæs NetBSD-kerne. Indlæs OpenBSD-kerne. Indlæs kun tabeller angivet i kommaadskilt liste. Indlæs same fil på flere måder. Indlæs variable fra miljøblokfil. Indlæs zfs-kryptonøgle. Indlæste skrifttyper: Indlæser GNU Mach ... Indlæser Linux %s ... Indlæser Xen %s ... Indlæser start-ramdisk ... Indlæser FreeBSD-kerne %s ... Indlæser Illumos-kerne ... Indlæser Hurd ... MAC-verifikation mislykkedes MENUINDGANG er et tal, titlen på en menuindgang eller identifikation på en menuindgang. MODUL MODULER Send forespørgsler om xorriso til <bug-xorriso@gnu.org>. Opret GRUB-opstartsaftryk til cd-rom, disk, USB-nøgle eller diskette. Opret en GRUB-tastaturlayoutfil. Opret et opstartsaftryk af GRUB. Opret et virtuelt drev fra en fil. Gør partition aktiv Håndtér BIOS-drevafbildinger. Obligatoriske eller valgfri argumenter til lange tilvalg er også obligatoriske henholdsvis valgfri for tilsvarende korte tilvalg. Manipulér PCI-enheder. Mål tiden, der bruges af KOMMANDO Hukommelse opbrugt Hukommelsestype: DDR2. Hukommelsestype: Ukendt. Identifikator for menuindgang. Menuindgang ikke angivet. Menuindgangstype. Minimal BASH-agtig linjeredigering understøttes. For det første ord vil TAB vise de mulige kommandofuldførelser. Alle andre steder vil TAB vise de mulige fuldførelser af enheds- eller filnavne. %s Der understøttes minimal Emacs-agtig skærmredigering. TAB viser fuldførelser. Tryk Ctrl-x eller F10 for at begynde opstart, Ctrl-c eller F2 for at få en kommandolinje, eller ESC for at forkaste ændringerne og vende tilbage til GRUB-menuen. Mandag Monokrom  Mere end én installationsenhed? Mere end én menuindgang? Montér en kryptoenhed. Montér alle diskenheder med "boot"-flaget. Montér alle. Montér efter UUID. Montér kryptoenheder. NAVN NAVN [VARIABEL] [FIF] NUM ANTAL_SEKUNDER Navn	Antal ref	Afhængigheder
 Der er platformspecifikke diskdrivere i brug. Nægter at bruge firmwarediskgrænseflade. Netværksprotokoller: Ny MBR skrives til "%s"
 Ingen CS5536 fundet Ingen FPSWA fundet Ingen kommando angivet.
 Ingen enhed angivet.
 Der er ingen tilgængelig statistik for diskmellemlager
 Intet drev er blevet genafbildet Intet kendt filsystem fundet Ingen træffere Ingen sti er angivet.
 Ingen sti eller enhed angivet.
 Intet tidligere regulært udtryk Intet virtuelt enhedstræ tilgængeligt Non-chain 4  Ikke nok parametre til kommando.
 Forbind nu venligst fjernfejlsøgeren. Antal PBKDF2-iterationer OS-disk #num ------> GRUB/BIOS-enhed OS-fejl ved åbning af fil %s: %s Tilvalget -- skifter til systemspecifik xorriso-kommandotilstand. Tilvalg: Opslag uden for interval: %d
 Erstatning uden for interval (%d, %d)
 Tilsidesæt gættet afbildning af Plan9-enheder. PARTITION KOMMANDOER STI PBKDF2-hash af din adgangskode er %s
 PORT PORT VÆRDI [MASKE] Fortolk ældre konfiguration i ny kontekst Fortolk ældre konfiguration i ny kontekst, og medtag kun menuindgange Fortolk ældre konfiguration i samme kontekst Fortolk ældre konfiguration i samme kontekst, og medtag kun menuindgange Delnummer: %s.
 Partition %d er nu aktiv. 
 Partition %s: Partitionsstilen "%s" understøtter ikke indlejring Sti: %s
 Sti: utilgængelig Udfør KOMMANDOER på partition.
Kør "parttool PARTITION help" for at få en liste af tilgængelige kommandoer. Udfør et DNS-opslag Udfør en IPV6-autokonfiguration Udfør både direkte og omvendte afbilninger. Plan  Afspil en melodi. Brug venligst ikke den gamle titel "%s" til GRUB_DEFAULT; brug "%s" (for versioner før 2.00) eller "%s" (for 2.00 eller nyere) Pool-GUID: %016llx
 Pool-GUID: utilgængelig Pool-navn: %s
 Pool-navn: utilgængelig Pool-tilstand: aktiv Pool-tilstand: ødelagt Pool-tilstand: eksporteret Pool-tilstand: ARC-enhed niveau 2 Pool-tilstand: potentielt aktiv Pool-tilstand: reserveret som "hot spare" Pool-tilstand: utilgængelig Pool-tilstand: ikke klargjort Mulige argumenter er: Mulige kommandoer er: Mulige enheder er: Mulige filer er: Mulige partitioner er: Mulige ting er: Uventet slutning af regulært udtryk Tryk på en tast for at fortsætte... Tryk på en tast for at starte xnu Tryk retur for at starte det valgte operativsystem, "e" for at redigere kommandoerne før opstart, eller "c" for at få en kommandolinje. Tryk retur for at starte det valgte operativsystem, "e" for at redigere kommandoerne før opstart, eller "c" for at få en kommandolinje. ESC vender tilbage til den forrige menu. Udskriv hukommelsesoplysninger. Udskriv ZFS-info om ENHED. Udskriv ZFS-BOOTFSOBJ eller gem det i VARIABEL Udskriv en blokliste. Udskriv og kør blokargument. Udskriv stakspor. Udskriv drevidentitet og indstillinger. Udskriv størrelser i læsevenligt format. Forespørg om enhedsoplysninger for en given sti (eller enhed, hvis tilvalget -d er givet). RAM som indeholder firmwarekode RAM-sokkel nummer %d
 REGUDTRYK STRENG ROM-aftryk er til stede. Læs 16-bit-værdi fra ADR. Læs 16-bit-værdi fra PORT. Læs 32-bit-værdi fra ADR. Læs 32-bit-værdi fra PORT. Læs 8-bit-værdi fra ADR. Læs 8-bit-værdi fra PORT. Læs kun LÆNGDE byte. Genstart mislykkedes Genstart computeren. Genindtast adgangskode:  Regulært udtryk er for stort Fjern en DNS-server Fjern et modul. Fjern en miljøvariabel. Fjern hukommelsesregioner i det angivne interval. Rapportér fejl til %s.
 Rapportér fejl til <bug-grub@gnu.org>. Bad om seriel terminal, men GRUB_SERIAL_COMMAND er ikke angivet. Der vil blive brugt standardparametre. Nulstil alle afbildninger til standardværdierne. Hent enhedsinformation. Returnér fra en funktion. Vend tilbage til IEEE1275-prompten. Kør "gdb %s %d" og sæt ARGS.HOLD til nul.
 Kør "go" for at genoptage GRUB. SEK KORTNAVN KORTNAVN KORT ADRESSE [HWADRESSE] KORTNAVN NET [GRÆNSEFLADE| gw ADGANGSPUNKT] STØRRELSE KILDE|-u UUID|-a|-b STRENG Lørdag Gem den læste værdi i variablen VARNAVN. Gem variable til miljøblokfil. Sig "Hej verden". Søg i enheder efter UUID. Hvis VARIABEL er angivet, vil variablen blive sat til den først fundne enhed. Søg i enheder ud fra en fil. Søg efter enheder ud fra filsystems-UUID. Søg i enheder ud fra en filsystemsetiket. Søg i enheder ud fra en fil, filsystemsetiket eller filsystems-UUID. Hvis --set er givet, vil den først fundne enhed blive sat til en variabel. Hvis intet variabelnavn er givet, bruges "root". Søg i enheder efter fil. Hvis VARIABEL er angivet, vil variablen blive sat til den først fundne enhed. Søg i enheder efter etiket. Hvis VARIABEL er angivet, vil variablen blive sat til den først fundne enhed. Sektor %llu er allerede i brug af raid-controller "%s"; undgår den.  Bed venligst producenten om ikke at gemme data i MBR-pladsen Sektoren %llu er allerede i brug af programmet "%s"; undgår den.  Dette program kan forårsage problemer med opstart med mere i fremtiden.  Bed venligst programmets forfattere om ikke at lagre data i opstartssporet Vælg enhed efter dens position på bussen. Vælg enhed efter forhandler og enheds-id'er. Indstil advanceret strømstyring (APM)
(1=lav, ..., 254=høj, 255=deaktiveret). Indstil Automatic Acoustic Management
(0=deaktiveret, 128=stille, ..., 254=hurtig). Indstil OEMID for RSDP, XSDT og RSDT. Indstil OEMTABLE ID for RSDP, XSDT og RSDT. Indstil revision af OEMTABLE for RSDP, XSDT og RSDT. Angiv "skjult"-flag i partitionstype Sæt en variabel til en returværdi. Sæt en variabel til den første enhed, der findes. Sæt en miljøvariabel. Angiv baggrundsfarve for aktiv terminal. Indstil skaberfeltet for RSDP, XSDT og RSDT. Indstil skaberrevision for RSDP, XSDT og RSDT. Angiv miljøvariabel til fejlsøgning. Sæt drevet i hviletilstand (sleep). Sæt drevet i ventetilstand (standby). Angiv positionsparametre. Ændr rodenhed. Indstil tidsudløb for standby
(0=deaktiveret, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Sæt terminfo-type for TERM til TYPE.
 Angiv standardmenuindgangen i GRUB, kun for næste opstart. Sæt standardmenuindgangen for opstart i GRUB. Angiv adressen for den serielle port. Angiv pariteten for den serielle port. Angiv hastigheden for den serielle port. Angiv stop-bit for den serielle port. Angiv word-længden for den serielle port. Angiv den serielle enhed. Opsæt aftryk til at starte fra ENHED.

Du bør normalt ikke køre dette program direkte.  Brug i stedet grub-install. Angiv adgangskode for bruger (PBKDF2). Angiv brugeradgangskode (klartekst). Dette er usikkert og frarådes. Sæt variablen med brugerinddata. Angiv variable. Sætter partitionstype til 0x%x
 Skift positionsparametre. Vis ACPI-oplysninger. Vis APM-oplysninger. Vis en hjælpebesked. Vis en lang liste med mere detaljeret information. Vis indholdet af FIL i heks. Vis indlæste moduler. Vis indholdet af hukommelsen. Vis ubehandlet indhold af ATA IDENTIFY-sektor. Vis ubehandlet indhold af en fil eller hukommelsen. Vis indholdet af en fil. Vis de aktuelle afbildninger. Vis denne meddelelse. Vis kun version 1-tabeller. Vis kun version 2- og version 3-tabeller. Slukning mislykkedes Simulér "initrd"-kommando til ældre grub Simulér "kerne"-kommando til ældre grub Simulér "modulenounzip"-kommando til ældre grub Simulér "password"-kommando til ældre grub Simulér "password"-kommando til ældre grub i menuindgangsstilstand Overspring N byte fra udskriftsfil. Spring et antal byte over fra filens begyndelse. Plads %d åbnet
 Noget Hurd-halløj fundet, men ikke nok til at starte op. Angiv filnavn. Angiv den hash, der skal bruges. Angiv en eller flere skrifttypefiler der skal indlæses. Angiv antallet af inddatafiler. Start GDB-stub på den givne port Stop GDB-stub Gem matchet komponent NUMMER i VARNAVN. Succes Søndag Undertryk normal udskrift (advarsler vises stadig). Syntaksfejl på linje %u
 Der blev fundet syntaksfejl i den genererede GRUB-
konfigurationsfil.  Sikr dig at der ikke er nogen fejl
i filerne /etc/default/grub eller /etc/grub.d/*, eller
indsend venligst en fejlrapport med filen %s vedhæftet. I/O-pladsen for controlleren til systemhåndteringsbussen er 0x%x
 MÅL Målformatet er ikke angivet (brug tilvalget -O). Terminal har angivet geometri. Terminal bruger kun ASCII-tekst [standard]. Terminal bruger logisk ordnet UTF-8. Terminal bruger visuelt ordnet UTF-8. Test USB-understøttelse. Test bit ved BYTE:BIT i CMOS. Tjek om REGUDTRYK matcher STRENG. Tjek videoundersystemet i tilstanden BxH. Test videoundersystem. Kun tekst  Filerne er identiske.
 Det fremhævede punkt vil blive kørt automatisk om %d s. Dette punkt kan startes op af enhver bruger. Torsdag Værktøj til at redigere miljøblokken. Størrelse af flash i alt: %d B.
 Afsluttende omvendt skråstreg Konvertér 64-bit-UUID til format, der passer til XNU. Hvis -l er givet, så behold det i små bogstaver jævnfør blkid. Lav et systemfilnavn til et GRUB-filnavn. Oversætter strengen med de nuværende indstillinger. Tirsdag BRUGER ADGANGSKODE BRUGER PBKDF2-ADGANGSKODE BRUGERNAVN[,BRUGERNAVN] UTF-8 Kan ikke oprette datakanal: %s Kan ikke bestemme din platform. Brug --target. Kan ikke udføre fork: %s Kan ikke åbne strøm fra %s: %s Kan ikke hente pool-tilstand Udpak komprimerede data. Udpak fil før tjeksumsberegning. Ukendt adressetype %d
 Ukendt kommando "%s".
 Ukendt komprimeringsformat %s Ukendt kodning Ukendt ekstra argument "%s". Ukendt gsub-funktion for skrifttype 0x%x (%s)
 Ukendt tastatur-skan-kode 0x%02x
 Ukendt tastatur-skan-identifikation %s
 Ukendt systemfejl Ukendt videotilstand  Ukendt type af virtuel enhed: %s
 Af-indlæs EFI-emulator. Uparret ( eller \( Uparret ) eller \) Uparret [ eller [^ Uparret \{ Ukendt tilvalg "%s"\n Ukendt pool-tilstand Uunderstøttet adressetype %d
 Dækningsspecifikation understøttes ikke: %d
 Uunderstøttet hw-adressetype %d
 Uunderstøttet billedformat Erstatningsflag understøttes ikke: 0x%x
 Erstatningsspecifikation understøttes ikke: %d
 Erstatningstype understøttes ikke: %d
 Brug: Brug: %s -o UDDATA CKBMAP_ARGUMENTER...\n Brug: %s ENHED
 Brug: %s [INDFIL [UDFIL]]
 Brug: %s [TILVALG] MENUINDGANG\n Brug: %s [TILVALG]\n Brug cd-rom som root. Brug GDBs fjernfejlfinder frem for DDB. Brug STRENG som menuindgangskrop. Brug indkompileret rodenhed. Brug seriel konsol. Brug tasterne %C og %C til at vælge fremhævet punkt. VAR GRÆNSEFLADE NUMMER BESKRIVELSE VARNAVN Ekstra udskrift ved nedtælling. Version %u.%u
32-bit CS = 0x%x, længde = 0x%x, position = 0x%x
16-bit CS = 0x%x, længde = 0x%x
DS = 0x%x, længde = 0x%x
 Virtuel enhed er degraderet Fejl på virtuel enhed Virtuel enhed er offline Virtuel enhed er online Virtuel enhed er fjernet ADVARSEL: ingen konsol vil være tilgængelig for OS ADVARSEL: ingen platformsspecifik installation blev gennemført ADVARSEL: uunderstøttede parametre til skrifttypefunktioner: %x
 BREDDExHØJDE. Vent et givet antal sekunder. Vent på tastetryk efter hver udskrevet linje. Advarsel: Advarsel: ugyldig baggrundsfarve "%s"
 Advarsel: ugyldig forgrundsfarve "%s"
 Advarsel: syntaksfejl (manglende skråstreg) i "%s"
 Onsdag Windows NT/2000/XP (indlæser) Windows Vista/7 (indlæser) Skriv 16-bit-VÆRDI til ADR. Skriv 16-bit-VÆRDI til PORT. Skriv 32-bit-VÆRDI til ADR. Skriv 32-bit-VÆRDI til PORT. Skriv 8-bit-VÆRDI til ADR. Skriv 8-bit-VÆRDI til PORT. SPD-byte skrevet: %d B.
 Xen hypervisor, version %s YUV  Du skal angive mindst én kommando.
 Det vil være nødvendigt at angive "SystemPartition" og "OSLoader" manuelt. Dit indlejringsområde er usædvanligt lille.  Der er ikke plads til core.img. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FIL [--md5] ADGANGSKODE [FIL] [--no-mem-option] [--type=TYPE] FIL [ARG ...] [-1|-2] [--exclude=TABEL1,TABEL2|--load-only=TABEL1,TABEL2] FIL1 [FIL2] [...] [-c FIL [-p PRÆFIKS]] [FIL1 [FIL2 ...]] [-d] ENHEDSNAVN FIL. [-e|-n] STRENG [-f FIL] [-f FIL] variabelnavn [...] [-f|-l|-u|-s|-n] [--hint FIF [--hint FIF] ...] NAVN [-h|-p|-r] [FIL] [-l] GRUBUUID [VARNAVN] [-l|-h|-a] [FIL ...] [-m (stretch|normal)] FIL [ADR|comENHED][,HASTIGHED] [ARG] [KORT [HWADRESSE]] [KORT] [MILJØVAR=VÆRDI] [MILJØVAR] [TASTETRYK1] [TASTETRYK2] ... [TAL:]VARNAVN [NUM] [TILVALG...] [TILVALG] [TILVALG] DISK [TILVALG] FIL_ELLER_ENHED [TILVALG] SKRIFTTYPEFILER [TILVALG]... [MODULER] [TILVALG]... [STI|ENHED] [TILVALG] [STI] [MØNSTER ...] [BRUGERLISTE] [VÆRDI]... [BxH[xD]] [BxH] [[-a|-u|-v] [-g BxH] TERM [TYPE]] [[år-]måned-dag] [time:minut[:sekund]] [bus]:[plads][.funk] [forhandler]:[enhed] "cryptomount"-kommando slår fejl: %s "loopback"-kommando slår fejl: %s der blev tildelt en værdi til argumentet "%s", men dette kræver ikke noget argument adgang nægtet tilføj NOTE-segment for CHRP IEEE1275 adr adresse ikke fundet forsøg på at læse eller skrive uden for disk "%s" forsøg på at læse eller skrive uden for partition forsøg på at læse forbi filens slutpunkt forsøg på at søge uden for filen forsøger at læse kerneaftrykket "%s" fra GRUB forsøger at læse kerneaftrykket "%s" fra GRUB igen tilgængelig RAM tilgængelige formater: base_addr = 0x%llx, længde = 0x%llx, %s
 base_addr = 0x%llx, længde = 0x%llx, type = 0x%x
 bitmap-filen "%s" er ikke i et understøttet format blocklist FIL bloklister er ugyldige blokstørrelse kan ikke divideres med 512 kan ikke bryde ud af 0 løkker kan ikke bestemme filsystemet på %s kan ikke finde kommandoen "%s" kan ikke montere krypteret diskenhed "%s": %s kan ikke åbne "%s": %s kan ikke åbne filen %s, indeks %d: fejl %d kan ikke hente bloklister: %s kan ikke komprimere kerneaftryk kan ikke finde et GRUB-drev til %s.  Kontrollér din device.map kan ikke finde en enhed for %s (er /dev monteret?) kan ikke hente translatørkommandolinje for stien "%s": %s kan ikke åbne OS-filen "%s": %s kan ikke åbne "%s": %s kan ikke læse "%s" korrekt kan ikke læse "%s": %s kan ikke omdøbe filen %s til %s kan ikke gendanne oprindeligt katalog kan ikke søge i "%s": %s kan ikke køre stat på "%s": %s kan ikke skrive til CD-ROM kan ikke skrive til "%s": %s kan ikke skrive til stdout: %s kort ikke fundet cat FIL verifikation af kontrolsum mislykkedes cmp FIL LOKAL comENHED[,HASTIGHED] fejl i sammenligning ved afsæt %llu forbindelse afvist tidsudløb for forbindelse konvertér til fed skrift kerneaftryk er for stort (0x%x > 0x%x) core.img-version stemmer ikke kunne ikke autokonfigurere %s kunne ikke finde en nødvendig medlemsenhed fra et flerenhedsfilsystem kunne ikke finde geli-forbruger kunne ikke finde "part"-klasse for geom kunne ikke åbne geom kunne ikke læse ELI-metadata kunne ikke hente UUID kunne ikke hente geli-UUID kunne ikke hente tilfældige data til saltnummer kunne ikke sende netværkspakke cp FIL LOKAL crc FIL kryptografisk fejl nummer %d cygwin_conv_path() mislykkedes slet enhedsafbildning hvis den allerede findes destination kan ikke nås enhedstal overstiger grænsen deaktivér hinting disk "%s" ikke fundet disken findes ikke, så bruger i stedet partitionsenheden %s diskmodul der skal bruges (biosdisk eller platformsspecifik). Dette tilvalg er kun tilgængeligt på BIOS-mål. størrelsen af diskboot.img skal være %u byte søg ikke efter filsystemer i ENHED domænenavnskomponent er for lang opdatér ikke LED-tilstand færdig indlejr FIL som en tidlig konfiguration indlejring er ikke muligt, men dette kræves til RAID- og LVM-installationer indlejring er ikke muligt, men dette kræves til installation på tværs af diske enter: start op, "e": tilvalg, "c": kommandolinje miljøblok er for lille fejl: %s.
 forvent GRUB-aftryk under kataloget KAT/%s frem for kataloget %s kunne ikke læse sektor 0x%llx fra "%s" fejl ved læsning af adgangskode kunne ikke skrive sektor 0x%llx til "%s" falsk fejlbehæftet RAM (BadRAM) fil "%s" ikke fundet filnavn forventet filnavn eller tempo samt noder forventet filsystemet "%s" understøtter ikke mærkater filsystemet "%s" understøtter ikke bloklister firmwareaftryk er for stort tving autohint fire argumenter forventet fwstart.img svarer ikke til den acceptable kendte version. Fortsæt på eget ansvar generér et aftryk i FORMAT vis en kort brugsanvisning vis denne hjælpeliste det givne argument er en systemenhed, ikke en sti grub-mkimage er kompileret uden understøttelse af XZ grub> hæng i SEK sekunder (som standard 3600) hex FIL ignorér bitmap-dele ved indlæsning ugyldig angivelse af terminalstørrelse installér GRUB-aftryk under kataloget KAT/%s frem for kataloget %s installér selvom der opdages problemer ugyldig PBKDF2-adgangskode ugyldigt magisk tal for arkitekturafhængig ELF ugyldigt magisk tal for arkitekturuafhængig ELF ugyldig farvespecifikation "%s" ugyldig miljøblok ugyldigt filnavn "%s" ugyldigt skrifttypeinterval ugyldigt linjeformat: %s ugyldig parameter %s ugyldig overspringsværdi %lld ugyldigt variabelnavn "%s" ugyldig angivelse af videotilstand "%s" ioctl GET_ARRAY_INFO-fejl: %s ioctl GET_DISK_INFO-fejl: %s ioctl RAID_VERSION-fejl: %s vis netværksadresser vis netværkskort vis netværksruter ls STI lzop-fil beskadiget gør at drevet kan startes fra som diskettedrev (standard for fdX-enheder). Kan ødelægge opstarten med visse BIOS'er. manglende "%c"-symbol mangler obligatorisk tilvalg til "%s" modulet "%s" er ikke indlæst modul er ikke indlæst navn kræver et aftryk samt monteringspunkt ingen APM fundet ingen DHCP-info fundet intet DHCP-tilvalg %d fundet ingen DHCP-tilvalg fundet ingen DNS-fortegnelse fundet intet DNS-svar modtaget ingen DNS-servere konfigureret ingen "/" i kanonisk filnavn ingen kommando angivet ingen dekrypteringsnøgle tilgængelig ingen server angivet ingen sådan partition ingen passende videotilstand fundet ingen symboltabel ingen terminal angivet ingen terminator i kerneaftrykket ikke-sektorjusterede data fundet i kernefilen ikke et katalog ikke en primær partition ikke en regulær fil ikke i funktionskrop ét argument forventet et andet program bruger indlejringsområdet, og der er ikke plads til core.img.  Sådanne programmer forsøger ofte at skjule data i hemmelighed. Vi anbefaler at du undersøger dette løbet tør for hukommelse udskriv et genereret aftryk til FIL [standard=stdout] udfil skal være angivet udskriv genereret konfigurationsfil til FIL [standard=stdout] overløb fundet adgangskoder stemmer ikke udfør en bootp-autokonfiguration fysisk diskenhed %s ikke fundet forudindlæs angivne moduler MODULER for tidlig slutning af fil filafslutning tidligere end ventet i %s tryk på CapsLock-tasten tryk på Insert-tasten tryk på NumLock-tasten tryk på ScrollLock-tasten tryk på SysRq tryk på venstre alt tryk på venstre ctrl tryk på venstre skift tryk på højre alt tryk på højre ctrl tryk på højre skift vis programversion vis versionsoplysninger og afslut vis denne hjælp og afslut udskriv uddybende meddelelser. læsefejl ved afsæt %llu: %s relativt underkatalog på netværksserver relokering 0x%x er endnu ikke implementeret reserveret RAM hent DHCP-tilvalg og gem det i VAR. Hvis VAR er -, så udskriv værdien. rodkatalog for TFTP-server cyklisk rute fundet gem ROM-aftryk i KAT [valgfri] gem uddata i FIL [påkrævet] vælg skrifttypeindeks serielport "%s" ikke fundet set [NAVN=VÆRDI ...] ændr capslock-tilstand angiv overlængde for skrifttype angiv underlængde for skrifttype angiv skriftfamilienavn angiv skrifttypeinterval angiv skriftstørrelse angiv inddatafilnavnet. Som standard STDIN ændr Insert-tilstand ændr numlock-tilstand angiv uddatafilnavnet. Som standard STDOUT ændr pause-tilstand angiv præfiks-katalog [standard=%s] ændr scrolllock-tilstand ændr programnavnet stør stretch|normal symbolet "%s" ikke fundet midlertidig terminalen %s kan ikke findes, eller håndteres ikke af terminfo terminalen "%s" ikke fundet argumentet "%s" kræver et heltal device.map-enhedsindgangen "%s" er ugyldig. Ignorerer den. Ret eller slet venligst din device.map drevnavnet "%s" i device.map er forkert. Bruger %s i stedet. Brug venligst formen [hfc]d[0-9]* (f.eks. "hd0" eller "cd") første sektor af kernefilen er ikke sektorjusteret installationsenheden er flytbar. Dette tilvalg er kun tilgængeligt på EFI. partitionstypen 0x%x er ugyldig sektorerne i kernefilen er for fragmenterede størrelsen af "%s" er ikke %u størrelsen af "%s" er for stor størrelsen af "%s" er for lille denne ELF-fil er ikke af den korrekte type denne GPT-partitionsetiket har ingen BIOS-opstartspartition; indlejring vil ikke være muligt denne LDM har ingen indlejringspartition; indlejring vil ikke være muligt denne msdos-agtige partitionsetiket har intet post-MBR-mellerum; indlejring vil ikke være muligt tre argumenter forventet tidsudløb ved åbning af "%s" tidsudløb ved læsning af "%s" tidsudløb: kunne ikke slå hardwareadresse op indlejring af symlænker er for dyb translatøren "%s" for stien "%s" har adskillige ord som ikke er tilvalg, i hvert fald "%s" og "%s" translatøren "%s" for stien "%s" har kun tilvalg, kan ikke finde enhedsdel translatørkommandolinje er tom for stien "%s" to argumenter forventet type kan ikke identificere noget filsystem i %s; sikkerhedstjek kan ikke udføres enhedsstørrelse uden justering uventet filafslutning ukendt argument "%s" ukendt komprimering %d
 ukendt enhedstype %s
 ukendt filsystem ukendt type af RAID-enhed "%s" ukendt fejl i regulært udtryk ukendt målformat %s
 ukendt terminfo-type "%s" ukendt formatangivelse "%s" for DHCP-tilvalg ukendt netværksadresse "%s" ukendt netværksgrænseflade "%s" ukendt tal adresse %s kan ikke slås op unset [NAVN ...] uunderstøttet HTTP-fejl %d: %s uunderstøttet HTTP-svar uunderstøttet RAID-version: %d.%d uunderstøttet gzip-format uunderstøttet paritet af serielport uunderstøttet hastighed af serielport uunderstøttet stop-bittal for serielport uunderstøttet ordlængde for serielport brug KAT som rod på EFI-systempartitionen. brug FIL som opstartsaftryk [standard=%s] brug FIL som kerneaftryk [standard=%s] brug FIL som enhedskort [standard=%s] brug FIL som xorriso [valgfri] brug GRUB-filer i kataloget KAT [standard=%s] brug identifikatorfil selv hvis UUID er tilgængelig brug billeder og moduler under KAT [standard=%s/<platform>] variablen "%s" er ikke sat visuelt ordnet UTF-8 vent til en fejlsøger tilsluttes vil ikke fortsætte med bloklister forkert magisk tal eller version af ELI xnu_uuid ENHED xz-fil beskadiget, eller uunderstøttede bloktilvalg kan ikke slette denne adresse du skal først indlæse kernen din BIOS-opstartspatition er for lille; indlejring vil ikke være muligt din core.img er usædvanlig stor.  Den vil ikke passe ind i indlejringsområdet dit indlejringsområde er usædvanligt lille.  Der er ikke plads til core.img.                                                                                                                                                                                                                                                                                                             boot/grub/locale/de.mo                                                                              0000600 0001750 0001750 00000315736 13417732100 0013631 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                       i     d#    F      H^  #   I^      m^     ^     ^     ^  $   ^     ^  6   _     H_     O_  	   [_     e_     r_     _     _     _     _  .   _  .   `  %   >`     d`     h`    w`    |a    b     c  7   c  F   c  v   "d  +   d     d      d     d  !   	e     +e  ,   He     ue     e  $   e     e  *   e     f     !f     )f     9f     Qf  
   qf  	   |f     f  ,   f  ,   f  ,   f  '   )g  -   Qg      g  (   g  (   g  )   g     h     <h     \h     ih     rh  "   {h  4   h     h     h  7   h      i  1   )i     [i     zi  %   }i  '   i  %   i  '   i     j     j      j     >j     Sj     hj     mj     j     j     j     j     j     j     j  3   j     )k  $   /k     Tk     lk     k     k     k     k     k  -   k     l  !   4l     Vl     kl     l  #   l     l  `   Hm  Z   m     n     n     ;n     =n     An     Xn     ^n     gn     ~n     n     n     n     n     n     o     (o     ?o     Uo     co     zo     o     o     o  %   o     o     o     o     p     .p     Dp     Sp     fp     wp  *   p  3   p     p  "   	q  8   ,q     eq     wq  	   q  #   q     q     q     q     r     3r     Jr  )   Yr     r     r     r  P   r     /s     Ds  H   Ys  &   s     s     s  !   s  ,   
t     7t     Ct     Gt  	   dt  !   nt  *   t     t     t     t     t     u  $   ,u     Qu     cu     uu     u     u     u  
   u  
   u     u  1   v     @v     Nv     [v     tv  3   v  >   v  $   w     (w     ?w     \w     tw     w     w  +   w     w     x  #   )x     Mx     dx  $   x     x     x  '   x  9   y     @y     Yy  z   wy     y     y  8   z     Fz  
   ]z     hz     uz     z     z     K{  +   h{     {     {     {  "   {     {     |  (   |     @|     X|     d|     t|     |     |  "   |  0   |     }     }     }  7   $}     \}     d}     p}     }     }     }  0   }     }     }     ~     ~  2   .~  %   a~     ~     ~  *   ~  6   ~  +        9     W     j  !   ;  d   ]  e     d   (  i     o     H   g          Â     ق                    -     D  #   ]                 1   Ƀ  )        %     ,     .     C  /   R                 5   ń            K   6                    Ѕ     ԅ     څ     ߅  '     P        ]     |  	                    '   Ȇ  +             -  )   I     s               Ç     ؇            $        @     R  "   m                 (        Ԉ     ؈  "   ވ  +     -   -     [     t                 O                  5     C  %   W     }  )     !   Ɗ  "             '  +   >     j            !        ŋ                          >     Y     l                 4   ʌ               0     H     c     ~                ͍  !          4   *  M   _  2               *     8   C     |                    Ϗ  3     $     +   @     l                         ̐           	     '     <     >  D   V            7     ;             >  !   ]            s        )     A     ^     o                    ɓ     ړ     ޓ               F     Y     m     t                 '   ϕ  
                  '     ,     D     H     Z  H   w          Ӗ            %        4     N  #   g               ŗ     Η                 %     F  "   S  (   v       %          2        .     7  #   P  *   t                 #        ݙ       "     ;     #   S  <   w                 .     	        '  `   9       !     )   ћ                      q                       Ɯ     ݜ                    :  "   Y     |               Ɲ     ݝ                  #   5     Y     v  g                    -          !          "   +  '   N  Q   v     Ƞ                          6     S     p               ơ                          0     Q     l            -        ߢ  "     b     )   y               ѣ  ,             2  	   7  "   A  %   d                      &     )   ۤ       ^        w  $     %        ܥ  ^     _     }   N     ̧  )     '     >   ը  D     !   Y  '   {  -     #   ѩ       )        ?  )   \  )     ,        ݪ               1     L  E   ]  $     A   ȫ  )   
     4     Q     m                Ȭ  q   ݬ     O  :   l          ŭ     ԭ               (     >  0   S                 )   ͮ  &             ;     V     i  )          %     %     ,     '   8  :   `       -          .        '     9  '   N  $   v  "             ʱ       *              (  )   /     Y     r  6   ,     c     e  0   l        !     "     #        '     9     W     m  !          
   Ĵ     ϴ  <     %   &     L     U     Y     _            d     *     0   ;  6   l                    ζ            0        3  !   F     h       $             շ          
       $   8  "   ]  $                   θ                    (     :     G     b     z  '             ߹  $     +     "   I     l  )   s               ͺ            '        >     ]     z  <         ˻                 m   "               ż     ߼       +     3   >  1   r       '     -   ڽ       '     '   9  .   a  	                  Ͼ               #     ?     Z     u            *     ?   ڿ  B     /   ]            .     O     )   7     a     w  	          5                       $     ?  :   Y                                                  *     ;     A  	   N     X     g                                
     
     	          !     )   )     S     g     y       F     N        L  "   Z     }       -     -     $     #     0   9  6   j                 (     1     )   +     U     d  !   {                  %          &   $     K     e        7     .     4        @     ]     r            %                       )     B     a     p     y  ,                                 $  #   9     ]     w  B                       #     >     U  &   q                           &        +     C     ^     n  ;     V     "     &   8  !   _                 /     H     F   4  (   {            I     $     '   ;     c  %   |                      $     '     *   /     Z     t       J                    -   1  +   _       $          "     +     J     %   Y             "                        )     @     S     k            %                    %   3     Y     p                 [          !   #     E     ^     r     w                                        &     C     [     w                                1        K     [     s                    s  1          0               !   -     O  "   l                                   	          $     4     E     U     f     x  &                            !  '   6  &   ^       L               !        3     R     d                                     #     #     $   C     h     x  &          !                  
            	   4  7   >     v  %     [     w     7     K     #     /   2     b     }       &     U     @   6  Q   w                 +        9  R   V  L     .        %     <  F   A                                         /     D     ^  2   y  !     #                       /     M     g                 (     #        )     B  )   U       '     '     '          0   .     _     z  -     8               !   .      P     q       .          !     B     E   N  B         %     &                  3  1   J      |  :               	          !        *     ?     Z     u  4     7     .        !     %  `  6  ]    r       h  =     O          4          )          *        A  5   ]            -          5   	     ?     P     X     h  *          	           *     1     *   ?  (   j  +     )     ,     ,     ,   C     p                      (     7        0     9  6   N       5               -     3     -   H  3   v            ?     &     #        =     B     T     f                           1          *        =     V     o       !               0        ,  -   L  (   z  %           =        (          u               4     6      :     [     a     j                       #     $   #    H    ]    v                         -    '   !    I (   ] !                    "    7   . N   f '    G    9   %    _ *   v     *    %            '   5 %   ]     -    %    &    *    j   > "    "    Z    *   J    u          /                	    )    ,   E    r                 (   	    ,	    @	    S	 !   o	    	 &   	 
   	    	     	 4   
    G
    Z
     l
 $   
 ;   
 Q   
 4   @    u #            $        .   % !   T 1   v +        $    /       C    \ 3   { B    &    %       ?         P    '   X     
        %            3               ' #   @    d    w 0                           1 2   H A   {             8       "    +    9    J    a    n C   u                  L    8   c !        2    B    9   F &            %           F     r   I     c   R                        3    P    k !                ;    >   5    t    |    ~     6                :    %   X '   ~ S    %    1     .   R                 ,    ]    #   # 
   G 	   R    \ $   d     :    2       
 %    /   E    u                          .   3     b     {  +                    6        !    ! 3   !! 9   U! 1   !    !    !    !    "    " f   5"    "    "    "    " 9   	# #   C# 6   g# $   # $   #    # "   $ 0   )$    Z$    s$    $     $    $    $    $    %    %    >%    X%    l%    %    %    % <   % &   &    4&    J&    g&    &    &    & &   & #   ' &   &'    M' E   m' i   ' C   ( &   a(    ( ,   ( A   (    )    %)    A)    [)    t) ;   )    ) ,   )    *    +*    >*    X*    r* !   * "   *    *    *    + !   + J   )+    t+    z+ @   + S   + (   , &   ?, 0   f,    , $   ,    ,    b- !   z-    -    -    -    -    -    .    0.    4.    :.    #/    0    (0    <0    C0 !   Q0    s0 '   0 E   0    0    1 #   $1    H1    M1    i1    n1 %   1 _   1    2 (   2    E2    Z2 .   n2    2    2 8   2 (   3 "   /3    R3    i3 '   3 '   3 '   3    3 %   4 2   *4    ]4 )   {4 '   4 7   4 	   5 "   5 +   25 <   ^5    5    5    5 )   5    5    5 )   5 =   6 ,   ]6 @   6    6    6    6 4   	7 	   >7    H7    _7    7 &   7 :   !8    \8    `8    f8    n8    8    9    /9    K9    Z9    v9    9    9     9    9 %   9    :     ;:    \:    v:    :    :    :    : )   : -   ; 4   H;    };    <     <    < /    =    0= &   J=    q= 4   = 2   = l   =    Z>    y>    >    >    >    >    >    ?    )?    E?    `? "   {?    ?    ?    ? "   ?     @    1@    L@     a@ 6   @    @ (   @ y   @ 1   yA    A !   A "   A ?   B +   GB    sB    wB #   B )   B    B    B    B    B -    C &   .C    UC    nC    C *   D 0   GD    xD    xE    F    F    ]G 3   [H 5   H H   H L   I (   [I .   I 4   I '   I +   J 4   <J !   qJ 1   J 1   J 5   J    -K &   MK (   tK    K    K Q   K &   $L R   KL 5   L &   L '   L .   #M (   RM )   {M &   M    M %   cN D   N &   N    N $   O    ,O    IO    fO    O 8   O *   O    P    P .   ;P 3   jP    P $   P    P "   P /   Q    KQ /   jQ /   Q 6   Q 1   R D   3R '   xR /   R    R H   R    ,S    ?S 4   ]S &   S &   S    S )   S     T 6   1T    hT    oT 5   wT    T    T F   U    U    U ?   U #   /V !   SV    uV    V     V     V     V *   W .   ?W !   nW    W    W ?   W 7   W 
   .X    9X    =X 3   CX    wX    X    X 4   0Y ?   eY W   Y    Y    Z    Z    1Z    MZ .   SZ C   Z %   Z 3   Z )    [    J[ 1   [[    [    [ !   [    [ *   [ *   %\ *   P\ ,   {\    \    \ .   \    ]    ] !   >]    `]    ]    ]    ] "   ] /   ] +   !^    M^ +   k^ )   ^ '   ^    ^ +   ^    _ )   0_ "   Z_    }_     _ 3   _ 4   _ &   `    D` @   `` (   `    `    ` "   ` m   a &   }a !   a    a    a     b =   "b G   `b E   b    b )   b 5   &c    \c ,   ec ,   c .   c    c    c    d     *d     Kd     ld     d    d    d    d    e    (e -   -e I   [e T   e /   e    *f    Af .   Zf Y   f -   f    g    )g 
   >g    Ig 8   hg    g    g    g    g    g :   h    Th    kh    h    h    h    h    h    h    h    h    h    h 
   i    i    /i    Li    fi    {i 
   i    i    i    i 	   i 	   i    i     i ,   j    .j    Bj -   Vj *   j ]   j F   k    Tk +   gk    k    k ?   k <   k +   /l '   [l :   l A   l     m    m    &m (   7m 0   `m ;   m    m    m (   m -   !n 3   On *   n H   n &   n 3   o *   Ro .   }o +   o S   o C   ,p P   pp /   p &   p (   q    Aq *   ]q 2   q '   q .   q (   r ,   ;r 3   hr    r 	   r $   r 8   r    s    )s    :s    Ts ,   js    s &   s     s /   s [   *t (   t 8   t '   t *   u "   ;u '   ^u 2   u *   u    u 	   u    u    v 2   8v    kv %   v    v %   v K   v f   2w 3   w *   w !   w    x    9x (   Bx F   kx Y   x `   y 3   my    y    y A   y 9   z 6   Iz $   z ;   z    z    z    {    { '   7{ ,   _{ 1   {    {    {    { o   |    |     |    | 7   | 4   }    K} 2   Q} 	   } $   } '   } 7   } 3   ~    G~ ,   c~ .   ~    ~ "   ~    ~        5    P    m          (    !            / (   O    x            ŀ    ̀ w       ` '   t            Ӂ *   ؁     !       7    U    r     '    *   ς            +    H    ^ "   u            ă G       +    ;    T $   j             7    "   Յ :       3 &   K '   r /    $   ʆ        
    )    A    V    m                χ            !    ? *   X "    !    2   Ȉ         5   ) .   _     Y             +   2 )   ^     *       ˊ    ߊ "    #   "    F    _    x ,    ,    2           8 3   P     %           ی             	   6 M   @ $    +    p   ߍ    P =    ]   ( $    6    #            $   . `   S L    c       e +   } )    D   ӑ 1    s   J k    7   *    b     e    !           $    @    [    v )           Ҕ     :    %   H 1   n            Е '        	 '   *     R 4   s ;    @    6   %     \    } 4    "   ̗ ,    ,    1   I %   { 2    &   Ԙ )    ;   % ?   a !       Ù "   ә &            > E   N (    #    H    _   * S         $     @        ?            F        :    J  ^  4                        H      $                     <        
    1                                k  ,     R     	               O           r   H        {   '  +           ;  <   i       %      _                      q              &      -                           =      "     *      F           L       _       ]  I               A   
  ~   (      [  _      &    C        D        X      }         Q        2                                x        $                              3    ?   G  O           ^                       s         9        M           e      "    w            1    z  	      w                   v        5    S                                  3         r            {      +  	                         P  `             d  c       ;   t          G  5           \  ^         d           #       b                 Z        @            Y  7  I                    .           >          :  X      g             :           K   (           $                D        F    a          )          '    ]            ;         H              W      k     '          o  z     %                  o            j       <    2                              L  t  .          Y  4                               `      n      f                     I  !      '  8      Z  F     %       `          )              D      t                            H                 \                           &      S    #      y    5        :          l   V  p             m  m         Z       `        C  I            T             h                  C  7   [       y   	  \                  h      ]      2     l    /    y                ~            T  O        Q   A        )   W        =  /    ]   K  |  4  }      C        g  ^    7      9                        Q         "     D      ,  *   W     [         u  0      2     f  x      H              4                    8  *      [              O            f                   E  -  =   E                   R      w  a           p   j  +    T      v      O      9      o       Y    A        v      U    X                           @                                             7          J      L       S    A               ~  P                 S        .      h       C  +  X      r          )      :      !          r      P      U       V                       V   T  I              E      P            c      3              i  w       f                2  -      
   M      i             [    c         _    d     U      6           D   8          V        e   ?  ,                  |          %  &  y        ;         B   u     g                      e           k         u         G    &           ,        }       p  e  M  -  J        |        0          )    A     <                    B                     \      #          v  9      ?       G     f                    @  8               =  /  K                      x  .           \     j      5      N  c        i  b  $  m                 0  N                   *           6              
                                            !   -      N  }           ,      a  n       s               g        g                          +                      M  b  >    3    *                                              >      J      h                !      #       _      R     z      b  l            %  L          Y        
                u   s                   "  Q             #      a  ]            d                     R      q  0      ?                      i    `  W       N        8             (                       J               	                h  K                6  n      k  ;        e  ^             >        p            q                          @                                                M     .      6  >   1       (  /     '  N                  t                0  z    ~    U           U  G       |                {  o         R      4           q          x                   !     B     j  3                     =  Y                    7  Q          1      "    b        F              B            c      Z                        9      E                                                          P        m  s  d                         K                                        B                    E   {                  Z    a  /                        X      6         L             S          5   (             T   1       W          n                            <                              V  l                 total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: option '%c%s' doesn't allow an argument
 %s: option '%s' is ambiguous; possibilities: %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File size: %s
 File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS Import ZFS wrapping key stored in FILE. Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... M MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MODULE MODULES Mail xorriso support requests to <bug-xorriso@gnu.org>. Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Option -- switches to native xorriso command mode. Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show the contents of a file. Show the current mappings. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 T TARGET Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This entry can be booted by any user. Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. Your embedding area is unusually small.  core.img won't fit in it. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `cryptomount' command fails: %s `loopback' command fails: %s `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format blocklist FILE blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s cannot compress the kernel image cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot get translator command line for path `%s': %s cannot open OS file `%s': %s cannot open `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. diskboot.img size must be %u bytes do not probe for filesystems in DEVICE domain name component is too long don't update LED state done embed FILE as an early config embed FILE as public key for signature checking embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to get canonical path of `%s' failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification install GRUB images under the directory DIR/%s instead of the %s directory install even if problems are detected invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid block size invalid color specification `%s' invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no `/' in canonical filename no command is specified no decryption key available no network card found no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found pre-load specified modules MODULES premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory of TFTP server route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the argument `%s' requires an integer the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for text use DIR as the EFI System Partition root. use FILE as font (PF2). use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub-2.00+20130519
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-06-03 19:11+0100
Last-Translator: Mario Blättermann <mario.blaettermann@gmail.com>
Language-Team: German <translation-team-de@lists.sourceforge.net>
Language: de
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=(n != 1);
X-Generator: Poedit 1.5.4
               Gesamtspeicher: %d KiB
     Kein bevorzugter Modus verfügbar
     Bevorzugter Modus: %ux%u
   EDID-Prüfsumme ist ungültig   EDID-Version: %u.%u
   Grafikadapter konnte nicht initialisiert werden   Keine Informationen verfügbar   VBE-Info:   Version: %d.%d  OEM-Softwarerevision: %d.%d
   oder:   (ganz links)  (mittig)  (ganz rechts)  - Partitionsbeginn bei %llu%sKiB  - Sektorgröße %uB  - Gesamtgröße %llu%sKiB  - Gesamtgröße unbekannt  [OPTIONEN …] %.*s: Parameter für ARGP_HELP_FMT muss positiv sein %.*s: Parameter für ARGP_HELP_FMT benötigt einen Wert %.*s: Unbekannter Parameter für ARGP_HELP_FMT %ds %ds verbleibend. %s enthält ein %s-Dateisystem, welches bekanntermaßen keinen Platz für einen DOS-Betriebssystemstart bereithält. Die Installation von GRUB könnte die ZERSTÖRUNG DES DATEISYSTEMS nach sich ziehen, sofern Daten durch grub-setup überschrieben werden. Die Option --skip-fs-probe deaktiviert diese Überprüfung, verwenden Sie dies auf eigene Gefahr. %s scheint eine %s-Partitionstabelle und LDM zu enthalten, welches bekanntermaßen keine sichere Kombination ist. Die Installation von GRUB könnte die ZERSTÖRUNG DES DATEISYSTEMS nach sich ziehen, sofern Daten durch grub-setup überschrieben werden. Die Option --skip-fs-probe deaktiviert diese Überprüfung, verwenden Sie dies auf eigene Gefahr. %s scheint eine %s-Partitionstabelle zu enthalten, welche bekanntermaßen keinen Platz für einen DOS-Betriebssystemstart bereithält. Die Installation von GRUB könnte die ZERSTÖRUNG DES DATEISYSTEMS nach sich ziehen, sofern Daten durch grub-setup überschrieben werden. Die Option --skip-fs-probe deaktiviert diese Überprüfung, verwenden Sie dies auf eigene Gefahr. %s unterstützt keine UUIDs %s erstellt eine Tastaturbelegung für GRUB mittels ckbcomp\n %s ist veraltet. Verwenden Sie stattdessen gfxpayload=%s vor dem Linux-Befehl.
 %s ist veraltet. VGA-Modus %d wurde nicht erkannt. Verwenden Sie stattdessen gfxpayload=BREITExHÖHE[xTIEFE] vor dem Linux-Befehl.
 %s wird von grub-mkconfig noch nicht unterstützt.\n %s, mit Hurd %s %s, mit Hurd %s (Wiederherstellungsmodus) %s, mit Linux %s %s, mit Linux %s (Wiederherstellungsmodus) %s, mit Xen %s und Linux %s %s, mit Xen %s und Linux %s (Wiederherstellungsmodus) %s, mit Xen-Hypervisor %s, mit kFreeBSD %s %s, mit kFreeBSD %s (Wiederherstellungsmodus) %s, mit Kernel %s (über %s) %s, mit Kernel %s (über %s, Wiederherstellungsmodus) %s: HASH-FEHLER
 %s: OK
 %s: LESEFEHLER
 %s: Zu viele Argumente
 %s: Sie müssen dies als Root ausführen\n %s: Fehler: %s: Info: %s: Ungültige Option -- »%c«
 %s: Option »%c%s« erlaubt kein Argument
 %s: Option »%s« ist mehrdeutig; Möglichkeiten: %s: Option »--%s« erlaubt kein Argument
 %s: Option »%s« erwartet ein Argument
 %s: Option »-W %s« erlaubt kein Argument
 %s: Option »-W %s« ist nicht eindeutig
 %s: Option »-W %s« erfordert ein Argument
 %s: Option erfordert ein Argument -- »%c«
 %s: Option erwartet ein Argument -- »%s«\n %s: Unbekannte Option »%c%s«
 %s: Unbekannte Option »--%s«
 %s: Warnung: (32-bit) (64-bit) (PROGRAMMFEHLER) Keine Version bekannt!? (PROGRAMMFEHLER) Option hätte erkannt werden müssen!? (auf %s) - Bezeichnung »%s« - Letzte Änderungszeit %d-%02d-%02d %02d:%02d:%02d %s --MEHR-- -h HASH [-c DATEI [-p PRÄFIX]] [DATEI1 [DATEI2 ...]] -l | -r | [-s] grubdev osdisk. .5 Geschütze 16-bit-Schnittstelle unterstützt
 Geschütze 16-bit-Schnittstelle nicht unterstützt
 Geschütze 32-bit-Schnittstelle unterstützt
 Geschütze 32-bit-Schnittstelle nicht unterstützt
 =WERT > Durch ACPI beanspruchter Speicherbereich (für Energiesparmodi) Durch ACPI wiederverwendbarer Speicher ACPI-Herunterfahren ist gescheitert ADDR ADDR WERT [MASKE] ADRESSE [GRÖßE] ADR1,MASKE1[,ADR2,MASKE2[,...]] ADDRESSE DNS_SERVER APM deaktiviert
 APM deaktiviert
 APM aktiviert
 APM aktiviert
 ARGP_HELP_FMT: Wert %s ist kleiner oder gleich %s ASCII CR/NL-Zeilenenden im DOS-Stil akzeptieren. Aktive Eingabeterminals: Aktive Ausgabeterminals: Adapter »%s«:
 Einen DNS-Server hinzufügen Eine Netzwerkadresse hinzufügen. Eine Netzwerkroute hinzufügen. Erweiterte Optionen für %s Erweiterte Optionen für %s (mit Xen-Hypervisor) Unterbrechung mit ESC erlauben. Nach dem Dateinamen für den Neustart fragen. Eingabe wird als hexadezimal angenommen. Eingabe wird als Kennwort angenommen. Eingabe wird als Raw angenommen. Es wird versucht, den Master-Schlüssel zu entschlüsseln … Es wird versucht, GRUB auf einer Platte mit mehreren Partitionsbezeichnungen oder sowohl Partitionsbezeichnungen als auch Dateisystemen zu installieren. Dies wird derzeit noch nicht unterstützt. Es wird versucht, GRUB auf einer Platte mit mehreren Partitionsbezeichnungen zu installieren. Dies wird derzeit noch nicht unterstützt. Es wird versucht, GRUB auf einer nicht partitionierten Platte oder in eine Partition zu installieren. Das ist eine SCHLECHTE Idee. Verfügbare Eingabeterminals: Verfügbare Ausgabeterminals: B B/s BIOS_SICHERUNG [INT10_SICHERUNG] BLOCK BYTE:BIT Modus des Hintergrundbildes. Basisordner für Hash-Liste. BIOS-basiertes System booten. Ein Betriebssystem starten. In den Single-User-Modus booten. Mit Fehlerdiagnosemeldungen booten. Mit ausführlichen Meldungen booten. »%s« wird gebootet Eine Befehlsliste booten Im Blindmodus booten Boot-Pfad: %s
 Boot-Pfad: nicht verfügbar
 Haltepunkt für GDB auslösen CGA  FARBE BEFEHL [ARGUMENTE] CPU-Leerlauf verlangsamt den Prozessor nicht
 CPU-Leerlauf verlangsamt den Prozessor
 CS5536 in %d:%d.%d
 ROM-Bereich kann nicht aktiviert werden. Konfigurierte Geräte bearbeiten. Partitionstyp ändern Alt-Taste überprüfen. Strg-Taste überprüfen. Umschalttaste überprüfen. Fähigkeiten der CPU überprüfen. Prüfsummen der Dateien mit Liste in DATEI vergleichen. Überprüfen, ob der Prozessor den 64-Bit-(Lang-)Modus unterstützt (Vorgabe). Status der Umschalttasten überprüfen. Überprüfen Sie, ob der Benutzer in der BENUTZERLISTE aufgeführt ist. Überprüft die GRUB-Skriptkonfiguration auf Syntaxfehler Den Bildschirm leeren. »active«-Flag auf %d wurde gelöscht.  
 Befehle: DATEI mit lokaler Datei LOKAL vergleichen. Datei »%s« mit »%s« vergleichen:
 Zwei Dateien vergleichen. XNU-UUID des Geräts berechnen. Hash-Prüfsumme berechnen oder prüfen. Serielle Schnittstelle konfigurieren. Schleifen fortsetzen Übliche Schriftdateiformate in PF2 umwandeln DATEI in lokale Datei LOKAL kopieren. DATEI in die Standardausgabe kopieren. FPSWA-Treiber konnte nicht gefunden werden Physischer Datenträger »%s« konnte nicht gefunden werden. Einige Module könnten im Core-Abbild fehlen. sha256 konnte nicht geladen werden sha512 konnte nicht geladen werden BIOS-Strukturen für Abwärtskompatibilität mit dem vorhandenen Betriebssystem erstellen. Eine leere Umgebungs-Blockdatei erstellen. Aktuelle Terminfo-Typen: GERÄT GERÄT [PARTITION[+/-[TYP]]] ... GERÄT muss ein OS-Gerät sein (z.B. /dev/sda). GERÄTENAME ORDN ORDNER [OSBundleRequired] DNSSERVER Diagnosewerkzeug für Dateisystemtreiber. Speicherbereiche als »badram« deklarieren. Dekompressor ist zu groß Einen Menüeintrag definieren. Ein Untermenü definieren. Eine Netzwerkadresse löschen. Eine Netzwerkroute entfernen. Das angegebene Loopback-Gerät löschen. Variablen löschen. Treiber ermitteln. Dateisystem-UUID ermitteln. Dateisystembezeichnung ermitteln. Dateisystemtyp ermitteln. Typ der Partitionszuordnung bestimmen. Gerät %s: Gerätekennung: %s
 Gerätekennung: nicht verfügbar Direkte Farbe, Maske: %d/%d/%d/%d  Pos.: %d/%d/%d/%d ACPI deaktivieren. SMP deaktivieren. Alle Boot-Ausgaben deaktivieren. SMART aktivieren/deaktivieren (0/1). Unsauber eingebettete Partition wird verworfen (%s,%s,%s%d) Statistiken des Plattenzwischenspeichers: Hits = %lu (%lu.%02lu%%), Misses = %lu
 Plattenanzahl muss Plattenliste vorangestellt sein.
 FPSWA-Version anzeigen. Laufwerksstatus mit SMART anzeigen. Eine Textzeile anzeigen. Blockliste von DATEI anzeigen. Ausgabe auf allen Konsolen anzeigen. Energiemodus anzeigen. Benutzung dieses Befehls anzeigen und beenden. Diese Hilfe anzeigen und beenden. Anzeigen/Festlegen des/der aktuellen Datums/Zeit. Angehängte Zeilenumbrüche nicht ausgeben. Keine Meldungen ausgeben. Kein Diskettenlaufwerk überprüfen. Zum Abschalten des Rechners kein APM verwenden. Nichts tun, erfolgreich. Nichts tun, nicht erfolgreich. Keine Fehlerdiagnosemeldungen beim Booten anzeigen. Keine Host-Tabellen spezifiziert durch kommagetrennte Liste laden. Nicht neu starten, nur herunterfahren. Nach dem ersten Fehler nicht stoppen. EBDA nicht aktualisieren. Könnte Fehler oder Hänger in manchen BIOS-Versionen beseitigen, ist aber nicht effektiv bei Betriebssystemen, die kein RSDP von GRUB empfangen.  UMGVAR UMGVAR [UMGVAR] ... FEHLER: Keine gültige Tastaturbelegung gefunden. Überprüfen Sie die Eingabe.
 Beenden ist jederzeit mit ESC möglich. AUSDRUCK AUSDRUCK ] Verstrichene Zeit: %d.%03d s 
 Verstrichene Zeit: %d.%03d Sekunden 
 Einbettung ist nicht möglich. GRUB kann in dieser Konfiguration nur mittels Blocklisten installiert werden. Blocklisten sind allerdings UNZUVERLÄSSIG und deren Verwendung wird daher nicht empfohlen. Eine Tastatursequenz emulieren Auswertung der Backslash-Maskierungen ermöglichen. ZFS-Passwort eingeben: KDB beim Booten verwenden. In Normalmodus wechseln. Kennwort für %s%s%s angeben (%s):  Passwort eingeben: Benutzername eingeben: Fehler beim Einlesen der Befehlszeilenargumente
 Einen Ausdruck auswerten. Beenden ist gescheitert GRUB beenden. Schleifendurchlauf beenden Normalmodus abbrechen. Variablen exportieren. Version-1-Tabellen zum Betriebssystem exportieren. Version-2- und Version-3-Tabellen zum Betriebssystem exportieren. DATEI DATEI [ARG ...] DATEI [ARGUMENTE …] DATEI | TEMPO [TONHÖHE1 DAUER1] [TONHÖHE2 DAUER2] ...  DATEI… DATEI1 DATEI2 DATEINAME BEFEHL DATEISYSTEM [VARIABLE] DATEI|prompt FORMAT Das FPSWA-Protokoll war nicht imstande, die Schnittstelle zu finden FPSWA-Revision: %x
 VON-BIS[,VON-BIS] VON[K|M|G] BIS[K|M|G] FT_Init_FreeType ist gescheitert Sowohl Vorgabe- als auch Alternativeinträge konnten nicht gebootet werden.
 Baum für »device-mapper« konnte nicht erstellt werden Alternative »%s« wird verwendet Dateigröße: %s
 Dateisystem »%s« unterstützt keine Einbettungen Dateien unterscheiden sich an Position %llu: 0x%x [%s], 0x%x [%s]
 Dateigrößen sind unterschiedlich: %llu [%s], %llu [%s]
 Zugriff auf Dateisystem nicht möglich Dateisystemtyp %s Hybrid-MBR des GPT-Gerätes GERÄT füllen. Angegebene Partitionen werden Teil des Hybrid-MBR. Bis zu 3 Partitionen sind zulässig. TYP ist ein MBR-Typ. + bedeutet, dass die Partition aktiv ist. Nur eine Partition kann aktiv sein. Laden des EFI-Emulators finalisieren. Zuerst das Gerät HINWEIS versuchen, falls aktuell laufende ARC. Falls HINWEIS mit Komma endet, auch Unterpartitionen versuchen Zuerst das Gerät HINWEIS versuchen (für aktuell laufendes BIOS). Falls HINWEIS mit Komma endet, auch Unterpartitionen versuchen Zuerst das Gerät HINWEIS versuchen (für aktuell laufendes EFI). Falls HINWEIS mit Komma endet, auch Unterpartitionen versuchen Zuerst das Gerät HINWEIS versuchen (bei IEEE1275). Falls HINWEIS mit Komma endet, auch Unterpartitionen versuchen Zuerst das Gerät HINWEIS versuchen, falls direkter Hardwarezugriff unterstützt wird. Falls HINWEIS mit Komma endet, auch Unterpartitionen versuchen Zuerst das Gerät HINWEIS versuchen. Falls HINWEIS mit Komma endet, auch Unterpartitionen versuchen Ein Videoproblem beheben. %s auf %s gefunden (%s)\n %s auf %s gefunden\n GNU Mach wurde gefunden: %s Hurd-Modul gefunden: %s NetBSD-Kernel gefunden: %s\n Hintergrund gefunden: %s\n initrd-Abbild gefunden: %s\n Kernel-Modulordner gefunden: %s\n FreeBSD-Kernel gefunden: %s\n Linux-Abbild gefunden: %s\n Thema gefunden: %s\n Freetype-Fehler %d beim Laden des Glyphs 0x%x für U+0x%x%s ATA-Sicherheitseinstellungen bis zum Zurücksetzen einfrieren. Freitag G GNU GRUB  Version %s GRUB-Bootmenü GRUB weiß nicht, wie man diese Maschine stoppen kann! GRUB-Emulator. GRUB-GERÄT=PLAN9-GERÄT Unsinn in ARGP_HELP_FMT: %s GRUB-Tastaturbelegung aus dem der Linux-Konsole erstellen. PBKDF2-Passwort-Prüfsumme erzeugen.  Eine Grub-Konfigurationsdatei erstellen Ein lauffähiges Abbild einschließlich aller Module im gewählten Format erstellen crc32-Prüfsumme von DATEI berechnen. Informationen zum Platten-Zwischenspeicher holen. ATA-Datenträgerparameter ermitteln/festlegen. GiB GiB/s HASH HINWEIS Das System anhalten, wenn möglich, mit APM. Diesen Rechner anhalten. Dieser Befehl funktioniert nicht in allen Firmware-Implementationen. N Bytes in Ausgabedatei verarbeiten Hallo Welt Hercules  KENNUNG ABBILD1 [ABBILD2 ...] EINHÄNGEPUNKT ABBILDPFAD BEFEHLE In DATEI gespeicherten ZFS-Wrapping-Schlüssel importieren Inkorrektes virtuelles Gerät: kein Typ verfügbar Ein Modul einfügen. GRUB auf Ihrem Laufwerk installieren. installation beendet. Keine Fehler aufgetreten. Ungültige Rückreferenz Ungültiger Zeichenklassenname Ungültiges Sortierzeichen Ungültiger Befehl %s.
 Ungültiger Inhalt von \{\} Ungültiges Gerät »%s«.
 Ungültige Plattenanzahl.
 Ungültiger vorhergehender regulärer Ausdruck Ungültiges Bereichsende Ungültiger regulärer Ausdruck Routing der Benutzerkonfiguration aufrufen. K KERNEL ARGUMENTE TASTE Tastenzuordnung für den Schnellstart dieses Eintrags. KiB KiB/s Virtuelles Gerät durchsuchen (Datei oder Laufwerk) Veralteter Parameter »%s« wird nicht mehr unterstützt. Legende: Maske/Position=Rot/Grün/Blau/Reserviert Länge der erzeugten Prüfsumme Länge von Salt DNS-Server auflisten PCI-Geräte auflisten. Alle Dateien auflisten. Verfügbare Grafikmodi auflisten. Falls Auflösung angegeben ist, nur Modi dieser Auflösung anzeigen. Geräte und Dateien auflisten. Geräte oder Dateien auflisten. Geräte auflisten. Dateien in PFAD auflisten. Von Firmware bereitgestellte Speicherzuordnung auflisten. Liste der unterstützten Videomodi: Liste der Benutzer, die diesen Eintrag booten dürfen. Eingabeterminal listen oder wählen. Ausgabeterminal listen oder wählen. Aktuelle Variablen auflisten. Die geladenen Schriften auflisten. Variablen aus Blockdatei der Umgebung auflisten. 64-bit XNU-Abbild laden. BIOS-Sicherung laden. FreeBSD-Umgebung laden. FreeBSD-Kernelmodul laden (ELF). FreeBSD-Kernelmodul laden. FreeDOS-kernel.sys laden. Linux laden. NTLDR oder BootMGR laden. NetBSD-Kernelmodul laden (ELF). NetBSD-Kernelmodul laden. Plan9-Kernel laden. XNU-Erweiterungsordner laden. XNU-Erweiterungspaket laden. XNU-Erweiterung laden. XNU-Abbild laden. XNU-Ramdisk laden. Wird im Betriebssystem als md0 angezeigt. Inhalt von »device-properties« laden Ein PXE-Abbild laden. Eine Tastaturbelegung laden. Einen Mlutiboot2-Kernel laden. Ein Multiboot2-Modul laden. Einen Multiboot-Kernel laden. Ein Multiboot-Modul laden. Begrüßungsbildschirm für XNU laden. Ein gespeichertes XNU-Abbild laden. EFI-Emulator laden und initialisieren. Einen anderen Bootloader laden. Eine andere Konfigurationsdatei laden, aber nur deren Menüeinträge. Eine andere Konfigurationsdatei laden, ohne den Kontext zu ändern. Es werden nur Menüeinträge geladen. Eine andere Konfigurationsdatei laden, ohne den Kontext zu ändern. Eine andere Konfigurationsdatei laden. Weiteres Coreboot-Payload laden Hintergrundbild für aktives Terminal laden. Host-ACPI-Tabellen und durch Argumente angegebene Tabellen laden. initrd laden. Ramdisk von kOpenBSD laden. Kernel von FreeBSD laden. Kernel von NetBSD laden. Kernel von OpenBSD laden. Nur Tabellen spezifiziert durch kommagetrennte Liste laden. Gleiche Datei mehrfach laden. Variablen aus Blockdatei der Umgebung laden. ZFS-Schlüssel laden. Geladene Schriften GNU Mach wird geladen … Linux %s wird geladen … Xen %s wird geladen … Initiale Ramdisk wird geladen … FreeBSD-Kernel %s wird geladen … Illumos-Kernel wird geladen … Hurd wird geladen … M MAC-Überprüfung ist gescheitert MENÜEINTRAG ist eine Zahl, ein Titel oder Bezeichner eines Menüeintrags. MODUL MODULE Richten Sie Supportanfragen zu Xorriso an <bug-xorriso@gnu.org>. Bootfähiges GRUB-Abbild für CD-ROM, Festplatte, USB-Stick und Diskette erstellen. Eine GRUB-Tastaturlayoutdatei erstellen. Ein bootfähiges GRUB-Abbild erstellen Ein virtuelles Gerät aus einer Datei erstellen. Partition als aktiv markieren BIOS-Laufwerkszuordnungen verwalten. Erforderliche oder optionale Argumente für lange Optionen sind ebenso erforderlich bzw. optional für die entsprechenden Kurzoptionen. PCI-Geräte bearbeiten. Von BEFEHL benötigte Zeit messen Speicher ausgeschöpft Speichertyp: DDR2. Speichertyp: Unbekannt. Bezeichner des Menüeintrags. Kein Menüeintrag angegeben. Typ des Menüeintrags. MiB MiB/s Minimale BASH-ähnliche Zeilenbearbeitung wird unterstützt. Für das erste Wort listet TAB die möglichen Befehlsvervollständigungen auf. Ansonsten werden mit TAB die möglichen Geräte-oder Dateivervollständigungen angezeigt. %s Minimale Emacs-ähnliche Bildschirmbearbeitung wird unterstützt. TAB listet Vervollständigungen auf. Drücken Sie Strg-X oder F10 zum Booten, Strg-C oder F2 für eine Befehlszeile oder ESC, um abzubrechen und zum GRUB-Menü zurückzukehren. Argumente fehlen
 Eingabedatei fehlt
 Montag Schwarzweiß  Mehr als ein Installationsgerät? Mehr als ein Menüeintrag? Ein verschlüsseltes Gerät einhängen. Alle Datenträger einhängen, für die das »boot«-Flag gesetzt ist. Alles einhängen. Nach UUID einhängen. Verschlüsselte Geräte einhängen. NAME NAME [VARIABLE] [HINTWEISE] ZAHL ANZAHL_DER_SEKUNDEN Name	Referenzzähler	Abhängigkeiten
 Native Festplattentreiber werden verwendet. Nutzung der Firmware-Schnittstelle wird verweigert. Netzwerkprotokolle: Neuer MBR wurde nach »%s« geschrieben
 Kein CS5536 gefunden Kein FPSWA gefunden Keine Statistiken für Boot-Zeiten verfügbar
 Kein Befehl angegeben.
 Kein Gerät angegeben.
 Keine Statistiken zum Paket-Zwischenspeicher verfügbar
 Es wurden keine Laufwerke neu zugeordnet Kein bekanntes Dateisystem erkannt Keine Übereinstimmung Kein Pfad angegeben.
 Kein Pfad oder Gerät wurde angegeben.
 Kein vorhergehender regulärer Ausdruck Kein Baum virtueller Geräte verfügbar Non-chain 4  Zu wenige Parameter für den Befehl.
 Bitte verbinden Sie nun einen entfernten Debugger. Anzahl vor PBKDF2-Durchläufe OS Laufwerk #Num ------> GRUB/BIOS-Gerät Fehler beim Öffnen der OS-Datei %s: %s Option -- wechselt in den nativen xorriso-Befehlsmodus. Optionen: Suche außerhalb des Bereichs: %d
 Ersetzung außerhalb des Bereichs (%d, %d)
 Die geschätzte Zuordnung von Plan9-Geräten überschreiben. P PARTITION BEFEHLE PFAD PBKDF2-Prüfsumme Ihres Passworts ist %s
 PORT PORT WERT [MASKE] Alte Konfiguration im neuen Kontext laden Alte Konfiguration im neuen Kontext laden, nur Menüeinträge Alte Konfiguration im gleichen Kontext laden Alte Konfiguration im gleichen Kontext laden, nur Menüeinträge Teil-Nummer: %s.
 Partition %d ist nun aktiv. 
 Partition %s: Partitionstyp »%s« unterstützt keine Einbettungen Pfad: %s
 Pfad: nicht verfügbar BEFEHLE auf Partition ausführen.
Rufen Sie »parttool PARTITION help« auf, um eine
Liste der verfügbaren Befehle zu erhalten. Eine DNS-Suche ausführen Eine IPV6-Autokonfiguration ausführen Sowohl direkte als auch umgekehrte Zuordnungen ausführen. PiB PiB/s Planar  Einen Klang abspielen. Bitte verwenden Sie nicht den alten Titel »%s« für GRUB_DEFAULT, verwenden Sie »%s« (für Versionen vor 2.00) oder »%s« (für 2.00 oder neuer) Pool-GUID: %016llx
 Pool-GUID: nicht verfügbar Pool-Name: %s
 Pool-Name: nicht verfügbar Pool-Status: aktiv Pool-Status: zerstört Pool-Status: exportiert Pool-Status: ARC-Gerät, Level 2 Pool-Status: potenziell aktiv Pool-Status: für Hotspare reserviert Pool-Status: nicht verfügbar Pool-Status: nicht initialisiert Mögliche Argumente sind: Mögliche Befehle sind: Mögliche Geräte sind: Mögliche Dateien sind: Mögliche Partitionen sind: Mögliche Dinge sind: Vorzeitiges Ende des regulären Ausdrucks Beliebige Taste drücken, um fortzusetzen … Drücken Sie eine beliebige Taste, um xnu zu starten »Enter« zum Booten des markierten Betriebssystems, »e« zum Bearbeiten der Befehle vor dem Booten oder »c« für eine Befehlszeile. »Enter« zum Booten des markierten Betriebssystems, »e« zum Bearbeiten der Befehle vor dem Booten oder »c« für eine Befehlszeile. Mit »ESC« kehren Sie zum vorherigen Menü zurück. Speicher-Informationen anzeigen. ZFS-Info zu GERÄT ausgeben. ZFS-BOOTFSOBJ ausgeben oder als VARIABLE setzen Eine Blockliste ausgeben. Blockargument ausgeben und ausführen. Backtrace ausgeben. Identität und Einstellungen des Laufwerks ausgeben. Größenwerte in menschenlesbarem Format ausgeben. Geräteinformationen für einen angegebenen Pfad ermitteln (oder Gerät, falls die Option -d angegeben ist). RAM enthält Coreboot-Tabellen RAM enthält Firmware-Code RAM-Slotnummer %d
 REGEXP ZEICHENKETTE ROM-Abbild ist vorhanden. 16-bit-Wert aus ADDR lesen. 16-bit-Wert von PORT lesen. 32-bit-Wert aus ADDR lesen. 32-bit-Wert von PORT lesen. 8-bit-Wert aus ADDR lesen. 8-bit-Wert von PORT lesen. Nur Bytes der Länge LENGTH lesen. Neu starten ist gescheitert Den Rechner neu starten. Passwort erneut eingeben: Register %x von %x:%02x.%x ist %x
 Regulärer Ausdruck ist zu groß Einen DNS-Server entfernen Ein Modul entfernen. Eine Umgebungsvariable löschen. Alle Speichersegmente im angegebenen Bereich löschen. Berichten Sie Fehler an %s.
 Melden Sie Fehler an <bug-grub@gnu.org>. Serielles Terminal wurde angefordert, aber GRUB_SERIAL_COMMAND wurde nicht angegeben. Standardparameter werden verwendet. Alle Zuordnungen auf Standardwerte zurücksetzen. Info zum Gerät holen. Aus einer Funktion zurückkehren. Zum IEEE1275-Prompt zurückkehren. Rufen Sie »gdb %s %d« auf und setzen Sie ARGS.HOLD auf Null.
 Geben Sie »go« ein, um GRUB fortzusetzen. SEK KURZNAME KURZNAME KARDE ADRESSE [HW-ADRESSE] KURZNAME NETZ [SCHNITTSTELLE| gw GATEWAY] GRÖßE QUELLE|-u UUID|-a|-b ZEICHENKETTE Samstag Gelesenen Wert in Variable VARNAME speichern. Variablen in die Blockdatei speichern. »Hallo Welt« ausgeben. Anhand von UUIDs nach Geräten suchen. Falls VARIABLE angegeben wird, dann wird das erste gefundene Gerät zum Setzen der Variable verwendet. Geräte nach Datei durchsuchen. Geräte nach Dateisystem-UUID durchsuchen. Geräte nach Dateisystembezeichnung durchsuchen. Anhand von Dateien, Dateisystembezeichnungen oder Dateisystem-UUIDs nach Geräten suchen. Falls --set angegeben wird, dann wird das erste gefundene Gerät zum Setzen der Variable verwendet. Falls keine Variable angegeben wird, dann wird »root« verwendet Anhand von Dateien nach Geräten suchen. Falls VARIABLE angegeben wird, dann wird das erste gefundene Gerät zum Setzen der Variable verwendet. Anhand von Bezeichnungen nach Geräten suchen. Falls VARIABLE angegeben wird, dann wird das erste gefundene Gerät zum Setzen der Variable verwendet. Der Sektor %llu wird bereits vom Raid-Controller »%s« verwendet und wird daher übergangen. Bitte fragen Sie den Hersteller, ob es möglich ist, keine Daten in der MBR-Lücke zu speichern. Der Sektor %llu wird bereits vom Programm »%s« verwendet und wird daher übergangen. Diese Software kann in Zukunft Start- oder andere Probleme hervorrufen. Bitte fragen Sie dessen Autoren, ob es möglich ist, keine Daten im Boot-Bereich zu speichern. Gerät nach dessen Position auf dem Bus auswählen. Gerät nach Anbieter und Gerätekennungen auswählen. Erweiterte Energieverwaltung setzen
(1=niedrig, ..., 254=hoch, 255=aus). Automatische Klangverwaltung festlegen
(0=aus, 128=leise, ..., 254=schnell). OEMID von RSDP, XSDT und RSDT festlegen. OEMTABLE-ID von RSDP, XSDT and RSDT festlegen. OEMTABLE-Revision von RSDP, XSDT und RSDT festlegen. »hidden«-Flag im Partitionstyp setzen Eine Variable auf den Rückgabewert setzen. Eine Variable auf das erste gefundene Gerät setzen. Eine Umgebungsvariable festlegen. Hintergrundfarbe für aktives Terminal festlegen. Ersteller-Feld von RSDP, XSDT und RSDT festlegen. Ersteller-Revision von RSDP, XSDT und RSDT festlegen. Debug-Umgebungsvariable setzen. Laufwerk in den Schlafmodus versetzen. Laufwerk in den Standby-Modus versetzen. Positionsparameter festlegen. Root-Gerät festlegen. Wartezeit bis Standby festlegen
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). terminfo-Typ von TERM auf TYP setzen.
 Den Standard-Booteintrag für GRUB festlegen (nur für den nächsten Bootvorgang). Den voreingestellten Booteintrag für GRUB festlegen. Adresse des seriellen Ports festlegen. Parität des seriellen Ports festlegen. Geschwindigkeit des seriellen Ports festlegen. Stop-Bits des seriellen Ports festlegen. Wortlänge des seriellen Ports festlegen. Einheit des seriellen Ports festlegen. Abbilder zum Booten von GERÄT einrichten.

Sie sollten dieses Programm normalerweise nicht direkt ausführen.
Verwenden Sie stattdessen grub-install. Benutzerpasswort festlegen (PBKDF2).  Benutzerpasswort (Klartext) festlegen. Nicht empfohlen, da unsicher. Variable durch Benutzereingabe setzen. Variablen setzen. Partitionstyp wird auf 0x%x gesetzt
 Positionsparameter anpassen. ACPI-Informationen anzeigen. APM-Informationen anzeigen. Eine Hilfemeldung anzeigen. Lange Liste mit ausführlicheren Informationen anzeigen. Den Inhalt der DATEI hexadezimal anzeigen. Geladene Module anzeigen. Inhalt des Speichers anzeigen. Roh-Inhalt des  ATA IDENTIFY-Sektors anzeigen. Roh-Inhalt einer Datei oder des Speichers anzeigen. Inhalt einer Datei anzeigen. Alle aktuellen Zuordnungen anzeigen. Diese Meldung anzeigen. Nur Version-1-Tabellen darstellen. Nur Version-2- und Version-3-Tabellen anzeigen. Herunterfahren ist gescheitert »initrd«-Befehl wie in grub-legacy simulieren »kernel«-Befehl wie in grub-legacy simulieren »modulenounzip«-Befehl wie in grub-legacy simulieren »password«-Befehl wie in grub-legacy simulieren »password«-Befehl von grub-legacy im Menüeintragsmodus simulieren N Bytes der Ausgabedatei überspringen. Offset-Bytes am Beginn der Datei überspringen. Slot %d geöffnet
 Hurd-Bestandteile wurden gefunden, die aber zum Booten nicht ausreichen. Dateiname angeben. Zu verwendenden Hash angeben. Eine oder mehrere zu ladende Schriftdateien angeben. Größe für jeden Lesevorgang angeben Die Anzahl der Eingabedateien angeben. Geschwindigkeit: %s 
 GDB-Stub auf dem angegebenen Port starten GDB-Stub stoppen Entsprechende Komponenten-NUMMER in VARNAME speichern. Erfolg Sonntag Normale Ausgaben unterdrücken (Warnungen verbleiben) Syntaxfehler in Zeile %u
 In der erzeugten GRUB-Konfigurationsdatei wurden
Syntaxfehler entdeckt. Stellen Sie sicher, das die Dateien
/etc/default/grub und /etc/grub.d/* fehlerfrei sind oder
erstellen Sie einen Fehlerbericht mit %s als Anhang. Ein-/Ausgabebereich des Systemverwaltungsbus-Controllers ist bei 0x%x
 T ZIEL Zielformat wurde nicht angegeben (verwenden Sie die Option -0). Terminalgeometrie wurde festgelegt. Terminal ist nur ASCII [Vorgabe]. Terminal ist logisches UTF-8. Terminal ist visuelles UTF-8. USB-Unterstützung überprüfen. Bit bei BYTE:BIT im CMOS testen. Dateilesegeschwindigkeit testen. Prüfen, ob REGEXP auf ZEICHENKETTE passt. Das Video-Subsystem im Modus BxH überprüfen. Das Video-Subsystem überprüfen. Nur Text Die Dateien sind identisch.
 Der hervorgehobene Eintrag wird automatisch in %ds ausgeführt. Dieser Eintrag kann von jedem Benutzer gebootet werden. Donnerstag TiB TiB/s Werkzeug zum Bearbeiten einer Umgebungs-Blockdatei. Flash-Gesamtgröße: %d B.
 Angehängter Backslash 64-bit-UUID in ein von XNU verarbeitbares Format umwandeln. Falls -l angegeben ist, bitte Kleinschreibung beibehalten (wie von blkid) Einen Systemdateinamen in einen für GRUB umwandeln. Übersetzt die Zeichenkette anhand den aktuellen Einstellungen. Rufen Sie »%s --help« oder »%s --usage« auf, um weitere Informationen zu erhalten.
 Dienstag BENUTZER PASSWORT BENUTZER PBKDF2_PASSWORT BENUTZERNAME[,BENUTZERNAME] UTF-8 Weiterleitung konnte nicht angelegt werden: %s Ihre Plattform konnte nicht erkannt werden. Verwenden Sie --target. Fork konnte nicht angelegt werden: %s Datenstrom von %s konnte nicht geöffnet werden: %s Pool-Status konnte nicht ermittelt werden Daten entpacken. Datei entpacken, bevor Prüfsumme ermittelt wird. Unbekannter Adresstyp %d
 Unbekannter Befehl »%s«.
 Unbekanntes Kompressionsformat %s Unbekannte Kodierung Unbekanntes zusätzliches Argument »%s«. Unbekanntes gsub-Schriftmerkmal 0x%x (%s)
 Ungültiger Code für Tastaturscan 0x%02x
 Ungültiger Bezeichner für Tastaturscan %s
 Unbekannter Systemfehler Unbekannter Videomodus Typ des virtuellen Gerätes ist unbekannt: %s
 EFI-Umgebung entladen. Kein Gegenstück für ( oder \( Nicht übereinstimmende ) oder \) Kein Gegenstück für [ oder [^ Kein Gegenstück für \{ Unerkannte Option »%s«\n Pool-Status nicht erkannt Nicht unterstützter Adresstyp %d
 Nicht unterstützte Coverage-Spezifikation: %d
 Nicht unterstützter Hardware-Adresstyp %d
 Bildformat nicht unterstützt Nicht unterstütztes Ersetzungs-Flag: 0x%x
 Nicht unterstützte Ersetzungsangabe: %d
 Nicht unterstützter Ersetzungstyp: %d
 Aufruf: Aufruf: %s -o AUSGABE CKBMAP_ARGUMENTE...\n Aufruf: %s GERÄT
 Aufruf: %s [EINGABEDATEI [AUSGABEDATEI]]
 Aufruf: %s [OPTION] MENÜEINTRAG\n Aufruf: %s [OPTION]\n CDROM als Root-Gerät verwenden. Entfernte GDB-Fehlerdiagnose anstatt DDB verwenden. ZEICHENKETTE als Inhalt des Menüeintrags verwenden. Einkompiliertes Root-Gerät verwenden. Serielle Konsole verwenden. Verwenden Sie die Tasten %C und %C zum Markieren eines Eintrags. VARIABLE SCHNITTSTELLE ZAHL BESCHREIBUNG VARNAME Ausführlicher Countdown. Angehängte Signatur überprüfen. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtuelles Gerät ist nicht verfügbar Virtuelles Gerät ist gescheitert Virtuelles Gerät ist offline Virtuelles Gerät ist online Virtuelles Gerät wurde entfernt WARNUNG: Im Betriebssystem wird keine Konsole verfügbar sein WARNUNG: Es wurde keine plattformspezifische Installation durchgeführt WARNUNG: Nicht unterstützte Parameter für Schrifteigenschaften: %x
 BREITExHÖHE. Die angegebene Anzahl an Sekunden warten. Nach jeder ausgegebenen Zeile auf Tastendruck warten. Warnung: Warnung: ungültige Hintergrundfarbe »%s«
 Warnung: ungültige Vordergrundfarbe »%s«
 Warnung: Syntaxfehler (fehlender /) in »%s«
 Mittwoch Windows NT/2000/XP (Lader) Windows Vista/7 (Lader) 16-bit-Wert nach ADDR schreiben. 16-bit-Wert nach PORT schreiben. 32-bit-Wert nach ADDR schreiben. 32-bit-Wert nach PORT schreiben. 8-bit-Wert nach ADDR schreiben. 8-bit-Wert nach PORT schreiben. Geschriebene SPD-Bytes: %d B.
 Xen-Hypervisor, Version %s YUV  Sie müssen mindestens einen Befehl angeben.
 »SystemPartition« und »OSLoader« müssen manuell eingerichtet werden. Ihr Einbettungsbereich ist ungewöhnlich klein.  core.img würde nicht hineinpassen. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] GERÄT [--md5] PASSWORT [DATEI] [--no-mem-option] [--type=TYP] DATEI [ARG ...] [-1|-2] [--exclude=TABELLE1,TABELLE2|--load-only=TABELLE1,TABELLE2] DATEI1 [DATEI2] [...] [-c DATEI [-p PRÄFIX]] [DATEI1 [DATEI2 ...]] [-d] GERÄTENAME DATEI. [-e|-n] ZEICHENKETTE [-f DATEI] [-f DATEI] Variablenname [...] [-f|-l|-u|-s|-n] [--hint HINWEIS [--hint HINT] ...] NAME [-h|-p|-r] [DATEI] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [DATEI …] [-m (stretch|normal)] DATEI [-s POSITION] [-d GERÄT] [-s POSITION] [-d GERÄT] [-v VAR] REGISTER[=WERT[:MASKE]] [-s GRÖßE] DATEINAME [ADR|comUNIT][,GESCHW] [ARG] KARTE [HW-ADRESSE] [KARTE] [UMGVAR=WERT] [ENVVAR] [KÜRZEL1] [KÜRZEL2] ... [MODUL1 MODUL2 …] [ZAHL:]VARNAME [ZAHL] [OPTIONEN…] [OPTIONEN] [OPTIONEN] DATENTRÄGER [OPTIONEN] DATEI_ODER_GERÄT [OPTIONEN] SCHRIFTDATEIEN [OPTION]… [MODULE] [OPTIONEN]… [PFAD|GERÄT] [OPTIONEN] [PFAD] [MUSTER ...] [BENUTZERLISTE] [WERT]... [BxH[xT]] [BxH] [[-a|-u|-v] [-g BxH] TERM [TYP]] [[Jahr-]Monat-Tag] [Stunde:Minute[:Sekunde]] [bus]:[slot][.func] [Anbieter]:[Gerät] »cryptomount«-Befehl ist fehlgeschlagen: %s »loopback«-Befehl ist fehlgeschlagen: %s »obppath« wurde in den Elternordnern von %s nicht gefunden, keine IEEE1275-Namensermittlung Ein Argument wurde »%s« zugeordnet, obwohl es kein Argument erwartet Zugriff verweigert NOTE-Segment für CHRP IEEE1275 hinzufügen Adresse Adresse nicht gefunden Versuch, außerhalb der Platte »%s« zu lesen und zu schreiben Versuch, außerhalb der Partition zu lesen oder zu schreiben Versuch, hinter dem Ende der Datei zu lesen Versuch, außerhalb der Datei zu suchen Es wird versucht, das Core-Abbild »%s« aus GRUB zu lesen Es wird versucht, das Core-Abbild »%s« erneut aus GRUB zu lesen verfügbarer RAM Verfügbare Formate: Falsche Signatur base_addr = 0x%llx, Länge = 0x%llx, %s
 base_addr = 0x%llx, Länge = 0x%llx, Typ = 0x%x
 Bitmap-Datei »%s« besitzt ein nicht unterstütztes Format blocklist DATEI Blocklisten sind ungültig Blockgröße ist nicht durch 512 teilbar 0 Schleifen können nicht unterbrochen werden Dateisystemtyp auf %s konnte nicht ermittelt werden Befehl »%s« konnte nicht gefunden werden Verschlüsselter Datenträger »%s« konnte nicht eingebunden werden: %s »%s« kann nicht geöffnet werden: %s %s kann nicht geöffnet werden, Index %d: Fehler %d Blocklisten konnten nicht ermittelt werden Blocklisten konnten nicht ermittelt werden: %s Kernel-Abbild kann nicht komprimiert werden Für %s konnte kein GRUB-Laufwerk gefunden werden. Überprüfen Sie Ihre device.map Gerät für %s konnte nicht gefunden werden (ist /dev eingehängt?) Übersetzer-Befehlszeilenpfad für Pfad »%s« konnte nicht ermittelt werden: %s OS-Datei »%s« kann nicht geöffnet werden: %s »%s« kann nicht geöffnet werden: %s »%s« kann nicht korrekt gelesen werden »%s« ist nicht lesbar: %s Datei %s kann nicht in %s umbenannt werden Originalordner kann nicht wiederhergestellt werden »%s« kann nicht durchsucht werden: %s Aufruf von stat für »%s« nicht möglich: %s Auf CD-ROM kann nicht geschrieben werden Auf »%s« kann nicht geschrieben werden: %s Schreiben in die Standardausgabe fehlgeschlagen: %s Karte nicht gefunden cat DATEI Prüfsummenvergleich ist gescheitert Zu verwendende Kompression für Kernel-Abbild auswählen cmp DATEI LOKAL comUNIT[,GESCHW] Vergleichsfehler bei %llu Verbindung verweigert Verbindungsabbruch wegen Zeitüberschreitung In fette Schrift umwandeln Core-Abbild ist zu groß (0x%x > 0x%x) Version von core.img passt nicht %s konnte nicht automatisch konfiguriert werden Teilgerät eines über mehrere Geräte verteilten Dateisystems konnte nicht gefunden werden Geli-Nutzer konnte nicht gefunden werden »part«-Teil von »geom« konnte nicht geöffnet werden »geom« konnte nicht geöffnet werden! ELI-Metadaten konnten nicht gelesen werden UUID konnte nicht ermittelt werden Geli-UUID konnte nicht ermittelt werden Zufallsdaten für Salt konnten nicht geholt werden Netzwerkpaket konnte nicht gesendet werden cp DATEI LOKAL crc DATEI Krytografiefehler Nummer %d cygwin_conv_path() gescheitert Gerätezuordnung löschen, falls bereits vorhanden Ziel ist nicht erreichbar Geräteanzahl übersteigt die Grenzen Hinting deaktivieren Laufwerk »%s« wurde nicht gefunden. Platte existiert nicht, ersatzweise wird Partition des Geräts %s verwendet Zu verwendendes Platten-Modul (biosdisk oder native). Diese Option ist nur für BIOS-Ziele verfügbar. Die Größe von diskboot.img muss %u Bytes betragen GERÄT nicht auf Dateisysteme überprüfen Domainname-Komponente ist zu lang LED-Status nicht aktualisieren erledigt DATEI als Anfangskonfiguration einbetten DATEI als öffentlichen Schlüssel zur Signaturüberprüfung einbetten Einbettung ist nicht möglich, jedoch für die Installation mit RAID und LVM erforderlich Einbettung ist nicht möglich, jedoch für die Installation auf mehreren Laufwerken erforderlich Enter: Booten, »e«: Optionen, »c«: Befehlszeile Environment-Block ist zu klein Fehler: %s.
 GRUB-Abbilder wurden im Ordner ORDNER/%s anstelle von %s erwartet Kanonischer Pfad von »%s« konnte nicht ermittelt werden Lesen des Sektors 0x%llx von »%s« ist fehlgeschlagen Passwort konnte nicht gelesen werden Schreiben des Sektors 0x%llx nach »%s« ist fehlgeschlagen Falsch Fehlerhafter RAM (BadRAM) Datei »%s« nicht gefunden Dateiname wurde erwartet Dateiname oder Tempo und Noten erwartet Dateisystem »%s« unterstützt keine Labels Dateisystem »%s« unterstützt keine Blocklisten Firmware-Abbild ist zu groß Automatisches Hinting erzwingen Vier Argumente werden erwartet fwstart.img entspricht nicht der bekanntermaßen funktionierenden Version. Verwenden Sie dies auf eigene Gefahr Ein Abbild im FORMAT erzeugen Eine kurze Hilfemeldung ausgeben Diese Hilfe anzeigen Das angegebene Argument ist ein Systemgerät, kein Pfad grub-mkimage wurde ohne XZ-unterstützung kompiliert grub> für SEK Sekunden hängenbleiben (Voreinst.: 3600) hex DATEI Bitmap-Strikes beim Laden ignorieren Ungültige Angabe der Terminalgeometrie GRUB-Abbilder in ORDNER/%s anstelle von %s installieren Trotzdem installieren, auch wenn Probleme auftreten Ungültiges PBKDF2-Passwort Ungültiges ELF-Magic (architekturabhängig) Ungültiges ELF-Magic (architekturunabhängig) Ungültige Blockgröße Ungültige Angabe der Farbe »%s« Ungültiger Environment-Block Ungültiger Dateiname »%s« Ungültiger Schriftbereich Ungültiges Zeilenformat: %s Ungültiger Parameter %s Ungültiger Sprungwert %lld Ungültiger Variablenname »%s« Ungültige Angabe »%s« des Grafikmodus GET_ARRAY_INFO-Fehler (ioctl): %s GET_DISK_INFO-Fehler (ioctl): %s RAID_VERSION-Fehler (ioctl): %s Kernel-Abbild ist zu groß (0x%x > 0x%x) Netzwerkadressen auflisten Netzwerkkarten auflisten Netzwerkrouten auflisten ls PFAD lzop-Datei ist beschädigt Das Laufwerk auch als Diskette bootfähig machen (Vorgabe für fdX-Geräte). Kann mit einigen BIOS-Varianten scheitern. Symbol »%c« fehlt Obligatorische Option für »%s« fehlt Modul »%s« ist nicht geladen Modul ist nicht geladen Name Abbild und Einhängepunkt werden benötigt Kein APM gefunden Keine DHCP-Informationen gefunden Keine DHCP-Option %d gefunden Keine DHCP-Optionen gefunden Keine DNS-Angabe gefunden Kein DNS-Antwort empfangen Es wurden keine DNS-Server konfiguriert Kanonischer Pfadname enthält keinen »/« Kein Befehl angegeben Kein Schlüssel verfügbar Keine Netzwerkkarte gefunden Kein Server angegeben Keine solche Partition Kein passender Videomodus gefunden Keine Symboltabelle Kein Terminal angegeben Kein Terminator im Core-Abbild Nicht an Sektoren ausgerichtete Daten wurden in der Core-Datei gefunden Ist kein Ordner Keine primäre Partition Keine reguläre Datei außerhalb des Bereichs der Funktion Ein Argument wurde erwartet Andere Software nutzt den Einbettungsbereich, wodurch nicht genug Platz für core.img ist. Solche Software versucht häufig, Daten zu speichern, um sie unauffindbar zu machen. Wir empfehlen Ihnen, dies zu untersuchen Hauptspeicher erschöpft Ein erzeugtes Abbild in DATEI ausgeben [Vorgabe=stdout] Ausgabedatei muss angegeben werden Erstellte Konfiguration in DATEI ausgeben [Vorgabe=stdout] Überlauf wurde erkannt Die Passwörter stimmen nicht überein Eine bootp-Autokonfiguration ausführen Physischer Datenträger %s wurde nicht gefunden In MODULE angegebene Module vorladen Vorzeitiges Ende der Datei Unerwartetes Ende der Datei %s CapsLock-Taste drücken Einfg-Taste drücken NumLock-Taste drücken ScrollLock-Taste drücken SysRq-Taste drücken Linke Alt-Taste drücken Linke Strg-Taste drücken Linke Umschalttaste drücken Rechte Alt-Taste drücken Rechte Strg-Taste drücken Rechte Umschalttaste drücken Programmversion ausgeben Versionsinformationen ausgeben und beenden Diese Meldung anzeigen und beenden Ausführliche Meldungen ausgeben. Öffentlicher Schlüssel %08x wurde nicht gefunden Lesefehler bei %llu: %s Text aus DATEI lesen. Relativer Pfad zum Unterordner auf dem Netzwerkserver Neuzuweisung 0x%x ist noch nicht implementiert reservierter RAM DHCP-Option holen und in VARIABLE speichern. Falls VARIABLE »-« ist, den Wert ausgeben. Wurzelordner auf dem TFTP-Server Routenschleife entdeckt ROM-Abbilder in ORDNER speichern [optional] Ausgabe in DATEI speichern [erforderlich] Schriftart-Index setzen Serieller Port »%s« wurde nicht gefunden set [NAME=WERT ...] Feststelltasten-Modus festlegen Schriftauffüllung oben einstellen Schriftauffüllung unten einstellen Schriftfamilie festlegen Schriftbereich festlegen Schriftgröße festlegen Name der Eingabedatei für 32-bit festlegen. Name der Eingabedatei für 64-bit festlegen. Name der Eingabedatei festlegen. Vorgabe ist STDIN Einfügen-Modus festlegen Numlock-Modus festlegen Name der Ausgabedatei festlegen. Vorgabe ist STDOUT Pause-Modus festlegen Präfix-Ordner festlegen [Vorgabe=%s] Scrolllock-Modus festlegen Programmname festlegen Größe stretch(=ZOOM)|normal(=NORMAL) Symbol »%s« nicht gefunden temporär Terminal %s wurde nicht gefunden oder wird von terminfo nicht berücksichtigt Terminal »%s« wurde nicht gefunden Das Argument »%s« benötigt eine Ganzzahl Der device.map-Eintrag »%s« ist ungültig, wird ignoriert. Bitte korrigieren oder löschen Sie Ihre device.map Der Laufwerksname »%s« in device.map ist inkorrekt. %s wird stattdessen verwendet. Bitte verwenden Sie die Form [hfc]d[0-9]* (z.B. »hd0« oder »cd«) Der erste Sektor der Core-Datei ist nicht sektor-ausgerichtet Das Installationsgerät ist ein Wechseldatenträger. Diese Option ist nur bei EFI verfügbar. Der Partitionstyp 0x%x ist ungültig Die Sektoren der Core-Datei sind zu stark fragmentiert Die Größe von »%s« ist nicht %u »%s« ist zu groß »%s« ist zu klein Diese ELF-Datei ist vom falschen Typ Diese GPT-Partitionsbezeichnung hat keine BIOS-Boot-Partition, Einbettung würde unmöglich sein Dieses LDM hat keine Einbettungspartition, Einbettung würde unmöglich sein Die MSDOS-Partitionsbezeichnung hat keinen Freiraum nach dem MBR, Einbettung würde unmöglich sein Drei Argumente erwartet Zeitüberschreitung beim Öffnen von »%s« Zeitüberschreitung beim Lesen von »%s« Zeitüberschreitung: Hardware-Adresse konnte nicht aufgelöst werden Zu tief verschachtelte symbolische Verknüpfungen Übersetzer »%s« für Pfad »%s« hat verschiedene Wörter, die keine Optionen sind, mindestens »%s« und »%s« Übersetzer »%s« für Pfad »%s« wurde nur Optionen übergeben, device-Teil konnte nicht gefunden werden Übersetzer-Befehlszeilenpfad für Pfad »%s« ist leer Zwei Argumente wurden erwartet Typ Es kann kein Dateisystem in %s erkannt werden. Sicherheitsüberprüfung kann nicht ausgeführt werden Gerätegröße ist unausgerichtet Unerwartetes Dateiende Unbekanntes Argument »%s« Unbekannte Kompression %d
 Unbekannter Gerätetyp %s
 Unbekanntes Dateisystem Ungültiger Typ eines RAID-Geräts »%s« Unbekannter regexp-Fehler Unbekanntes Zielformat %s
 Unbekannter Terminfo-Typ »%s« Nicht erkannte Formatspezifikation für DHCP-Option »%s« Nicht erkannte Netzwerkadresse »%s« Netzwerk-Schnittstelle »%s« wurde nicht erkannt Zahl nicht erkannt Nicht auflösbare Adresse %s unset [NAME ...] Nicht unterstützter HTTP-Fehler %d: %s Nicht unterstützte HTTP-Antwort Nicht unterstützte RAID-Version: %d.%d Nicht unterstütztes gzip-Format Parität des seriellen Ports wird nicht unterstützt Geschwindigkeit des seriellen Ports wird nicht unterstützt Anzahl der Stop-Bits des seriellen Ports wird nicht unterstützt Wortlänge des seriellen Ports wird nicht unterstützt FARBE für Hintergrund verwenden FARBE für Text verwenden ORDNER als Wurzel der EFI-Systempartition verwenden. DATEI als Schrift verwenden (PF2). DATEI als Boot-Abbild verwenden [Vorgabe=%s] DATEI als Kern-Abbild verwenden [Vorgabe=%s] DATEI als Gerätezuordnung verwenden [Vorgabe=%s] DATEI als xorriso benutzen [optional] GRUB-Dateien im Ordner ORDN verwenden [Vorgabe=%s] ZEICHENKETTE als Produktname verwenden ZEICHENKETTE als Produktversion verwenden ID-Datei auch dann verwenden, wenn eine UUID verfügbar ist Abbilder und Module in ORDNER verwenden [Vorgabe=%s/@platform@] Variable »%s« ist nicht gesetzt Visuelles UTF-8 Warten, bis ein Debugger einklinkt mit Blocklisten wird nicht fortgesetzt Falsches ELI-Magic oder -Version xnu_uuid GERÄT xz-Datei ist beschädigt oder Blockoptionen werden nicht unterstützt Sie können diese Adresse nicht löschen Sie müssen zuerst den Kernel laden Ihre BIOS-Boot-Partition ist zu klein, Einbettung würde unmöglich sein Ihre Datei core.img ist ungewöhnlich groß. Sie würde nicht in den Einbettungsbereich passen. Ihr Einbettungsbereich ist ungewöhnlich klein. core.img würde nicht hineinpassen.                                   boot/grub/locale/de@hebrew.mo                                                                       0000600 0001750 0001750 00000462275 13417732100 0015127 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                       i     d#    F      H^  #   I^      m^     ^     ^     ^  $   ^     ^  6   _     H_     O_  	   [_     e_     r_     _     _     _     _  .   _  .   `  %   >`     d`     h`    w`    |a    b     c  7   c  F   c  v   "d  +   d     d      d     d  !   	e     +e  ,   He     ue     e  $   e     e  *   e     f     !f     )f     9f     Qf  
   qf  	   |f     f  ,   f  ,   f  ,   f  '   )g  -   Qg      g  (   g  (   g  )   g     h     <h     \h     ih     rh  "   {h  4   h     h     h  7   h      i  1   )i     [i     zi  %   }i  '   i  %   i  '   i     j     j      j     >j     Sj     hj     mj     j     j     j     j     j     j     j  3   j     )k  $   /k     Tk     lk     k     k     k     k     k  -   k     l  !   4l     Vl     kl     l  #   l     l  `   Hm  Z   m     n     n     ;n     =n     An     Xn     ^n     gn     ~n     n     n     n     n     n     o     (o     ?o     Uo     co     zo     o     o     o  %   o     o     o     o     p     .p     Dp     Sp     fp     wp  *   p  3   p     p  "   	q  8   ,q     eq     wq  	   q  #   q     q     q     q     r     3r     Jr  )   Yr     r     r     r  P   r     /s     Ds  H   Ys  &   s     s     s  !   s  ,   
t     7t     Ct     Gt  	   dt  !   nt  *   t     t     t     t     t     u  $   ,u     Qu     cu     uu     u     u     u  
   u  
   u     u  1   v     @v     Nv     [v     tv  3   v  >   v  $   w     (w     ?w     \w     tw     w     w  +   w     w     x  #   )x     Mx     dx  $   x     x     x  '   x  9   y     @y     Yy  z   wy     y     y  8   z     Fz  
   ]z     hz     uz     z     z     K{  +   h{     {     {     {  "   {     {     |  (   |     @|     X|     d|     t|     |     |  "   |  0   |     }     }     }  7   $}     \}     d}     p}     }     }     }  0   }     }     }     ~     ~  2   .~  %   a~     ~     ~  *   ~  6   ~  +        9     W     j  !   ;  d   ]  e     d   (  i     o     H   g          Â     ق                    -     D  #   ]                 1   Ƀ  )        %     ,     .     C  /   R                 5   ń            K   6                    Ѕ     ԅ     څ     ߅  '     P        ]     |  	                    '   Ȇ  +             -  )   I     s               Ç     ؇            $        @     R  "   m                 (        Ԉ     ؈  "   ވ  +     -   -     [     t                 O                  5     C  %   W     }  )     !   Ɗ  "             '  +   >     j            !        ŋ                          >     Y     l                 4   ʌ               0     H     c     ~                ͍  !          4   *  M   _  2               *     8   C     |                    Ϗ  3     $     +   @     l                         ̐           	     '     <     >  D   V            7     ;             >  !   ]            s        )     A     ^     o                    ɓ     ړ     ޓ               F     Y     m     t                 '   ϕ  
                  '     ,     D     H     Z  H   w          Ӗ            %        4     N  #   g               ŗ     Η                 %     F  "   S  (   v       %          2        .     7  #   P  *   t                 #        ݙ       "     ;     #   S  <   w                 .     	        '  `   9       !     )   ћ                      q                       Ɯ     ݜ                    :  "   Y     |               Ɲ     ݝ                  #   5     Y     v  g                    -          !          "   +  '   N  Q   v     Ƞ                          6     S     p               ơ                          0     Q     l            -        ߢ  "     b     )   y               ѣ  ,             2  	   7  "   A  %   d                      &     )   ۤ       ^        w  $     %        ܥ  ^     _     }   N     ̧  )     '     >   ը  D     !   Y  '   {  -     #   ѩ       )        ?  )   \  )     ,        ݪ               1     L  E   ]  $     A   ȫ  )   
     4     Q     m                Ȭ  q   ݬ     O  :   l          ŭ     ԭ               (     >  0   S                 )   ͮ  &             ;     V     i  )          %     %     ,     '   8  :   `       -          .        '     9  '   N  $   v  "             ʱ       *              (  )   /     Y     r  6   ,     c     e  0   l        !     "     #        '     9     W     m  !          
   Ĵ     ϴ  <     %   &     L     U     Y     _            d     *     0   ;  6   l                    ζ            0        3  !   F     h       $             շ          
       $   8  "   ]  $                   θ                    (     :     G     b     z  '             ߹  $     +     "   I     l  )   s               ͺ            '        >     ]     z  <         ˻                 m   "               ż     ߼       +     3   >  1   r       '     -   ڽ       '     '   9  .   a  	                  Ͼ               #     ?     Z     u            *     ?   ڿ  B     /   ]            .     O     )   7     a     w  	          5                       $     ?  :   Y                                                  *     ;     A  	   N     X     g                                
     
     	          !     )   )     S     g     y       F     N        L  "   Z     }       -     -     $     #     0   9  6   j                 (     1     )   +     U     d  !   {                  %          &   $     K     e        7     .     4        @     ]     r            %                       )     B     a     p     y  ,                                 $  #   9     ]     w  B                       #     >     U  &   q                           &        +     C     ^     n  ;     V     "     &   8  !   _                 /     H     F   4  (   {            I     $     '   ;     c  %   |                      $     '     *   /     Z     t       J                    -   1  +   _       $          "     +     J     %   Y             "                        )     @     S     k            %                    %   3     Y     p                 [          !   #     E     ^     r     w                                        &     C     [     w                                1        K     [     s                    s  1          0               !   -     O  "   l                                   	          $     4     E     U     f     x  &                            !  '   6  &   ^       L               !        3     R     d                                     #     #     $   C     h     x  &          !                  
            	   4  7   >     v  %     [     w     7     K     #     /   2     b     }       &     U     @   6  Q   w                 +        9  R   V  L     .        %     <  F   A                                         /     D     ^  2   y  !     #                       /     M     g                 (     #        )     B  )   U       '     '     '          0   .     _     z  -     8               !   .      P     q       .          !     B     E   N  B         @     X     >   e  C     )     t     N     y        P     _     z       M     &     .     4   K       q     m     _          $       
  	    0    ;   H            )    s        Z  S   u  "     [     9   H  r     6     &   ,  _   S  .     f        I    f    t /    R           ' :   ; U   v d    U   1 M    W    S   - W    V    R   0 =    =               % ]   5 q        %    L   ;     b    :       3 W   6 d    W    d   K	 	   	    	    	 Y   P
 O   
    
         $ 3   B &   v (    (    $    $    d   9     [    :   	 :   D     =    G    G    ;   g p    F    Y   [ Y    Q    C   a r       .   &    B   ' B   j         I            A   - <   o H    =    J   3 S   ~ R    (   % <   N 6         C    ?   '    g    o '   ~ f    Y       g \    O    3   . -   b /    8    L    x   F     P   d        S /    O       i `   } @    7     E   W  S     W     /   I! i   y! Z   ! Y   >" a   "    " C   # C    $    d$ _   6% ;   % 
   % <   % X   &    s& 
   & ;   &    & _   & ^   D' =   ' A   ' 9   #( ;   ]( A   ( S   ( (   /) (   X) ?   ) L   ) :   * ^   I*    * #   * E   * V   !+ .   x+ *   + N   + O   !,    q,    , p   - 7   - N   .. 7   }. H   . S   . 2   R/ h   / I   / g   80 Z   0 9   0 U   51 c   1 6   1 C   &2 y   j2    2 P   {3 N   3   4    5 '   5    5 P   6    6    6 5   7 G   I7   7 D   [9 o   9 3   : @   D: 5   : <   : *   : 2   #; k   V; 9   ; 2   ;    /< ?   N< 4   < :   < y   <    x=    >     > '   :> f   b>    >    > %   > 3   ?    O?    o?    ? ,   @ -   F@ -   t@ L   @    @ w   A A   B    SB h   qB    B a   [C Z   C '   D   @D U   EF   F    G   H    I J  J    7L A   M -   VM (   M 7   M 2   M 9   N 6   RN ?   N G   N =   O A   OO &   O |   O    5P    P    P .   P #   Q x   +Q "   Q .   Q :   Q    1R V   R a   S    qS O   +T s   {T \   T 
   LU    WU    eU    nU U   U    U T   V    V    W    )W P   <W 1   W    W v   DX -   X Y   X j   CY 3   Y A   Y ;   $Z .   `Z 7   Z ,   Z 5   Z e   *[ 5   [ D   [ r   \    ~\ #   \ 
   \ p   \    #]    0] q   @] m   ] o    ^ ?   ^    ^ .   ^ 1   _ 3   P_    _ @   o` B   ` &   ` >   a    Ya N   a u   2b L   b L   b G   Bc L   c v   c 9   Nd 1   d 5   d F   d ;   7e 6   se    e 6   e B    f 7   Cf &   {f C   f C   f 3   *g +   ^g    g V   h 4   gh =   h E   h A    i D   bi @   i V   i S   ?j [   j D   j    4k    k    l Z   Bm K   m c   m    Mn    n B   n 8   9o 4   ro :   o    o <   hp h   p '   q '   6q /   ^q 3   q +   q G   q B   6r A   yr (   r    r G   r    /s    s    s    s    t \   Iu \   u e   v I   iv Y   v =  w 3   Kx J   x 3   x (   x 9   'y ;   ay ;   y -   y 
   z    z    z   | $   $~ ,   I~    v~    ~ D   ~ 2   ~ J       d      -    A   9    { :        (   Ȁ M       ? 1    N   C *    0    l    4   [ .        ]   D O    5    0   ( S   Y Y    Z       b M   { s   Ɇ F   = V    N   ۇ    *     F   Ɉ S    ~   d     -        ]   #     $    g        m            C   Ɍ     t   ,     3    $   5    d   B        +    8    H 3   X    %    B   ϑ     >   / /   n /    =   Β @    J   M U    D    P   3 3    1    +    /    =   F +    \    a    u   o "      M    ?    r   $ =    X   ՚ ,   . t   [ i   Л    : A   # 5   e #    /    <    4   , :   a 4    :   ў 3    9   @ B   z 9    .    9   & 8   ` H    7    -    I   H p    8    V   <     i    0    P   / J       ˤ ^   L         F   ɥ S       d -   q         b   ˦ ]   . /    '   >    [   # h       '   7  +   c &   n    j           s Z    e   ` y   ƴ X   @ ^    n    O   g o    i   ' w    K   	 W   U \    F   
 -   Q     Z       a x    O    S   ڻ g   . Z    U    S   G J   U       < X   ֿ &   / V   V D    E    A   8 =   z ~    Z   7 5    @    f   	 n   p <    P    1   m H    g    B   P l    j        k p       _ W    k   S #        &    <    o    L   [ Q    ,    \   ' *    z       *    ; v   L 8              z 
   }     M    K   b @    B    E   2 M   x H    c    o   s L       0 =   F     z        
        |    0   7 -   h <   q       E        { )    =    ;       2 `   ?     N   / h   ~ ]    "   E o   h 7    6    R   G 5    T    \   % T    Y    9   1 ;   k b    3   
 <   > C   { <    /    7   , ;   d D    j    U   P B    W    Q   A O        _    $   Y [   ~ K    2   & A   Y n    j   
 X   u =        ]        :    E   :     T   G G    E    ?   * E   j        A        u T    q       \ Y   n [    Z   $     4    0    @    D   ; @    D    ?    C   F ?    B        ]       y     W    ,   $ -   Q \        U    (    &       ) ;   > b   z     3        0 2   Q 1    o    '   & ,   N    { "                '    %       3 
   O    Z    x 1    =    =    ,   A 7   n             "               / <   > W   { (    #    a     [            /   8 W   h     0             X    V   f y       7 #    .    %     @   9  T   z  }     '   M >   u V    `    r   l W       7 D    d    `   l d    g   2        T     X   } D    O    /   k U    n    H   `	 Z   	 X   
 U   ]
 l   
 .        O R   c     $   7 #   \ 6    5    j    ;   X R    M    o   5     Y   d s    O   2 W    N    Y   ) j    \    "   K    n @    C    k    9   s I    3    M   +    y     t    Z    N    E   *    p c               H h   ! L            {   w j    N   ^ t       " 4   1 5   f 2    U    X   % h   ~ D    H   , ?   u     F     M     .   I! v   x! ~   !    n" g   |"    " X   " U   U# x   # r   $$ A   $ a   $ g   ;% 3   % B   % F   & 4   a& =   & ;   & 0   ' 6   A' @   x' T   ' F   ( F   U( C   ( V   ( ;   7) 9   s) ;   )    ) ;   )   7* &   D+ X   k+ :   + 3   +    3, `   <, *   , S   , F   - G   c- 9   - ;   - ]   !. W   . 2   . 8   
/ B   C/ 0   / 8   / U   / 1   F0 4   x0 J   0    0 $   1 <   1 .   1 V   $2 9   {2   2 9   4    4 K   T5    5 4   -6 P   b6 i   6 c   7 T   7 ;   7 :   8 2   M8 *   8 0   8 6   8 (   9 1   <9 3   n9 <   9 /   9 1   : :   A: =   |: i   : J   $; I   o; e   ; *   < .   J< z   y< l   < #   a=    = J   K> 7   > g   > ^   6? 6   ? W   ?    $@ D   C@ R   @ R   @ ;   .A 9   jA 3   A [   A [   4B o   B 8    C 8   9C s   rC 2   C T   D >   nD 1   D    D =   D ;   *E    fE    {E H   *F Q   sF    F .  G    H    mI U   ;J x   J @   
K #   KK %   oK T   K    K    L    }M 0   ]N \   N V   N    BO v   O    IP    !Q r   Q ?   rR 
   R    R D   S /   S 6   
T ?   AT 7   T 7   T O   T >   AU ;   U E   U    V G   V a   V &   5W 9   \W    W J   W C   W N   AX G   X n   X    GY    Y p   TZ G   Z 9   [ u   G[ H   [ d   \ `   k\ g   \ \   4] m   ] W   ] c   W^    ^    >_ B   _ %   ` Q   6` Z   ` I   ` &   -a    Ta O   a E   Cb    b    5c    d      $     @        ?            F        :    J  ^  4                        H      $                     <        
    1                                k  ,     R     	               O           r   H        {   '  +           ;  <   i       %      _                      q              &      -                           =      "     *      F           L       _       ]  I               A   
  ~   (      [  _      &    C        D        X      }         Q        2                                x        $                              3    ?   G  O           ^                       s         9        M           e      "    w            1    z  	      w                   v        5    S                                  3         r            {      +  	                         P  `             d  c       ;   t          G  5           \  ^         d           #       b                 Z        @            Y  7  I                    .           >          :  X      g             :           K   (           $                D        F    a          )          '    ]            ;         H              W      k     '          o  z     %                  o            j       <    2                              L  t  .          Y  4                               `      n      f                     I  !      '  8      Z  F     %       `          )              D      t                            H                 \                           &      S    #      y    5        :          l   V  p             m  m         Z       `        C  I            T             h                  C  7   [       y   	  \                  h      ]      2     l    /    y                ~            T  O        Q   A        )   W        =  /    ]   K  |  4  }      C        g  ^    7      9                        Q         "     D      ,  *   W     [         u  0      2     f  x      H              4                    8  *      [              O            f                   E  -  =   E                   R      w  a           p   j  +    T      v      O      9      o       Y    A        v      U    X                           @                                             7          J      L       S    A               ~  P                 S        .      h       C  +  X      r          )      :      !          r      P      U       V                       V   T  I              E      P            c      3              i  w       f                2  -      
   M      i             [    c         _    d     U      6           D   8          V        e   ?  ,                  |          %  &  y        ;         B   u     g                      e           k         u         G    &           ,        }       p  e  M  -  J        |        0          )    A     <                    B                     \      #          v  9      ?       G     f                    @  8               =  /  K                      x  .           \     j      5      N  c        i  b  $  m                 0  N                   *           6              
                                            !   -      N  }           ,      a  n       s               g        g                          +                      M  b  >    3    *                                              >      J      h                !      #       _      R     z      b  l            %  L          Y        
                u   s                   "  Q             #      a  ]            d                     R      q  0      ?                      i    `  W       N        8             (                       J               	                h  K                6  n      k  ;        e  ^             >        p            q                          @                                                M     .      6  >   1       (  /     '  N                  t                0  z    ~    U           U  G       |                {  o         R      4           q          x                   !     B     j  3                     =  Y                    7  Q          1      "    b        F              B            c      Z                        9      E                                                          P        m  s  d                         K                                        B                    E   {                  Z    a  /                        X      6         L             S          5   (             T   1       W          n                            <                              V  l                 total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: option '%c%s' doesn't allow an argument
 %s: option '%s' is ambiguous; possibilities: %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File size: %s
 File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS Import ZFS wrapping key stored in FILE. Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... M MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MODULE MODULES Mail xorriso support requests to <bug-xorriso@gnu.org>. Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Option -- switches to native xorriso command mode. Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show the contents of a file. Show the current mappings. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 T TARGET Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This entry can be booted by any user. Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. Your embedding area is unusually small.  core.img won't fit in it. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `cryptomount' command fails: %s `loopback' command fails: %s `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format blocklist FILE blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s cannot compress the kernel image cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot get translator command line for path `%s': %s cannot open OS file `%s': %s cannot open `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. diskboot.img size must be %u bytes do not probe for filesystems in DEVICE domain name component is too long don't update LED state done embed FILE as an early config embed FILE as public key for signature checking embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to get canonical path of `%s' failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification install GRUB images under the directory DIR/%s instead of the %s directory install even if problems are detected invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid block size invalid color specification `%s' invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no `/' in canonical filename no command is specified no decryption key available no network card found no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found pre-load specified modules MODULES premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory of TFTP server route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the argument `%s' requires an integer the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for text use DIR as the EFI System Partition root. use FILE as font (PF2). use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub-2.00+20130519
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-06-03 19:11+0100
Last-Translator: Mario Blättermann <mario.blaettermann@gmail.com>
Language-Team: German <translation-team-de@lists.sourceforge.net>
Language: de@hebrew
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=(n != 1);
כּס-גענעראתוֹר: פּוֹעדִית 1.5.4
               געשאמתשפּעִיצהער: %d כִּיבּ
     כּעִינ בּעבֿוֹרזוּגתער מוֹדוּש בֿערפֻֿגבּאר
     בּעבֿוֹרזוּגתער מוֹדוּש: %uכּס%u
   עדִיד-פּרֻפֿשוּממע ִישת וּנגֻלתִיג   עדִיד-בֿערשִיוֹנ: %u.%u
   גראפִֿיכּאדאפּתער כּוֹננתע נִיצהת ִינִיתִיאלִישִיערת וערדענ   כּעִינע ִינפֿוֹרמאתִיוֹנענ בֿערפֻֿגבּאר   בֿבּע-ִינפֿוֹ:   בֿערשִיוֹנ: %d.%d  וֹעמ-שוֹפֿתוארערעבִֿישִיוֹנ: %d.%d
   וֹדער:   (גאנז לִינכּש)  (מִיתתִיג)  (גאנז רעצהתש)  - פּארתִיתִיוֹנשבּעגִיננ בּעִי %llu%sכִּיבּ  - שעכּתוֹרגרֵססע %uבּ  - געשאמתגרֵססע %llu%sכִּיבּ  - געשאמתגרֵססע וּנבּעכּאננת  [וֹפּתִיוֹנענ …] %.*s: פּאראמעתער פֻֿר ארגפּ_העלפּ_פֿמת מוּשש פּוֹשִיתִיבֿ שעִינ %.*s: פּאראמעתער פֻֿר ארגפּ_העלפּ_פֿמת בּענֵתִיגת עִינענ וערת %.*s: וּנבּעכּאננתער פּאראמעתער פֻֿר ארגפּ_העלפּ_פֿמת %dש %dש בֿערבּלעִיבּענד. %s ענתהֶלת עִינ %s-דאתעִישיִשתעמ, ועלצהעש בּעכּאננתערמאססענ כּעִינענ פּלאתז פֻֿר עִינענ דוֹש-בּעתרִיעבּששיִשתעמשתארת בּערעִיתהֶלת. דִיע ִינשתאללאתִיוֹנ בֿוֹנ גרוּבּ כֵּננתע דִיע זערשתֵרוּנג דעש דאתעִישיִשתעמש נאצה שִיצה זִיעהענ, שוֹפֿערנ דאתענ דוּרצה גרוּבּ-שעתוּפּ ֻבּערשצהרִיעבּענ וערדענ. דִיע וֹפּתִיוֹנ --שכִּיפּ-פֿש-פּרוֹבּע דעאכּתִיבִֿיערת דִיעשע ֻבּערפּרֻפֿוּנג, בֿערוענדענ שִיע דִיעש אוּפֿ עִיגענע געפֿאהר. %s שצהעִינת עִינע %s-פּארתִיתִיוֹנשתאבּעללע וּנד לדמ זוּ ענתהאלתענ, ועלצהעש בּעכּאננתערמאססענ כּעִינע שִיצהערע כּוֹמבִּינאתִיוֹנ ִישת. דִיע ִינשתאללאתִיוֹנ בֿוֹנ גרוּבּ כֵּננתע דִיע זערשתֵרוּנג דעש דאתעִישיִשתעמש נאצה שִיצה זִיעהענ, שוֹפֿערנ דאתענ דוּרצה גרוּבּ-שעתוּפּ ֻבּערשצהרִיעבּענ וערדענ. דִיע וֹפּתִיוֹנ --שכִּיפּ-פֿש-פּרוֹבּע דעאכּתִיבִֿיערת דִיעשע ֻבּערפּרֻפֿוּנג, בֿערוענדענ שִיע דִיעש אוּפֿ עִיגענע געפֿאהר. %s שצהעִינת עִינע %s-פּארתִיתִיוֹנשתאבּעללע זוּ ענתהאלתענ, ועלצהע בּעכּאננתערמאססענ כּעִינענ פּלאתז פֻֿר עִינענ דוֹש-בּעתרִיעבּששיִשתעמשתארת בּערעִיתהֶלת. דִיע ִינשתאללאתִיוֹנ בֿוֹנ גרוּבּ כֵּננתע דִיע זערשתֵרוּנג דעש דאתעִישיִשתעמש נאצה שִיצה זִיעהענ, שוֹפֿערנ דאתענ דוּרצה גרוּבּ-שעתוּפּ ֻבּערשצהרִיעבּענ וערדענ. דִיע וֹפּתִיוֹנ --שכִּיפּ-פֿש-פּרוֹבּע דעאכּתִיבִֿיערת דִיעשע ֻבּערפּרֻפֿוּנג, בֿערוענדענ שִיע דִיעש אוּפֿ עִיגענע געפֿאהר. %s וּנתערשתֻתזת כּעִינע וּוִּידש %s ערשתעללת עִינע תאשתאתוּרבּעלעגוּנג פֻֿר גרוּבּ מִיתתעלש צכּבּצוֹמפּ\נ %s ִישת בֿעראלתעת. בֿערוענדענ שִיע שתאתתדעששענ גפֿכּספּאיִלוֹאד=%s בֿוֹר דעמ לִינוּכּס-בּעפֿעהל.
 %s ִישת בֿעראלתעת. בֿגא-מוֹדוּש %d ווּרדע נִיצהת ערכּאננת. בֿערוענדענ שִיע שתאתתדעששענ גפֿכּספּאיִלוֹאד=בּרעִיתעכּסהֵהע[כּסתִיעפֿע] בֿוֹר דעמ לִינוּכּס-בּעפֿעהל.
 %s וִירד בֿוֹנ גרוּבּ-מכּצוֹנפִֿיג נוֹצה נִיצהת וּנתערשתֻתזת.\נ %s, מִית הוּרד %s %s, מִית הוּרד %s (וִיעדערהערשתעללוּנגשמוֹדוּש) %s, מִית לִינוּכּס %s %s, מִית לִינוּכּס %s (וִיעדערהערשתעללוּנגשמוֹדוּש) %s, מִית כּסענ %s וּנד לִינוּכּס %s %s, מִית כּסענ %s וּנד לִינוּכּס %s (וִיעדערהערשתעללוּנגשמוֹדוּש) %s, מִית כּסענ-היִפּערבִֿישוֹר %s, מִית כּפֿרעעבּשד %s %s, מִית כּפֿרעעבּשד %s (וִיעדערהערשתעללוּנגשמוֹדוּש) %s, מִית כּערנעל %s (ֻבּער %s) %s, מִית כּערנעל %s (ֻבּער %s, וִיעדערהערשתעללוּנגשמוֹדוּש) %s: האשה-פֿעהלער
 %s: וֹכּ
 %s: לעשעפֿעהלער
 %s: זוּ בִֿיעלע ארגוּמענתע
 %s: שִיע מֻששענ דִיעש אלש רוֹוֹת אוּשפֻֿהרענ\נ %s: פֿעהלער: %s: ִינפֿוֹ: %s: וּנגֻלתִיגע וֹפּתִיוֹנ -- »%c«
 %s: וֹפּתִיוֹנ »%c%s« ערלאוּבּת כּעִינ ארגוּמענת
 %s: וֹפּתִיוֹנ »%s« ִישת מעהרדעוּתִיג; מֵגלִיצהכּעִיתענ: %s: וֹפּתִיוֹנ »--%s« ערלאוּבּת כּעִינ ארגוּמענת
 %s: וֹפּתִיוֹנ »%s« ערוארתעת עִינ ארגוּמענת
 %s: וֹפּתִיוֹנ »-ו %s« ערלאוּבּת כּעִינ ארגוּמענת
 %s: וֹפּתִיוֹנ »-ו %s« ִישת נִיצהת עִינדעוּתִיג
 %s: וֹפּתִיוֹנ »-ו %s« ערפֿוֹרדערת עִינ ארגוּמענת
 %s: וֹפּתִיוֹנ ערפֿוֹרדערת עִינ ארגוּמענת -- »%c«
 %s: וֹפּתִיוֹנ ערוארתעת עִינ ארגוּמענת -- »%s«\נ %s: וּנבּעכּאננתע וֹפּתִיוֹנ »%c%s«
 %s: וּנבּעכּאננתע וֹפּתִיוֹנ »--%s«
 %s: וארנוּנג: (32-בִּית) (64-בִּית) (פּרוֹגראממפֿעהלער) כּעִינע בֿערשִיוֹנ בּעכּאננת!? (פּרוֹגראממפֿעהלער) וֹפּתִיוֹנ הֶתתע ערכּאננת וערדענ מֻששענ!? (אוּפֿ %s) - בּעזעִיצהנוּנג »%s« - לעתזתע ֶנדערוּנגשזעִית %d-%02d-%02d %02d:%02d:%02d %s --מעהר-- -ה האשה [-צ דאתעִי [-פּ פּרֶפִֿיכּס]] [דאתעִי1 [דאתעִי2 ...]] -ל | -ר | [-ש] גרוּבּדעבֿ וֹשדִישכּ. .5 געשצהֻתזע 16-בִּית-שצהנִיתתשתעללע וּנתערשתֻתזת
 געשצהֻתזע 16-בִּית-שצהנִיתתשתעללע נִיצהת וּנתערשתֻתזת
 געשצהֻתזע 32-בִּית-שצהנִיתתשתעללע וּנתערשתֻתזת
 געשצהֻתזע 32-בִּית-שצהנִיתתשתעללע נִיצהת וּנתערשתֻתזת
 =וערת > דוּרצה אצפִּי בּעאנשפּרוּצהתער שפּעִיצהערבּערעִיצה (פֻֿר ענערגִיעשפּארמוֹדִי) דוּרצה אצפִּי וִיעדערבֿערוענדבּארער שפּעִיצהער אצפִּי-הערוּנתערפֿאהרענ ִישת געשצהעִיתערת אדדר אדדר וערת [מאשכּע] אדרעששע [גרֵססע] אדר1,מאשכּע1[,אדר2,מאשכּע2[,...]] אדדרעששע דנש_שערבֿער אפּמ דעאכּתִיבִֿיערת
 אפּמ דעאכּתִיבִֿיערת
 אפּמ אכּתִיבִֿיערת
 אפּמ אכּתִיבִֿיערת
 ארגפּ_העלפּ_פֿמת: וערת %s ִישת כּלעִינער וֹדער גלעִיצה %s אשצִיִי צר/נל-זעִילענענדענ ִימ דוֹש-שתִיל אכּזעפּתִיערענ. אכּתִיבֿע עִינגאבּעתערמִינאלש: אכּתִיבֿע אוּשגאבּעתערמִינאלש: אדאפּתער »%s«:
 עִינענ דנש-שערבֿער הִינזוּפֻֿגענ עִינע נעתזוערכּאדרעששע הִינזוּפֻֿגענ. עִינע נעתזוערכּרוֹוּתע הִינזוּפֻֿגענ. ערועִיתערתע וֹפּתִיוֹנענ פֻֿר %s ערועִיתערתע וֹפּתִיוֹנענ פֻֿר %s (מִית כּסענ-היִפּערבִֿישוֹר) וּנתערבּרעצהוּנג מִית עשצ ערלאוּבּענ. נאצה דעמ דאתעִינאמענ פֻֿר דענ נעוּשתארת פֿראגענ. עִינגאבּע וִירד אלש העכּסאדעזִימאל אנגענוֹממענ. עִינגאבּע וִירד אלש כּעננווֹרת אנגענוֹממענ. עִינגאבּע וִירד אלש ראו אנגענוֹממענ. עש וִירד בֿערשוּצהת, דענ מאשתער-שצהלֻששעל זוּ ענתשצהלֻששעלנ … עש וִירד בֿערשוּצהת, גרוּבּ אוּפֿ עִינער פּלאתתע מִית מעהרערענ פּארתִיתִיוֹנשבּעזעִיצהנוּנגענ וֹדער שוֹווֹהל פּארתִיתִיוֹנשבּעזעִיצהנוּנגענ אלש אוּצה דאתעִישיִשתעמענ זוּ ִינשתאללִיערענ. דִיעש וִירד דערזעִית נוֹצה נִיצהת וּנתערשתֻתזת. עש וִירד בֿערשוּצהת, גרוּבּ אוּפֿ עִינער פּלאתתע מִית מעהרערענ פּארתִיתִיוֹנשבּעזעִיצהנוּנגענ זוּ ִינשתאללִיערענ. דִיעש וִירד דערזעִית נוֹצה נִיצהת וּנתערשתֻתזת. עש וִירד בֿערשוּצהת, גרוּבּ אוּפֿ עִינער נִיצהת פּארתִיתִיוֹנִיערתענ פּלאתתע וֹדער ִינ עִינע פּארתִיתִיוֹנ זוּ ִינשתאללִיערענ. דאש ִישת עִינע שצהלעצהתע ִידעע. בֿערפֻֿגבּארע עִינגאבּעתערמִינאלש: בֿערפֻֿגבּארע אוּשגאבּעתערמִינאלש: בּ בּ/ש בִּיוֹש_שִיצהערוּנג [ִינת10_שִיצהערוּנג] בּלוֹצכּ בּיִתע:בִּית מוֹדוּש דעש הִינתערגרוּנדבִּילדעש. בּאשִישוֹרדנער פֻֿר האשה-לִישתע. בִּיוֹש-בּאשִיערתעש שיִשתעמ בּוֹוֹתענ. עִינ בּעתרִיעבּששיִשתעמ שתארתענ. ִינ דענ שִינגלע-וּשער-מוֹדוּש בּוֹוֹתענ. מִית פֿעהלערדִיאגנוֹשעמעלדוּנגענ בּוֹוֹתענ. מִית אוּשפֻֿהרלִיצהענ מעלדוּנגענ בּוֹוֹתענ. »%s« וִירד געבּוֹוֹתעת עִינע בּעפֿעהלשלִישתע בּוֹוֹתענ ִימ בּלִינדמוֹדוּש בּוֹוֹתענ בּוֹוֹת-פּפֿאד: %s
 בּוֹוֹת-פּפֿאד: נִיצהת בֿערפֻֿגבּאר
 האלתעפּוּנכּת פֻֿר גדבּ אוּשלֵשענ צגא  פֿארבּע בּעפֿעהל [ארגוּמענתע] צפּוּ-לעערלאוּפֿ בֿערלאנגשאמת דענ פּרוֹזעששוֹר נִיצהת
 צפּוּ-לעערלאוּפֿ בֿערלאנגשאמת דענ פּרוֹזעששוֹר
 צש5536 ִינ %d:%d.%d
 רוֹמ-בּערעִיצה כּאננ נִיצהת אכּתִיבִֿיערת וערדענ. כּוֹנפִֿיגוּרִיערתע גערֶתע בּעארבּעִיתענ. פּארתִיתִיוֹנשתיִפּ ֶנדערנ אלת-תאשתע ֻבּערפּרֻפֿענ. שתרג-תאשתע ֻבּערפּרֻפֿענ. וּמשצהאלתתאשתע ֻבּערפּרֻפֿענ. פֶֿהִיגכּעִיתענ דער צפּוּ ֻבּערפּרֻפֿענ. פּרֻפֿשוּממענ דער דאתעִיענ מִית לִישתע ִינ דאתעִי בֿערגלעִיצהענ. ֻבּערפּרֻפֿענ, וֹבּ דער פּרוֹזעששוֹר דענ 64-בִּית-(לאנג-)מוֹדוּש וּנתערשתֻתזת (בֿוֹרגאבּע). שתאתוּש דער וּמשצהאלתתאשתענ ֻבּערפּרֻפֿענ. ֻבּערפּרֻפֿענ שִיע, וֹבּ דער בּענוּתזער ִינ דער בּענוּתזערלִישתע אוּפֿגעפֻֿהרת ִישת. ֻבּערפּרֻפֿת דִיע גרוּבּ-שכּרִיפּתכּוֹנפִֿיגוּראתִיוֹנ אוּפֿ שיִנתאכּספֿעהלער דענ בִּילדשצהִירמ לעערענ. »אצתִיבֿע«-פֿלאג אוּפֿ %d ווּרדע געלֵשצהת.  
 בּעפֿעהלע: דאתעִי מִית לוֹכּאלער דאתעִי לוֹכּאל בֿערגלעִיצהענ. דאתעִי »%s« מִית »%s« בֿערגלעִיצהענ:
 זועִי דאתעִיענ בֿערגלעִיצהענ. כּסנוּ-וּוִּיד דעש גערֶתש בּערעצהנענ. האשה-פּרֻפֿשוּממע בּערעצהנענ וֹדער פּרֻפֿענ. שערִיעללע שצהנִיתתשתעללע כּוֹנפִֿיגוּרִיערענ. שצהלעִיפֿענ פֿוֹרתשעתזענ ֻבּלִיצהע שצהרִיפֿתדאתעִיפֿוֹרמאתע ִינ פּפֿ2 וּמואנדעלנ דאתעִי ִינ לוֹכּאלע דאתעִי לוֹכּאל כּוֹפִּיערענ. דאתעִי ִינ דִיע שתאנדארדאוּשגאבּע כּוֹפִּיערענ. פֿפּשוא-תרעִיבּער כּוֹננתע נִיצהת געפֿוּנדענ וערדענ פּהיִשִישצהער דאתענתרֶגער »%s« כּוֹננתע נִיצהת געפֿוּנדענ וערדענ. עִינִיגע מוֹדוּלע כֵּננתענ ִימ צוֹרע-אבּבִּילד פֿעהלענ. שהא256 כּוֹננתע נִיצהת געלאדענ וערדענ שהא512 כּוֹננתע נִיצהת געלאדענ וערדענ בִּיוֹש-שתרוּכּתוּרענ פֻֿר אבּוֶרתשכּוֹמפּאתִיבִּילִיתֶת מִית דעמ בֿוֹרהאנדענענ בּעתרִיעבּששיִשתעמ ערשתעללענ. עִינע לעערע וּמגעבּוּנגש-בּלוֹצכּדאתעִי ערשתעללענ. אכּתוּעללע תערמִינפֿוֹ-תיִפּענ: גערֶת גערֶת [פּארתִיתִיוֹנ[+/-[תיִפּ]]] ... גערֶת מוּשש עִינ וֹש-גערֶת שעִינ (ז.בּ. /דעבֿ/שדא). גערֶתענאמע וֹרדנ וֹרדנער [וֹשבּוּנדלערעקוִּירעד] דנששערבֿער דִיאגנוֹשעוערכּזעוּג פֻֿר דאתעִישיִשתעמתרעִיבּער. שפּעִיצהערבּערעִיצהע אלש »בּאדראמ« דעכּלארִיערענ. דעכּוֹמפּרעששוֹר ִישת זוּ גרוֹסס עִינענ מענֻעִינתראג דעפִֿינִיערענ. עִינ וּנתערמענֻ דעפִֿינִיערענ. עִינע נעתזוערכּאדרעששע לֵשצהענ. עִינע נעתזוערכּרוֹוּתע ענתפֿערנענ. דאש אנגעגעבּענע לוֹוֹפּבּאצכּ-גערֶת לֵשצהענ. בֿארִיאבּלענ לֵשצהענ. תרעִיבּער ערמִיתתעלנ. דאתעִישיִשתעמ-וּוִּיד ערמִיתתעלנ. דאתעִישיִשתעמבּעזעִיצהנוּנג ערמִיתתעלנ. דאתעִישיִשתעמתיִפּ ערמִיתתעלנ. תיִפּ דער פּארתִיתִיוֹנשזוּוֹרדנוּנג בּעשתִיממענ. גערֶת %s: גערֶתעכּעננוּנג: %s
 גערֶתעכּעננוּנג: נִיצהת בֿערפֻֿגבּאר דִירעכּתע פֿארבּע, מאשכּע: %d/%d/%d/%d  פּוֹש.: %d/%d/%d/%d אצפִּי דעאכּתִיבִֿיערענ. שמפּ דעאכּתִיבִֿיערענ. אללע בּוֹוֹת-אוּשגאבּענ דעאכּתִיבִֿיערענ. שמארת אכּתִיבִֿיערענ/דעאכּתִיבִֿיערענ (0/1). וּנשאוּבּער עִינגעבּעתתעתע פּארתִיתִיוֹנ וִירד בֿערווֹרפֿענ (%s,%s,%s%d) שתאתִישתִיכּענ דעש פּלאתתענזוִישצהענשפּעִיצהערש: הִיתש = %lu (%lu.%02lu%%), מִיששעש = %lu
 פּלאתתענאנזאהל מוּשש פּלאתתענלִישתע בֿוֹראנגעשתעללת שעִינ.
 פֿפּשוא-בֿערשִיוֹנ אנזעִיגענ. לאוּפֿוערכּששתאתוּש מִית שמארת אנזעִיגענ. עִינע תעכּסתזעִילע אנזעִיגענ. בּלוֹצכּלִישתע בֿוֹנ דאתעִי אנזעִיגענ. אוּשגאבּע אוּפֿ אללענ כּוֹנשוֹלענ אנזעִיגענ. ענערגִיעמוֹדוּש אנזעִיגענ. בּענוּתזוּנג דִיעשעש בּעפֿעהלש אנזעִיגענ וּנד בּעענדענ. דִיעשע הִילפֿע אנזעִיגענ וּנד בּעענדענ. אנזעִיגענ/פֿעשתלעגענ דעש/דער אכּתוּעללענ דאתוּמש/זעִית. אנגעהֶנגתע זעִילענוּמבּרֻצהע נִיצהת אוּשגעבּענ. כּעִינע מעלדוּנגענ אוּשגעבּענ. כּעִינ דִישכּעתתענלאוּפֿוערכּ ֻבּערפּרֻפֿענ. זוּמ אבּשצהאלתענ דעש רעצהנערש כּעִינ אפּמ בֿערוענדענ. נִיצהתש תוּנ, ערפֿוֹלגרעִיצה. נִיצהתש תוּנ, נִיצהת ערפֿוֹלגרעִיצה. כּעִינע פֿעהלערדִיאגנוֹשעמעלדוּנגענ בּעִימ בּוֹוֹתענ אנזעִיגענ. כּעִינע הוֹשת-תאבּעללענ שפּעזִיפִֿיזִיערת דוּרצה כּוֹממאגעתרעננתע לִישתע לאדענ. נִיצהת נעוּ שתארתענ, נוּר הערוּנתערפֿאהרענ. נאצה דעמ ערשתענ פֿעהלער נִיצהת שתוֹפּפּענ. עבּדא נִיצהת אכּתוּאלִישִיערענ. כֵּננתע פֿעהלער וֹדער הֶנגער ִינ מאנצהענ בִּיוֹש-בֿערשִיוֹנענ בּעשעִיתִיגענ, ִישת אבּער נִיצהת עפֿפֿעכּתִיבֿ בּעִי בּעתרִיעבּששיִשתעמענ, דִיע כּעִינ רשדפּ בֿוֹנ גרוּבּ עמפּפֿאנגענ.  וּמגבֿאר וּמגבֿאר [וּמגבֿאר] ... פֿעהלער: כּעִינע גֻלתִיגע תאשתאתוּרבּעלעגוּנג געפֿוּנדענ. ֻבּערפּרֻפֿענ שִיע דִיע עִינגאבּע.
 בּעענדענ ִישת יעדערזעִית מִית עשצ מֵגלִיצה. אוּשדרוּצכּ אוּשדרוּצכּ ] בֿערשתרִיצהענע זעִית: %d.%03d ש 
 בֿערשתרִיצהענע זעִית: %d.%03d שעכּוּנדענ 
 עִינבּעתתוּנג ִישת נִיצהת מֵגלִיצה. גרוּבּ כּאננ ִינ דִיעשער כּוֹנפִֿיגוּראתִיוֹנ נוּר מִיתתעלש בּלוֹצכּלִישתענ ִינשתאללִיערת וערדענ. בּלוֹצכּלִישתענ שִינד אללערדִינגש וּנזוּבֿערלֶששִיג וּנד דערענ בֿערוענדוּנג וִירד דאהער נִיצהת עמפּפֿוֹהלענ. עִינע תאשתאתוּרשעקוּענז עמוּלִיערענ אוּשוערתוּנג דער בּאצכּשלאשה-מאשכִּיערוּנגענ ערמֵגלִיצהענ. זפֿש-פּאששווֹרת עִינגעבּענ: כּדבּ בּעִימ בּוֹוֹתענ בֿערוענדענ. ִינ נוֹרמאלמוֹדוּש ועצהשעלנ. כּעננווֹרת פֻֿר %s%s%s אנגעבּענ (%s):  פּאששווֹרת עִינגעבּענ: בּענוּתזערנאמע עִינגעבּענ: פֿעהלער בּעִימ עִינלעשענ דער בּעפֿעהלשזעִילענארגוּמענתע
 עִינענ אוּשדרוּצכּ אוּשוערתענ. בּעענדענ ִישת געשצהעִיתערת גרוּבּ בּעענדענ. שצהלעִיפֿענדוּרצהלאוּפֿ בּעענדענ נוֹרמאלמוֹדוּש אבּבּרעצהענ. בֿארִיאבּלענ עכּספּוֹרתִיערענ. בֿערשִיוֹנ-1-תאבּעללענ זוּמ בּעתרִיעבּששיִשתעמ עכּספּוֹרתִיערענ. בֿערשִיוֹנ-2- וּנד בֿערשִיוֹנ-3-תאבּעללענ זוּמ בּעתרִיעבּששיִשתעמ עכּספּוֹרתִיערענ. דאתעִי דאתעִי [ארג ...] דאתעִי [ארגוּמענתע …] דאתעִי | תעמפּוֹ [תוֹנהֵהע1 דאוּער1] [תוֹנהֵהע2 דאוּער2] ...  דאתעִי… דאתעִי1 דאתעִי2 דאתעִינאמע בּעפֿעהל דאתעִישיִשתעמ [בֿארִיאבּלע] דאתעִי|פּרוֹמפּת פֿוֹרמאת דאש פֿפּשוא-פּרוֹתוֹכּוֹלל ואר נִיצהת ִימשתאנדע, דִיע שצהנִיתתשתעללע זוּ פִֿינדענ פֿפּשוא-רעבִֿישִיוֹנ: %x
 בֿוֹנ-בִּיש[,בֿוֹנ-בִּיש] בֿוֹנ[כּ|מ|ג] בִּיש[כּ|מ|ג] פֿת_ִינִית_פֿרעעתיִפּע ִישת געשצהעִיתערת שוֹווֹהל בֿוֹרגאבּע- אלש אוּצה אלתערנאתִיבֿעִינתרֶגע כּוֹננתענ נִיצהת געבּוֹוֹתעת וערדענ.
 בּאוּמ פֻֿר »דעבִֿיצע-מאפּפּער« כּוֹננתע נִיצהת ערשתעללת וערדענ אלתערנאתִיבֿע »%s« וִירד בֿערוענדעת דאתעִיגרֵססע: %s
 דאתעִישיִשתעמ »%s« וּנתערשתֻתזת כּעִינע עִינבּעתתוּנגענ דאתעִיענ וּנתערשצהעִידענ שִיצה אנ פּוֹשִיתִיוֹנ %llu: 0כּס%x [%s], 0כּס%x [%s]
 דאתעִיגרֵססענ שִינד וּנתערשצהִיעדלִיצה: %llu [%s], %llu [%s]
 זוּגרִיפֿפֿ אוּפֿ דאתעִישיִשתעמ נִיצהת מֵגלִיצה דאתעִישיִשתעמתיִפּ %s היִבּרִיד-מבּר דעש גפּת-גערֶתעש גערֶת פֻֿללענ. אנגעגעבּענע פּארתִיתִיוֹנענ וערדענ תעִיל דעש היִבּרִיד-מבּר. בִּיש זוּ 3 פּארתִיתִיוֹנענ שִינד זוּלֶששִיג. תיִפּ ִישת עִינ מבּר-תיִפּ. + בּעדעוּתעת, דאשש דִיע פּארתִיתִיוֹנ אכּתִיבֿ ִישת. נוּר עִינע פּארתִיתִיוֹנ כּאננ אכּתִיבֿ שעִינ. לאדענ דעש עפִֿי-עמוּלאתוֹרש פִֿינאלִישִיערענ. זוּערשת דאש גערֶת הִינועִיש בֿערשוּצהענ, פֿאללש אכּתוּעלל לאוּפֿענדע ארצ. פֿאללש הִינועִיש מִית כּוֹממא ענדעת, אוּצה וּנתערפּארתִיתִיוֹנענ בֿערשוּצהענ זוּערשת דאש גערֶת הִינועִיש בֿערשוּצהענ (פֻֿר אכּתוּעלל לאוּפֿענדעש בִּיוֹש). פֿאללש הִינועִיש מִית כּוֹממא ענדעת, אוּצה וּנתערפּארתִיתִיוֹנענ בֿערשוּצהענ זוּערשת דאש גערֶת הִינועִיש בֿערשוּצהענ (פֻֿר אכּתוּעלל לאוּפֿענדעש עפִֿי). פֿאללש הִינועִיש מִית כּוֹממא ענדעת, אוּצה וּנתערפּארתִיתִיוֹנענ בֿערשוּצהענ זוּערשת דאש גערֶת הִינועִיש בֿערשוּצהענ (בּעִי ִיעעע1275). פֿאללש הִינועִיש מִית כּוֹממא ענדעת, אוּצה וּנתערפּארתִיתִיוֹנענ בֿערשוּצהענ זוּערשת דאש גערֶת הִינועִיש בֿערשוּצהענ, פֿאללש דִירעכּתער הארדוארעזוּגרִיפֿפֿ וּנתערשתֻתזת וִירד. פֿאללש הִינועִיש מִית כּוֹממא ענדעת, אוּצה וּנתערפּארתִיתִיוֹנענ בֿערשוּצהענ זוּערשת דאש גערֶת הִינועִיש בֿערשוּצהענ. פֿאללש הִינועִיש מִית כּוֹממא ענדעת, אוּצה וּנתערפּארתִיתִיוֹנענ בֿערשוּצהענ עִינ בִֿידעוֹפּרוֹבּלעמ בּעהעבּענ. %s אוּפֿ %s געפֿוּנדענ (%s)\נ %s אוּפֿ %s געפֿוּנדענ\נ גנוּ מאצה ווּרדע געפֿוּנדענ: %s הוּרד-מוֹדוּל געפֿוּנדענ: %s נעתבּשד-כּערנעל געפֿוּנדענ: %s\נ הִינתערגרוּנד געפֿוּנדענ: %s\נ ִינִיתרד-אבּבִּילד געפֿוּנדענ: %s\נ כּערנעל-מוֹדוּלוֹרדנער געפֿוּנדענ: %s\נ פֿרעעבּשד-כּערנעל געפֿוּנדענ: %s\נ לִינוּכּס-אבּבִּילד געפֿוּנדענ: %s\נ תהעמא געפֿוּנדענ: %s\נ פֿרעעתיִפּע-פֿעהלער %d בּעִימ לאדענ דעש גליִפּהש 0כּס%x פֻֿר וּ+0כּס%x%s אתא-שִיצהערהעִיתשעִינשתעללוּנגענ בִּיש זוּמ זוּרֻצכּשעתזענ עִינפֿרִיערענ. פֿרעִיתאג ג גנוּ גרוּבּ  בֿערשִיוֹנ %s גרוּבּ-בּוֹוֹתמענֻ גרוּבּ ועִיסס נִיצהת, וִיע מאנ דִיעשע מאשצהִינע שתוֹפּפּענ כּאננ! גרוּבּ-עמוּלאתוֹר. גרוּבּ-גערֶת=פּלאנ9-גערֶת וּנשִיננ ִינ ארגפּ_העלפּ_פֿמת: %s גרוּבּ-תאשתאתוּרבּעלעגוּנג אוּש דעמ דער לִינוּכּס-כּוֹנשוֹלע ערשתעללענ. פּבּכּדפֿ2-פּאששווֹרת-פּרֻפֿשוּממע ערזעוּגענ.  עִינע גרוּבּ-כּוֹנפִֿיגוּראתִיוֹנשדאתעִי ערשתעללענ עִינ לאוּפֿפֶֿהִיגעש אבּבִּילד עִינשצהלִיעססלִיצה אללער מוֹדוּלע ִימ געוֶהלתענ פֿוֹרמאת ערשתעללענ צרצ32-פּרֻפֿשוּממע בֿוֹנ דאתעִי בּערעצהנענ. ִינפֿוֹרמאתִיוֹנענ זוּמ פּלאתתענ-זוִישצהענשפּעִיצהער הוֹלענ. אתא-דאתענתרֶגערפּאראמעתער ערמִיתתעלנ/פֿעשתלעגענ. גִיבּ גִיבּ/ש האשה הִינועִיש דאש שיִשתעמ אנהאלתענ, ועננ מֵגלִיצה, מִית אפּמ. דִיעשענ רעצהנער אנהאלתענ. דִיעשער בּעפֿעהל פֿוּנכּתִיוֹנִיערת נִיצהת ִינ אללענ פִֿירמוארע-ִימפּלעמענתאתִיוֹנענ. נ בּיִתעש ִינ אוּשגאבּעדאתעִי בֿערארבּעִיתענ האללוֹ ועלת הערצוּלעש  כּעננוּנג אבּבִּילד1 [אבּבִּילד2 ...] עִינהֶנגעפּוּנכּת אבּבִּילדפּפֿאד בּעפֿעהלע ִינ דאתעִי געשפּעִיצהערתענ זפֿש-וראפּפִּינג-שצהלֻששעל ִימפּוֹרתִיערענ ִינכּוֹררעכּתעש בִֿירתוּעללעש גערֶת: כּעִינ תיִפּ בֿערפֻֿגבּאר עִינ מוֹדוּל עִינפֻֿגענ. גרוּבּ אוּפֿ ִיהרעמ לאוּפֿוערכּ ִינשתאללִיערענ. ִינשתאללאתִיוֹנ בּעענדעת. כּעִינע פֿעהלער אוּפֿגעתרעתענ. וּנגֻלתִיגע רֻצכּרעפֿערענז וּנגֻלתִיגער זעִיצהענכּלאששעננאמע וּנגֻלתִיגעש שוֹרתִיערזעִיצהענ וּנגֻלתִיגער בּעפֿעהל %s.
 וּנגֻלתִיגער ִינהאלת בֿוֹנ \{\} וּנגֻלתִיגעש גערֶת »%s«.
 וּנגֻלתִיגע פּלאתתענאנזאהל.
 וּנגֻלתִיגער בֿוֹרהערגעהענדער רעגוּלֶרער אוּשדרוּצכּ וּנגֻלתִיגעש בּערעִיצהשענדע וּנגֻלתִיגער רעגוּלֶרער אוּשדרוּצכּ רוֹוּתִינג דער בּענוּתזערכּוֹנפִֿיגוּראתִיוֹנ אוּפֿרוּפֿענ. כּ כּערנעל ארגוּמענתע תאשתע תאשתענזוּוֹרדנוּנג פֻֿר דענ שצהנעללשתארת דִיעשעש עִינתראגש. כִּיבּ כִּיבּ/ש בִֿירתוּעללעש גערֶת דוּרצהשוּצהענ (דאתעִי וֹדער לאוּפֿוערכּ) בֿעראלתעתער פּאראמעתער »%s« וִירד נִיצהת מעהר וּנתערשתֻתזת. לעגענדע: מאשכּע/פּוֹשִיתִיוֹנ=רוֹת/גרֻנ/בּלאוּ/רעשערבִֿיערת לֶנגע דער ערזעוּגתענ פּרֻפֿשוּממע לֶנגע בֿוֹנ שאלת דנש-שערבֿער אוּפֿלִישתענ פּצִי-גערֶתע אוּפֿלִישתענ. אללע דאתעִיענ אוּפֿלִישתענ. בֿערפֻֿגבּארע גראפִֿיכּמוֹדִי אוּפֿלִישתענ. פֿאללש אוּפֿלֵשוּנג אנגעגעבּענ ִישת, נוּר מוֹדִי דִיעשער אוּפֿלֵשוּנג אנזעִיגענ. גערֶתע וּנד דאתעִיענ אוּפֿלִישתענ. גערֶתע וֹדער דאתעִיענ אוּפֿלִישתענ. גערֶתע אוּפֿלִישתענ. דאתעִיענ ִינ פּפֿאד אוּפֿלִישתענ. בֿוֹנ פִֿירמוארע בּערעִיתגעשתעללתע שפּעִיצהערזוּוֹרדנוּנג אוּפֿלִישתענ. לִישתע דער וּנתערשתֻתזתענ בִֿידעוֹמוֹדִי: לִישתע דער בּענוּתזער, דִיע דִיעשענ עִינתראג בּוֹוֹתענ דֻרפֿענ. עִינגאבּעתערמִינאל לִישתענ וֹדער וֶהלענ. אוּשגאבּעתערמִינאל לִישתענ וֹדער וֶהלענ. אכּתוּעללע בֿארִיאבּלענ אוּפֿלִישתענ. דִיע געלאדענענ שצהרִיפֿתענ אוּפֿלִישתענ. בֿארִיאבּלענ אוּש בּלוֹצכּדאתעִי דער וּמגעבּוּנג אוּפֿלִישתענ. 64-בִּית כּסנוּ-אבּבִּילד לאדענ. בִּיוֹש-שִיצהערוּנג לאדענ. פֿרעעבּשד-וּמגעבּוּנג לאדענ. פֿרעעבּשד-כּערנעלמוֹדוּל לאדענ (עלפֿ). פֿרעעבּשד-כּערנעלמוֹדוּל לאדענ. פֿרעעדוֹש-כּערנעל.שיִש לאדענ. לִינוּכּס לאדענ. נתלדר וֹדער בּוֹוֹתמגר לאדענ. נעתבּשד-כּערנעלמוֹדוּל לאדענ (עלפֿ). נעתבּשד-כּערנעלמוֹדוּל לאדענ. פּלאנ9-כּערנעל לאדענ. כּסנוּ-ערועִיתערוּנגשוֹרדנער לאדענ. כּסנוּ-ערועִיתערוּנגשפּאכּעת לאדענ. כּסנוּ-ערועִיתערוּנג לאדענ. כּסנוּ-אבּבִּילד לאדענ. כּסנוּ-ראמדִישכּ לאדענ. וִירד ִימ בּעתרִיעבּששיִשתעמ אלש מד0 אנגעזעִיגת. ִינהאלת בֿוֹנ »דעבִֿיצע-פּרוֹפּערתִיעש« לאדענ עִינ פּכּסע-אבּבִּילד לאדענ. עִינע תאשתאתוּרבּעלעגוּנג לאדענ. עִינענ מלוּתִיבּוֹוֹת2-כּערנעל לאדענ. עִינ מוּלתִיבּוֹוֹת2-מוֹדוּל לאדענ. עִינענ מוּלתִיבּוֹוֹת-כּערנעל לאדענ. עִינ מוּלתִיבּוֹוֹת-מוֹדוּל לאדענ. בּעגרֻססוּנגשבִּילדשצהִירמ פֻֿר כּסנוּ לאדענ. עִינ געשפּעִיצהערתעש כּסנוּ-אבּבִּילד לאדענ. עפִֿי-עמוּלאתוֹר לאדענ וּנד ִינִיתִיאלִישִיערענ. עִינענ אנדערענ בּוֹוֹתלוֹאדער לאדענ. עִינע אנדערע כּוֹנפִֿיגוּראתִיוֹנשדאתעִי לאדענ, אבּער נוּר דערענ מענֻעִינתרֶגע. עִינע אנדערע כּוֹנפִֿיגוּראתִיוֹנשדאתעִי לאדענ, וֹהנע דענ כּוֹנתעכּסת זוּ ֶנדערנ. עש וערדענ נוּר מענֻעִינתרֶגע געלאדענ. עִינע אנדערע כּוֹנפִֿיגוּראתִיוֹנשדאתעִי לאדענ, וֹהנע דענ כּוֹנתעכּסת זוּ ֶנדערנ. עִינע אנדערע כּוֹנפִֿיגוּראתִיוֹנשדאתעִי לאדענ. ועִיתערעש צוֹרעבּוֹוֹת-פּאיִלוֹאד לאדענ הִינתערגרוּנדבִּילד פֻֿר אכּתִיבֿעש תערמִינאל לאדענ. הוֹשת-אצפִּי-תאבּעללענ וּנד דוּרצה ארגוּמענתע אנגעגעבּענע תאבּעללענ לאדענ. ִינִיתרד לאדענ. ראמדִישכּ בֿוֹנ כּוֹפּענבּשד לאדענ. כּערנעל בֿוֹנ פֿרעעבּשד לאדענ. כּערנעל בֿוֹנ נעתבּשד לאדענ. כּערנעל בֿוֹנ וֹפּענבּשד לאדענ. נוּר תאבּעללענ שפּעזִיפִֿיזִיערת דוּרצה כּוֹממאגעתרעננתע לִישתע לאדענ. גלעִיצהע דאתעִי מעהרפֿאצה לאדענ. בֿארִיאבּלענ אוּש בּלוֹצכּדאתעִי דער וּמגעבּוּנג לאדענ. זפֿש-שצהלֻששעל לאדענ. געלאדענע שצהרִיפֿתענ גנוּ מאצה וִירד געלאדענ … לִינוּכּס %s וִירד געלאדענ … כּסענ %s וִירד געלאדענ … ִינִיתִיאלע ראמדִישכּ וִירד געלאדענ … פֿרעעבּשד-כּערנעל %s וִירד געלאדענ … ִיללוּמוֹש-כּערנעל וִירד געלאדענ … הוּרד וִירד געלאדענ … מ מאצ-ֻבּערפּרֻפֿוּנג ִישת געשצהעִיתערת מענֻעִינתראג ִישת עִינע זאהל, עִינ תִיתעל וֹדער בּעזעִיצהנער עִינעש מענֻעִינתראגש. מוֹדוּל מוֹדוּלע רִיצהתענ שִיע שוּפּפּוֹרתאנפֿראגענ זוּ כּסוֹררִישוֹ אנ <בּוּג-כּסוֹררִישוֹ@גנוּ.וֹרג>. בּוֹוֹתפֶֿהִיגעש גרוּבּ-אבּבִּילד פֻֿר צד-רוֹמ, פֿעשתפּלאתתע, וּשבּ-שתִיצכּ וּנד דִישכּעתתע ערשתעללענ. עִינע גרוּבּ-תאשתאתוּרלאיִוֹוּתדאתעִי ערשתעללענ. עִינ בּוֹוֹתפֶֿהִיגעש גרוּבּ-אבּבִּילד ערשתעללענ עִינ בִֿירתוּעללעש גערֶת אוּש עִינער דאתעִי ערשתעללענ. פּארתִיתִיוֹנ אלש אכּתִיבֿ מארכִּיערענ בִּיוֹש-לאוּפֿוערכּשזוּוֹרדנוּנגענ בֿערואלתענ. ערפֿוֹרדערלִיצהע וֹדער וֹפּתִיוֹנאלע ארגוּמענתע פֻֿר לאנגע וֹפּתִיוֹנענ שִינד עבּענשוֹ ערפֿוֹרדערלִיצה בּזו. וֹפּתִיוֹנאל פֻֿר דִיע ענתשפּרעצהענדענ כּוּרזוֹפּתִיוֹנענ. פּצִי-גערֶתע בּעארבּעִיתענ. בֿוֹנ בּעפֿעהל בּענֵתִיגתע זעִית מעששענ שפּעִיצהער אוּשגעשצהֵפּפֿת שפּעִיצהערתיִפּ: דדר2. שפּעִיצהערתיִפּ: וּנבּעכּאננת. בּעזעִיצהנער דעש מענֻעִינתראגש. כּעִינ מענֻעִינתראג אנגעגעבּענ. תיִפּ דעש מענֻעִינתראגש. מִיבּ מִיבּ/ש מִינִימאלע בּאשה-ֶהנלִיצהע זעִילענבּעארבּעִיתוּנג וִירד וּנתערשתֻתזת. פֻֿר דאש ערשתע ווֹרת לִישתעת תאבּ דִיע מֵגלִיצהענ בּעפֿעהלשבֿערבֿוֹללשתֶנדִיגוּנגענ אוּפֿ. אנשוֹנשתענ וערדענ מִית תאבּ דִיע מֵגלִיצהענ גערֶתע-וֹדער דאתעִיבֿערבֿוֹללשתֶנדִיגוּנגענ אנגעזעִיגת. %s מִינִימאלע עמאצש-ֶהנלִיצהע בִּילדשצהִירמבּעארבּעִיתוּנג וִירד וּנתערשתֻתזת. תאבּ לִישתעת בֿערבֿוֹללשתֶנדִיגוּנגענ אוּפֿ. דרֻצכּענ שִיע שתרג-כּס וֹדער פֿ10 זוּמ בּוֹוֹתענ, שתרג-צ וֹדער פֿ2 פֻֿר עִינע בּעפֿעהלשזעִילע וֹדער עשצ, וּמ אבּזוּבּרעצהענ וּנד זוּמ גרוּבּ-מענֻ זוּרֻצכּזוּכּעהרענ. ארגוּמענתע פֿעהלענ
 עִינגאבּעדאתעִי פֿעהלת
 מוֹנתאג שצהוארזועִיסס  מעהר אלש עִינ ִינשתאללאתִיוֹנשגערֶת? מעהר אלש עִינ מענֻעִינתראג? עִינ בֿערשצהלֻששעלתעש גערֶת עִינהֶנגענ. אללע דאתענתרֶגער עִינהֶנגענ, פֻֿר דִיע דאש »בּוֹוֹת«-פֿלאג געשעתזת ִישת. אללעש עִינהֶנגענ. נאצה וּוִּיד עִינהֶנגענ. בֿערשצהלֻששעלתע גערֶתע עִינהֶנגענ. נאמע נאמע [בֿארִיאבּלע] [הִינתועִישע] זאהל אנזאהל_דער_שעכּוּנדענ נאמע	רעפֿערענזזֶהלער	אבּהֶנגִיגכּעִיתענ
 נאתִיבֿע פֿעשתפּלאתתענתרעִיבּער וערדענ בֿערוענדעת. נוּתזוּנג דער פִֿירמוארע-שצהנִיתתשתעללע וִירד בֿערועִיגערת. נעתזוערכּפּרוֹתוֹכּוֹללע: נעוּער מבּר ווּרדע נאצה »%s« געשצהרִיעבּענ
 כּעִינ צש5536 געפֿוּנדענ כּעִינ פֿפּשוא געפֿוּנדענ כּעִינע שתאתִישתִיכּענ פֻֿר בּוֹוֹת-זעִיתענ בֿערפֻֿגבּאר
 כּעִינ בּעפֿעהל אנגעגעבּענ.
 כּעִינ גערֶת אנגעגעבּענ.
 כּעִינע שתאתִישתִיכּענ זוּמ פּאכּעת-זוִישצהענשפּעִיצהער בֿערפֻֿגבּאר
 עש ווּרדענ כּעִינע לאוּפֿוערכּע נעוּ זוּגעוֹרדנעת כּעִינ בּעכּאננתעש דאתעִישיִשתעמ ערכּאננת כּעִינע ֻבּערעִינשתִיממוּנג כּעִינ פּפֿאד אנגעגעבּענ.
 כּעִינ פּפֿאד וֹדער גערֶת ווּרדע אנגעגעבּענ.
 כּעִינ בֿוֹרהערגעהענדער רעגוּלֶרער אוּשדרוּצכּ כּעִינ בּאוּמ בִֿירתוּעללער גערֶתע בֿערפֻֿגבּאר נוֹנ-צהאִינ 4  זוּ וענִיגע פּאראמעתער פֻֿר דענ בּעפֿעהל.
 בִּיתתע בֿערבִּינדענ שִיע נוּנ עִינענ ענתפֿערנתענ דעבּוּגגער. אנזאהל בֿוֹר פּבּכּדפֿ2-דוּרצהלֶוּפֿע וֹש לאוּפֿוערכּ #נוּמ ------> גרוּבּ/בִּיוֹש-גערֶת פֿעהלער בּעִימ ֵפֿפֿנענ דער וֹש-דאתעִי %s: %s וֹפּתִיוֹנ -- ועצהשעלת ִינ דענ נאתִיבֿענ כּסוֹררִישוֹ-בּעפֿעהלשמוֹדוּש. וֹפּתִיוֹנענ: שוּצהע אוּססערהאלבּ דעש בּערעִיצהש: %d
 ערשעתזוּנג אוּססערהאלבּ דעש בּערעִיצהש (%d, %d)
 דִיע געשצהֶתזתע זוּוֹרדנוּנג בֿוֹנ פּלאנ9-גערֶתענ ֻבּערשצהרעִיבּענ. פּ פּארתִיתִיוֹנ בּעפֿעהלע פּפֿאד פּבּכּדפֿ2-פּרֻפֿשוּממע ִיהרעש פּאששווֹרתש ִישת %s
 פּוֹרת פּוֹרת וערת [מאשכּע] אלתע כּוֹנפִֿיגוּראתִיוֹנ ִימ נעוּענ כּוֹנתעכּסת לאדענ אלתע כּוֹנפִֿיגוּראתִיוֹנ ִימ נעוּענ כּוֹנתעכּסת לאדענ, נוּר מענֻעִינתרֶגע אלתע כּוֹנפִֿיגוּראתִיוֹנ ִימ גלעִיצהענ כּוֹנתעכּסת לאדענ אלתע כּוֹנפִֿיגוּראתִיוֹנ ִימ גלעִיצהענ כּוֹנתעכּסת לאדענ, נוּר מענֻעִינתרֶגע תעִיל-נוּממער: %s.
 פּארתִיתִיוֹנ %d ִישת נוּנ אכּתִיבֿ. 
 פּארתִיתִיוֹנ %s: פּארתִיתִיוֹנשתיִפּ »%s« וּנתערשתֻתזת כּעִינע עִינבּעתתוּנגענ פּפֿאד: %s
 פּפֿאד: נִיצהת בֿערפֻֿגבּאר בּעפֿעהלע אוּפֿ פּארתִיתִיוֹנ אוּשפֻֿהרענ.
רוּפֿענ שִיע »פּארתתוֹוֹל פּארתִיתִיוֹנ העלפּ« אוּפֿ, וּמ עִינע
לִישתע דער בֿערפֻֿגבּארענ בּעפֿעהלע זוּ ערהאלתענ. עִינע דנש-שוּצהע אוּשפֻֿהרענ עִינע ִיפּבֿ6-אוּתוֹכּוֹנפִֿיגוּראתִיוֹנ אוּשפֻֿהרענ שוֹווֹהל דִירעכּתע אלש אוּצה וּמגעכּעהרתע זוּוֹרדנוּנגענ אוּשפֻֿהרענ. פִּיבּ פִּיבּ/ש פּלאנאר  עִינענ כּלאנג אבּשפִּיעלענ. בִּיתתע בֿערוענדענ שִיע נִיצהת דענ אלתענ תִיתעל »%s« פֻֿר גרוּבּ_דעפֿאוּלת, בֿערוענדענ שִיע »%s« (פֻֿר בֿערשִיוֹנענ בֿוֹר 2.00) וֹדער »%s« (פֻֿר 2.00 וֹדער נעוּער) פּוֹוֹל-גוִּיד: %016llx
 פּוֹוֹל-גוִּיד: נִיצהת בֿערפֻֿגבּאר פּוֹוֹל-נאמע: %s
 פּוֹוֹל-נאמע: נִיצהת בֿערפֻֿגבּאר פּוֹוֹל-שתאתוּש: אכּתִיבֿ פּוֹוֹל-שתאתוּש: זערשתֵרת פּוֹוֹל-שתאתוּש: עכּספּוֹרתִיערת פּוֹוֹל-שתאתוּש: ארצ-גערֶת, לעבֿעל 2 פּוֹוֹל-שתאתוּש: פּוֹתענזִיעלל אכּתִיבֿ פּוֹוֹל-שתאתוּש: פֻֿר הוֹתשפּארע רעשערבִֿיערת פּוֹוֹל-שתאתוּש: נִיצהת בֿערפֻֿגבּאר פּוֹוֹל-שתאתוּש: נִיצהת ִינִיתִיאלִישִיערת מֵגלִיצהע ארגוּמענתע שִינד: מֵגלִיצהע בּעפֿעהלע שִינד: מֵגלִיצהע גערֶתע שִינד: מֵגלִיצהע דאתעִיענ שִינד: מֵגלִיצהע פּארתִיתִיוֹנענ שִינד: מֵגלִיצהע דִינגע שִינד: בֿוֹרזעִיתִיגעש ענדע דעש רעגוּלֶרענ אוּשדרוּצכּש בּעלִיעבִּיגע תאשתע דרֻצכּענ, וּמ פֿוֹרתזוּשעתזענ … דרֻצכּענ שִיע עִינע בּעלִיעבִּיגע תאשתע, וּמ כּסנוּ זוּ שתארתענ »ענתער« זוּמ בּוֹוֹתענ דעש מארכִּיערתענ בּעתרִיעבּששיִשתעמש, »ע« זוּמ בּעארבּעִיתענ דער בּעפֿעהלע בֿוֹר דעמ בּוֹוֹתענ וֹדער »צ« פֻֿר עִינע בּעפֿעהלשזעִילע. »ענתער« זוּמ בּוֹוֹתענ דעש מארכִּיערתענ בּעתרִיעבּששיִשתעמש, »ע« זוּמ בּעארבּעִיתענ דער בּעפֿעהלע בֿוֹר דעמ בּוֹוֹתענ וֹדער »צ« פֻֿר עִינע בּעפֿעהלשזעִילע. מִית »עשצ« כּעהרענ שִיע זוּמ בֿוֹרהערִיגענ מענֻ זוּרֻצכּ. שפּעִיצהער-ִינפֿוֹרמאתִיוֹנענ אנזעִיגענ. זפֿש-ִינפֿוֹ זוּ גערֶת אוּשגעבּענ. זפֿש-בּוֹוֹתפֿשוֹבּי אוּשגעבּענ וֹדער אלש בֿארִיאבּלע שעתזענ עִינע בּלוֹצכּלִישתע אוּשגעבּענ. בּלוֹצכּארגוּמענת אוּשגעבּענ וּנד אוּשפֻֿהרענ. בּאצכּתראצע אוּשגעבּענ. ִידענתִיתֶת וּנד עִינשתעללוּנגענ דעש לאוּפֿוערכּש אוּשגעבּענ. גרֵססענוערתע ִינ מענשצהענלעשבּארעמ פֿוֹרמאת אוּשגעבּענ. גערֶתעִינפֿוֹרמאתִיוֹנענ פֻֿר עִינענ אנגעגעבּענענ פּפֿאד ערמִיתתעלנ (וֹדער גערֶת, פֿאללש דִיע וֹפּתִיוֹנ -ד אנגעגעבּענ ִישת). ראמ ענתהֶלת צוֹרעבּוֹוֹת-תאבּעללענ ראמ ענתהֶלת פִֿירמוארע-צוֹדע ראמ-שלוֹתנוּממער %d
 רעגעכּספּ זעִיצהענכּעתתע רוֹמ-אבּבִּילד ִישת בֿוֹרהאנדענ. 16-בִּית-וערת אוּש אדדר לעשענ. 16-בִּית-וערת בֿוֹנ פּוֹרת לעשענ. 32-בִּית-וערת אוּש אדדר לעשענ. 32-בִּית-וערת בֿוֹנ פּוֹרת לעשענ. 8-בִּית-וערת אוּש אדדר לעשענ. 8-בִּית-וערת בֿוֹנ פּוֹרת לעשענ. נוּר בּיִתעש דער לֶנגע לענגתה לעשענ. נעוּ שתארתענ ִישת געשצהעִיתערת דענ רעצהנער נעוּ שתארתענ. פּאששווֹרת ערנעוּת עִינגעבּענ: רעגִישתער %x בֿוֹנ %x:%02x.%x ִישת %x
 רעגוּלֶרער אוּשדרוּצכּ ִישת זוּ גרוֹסס עִינענ דנש-שערבֿער ענתפֿערנענ עִינ מוֹדוּל ענתפֿערנענ. עִינע וּמגעבּוּנגשבֿארִיאבּלע לֵשצהענ. אללע שפּעִיצהערשעגמענתע ִימ אנגעגעבּענענ בּערעִיצה לֵשצהענ. בּערִיצהתענ שִיע פֿעהלער אנ %s.
 מעלדענ שִיע פֿעהלער אנ <בּוּג-גרוּבּ@גנוּ.וֹרג>. שערִיעללעש תערמִינאל ווּרדע אנגעפֿוֹרדערת, אבּער גרוּבּ_שערִיאל_צוֹממאנד ווּרדע נִיצהת אנגעגעבּענ. שתאנדארדפּאראמעתער וערדענ בֿערוענדעת. אללע זוּוֹרדנוּנגענ אוּפֿ שתאנדארדוערתע זוּרֻצכּשעתזענ. ִינפֿוֹ זוּמ גערֶת הוֹלענ. אוּש עִינער פֿוּנכּתִיוֹנ זוּרֻצכּכּעהרענ. זוּמ ִיעעע1275-פּרוֹמפּת זוּרֻצכּכּעהרענ. רוּפֿענ שִיע »גדבּ %s %d« אוּפֿ וּנד שעתזענ שִיע ארגש.הוֹלד אוּפֿ נוּלל.
 געבּענ שִיע »גוֹ« עִינ, וּמ גרוּבּ פֿוֹרתזוּשעתזענ. שעכּ כּוּרזנאמע כּוּרזנאמע כּארדע אדרעששע [הו-אדרעששע] כּוּרזנאמע נעתז [שצהנִיתתשתעללע| גו גאתעואיִ] גרֵססע קוּעללע|-וּ וּוִּיד|-א|-בּ זעִיצהענכּעתתע שאמשתאג געלעשענענ וערת ִינ בֿארִיאבּלע בֿארנאמע שפּעִיצהערנ. בֿארִיאבּלענ ִינ דִיע בּלוֹצכּדאתעִי שפּעִיצהערנ. »האללוֹ ועלת« אוּשגעבּענ. אנהאנד בֿוֹנ וּוִּידש נאצה גערֶתענ שוּצהענ. פֿאללש בֿארִיאבּלע אנגעגעבּענ וִירד, דאננ וִירד דאש ערשתע געפֿוּנדענע גערֶת זוּמ שעתזענ דער בֿארִיאבּלע בֿערוענדעת. גערֶתע נאצה דאתעִי דוּרצהשוּצהענ. גערֶתע נאצה דאתעִישיִשתעמ-וּוִּיד דוּרצהשוּצהענ. גערֶתע נאצה דאתעִישיִשתעמבּעזעִיצהנוּנג דוּרצהשוּצהענ. אנהאנד בֿוֹנ דאתעִיענ, דאתעִישיִשתעמבּעזעִיצהנוּנגענ וֹדער דאתעִישיִשתעמ-וּוִּידש נאצה גערֶתענ שוּצהענ. פֿאללש --שעת אנגעגעבּענ וִירד, דאננ וִירד דאש ערשתע געפֿוּנדענע גערֶת זוּמ שעתזענ דער בֿארִיאבּלע בֿערוענדעת. פֿאללש כּעִינע בֿארִיאבּלע אנגעגעבּענ וִירד, דאננ וִירד »רוֹוֹת« בֿערוענדעת אנהאנד בֿוֹנ דאתעִיענ נאצה גערֶתענ שוּצהענ. פֿאללש בֿארִיאבּלע אנגעגעבּענ וִירד, דאננ וִירד דאש ערשתע געפֿוּנדענע גערֶת זוּמ שעתזענ דער בֿארִיאבּלע בֿערוענדעת. אנהאנד בֿוֹנ בּעזעִיצהנוּנגענ נאצה גערֶתענ שוּצהענ. פֿאללש בֿארִיאבּלע אנגעגעבּענ וִירד, דאננ וִירד דאש ערשתע געפֿוּנדענע גערֶת זוּמ שעתזענ דער בֿארִיאבּלע בֿערוענדעת. דער שעכּתוֹר %llu וִירד בּערעִיתש בֿוֹמ ראִיד-צוֹנתרוֹללער »%s« בֿערוענדעת וּנד וִירד דאהער ֻבּערגאנגענ. בִּיתתע פֿראגענ שִיע דענ הערשתעללער, וֹבּ עש מֵגלִיצה ִישת, כּעִינע דאתענ ִינ דער מבּר-לֻצכּע זוּ שפּעִיצהערנ. דער שעכּתוֹר %llu וִירד בּערעִיתש בֿוֹמ פּרוֹגראממ »%s« בֿערוענדעת וּנד וִירד דאהער ֻבּערגאנגענ. דִיעשע שוֹפֿתוארע כּאננ ִינ זוּכּוּנפֿת שתארת- וֹדער אנדערע פּרוֹבּלעמע הערבֿוֹררוּפֿענ. בִּיתתע פֿראגענ שִיע דעששענ אוּתוֹרענ, וֹבּ עש מֵגלִיצה ִישת, כּעִינע דאתענ ִימ בּוֹוֹת-בּערעִיצה זוּ שפּעִיצהערנ. גערֶת נאצה דעששענ פּוֹשִיתִיוֹנ אוּפֿ דעמ בּוּש אוּשוֶהלענ. גערֶת נאצה אנבִּיעתער וּנד גערֶתעכּעננוּנגענ אוּשוֶהלענ. ערועִיתערתע ענערגִיעבֿערואלתוּנג שעתזענ
(1=נִיעדרִיג, ..., 254=הוֹצה, 255=אוּש). אוּתוֹמאתִישצהע כּלאנגבֿערואלתוּנג פֿעשתלעגענ
(0=אוּש, 128=לעִישע, ..., 254=שצהנעלל). וֹעמִיד בֿוֹנ רשדפּ, כּסשדת וּנד רשדת פֿעשתלעגענ. וֹעמתאבּלע-ִיד בֿוֹנ רשדפּ, כּסשדת אנד רשדת פֿעשתלעגענ. וֹעמתאבּלע-רעבִֿישִיוֹנ בֿוֹנ רשדפּ, כּסשדת וּנד רשדת פֿעשתלעגענ. »הִידדענ«-פֿלאג ִימ פּארתִיתִיוֹנשתיִפּ שעתזענ עִינע בֿארִיאבּלע אוּפֿ דענ רֻצכּגאבּעוערת שעתזענ. עִינע בֿארִיאבּלע אוּפֿ דאש ערשתע געפֿוּנדענע גערֶת שעתזענ. עִינע וּמגעבּוּנגשבֿארִיאבּלע פֿעשתלעגענ. הִינתערגרוּנדפֿארבּע פֻֿר אכּתִיבֿעש תערמִינאל פֿעשתלעגענ. ערשתעללער-פֿעלד בֿוֹנ רשדפּ, כּסשדת וּנד רשדת פֿעשתלעגענ. ערשתעללער-רעבִֿישִיוֹנ בֿוֹנ רשדפּ, כּסשדת וּנד רשדת פֿעשתלעגענ. דעבּוּג-וּמגעבּוּנגשבֿארִיאבּלע שעתזענ. לאוּפֿוערכּ ִינ דענ שצהלאפֿמוֹדוּש בֿערשעתזענ. לאוּפֿוערכּ ִינ דענ שתאנדבּיִ-מוֹדוּש בֿערשעתזענ. פּוֹשִיתִיוֹנשפּאראמעתער פֿעשתלעגענ. רוֹוֹת-גערֶת פֿעשתלעגענ. וארתעזעִית בִּיש שתאנדבּיִ פֿעשתלעגענ
(0=וֹפֿפֿ, 1=5ש, 2=10ש, ..., 240=20מ, 241=30מ, ...). תערמִינפֿוֹ-תיִפּ בֿוֹנ תערמ אוּפֿ תיִפּ שעתזענ.
 דענ שתאנדארד-בּוֹוֹתעִינתראג פֻֿר גרוּבּ פֿעשתלעגענ (נוּר פֻֿר דענ נֶצהשתענ בּוֹוֹתבֿוֹרגאנג). דענ בֿוֹרעִינגעשתעללתענ בּוֹוֹתעִינתראג פֻֿר גרוּבּ פֿעשתלעגענ. אדרעששע דעש שערִיעללענ פּוֹרתש פֿעשתלעגענ. פּארִיתֶת דעש שערִיעללענ פּוֹרתש פֿעשתלעגענ. געשצהוִינדִיגכּעִית דעש שערִיעללענ פּוֹרתש פֿעשתלעגענ. שתוֹפּ-בִּיתש דעש שערִיעללענ פּוֹרתש פֿעשתלעגענ. ווֹרתלֶנגע דעש שערִיעללענ פּוֹרתש פֿעשתלעגענ. עִינהעִית דעש שערִיעללענ פּוֹרתש פֿעשתלעגענ. אבּבִּילדער זוּמ בּוֹוֹתענ בֿוֹנ גערֶת עִינרִיצהתענ.

שִיע שוֹללתענ דִיעשעש פּרוֹגראממ נוֹרמאלערועִישע נִיצהת דִירעכּת אוּשפֻֿהרענ.
בֿערוענדענ שִיע שתאתתדעששענ גרוּבּ-ִינשתאלל. בּענוּתזערפּאששווֹרת פֿעשתלעגענ (פּבּכּדפֿ2).  בּענוּתזערפּאששווֹרת (כּלארתעכּסת) פֿעשתלעגענ. נִיצהת עמפּפֿוֹהלענ, דא וּנשִיצהער. בֿארִיאבּלע דוּרצה בּענוּתזערעִינגאבּע שעתזענ. בֿארִיאבּלענ שעתזענ. פּארתִיתִיוֹנשתיִפּ וִירד אוּפֿ 0כּס%x געשעתזת
 פּוֹשִיתִיוֹנשפּאראמעתער אנפּאששענ. אצפִּי-ִינפֿוֹרמאתִיוֹנענ אנזעִיגענ. אפּמ-ִינפֿוֹרמאתִיוֹנענ אנזעִיגענ. עִינע הִילפֿעמעלדוּנג אנזעִיגענ. לאנגע לִישתע מִית אוּשפֻֿהרלִיצהערענ ִינפֿוֹרמאתִיוֹנענ אנזעִיגענ. דענ ִינהאלת דער דאתעִי העכּסאדעזִימאל אנזעִיגענ. געלאדענע מוֹדוּלע אנזעִיגענ. ִינהאלת דעש שפּעִיצהערש אנזעִיגענ. רוֹה-ִינהאלת דעש  אתא ִידענתִיפֿיִ-שעכּתוֹרש אנזעִיגענ. רוֹה-ִינהאלת עִינער דאתעִי וֹדער דעש שפּעִיצהערש אנזעִיגענ. ִינהאלת עִינער דאתעִי אנזעִיגענ. אללע אכּתוּעללענ זוּוֹרדנוּנגענ אנזעִיגענ. דִיעשע מעלדוּנג אנזעִיגענ. נוּר בֿערשִיוֹנ-1-תאבּעללענ דארשתעללענ. נוּר בֿערשִיוֹנ-2- וּנד בֿערשִיוֹנ-3-תאבּעללענ אנזעִיגענ. הערוּנתערפֿאהרענ ִישת געשצהעִיתערת »ִינִיתרד«-בּעפֿעהל וִיע ִינ גרוּבּ-לעגאציִ שִימוּלִיערענ »כּערנעל«-בּעפֿעהל וִיע ִינ גרוּבּ-לעגאציִ שִימוּלִיערענ »מוֹדוּלענוֹוּנזִיפּ«-בּעפֿעהל וִיע ִינ גרוּבּ-לעגאציִ שִימוּלִיערענ »פּאששווֹרד«-בּעפֿעהל וִיע ִינ גרוּבּ-לעגאציִ שִימוּלִיערענ »פּאששווֹרד«-בּעפֿעהל בֿוֹנ גרוּבּ-לעגאציִ ִימ מענֻעִינתראגשמוֹדוּש שִימוּלִיערענ נ בּיִתעש דער אוּשגאבּעדאתעִי ֻבּערשפּרִינגענ. וֹפֿפֿשעת-בּיִתעש אמ בּעגִיננ דער דאתעִי ֻבּערשפּרִינגענ. שלוֹת %d געֵפֿפֿנעת
 הוּרד-בּעשתאנדתעִילע ווּרדענ געפֿוּנדענ, דִיע אבּער זוּמ בּוֹוֹתענ נִיצהת אוּשרעִיצהענ. דאתעִינאמע אנגעבּענ. זוּ בֿערוענדענדענ האשה אנגעבּענ. עִינע וֹדער מעהרערע זוּ לאדענדע שצהרִיפֿתדאתעִיענ אנגעבּענ. גרֵססע פֻֿר יעדענ לעשעבֿוֹרגאנג אנגעבּענ דִיע אנזאהל דער עִינגאבּעדאתעִיענ אנגעבּענ. געשצהוִינדִיגכּעִית: %s 
 גדבּ-שתוּבּ אוּפֿ דעמ אנגעגעבּענענ פּוֹרת שתארתענ גדבּ-שתוּבּ שתוֹפּפּענ ענתשפּרעצהענדע כּוֹמפּוֹנענתענ-נוּממער ִינ בֿארנאמע שפּעִיצהערנ. ערפֿוֹלג שוֹננתאג נוֹרמאלע אוּשגאבּענ וּנתערדרֻצכּענ (וארנוּנגענ בֿערבּלעִיבּענ) שיִנתאכּספֿעהלער ִינ זעִילע %u
 ִינ דער ערזעוּגתענ גרוּבּ-כּוֹנפִֿיגוּראתִיוֹנשדאתעִי ווּרדענ
שיִנתאכּספֿעהלער ענתדעצכּת. שתעללענ שִיע שִיצהער, דאש דִיע דאתעִיענ
/עתצ/דעפֿאוּלת/גרוּבּ וּנד /עתצ/גרוּבּ.ד/* פֿעהלערפֿרעִי שִינד וֹדער
ערשתעללענ שִיע עִינענ פֿעהלערבּערִיצהת מִית %s אלש אנהאנג. עִינ-/אוּשגאבּעבּערעִיצה דעש שיִשתעמבֿערואלתוּנגשבּוּש-צוֹנתרוֹללערש ִישת בּעִי 0כּס%x
 ת זִיעל זִיעלפֿוֹרמאת ווּרדע נִיצהת אנגעגעבּענ (בֿערוענדענ שִיע דִיע וֹפּתִיוֹנ -0). תערמִינאלגעוֹמעתרִיע ווּרדע פֿעשתגעלעגת. תערמִינאל ִישת נוּר אשצִיִי [בֿוֹרגאבּע]. תערמִינאל ִישת לוֹגִישצהעש וּתפֿ-8. תערמִינאל ִישת בִֿישוּעללעש וּתפֿ-8. וּשבּ-וּנתערשתֻתזוּנג ֻבּערפּרֻפֿענ. בִּית בּעִי בּיִתע:בִּית ִימ צמוֹש תעשתענ. דאתעִילעשעגעשצהוִינדִיגכּעִית תעשתענ. פּרֻפֿענ, וֹבּ רעגעכּספּ אוּפֿ זעִיצהענכּעתתע פּאששת. דאש בִֿידעוֹ-שוּבּשיִשתעמ ִימ מוֹדוּש בּכּסה ֻבּערפּרֻפֿענ. דאש בִֿידעוֹ-שוּבּשיִשתעמ ֻבּערפּרֻפֿענ. נוּר תעכּסת דִיע דאתעִיענ שִינד ִידענתִישצה.
 דער הערבֿוֹרגעהוֹבּענע עִינתראג וִירד אוּתוֹמאתִישצה ִינ %dש אוּשגעפֻֿהרת. דִיעשער עִינתראג כּאננ בֿוֹנ יעדעמ בּענוּתזער געבּוֹוֹתעת וערדענ. דוֹננערשתאג תִיבּ תִיבּ/ש וערכּזעוּג זוּמ בּעארבּעִיתענ עִינער וּמגעבּוּנגש-בּלוֹצכּדאתעִי. פֿלאשה-געשאמתגרֵססע: %d בּ.
 אנגעהֶנגתער בּאצכּשלאשה 64-בִּית-וּוִּיד ִינ עִינ בֿוֹנ כּסנוּ בֿערארבּעִיתבּארעש פֿוֹרמאת וּמואנדעלנ. פֿאללש -ל אנגעגעבּענ ִישת, בִּיתתע כּלעִינשצהרעִיבּוּנג בּעִיבּעהאלתענ (וִיע בֿוֹנ בּלכִּיד) עִינענ שיִשתעמדאתעִינאמענ ִינ עִינענ פֻֿר גרוּבּ וּמואנדעלנ. ֻבּערשעתזת דִיע זעִיצהענכּעתתע אנהאנד דענ אכּתוּעללענ עִינשתעללוּנגענ. רוּפֿענ שִיע »%s --העלפּ« וֹדער »%s --וּשאגע« אוּפֿ, וּמ ועִיתערע ִינפֿוֹרמאתִיוֹנענ זוּ ערהאלתענ.
 דִיענשתאג בּענוּתזער פּאששווֹרת בּענוּתזער פּבּכּדפֿ2_פּאששווֹרת בּענוּתזערנאמע[,בּענוּתזערנאמע] וּתפֿ-8 ועִיתערלעִיתוּנג כּוֹננתע נִיצהת אנגעלעגת וערדענ: %s ִיהרע פּלאתתפֿוֹרמ כּוֹננתע נִיצהת ערכּאננת וערדענ. בֿערוענדענ שִיע --תארגעת. פֿוֹרכּ כּוֹננתע נִיצהת אנגעלעגת וערדענ: %s דאתענשתרוֹמ בֿוֹנ %s כּוֹננתע נִיצהת געֵפֿפֿנעת וערדענ: %s פּוֹוֹל-שתאתוּש כּוֹננתע נִיצהת ערמִיתתעלת וערדענ דאתענ ענתפּאצכּענ. דאתעִי ענתפּאצכּענ, בּעבֿוֹר פּרֻפֿשוּממע ערמִיתתעלת וִירד. וּנבּעכּאננתער אדרעששתיִפּ %d
 וּנבּעכּאננתער בּעפֿעהל »%s«.
 וּנבּעכּאננתעש כּוֹמפּרעששִיוֹנשפֿוֹרמאת %s וּנבּעכּאננתע כּוֹדִיערוּנג וּנבּעכּאננתעש זוּשֶתזלִיצהעש ארגוּמענת »%s«. וּנבּעכּאננתעש גשוּבּ-שצהרִיפֿתמערכּמאל 0כּס%x (%s)
 וּנגֻלתִיגער צוֹדע פֻֿר תאשתאתוּרשצאנ 0כּס%02x
 וּנגֻלתִיגער בּעזעִיצהנער פֻֿר תאשתאתוּרשצאנ %s
 וּנבּעכּאננתער שיִשתעמפֿעהלער וּנבּעכּאננתער בִֿידעוֹמוֹדוּש תיִפּ דעש בִֿירתוּעללענ גערֶתעש ִישת וּנבּעכּאננת: %s
 עפִֿי-וּמגעבּוּנג ענתלאדענ. כּעִינ געגענשתֻצכּ פֻֿר ( וֹדער \( נִיצהת ֻבּערעִינשתִיממענדע ) וֹדער \) כּעִינ געגענשתֻצכּ פֻֿר [ וֹדער [^ כּעִינ געגענשתֻצכּ פֻֿר \{ וּנערכּאננתע וֹפּתִיוֹנ »%s«\נ פּוֹוֹל-שתאתוּש נִיצהת ערכּאננת נִיצהת וּנתערשתֻתזתער אדרעששתיִפּ %d
 נִיצהת וּנתערשתֻתזתע צוֹבֿעראגע-שפּעזִיפִֿיכּאתִיוֹנ: %d
 נִיצהת וּנתערשתֻתזתער הארדוארע-אדרעששתיִפּ %d
 בִּילדפֿוֹרמאת נִיצהת וּנתערשתֻתזת נִיצהת וּנתערשתֻתזתעש ערשעתזוּנגש-פֿלאג: 0כּס%x
 נִיצהת וּנתערשתֻתזתע ערשעתזוּנגשאנגאבּע: %d
 נִיצהת וּנתערשתֻתזתער ערשעתזוּנגשתיִפּ: %d
 אוּפֿרוּפֿ: אוּפֿרוּפֿ: %s -וֹ אוּשגאבּע צכּבּמאפּ_ארגוּמענתע...\נ אוּפֿרוּפֿ: %s גערֶת
 אוּפֿרוּפֿ: %s [עִינגאבּעדאתעִי [אוּשגאבּעדאתעִי]]
 אוּפֿרוּפֿ: %s [וֹפּתִיוֹנ] מענֻעִינתראג\נ אוּפֿרוּפֿ: %s [וֹפּתִיוֹנ]\נ צדרוֹמ אלש רוֹוֹת-גערֶת בֿערוענדענ. ענתפֿערנתע גדבּ-פֿעהלערדִיאגנוֹשע אנשתאתת דדבּ בֿערוענדענ. זעִיצהענכּעתתע אלש ִינהאלת דעש מענֻעִינתראגש בֿערוענדענ. עִינכּוֹמפִּילִיערתעש רוֹוֹת-גערֶת בֿערוענדענ. שערִיעללע כּוֹנשוֹלע בֿערוענדענ. בֿערוענדענ שִיע דִיע תאשתענ %C וּנד %C זוּמ מארכִּיערענ עִינעש עִינתראגש. בֿארִיאבּלע שצהנִיתתשתעללע זאהל בּעשצהרעִיבּוּנג בֿארנאמע אוּשפֻֿהרלִיצהער צוֹוּנתדוֹונ. אנגעהֶנגתע שִיגנאתוּר ֻבּערפּרֻפֿענ. בֿערשִיוֹנ %u.%u
32-בִּית צש = 0כּס%x, לענ = 0כּס%x, וֹפֿפֿשעת = 0כּס%x
16-בִּית צש = 0כּס%x, לענ = 0כּס%x
דש = 0כּס%x, לענ = 0כּס%x
 בִֿירתוּעללעש גערֶת ִישת נִיצהת בֿערפֻֿגבּאר בִֿירתוּעללעש גערֶת ִישת געשצהעִיתערת בִֿירתוּעללעש גערֶת ִישת וֹפֿפֿלִינע בִֿירתוּעללעש גערֶת ִישת וֹנלִינע בִֿירתוּעללעש גערֶת ווּרדע ענתפֿערנת וארנוּנג: ִימ בּעתרִיעבּששיִשתעמ וִירד כּעִינע כּוֹנשוֹלע בֿערפֻֿגבּאר שעִינ וארנוּנג: עש ווּרדע כּעִינע פּלאתתפֿוֹרמשפּעזִיפִֿישצהע ִינשתאללאתִיוֹנ דוּרצהגעפֻֿהרת וארנוּנג: נִיצהת וּנתערשתֻתזתע פּאראמעתער פֻֿר שצהרִיפֿתעִיגענשצהאפֿתענ: %x
 בּרעִיתעכּסהֵהע. דִיע אנגעגעבּענע אנזאהל אנ שעכּוּנדענ וארתענ. נאצה יעדער אוּשגעגעבּענענ זעִילע אוּפֿ תאשתענדרוּצכּ וארתענ. וארנוּנג: וארנוּנג: וּנגֻלתִיגע הִינתערגרוּנדפֿארבּע »%s«
 וארנוּנג: וּנגֻלתִיגע בֿוֹרדערגרוּנדפֿארבּע »%s«
 וארנוּנג: שיִנתאכּספֿעהלער (פֿעהלענדער /) ִינ »%s«
 מִיתתווֹצה וִינדוֹוש נת/2000/כּספּ (לאדער) וִינדוֹוש בִֿישתא/7 (לאדער) 16-בִּית-וערת נאצה אדדר שצהרעִיבּענ. 16-בִּית-וערת נאצה פּוֹרת שצהרעִיבּענ. 32-בִּית-וערת נאצה אדדר שצהרעִיבּענ. 32-בִּית-וערת נאצה פּוֹרת שצהרעִיבּענ. 8-בִּית-וערת נאצה אדדר שצהרעִיבּענ. 8-בִּית-וערת נאצה פּוֹרת שצהרעִיבּענ. געשצהרִיעבּענע שפּד-בּיִתעש: %d בּ.
 כּסענ-היִפּערבִֿישוֹר, בֿערשִיוֹנ %s יִוּבֿ  שִיע מֻששענ מִינדעשתענש עִינענ בּעפֿעהל אנגעבּענ.
 »שיִשתעמפּארתִיתִיוֹנ« וּנד »וֹשלוֹאדער« מֻששענ מאנוּעלל עִינגערִיצהתעת וערדענ. ִיהר עִינבּעתתוּנגשבּערעִיצה ִישת וּנגעוֵהנלִיצה כּלעִינ.  צוֹרע.ִימג וֻרדע נִיצהת הִינעִינפּאששענ. [--אפּפּענד|--רעמוֹבֿע] [תערמִינאל1] [תערמִינאל2] ... [--פֿוֹרצע|--בּפּבּ] גערֶת [--מד5] פּאששווֹרת [דאתעִי] [--נוֹ-מעמ-וֹפּתִיוֹנ] [--תיִפּע=תיִפּ] דאתעִי [ארג ...] [-1|-2] [--עכּסצלוּדע=תאבּעללע1,תאבּעללע2|--לוֹאד-וֹנליִ=תאבּעללע1,תאבּעללע2] דאתעִי1 [דאתעִי2] [...] [-צ דאתעִי [-פּ פּרֶפִֿיכּס]] [דאתעִי1 [דאתעִי2 ...]] [-ד] גערֶתענאמע דאתעִי. [-ע|-נ] זעִיצהענכּעתתע [-פֿ דאתעִי] [-פֿ דאתעִי] בֿארִיאבּלעננאמע [...] [-פֿ|-ל|-וּ|-ש|-נ] [--הִינת הִינועִיש [--הִינת הִינת] ...] נאמע [-ה|-פּ|-ר] [דאתעִי] [-ל] גרוּבּוּוִּיד [בֿארנאמע] [-ל|-ה|-א] [דאתעִי …] [-מ (שתרעתצה|נוֹרמאל)] דאתעִי [-ש פּוֹשִיתִיוֹנ] [-ד גערֶת] [-ש פּוֹשִיתִיוֹנ] [-ד גערֶת] [-בֿ בֿאר] רעגִישתער[=וערת[:מאשכּע]] [-ש גרֵססע] דאתעִינאמע [אדר|צוֹמוּנִית][,געשצהו] [ארג] כּארתע [הו-אדרעששע] [כּארתע] [וּמגבֿאר=וערת] [ענבֿבֿאר] [כֻּרזעל1] [כֻּרזעל2] ... [מוֹדוּל1 מוֹדוּל2 …] [זאהל:]בֿארנאמע [זאהל] [וֹפּתִיוֹנענ…] [וֹפּתִיוֹנענ] [וֹפּתִיוֹנענ] דאתענתרֶגער [וֹפּתִיוֹנענ] דאתעִי_וֹדער_גערֶת [וֹפּתִיוֹנענ] שצהרִיפֿתדאתעִיענ [וֹפּתִיוֹנ]… [מוֹדוּלע] [וֹפּתִיוֹנענ]… [פּפֿאד|גערֶת] [וֹפּתִיוֹנענ] [פּפֿאד] [מוּשתער ...] [בּענוּתזערלִישתע] [וערת]... [בּכּסה[כּסת]] [בּכּסה] [[-א|-וּ|-בֿ] [-ג בּכּסה] תערמ [תיִפּ]] [[יאהר-]מוֹנאת-תאג] [שתוּנדע:מִינוּתע[:שעכּוּנדע]] [בּוּש]:[שלוֹת][.פֿוּנצ] [אנבִּיעתער]:[גערֶת] »צריִפּתוֹמוֹוּנת«-בּעפֿעהל ִישת פֿעהלגעשצהלאגענ: %s »לוֹוֹפּבּאצכּ«-בּעפֿעהל ִישת פֿעהלגעשצהלאגענ: %s »וֹבּפּפּאתה« ווּרדע ִינ דענ עלתערנוֹרדנערנ בֿוֹנ %s נִיצהת געפֿוּנדענ, כּעִינע ִיעעע1275-נאמענשערמִיתתלוּנג עִינ ארגוּמענת ווּרדע »%s« זוּגעוֹרדנעת, וֹבּווֹהל עש כּעִינ ארגוּמענת ערוארתעת זוּגרִיפֿפֿ בֿערועִיגערת נוֹתע-שעגמענת פֻֿר צהרפּ ִיעעע1275 הִינזוּפֻֿגענ אדרעששע אדרעששע נִיצהת געפֿוּנדענ בֿערשוּצה, אוּססערהאלבּ דער פּלאתתע »%s« זוּ לעשענ וּנד זוּ שצהרעִיבּענ בֿערשוּצה, אוּססערהאלבּ דער פּארתִיתִיוֹנ זוּ לעשענ וֹדער זוּ שצהרעִיבּענ בֿערשוּצה, הִינתער דעמ ענדע דער דאתעִי זוּ לעשענ בֿערשוּצה, אוּססערהאלבּ דער דאתעִי זוּ שוּצהענ עש וִירד בֿערשוּצהת, דאש צוֹרע-אבּבִּילד »%s« אוּש גרוּבּ זוּ לעשענ עש וִירד בֿערשוּצהת, דאש צוֹרע-אבּבִּילד »%s« ערנעוּת אוּש גרוּבּ זוּ לעשענ בֿערפֻֿגבּארער ראמ בֿערפֻֿגבּארע פֿוֹרמאתע: פֿאלשצהע שִיגנאתוּר בּאשע_אדדר = 0כּס%llx, לֶנגע = 0כּס%llx, %s
 בּאשע_אדדר = 0כּס%llx, לֶנגע = 0כּס%llx, תיִפּ = 0כּס%x
 בִּיתמאפּ-דאתעִי »%s« בּעשִיתזת עִינ נִיצהת וּנתערשתֻתזתעש פֿוֹרמאת בּלוֹצכּלִישת דאתעִי בּלוֹצכּלִישתענ שִינד וּנגֻלתִיג בּלוֹצכּגרֵססע ִישת נִיצהת דוּרצה 512 תעִילבּאר 0 שצהלעִיפֿענ כֵּננענ נִיצהת וּנתערבּרוֹצהענ וערדענ דאתעִישיִשתעמתיִפּ אוּפֿ %s כּוֹננתע נִיצהת ערמִיתתעלת וערדענ בּעפֿעהל »%s« כּוֹננתע נִיצהת געפֿוּנדענ וערדענ בֿערשצהלֻששעלתער דאתענתרֶגער »%s« כּוֹננתע נִיצהת עִינגעבּוּנדענ וערדענ: %s »%s« כּאננ נִיצהת געֵפֿפֿנעת וערדענ: %s %s כּאננ נִיצהת געֵפֿפֿנעת וערדענ, ִינדעכּס %d: פֿעהלער %d בּלוֹצכּלִישתענ כּוֹננתענ נִיצהת ערמִיתתעלת וערדענ בּלוֹצכּלִישתענ כּוֹננתענ נִיצהת ערמִיתתעלת וערדענ: %s כּערנעל-אבּבִּילד כּאננ נִיצהת כּוֹמפּרִימִיערת וערדענ פֻֿר %s כּוֹננתע כּעִינ גרוּבּ-לאוּפֿוערכּ געפֿוּנדענ וערדענ. ֻבּערפּרֻפֿענ שִיע ִיהרע דעבִֿיצע.מאפּ גערֶת פֻֿר %s כּוֹננתע נִיצהת געפֿוּנדענ וערדענ (ִישת /דעבֿ עִינגעהֶנגת?) ֻבּערשעתזער-בּעפֿעהלשזעִילענפּפֿאד פֻֿר פּפֿאד »%s« כּוֹננתע נִיצהת ערמִיתתעלת וערדענ: %s וֹש-דאתעִי »%s« כּאננ נִיצהת געֵפֿפֿנעת וערדענ: %s »%s« כּאננ נִיצהת געֵפֿפֿנעת וערדענ: %s »%s« כּאננ נִיצהת כּוֹררעכּת געלעשענ וערדענ »%s« ִישת נִיצהת לעשבּאר: %s דאתעִי %s כּאננ נִיצהת ִינ %s וּמבּענאננת וערדענ וֹרִיגִינאלוֹרדנער כּאננ נִיצהת וִיעדערהערגעשתעללת וערדענ »%s« כּאננ נִיצהת דוּרצהשוּצהת וערדענ: %s אוּפֿרוּפֿ בֿוֹנ שתאת פֻֿר »%s« נִיצהת מֵגלִיצה: %s אוּפֿ צד-רוֹמ כּאננ נִיצהת געשצהרִיעבּענ וערדענ אוּפֿ »%s« כּאננ נִיצהת געשצהרִיעבּענ וערדענ: %s שצהרעִיבּענ ִינ דִיע שתאנדארדאוּשגאבּע פֿעהלגעשצהלאגענ: %s כּארתע נִיצהת געפֿוּנדענ צאת דאתעִי פּרֻפֿשוּממענבֿערגלעִיצה ִישת געשצהעִיתערת זוּ בֿערוענדענדע כּוֹמפּרעששִיוֹנ פֻֿר כּערנעל-אבּבִּילד אוּשוֶהלענ צמפּ דאתעִי לוֹכּאל צוֹמוּנִית[,געשצהו] בֿערגלעִיצהשפֿעהלער בּעִי %llu בֿערבִּינדוּנג בֿערועִיגערת בֿערבִּינדוּנגשאבּבּרוּצה ועגענ זעִיתֻבּערשצהרעִיתוּנג ִינ פֿעתתע שצהרִיפֿת וּמואנדעלנ צוֹרע-אבּבִּילד ִישת זוּ גרוֹסס (0כּס%x > 0כּס%x) בֿערשִיוֹנ בֿוֹנ צוֹרע.ִימג פּאששת נִיצהת %s כּוֹננתע נִיצהת אוּתוֹמאתִישצה כּוֹנפִֿיגוּרִיערת וערדענ תעִילגערֶת עִינעש ֻבּער מעהרערע גערֶתע בֿערתעִילתענ דאתעִישיִשתעמש כּוֹננתע נִיצהת געפֿוּנדענ וערדענ געלִי-נוּתזער כּוֹננתע נִיצהת געפֿוּנדענ וערדענ »פּארת«-תעִיל בֿוֹנ »געוֹמ« כּוֹננתע נִיצהת געֵפֿפֿנעת וערדענ »געוֹמ« כּוֹננתע נִיצהת געֵפֿפֿנעת וערדענ! עלִי-מעתאדאתענ כּוֹננתענ נִיצהת געלעשענ וערדענ וּוִּיד כּוֹננתע נִיצהת ערמִיתתעלת וערדענ געלִי-וּוִּיד כּוֹננתע נִיצהת ערמִיתתעלת וערדענ זוּפֿאללשדאתענ פֻֿר שאלת כּוֹננתענ נִיצהת געהוֹלת וערדענ נעתזוערכּפּאכּעת כּוֹננתע נִיצהת געשענדעת וערדענ צפּ דאתעִי לוֹכּאל צרצ דאתעִי כּריִתוֹגראפִֿיעפֿעהלער נוּממער %d ציִגוִינ_צוֹנבֿ_פּאתה() געשצהעִיתערת גערֶתעזוּוֹרדנוּנג לֵשצהענ, פֿאללש בּערעִיתש בֿוֹרהאנדענ זִיעל ִישת נִיצהת עררעִיצהבּאר גערֶתעאנזאהל ֻבּערשתעִיגת דִיע גרענזענ הִינתִינג דעאכּתִיבִֿיערענ לאוּפֿוערכּ »%s« ווּרדע נִיצהת געפֿוּנדענ. פּלאתתע עכּסִישתִיערת נִיצהת, ערשאתזועִישע וִירד פּארתִיתִיוֹנ דעש גערֶתש %s בֿערוענדעת זוּ בֿערוענדענדעש פּלאתתענ-מוֹדוּל (בִּיוֹשדִישכּ וֹדער נאתִיבֿע). דִיעשע וֹפּתִיוֹנ ִישת נוּר פֻֿר בִּיוֹש-זִיעלע בֿערפֻֿגבּאר. דִיע גרֵססע בֿוֹנ דִישכּבּוֹוֹת.ִימג מוּשש %u בּיִתעש בּעתראגענ גערֶת נִיצהת אוּפֿ דאתעִישיִשתעמע ֻבּערפּרֻפֿענ דוֹמאִיננאמע-כּוֹמפּוֹנענתע ִישת זוּ לאנג לעד-שתאתוּש נִיצהת אכּתוּאלִישִיערענ ערלעדִיגת דאתעִי אלש אנפֿאנגשכּוֹנפִֿיגוּראתִיוֹנ עִינבּעתתענ דאתעִי אלש ֵפֿפֿענתלִיצהענ שצהלֻששעל זוּר שִיגנאתוּרֻבּערפּרֻפֿוּנג עִינבּעתתענ עִינבּעתתוּנג ִישת נִיצהת מֵגלִיצה, יעדוֹצה פֻֿר דִיע ִינשתאללאתִיוֹנ מִית ראִיד וּנד לבֿמ ערפֿוֹרדערלִיצה עִינבּעתתוּנג ִישת נִיצהת מֵגלִיצה, יעדוֹצה פֻֿר דִיע ִינשתאללאתִיוֹנ אוּפֿ מעהרערענ לאוּפֿוערכּענ ערפֿוֹרדערלִיצה ענתער: בּוֹוֹתענ, »ע«: וֹפּתִיוֹנענ, »צ«: בּעפֿעהלשזעִילע ענבִֿירוֹנמענת-בּלוֹצכּ ִישת זוּ כּלעִינ פֿעהלער: %s.
 גרוּבּ-אבּבִּילדער ווּרדענ ִימ וֹרדנער וֹרדנער/%s אנשתעללע בֿוֹנ %s ערוארתעת כּאנוֹנִישצהער פּפֿאד בֿוֹנ »%s« כּוֹננתע נִיצהת ערמִיתתעלת וערדענ לעשענ דעש שעכּתוֹרש 0כּס%llx בֿוֹנ »%s« ִישת פֿעהלגעשצהלאגענ פּאששווֹרת כּוֹננתע נִיצהת געלעשענ וערדענ שצהרעִיבּענ דעש שעכּתוֹרש 0כּס%llx נאצה »%s« ִישת פֿעהלגעשצהלאגענ פֿאלשצה פֿעהלערהאפֿתער ראמ (בּאדראמ) דאתעִי »%s« נִיצהת געפֿוּנדענ דאתעִינאמע ווּרדע ערוארתעת דאתעִינאמע וֹדער תעמפּוֹ וּנד נוֹתענ ערוארתעת דאתעִישיִשתעמ »%s« וּנתערשתֻתזת כּעִינע לאבּעלש דאתעִישיִשתעמ »%s« וּנתערשתֻתזת כּעִינע בּלוֹצכּלִישתענ פִֿירמוארע-אבּבִּילד ִישת זוּ גרוֹסס אוּתוֹמאתִישצהעש הִינתִינג ערזוִינגענ בִֿיער ארגוּמענתע וערדענ ערוארתעת פֿושתארת.ִימג ענתשפּרִיצהת נִיצהת דער בּעכּאננתערמאססענ פֿוּנכּתִיוֹנִיערענדענ בֿערשִיוֹנ. בֿערוענדענ שִיע דִיעש אוּפֿ עִיגענע געפֿאהר עִינ אבּבִּילד ִימ פֿוֹרמאת ערזעוּגענ עִינע כּוּרזע הִילפֿעמעלדוּנג אוּשגעבּענ דִיעשע הִילפֿע אנזעִיגענ דאש אנגעגעבּענע ארגוּמענת ִישת עִינ שיִשתעמגערֶת, כּעִינ פּפֿאד גרוּבּ-מכִּימאגע ווּרדע וֹהנע כּסז-וּנתערשתֻתזוּנג כּוֹמפִּילִיערת גרוּבּ> פֻֿר שעכּ שעכּוּנדענ הֶנגענבּלעִיבּענ (בֿוֹרעִינשת.: 3600) העכּס דאתעִי בִּיתמאפּ-שתרִיכּעש בּעִימ לאדענ ִיגנוֹרִיערענ וּנגֻלתִיגע אנגאבּע דער תערמִינאלגעוֹמעתרִיע גרוּבּ-אבּבִּילדער ִינ וֹרדנער/%s אנשתעללע בֿוֹנ %s ִינשתאללִיערענ תרוֹתזדעמ ִינשתאללִיערענ, אוּצה ועננ פּרוֹבּלעמע אוּפֿתרעתענ וּנגֻלתִיגעש פּבּכּדפֿ2-פּאששווֹרת וּנגֻלתִיגעש עלפֿ-מאגִיצ (ארצהִיתעכּתוּראבּהֶנגִיג) וּנגֻלתִיגעש עלפֿ-מאגִיצ (ארצהִיתעכּתוּרוּנאבּהֶנגִיג) וּנגֻלתִיגע בּלוֹצכּגרֵססע וּנגֻלתִיגע אנגאבּע דער פֿארבּע »%s« וּנגֻלתִיגער ענבִֿירוֹנמענת-בּלוֹצכּ וּנגֻלתִיגער דאתעִינאמע »%s« וּנגֻלתִיגער שצהרִיפֿתבּערעִיצה וּנגֻלתִיגעש זעִילענפֿוֹרמאת: %s וּנגֻלתִיגער פּאראמעתער %s וּנגֻלתִיגער שפּרוּנגוערת %lld וּנגֻלתִיגער בֿארִיאבּלעננאמע »%s« וּנגֻלתִיגע אנגאבּע »%s« דעש גראפִֿיכּמוֹדוּש געת_ארראיִ_ִינפֿוֹ-פֿעהלער (ִיוֹצתל): %s געת_דִישכּ_ִינפֿוֹ-פֿעהלער (ִיוֹצתל): %s ראִיד_בֿערשִיוֹנ-פֿעהלער (ִיוֹצתל): %s כּערנעל-אבּבִּילד ִישת זוּ גרוֹסס (0כּס%x > 0כּס%x) נעתזוערכּאדרעששענ אוּפֿלִישתענ נעתזוערכּכּארתענ אוּפֿלִישתענ נעתזוערכּרוֹוּתענ אוּפֿלִישתענ לש פּפֿאד לזוֹפּ-דאתעִי ִישת בּעשצהֶדִיגת דאש לאוּפֿוערכּ אוּצה אלש דִישכּעתתע בּוֹוֹתפֶֿהִיג מאצהענ (בֿוֹרגאבּע פֻֿר פֿדכּס-גערֶתע). כּאננ מִית עִינִיגענ בִּיוֹש-בֿארִיאנתענ שצהעִיתערנ. שיִמבּוֹל »%c« פֿעהלת וֹבּלִיגאתוֹרִישצהע וֹפּתִיוֹנ פֻֿר »%s« פֿעהלת מוֹדוּל »%s« ִישת נִיצהת געלאדענ מוֹדוּל ִישת נִיצהת געלאדענ נאמע אבּבִּילד וּנד עִינהֶנגעפּוּנכּת וערדענ בּענֵתִיגת כּעִינ אפּמ געפֿוּנדענ כּעִינע דהצפּ-ִינפֿוֹרמאתִיוֹנענ געפֿוּנדענ כּעִינע דהצפּ-וֹפּתִיוֹנ %d געפֿוּנדענ כּעִינע דהצפּ-וֹפּתִיוֹנענ געפֿוּנדענ כּעִינע דנש-אנגאבּע געפֿוּנדענ כּעִינ דנש-אנתווֹרת עמפּפֿאנגענ עש ווּרדענ כּעִינע דנש-שערבֿער כּוֹנפִֿיגוּרִיערת כּאנוֹנִישצהער פּפֿאדנאמע ענתהֶלת כּעִינענ »/« כּעִינ בּעפֿעהל אנגעגעבּענ כּעִינ שצהלֻששעל בֿערפֻֿגבּאר כּעִינע נעתזוערכּכּארתע געפֿוּנדענ כּעִינ שערבֿער אנגעגעבּענ כּעִינע שוֹלצהע פּארתִיתִיוֹנ כּעִינ פּאששענדער בִֿידעוֹמוֹדוּש געפֿוּנדענ כּעִינע שיִמבּוֹלתאבּעללע כּעִינ תערמִינאל אנגעגעבּענ כּעִינ תערמִינאתוֹר ִימ צוֹרע-אבּבִּילד נִיצהת אנ שעכּתוֹרענ אוּשגערִיצהתעתע דאתענ ווּרדענ ִינ דער צוֹרע-דאתעִי געפֿוּנדענ ִישת כּעִינ וֹרדנער כּעִינע פּרִימֶרע פּארתִיתִיוֹנ כּעִינע רעגוּלֶרע דאתעִי אוּססערהאלבּ דעש בּערעִיצהש דער פֿוּנכּתִיוֹנ עִינ ארגוּמענת ווּרדע ערוארתעת אנדערע שוֹפֿתוארע נוּתזת דענ עִינבּעתתוּנגשבּערעִיצה, ווֹדוּרצה נִיצהת גענוּג פּלאתז פֻֿר צוֹרע.ִימג ִישת. שוֹלצהע שוֹפֿתוארע בֿערשוּצהת הֶוּפִֿיג, דאתענ זוּ שפּעִיצהערנ, וּמ שִיע וּנאוּפֿפִֿינדבּאר זוּ מאצהענ. וִיר עמפּפֿעהלענ ִיהנענ, דִיעש זוּ וּנתערשוּצהענ האוּפּתשפּעִיצהער ערשצהֵפּפֿת עִינ ערזעוּגתעש אבּבִּילד ִינ דאתעִי אוּשגעבּענ [בֿוֹרגאבּע=שתדוֹוּת] אוּשגאבּעדאתעִי מוּשש אנגעגעבּענ וערדענ ערשתעללתע כּוֹנפִֿיגוּראתִיוֹנ ִינ דאתעִי אוּשגעבּענ [בֿוֹרגאבּע=שתדוֹוּת] ֻבּערלאוּפֿ ווּרדע ערכּאננת דִיע פּאששוֵרתער שתִיממענ נִיצהת ֻבּערעִינ עִינע בּוֹוֹתפּ-אוּתוֹכּוֹנפִֿיגוּראתִיוֹנ אוּשפֻֿהרענ פּהיִשִישצהער דאתענתרֶגער %s ווּרדע נִיצהת געפֿוּנדענ ִינ מוֹדוּלע אנגעגעבּענע מוֹדוּלע בֿוֹרלאדענ בֿוֹרזעִיתִיגעש ענדע דער דאתעִי וּנערוארתעתעש ענדע דער דאתעִי %s צאפּשלוֹצכּ-תאשתע דרֻצכּענ עִינפֿג-תאשתע דרֻצכּענ נוּמלוֹצכּ-תאשתע דרֻצכּענ שצרוֹלללוֹצכּ-תאשתע דרֻצכּענ שיִשרק-תאשתע דרֻצכּענ לִינכּע אלת-תאשתע דרֻצכּענ לִינכּע שתרג-תאשתע דרֻצכּענ לִינכּע וּמשצהאלתתאשתע דרֻצכּענ רעצהתע אלת-תאשתע דרֻצכּענ רעצהתע שתרג-תאשתע דרֻצכּענ רעצהתע וּמשצהאלתתאשתע דרֻצכּענ פּרוֹגראממבֿערשִיוֹנ אוּשגעבּענ בֿערשִיוֹנשִינפֿוֹרמאתִיוֹנענ אוּשגעבּענ וּנד בּעענדענ דִיעשע מעלדוּנג אנזעִיגענ וּנד בּעענדענ אוּשפֻֿהרלִיצהע מעלדוּנגענ אוּשגעבּענ. ֵפֿפֿענתלִיצהער שצהלֻששעל %08x ווּרדע נִיצהת געפֿוּנדענ לעשעפֿעהלער בּעִי %llu: %s תעכּסת אוּש דאתעִי לעשענ. רעלאתִיבֿער פּפֿאד זוּמ וּנתערוֹרדנער אוּפֿ דעמ נעתזוערכּשערבֿער נעוּזוּועִישוּנג 0כּס%x ִישת נוֹצה נִיצהת ִימפּלעמענתִיערת רעשערבִֿיערתער ראמ דהצפּ-וֹפּתִיוֹנ הוֹלענ וּנד ִינ בֿארִיאבּלע שפּעִיצהערנ. פֿאללש בֿארִיאבּלע »-« ִישת, דענ וערת אוּשגעבּענ. ווּרזעלוֹרדנער אוּפֿ דעמ תפֿתפּ-שערבֿער רוֹוּתענשצהלעִיפֿע ענתדעצכּת רוֹמ-אבּבִּילדער ִינ וֹרדנער שפּעִיצהערנ [וֹפּתִיוֹנאל] אוּשגאבּע ִינ דאתעִי שפּעִיצהערנ [ערפֿוֹרדערלִיצה] שצהרִיפֿתארת-ִינדעכּס שעתזענ שערִיעללער פּוֹרת »%s« ווּרדע נִיצהת געפֿוּנדענ שעת [נאמע=וערת ...] פֿעשתשתעללתאשתענ-מוֹדוּש פֿעשתלעגענ שצהרִיפֿתאוּפֿפֻֿללוּנג וֹבּענ עִינשתעללענ שצהרִיפֿתאוּפֿפֻֿללוּנג וּנתענ עִינשתעללענ שצהרִיפֿתפֿאמִילִיע פֿעשתלעגענ שצהרִיפֿתבּערעִיצה פֿעשתלעגענ שצהרִיפֿתגרֵססע פֿעשתלעגענ נאמע דער עִינגאבּעדאתעִי פֻֿר 32-בִּית פֿעשתלעגענ. נאמע דער עִינגאבּעדאתעִי פֻֿר 64-בִּית פֿעשתלעגענ. נאמע דער עִינגאבּעדאתעִי פֿעשתלעגענ. בֿוֹרגאבּע ִישת שתדִינ עִינפֻֿגענ-מוֹדוּש פֿעשתלעגענ נוּמלוֹצכּ-מוֹדוּש פֿעשתלעגענ נאמע דער אוּשגאבּעדאתעִי פֿעשתלעגענ. בֿוֹרגאבּע ִישת שתדוֹוּת פּאוּשע-מוֹדוּש פֿעשתלעגענ פּרֶפִֿיכּס-וֹרדנער פֿעשתלעגענ [בֿוֹרגאבּע=%s] שצרוֹלללוֹצכּ-מוֹדוּש פֿעשתלעגענ פּרוֹגראממנאמע פֿעשתלעגענ גרֵססע שתרעתצה(=זוֹוֹמ)|נוֹרמאל(=נוֹרמאל) שיִמבּוֹל »%s« נִיצהת געפֿוּנדענ תעמפּוֹרֶר תערמִינאל %s ווּרדע נִיצהת געפֿוּנדענ וֹדער וִירד בֿוֹנ תערמִינפֿוֹ נִיצהת בּערֻצכּשִיצהתִיגת תערמִינאל »%s« ווּרדע נִיצהת געפֿוּנדענ דאש ארגוּמענת »%s« בּענֵתִיגת עִינע גאנזזאהל דער דעבִֿיצע.מאפּ-עִינתראג »%s« ִישת וּנגֻלתִיג, וִירד ִיגנוֹרִיערת. בִּיתתע כּוֹררִיגִיערענ וֹדער לֵשצהענ שִיע ִיהרע דעבִֿיצע.מאפּ דער לאוּפֿוערכּשנאמע »%s« ִינ דעבִֿיצע.מאפּ ִישת ִינכּוֹררעכּת. %s וִירד שתאתתדעששענ בֿערוענדעת. בִּיתתע בֿערוענדענ שִיע דִיע פֿוֹרמ [הפֿצ]ד[0-9]* (ז.בּ. »הד0« וֹדער »צד«) דער ערשתע שעכּתוֹר דער צוֹרע-דאתעִי ִישת נִיצהת שעכּתוֹר-אוּשגערִיצהתעת דאש ִינשתאללאתִיוֹנשגערֶת ִישת עִינ ועצהשעלדאתענתרֶגער. דִיעשע וֹפּתִיוֹנ ִישת נוּר בּעִי עפִֿי בֿערפֻֿגבּאר. דער פּארתִיתִיוֹנשתיִפּ 0כּס%x ִישת וּנגֻלתִיג דִיע שעכּתוֹרענ דער צוֹרע-דאתעִי שִינד זוּ שתארכּ פֿראגמענתִיערת דִיע גרֵססע בֿוֹנ »%s« ִישת נִיצהת %u »%s« ִישת זוּ גרוֹסס »%s« ִישת זוּ כּלעִינ דִיעשע עלפֿ-דאתעִי ִישת בֿוֹמ פֿאלשצהענ תיִפּ דִיעשע גפּת-פּארתִיתִיוֹנשבּעזעִיצהנוּנג האת כּעִינע בִּיוֹש-בּוֹוֹת-פּארתִיתִיוֹנ, עִינבּעתתוּנג וֻרדע וּנמֵגלִיצה שעִינ דִיעשעש לדמ האת כּעִינע עִינבּעתתוּנגשפּארתִיתִיוֹנ, עִינבּעתתוּנג וֻרדע וּנמֵגלִיצה שעִינ דִיע משדוֹש-פּארתִיתִיוֹנשבּעזעִיצהנוּנג האת כּעִינענ פֿרעִיראוּמ נאצה דעמ מבּר, עִינבּעתתוּנג וֻרדע וּנמֵגלִיצה שעִינ דרעִי ארגוּמענתע ערוארתעת זעִיתֻבּערשצהרעִיתוּנג בּעִימ ֵפֿפֿנענ בֿוֹנ »%s« זעִיתֻבּערשצהרעִיתוּנג בּעִימ לעשענ בֿוֹנ »%s« זעִיתֻבּערשצהרעִיתוּנג: הארדוארע-אדרעששע כּוֹננתע נִיצהת אוּפֿגעלֵשת וערדענ זוּ תִיעפֿ בֿערשצהאצהתעלתע שיִמבּוֹלִישצהע בֿערכּנֻפּפֿוּנגענ ֻבּערשעתזער »%s« פֻֿר פּפֿאד »%s« האת בֿערשצהִיעדענע וֵרתער, דִיע כּעִינע וֹפּתִיוֹנענ שִינד, מִינדעשתענש »%s« וּנד »%s« ֻבּערשעתזער »%s« פֻֿר פּפֿאד »%s« ווּרדע נוּר וֹפּתִיוֹנענ ֻבּערגעבּענ, דעבִֿיצע-תעִיל כּוֹננתע נִיצהת געפֿוּנדענ וערדענ ֻבּערשעתזער-בּעפֿעהלשזעִילענפּפֿאד פֻֿר פּפֿאד »%s« ִישת לעער זועִי ארגוּמענתע ווּרדענ ערוארתעת תיִפּ עש כּאננ כּעִינ דאתעִישיִשתעמ ִינ %s ערכּאננת וערדענ. שִיצהערהעִיתשֻבּערפּרֻפֿוּנג כּאננ נִיצהת אוּשגעפֻֿהרת וערדענ גערֶתעגרֵססע ִישת וּנאוּשגערִיצהתעת וּנערוארתעתעש דאתעִיענדע וּנבּעכּאננתעש ארגוּמענת »%s« וּנבּעכּאננתע כּוֹמפּרעששִיוֹנ %d
 וּנבּעכּאננתער גערֶתעתיִפּ %s
 וּנבּעכּאננתעש דאתעִישיִשתעמ וּנגֻלתִיגער תיִפּ עִינעש ראִיד-גערֶתש »%s« וּנבּעכּאננתער רעגעכּספּ-פֿעהלער וּנבּעכּאננתעש זִיעלפֿוֹרמאת %s
 וּנבּעכּאננתער תערמִינפֿוֹ-תיִפּ »%s« נִיצהת ערכּאננתע פֿוֹרמאתשפּעזִיפִֿיכּאתִיוֹנ פֻֿר דהצפּ-וֹפּתִיוֹנ »%s« נִיצהת ערכּאננתע נעתזוערכּאדרעששע »%s« נעתזוערכּ-שצהנִיתתשתעללע »%s« ווּרדע נִיצהת ערכּאננת זאהל נִיצהת ערכּאננת נִיצהת אוּפֿלֵשבּארע אדרעששע %s וּנשעת [נאמע ...] נִיצהת וּנתערשתֻתזתער התתפּ-פֿעהלער %d: %s נִיצהת וּנתערשתֻתזתע התתפּ-אנתווֹרת נִיצהת וּנתערשתֻתזתע ראִיד-בֿערשִיוֹנ: %d.%d נִיצהת וּנתערשתֻתזתעש גזִיפּ-פֿוֹרמאת פּארִיתֶת דעש שערִיעללענ פּוֹרתש וִירד נִיצהת וּנתערשתֻתזת געשצהוִינדִיגכּעִית דעש שערִיעללענ פּוֹרתש וִירד נִיצהת וּנתערשתֻתזת אנזאהל דער שתוֹפּ-בִּיתש דעש שערִיעללענ פּוֹרתש וִירד נִיצהת וּנתערשתֻתזת ווֹרתלֶנגע דעש שערִיעללענ פּוֹרתש וִירד נִיצהת וּנתערשתֻתזת פֿארבּע פֻֿר הִינתערגרוּנד בֿערוענדענ פֿארבּע פֻֿר תעכּסת בֿערוענדענ וֹרדנער אלש ווּרזעל דער עפִֿי-שיִשתעמפּארתִיתִיוֹנ בֿערוענדענ. דאתעִי אלש שצהרִיפֿת בֿערוענדענ (פּפֿ2). דאתעִי אלש בּוֹוֹת-אבּבִּילד בֿערוענדענ [בֿוֹרגאבּע=%s] דאתעִי אלש כּערנ-אבּבִּילד בֿערוענדענ [בֿוֹרגאבּע=%s] דאתעִי אלש גערֶתעזוּוֹרדנוּנג בֿערוענדענ [בֿוֹרגאבּע=%s] דאתעִי אלש כּסוֹררִישוֹ בּענוּתזענ [וֹפּתִיוֹנאל] גרוּבּ-דאתעִיענ ִימ וֹרדנער וֹרדנ בֿערוענדענ [בֿוֹרגאבּע=%s] זעִיצהענכּעתתע אלש פּרוֹדוּכּתנאמע בֿערוענדענ זעִיצהענכּעתתע אלש פּרוֹדוּכּתבֿערשִיוֹנ בֿערוענדענ ִיד-דאתעִי אוּצה דאננ בֿערוענדענ, ועננ עִינע וּוִּיד בֿערפֻֿגבּאר ִישת אבּבִּילדער וּנד מוֹדוּלע ִינ וֹרדנער בֿערוענדענ [בֿוֹרגאבּע=%s/@פּלאתפֿוֹרמ@] בֿארִיאבּלע »%s« ִישת נִיצהת געשעתזת בִֿישוּעללעש וּתפֿ-8 וארתענ, בִּיש עִינ דעבּוּגגער עִינכּלִינכּת מִית בּלוֹצכּלִישתענ וִירד נִיצהת פֿוֹרתגעשעתזת פֿאלשצהעש עלִי-מאגִיצ וֹדער -בֿערשִיוֹנ כּסנוּ_וּוִּיד גערֶת כּסז-דאתעִי ִישת בּעשצהֶדִיגת וֹדער בּלוֹצכּוֹפּתִיוֹנענ וערדענ נִיצהת וּנתערשתֻתזת שִיע כֵּננענ דִיעשע אדרעששע נִיצהת לֵשצהענ שִיע מֻששענ זוּערשת דענ כּערנעל לאדענ ִיהרע בִּיוֹש-בּוֹוֹת-פּארתִיתִיוֹנ ִישת זוּ כּלעִינ, עִינבּעתתוּנג וֻרדע וּנמֵגלִיצה שעִינ ִיהרע דאתעִי צוֹרע.ִימג ִישת וּנגעוֵהנלִיצה גרוֹסס. שִיע וֻרדע נִיצהת ִינ דענ עִינבּעתתוּנגשבּערעִיצה פּאששענ. ִיהר עִינבּעתתוּנגשבּערעִיצה ִישת וּנגעוֵהנלִיצה כּלעִינ. צוֹרע.ִימג וֻרדע נִיצהת הִינעִינפּאששענ.                                                                                                                                                                                                                                                                                                                                    boot/grub/locale/de_CH.mo                                                                           0000600 0001750 0001750 00000315744 13417732100 0014202 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                       i     d#    F      H^  #   I^      m^     ^     ^     ^  $   ^     ^  6   _     H_     O_  	   [_     e_     r_     _     _     _     _  .   _  .   `  %   >`     d`     h`    w`    |a    b     c  7   c  F   c  v   "d  +   d     d      d     d  !   	e     +e  ,   He     ue     e  $   e     e  *   e     f     !f     )f     9f     Qf  
   qf  	   |f     f  ,   f  ,   f  ,   f  '   )g  -   Qg      g  (   g  (   g  )   g     h     <h     \h     ih     rh  "   {h  4   h     h     h  7   h      i  1   )i     [i     zi  %   }i  '   i  %   i  '   i     j     j      j     >j     Sj     hj     mj     j     j     j     j     j     j     j  3   j     )k  $   /k     Tk     lk     k     k     k     k     k  -   k     l  !   4l     Vl     kl     l  #   l     l  `   Hm  Z   m     n     n     ;n     =n     An     Xn     ^n     gn     ~n     n     n     n     n     n     o     (o     ?o     Uo     co     zo     o     o     o  %   o     o     o     o     p     .p     Dp     Sp     fp     wp  *   p  3   p     p  "   	q  8   ,q     eq     wq  	   q  #   q     q     q     q     r     3r     Jr  )   Yr     r     r     r  P   r     /s     Ds  H   Ys  &   s     s     s  !   s  ,   
t     7t     Ct     Gt  	   dt  !   nt  *   t     t     t     t     t     u  $   ,u     Qu     cu     uu     u     u     u  
   u  
   u     u  1   v     @v     Nv     [v     tv  3   v  >   v  $   w     (w     ?w     \w     tw     w     w  +   w     w     x  #   )x     Mx     dx  $   x     x     x  '   x  9   y     @y     Yy  z   wy     y     y  8   z     Fz  
   ]z     hz     uz     z     z     K{  +   h{     {     {     {  "   {     {     |  (   |     @|     X|     d|     t|     |     |  "   |  0   |     }     }     }  7   $}     \}     d}     p}     }     }     }  0   }     }     }     ~     ~  2   .~  %   a~     ~     ~  *   ~  6   ~  +        9     W     j  !   ;  d   ]  e     d   (  i     o     H   g          Â     ق                    -     D  #   ]                 1   Ƀ  )        %     ,     .     C  /   R                 5   ń            K   6                    Ѕ     ԅ     څ     ߅  '     P        ]     |  	                    '   Ȇ  +             -  )   I     s               Ç     ؇            $        @     R  "   m                 (        Ԉ     ؈  "   ވ  +     -   -     [     t                 O                  5     C  %   W     }  )     !   Ɗ  "             '  +   >     j            !        ŋ                          >     Y     l                 4   ʌ               0     H     c     ~                ͍  !          4   *  M   _  2               *     8   C     |                    Ϗ  3     $     +   @     l                         ̐           	     '     <     >  D   V            7     ;             >  !   ]            s        )     A     ^     o                    ɓ     ړ     ޓ               F     Y     m     t                 '   ϕ  
                  '     ,     D     H     Z  H   w          Ӗ            %        4     N  #   g               ŗ     Η                 %     F  "   S  (   v       %          2        .     7  #   P  *   t                 #        ݙ       "     ;     #   S  <   w                 .     	        '  `   9       !     )   ћ                      q                       Ɯ     ݜ                    :  "   Y     |               Ɲ     ݝ                  #   5     Y     v  g                    -          !          "   +  '   N  Q   v     Ƞ                          6     S     p               ơ                          0     Q     l            -        ߢ  "     b     )   y               ѣ  ,             2  	   7  "   A  %   d                      &     )   ۤ       ^        w  $     %        ܥ  ^     _     }   N     ̧  )     '     >   ը  D     !   Y  '   {  -     #   ѩ       )        ?  )   \  )     ,        ݪ               1     L  E   ]  $     A   ȫ  )   
     4     Q     m                Ȭ  q   ݬ     O  :   l          ŭ     ԭ               (     >  0   S                 )   ͮ  &             ;     V     i  )          %     %     ,     '   8  :   `       -          .        '     9  '   N  $   v  "             ʱ       *              (  )   /     Y     r  6   ,     c     e  0   l        !     "     #        '     9     W     m  !          
   Ĵ     ϴ  <     %   &     L     U     Y     _            d     *     0   ;  6   l                    ζ            0        3  !   F     h       $             շ          
       $   8  "   ]  $                   θ                    (     :     G     b     z  '             ߹  $     +     "   I     l  )   s               ͺ            '        >     ]     z  <         ˻                 m   "               ż     ߼       +     3   >  1   r       '     -   ڽ       '     '   9  .   a  	                  Ͼ               #     ?     Z     u            *     ?   ڿ  B     /   ]            .     O     )   7     a     w  	          5                       $     ?  :   Y                                                  *     ;     A  	   N     X     g                                
     
     	          !     )   )     S     g     y       F     N        L  "   Z     }       -     -     $     #     0   9  6   j                 (     1     )   +     U     d  !   {                  %          &   $     K     e        7     .     4        @     ]     r            %                       )     B     a     p     y  ,                                 $  #   9     ]     w  B                       #     >     U  &   q                           &        +     C     ^     n  ;     V     "     &   8  !   _                 /     H     F   4  (   {            I     $     '   ;     c  %   |                      $     '     *   /     Z     t       J                    -   1  +   _       $          "     +     J     %   Y             "                        )     @     S     k            %                    %   3     Y     p                 [          !   #     E     ^     r     w                                        &     C     [     w                                1        K     [     s                    s  1          0               !   -     O  "   l                                   	          $     4     E     U     f     x  &                            !  '   6  &   ^       L               !        3     R     d                                     #     #     $   C     h     x  &          !                  
            	   4  7   >     v  %     [     w     7     K     #     /   2     b     }       &     U     @   6  Q   w                 +        9  R   V  L     .        %     <  F   A                                         /     D     ^  2   y  !     #                       /     M     g                 (     #        )     B  )   U       '     '     '          0   .     _     z  -     8               !   .      P     q       .          !     B     E   N  B         %     &                  6  1   M        :               	          !        -     B     ]     x  4     7     .        $     (  `  9  ]    r       k  =     O          4          )          *        D  5   `            -          5        B     S     [     k  *          	           *     1     *   B  (   m  +     )     ,     ,     ,   F     s                      (     7        3     <  6   Q       5               -     3     -   K  3   y            ?     &     #        @     E     W     i                           1          *        @     Y     r       !               0        /  -   O  (   }  %           =        +          x               7     9      =     ^     d     m                       #    $   &    K    `    y                         -    '   $    L (   ` !                    "    7   1 N   i '    G    9   (    b *   y     *    %            '   8 %   `     -    %    &    *    j   A "    "    Z    *   M    x          /                	    )    ,   H    u                 (   	    /	    C	    V	 !   r	    	 &   	 
   	    	     	 4   
    J
    ]
     o
 $   
 ;   
 Q   
 4   C    x #            $        .   ( !   W 1   y +        $    /       F    _ 3   ~ B    &    %       B         P   
 '   [     
        %            3               * #   C    g    z 0                           4 2   K A   ~             8       %    .    <    M    d    q C   x                  L    8   f !        2    B    9   I &            %           I     r   L     c   U                        6    S    n !                ;    >   8    w             6                :     %   [ '    S    %    1   # .   U                 ,    ^    #   ' 
   K 	   V    ` $   h     :    2        %   # /   I    y                            .   7     f       +                    6        !    ! 3   %! 9   Y! 1   !    !    !    !    
"    !" f   9"    "    "    "    " 9   # #   G# 6   k# $   # $   #    # "   
$ 0   -$    ^$    w$    $     $    $    $    $    %    "%    B%    \%    p%    %    %    % <   % &   &    8&    N&    k&    &    &    & &   & #   ' &   *'    Q' E   q' i   ' C   !( &   e(    ( ,   ( A   (    )    ))    E)    _)    x) ;   )    ) ,   )    *    /*    B*    \*    v* !   * "   *    *    *    	+ !   + J   -+    x+    ~+ @   + S   + (   , &   C, 0   j,    , $   ,    ,    f- !   ~-    -    -    -    -     .    .    4.    8.    >.    '/    0    ,0    @0    G0 !   U0    w0 '   0 E   0     1    1 #   (1    L1    Q1    m1    r1 %   1 _   1    2 (    2    I2    ^2 .   r2    2    2 8   2 (   
3 "   33    V3    m3 '   3 '   3 '   3    3 %   4 2   .4    a4 )   4 '   4 7   4 	   	5 "   5 +   65 <   b5    5    5    5 )   5    5    5 )   5 =   #6 ,   a6 @   6    6    6    6 4   7 	   B7    L7    c7    7 &   7 :   %8    `8    d8    j8    r8    8    9    39    O9    ^9    z9    9    9     9    9 %   9    !:     ?:    `:    z:    :    :    :    : )   : -   ; 4   L;    ;    	<     <    < /   =    4= &   N=    u= 4   = 2   = l   =    ^>    }>    >    >    >    >    >    ?    -?    I?    d? "   ?    ?    ?    ? "   ?     @    6@    Q@     f@ 6   @    @ (   @ y   A 1   ~A    A !   A "   A ?   B +   LB    xB    |B #   B )   B    B    B    B    B -   C &   3C    ZC    sC    D *   !D 0   LD    }D    }E    F    F    bG 3   `H 5   H H   H L   I (   `I .   I 4   I '   I +   J 4   AJ !   vJ 1   J 1   J 5   J    2K &   RK (   yK    K    K Q   K &   )L R   PL 5   L &   L '    M .   (M (   WM )   M &   M    M %   hN D   N &   N    N $   O    1O    NO    kO    O 8   O *   O    P    !P .   @P 3   oP    P $   P    P "   P /    Q    PQ /   oQ /   Q 6   Q 1   R D   8R '   }R /   R    R H   R    1S    DS 4   bS &   S &   S    S )   S    %T 6   6T    mT    tT 5   |T    T    T F   U    U    U ?   U #   4V !   XV    zV    V     V     V     V *   W .   DW !   sW    W    W ?   W 7   W 
   3X    >X    BX 3   HX    |X    X    X 4   5Y ?   jY W   Y    Z    Z    Z    6Z    RZ .   XZ C   Z %   Z 3   Z )   %[    O[ 1   `[    [    [ !   [    [ *   [ *   *\ *   U\ ,   \    \    \ .   \    ]    #] !   C]    e]    ]    ]    ] "   ] /   ] +   &^    R^ +   p^ )   ^ '   ^    ^ +   ^    "_ )   5_ "   __    _     _ 3   _ 4   _ &   "`    I` @   e` (   `    `    ` "   ` m   a &   a !   a    a    a     b =   'b G   eb E   b    b )   c 5   +c    ac ,   jc ,   c .   c    c    c    d     /d     Pd     qd     d    d    d    d    e    -e -   2e I   `e T   e /   e    /f    Ff .   _f Y   f -   f    g    .g 
   Cg    Ng 8   mg    g    g    g    g    h :   h    Yh    ph    h    h    h    h    h    h    h    h    h    i 
   i    i    4i    Qi    ki    i 
   i    i    i    i 	   i 	   i    i     i ,   j    3j    Gj -   [j *   j ]   j F   k    Yk +   lk    k    k ?   k <   k +   4l '   `l :   l A   l    m    m    +m (   <m 0   em ;   m    m    m (   m -   &n 3   Tn *   n H   n &   n 3   #o *   Wo .   o +   o S   o C   1p P   up /   p &   p (   q    Fq *   bq 2   q '   q .   q (   r ,   @r 3   mr    r 	   r $   r 8   r    s    .s    ?s    Ys ,   os    s &   s     s /   s [   /t (   t 8   t '   t *   u "   @u '   cu 2   u *   u    u 	   u    v    v 2   =v    pv %   v    v %   v K   v f   7w 3   w *   w !   w    x    >x (   Gx F   px Y   x `   y 3   ry    y    y A   y 9   z 6   Nz $   z ;   z    z    z    {    #{ '   <{ ,   d{ 1   {    {    {     | o   |    |     |    | 7   | 4   }    P} 2   V} 	   } $   } '   } 7   } 3   ~    L~ ,   h~ .   ~    ~ "   ~    ~        :    U    r          (    !            4 (   T    }            ʀ    Ҁ w       e '   y            ؁ *   ݁     !       <    Z    w     '    *   Ԃ            0    M    c "   z            Ƀ G       0    @    Y $   o             7    "   څ :       8 &   P '   w /    $   φ            .    F    \    s                Շ            '    E *   ^ "    !    2   Έ         5   / .   e     Y              +   8 )   d     *       ъ     "    #   (    L    e    ~ ,    ,   ċ 2       $    > 3   V     %       ƌ                  	   < M   F $    +    p       V =    ]   . $    6    #             $   4 `   Y L    c       k +    )    D   ّ 1    s   P k   Ē 7   0    h     e    !           *    F    a    | )           ؔ     :    %   N 1   t            ֕ '         '   0     X 4   y ;    @    6   +     b     4    "   җ ,    ,   " 1   O %    2    &   ژ )    ;   + ?   g !       ə "   ٙ &        #    D E   T (    #   Ú H    _   0 S         $     @        ?            F        :    J  ^  4                        H      $                     <        
    1                                k  ,     R     	               O           r   H        {   '  +           ;  <   i       %      _                      q              &      -                           =      "     *      F           L       _       ]  I               A   
  ~   (      [  _      &    C        D        X      }         Q        2                                x        $                              3    ?   G  O           ^                       s         9        M           e      "    w            1    z  	      w                   v        5    S                                  3         r            {      +  	                         P  `             d  c       ;   t          G  5           \  ^         d           #       b                 Z        @            Y  7  I                    .           >          :  X      g             :           K   (           $                D        F    a          )          '    ]            ;         H              W      k     '          o  z     %                  o            j       <    2                              L  t  .          Y  4                               `      n      f                     I  !      '  8      Z  F     %       `          )              D      t                            H                 \                           &      S    #      y    5        :          l   V  p             m  m         Z       `        C  I            T             h                  C  7   [       y   	  \                  h      ]      2     l    /    y                ~            T  O        Q   A        )   W        =  /    ]   K  |  4  }      C        g  ^    7      9                        Q         "     D      ,  *   W     [         u  0      2     f  x      H              4                    8  *      [              O            f                   E  -  =   E                   R      w  a           p   j  +    T      v      O      9      o       Y    A        v      U    X                           @                                             7          J      L       S    A               ~  P                 S        .      h       C  +  X      r          )      :      !          r      P      U       V                       V   T  I              E      P            c      3              i  w       f                2  -      
   M      i             [    c         _    d     U      6           D   8          V        e   ?  ,                  |          %  &  y        ;         B   u     g                      e           k         u         G    &           ,        }       p  e  M  -  J        |        0          )    A     <                    B                     \      #          v  9      ?       G     f                    @  8               =  /  K                      x  .           \     j      5      N  c        i  b  $  m                 0  N                   *           6              
                                            !   -      N  }           ,      a  n       s               g        g                          +                      M  b  >    3    *                                              >      J      h                !      #       _      R     z      b  l            %  L          Y        
                u   s                   "  Q             #      a  ]            d                     R      q  0      ?                      i    `  W       N        8             (                       J               	                h  K                6  n      k  ;        e  ^             >        p            q                          @                                                M     .      6  >   1       (  /     '  N                  t                0  z    ~    U           U  G       |                {  o         R      4           q          x                   !     B     j  3                     =  Y                    7  Q          1      "    b        F              B            c      Z                        9      E                                                          P        m  s  d                         K                                        B                    E   {                  Z    a  /                        X      6         L             S          5   (             T   1       W          n                            <                              V  l                 total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: option '%c%s' doesn't allow an argument
 %s: option '%s' is ambiguous; possibilities: %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File size: %s
 File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS Import ZFS wrapping key stored in FILE. Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... M MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MODULE MODULES Mail xorriso support requests to <bug-xorriso@gnu.org>. Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Option -- switches to native xorriso command mode. Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show the contents of a file. Show the current mappings. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 T TARGET Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This entry can be booted by any user. Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. Your embedding area is unusually small.  core.img won't fit in it. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `cryptomount' command fails: %s `loopback' command fails: %s `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format blocklist FILE blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s cannot compress the kernel image cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot get translator command line for path `%s': %s cannot open OS file `%s': %s cannot open `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. diskboot.img size must be %u bytes do not probe for filesystems in DEVICE domain name component is too long don't update LED state done embed FILE as an early config embed FILE as public key for signature checking embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to get canonical path of `%s' failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification install GRUB images under the directory DIR/%s instead of the %s directory install even if problems are detected invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid block size invalid color specification `%s' invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no `/' in canonical filename no command is specified no decryption key available no network card found no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found pre-load specified modules MODULES premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory of TFTP server route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the argument `%s' requires an integer the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for text use DIR as the EFI System Partition root. use FILE as font (PF2). use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub-2.00+20130519
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-06-03 19:11+0100
Last-Translator: Mario Blättermann <mario.blaettermann@gmail.com>
Language-Team: German <translation-team-de@lists.sourceforge.net>
Language: de_CH
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=(n != 1);
X-Generator: Poedit 1.5.4
               Gesamtspeicher: %d KiB
     Kein bevorzugter Modus verfügbar
     Bevorzugter Modus: %ux%u
   EDID-Prüfsumme ist ungültig   EDID-Version: %u.%u
   Grafikadapter konnte nicht initialisiert werden   Keine Informationen verfügbar   VBE-Info:   Version: %d.%d  OEM-Softwarerevision: %d.%d
   oder:   (ganz links)  (mittig)  (ganz rechts)  - Partitionsbeginn bei %llu%sKiB  - Sektorgrösse %uB  - Gesamtgrösse %llu%sKiB  - Gesamtgrösse unbekannt  [OPTIONEN …] %.*s: Parameter für ARGP_HELP_FMT muss positiv sein %.*s: Parameter für ARGP_HELP_FMT benötigt einen Wert %.*s: Unbekannter Parameter für ARGP_HELP_FMT %ds %ds verbleibend. %s enthält ein %s-Dateisystem, welches bekanntermassen keinen Platz für einen DOS-Betriebssystemstart bereithält. Die Installation von GRUB könnte die ZERSTÖRUNG DES DATEISYSTEMS nach sich ziehen, sofern Daten durch grub-setup überschrieben werden. Die Option --skip-fs-probe deaktiviert diese Überprüfung, verwenden Sie dies auf eigene Gefahr. %s scheint eine %s-Partitionstabelle und LDM zu enthalten, welches bekanntermassen keine sichere Kombination ist. Die Installation von GRUB könnte die ZERSTÖRUNG DES DATEISYSTEMS nach sich ziehen, sofern Daten durch grub-setup überschrieben werden. Die Option --skip-fs-probe deaktiviert diese Überprüfung, verwenden Sie dies auf eigene Gefahr. %s scheint eine %s-Partitionstabelle zu enthalten, welche bekanntermassen keinen Platz für einen DOS-Betriebssystemstart bereithält. Die Installation von GRUB könnte die ZERSTÖRUNG DES DATEISYSTEMS nach sich ziehen, sofern Daten durch grub-setup überschrieben werden. Die Option --skip-fs-probe deaktiviert diese Überprüfung, verwenden Sie dies auf eigene Gefahr. %s unterstützt keine UUIDs %s erstellt eine Tastaturbelegung für GRUB mittels ckbcomp\n %s ist veraltet. Verwenden Sie stattdessen gfxpayload=%s vor dem Linux-Befehl.
 %s ist veraltet. VGA-Modus %d wurde nicht erkannt. Verwenden Sie stattdessen gfxpayload=BREITExHÖHE[xTIEFE] vor dem Linux-Befehl.
 %s wird von grub-mkconfig noch nicht unterstützt.\n %s, mit Hurd %s %s, mit Hurd %s (Wiederherstellungsmodus) %s, mit Linux %s %s, mit Linux %s (Wiederherstellungsmodus) %s, mit Xen %s und Linux %s %s, mit Xen %s und Linux %s (Wiederherstellungsmodus) %s, mit Xen-Hypervisor %s, mit kFreeBSD %s %s, mit kFreeBSD %s (Wiederherstellungsmodus) %s, mit Kernel %s (über %s) %s, mit Kernel %s (über %s, Wiederherstellungsmodus) %s: HASH-FEHLER
 %s: OK
 %s: LESEFEHLER
 %s: Zu viele Argumente
 %s: Sie müssen dies als Root ausführen\n %s: Fehler: %s: Info: %s: Ungültige Option -- «%c»
 %s: Option «%c%s» erlaubt kein Argument
 %s: Option «%s» ist mehrdeutig; Möglichkeiten: %s: Option «--%s» erlaubt kein Argument
 %s: Option «%s» erwartet ein Argument
 %s: Option «-W %s» erlaubt kein Argument
 %s: Option «-W %s» ist nicht eindeutig
 %s: Option «-W %s» erfordert ein Argument
 %s: Option erfordert ein Argument -- «%c»
 %s: Option erwartet ein Argument -- «%s»\n %s: Unbekannte Option «%c%s»
 %s: Unbekannte Option «--%s»
 %s: Warnung: (32-bit) (64-bit) (PROGRAMMFEHLER) Keine Version bekannt!? (PROGRAMMFEHLER) Option hätte erkannt werden müssen!? (auf %s) - Bezeichnung «%s» - Letzte Änderungszeit %d-%02d-%02d %02d:%02d:%02d %s --MEHR-- -h HASH [-c DATEI [-p PRÄFIX]] [DATEI1 [DATEI2 ...]] -l | -r | [-s] grubdev osdisk. .5 Geschütze 16-bit-Schnittstelle unterstützt
 Geschütze 16-bit-Schnittstelle nicht unterstützt
 Geschütze 32-bit-Schnittstelle unterstützt
 Geschütze 32-bit-Schnittstelle nicht unterstützt
 =WERT > Durch ACPI beanspruchter Speicherbereich (für Energiesparmodi) Durch ACPI wiederverwendbarer Speicher ACPI-Herunterfahren ist gescheitert ADDR ADDR WERT [MASKE] ADRESSE [GRÖssE] ADR1,MASKE1[,ADR2,MASKE2[,...]] ADDRESSE DNS_SERVER APM deaktiviert
 APM deaktiviert
 APM aktiviert
 APM aktiviert
 ARGP_HELP_FMT: Wert %s ist kleiner oder gleich %s ASCII CR/NL-Zeilenenden im DOS-Stil akzeptieren. Aktive Eingabeterminals: Aktive Ausgabeterminals: Adapter «%s»:
 Einen DNS-Server hinzufügen Eine Netzwerkadresse hinzufügen. Eine Netzwerkroute hinzufügen. Erweiterte Optionen für %s Erweiterte Optionen für %s (mit Xen-Hypervisor) Unterbrechung mit ESC erlauben. Nach dem Dateinamen für den Neustart fragen. Eingabe wird als hexadezimal angenommen. Eingabe wird als Kennwort angenommen. Eingabe wird als Raw angenommen. Es wird versucht, den Master-Schlüssel zu entschlüsseln … Es wird versucht, GRUB auf einer Platte mit mehreren Partitionsbezeichnungen oder sowohl Partitionsbezeichnungen als auch Dateisystemen zu installieren. Dies wird derzeit noch nicht unterstützt. Es wird versucht, GRUB auf einer Platte mit mehreren Partitionsbezeichnungen zu installieren. Dies wird derzeit noch nicht unterstützt. Es wird versucht, GRUB auf einer nicht partitionierten Platte oder in eine Partition zu installieren. Das ist eine SCHLECHTE Idee. Verfügbare Eingabeterminals: Verfügbare Ausgabeterminals: B B/s BIOS_SICHERUNG [INT10_SICHERUNG] BLOCK BYTE:BIT Modus des Hintergrundbildes. Basisordner für Hash-Liste. BIOS-basiertes System booten. Ein Betriebssystem starten. In den Single-User-Modus booten. Mit Fehlerdiagnosemeldungen booten. Mit ausführlichen Meldungen booten. «%s» wird gebootet Eine Befehlsliste booten Im Blindmodus booten Boot-Pfad: %s
 Boot-Pfad: nicht verfügbar
 Haltepunkt für GDB auslösen CGA  FARBE BEFEHL [ARGUMENTE] CPU-Leerlauf verlangsamt den Prozessor nicht
 CPU-Leerlauf verlangsamt den Prozessor
 CS5536 in %d:%d.%d
 ROM-Bereich kann nicht aktiviert werden. Konfigurierte Geräte bearbeiten. Partitionstyp ändern Alt-Taste überprüfen. Ctrl-Taste überprüfen. Umschalttaste überprüfen. Fähigkeiten der CPU überprüfen. Prüfsummen der Dateien mit Liste in DATEI vergleichen. Überprüfen, ob der Prozessor den 64-Bit-(Lang-)Modus unterstützt (Vorgabe). Status der Umschalttasten überprüfen. Überprüfen Sie, ob der Benutzer in der BENUTZERLISTE aufgeführt ist. Überprüft die GRUB-Skriptkonfiguration auf Syntaxfehler Den Bildschirm leeren. «active»-Flag auf %d wurde gelöscht.  
 Befehle: DATEI mit lokaler Datei LOKAL vergleichen. Datei «%s» mit «%s» vergleichen:
 Zwei Dateien vergleichen. XNU-UUID des Geräts berechnen. Hash-Prüfsumme berechnen oder prüfen. Serielle Schnittstelle konfigurieren. Schleifen fortsetzen Übliche Schriftdateiformate in PF2 umwandeln DATEI in lokale Datei LOKAL kopieren. DATEI in die Standardausgabe kopieren. FPSWA-Treiber konnte nicht gefunden werden Physischer Datenträger «%s» konnte nicht gefunden werden. Einige Module könnten im Core-Abbild fehlen. sha256 konnte nicht geladen werden sha512 konnte nicht geladen werden BIOS-Strukturen für Abwärtskompatibilität mit dem vorhandenen Betriebssystem erstellen. Eine leere Umgebungs-Blockdatei erstellen. Aktuelle Terminfo-Typen: GERÄT GERÄT [PARTITION[+/-[TYP]]] ... GERÄT muss ein OS-Gerät sein (z.B. /dev/sda). GERÄTENAME ORDN ORDNER [OSBundleRequired] DNSSERVER Diagnosewerkzeug für Dateisystemtreiber. Speicherbereiche als «badram» deklarieren. Dekompressor ist zu gross Einen Menüeintrag definieren. Ein Untermenü definieren. Eine Netzwerkadresse löschen. Eine Netzwerkroute entfernen. Das angegebene Loopback-Gerät löschen. Variablen löschen. Treiber ermitteln. Dateisystem-UUID ermitteln. Dateisystembezeichnung ermitteln. Dateisystemtyp ermitteln. Typ der Partitionszuordnung bestimmen. Gerät %s: Gerätekennung: %s
 Gerätekennung: nicht verfügbar Direkte Farbe, Maske: %d/%d/%d/%d  Pos.: %d/%d/%d/%d ACPI deaktivieren. SMP deaktivieren. Alle Boot-Ausgaben deaktivieren. SMART aktivieren/deaktivieren (0/1). Unsauber eingebettete Partition wird verworfen (%s,%s,%s%d) Statistiken des Plattenzwischenspeichers: Hits = %lu (%lu.%02lu%%), Misses = %lu
 Plattenanzahl muss Plattenliste vorangestellt sein.
 FPSWA-Version anzeigen. Laufwerksstatus mit SMART anzeigen. Eine Textzeile anzeigen. Blockliste von DATEI anzeigen. Ausgabe auf allen Konsolen anzeigen. Energiemodus anzeigen. Benutzung dieses Befehls anzeigen und beenden. Diese Hilfe anzeigen und beenden. Anzeigen/Festlegen des/der aktuellen Datums/Zeit. Angehängte Zeilenumbrüche nicht ausgeben. Keine Meldungen ausgeben. Kein Diskettenlaufwerk überprüfen. Zum Abschalten des Rechners kein APM verwenden. Nichts tun, erfolgreich. Nichts tun, nicht erfolgreich. Keine Fehlerdiagnosemeldungen beim Booten anzeigen. Keine Host-Tabellen spezifiziert durch kommagetrennte Liste laden. Nicht neu starten, nur herunterfahren. Nach dem ersten Fehler nicht stoppen. EBDA nicht aktualisieren. Könnte Fehler oder Hänger in manchen BIOS-Versionen beseitigen, ist aber nicht effektiv bei Betriebssystemen, die kein RSDP von GRUB empfangen.  UMGVAR UMGVAR [UMGVAR] ... FEHLER: Keine gültige Tastaturbelegung gefunden. Überprüfen Sie die Eingabe.
 Beenden ist jederzeit mit ESC möglich. AUSDRUCK AUSDRUCK ] Verstrichene Zeit: %d.%03d s 
 Verstrichene Zeit: %d.%03d Sekunden 
 Einbettung ist nicht möglich. GRUB kann in dieser Konfiguration nur mittels Blocklisten installiert werden. Blocklisten sind allerdings UNZUVERLÄSSIG und deren Verwendung wird daher nicht empfohlen. Eine Tastatursequenz emulieren Auswertung der Backslash-Maskierungen ermöglichen. ZFS-Passwort eingeben: KDB beim Booten verwenden. In Normalmodus wechseln. Kennwort für %s%s%s angeben (%s):  Passwort eingeben: Benutzername eingeben: Fehler beim Einlesen der Befehlszeilenargumente
 Einen Ausdruck auswerten. Beenden ist gescheitert GRUB beenden. Schleifendurchlauf beenden Normalmodus abbrechen. Variablen exportieren. Version-1-Tabellen zum Betriebssystem exportieren. Version-2- und Version-3-Tabellen zum Betriebssystem exportieren. DATEI DATEI [ARG ...] DATEI [ARGUMENTE …] DATEI | TEMPO [TONHÖHE1 DAUER1] [TONHÖHE2 DAUER2] ...  DATEI… DATEI1 DATEI2 DATEINAME BEFEHL DATEISYSTEM [VARIABLE] DATEI|prompt FORMAT Das FPSWA-Protokoll war nicht imstande, die Schnittstelle zu finden FPSWA-Revision: %x
 VON-BIS[,VON-BIS] VON[K|M|G] BIS[K|M|G] FT_Init_FreeType ist gescheitert Sowohl Vorgabe- als auch Alternativeinträge konnten nicht gebootet werden.
 Baum für «device-mapper» konnte nicht erstellt werden Alternative «%s» wird verwendet Dateigrösse: %s
 Dateisystem «%s» unterstützt keine Einbettungen Dateien unterscheiden sich an Position %llu: 0x%x [%s], 0x%x [%s]
 Dateigrössen sind unterschiedlich: %llu [%s], %llu [%s]
 Zugriff auf Dateisystem nicht möglich Dateisystemtyp %s Hybrid-MBR des GPT-Gerätes GERÄT füllen. Angegebene Partitionen werden Teil des Hybrid-MBR. Bis zu 3 Partitionen sind zulässig. TYP ist ein MBR-Typ. + bedeutet, dass die Partition aktiv ist. Nur eine Partition kann aktiv sein. Laden des EFI-Emulators finalisieren. Zuerst das Gerät HINWEIS versuchen, falls aktuell laufende ARC. Falls HINWEIS mit Komma endet, auch Unterpartitionen versuchen Zuerst das Gerät HINWEIS versuchen (für aktuell laufendes BIOS). Falls HINWEIS mit Komma endet, auch Unterpartitionen versuchen Zuerst das Gerät HINWEIS versuchen (für aktuell laufendes EFI). Falls HINWEIS mit Komma endet, auch Unterpartitionen versuchen Zuerst das Gerät HINWEIS versuchen (bei IEEE1275). Falls HINWEIS mit Komma endet, auch Unterpartitionen versuchen Zuerst das Gerät HINWEIS versuchen, falls direkter Hardwarezugriff unterstützt wird. Falls HINWEIS mit Komma endet, auch Unterpartitionen versuchen Zuerst das Gerät HINWEIS versuchen. Falls HINWEIS mit Komma endet, auch Unterpartitionen versuchen Ein Videoproblem beheben. %s auf %s gefunden (%s)\n %s auf %s gefunden\n GNU Mach wurde gefunden: %s Hurd-Modul gefunden: %s NetBSD-Kernel gefunden: %s\n Hintergrund gefunden: %s\n initrd-Abbild gefunden: %s\n Kernel-Modulordner gefunden: %s\n FreeBSD-Kernel gefunden: %s\n Linux-Abbild gefunden: %s\n Thema gefunden: %s\n Freetype-Fehler %d beim Laden des Glyphs 0x%x für U+0x%x%s ATA-Sicherheitseinstellungen bis zum Zurücksetzen einfrieren. Freitag G GNU GRUB  Version %s GRUB-Bootmenü GRUB weiss nicht, wie man diese Maschine stoppen kann! GRUB-Emulator. GRUB-GERÄT=PLAN9-GERÄT Unsinn in ARGP_HELP_FMT: %s GRUB-Tastaturbelegung aus dem der Linux-Konsole erstellen. PBKDF2-Passwort-Prüfsumme erzeugen.  Eine Grub-Konfigurationsdatei erstellen Ein lauffähiges Abbild einschliesslich aller Module im gewählten Format erstellen crc32-Prüfsumme von DATEI berechnen. Informationen zum Platten-Zwischenspeicher holen. ATA-Datenträgerparameter ermitteln/festlegen. GiB GiB/s HASH HINWEIS Das System anhalten, wenn möglich, mit APM. Diesen Computer anhalten. Dieser Befehl funktioniert nicht in allen Firmware-Implementationen. N Bytes in Ausgabedatei verarbeiten Hallo Welt Hercules  KENNUNG ABBILD1 [ABBILD2 ...] EINHÄNGEPUNKT ABBILDPFAD BEFEHLE In DATEI gespeicherten ZFS-Wrapping-Schlüssel importieren Inkorrektes virtuelles Gerät: kein Typ verfügbar Ein Modul einfügen. GRUB auf Ihrem Laufwerk installieren. installation beendet. Keine Fehler aufgetreten. Ungültige Rückreferenz Ungültiger Zeichenklassenname Ungültiges Sortierzeichen Ungültiger Befehl %s.
 Ungültiger Inhalt von \{\} Ungültiges Gerät «%s».
 Ungültige Plattenanzahl.
 Ungültiger vorhergehender regulärer Ausdruck Ungültiges Bereichsende Ungültiger regulärer Ausdruck Routing der Benutzerkonfiguration aufrufen. K KERNEL ARGUMENTE TASTE Tastenzuordnung für den Schnellstart dieses Eintrags. KiB KiB/s Virtuelles Gerät durchsuchen (Datei oder Laufwerk) Veralteter Parameter «%s» wird nicht mehr unterstützt. Legende: Maske/Position=Rot/Grün/Blau/Reserviert Länge der erzeugten Prüfsumme Länge von Salt DNS-Server auflisten PCI-Geräte auflisten. Alle Dateien auflisten. Verfügbare Grafikmodi auflisten. Falls Auflösung angegeben ist, nur Modi dieser Auflösung anzeigen. Geräte und Dateien auflisten. Geräte oder Dateien auflisten. Geräte auflisten. Dateien in PFAD auflisten. Von Firmware bereitgestellte Speicherzuordnung auflisten. Liste der unterstützten Videomodi: Liste der Benutzer, die diesen Eintrag booten dürfen. Eingabeterminal listen oder wählen. Ausgabeterminal listen oder wählen. Aktuelle Variablen auflisten. Die geladenen Schriften auflisten. Variablen aus Blockdatei der Umgebung auflisten. 64-bit XNU-Abbild laden. BIOS-Sicherung laden. FreeBSD-Umgebung laden. FreeBSD-Kernelmodul laden (ELF). FreeBSD-Kernelmodul laden. FreeDOS-kernel.sys laden. Linux laden. NTLDR oder BootMGR laden. NetBSD-Kernelmodul laden (ELF). NetBSD-Kernelmodul laden. Plan9-Kernel laden. XNU-Erweiterungsordner laden. XNU-Erweiterungspaket laden. XNU-Erweiterung laden. XNU-Abbild laden. XNU-Ramdisk laden. Wird im Betriebssystem als md0 angezeigt. Inhalt von «device-properties» laden Ein PXE-Abbild laden. Eine Tastaturbelegung laden. Einen Mlutiboot2-Kernel laden. Ein Multiboot2-Modul laden. Einen Multiboot-Kernel laden. Ein Multiboot-Modul laden. Begrüssungsbildschirm für XNU laden. Ein gespeichertes XNU-Abbild laden. EFI-Emulator laden und initialisieren. Einen anderen Bootloader laden. Eine andere Konfigurationsdatei laden, aber nur deren Menüeinträge. Eine andere Konfigurationsdatei laden, ohne den Kontext zu ändern. Es werden nur Menüeinträge geladen. Eine andere Konfigurationsdatei laden, ohne den Kontext zu ändern. Eine andere Konfigurationsdatei laden. Weiteres Coreboot-Payload laden Hintergrundbild für aktives Terminal laden. Host-ACPI-Tabellen und durch Argumente angegebene Tabellen laden. initrd laden. Ramdisk von kOpenBSD laden. Kernel von FreeBSD laden. Kernel von NetBSD laden. Kernel von OpenBSD laden. Nur Tabellen spezifiziert durch kommagetrennte Liste laden. Gleiche Datei mehrfach laden. Variablen aus Blockdatei der Umgebung laden. ZFS-Schlüssel laden. Geladene Schriften GNU Mach wird geladen … Linux %s wird geladen … Xen %s wird geladen … Initiale Ramdisk wird geladen … FreeBSD-Kernel %s wird geladen … Illumos-Kernel wird geladen … Hurd wird geladen … M MAC-Überprüfung ist gescheitert MENÜEINTRAG ist eine Zahl, ein Titel oder Bezeichner eines Menüeintrags. MODUL MODULE Richten Sie Supportanfragen zu Xorriso an <bug-xorriso@gnu.org>. Bootfähiges GRUB-Abbild für CD-ROM, Festplatte, USB-Stick und Diskette erstellen. Eine GRUB-Tastaturlayoutdatei erstellen. Ein bootfähiges GRUB-Abbild erstellen Ein virtuelles Gerät aus einer Datei erstellen. Partition als aktiv markieren BIOS-Laufwerkszuordnungen verwalten. Erforderliche oder optionale Argumente für lange Optionen sind ebenso erforderlich bzw. optional für die entsprechenden Kurzoptionen. PCI-Geräte bearbeiten. Von BEFEHL benötigte Zeit messen Speicher ausgeschöpft Speichertyp: DDR2. Speichertyp: Unbekannt. Bezeichner des Menüeintrags. Kein Menüeintrag angegeben. Typ des Menüeintrags. MiB MiB/s Minimale BASH-ähnliche Zeilenbearbeitung wird unterstützt. Für das erste Wort listet TAB die möglichen Befehlsvervollständigungen auf. Ansonsten werden mit TAB die möglichen Geräte-oder Dateivervollständigungen angezeigt. %s Minimale Emacs-ähnliche Bildschirmbearbeitung wird unterstützt. TAB listet Vervollständigungen auf. Drücken Sie Ctrl-X oder F10 zum Booten, Ctrl-C oder F2 für eine Befehlszeile oder ESC, um abzubrechen und zum GRUB-Menü zurückzukehren. Argumente fehlen
 Eingabedatei fehlt
 Montag Schwarzweiss  Mehr als ein Installationsgerät? Mehr als ein Menüeintrag? Ein verschlüsseltes Gerät einhängen. Alle Datenträger einhängen, für die das «boot»-Flag gesetzt ist. Alles einhängen. Nach UUID einhängen. Verschlüsselte Geräte einhängen. NAME NAME [VARIABLE] [HINTWEISE] ZAHL ANZAHL_DER_SEKUNDEN Name	Referenzzähler	Abhängigkeiten
 Native Festplattentreiber werden verwendet. Nutzung der Firmware-Schnittstelle wird verweigert. Netzwerkprotokolle: Neuer MBR wurde nach «%s» geschrieben
 Kein CS5536 gefunden Kein FPSWA gefunden Keine Statistiken für Boot-Zeiten verfügbar
 Kein Befehl angegeben.
 Kein Gerät angegeben.
 Keine Statistiken zum Paket-Zwischenspeicher verfügbar
 Es wurden keine Laufwerke neu zugeordnet Kein bekanntes Dateisystem erkannt Keine Übereinstimmung Kein Pfad angegeben.
 Kein Pfad oder Gerät wurde angegeben.
 Kein vorhergehender regulärer Ausdruck Kein Baum virtueller Geräte verfügbar Non-chain 4  Zu wenige Parameter für den Befehl.
 Bitte verbinden Sie nun einen entfernten Debugger. Anzahl vor PBKDF2-Durchläufe OS Laufwerk #Num ------> GRUB/BIOS-Gerät Fehler beim Öffnen der OS-Datei %s: %s Option -- wechselt in den nativen xorriso-Befehlsmodus. Optionen: Suche ausserhalb des Bereichs: %d
 Ersetzung ausserhalb des Bereichs (%d, %d)
 Die geschätzte Zuordnung von Plan9-Geräten überschreiben. P PARTITION BEFEHLE PFAD PBKDF2-Prüfsumme Ihres Passworts ist %s
 PORT PORT WERT [MASKE] Alte Konfiguration im neuen Kontext laden Alte Konfiguration im neuen Kontext laden, nur Menüeinträge Alte Konfiguration im gleichen Kontext laden Alte Konfiguration im gleichen Kontext laden, nur Menüeinträge Teil-Nummer: %s.
 Partition %d ist nun aktiv. 
 Partition %s: Partitionstyp «%s» unterstützt keine Einbettungen Pfad: %s
 Pfad: nicht verfügbar BEFEHLE auf Partition ausführen.
Rufen Sie «parttool PARTITION help» auf, um eine
Liste der verfügbaren Befehle zu erhalten. Eine DNS-Suche ausführen Eine IPV6-Autokonfiguration ausführen Sowohl direkte als auch umgekehrte Zuordnungen ausführen. PiB PiB/s Planar  Einen Klang abspielen. Bitte verwenden Sie nicht den alten Titel «%s» für GRUB_DEFAULT, verwenden Sie «%s» (für Versionen vor 2.00) oder «%s» (für 2.00 oder neuer) Pool-GUID: %016llx
 Pool-GUID: nicht verfügbar Pool-Name: %s
 Pool-Name: nicht verfügbar Pool-Status: aktiv Pool-Status: zerstört Pool-Status: exportiert Pool-Status: ARC-Gerät, Level 2 Pool-Status: potenziell aktiv Pool-Status: für Hotspare reserviert Pool-Status: nicht verfügbar Pool-Status: nicht initialisiert Mögliche Argumente sind: Mögliche Befehle sind: Mögliche Geräte sind: Mögliche Dateien sind: Mögliche Partitionen sind: Mögliche Dinge sind: Vorzeitiges Ende des regulären Ausdrucks Beliebige Taste drücken, um fortzusetzen … Drücken Sie eine beliebige Taste, um xnu zu starten «Enter» zum Booten des markierten Betriebssystems, «e» zum Bearbeiten der Befehle vor dem Booten oder «c» für eine Befehlszeile. «Enter» zum Booten des markierten Betriebssystems, «e» zum Bearbeiten der Befehle vor dem Booten oder «c» für eine Befehlszeile. Mit «ESC» kehren Sie zum vorherigen Menü zurück. Speicher-Informationen anzeigen. ZFS-Info zu GERÄT ausgeben. ZFS-BOOTFSOBJ ausgeben oder als VARIABLE setzen Eine Blockliste ausgeben. Blockargument ausgeben und ausführen. Backtrace ausgeben. Identität und Einstellungen des Laufwerks ausgeben. Grössenwerte in menschenlesbarem Format ausgeben. Geräteinformationen für einen angegebenen Pfad ermitteln (oder Gerät, falls die Option -d angegeben ist). RAM enthält Coreboot-Tabellen RAM enthält Firmware-Code RAM-Slotnummer %d
 REGEXP ZEICHENKETTE ROM-Abbild ist vorhanden. 16-bit-Wert aus ADDR lesen. 16-bit-Wert von PORT lesen. 32-bit-Wert aus ADDR lesen. 32-bit-Wert von PORT lesen. 8-bit-Wert aus ADDR lesen. 8-bit-Wert von PORT lesen. Nur Bytes der Länge LENGTH lesen. Neu starten ist gescheitert Den Computer neu starten. Passwort erneut eingeben: Register %x von %x:%02x.%x ist %x
 Regulärer Ausdruck ist zu gross Einen DNS-Server entfernen Ein Modul entfernen. Eine Umgebungsvariable löschen. Alle Speichersegmente im angegebenen Bereich löschen. Berichten Sie Fehler an %s.
 Melden Sie Fehler an <bug-grub@gnu.org>. Serielles Terminal wurde angefordert, aber GRUB_SERIAL_COMMAND wurde nicht angegeben. Standardparameter werden verwendet. Alle Zuordnungen auf Standardwerte zurücksetzen. Info zum Gerät holen. Aus einer Funktion zurückkehren. Zum IEEE1275-Prompt zurückkehren. Rufen Sie «gdb %s %d» auf und setzen Sie ARGS.HOLD auf Null.
 Geben Sie «go» ein, um GRUB fortzusetzen. SEK KURZNAME KURZNAME KARDE ADRESSE [HW-ADRESSE] KURZNAME NETZ [SCHNITTSTELLE| gw GATEWAY] GRÖssE QUELLE|-u UUID|-a|-b ZEICHENKETTE Samstag Gelesenen Wert in Variable VARNAME speichern. Variablen in die Blockdatei speichern. «Hallo Welt» ausgeben. Anhand von UUIDs nach Geräten suchen. Falls VARIABLE angegeben wird, dann wird das erste gefundene Gerät zum Setzen der Variable verwendet. Geräte nach Datei durchsuchen. Geräte nach Dateisystem-UUID durchsuchen. Geräte nach Dateisystembezeichnung durchsuchen. Anhand von Dateien, Dateisystembezeichnungen oder Dateisystem-UUIDs nach Geräten suchen. Falls --set angegeben wird, dann wird das erste gefundene Gerät zum Setzen der Variable verwendet. Falls keine Variable angegeben wird, dann wird «root» verwendet Anhand von Dateien nach Geräten suchen. Falls VARIABLE angegeben wird, dann wird das erste gefundene Gerät zum Setzen der Variable verwendet. Anhand von Bezeichnungen nach Geräten suchen. Falls VARIABLE angegeben wird, dann wird das erste gefundene Gerät zum Setzen der Variable verwendet. Der Sektor %llu wird bereits vom Raid-Controller «%s» verwendet und wird daher übergangen. Bitte fragen Sie den Hersteller, ob es möglich ist, keine Daten in der MBR-Lücke zu speichern. Der Sektor %llu wird bereits vom Programm «%s» verwendet und wird daher übergangen. Diese Software kann in Zukunft Start- oder andere Probleme hervorrufen. Bitte fragen Sie dessen Autoren, ob es möglich ist, keine Daten im Boot-Bereich zu speichern. Gerät nach dessen Position auf dem Bus auswählen. Gerät nach Anbieter und Gerätekennungen auswählen. Erweiterte Energieverwaltung setzen
(1=niedrig, ..., 254=hoch, 255=aus). Automatische Klangverwaltung festlegen
(0=aus, 128=leise, ..., 254=schnell). OEMID von RSDP, XSDT und RSDT festlegen. OEMTABLE-ID von RSDP, XSDT and RSDT festlegen. OEMTABLE-Revision von RSDP, XSDT und RSDT festlegen. «hidden»-Flag im Partitionstyp setzen Eine Variable auf den Rückgabewert setzen. Eine Variable auf das erste gefundene Gerät setzen. Eine Umgebungsvariable festlegen. Hintergrundfarbe für aktives Terminal festlegen. Ersteller-Feld von RSDP, XSDT und RSDT festlegen. Ersteller-Revision von RSDP, XSDT und RSDT festlegen. Debug-Umgebungsvariable setzen. Laufwerk in den Schlafmodus versetzen. Laufwerk in den Standby-Modus versetzen. Positionsparameter festlegen. Root-Gerät festlegen. Wartezeit bis Standby festlegen
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). terminfo-Typ von TERM auf TYP setzen.
 Den Standard-Booteintrag für GRUB festlegen (nur für den nächsten Bootvorgang). Den voreingestellten Booteintrag für GRUB festlegen. Adresse des seriellen Ports festlegen. Parität des seriellen Ports festlegen. Geschwindigkeit des seriellen Ports festlegen. Stop-Bits des seriellen Ports festlegen. Wortlänge des seriellen Ports festlegen. Einheit des seriellen Ports festlegen. Abbilder zum Booten von GERÄT einrichten.

Sie sollten dieses Programm normalerweise nicht direkt ausführen.
Verwenden Sie stattdessen grub-install. Benutzerpasswort festlegen (PBKDF2).  Benutzerpasswort (Klartext) festlegen. Nicht empfohlen, da unsicher. Variable durch Benutzereingabe setzen. Variablen setzen. Partitionstyp wird auf 0x%x gesetzt
 Positionsparameter anpassen. ACPI-Informationen anzeigen. APM-Informationen anzeigen. Eine Hilfemeldung anzeigen. Lange Liste mit ausführlicheren Informationen anzeigen. Den Inhalt der DATEI hexadezimal anzeigen. Geladene Module anzeigen. Inhalt des Speichers anzeigen. Roh-Inhalt des  ATA IDENTIFY-Sektors anzeigen. Roh-Inhalt einer Datei oder des Speichers anzeigen. Inhalt einer Datei anzeigen. Alle aktuellen Zuordnungen anzeigen. Diese Meldung anzeigen. Nur Version-1-Tabellen darstellen. Nur Version-2- und Version-3-Tabellen anzeigen. Herunterfahren ist gescheitert «initrd»-Befehl wie in grub-legacy simulieren «kernel»-Befehl wie in grub-legacy simulieren «modulenounzip»-Befehl wie in grub-legacy simulieren «password»-Befehl wie in grub-legacy simulieren «password»-Befehl von grub-legacy im Menüeintragsmodus simulieren N Bytes der Ausgabedatei überspringen. Offset-Bytes am Beginn der Datei überspringen. Slot %d geöffnet
 Hurd-Bestandteile wurden gefunden, die aber zum Booten nicht ausreichen. Dateiname angeben. Zu verwendenden Hash angeben. Eine oder mehrere zu ladende Schriftdateien angeben. Grösse für jeden Lesevorgang angeben Die Anzahl der Eingabedateien angeben. Geschwindigkeit: %s 
 GDB-Stub auf dem angegebenen Port starten GDB-Stub stoppen Entsprechende Komponenten-NUMMER in VARNAME speichern. Erfolg Sonntag Normale Ausgaben unterdrücken (Warnungen verbleiben) Syntaxfehler in Zeile %u
 In der erzeugten GRUB-Konfigurationsdatei wurden
Syntaxfehler entdeckt. Stellen Sie sicher, das die Dateien
/etc/default/grub und /etc/grub.d/* fehlerfrei sind oder
erstellen Sie einen Fehlerbericht mit %s als Anhang. Ein-/Ausgabebereich des Systemverwaltungsbus-Controllers ist bei 0x%x
 T ZIEL Zielformat wurde nicht angegeben (verwenden Sie die Option -0). Terminalgeometrie wurde festgelegt. Terminal ist nur ASCII [Vorgabe]. Terminal ist logisches UTF-8. Terminal ist visuelles UTF-8. USB-Unterstützung überprüfen. Bit bei BYTE:BIT im CMOS testen. Dateilesegeschwindigkeit testen. Prüfen, ob REGEXP auf ZEICHENKETTE passt. Das Video-Subsystem im Modus BxH überprüfen. Das Video-Subsystem überprüfen. Nur Text Die Dateien sind identisch.
 Der hervorgehobene Eintrag wird automatisch in %ds ausgeführt. Dieser Eintrag kann von jedem Benutzer gebootet werden. Donnerstag TiB TiB/s Werkzeug zum Bearbeiten einer Umgebungs-Blockdatei. Flash-Gesamtgrösse: %d B.
 Angehängter Backslash 64-bit-UUID in ein von XNU verarbeitbares Format umwandeln. Falls -l angegeben ist, bitte Kleinschreibung beibehalten (wie von blkid) Einen Systemdateinamen in einen für GRUB umwandeln. Übersetzt die Zeichenkette anhand den aktuellen Einstellungen. Rufen Sie «%s --help» oder «%s --usage» auf, um weitere Informationen zu erhalten.
 Dienstag BENUTZER PASSWORT BENUTZER PBKDF2_PASSWORT BENUTZERNAME[,BENUTZERNAME] UTF-8 Weiterleitung konnte nicht angelegt werden: %s Ihre Plattform konnte nicht erkannt werden. Verwenden Sie --target. Fork konnte nicht angelegt werden: %s Datenstrom von %s konnte nicht geöffnet werden: %s Pool-Status konnte nicht ermittelt werden Daten entpacken. Datei entpacken, bevor Prüfsumme ermittelt wird. Unbekannter Adresstyp %d
 Unbekannter Befehl «%s».
 Unbekanntes Kompressionsformat %s Unbekannte Kodierung Unbekanntes zusätzliches Argument «%s». Unbekanntes gsub-Schriftmerkmal 0x%x (%s)
 Ungültiger Code für Tastaturscan 0x%02x
 Ungültiger Bezeichner für Tastaturscan %s
 Unbekannter Systemfehler Unbekannter Videomodus Typ des virtuellen Gerätes ist unbekannt: %s
 EFI-Umgebung entladen. Kein Gegenstück für ( oder \( Nicht übereinstimmende ) oder \) Kein Gegenstück für [ oder [^ Kein Gegenstück für \{ Unerkannte Option «%s»\n Pool-Status nicht erkannt Nicht unterstützter Adresstyp %d
 Nicht unterstützte Coverage-Spezifikation: %d
 Nicht unterstützter Hardware-Adresstyp %d
 Bildformat nicht unterstützt Nicht unterstütztes Ersetzungs-Flag: 0x%x
 Nicht unterstützte Ersetzungsangabe: %d
 Nicht unterstützter Ersetzungstyp: %d
 Aufruf: Aufruf: %s -o AUSGABE CKBMAP_ARGUMENTE...\n Aufruf: %s GERÄT
 Aufruf: %s [EINGABEDATEI [AUSGABEDATEI]]
 Aufruf: %s [OPTION] MENÜEINTRAG\n Aufruf: %s [OPTION]\n CDROM als Root-Gerät verwenden. Entfernte GDB-Fehlerdiagnose anstatt DDB verwenden. ZEICHENKETTE als Inhalt des Menüeintrags verwenden. Einkompiliertes Root-Gerät verwenden. Serielle Konsole verwenden. Verwenden Sie die Tasten %C und %C zum Markieren eines Eintrags. VARIABLE SCHNITTSTELLE ZAHL BESCHREIBUNG VARNAME Ausführlicher Countdown. Angehängte Signatur überprüfen. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtuelles Gerät ist nicht verfügbar Virtuelles Gerät ist gescheitert Virtuelles Gerät ist offline Virtuelles Gerät ist online Virtuelles Gerät wurde entfernt WARNUNG: Im Betriebssystem wird keine Konsole verfügbar sein WARNUNG: Es wurde keine plattformspezifische Installation durchgeführt WARNUNG: Nicht unterstützte Parameter für Schrifteigenschaften: %x
 BREITExHÖHE. Die angegebene Anzahl an Sekunden warten. Nach jeder ausgegebenen Zeile auf Tastendruck warten. Warnung: Warnung: ungültige Hintergrundfarbe «%s»
 Warnung: ungültige Vordergrundfarbe «%s»
 Warnung: Syntaxfehler (fehlender /) in «%s»
 Mittwoch Windows NT/2000/XP (Lader) Windows Vista/7 (Lader) 16-bit-Wert nach ADDR schreiben. 16-bit-Wert nach PORT schreiben. 32-bit-Wert nach ADDR schreiben. 32-bit-Wert nach PORT schreiben. 8-bit-Wert nach ADDR schreiben. 8-bit-Wert nach PORT schreiben. Geschriebene SPD-Bytes: %d B.
 Xen-Hypervisor, Version %s YUV  Sie müssen mindestens einen Befehl angeben.
 «SystemPartition» und «OSLoader» müssen manuell eingerichtet werden. Ihr Einbettungsbereich ist ungewöhnlich klein.  core.img würde nicht hineinpassen. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] GERÄT [--md5] PASSWORT [DATEI] [--no-mem-option] [--type=TYP] DATEI [ARG ...] [-1|-2] [--exclude=TABELLE1,TABELLE2|--load-only=TABELLE1,TABELLE2] DATEI1 [DATEI2] [...] [-c DATEI [-p PRÄFIX]] [DATEI1 [DATEI2 ...]] [-d] GERÄTENAME DATEI. [-e|-n] ZEICHENKETTE [-f DATEI] [-f DATEI] Variablenname [...] [-f|-l|-u|-s|-n] [--hint HINWEIS [--hint HINT] ...] NAME [-h|-p|-r] [DATEI] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [DATEI …] [-m (stretch|normal)] DATEI [-s POSITION] [-d GERÄT] [-s POSITION] [-d GERÄT] [-v VAR] REGISTER[=WERT[:MASKE]] [-s GRÖssE] DATEINAME [ADR|comUNIT][,GESCHW] [ARG] KARTE [HW-ADRESSE] [KARTE] [UMGVAR=WERT] [ENVVAR] [KÜRZEL1] [KÜRZEL2] ... [MODUL1 MODUL2 …] [ZAHL:]VARNAME [ZAHL] [OPTIONEN…] [OPTIONEN] [OPTIONEN] DATENTRÄGER [OPTIONEN] DATEI_ODER_GERÄT [OPTIONEN] SCHRIFTDATEIEN [OPTION]… [MODULE] [OPTIONEN]… [PFAD|GERÄT] [OPTIONEN] [PFAD] [MUSTER ...] [BENUTZERLISTE] [WERT]... [BxH[xT]] [BxH] [[-a|-u|-v] [-g BxH] TERM [TYP]] [[Jahr-]Monat-Tag] [Stunde:Minute[:Sekunde]] [bus]:[slot][.func] [Anbieter]:[Gerät] «cryptomount»-Befehl ist fehlgeschlagen: %s «loopback»-Befehl ist fehlgeschlagen: %s «obppath» wurde in den Elternordnern von %s nicht gefunden, keine IEEE1275-Namensermittlung Ein Argument wurde «%s» zugeordnet, obwohl es kein Argument erwartet Zugriff verweigert NOTE-Segment für CHRP IEEE1275 hinzufügen Adresse Adresse nicht gefunden Versuch, ausserhalb der Platte «%s» zu lesen und zu schreiben Versuch, ausserhalb der Partition zu lesen oder zu schreiben Versuch, hinter dem Ende der Datei zu lesen Versuch, ausserhalb der Datei zu suchen Es wird versucht, das Core-Abbild «%s» aus GRUB zu lesen Es wird versucht, das Core-Abbild «%s» erneut aus GRUB zu lesen verfügbarer RAM Verfügbare Formate: Falsche Signatur base_addr = 0x%llx, Länge = 0x%llx, %s
 base_addr = 0x%llx, Länge = 0x%llx, Typ = 0x%x
 Bitmap-Datei «%s» besitzt ein nicht unterstütztes Format blocklist DATEI Blocklisten sind ungültig Blockgrösse ist nicht durch 512 teilbar 0 Schleifen können nicht unterbrochen werden Dateisystemtyp auf %s konnte nicht ermittelt werden Befehl «%s» konnte nicht gefunden werden Verschlüsselter Datenträger «%s» konnte nicht eingebunden werden: %s «%s» kann nicht geöffnet werden: %s %s kann nicht geöffnet werden, Index %d: Fehler %d Blocklisten konnten nicht ermittelt werden Blocklisten konnten nicht ermittelt werden: %s Kernel-Abbild kann nicht komprimiert werden Für %s konnte kein GRUB-Laufwerk gefunden werden. Überprüfen Sie Ihre device.map Gerät für %s konnte nicht gefunden werden (ist /dev eingehängt?) Übersetzer-Befehlszeilenpfad für Pfad «%s» konnte nicht ermittelt werden: %s OS-Datei «%s» kann nicht geöffnet werden: %s «%s» kann nicht geöffnet werden: %s «%s» kann nicht korrekt gelesen werden «%s» ist nicht lesbar: %s Datei %s kann nicht in %s umbenannt werden Originalordner kann nicht wiederhergestellt werden «%s» kann nicht durchsucht werden: %s Aufruf von stat für «%s» nicht möglich: %s Auf CD-ROM kann nicht geschrieben werden Auf «%s» kann nicht geschrieben werden: %s Schreiben in die Standardausgabe fehlgeschlagen: %s Karte nicht gefunden cat DATEI Prüfsummenvergleich ist gescheitert Zu verwendende Kompression für Kernel-Abbild auswählen cmp DATEI LOKAL comUNIT[,GESCHW] Vergleichsfehler bei %llu Verbindung verweigert Verbindungsabbruch wegen Zeitüberschreitung In fette Schrift umwandeln Core-Abbild ist zu gross (0x%x > 0x%x) Version von core.img passt nicht %s konnte nicht automatisch konfiguriert werden Teilgerät eines über mehrere Geräte verteilten Dateisystems konnte nicht gefunden werden Geli-Nutzer konnte nicht gefunden werden «part»-Teil von «geom» konnte nicht geöffnet werden «geom» konnte nicht geöffnet werden! ELI-Metadaten konnten nicht gelesen werden UUID konnte nicht ermittelt werden Geli-UUID konnte nicht ermittelt werden Zufallsdaten für Salt konnten nicht geholt werden Netzwerkpaket konnte nicht gesendet werden cp DATEI LOKAL crc DATEI Krytografiefehler Nummer %d cygwin_conv_path() gescheitert Gerätezuordnung löschen, falls bereits vorhanden Ziel ist nicht erreichbar Geräteanzahl übersteigt die Grenzen Hinting deaktivieren Laufwerk «%s» wurde nicht gefunden. Platte existiert nicht, ersatzweise wird Partition des Geräts %s verwendet Zu verwendendes Platten-Modul (biosdisk oder native). Diese Option ist nur für BIOS-Ziele verfügbar. Die Grösse von diskboot.img muss %u Bytes betragen GERÄT nicht auf Dateisysteme überprüfen Domainname-Komponente ist zu lang LED-Status nicht aktualisieren erledigt DATEI als Anfangskonfiguration einbetten DATEI als öffentlichen Schlüssel zur Signaturüberprüfung einbetten Einbettung ist nicht möglich, jedoch für die Installation mit RAID und LVM erforderlich Einbettung ist nicht möglich, jedoch für die Installation auf mehreren Laufwerken erforderlich Enter: Booten, «e»: Optionen, «c»: Befehlszeile Environment-Block ist zu klein Fehler: %s.
 GRUB-Abbilder wurden im Ordner ORDNER/%s anstelle von %s erwartet Kanonischer Pfad von «%s» konnte nicht ermittelt werden Lesen des Sektors 0x%llx von «%s» ist fehlgeschlagen Passwort konnte nicht gelesen werden Schreiben des Sektors 0x%llx nach «%s» ist fehlgeschlagen Falsch Fehlerhafter RAM (BadRAM) Datei «%s» nicht gefunden Dateiname wurde erwartet Dateiname oder Tempo und Noten erwartet Dateisystem «%s» unterstützt keine Labels Dateisystem «%s» unterstützt keine Blocklisten Firmware-Abbild ist zu gross Automatisches Hinting erzwingen Vier Argumente werden erwartet fwstart.img entspricht nicht der bekanntermassen funktionierenden Version. Verwenden Sie dies auf eigene Gefahr Ein Abbild im FORMAT erzeugen Eine kurze Hilfemeldung ausgeben Diese Hilfe anzeigen Das angegebene Argument ist ein Systemgerät, kein Pfad grub-mkimage wurde ohne XZ-unterstützung kompiliert grub> für SEK Sekunden hängenbleiben (Voreinst.: 3600) hex DATEI Bitmap-Strikes beim Laden ignorieren Ungültige Angabe der Terminalgeometrie GRUB-Abbilder in ORDNER/%s anstelle von %s installieren Trotzdem installieren, auch wenn Probleme auftreten Ungültiges PBKDF2-Passwort Ungültiges ELF-Magic (architekturabhängig) Ungültiges ELF-Magic (architekturunabhängig) Ungültige Blockgrösse Ungültige Angabe der Farbe «%s» Ungültiger Environment-Block Ungültiger Dateiname «%s» Ungültiger Schriftbereich Ungültiges Zeilenformat: %s Ungültiger Parameter %s Ungültiger Sprungwert %lld Ungültiger Variablenname «%s» Ungültige Angabe «%s» des Grafikmodus GET_ARRAY_INFO-Fehler (ioctl): %s GET_DISK_INFO-Fehler (ioctl): %s RAID_VERSION-Fehler (ioctl): %s Kernel-Abbild ist zu gross (0x%x > 0x%x) Netzwerkadressen auflisten Netzwerkkarten auflisten Netzwerkrouten auflisten ls PFAD lzop-Datei ist beschädigt Das Laufwerk auch als Diskette bootfähig machen (Vorgabe für fdX-Geräte). Kann mit einigen BIOS-Varianten scheitern. Symbol «%c» fehlt Obligatorische Option für «%s» fehlt Modul «%s» ist nicht geladen Modul ist nicht geladen Name Abbild und Einhängepunkt werden benötigt Kein APM gefunden Keine DHCP-Informationen gefunden Keine DHCP-Option %d gefunden Keine DHCP-Optionen gefunden Keine DNS-Angabe gefunden Kein DNS-Antwort empfangen Es wurden keine DNS-Server konfiguriert Kanonischer Pfadname enthält keinen «/» Kein Befehl angegeben Kein Schlüssel verfügbar Keine Netzwerkkarte gefunden Kein Server angegeben Keine solche Partition Kein passender Videomodus gefunden Keine Symboltabelle Kein Terminal angegeben Kein Terminator im Core-Abbild Nicht an Sektoren ausgerichtete Daten wurden in der Core-Datei gefunden Ist kein Ordner Keine primäre Partition Keine reguläre Datei ausserhalb des Bereichs der Funktion Ein Argument wurde erwartet Andere Software nutzt den Einbettungsbereich, wodurch nicht genug Platz für core.img ist. Solche Software versucht häufig, Daten zu speichern, um sie unauffindbar zu machen. Wir empfehlen Ihnen, dies zu untersuchen Hauptspeicher erschöpft Ein erzeugtes Abbild in DATEI ausgeben [Vorgabe=stdout] Ausgabedatei muss angegeben werden Erstellte Konfiguration in DATEI ausgeben [Vorgabe=stdout] Überlauf wurde erkannt Die Passwörter stimmen nicht überein Eine bootp-Autokonfiguration ausführen Physischer Datenträger %s wurde nicht gefunden In MODULE angegebene Module vorladen Vorzeitiges Ende der Datei Unerwartetes Ende der Datei %s CapsLock-Taste drücken Insert-Taste drücken NumLock-Taste drücken ScrollLock-Taste drücken SysRq-Taste drücken Linke Alt-Taste drücken Linke Ctrl-Taste drücken Linke Umschalttaste drücken Rechte Alt-Taste drücken Rechte Ctrl-Taste drücken Rechte Umschalttaste drücken Programmversion ausgeben Versionsinformationen ausgeben und beenden Diese Meldung anzeigen und beenden Ausführliche Meldungen ausgeben. Öffentlicher Schlüssel %08x wurde nicht gefunden Lesefehler bei %llu: %s Text aus DATEI lesen. Relativer Pfad zum Unterordner auf dem Netzwerkserver Neuzuweisung 0x%x ist noch nicht implementiert reservierter RAM DHCP-Option holen und in VARIABLE speichern. Falls VARIABLE «-» ist, den Wert ausgeben. Wurzelordner auf dem TFTP-Server Routenschleife entdeckt ROM-Abbilder in ORDNER speichern [optional] Ausgabe in DATEI speichern [erforderlich] Schriftart-Index setzen Serieller Port «%s» wurde nicht gefunden set [NAME=WERT ...] Feststelltasten-Modus festlegen Schriftauffüllung oben einstellen Schriftauffüllung unten einstellen Schriftfamilie festlegen Schriftbereich festlegen Schriftgrösse festlegen Name der Eingabedatei für 32-bit festlegen. Name der Eingabedatei für 64-bit festlegen. Name der Eingabedatei festlegen. Vorgabe ist STDIN Einfügen-Modus festlegen Numlock-Modus festlegen Name der Ausgabedatei festlegen. Vorgabe ist STDOUT Pause-Modus festlegen Präfix-Ordner festlegen [Vorgabe=%s] Scrolllock-Modus festlegen Programmname festlegen Grösse stretch(=ZOOM)|normal(=NORMAL) Symbol «%s» nicht gefunden temporär Terminal %s wurde nicht gefunden oder wird von terminfo nicht berücksichtigt Terminal «%s» wurde nicht gefunden Das Argument «%s» benötigt eine Ganzzahl Der device.map-Eintrag «%s» ist ungültig, wird ignoriert. Bitte korrigieren oder löschen Sie Ihre device.map Der Laufwerksname «%s» in device.map ist inkorrekt. %s wird stattdessen verwendet. Bitte verwenden Sie die Form [hfc]d[0-9]* (z.B. «hd0» oder «cd») Der erste Sektor der Core-Datei ist nicht sektor-ausgerichtet Das Installationsgerät ist ein Wechseldatenträger. Diese Option ist nur bei EFI verfügbar. Der Partitionstyp 0x%x ist ungültig Die Sektoren der Core-Datei sind zu stark fragmentiert Die Grösse von «%s» ist nicht %u «%s» ist zu gross «%s» ist zu klein Diese ELF-Datei ist vom falschen Typ Diese GPT-Partitionsbezeichnung hat keine BIOS-Boot-Partition, Einbettung würde unmöglich sein Dieses LDM hat keine Einbettungspartition, Einbettung würde unmöglich sein Die MSDOS-Partitionsbezeichnung hat keinen Freiraum nach dem MBR, Einbettung würde unmöglich sein Drei Argumente erwartet Zeitüberschreitung beim Öffnen von «%s» Zeitüberschreitung beim Lesen von «%s» Zeitüberschreitung: Hardware-Adresse konnte nicht aufgelöst werden Zu tief verschachtelte symbolische Verknüpfungen Übersetzer «%s» für Pfad «%s» hat verschiedene Wörter, die keine Optionen sind, mindestens «%s» und «%s» Übersetzer «%s» für Pfad «%s» wurde nur Optionen übergeben, device-Teil konnte nicht gefunden werden Übersetzer-Befehlszeilenpfad für Pfad «%s» ist leer Zwei Argumente wurden erwartet Typ Es kann kein Dateisystem in %s erkannt werden. Sicherheitsüberprüfung kann nicht ausgeführt werden Gerätegrösse ist unausgerichtet Unerwartetes Dateiende Unbekanntes Argument «%s» Unbekannte Kompression %d
 Unbekannter Gerätetyp %s
 Unbekanntes Dateisystem Ungültiger Typ eines RAID-Geräts «%s» Unbekannter regexp-Fehler Unbekanntes Zielformat %s
 Unbekannter Terminfo-Typ «%s» Nicht erkannte Formatspezifikation für DHCP-Option «%s» Nicht erkannte Netzwerkadresse «%s» Netzwerk-Schnittstelle «%s» wurde nicht erkannt Zahl nicht erkannt Nicht auflösbare Adresse %s unset [NAME ...] Nicht unterstützter HTTP-Fehler %d: %s Nicht unterstützte HTTP-Antwort Nicht unterstützte RAID-Version: %d.%d Nicht unterstütztes gzip-Format Parität des seriellen Ports wird nicht unterstützt Geschwindigkeit des seriellen Ports wird nicht unterstützt Anzahl der Stop-Bits des seriellen Ports wird nicht unterstützt Wortlänge des seriellen Ports wird nicht unterstützt FARBE für Hintergrund verwenden FARBE für Text verwenden ORDNER als Wurzel der EFI-Systempartition verwenden. DATEI als Schrift verwenden (PF2). DATEI als Boot-Abbild verwenden [Vorgabe=%s] DATEI als Kern-Abbild verwenden [Vorgabe=%s] DATEI als Gerätezuordnung verwenden [Vorgabe=%s] DATEI als xorriso benutzen [optional] GRUB-Dateien im Ordner ORDN verwenden [Vorgabe=%s] ZEICHENKETTE als Produktname verwenden ZEICHENKETTE als Produktversion verwenden ID-Datei auch dann verwenden, wenn eine UUID verfügbar ist Abbilder und Module in ORDNER verwenden [Vorgabe=%s/@platform@] Variable «%s» ist nicht gesetzt Visuelles UTF-8 Warten, bis ein Debugger einklinkt mit Blocklisten wird nicht fortgesetzt Falsches ELI-Magic oder -Version xnu_uuid GERÄT xz-Datei ist beschädigt oder Blockoptionen werden nicht unterstützt Sie können diese Adresse nicht löschen Sie müssen zuerst den Kernel laden Ihre BIOS-Boot-Partition ist zu klein, Einbettung würde unmöglich sein Ihre Datei core.img ist ungewöhnlich gross. Sie würde nicht in den Einbettungsbereich passen. Ihr Einbettungsbereich ist ungewöhnlich klein. core.img würde nicht hineinpassen.                             boot/grub/locale/en@arabic.mo                                                                       0000600 0001750 0001750 00000457341 13417732100 0015104 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                            L(    |P      `k  #   ak      k     k     k     k  $   k     l  6   )l     `l     gl  	   sl     }l     l     l     l     l     l  .   l  .   'm  %   Vm     |m     m    m    n    o     p  8   p  '   p  7   q  F   Tq  v   q  +   r     >r      Or     pr  !   r     r  ,   r     r     s  $   s     @s  *   \s     s     s     s     s     s  
   s  	   s     s     t  ,   )t  ,   Vt  ,   t  '   t  -   t      u  (   'u  (   Pu  )   yu     u     u     u     u     u  "   v  4   %v     Zv     bv  7   ov     v     v  1   v     v     w  %   w  '   @w  %   hw  '   w     w     w     w     w     w     x     
x     x     (x     Hx     Zx     hx     xx     x  3   x     x  $   x     x     	y     "y     1y     By     Yy     ny  -   y     y  !   y     y     z     $z  #   9z     ]z  `   z  Z   F{     {     {     {     {     {     {     {     |     |  0   9|  3   j|     |     |     |     |     }     }     *}     A}     W}     e}     |}     }     }     }  %   }     }     }     }     ~     +~     F~     \~     k~     ~~     ~  *   ~  3   ~  1     1   8  2   j                  1        -  #   L     p  "     8                    	   5  #   ?     c                    ԁ       )        $     C     a  "     P               H     &   f            !     ,   ΃                 	   (  !   2  *   T       '             Ԅ             $        =     O     a     |            
   х  
   ܅       1        ,     :     G     `  3   |  >     $             +     H     `     {       +        ۇ       o     #               $   ߈            '   :  9   b            z   Ӊ  "   N     q     x  8        Ŋ  
   ܊                    .     ʋ  +             +     @     V  "   i            (        ׌  #     &     ?   :  '   z  @                            &  "   8  0   [                 7                            "     .     4  0   ;     l                 2     %             -  *   <  6   g  +        ʐ            !   ̑  d     e   S  d     i     o     H        A     T     j     {                    Ք  #             0     H  1   Z  )                       ԕ  /             "     9  5   V            K   ǖ  &        :     V     k            D        ח     ܗ  '     P   	     Z     y  	                       Ř     V  '          +        J     [  )   w               ՚               #     ;     Q  $   f            "        ۛ     ݛ       (             #     )  "   1  +   T  -             ǜ     ֜            O   	     Y     o                 %          )     !   /  "   Q     t       +        Ӟ               	  !        =     Y     r     ~                џ                    2     F  4   V                    Ԡ          
     #     <      Y  !   z       4     M     2   9     l       *     8   Ϣ               ,     D     [     s  3     $     +   ٣               (     =     R     e                     դ     פ  D       4                 ;   5     q       !        ҧ       s        |               ¨     ը                    -     1     7                         Ǫ     Ӫ            '   "  
   J     U     d     z                           H   ث  L   !     n                 %               #        9     V     s     |                 ӭ       "     (   $     M     i  %   v                 #   خ  *        '     )     <  #   A     e     j  	   |  	     "     ;     #     <        P     ^     |  .     	        ð  `   հ     6  !   K  )   m                      q        (     <     S     b     y                    ֲ  "             0     J     b     y                 #   ѳ  a        W     t  g             }       -          !          "   )  '   L  Q   t     ƶ                         4     Q     n               ķ                     '     <      O     p                 -   и            "   ,  b   O  )        ܹ          
  ,   %     R     k  	   p  "   z  %        ú     Ⱥ     ݺ  
          &     )        I  5   \  ^          $     %   0     V  ^   	  _   h  }   Ƚ     F  )     '   '  >   O  D     !   ӿ  '     -     #   K     o  )          )           )     ,   G     t                      E     $   :  A   _  )                             >     _  q   t       :        >     \  `   k               	           6     R  0   g                 )     &     #   2  -   V                           )   
     4  %   D  %   j  ,     '     :           -   ?  0   m  /          .               '   4  $   \  "                    2     Q     *   `            )     o        4     M  6        >     @     G  0   N        !     "     #        	          9     O  !   n       
          <             "  %   8  >   ^                                d     *   a  (     ,               0     6   E     |                           0          !        A     _  $   p                           $     "   6  $   Y     ~                                         ,     9     W     r       '               $     +   -  "   Y     |  )                              '   &     N     m       <                %        *     C     Z     m  m                  +     E     ^  +   x  3     1        
  '     -   @     n  '   w  '     .     	                   5     Q     m                                *     ?   @       B     p        G  /               .   -  O   \  )               	     <        B  5   `                           :        F  1   Y                                                       0     A     G  	   T     ^     m                                               '  
   5  
   @  	   K     U  !   [  )   }                           n   #  F     N        (  "   6     Y     ^  .   p  .     /     W     -   V  -     $     #     0     6   ,     c     q       (     1     )             0     I     X     r  !                          %        :  &   N     u       0                        3  7   M  .          4     #        %     D     a  '   v                      %        3     H     ]     t                      ,                  -     I     h     {       #               _     B   [                                   ;  &   Y                      N     m   !       &               7        ;     K  ;   _  V     +     "        A  &   [  !          r        .     3       /     H   '  F   p  w     N   /     ~  (               I     )   1  $   [  ,     '          %                  .     B  $   T  '   y  *     (                    J   6                 -     +        &  $   ,     Q  "   Z  +   }            -     J        S     o  %     "     9              )  "   J     m     ~                               
     "     <     Q     i  %                         %        9     P     c     w       [          !        %     >     R     W     t                                /     7   6  4   n  /               -        6  @   R       3                       #     3     I  1   i                           	     	               1          0   5     f     {  !          "                      !    :    M    ^    p                                 &   
    1    M    e         '    &        L    9   [     0        !           9    K    h    }                     #    #    $   *    O    _ &   p     !                   	         	   3 7   =    u D    ]    %   2 ,   X [    ;    w    7    K    #   	 /   =	    m	    	    	 &   	 U   	 @   A
 Q   
    
    
     +       D R   a L    .       0    G F   L                                 .    O    d    ~ 2    !    #           &    >    O    m             $            (   : #   c                 )           -    E '   ` '    '        0       (    C -   a 8    !    '           * !   A     c &            .        !   # B   E E    B    r   3    =    -    0   $ %   U Q   { &    V       K    T    h    z ;        '    '       > `   V [    I       ]    b          4    o    N   E  h             ! U   {"    " 6   "     ## <   D# 3   # O   # 1   $ "   7$ >   Z$ ,   $ G   $     % 	   /%    9% '   R% 6   z%    %    % 1   %    & L   & ^   f& L   & F   ' N   Y' ;   ' H   ' G   -( I   u( 8   ( 8   (    1)    G)    U) A   c) h   ) 	   *    * S   **    ~* .   * Z   * 0   +    F+ P   I+ T   + P   + T   @,    ,    , =   , -   , -   -    9-    B-    a- /   w- !   -    - !   -    	.    #. ^   =.    . H   . 4   . 4   )/    ^/    w/ (   / $   / .   / ^   0 :   q0 =   0 -   0 ?   1 +   X1 G   1    1    2    3 :   |4 :   4    4    4 /   4 
   +5    65 +   H5 9   t5 d   5 f   6 ,   z6 3   6 ,   6 0   7 4   97    n7 -   7 -   7    7 .   7    (8    E8 
   M8    X8 K   r8 ?   8    8 %   9 '   <9 5   d9 2   9    9 !   9    	: -   ): T   W: d   : o   ; _   ; `   ; >   B< C   < @   < h   = ?   o= O   = 4   = D   4> u   y> ;   >    +? 1   K?    }? I   ? 3   ? &   @ A   4@ <   v@ 0   @     @ R   A =   XA =   A ;   A @   B    QB "   B "   C    2C J   C 0   D    JD @   YD N   D    D    E 9   
E    DE A   WE N   E 2   E H   F &   dF !   F .   F *   F O   G "   WG $   zG 7   G 7   G 8   H E   HH    H    H &   H H   H    #I    CI 1   _I /   I i   I e   +J J   J 3   J 9   K 2   JK 9   }K A   K +   K Y   %L ?   L =   L    L I   M -   (N A   VN F   N 0   N 4   O Q   EO t   O ,   P 9   9P    sP K   jQ    Q    Q k   Q -   OR    }R    R *   R 6   R 9  S 5   ST [   T ,   T '   U '   :U !   bU :   U     U    U S   U 2   RV B   V S   V    W U   W    W    X    X #   X ,   X '   Y C   5Y ]   yY 
   Y    Y    Y m   Z    Z    Z !   Z +   Z    Z 
   [    [ b   +[ '   [    [ !   [ 2   [ _   )\ M   \ #   \    \ T   ] V   k] D   ] 9   ^ %   A^   g^ E    `    f`    3a    b    b    c    d *   (e    Se    qe    e $   e +   e &   e /   !f @   Qf 2   f -   f    f \   g R   mg    g    g $   g    g X   h    kh 1   h 8   h f   h =   Xi 6   i    i M   `j 1   j (   j 8   	k    Bk    Kk    Wk    k 
   k R   k    Al =   l     m    6m    Hm ;   Om )   m   m   n X   o    ,p [   Jp    p 5   p W   p 8   Tq .   q 9   q :   q &   1r +   Xr (   r *   r U   r $   .s =   Ss H   s    s    s    s M   t    Yt    bt    nt E   }t W   t Z   u -   vu    u     u (   u    	v    )v )   v 0   v .   'w    Vw +   sw P   w A   w N   2x E   x E   x 6   y *   Dy X   oy +   y     y    z    1z ;   Qz 2   z ,   z    z (   { 9   /{ 0   i{ #   { (   { >   { ;   &| )   b|    | g   | C   } %   X} *   ~} 0   } 0   } .   ~ .   :~ 9   i~ @   ~ G   ~ .   , e   [     g   \ 2   Ā :    T   2 s        .    *   E (   p -       ǂ j   ނ J   I V    '        $   , &   Q     x :    8   Ԅ 7    $   E    j 4   m       *    ǉ    ԉ 5    y    ;    8   ϊ A    1   J E   |     7    6    !     "   B )   e /    5                 c  + j   &    .   !    P    ] 9   s -    -   ۑ G   	    Q    d ,        ,                 9   %    _     %    0       ݔ     N    6   c 6    I   ѕ <    7   X     3    G   Ԗ E    B   b     A    L    9   K     B    -        +   * =   V \        *       " D   .    s !            H   ͚ z    J    |   ܛ    Y <   p     a   ˜    - %   >    d +   / J   [ Y                    ,    E      0   "    S .   m &    *   à -    :    B   W D    0   ߡ :    0   K .   | .    *   ڢ 9    ,   ? L   l     6    6            8    <    `    )   ~ D    #    L    P   ^     5   Z 3        ĩ      -    2   4 5   g 2    5   Ъ 1    4   8 *   m     B    (    $     0   E :   v #       լ >    ^   2 5    "   ǭ >       ) S    -   G ,   u 4    F   ׯ )       H    Q ?   d E    
    #           (    ; J   L R        h   
    s 1   6 H   h H    h      c    &     Y  ׷ U   1 M    g   չ t   = A    L    Z   A M    :    P   % 8   v P    7     P   8 X    >    0   ! 1   R ;        _    G   @ v    J    8   J ;    7    @    ?   8 (   x     6    v    >   -    l     D   J A    2    .    2   3 '   f b    :    %   , '   R O   z F    B    a   T 4    8    8   $ #   ] 2    L        J   ! F   l Y    M    q   [ @    ]    f   l f       : R   W '    )    M    O   J J        8       2 b   N     S   a         X       * -    a  ? h       
         a   ' E    C    C    E   W %    9    +    @   ) B   j )        3    y     /    ,    D    w   <             =    )    '   B    j Q   0 R    S    ,   ) 2   V _    ]       G    V +   s #        3    [        \ :   { ;    !    K    -   ` $    :    !    2    =   C <    G    *    &   1 %   X ?   ~ '                    = ;   S 4    1    ;    V   2 @    6    L    b   N J        K       T 5   s 9    %    !   	 I   + 8   u <    %    p    F        C    )    *   F "   q 5        7   u 5    7    5    5   Q T    p    c   M     P    \   "     J    J    X   '     3    .    2    5   ) 2   _ 5    1    4    .   / 7   ^     P    z        j            U    %   I &   o U        M   m (            o    2   ~ V        )   &    P .   o 2    j    #   < f   ` 9    +       -    6 
   V 
   a    l     /    !                   '     = 4   ^ +    :    #    5    '   T 3   |                        	 
    5   ' G   ]         +    ;    5   L        O        j @             k    f   ] j       / W    a   4 I    G    [   (  h          $   	    . <   J O    W    2   / ,   b     7    0    D    $   ] ,    =    (    @       W E   v 3    7    T   ( A   } +    "    5    i   D T    )    ^   - D    :    1    !   > K   ` 6    -       	 6   0	 L   g	    	    	 *   	 '   
 6   E
    |
    
 >   
 X   
    A     a 3    A    %    '    %   F @   l 5    /            6   M <    $    2    -    8   G 8    H    7       :    X =   j        K 4   * S   _ 1    9    o    #    !    z       P J     B   K 1    O    D    +   U        _ b  h 9    b       h             .    H   H 5            ]   j E    T    F   c 2    D    
   " "   - !   P (   r M    M    U   7  L     6        ! 1   /!    a! 6   ! 2   (" ,   [" Z   " c   " 	   G# =   Q#    # K   # d   # ,   T$ /   $ U   $    % 1   % E   % L   & @   ]& r   & 5   ' E   G' K   ' #   ' (   ' F   &( *   m( 6   ( +   ( &   ( .   ") 3   Q) +   ) 0   ) 3   ) Q   * !   h* 8   * 8   * 7   * D   4+ ,   y+ $   + &   +    + ,   ,    0, $   , C   - *   K- %   v-    - ;   -    - &   - 0   ". /   S. #   . ,   . 1   . `   / q   g/ f   / `   @0 7   0 4   0 `   1 :   o1    1 '   12 b   Y2 2   2 '   2 8   3    P3 1   m3 ?   3 a   3    A4 7   `4 #   4 )   4 -   4    5    *5 t  @5    6 `   6 B   /7 _   r7 (   7 *   7 I   &8 7   p8 J   8    8    9 ,   -9 /   Z9 (   9 #   9 #   9 )   9    %:    >:    \: #   |: !   : #   : '   : 2   ; V   A; =   ; 0   ; /   < .   7< (   f< N   < O   <    .=    F= l   = ;   Q> ]   > '   > F   ? ?   Z? $   ? 6   ?     ? #   @    ;@    X@ '   w@    @    @ I   @ I   A M   iA    A    A M   A    CB C   aB $   B *   B (   B 
   C    )C #   EC    iC i   C .   C    D    D E   ZE g   E    F {   F    ?G l   H    H M   !I X   oI ,   I 4   I 4   *J O   _J    J    jK    K 3   L *   L &   L R   "M ;   uM    M    ?N [   N /   2O    bO    nO .   O -   &P 0   TP $   P .   P -   P %   Q =   -Q +   kQ ,   Q 2   Q n   Q =   fR C   R '   R *   S    ;S :   US <   S ?   S 7   T 4   ET O   zT I   T E   U [   ZU M   U -   V #   2V 8   VV #   V U   V <   	W +   FW 1   rW G   W G   W J   4X A   X \   X 5   Y =   TY c   Y i   Y ;   `Z I   Z *   Z *   [ C   <[ E   [ K   [ 6   \ "   I\ h   l\ 7   \ >   ]    L]    ]    _^    >      	  j       7    /                o      P        0                        *  p  q    (  >                                      %                     }           G   j        S            v   C              C    T             _  ;                                                 d            >        '                 ^                *        +    !  ?   K          {            1      m              y                                 s      e        2    	             K    V      	  8   !         /     ^                    r  H            F                 r   |                                  D        $                       r    _           I  l  e          G    w             S            ,      J  %     s                      R                 Y      n           ;              
             4           $   W            d    ?  b               ,  6  w    h                     I  J     7   q  4    V      p                O    `                                              i                   X  ]        G      6  c                N                      B  :    C  l  =    v                           A           ,            j  6  g  F   ,     B       U        f          t     h        [  N          w             ]    a        W     <      u  k     	  {  S  1  `      a          '             {                                  )       i                    y              O       m              ^                  M                        P                  -      %               f        b                   t               C                            8  X          *                           
          k     z  w   z  @  T         ]      |                      \      J               '  D       0  b                       (             c                 k       G        s                    [        *  Z      y       )          \                    y         N      4                           v  h              
  $                              ;    6                    |     2               3  v    M  L              ~  S        9  Q     2            {                                         %        @   F      +                    .             V  Q            2                       z          +   g  a             !                                          v                M                 M     P        K             E        9                        @  ^                          c           a      [     )  W          c    A                  k  H            X             "  W                +  h              =                      Z                        }  i    G  )  j               -   &  (        u          |                        ^  g      (  c    e  /  5              -                                 w        L                  M                d      e                         `  o                       N  $      !                o        +                     R             p     "     	                 q                            T    y   n    r                   ]            x                                                 D            }  -                                <         R                       V              H   (           }              N     8           }              ]              b  p      ?                          H                                .  ~     8        &       =  B                         W  K  =          E    [       1                          _                             e  h           4      9   R  \              X  E        B       O  t    >           T  f                 l  f     F              n        )   B      1        \  L    f                &            <  0     Z    d   F  a  ;  ,     u     o                               O     Z         ?        T       A  x          8                 .      *   .        n   l                       g     L       J                               r            u        :         .                                      3           L    X      P                0  5  m             U    9  <        g  A               3                     ~                l    $      "  C             '            
                       /            i      O  9                          0  n  5    U             ;       &                 U             7  4      Y    m  _                                      t          m                      @  1                 u               s   I              Q  !  k        `           2  @    Z            "      A         ?  6    {          E      3              &    '  H            [                              j            >  #  R      #    S  z  Y   d  x  ~  b  P            t          _    q                    #  \       `       ~      E                3    o                #        :  
  q                                    I       :            Y    x    #   U         I         J    -    Q  Y  7  5       x                 /      5      <               :        =   "    %      K        i            D      p         |    V          z   D    Q  s    7                   total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s doesn't exist. Please specify --target or --directory %s doesn't look like an EFI partition.
 %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: not found %s: option '%c%s' doesn't allow an argument
 %s: option '%s' is ambiguous; possibilities: %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- --ppc PATH|--x86 FILE -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Bless DIR of HFS or HFS+ partition for PPC macs. Bless FILE of HFS or HFS+ partition for intel macs. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't create file: %s Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check if CPU supports Physical Address Extension. Check if FILE can be used as x86 multiboot kernel Check if FILE can be used as x86 multiboot2 kernel Check if FILE is ARM EFI file Check if FILE is BIOS bootsector Check if FILE is IA64 EFI file Check if FILE is hiberfil.sys in hibernated state Check if FILE is i386 EFI file Check if FILE is of specified type. Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear bit at BYTE:BIT in CMOS. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find a free BootNNNN slot Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Default server is ${net_default_server} Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not apply any reed-solomon codes when embedding core.img. This option is only available on x86 BIOS targets. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. EFI bootloader id isn't specified. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enable/disable RTS/CTS. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Evaluate arguments as GRUB commands Execute syslinux config in new context Execute syslinux config in new context taking only menu entries Execute syslinux config in same context Execute syslinux config in same context taking only menu entries Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FONTS FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File size: %s
 File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Generating grub configuration file ... Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s Graft point syntax (E.g. /boot/grub/grub.cfg=./grub.cfg) is accepted HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS INSTALL_DEVICE must be system device filename.
%s copies GRUB images into %s.  On some platforms, it may also install GRUB into the boot sector. If FILENAME is `-', the default value %s is used.

There is no `delete' command; if you want to delete the whole environment
block, use `rm %s'. Import ZFS wrapping key stored in FILE. Incorrect VDEV Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Installing for %s platform.
 Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s LOCALES Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List coreboot tables. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load DTB file. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load Truecrypt ISO. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load module. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... M MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MENU_ENTRY is a number, a menu item title or a menu item identifier. Please note that menu items in
submenus or sub-submenus require specifying the submenu components and then the
menu item component. The titles should be separated using the greater-than
character (>) with no extra spaces. Depending on your shell some characters including > may need escaping. More information about this is available
in the GRUB Manual in the section about the 'default' command.  MODULE MODULES Mac-style bless on HFS or HFS+ Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NOT RUNNING:  NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Netboot directory for %s created. Configure your DHCP server to point to %s
 Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OPTIONS FILE OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] PUBKEY_ID Paletted  Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Prepares GRUB network boot images at net_directory/subdir assuming net_directory being TFTP root. Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot into firmware setup menu. Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Render Apple .disk_label. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING STRING ... Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Script `%s' contains no commands and will do nothing
 Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set bit at BYTE:BIT in CMOS. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting GRUB_TIMEOUT to a non-zero value when GRUB_HIDDEN_TIMEOUT is set is no longer supported. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show CBMEM console content. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show raw dump of the CMOS contents. Show raw dump of the PCI configuration space. Show the contents of a file. Show the current mappings. Show the list of trusted keys. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Skip signature-checking of the environment file. Skip signature-checking of the public key file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Storage information for `%s' does not include type Storage information for `%s' indicates neither a plain partition nor a plain disk Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Switch to native disk drivers. If no modules are specified default set (pata,ahci,usbms,ohci,uhci,ehci) is used Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 T TARGET THEMES Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This VDEV is a RAIDZ%llu
 This VDEV is a mirror This entry can be booted by any user. This requires setting GRUB_DEFAULT=saved in %s/default/grub.\n Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Transform syslinux config into GRUB one. Translate SET1 characters to SET2 in STRING. Translate to lower case. Translate to upper case. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown platform `%s-%s' Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized compression `%s' Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME VDEV element number %d isn't correct
 VDEV element number %d:
 VDEV with %d children
 Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. You've found a bug Your embedding area is unusually small.  core.img won't fit in it. Your xorriso doesn't support `--grub2-boot-info'. Some features are disabled. Please use xorriso 1.2.9 or later. Your xorriso doesn't support `--grub2-boot-info'. Your core image is too big. Boot as disk is disabled. Please use xorriso 1.2.9 or later. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] [-s|--skip-sig] [variable_name_to_whitelist] [...] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [-s|--skip-sig] FILE SIGNATURE_FILE [PUBKEY_FILE] [-s|--skip-sig] PUBKEY_FILE [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [DIR] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTIONS] [SET1] [SET2] [STRING] [OPTION] SOURCE... [OPTION] [INSTALL_DEVICE] [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `%s' is not a local disk `cryptomount' command fails: %s `loopback' command fails: %s `nvsetenv' failed. 
You will have to set `boot-device' variable manually.  At the IEEE1275 prompt, type:
  %s
 `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found assume input is a pxelinux configuration file. assume input is a syslinux configuration file. assume input is an isolinux configuration file. attempt to install to encrypted disk without cryptodisk enabled. Set `%s' in file `%s'. attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format bless for ppc-based macs bless for x86-based macs blocklist FILE blocklists are incomplete blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't compress `%s' to `%s' can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s can't set %dx%d font size: Freetype error %d: %s cannot compress the kernel image cannot copy `%s' to `%s': %s cannot delete `%s': %s cannot find EFI directory cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot find locale `%s' cannot get translator command line for path `%s': %s cannot make temporary directory: %s cannot make temporary file: %s cannot open OS file `%s': %s cannot open `%s': %s cannot open configuration file `%s': %s cannot open directory `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu compress GRUB files [optional] connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find IEEE1275 device path for %s.
You will have to set `boot-device' variable manually couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d current directory of the syslinux [default is parent directory of input file]. current directory of the syslinux as it will be seen on runtime  [default is parent directory of input file]. cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit device tree must be supplied (see `devicetree' command) disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. disk read fails at offset %lld, length %lld diskboot.img size must be %u bytes do not install bootsector do not probe for filesystems in DEVICE domain name component is too long don't update LED state don't update the `boot-device'/`Boot*' NVRAM variables. This option is only available on EFI and IEEE1275 targets. done embed FILE as a memdisk image
Implies `-p (memdisk)/boot/grub' and overrides any prefix supplied previously, but the prefix itself can be overridden by later options embed FILE as an early config embed FILE as public key for signature checking embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enable ARCS (big-endian mips machines, mostly SGI) boot. Disables HFS+, APM, sparc64 and boot as disk image for i386-pc enable sparc boot. Disables HFS+, APM, ARCS and boot as disk image for i386-pc enabling %s support ... enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to copy Grub to the PReP partition failed to get canonical path of `%s' failed to read the sectors of the core image failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists filesystem on %s is neither HFS nor HFS+ firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification initrd already loaded install FONTS [default=%s] install GRUB for TARGET platform [default=%s] install GRUB images under the directory DIR/%s instead of the %s directory install THEMES [default=%s] install device isn't specified install even if problems are detected install only LOCALES [default=all] install only MODULES and their dependencies [default=all] invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid argument invalid block size invalid color specification `%s' invalid device tree invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid modinfo file `%s' invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' invalid zImage ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no EFI routines are available for your platform no EFI routines are available when running in BIOS mode no IEEE1275 routines are available for your platform no SGI routines are available for your platform no `/' in canonical filename no command is specified no compression is available for your platform no decryption key available no hints available for your platform. Expect reduced performance no network card found no random number generator is available for your OS no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected only ipv4 only ipv6 other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found pre-load specified modules MODULES prefer ipv4 prefer ipv6 premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory as it will be seen on runtime [default=/]. root directory of TFTP server root directory of the syslinux disk [default=/]. route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the label to render set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the ID of bootloader. This option is only available on EFI and Macs. the PReP partition is not empty. If you are sure you want to use it, run dd to clear it: `%s' the argument `%s' requires an integer the chosen partition is not a PReP partition the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive %s is defined multiple times in the device map %s the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected EFI error unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported platform %s
 unsupported serial port flow control unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for label use COLOR for label background use COLOR for text use DIR as the EFI System Partition root. use DIR for PPC MAC install. use FILE as font (PF2). use FILE as font for label use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] use themes under DIR [default=%s] use translations under DIR [default=%s] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists write output to FILE [default=stdout]. wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub 2.02~beta1
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-12-21 01:46+0100
Last-Translator: Automatically generated
Language-Team: none
Language: en@arabic
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=(n != 1);
               توتال معموري: %d كִيب
     نو پ‎رعفعررعد مودع اواִيلابلع
     پ‎رعفعررعد مودع: %uكس%u
   عدִيد صهعصكسوم ִينوالִيد   عدִيد وعرسִيون: %u.%u
   فاִيلعد تو ִينִيتִيالִيزع وִيدعو اداپ‎تعر   نو ִينفو اواִيلابلع   وبع ִينفو:   وعرسִيون: %d.%d  وعم سوفتوارع رعو: %d.%d
   ور:   (لعفتموست)  (معدִيال)  (رִيغهتموست)  - پ‎ارتִيتִيون ستارت ات %llu%sكִيب  - سعصتور سִيزع %uب  - توتال سִيزع %llu%sكִيب  - توتال سִيزع ونكنوون  [وپ‎تִيون...] %.*s: ارغپ‎_هعلپ‎_فمت پ‎ارامعتعر موست بع پ‎وسִيتִيوع %.*s: ارغپ‎_هعلپ‎_فمت پ‎ارامعتعر رعقوִيرعس ا والوع %.*s: ونكنوون ارغپ‎_هعلپ‎_فمت پ‎ارامعتعر %dس %dس رعماִينִينغ. %s اپ‎پ‎عارس تو صونتاִين ا %s فִيلعسيستعم وهִيصه ִيسن'ت كنوون تو رعسعروع سپ‎اصع فور دوس-ستيلع بووت.  ִينستاللִينغ غروب تهعرع صوولد رعسولت ִين فִيلعسيستعم دعستروصتִيون ִيف والوابلع داتا ִيس ووعرورִيتتعن بي غروب-سعتوپ‎ (--سكִيپ‎-فس-پ‎روبع دִيسابلعس تهִيس صهعصك, وسع ات يوور وون رִيسك) %s اپ‎پ‎عارس تو صونتاִين ا %s پ‎ارتִيتִيون ماپ‎ اند لدم وهִيصه ִيسن'ت كنوون تو بع ا سافع صومبִيناتִيون.  ִينستاللִينغ غروب تهعرع صوولد رعسولت ִين فִيلعسيستعم دعستروصتִيون ִيف والوابلع داتا ִيس ووعرورִيتتعن بي غروب-سعتوپ‎ (--سكִيپ‎-فس-پ‎روبع دִيسابلعس تهִيس صهعصك, وسع ات يوور وون رִيسك) %s اپ‎پ‎عارس تو صونتاִين ا %s پ‎ارتִيتִيون ماپ‎ وهִيصه ִيسن'ت كنوون تو رعسعروع سپ‎اصع فور دوس-ستيلع بووت.  ִينستاللִينغ غروب تهعرع صوولد رعسولت ִين فִيلعسيستعم دعستروصتִيون ִيف والوابلع داتا ִيس ووعرورִيتتعن بي غروب-سعتوپ‎ (--سكִيپ‎-فس-پ‎روبع دִيسابلعس تهִيس صهعصك, وسع ات يوور وون رִيسك) %s دوعس نوت سوپ‎پ‎ورت ووִيدس %s دوعسن'ت عكسִيست. پ‎لعاسع سپ‎عصִيفي --تارغعت ور --دִيرعصتوري %s دوعسن'ت لووك لִيكع ان عفִي پ‎ارتִيتִيون.
 %s غعنعراتعس ا كعيبوارد لايووت فور غروب وسִينغ صكبصومپ‎\ن %s ִيس دعپ‎رعصاتعد. وسع سعت غفكسپ‎ايلواد=%s بعفورع لִينوكس صومماند ִينستعاد.
 %s ִيس دعپ‎رعصاتعد. وغا مودع %d ִيسن'ت رعصوغنִيزعد. وسع سعت غفكسپ‎ايلواد=وִيدتهكسهعִيغهت[كسدعپ‎ته] بعفورع لִينوكس صومماند ִينستعاد.
 %s ִيس نوت يعت سوپ‎پ‎ورتعد بي غروب-مكصونفִيغ.\ن %s, وִيته هورد %s %s, وִيته هورد %s (رعصووعري مودع) %s, وִيته لִينوكس %s %s, وִيته لִينوكس %s (رعصووعري مودع) %s, وִيته كسعن %s اند لִينوكس %s %s, وִيته كسعن %s اند لִينوكس %s (رعصووعري مودع) %s, وִيته كسعن هيپ‎عروִيسور %s, وִيته كفرععبسد %s %s, وִيته كفرععبسد %s (رعصووعري مودع) %s, وִيته كعرنعل %s (وִيا %s) %s, وִيته كعرنعل %s (وִيا %s, رعصووعري مودع) %s: هاسه مִيسماتصه
 %s: وك
 %s: رعاد عررور
 %s: توو ماني ارغومعنتس
 %s: يوو موست رون تهִيس اس رووت\ن %s: عررور: %s: ִينفو: %s: ִينوالִيد وپ‎تִيون -- '%c'
 %s: نوت فووند %s: وپ‎تִيون '%c%s' دوعسن'ت اللوو ان ارغومعنت
 %s: وپ‎تִيون '%s' ִيس امبִيغوووس; پ‎وسسִيبִيلִيتִيعس: %s: وپ‎تִيون '--%s' دوعسن'ت اللوو ان ارغومعنت
 %s: وپ‎تִيون '--%s' رعقوִيرعس ان ارغومعنت
 %s: وپ‎تִيون '-و %s' دوعسن'ت اللوو ان ارغومعنت
 %s: وپ‎تִيون '-و %s' ִيس امبִيغوووس
 %s: وپ‎تִيون '-و %s' رعقوִيرعس ان ارغومعنت
 %s: وپ‎تִيون رعقوִيرعس ان ارغومعنت -- '%c'
 %s: وپ‎تִيون رعقوִيرعس ان ارغومعنت -- `%s'\ن %s: ونرعصوغنִيزعد وپ‎تִيون '%c%s'
 %s: ونرعصوغنִيزعد وپ‎تִيون '--%s'
 %s: وارنִينغ: (32-بִيت) (64-بִيت) (پ‎روغرام عررور) نو وعرسִيون كنوون!? (پ‎روغرام عررور) وپ‎تִيون سهوولد هاوع بععن رعصوغنִيزعد!? (ون %s) - لابعل `%s' - لاست مودִيفִيصاتִيون تִيمع %d-%02d-%02d %02d:%02d:%02d %s --مورع-- --پ‎پ‎ص پ‎اته|--كس86 فִيلع -ه هاسه [-ص فִيلع [-پ‎ پ‎رعفִيكس]] [فִيلع1 [فִيلع2 ...]] -ل | -ر | [-س] غروبدعو وسدִيسك. .5 16-بִيت پ‎روتعصتعد ִينتعرفاصع سوپ‎پ‎ورتعد
 16-بִيت پ‎روتعصتعد ִينتعرفاصع ونسوپ‎پ‎ورتعد
 32-بִيت پ‎روتعصتعد ִينتعرفاصع سوپ‎پ‎ورتعد
 32-بִيت پ‎روتعصتعد ִينتعرفاصع ونسوپ‎پ‎ورتعد
 =وال > اصپ‎ִي نون-وولاتִيلع ستوراغع رام اصپ‎ִي رعصلاִيمابلع رام اصپ‎ִي سهوتدوون فاִيلعد اددر اددر والوع [ماسك] اددر [سִيزع] اددر1,ماسك1[,اددر2,ماسك2[,...]] اددرعسس دنسسعروعر اپ‎م دִيسابلعد
 اپ‎م دִيسعنغاغعد
 اپ‎م عنابلعد
 اپ‎م عنغاغعد
 ارغپ‎_هعلپ‎_فمت: %s والوع ִيس لعسس تهان ور عقوال تو %s اسصִيִي اصصعپ‎ت دوس-ستيلع صر/نل لִينع عندִينغس. اصتִيوع ִينپ‎وت تعرمִينالس: اصتִيوع ووتپ‎وت تعرمִينالس: اداپ‎تعر `%s':
 ادد ا دنس سعروعر ادد ا نعتوورك اددرعسس. ادد ا نعتوورك رووتع. ادوانصعد وپ‎تִيونس فور %s ادوانصعد وپ‎تִيونس فور %s (وִيته كسعن هيپ‎عروִيسور) اللوو تو ִينتعرروپ‎ت وִيته عسص. اسك فور فִيلع نامع تو رعبووت فروم. اسسومع ִينپ‎وت ִيس هعكس. اسسومع ִينپ‎وت ִيس پ‎اسسپ‎هراسع. اسسومع ִينپ‎وت ִيس راو. اتتعمپ‎تִينغ تو دعصريپ‎ت ماستعر كعي... اتتعمپ‎تִينغ تو ִينستالل غروب تو ا دִيسك وִيته مولتִيپ‎لع پ‎ارتִيتִيون لابعلس ور بوته پ‎ارتִيتִيون لابعل اند فִيلعسيستعم.  تهִيس ִيس نوت سوپ‎پ‎ورتعد يعت. اتتعمپ‎تִينغ تو ִينستالل غروب تو ا دִيسك وִيته مولتִيپ‎لع پ‎ارتִيتִيون لابعلس.  تهִيس ִيس نوت سوپ‎پ‎ورتعد يعت. اتتعمپ‎تִينغ تو ִينستالل غروب تو ا پ‎ارتִيتִيونلعسس دִيسك ور تو ا پ‎ارتִيتִيون.  تهִيس ִيس ا باد ִيدعا. اواִيلابلع ִينپ‎وت تعرمִينالس: اواִيلابلع ووتپ‎وت تعرمִينالس: ب ب/س بִيوس_دومپ‎ [ִينت10_دومپ‎] بلوصك بيتع:بִيت باصكغرووند ִيماغع مودع. باسع دִيرعصتوري فور هاسه لִيست. بلعسس دִير وف هفس ور هفس+ پ‎ارتִيتִيون فور پ‎پ‎ص ماصس. بلعسس فִيلع وف هفس ور هفس+ پ‎ارتִيتִيون فور ִينتعل ماصس. بووت بִيوس-باسعد سيستعم. بووت ان وپ‎عراتִينغ سيستعم. بووت ִينتو سִينغلع مودع. بووت وִيته دعبوغ معسساغعس. بووت وִيته وعربوسع معسساغعس. بووتִينغ `%s' بووتִينغ ا صومماند لִيست بووتִينغ ִين بلִيند مودع بووتپ‎اته: %s
 بووتپ‎اته: وناواִيلابلع
 برعاك ִينتو غدب صغا  صولور صومماند [ارغس] صپ‎و ִيدلع دوعسن'ت سلوو دوون پ‎روصعسسور
 صپ‎و ִيدلع سلووس دوون پ‎روصعسسور
 صس5536 ات %d:%d.%d
 صان'ت صرعاتع فִيلع: %s صان'ت عنابلع روم ارعا. صهانغع صونفִيغورعد دعوִيصعس. صهانغع پ‎ارتִيتִيون تيپ‎ع صهعصك الت كعي. صهعصك صونترول كعي. صهعصك سهִيفت كعي. صهعصك فور صپ‎و فعاتورعس. صهعصك هاسهعس وف فִيلعس وִيته هاسه لִيست فִيلع. صهعصك ִيف صپ‎و سوپ‎پ‎ورتس 64-بִيت (لونغ) مودع (دعفاولت). صهعصك ִيف صپ‎و سوپ‎پ‎ورتس پ‎هيسִيصال اددرعسس عكستعنسִيون. صهعصك ִيف فִيلع صان بع وسعد اس كس86 مولتִيبووت كعرنعل صهعصك ִيف فִيلع صان بع وسعد اس كس86 مولتִيبووت2 كعرنعل صهعصك ִيف فִيلع ִيس ارم عفִي فִيلع صهعصك ִيف فִيلع ִيس بִيوس بووتسعصتور صهعصك ִيف فִيلع ִيس ִيا64 عفִي فִيلع صهعصك ִيف فִيلع ִيس هִيبعرفִيل.سيس ִين هִيبعرناتعد ستاتع صهعصك ִيف فִيلع ִيس ִي386 عفִي فִيلع صهعصك ִيف فִيلع ִيس وف سپ‎عصִيفִيعد تيپ‎ع. صهعصك كعي مودִيفִيعر ستاتوس. صهعصك وهعتهعر وسعر ִيس ִين وسعرلִيست. صهعصكس غروب سصرִيپ‎ت صونفִيغوراتִيون فִيلع فور سينتاكس عررورس. صلعار بִيت ات بيتع:بִيت ִين صموس. صلعار تهع سصرععن. صلعارعد اصتִيوع فلاغ ون %d. 
 صومماندس: صومپ‎ارع فִيلع وִيته لوصال فִيلع لوصال. صومپ‎ارع فִيلع `%s' وִيته `%s':
 صومپ‎ارع توو فִيلعس. صومپ‎وتع كسنو ووִيد وف تهع دعوִيصع. صومپ‎وتع ور صهعصك هاسه صهعصكسوم. صونفִيغورع سعرִيال پ‎ورت. صونتִينوع لووپ‎س صونوعرت صوممون فونت فִيلع فورماتس ִينتو پ‎ف2 صوپ‎ي فִيلع تو لوصال فִيلع لوصال. صوپ‎ي فִيلع تو ستاندارد ووتپ‎وت. صوولد نوت لوصاتع فپ‎سوا درִيوعر صوولدن'ت فִيند ا فرعع بووتنننن سلوت صوولدن'ت فִيند پ‎هيسִيصال وولومع `%s'. سومع مودولعس ماي بع مִيسسִينغ فروم صورع ִيماغع. صوولدن'ت لواد سها256 صوولدن'ت لواد سها512 صرعاتع بִيوس-لִيكع ستروصتورعس فور باصكوارد صومپ‎اتִيبִيلִيتي وִيته عكسִيستִينغ وس. صرعاتع ا بلانك عنوִيرونمعنت بلوصك فִيلع. صوررعنت تعرمִينفو تيپ‎عس: دعوִيصع دعوִيصع [پ‎ارتִيتִيون[+/-[تيپ‎ع]]] ... دعوִيصع موست بع ان وس دعوִيصع (ع.غ. /دعو/سدا). دعوִيصع_نامع دִير دִيرعصتوري [وسبوندلعرعقوִيرعد] دنسسعروعر دعبوغ توول فور فִيلعسيستعم درִيوعر. دعصلارع معموري رعغִيونس اس فاولتي (بادرام). دعصومپ‎رعسسور ִيس توو بִيغ دعفاولت سعروعر ִيس ${نعت_دعفاولت_سعروعر} دعفִينع ا معنو عنتري. دعفִينع ا سوبمعنو. دعلعتع ا نعتوورك اددرعسس. دعلعتع ا نعتوورك رووتع. دعلعتع تهع سپ‎عصִيفִيعد لووپ‎باصك درִيوع. دعلعتع وارִيابلعس. دعتعرمִينع درִيوعر. دعتعرمִينع فִيلعسيستعم ووִيد. دعتعرمִينع فִيلعسيستعم لابعل. دعتعرمִينع فִيلعسيستعم تيپ‎ع. دعتعرمִينع پ‎ارتִيتִيون ماپ‎ تيپ‎ع. دعوִيصع %s: دعوִيد: %s
 دعوִيد: وناواִيلابلع دִيرعصت صولور, ماسك: %d/%d/%d/%d  پ‎وس: %d/%d/%d/%d دִيسابلع اصپ‎ִي. دִيسابلع سمپ‎. دִيسابلع الل بووت ووتپ‎وت. دִيسابلع/عنابلع سمارت (0/1). دִيسصاردִينغ ִيمپ‎روپ‎عرلي نعستعد پ‎ارتִيتִيون (%s,%s,%s%d) دִيسك صاصهع ستاتִيستִيصس: هִيتس = %lu (%lu.%02lu%%), مִيسسعس = %lu
 دִيسك صوونت موست پ‎رعصعدع دִيسكس لִيست.
 دִيسپ‎لاي فپ‎سوا وعرسִيون. دִيسپ‎لاي سمارت هعالته ستاتوس. دִيسپ‎لاي ا لִينع وف تعكست. دִيسپ‎لاي بلوصكلִيست وف فִيلع. دִيسپ‎لاي ووتپ‎وت ون الل صونسولعس. دִيسپ‎لاي پ‎ووعر مودع. دִيسپ‎لاي تهع وساغع وف تهִيس صومماند اند عكسִيت. دִيسپ‎لاي تهִيس هعلپ‎ اند عكسִيت. دִيسپ‎لاي/سعت صوررعنت داتعتִيمع. دو نوت اپ‎پ‎لي اني رععد-سولومون صودعس وهعن عمبعددִينغ صورع.ִيمغ. تهִيس وپ‎تִيون ִيس ونلي اواִيلابلع ون كس86 بִيوس تارغعتس. دو نوت ووتپ‎وت تهع تراִيلִينغ نعولִينع. دو نوت پ‎رִينت معسساغعس. دو نوت پ‎روبع اني فلوپ‎پ‎ي درִيوع. دو نوت وسع اپ‎م تو هالت تهع صومپ‎وتعر. دو نوتهִينغ, سوصصعسسفوللي. دو نوتهִينغ, ونسوصصعسسفوللي. دون'ت دִيسپ‎لاي بووت دִياغنوستִيص معسساغعس. دون'ت لواد هوست تابلعس سپ‎عصִيفִيعد بي صومما-سعپ‎اراتعد لִيست. دون'ت رعبووت, يِوست هالت. دون'ت ستوپ‎ افتعر فִيرست عررور. دون'ت وپ‎داتع عبدا. ماي فִيكس فاִيلورعس ور هانغس ون سومع بִيوسعس بوت ماكعس ִيت ִينعففعصتִيوع وִيته وس نوت رعصعִيوִينغ رسدپ‎ فروم غروب. عفִي بووتلوادعر ִيد ִيسن'ت سپ‎عصִيفִيعد. عنووار عنووار [عنووار] ... عررور: نو والִيد كعيبوارد لايووت فووند. صهعصك تهع ִينپ‎وت.
 عسص ات اني تִيمع عكسִيتس. عكسپ‎رعسسִيون عكسپ‎رعسسִيون ] علاپ‎سعد تִيمع: %d.%03d س 
 علاپ‎سعد تִيمع: %d.%03d سعصوندس 
 عمبعددִينغ ִيس نوت پ‎وسسִيبلع.  غروب صان ونلي بع ִينستاللعد ִين تهִيس سعتوپ‎ بي وسִينغ بلوصكلִيستس.  هووعوعر, بلوصكلִيستس ارع ونرعلִيابلع اند تهعִير وسع ִيس دִيسصووراغعد. عمولاتع ا كعيستروكع سعقوعنصع عنابلع ִينتعرپ‎رعتاتִيون وف باصكسلاسه عسصاپ‎عس. عنابلع/دִيسابلع رتس/صتس. عنتعر زفس پ‎اسسوورد:  عنتعر ִين كدب ون بووت. عنتعر نورمال مودع. عنتعر پ‎اسسپ‎هراسع فور %s%s%s (%s):  عنتعر پ‎اسسوورد:  عنتعر وسعرنامع:  عررور ִين پ‎ارسִينغ صومماند لִينع ارغومعنتس
 عوالواتع ان عكسپ‎رعسسִيون. عوالواتع ارغومعنتس اس غروب صومماندس عكسعصوتع سيسلִينوكس صونفִيغ ִين نعو صونتعكست عكسعصوتع سيسلִينوكس صونفִيغ ִين نعو صونتعكست تاكִينغ ونلي معنو عنترִيعس عكسعصوتع سيسلִينوكس صونفִيغ ִين سامع صونتعكست عكسعصوتع سيسلִينوكس صونفִيغ ִين سامع صونتعكست تاكִينغ ونلي معنو عنترִيعس عكسִيت فاִيلعد عكسִيت فروم غروب. عكسִيت فروم لووپ‎س عكسִيت فروم نورمال مودع. عكسپ‎ورت وارִيابلعس. عكسپ‎ورت وعرسִيون 1 تابلعس تو تهع وس. عكسپ‎ورت وعرسִيون 2 اند وعرسִيون 3 تابلعس تو تهع وس. فִيلع فִيلع [ارغ ...] فִيلع [ارغس...] فִيلع | تعمپ‎و [پ‎ִيتصه1 دوراتִيون1] [پ‎ִيتصه2 دوراتִيون2] ...  فִيلع... فִيلع1 فִيلع2 فִيلعنامع صومماند فִيلعسيستعم [وارִيابلع] فִيلع|پ‎رومپ‎ت فونتس فورمات فپ‎سوا پ‎روتوصول واسن'ت ابلع تو فִيند تهع ִينتعرفاصع فپ‎سوا رعوִيسִيون: %x
 فروم-تو[,فروم-تو] فروم[ك|م|غ] تو[ك|م|غ] فت_ִينִيت_فرععتيپ‎ع فاִيلس فاִيلعد تو بووت بوته دعفاولت اند فاللباصك عنترִيعس.
 فاִيلعد تو صرعاتع `دعوִيصع-ماپ‎پ‎عر' ترعع فاللִينغ باصك تو `%s' فִيلع سִيزع: %s
 فִيلع سيستعم `%s' دوعسن'ت سوپ‎پ‎ورت عمبعددִينغ فִيلعس دִيففعر ات تهع وففسعت %llu: 0كس%x [%s], 0كس%x [%s]
 فִيلعس دִيففعر ִين سִيزع: %llu [%s], %llu [%s]
 فִيلعسيستعم صاننوت بع اصصعسسعد فִيلعسيستعم تيپ‎ع %s فִيلل هيبرִيد مبر وف غپ‎ت درִيوع دعوִيصع. سپ‎عصִيفִيعد پ‎ارتִيتִيونس وִيلل بع ا پ‎ارت وف هيبرִيد مبر. وپ‎ تو 3 پ‎ارتִيتִيونس ارع اللووعد. تيپ‎ع ִيس ان مبر تيپ‎ع. + معانس تهات پ‎ارتִيتִيون ִيس اصتִيوع. ونلي ونع پ‎ارتִيتִيون صان بع اصتִيوع. فִينالִيزع لوادִينغ وف عفִي عمولاتور. فִيرست تري تهع دعوִيصع هִينت ִيف صوررعنتلي روننִينغ ون ارص. ִيف هִينت عندس ִين صومما, السو تري سوبپ‎ارتִيتִيونس فִيرست تري تهع دعوִيصع هִينت ִيف صوررعنتلي روننִينغ ون بִيوس. ִيف هִينت عندس ִين صومما, السو تري سوبپ‎ارتִيتִيونس فִيرست تري تهع دعوִيصع هִينت ִيف صوررعنتلي روننִينغ ون عفִي. ִيف هִينت عندس ִين صومما, السو تري سوبپ‎ارتִيتִيونس فִيرست تري تهع دعوִيصع هִينت ִيف صوررعنتلي روننִينغ ون ִيععع1275. ִيف هִينت عندس ִين صومما, السو تري سوبپ‎ارتִيتִيونس فִيرست تري تهع دعوִيصع هִينت ִيف دִيرعصت هاردوارع اصصعسس ִيس سوپ‎پ‎ورتعد. ִيف هִينت عندس ִين صومما, السو تري سوبپ‎ارتִيتִيونس فִيرست تري تهع دعوִيصع هִينت. ִيف هִينت عندس ִين صومما, السو تري سوبپ‎ارتִيتִيونس فִيكس وִيدعو پ‎روبلعم. فووند %s ون %s (%s)\ن فووند %s ون %s\ن فووند غنو ماصه: %s فووند هورد مودولع: %s فووند نعتبسد كعرنعل: %s\ن فووند باصكغرووند: %s\ن فووند ִينִيترد ִيماغع: %s\ن فووند كعرنعل مودولع دִيرعصتوري: %s\ن فووند كعرنعل وف فرععبسد: %s\ن فووند لִينوكس ִيماغع: %s\ن فووند تهعمع: %s\ن فرععتيپ‎ع عررور %d لوادִينغ غليپ‎ه 0كس%x فور و+0كس%x%s فرععزع اتا سعصورִيتي سعتتִينغس ونتִيل رعسعت. فرִيداي غ غنو غروب  وعرسִيون %s غروب بووت معنو غروب دوعسن'ت كنوو هوو تو هالت تهִيس ماصهִينع يعت! غروب عمولاتور. غروبدعوִيصع=پ‎لان9دعوִيصع غارباغع ִين ارغپ‎_هعلپ‎_فمت: %s غعنعراتع غروب كعيبوارد لايووت فروم لִينوكس صونسولع ونع. غعنعراتع پ‎بكدف2 پ‎اسسوورد هاسه. غعنعراتع ا غروب صونفִيغ فִيلع غعنعراتع ا ستاندالونع ִيماغع (صونتاִينִينغ الل مودولعس) ִين تهع سعلعصتعد فورمات غعنعراتִينغ غروب صونفִيغوراتִيون فִيلع ... غعت صرص32 صهعصكسوم وف فִيلع. غعت دִيسك صاصهع ִينفو. غعت/سعت اتا دִيسك پ‎ارامعتعرس. غִيب غִيب/س غرافت پ‎وִينت سينتاكس (ع.غ. /بووت/غروب/غروب.صفغ=./غروب.صفغ) ִيس اصصعپ‎تعد هاسه هִينت هالت تهع سيستعم, ִيف پ‎وسسִيبلع وسִينغ اپ‎م. هالتس تهع صومپ‎وتعر.  تهִيس صومماند دوعس نوت وورك ون الل فִيرموارع ִيمپ‎لعمعنتاتִيونس. هاندلع ن بيتعس ִين ووتپ‎وت فִيلع. هعللو وورلد هعرصولعس  ִيد ִيماغع1 [ִيماغع2 ...] موونتپ‎وִينت ִيماغع_پ‎اته صومماندس ִينستالل_دعوִيصع موست بع سيستعم دعوִيصع فִيلعنامع.
%s صوپ‎ִيعس غروب ִيماغعس ִينتو %s.  ون سومع پ‎لاتفورمس, ִيت ماي السو ִينستالل غروب ִينتو تهع بووت سعصتور. ִيف فִيلعنامع ִيس `-', تهع دعفاولت والوع %s ִيس وسعد.

تهعرع ִيس نو `دعلعتع' صومماند; ִيف يوو وانت تو دعلعتع تهع وهولع عنوִيرونمعنت
بلوصك, وسع `رم %s'. ִيمپ‎ورت زفس وراپ‎پ‎ִينغ كعي ستورعد ִين فִيلع. ִينصوررعصت ودعو ִينصوررعصت وִيرتوال دعوִيصع: نو تيپ‎ع اواִيلابلع ִينسعرت ا مودولع. ִينستالل غروب ون يوور درִيوع. ִينستاللاتִيون فִينִيسهعد. نو عررور رعپ‎ورتعد. ִينستاللִينغ فور %s پ‎لاتفورم.
 ִينوالִيد باصك رعفعرعنصع ִينوالִيد صهاراصتعر صلاسس نامع ִينوالִيد صوللاتִيون صهاراصتعر ִينوالִيد صومماند %s.
 ִينوالִيد صونتعنت وف \{\} ִينوالִيد دعوִيصع `%s'.
 ִينوالִيد دִيسك صوونت.
 ִينوالִيد پ‎رعصعدִينغ رعغولار عكسپ‎رعسسִيون ִينوالִيد رانغع عند ִينوالִيد رعغولار عكسپ‎رعسسִيون ִينووكع وسعر صونفִيغوراتִيون رووتִينغ. ك كعرنعل ارغس كعيبوارد_كعي كعيبوارد كعي تو قوִيصكلي بووت تهִيس عنتري. كִيب كִيب/س لوصالعس لعاف وִيرتوال دعوִيصع (فִيلع ور دִيسك) لعغاصي `اسك' پ‎ارامعتعر نو لونغعر سوپ‎پ‎ورتعد. لعغعند: ماسك/پ‎وسִيتִيون=رعد/غرععن/بلوع/رعسعروعد لعنغته وف غعنعراتعد هاسه لعنغته وف سالت لִيست دنس سعروعرس لִيست پ‎صִي دعوִيصعس. لִيست الل فִيلعس. لִيست اواִيلابلع وִيدعو مودعس. ִيف رعسولوتִيون ִيس غִيوعن سهوو ونلي مودعس ماتصهִينغ ִيت. لִيست صورعبووت تابلعس. لִيست دعوִيصعس اند فִيلعس. لִيست دعوִيصعس ور فִيلعس. لִيست دعوִيصعس. لִيست فִيلعس ִين پ‎اته. لִيست معموري ماپ‎ پ‎رووִيدعد بي فִيرموارع. لִيست وف سوپ‎پ‎ورتعد وִيدعو مودعس: لִيست وف وسعرس اللووعد تو بووت تهִيس عنتري. لִيست ور سعلعصت ان ִينپ‎وت تعرمִينال. لִيست ور سعلعصت ان ووتپ‎وت تعرمִينال. لִيست تهع صوررعنت وارִيابلعس. لִيست تهع لوادعد فونتس. لִيست وارִيابلعس فروم عنوִيرونمعنت بلوصك فִيلع. لواد 64-بִيت كسنو ִيماغع. لواد بִيوس دومپ‎. لواد دتب فִيلع. لواد فرععبسد عنو. لواد فرععبسد كعرنعل مودولع (علف). لواد فرععبسد كعرنعل مودولع. لواد فرععدوس كعرنعل.سيس. لواد لִينوكس. لواد نتلدر ور بووتمغر. لواد نعتبسد كعرنعل مودولع (علف). لواد نعتبسد كعرنعل مودولع. لواد پ‎لان9 كعرنعل. لواد تروعصريپ‎ت ִيسو. لواد كسنو عكستعنسִيون دִيرعصتوري. لواد كسنو عكستعنسִيون پ‎اصكاغع. لواد كسنو عكستعنسִيون. لواد كسنو ִيماغع. لواد كسنو رامدִيسك. ִيت وִيلل بع اواִيلابلع ִين وس اس مد0. لواد `دعوִيصع-پ‎روپ‎عرتִيعس' دومپ‎. لواد ا پ‎كسع ִيماغع. لواد ا كعيبوارد لايووت. لواد ا مولتִيبووت 2 كعرنعل. لواد ا مولتִيبووت 2 مودولع. لواد ا مولتִيبووت كعرنعل. لواد ا مولتִيبووت مودولع. لواد ا سپ‎لاسه ִيماغع فور كسنو. لواد ان ִيماغع وف هִيبعرناتعد كسنو. لواد اند ִينִيتִيالִيزع عفִي عمولاتور. لواد انوتهعر بووت لوادعر. لواد انوتهعر صونفִيغ فִيلع بوت تاكع ونلي معنو عنترִيعس. لواد انوتهعر صونفִيغ فִيلع وִيتهووت صهانغִينغ صونتعكست بوت تاكع ونلي معنو عنترִيعس. لواد انوتهعر صونفִيغ فִيلع وִيتهووت صهانغִينغ صونتعكست. لواد انوتهعر صونفִيغ فִيلع. لواد انوتهعر صورعبووت پ‎ايلواد لواد باصكغرووند ִيماغع فور اصتִيوع تعرمִينال. لواد هوست اصپ‎ִي تابلعس اند تابلعس سپ‎عصִيفִيعد بي ارغومعنتس. لواد ִينִيترد. لواد كوپ‎عنبسد رامدִيسك. لواد كعرنعل وف فرععبسد. لواد كعرنعل وف نعتبسد. لواد كعرنعل وف وپ‎عنبسد. لواد مودولع. لواد ونلي تابلعس سپ‎عصִيفִيعد بي صومما-سعپ‎اراتعد لִيست. لواد تهع سامع فִيلع ִين مولتִيپ‎لع وايس. لواد وارִيابلعس فروم عنوִيرونمعنت بلوصك فִيلع. لواد زفس صريپ‎تو كعي. لوادعد فونتس: لوادִينغ غنو ماصه ... لوادִينغ لִينوكس %s ... لوادִينغ كسعن %s ... لوادִينغ ִينִيتִيال رامدִيسك ... لوادִينغ كعرنعل وف فرععبسد %s ... لوادִينغ كعرنعل وف ִيللوموس ... لوادִينغ تهع هورد ... م ماص وعرִيفִيصاتִيون فاִيلعد معنو_عنتري ִيس ا نومبعر, ا معنو ִيتعم تִيتلع ور ا معنو ִيتعم ִيدعنتִيفִيعر. معنو_عنتري ִيس ا نومبعر, ا معنو ִيتعم تִيتلع ور ا معنو ִيتعم ִيدعنتִيفִيعر. پ‎لعاسع نوتع تهات معنو ִيتعمس ִين
سوبمعنوس ور سوب-سوبمعنوس رعقوִيرع سپ‎عصִيفيִينغ تهع سوبمعنو صومپ‎ونعنتس اند تهعن تهع
معنو ִيتعم صومپ‎ونعنت. تهع تִيتلعس سهوولد بع سعپ‎اراتعد وسִينغ تهع غرعاتعر-تهان
صهاراصتعر (>) وִيته نو عكسترا سپ‎اصعس. دعپ‎عندִينغ ون يوور سهعلل سومع صهاراصتعرس ִينصلودִينغ > ماي نععد عسصاپ‎ִينغ. مورع ִينفورماتִيون ابووت تهִيس ִيس اواִيلابلع
ִين تهع غروب مانوال ִين تهع سعصتִيون ابووت تهع 'دعفاولت' صومماند.  مودولع مودولعس ماص-ستيلع بلعسس ون هفس ور هفس+ ماكع غروب صد-روم, دִيسك, پ‎عندرִيوع اند فلوپ‎پ‎ي بووتابلع ִيماغع. ماكع غروب كعيبوارد لايووت فִيلع. ماكع ا بووتابلع ִيماغع وف غروب. ماكع ا وִيرتوال درִيوع فروم ا فִيلع. ماكع پ‎ارتִيتִيون اصتִيوع ماناغع تهع بִيوس درִيوع ماپ‎پ‎ִينغس. مانداتوري ور وپ‎تִيونال ارغومعنتس تو لونغ وپ‎تִيونس ارع السو مانداتوري ور وپ‎تִيونال فور اني صوررعسپ‎وندִينغ سهورت وپ‎تִيونس. مانִيپ‎ولاتع پ‎صִي دعوִيصعس. معاسورع تִيمع وسعد بي صومماند معموري عكسهاوستعد معموري تيپ‎ع: ددر2. معموري تيپ‎ع: ونكنوون. معنو عنتري ִيدعنتִيفִيعر. معنو عنتري نوت سپ‎عصִيفִيعد. معنو عنتري تيپ‎ع. مִيب مִيب/س مִينִيمال باسه-لִيكع لִينع عدִيتִينغ ִيس سوپ‎پ‎ورتعد. فور تهع فִيرست وورد, تاب لִيستس پ‎وسسִيبلع صومماند صومپ‎لعتִيونس. انيوهعرع علسع تاب لִيستس پ‎وسسִيبلع دعوִيصع ور فִيلع صومپ‎لعتִيونس. %s مִينִيموم عماصس-لִيكع سصرععن عدִيتִينغ ִيس سوپ‎پ‎ورتعد. تاب لִيستس صومپ‎لعتִيونس. پ‎رعسس صترل-كس ور ف10 تو بووت, صترل-ص ور ف2 فور ا صومماند-لִينع ور عسص تو دִيسصارد عدִيتس اند رعتورن تو تهع غروب معنو. مִيسسִينغ ارغومعنتس
 مִيسسִينغ ִينپ‎وت فִيلع
 مونداي مونوصهرومع  مورع تهان ونع ִينستالل دعوִيصع? مورع تهان ونع معنو عنتري? موونت ا صريپ‎تو دعوִيصع. موونت الل وولومعس وִيته `بووت' فلاغ سعت. موونت الل. موونت بي ووִيد. موونت صريپ‎تو دعوִيصعس. نامع نامع [وارִيابلع] [هִينتس] نوت روننִينغ:  نوم نومبعر_وف_سعصوندس نامع	رعف صوونت	دعپ‎عندعنصִيعس
 ناتִيوع دִيسك درִيوعرس ارع ִين وسع. رعفوسִينغ تو وسع فִيرموارع دִيسك ִينتعرفاصع. نعتبووت دִيرعصتوري فور %s صرعاتعد. صونفִيغورع يوور دهصپ‎ سعروعر تو پ‎وִينت تو %s
 نعتوورك پ‎روتوصولس: نعو مبر ִيس ورִيتتعن تو `%s'
 نو صس5536 فووند نو فپ‎سوا فووند نو بووت تִيمع ستاتִيستִيصس ִيس اواִيلابلع
 نو صومماند ִيس سپ‎عصִيفִيعد.
 نو دعوִيصع ִيس سپ‎عصִيفִيعد.
 نو دִيسك صاصهع ستاتִيستִيصس اواִيلابلع
 نو درִيوعس هاوع بععن رعماپ‎پ‎عد نو كنوون فִيلعسيستعم دعتعصتعد نو ماتصه نو پ‎اته ִيس سپ‎عصִيفִيعد.
 نو پ‎اته ور دعوִيصع ִيس سپ‎عصִيفִيعد.
 نو پ‎رعوִيووس رعغولار عكسپ‎رعسسִيون نو وִيرتوال دعوִيصع ترعع اواִيلابلع نون-صهاִين 4  نوت عنووغه پ‎ارامعتعرس تو صومماند.
 نوو صوننعصت تهع رعموتع دعبوغغعر, پ‎لعاسع. نومبعر وف پ‎بكدف2 ִيتعراتִيونس وپ‎تִيونس فִيلع وس دִيسك #نوم ------> غروب/بִيوس دعوִيصع وس فִيلع %s وپ‎عن عررور: %s وپ‎تִيونس: ووت وف رانغع لووكوپ‎: %d
 ووت وف رانغع سوبستִيتوتִيون (%d, %d)
 ووعررִيدع غوعسسعد ماپ‎پ‎ִينغ وف پ‎لان9 دعوִيصعس. پ‎ پ‎ارتִيتִيون صومماندس پ‎اته پ‎بكدف2 هاسه وف يوور پ‎اسسوورد ִيس %s
 پ‎ورت پ‎ورت والوع [ماسك] پ‎وبكعي_ִيد پ‎العتتعد  پ‎ارسع لعغاصي صونفִيغ ִين نعو صونتعكست پ‎ارسع لعغاصي صونفִيغ ִين نعو صونتعكست تاكִينغ ونلي معنو عنترִيعس پ‎ارسع لعغاصي صونفִيغ ִين سامع صونتعكست پ‎ارسع لعغاصي صونفִيغ ִين سامع صونتعكست تاكִينغ ونلي معنو عنترִيعس پ‎ارت نو: %s.
 پ‎ارتִيتִيون %d ִيس اصتִيوع نوو. 
 پ‎ارتִيتִيون %s: پ‎ارتִيتִيون ستيلع `%s' دوعسن'ت سوپ‎پ‎ورت عمبعددִينغ پ‎اته: %s
 پ‎اته: وناواִيلابلع پ‎عرفورم صومماندس ون پ‎ارتִيتִيون.
وسع `پ‎ارتتوول پ‎ارتִيتִيون هعلپ‎' فور تهع لִيست وف اواִيلابلع صومماندس. پ‎عرفورم ا دنس لووكوپ‎ پ‎عرفورم ان ִيپ‎و6 اوتوصونفִيغوراتִيون پ‎عرفورم بوته دִيرعصت اند رعوعرسع ماپ‎پ‎ִينغس. پ‎ִيب پ‎ִيب/س پ‎لانار  پ‎لاي ا تونع. پ‎لعاسع دون'ت وسع ولد تִيتلع `%s' فور غروب_دعفاولت, وسع `%s' (فور وعرسִيونس بعفورع 2.00) ور `%s' (فور 2.00 ور لاتعر) پ‎وول غوִيد: %016llx
 پ‎وول غوִيد: وناواִيلابلع پ‎وول نامع: %s
 پ‎وول نامع: وناواִيلابلع پ‎وول ستاتع: اصتִيوع پ‎وول ستاتع: دعسترويعد پ‎وول ستاتع: عكسپ‎ورتعد پ‎وول ستاتع: لعوعل 2 ارص دعوִيصع پ‎وول ستاتع: پ‎وتعنتִياللي اصتִيوع پ‎وول ستاتع: رعسعروعد فور هوت سپ‎ارع پ‎وول ستاتع: وناواִيلابلع پ‎وول ستاتع: ونִينִيتִيالִيزعد پ‎وسسִيبلع ارغومعنتس ارع: پ‎وسسִيبلع صومماندس ارع: پ‎وسسִيبلع دعوִيصعس ارع: پ‎وسسִيبلع فִيلعس ارع: پ‎وسسִيبلع پ‎ارتִيتִيونس ارع: پ‎وسسִيبلع تهִينغس ارع: پ‎رعماتورع عند وف رعغولار عكسپ‎رعسسִيون پ‎رعپ‎ارعس غروب نعتوورك بووت ִيماغعس ات نعت_دִيرعصتوري/سوبدִير اسسومִينغ نعت_دִيرعصتوري بعִينغ تفتپ‎ رووت. پ‎رعسس اني كعي تو صونتִينوع... پ‎رعسس اني كعي تو لاونصه كسنو پ‎رعسس عنتعر تو بووت تهع سعلعصتعد وس, `ع' تو عدִيت تهع صومماندس بعفورع بووتִينغ ور `ص' فور ا صومماند-لִينع. پ‎رعسس عنتعر تو بووت تهع سعلعصتعد وس, `ع' تو عدִيت تهع صومماندس بعفورع بووتִينغ ور `ص' فور ا صومماند-لִينع. عسص تو رعتورن پ‎رعوִيووس معنو. پ‎رִينت معموري ִينفورماتִيون. پ‎رִينت زفس ִينفو ابووت دعوִيصع. پ‎رִينت زفس-بووتفسوبيِ ور ستورع ִيت ִينتو وارִيابلع پ‎رִينت ا بلوصك لִيست. پ‎رִينت اند عكسعصوتع بلوصك ارغومعنت. پ‎رִينت باصكتراصع. پ‎رִينت درִيوع ִيدعنتִيتي اند سعتتִينغس. پ‎رִينت سִيزعس ִين ا هومان رعادابلع فورمات. پ‎روبع دعوִيصع ִينفورماتִيون فور ا غִيوعن پ‎اته (ور دعوִيصع, ִيف تهع -د وپ‎تִيون ִيس غִيوعن). رام هولدִينغ صورعبووت تابلعس رام هولدִينغ فִيرموارع صودع رام سلوت نومبعر %d
 رعغعكسپ‎ سترִينغ روم ִيماغع ִيس پ‎رعسعنت. رعاد 16-بִيت والوع فروم اددر. رعاد 16-بִيت والوع فروم پ‎ورت. رعاد 32-بִيت والوع فروم اددر. رعاد 32-بִيت والوع فروم پ‎ورت. رعاد 8-بִيت والوع فروم اددر. رعاد 8-بִيت والوع فروم پ‎ورت. رعاد ونلي لعنغته بيتعس. رعبووت فاִيلعد رعبووت ִينتو فִيرموارع سعتوپ‎ معنو. رعبووت تهع صومپ‎وتعر. رععنتعر پ‎اسسوورد:  رعغִيستعر %x وف %x:%02x.%x ִيس %x
 رعغولار عكسپ‎رعسسִيون توو بִيغ رعمووع ا دنس سعروعر رعمووع ا مودولع. رعمووع ان عنوִيرونمعنت وارִيابلع. رعمووع اني معموري رعغִيونس ִين سپ‎عصִيفִيعد رانغع. رعندعر اپ‎پ‎لع .دִيسك_لابعل. رعپ‎ورت بوغس تو %s.
 رعپ‎ورت بوغس تو <بوغ-غروب@غنو.ورغ>. رعقوعستعد سعرִيال تعرمִينال بوت غروب_سعرִيال_صومماند ִيس ونسپ‎عصִيفִيعد. دعفاولت پ‎ارامعتعرس وִيلل بع وسعد. رعسعت الل ماپ‎پ‎ִينغس تو تهع دعفاولت والوعس. رعترִيعوع دعوִيصع ִينفو. رعتورن فروم ا فونصتִيون. رعتورن تو ִيععع1275 پ‎رومپ‎ت. رون `غدب %s %d', اند سعت ارغس.هولد تو زعرو.
 رون `غو' تو رعسومع غروب. سعصس سهورتنامع سهورتنامع صارد اددرعسس [هواددرعسس] سهورتنامع نعت [ִينتعرفاصع| غو غاتعواي] سִيزع سوورصع|-و ووִيد|-ا|-ب سترִينغ سترִينغ ... ساتورداي ساوع رعاد والوع ִينتو وارִيابلع وارنامع. ساوع وارִيابلعس تو عنوִيرونمعنت بلوصك فִيلع. ساي `هعللو وورلد'. سصرִيپ‎ت `%s' صونتاִينس نو صومماندس اند وִيلل دو نوتهִينغ
 سعارصه دعوִيصعس بي ووִيد. ִيف وارִيابلع ִيس سپ‎عصִيفִيعد, تهع فִيرست دعوִيصع فووند ִيس سعت تو ا وارִيابلع. سعارصه دعوִيصعس بي ا فִيلع. سعارصه دعوִيصعس بي ا فִيلعسيستعم ووִيد. سعارصه دعوִيصعس بي ا فִيلعسيستعم لابعل. سعارصه دعوִيصعس بي فִيلع, فִيلعسيستعم لابعل ور فִيلعسيستعم ووִيد. ִيف --سعت ִيس سپ‎عصִيفִيعد, تهع فִيرست دعوִيصع فووند ִيس سعت تو ا وارִيابلع. ִيف نو وارִيابلع نامع ִيس سپ‎عصִيفִيعد, `رووت' ִيس وسعد. سعارصه دعوִيصعس بي فִيلع. ִيف وارִيابلع ִيس سپ‎عصִيفִيعد, تهع فִيرست دعوִيصع فووند ִيس سعت تو ا وارִيابلع. سعارصه دعوִيصعس بي لابعل. ִيف وارִيابلع ִيس سپ‎عصִيفִيعد, تهع فִيرست دعوִيصع فووند ִيس سعت تو ا وارִيابلع. سعصتور %llu ִيس الرعادي ִين وسع بي راִيد صونتروللعر `%s'; اووִيدִينغ ִيت.  پ‎لعاسع اسك تهع مانوفاصتورعر نوت تو ستورع داتا ִين مبر غاپ‎ سعصتور %llu ִيس الرعادي ִين وسع بي تهع پ‎روغرام `%s'; اووִيدִينغ ִيت.  تهִيس سوفتوارع ماي صاوسع بووت ور وتهعر پ‎روبلعمس ִين فوتورع.  پ‎لعاسع اسك ִيتس اوتهورس نوت تو ستورع داتا ִين تهع بووت تراصك سعلعصت دعوִيصع بي ִيتس پ‎وسִيتִيون ون تهع بوس. سعلعصت دعوִيصع بي وعندور اند دعوִيصع ִيدس. سعت ادوانصعد پ‎ووعر ماناغعمعنت
(1=لوو, ..., 254=هִيغه, 255=وفف). سعت اوتوماتִيص اصووستִيص ماناغعمعنت
(0=وفف, 128=قوִيعت, ..., 254=فاست). سعت وعمִيد وف رسدپ‎, كسسدت اند رسدت. سعت وعمتابلع ִيد وف رسدپ‎, كسسدت اند رسدت. سعت وعمتابلع رعوִيسִيون وف رسدپ‎, كسسدت اند رسدت. سعت `هִيددعن' فلاغ ִين پ‎ارتִيتִيون تيپ‎ع سعت ا وارִيابلع تو رعتورن والوع. سعت ا وارִيابلع تو تهع فִيرست دعوִيصع فووند. سعت ان عنوִيرونمعنت وارִيابلع. سعت باصكغرووند صولور فور اصتִيوع تعرمִينال. سعت بִيت ات بيتع:بִيت ִين صموس. سعت صرعاتور فִيعلد وف رسدپ‎, كسسدت اند رسدت. سعت صرعاتور رعوִيسִيون وف رسدپ‎, كسسدت اند رسدت. سعت دعبوغ عنوִيرونمعنت وارִيابلع. سعت درִيوع تو سلععپ‎ مودع. سعت درִيوع تو ستاندبي مودع. سعت پ‎وسִيتִيونال پ‎ارامعتعرس. سعت رووت دعوִيصع. سعت ستاندبي تִيمعووت
(0=وفف, 1=5س, 2=10س, ..., 240=20م, 241=30م, ...). سعت تعرمִينفو تيپ‎ع وف تعرم  تو تيپ‎ع.
 سعت تهع دعفاولت بووت معنو عنتري فور غروب, فور تهع نعكست بووت ونلي. سعت تهع دعفاولت بووت معنو عنتري فور غروب. سعت تهع سعرִيال پ‎ورت اددرعسس. سعت تهع سعرִيال پ‎ورت پ‎ارִيتي. سعت تهع سعرִيال پ‎ورت سپ‎ععد. سعت تهع سعرִيال پ‎ورت ستوپ‎ بִيتس. سعت تهع سعرִيال پ‎ورت وورد لعنغته. سعت تهع سعرִيال ونִيت. سعت وپ‎ ִيماغعس تو بووت فروم دعوִيصع.

يوو سهوولد نوت نورماللي رون تهִيس پ‎روغرام دִيرعصتلي.  وسع غروب-ִينستالل ִينستعاد. سعت وسعر پ‎اسسوورد (پ‎بكدف2).  سعت وسعر پ‎اسسوورد (پ‎لاִينتعكست). ونرعصوممعندعد اند ִينسعصورع. سعت وارִيابلع وִيته وسعر ִينپ‎وت. سعت وارִيابلعس. سعتتִينغ غروب_تִيمعووت تو ا نون-زعرو والوع وهعن غروب_هִيددعن_تִيمعووت ִيس سعت ִيس نو لونغعر سوپ‎پ‎ورتعد. سعتتִينغ پ‎ارتִيتִيون تيپ‎ع تو 0كس%x
 سهִيفت پ‎وسִيتִيونال پ‎ارامعتعرس. سهوو اصپ‎ִي ִينفورماتִيون. سهوو اپ‎م ִينفورماتִيون. سهوو صبمعم صونسولع صونتعنت. سهوو ا هعلپ‎ معسساغع. سهوو ا لونغ لִيست وִيته مورع دعتاִيلعد ִينفورماتִيون. سهوو صونتعنتس وف فִيلع ִين هعكس. سهوو لوادعد مودولعس. سهوو معموري صونتعنتس. سهوو راو صونتعنتس وف اتا ִيدعنتִيفي سعصتور. سهوو راو صونتعنتس وف ا فִيلع ور معموري. سهوو راو دومپ‎ وف تهع صموس صونتعنتس. سهوو راو دومپ‎ وف تهع پ‎صִي صونفִيغوراتִيون سپ‎اصع. سهوو تهع صونتعنتس وف ا فִيلع. سهوو تهع صوررعنت ماپ‎پ‎ִينغس. سهوو تهع لִيست وف تروستعد كعيس. سهوو تهִيس معسساغع. سهوو وعرسִيون 1 تابلعس ونلي. سهوو وعرسִيون 2 اند وعرسִيون 3 تابلعس ونلي. سهوتدوون فاִيلعد سִيمولاتع غروب-لعغاصي `ִينִيترد' صومماند سִيمولاتع غروب-لعغاصي `كعرنعل' صومماند سִيمولاتع غروب-لعغاصي `مودولعنوونزִيپ‎' صومماند سִيمولاتع غروب-لعغاصي `پ‎اسسوورد' صومماند سִيمولاتع غروب-لعغاصي `پ‎اسسوورد' صومماند ִين معنو عنتري مودع سكִيپ‎ ن بيتعس فروم ووتپ‎وت فִيلع. سكִيپ‎ وففسعت بيتعس فروم تهع بعغִيننִينغ وف فִيلع. سكִيپ‎ سִيغناتورع-صهعصكִينغ وف تهع عنوִيرونمعنت فִيلع. سكִيپ‎ سִيغناتورع-صهعصكִينغ وف تهع پ‎وبلִيص كعي فִيلع. سلوت %d وپ‎عنعد
 سومع هورد ستوفف فووند, بوت نوت عنووغه تو بووت. سپ‎عصִيفي فִيلعنامع. سپ‎عصִيفي هاسه تو وسع. سپ‎عصִيفي ونع ور مورع فونت فִيلعس تو لواد. سپ‎عصִيفي سִيزع فور عاصه رعاد وپ‎عراتִيون سپ‎عصִيفي تهع نومبعر وف ִينپ‎وت فִيلعس. سپ‎ععد: %s 
 ستارت غدب ستوب ون غִيوعن پ‎ورت ستوپ‎ غدب ستوب ستوراغع ִينفورماتִيون فور `%s' دوعس نوت ִينصلودع تيپ‎ع ستوراغع ִينفورماتִيون فور `%s' ִيندִيصاتعس نعִيتهعر ا پ‎لاִين پ‎ارتִيتִيون نور ا پ‎لاִين دִيسك ستورع ماتصهعد صومپ‎ونعنت نومبعر ִين وارنامع. سوصصعسس سونداي سوپ‎پ‎رعسس نورمال ووتپ‎وت (وارنִينغس رعماִين). سوִيتصه تو ناتִيوع دִيسك درִيوعرس. ִيف نو مودولعس ارع سپ‎عصִيفִيعد دعفاولت سعت (پ‎اتا,اهصִي,وسبمس,وهصִي,وهصִي,عهصִي) ִيس وسعد سينتاكس عررور ات لִينع %u
 سينتاكس عررورس ارع دعتعصتعد ִين غعنعراتعد غروب صونفִيغ فִيلع.
عنسورع تهات تهعرع ارع نو عررورس ִين /عتص/دعفاولت/غروب
اند /عتص/غروب.د/* فִيلعس ور پ‎لعاسع فִيلع ا بوغ رعپ‎ورت وִيته
%s فִيلع اتتاصهعد. سيستعم ماناغعمعنت بوس صونتروللعر ִي/و سپ‎اصع ִيس ات 0كس%x
 ت تارغعت تهعمعس تارغعت فورمات نوت سپ‎عصִيفִيعد (وسع تهع -و وپ‎تִيون). تعرمִينال هاس سپ‎عصִيفִيعد غعومعتري. تعرمִينال ִيس اسصִيִي-ونلي [دعفاولت]. تعرمִينال ִيس لوغִيصال-وردعرعد وتف-8. تعرمִينال ִيس وִيسواللي-وردعرعد وتف-8. تعست وسب سوپ‎پ‎ورت. تعست بִيت ات بيتع:بִيت ִين صموس. تعست فִيلع رعاد سپ‎ععد. تعست ִيف رعغعكسپ‎ ماتصهعس سترִينغ. تعست وִيدعو سوبسيستعم ִين مودع وكسه. تعست وִيدعو سوبسيستعم. تعكست-ونلي  تهع فִيلعس ارع ִيدعنتִيصال.
 تهع هִيغهلִيغهتعد عنتري وִيلل بع عكسعصوتعد اوتوماتִيصاللي ִين %dس. تهִيس ودعو ִيس ا راִيدز%llu
 تهִيس ودعو ִيس ا مִيررور تهִيس عنتري صان بع بووتعد بي اني وسعر. تهִيس رعقوִيرعس سعتتִينغ غروب_دعفاولت=ساوعد ִين %s/دعفاولت/غروب.\ن تهورسداي تִيب تִيب/س توول تو عدִيت عنوִيرونمعنت بلوصك. توتال فلاسه سִيزع: %d ب.
 تراִيلִينغ باصكسلاسه ترانسفورم 64-بִيت ووִيد تو فورمات سوִيتابلع فور كسنو. ִيف -ل ִيس غִيوعن كععپ‎ ִيت لووعرصاسع اس دونع بي بلكִيد. ترانسفورم ا سيستعم فִيلعنامع ִينتو غروب ونع. ترانسفورم سيسلִينوكس صونفִيغ ִينتو غروب ونع. ترانسلاتع سعت1 صهاراصتعرس تو سعت2 ִين سترִينغ. ترانسلاتع تو لووعر صاسع. ترانسلاتع تو وپ‎پ‎عر صاسع. ترانسلاتعس تهع سترִينغ وִيته تهع صوررعنت سعتتִينغس. تري '%s --هعلپ‎' ور '%s --وساغع' فور مورع ִينفورماتִيون.
 توعسداي وسعر پ‎اسسوورد وسعر پ‎بكدف2_پ‎اسسوورد وسعرنامع[,وسعرنامع] وتف-8 ونابلع تو صرعاتع پ‎ִيپ‎ع: %s ونابلع تو دعتعرمִينع يوور پ‎لاتفورم. وسع --تارغعت. ونابلع تو فورك: %s ونابلع تو وپ‎عن سترعام فروم %s: %s ونابلع تو رعترִيعوع پ‎وول ستاتع ونصومپ‎رعسس داتا. ونصومپ‎رعسس فִيلع بعفورع صهعصكسوممִينغ. ونكنوون اددرعسس تيپ‎ع %d
 ونكنوون صومماند `%s'.
 ونكنوون صومپ‎رعسسִيون فورمات %s ونكنوون عنصودִينغ ونكنوون عكسترا ارغومعنت `%s'. ونكنوون غسوب فونت فعاتورع 0كس%x (%s)
 ونكنوون كعيبوارد سصان صودع 0كس%02x
 ونكنوون كعيبوارد سصان ִيدعنتִيفִيعر %s
 ونكنوون پ‎لاتفورم `%s-%s' ونكنوون سيستعم عررور ونكنوون وִيدعو مودع  ونكنوون وִيرتوال دعوִيصع تيپ‎ع: %s
 ونلواد عفִي عمولاتور. ونماتصهعد ( ور \( ونماتصهعد ) ور \) ونماتصهعد [ ور [^ ونماتصهعد \{ ونرعصوغنִيزعد صومپ‎رعسسִيون `%s' ونرعصوغنִيزعد وپ‎تִيون `%s'\ن ونرعصوغنִيزعد پ‎وول ستاتع ونسوپ‎پ‎ورتعد اددرعسس تيپ‎ع %d
 ونسوپ‎پ‎ورتعد صووعراغع سپ‎عصִيفִيصاتִيون: %d
 ونسوپ‎پ‎ورتعد هو اددرعسس تيپ‎ع %d
 ونسوپ‎پ‎ورتعد ִيماغع فورمات ونسوپ‎پ‎ورتعد سوبستִيتوتִيون فلاغ: 0كس%x
 ونسوپ‎پ‎ورتعد سوبستִيتوتִيون سپ‎عصִيفִيصاتִيون: %d
 ونسوپ‎پ‎ورتعد سوبستִيتوتִيون تيپ‎ع: %d
 وساغع: وساغع: %s -و ووتپ‎وت صكبماپ‎_ارغومعنتس...\ن وساغع: %s دعوִيصع
 وساغع: %s [ִينفִيلع [ووتفִيلع]]
 وساغع: %s [وپ‎تִيون] معنو_عنتري\ن وساغع: %s [وپ‎تִيون]\ن وسع صد-روم اس رووت. وسع غدب رعموتع دعبوغغعر ִينستعاد وف ددب. وسع سترִينغ اس معنو عنتري بودي. وسع صومپ‎ִيلعد-ִين رووت دعوִيصع. وسع سعرִيال صونسولع. وسع تهع %C اند %C كعيس تو سعلعصت وهִيصه عنتري ִيس هִيغهلִيغهتعد. وار ִينتعرفاصع نومبعر دعسصرִيپ‎تִيون وارنامع ودعو علعمعنت نومبعر %d ִيسن'ت صوررعصت
 ودعو علعمعنت نومبعر %d:
 ودعو وִيته %d صهִيلدرعن
 وعربوسع صوونتدوون. وعرִيفي دعتاصهعد سִيغناتورع. وعرسִيون %u.%u
32-بִيت صس = 0كس%x, لعن = 0كس%x, وففسعت = 0كس%x
16-بִيت صس = 0كس%x, لعن = 0كس%x
دس = 0كس%x, لعن = 0كس%x
 وִيرتوال دعوִيصع ִيس دعغرادعد وִيرتوال دعوִيصع ִيس فاولتعد وִيرتوال دعوִيصع ִيس وففلִينع وִيرتوال دعوִيصع ִيس ونلִينع وִيرتوال دعوִيصع ִيس رعمووعد وارنִينغ: نو صونسولع وִيلل بع اواִيلابلع تو وس وارنִينغ: نو پ‎لاتفورم-سپ‎عصִيفִيص ִينستالل واس پ‎عرفورمعد وارنִينغ: ونسوپ‎پ‎ورتعد فونت فعاتورع پ‎ارامعتعرس: %x
 وִيدتهكسهعִيغهت. واִيت فور ا سپ‎عصִيفִيعد نومبعر وف سعصوندس. واִيت فور كعيپ‎رعسس افتعر عوعري لִينع وف ووتپ‎وت. وارنִينغ: وارنִينغ: ִينوالִيد باصكغرووند صولور `%s'
 وارنִينغ: ִينوالִيد فورعغرووند صولور `%s'
 وارنִينغ: سينتاكس عررور (مִيسسִينغ سلاسه) ִين `%s'
 وعدنعسداي وִيندووس نت/2000/كسپ‎ (لوادعر) وִيندووس وִيستا/7 (لوادعر) ورִيتع 16-بִيت والوع تو اددر. ورִيتع 16-بִيت والوع تو پ‎ورت. ورִيتع 32-بִيت والوع تو اددر. ورִيتع 32-بִيت والوع تو پ‎ورت. ورִيتع 8-بִيت والوع تو اددر. ورִيتع 8-بִيت والوع تو پ‎ورت. ورִيتتعن سپ‎د بيتعس: %d ب.
 كسعن هيپ‎عروִيسور, وعرسִيون %s يوو  يوو نععد تو سپ‎عصִيفي ات لعاست ونع صومماند.
 يوو وִيلل هاوع تو سعت `سيستعمپ‎ارتִيتִيون' اند `وسلوادعر' مانواللي. يوو'وع فووند ا بوغ يوور عمبعددִينغ ارعا ִيس ونوسواللي سمالل.  صورع.ִيمغ وون'ت فִيت ִين ִيت. يوور كسوررִيسو دوعسن'ت سوپ‎پ‎ورت `--غروب2-بووت-ִينفو'. سومع فعاتورعس ارع دִيسابلعد. پ‎لعاسع وسع كسوررִيسو 1.2.9 ور لاتعر. يوور كسوررִيسو دوعسن'ت سوپ‎پ‎ورت `--غروب2-بووت-ִينفو'. يوور صورع ִيماغع ִيس توو بִيغ. بووت اس دִيسك ִيس دִيسابلعد. پ‎لعاسع وسع كسوررִيسو 1.2.9 ور لاتعر. [--اپ‎پ‎عند|--رعمووع] [تعرمִينال1] [تعرمִينال2] ... [--فورصع|--بپ‎ب] فִيلع [--مد5] پ‎اسسود [فִيلع] [--نو-معم-وپ‎تִيون] [--تيپ‎ع=تيپ‎ع] فִيلع [ارغ ...] [-1|-2] [--عكسصلودع=تابلع1,تابلع2|--لواد-ونلي=تابلع1,تابلع2] فִيلع1 [فִيلع2] [...] [-ص فִيلع [-پ‎ پ‎رعفִيكس]] [فִيلع1 [فִيلع2 ...]] [-د] دعوִيصعنامع فִيلع. [-ع|-ن] سترִينغ [-ف فִيلع] [-ف فִيلع] [-س|--سكִيپ‎-سִيغ] [وارִيابلع_نامع_تو_وهִيتعلִيست] [...] [-ف فִيلع] وارִيابلع_نامع [...] [-ف|-ل|-و|-س|-ن] [--هִينت هִينت [--هִينت هִينت] ...] نامع [-ه|-پ‎|-ر] [فִيلع] [-ل] غروبووִيد [وارنامع] [-ل|-ه|-ا] [فִيلع ...] [-م (سترعتصه|نورمال)] فִيلع [-س پ‎وسִيتִيون] [-د دعوִيصع] [-س پ‎وسִيتִيون] [-د دعوִيصع] [-و وار] رعغִيستعر[=والوع[:ماسك]] [-س سִيزع] فִيلعنامع [-س|--سكִيپ‎-سִيغ] فִيلع سִيغناتورع_فִيلع [پ‎وبكعي_فִيلع] [-س|--سكִيپ‎-سִيغ] پ‎وبكعي_فִيلع [اددر|صومونִيت][,سپ‎ععد] [ارغ] [صارد [هواددرعسس]] [صارد] [دִير] [عنووار=والوع] [عنووار] [كعيستروكع1] [كعيستروكع2] ... [مودولع1 مودولع2 ...] [نومبعر:]وارنامع [نوم] [وپ‎تִيونس...] [وپ‎تִيونس] [وپ‎تִيونس] دִيسك [وپ‎تִيونس] فִيلع_ور_دعوִيصع [وپ‎تִيونس] فونت_فִيلعس [وپ‎تִيونس] [سعت1] [سعت2] [سترִينغ] [وپ‎تִيون] سوورصع... [وپ‎تִيون] [ִينستالل_دعوִيصع] [وپ‎تִيون]... [مودولعس] [وپ‎تִيون]... [پ‎اته|دعوִيصع] [وپ‎تس] [پ‎اته] [پ‎اتتعرن ...] [وسعرلִيست] [والوع]... [وكسه[كسد]] [وكسه] [[-ا|-و|-و] [-غ وكسه] تعرم [تيپ‎ع]] [[يعار-]مونته-داي] [هوور:مִينوتع[:سعصوند]] [بوس]:[سلوت][.فونص] [وعندور]:[دعوִيصع] `%s' ִيس نوت ا لوصال دִيسك `صريپ‎توموونت' صومماند فاִيلس: %s `لووپ‎باصك' صومماند فاִيلس: %s `نوسعتعنو' فاִيلعد. 
يوو وִيلل هاوع تو سعت `بووت-دعوִيصع' وارִيابلع مانواللي.  ات تهع ִيععع1275 پ‎رومپ‎ت, تيپ‎ع:
  %s
 `وبپ‎پ‎اته' نوت فووند ִين پ‎ارعنت دִيرس وف `%s', نو ִيععع1275 نامع دִيسصووعري ا والوع واس اسسִيغنعد تو تهع ارغومعنت `%s' وهִيلع ִيت دوعسن'ت رعقوִيرع ان ارغومعنت اصصعسس دعنִيعد ادد نوتع سعغمعنت فور صهرپ‎ ִيععع1275 اددر اددرعسس نوت فووند اسسومع ִينپ‎وت ִيس ا پ‎كسعلִينوكس صونفִيغوراتִيون فִيلع. اسسومع ִينپ‎وت ִيس ا سيسلִينوكس صونفִيغوراتִيون فִيلع. اسسومع ִينپ‎وت ִيس ان ִيسولִينوكس صونفִيغوراتִيون فִيلع. اتتعمپ‎ت تو ִينستالل تو عنصريپ‎تعد دִيسك وִيتهووت صريپ‎تودִيسك عنابلعد. سعت `%s' ִين فִيلع `%s'. اتتعمپ‎ت تو رعاد ور ورִيتع ووتسִيدع وف دִيسك `%s' اتتعمپ‎ت تو رعاد ور ورִيتع ووتسִيدع وف پ‎ارتִيتִيون اتتعمپ‎ت تو رعاد پ‎است تهع عند وف فִيلع اتتعمپ‎ت تو سععك ووتسִيدع وف تهع فִيلع اتتعمپ‎تִينغ تو رعاد تهع صورع ִيماغع `%s' فروم غروب اتتعمپ‎تִينغ تو رعاد تهع صورع ִيماغع `%s' فروم غروب اغاִين اواִيلابلع رام اواִيلابلع فورماتس: باد سִيغناتورع باسع_اددر = 0كس%llx, لعنغته = 0كس%llx, %s
 باسع_اددر = 0كس%llx, لعنغته = 0كس%llx, تيپ‎ع = 0كس%x
 بִيتماپ‎ فִيلع `%s' ִيس وف ونسوپ‎پ‎ورتعد فورمات بلعسس فور پ‎پ‎ص-باسعد ماصس بلعسس فور كس86-باسعد ماصس بلوصكلִيست فִيلع بلوصكلִيستس ارع ִينصومپ‎لعتع بلوصكلִيستس ارع ִينوالִيد بلوصكسִيزع ִيس نوت دִيوִيسִيبلع بي 512 صان'ت برعاك 0 لووپ‎س صان'ت صومپ‎رعسس `%s' تو `%s' صان'ت دعتعرمִينع فִيلعسيستعم ون %s صان'ت فִيند صومماند `%s' صان'ت موونت عنصريپ‎تعد وولومع `%s': %s صان'ت وپ‎عن `%s': %s صان'ت وپ‎عن فִيلع %s, ִيندعكس %d: عررور %d صان'ت رعترִيعوع بلوصكلִيستس صان'ت رعترִيعوع بلوصكلִيستس: %s صان'ت سعت %dكس%d فونت سִيزع: فرععتيپ‎ع عررور %d: %s صاننوت صومپ‎رعسس تهع كعرنعل ִيماغع صاننوت صوپ‎ي `%s' تو `%s': %s صاننوت دعلعتع `%s': %s صاننوت فִيند عفִي دִيرعصتوري صاننوت فִيند ا غروب درִيوع فور %s.  صهعصك يوور دعوִيصع.ماپ‎ صاننوت فִيند ا دعوִيصع فور %s (ִيس /دعو موونتعد?) صاننوت فִيند لوصالع `%s' صاننوت غعت ترانسلاتور صومماند لִينع فور پ‎اته `%s': %s صاننوت ماكع تعمپ‎وراري دִيرعصتوري: %s صاننوت ماكع تعمپ‎وراري فִيلع: %s صاننوت وپ‎عن وس فִيلع `%s': %s صاننوت وپ‎عن `%s': %s صاننوت وپ‎عن صونفִيغوراتִيون فִيلع `%s': %s صاننوت وپ‎عن دִيرعصتوري `%s': %s صاننوت رعاد `%s' صوررعصتلي صاننوت رعاد `%s': %s صاننوت رعنامع تهع فִيلع %s تو %s صاننوت رعستورع تهع ورִيغִينال دִيرعصتوري صاننوت سععك `%s': %s صاننوت ستات `%s': %s صاننوت ورִيتع تو صد-روم صاننوت ورִيتع تو `%s': %s صاننوت ورִيتع تو تهع ستدووت: %s صارد نوت فووند صات فִيلع صهعصكسوم وعرִيفִيصاتִيون فاִيلعد صهووسع تهع صومپ‎رعسسִيون تو وسع فور صورع ִيماغع صمپ‎ فִيلع لوصال صومونִيت[,سپ‎ععد] صومپ‎ارع فاִيل ات وففسعت %llu صومپ‎رعسس غروب فִيلعس [وپ‎تִيونال] صوننعصتִيون رعفوسعد صوننعصتִيون تִيمعووت صونوعرت تو بولد فونت صورع ִيماغع ִيس توو بִيغ (0كس%x > 0كس%x) صورع.ִيمغ وعرسִيون مִيسماتصه صوولدن'ت اوتوصونفִيغورع %s صوولدن'ت فִيند ִيععع1275 دعوִيصع پ‎اته فور %s.
يوو وִيلل هاوع تو سعت `بووت-دعوִيصع' وارִيابلع مانواللي صوولدن'ت فִيند ا نعصعسساري معمبعر دعوִيصع وف مولتִي-دعوִيصع فִيلعسيستعم صوولدن'ت فִيند غعلִي صونسومعر صوولدن'ت فִيند غعوم `پ‎ارت' صلاسس صوولدن'ت وپ‎عن غعوم صوولدن'ت رعاد علִي معتاداتا صوولدن'ت رعترִيعوع ووִيد صوولدن'ت رعترִيعوع غعلִي ووִيد صوولدن'ت رعترִيعوع راندوم داتا صوولدن'ت رعترִيعوع راندوم داتا فور سالت صوولدن'ت سعند نعتوورك پ‎اصكعت صپ‎ فִيلع لوصال صرص فִيلع صريپ‎توغراپ‎هִيص عررور نومبعر %d صوررعنت دִيرعصتوري وف تهع سيسلִينوكس [دعفاولت ִيس پ‎ارعنت دִيرعصتوري وف ִينپ‎وت فִيلع]. صوررعنت دִيرعصتوري وف تهع سيسلִينوكس اس ִيت وִيلل بع سععن ون رونتִيمع  [دعفاولت ִيس پ‎ارعنت دִيرعصتوري وف ִينپ‎وت فִيلع]. صيغوִين_صونو_پ‎اته() فاִيلعد دعلعتع دعوִيصع ماپ‎ ִيف ִيت الرعادي عكسִيستس دعستִيناتִيون ونرعاصهابلع دعوִيصع صوونت عكسصععدس لִيمִيت دعوִيصع ترعع موست بع سوپ‎پ‎لִيعد (سعع `دعوִيصعترعع' صومماند) دִيسابلع هִينتִينغ دִيسك `%s' نوت فووند دִيسك دوعس نوت عكسִيست, سو فاللִينغ باصك تو پ‎ارتִيتִيون دعوִيصع %s دִيسك مودولع تو وسع (بִيوسدִيسك ور ناتִيوع). تهִيس وپ‎تִيون ִيس ونلي اواִيلابلع ون بִيوس تارغعت. دִيسك رعاد فاִيلس ات وففسعت %lld, لعنغته %lld دִيسكبووت.ִيمغ سִيزع موست بع %u بيتعس دو نوت ִينستالل بووتسعصتور دو نوت پ‎روبع فور فִيلعسيستعمس ִين دعوִيصع دوماִين نامع صومپ‎ونعنت ִيس توو لونغ دون'ت وپ‎داتع لعد ستاتع دون'ت وپ‎داتع تهع `بووت-دعوִيصع'/`بووت*' نورام وارִيابلعس. تهִيس وپ‎تִيون ִيس ونلي اواִيلابلع ون عفִي اند ִيععع1275 تارغعتس. دونع عمبعد فִيلع اس ا معمدִيسك ִيماغع
ִيمپ‎لִيعس `-پ‎ (معمدִيسك)/بووت/غروب' اند ووعررִيدعس اني پ‎رعفִيكس سوپ‎پ‎لִيعد پ‎رعوִيووسلي, بوت تهع پ‎رعفִيكس ִيتسعلف صان بع ووعررִيددعن بي لاتعر وپ‎تִيونس عمبعد فִيلع اس ان عارلي صونفִيغ عمبعد فִيلع اس پ‎وبلִيص كعي فور سִيغناتورع صهعصكִينغ عمبعددִينغ ִيس نوت پ‎وسسִيبلع, بوت تهִيس ִيس رعقوִيرعد فور راִيد اند لوم ִينستالل عمبعددִينغ ִيس نوت پ‎وسسִيبلع, بوت تهִيس ִيس رعقوִيرعد فور صروسس-دִيسك ִينستالل عنابلع ارصس (بִيغ-عندִيان مִيپ‎س ماصهִينعس, موستلي سغִي) بووت. دִيسابلعس هفس+, اپ‎م, سپ‎ارص64 اند بووت اس دִيسك ִيماغع فور ִي386-پ‎ص عنابلع سپ‎ارص بووت. دִيسابلعس هفس+, اپ‎م, ارصس اند بووت اس دִيسك ִيماغع فور ִي386-پ‎ص عنابلִينغ %s سوپ‎پ‎ورت ... عنتعر: بووت, `ع': وپ‎تִيونس, `ص': صمد-لִينع عنوִيرونمعنت بلوصك توو سمالل عررور: %s.
 عكسپ‎عصت غروب ִيماغعس وندعر تهع دִيرعصتوري دִير/%s ִينستعاد وف تهع %s دִيرعصتوري فاִيلعد تو صوپ‎ي غروب تو تهع پ‎رعپ‎ پ‎ارتִيتִيون فاִيلعد تو غعت صانونִيصال پ‎اته وف `%s' فاִيلعد تو رعاد تهع سعصتورس وف تهع صورع ִيماغع فاִيلورع رعادִينغ سعصتور 0كس%llx فروم `%s' فاִيلورع تو رعاد پ‎اسسوورد فاִيلورع ورִيتִينغ سعصتور 0كس%llx تو `%s' فالسع فاولتي رام (بادرام) فִيلع `%s' نوت فووند فִيلعنامع عكسپ‎عصتعد فִيلعنامع ور تعمپ‎و اند نوتعس عكسپ‎عصتعد فִيلعسيستعم `%s' دوعس نوت سوپ‎پ‎ورت لابعلس فִيلعسيستعم `%s' دوعسن'ت سوپ‎پ‎ورت بلوصكلִيستس فִيلعسيستعم ون %s ִيس نعִيتهعر هفس نور هفس+ فִيرموارع ִيماغع ִيس توو بִيغ فورصع اوتوهִينت فوور ارغومعنتس عكسپ‎عصتعد فوستارت.ִيمغ دوعسن'ت ماتصه تهع كنوون غوود وعرسִيون. پ‎روصععد ات يوور وون رִيسك غعنعراتع ان ִيماغع ִين فورمات غִيوع ا سهورت وساغع معسساغع غִيوع تهִيس هعلپ‎ لִيست غִيوعن ارغومعنت ִيس ا سيستعم دعوִيصع, نوت ا پ‎اته غروب-مكִيماغع ִيس صومپ‎ִيلعد وִيتهووت كسز سوپ‎پ‎ورت غروب> هانغ فور سعصس سعصوندس (دعفاولت 3600) هعكس فִيلع ִيغنورع بִيتماپ‎ سترִيكعس وهعن لوادִينغ ִينصوررعصت تعرمִينال دִيمعنسִيونس سپ‎عصִيفִيصاتִيون ִينִيترد الرعادي لوادعد ִينستالل فونتس [دعفاولت=%s] ִينستالل غروب فور تارغعت پ‎لاتفورم [دعفاولت=%s] ִينستالل غروب ִيماغعس وندعر تهع دִيرعصتوري دִير/%s ִينستعاد وف تهع %s دִيرعصتوري ִينستالل تهعمعس [دعفاولت=%s] ִينستالل دعوִيصع ִيسن'ت سپ‎عصִيفִيعد ִينستالل عوعن ִيف پ‎روبلعمس ارع دعتعصتعد ִينستالل ونلي لوصالعس [دعفاولت=الل] ִينستالل ونلي مودولعس اند تهعִير دعپ‎عندعنصִيعس [دعفاولت=الل] ִينوالִيد پ‎بكدف2 پ‎اسسوورد ִينوالִيد ارصه-دعپ‎عندعنت علف ماغִيص ִينوالִيد ارصه-ִيندعپ‎عندعنت علف ماغִيص ִينوالִيد ارغومعنت ִينوالִيد بلوصك سִيزع ִينوالִيد صولور سپ‎عصִيفִيصاتִيون `%s' ִينوالִيد دعوִيصع ترعع ִينوالִيد عنوִيرونمعنت بلوصك ִينوالִيد فִيلع نامع `%s' ִينوالִيد فونت رانغع ִينوالִيد لִينع فورمات: %s ִينوالִيد مودִينفو فִيلع `%s' ִينوالִيد پ‎ارامعتعر %s ִينوالִيد سكִيپ‎ والوع %lld ִينوالִيد وارִيابلع نامع `%s' ִينوالִيد وִيدعو مودع سپ‎عصִيفִيصاتִيون `%s' ִينوالִيد زִيماغع ִيوصتل غعت_ارراي_ִينفو عررور: %s ִيوصتل غعت_دִيسك_ִينفو عررور: %s ִيوصتل راִيد_وعرسִيون عررور: %s كعرنعل ִيماغع ִيس توو بִيغ (0كس%x > 0كس%x) لִيست نعتوورك اددرعسسعس لִيست نعتوورك صاردس لִيست نعتوورك رووتعس لس پ‎اته لزوپ‎ فִيلع صورروپ‎تعد ماكع تهع درִيوع السو بووتابلع اس فلوپ‎پ‎ي (دعفاولت فور فدكس دعوִيصعس). ماي برعاك ون سومع بִيوسعس. مִيسسִينغ `%c' سيمبول مִيسسִينغ مانداتوري وپ‎تִيون فور `%s' مودولع `%s' ִيسن'ت لوادعد مودولع ִيسن'ت لوادعد نامع نععد ان ִيماغع اند موونتپ‎وִينت نو اپ‎م فووند نو دهصپ‎ ִينفو فووند نو دهصپ‎ وپ‎تִيون %d فووند نو دهصپ‎ وپ‎تִيونس فووند نو دنس رعصورد فووند نو دنس رعپ‎لي رعصعִيوعد نو دنس سعروعرس صونفִيغورعد نو عفִي رووتִينعس ارع اواִيلابلع فور يوور پ‎لاتفورم نو عفִي رووتִينعس ارع اواִيلابلع وهعن روننִينغ ִين بִيوس مودع نو ִيععع1275 رووتִينعس ارع اواִيلابلع فور يوور پ‎لاتفورم نو سغִي رووتִينعس ارع اواִيلابلع فور يوور پ‎لاتفورم نو `/' ִين صانونִيصال فִيلعنامع نو صومماند ִيس سپ‎عصִيفִيعد نو صومپ‎رعسسִيون ִيس اواִيلابلع فور يوور پ‎لاتفورم نو دعصريپ‎تִيون كعي اواִيلابلع نو هִينتس اواִيلابلع فور يوور پ‎لاتفورم. عكسپ‎عصت رعدوصعد پ‎عرفورمانصع نو نعتوورك صارد فووند نو راندوم نومبعر غعنعراتور ִيس اواִيلابلع فور يوور وس نو سعروعر ִيس سپ‎عصִيفִيعد نو سوصه پ‎ارتִيتִيون نو سوִيتابلع وִيدعو مودع فووند نو سيمبول تابلع نو تعرمִينال سپ‎عصִيفִيعد نو تعرمִيناتور ִين تهع صورع ִيماغع نون-سعصتور-الִيغنعد داتا ִيس فووند ִين تهع صورع فִيلع نوت ا دִيرعصتوري نوت ا پ‎رִيماري پ‎ارتִيتִيون نوت ا رعغولار فִيلع نوت ִين فونصتִيون بودي ونع ارغومعنت عكسپ‎عصتعد ونلي ִيپ‎و4 ونلي ִيپ‎و6 وتهعر سوفتوارع ִيس وسִينغ تهع عمبعددִينغ ارعا, اند تهعرع ִيس نوت عنووغه رووم فور صورع.ִيمغ.  سوصه سوفتوارع ִيس وفتعن تريִينغ تو ستورع داتا ִين ا واي تهات اووִيدس دعتعصتִيون.  وع رعصوممعند يوو ִينوعستִيغاتع ووت وف معموري ووتپ‎وت ا غعنعراتعد ִيماغع تو فִيلع [دعفاولت=ستدووت] ووتپ‎وت فִيلع موست بع سپ‎عصִيفִيعد ووتپ‎وت غعنعراتعد صونفִيغ تو فִيلع [دعفاولت=ستدووت] ووعرفلوو ִيس دعتعصتعد پ‎اسسووردس دون'ت ماتصه پ‎عرفورم ا بووتپ‎ اوتوصونفִيغوراتִيون پ‎هيسִيصال وولومع %s نوت فووند پ‎رع-لواد سپ‎عصִيفִيعد مودولعس مودولعس پ‎رعفعر ִيپ‎و4 پ‎رعفعر ִيپ‎و6 پ‎رعماتورع عند وف فִيلع پ‎رعماتورع عند وف فִيلع %s پ‎رعسس صاپ‎سلوصك كعي پ‎رعسس ִينسعرت كعي پ‎رعسس نوملوصك كعي پ‎رعسس سصرولللوصك كعي پ‎رعسس سيسرق پ‎رعسس لعفت الت پ‎رعسس لعفت صترل پ‎رعسس لعفت سهִيفت پ‎رعسس رִيغهت الت پ‎رعسس رִيغهت صترل پ‎رعسس رִيغهت سهִيفت پ‎رִينت پ‎روغرام وعرسִيون پ‎رִينت تهع وعرسִيون ִينفورماتִيون اند عكسִيت پ‎رִينت تهִيس معسساغع اند عكسִيت پ‎رִينت وعربوسع معسساغعس. پ‎وبلִيص كعي %08x نوت فووند رعاد عررور ات وففسعت %llu: %s رعاد تعكست فروم فִيلع. رعلاتִيوع سوبدִيرعصتوري ون نعتوورك سعروعر رعلوصاتִيون 0كس%x ִيس نوت ִيمپ‎لعمعنتعد يعت رعسعروعد رام رعترִيعوع دهصپ‎ وپ‎تִيون اند ساوع ִيت ִينتو وار. ִيف وار ִيس - تهعن پ‎رִينت تهع والوع. رووت دִيرعصتوري اس ִيت وִيلل بع سععن ون رونتִيمع [دعفاولت=/]. رووت دִيرعصتوري وف تفتپ‎ سعروعر رووت دִيرعصتوري وف تهع سيسلִينوكس دִيسك [دعفاولت=/]. رووتع لووپ‎ دعتعصتعد ساوع روم ִيماغعس ִين دִير [وپ‎تִيونال] ساوع ووتپ‎وت ִين فִيلع [رعقوִيرعد] سعلعصت فاصع ִيندعكس سعرִيال پ‎ورت `%s' ִيسن'ت فووند سعت [نامع=والوع ...] سعت صاپ‎سلوصك مودع سعت فونت اسصعنت سعت فونت دعسصعنت سعت فونت فامִيلي نامع سعت فونت رانغع سعت فونت سִيزع سعت ִينپ‎وت فִيلعنامع فور 32-بִيت پ‎ارت. سعت ִينپ‎وت فִيلعنامع فور 64-بִيت پ‎ارت. سعت ִينپ‎وت فִيلعنامع. دعفاولت ִيس ستدִين سعت ִينسعرت مودع سعت نوملوصك مودع سعت ووتپ‎وت فִيلعنامع. دعفاولت ִيس ستدووت سعت پ‎اوسع مودع سعت پ‎رعفִيكس دִيرعصتوري [دعفاولت=%s] سعت سصرولللوصك مودع سعت تهع لابعل تو رعندعر سعت تهع پ‎روغرام نامع سִيزع سترعتصه|نورمال سيمبول `%s' نوت فووند تعمپ‎وراري تعرمִينال %s ִيسن'ت فووند ور ִيت'س نوت هاندلعد بي تعرمִينفو تعرمִينال `%s' ִيسن'ت فووند تهع ִيد وف بووتلوادعر. تهִيس وپ‎تִيون ִيس ونلي اواִيلابلع ون عفִي اند ماصس. تهع پ‎رعپ‎ پ‎ارتִيتִيون ִيس نوت عمپ‎تي. ִيف يوو ارع سورع يوو وانت تو وسع ִيت, رون دد تو صلعار ִيت: `%s' تهع ارغومعنت `%s' رعقوִيرعس ان ִينتعغعر تهع صهوسعن پ‎ارتִيتִيون ִيس نوت ا پ‎رعپ‎ پ‎ارتִيتִيون تهع دعوִيصع.ماپ‎ عنتري `%s' ִيس ִينوالִيد. ִيغنورִينغ ִيت. پ‎لعاسع صوررعصت ور دعلعتع يوور دعوִيصع.ماپ‎ تهع درִيوع %s ִيس دعفִينعد مولتִيپ‎لع تִيمعس ִين تهع دعوִيصع ماپ‎ %s تهع درִيوع نامع `%s' ִين دعوִيصع.ماپ‎ ִيس ִينصوررعصت. وسִينغ %s ִينستعاد. پ‎لعاسع وسع تهع فورم [هفص]د[0-9]* (ع.غ. `هد0' ور `صد') تهع فִيرست سعصتور وف تهع صورع فִيلع ִيس نوت سعصتور-الִيغنعد تهع ִينستاللاتִيون دعوִيصع ִيس رعمووابلع. تهִيس وپ‎تִيون ִيس ونلي اواִيلابلع ون عفִي. تهع پ‎ارتִيتִيون تيپ‎ع 0كس%x ִيسن'ت والִيد تهع سعصتورس وف تهع صورع فִيلع ارع توو فراغمعنتعد تهع سִيزع وف `%s' ִيس نوت %u تهع سִيزع وف `%s' ִيس توو لارغع تهع سִيزع وف `%s' ִيس توو سمالل تهִيس علف فִيلع ִيس نوت وف تهع رִيغهت تيپ‎ع تهִيس غپ‎ت پ‎ارتִيتִيون لابعل صونتاִينس نو بִيوس بووت پ‎ارتִيتִيون; عمبعددִينغ وون'ت بع پ‎وسسִيبلع تهִيس لدم هاس نو عمبعددִينغ پ‎ارتִيتִيون; عمبعددִينغ وون'ت بع پ‎وسسִيبلع تهִيس مسدوس-ستيلع پ‎ارتִيتִيون لابعل هاس نو پ‎وست-مبر غاپ‎; عمبعددִينغ وون'ت بع پ‎وسسִيبلع تهرعع ارغومعنتس عكسپ‎عصتعد تִيمع ووت وپ‎عنִينغ `%s' تִيمعووت رعادִينغ `%s' تִيمعووت: صوولد نوت رعسولوع هاردوارع اددرعسس توو دععپ‎ نعستִينغ وف سيملִينكس ترانسلاتور `%s' فور پ‎اته `%s' هاس سعوعرال نون-وپ‎تִيون ووردس, ات لعاست `%s' اند `%s' ترانسلاتور `%s' فور پ‎اته `%s' ִيس غִيوعن ونلي وپ‎تִيونس, صاننوت فִيند دعوִيصع پ‎ارت ترانسلاتور صومماند لִينع ִيس عمپ‎تي فور پ‎اته `%s' توو ارغومعنتس عكسپ‎عصتعد تيپ‎ع ونابلع تو ִيدعنتִيفي ا فִيلعسيستعم ִين %s; سافعتي صهعصك صان'ت بع پ‎عرفورمعد ونالִيغنعد دعوִيصع سִيزع ونعكسپ‎عصتعد عفִي عررور ونعكسپ‎عصتعد عند وف فִيلع ونكنوون ارغومعنت `%s' ونكنوون صومپ‎رعسسִيون %d
 ونكنوون دعوִيصع تيپ‎ع %s
 ونكنوون فִيلعسيستعم ونكنوون كִيند وف راִيد دعوִيصع `%s' ونكنوون رعغعكسپ‎ عررور ونكنوون تارغعت فورمات %s
 ونكنوون تعرمִينفو تيپ‎ع `%s' ونرعصوغنִيسعد دهصپ‎ وپ‎تִيون فورمات سپ‎عصִيفִيصاتִيون `%s' ونرعصوغنִيسعد نعتوورك اددرعسس `%s' ونرعصوغنִيسعد نعتوورك ִينتعرفاصع `%s' ونرعصوغنִيزعد نومبعر ونرعسولوابلع اددرعسس %s ونسعت [نامع ...] ونسوپ‎پ‎ورتعد هتتپ‎ عررور %d: %s ونسوپ‎پ‎ورتعد هتتپ‎ رعسپ‎ونسع ونسوپ‎پ‎ورتعد راִيد وعرسִيون: %d.%d ونسوپ‎پ‎ورتعد غزִيپ‎ فورمات ونسوپ‎پ‎ورتعد پ‎لاتفورم %s
 ونسوپ‎پ‎ورتعد سعرִيال پ‎ورت فلوو صونترول ونسوپ‎پ‎ورتعد سعرִيال پ‎ورت پ‎ارִيتي ونسوپ‎پ‎ورتعد سعرִيال پ‎ورت سپ‎ععد ونسوپ‎پ‎ورتعد سعرִيال پ‎ورت ستوپ‎ بִيتس نومبعر ونسوپ‎پ‎ورتعد سعرִيال پ‎ورت وورد لعنغته وسع صولور فور باصكغرووند وسع صولور فور لابعل وسع صولور فور لابعل باصكغرووند وسع صولور فور تعكست وسع دִير اس تهع عفִي سيستعم پ‎ارتִيتִيون رووت. وسع دִير فور پ‎پ‎ص ماص ִينستالل. وسع فִيلع اس فونت (پ‎ف2). وسع فִيلع اس فونت فور لابعل وسع فִيلع اس تهع بووت ִيماغع [دعفاولت=%s] وسع فִيلع اس تهع صورع ִيماغع [دعفاولت=%s] وسع فִيلع اس تهع دعوִيصع ماپ‎ [دعفاولت=%s] وسع فִيلع اس كسوررִيسو [وپ‎تִيونال] وسع غروب فִيلعس ִين تهع دִيرعصتوري دִير [دعفاولت=%s] وسع سترִينغ اس پ‎رودوصت نامع وسع سترִينغ اس پ‎رودوصت وعرسִيون وسع ִيدعنتִيفִيعر فִيلع عوعن ִيف ووִيد ִيس اواִيلابلع وسع ִيماغعس اند مودولعس وندعر دִير [دعفاولت=%s/<پ‎لاتفورم>] وسع تهعمعس وندعر دִير [دعفاولت=%s] وسع ترانسلاتִيونس وندعر دִير [دعفاولت=%s] وارִيابلع `%s' ִيسن'ت سعت وִيسواللي-وردعرعد وتف-8 واִيت ونتִيل ا دعبوغغعر وִيلل اتتاصه وִيلل نوت پ‎روصععد وִيته بلوصكلִيستس ورִيتع ووتپ‎وت تو فִيلع [دعفاولت=ستدووت]. ورونغ علִي ماغִيص ور وعرسִيون كسنو_ووִيد دعوִيصع كسز فִيلع صورروپ‎تعد ور ونسوپ‎پ‎ورتعد بلوصك وپ‎تִيونس يوو صان'ت دعلعتع تهִيس اددرعسس يوو نععد تو لواد تهع كعرنعل فִيرست يوور بִيوس بووت پ‎ارتִيتִيون ִيس توو سمالل; عمبعددִينغ وون'ت بع پ‎وسسִيبلع يوور صورع.ִيمغ ִيس ونوسواللي لارغع.  ִيت وون'ت فִيت ִين تهع عمبعددִينغ ارعا يوور عمبعددִينغ ارعا ִيس ونوسواللي سمالل.  صورع.ִيمغ وون'ت فִيت ִين ִيت.                                                                                                                                                                                                                                                                                                boot/grub/locale/en@cyrillic.mo                                                                     0000600 0001750 0001750 00000436514 13417732100 0015474 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                            L(    |P      `k  #   ak      k     k     k     k  $   k     l  6   )l     `l     gl  	   sl     }l     l     l     l     l     l  .   l  .   'm  %   Vm     |m     m    m    n    o     p  8   p  '   p  7   q  F   Tq  v   q  +   r     >r      Or     pr  !   r     r  ,   r     r     s  $   s     @s  *   \s     s     s     s     s     s  
   s  	   s     s     t  ,   )t  ,   Vt  ,   t  '   t  -   t      u  (   'u  (   Pu  )   yu     u     u     u     u     u  "   v  4   %v     Zv     bv  7   ov     v     v  1   v     v     w  %   w  '   @w  %   hw  '   w     w     w     w     w     w     x     
x     x     (x     Hx     Zx     hx     xx     x  3   x     x  $   x     x     	y     "y     1y     By     Yy     ny  -   y     y  !   y     y     z     $z  #   9z     ]z  `   z  Z   F{     {     {     {     {     {     {     {     |     |  0   9|  3   j|     |     |     |     |     }     }     *}     A}     W}     e}     |}     }     }     }  %   }     }     }     }     ~     +~     F~     \~     k~     ~~     ~  *   ~  3   ~  1     1   8  2   j                  1        -  #   L     p  "     8                    	   5  #   ?     c                    ԁ       )        $     C     a  "     P               H     &   f            !     ,   ΃                 	   (  !   2  *   T       '             Ԅ             $        =     O     a     |            
   х  
   ܅       1        ,     :     G     `  3   |  >     $             +     H     `     {       +        ۇ       o     #               $   ߈            '   :  9   b            z   Ӊ  "   N     q     x  8        Ŋ  
   ܊                    .     ʋ  +             +     @     V  "   i            (        ׌  #     &     ?   :  '   z  @                            &  "   8  0   [                 7                            "     .     4  0   ;     l                 2     %             -  *   <  6   g  +        ʐ            !   ̑  d     e   S  d     i     o     H        A     T     j     {                    Ք  #             0     H  1   Z  )                       ԕ  /             "     9  5   V            K   ǖ  &        :     V     k            D        ח     ܗ  '     P   	     Z     y  	                       Ř     V  '          +        J     [  )   w               ՚               #     ;     Q  $   f            "        ۛ     ݛ       (             #     )  "   1  +   T  -             ǜ     ֜            O   	     Y     o                 %          )     !   /  "   Q     t       +        Ӟ               	  !        =     Y     r     ~                џ                    2     F  4   V                    Ԡ          
     #     <      Y  !   z       4     M     2   9     l       *     8   Ϣ               ,     D     [     s  3     $     +   ٣               (     =     R     e                     դ     פ  D       4                 ;   5     q       !        ҧ       s        |               ¨     ը                    -     1     7                         Ǫ     Ӫ            '   "  
   J     U     d     z                           H   ث  L   !     n                 %               #        9     V     s     |                 ӭ       "     (   $     M     i  %   v                 #   خ  *        '     )     <  #   A     e     j  	   |  	     "     ;     #     <        P     ^     |  .     	        ð  `   հ     6  !   K  )   m                      q        (     <     S     b     y                    ֲ  "             0     J     b     y                 #   ѳ  a        W     t  g             }       -          !          "   )  '   L  Q   t     ƶ                         4     Q     n               ķ                     '     <      O     p                 -   и            "   ,  b   O  )        ܹ          
  ,   %     R     k  	   p  "   z  %        ú     Ⱥ     ݺ  
          &     )        I  5   \  ^          $     %   0     V  ^   	  _   h  }   Ƚ     F  )     '   '  >   O  D     !   ӿ  '     -     #   K     o  )          )           )     ,   G     t                      E     $   :  A   _  )                             >     _  q   t       :        >     \  `   k               	           6     R  0   g                 )     &     #   2  -   V                           )   
     4  %   D  %   j  ,     '     :           -   ?  0   m  /          .               '   4  $   \  "                    2     Q     *   `            )     o        4     M  6        >     @     G  0   N        !     "     #        	          9     O  !   n       
          <             "  %   8  >   ^                                d     *   a  (     ,               0     6   E     |                           0          !        A     _  $   p                           $     "   6  $   Y     ~                                         ,     9     W     r       '               $     +   -  "   Y     |  )                              '   &     N     m       <                %        *     C     Z     m  m                  +     E     ^  +   x  3     1        
  '     -   @     n  '   w  '     .     	                   5     Q     m                                *     ?   @       B     p        G  /               .   -  O   \  )               	     <        B  5   `                           :        F  1   Y                                                       0     A     G  	   T     ^     m                                               '  
   5  
   @  	   K     U  !   [  )   }                           n   #  F     N        (  "   6     Y     ^  .   p  .     /     W     -   V  -     $     #     0     6   ,     c     q       (     1     )             0     I     X     r  !                          %        :  &   N     u       0                        3  7   M  .          4     #        %     D     a  '   v                      %        3     H     ]     t                      ,                  -     I     h     {       #               _     B   [                                   ;  &   Y                      N     m   !       &               7        ;     K  ;   _  V     +     "        A  &   [  !          r        .     3       /     H   '  F   p  w     N   /     ~  (               I     )   1  $   [  ,     '          %                  .     B  $   T  '   y  *     (                    J   6                 -     +        &  $   ,     Q  "   Z  +   }            -     J        S     o  %     "     9              )  "   J     m     ~                               
     "     <     Q     i  %                         %        9     P     c     w       [          !        %     >     R     W     t                                /     7   6  4   n  /               -        6  @   R       3                       #     3     I  1   i                           	     	               1          0   5     f     {  !          "                      !    :    M    ^    p                                 &   
    1    M    e         '    &        L    9   [     0        !           9    K    h    }                     #    #    $   *    O    _ &   p     !                   	         	   3 7   =    u D    ]    %   2 ,   X [    ;    w    7    K    #   	 /   =	    m	    	    	 &   	 U   	 @   A
 Q   
    
    
     +       D R   a L    .       0    G F   L                                 .    O    d    ~ 2    !    #           &    >    O    m             $            (   : #   c                 )           -    E '   ` '    '        0       (    C -   a 8    !    '           * !   A     c &            .        !   # B   E E    B    t   1    8    (    *    !   E B   g "    R            )    =    M 2   c     #    %        P    P   b @                     ,    a    C    c   _ {       ?  K   !    ^! 4   w!    ! 6   ! +   ! G   *" (   r"     " <   " (   " C   "#    f# 	   #    # '   # 4   #    $    $ (   #$    L$ G   b$ J   $ G   $ ?   =% I   }% 2   % A   % @   <& B   }& 1   & 1   &    $'    8'    D' <   P' ^   ' 	   '    ' K   (    T( !   a( J   ( .   (    ( C    ) G   D) C   ) G   )    *     * 6   "* &   Y* &   *    *    *    * /   * !   +    5+    N+    k+    + V   + 
   + A   + +   =, -   i,    ,    , (   , $   , )   - P   C- 3   - ;   - $   . 2   ). $   \. ?   .    .    /    g0 1   	1 3   ;1    o1    r1 %   x1 
   1    1 )   1 5   1 U   2 [   o2 *   2 .   2 (   %3 .   N3 2   }3    3 )   3 '   3    4 )   ,4    V4    q4 
   y4    4 C   4 7   4    5 #   25 '   V5 1   ~5 (   5    5 !   5    6 *   36 L   ^6 W   6 [   7 W   _7 X   7 4   8 ;   E8 4   8 Z   8 3   9 ?   E9 0   9 >   9 h   9 5   ^:    : /   :    : @   : ,   7; !   d; 8   ; 9   ; )   ;    #< K   ?< 6   < 5   < 6   < >   /=    n= "   = "   >    B> F   > +   ?    <? 4   I? J   ~?    ?    ? 5   ?    @ =   /@ L   m@ +   @ F   @ $   -A    RA .   rA *   A C   A     B     1B 1   RB 3   B 1   B 6   B    !C    2C "   BC C   eC    C    C ,   C -   D V   4D [   D A   D )   )E 4   SE )   E 0   E 9   E #   F N   AF 1   F 6   F    F @   G (   H 6   +H @   bH .   H 2   H H   I h   NI *   I 4   I    J >   J    3K    @K d   `K '   K    K    L %   L 1   ?L   qL 5   M Q   M *   N $   >N %   cN !   N 4   N    N    N J   O +   gO B   O G   O u   P I   P w   P    VQ    lQ    Q (   Q     Q <   Q T   ,R    R    R    R Z   R    S    S    2S '   RS    zS 
   S    S X   S     T    "T !   @T )   bT [   T C   T !   ,U    NU J   eU N   U <   U 7   <V     tV r  V =   X    FX    X    Y    jZ    &[    [ !   t\    \    \    \ $   \ +   ] &   =] )   d] >   ] 2   ] '    ^    (^ P   E^ L   ^    ^    ^ "   ^    _ T   1_    _ *   _ 0   _ b   _ 7   `` 2   `    ` E   Va /   a $   a 3   a    %b 	   ,b v   6b    b    b F   b    c 6   c    c    c    c 2   c $   0d    Ud    Ue G   Kf    f P   f     g 1   g L   Pg 1   g *   g 5   g 4   0h "   eh '   h "   h $   h E   h     >i 2   _i @   i    i    i    i I   j    Nj 	   Uj    _j =   nj N   j S   j -   Ok    }k    k    k    k    k '   l *   l (   l     m "   m D   <m 7   m J   m <   n >   An 2   n (   n P   n %   -o    So    oo    o ;   o 2   o ,   p    Ep (   Zp 9   p 0   p     p #   q 6   3q 2   jq #   q    q [   q 6   9r    pr *   r .   r .   r ,   s ,   Es 2   rs :   s =   s .   t _   Mt    t ]   <u .   u 7   u N   v g   Pv    v )   v *   v (   $w *   Mw    xw ^   w A   w P   0x $   x    x "   x     x    y 0    y 6   Qy 3   y "   y    y ,   y y   z J  z    }    } 5   } j   &~ 9   ~ 6   ~ ;    (   > 9   g     +   w 4       ؀     &    )   ? .   i         	    1  ǁ F   "   @ #   c         5    -    (    E   7    }     '       ҅ (   ۅ             # 4   D    y     "    ,       ԇ     D    -   M +   { A    4    5       T '   d 9    9   Ɖ <        = >   R I    2   ۊ     <   & (   c     (    9   ŋ M       M #   P    t <   }        Ì         ?    m   F A    o       f 1   z     R   Î         $    E %    >    L   Z     	           Ɛ    ܐ     )       ב )    !    '   : %   b 5    8    >    +   6 /   b +    )    '    #    -   4 %   b B       ˔ 1    1            /    3    S    "   ; =   ^     ?    G       C 3   ә /        7    X &   r 0    0   ʚ 0    0   , /   ] /    *        ;    %   > !   d ,    1    #       	 :   ' S   b -        ;       @ K    '   B *   j ,    F    )   	    3    < ?   O C       Ӡ !   ܠ             F   - L   t     ]       ? -    B    D   Z <      ܤ        2 >   J   K G    b   ި n   A :    E    Q   1 ?    8   ê J    4   G L   | 1   ɫ I    O   E :    +   Ь /    1   ,    ^ ]   | ?   ڭ t    J    3   ڮ 1    /   @ 6   p :    $        0   Ӱ j    5   o         6   o 5    )   ܲ '    2   . $   a X    4   ߳ %    '   : K   b D    ?    R   3 2    0    6    !   ! 0   C H   t     D   ۶ D     R   e H    j    6   l R    Y    V   P     R         $   5 F   Z C    >       $ 3   5    i Y       ܻ N   o        ͼ K   ڼ    & )    I   _   c    ÿ    ƿ    ӿ U    <   6 ;   s =    ?       - 3   M &    7    <    '       E -   X m    )    &    B   E o           	 	    9    '   T #   |     M   Q J    O    ,   : ,   g Y    V       E    T %   n #        +    V       D 7   c 6        D    *   6 $   a 5        0    ;    :   I A    '    &    #    8   9 %   r                 4    -   : ,   h 2    G    7    .   H @   w O    =       F E   R     /    4         !   ; G   ] 6    3    #    h   4 =        A    )   , &   V "   } 1        1   i /    /    -    /   ) N   Y _    X       a G   { R        D   & D   k N        ,    *   ? .   j .    .    .    -   & -   T )    .        K    q   /      u       8     K        6 !   W H   y z    =   = $   {         `    .   ' N   V     '        ,    )   0 _   Z     T    -   / &   ]         
                /    !       <    Z    c    w     +    $    3       ' ,   F "   s )    
    
                        0   & E   W         '    6    0   9    j v   $        & ;   @    |      U    U    W   R     N   B S    A    @   ' T   h _        "   7    Z 8   t F    H    ,   = *   j     0    *    :    !   H )   j 9    &    =       3 <   O /    3    M    <   > (   { "    /    `    N   X '    Y    ?   ) 5   i ,        B    1   . -   `     4    F       )    H (   g %    4            6    Q   M         .    7    #   = #   a %    6    /    -       @ z    2   a 7    !    0    )    2   I 6   | F    4       /    H 5   X         -    F    -   W 1    c           9 i   Y     F   ^ <    /    F    =   Y (            *   5    W       J        O      &    A    3       C    T K    >   # P   b @    -    <   " 
   _ "   j     !    C    E    K   Y F    .        ,   7    d 2    0    #   O Q   s P    	    =        ^ @   n S    (   	 -   ,	 P   Z	    	 /   0
 8   `
 E   
 >   
 i    +    <    @       2 "   R 9   u $    0    %    "   + (   N +   w $    '    -    B       a 4   } 2    1    :    *   R "   } $        $             :    (    #   !    E 4   N     !    (    '    #    '   1 /   Y W    e    ]   G W    1    +   / T   [ 3    w    '   \ ^    )         4   .    c (    9    Y       = +   Z !    %    (            \      v Y    6    X     &   y '    ?    2    @   ;    |     '    *    "            ; &   \                             , (   M G   v 2    +    *    .   H $   w J    D       ,    D d    6   0  U   g  $     ;     6   !     U! /   v!     !     !    !    " %   $"    J"    e" =   ~" =   " B   "    =#    Z# F   y#    # :   # $   $ *   ;$ %   f$    $    $ #   $    $ a   $ *   J% z   u%    % A   & Q   &    $' g   '    .( d   (    U) =   ) V   * (   t* 0   * 0   * D   *    D+ u   +    W, .   , #   - "   >- P   a- 4   -    -    m. Q   . *   C/    n/ }   w/ (   / &   0 )   E0 $   o0 )   0 (   0 #   0 7   1 &   C1 ,   j1 -   1 [   1 ;   !2 ?   ]2 %   2 *   2    2 1   3 0   :3 5   k3 ,   3 +   3 D   3 9   ?4 7   y4 K   4 B   4 -   @5 #   n5 8   5 !   5 J   5 2   86 &   k6 /   6 C   6 C   7 C   J7 6   7 T   7 0   8 6   K8 S   8 b   8 9   99 E   s9 &   9 (   9 =   	: <   G: D   : 0   :    : V   ; 5   n; <   ; x   ; {   Z< u   <    >      	  j       7    /                o      P        0                        *  p  q    (  >                                      %                     }           G   j        S            v   C              C    T             _  ;                                                 d            >        '                 ^                *        +    !  ?   K          {            1      m              y                                 s      e        2    	             K    V      	  8   !         /     ^                    r  H            F                 r   |                                  D        $                       r    _           I  l  e          G    w             S            ,      J  %     s                      R                 Y      n           ;              
             4           $   W            d    ?  b               ,  6  w    h                     I  J     7   q  4    V      p                O    `                                              i                   X  ]        G      6  c                N                      B  :    C  l  =    v                           A           ,            j  6  g  F   ,     B       U        f          t     h        [  N          w             ]    a        W     <      u  k     	  {  S  1  `      a          '             {                                  )       i                    y              O       m              ^                  M                        P                  -      %               f        b                   t               C                            8  X          *                           
          k     z  w   z  @  T         ]      |                      \      J               '  D       0  b                       (             c                 k       G        s                    [        *  Z      y       )          \                    y         N      4                           v  h              
  $                              ;    6                    |     2               3  v    M  L              ~  S        9  Q     2            {                                         %        @   F      +                    .             V  Q            2                       z          +   g  a             !                                          v                M                 M     P        K             E        9                        @  ^                          c           a      [     )  W          c    A                  k  H            X             "  W                +  h              =                      Z                        }  i    G  )  j               -   &  (        u          |                        ^  g      (  c    e  /  5              -                                 w        L                  M                d      e                         `  o                       N  $      !                o        +                     R             p     "     	                 q                            T    y   n    r                   ]            x                                                 D            }  -                                <         R                       V              H   (           }              N     8           }              ]              b  p      ?                          H                                .  ~     8        &       =  B                         W  K  =          E    [       1                          _                             e  h           4      9   R  \              X  E        B       O  t    >           T  f                 l  f     F              n        )   B      1        \  L    f                &            <  0     Z    d   F  a  ;  ,     u     o                               O     Z         ?        T       A  x          8                 .      *   .        n   l                       g     L       J                               r            u        :         .                                      3           L    X      P                0  5  m             U    9  <        g  A               3                     ~                l    $      "  C             '            
                       /            i      O  9                          0  n  5    U             ;       &                 U             7  4      Y    m  _                                      t          m                      @  1                 u               s   I              Q  !  k        `           2  @    Z            "      A         ?  6    {          E      3              &    '  H            [                              j            >  #  R      #    S  z  Y   d  x  ~  b  P            t          _    q                    #  \       `       ~      E                3    o                #        :  
  q                                    I       :            Y    x    #   U         I         J    -    Q  Y  7  5       x                 /      5      <               :        =   "    %      K        i            D      p         |    V          z   D    Q  s    7                   total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s doesn't exist. Please specify --target or --directory %s doesn't look like an EFI partition.
 %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: not found %s: option '%c%s' doesn't allow an argument
 %s: option '%s' is ambiguous; possibilities: %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- --ppc PATH|--x86 FILE -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Bless DIR of HFS or HFS+ partition for PPC macs. Bless FILE of HFS or HFS+ partition for intel macs. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't create file: %s Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check if CPU supports Physical Address Extension. Check if FILE can be used as x86 multiboot kernel Check if FILE can be used as x86 multiboot2 kernel Check if FILE is ARM EFI file Check if FILE is BIOS bootsector Check if FILE is IA64 EFI file Check if FILE is hiberfil.sys in hibernated state Check if FILE is i386 EFI file Check if FILE is of specified type. Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear bit at BYTE:BIT in CMOS. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find a free BootNNNN slot Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Default server is ${net_default_server} Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not apply any reed-solomon codes when embedding core.img. This option is only available on x86 BIOS targets. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. EFI bootloader id isn't specified. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enable/disable RTS/CTS. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Evaluate arguments as GRUB commands Execute syslinux config in new context Execute syslinux config in new context taking only menu entries Execute syslinux config in same context Execute syslinux config in same context taking only menu entries Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FONTS FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File size: %s
 File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Generating grub configuration file ... Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s Graft point syntax (E.g. /boot/grub/grub.cfg=./grub.cfg) is accepted HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS INSTALL_DEVICE must be system device filename.
%s copies GRUB images into %s.  On some platforms, it may also install GRUB into the boot sector. If FILENAME is `-', the default value %s is used.

There is no `delete' command; if you want to delete the whole environment
block, use `rm %s'. Import ZFS wrapping key stored in FILE. Incorrect VDEV Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Installing for %s platform.
 Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s LOCALES Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List coreboot tables. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load DTB file. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load Truecrypt ISO. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load module. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... M MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MENU_ENTRY is a number, a menu item title or a menu item identifier. Please note that menu items in
submenus or sub-submenus require specifying the submenu components and then the
menu item component. The titles should be separated using the greater-than
character (>) with no extra spaces. Depending on your shell some characters including > may need escaping. More information about this is available
in the GRUB Manual in the section about the 'default' command.  MODULE MODULES Mac-style bless on HFS or HFS+ Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NOT RUNNING:  NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Netboot directory for %s created. Configure your DHCP server to point to %s
 Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OPTIONS FILE OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] PUBKEY_ID Paletted  Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Prepares GRUB network boot images at net_directory/subdir assuming net_directory being TFTP root. Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot into firmware setup menu. Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Render Apple .disk_label. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING STRING ... Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Script `%s' contains no commands and will do nothing
 Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set bit at BYTE:BIT in CMOS. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting GRUB_TIMEOUT to a non-zero value when GRUB_HIDDEN_TIMEOUT is set is no longer supported. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show CBMEM console content. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show raw dump of the CMOS contents. Show raw dump of the PCI configuration space. Show the contents of a file. Show the current mappings. Show the list of trusted keys. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Skip signature-checking of the environment file. Skip signature-checking of the public key file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Storage information for `%s' does not include type Storage information for `%s' indicates neither a plain partition nor a plain disk Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Switch to native disk drivers. If no modules are specified default set (pata,ahci,usbms,ohci,uhci,ehci) is used Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 T TARGET THEMES Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This VDEV is a RAIDZ%llu
 This VDEV is a mirror This entry can be booted by any user. This requires setting GRUB_DEFAULT=saved in %s/default/grub.\n Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Transform syslinux config into GRUB one. Translate SET1 characters to SET2 in STRING. Translate to lower case. Translate to upper case. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown platform `%s-%s' Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized compression `%s' Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME VDEV element number %d isn't correct
 VDEV element number %d:
 VDEV with %d children
 Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. You've found a bug Your embedding area is unusually small.  core.img won't fit in it. Your xorriso doesn't support `--grub2-boot-info'. Some features are disabled. Please use xorriso 1.2.9 or later. Your xorriso doesn't support `--grub2-boot-info'. Your core image is too big. Boot as disk is disabled. Please use xorriso 1.2.9 or later. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] [-s|--skip-sig] [variable_name_to_whitelist] [...] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [-s|--skip-sig] FILE SIGNATURE_FILE [PUBKEY_FILE] [-s|--skip-sig] PUBKEY_FILE [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [DIR] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTIONS] [SET1] [SET2] [STRING] [OPTION] SOURCE... [OPTION] [INSTALL_DEVICE] [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `%s' is not a local disk `cryptomount' command fails: %s `loopback' command fails: %s `nvsetenv' failed. 
You will have to set `boot-device' variable manually.  At the IEEE1275 prompt, type:
  %s
 `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found assume input is a pxelinux configuration file. assume input is a syslinux configuration file. assume input is an isolinux configuration file. attempt to install to encrypted disk without cryptodisk enabled. Set `%s' in file `%s'. attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format bless for ppc-based macs bless for x86-based macs blocklist FILE blocklists are incomplete blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't compress `%s' to `%s' can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s can't set %dx%d font size: Freetype error %d: %s cannot compress the kernel image cannot copy `%s' to `%s': %s cannot delete `%s': %s cannot find EFI directory cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot find locale `%s' cannot get translator command line for path `%s': %s cannot make temporary directory: %s cannot make temporary file: %s cannot open OS file `%s': %s cannot open `%s': %s cannot open configuration file `%s': %s cannot open directory `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu compress GRUB files [optional] connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find IEEE1275 device path for %s.
You will have to set `boot-device' variable manually couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d current directory of the syslinux [default is parent directory of input file]. current directory of the syslinux as it will be seen on runtime  [default is parent directory of input file]. cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit device tree must be supplied (see `devicetree' command) disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. disk read fails at offset %lld, length %lld diskboot.img size must be %u bytes do not install bootsector do not probe for filesystems in DEVICE domain name component is too long don't update LED state don't update the `boot-device'/`Boot*' NVRAM variables. This option is only available on EFI and IEEE1275 targets. done embed FILE as a memdisk image
Implies `-p (memdisk)/boot/grub' and overrides any prefix supplied previously, but the prefix itself can be overridden by later options embed FILE as an early config embed FILE as public key for signature checking embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enable ARCS (big-endian mips machines, mostly SGI) boot. Disables HFS+, APM, sparc64 and boot as disk image for i386-pc enable sparc boot. Disables HFS+, APM, ARCS and boot as disk image for i386-pc enabling %s support ... enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to copy Grub to the PReP partition failed to get canonical path of `%s' failed to read the sectors of the core image failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists filesystem on %s is neither HFS nor HFS+ firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification initrd already loaded install FONTS [default=%s] install GRUB for TARGET platform [default=%s] install GRUB images under the directory DIR/%s instead of the %s directory install THEMES [default=%s] install device isn't specified install even if problems are detected install only LOCALES [default=all] install only MODULES and their dependencies [default=all] invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid argument invalid block size invalid color specification `%s' invalid device tree invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid modinfo file `%s' invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' invalid zImage ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no EFI routines are available for your platform no EFI routines are available when running in BIOS mode no IEEE1275 routines are available for your platform no SGI routines are available for your platform no `/' in canonical filename no command is specified no compression is available for your platform no decryption key available no hints available for your platform. Expect reduced performance no network card found no random number generator is available for your OS no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected only ipv4 only ipv6 other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found pre-load specified modules MODULES prefer ipv4 prefer ipv6 premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory as it will be seen on runtime [default=/]. root directory of TFTP server root directory of the syslinux disk [default=/]. route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the label to render set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the ID of bootloader. This option is only available on EFI and Macs. the PReP partition is not empty. If you are sure you want to use it, run dd to clear it: `%s' the argument `%s' requires an integer the chosen partition is not a PReP partition the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive %s is defined multiple times in the device map %s the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected EFI error unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported platform %s
 unsupported serial port flow control unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for label use COLOR for label background use COLOR for text use DIR as the EFI System Partition root. use DIR for PPC MAC install. use FILE as font (PF2). use FILE as font for label use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] use themes under DIR [default=%s] use translations under DIR [default=%s] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists write output to FILE [default=stdout]. wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub 2.02~beta1
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-12-21 01:46+0100
Last-Translator: Automatically generated
Language-Team: none
Language: en@cyrillic
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=(n != 1);
               тотал меморѝ: %d КиБ
     Но преферред моде аваилабле
     Преферред моде: %uѯ%u
   ЕДИД цхецксум инвалид   ЕДИД версион: %u.%u
   Фаилед то инитиализе видео адаптер   Но инфо аваилабле   ВБЕ инфо:   версион: %d.%d  ОЕМ софтўаре рев: %d.%d
   ор:   (лефтмост)  (медиал)  (ригхтмост)  - Партитион старт ат %llu%sКиБ  - Сецтор сизе %uБ  - Тотал сизе %llu%sКиБ  - Тотал сизе ункноўн  [ОПТИОН...] %.*s: АРГП_ХЕЛП_ФМТ параметер муст бе поситиве %.*s: АРГП_ХЕЛП_ФМТ параметер реќуирес а валуе %.*s: Ункноўн АРГП_ХЕЛП_ФМТ параметер %dс %dс ремаининг. %s аппеарс то цонтаин а %s филесѝстем ўхицх исн'т кноўн то ресерве спаце фор ДОС-стѝле боот.  Инсталлинг ГРУБ тхере цоулд ресулт ин ФИЛЕСЍСТЕМ ДЕСТРУЦТИОН иф валуабле дата ис оверўриттен бѝ груб-сетуп (--скип-фс-пробе дисаблес тхис цхецк, усе ат ѝоур оўн риск) %s аппеарс то цонтаин а %s партитион мап анд ЛДМ ўхицх исн'т кноўн то бе а сафе цомбинатион.  Инсталлинг ГРУБ тхере цоулд ресулт ин ФИЛЕСЍСТЕМ ДЕСТРУЦТИОН иф валуабле дата ис оверўриттен бѝ груб-сетуп (--скип-фс-пробе дисаблес тхис цхецк, усе ат ѝоур оўн риск) %s аппеарс то цонтаин а %s партитион мап ўхицх исн'т кноўн то ресерве спаце фор ДОС-стѝле боот.  Инсталлинг ГРУБ тхере цоулд ресулт ин ФИЛЕСЍСТЕМ ДЕСТРУЦТИОН иф валуабле дата ис оверўриттен бѝ груб-сетуп (--скип-фс-пробе дисаблес тхис цхецк, усе ат ѝоур оўн риск) %s доес нот суппорт УУИДс %s доесн'т еѯист. Плеасе специфѝ --таргет ор --дирецторѝ %s доесн'т лоок лике ан ЕФИ партитион.
 %s генератес а кеѝбоард лаѝоут фор ГРУБ усинг цкбцомп\н %s ис депрецатед. Усе сет гфѯпаѝлоад=%s бефоре линуѯ цомманд инстеад.
 %s ис депрецатед. ВГА моде %d исн'т рецогнизед. Усе сет гфѯпаѝлоад=ЎИДТХѯХЕИГХТ[ѯДЕПТХ] бефоре линуѯ цомманд инстеад.
 %s ис нот ѝет суппортед бѝ груб-мкцонфиг.\н %s, ўитх Хурд %s %s, ўитх Хурд %s (рецоверѝ моде) %s, ўитх Линуѯ %s %s, ўитх Линуѯ %s (рецоверѝ моде) %s, ўитх Ѯен %s анд Линуѯ %s %s, ўитх Ѯен %s анд Линуѯ %s (рецоверѝ моде) %s, ўитх Ѯен хѝпервисор %s, ўитх кФрееБСД %s %s, ўитх кФрееБСД %s (рецоверѝ моде) %s, ўитх кернел %s (виа %s) %s, ўитх кернел %s (виа %s, рецоверѝ моде) %s: ХАСХ МИСМАТЦХ
 %s: ОК
 %s: РЕАД ЕРРОР
 %s: Тоо манѝ аргументс
 %s: Ѝоу муст рун тхис ас роот\н %s: еррор: %s: инфо: %s: инвалид оптион -- '%c'
 %s: нот фоунд %s: оптион '%c%s' доесн'т аллоў ан аргумент
 %s: оптион '%s' ис амбигуоус; поссибилитиес: %s: оптион '--%s' доесн'т аллоў ан аргумент
 %s: оптион '--%s' реќуирес ан аргумент
 %s: оптион '-Ў %s' доесн'т аллоў ан аргумент
 %s: оптион '-Ў %s' ис амбигуоус
 %s: оптион '-Ў %s' реќуирес ан аргумент
 %s: оптион реќуирес ан аргумент -- '%c'
 %s: оптион реќуирес ан аргумент -- `%s'\н %s: унрецогнизед оптион '%c%s'
 %s: унрецогнизед оптион '--%s'
 %s: ўарнинг: (32-бит) (64-бит) (ПРОГРАМ ЕРРОР) Но версион кноўн!? (ПРОГРАМ ЕРРОР) Оптион схоулд хаве беен рецогнизед!? (он %s) - Лабел `%s' - Ласт модифицатион тиме %d-%02d-%02d %02d:%02d:%02d %s --МОРЕ-- --ппц ПАТХ|--ѯ86 ФИЛЕ -х ХАСХ [-ц ФИЛЕ [-п ПРЕФИѮ]] [ФИЛЕ1 [ФИЛЕ2 ...]] -л | -р | [-с] грубдев осдиск. .5 16-бит протецтед интерфаце суппортед
 16-бит протецтед интерфаце унсуппортед
 32-бит протецтед интерфаце суппортед
 32-бит протецтед интерфаце унсуппортед
 =ВАЛ > АЦПИ нон-волатиле стораге РАМ АЦПИ рецлаимабле РАМ АЦПИ схутдоўн фаилед АДДР АДДР ВАЛУЕ [МАСК] АДДР [СИЗЕ] АДДР1,МАСК1[,АДДР2,МАСК2[,...]] АДДРЕСС ДНССЕРВЕР АПМ дисаблед
 АПМ дисенгагед
 АПМ енаблед
 АПМ енгагед
 АРГП_ХЕЛП_ФМТ: %s валуе ис лесс тхан ор еќуал то %s АСЦИИ Аццепт ДОС-стѝле ЦР/НЛ лине ендингс. Ацтиве инпут терминалс: Ацтиве оутпут терминалс: Адаптер `%s':
 Адд а ДНС сервер Адд а нетўорк аддресс. Адд а нетўорк роуте. Адванцед оптионс фор %s Адванцед оптионс фор %s (ўитх Ѯен хѝпервисор) Аллоў то интеррупт ўитх ЕСЦ. Аск фор филе наме то ребоот фром. Ассуме инпут ис хеѯ. Ассуме инпут ис пасспхрасе. Ассуме инпут ис раў. Аттемптинг то децрѝпт мастер кеѝ... Аттемптинг то инсталл ГРУБ то а диск ўитх мултипле партитион лабелс ор ботх партитион лабел анд филесѝстем.  Тхис ис нот суппортед ѝет. Аттемптинг то инсталл ГРУБ то а диск ўитх мултипле партитион лабелс.  Тхис ис нот суппортед ѝет. Аттемптинг то инсталл ГРУБ то а партитионлесс диск ор то а партитион.  Тхис ис а БАД идеа. Аваилабле инпут терминалс: Аваилабле оутпут терминалс: Б Б/с БИОС_ДУМП [ИНТ10_ДУМП] БЛОЦК БЍТЕ:БИТ Бацкгроунд имаге моде. Басе дирецторѝ фор хасх лист. Блесс ДИР оф ХФС ор ХФС+ партитион фор ППЦ мацс. Блесс ФИЛЕ оф ХФС ор ХФС+ партитион фор интел мацс. Боот БИОС-басед сѝстем. Боот ан оператинг сѝстем. Боот инто сингле моде. Боот ўитх дебуг мессагес. Боот ўитх вербосе мессагес. Боотинг `%s' Боотинг а цомманд лист Боотинг ин блинд моде Боотпатх: %s
 Боотпатх: унаваилабле
 Бреак инто ГДБ ЦГА  ЦОЛОР ЦОММАНД [АРГС] ЦПУ Идле доесн'т слоў доўн процессор
 ЦПУ Идле слоўс доўн процессор
 ЦС5536 ат %d:%d.%d
 Цан'т цреате филе: %s Цан'т енабле РОМ ареа. Цханге цонфигуред девицес. Цханге партитион тѝпе Цхецк Алт кеѝ. Цхецк Цонтрол кеѝ. Цхецк Схифт кеѝ. Цхецк фор ЦПУ феатурес. Цхецк хасхес оф филес ўитх хасх лист ФИЛЕ. Цхецк иф ЦПУ суппортс 64-бит (лонг) моде (дефаулт). Цхецк иф ЦПУ суппортс Пхѝсицал Аддресс Еѯтенсион. Цхецк иф ФИЛЕ цан бе усед ас ѯ86 мултибоот кернел Цхецк иф ФИЛЕ цан бе усед ас ѯ86 мултибоот2 кернел Цхецк иф ФИЛЕ ис АРМ ЕФИ филе Цхецк иф ФИЛЕ ис БИОС боотсецтор Цхецк иф ФИЛЕ ис ИА64 ЕФИ филе Цхецк иф ФИЛЕ ис хиберфил.сѝс ин хибернатед стате Цхецк иф ФИЛЕ ис и386 ЕФИ филе Цхецк иф ФИЛЕ ис оф специфиед тѝпе. Цхецк кеѝ модифиер статус. Цхецк ўхетхер усер ис ин УСЕРЛИСТ. Цхецкс ГРУБ сцрипт цонфигуратион филе фор сѝнтаѯ еррорс. Цлеар бит ат БЍТЕ:БИТ ин ЦМОС. Цлеар тхе сцреен. Цлеаред ацтиве флаг он %d. 
 Цоммандс: Цомпаре ФИЛЕ ўитх лоцал филе ЛОЦАЛ. Цомпаре филе `%s' ўитх `%s':
 Цомпаре тўо филес. Цомпуте ѮНУ УУИД оф тхе девице. Цомпуте ор цхецк хасх цхецксум. Цонфигуре сериал порт. Цонтинуе лоопс Цонверт цоммон фонт филе форматс инто ПФ2 Цопѝ ФИЛЕ то лоцал филе ЛОЦАЛ. Цопѝ ФИЛЕ то стандард оутпут. Цоулд нот лоцате ФПСЎА дривер Цоулдн'т финд а фрее БоотНННН слот Цоулдн'т финд пхѝсицал волуме `%s'. Соме модулес маѝ бе миссинг фром цоре имаге. Цоулдн'т лоад сха256 Цоулдн'т лоад сха512 Цреате БИОС-лике струцтурес фор бацкўард цомпатибилитѝ ўитх еѯистинг ОС. Цреате а бланк енвиронмент блоцк филе. Цуррент терминфо тѝпес: ДЕВИЦЕ ДЕВИЦЕ [ПАРТИТИОН[+/-[ТЍПЕ]]] ... ДЕВИЦЕ муст бе ан ОС девице (е.г. /дев/сда). ДЕВИЦЕ_НАМЕ ДИР ДИРЕЦТОРЍ [ОСБундлеРеќуиред] ДНССЕРВЕР Дебуг тоол фор филесѝстем дривер. Децларе меморѝ регионс ас фаултѝ (бадрам). Децомпрессор ис тоо биг Дефаулт сервер ис ${нет_дефаулт_сервер} Дефине а мену ентрѝ. Дефине а субмену. Делете а нетўорк аддресс. Делете а нетўорк роуте. Делете тхе специфиед лоопбацк дриве. Делете вариаблес. Детермине дривер. Детермине филесѝстем УУИД. Детермине филесѝстем лабел. Детермине филесѝстем тѝпе. Детермине партитион мап тѝпе. Девице %s: Девид: %s
 Девид: унаваилабле Дирецт цолор, маск: %d/%d/%d/%d  пос: %d/%d/%d/%d Дисабле АЦПИ. Дисабле СМП. Дисабле алл боот оутпут. Дисабле/енабле СМАРТ (0/1). Дисцардинг импроперлѝ нестед партитион (%s,%s,%s%d) Диск цацхе статистицс: хитс = %lu (%lu.%02lu%%), миссес = %lu
 Диск цоунт муст прецеде дискс лист.
 Дисплаѝ ФПСЎА версион. Дисплаѝ СМАРТ хеалтх статус. Дисплаѝ а лине оф теѯт. Дисплаѝ блоцклист оф ФИЛЕ. Дисплаѝ оутпут он алл цонсолес. Дисплаѝ поўер моде. Дисплаѝ тхе усаге оф тхис цомманд анд еѯит. Дисплаѝ тхис хелп анд еѯит. Дисплаѝ/сет цуррент датетиме. До нот апплѝ анѝ реед-соломон цодес ўхен ембеддинг цоре.имг. Тхис оптион ис онлѝ аваилабле он ѯ86 БИОС таргетс. До нот оутпут тхе траилинг неўлине. До нот принт мессагес. До нот пробе анѝ флоппѝ дриве. До нот усе АПМ то халт тхе цомпутер. До нотхинг, суццессфуллѝ. До нотхинг, унсуццессфуллѝ. Дон'т дисплаѝ боот диагностиц мессагес. Дон'т лоад хост таблес специфиед бѝ цомма-сепаратед лист. Дон'т ребоот, йуст халт. Дон'т стоп афтер фирст еррор. Дон'т упдате ЕБДА. Маѝ фиѯ фаилурес ор хангс он соме БИОСес бут макес ит инеффецтиве ўитх ОС нот рецеивинг РСДП фром ГРУБ. ЕФИ боотлоадер ид исн'т специфиед. ЕНВВАР ЕНВВАР [ЕНВВАР] ... ЕРРОР: но валид кеѝбоард лаѝоут фоунд. Цхецк тхе инпут.
 ЕСЦ ат анѝ тиме еѯитс. ЕѮПРЕССИОН ЕѮПРЕССИОН ] Елапсед тиме: %d.%03d с 
 Елапсед тиме: %d.%03d сецондс 
 Ембеддинг ис нот поссибле.  ГРУБ цан онлѝ бе инсталлед ин тхис сетуп бѝ усинг блоцклистс.  Хоўевер, блоцклистс аре УНРЕЛИАБЛЕ анд тхеир усе ис дисцоурагед. Емулате а кеѝстроке сеќуенце Енабле интерпретатион оф бацксласх есцапес. Енабле/дисабле РТС/ЦТС. Ентер ЗФС пассўорд:  Ентер ин КДБ он боот. Ентер нормал моде. Ентер пасспхрасе фор %s%s%s (%s):  Ентер пассўорд:  Ентер усернаме:  Еррор ин парсинг цомманд лине аргументс
 Евалуате ан еѯпрессион. Евалуате аргументс ас ГРУБ цоммандс Еѯецуте сѝслинуѯ цонфиг ин неў цонтеѯт Еѯецуте сѝслинуѯ цонфиг ин неў цонтеѯт такинг онлѝ мену ентриес Еѯецуте сѝслинуѯ цонфиг ин саме цонтеѯт Еѯецуте сѝслинуѯ цонфиг ин саме цонтеѯт такинг онлѝ мену ентриес Еѯит фаилед Еѯит фром ГРУБ. Еѯит фром лоопс Еѯит фром нормал моде. Еѯпорт вариаблес. Еѯпорт версион 1 таблес то тхе ОС. Еѯпорт версион 2 анд версион 3 таблес то тхе ОС. ФИЛЕ ФИЛЕ [АРГ ...] ФИЛЕ [АРГС...] ФИЛЕ | ТЕМПО [ПИТЦХ1 ДУРАТИОН1] [ПИТЦХ2 ДУРАТИОН2] ...  ФИЛЕ... ФИЛЕ1 ФИЛЕ2 ФИЛЕНАМЕ ЦОММАНД ФИЛЕСЍСТЕМ [ВАРИАБЛЕ] ФИЛЕ|промпт ФОНТС ФОРМАТ ФПСЎА протоцол ўасн'т абле то финд тхе интерфаце ФПСЎА ревисион: %x
 ФРОМ-ТО[,ФРОМ-ТО] ФРОМ[К|М|Г] ТО[К|М|Г] ФТ_Инит_ФрееТѝпе фаилс Фаилед то боот ботх дефаулт анд фаллбацк ентриес.
 Фаилед то цреате `девице-маппер' трее Фаллинг бацк то `%s' Филе сизе: %s
 Филе сѝстем `%s' доесн'т суппорт ембеддинг Филес диффер ат тхе оффсет %llu: 0ѯ%x [%s], 0ѯ%x [%s]
 Филес диффер ин сизе: %llu [%s], %llu [%s]
 Филесѝстем цаннот бе аццессед Филесѝстем тѝпе %s Филл хѝбрид МБР оф ГПТ дриве ДЕВИЦЕ. Специфиед партитионс ўилл бе а парт оф хѝбрид МБР. Уп то 3 партитионс аре аллоўед. ТЍПЕ ис ан МБР тѝпе. + меанс тхат партитион ис ацтиве. Онлѝ оне партитион цан бе ацтиве. Финализе лоадинг оф ЕФИ емулатор. Фирст трѝ тхе девице ХИНТ иф цуррентлѝ руннинг он АРЦ. Иф ХИНТ ендс ин цомма, алсо трѝ субпартитионс Фирст трѝ тхе девице ХИНТ иф цуррентлѝ руннинг он БИОС. Иф ХИНТ ендс ин цомма, алсо трѝ субпартитионс Фирст трѝ тхе девице ХИНТ иф цуррентлѝ руннинг он ЕФИ. Иф ХИНТ ендс ин цомма, алсо трѝ субпартитионс Фирст трѝ тхе девице ХИНТ иф цуррентлѝ руннинг он ИЕЕЕ1275. Иф ХИНТ ендс ин цомма, алсо трѝ субпартитионс Фирст трѝ тхе девице ХИНТ иф дирецт хардўаре аццесс ис суппортед. Иф ХИНТ ендс ин цомма, алсо трѝ субпартитионс Фирст трѝ тхе девице ХИНТ. Иф ХИНТ ендс ин цомма, алсо трѝ субпартитионс Фиѯ видео проблем. Фоунд %s он %s (%s)\н Фоунд %s он %s\н Фоунд ГНУ Мацх: %s Фоунд Хурд модуле: %s Фоунд НетБСД кернел: %s\н Фоунд бацкгроунд: %s\н Фоунд инитрд имаге: %s\н Фоунд кернел модуле дирецторѝ: %s\н Фоунд кернел оф ФрееБСД: %s\н Фоунд линуѯ имаге: %s\н Фоунд тхеме: %s\н Фреетѝпе Еррор %d лоадинг глѝпх 0ѯ%x фор У+0ѯ%x%s Фреезе АТА сецуритѝ сеттингс унтил ресет. Фридаѝ Г ГНУ ГРУБ  версион %s ГРУБ Боот Мену ГРУБ доесн'т кноў хоў то халт тхис мацхине ѝет! ГРУБ емулатор. ГРУБДЕВИЦЕ=ПЛАН9ДЕВИЦЕ Гарбаге ин АРГП_ХЕЛП_ФМТ: %s Генерате ГРУБ кеѝбоард лаѝоут фром Линуѯ цонсоле оне. Генерате ПБКДФ2 пассўорд хасх. Генерате а груб цонфиг филе Генерате а стандалоне имаге (цонтаининг алл модулес) ин тхе селецтед формат Генератинг груб цонфигуратион филе ... Гет црц32 цхецксум оф ФИЛЕ. Гет диск цацхе инфо. Гет/сет АТА диск параметерс. ГиБ ГиБ/с Графт поинт сѝнтаѯ (Е.г. /боот/груб/груб.цфг=./груб.цфг) ис аццептед ХАСХ ХИНТ Халт тхе сѝстем, иф поссибле усинг АПМ. Халтс тхе цомпутер.  Тхис цомманд доес нот ўорк он алл фирмўаре имплементатионс. Хандле Н бѝтес ин оутпут филе. Хелло Ўорлд Херцулес  ИД ИМАГЕ1 [ИМАГЕ2 ...] МОУНТПОИНТ ИМАГЕ_ПАТХ ЦОММАНДС ИНСТАЛЛ_ДЕВИЦЕ муст бе сѝстем девице филенаме.
%s цопиес ГРУБ имагес инто %s.  Он соме платформс, ит маѝ алсо инсталл ГРУБ инто тхе боот сецтор. Иф ФИЛЕНАМЕ ис `-', тхе дефаулт валуе %s ис усед.

Тхере ис но `делете' цомманд; иф ѝоу ўант то делете тхе ўхоле енвиронмент
блоцк, усе `рм %s'. Импорт ЗФС ўраппинг кеѝ сторед ин ФИЛЕ. Инцоррецт ВДЕВ Инцоррецт виртуал девице: но тѝпе аваилабле Инсерт а модуле. Инсталл ГРУБ он ѝоур дриве. Инсталлатион финисхед. Но еррор репортед. Инсталлинг фор %s платформ.
 Инвалид бацк референце Инвалид цхарацтер цласс наме Инвалид цоллатион цхарацтер Инвалид цомманд %s.
 Инвалид цонтент оф \{\} Инвалид девице `%s'.
 Инвалид диск цоунт.
 Инвалид прецединг регулар еѯпрессион Инвалид ранге енд Инвалид регулар еѯпрессион Инвоке усер цонфигуратион роутинг. К КЕРНЕЛ АРГС КЕЍБОАРД_КЕЍ Кеѝбоард кеѝ то ќуицклѝ боот тхис ентрѝ. КиБ КиБ/с ЛОЦАЛЕС Леаф виртуал девице (филе ор диск) Легацѝ `аск' параметер но лонгер суппортед. Легенд: маск/поситион=ред/греен/блуе/ресервед Ленгтх оф генератед хасх Ленгтх оф салт Лист ДНС серверс Лист ПЦИ девицес. Лист алл филес. Лист аваилабле видео модес. Иф ресолутион ис гивен схоў онлѝ модес матцхинг ит. Лист цоребоот таблес. Лист девицес анд филес. Лист девицес ор филес. Лист девицес. Лист филес ин ПАТХ. Лист меморѝ мап провидед бѝ фирмўаре. Лист оф суппортед видео модес: Лист оф усерс аллоўед то боот тхис ентрѝ. Лист ор селецт ан инпут терминал. Лист ор селецт ан оутпут терминал. Лист тхе цуррент вариаблес. Лист тхе лоадед фонтс. Лист вариаблес фром енвиронмент блоцк филе. Лоад 64-бит ѮНУ имаге. Лоад БИОС думп. Лоад ДТБ филе. Лоад ФрееБСД енв. Лоад ФрееБСД кернел модуле (ЕЛФ). Лоад ФрееБСД кернел модуле. Лоад ФрееДОС кернел.сѝс. Лоад Линуѯ. Лоад НТЛДР ор БоотМГР. Лоад НетБСД кернел модуле (ЕЛФ). Лоад НетБСД кернел модуле. Лоад План9 кернел. Лоад Труецрѝпт ИСО. Лоад ѮНУ еѯтенсион дирецторѝ. Лоад ѮНУ еѯтенсион пацкаге. Лоад ѮНУ еѯтенсион. Лоад ѮНУ имаге. Лоад ѮНУ рамдиск. Ит ўилл бе аваилабле ин ОС ас мд0. Лоад `девице-пропертиес' думп. Лоад а ПѮЕ имаге. Лоад а кеѝбоард лаѝоут. Лоад а мултибоот 2 кернел. Лоад а мултибоот 2 модуле. Лоад а мултибоот кернел. Лоад а мултибоот модуле. Лоад а спласх имаге фор ѮНУ. Лоад ан имаге оф хибернатед ѮНУ. Лоад анд инитиализе ЕФИ емулатор. Лоад анотхер боот лоадер. Лоад анотхер цонфиг филе бут таке онлѝ мену ентриес. Лоад анотхер цонфиг филе ўитхоут цхангинг цонтеѯт бут таке онлѝ мену ентриес. Лоад анотхер цонфиг филе ўитхоут цхангинг цонтеѯт. Лоад анотхер цонфиг филе. Лоад анотхер цоребоот паѝлоад Лоад бацкгроунд имаге фор ацтиве терминал. Лоад хост АЦПИ таблес анд таблес специфиед бѝ аргументс. Лоад инитрд. Лоад кОпенБСД рамдиск. Лоад кернел оф ФрееБСД. Лоад кернел оф НетБСД. Лоад кернел оф ОпенБСД. Лоад модуле. Лоад онлѝ таблес специфиед бѝ цомма-сепаратед лист. Лоад тхе саме филе ин мултипле ўаѝс. Лоад вариаблес фром енвиронмент блоцк филе. Лоад зфс црѝпто кеѝ. Лоадед фонтс: Лоадинг ГНУ Мацх ... Лоадинг Линуѯ %s ... Лоадинг Ѯен %s ... Лоадинг инитиал рамдиск ... Лоадинг кернел оф ФрееБСД %s ... Лоадинг кернел оф Иллумос ... Лоадинг тхе Хурд ... М МАЦ верифицатион фаилед МЕНУ_ЕНТРЍ ис а нумбер, а мену итем титле ор а мену итем идентифиер. МЕНУ_ЕНТРЍ ис а нумбер, а мену итем титле ор а мену итем идентифиер. Плеасе ноте тхат мену итемс ин
субменус ор суб-субменус реќуире специфѝинг тхе субмену цомпонентс анд тхен тхе
мену итем цомпонент. Тхе титлес схоулд бе сепаратед усинг тхе греатер-тхан
цхарацтер (>) ўитх но еѯтра спацес. Депендинг он ѝоур схелл соме цхарацтерс инцлудинг > маѝ неед есцапинг. Море информатион абоут тхис ис аваилабле
ин тхе ГРУБ Мануал ин тхе сецтион абоут тхе 'дефаулт' цомманд.  МОДУЛЕ МОДУЛЕС Мац-стѝле блесс он ХФС ор ХФС+ Маке ГРУБ ЦД-РОМ, диск, пендриве анд флоппѝ боотабле имаге. Маке ГРУБ кеѝбоард лаѝоут филе. Маке а боотабле имаге оф ГРУБ. Маке а виртуал дриве фром а филе. Маке партитион ацтиве Манаге тхе БИОС дриве маппингс. Мандаторѝ ор оптионал аргументс то лонг оптионс аре алсо мандаторѝ ор оптионал фор анѝ цорреспондинг схорт оптионс. Манипулате ПЦИ девицес. Меасуре тиме усед бѝ ЦОММАНД Меморѝ еѯхаустед Меморѝ тѝпе: ДДР2. Меморѝ тѝпе: Ункноўн. Мену ентрѝ идентифиер. Мену ентрѝ нот специфиед. Мену ентрѝ тѝпе. МиБ МиБ/с Минимал БАСХ-лике лине едитинг ис суппортед. Фор тхе фирст ўорд, ТАБ листс поссибле цомманд цомплетионс. Анѝўхере елсе ТАБ листс поссибле девице ор филе цомплетионс. %s Минимум Емацс-лике сцреен едитинг ис суппортед. ТАБ листс цомплетионс. Пресс Цтрл-ѯ ор Ф10 то боот, Цтрл-ц ор Ф2 фор а цомманд-лине ор ЕСЦ то дисцард едитс анд ретурн то тхе ГРУБ мену. Миссинг аргументс
 Миссинг инпут филе
 Мондаѝ Моноцхроме  Море тхан оне инсталл девице? Море тхан оне мену ентрѝ? Моунт а црѝпто девице. Моунт алл волумес ўитх `боот' флаг сет. Моунт алл. Моунт бѝ УУИД. Моунт црѝпто девицес. НАМЕ НАМЕ [ВАРИАБЛЕ] [ХИНТС] НОТ РУННИНГ:  НУМ НУМБЕР_ОФ_СЕЦОНДС Наме	Реф Цоунт	Депенденциес
 Нативе диск дриверс аре ин усе. Рефусинг то усе фирмўаре диск интерфаце. Нетбоот дирецторѝ фор %s цреатед. Цонфигуре ѝоур ДХЦП сервер то поинт то %s
 Нетўорк протоцолс: Неў МБР ис ўриттен то `%s'
 Но ЦС5536 фоунд Но ФПСЎА фоунд Но боот тиме статистицс ис аваилабле
 Но цомманд ис специфиед.
 Но девице ис специфиед.
 Но диск цацхе статистицс аваилабле
 Но дривес хаве беен ремаппед Но кноўн филесѝстем детецтед Но матцх Но патх ис специфиед.
 Но патх ор девице ис специфиед.
 Но превиоус регулар еѯпрессион Но виртуал девице трее аваилабле Нон-цхаин 4  Нот еноугх параметерс то цомманд.
 Ноў цоннецт тхе ремоте дебуггер, плеасе. Нумбер оф ПБКДФ2 итератионс ОПТИОНС ФИЛЕ ОС диск #нум ------> ГРУБ/БИОС девице ОС филе %s опен еррор: %s Оптионс: Оут оф ранге лоокуп: %d
 Оут оф ранге субститутион (%d, %d)
 Оверриде гуессед маппинг оф План9 девицес. П ПАРТИТИОН ЦОММАНДС ПАТХ ПБКДФ2 хасх оф ѝоур пассўорд ис %s
 ПОРТ ПОРТ ВАЛУЕ [МАСК] ПУБКЕЍ_ИД Палеттед  Парсе легацѝ цонфиг ин неў цонтеѯт Парсе легацѝ цонфиг ин неў цонтеѯт такинг онлѝ мену ентриес Парсе легацѝ цонфиг ин саме цонтеѯт Парсе легацѝ цонфиг ин саме цонтеѯт такинг онлѝ мену ентриес Парт но: %s.
 Партитион %d ис ацтиве ноў. 
 Партитион %s: Партитион стѝле `%s' доесн'т суппорт ембеддинг Патх: %s
 Патх: унаваилабле Перформ ЦОММАНДС он партитион.
Усе `парттоол ПАРТИТИОН хелп' фор тхе лист оф аваилабле цоммандс. Перформ а ДНС лоокуп Перформ ан ИПВ6 аутоцонфигуратион Перформ ботх дирецт анд реверсе маппингс. ПиБ ПиБ/с Планар  Плаѝ а туне. Плеасе дон'т усе олд титле `%s' фор ГРУБ_ДЕФАУЛТ, усе `%s' (фор версионс бефоре 2.00) ор `%s' (фор 2.00 ор латер) Поол ГУИД: %016llx
 Поол ГУИД: унаваилабле Поол наме: %s
 Поол наме: унаваилабле Поол стате: ацтиве Поол стате: дестроѝед Поол стате: еѯпортед Поол стате: левел 2 АРЦ девице Поол стате: потентиаллѝ ацтиве Поол стате: ресервед фор хот спаре Поол стате: унаваилабле Поол стате: унинитиализед Поссибле аргументс аре: Поссибле цоммандс аре: Поссибле девицес аре: Поссибле филес аре: Поссибле партитионс аре: Поссибле тхингс аре: Прематуре енд оф регулар еѯпрессион Препарес ГРУБ нетўорк боот имагес ат нет_дирецторѝ/субдир ассуминг нет_дирецторѝ беинг ТФТП роот. Пресс анѝ кеѝ то цонтинуе... Пресс анѝ кеѝ то лаунцх ѯну Пресс ентер то боот тхе селецтед ОС, `е' то едит тхе цоммандс бефоре боотинг ор `ц' фор а цомманд-лине. Пресс ентер то боот тхе селецтед ОС, `е' то едит тхе цоммандс бефоре боотинг ор `ц' фор а цомманд-лине. ЕСЦ то ретурн превиоус мену. Принт Меморѝ информатион. Принт ЗФС инфо абоут ДЕВИЦЕ. Принт ЗФС-БООТФСОБЙ ор сторе ит инто ВАРИАБЛЕ Принт а блоцк лист. Принт анд еѯецуте блоцк аргумент. Принт бацктраце. Принт дриве идентитѝ анд сеттингс. Принт сизес ин а хуман реадабле формат. Пробе девице информатион фор а гивен патх (ор девице, иф тхе -д оптион ис гивен). РАМ холдинг цоребоот таблес РАМ холдинг фирмўаре цоде РАМ слот нумбер %d
 РЕГЕѮП СТРИНГ РОМ имаге ис пресент. Реад 16-бит валуе фром АДДР. Реад 16-бит валуе фром ПОРТ. Реад 32-бит валуе фром АДДР. Реад 32-бит валуе фром ПОРТ. Реад 8-бит валуе фром АДДР. Реад 8-бит валуе фром ПОРТ. Реад онлѝ ЛЕНГТХ бѝтес. Ребоот фаилед Ребоот инто фирмўаре сетуп мену. Ребоот тхе цомпутер. Реентер пассўорд:  Регистер %x оф %x:%02x.%x ис %x
 Регулар еѯпрессион тоо биг Ремове а ДНС сервер Ремове а модуле. Ремове ан енвиронмент вариабле. Ремове анѝ меморѝ регионс ин специфиед ранге. Рендер Аппле .диск_лабел. Репорт бугс то %s.
 Репорт бугс то <буг-груб@гну.орг>. Реќуестед сериал терминал бут ГРУБ_СЕРИАЛ_ЦОММАНД ис унспецифиед. Дефаулт параметерс ўилл бе усед. Ресет алл маппингс то тхе дефаулт валуес. Ретриеве девице инфо. Ретурн фром а фунцтион. Ретурн то ИЕЕЕ1275 промпт. Рун `гдб %s %d', анд сет АРГС.ХОЛД то зеро.
 Рун `го' то ресуме ГРУБ. СЕЦС СХОРТНАМЕ СХОРТНАМЕ ЦАРД АДДРЕСС [ХЎАДДРЕСС] СХОРТНАМЕ НЕТ [ИНТЕРФАЦЕ| гў ГАТЕЎАЍ] СИЗЕ СОУРЦЕ|-у УУИД|-а|-б СТРИНГ СТРИНГ ... Сатурдаѝ Саве реад валуе инто вариабле ВАРНАМЕ. Саве вариаблес то енвиронмент блоцк филе. Саѝ `Хелло Ўорлд'. Сцрипт `%s' цонтаинс но цоммандс анд ўилл до нотхинг
 Сеарцх девицес бѝ УУИД. Иф ВАРИАБЛЕ ис специфиед, тхе фирст девице фоунд ис сет то а вариабле. Сеарцх девицес бѝ а филе. Сеарцх девицес бѝ а филесѝстем УУИД. Сеарцх девицес бѝ а филесѝстем лабел. Сеарцх девицес бѝ филе, филесѝстем лабел ор филесѝстем УУИД. Иф --сет ис специфиед, тхе фирст девице фоунд ис сет то а вариабле. Иф но вариабле наме ис специфиед, `роот' ис усед. Сеарцх девицес бѝ филе. Иф ВАРИАБЛЕ ис специфиед, тхе фирст девице фоунд ис сет то а вариабле. Сеарцх девицес бѝ лабел. Иф ВАРИАБЛЕ ис специфиед, тхе фирст девице фоунд ис сет то а вариабле. Сецтор %llu ис алреадѝ ин усе бѝ раид цонтроллер `%s'; авоидинг ит.  Плеасе аск тхе мануфацтурер нот то сторе дата ин МБР гап Сецтор %llu ис алреадѝ ин усе бѝ тхе програм `%s'; авоидинг ит.  Тхис софтўаре маѝ цаусе боот ор отхер проблемс ин футуре.  Плеасе аск итс аутхорс нот то сторе дата ин тхе боот трацк Селецт девице бѝ итс поситион он тхе бус. Селецт девице бѝ вендор анд девице ИДс. Сет Адванцед Поўер Манагемент
(1=лоў, ..., 254=хигх, 255=офф). Сет Аутоматиц Ацоустиц Манагемент
(0=офф, 128=ќуиет, ..., 254=фаст). Сет ОЕМИД оф РСДП, ѮСДТ анд РСДТ. Сет ОЕМТАБЛЕ ИД оф РСДП, ѮСДТ анд РСДТ. Сет ОЕМТАБЛЕ ревисион оф РСДП, ѮСДТ анд РСДТ. Сет `хидден' флаг ин партитион тѝпе Сет а вариабле то ретурн валуе. Сет а вариабле то тхе фирст девице фоунд. Сет ан енвиронмент вариабле. Сет бацкгроунд цолор фор ацтиве терминал. Сет бит ат БЍТЕ:БИТ ин ЦМОС. Сет цреатор фиелд оф РСДП, ѮСДТ анд РСДТ. Сет цреатор ревисион оф РСДП, ѮСДТ анд РСДТ. Сет дебуг енвиронмент вариабле. Сет дриве то слееп моде. Сет дриве то стандбѝ моде. Сет поситионал параметерс. Сет роот девице. Сет стандбѝ тимеоут
(0=офф, 1=5с, 2=10с, ..., 240=20м, 241=30м, ...). Сет терминфо тѝпе оф ТЕРМ  то ТЍПЕ.
 Сет тхе дефаулт боот мену ентрѝ фор ГРУБ, фор тхе неѯт боот онлѝ. Сет тхе дефаулт боот мену ентрѝ фор ГРУБ. Сет тхе сериал порт аддресс. Сет тхе сериал порт паритѝ. Сет тхе сериал порт спеед. Сет тхе сериал порт стоп битс. Сет тхе сериал порт ўорд ленгтх. Сет тхе сериал унит. Сет уп имагес то боот фром ДЕВИЦЕ.

Ѝоу схоулд нот нормаллѝ рун тхис програм дирецтлѝ.  Усе груб-инсталл инстеад. Сет усер пассўорд (ПБКДФ2).  Сет усер пассўорд (плаинтеѯт). Унрецоммендед анд инсецуре. Сет вариабле ўитх усер инпут. Сет вариаблес. Сеттинг ГРУБ_ТИМЕОУТ то а нон-зеро валуе ўхен ГРУБ_ХИДДЕН_ТИМЕОУТ ис сет ис но лонгер суппортед. Сеттинг партитион тѝпе то 0ѯ%x
 Схифт поситионал параметерс. Схоў АЦПИ информатион. Схоў АПМ информатион. Схоў ЦБМЕМ цонсоле цонтент. Схоў а хелп мессаге. Схоў а лонг лист ўитх море детаилед информатион. Схоў цонтентс оф ФИЛЕ ин хеѯ. Схоў лоадед модулес. Схоў меморѝ цонтентс. Схоў раў цонтентс оф АТА ИДЕНТИФЍ сецтор. Схоў раў цонтентс оф а филе ор меморѝ. Схоў раў думп оф тхе ЦМОС цонтентс. Схоў раў думп оф тхе ПЦИ цонфигуратион спаце. Схоў тхе цонтентс оф а филе. Схоў тхе цуррент маппингс. Схоў тхе лист оф трустед кеѝс. Схоў тхис мессаге. Схоў версион 1 таблес онлѝ. Схоў версион 2 анд версион 3 таблес онлѝ. Схутдоўн фаилед Симулате груб-легацѝ `инитрд' цомманд Симулате груб-легацѝ `кернел' цомманд Симулате груб-легацѝ `модуленоунзип' цомманд Симулате груб-легацѝ `пассўорд' цомманд Симулате груб-легацѝ `пассўорд' цомманд ин мену ентрѝ моде Скип Н бѝтес фром оутпут филе. Скип оффсет бѝтес фром тхе бегиннинг оф филе. Скип сигнатуре-цхецкинг оф тхе енвиронмент филе. Скип сигнатуре-цхецкинг оф тхе публиц кеѝ филе. Слот %d опенед
 Соме Хурд стуфф фоунд, бут нот еноугх то боот. Специфѝ филенаме. Специфѝ хасх то усе. Специфѝ оне ор море фонт филес то лоад. Специфѝ сизе фор еацх реад оператион Специфѝ тхе нумбер оф инпут филес. Спеед: %s 
 Старт ГДБ стуб он гивен порт Стоп ГДБ стуб Стораге информатион фор `%s' доес нот инцлуде тѝпе Стораге информатион фор `%s' индицатес неитхер а плаин партитион нор а плаин диск Сторе матцхед цомпонент НУМБЕР ин ВАРНАМЕ. Суццесс Сундаѝ Суппресс нормал оутпут (ўарнингс ремаин). Сўитцх то нативе диск дриверс. Иф но модулес аре специфиед дефаулт сет (пата,ахци,усбмс,охци,ухци,ехци) ис усед Сѝнтаѯ еррор ат лине %u
 Сѝнтаѯ еррорс аре детецтед ин генератед ГРУБ цонфиг филе.
Енсуре тхат тхере аре но еррорс ин /етц/дефаулт/груб
анд /етц/груб.д/* филес ор плеасе филе а буг репорт ўитх
%s филе аттацхед. Сѝстем манагемент бус цонтроллер И/О спаце ис ат 0ѯ%x
 Т ТАРГЕТ ТХЕМЕС Таргет формат нот специфиед (усе тхе -О оптион). Терминал хас специфиед геометрѝ. Терминал ис АСЦИИ-онлѝ [дефаулт]. Терминал ис логицал-ордеред УТФ-8. Терминал ис висуаллѝ-ордеред УТФ-8. Тест УСБ суппорт. Тест бит ат БЍТЕ:БИТ ин ЦМОС. Тест филе реад спеед. Тест иф РЕГЕѮП матцхес СТРИНГ. Тест видео субсѝстем ин моде ЎѯХ. Тест видео субсѝстем. Теѯт-онлѝ  Тхе филес аре идентицал.
 Тхе хигхлигхтед ентрѝ ўилл бе еѯецутед аутоматицаллѝ ин %dс. Тхис ВДЕВ ис а РАИДЗ%llu
 Тхис ВДЕВ ис а миррор Тхис ентрѝ цан бе боотед бѝ анѝ усер. Тхис реќуирес сеттинг ГРУБ_ДЕФАУЛТ=савед ин %s/дефаулт/груб.\н Тхурсдаѝ ТиБ ТиБ/с Тоол то едит енвиронмент блоцк. Тотал фласх сизе: %d Б.
 Траилинг бацксласх Трансформ 64-бит УУИД то формат суитабле фор ѮНУ. Иф -л ис гивен кееп ит лоўерцасе ас доне бѝ блкид. Трансформ а сѝстем филенаме инто ГРУБ оне. Трансформ сѝслинуѯ цонфиг инто ГРУБ оне. Транслате СЕТ1 цхарацтерс то СЕТ2 ин СТРИНГ. Транслате то лоўер цасе. Транслате то уппер цасе. Транслатес тхе стринг ўитх тхе цуррент сеттингс. Трѝ '%s --хелп' ор '%s --усаге' фор море информатион.
 Туесдаѝ УСЕР ПАССЎОРД УСЕР ПБКДФ2_ПАССЎОРД УСЕРНАМЕ[,УСЕРНАМЕ] УТФ-8 Унабле то цреате пипе: %s Унабле то детермине ѝоур платформ. Усе --таргет. Унабле то форк: %s Унабле то опен стреам фром %s: %s Унабле то ретриеве поол стате Унцомпресс дата. Унцомпресс филе бефоре цхецксумминг. Ункноўн аддресс тѝпе %d
 Ункноўн цомманд `%s'.
 Ункноўн цомпрессион формат %s Ункноўн енцодинг Ункноўн еѯтра аргумент `%s'. Ункноўн гсуб фонт феатуре 0ѯ%x (%s)
 Ункноўн кеѝбоард сцан цоде 0ѯ%02x
 Ункноўн кеѝбоард сцан идентифиер %s
 Ункноўн платформ `%s-%s' Ункноўн сѝстем еррор Ункноўн видео моде  Ункноўн виртуал девице тѝпе: %s
 Унлоад ЕФИ емулатор. Унматцхед ( ор \( Унматцхед ) ор \) Унматцхед [ ор [^ Унматцхед \{ Унрецогнизед цомпрессион `%s' Унрецогнизед оптион `%s'\н Унрецогнизед поол стате Унсуппортед аддресс тѝпе %d
 Унсуппортед цовераге специфицатион: %d
 Унсуппортед хў аддресс тѝпе %d
 Унсуппортед имаге формат Унсуппортед субститутион флаг: 0ѯ%x
 Унсуппортед субститутион специфицатион: %d
 Унсуппортед субститутион тѝпе: %d
 Усаге: Усаге: %s -о ОУТПУТ ЦКБМАП_АРГУМЕНТС...\н Усаге: %s ДЕВИЦЕ
 Усаге: %s [ИНФИЛЕ [ОУТФИЛЕ]]
 Усаге: %s [ОПТИОН] МЕНУ_ЕНТРЍ\н Усаге: %s [ОПТИОН]\н Усе ЦД-РОМ ас роот. Усе ГДБ ремоте дебуггер инстеад оф ДДБ. Усе СТРИНГ ас мену ентрѝ бодѝ. Усе цомпилед-ин роот девице. Усе сериал цонсоле. Усе тхе %C анд %C кеѝс то селецт ўхицх ентрѝ ис хигхлигхтед. ВАР ИНТЕРФАЦЕ НУМБЕР ДЕСЦРИПТИОН ВАРНАМЕ ВДЕВ елемент нумбер %d исн'т цоррецт
 ВДЕВ елемент нумбер %d:
 ВДЕВ ўитх %d цхилдрен
 Вербосе цоунтдоўн. Верифѝ детацхед сигнатуре. Версион %u.%u
32-бит ЦС = 0ѯ%x, лен = 0ѯ%x, оффсет = 0ѯ%x
16-бит ЦС = 0ѯ%x, лен = 0ѯ%x
ДС = 0ѯ%x, лен = 0ѯ%x
 Виртуал девице ис деградед Виртуал девице ис фаултед Виртуал девице ис оффлине Виртуал девице ис онлине Виртуал девице ис ремовед ЎАРНИНГ: но цонсоле ўилл бе аваилабле то ОС ЎАРНИНГ: но платформ-специфиц инсталл ўас перформед ЎАРНИНГ: унсуппортед фонт феатуре параметерс: %x
 ЎИДТХѯХЕИГХТ. Ўаит фор а специфиед нумбер оф сецондс. Ўаит фор кеѝпресс афтер еверѝ лине оф оутпут. Ўарнинг: Ўарнинг: инвалид бацкгроунд цолор `%s'
 Ўарнинг: инвалид форегроунд цолор `%s'
 Ўарнинг: сѝнтаѯ еррор (миссинг сласх) ин `%s'
 Ўеднесдаѝ Ўиндоўс НТ/2000/ѮП (лоадер) Ўиндоўс Виста/7 (лоадер) Ўрите 16-бит ВАЛУЕ то АДДР. Ўрите 16-бит ВАЛУЕ то ПОРТ. Ўрите 32-бит ВАЛУЕ то АДДР. Ўрите 32-бит ВАЛУЕ то ПОРТ. Ўрите 8-бит ВАЛУЕ то АДДР. Ўрите 8-бит ВАЛУЕ то ПОРТ. Ўриттен СПД бѝтес: %d Б.
 Ѯен хѝпервисор, версион %s ЍУВ  Ѝоу неед то специфѝ ат леаст оне цомманд.
 Ѝоу ўилл хаве то сет `СѝстемПартитион' анд `ОСЛоадер' мануаллѝ. Ѝоу'ве фоунд а буг Ѝоур ембеддинг ареа ис унусуаллѝ смалл.  цоре.имг ўон'т фит ин ит. Ѝоур ѯоррисо доесн'т суппорт `--груб2-боот-инфо'. Соме феатурес аре дисаблед. Плеасе усе ѯоррисо 1.2.9 ор латер. Ѝоур ѯоррисо доесн'т суппорт `--груб2-боот-инфо'. Ѝоур цоре имаге ис тоо биг. Боот ас диск ис дисаблед. Плеасе усе ѯоррисо 1.2.9 ор латер. [--аппенд|--ремове] [ТЕРМИНАЛ1] [ТЕРМИНАЛ2] ... [--форце|--бпб] ФИЛЕ [--мд5] ПАССЎД [ФИЛЕ] [--но-мем-оптион] [--тѝпе=ТЍПЕ] ФИЛЕ [АРГ ...] [-1|-2] [--еѯцлуде=ТАБЛЕ1,ТАБЛЕ2|--лоад-онлѝ=ТАБЛЕ1,ТАБЛЕ2] ФИЛЕ1 [ФИЛЕ2] [...] [-ц ФИЛЕ [-п ПРЕФИѮ]] [ФИЛЕ1 [ФИЛЕ2 ...]] [-д] ДЕВИЦЕНАМЕ ФИЛЕ. [-е|-н] СТРИНГ [-ф ФИЛЕ] [-ф ФИЛЕ] [-с|--скип-сиг] [вариабле_наме_то_ўхителист] [...] [-ф ФИЛЕ] вариабле_наме [...] [-ф|-л|-у|-с|-н] [--хинт ХИНТ [--хинт ХИНТ] ...] НАМЕ [-х|-п|-р] [ФИЛЕ] [-л] ГРУБУУИД [ВАРНАМЕ] [-л|-х|-а] [ФИЛЕ ...] [-м (стретцх|нормал)] ФИЛЕ [-с ПОСИТИОН] [-д ДЕВИЦЕ] [-с ПОСИТИОН] [-д ДЕВИЦЕ] [-в ВАР] РЕГИСТЕР[=ВАЛУЕ[:МАСК]] [-с СИЗЕ] ФИЛЕНАМЕ [-с|--скип-сиг] ФИЛЕ СИГНАТУРЕ_ФИЛЕ [ПУБКЕЍ_ФИЛЕ] [-с|--скип-сиг] ПУБКЕЍ_ФИЛЕ [АДДР|цомУНИТ][,СПЕЕД] [АРГ] [ЦАРД [ХЎАДДРЕСС]] [ЦАРД] [ДИР] [ЕНВВАР=ВАЛУЕ] [ЕНВВАР] [КЕЍСТРОКЕ1] [КЕЍСТРОКЕ2] ... [МОДУЛЕ1 МОДУЛЕ2 ...] [НУМБЕР:]ВАРНАМЕ [НУМ] [ОПТИОНС...] [ОПТИОНС] [ОПТИОНС] ДИСК [ОПТИОНС] ФИЛЕ_ОР_ДЕВИЦЕ [ОПТИОНС] ФОНТ_ФИЛЕС [ОПТИОНС] [СЕТ1] [СЕТ2] [СТРИНГ] [ОПТИОН] СОУРЦЕ... [ОПТИОН] [ИНСТАЛЛ_ДЕВИЦЕ] [ОПТИОН]... [МОДУЛЕС] [ОПТИОН]... [ПАТХ|ДЕВИЦЕ] [ОПТС] [ПАТХ] [ПАТТЕРН ...] [УСЕРЛИСТ] [ВАЛУЕ]... [ЎѯХ[ѯД]] [ЎѯХ] [[-а|-у|-в] [-г ЎѯХ] ТЕРМ [ТЍПЕ]] [[ѝеар-]монтх-даѝ] [хоур:минуте[:сецонд]] [бус]:[слот][.фунц] [вендор]:[девице] `%s' ис нот а лоцал диск `црѝптомоунт' цомманд фаилс: %s `лоопбацк' цомманд фаилс: %s `нвсетенв' фаилед. 
Ѝоу ўилл хаве то сет `боот-девице' вариабле мануаллѝ.  Ат тхе ИЕЕЕ1275 промпт, тѝпе:
  %s
 `обппатх' нот фоунд ин парент дирс оф `%s', но ИЕЕЕ1275 наме дисцоверѝ а валуе ўас ассигнед то тхе аргумент `%s' ўхиле ит доесн'т реќуире ан аргумент аццесс дениед адд НОТЕ сегмент фор ЦХРП ИЕЕЕ1275 аддр аддресс нот фоунд ассуме инпут ис а пѯелинуѯ цонфигуратион филе. ассуме инпут ис а сѝслинуѯ цонфигуратион филе. ассуме инпут ис ан исолинуѯ цонфигуратион филе. аттемпт то инсталл то енцрѝптед диск ўитхоут црѝптодиск енаблед. Сет `%s' ин филе `%s'. аттемпт то реад ор ўрите оутсиде оф диск `%s' аттемпт то реад ор ўрите оутсиде оф партитион аттемпт то реад паст тхе енд оф филе аттемпт то сеек оутсиде оф тхе филе аттемптинг то реад тхе цоре имаге `%s' фром ГРУБ аттемптинг то реад тхе цоре имаге `%s' фром ГРУБ агаин аваилабле РАМ аваилабле форматс: бад сигнатуре басе_аддр = 0ѯ%llx, ленгтх = 0ѯ%llx, %s
 басе_аддр = 0ѯ%llx, ленгтх = 0ѯ%llx, тѝпе = 0ѯ%x
 битмап филе `%s' ис оф унсуппортед формат блесс фор ппц-басед мацс блесс фор ѯ86-басед мацс блоцклист ФИЛЕ блоцклистс аре инцомплете блоцклистс аре инвалид блоцксизе ис нот дивисибле бѝ 512 цан'т бреак 0 лоопс цан'т цомпресс `%s' то `%s' цан'т детермине филесѝстем он %s цан'т финд цомманд `%s' цан'т моунт енцрѝптед волуме `%s': %s цан'т опен `%s': %s цан'т опен филе %s, индеѯ %d: еррор %d цан'т ретриеве блоцклистс цан'т ретриеве блоцклистс: %s цан'т сет %dѯ%d фонт сизе: Фреетѝпе еррор %d: %s цаннот цомпресс тхе кернел имаге цаннот цопѝ `%s' то `%s': %s цаннот делете `%s': %s цаннот финд ЕФИ дирецторѝ цаннот финд а ГРУБ дриве фор %s.  Цхецк ѝоур девице.мап цаннот финд а девице фор %s (ис /дев моунтед?) цаннот финд лоцале `%s' цаннот гет транслатор цомманд лине фор патх `%s': %s цаннот маке темпорарѝ дирецторѝ: %s цаннот маке темпорарѝ филе: %s цаннот опен ОС филе `%s': %s цаннот опен `%s': %s цаннот опен цонфигуратион филе `%s': %s цаннот опен дирецторѝ `%s': %s цаннот реад `%s' цоррецтлѝ цаннот реад `%s': %s цаннот ренаме тхе филе %s то %s цаннот ресторе тхе оригинал дирецторѝ цаннот сеек `%s': %s цаннот стат `%s': %s цаннот ўрите то ЦД-РОМ цаннот ўрите то `%s': %s цаннот ўрите то тхе стдоут: %s цард нот фоунд цат ФИЛЕ цхецксум верифицатион фаилед цхоосе тхе цомпрессион то усе фор цоре имаге цмп ФИЛЕ ЛОЦАЛ цомУНИТ[,СПЕЕД] цомпаре фаил ат оффсет %llu цомпресс ГРУБ филес [оптионал] цоннецтион рефусед цоннецтион тимеоут цонверт то болд фонт цоре имаге ис тоо биг (0ѯ%x > 0ѯ%x) цоре.имг версион мисматцх цоулдн'т аутоцонфигуре %s цоулдн'т финд ИЕЕЕ1275 девице патх фор %s.
Ѝоу ўилл хаве то сет `боот-девице' вариабле мануаллѝ цоулдн'т финд а нецессарѝ мембер девице оф мулти-девице филесѝстем цоулдн'т финд гели цонсумер цоулдн'т финд геом `парт' цласс цоулдн'т опен геом цоулдн'т реад ЕЛИ метадата цоулдн'т ретриеве УУИД цоулдн'т ретриеве гели УУИД цоулдн'т ретриеве рандом дата цоулдн'т ретриеве рандом дата фор салт цоулдн'т сенд нетўорк пацкет цп ФИЛЕ ЛОЦАЛ црц ФИЛЕ црѝптограпхиц еррор нумбер %d цуррент дирецторѝ оф тхе сѝслинуѯ [дефаулт ис парент дирецторѝ оф инпут филе]. цуррент дирецторѝ оф тхе сѝслинуѯ ас ит ўилл бе сеен он рунтиме  [дефаулт ис парент дирецторѝ оф инпут филе]. цѝгўин_цонв_патх() фаилед делете девице мап иф ит алреадѝ еѯистс дестинатион унреацхабле девице цоунт еѯцеедс лимит девице трее муст бе супплиед (сее `девицетрее' цомманд) дисабле хинтинг диск `%s' нот фоунд диск доес нот еѯист, со фаллинг бацк то партитион девице %s диск модуле то усе (биосдиск ор нативе). Тхис оптион ис онлѝ аваилабле он БИОС таргет. диск реад фаилс ат оффсет %lld, ленгтх %lld дискбоот.имг сизе муст бе %u бѝтес до нот инсталл боотсецтор до нот пробе фор филесѝстемс ин ДЕВИЦЕ домаин наме цомпонент ис тоо лонг дон'т упдате ЛЕД стате дон'т упдате тхе `боот-девице'/`Боот*' НВРАМ вариаблес. Тхис оптион ис онлѝ аваилабле он ЕФИ анд ИЕЕЕ1275 таргетс. доне ембед ФИЛЕ ас а мемдиск имаге
Имплиес `-п (мемдиск)/боот/груб' анд оверридес анѝ префиѯ супплиед превиоуслѝ, бут тхе префиѯ итселф цан бе оверридден бѝ латер оптионс ембед ФИЛЕ ас ан еарлѝ цонфиг ембед ФИЛЕ ас публиц кеѝ фор сигнатуре цхецкинг ембеддинг ис нот поссибле, бут тхис ис реќуиред фор РАИД анд ЛВМ инсталл ембеддинг ис нот поссибле, бут тхис ис реќуиред фор цросс-диск инсталл енабле АРЦС (биг-ендиан мипс мацхинес, мостлѝ СГИ) боот. Дисаблес ХФС+, АПМ, спарц64 анд боот ас диск имаге фор и386-пц енабле спарц боот. Дисаблес ХФС+, АПМ, АРЦС анд боот ас диск имаге фор и386-пц енаблинг %s суппорт ... ентер: боот, `е': оптионс, `ц': цмд-лине енвиронмент блоцк тоо смалл еррор: %s.
 еѯпецт ГРУБ имагес ундер тхе дирецторѝ ДИР/%s инстеад оф тхе %s дирецторѝ фаилед то цопѝ Груб то тхе ПРеП партитион фаилед то гет цаноницал патх оф `%s' фаилед то реад тхе сецторс оф тхе цоре имаге фаилуре реадинг сецтор 0ѯ%llx фром `%s' фаилуре то реад пассўорд фаилуре ўритинг сецтор 0ѯ%llx то `%s' фалсе фаултѝ РАМ (БадРАМ) филе `%s' нот фоунд филенаме еѯпецтед филенаме ор темпо анд нотес еѯпецтед филесѝстем `%s' доес нот суппорт лабелс филесѝстем `%s' доесн'т суппорт блоцклистс филесѝстем он %s ис неитхер ХФС нор ХФС+ фирмўаре имаге ис тоо биг форце аутохинт фоур аргументс еѯпецтед фўстарт.имг доесн'т матцх тхе кноўн гоод версион. процеед ат ѝоур оўн риск генерате ан имаге ин ФОРМАТ гиве а схорт усаге мессаге гиве тхис хелп лист гивен аргумент ис а сѝстем девице, нот а патх груб-мкимаге ис цомпилед ўитхоут ѮЗ суппорт груб> ханг фор СЕЦС сецондс (дефаулт 3600) хеѯ ФИЛЕ игноре битмап стрикес ўхен лоадинг инцоррецт терминал дименсионс специфицатион инитрд алреадѝ лоадед инсталл ФОНТС [дефаулт=%s] инсталл ГРУБ фор ТАРГЕТ платформ [дефаулт=%s] инсталл ГРУБ имагес ундер тхе дирецторѝ ДИР/%s инстеад оф тхе %s дирецторѝ инсталл ТХЕМЕС [дефаулт=%s] инсталл девице исн'т специфиед инсталл евен иф проблемс аре детецтед инсталл онлѝ ЛОЦАЛЕС [дефаулт=алл] инсталл онлѝ МОДУЛЕС анд тхеир депенденциес [дефаулт=алл] инвалид ПБКДФ2 пассўорд инвалид арцх-депендент ЕЛФ магиц инвалид арцх-индепендент ЕЛФ магиц инвалид аргумент инвалид блоцк сизе инвалид цолор специфицатион `%s' инвалид девице трее инвалид енвиронмент блоцк инвалид филе наме `%s' инвалид фонт ранге инвалид лине формат: %s инвалид модинфо филе `%s' инвалид параметер %s инвалид скип валуе %lld инвалид вариабле наме `%s' инвалид видео моде специфицатион `%s' инвалид зИмаге иоцтл ГЕТ_АРРАЍ_ИНФО еррор: %s иоцтл ГЕТ_ДИСК_ИНФО еррор: %s иоцтл РАИД_ВЕРСИОН еррор: %s кернел имаге ис тоо биг (0ѯ%x > 0ѯ%x) лист нетўорк аддрессес лист нетўорк цардс лист нетўорк роутес лс ПАТХ лзоп филе цорруптед маке тхе дриве алсо боотабле ас флоппѝ (дефаулт фор фдѮ девицес). Маѝ бреак он соме БИОСес. миссинг `%c' сѝмбол миссинг мандаторѝ оптион фор `%s' модуле `%s' исн'т лоадед модуле исн'т лоадед наме неед ан имаге анд моунтпоинт но АПМ фоунд но ДХЦП инфо фоунд но ДХЦП оптион %d фоунд но ДХЦП оптионс фоунд но ДНС рецорд фоунд но ДНС реплѝ рецеивед но ДНС серверс цонфигуред но ЕФИ роутинес аре аваилабле фор ѝоур платформ но ЕФИ роутинес аре аваилабле ўхен руннинг ин БИОС моде но ИЕЕЕ1275 роутинес аре аваилабле фор ѝоур платформ но СГИ роутинес аре аваилабле фор ѝоур платформ но `/' ин цаноницал филенаме но цомманд ис специфиед но цомпрессион ис аваилабле фор ѝоур платформ но децрѝптион кеѝ аваилабле но хинтс аваилабле фор ѝоур платформ. Еѯпецт редуцед перформанце но нетўорк цард фоунд но рандом нумбер генератор ис аваилабле фор ѝоур ОС но сервер ис специфиед но суцх партитион но суитабле видео моде фоунд но сѝмбол табле но терминал специфиед но терминатор ин тхе цоре имаге нон-сецтор-алигнед дата ис фоунд ин тхе цоре филе нот а дирецторѝ нот а примарѝ партитион нот а регулар филе нот ин фунцтион бодѝ оне аргумент еѯпецтед онлѝ ипв4 онлѝ ипв6 отхер софтўаре ис усинг тхе ембеддинг ареа, анд тхере ис нот еноугх роом фор цоре.имг.  Суцх софтўаре ис офтен трѝинг то сторе дата ин а ўаѝ тхат авоидс детецтион.  Ўе рецомменд ѝоу инвестигате оут оф меморѝ оутпут а генератед имаге то ФИЛЕ [дефаулт=стдоут] оутпут филе муст бе специфиед оутпут генератед цонфиг то ФИЛЕ [дефаулт=стдоут] оверфлоў ис детецтед пассўордс дон'т матцх перформ а боотп аутоцонфигуратион пхѝсицал волуме %s нот фоунд пре-лоад специфиед модулес МОДУЛЕС префер ипв4 префер ипв6 прематуре енд оф филе прематуре енд оф филе %s пресс ЦапсЛоцк кеѝ пресс Инсерт кеѝ пресс НумЛоцк кеѝ пресс СцроллЛоцк кеѝ пресс СѝсРќ пресс лефт алт пресс лефт цтрл пресс лефт схифт пресс ригхт алт пресс ригхт цтрл пресс ригхт схифт принт програм версион принт тхе версион информатион анд еѯит принт тхис мессаге анд еѯит принт вербосе мессагес. публиц кеѝ %08x нот фоунд реад еррор ат оффсет %llu: %s реад теѯт фром ФИЛЕ. релативе субдирецторѝ он нетўорк сервер релоцатион 0ѯ%x ис нот имплементед ѝет ресервед РАМ ретриеве ДХЦП оптион анд саве ит инто ВАР. Иф ВАР ис - тхен принт тхе валуе. роот дирецторѝ ас ит ўилл бе сеен он рунтиме [дефаулт=/]. роот дирецторѝ оф ТФТП сервер роот дирецторѝ оф тхе сѝслинуѯ диск [дефаулт=/]. роуте лооп детецтед саве РОМ имагес ин ДИР [оптионал] саве оутпут ин ФИЛЕ [реќуиред] селецт фаце индеѯ сериал порт `%s' исн'т фоунд сет [НАМЕ=ВАЛУЕ ...] сет цапслоцк моде сет фонт асцент сет фонт десцент сет фонт фамилѝ наме сет фонт ранге сет фонт сизе сет инпут филенаме фор 32-бит парт. сет инпут филенаме фор 64-бит парт. сет инпут филенаме. Дефаулт ис СТДИН сет инсерт моде сет нумлоцк моде сет оутпут филенаме. Дефаулт ис СТДОУТ сет паусе моде сет префиѯ дирецторѝ [дефаулт=%s] сет сцролллоцк моде сет тхе лабел то рендер сет тхе програм наме сизе стретцх|нормал сѝмбол `%s' нот фоунд темпорарѝ терминал %s исн'т фоунд ор ит'с нот хандлед бѝ терминфо терминал `%s' исн'т фоунд тхе ИД оф боотлоадер. Тхис оптион ис онлѝ аваилабле он ЕФИ анд Мацс. тхе ПРеП партитион ис нот емптѝ. Иф ѝоу аре суре ѝоу ўант то усе ит, рун дд то цлеар ит: `%s' тхе аргумент `%s' реќуирес ан интегер тхе цхосен партитион ис нот а ПРеП партитион тхе девице.мап ентрѝ `%s' ис инвалид. Игноринг ит. Плеасе цоррецт ор делете ѝоур девице.мап тхе дриве %s ис дефинед мултипле тимес ин тхе девице мап %s тхе дриве наме `%s' ин девице.мап ис инцоррецт. Усинг %s инстеад. Плеасе усе тхе форм [хфц]д[0-9]* (Е.г. `хд0' ор `цд') тхе фирст сецтор оф тхе цоре филе ис нот сецтор-алигнед тхе инсталлатион девице ис ремовабле. Тхис оптион ис онлѝ аваилабле он ЕФИ. тхе партитион тѝпе 0ѯ%x исн'т валид тхе сецторс оф тхе цоре филе аре тоо фрагментед тхе сизе оф `%s' ис нот %u тхе сизе оф `%s' ис тоо ларге тхе сизе оф `%s' ис тоо смалл тхис ЕЛФ филе ис нот оф тхе ригхт тѝпе тхис ГПТ партитион лабел цонтаинс но БИОС Боот Партитион; ембеддинг ўон'т бе поссибле тхис ЛДМ хас но Ембеддинг Партитион; ембеддинг ўон'т бе поссибле тхис мсдос-стѝле партитион лабел хас но пост-МБР гап; ембеддинг ўон'т бе поссибле тхрее аргументс еѯпецтед тиме оут опенинг `%s' тимеоут реадинг `%s' тимеоут: цоулд нот ресолве хардўаре аддресс тоо дееп нестинг оф сѝмлинкс транслатор `%s' фор патх `%s' хас северал нон-оптион ўордс, ат леаст `%s' анд `%s' транслатор `%s' фор патх `%s' ис гивен онлѝ оптионс, цаннот финд девице парт транслатор цомманд лине ис емптѝ фор патх `%s' тўо аргументс еѯпецтед тѝпе унабле то идентифѝ а филесѝстем ин %s; сафетѝ цхецк цан'т бе перформед уналигнед девице сизе унеѯпецтед ЕФИ еррор унеѯпецтед енд оф филе ункноўн аргумент `%s' ункноўн цомпрессион %d
 ункноўн девице тѝпе %s
 ункноўн филесѝстем ункноўн кинд оф РАИД девице `%s' ункноўн регеѯп еррор ункноўн таргет формат %s
 ункноўн терминфо тѝпе `%s' унрецогнисед ДХЦП оптион формат специфицатион `%s' унрецогнисед нетўорк аддресс `%s' унрецогнисед нетўорк интерфаце `%s' унрецогнизед нумбер унресолвабле аддресс %s унсет [НАМЕ ...] унсуппортед ХТТП еррор %d: %s унсуппортед ХТТП респонсе унсуппортед РАИД версион: %d.%d унсуппортед гзип формат унсуппортед платформ %s
 унсуппортед сериал порт флоў цонтрол унсуппортед сериал порт паритѝ унсуппортед сериал порт спеед унсуппортед сериал порт стоп битс нумбер унсуппортед сериал порт ўорд ленгтх усе ЦОЛОР фор бацкгроунд усе ЦОЛОР фор лабел усе ЦОЛОР фор лабел бацкгроунд усе ЦОЛОР фор теѯт усе ДИР ас тхе ЕФИ Сѝстем Партитион роот. усе ДИР фор ППЦ МАЦ инсталл. усе ФИЛЕ ас фонт (ПФ2). усе ФИЛЕ ас фонт фор лабел усе ФИЛЕ ас тхе боот имаге [дефаулт=%s] усе ФИЛЕ ас тхе цоре имаге [дефаулт=%s] усе ФИЛЕ ас тхе девице мап [дефаулт=%s] усе ФИЛЕ ас ѯоррисо [оптионал] усе ГРУБ филес ин тхе дирецторѝ ДИР [дефаулт=%s] усе СТРИНГ ас продуцт наме усе СТРИНГ ас продуцт версион усе идентифиер филе евен иф УУИД ис аваилабле усе имагес анд модулес ундер ДИР [дефаулт=%s/<платформ>] усе тхемес ундер ДИР [дефаулт=%s] усе транслатионс ундер ДИР [дефаулт=%s] вариабле `%s' исн'т сет висуаллѝ-ордеред УТФ-8 ўаит унтил а дебуггер ўилл аттацх ўилл нот процеед ўитх блоцклистс ўрите оутпут то ФИЛЕ [дефаулт=стдоут]. ўронг ЕЛИ магиц ор версион ѯну_ууид ДЕВИЦЕ ѯз филе цорруптед ор унсуппортед блоцк оптионс ѝоу цан'т делете тхис аддресс ѝоу неед то лоад тхе кернел фирст ѝоур БИОС Боот Партитион ис тоо смалл; ембеддинг ўон'т бе поссибле ѝоур цоре.имг ис унусуаллѝ ларге.  Ит ўон'т фит ин тхе ембеддинг ареа ѝоур ембеддинг ареа ис унусуаллѝ смалл.  цоре.имг ўон'т фит ин ит.                                                                                                                                                                                     boot/grub/locale/en@greek.mo                                                                        0000600 0001750 0001750 00000436511 13417732100 0014754 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                            L(    |P      `k  #   ak      k     k     k     k  $   k     l  6   )l     `l     gl  	   sl     }l     l     l     l     l     l  .   l  .   'm  %   Vm     |m     m    m    n    o     p  8   p  '   p  7   q  F   Tq  v   q  +   r     >r      Or     pr  !   r     r  ,   r     r     s  $   s     @s  *   \s     s     s     s     s     s  
   s  	   s     s     t  ,   )t  ,   Vt  ,   t  '   t  -   t      u  (   'u  (   Pu  )   yu     u     u     u     u     u  "   v  4   %v     Zv     bv  7   ov     v     v  1   v     v     w  %   w  '   @w  %   hw  '   w     w     w     w     w     w     x     
x     x     (x     Hx     Zx     hx     xx     x  3   x     x  $   x     x     	y     "y     1y     By     Yy     ny  -   y     y  !   y     y     z     $z  #   9z     ]z  `   z  Z   F{     {     {     {     {     {     {     {     |     |  0   9|  3   j|     |     |     |     |     }     }     *}     A}     W}     e}     |}     }     }     }  %   }     }     }     }     ~     +~     F~     \~     k~     ~~     ~  *   ~  3   ~  1     1   8  2   j                  1        -  #   L     p  "     8                    	   5  #   ?     c                    ԁ       )        $     C     a  "     P               H     &   f            !     ,   ΃                 	   (  !   2  *   T       '             Ԅ             $        =     O     a     |            
   х  
   ܅       1        ,     :     G     `  3   |  >     $             +     H     `     {       +        ۇ       o     #               $   ߈            '   :  9   b            z   Ӊ  "   N     q     x  8        Ŋ  
   ܊                    .     ʋ  +             +     @     V  "   i            (        ׌  #     &     ?   :  '   z  @                            &  "   8  0   [                 7                            "     .     4  0   ;     l                 2     %             -  *   <  6   g  +        ʐ            !   ̑  d     e   S  d     i     o     H        A     T     j     {                    Ք  #             0     H  1   Z  )                       ԕ  /             "     9  5   V            K   ǖ  &        :     V     k            D        ח     ܗ  '     P   	     Z     y  	                       Ř     V  '          +        J     [  )   w               ՚               #     ;     Q  $   f            "        ۛ     ݛ       (             #     )  "   1  +   T  -             ǜ     ֜            O   	     Y     o                 %          )     !   /  "   Q     t       +        Ӟ               	  !        =     Y     r     ~                џ                    2     F  4   V                    Ԡ          
     #     <      Y  !   z       4     M     2   9     l       *     8   Ϣ               ,     D     [     s  3     $     +   ٣               (     =     R     e                     դ     פ  D       4                 ;   5     q       !        ҧ       s        |               ¨     ը                    -     1     7                         Ǫ     Ӫ            '   "  
   J     U     d     z                           H   ث  L   !     n                 %               #        9     V     s     |                 ӭ       "     (   $     M     i  %   v                 #   خ  *        '     )     <  #   A     e     j  	   |  	     "     ;     #     <        P     ^     |  .     	        ð  `   հ     6  !   K  )   m                      q        (     <     S     b     y                    ֲ  "             0     J     b     y                 #   ѳ  a        W     t  g             }       -          !          "   )  '   L  Q   t     ƶ                         4     Q     n               ķ                     '     <      O     p                 -   и            "   ,  b   O  )        ܹ          
  ,   %     R     k  	   p  "   z  %        ú     Ⱥ     ݺ  
          &     )        I  5   \  ^          $     %   0     V  ^   	  _   h  }   Ƚ     F  )     '   '  >   O  D     !   ӿ  '     -     #   K     o  )          )           )     ,   G     t                      E     $   :  A   _  )                             >     _  q   t       :        >     \  `   k               	           6     R  0   g                 )     &     #   2  -   V                           )   
     4  %   D  %   j  ,     '     :           -   ?  0   m  /          .               '   4  $   \  "                    2     Q     *   `            )     o        4     M  6        >     @     G  0   N        !     "     #        	          9     O  !   n       
          <             "  %   8  >   ^                                d     *   a  (     ,               0     6   E     |                           0          !        A     _  $   p                           $     "   6  $   Y     ~                                         ,     9     W     r       '               $     +   -  "   Y     |  )                              '   &     N     m       <                %        *     C     Z     m  m                  +     E     ^  +   x  3     1        
  '     -   @     n  '   w  '     .     	                   5     Q     m                                *     ?   @       B     p        G  /               .   -  O   \  )               	     <        B  5   `                           :        F  1   Y                                                       0     A     G  	   T     ^     m                                               '  
   5  
   @  	   K     U  !   [  )   }                           n   #  F     N        (  "   6     Y     ^  .   p  .     /     W     -   V  -     $     #     0     6   ,     c     q       (     1     )             0     I     X     r  !                          %        :  &   N     u       0                        3  7   M  .          4     #        %     D     a  '   v                      %        3     H     ]     t                      ,                  -     I     h     {       #               _     B   [                                   ;  &   Y                      N     m   !       &               7        ;     K  ;   _  V     +     "        A  &   [  !          r        .     3       /     H   '  F   p  w     N   /     ~  (               I     )   1  $   [  ,     '          %                  .     B  $   T  '   y  *     (                    J   6                 -     +        &  $   ,     Q  "   Z  +   }            -     J        S     o  %     "     9              )  "   J     m     ~                               
     "     <     Q     i  %                         %        9     P     c     w       [          !        %     >     R     W     t                                /     7   6  4   n  /               -        6  @   R       3                       #     3     I  1   i                           	     	               1          0   5     f     {  !          "                      !    :    M    ^    p                                 &   
    1    M    e         '    &        L    9   [     0        !           9    K    h    }                     #    #    $   *    O    _ &   p     !                   	         	   3 7   =    u D    ]    %   2 ,   X [    ;    w    7    K    #   	 /   =	    m	    	    	 &   	 U   	 @   A
 Q   
    
    
     +       D R   a L    .       0    G F   L                                 .    O    d    ~ 2    !    #           &    >    O    m             $            (   : #   c                 )           -    E '   ` '    '        0       (    C -   a 8    !    '           * !   A     c &            .        !   # B   E E    B    q   1    8    (    *    !   B B   d "    R           &    :    J 2   `     #    %        P    P   _ @                     ,    a    C    c   \ {       <  K   !    [! 4   t!    ! 6   ! +   ! G   '" (   o"     " <   " (   " C   #    c# 	   #    # '   # 4   #    $    $ (    $    I$ G   _$ J   $ G   $ ?   :% I   z% 2   % A   % @   9& B   z& 1   & 1   &    !'    5'    A' <   M' ^   ' 	   '    ' K   (    Q( !   ^( J   ( .   (    ( C   ( G   A) C   ) G   )    *    * 6   * &   V* &   }*    *    *    * /   * !   +    2+    K+    h+    + V   + 
   + A   + +   :, -   f,    ,    , (   , $   , )   - P   @- 3   - ;   - $   . 2   &. $   Y. ?   ~.    .    /    d0 1   1 3   81    l1    o1 %   u1 
   1    1 )   1 5   1 U   2 [   l2 *   2 .   2 (   "3 .   K3 2   z3    3 )   3 '   3    4 )   )4    S4    n4 
   v4    4 C   4 7   4    5 #   /5 '   S5 1   {5 (   5    5 !   5    6 *   06 L   [6 W   6 [    7 W   \7 X   7 4   8 ;   B8 4   ~8 Z   8 3   9 ?   B9 0   9 >   9 h   9 5   [:    : /   :    : @   : ,   4; !   a; 8   ; 9   ; )   ;     < K   << 6   < 5   < 6   < >   ,=    k= "   = "   >    ?> F   > +   ?    9? 4   F? J   {?    ?    ? 5   ?    @ =   ,@ L   j@ +   @ F   @ $   *A    OA .   oA *   A C   A     B     .B 1   OB 3   B 1   B 6   B    C    /C "   ?C C   bC    C    C ,   C -   D V   1D [   D A   D )   &E 4   PE )   E 0   E 9   E #   F N   >F 1   F 6   F    F @   G (   G 6   (H @   _H .   H 2   H H   I h   KI *   I 4   I    J >   J    0K    =K d   ]K '   K    K    K %   L 1   <L   nL 5   M Q   M *   N $   ;N %   `N !   N 4   N    N    N J   O +   dO B   O G   O u   P I   P w   P    SQ    iQ    Q (   Q     Q <   Q T   )R    ~R    R    R Z   R    S    S    /S '   OS    wS 
   S    S X   S     S    T !   =T )   _T [   T C   T !   )U    KU J   bU N   U <   U 7   9V     qV r  V =   X    CX    X    Y    gZ    #[    [ !   q\    \    \    \ $   \ +   ] &   :] )   a] >   ] 2   ] '   ]    %^ P   B^ L   ^    ^    ^ "   ^    _ T   ._    _ *   _ 0   _ b   _ 7   ]` 2   `    ` E   Sa /   a $   a 3   a    "b 	   )b v   3b    b    b F   b    c 6   c    c    c    c 2   c $   -d    Rd    Re G   Hf    f P   f    f 1   g L   Mg 1   g *   g 5   g 4   -h "   bh '   h "   h $   h E   h     ;i 2   \i @   i    i    i    i I   j    Kj 	   Rj    \j =   kj N   j S   j -   Lk    zk    k    k    k    k '   l *   l (   l    l "   m D   9m 7   ~m J   m <   n >   >n 2   }n (   n P   n %   *o    Po    lo    o ;   o 2   o ,   p    Bp (   Wp 9   p 0   p     p #   q 6   0q 2   gq #   q    q [   q 6   6r    mr *   r .   r .   r ,   s ,   Bs 2   os :   s =   s .   t _   Jt    t ]   9u .   u 7   u N   u g   Mv    v )   v *   v (   !w *   Jw    uw ^   w A   w P   -x $   ~x    x "   x     x     y 0   y 6   Ny 3   y "   y    y ,   y y   z J  z    }    } 5   } j   #~ 9   ~ 6   ~ ;   ~ (   ; 9   d     +   t 4       Հ     &    )   < .   f         	    1  ā F   "   = #   `         5    -   ݄ (    E   4    z     '       υ (   ؅               4   A    v     "    ,       ч     D    -   J +   x A    4    5       Q '   a 9    9   É <       : >   O I    2   ؊     <   # (   `     (    9    M       J #   M    q <   z            ߌ     ?    m   C A    o       c 1   w     R            !    B %    >    L   W     	           Ð    ِ     )       ԑ )    !    '   7 %   _ 5    8    >    +   3 /   _ +    )    '    #    -   1 %   _ B       Ȕ 1   | 1            /    3    S    "   8 =   [     ?    G       @ 3   Й /        4    U &   o 0    0   ǚ 0    0   ) /   Z /    *        ;    %   ; !   a ,    1    #        :   $ S   _ -        ;       = K    '   ? *   g ,    F    )       0    9 ?   L C       Р !   ٠             F   * L   q     ]   ޡ    < -    B    D   W <      ٤        / >  	 J   H G    b   ۨ n   > :    E    Q   . ?    8    J    4   D L   y 1   ƫ I    O   B :    +   ͬ /    1   )    [ ]   y ?   ׭ t    J    3   ׮ 1    /   = 6   m :    $   ߯     0   а j    5   l         6   l 5    )   ٲ '    2   + $   ^ X    4   ܳ %    '   7 K   _ D    ?    R   0 2    0    6    !    0   @ H   q     D   ض D    R   b H    j    6   i R    Y    V   M     R         $   2 F   W C    >       ! 3   2    f Y       ٻ N   l        ʼ K   ׼    # )    I   _   `        ÿ    п U   ݿ <   3 ;   p =    ?       * 3   J &   ~ 7    <    '       B -   U m    )    &    B   B o            	    9    '   Q #   y     M   N J    O    ,   7 ,   d Y    V       B    Q %   k #        +    V       A 7   ` 6        D    *   3 $   ^ 5        0    ;   
 :   F A    '    &    #    8   6 %   o                 4    -   7 ,   e 2    G    7    .   E @   t O    =       C E   O     /    4         !   8 G   Z 6    3    #    h   1 =        A    )   ) &   S "   z 1        1   f /    /    -    /   & N   V _    X       ^ G   x R        D   # D   h N        ,    *   < .   g .    .    .    -   # -   Q )    .        K    q   ,      u       5     K        3 !   T H   v z    =   : $   x         `    .   $ N   S     '        ,     )   - _   W     T    -   , &   Z         
                /    !       9    W    `    t     +    $    3       $ ,   C "   p )    
    
                        0   # E   T         '    6    0   6    g v   !        # ;   =    y      U    U    W   O     N   ? S    A    @   $ T   e _        "   4    W 8   q F    H    ,   : *   g     0    *    :   
 !   E )   g 9    &    =       0 <   L /    3    M    <   ; (   x "    /    `    N   U '    Y    ?   & 5   f ,        B    1   + -   ]     4    F       &    E (   d %    4            6    Q   J         .    7    #   : #   ^ %    6    /    -       = z    2   ^ 7    !    0    )    2   F 6   y F    4       ,    E 5   U         -    F    -   T 1    c           6 i   V     F   [ <    /    F    =   V (            *   5    W       G        L      &    A    3       @    Q K    >     P   _ @    -    <    
   \ "   g     !    C    E    K   V F    .        ,   4    a 2    0    #   L Q   p P    	    =       [ @   k S    (    	 -   )	 P   W	    	 /   -
 8   ]
 E   
 >   
 i    +    <    @       / "   O 9   r $    0    %    "   ( (   K +   t $    '    -    B       ^ 4   z 2    1    :    *   O "   z $        $             :    (    #       B 4   K     !    (    '    #   
 '   . /   V W    e    ]   D W    1    +   , T   X 3    w    '   Y ^    )        
 4   +    ` (   } 9    Y       : +   W !    %    (            \      s Y    6    X    &   v '    ?    2    @   8    y     '    *    "            8 &   Y                        
     ) (   J G   s 2    +    *    .   E $   t J    D       )    A d    6   -  U   d  $     ;     6   !     R! /   s!     !     !    !    " %   !"    G"    b" =   {" =   " B   "    :#    W# F   v#    # :   # $   $ *   8$ %   c$    $    $ #   $    $ a   $ *   G% z   r%    % A   & Q   &    !' g   '    +( d   (    R) =   ) V   * (   q* 0   * 0   * D   *    A+ u   +    T, .   , #   - "   ;- P   ^- 4   -    -    j. Q   . *   @/    k/ }   t/ (   / &   0 )   B0 $   l0 )   0 (   0 #   0 7   1 &   @1 ,   g1 -   1 [   1 ;   2 ?   Z2 %   2 *   2    2 1   3 0   73 5   h3 ,   3 +   3 D   3 9   <4 7   v4 K   4 B   4 -   =5 #   k5 8   5 !   5 J   5 2   56 &   h6 /   6 C   6 C   7 C   G7 6   7 T   7 0   8 6   H8 S   8 b   8 9   69 E   p9 &   9 (   9 =   : <   D: D   : 0   :    : V   ; 5   k; <   ; x   ; {   W< u   <    >      	  j       7    /                o      P        0                        *  p  q    (  >                                      %                     }           G   j        S            v   C              C    T             _  ;                                                 d            >        '                 ^                *        +    !  ?   K          {            1      m              y                                 s      e        2    	             K    V      	  8   !         /     ^                    r  H            F                 r   |                                  D        $                       r    _           I  l  e          G    w             S            ,      J  %     s                      R                 Y      n           ;              
             4           $   W            d    ?  b               ,  6  w    h                     I  J     7   q  4    V      p                O    `                                              i                   X  ]        G      6  c                N                      B  :    C  l  =    v                           A           ,            j  6  g  F   ,     B       U        f          t     h        [  N          w             ]    a        W     <      u  k     	  {  S  1  `      a          '             {                                  )       i                    y              O       m              ^                  M                        P                  -      %               f        b                   t               C                            8  X          *                           
          k     z  w   z  @  T         ]      |                      \      J               '  D       0  b                       (             c                 k       G        s                    [        *  Z      y       )          \                    y         N      4                           v  h              
  $                              ;    6                    |     2               3  v    M  L              ~  S        9  Q     2            {                                         %        @   F      +                    .             V  Q            2                       z          +   g  a             !                                          v                M                 M     P        K             E        9                        @  ^                          c           a      [     )  W          c    A                  k  H            X             "  W                +  h              =                      Z                        }  i    G  )  j               -   &  (        u          |                        ^  g      (  c    e  /  5              -                                 w        L                  M                d      e                         `  o                       N  $      !                o        +                     R             p     "     	                 q                            T    y   n    r                   ]            x                                                 D            }  -                                <         R                       V              H   (           }              N     8           }              ]              b  p      ?                          H                                .  ~     8        &       =  B                         W  K  =          E    [       1                          _                             e  h           4      9   R  \              X  E        B       O  t    >           T  f                 l  f     F              n        )   B      1        \  L    f                &            <  0     Z    d   F  a  ;  ,     u     o                               O     Z         ?        T       A  x          8                 .      *   .        n   l                       g     L       J                               r            u        :         .                                      3           L    X      P                0  5  m             U    9  <        g  A               3                     ~                l    $      "  C             '            
                       /            i      O  9                          0  n  5    U             ;       &                 U             7  4      Y    m  _                                      t          m                      @  1                 u               s   I              Q  !  k        `           2  @    Z            "      A         ?  6    {          E      3              &    '  H            [                              j            >  #  R      #    S  z  Y   d  x  ~  b  P            t          _    q                    #  \       `       ~      E                3    o                #        :  
  q                                    I       :            Y    x    #   U         I         J    -    Q  Y  7  5       x                 /      5      <               :        =   "    %      K        i            D      p         |    V          z   D    Q  s    7                   total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s doesn't exist. Please specify --target or --directory %s doesn't look like an EFI partition.
 %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: not found %s: option '%c%s' doesn't allow an argument
 %s: option '%s' is ambiguous; possibilities: %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- --ppc PATH|--x86 FILE -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Bless DIR of HFS or HFS+ partition for PPC macs. Bless FILE of HFS or HFS+ partition for intel macs. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't create file: %s Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check if CPU supports Physical Address Extension. Check if FILE can be used as x86 multiboot kernel Check if FILE can be used as x86 multiboot2 kernel Check if FILE is ARM EFI file Check if FILE is BIOS bootsector Check if FILE is IA64 EFI file Check if FILE is hiberfil.sys in hibernated state Check if FILE is i386 EFI file Check if FILE is of specified type. Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear bit at BYTE:BIT in CMOS. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find a free BootNNNN slot Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Default server is ${net_default_server} Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not apply any reed-solomon codes when embedding core.img. This option is only available on x86 BIOS targets. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. EFI bootloader id isn't specified. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enable/disable RTS/CTS. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Evaluate arguments as GRUB commands Execute syslinux config in new context Execute syslinux config in new context taking only menu entries Execute syslinux config in same context Execute syslinux config in same context taking only menu entries Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FONTS FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File size: %s
 File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Generating grub configuration file ... Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s Graft point syntax (E.g. /boot/grub/grub.cfg=./grub.cfg) is accepted HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS INSTALL_DEVICE must be system device filename.
%s copies GRUB images into %s.  On some platforms, it may also install GRUB into the boot sector. If FILENAME is `-', the default value %s is used.

There is no `delete' command; if you want to delete the whole environment
block, use `rm %s'. Import ZFS wrapping key stored in FILE. Incorrect VDEV Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Installing for %s platform.
 Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s LOCALES Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List coreboot tables. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load DTB file. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load Truecrypt ISO. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load module. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... M MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MENU_ENTRY is a number, a menu item title or a menu item identifier. Please note that menu items in
submenus or sub-submenus require specifying the submenu components and then the
menu item component. The titles should be separated using the greater-than
character (>) with no extra spaces. Depending on your shell some characters including > may need escaping. More information about this is available
in the GRUB Manual in the section about the 'default' command.  MODULE MODULES Mac-style bless on HFS or HFS+ Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NOT RUNNING:  NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Netboot directory for %s created. Configure your DHCP server to point to %s
 Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OPTIONS FILE OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] PUBKEY_ID Paletted  Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Prepares GRUB network boot images at net_directory/subdir assuming net_directory being TFTP root. Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot into firmware setup menu. Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Render Apple .disk_label. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING STRING ... Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Script `%s' contains no commands and will do nothing
 Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set bit at BYTE:BIT in CMOS. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting GRUB_TIMEOUT to a non-zero value when GRUB_HIDDEN_TIMEOUT is set is no longer supported. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show CBMEM console content. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show raw dump of the CMOS contents. Show raw dump of the PCI configuration space. Show the contents of a file. Show the current mappings. Show the list of trusted keys. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Skip signature-checking of the environment file. Skip signature-checking of the public key file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Storage information for `%s' does not include type Storage information for `%s' indicates neither a plain partition nor a plain disk Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Switch to native disk drivers. If no modules are specified default set (pata,ahci,usbms,ohci,uhci,ehci) is used Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 T TARGET THEMES Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This VDEV is a RAIDZ%llu
 This VDEV is a mirror This entry can be booted by any user. This requires setting GRUB_DEFAULT=saved in %s/default/grub.\n Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Transform syslinux config into GRUB one. Translate SET1 characters to SET2 in STRING. Translate to lower case. Translate to upper case. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown platform `%s-%s' Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized compression `%s' Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME VDEV element number %d isn't correct
 VDEV element number %d:
 VDEV with %d children
 Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. You've found a bug Your embedding area is unusually small.  core.img won't fit in it. Your xorriso doesn't support `--grub2-boot-info'. Some features are disabled. Please use xorriso 1.2.9 or later. Your xorriso doesn't support `--grub2-boot-info'. Your core image is too big. Boot as disk is disabled. Please use xorriso 1.2.9 or later. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] [-s|--skip-sig] [variable_name_to_whitelist] [...] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [-s|--skip-sig] FILE SIGNATURE_FILE [PUBKEY_FILE] [-s|--skip-sig] PUBKEY_FILE [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [DIR] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTIONS] [SET1] [SET2] [STRING] [OPTION] SOURCE... [OPTION] [INSTALL_DEVICE] [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `%s' is not a local disk `cryptomount' command fails: %s `loopback' command fails: %s `nvsetenv' failed. 
You will have to set `boot-device' variable manually.  At the IEEE1275 prompt, type:
  %s
 `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found assume input is a pxelinux configuration file. assume input is a syslinux configuration file. assume input is an isolinux configuration file. attempt to install to encrypted disk without cryptodisk enabled. Set `%s' in file `%s'. attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format bless for ppc-based macs bless for x86-based macs blocklist FILE blocklists are incomplete blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't compress `%s' to `%s' can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s can't set %dx%d font size: Freetype error %d: %s cannot compress the kernel image cannot copy `%s' to `%s': %s cannot delete `%s': %s cannot find EFI directory cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot find locale `%s' cannot get translator command line for path `%s': %s cannot make temporary directory: %s cannot make temporary file: %s cannot open OS file `%s': %s cannot open `%s': %s cannot open configuration file `%s': %s cannot open directory `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu compress GRUB files [optional] connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find IEEE1275 device path for %s.
You will have to set `boot-device' variable manually couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d current directory of the syslinux [default is parent directory of input file]. current directory of the syslinux as it will be seen on runtime  [default is parent directory of input file]. cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit device tree must be supplied (see `devicetree' command) disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. disk read fails at offset %lld, length %lld diskboot.img size must be %u bytes do not install bootsector do not probe for filesystems in DEVICE domain name component is too long don't update LED state don't update the `boot-device'/`Boot*' NVRAM variables. This option is only available on EFI and IEEE1275 targets. done embed FILE as a memdisk image
Implies `-p (memdisk)/boot/grub' and overrides any prefix supplied previously, but the prefix itself can be overridden by later options embed FILE as an early config embed FILE as public key for signature checking embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enable ARCS (big-endian mips machines, mostly SGI) boot. Disables HFS+, APM, sparc64 and boot as disk image for i386-pc enable sparc boot. Disables HFS+, APM, ARCS and boot as disk image for i386-pc enabling %s support ... enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to copy Grub to the PReP partition failed to get canonical path of `%s' failed to read the sectors of the core image failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists filesystem on %s is neither HFS nor HFS+ firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification initrd already loaded install FONTS [default=%s] install GRUB for TARGET platform [default=%s] install GRUB images under the directory DIR/%s instead of the %s directory install THEMES [default=%s] install device isn't specified install even if problems are detected install only LOCALES [default=all] install only MODULES and their dependencies [default=all] invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid argument invalid block size invalid color specification `%s' invalid device tree invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid modinfo file `%s' invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' invalid zImage ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no EFI routines are available for your platform no EFI routines are available when running in BIOS mode no IEEE1275 routines are available for your platform no SGI routines are available for your platform no `/' in canonical filename no command is specified no compression is available for your platform no decryption key available no hints available for your platform. Expect reduced performance no network card found no random number generator is available for your OS no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected only ipv4 only ipv6 other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found pre-load specified modules MODULES prefer ipv4 prefer ipv6 premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory as it will be seen on runtime [default=/]. root directory of TFTP server root directory of the syslinux disk [default=/]. route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the label to render set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the ID of bootloader. This option is only available on EFI and Macs. the PReP partition is not empty. If you are sure you want to use it, run dd to clear it: `%s' the argument `%s' requires an integer the chosen partition is not a PReP partition the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive %s is defined multiple times in the device map %s the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected EFI error unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported platform %s
 unsupported serial port flow control unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for label use COLOR for label background use COLOR for text use DIR as the EFI System Partition root. use DIR for PPC MAC install. use FILE as font (PF2). use FILE as font for label use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] use themes under DIR [default=%s] use translations under DIR [default=%s] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists write output to FILE [default=stdout]. wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub 2.02~beta1
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-12-21 01:46+0100
Last-Translator: Automatically generated
Language-Team: none
Language: en@greek
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=(n != 1);
               τοταλ μεμορϋ: %d ΚιϬ
     Νο πρεφερρεδ μοδε αβαιλαϭλε
     Πρεφερρεδ μοδε: %uξ%u
   ΕΔΙΔ ϲχεϲκσυμ ινβαλιδ   ΕΔΙΔ βερσιον: %u.%u
   Φαιλεδ το ινιτιαλιζε βιδεο αδαπτερ   Νο ινφο αβαιλαϭλε   ΒϬΕ ινφο:   βερσιον: %d.%d  ΟΕΜ σοφτωαρε ρεβ: %d.%d
   ορ:   (λεφτμοστ)  (μεδιαλ)  (ριγχτμοστ)  - Παρτιτιον σταρτ ατ %llu%sΚιϬ  - Σεϲτορ σιζε %uϬ  - Τοταλ σιζε %llu%sΚιϬ  - Τοταλ σιζε υνκνοων  [ΟΠΤΙΟΝ...] %.*s: ΑΡΓΠ_ΧΕΛΠ_ΦΜΤ παραμετερ μυστ ϭε ποσιτιβε %.*s: ΑΡΓΠ_ΧΕΛΠ_ΦΜΤ παραμετερ ρεϗυιρεσ α βαλυε %.*s: Υνκνοων ΑΡΓΠ_ΧΕΛΠ_ΦΜΤ παραμετερ %dσ %dσ ρεμαινινγ. %s αππεαρσ το ϲονταιν α %s φιλεσϋστεμ ωχιϲχ ισν'τ κνοων το ρεσερβε σπαϲε φορ ΔΟΣ-στϋλε ϭοοτ.  Ινσταλλινγ ΓΡΥϬ τχερε ϲουλδ ρεσυλτ ιν ΦΙΛΕΣΫΣΤΕΜ ΔΕΣΤΡΥϲΤΙΟΝ ιφ βαλυαϭλε δατα ισ οβερωριττεν ϭϋ γρυϭ-σετυπ (--σκιπ-φσ-προϭε δισαϭλεσ τχισ ϲχεϲκ, υσε ατ ϋουρ οων ρισκ) %s αππεαρσ το ϲονταιν α %s παρτιτιον μαπ ανδ ΛΔΜ ωχιϲχ ισν'τ κνοων το ϭε α σαφε ϲομϭινατιον.  Ινσταλλινγ ΓΡΥϬ τχερε ϲουλδ ρεσυλτ ιν ΦΙΛΕΣΫΣΤΕΜ ΔΕΣΤΡΥϲΤΙΟΝ ιφ βαλυαϭλε δατα ισ οβερωριττεν ϭϋ γρυϭ-σετυπ (--σκιπ-φσ-προϭε δισαϭλεσ τχισ ϲχεϲκ, υσε ατ ϋουρ οων ρισκ) %s αππεαρσ το ϲονταιν α %s παρτιτιον μαπ ωχιϲχ ισν'τ κνοων το ρεσερβε σπαϲε φορ ΔΟΣ-στϋλε ϭοοτ.  Ινσταλλινγ ΓΡΥϬ τχερε ϲουλδ ρεσυλτ ιν ΦΙΛΕΣΫΣΤΕΜ ΔΕΣΤΡΥϲΤΙΟΝ ιφ βαλυαϭλε δατα ισ οβερωριττεν ϭϋ γρυϭ-σετυπ (--σκιπ-φσ-προϭε δισαϭλεσ τχισ ϲχεϲκ, υσε ατ ϋουρ οων ρισκ) %s δοεσ νοτ συππορτ ΥΥΙΔσ %s δοεσν'τ εξιστ. Πλεασε σπεϲιφϋ --ταργετ ορ --διρεϲτορϋ %s δοεσν'τ λοοκ λικε αν ΕΦΙ παρτιτιον.
 %s γενερατεσ α κεϋϭοαρδ λαϋουτ φορ ΓΡΥϬ υσινγ ϲκϭϲομπ\ν %s ισ δεπρεϲατεδ. Υσε σετ γφξπαϋλοαδ=%s ϭεφορε λινυξ ϲομμανδ ινστεαδ.
 %s ισ δεπρεϲατεδ. ΒΓΑ μοδε %d ισν'τ ρεϲογνιζεδ. Υσε σετ γφξπαϋλοαδ=ΩΙΔΤΧξΧΕΙΓΧΤ[ξΔΕΠΤΧ] ϭεφορε λινυξ ϲομμανδ ινστεαδ.
 %s ισ νοτ ϋετ συππορτεδ ϭϋ γρυϭ-μκϲονφιγ.\ν %s, ωιτχ Χυρδ %s %s, ωιτχ Χυρδ %s (ρεϲοβερϋ μοδε) %s, ωιτχ Λινυξ %s %s, ωιτχ Λινυξ %s (ρεϲοβερϋ μοδε) %s, ωιτχ Ξεν %s ανδ Λινυξ %s %s, ωιτχ Ξεν %s ανδ Λινυξ %s (ρεϲοβερϋ μοδε) %s, ωιτχ Ξεν χϋπερβισορ %s, ωιτχ κΦρεεϬΣΔ %s %s, ωιτχ κΦρεεϬΣΔ %s (ρεϲοβερϋ μοδε) %s, ωιτχ κερνελ %s (βια %s) %s, ωιτχ κερνελ %s (βια %s, ρεϲοβερϋ μοδε) %s: ΧΑΣΧ ΜΙΣΜΑΤϲΧ
 %s: ΟΚ
 %s: ΡΕΑΔ ΕΡΡΟΡ
 %s: Τοο μανϋ αργυμεντσ
 %s: Ϋου μυστ ρυν τχισ ασ ροοτ\ν %s: ερρορ: %s: ινφο: %s: ινβαλιδ οπτιον -- '%c'
 %s: νοτ φουνδ %s: οπτιον '%c%s' δοεσν'τ αλλοω αν αργυμεντ
 %s: οπτιον '%s' ισ αμϭιγυουσ; ποσσιϭιλιτιεσ: %s: οπτιον '--%s' δοεσν'τ αλλοω αν αργυμεντ
 %s: οπτιον '--%s' ρεϗυιρεσ αν αργυμεντ
 %s: οπτιον '-Ω %s' δοεσν'τ αλλοω αν αργυμεντ
 %s: οπτιον '-Ω %s' ισ αμϭιγυουσ
 %s: οπτιον '-Ω %s' ρεϗυιρεσ αν αργυμεντ
 %s: οπτιον ρεϗυιρεσ αν αργυμεντ -- '%c'
 %s: οπτιον ρεϗυιρεσ αν αργυμεντ -- `%s'\ν %s: υνρεϲογνιζεδ οπτιον '%c%s'
 %s: υνρεϲογνιζεδ οπτιον '--%s'
 %s: ωαρνινγ: (32-ϭιτ) (64-ϭιτ) (ΠΡΟΓΡΑΜ ΕΡΡΟΡ) Νο βερσιον κνοων!? (ΠΡΟΓΡΑΜ ΕΡΡΟΡ) Οπτιον σχουλδ χαβε ϭεεν ρεϲογνιζεδ!? (ον %s) - Λαϭελ `%s' - Λαστ μοδιφιϲατιον τιμε %d-%02d-%02d %02d:%02d:%02d %s --ΜΟΡΕ-- --ππϲ ΠΑΤΧ|--ξ86 ΦΙΛΕ -χ ΧΑΣΧ [-ϲ ΦΙΛΕ [-π ΠΡΕΦΙΞ]] [ΦΙΛΕ1 [ΦΙΛΕ2 ...]] -λ | -ρ | [-σ] γρυϭδεβ οσδισκ. .5 16-ϭιτ προτεϲτεδ ιντερφαϲε συππορτεδ
 16-ϭιτ προτεϲτεδ ιντερφαϲε υνσυππορτεδ
 32-ϭιτ προτεϲτεδ ιντερφαϲε συππορτεδ
 32-ϭιτ προτεϲτεδ ιντερφαϲε υνσυππορτεδ
 =ΒΑΛ > ΑϲΠΙ νον-βολατιλε στοραγε ΡΑΜ ΑϲΠΙ ρεϲλαιμαϭλε ΡΑΜ ΑϲΠΙ σχυτδοων φαιλεδ ΑΔΔΡ ΑΔΔΡ ΒΑΛΥΕ [ΜΑΣΚ] ΑΔΔΡ [ΣΙΖΕ] ΑΔΔΡ1,ΜΑΣΚ1[,ΑΔΔΡ2,ΜΑΣΚ2[,...]] ΑΔΔΡΕΣΣ ΔΝΣΣΕΡΒΕΡ ΑΠΜ δισαϭλεδ
 ΑΠΜ δισενγαγεδ
 ΑΠΜ εναϭλεδ
 ΑΠΜ ενγαγεδ
 ΑΡΓΠ_ΧΕΛΠ_ΦΜΤ: %s βαλυε ισ λεσσ τχαν ορ εϗυαλ το %s ΑΣϲΙΙ Αϲϲεπτ ΔΟΣ-στϋλε ϲΡ/ΝΛ λινε ενδινγσ. Αϲτιβε ινπυτ τερμιναλσ: Αϲτιβε ουτπυτ τερμιναλσ: Αδαπτερ `%s':
 Αδδ α ΔΝΣ σερβερ Αδδ α νετωορκ αδδρεσσ. Αδδ α νετωορκ ρουτε. Αδβανϲεδ οπτιονσ φορ %s Αδβανϲεδ οπτιονσ φορ %s (ωιτχ Ξεν χϋπερβισορ) Αλλοω το ιντερρυπτ ωιτχ ΕΣϲ. Ασκ φορ φιλε ναμε το ρεϭοοτ φρομ. Ασσυμε ινπυτ ισ χεξ. Ασσυμε ινπυτ ισ πασσπχρασε. Ασσυμε ινπυτ ισ ραω. Αττεμπτινγ το δεϲρϋπτ μαστερ κεϋ... Αττεμπτινγ το ινσταλλ ΓΡΥϬ το α δισκ ωιτχ μυλτιπλε παρτιτιον λαϭελσ ορ ϭοτχ παρτιτιον λαϭελ ανδ φιλεσϋστεμ.  Τχισ ισ νοτ συππορτεδ ϋετ. Αττεμπτινγ το ινσταλλ ΓΡΥϬ το α δισκ ωιτχ μυλτιπλε παρτιτιον λαϭελσ.  Τχισ ισ νοτ συππορτεδ ϋετ. Αττεμπτινγ το ινσταλλ ΓΡΥϬ το α παρτιτιονλεσσ δισκ ορ το α παρτιτιον.  Τχισ ισ α ϬΑΔ ιδεα. Αβαιλαϭλε ινπυτ τερμιναλσ: Αβαιλαϭλε ουτπυτ τερμιναλσ: Ϭ Ϭ/σ ϬΙΟΣ_ΔΥΜΠ [ΙΝΤ10_ΔΥΜΠ] ϬΛΟϲΚ ϬΫΤΕ:ϬΙΤ Ϭαϲκγρουνδ ιμαγε μοδε. Ϭασε διρεϲτορϋ φορ χασχ λιστ. Ϭλεσσ ΔΙΡ οφ ΧΦΣ ορ ΧΦΣ+ παρτιτιον φορ ΠΠϲ μαϲσ. Ϭλεσσ ΦΙΛΕ οφ ΧΦΣ ορ ΧΦΣ+ παρτιτιον φορ ιντελ μαϲσ. Ϭοοτ ϬΙΟΣ-ϭασεδ σϋστεμ. Ϭοοτ αν οπερατινγ σϋστεμ. Ϭοοτ ιντο σινγλε μοδε. Ϭοοτ ωιτχ δεϭυγ μεσσαγεσ. Ϭοοτ ωιτχ βερϭοσε μεσσαγεσ. Ϭοοτινγ `%s' Ϭοοτινγ α ϲομμανδ λιστ Ϭοοτινγ ιν ϭλινδ μοδε Ϭοοτπατχ: %s
 Ϭοοτπατχ: υναβαιλαϭλε
 Ϭρεακ ιντο ΓΔϬ ϲΓΑ  ϲΟΛΟΡ ϲΟΜΜΑΝΔ [ΑΡΓΣ] ϲΠΥ Ιδλε δοεσν'τ σλοω δοων προϲεσσορ
 ϲΠΥ Ιδλε σλοωσ δοων προϲεσσορ
 ϲΣ5536 ατ %d:%d.%d
 ϲαν'τ ϲρεατε φιλε: %s ϲαν'τ εναϭλε ΡΟΜ αρεα. ϲχανγε ϲονφιγυρεδ δεβιϲεσ. ϲχανγε παρτιτιον τϋπε ϲχεϲκ Αλτ κεϋ. ϲχεϲκ ϲοντρολ κεϋ. ϲχεϲκ Σχιφτ κεϋ. ϲχεϲκ φορ ϲΠΥ φεατυρεσ. ϲχεϲκ χασχεσ οφ φιλεσ ωιτχ χασχ λιστ ΦΙΛΕ. ϲχεϲκ ιφ ϲΠΥ συππορτσ 64-ϭιτ (λονγ) μοδε (δεφαυλτ). ϲχεϲκ ιφ ϲΠΥ συππορτσ Πχϋσιϲαλ Αδδρεσσ Εξτενσιον. ϲχεϲκ ιφ ΦΙΛΕ ϲαν ϭε υσεδ ασ ξ86 μυλτιϭοοτ κερνελ ϲχεϲκ ιφ ΦΙΛΕ ϲαν ϭε υσεδ ασ ξ86 μυλτιϭοοτ2 κερνελ ϲχεϲκ ιφ ΦΙΛΕ ισ ΑΡΜ ΕΦΙ φιλε ϲχεϲκ ιφ ΦΙΛΕ ισ ϬΙΟΣ ϭοοτσεϲτορ ϲχεϲκ ιφ ΦΙΛΕ ισ ΙΑ64 ΕΦΙ φιλε ϲχεϲκ ιφ ΦΙΛΕ ισ χιϭερφιλ.σϋσ ιν χιϭερνατεδ στατε ϲχεϲκ ιφ ΦΙΛΕ ισ ι386 ΕΦΙ φιλε ϲχεϲκ ιφ ΦΙΛΕ ισ οφ σπεϲιφιεδ τϋπε. ϲχεϲκ κεϋ μοδιφιερ στατυσ. ϲχεϲκ ωχετχερ υσερ ισ ιν ΥΣΕΡΛΙΣΤ. ϲχεϲκσ ΓΡΥϬ σϲριπτ ϲονφιγυρατιον φιλε φορ σϋνταξ ερρορσ. ϲλεαρ ϭιτ ατ ϬΫΤΕ:ϬΙΤ ιν ϲΜΟΣ. ϲλεαρ τχε σϲρεεν. ϲλεαρεδ αϲτιβε φλαγ ον %d. 
 ϲομμανδσ: ϲομπαρε ΦΙΛΕ ωιτχ λοϲαλ φιλε ΛΟϲΑΛ. ϲομπαρε φιλε `%s' ωιτχ `%s':
 ϲομπαρε τωο φιλεσ. ϲομπυτε ΞΝΥ ΥΥΙΔ οφ τχε δεβιϲε. ϲομπυτε ορ ϲχεϲκ χασχ ϲχεϲκσυμ. ϲονφιγυρε σεριαλ πορτ. ϲοντινυε λοοπσ ϲονβερτ ϲομμον φοντ φιλε φορματσ ιντο ΠΦ2 ϲοπϋ ΦΙΛΕ το λοϲαλ φιλε ΛΟϲΑΛ. ϲοπϋ ΦΙΛΕ το στανδαρδ ουτπυτ. ϲουλδ νοτ λοϲατε ΦΠΣΩΑ δριβερ ϲουλδν'τ φινδ α φρεε ϬοοτΝΝΝΝ σλοτ ϲουλδν'τ φινδ πχϋσιϲαλ βολυμε `%s'. Σομε μοδυλεσ μαϋ ϭε μισσινγ φρομ ϲορε ιμαγε. ϲουλδν'τ λοαδ σχα256 ϲουλδν'τ λοαδ σχα512 ϲρεατε ϬΙΟΣ-λικε στρυϲτυρεσ φορ ϭαϲκωαρδ ϲομπατιϭιλιτϋ ωιτχ εξιστινγ ΟΣ. ϲρεατε α ϭλανκ ενβιρονμεντ ϭλοϲκ φιλε. ϲυρρεντ τερμινφο τϋπεσ: ΔΕΒΙϲΕ ΔΕΒΙϲΕ [ΠΑΡΤΙΤΙΟΝ[+/-[ΤΫΠΕ]]] ... ΔΕΒΙϲΕ μυστ ϭε αν ΟΣ δεβιϲε (ε.γ. /δεβ/σδα). ΔΕΒΙϲΕ_ΝΑΜΕ ΔΙΡ ΔΙΡΕϲΤΟΡΫ [ΟΣϬυνδλεΡεϗυιρεδ] ΔΝΣΣΕΡΒΕΡ Δεϭυγ τοολ φορ φιλεσϋστεμ δριβερ. Δεϲλαρε μεμορϋ ρεγιονσ ασ φαυλτϋ (ϭαδραμ). Δεϲομπρεσσορ ισ τοο ϭιγ Δεφαυλτ σερβερ ισ ${νετ_δεφαυλτ_σερβερ} Δεφινε α μενυ εντρϋ. Δεφινε α συϭμενυ. Δελετε α νετωορκ αδδρεσσ. Δελετε α νετωορκ ρουτε. Δελετε τχε σπεϲιφιεδ λοοπϭαϲκ δριβε. Δελετε βαριαϭλεσ. Δετερμινε δριβερ. Δετερμινε φιλεσϋστεμ ΥΥΙΔ. Δετερμινε φιλεσϋστεμ λαϭελ. Δετερμινε φιλεσϋστεμ τϋπε. Δετερμινε παρτιτιον μαπ τϋπε. Δεβιϲε %s: Δεβιδ: %s
 Δεβιδ: υναβαιλαϭλε Διρεϲτ ϲολορ, μασκ: %d/%d/%d/%d  ποσ: %d/%d/%d/%d Δισαϭλε ΑϲΠΙ. Δισαϭλε ΣΜΠ. Δισαϭλε αλλ ϭοοτ ουτπυτ. Δισαϭλε/εναϭλε ΣΜΑΡΤ (0/1). Δισϲαρδινγ ιμπροπερλϋ νεστεδ παρτιτιον (%s,%s,%s%d) Δισκ ϲαϲχε στατιστιϲσ: χιτσ = %lu (%lu.%02lu%%), μισσεσ = %lu
 Δισκ ϲουντ μυστ πρεϲεδε δισκσ λιστ.
 Δισπλαϋ ΦΠΣΩΑ βερσιον. Δισπλαϋ ΣΜΑΡΤ χεαλτχ στατυσ. Δισπλαϋ α λινε οφ τεξτ. Δισπλαϋ ϭλοϲκλιστ οφ ΦΙΛΕ. Δισπλαϋ ουτπυτ ον αλλ ϲονσολεσ. Δισπλαϋ ποωερ μοδε. Δισπλαϋ τχε υσαγε οφ τχισ ϲομμανδ ανδ εξιτ. Δισπλαϋ τχισ χελπ ανδ εξιτ. Δισπλαϋ/σετ ϲυρρεντ δατετιμε. Δο νοτ αππλϋ ανϋ ρεεδ-σολομον ϲοδεσ ωχεν εμϭεδδινγ ϲορε.ιμγ. Τχισ οπτιον ισ ονλϋ αβαιλαϭλε ον ξ86 ϬΙΟΣ ταργετσ. Δο νοτ ουτπυτ τχε τραιλινγ νεωλινε. Δο νοτ πριντ μεσσαγεσ. Δο νοτ προϭε ανϋ φλοππϋ δριβε. Δο νοτ υσε ΑΠΜ το χαλτ τχε ϲομπυτερ. Δο νοτχινγ, συϲϲεσσφυλλϋ. Δο νοτχινγ, υνσυϲϲεσσφυλλϋ. Δον'τ δισπλαϋ ϭοοτ διαγνοστιϲ μεσσαγεσ. Δον'τ λοαδ χοστ ταϭλεσ σπεϲιφιεδ ϭϋ ϲομμα-σεπαρατεδ λιστ. Δον'τ ρεϭοοτ, ϊυστ χαλτ. Δον'τ στοπ αφτερ φιρστ ερρορ. Δον'τ υπδατε ΕϬΔΑ. Μαϋ φιξ φαιλυρεσ ορ χανγσ ον σομε ϬΙΟΣεσ ϭυτ μακεσ ιτ ινεφφεϲτιβε ωιτχ ΟΣ νοτ ρεϲειβινγ ΡΣΔΠ φρομ ΓΡΥϬ. ΕΦΙ ϭοοτλοαδερ ιδ ισν'τ σπεϲιφιεδ. ΕΝΒΒΑΡ ΕΝΒΒΑΡ [ΕΝΒΒΑΡ] ... ΕΡΡΟΡ: νο βαλιδ κεϋϭοαρδ λαϋουτ φουνδ. ϲχεϲκ τχε ινπυτ.
 ΕΣϲ ατ ανϋ τιμε εξιτσ. ΕΞΠΡΕΣΣΙΟΝ ΕΞΠΡΕΣΣΙΟΝ ] Ελαπσεδ τιμε: %d.%03d σ 
 Ελαπσεδ τιμε: %d.%03d σεϲονδσ 
 Εμϭεδδινγ ισ νοτ ποσσιϭλε.  ΓΡΥϬ ϲαν ονλϋ ϭε ινσταλλεδ ιν τχισ σετυπ ϭϋ υσινγ ϭλοϲκλιστσ.  Χοωεβερ, ϭλοϲκλιστσ αρε ΥΝΡΕΛΙΑϬΛΕ ανδ τχειρ υσε ισ δισϲουραγεδ. Εμυλατε α κεϋστροκε σεϗυενϲε Εναϭλε ιντερπρετατιον οφ ϭαϲκσλασχ εσϲαπεσ. Εναϭλε/δισαϭλε ΡΤΣ/ϲΤΣ. Εντερ ΖΦΣ πασσωορδ:  Εντερ ιν ΚΔϬ ον ϭοοτ. Εντερ νορμαλ μοδε. Εντερ πασσπχρασε φορ %s%s%s (%s):  Εντερ πασσωορδ:  Εντερ υσερναμε:  Ερρορ ιν παρσινγ ϲομμανδ λινε αργυμεντσ
 Εβαλυατε αν εξπρεσσιον. Εβαλυατε αργυμεντσ ασ ΓΡΥϬ ϲομμανδσ Εξεϲυτε σϋσλινυξ ϲονφιγ ιν νεω ϲοντεξτ Εξεϲυτε σϋσλινυξ ϲονφιγ ιν νεω ϲοντεξτ τακινγ ονλϋ μενυ εντριεσ Εξεϲυτε σϋσλινυξ ϲονφιγ ιν σαμε ϲοντεξτ Εξεϲυτε σϋσλινυξ ϲονφιγ ιν σαμε ϲοντεξτ τακινγ ονλϋ μενυ εντριεσ Εξιτ φαιλεδ Εξιτ φρομ ΓΡΥϬ. Εξιτ φρομ λοοπσ Εξιτ φρομ νορμαλ μοδε. Εξπορτ βαριαϭλεσ. Εξπορτ βερσιον 1 ταϭλεσ το τχε ΟΣ. Εξπορτ βερσιον 2 ανδ βερσιον 3 ταϭλεσ το τχε ΟΣ. ΦΙΛΕ ΦΙΛΕ [ΑΡΓ ...] ΦΙΛΕ [ΑΡΓΣ...] ΦΙΛΕ | ΤΕΜΠΟ [ΠΙΤϲΧ1 ΔΥΡΑΤΙΟΝ1] [ΠΙΤϲΧ2 ΔΥΡΑΤΙΟΝ2] ...  ΦΙΛΕ... ΦΙΛΕ1 ΦΙΛΕ2 ΦΙΛΕΝΑΜΕ ϲΟΜΜΑΝΔ ΦΙΛΕΣΫΣΤΕΜ [ΒΑΡΙΑϬΛΕ] ΦΙΛΕ|προμπτ ΦΟΝΤΣ ΦΟΡΜΑΤ ΦΠΣΩΑ προτοϲολ ωασν'τ αϭλε το φινδ τχε ιντερφαϲε ΦΠΣΩΑ ρεβισιον: %x
 ΦΡΟΜ-ΤΟ[,ΦΡΟΜ-ΤΟ] ΦΡΟΜ[Κ|Μ|Γ] ΤΟ[Κ|Μ|Γ] ΦΤ_Ινιτ_ΦρεεΤϋπε φαιλσ Φαιλεδ το ϭοοτ ϭοτχ δεφαυλτ ανδ φαλλϭαϲκ εντριεσ.
 Φαιλεδ το ϲρεατε `δεβιϲε-μαππερ' τρεε Φαλλινγ ϭαϲκ το `%s' Φιλε σιζε: %s
 Φιλε σϋστεμ `%s' δοεσν'τ συππορτ εμϭεδδινγ Φιλεσ διφφερ ατ τχε οφφσετ %llu: 0ξ%x [%s], 0ξ%x [%s]
 Φιλεσ διφφερ ιν σιζε: %llu [%s], %llu [%s]
 Φιλεσϋστεμ ϲαννοτ ϭε αϲϲεσσεδ Φιλεσϋστεμ τϋπε %s Φιλλ χϋϭριδ ΜϬΡ οφ ΓΠΤ δριβε ΔΕΒΙϲΕ. Σπεϲιφιεδ παρτιτιονσ ωιλλ ϭε α παρτ οφ χϋϭριδ ΜϬΡ. Υπ το 3 παρτιτιονσ αρε αλλοωεδ. ΤΫΠΕ ισ αν ΜϬΡ τϋπε. + μεανσ τχατ παρτιτιον ισ αϲτιβε. Ονλϋ ονε παρτιτιον ϲαν ϭε αϲτιβε. Φιναλιζε λοαδινγ οφ ΕΦΙ εμυλατορ. Φιρστ τρϋ τχε δεβιϲε ΧΙΝΤ ιφ ϲυρρεντλϋ ρυννινγ ον ΑΡϲ. Ιφ ΧΙΝΤ ενδσ ιν ϲομμα, αλσο τρϋ συϭπαρτιτιονσ Φιρστ τρϋ τχε δεβιϲε ΧΙΝΤ ιφ ϲυρρεντλϋ ρυννινγ ον ϬΙΟΣ. Ιφ ΧΙΝΤ ενδσ ιν ϲομμα, αλσο τρϋ συϭπαρτιτιονσ Φιρστ τρϋ τχε δεβιϲε ΧΙΝΤ ιφ ϲυρρεντλϋ ρυννινγ ον ΕΦΙ. Ιφ ΧΙΝΤ ενδσ ιν ϲομμα, αλσο τρϋ συϭπαρτιτιονσ Φιρστ τρϋ τχε δεβιϲε ΧΙΝΤ ιφ ϲυρρεντλϋ ρυννινγ ον ΙΕΕΕ1275. Ιφ ΧΙΝΤ ενδσ ιν ϲομμα, αλσο τρϋ συϭπαρτιτιονσ Φιρστ τρϋ τχε δεβιϲε ΧΙΝΤ ιφ διρεϲτ χαρδωαρε αϲϲεσσ ισ συππορτεδ. Ιφ ΧΙΝΤ ενδσ ιν ϲομμα, αλσο τρϋ συϭπαρτιτιονσ Φιρστ τρϋ τχε δεβιϲε ΧΙΝΤ. Ιφ ΧΙΝΤ ενδσ ιν ϲομμα, αλσο τρϋ συϭπαρτιτιονσ Φιξ βιδεο προϭλεμ. Φουνδ %s ον %s (%s)\ν Φουνδ %s ον %s\ν Φουνδ ΓΝΥ Μαϲχ: %s Φουνδ Χυρδ μοδυλε: %s Φουνδ ΝετϬΣΔ κερνελ: %s\ν Φουνδ ϭαϲκγρουνδ: %s\ν Φουνδ ινιτρδ ιμαγε: %s\ν Φουνδ κερνελ μοδυλε διρεϲτορϋ: %s\ν Φουνδ κερνελ οφ ΦρεεϬΣΔ: %s\ν Φουνδ λινυξ ιμαγε: %s\ν Φουνδ τχεμε: %s\ν Φρεετϋπε Ερρορ %d λοαδινγ γλϋπχ 0ξ%x φορ Υ+0ξ%x%s Φρεεζε ΑΤΑ σεϲυριτϋ σεττινγσ υντιλ ρεσετ. Φριδαϋ Γ ΓΝΥ ΓΡΥϬ  βερσιον %s ΓΡΥϬ Ϭοοτ Μενυ ΓΡΥϬ δοεσν'τ κνοω χοω το χαλτ τχισ μαϲχινε ϋετ! ΓΡΥϬ εμυλατορ. ΓΡΥϬΔΕΒΙϲΕ=ΠΛΑΝ9ΔΕΒΙϲΕ Γαρϭαγε ιν ΑΡΓΠ_ΧΕΛΠ_ΦΜΤ: %s Γενερατε ΓΡΥϬ κεϋϭοαρδ λαϋουτ φρομ Λινυξ ϲονσολε ονε. Γενερατε ΠϬΚΔΦ2 πασσωορδ χασχ. Γενερατε α γρυϭ ϲονφιγ φιλε Γενερατε α στανδαλονε ιμαγε (ϲονταινινγ αλλ μοδυλεσ) ιν τχε σελεϲτεδ φορματ Γενερατινγ γρυϭ ϲονφιγυρατιον φιλε ... Γετ ϲρϲ32 ϲχεϲκσυμ οφ ΦΙΛΕ. Γετ δισκ ϲαϲχε ινφο. Γετ/σετ ΑΤΑ δισκ παραμετερσ. ΓιϬ ΓιϬ/σ Γραφτ ποιντ σϋνταξ (Ε.γ. /ϭοοτ/γρυϭ/γρυϭ.ϲφγ=./γρυϭ.ϲφγ) ισ αϲϲεπτεδ ΧΑΣΧ ΧΙΝΤ Χαλτ τχε σϋστεμ, ιφ ποσσιϭλε υσινγ ΑΠΜ. Χαλτσ τχε ϲομπυτερ.  Τχισ ϲομμανδ δοεσ νοτ ωορκ ον αλλ φιρμωαρε ιμπλεμεντατιονσ. Χανδλε Ν ϭϋτεσ ιν ουτπυτ φιλε. Χελλο Ωορλδ Χερϲυλεσ  ΙΔ ΙΜΑΓΕ1 [ΙΜΑΓΕ2 ...] ΜΟΥΝΤΠΟΙΝΤ ΙΜΑΓΕ_ΠΑΤΧ ϲΟΜΜΑΝΔΣ ΙΝΣΤΑΛΛ_ΔΕΒΙϲΕ μυστ ϭε σϋστεμ δεβιϲε φιλεναμε.
%s ϲοπιεσ ΓΡΥϬ ιμαγεσ ιντο %s.  Ον σομε πλατφορμσ, ιτ μαϋ αλσο ινσταλλ ΓΡΥϬ ιντο τχε ϭοοτ σεϲτορ. Ιφ ΦΙΛΕΝΑΜΕ ισ `-', τχε δεφαυλτ βαλυε %s ισ υσεδ.

Τχερε ισ νο `δελετε' ϲομμανδ; ιφ ϋου ωαντ το δελετε τχε ωχολε ενβιρονμεντ
ϭλοϲκ, υσε `ρμ %s'. Ιμπορτ ΖΦΣ ωραππινγ κεϋ στορεδ ιν ΦΙΛΕ. Ινϲορρεϲτ ΒΔΕΒ Ινϲορρεϲτ βιρτυαλ δεβιϲε: νο τϋπε αβαιλαϭλε Ινσερτ α μοδυλε. Ινσταλλ ΓΡΥϬ ον ϋουρ δριβε. Ινσταλλατιον φινισχεδ. Νο ερρορ ρεπορτεδ. Ινσταλλινγ φορ %s πλατφορμ.
 Ινβαλιδ ϭαϲκ ρεφερενϲε Ινβαλιδ ϲχαραϲτερ ϲλασσ ναμε Ινβαλιδ ϲολλατιον ϲχαραϲτερ Ινβαλιδ ϲομμανδ %s.
 Ινβαλιδ ϲοντεντ οφ \{\} Ινβαλιδ δεβιϲε `%s'.
 Ινβαλιδ δισκ ϲουντ.
 Ινβαλιδ πρεϲεδινγ ρεγυλαρ εξπρεσσιον Ινβαλιδ ρανγε ενδ Ινβαλιδ ρεγυλαρ εξπρεσσιον Ινβοκε υσερ ϲονφιγυρατιον ρουτινγ. Κ ΚΕΡΝΕΛ ΑΡΓΣ ΚΕΫϬΟΑΡΔ_ΚΕΫ Κεϋϭοαρδ κεϋ το ϗυιϲκλϋ ϭοοτ τχισ εντρϋ. ΚιϬ ΚιϬ/σ ΛΟϲΑΛΕΣ Λεαφ βιρτυαλ δεβιϲε (φιλε ορ δισκ) Λεγαϲϋ `ασκ' παραμετερ νο λονγερ συππορτεδ. Λεγενδ: μασκ/ποσιτιον=ρεδ/γρεεν/ϭλυε/ρεσερβεδ Λενγτχ οφ γενερατεδ χασχ Λενγτχ οφ σαλτ Λιστ ΔΝΣ σερβερσ Λιστ ΠϲΙ δεβιϲεσ. Λιστ αλλ φιλεσ. Λιστ αβαιλαϭλε βιδεο μοδεσ. Ιφ ρεσολυτιον ισ γιβεν σχοω ονλϋ μοδεσ ματϲχινγ ιτ. Λιστ ϲορεϭοοτ ταϭλεσ. Λιστ δεβιϲεσ ανδ φιλεσ. Λιστ δεβιϲεσ ορ φιλεσ. Λιστ δεβιϲεσ. Λιστ φιλεσ ιν ΠΑΤΧ. Λιστ μεμορϋ μαπ προβιδεδ ϭϋ φιρμωαρε. Λιστ οφ συππορτεδ βιδεο μοδεσ: Λιστ οφ υσερσ αλλοωεδ το ϭοοτ τχισ εντρϋ. Λιστ ορ σελεϲτ αν ινπυτ τερμιναλ. Λιστ ορ σελεϲτ αν ουτπυτ τερμιναλ. Λιστ τχε ϲυρρεντ βαριαϭλεσ. Λιστ τχε λοαδεδ φοντσ. Λιστ βαριαϭλεσ φρομ ενβιρονμεντ ϭλοϲκ φιλε. Λοαδ 64-ϭιτ ΞΝΥ ιμαγε. Λοαδ ϬΙΟΣ δυμπ. Λοαδ ΔΤϬ φιλε. Λοαδ ΦρεεϬΣΔ ενβ. Λοαδ ΦρεεϬΣΔ κερνελ μοδυλε (ΕΛΦ). Λοαδ ΦρεεϬΣΔ κερνελ μοδυλε. Λοαδ ΦρεεΔΟΣ κερνελ.σϋσ. Λοαδ Λινυξ. Λοαδ ΝΤΛΔΡ ορ ϬοοτΜΓΡ. Λοαδ ΝετϬΣΔ κερνελ μοδυλε (ΕΛΦ). Λοαδ ΝετϬΣΔ κερνελ μοδυλε. Λοαδ Πλαν9 κερνελ. Λοαδ Τρυεϲρϋπτ ΙΣΟ. Λοαδ ΞΝΥ εξτενσιον διρεϲτορϋ. Λοαδ ΞΝΥ εξτενσιον παϲκαγε. Λοαδ ΞΝΥ εξτενσιον. Λοαδ ΞΝΥ ιμαγε. Λοαδ ΞΝΥ ραμδισκ. Ιτ ωιλλ ϭε αβαιλαϭλε ιν ΟΣ ασ μδ0. Λοαδ `δεβιϲε-προπερτιεσ' δυμπ. Λοαδ α ΠΞΕ ιμαγε. Λοαδ α κεϋϭοαρδ λαϋουτ. Λοαδ α μυλτιϭοοτ 2 κερνελ. Λοαδ α μυλτιϭοοτ 2 μοδυλε. Λοαδ α μυλτιϭοοτ κερνελ. Λοαδ α μυλτιϭοοτ μοδυλε. Λοαδ α σπλασχ ιμαγε φορ ΞΝΥ. Λοαδ αν ιμαγε οφ χιϭερνατεδ ΞΝΥ. Λοαδ ανδ ινιτιαλιζε ΕΦΙ εμυλατορ. Λοαδ ανοτχερ ϭοοτ λοαδερ. Λοαδ ανοτχερ ϲονφιγ φιλε ϭυτ τακε ονλϋ μενυ εντριεσ. Λοαδ ανοτχερ ϲονφιγ φιλε ωιτχουτ ϲχανγινγ ϲοντεξτ ϭυτ τακε ονλϋ μενυ εντριεσ. Λοαδ ανοτχερ ϲονφιγ φιλε ωιτχουτ ϲχανγινγ ϲοντεξτ. Λοαδ ανοτχερ ϲονφιγ φιλε. Λοαδ ανοτχερ ϲορεϭοοτ παϋλοαδ Λοαδ ϭαϲκγρουνδ ιμαγε φορ αϲτιβε τερμιναλ. Λοαδ χοστ ΑϲΠΙ ταϭλεσ ανδ ταϭλεσ σπεϲιφιεδ ϭϋ αργυμεντσ. Λοαδ ινιτρδ. Λοαδ κΟπενϬΣΔ ραμδισκ. Λοαδ κερνελ οφ ΦρεεϬΣΔ. Λοαδ κερνελ οφ ΝετϬΣΔ. Λοαδ κερνελ οφ ΟπενϬΣΔ. Λοαδ μοδυλε. Λοαδ ονλϋ ταϭλεσ σπεϲιφιεδ ϭϋ ϲομμα-σεπαρατεδ λιστ. Λοαδ τχε σαμε φιλε ιν μυλτιπλε ωαϋσ. Λοαδ βαριαϭλεσ φρομ ενβιρονμεντ ϭλοϲκ φιλε. Λοαδ ζφσ ϲρϋπτο κεϋ. Λοαδεδ φοντσ: Λοαδινγ ΓΝΥ Μαϲχ ... Λοαδινγ Λινυξ %s ... Λοαδινγ Ξεν %s ... Λοαδινγ ινιτιαλ ραμδισκ ... Λοαδινγ κερνελ οφ ΦρεεϬΣΔ %s ... Λοαδινγ κερνελ οφ Ιλλυμοσ ... Λοαδινγ τχε Χυρδ ... Μ ΜΑϲ βεριφιϲατιον φαιλεδ ΜΕΝΥ_ΕΝΤΡΫ ισ α νυμϭερ, α μενυ ιτεμ τιτλε ορ α μενυ ιτεμ ιδεντιφιερ. ΜΕΝΥ_ΕΝΤΡΫ ισ α νυμϭερ, α μενυ ιτεμ τιτλε ορ α μενυ ιτεμ ιδεντιφιερ. Πλεασε νοτε τχατ μενυ ιτεμσ ιν
συϭμενυσ ορ συϭ-συϭμενυσ ρεϗυιρε σπεϲιφϋινγ τχε συϭμενυ ϲομπονεντσ ανδ τχεν τχε
μενυ ιτεμ ϲομπονεντ. Τχε τιτλεσ σχουλδ ϭε σεπαρατεδ υσινγ τχε γρεατερ-τχαν
ϲχαραϲτερ (>) ωιτχ νο εξτρα σπαϲεσ. Δεπενδινγ ον ϋουρ σχελλ σομε ϲχαραϲτερσ ινϲλυδινγ > μαϋ νεεδ εσϲαπινγ. Μορε ινφορματιον αϭουτ τχισ ισ αβαιλαϭλε
ιν τχε ΓΡΥϬ Μανυαλ ιν τχε σεϲτιον αϭουτ τχε 'δεφαυλτ' ϲομμανδ.  ΜΟΔΥΛΕ ΜΟΔΥΛΕΣ Μαϲ-στϋλε ϭλεσσ ον ΧΦΣ ορ ΧΦΣ+ Μακε ΓΡΥϬ ϲΔ-ΡΟΜ, δισκ, πενδριβε ανδ φλοππϋ ϭοοταϭλε ιμαγε. Μακε ΓΡΥϬ κεϋϭοαρδ λαϋουτ φιλε. Μακε α ϭοοταϭλε ιμαγε οφ ΓΡΥϬ. Μακε α βιρτυαλ δριβε φρομ α φιλε. Μακε παρτιτιον αϲτιβε Μαναγε τχε ϬΙΟΣ δριβε μαππινγσ. Μανδατορϋ ορ οπτιοναλ αργυμεντσ το λονγ οπτιονσ αρε αλσο μανδατορϋ ορ οπτιοναλ φορ ανϋ ϲορρεσπονδινγ σχορτ οπτιονσ. Μανιπυλατε ΠϲΙ δεβιϲεσ. Μεασυρε τιμε υσεδ ϭϋ ϲΟΜΜΑΝΔ Μεμορϋ εξχαυστεδ Μεμορϋ τϋπε: ΔΔΡ2. Μεμορϋ τϋπε: Υνκνοων. Μενυ εντρϋ ιδεντιφιερ. Μενυ εντρϋ νοτ σπεϲιφιεδ. Μενυ εντρϋ τϋπε. ΜιϬ ΜιϬ/σ Μινιμαλ ϬΑΣΧ-λικε λινε εδιτινγ ισ συππορτεδ. Φορ τχε φιρστ ωορδ, ΤΑϬ λιστσ ποσσιϭλε ϲομμανδ ϲομπλετιονσ. Ανϋωχερε ελσε ΤΑϬ λιστσ ποσσιϭλε δεβιϲε ορ φιλε ϲομπλετιονσ. %s Μινιμυμ Εμαϲσ-λικε σϲρεεν εδιτινγ ισ συππορτεδ. ΤΑϬ λιστσ ϲομπλετιονσ. Πρεσσ ϲτρλ-ξ ορ Φ10 το ϭοοτ, ϲτρλ-ϲ ορ Φ2 φορ α ϲομμανδ-λινε ορ ΕΣϲ το δισϲαρδ εδιτσ ανδ ρετυρν το τχε ΓΡΥϬ μενυ. Μισσινγ αργυμεντσ
 Μισσινγ ινπυτ φιλε
 Μονδαϋ Μονοϲχρομε  Μορε τχαν ονε ινσταλλ δεβιϲε? Μορε τχαν ονε μενυ εντρϋ? Μουντ α ϲρϋπτο δεβιϲε. Μουντ αλλ βολυμεσ ωιτχ `ϭοοτ' φλαγ σετ. Μουντ αλλ. Μουντ ϭϋ ΥΥΙΔ. Μουντ ϲρϋπτο δεβιϲεσ. ΝΑΜΕ ΝΑΜΕ [ΒΑΡΙΑϬΛΕ] [ΧΙΝΤΣ] ΝΟΤ ΡΥΝΝΙΝΓ:  ΝΥΜ ΝΥΜϬΕΡ_ΟΦ_ΣΕϲΟΝΔΣ Ναμε	Ρεφ ϲουντ	Δεπενδενϲιεσ
 Νατιβε δισκ δριβερσ αρε ιν υσε. Ρεφυσινγ το υσε φιρμωαρε δισκ ιντερφαϲε. Νετϭοοτ διρεϲτορϋ φορ %s ϲρεατεδ. ϲονφιγυρε ϋουρ ΔΧϲΠ σερβερ το ποιντ το %s
 Νετωορκ προτοϲολσ: Νεω ΜϬΡ ισ ωριττεν το `%s'
 Νο ϲΣ5536 φουνδ Νο ΦΠΣΩΑ φουνδ Νο ϭοοτ τιμε στατιστιϲσ ισ αβαιλαϭλε
 Νο ϲομμανδ ισ σπεϲιφιεδ.
 Νο δεβιϲε ισ σπεϲιφιεδ.
 Νο δισκ ϲαϲχε στατιστιϲσ αβαιλαϭλε
 Νο δριβεσ χαβε ϭεεν ρεμαππεδ Νο κνοων φιλεσϋστεμ δετεϲτεδ Νο ματϲχ Νο πατχ ισ σπεϲιφιεδ.
 Νο πατχ ορ δεβιϲε ισ σπεϲιφιεδ.
 Νο πρεβιουσ ρεγυλαρ εξπρεσσιον Νο βιρτυαλ δεβιϲε τρεε αβαιλαϭλε Νον-ϲχαιν 4  Νοτ ενουγχ παραμετερσ το ϲομμανδ.
 Νοω ϲοννεϲτ τχε ρεμοτε δεϭυγγερ, πλεασε. Νυμϭερ οφ ΠϬΚΔΦ2 ιτερατιονσ ΟΠΤΙΟΝΣ ΦΙΛΕ ΟΣ δισκ #νυμ ------> ΓΡΥϬ/ϬΙΟΣ δεβιϲε ΟΣ φιλε %s οπεν ερρορ: %s Οπτιονσ: Ουτ οφ ρανγε λοοκυπ: %d
 Ουτ οφ ρανγε συϭστιτυτιον (%d, %d)
 Οβερριδε γυεσσεδ μαππινγ οφ Πλαν9 δεβιϲεσ. Π ΠΑΡΤΙΤΙΟΝ ϲΟΜΜΑΝΔΣ ΠΑΤΧ ΠϬΚΔΦ2 χασχ οφ ϋουρ πασσωορδ ισ %s
 ΠΟΡΤ ΠΟΡΤ ΒΑΛΥΕ [ΜΑΣΚ] ΠΥϬΚΕΫ_ΙΔ Παλεττεδ  Παρσε λεγαϲϋ ϲονφιγ ιν νεω ϲοντεξτ Παρσε λεγαϲϋ ϲονφιγ ιν νεω ϲοντεξτ τακινγ ονλϋ μενυ εντριεσ Παρσε λεγαϲϋ ϲονφιγ ιν σαμε ϲοντεξτ Παρσε λεγαϲϋ ϲονφιγ ιν σαμε ϲοντεξτ τακινγ ονλϋ μενυ εντριεσ Παρτ νο: %s.
 Παρτιτιον %d ισ αϲτιβε νοω. 
 Παρτιτιον %s: Παρτιτιον στϋλε `%s' δοεσν'τ συππορτ εμϭεδδινγ Πατχ: %s
 Πατχ: υναβαιλαϭλε Περφορμ ϲΟΜΜΑΝΔΣ ον παρτιτιον.
Υσε `παρττοολ ΠΑΡΤΙΤΙΟΝ χελπ' φορ τχε λιστ οφ αβαιλαϭλε ϲομμανδσ. Περφορμ α ΔΝΣ λοοκυπ Περφορμ αν ΙΠΒ6 αυτοϲονφιγυρατιον Περφορμ ϭοτχ διρεϲτ ανδ ρεβερσε μαππινγσ. ΠιϬ ΠιϬ/σ Πλαναρ  Πλαϋ α τυνε. Πλεασε δον'τ υσε ολδ τιτλε `%s' φορ ΓΡΥϬ_ΔΕΦΑΥΛΤ, υσε `%s' (φορ βερσιονσ ϭεφορε 2.00) ορ `%s' (φορ 2.00 ορ λατερ) Ποολ ΓΥΙΔ: %016llx
 Ποολ ΓΥΙΔ: υναβαιλαϭλε Ποολ ναμε: %s
 Ποολ ναμε: υναβαιλαϭλε Ποολ στατε: αϲτιβε Ποολ στατε: δεστροϋεδ Ποολ στατε: εξπορτεδ Ποολ στατε: λεβελ 2 ΑΡϲ δεβιϲε Ποολ στατε: ποτεντιαλλϋ αϲτιβε Ποολ στατε: ρεσερβεδ φορ χοτ σπαρε Ποολ στατε: υναβαιλαϭλε Ποολ στατε: υνινιτιαλιζεδ Ποσσιϭλε αργυμεντσ αρε: Ποσσιϭλε ϲομμανδσ αρε: Ποσσιϭλε δεβιϲεσ αρε: Ποσσιϭλε φιλεσ αρε: Ποσσιϭλε παρτιτιονσ αρε: Ποσσιϭλε τχινγσ αρε: Πρεματυρε ενδ οφ ρεγυλαρ εξπρεσσιον Πρεπαρεσ ΓΡΥϬ νετωορκ ϭοοτ ιμαγεσ ατ νετ_διρεϲτορϋ/συϭδιρ ασσυμινγ νετ_διρεϲτορϋ ϭεινγ ΤΦΤΠ ροοτ. Πρεσσ ανϋ κεϋ το ϲοντινυε... Πρεσσ ανϋ κεϋ το λαυνϲχ ξνυ Πρεσσ εντερ το ϭοοτ τχε σελεϲτεδ ΟΣ, `ε' το εδιτ τχε ϲομμανδσ ϭεφορε ϭοοτινγ ορ `ϲ' φορ α ϲομμανδ-λινε. Πρεσσ εντερ το ϭοοτ τχε σελεϲτεδ ΟΣ, `ε' το εδιτ τχε ϲομμανδσ ϭεφορε ϭοοτινγ ορ `ϲ' φορ α ϲομμανδ-λινε. ΕΣϲ το ρετυρν πρεβιουσ μενυ. Πριντ Μεμορϋ ινφορματιον. Πριντ ΖΦΣ ινφο αϭουτ ΔΕΒΙϲΕ. Πριντ ΖΦΣ-ϬΟΟΤΦΣΟϬΪ ορ στορε ιτ ιντο ΒΑΡΙΑϬΛΕ Πριντ α ϭλοϲκ λιστ. Πριντ ανδ εξεϲυτε ϭλοϲκ αργυμεντ. Πριντ ϭαϲκτραϲε. Πριντ δριβε ιδεντιτϋ ανδ σεττινγσ. Πριντ σιζεσ ιν α χυμαν ρεαδαϭλε φορματ. Προϭε δεβιϲε ινφορματιον φορ α γιβεν πατχ (ορ δεβιϲε, ιφ τχε -δ οπτιον ισ γιβεν). ΡΑΜ χολδινγ ϲορεϭοοτ ταϭλεσ ΡΑΜ χολδινγ φιρμωαρε ϲοδε ΡΑΜ σλοτ νυμϭερ %d
 ΡΕΓΕΞΠ ΣΤΡΙΝΓ ΡΟΜ ιμαγε ισ πρεσεντ. Ρεαδ 16-ϭιτ βαλυε φρομ ΑΔΔΡ. Ρεαδ 16-ϭιτ βαλυε φρομ ΠΟΡΤ. Ρεαδ 32-ϭιτ βαλυε φρομ ΑΔΔΡ. Ρεαδ 32-ϭιτ βαλυε φρομ ΠΟΡΤ. Ρεαδ 8-ϭιτ βαλυε φρομ ΑΔΔΡ. Ρεαδ 8-ϭιτ βαλυε φρομ ΠΟΡΤ. Ρεαδ ονλϋ ΛΕΝΓΤΧ ϭϋτεσ. Ρεϭοοτ φαιλεδ Ρεϭοοτ ιντο φιρμωαρε σετυπ μενυ. Ρεϭοοτ τχε ϲομπυτερ. Ρεεντερ πασσωορδ:  Ρεγιστερ %x οφ %x:%02x.%x ισ %x
 Ρεγυλαρ εξπρεσσιον τοο ϭιγ Ρεμοβε α ΔΝΣ σερβερ Ρεμοβε α μοδυλε. Ρεμοβε αν ενβιρονμεντ βαριαϭλε. Ρεμοβε ανϋ μεμορϋ ρεγιονσ ιν σπεϲιφιεδ ρανγε. Ρενδερ Αππλε .δισκ_λαϭελ. Ρεπορτ ϭυγσ το %s.
 Ρεπορτ ϭυγσ το <ϭυγ-γρυϭ@γνυ.οργ>. Ρεϗυεστεδ σεριαλ τερμιναλ ϭυτ ΓΡΥϬ_ΣΕΡΙΑΛ_ϲΟΜΜΑΝΔ ισ υνσπεϲιφιεδ. Δεφαυλτ παραμετερσ ωιλλ ϭε υσεδ. Ρεσετ αλλ μαππινγσ το τχε δεφαυλτ βαλυεσ. Ρετριεβε δεβιϲε ινφο. Ρετυρν φρομ α φυνϲτιον. Ρετυρν το ΙΕΕΕ1275 προμπτ. Ρυν `γδϭ %s %d', ανδ σετ ΑΡΓΣ.ΧΟΛΔ το ζερο.
 Ρυν `γο' το ρεσυμε ΓΡΥϬ. ΣΕϲΣ ΣΧΟΡΤΝΑΜΕ ΣΧΟΡΤΝΑΜΕ ϲΑΡΔ ΑΔΔΡΕΣΣ [ΧΩΑΔΔΡΕΣΣ] ΣΧΟΡΤΝΑΜΕ ΝΕΤ [ΙΝΤΕΡΦΑϲΕ| γω ΓΑΤΕΩΑΫ] ΣΙΖΕ ΣΟΥΡϲΕ|-υ ΥΥΙΔ|-α|-ϭ ΣΤΡΙΝΓ ΣΤΡΙΝΓ ... Σατυρδαϋ Σαβε ρεαδ βαλυε ιντο βαριαϭλε ΒΑΡΝΑΜΕ. Σαβε βαριαϭλεσ το ενβιρονμεντ ϭλοϲκ φιλε. Σαϋ `Χελλο Ωορλδ'. Σϲριπτ `%s' ϲονταινσ νο ϲομμανδσ ανδ ωιλλ δο νοτχινγ
 Σεαρϲχ δεβιϲεσ ϭϋ ΥΥΙΔ. Ιφ ΒΑΡΙΑϬΛΕ ισ σπεϲιφιεδ, τχε φιρστ δεβιϲε φουνδ ισ σετ το α βαριαϭλε. Σεαρϲχ δεβιϲεσ ϭϋ α φιλε. Σεαρϲχ δεβιϲεσ ϭϋ α φιλεσϋστεμ ΥΥΙΔ. Σεαρϲχ δεβιϲεσ ϭϋ α φιλεσϋστεμ λαϭελ. Σεαρϲχ δεβιϲεσ ϭϋ φιλε, φιλεσϋστεμ λαϭελ ορ φιλεσϋστεμ ΥΥΙΔ. Ιφ --σετ ισ σπεϲιφιεδ, τχε φιρστ δεβιϲε φουνδ ισ σετ το α βαριαϭλε. Ιφ νο βαριαϭλε ναμε ισ σπεϲιφιεδ, `ροοτ' ισ υσεδ. Σεαρϲχ δεβιϲεσ ϭϋ φιλε. Ιφ ΒΑΡΙΑϬΛΕ ισ σπεϲιφιεδ, τχε φιρστ δεβιϲε φουνδ ισ σετ το α βαριαϭλε. Σεαρϲχ δεβιϲεσ ϭϋ λαϭελ. Ιφ ΒΑΡΙΑϬΛΕ ισ σπεϲιφιεδ, τχε φιρστ δεβιϲε φουνδ ισ σετ το α βαριαϭλε. Σεϲτορ %llu ισ αλρεαδϋ ιν υσε ϭϋ ραιδ ϲοντρολλερ `%s'; αβοιδινγ ιτ.  Πλεασε ασκ τχε μανυφαϲτυρερ νοτ το στορε δατα ιν ΜϬΡ γαπ Σεϲτορ %llu ισ αλρεαδϋ ιν υσε ϭϋ τχε προγραμ `%s'; αβοιδινγ ιτ.  Τχισ σοφτωαρε μαϋ ϲαυσε ϭοοτ ορ οτχερ προϭλεμσ ιν φυτυρε.  Πλεασε ασκ ιτσ αυτχορσ νοτ το στορε δατα ιν τχε ϭοοτ τραϲκ Σελεϲτ δεβιϲε ϭϋ ιτσ ποσιτιον ον τχε ϭυσ. Σελεϲτ δεβιϲε ϭϋ βενδορ ανδ δεβιϲε ΙΔσ. Σετ Αδβανϲεδ Ποωερ Μαναγεμεντ
(1=λοω, ..., 254=χιγχ, 255=οφφ). Σετ Αυτοματιϲ Αϲουστιϲ Μαναγεμεντ
(0=οφφ, 128=ϗυιετ, ..., 254=φαστ). Σετ ΟΕΜΙΔ οφ ΡΣΔΠ, ΞΣΔΤ ανδ ΡΣΔΤ. Σετ ΟΕΜΤΑϬΛΕ ΙΔ οφ ΡΣΔΠ, ΞΣΔΤ ανδ ΡΣΔΤ. Σετ ΟΕΜΤΑϬΛΕ ρεβισιον οφ ΡΣΔΠ, ΞΣΔΤ ανδ ΡΣΔΤ. Σετ `χιδδεν' φλαγ ιν παρτιτιον τϋπε Σετ α βαριαϭλε το ρετυρν βαλυε. Σετ α βαριαϭλε το τχε φιρστ δεβιϲε φουνδ. Σετ αν ενβιρονμεντ βαριαϭλε. Σετ ϭαϲκγρουνδ ϲολορ φορ αϲτιβε τερμιναλ. Σετ ϭιτ ατ ϬΫΤΕ:ϬΙΤ ιν ϲΜΟΣ. Σετ ϲρεατορ φιελδ οφ ΡΣΔΠ, ΞΣΔΤ ανδ ΡΣΔΤ. Σετ ϲρεατορ ρεβισιον οφ ΡΣΔΠ, ΞΣΔΤ ανδ ΡΣΔΤ. Σετ δεϭυγ ενβιρονμεντ βαριαϭλε. Σετ δριβε το σλεεπ μοδε. Σετ δριβε το στανδϭϋ μοδε. Σετ ποσιτιοναλ παραμετερσ. Σετ ροοτ δεβιϲε. Σετ στανδϭϋ τιμεουτ
(0=οφφ, 1=5σ, 2=10σ, ..., 240=20μ, 241=30μ, ...). Σετ τερμινφο τϋπε οφ ΤΕΡΜ  το ΤΫΠΕ.
 Σετ τχε δεφαυλτ ϭοοτ μενυ εντρϋ φορ ΓΡΥϬ, φορ τχε νεξτ ϭοοτ ονλϋ. Σετ τχε δεφαυλτ ϭοοτ μενυ εντρϋ φορ ΓΡΥϬ. Σετ τχε σεριαλ πορτ αδδρεσσ. Σετ τχε σεριαλ πορτ παριτϋ. Σετ τχε σεριαλ πορτ σπεεδ. Σετ τχε σεριαλ πορτ στοπ ϭιτσ. Σετ τχε σεριαλ πορτ ωορδ λενγτχ. Σετ τχε σεριαλ υνιτ. Σετ υπ ιμαγεσ το ϭοοτ φρομ ΔΕΒΙϲΕ.

Ϋου σχουλδ νοτ νορμαλλϋ ρυν τχισ προγραμ διρεϲτλϋ.  Υσε γρυϭ-ινσταλλ ινστεαδ. Σετ υσερ πασσωορδ (ΠϬΚΔΦ2).  Σετ υσερ πασσωορδ (πλαιντεξτ). Υνρεϲομμενδεδ ανδ ινσεϲυρε. Σετ βαριαϭλε ωιτχ υσερ ινπυτ. Σετ βαριαϭλεσ. Σεττινγ ΓΡΥϬ_ΤΙΜΕΟΥΤ το α νον-ζερο βαλυε ωχεν ΓΡΥϬ_ΧΙΔΔΕΝ_ΤΙΜΕΟΥΤ ισ σετ ισ νο λονγερ συππορτεδ. Σεττινγ παρτιτιον τϋπε το 0ξ%x
 Σχιφτ ποσιτιοναλ παραμετερσ. Σχοω ΑϲΠΙ ινφορματιον. Σχοω ΑΠΜ ινφορματιον. Σχοω ϲϬΜΕΜ ϲονσολε ϲοντεντ. Σχοω α χελπ μεσσαγε. Σχοω α λονγ λιστ ωιτχ μορε δεταιλεδ ινφορματιον. Σχοω ϲοντεντσ οφ ΦΙΛΕ ιν χεξ. Σχοω λοαδεδ μοδυλεσ. Σχοω μεμορϋ ϲοντεντσ. Σχοω ραω ϲοντεντσ οφ ΑΤΑ ΙΔΕΝΤΙΦΫ σεϲτορ. Σχοω ραω ϲοντεντσ οφ α φιλε ορ μεμορϋ. Σχοω ραω δυμπ οφ τχε ϲΜΟΣ ϲοντεντσ. Σχοω ραω δυμπ οφ τχε ΠϲΙ ϲονφιγυρατιον σπαϲε. Σχοω τχε ϲοντεντσ οφ α φιλε. Σχοω τχε ϲυρρεντ μαππινγσ. Σχοω τχε λιστ οφ τρυστεδ κεϋσ. Σχοω τχισ μεσσαγε. Σχοω βερσιον 1 ταϭλεσ ονλϋ. Σχοω βερσιον 2 ανδ βερσιον 3 ταϭλεσ ονλϋ. Σχυτδοων φαιλεδ Σιμυλατε γρυϭ-λεγαϲϋ `ινιτρδ' ϲομμανδ Σιμυλατε γρυϭ-λεγαϲϋ `κερνελ' ϲομμανδ Σιμυλατε γρυϭ-λεγαϲϋ `μοδυλενουνζιπ' ϲομμανδ Σιμυλατε γρυϭ-λεγαϲϋ `πασσωορδ' ϲομμανδ Σιμυλατε γρυϭ-λεγαϲϋ `πασσωορδ' ϲομμανδ ιν μενυ εντρϋ μοδε Σκιπ Ν ϭϋτεσ φρομ ουτπυτ φιλε. Σκιπ οφφσετ ϭϋτεσ φρομ τχε ϭεγιννινγ οφ φιλε. Σκιπ σιγνατυρε-ϲχεϲκινγ οφ τχε ενβιρονμεντ φιλε. Σκιπ σιγνατυρε-ϲχεϲκινγ οφ τχε πυϭλιϲ κεϋ φιλε. Σλοτ %d οπενεδ
 Σομε Χυρδ στυφφ φουνδ, ϭυτ νοτ ενουγχ το ϭοοτ. Σπεϲιφϋ φιλεναμε. Σπεϲιφϋ χασχ το υσε. Σπεϲιφϋ ονε ορ μορε φοντ φιλεσ το λοαδ. Σπεϲιφϋ σιζε φορ εαϲχ ρεαδ οπερατιον Σπεϲιφϋ τχε νυμϭερ οφ ινπυτ φιλεσ. Σπεεδ: %s 
 Σταρτ ΓΔϬ στυϭ ον γιβεν πορτ Στοπ ΓΔϬ στυϭ Στοραγε ινφορματιον φορ `%s' δοεσ νοτ ινϲλυδε τϋπε Στοραγε ινφορματιον φορ `%s' ινδιϲατεσ νειτχερ α πλαιν παρτιτιον νορ α πλαιν δισκ Στορε ματϲχεδ ϲομπονεντ ΝΥΜϬΕΡ ιν ΒΑΡΝΑΜΕ. Συϲϲεσσ Συνδαϋ Συππρεσσ νορμαλ ουτπυτ (ωαρνινγσ ρεμαιν). Σωιτϲχ το νατιβε δισκ δριβερσ. Ιφ νο μοδυλεσ αρε σπεϲιφιεδ δεφαυλτ σετ (πατα,αχϲι,υσϭμσ,οχϲι,υχϲι,εχϲι) ισ υσεδ Σϋνταξ ερρορ ατ λινε %u
 Σϋνταξ ερρορσ αρε δετεϲτεδ ιν γενερατεδ ΓΡΥϬ ϲονφιγ φιλε.
Ενσυρε τχατ τχερε αρε νο ερρορσ ιν /ετϲ/δεφαυλτ/γρυϭ
ανδ /ετϲ/γρυϭ.δ/* φιλεσ ορ πλεασε φιλε α ϭυγ ρεπορτ ωιτχ
%s φιλε ατταϲχεδ. Σϋστεμ μαναγεμεντ ϭυσ ϲοντρολλερ Ι/Ο σπαϲε ισ ατ 0ξ%x
 Τ ΤΑΡΓΕΤ ΤΧΕΜΕΣ Ταργετ φορματ νοτ σπεϲιφιεδ (υσε τχε -Ο οπτιον). Τερμιναλ χασ σπεϲιφιεδ γεομετρϋ. Τερμιναλ ισ ΑΣϲΙΙ-ονλϋ [δεφαυλτ]. Τερμιναλ ισ λογιϲαλ-ορδερεδ ΥΤΦ-8. Τερμιναλ ισ βισυαλλϋ-ορδερεδ ΥΤΦ-8. Τεστ ΥΣϬ συππορτ. Τεστ ϭιτ ατ ϬΫΤΕ:ϬΙΤ ιν ϲΜΟΣ. Τεστ φιλε ρεαδ σπεεδ. Τεστ ιφ ΡΕΓΕΞΠ ματϲχεσ ΣΤΡΙΝΓ. Τεστ βιδεο συϭσϋστεμ ιν μοδε ΩξΧ. Τεστ βιδεο συϭσϋστεμ. Τεξτ-ονλϋ  Τχε φιλεσ αρε ιδεντιϲαλ.
 Τχε χιγχλιγχτεδ εντρϋ ωιλλ ϭε εξεϲυτεδ αυτοματιϲαλλϋ ιν %dσ. Τχισ ΒΔΕΒ ισ α ΡΑΙΔΖ%llu
 Τχισ ΒΔΕΒ ισ α μιρρορ Τχισ εντρϋ ϲαν ϭε ϭοοτεδ ϭϋ ανϋ υσερ. Τχισ ρεϗυιρεσ σεττινγ ΓΡΥϬ_ΔΕΦΑΥΛΤ=σαβεδ ιν %s/δεφαυλτ/γρυϭ.\ν Τχυρσδαϋ ΤιϬ ΤιϬ/σ Τοολ το εδιτ ενβιρονμεντ ϭλοϲκ. Τοταλ φλασχ σιζε: %d Ϭ.
 Τραιλινγ ϭαϲκσλασχ Τρανσφορμ 64-ϭιτ ΥΥΙΔ το φορματ συιταϭλε φορ ΞΝΥ. Ιφ -λ ισ γιβεν κεεπ ιτ λοωερϲασε ασ δονε ϭϋ ϭλκιδ. Τρανσφορμ α σϋστεμ φιλεναμε ιντο ΓΡΥϬ ονε. Τρανσφορμ σϋσλινυξ ϲονφιγ ιντο ΓΡΥϬ ονε. Τρανσλατε ΣΕΤ1 ϲχαραϲτερσ το ΣΕΤ2 ιν ΣΤΡΙΝΓ. Τρανσλατε το λοωερ ϲασε. Τρανσλατε το υππερ ϲασε. Τρανσλατεσ τχε στρινγ ωιτχ τχε ϲυρρεντ σεττινγσ. Τρϋ '%s --χελπ' ορ '%s --υσαγε' φορ μορε ινφορματιον.
 Τυεσδαϋ ΥΣΕΡ ΠΑΣΣΩΟΡΔ ΥΣΕΡ ΠϬΚΔΦ2_ΠΑΣΣΩΟΡΔ ΥΣΕΡΝΑΜΕ[,ΥΣΕΡΝΑΜΕ] ΥΤΦ-8 Υναϭλε το ϲρεατε πιπε: %s Υναϭλε το δετερμινε ϋουρ πλατφορμ. Υσε --ταργετ. Υναϭλε το φορκ: %s Υναϭλε το οπεν στρεαμ φρομ %s: %s Υναϭλε το ρετριεβε ποολ στατε Υνϲομπρεσσ δατα. Υνϲομπρεσσ φιλε ϭεφορε ϲχεϲκσυμμινγ. Υνκνοων αδδρεσσ τϋπε %d
 Υνκνοων ϲομμανδ `%s'.
 Υνκνοων ϲομπρεσσιον φορματ %s Υνκνοων ενϲοδινγ Υνκνοων εξτρα αργυμεντ `%s'. Υνκνοων γσυϭ φοντ φεατυρε 0ξ%x (%s)
 Υνκνοων κεϋϭοαρδ σϲαν ϲοδε 0ξ%02x
 Υνκνοων κεϋϭοαρδ σϲαν ιδεντιφιερ %s
 Υνκνοων πλατφορμ `%s-%s' Υνκνοων σϋστεμ ερρορ Υνκνοων βιδεο μοδε  Υνκνοων βιρτυαλ δεβιϲε τϋπε: %s
 Υνλοαδ ΕΦΙ εμυλατορ. Υνματϲχεδ ( ορ \( Υνματϲχεδ ) ορ \) Υνματϲχεδ [ ορ [^ Υνματϲχεδ \{ Υνρεϲογνιζεδ ϲομπρεσσιον `%s' Υνρεϲογνιζεδ οπτιον `%s'\ν Υνρεϲογνιζεδ ποολ στατε Υνσυππορτεδ αδδρεσσ τϋπε %d
 Υνσυππορτεδ ϲοβεραγε σπεϲιφιϲατιον: %d
 Υνσυππορτεδ χω αδδρεσσ τϋπε %d
 Υνσυππορτεδ ιμαγε φορματ Υνσυππορτεδ συϭστιτυτιον φλαγ: 0ξ%x
 Υνσυππορτεδ συϭστιτυτιον σπεϲιφιϲατιον: %d
 Υνσυππορτεδ συϭστιτυτιον τϋπε: %d
 Υσαγε: Υσαγε: %s -ο ΟΥΤΠΥΤ ϲΚϬΜΑΠ_ΑΡΓΥΜΕΝΤΣ...\ν Υσαγε: %s ΔΕΒΙϲΕ
 Υσαγε: %s [ΙΝΦΙΛΕ [ΟΥΤΦΙΛΕ]]
 Υσαγε: %s [ΟΠΤΙΟΝ] ΜΕΝΥ_ΕΝΤΡΫ\ν Υσαγε: %s [ΟΠΤΙΟΝ]\ν Υσε ϲΔ-ΡΟΜ ασ ροοτ. Υσε ΓΔϬ ρεμοτε δεϭυγγερ ινστεαδ οφ ΔΔϬ. Υσε ΣΤΡΙΝΓ ασ μενυ εντρϋ ϭοδϋ. Υσε ϲομπιλεδ-ιν ροοτ δεβιϲε. Υσε σεριαλ ϲονσολε. Υσε τχε %C ανδ %C κεϋσ το σελεϲτ ωχιϲχ εντρϋ ισ χιγχλιγχτεδ. ΒΑΡ ΙΝΤΕΡΦΑϲΕ ΝΥΜϬΕΡ ΔΕΣϲΡΙΠΤΙΟΝ ΒΑΡΝΑΜΕ ΒΔΕΒ ελεμεντ νυμϭερ %d ισν'τ ϲορρεϲτ
 ΒΔΕΒ ελεμεντ νυμϭερ %d:
 ΒΔΕΒ ωιτχ %d ϲχιλδρεν
 Βερϭοσε ϲουντδοων. Βεριφϋ δεταϲχεδ σιγνατυρε. Βερσιον %u.%u
32-ϭιτ ϲΣ = 0ξ%x, λεν = 0ξ%x, οφφσετ = 0ξ%x
16-ϭιτ ϲΣ = 0ξ%x, λεν = 0ξ%x
ΔΣ = 0ξ%x, λεν = 0ξ%x
 Βιρτυαλ δεβιϲε ισ δεγραδεδ Βιρτυαλ δεβιϲε ισ φαυλτεδ Βιρτυαλ δεβιϲε ισ οφφλινε Βιρτυαλ δεβιϲε ισ ονλινε Βιρτυαλ δεβιϲε ισ ρεμοβεδ ΩΑΡΝΙΝΓ: νο ϲονσολε ωιλλ ϭε αβαιλαϭλε το ΟΣ ΩΑΡΝΙΝΓ: νο πλατφορμ-σπεϲιφιϲ ινσταλλ ωασ περφορμεδ ΩΑΡΝΙΝΓ: υνσυππορτεδ φοντ φεατυρε παραμετερσ: %x
 ΩΙΔΤΧξΧΕΙΓΧΤ. Ωαιτ φορ α σπεϲιφιεδ νυμϭερ οφ σεϲονδσ. Ωαιτ φορ κεϋπρεσσ αφτερ εβερϋ λινε οφ ουτπυτ. Ωαρνινγ: Ωαρνινγ: ινβαλιδ ϭαϲκγρουνδ ϲολορ `%s'
 Ωαρνινγ: ινβαλιδ φορεγρουνδ ϲολορ `%s'
 Ωαρνινγ: σϋνταξ ερρορ (μισσινγ σλασχ) ιν `%s'
 Ωεδνεσδαϋ Ωινδοωσ ΝΤ/2000/ΞΠ (λοαδερ) Ωινδοωσ Βιστα/7 (λοαδερ) Ωριτε 16-ϭιτ ΒΑΛΥΕ το ΑΔΔΡ. Ωριτε 16-ϭιτ ΒΑΛΥΕ το ΠΟΡΤ. Ωριτε 32-ϭιτ ΒΑΛΥΕ το ΑΔΔΡ. Ωριτε 32-ϭιτ ΒΑΛΥΕ το ΠΟΡΤ. Ωριτε 8-ϭιτ ΒΑΛΥΕ το ΑΔΔΡ. Ωριτε 8-ϭιτ ΒΑΛΥΕ το ΠΟΡΤ. Ωριττεν ΣΠΔ ϭϋτεσ: %d Ϭ.
 Ξεν χϋπερβισορ, βερσιον %s ΫΥΒ  Ϋου νεεδ το σπεϲιφϋ ατ λεαστ ονε ϲομμανδ.
 Ϋου ωιλλ χαβε το σετ `ΣϋστεμΠαρτιτιον' ανδ `ΟΣΛοαδερ' μανυαλλϋ. Ϋου'βε φουνδ α ϭυγ Ϋουρ εμϭεδδινγ αρεα ισ υνυσυαλλϋ σμαλλ.  ϲορε.ιμγ ωον'τ φιτ ιν ιτ. Ϋουρ ξορρισο δοεσν'τ συππορτ `--γρυϭ2-ϭοοτ-ινφο'. Σομε φεατυρεσ αρε δισαϭλεδ. Πλεασε υσε ξορρισο 1.2.9 ορ λατερ. Ϋουρ ξορρισο δοεσν'τ συππορτ `--γρυϭ2-ϭοοτ-ινφο'. Ϋουρ ϲορε ιμαγε ισ τοο ϭιγ. Ϭοοτ ασ δισκ ισ δισαϭλεδ. Πλεασε υσε ξορρισο 1.2.9 ορ λατερ. [--αππενδ|--ρεμοβε] [ΤΕΡΜΙΝΑΛ1] [ΤΕΡΜΙΝΑΛ2] ... [--φορϲε|--ϭπϭ] ΦΙΛΕ [--μδ5] ΠΑΣΣΩΔ [ΦΙΛΕ] [--νο-μεμ-οπτιον] [--τϋπε=ΤΫΠΕ] ΦΙΛΕ [ΑΡΓ ...] [-1|-2] [--εξϲλυδε=ΤΑϬΛΕ1,ΤΑϬΛΕ2|--λοαδ-ονλϋ=ΤΑϬΛΕ1,ΤΑϬΛΕ2] ΦΙΛΕ1 [ΦΙΛΕ2] [...] [-ϲ ΦΙΛΕ [-π ΠΡΕΦΙΞ]] [ΦΙΛΕ1 [ΦΙΛΕ2 ...]] [-δ] ΔΕΒΙϲΕΝΑΜΕ ΦΙΛΕ. [-ε|-ν] ΣΤΡΙΝΓ [-φ ΦΙΛΕ] [-φ ΦΙΛΕ] [-σ|--σκιπ-σιγ] [βαριαϭλε_ναμε_το_ωχιτελιστ] [...] [-φ ΦΙΛΕ] βαριαϭλε_ναμε [...] [-φ|-λ|-υ|-σ|-ν] [--χιντ ΧΙΝΤ [--χιντ ΧΙΝΤ] ...] ΝΑΜΕ [-χ|-π|-ρ] [ΦΙΛΕ] [-λ] ΓΡΥϬΥΥΙΔ [ΒΑΡΝΑΜΕ] [-λ|-χ|-α] [ΦΙΛΕ ...] [-μ (στρετϲχ|νορμαλ)] ΦΙΛΕ [-σ ΠΟΣΙΤΙΟΝ] [-δ ΔΕΒΙϲΕ] [-σ ΠΟΣΙΤΙΟΝ] [-δ ΔΕΒΙϲΕ] [-β ΒΑΡ] ΡΕΓΙΣΤΕΡ[=ΒΑΛΥΕ[:ΜΑΣΚ]] [-σ ΣΙΖΕ] ΦΙΛΕΝΑΜΕ [-σ|--σκιπ-σιγ] ΦΙΛΕ ΣΙΓΝΑΤΥΡΕ_ΦΙΛΕ [ΠΥϬΚΕΫ_ΦΙΛΕ] [-σ|--σκιπ-σιγ] ΠΥϬΚΕΫ_ΦΙΛΕ [ΑΔΔΡ|ϲομΥΝΙΤ][,ΣΠΕΕΔ] [ΑΡΓ] [ϲΑΡΔ [ΧΩΑΔΔΡΕΣΣ]] [ϲΑΡΔ] [ΔΙΡ] [ΕΝΒΒΑΡ=ΒΑΛΥΕ] [ΕΝΒΒΑΡ] [ΚΕΫΣΤΡΟΚΕ1] [ΚΕΫΣΤΡΟΚΕ2] ... [ΜΟΔΥΛΕ1 ΜΟΔΥΛΕ2 ...] [ΝΥΜϬΕΡ:]ΒΑΡΝΑΜΕ [ΝΥΜ] [ΟΠΤΙΟΝΣ...] [ΟΠΤΙΟΝΣ] [ΟΠΤΙΟΝΣ] ΔΙΣΚ [ΟΠΤΙΟΝΣ] ΦΙΛΕ_ΟΡ_ΔΕΒΙϲΕ [ΟΠΤΙΟΝΣ] ΦΟΝΤ_ΦΙΛΕΣ [ΟΠΤΙΟΝΣ] [ΣΕΤ1] [ΣΕΤ2] [ΣΤΡΙΝΓ] [ΟΠΤΙΟΝ] ΣΟΥΡϲΕ... [ΟΠΤΙΟΝ] [ΙΝΣΤΑΛΛ_ΔΕΒΙϲΕ] [ΟΠΤΙΟΝ]... [ΜΟΔΥΛΕΣ] [ΟΠΤΙΟΝ]... [ΠΑΤΧ|ΔΕΒΙϲΕ] [ΟΠΤΣ] [ΠΑΤΧ] [ΠΑΤΤΕΡΝ ...] [ΥΣΕΡΛΙΣΤ] [ΒΑΛΥΕ]... [ΩξΧ[ξΔ]] [ΩξΧ] [[-α|-υ|-β] [-γ ΩξΧ] ΤΕΡΜ [ΤΫΠΕ]] [[ϋεαρ-]μοντχ-δαϋ] [χουρ:μινυτε[:σεϲονδ]] [ϭυσ]:[σλοτ][.φυνϲ] [βενδορ]:[δεβιϲε] `%s' ισ νοτ α λοϲαλ δισκ `ϲρϋπτομουντ' ϲομμανδ φαιλσ: %s `λοοπϭαϲκ' ϲομμανδ φαιλσ: %s `νβσετενβ' φαιλεδ. 
Ϋου ωιλλ χαβε το σετ `ϭοοτ-δεβιϲε' βαριαϭλε μανυαλλϋ.  Ατ τχε ΙΕΕΕ1275 προμπτ, τϋπε:
  %s
 `οϭππατχ' νοτ φουνδ ιν παρεντ διρσ οφ `%s', νο ΙΕΕΕ1275 ναμε δισϲοβερϋ α βαλυε ωασ ασσιγνεδ το τχε αργυμεντ `%s' ωχιλε ιτ δοεσν'τ ρεϗυιρε αν αργυμεντ αϲϲεσσ δενιεδ αδδ ΝΟΤΕ σεγμεντ φορ ϲΧΡΠ ΙΕΕΕ1275 αδδρ αδδρεσσ νοτ φουνδ ασσυμε ινπυτ ισ α πξελινυξ ϲονφιγυρατιον φιλε. ασσυμε ινπυτ ισ α σϋσλινυξ ϲονφιγυρατιον φιλε. ασσυμε ινπυτ ισ αν ισολινυξ ϲονφιγυρατιον φιλε. αττεμπτ το ινσταλλ το ενϲρϋπτεδ δισκ ωιτχουτ ϲρϋπτοδισκ εναϭλεδ. Σετ `%s' ιν φιλε `%s'. αττεμπτ το ρεαδ ορ ωριτε ουτσιδε οφ δισκ `%s' αττεμπτ το ρεαδ ορ ωριτε ουτσιδε οφ παρτιτιον αττεμπτ το ρεαδ παστ τχε ενδ οφ φιλε αττεμπτ το σεεκ ουτσιδε οφ τχε φιλε αττεμπτινγ το ρεαδ τχε ϲορε ιμαγε `%s' φρομ ΓΡΥϬ αττεμπτινγ το ρεαδ τχε ϲορε ιμαγε `%s' φρομ ΓΡΥϬ αγαιν αβαιλαϭλε ΡΑΜ αβαιλαϭλε φορματσ: ϭαδ σιγνατυρε ϭασε_αδδρ = 0ξ%llx, λενγτχ = 0ξ%llx, %s
 ϭασε_αδδρ = 0ξ%llx, λενγτχ = 0ξ%llx, τϋπε = 0ξ%x
 ϭιτμαπ φιλε `%s' ισ οφ υνσυππορτεδ φορματ ϭλεσσ φορ ππϲ-ϭασεδ μαϲσ ϭλεσσ φορ ξ86-ϭασεδ μαϲσ ϭλοϲκλιστ ΦΙΛΕ ϭλοϲκλιστσ αρε ινϲομπλετε ϭλοϲκλιστσ αρε ινβαλιδ ϭλοϲκσιζε ισ νοτ διβισιϭλε ϭϋ 512 ϲαν'τ ϭρεακ 0 λοοπσ ϲαν'τ ϲομπρεσσ `%s' το `%s' ϲαν'τ δετερμινε φιλεσϋστεμ ον %s ϲαν'τ φινδ ϲομμανδ `%s' ϲαν'τ μουντ ενϲρϋπτεδ βολυμε `%s': %s ϲαν'τ οπεν `%s': %s ϲαν'τ οπεν φιλε %s, ινδεξ %d: ερρορ %d ϲαν'τ ρετριεβε ϭλοϲκλιστσ ϲαν'τ ρετριεβε ϭλοϲκλιστσ: %s ϲαν'τ σετ %dξ%d φοντ σιζε: Φρεετϋπε ερρορ %d: %s ϲαννοτ ϲομπρεσσ τχε κερνελ ιμαγε ϲαννοτ ϲοπϋ `%s' το `%s': %s ϲαννοτ δελετε `%s': %s ϲαννοτ φινδ ΕΦΙ διρεϲτορϋ ϲαννοτ φινδ α ΓΡΥϬ δριβε φορ %s.  ϲχεϲκ ϋουρ δεβιϲε.μαπ ϲαννοτ φινδ α δεβιϲε φορ %s (ισ /δεβ μουντεδ?) ϲαννοτ φινδ λοϲαλε `%s' ϲαννοτ γετ τρανσλατορ ϲομμανδ λινε φορ πατχ `%s': %s ϲαννοτ μακε τεμποραρϋ διρεϲτορϋ: %s ϲαννοτ μακε τεμποραρϋ φιλε: %s ϲαννοτ οπεν ΟΣ φιλε `%s': %s ϲαννοτ οπεν `%s': %s ϲαννοτ οπεν ϲονφιγυρατιον φιλε `%s': %s ϲαννοτ οπεν διρεϲτορϋ `%s': %s ϲαννοτ ρεαδ `%s' ϲορρεϲτλϋ ϲαννοτ ρεαδ `%s': %s ϲαννοτ ρεναμε τχε φιλε %s το %s ϲαννοτ ρεστορε τχε οριγιναλ διρεϲτορϋ ϲαννοτ σεεκ `%s': %s ϲαννοτ στατ `%s': %s ϲαννοτ ωριτε το ϲΔ-ΡΟΜ ϲαννοτ ωριτε το `%s': %s ϲαννοτ ωριτε το τχε στδουτ: %s ϲαρδ νοτ φουνδ ϲατ ΦΙΛΕ ϲχεϲκσυμ βεριφιϲατιον φαιλεδ ϲχοοσε τχε ϲομπρεσσιον το υσε φορ ϲορε ιμαγε ϲμπ ΦΙΛΕ ΛΟϲΑΛ ϲομΥΝΙΤ[,ΣΠΕΕΔ] ϲομπαρε φαιλ ατ οφφσετ %llu ϲομπρεσσ ΓΡΥϬ φιλεσ [οπτιοναλ] ϲοννεϲτιον ρεφυσεδ ϲοννεϲτιον τιμεουτ ϲονβερτ το ϭολδ φοντ ϲορε ιμαγε ισ τοο ϭιγ (0ξ%x > 0ξ%x) ϲορε.ιμγ βερσιον μισματϲχ ϲουλδν'τ αυτοϲονφιγυρε %s ϲουλδν'τ φινδ ΙΕΕΕ1275 δεβιϲε πατχ φορ %s.
Ϋου ωιλλ χαβε το σετ `ϭοοτ-δεβιϲε' βαριαϭλε μανυαλλϋ ϲουλδν'τ φινδ α νεϲεσσαρϋ μεμϭερ δεβιϲε οφ μυλτι-δεβιϲε φιλεσϋστεμ ϲουλδν'τ φινδ γελι ϲονσυμερ ϲουλδν'τ φινδ γεομ `παρτ' ϲλασσ ϲουλδν'τ οπεν γεομ ϲουλδν'τ ρεαδ ΕΛΙ μεταδατα ϲουλδν'τ ρετριεβε ΥΥΙΔ ϲουλδν'τ ρετριεβε γελι ΥΥΙΔ ϲουλδν'τ ρετριεβε ρανδομ δατα ϲουλδν'τ ρετριεβε ρανδομ δατα φορ σαλτ ϲουλδν'τ σενδ νετωορκ παϲκετ ϲπ ΦΙΛΕ ΛΟϲΑΛ ϲρϲ ΦΙΛΕ ϲρϋπτογραπχιϲ ερρορ νυμϭερ %d ϲυρρεντ διρεϲτορϋ οφ τχε σϋσλινυξ [δεφαυλτ ισ παρεντ διρεϲτορϋ οφ ινπυτ φιλε]. ϲυρρεντ διρεϲτορϋ οφ τχε σϋσλινυξ ασ ιτ ωιλλ ϭε σεεν ον ρυντιμε  [δεφαυλτ ισ παρεντ διρεϲτορϋ οφ ινπυτ φιλε]. ϲϋγωιν_ϲονβ_πατχ() φαιλεδ δελετε δεβιϲε μαπ ιφ ιτ αλρεαδϋ εξιστσ δεστινατιον υνρεαϲχαϭλε δεβιϲε ϲουντ εξϲεεδσ λιμιτ δεβιϲε τρεε μυστ ϭε συππλιεδ (σεε `δεβιϲετρεε' ϲομμανδ) δισαϭλε χιντινγ δισκ `%s' νοτ φουνδ δισκ δοεσ νοτ εξιστ, σο φαλλινγ ϭαϲκ το παρτιτιον δεβιϲε %s δισκ μοδυλε το υσε (ϭιοσδισκ ορ νατιβε). Τχισ οπτιον ισ ονλϋ αβαιλαϭλε ον ϬΙΟΣ ταργετ. δισκ ρεαδ φαιλσ ατ οφφσετ %lld, λενγτχ %lld δισκϭοοτ.ιμγ σιζε μυστ ϭε %u ϭϋτεσ δο νοτ ινσταλλ ϭοοτσεϲτορ δο νοτ προϭε φορ φιλεσϋστεμσ ιν ΔΕΒΙϲΕ δομαιν ναμε ϲομπονεντ ισ τοο λονγ δον'τ υπδατε ΛΕΔ στατε δον'τ υπδατε τχε `ϭοοτ-δεβιϲε'/`Ϭοοτ*' ΝΒΡΑΜ βαριαϭλεσ. Τχισ οπτιον ισ ονλϋ αβαιλαϭλε ον ΕΦΙ ανδ ΙΕΕΕ1275 ταργετσ. δονε εμϭεδ ΦΙΛΕ ασ α μεμδισκ ιμαγε
Ιμπλιεσ `-π (μεμδισκ)/ϭοοτ/γρυϭ' ανδ οβερριδεσ ανϋ πρεφιξ συππλιεδ πρεβιουσλϋ, ϭυτ τχε πρεφιξ ιτσελφ ϲαν ϭε οβερριδδεν ϭϋ λατερ οπτιονσ εμϭεδ ΦΙΛΕ ασ αν εαρλϋ ϲονφιγ εμϭεδ ΦΙΛΕ ασ πυϭλιϲ κεϋ φορ σιγνατυρε ϲχεϲκινγ εμϭεδδινγ ισ νοτ ποσσιϭλε, ϭυτ τχισ ισ ρεϗυιρεδ φορ ΡΑΙΔ ανδ ΛΒΜ ινσταλλ εμϭεδδινγ ισ νοτ ποσσιϭλε, ϭυτ τχισ ισ ρεϗυιρεδ φορ ϲροσσ-δισκ ινσταλλ εναϭλε ΑΡϲΣ (ϭιγ-ενδιαν μιπσ μαϲχινεσ, μοστλϋ ΣΓΙ) ϭοοτ. Δισαϭλεσ ΧΦΣ+, ΑΠΜ, σπαρϲ64 ανδ ϭοοτ ασ δισκ ιμαγε φορ ι386-πϲ εναϭλε σπαρϲ ϭοοτ. Δισαϭλεσ ΧΦΣ+, ΑΠΜ, ΑΡϲΣ ανδ ϭοοτ ασ δισκ ιμαγε φορ ι386-πϲ εναϭλινγ %s συππορτ ... εντερ: ϭοοτ, `ε': οπτιονσ, `ϲ': ϲμδ-λινε ενβιρονμεντ ϭλοϲκ τοο σμαλλ ερρορ: %s.
 εξπεϲτ ΓΡΥϬ ιμαγεσ υνδερ τχε διρεϲτορϋ ΔΙΡ/%s ινστεαδ οφ τχε %s διρεϲτορϋ φαιλεδ το ϲοπϋ Γρυϭ το τχε ΠΡεΠ παρτιτιον φαιλεδ το γετ ϲανονιϲαλ πατχ οφ `%s' φαιλεδ το ρεαδ τχε σεϲτορσ οφ τχε ϲορε ιμαγε φαιλυρε ρεαδινγ σεϲτορ 0ξ%llx φρομ `%s' φαιλυρε το ρεαδ πασσωορδ φαιλυρε ωριτινγ σεϲτορ 0ξ%llx το `%s' φαλσε φαυλτϋ ΡΑΜ (ϬαδΡΑΜ) φιλε `%s' νοτ φουνδ φιλεναμε εξπεϲτεδ φιλεναμε ορ τεμπο ανδ νοτεσ εξπεϲτεδ φιλεσϋστεμ `%s' δοεσ νοτ συππορτ λαϭελσ φιλεσϋστεμ `%s' δοεσν'τ συππορτ ϭλοϲκλιστσ φιλεσϋστεμ ον %s ισ νειτχερ ΧΦΣ νορ ΧΦΣ+ φιρμωαρε ιμαγε ισ τοο ϭιγ φορϲε αυτοχιντ φουρ αργυμεντσ εξπεϲτεδ φωσταρτ.ιμγ δοεσν'τ ματϲχ τχε κνοων γοοδ βερσιον. προϲεεδ ατ ϋουρ οων ρισκ γενερατε αν ιμαγε ιν ΦΟΡΜΑΤ γιβε α σχορτ υσαγε μεσσαγε γιβε τχισ χελπ λιστ γιβεν αργυμεντ ισ α σϋστεμ δεβιϲε, νοτ α πατχ γρυϭ-μκιμαγε ισ ϲομπιλεδ ωιτχουτ ΞΖ συππορτ γρυϭ> χανγ φορ ΣΕϲΣ σεϲονδσ (δεφαυλτ 3600) χεξ ΦΙΛΕ ιγνορε ϭιτμαπ στρικεσ ωχεν λοαδινγ ινϲορρεϲτ τερμιναλ διμενσιονσ σπεϲιφιϲατιον ινιτρδ αλρεαδϋ λοαδεδ ινσταλλ ΦΟΝΤΣ [δεφαυλτ=%s] ινσταλλ ΓΡΥϬ φορ ΤΑΡΓΕΤ πλατφορμ [δεφαυλτ=%s] ινσταλλ ΓΡΥϬ ιμαγεσ υνδερ τχε διρεϲτορϋ ΔΙΡ/%s ινστεαδ οφ τχε %s διρεϲτορϋ ινσταλλ ΤΧΕΜΕΣ [δεφαυλτ=%s] ινσταλλ δεβιϲε ισν'τ σπεϲιφιεδ ινσταλλ εβεν ιφ προϭλεμσ αρε δετεϲτεδ ινσταλλ ονλϋ ΛΟϲΑΛΕΣ [δεφαυλτ=αλλ] ινσταλλ ονλϋ ΜΟΔΥΛΕΣ ανδ τχειρ δεπενδενϲιεσ [δεφαυλτ=αλλ] ινβαλιδ ΠϬΚΔΦ2 πασσωορδ ινβαλιδ αρϲχ-δεπενδεντ ΕΛΦ μαγιϲ ινβαλιδ αρϲχ-ινδεπενδεντ ΕΛΦ μαγιϲ ινβαλιδ αργυμεντ ινβαλιδ ϭλοϲκ σιζε ινβαλιδ ϲολορ σπεϲιφιϲατιον `%s' ινβαλιδ δεβιϲε τρεε ινβαλιδ ενβιρονμεντ ϭλοϲκ ινβαλιδ φιλε ναμε `%s' ινβαλιδ φοντ ρανγε ινβαλιδ λινε φορματ: %s ινβαλιδ μοδινφο φιλε `%s' ινβαλιδ παραμετερ %s ινβαλιδ σκιπ βαλυε %lld ινβαλιδ βαριαϭλε ναμε `%s' ινβαλιδ βιδεο μοδε σπεϲιφιϲατιον `%s' ινβαλιδ ζΙμαγε ιοϲτλ ΓΕΤ_ΑΡΡΑΫ_ΙΝΦΟ ερρορ: %s ιοϲτλ ΓΕΤ_ΔΙΣΚ_ΙΝΦΟ ερρορ: %s ιοϲτλ ΡΑΙΔ_ΒΕΡΣΙΟΝ ερρορ: %s κερνελ ιμαγε ισ τοο ϭιγ (0ξ%x > 0ξ%x) λιστ νετωορκ αδδρεσσεσ λιστ νετωορκ ϲαρδσ λιστ νετωορκ ρουτεσ λσ ΠΑΤΧ λζοπ φιλε ϲορρυπτεδ μακε τχε δριβε αλσο ϭοοταϭλε ασ φλοππϋ (δεφαυλτ φορ φδΞ δεβιϲεσ). Μαϋ ϭρεακ ον σομε ϬΙΟΣεσ. μισσινγ `%c' σϋμϭολ μισσινγ μανδατορϋ οπτιον φορ `%s' μοδυλε `%s' ισν'τ λοαδεδ μοδυλε ισν'τ λοαδεδ ναμε νεεδ αν ιμαγε ανδ μουντποιντ νο ΑΠΜ φουνδ νο ΔΧϲΠ ινφο φουνδ νο ΔΧϲΠ οπτιον %d φουνδ νο ΔΧϲΠ οπτιονσ φουνδ νο ΔΝΣ ρεϲορδ φουνδ νο ΔΝΣ ρεπλϋ ρεϲειβεδ νο ΔΝΣ σερβερσ ϲονφιγυρεδ νο ΕΦΙ ρουτινεσ αρε αβαιλαϭλε φορ ϋουρ πλατφορμ νο ΕΦΙ ρουτινεσ αρε αβαιλαϭλε ωχεν ρυννινγ ιν ϬΙΟΣ μοδε νο ΙΕΕΕ1275 ρουτινεσ αρε αβαιλαϭλε φορ ϋουρ πλατφορμ νο ΣΓΙ ρουτινεσ αρε αβαιλαϭλε φορ ϋουρ πλατφορμ νο `/' ιν ϲανονιϲαλ φιλεναμε νο ϲομμανδ ισ σπεϲιφιεδ νο ϲομπρεσσιον ισ αβαιλαϭλε φορ ϋουρ πλατφορμ νο δεϲρϋπτιον κεϋ αβαιλαϭλε νο χιντσ αβαιλαϭλε φορ ϋουρ πλατφορμ. Εξπεϲτ ρεδυϲεδ περφορμανϲε νο νετωορκ ϲαρδ φουνδ νο ρανδομ νυμϭερ γενερατορ ισ αβαιλαϭλε φορ ϋουρ ΟΣ νο σερβερ ισ σπεϲιφιεδ νο συϲχ παρτιτιον νο συιταϭλε βιδεο μοδε φουνδ νο σϋμϭολ ταϭλε νο τερμιναλ σπεϲιφιεδ νο τερμινατορ ιν τχε ϲορε ιμαγε νον-σεϲτορ-αλιγνεδ δατα ισ φουνδ ιν τχε ϲορε φιλε νοτ α διρεϲτορϋ νοτ α πριμαρϋ παρτιτιον νοτ α ρεγυλαρ φιλε νοτ ιν φυνϲτιον ϭοδϋ ονε αργυμεντ εξπεϲτεδ ονλϋ ιπβ4 ονλϋ ιπβ6 οτχερ σοφτωαρε ισ υσινγ τχε εμϭεδδινγ αρεα, ανδ τχερε ισ νοτ ενουγχ ροομ φορ ϲορε.ιμγ.  Συϲχ σοφτωαρε ισ οφτεν τρϋινγ το στορε δατα ιν α ωαϋ τχατ αβοιδσ δετεϲτιον.  Ωε ρεϲομμενδ ϋου ινβεστιγατε ουτ οφ μεμορϋ ουτπυτ α γενερατεδ ιμαγε το ΦΙΛΕ [δεφαυλτ=στδουτ] ουτπυτ φιλε μυστ ϭε σπεϲιφιεδ ουτπυτ γενερατεδ ϲονφιγ το ΦΙΛΕ [δεφαυλτ=στδουτ] οβερφλοω ισ δετεϲτεδ πασσωορδσ δον'τ ματϲχ περφορμ α ϭοοτπ αυτοϲονφιγυρατιον πχϋσιϲαλ βολυμε %s νοτ φουνδ πρε-λοαδ σπεϲιφιεδ μοδυλεσ ΜΟΔΥΛΕΣ πρεφερ ιπβ4 πρεφερ ιπβ6 πρεματυρε ενδ οφ φιλε πρεματυρε ενδ οφ φιλε %s πρεσσ ϲαπσΛοϲκ κεϋ πρεσσ Ινσερτ κεϋ πρεσσ ΝυμΛοϲκ κεϋ πρεσσ ΣϲρολλΛοϲκ κεϋ πρεσσ ΣϋσΡϗ πρεσσ λεφτ αλτ πρεσσ λεφτ ϲτρλ πρεσσ λεφτ σχιφτ πρεσσ ριγχτ αλτ πρεσσ ριγχτ ϲτρλ πρεσσ ριγχτ σχιφτ πριντ προγραμ βερσιον πριντ τχε βερσιον ινφορματιον ανδ εξιτ πριντ τχισ μεσσαγε ανδ εξιτ πριντ βερϭοσε μεσσαγεσ. πυϭλιϲ κεϋ %08x νοτ φουνδ ρεαδ ερρορ ατ οφφσετ %llu: %s ρεαδ τεξτ φρομ ΦΙΛΕ. ρελατιβε συϭδιρεϲτορϋ ον νετωορκ σερβερ ρελοϲατιον 0ξ%x ισ νοτ ιμπλεμεντεδ ϋετ ρεσερβεδ ΡΑΜ ρετριεβε ΔΧϲΠ οπτιον ανδ σαβε ιτ ιντο ΒΑΡ. Ιφ ΒΑΡ ισ - τχεν πριντ τχε βαλυε. ροοτ διρεϲτορϋ ασ ιτ ωιλλ ϭε σεεν ον ρυντιμε [δεφαυλτ=/]. ροοτ διρεϲτορϋ οφ ΤΦΤΠ σερβερ ροοτ διρεϲτορϋ οφ τχε σϋσλινυξ δισκ [δεφαυλτ=/]. ρουτε λοοπ δετεϲτεδ σαβε ΡΟΜ ιμαγεσ ιν ΔΙΡ [οπτιοναλ] σαβε ουτπυτ ιν ΦΙΛΕ [ρεϗυιρεδ] σελεϲτ φαϲε ινδεξ σεριαλ πορτ `%s' ισν'τ φουνδ σετ [ΝΑΜΕ=ΒΑΛΥΕ ...] σετ ϲαπσλοϲκ μοδε σετ φοντ ασϲεντ σετ φοντ δεσϲεντ σετ φοντ φαμιλϋ ναμε σετ φοντ ρανγε σετ φοντ σιζε σετ ινπυτ φιλεναμε φορ 32-ϭιτ παρτ. σετ ινπυτ φιλεναμε φορ 64-ϭιτ παρτ. σετ ινπυτ φιλεναμε. Δεφαυλτ ισ ΣΤΔΙΝ σετ ινσερτ μοδε σετ νυμλοϲκ μοδε σετ ουτπυτ φιλεναμε. Δεφαυλτ ισ ΣΤΔΟΥΤ σετ παυσε μοδε σετ πρεφιξ διρεϲτορϋ [δεφαυλτ=%s] σετ σϲρολλλοϲκ μοδε σετ τχε λαϭελ το ρενδερ σετ τχε προγραμ ναμε σιζε στρετϲχ|νορμαλ σϋμϭολ `%s' νοτ φουνδ τεμποραρϋ τερμιναλ %s ισν'τ φουνδ ορ ιτ'σ νοτ χανδλεδ ϭϋ τερμινφο τερμιναλ `%s' ισν'τ φουνδ τχε ΙΔ οφ ϭοοτλοαδερ. Τχισ οπτιον ισ ονλϋ αβαιλαϭλε ον ΕΦΙ ανδ Μαϲσ. τχε ΠΡεΠ παρτιτιον ισ νοτ εμπτϋ. Ιφ ϋου αρε συρε ϋου ωαντ το υσε ιτ, ρυν δδ το ϲλεαρ ιτ: `%s' τχε αργυμεντ `%s' ρεϗυιρεσ αν ιντεγερ τχε ϲχοσεν παρτιτιον ισ νοτ α ΠΡεΠ παρτιτιον τχε δεβιϲε.μαπ εντρϋ `%s' ισ ινβαλιδ. Ιγνορινγ ιτ. Πλεασε ϲορρεϲτ ορ δελετε ϋουρ δεβιϲε.μαπ τχε δριβε %s ισ δεφινεδ μυλτιπλε τιμεσ ιν τχε δεβιϲε μαπ %s τχε δριβε ναμε `%s' ιν δεβιϲε.μαπ ισ ινϲορρεϲτ. Υσινγ %s ινστεαδ. Πλεασε υσε τχε φορμ [χφϲ]δ[0-9]* (Ε.γ. `χδ0' ορ `ϲδ') τχε φιρστ σεϲτορ οφ τχε ϲορε φιλε ισ νοτ σεϲτορ-αλιγνεδ τχε ινσταλλατιον δεβιϲε ισ ρεμοβαϭλε. Τχισ οπτιον ισ ονλϋ αβαιλαϭλε ον ΕΦΙ. τχε παρτιτιον τϋπε 0ξ%x ισν'τ βαλιδ τχε σεϲτορσ οφ τχε ϲορε φιλε αρε τοο φραγμεντεδ τχε σιζε οφ `%s' ισ νοτ %u τχε σιζε οφ `%s' ισ τοο λαργε τχε σιζε οφ `%s' ισ τοο σμαλλ τχισ ΕΛΦ φιλε ισ νοτ οφ τχε ριγχτ τϋπε τχισ ΓΠΤ παρτιτιον λαϭελ ϲονταινσ νο ϬΙΟΣ Ϭοοτ Παρτιτιον; εμϭεδδινγ ωον'τ ϭε ποσσιϭλε τχισ ΛΔΜ χασ νο Εμϭεδδινγ Παρτιτιον; εμϭεδδινγ ωον'τ ϭε ποσσιϭλε τχισ μσδοσ-στϋλε παρτιτιον λαϭελ χασ νο ποστ-ΜϬΡ γαπ; εμϭεδδινγ ωον'τ ϭε ποσσιϭλε τχρεε αργυμεντσ εξπεϲτεδ τιμε ουτ οπενινγ `%s' τιμεουτ ρεαδινγ `%s' τιμεουτ: ϲουλδ νοτ ρεσολβε χαρδωαρε αδδρεσσ τοο δεεπ νεστινγ οφ σϋμλινκσ τρανσλατορ `%s' φορ πατχ `%s' χασ σεβεραλ νον-οπτιον ωορδσ, ατ λεαστ `%s' ανδ `%s' τρανσλατορ `%s' φορ πατχ `%s' ισ γιβεν ονλϋ οπτιονσ, ϲαννοτ φινδ δεβιϲε παρτ τρανσλατορ ϲομμανδ λινε ισ εμπτϋ φορ πατχ `%s' τωο αργυμεντσ εξπεϲτεδ τϋπε υναϭλε το ιδεντιφϋ α φιλεσϋστεμ ιν %s; σαφετϋ ϲχεϲκ ϲαν'τ ϭε περφορμεδ υναλιγνεδ δεβιϲε σιζε υνεξπεϲτεδ ΕΦΙ ερρορ υνεξπεϲτεδ ενδ οφ φιλε υνκνοων αργυμεντ `%s' υνκνοων ϲομπρεσσιον %d
 υνκνοων δεβιϲε τϋπε %s
 υνκνοων φιλεσϋστεμ υνκνοων κινδ οφ ΡΑΙΔ δεβιϲε `%s' υνκνοων ρεγεξπ ερρορ υνκνοων ταργετ φορματ %s
 υνκνοων τερμινφο τϋπε `%s' υνρεϲογνισεδ ΔΧϲΠ οπτιον φορματ σπεϲιφιϲατιον `%s' υνρεϲογνισεδ νετωορκ αδδρεσσ `%s' υνρεϲογνισεδ νετωορκ ιντερφαϲε `%s' υνρεϲογνιζεδ νυμϭερ υνρεσολβαϭλε αδδρεσσ %s υνσετ [ΝΑΜΕ ...] υνσυππορτεδ ΧΤΤΠ ερρορ %d: %s υνσυππορτεδ ΧΤΤΠ ρεσπονσε υνσυππορτεδ ΡΑΙΔ βερσιον: %d.%d υνσυππορτεδ γζιπ φορματ υνσυππορτεδ πλατφορμ %s
 υνσυππορτεδ σεριαλ πορτ φλοω ϲοντρολ υνσυππορτεδ σεριαλ πορτ παριτϋ υνσυππορτεδ σεριαλ πορτ σπεεδ υνσυππορτεδ σεριαλ πορτ στοπ ϭιτσ νυμϭερ υνσυππορτεδ σεριαλ πορτ ωορδ λενγτχ υσε ϲΟΛΟΡ φορ ϭαϲκγρουνδ υσε ϲΟΛΟΡ φορ λαϭελ υσε ϲΟΛΟΡ φορ λαϭελ ϭαϲκγρουνδ υσε ϲΟΛΟΡ φορ τεξτ υσε ΔΙΡ ασ τχε ΕΦΙ Σϋστεμ Παρτιτιον ροοτ. υσε ΔΙΡ φορ ΠΠϲ ΜΑϲ ινσταλλ. υσε ΦΙΛΕ ασ φοντ (ΠΦ2). υσε ΦΙΛΕ ασ φοντ φορ λαϭελ υσε ΦΙΛΕ ασ τχε ϭοοτ ιμαγε [δεφαυλτ=%s] υσε ΦΙΛΕ ασ τχε ϲορε ιμαγε [δεφαυλτ=%s] υσε ΦΙΛΕ ασ τχε δεβιϲε μαπ [δεφαυλτ=%s] υσε ΦΙΛΕ ασ ξορρισο [οπτιοναλ] υσε ΓΡΥϬ φιλεσ ιν τχε διρεϲτορϋ ΔΙΡ [δεφαυλτ=%s] υσε ΣΤΡΙΝΓ ασ προδυϲτ ναμε υσε ΣΤΡΙΝΓ ασ προδυϲτ βερσιον υσε ιδεντιφιερ φιλε εβεν ιφ ΥΥΙΔ ισ αβαιλαϭλε υσε ιμαγεσ ανδ μοδυλεσ υνδερ ΔΙΡ [δεφαυλτ=%s/<πλατφορμ>] υσε τχεμεσ υνδερ ΔΙΡ [δεφαυλτ=%s] υσε τρανσλατιονσ υνδερ ΔΙΡ [δεφαυλτ=%s] βαριαϭλε `%s' ισν'τ σετ βισυαλλϋ-ορδερεδ ΥΤΦ-8 ωαιτ υντιλ α δεϭυγγερ ωιλλ ατταϲχ ωιλλ νοτ προϲεεδ ωιτχ ϭλοϲκλιστσ ωριτε ουτπυτ το ΦΙΛΕ [δεφαυλτ=στδουτ]. ωρονγ ΕΛΙ μαγιϲ ορ βερσιον ξνυ_υυιδ ΔΕΒΙϲΕ ξζ φιλε ϲορρυπτεδ ορ υνσυππορτεδ ϭλοϲκ οπτιονσ ϋου ϲαν'τ δελετε τχισ αδδρεσσ ϋου νεεδ το λοαδ τχε κερνελ φιρστ ϋουρ ϬΙΟΣ Ϭοοτ Παρτιτιον ισ τοο σμαλλ; εμϭεδδινγ ωον'τ ϭε ποσσιϭλε ϋουρ ϲορε.ιμγ ισ υνυσυαλλϋ λαργε.  Ιτ ωον'τ φιτ ιν τχε εμϭεδδινγ αρεα ϋουρ εμϭεδδινγ αρεα ισ υνυσυαλλϋ σμαλλ.  ϲορε.ιμγ ωον'τ φιτ ιν ιτ.                                                                                                                                                                                        boot/grub/locale/en@hebrew.mo                                                                       0000600 0001750 0001750 00000510364 13417732100 0015132 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                            L(    |P      `k  #   ak      k     k     k     k  $   k     l  6   )l     `l     gl  	   sl     }l     l     l     l     l     l  .   l  .   'm  %   Vm     |m     m    m    n    o     p  8   p  '   p  7   q  F   Tq  v   q  +   r     >r      Or     pr  !   r     r  ,   r     r     s  $   s     @s  *   \s     s     s     s     s     s  
   s  	   s     s     t  ,   )t  ,   Vt  ,   t  '   t  -   t      u  (   'u  (   Pu  )   yu     u     u     u     u     u  "   v  4   %v     Zv     bv  7   ov     v     v  1   v     v     w  %   w  '   @w  %   hw  '   w     w     w     w     w     w     x     
x     x     (x     Hx     Zx     hx     xx     x  3   x     x  $   x     x     	y     "y     1y     By     Yy     ny  -   y     y  !   y     y     z     $z  #   9z     ]z  `   z  Z   F{     {     {     {     {     {     {     {     |     |  0   9|  3   j|     |     |     |     |     }     }     *}     A}     W}     e}     |}     }     }     }  %   }     }     }     }     ~     +~     F~     \~     k~     ~~     ~  *   ~  3   ~  1     1   8  2   j                  1        -  #   L     p  "     8                    	   5  #   ?     c                    ԁ       )        $     C     a  "     P               H     &   f            !     ,   ΃                 	   (  !   2  *   T       '             Ԅ             $        =     O     a     |            
   х  
   ܅       1        ,     :     G     `  3   |  >     $             +     H     `     {       +        ۇ       o     #               $   ߈            '   :  9   b            z   Ӊ  "   N     q     x  8        Ŋ  
   ܊                    .     ʋ  +             +     @     V  "   i            (        ׌  #     &     ?   :  '   z  @                            &  "   8  0   [                 7                            "     .     4  0   ;     l                 2     %             -  *   <  6   g  +        ʐ            !   ̑  d     e   S  d     i     o     H        A     T     j     {                    Ք  #             0     H  1   Z  )                       ԕ  /             "     9  5   V            K   ǖ  &        :     V     k            D        ח     ܗ  '     P   	     Z     y  	                       Ř     V  '          +        J     [  )   w               ՚               #     ;     Q  $   f            "        ۛ     ݛ       (             #     )  "   1  +   T  -             ǜ     ֜            O   	     Y     o                 %          )     !   /  "   Q     t       +        Ӟ               	  !        =     Y     r     ~                џ                    2     F  4   V                    Ԡ          
     #     <      Y  !   z       4     M     2   9     l       *     8   Ϣ               ,     D     [     s  3     $     +   ٣               (     =     R     e                     դ     פ  D       4                 ;   5     q       !        ҧ       s        |               ¨     ը                    -     1     7                         Ǫ     Ӫ            '   "  
   J     U     d     z                           H   ث  L   !     n                 %               #        9     V     s     |                 ӭ       "     (   $     M     i  %   v                 #   خ  *        '     )     <  #   A     e     j  	   |  	     "     ;     #     <        P     ^     |  .     	        ð  `   հ     6  !   K  )   m                      q        (     <     S     b     y                    ֲ  "             0     J     b     y                 #   ѳ  a        W     t  g             }       -          !          "   )  '   L  Q   t     ƶ                         4     Q     n               ķ                     '     <      O     p                 -   и            "   ,  b   O  )        ܹ          
  ,   %     R     k  	   p  "   z  %        ú     Ⱥ     ݺ  
          &     )        I  5   \  ^          $     %   0     V  ^   	  _   h  }   Ƚ     F  )     '   '  >   O  D     !   ӿ  '     -     #   K     o  )          )           )     ,   G     t                      E     $   :  A   _  )                             >     _  q   t       :        >     \  `   k               	           6     R  0   g                 )     &     #   2  -   V                           )   
     4  %   D  %   j  ,     '     :           -   ?  0   m  /          .               '   4  $   \  "                    2     Q     *   `            )     o        4     M  6        >     @     G  0   N        !     "     #        	          9     O  !   n       
          <             "  %   8  >   ^                                d     *   a  (     ,               0     6   E     |                           0          !        A     _  $   p                           $     "   6  $   Y     ~                                         ,     9     W     r       '               $     +   -  "   Y     |  )                              '   &     N     m       <                %        *     C     Z     m  m                  +     E     ^  +   x  3     1        
  '     -   @     n  '   w  '     .     	                   5     Q     m                                *     ?   @       B     p        G  /               .   -  O   \  )               	     <        B  5   `                           :        F  1   Y                                                       0     A     G  	   T     ^     m                                               '  
   5  
   @  	   K     U  !   [  )   }                           n   #  F     N        (  "   6     Y     ^  .   p  .     /     W     -   V  -     $     #     0     6   ,     c     q       (     1     )             0     I     X     r  !                          %        :  &   N     u       0                        3  7   M  .          4     #        %     D     a  '   v                      %        3     H     ]     t                      ,                  -     I     h     {       #               _     B   [                                   ;  &   Y                      N     m   !       &               7        ;     K  ;   _  V     +     "        A  &   [  !          r        .     3       /     H   '  F   p  w     N   /     ~  (               I     )   1  $   [  ,     '          %                  .     B  $   T  '   y  *     (                    J   6                 -     +        &  $   ,     Q  "   Z  +   }            -     J        S     o  %     "     9              )  "   J     m     ~                               
     "     <     Q     i  %                         %        9     P     c     w       [          !        %     >     R     W     t                                /     7   6  4   n  /               -        6  @   R       3                       #     3     I  1   i                           	     	               1          0   5     f     {  !          "                      !    :    M    ^    p                                 &   
    1    M    e         '    &        L    9   [     0        !           9    K    h    }                     #    #    $   *    O    _ &   p     !                   	         	   3 7   =    u D    ]    %   2 ,   X [    ;    w    7    K    #   	 /   =	    m	    	    	 &   	 U   	 @   A
 Q   
    
    
     +       D R   a L    .       0    G F   L                                 .    O    d    ~ 2    !    #           &    >    O    m             $            (   : #   c                 )           -    E '   ` '    '        0       (    C -   a 8    !    '           * !   A     c &            .        !   # B   E E    B    r   =    F    2   	 6   < )   s X    0    j   ' 
                @    #   " -   F /   t     f    `   & N            [   Z  T d   >   ! {   S! [   !    +"    "   Q# i   `$    $ @   $ $   (% H   M% 9   % ]   % 8   .& (   g& L   & 0   & S   '     b'    '    ' /   ' D   '    !(    3( 6   G(    ~( U   ( l   ( U   _) M   ) W   * F   [* O   * N   * P   A+ ?   + ?   +    ,    (,    8, N   H, x   ,    -    - Y   0-    - /   - b   - :   ,.    g. W   j. ]   . W    / ]   x/ 	   /    / D   / .   '0 2   V0    0 $   0    0 3   0 #   1    %1     D1    e1    1 h   1    2 K   2 7   ]2 ;   2    2    2 ,   	3 ,   63 7   c3 n   3 ?   
4 Q   J4 2   4 @   4 .   5 M   ?5 @  5    6    7 ?   8 C   8    9    
9 5   9    H9    Y9 5   q9 C   9 s   9 y   _: :   : <   ; 6   Q; :   ; @   ;    < 5    < 7   V<    < 9   < $   <    =    =    "= U   >= G   =    = '   = +   > =   H> 4   >    > +   > '   ? 8   /? ^   h? u   ? {   =@ u   @ v   /A H   A U   A J   EB v   B I   C [   QC @   C J   C    9D E   D    E 7   .E    fE R   zE 6   E +   F R   0F G   F 7   F '   G g   +G J   G I   G F   (H P   oH    H (   xI (   I    I Z   J 7   J    K D   %K Z   jK    K    K E   K    .L S   CL \   L ;   L T   0M ,   M )   M 2   M 2   N Y   BN &   N &   N ?   N =   *O =   hO F   O    O    P .   P O   EP     P    P >   P 3   Q l   FQ g   Q S   R 9   oR <   R 9   R F    S M   gS /   S d   S A   JT @   T   T R   U 0   &V P   WV P   V <   V B   6W \   yW    W 4   YX B   X (  X V   Y    QZ '   bZ    Z 1   [    E[     d[ )   [ 7   [ k  [ A   S] e   ] 0   ] *   ,^ 3   W^ %   ^ <   ^ !   ^    _ X   0_ 9   _ N   _ e   `    x` g   a    a    "b )   Bb ,   lb 6   b .   b P   b n   Pc    c    c    c v   d    xd    d %   d 3   d    d    e    -e p   >e ,   e )   e +   f 9   2f w   lf Q   f +   6g    bg ^   g f   g J   Eh A   h *   h   h S   j    >k    (l    m    n    n    o 5   p %   p      q &   !q 0   Hq 5   yq 4   q 5   q P   r B   kr 7   r "   r n   	s Z   xs    s    s .   s &   t h   ?t "   t 8   t :   u    ?u C   u @   
v    Kv [   v ;   Fw .   w 9   w 
   w    w    x    x 
   x Z   x    y H   y    z    (z    <z @   Cz *   z E  z -  { a   #} #   } j   } #   ~ C   8~ `   |~ ?   ~ 6    ;   T @    *    3    ,   0 2   ] [    &    D    \   X         #   ҁ i       `    m    } S    `    e   C 1       ۃ "    )    !   G    i 3   ( 4   \ 4       ƅ ,    \    M   o `    H    L   g <    0    l   " 3    '   È !    '    I   5 >    6        2    E   G :    &   Ȋ /    L    F   l 3    %    w    H    (   Ό :    <   2 >   o :    <    B   & L   i O    :    {   A     y   v <    I   - d   w    ܑ    ^ 7   { 6    2    8       V x   s Q    l   > 2       ޔ (    ,   & $   S >   x D    C    (   @    i <   l       A    R    c A   v     Q   I J    O    6   6 I   m    9   ў @    )   L '   v 4    5   ӟ <   	 %   F 
   l    w       (    1   գ         ?   4 5   t 6    Y       ; '   R 5   z     0            *    >   <    {    % .   ا 4        < &   ] Z    ;   ߨ ;    Q   W B    A       . 5   @ M   v Q   Ī N       e J   ~ U   ɫ H    #   h R    4   ߬     :   , M   g e        -     
   N T   Y     (            Q       h S       H    ְ A       0 j   O     *   ʱ     5   ۲ Z    `   l    ͳ    ڳ             %    ;   !    ] 7   z +    1   ޵ 3    A   D J    N   Ѷ 9     ?   Z 5    3   з 3    /   8 =   h /    V   ָ    - A    C   Y     #  } A    I    u   - .    O   ҽ &   " O   I W        A    9    &   3 !   Z .   | <    @    <   ) @   f ;    ?    2   # #   V O   z 1    %    4   " E   W )    %    J    k   8 7    )    Q       X [   8 5    8    8    P   < 5            A    K   # 
   o /   z             X    f   : %    q       9 9    V   W T                 j   x d    Y   t r       A H    U    g   g Q    F   ! `   h @    b   
 A   m Y    c   	 J   m 5    ;    =   * %   h m    S       P `    9   N =    7    D    B   C *       >        E   y          J    E    9   R 5    <    (    n   ( F    -    /    ]   < V    M    n   ? >    :    D   ( %   m >    \    %   / T   U R    j    X   h     P   D t    u   
 x        t    ,    0    `    Y   M X         C    "   W u   z     ^            _   0    3       u   Y             o    J   \ K    K    Q   ? +    C    ,    C   . P   r 3        5       H 3    2    V   7         
   /    : M   H /    +        a    h   G U    0    4   7 a   l n       =    P 3   p '        7    l    *   ~ E    F    $   6 Z   [ 4    ,    G    )   ` <    Q    N    W   h 3    0    1   % L   W 1                      9 B   Q ;    8    @   	  a   J  E     >     \   1 q    W        X Y   f "    ?    B   # *   f )    Y    D    E   Z +    z    O   G     M    1    .   ( .   W =        =    ?    C   	 =   M ?    d    y   0	 n   	 !   
 _   ;
 r   
     X     X   y ^       1 8   F 4    :    >    :   . >   i 9    =    3     B   T     _        2          ` L  g W    .    '   ; ^   c     U   Y ,            z   
 :    Z        3   :     n 2    7    y    %   t v    C    .   U         
    
    !        ?    )   8 #   b 
            %    =    4   * =   _ *    :    .    7   2    j    y                     <    U   ) (    %    1    F     @   G        v         E         (     }   H  y     }   @!    ! d   ~" m   " O   Q# T   # f   # s   ]$    $ ,   $    % B   >% X   % f   % 8   A& 6   z& '   & >   & 8   ' T   Q' +   ' /   ' C   ( ,   F( K   s(    ( L   ( ;   ,) ?   h) _   ) F   * 2   O* $   * ?   *    * d   h+ /   + g   + O   e, C   , 8   , $   2- X   W- =   - 3   -     ". <   C. V   . "   .     . 0   / +   L/ >   x/ "   /    / J   / i   90 "   0 #   0 <   0 K   '1 -   s1 /   1 3   1 L   2 ;   R2 =   2    2    3 @   C4 C   4 +   4 6   4 7   +5 B   c5 @   5 T   5 @   <6     }6    6 E   6    6   7 ;   8 Z   8 7   S9 A   9 y   9 %   G: +   m:    :    ); T   ; R   S< =   < `   < O   E= .   =   = 
   >   > C   l@ u   @    &A    A   yB    C 2   .D Q   aD C   D    D    
E i   E N   F `   hF R   F 9   G N   VG    G *   G +   G +   	H U   5H Y   H c   H X   II >   I %   I :   J    BJ :   J 8   (K -   aK c   K r   K    fL G   tL    L R   L k   'M 0   M 7   M d   M    aN 5   O H   :O S   O J   O }   "P =   P H   P N   'Q '   vQ 0   Q O   Q .   R B   NR /   R ,   R 4   R =   #S ,   aS 7   S 9   S \    T #   ]T B   T B   T ?   U P   GU 0   U (   U .   U    !V 2   1V    dV *   DW N   oW 0   W +   W    X @   $X     eX 1   X :   X 9   X -   -Y 1   [Y ;   Y y   Y    CZ }   Z w   G[ =   [ 9   [ v   7\ G   \    \ 3   ] |   ] 7   G^ ,   ^ J   ^ &   ^ 4   _ E   S_ o   _ $   	` ;   .` )   j` 7   ` 2   `    `    a   5a $   b q   c N   }c t   c 0   Ad -   rd ]   d F   d T   Ee    e    e 3   e 6   f .   Cf &   rf ,   f 2   f    f    g     2g &   Sg     zg "   g (   g 6   g a   h >   h 5   h >   h 6   4i 0   ki `   i X   i    Vj    pj ~   k J   k u   k .   _l M   l J   l (   'm =   Pm $   m (   m     m "   m /    n    Pn    on Q   n Q   n T   2o     o &   o \   o     ,p N   Mp ,   p .   p )   p 
   "q    -q 1   Kq    }q {   q 4   r    Gr    r I   s k   t    tt    @u    u |   v    %w S   w h   1x 2   x <   x <   
y Z   Gy    y    wz    { 6   { /   | *   2| `   ]| F   |    }    } c   K~ 4   ~    ~    ~ 2    4    9    ,   5 7   b 6    /   р K    4   M 6    =    {    E   s M    /    2   7    j ?    @   ƃ G    >   O ;    \   ʄ O   ' I   w g    T   ) ?   ~ /    L    /   ; `   k @   ̇ 4    ?   B U    Q   ؈ S   * N   ~ l   ͉ :   : F   u u    x   2 C    S    .   C 6   r I    N    \   B >    ,   ލ ~    =    L   Ȏ            \    >      	  j       7    /                o      P        0                        *  p  q    (  >                                      %                     }           G   j        S            v   C              C    T             _  ;                                                 d            >        '                 ^                *        +    !  ?   K          {            1      m              y                                 s      e        2    	             K    V      	  8   !         /     ^                    r  H            F                 r   |                                  D        $                       r    _           I  l  e          G    w             S            ,      J  %     s                      R                 Y      n           ;              
             4           $   W            d    ?  b               ,  6  w    h                     I  J     7   q  4    V      p                O    `                                              i                   X  ]        G      6  c                N                      B  :    C  l  =    v                           A           ,            j  6  g  F   ,     B       U        f          t     h        [  N          w             ]    a        W     <      u  k     	  {  S  1  `      a          '             {                                  )       i                    y              O       m              ^                  M                        P                  -      %               f        b                   t               C                            8  X          *                           
          k     z  w   z  @  T         ]      |                      \      J               '  D       0  b                       (             c                 k       G        s                    [        *  Z      y       )          \                    y         N      4                           v  h              
  $                              ;    6                    |     2               3  v    M  L              ~  S        9  Q     2            {                                         %        @   F      +                    .             V  Q            2                       z          +   g  a             !                                          v                M                 M     P        K             E        9                        @  ^                          c           a      [     )  W          c    A                  k  H            X             "  W                +  h              =                      Z                        }  i    G  )  j               -   &  (        u          |                        ^  g      (  c    e  /  5              -                                 w        L                  M                d      e                         `  o                       N  $      !                o        +                     R             p     "     	                 q                            T    y   n    r                   ]            x                                                 D            }  -                                <         R                       V              H   (           }              N     8           }              ]              b  p      ?                          H                                .  ~     8        &       =  B                         W  K  =          E    [       1                          _                             e  h           4      9   R  \              X  E        B       O  t    >           T  f                 l  f     F              n        )   B      1        \  L    f                &            <  0     Z    d   F  a  ;  ,     u     o                               O     Z         ?        T       A  x          8                 .      *   .        n   l                       g     L       J                               r            u        :         .                                      3           L    X      P                0  5  m             U    9  <        g  A               3                     ~                l    $      "  C             '            
                       /            i      O  9                          0  n  5    U             ;       &                 U             7  4      Y    m  _                                      t          m                      @  1                 u               s   I              Q  !  k        `           2  @    Z            "      A         ?  6    {          E      3              &    '  H            [                              j            >  #  R      #    S  z  Y   d  x  ~  b  P            t          _    q                    #  \       `       ~      E                3    o                #        :  
  q                                    I       :            Y    x    #   U         I         J    -    Q  Y  7  5       x                 /      5      <               :        =   "    %      K        i            D      p         |    V          z   D    Q  s    7                   total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s doesn't exist. Please specify --target or --directory %s doesn't look like an EFI partition.
 %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: not found %s: option '%c%s' doesn't allow an argument
 %s: option '%s' is ambiguous; possibilities: %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- --ppc PATH|--x86 FILE -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Bless DIR of HFS or HFS+ partition for PPC macs. Bless FILE of HFS or HFS+ partition for intel macs. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't create file: %s Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check if CPU supports Physical Address Extension. Check if FILE can be used as x86 multiboot kernel Check if FILE can be used as x86 multiboot2 kernel Check if FILE is ARM EFI file Check if FILE is BIOS bootsector Check if FILE is IA64 EFI file Check if FILE is hiberfil.sys in hibernated state Check if FILE is i386 EFI file Check if FILE is of specified type. Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear bit at BYTE:BIT in CMOS. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find a free BootNNNN slot Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Default server is ${net_default_server} Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not apply any reed-solomon codes when embedding core.img. This option is only available on x86 BIOS targets. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. EFI bootloader id isn't specified. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enable/disable RTS/CTS. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Evaluate arguments as GRUB commands Execute syslinux config in new context Execute syslinux config in new context taking only menu entries Execute syslinux config in same context Execute syslinux config in same context taking only menu entries Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FONTS FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File size: %s
 File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Generating grub configuration file ... Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s Graft point syntax (E.g. /boot/grub/grub.cfg=./grub.cfg) is accepted HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS INSTALL_DEVICE must be system device filename.
%s copies GRUB images into %s.  On some platforms, it may also install GRUB into the boot sector. If FILENAME is `-', the default value %s is used.

There is no `delete' command; if you want to delete the whole environment
block, use `rm %s'. Import ZFS wrapping key stored in FILE. Incorrect VDEV Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Installing for %s platform.
 Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s LOCALES Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List coreboot tables. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load DTB file. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load Truecrypt ISO. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load module. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... M MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MENU_ENTRY is a number, a menu item title or a menu item identifier. Please note that menu items in
submenus or sub-submenus require specifying the submenu components and then the
menu item component. The titles should be separated using the greater-than
character (>) with no extra spaces. Depending on your shell some characters including > may need escaping. More information about this is available
in the GRUB Manual in the section about the 'default' command.  MODULE MODULES Mac-style bless on HFS or HFS+ Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NOT RUNNING:  NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Netboot directory for %s created. Configure your DHCP server to point to %s
 Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OPTIONS FILE OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] PUBKEY_ID Paletted  Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Prepares GRUB network boot images at net_directory/subdir assuming net_directory being TFTP root. Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot into firmware setup menu. Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Render Apple .disk_label. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING STRING ... Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Script `%s' contains no commands and will do nothing
 Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set bit at BYTE:BIT in CMOS. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting GRUB_TIMEOUT to a non-zero value when GRUB_HIDDEN_TIMEOUT is set is no longer supported. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show CBMEM console content. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show raw dump of the CMOS contents. Show raw dump of the PCI configuration space. Show the contents of a file. Show the current mappings. Show the list of trusted keys. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Skip signature-checking of the environment file. Skip signature-checking of the public key file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Storage information for `%s' does not include type Storage information for `%s' indicates neither a plain partition nor a plain disk Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Switch to native disk drivers. If no modules are specified default set (pata,ahci,usbms,ohci,uhci,ehci) is used Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 T TARGET THEMES Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This VDEV is a RAIDZ%llu
 This VDEV is a mirror This entry can be booted by any user. This requires setting GRUB_DEFAULT=saved in %s/default/grub.\n Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Transform syslinux config into GRUB one. Translate SET1 characters to SET2 in STRING. Translate to lower case. Translate to upper case. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown platform `%s-%s' Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized compression `%s' Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME VDEV element number %d isn't correct
 VDEV element number %d:
 VDEV with %d children
 Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. You've found a bug Your embedding area is unusually small.  core.img won't fit in it. Your xorriso doesn't support `--grub2-boot-info'. Some features are disabled. Please use xorriso 1.2.9 or later. Your xorriso doesn't support `--grub2-boot-info'. Your core image is too big. Boot as disk is disabled. Please use xorriso 1.2.9 or later. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] [-s|--skip-sig] [variable_name_to_whitelist] [...] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [-s|--skip-sig] FILE SIGNATURE_FILE [PUBKEY_FILE] [-s|--skip-sig] PUBKEY_FILE [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [DIR] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTIONS] [SET1] [SET2] [STRING] [OPTION] SOURCE... [OPTION] [INSTALL_DEVICE] [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `%s' is not a local disk `cryptomount' command fails: %s `loopback' command fails: %s `nvsetenv' failed. 
You will have to set `boot-device' variable manually.  At the IEEE1275 prompt, type:
  %s
 `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found assume input is a pxelinux configuration file. assume input is a syslinux configuration file. assume input is an isolinux configuration file. attempt to install to encrypted disk without cryptodisk enabled. Set `%s' in file `%s'. attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format bless for ppc-based macs bless for x86-based macs blocklist FILE blocklists are incomplete blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't compress `%s' to `%s' can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s can't set %dx%d font size: Freetype error %d: %s cannot compress the kernel image cannot copy `%s' to `%s': %s cannot delete `%s': %s cannot find EFI directory cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot find locale `%s' cannot get translator command line for path `%s': %s cannot make temporary directory: %s cannot make temporary file: %s cannot open OS file `%s': %s cannot open `%s': %s cannot open configuration file `%s': %s cannot open directory `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu compress GRUB files [optional] connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find IEEE1275 device path for %s.
You will have to set `boot-device' variable manually couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d current directory of the syslinux [default is parent directory of input file]. current directory of the syslinux as it will be seen on runtime  [default is parent directory of input file]. cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit device tree must be supplied (see `devicetree' command) disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. disk read fails at offset %lld, length %lld diskboot.img size must be %u bytes do not install bootsector do not probe for filesystems in DEVICE domain name component is too long don't update LED state don't update the `boot-device'/`Boot*' NVRAM variables. This option is only available on EFI and IEEE1275 targets. done embed FILE as a memdisk image
Implies `-p (memdisk)/boot/grub' and overrides any prefix supplied previously, but the prefix itself can be overridden by later options embed FILE as an early config embed FILE as public key for signature checking embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enable ARCS (big-endian mips machines, mostly SGI) boot. Disables HFS+, APM, sparc64 and boot as disk image for i386-pc enable sparc boot. Disables HFS+, APM, ARCS and boot as disk image for i386-pc enabling %s support ... enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to copy Grub to the PReP partition failed to get canonical path of `%s' failed to read the sectors of the core image failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists filesystem on %s is neither HFS nor HFS+ firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification initrd already loaded install FONTS [default=%s] install GRUB for TARGET platform [default=%s] install GRUB images under the directory DIR/%s instead of the %s directory install THEMES [default=%s] install device isn't specified install even if problems are detected install only LOCALES [default=all] install only MODULES and their dependencies [default=all] invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid argument invalid block size invalid color specification `%s' invalid device tree invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid modinfo file `%s' invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' invalid zImage ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no EFI routines are available for your platform no EFI routines are available when running in BIOS mode no IEEE1275 routines are available for your platform no SGI routines are available for your platform no `/' in canonical filename no command is specified no compression is available for your platform no decryption key available no hints available for your platform. Expect reduced performance no network card found no random number generator is available for your OS no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected only ipv4 only ipv6 other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found pre-load specified modules MODULES prefer ipv4 prefer ipv6 premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory as it will be seen on runtime [default=/]. root directory of TFTP server root directory of the syslinux disk [default=/]. route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the label to render set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the ID of bootloader. This option is only available on EFI and Macs. the PReP partition is not empty. If you are sure you want to use it, run dd to clear it: `%s' the argument `%s' requires an integer the chosen partition is not a PReP partition the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive %s is defined multiple times in the device map %s the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected EFI error unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported platform %s
 unsupported serial port flow control unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for label use COLOR for label background use COLOR for text use DIR as the EFI System Partition root. use DIR for PPC MAC install. use FILE as font (PF2). use FILE as font for label use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] use themes under DIR [default=%s] use translations under DIR [default=%s] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists write output to FILE [default=stdout]. wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub 2.02~beta1
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-12-21 01:46+0100
Last-Translator: Automatically generated
Language-Team: none
Language: en@hebrew
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=(n != 1);
               תוֹתאל מעמוֹריִ: %d כִּיבּ
     נוֹ פּרעפֿעררעד מוֹדע אבֿאִילאבּלע
     פּרעפֿעררעד מוֹדע: %uכּס%u
   עדִיד צהעצכּשוּמ ִינבֿאלִיד   עדִיד בֿערשִיוֹנ: %u.%u
   פֿאִילעד תוֹ ִינִיתִיאלִיזע בִֿידעוֹ אדאפּתער   נוֹ ִינפֿוֹ אבֿאִילאבּלע   בֿבּע ִינפֿוֹ:   בֿערשִיוֹנ: %d.%d  וֹעמ שוֹפֿתוארע רעבֿ: %d.%d
   וֹר:   (לעפֿתמוֹשת)  (מעדִיאל)  (רִיגהתמוֹשת)  - פּארתִיתִיוֹנ שתארת את %llu%sכִּיבּ  - שעצתוֹר שִיזע %uבּ  - תוֹתאל שִיזע %llu%sכִּיבּ  - תוֹתאל שִיזע וּנכּנוֹונ  [וֹפּתִיוֹנ...] %.*s: ארגפּ_העלפּ_פֿמת פּאראמעתער מוּשת בּע פּוֹשִיתִיבֿע %.*s: ארגפּ_העלפּ_פֿמת פּאראמעתער רעקוִּירעש א בֿאלוּע %.*s: וּנכּנוֹונ ארגפּ_העלפּ_פֿמת פּאראמעתער %dש %dש רעמאִינִינג. %s אפּפּעארש תוֹ צוֹנתאִינ א %s פִֿילעשיִשתעמ והִיצה ִישנ'ת כּנוֹונ תוֹ רעשערבֿע שפּאצע פֿוֹר דוֹש-שתיִלע בּוֹוֹת.  ִינשתאללִינג גרוּבּ תהערע צוֹוּלד רעשוּלת ִינ פִֿילעשיִשתעמ דעשתרוּצתִיוֹנ ִיפֿ בֿאלוּאבּלע דאתא ִיש וֹבֿערורִיתתענ בּיִ גרוּבּ-שעתוּפּ (--שכִּיפּ-פֿש-פּרוֹבּע דִישאבּלעש תהִיש צהעצכּ, וּשע את יִוֹוּר וֹונ רִישכּ) %s אפּפּעארש תוֹ צוֹנתאִינ א %s פּארתִיתִיוֹנ מאפּ אנד לדמ והִיצה ִישנ'ת כּנוֹונ תוֹ בּע א שאפֿע צוֹמבִּינאתִיוֹנ.  ִינשתאללִינג גרוּבּ תהערע צוֹוּלד רעשוּלת ִינ פִֿילעשיִשתעמ דעשתרוּצתִיוֹנ ִיפֿ בֿאלוּאבּלע דאתא ִיש וֹבֿערורִיתתענ בּיִ גרוּבּ-שעתוּפּ (--שכִּיפּ-פֿש-פּרוֹבּע דִישאבּלעש תהִיש צהעצכּ, וּשע את יִוֹוּר וֹונ רִישכּ) %s אפּפּעארש תוֹ צוֹנתאִינ א %s פּארתִיתִיוֹנ מאפּ והִיצה ִישנ'ת כּנוֹונ תוֹ רעשערבֿע שפּאצע פֿוֹר דוֹש-שתיִלע בּוֹוֹת.  ִינשתאללִינג גרוּבּ תהערע צוֹוּלד רעשוּלת ִינ פִֿילעשיִשתעמ דעשתרוּצתִיוֹנ ִיפֿ בֿאלוּאבּלע דאתא ִיש וֹבֿערורִיתתענ בּיִ גרוּבּ-שעתוּפּ (--שכִּיפּ-פֿש-פּרוֹבּע דִישאבּלעש תהִיש צהעצכּ, וּשע את יִוֹוּר וֹונ רִישכּ) %s דוֹעש נוֹת שוּפּפּוֹרת וּוִּידש %s דוֹעשנ'ת עכּסִישת. פּלעאשע שפּעצִיפֿיִ --תארגעת וֹר --דִירעצתוֹריִ %s דוֹעשנ'ת לוֹוֹכּ לִיכּע אנ עפִֿי פּארתִיתִיוֹנ.
 %s גענעראתעש א כּעיִבּוֹארד לאיִוֹוּת פֿוֹר גרוּבּ וּשִינג צכּבּצוֹמפּ\נ %s ִיש דעפּרעצאתעד. וּשע שעת גפֿכּספּאיִלוֹאד=%s בּעפֿוֹרע לִינוּכּס צוֹממאנד ִינשתעאד.
 %s ִיש דעפּרעצאתעד. בֿגא מוֹדע %d ִישנ'ת רעצוֹגנִיזעד. וּשע שעת גפֿכּספּאיִלוֹאד=וִידתהכּסהעִיגהת[כּסדעפּתה] בּעפֿוֹרע לִינוּכּס צוֹממאנד ִינשתעאד.
 %s ִיש נוֹת יִעת שוּפּפּוֹרתעד בּיִ גרוּבּ-מכּצוֹנפִֿיג.\נ %s, וִיתה הוּרד %s %s, וִיתה הוּרד %s (רעצוֹבֿעריִ מוֹדע) %s, וִיתה לִינוּכּס %s %s, וִיתה לִינוּכּס %s (רעצוֹבֿעריִ מוֹדע) %s, וִיתה כּסענ %s אנד לִינוּכּס %s %s, וִיתה כּסענ %s אנד לִינוּכּס %s (רעצוֹבֿעריִ מוֹדע) %s, וִיתה כּסענ היִפּערבִֿישוֹר %s, וִיתה כּפֿרעעבּשד %s %s, וִיתה כּפֿרעעבּשד %s (רעצוֹבֿעריִ מוֹדע) %s, וִיתה כּערנעל %s (בִֿיא %s) %s, וִיתה כּערנעל %s (בִֿיא %s, רעצוֹבֿעריִ מוֹדע) %s: האשה מִישמאתצה
 %s: וֹכּ
 %s: רעאד עררוֹר
 %s: תוֹוֹ מאניִ ארגוּמענתש
 %s: יִוֹוּ מוּשת רוּנ תהִיש אש רוֹוֹת\נ %s: עררוֹר: %s: ִינפֿוֹ: %s: ִינבֿאלִיד וֹפּתִיוֹנ -- '%c'
 %s: נוֹת פֿוֹוּנד %s: וֹפּתִיוֹנ '%c%s' דוֹעשנ'ת אללוֹו אנ ארגוּמענת
 %s: וֹפּתִיוֹנ '%s' ִיש אמבִּיגוּוֹוּש; פּוֹששִיבִּילִיתִיעש: %s: וֹפּתִיוֹנ '--%s' דוֹעשנ'ת אללוֹו אנ ארגוּמענת
 %s: וֹפּתִיוֹנ '--%s' רעקוִּירעש אנ ארגוּמענת
 %s: וֹפּתִיוֹנ '-ו %s' דוֹעשנ'ת אללוֹו אנ ארגוּמענת
 %s: וֹפּתִיוֹנ '-ו %s' ִיש אמבִּיגוּוֹוּש
 %s: וֹפּתִיוֹנ '-ו %s' רעקוִּירעש אנ ארגוּמענת
 %s: וֹפּתִיוֹנ רעקוִּירעש אנ ארגוּמענת -- '%c'
 %s: וֹפּתִיוֹנ רעקוִּירעש אנ ארגוּמענת -- `%s'\נ %s: וּנרעצוֹגנִיזעד וֹפּתִיוֹנ '%c%s'
 %s: וּנרעצוֹגנִיזעד וֹפּתִיוֹנ '--%s'
 %s: וארנִינג: (32-בִּית) (64-בִּית) (פּרוֹגראמ עררוֹר) נוֹ בֿערשִיוֹנ כּנוֹונ!? (פּרוֹגראמ עררוֹר) וֹפּתִיוֹנ שהוֹוּלד האבֿע בּעענ רעצוֹגנִיזעד!? (וֹנ %s) - לאבּעל `%s' - לאשת מוֹדִיפִֿיצאתִיוֹנ תִימע %d-%02d-%02d %02d:%02d:%02d %s --מוֹרע-- --פּפּצ פּאתה|--כּס86 פִֿילע -ה האשה [-צ פִֿילע [-פּ פּרעפִֿיכּס]] [פִֿילע1 [פִֿילע2 ...]] -ל | -ר | [-ש] גרוּבּדעבֿ וֹשדִישכּ. .5 16-בִּית פּרוֹתעצתעד ִינתערפֿאצע שוּפּפּוֹרתעד
 16-בִּית פּרוֹתעצתעד ִינתערפֿאצע וּנשוּפּפּוֹרתעד
 32-בִּית פּרוֹתעצתעד ִינתערפֿאצע שוּפּפּוֹרתעד
 32-בִּית פּרוֹתעצתעד ִינתערפֿאצע וּנשוּפּפּוֹרתעד
 =בֿאל > אצפִּי נוֹנ-בֿוֹלאתִילע שתוֹראגע ראמ אצפִּי רעצלאִימאבּלע ראמ אצפִּי שהוּתדוֹונ פֿאִילעד אדדר אדדר בֿאלוּע [מאשכּ] אדדר [שִיזע] אדדר1,מאשכּ1[,אדדר2,מאשכּ2[,...]] אדדרעשש דנששערבֿער אפּמ דִישאבּלעד
 אפּמ דִישענגאגעד
 אפּמ ענאבּלעד
 אפּמ ענגאגעד
 ארגפּ_העלפּ_פֿמת: %s בֿאלוּע ִיש לעשש תהאנ וֹר עקוּאל תוֹ %s אשצִיִי אצצעפּת דוֹש-שתיִלע צר/נל לִינע ענדִינגש. אצתִיבֿע ִינפּוּת תערמִינאלש: אצתִיבֿע וֹוּתפּוּת תערמִינאלש: אדאפּתער `%s':
 אדד א דנש שערבֿער אדד א נעתווֹרכּ אדדרעשש. אדד א נעתווֹרכּ רוֹוּתע. אדבֿאנצעד וֹפּתִיוֹנש פֿוֹר %s אדבֿאנצעד וֹפּתִיוֹנש פֿוֹר %s (וִיתה כּסענ היִפּערבִֿישוֹר) אללוֹו תוֹ ִינתעררוּפּת וִיתה עשצ. אשכּ פֿוֹר פִֿילע נאמע תוֹ רעבּוֹוֹת פֿרוֹמ. אששוּמע ִינפּוּת ִיש העכּס. אששוּמע ִינפּוּת ִיש פּאששפּהראשע. אששוּמע ִינפּוּת ִיש ראו. אתתעמפּתִינג תוֹ דעצריִפּת מאשתער כּעיִ... אתתעמפּתִינג תוֹ ִינשתאלל גרוּבּ תוֹ א דִישכּ וִיתה מוּלתִיפּלע פּארתִיתִיוֹנ לאבּעלש וֹר בּוֹתה פּארתִיתִיוֹנ לאבּעל אנד פִֿילעשיִשתעמ.  תהִיש ִיש נוֹת שוּפּפּוֹרתעד יִעת. אתתעמפּתִינג תוֹ ִינשתאלל גרוּבּ תוֹ א דִישכּ וִיתה מוּלתִיפּלע פּארתִיתִיוֹנ לאבּעלש.  תהִיש ִיש נוֹת שוּפּפּוֹרתעד יִעת. אתתעמפּתִינג תוֹ ִינשתאלל גרוּבּ תוֹ א פּארתִיתִיוֹנלעשש דִישכּ וֹר תוֹ א פּארתִיתִיוֹנ.  תהִיש ִיש א בּאד ִידעא. אבֿאִילאבּלע ִינפּוּת תערמִינאלש: אבֿאִילאבּלע וֹוּתפּוּת תערמִינאלש: בּ בּ/ש בִּיוֹש_דוּמפּ [ִינת10_דוּמפּ] בּלוֹצכּ בּיִתע:בִּית בּאצכּגרוֹוּנד ִימאגע מוֹדע. בּאשע דִירעצתוֹריִ פֿוֹר האשה לִישת. בּלעשש דִיר וֹפֿ הפֿש וֹר הפֿש+ פּארתִיתִיוֹנ פֿוֹר פּפּצ מאצש. בּלעשש פִֿילע וֹפֿ הפֿש וֹר הפֿש+ פּארתִיתִיוֹנ פֿוֹר ִינתעל מאצש. בּוֹוֹת בִּיוֹש-בּאשעד שיִשתעמ. בּוֹוֹת אנ וֹפּעראתִינג שיִשתעמ. בּוֹוֹת ִינתוֹ שִינגלע מוֹדע. בּוֹוֹת וִיתה דעבּוּג מעששאגעש. בּוֹוֹת וִיתה בֿערבּוֹשע מעששאגעש. בּוֹוֹתִינג `%s' בּוֹוֹתִינג א צוֹממאנד לִישת בּוֹוֹתִינג ִינ בּלִינד מוֹדע בּוֹוֹתפּאתה: %s
 בּוֹוֹתפּאתה: וּנאבֿאִילאבּלע
 בּרעאכּ ִינתוֹ גדבּ צגא  צוֹלוֹר צוֹממאנד [ארגש] צפּוּ ִידלע דוֹעשנ'ת שלוֹו דוֹונ פּרוֹצעששוֹר
 צפּוּ ִידלע שלוֹוש דוֹונ פּרוֹצעששוֹר
 צש5536 את %d:%d.%d
 צאנ'ת צרעאתע פִֿילע: %s צאנ'ת ענאבּלע רוֹמ ארעא. צהאנגע צוֹנפִֿיגוּרעד דעבִֿיצעש. צהאנגע פּארתִיתִיוֹנ תיִפּע צהעצכּ אלת כּעיִ. צהעצכּ צוֹנתרוֹל כּעיִ. צהעצכּ שהִיפֿת כּעיִ. צהעצכּ פֿוֹר צפּוּ פֿעאתוּרעש. צהעצכּ האשהעש וֹפֿ פִֿילעש וִיתה האשה לִישת פִֿילע. צהעצכּ ִיפֿ צפּוּ שוּפּפּוֹרתש 64-בִּית (לוֹנג) מוֹדע (דעפֿאוּלת). צהעצכּ ִיפֿ צפּוּ שוּפּפּוֹרתש פּהיִשִיצאל אדדרעשש עכּסתענשִיוֹנ. צהעצכּ ִיפֿ פִֿילע צאנ בּע וּשעד אש כּס86 מוּלתִיבּוֹוֹת כּערנעל צהעצכּ ִיפֿ פִֿילע צאנ בּע וּשעד אש כּס86 מוּלתִיבּוֹוֹת2 כּערנעל צהעצכּ ִיפֿ פִֿילע ִיש ארמ עפִֿי פִֿילע צהעצכּ ִיפֿ פִֿילע ִיש בִּיוֹש בּוֹוֹתשעצתוֹר צהעצכּ ִיפֿ פִֿילע ִיש ִיא64 עפִֿי פִֿילע צהעצכּ ִיפֿ פִֿילע ִיש הִיבּערפִֿיל.שיִש ִינ הִיבּערנאתעד שתאתע צהעצכּ ִיפֿ פִֿילע ִיש ִי386 עפִֿי פִֿילע צהעצכּ ִיפֿ פִֿילע ִיש וֹפֿ שפּעצִיפִֿיעד תיִפּע. צהעצכּ כּעיִ מוֹדִיפִֿיער שתאתוּש. צהעצכּ והעתהער וּשער ִיש ִינ וּשערלִישת. צהעצכּש גרוּבּ שצרִיפּת צוֹנפִֿיגוּראתִיוֹנ פִֿילע פֿוֹר שיִנתאכּס עררוֹרש. צלעאר בִּית את בּיִתע:בִּית ִינ צמוֹש. צלעאר תהע שצרעענ. צלעארעד אצתִיבֿע פֿלאג וֹנ %d. 
 צוֹממאנדש: צוֹמפּארע פִֿילע וִיתה לוֹצאל פִֿילע לוֹצאל. צוֹמפּארע פִֿילע `%s' וִיתה `%s':
 צוֹמפּארע תווֹ פִֿילעש. צוֹמפּוּתע כּסנוּ וּוִּיד וֹפֿ תהע דעבִֿיצע. צוֹמפּוּתע וֹר צהעצכּ האשה צהעצכּשוּמ. צוֹנפִֿיגוּרע שערִיאל פּוֹרת. צוֹנתִינוּע לוֹוֹפּש צוֹנבֿערת צוֹממוֹנ פֿוֹנת פִֿילע פֿוֹרמאתש ִינתוֹ פּפֿ2 צוֹפּיִ פִֿילע תוֹ לוֹצאל פִֿילע לוֹצאל. צוֹפּיִ פִֿילע תוֹ שתאנדארד וֹוּתפּוּת. צוֹוּלד נוֹת לוֹצאתע פֿפּשוא דרִיבֿער צוֹוּלדנ'ת פִֿינד א פֿרעע בּוֹוֹתננננ שלוֹת צוֹוּלדנ'ת פִֿינד פּהיִשִיצאל בֿוֹלוּמע `%s'. שוֹמע מוֹדוּלעש מאיִ בּע מִיששִינג פֿרוֹמ צוֹרע ִימאגע. צוֹוּלדנ'ת לוֹאד שהא256 צוֹוּלדנ'ת לוֹאד שהא512 צרעאתע בִּיוֹש-לִיכּע שתרוּצתוּרעש פֿוֹר בּאצכּוארד צוֹמפּאתִיבִּילִיתיִ וִיתה עכּסִישתִינג וֹש. צרעאתע א בּלאנכּ ענבִֿירוֹנמענת בּלוֹצכּ פִֿילע. צוּררענת תערמִינפֿוֹ תיִפּעש: דעבִֿיצע דעבִֿיצע [פּארתִיתִיוֹנ[+/-[תיִפּע]]] ... דעבִֿיצע מוּשת בּע אנ וֹש דעבִֿיצע (ע.ג. /דעבֿ/שדא). דעבִֿיצע_נאמע דִיר דִירעצתוֹריִ [וֹשבּוּנדלערעקוִּירעד] דנששערבֿער דעבּוּג תוֹוֹל פֿוֹר פִֿילעשיִשתעמ דרִיבֿער. דעצלארע מעמוֹריִ רעגִיוֹנש אש פֿאוּלתיִ (בּאדראמ). דעצוֹמפּרעששוֹר ִיש תוֹוֹ בִּיג דעפֿאוּלת שערבֿער ִיש ${נעת_דעפֿאוּלת_שערבֿער} דעפִֿינע א מענוּ ענתריִ. דעפִֿינע א שוּבּמענוּ. דעלעתע א נעתווֹרכּ אדדרעשש. דעלעתע א נעתווֹרכּ רוֹוּתע. דעלעתע תהע שפּעצִיפִֿיעד לוֹוֹפּבּאצכּ דרִיבֿע. דעלעתע בֿארִיאבּלעש. דעתערמִינע דרִיבֿער. דעתערמִינע פִֿילעשיִשתעמ וּוִּיד. דעתערמִינע פִֿילעשיִשתעמ לאבּעל. דעתערמִינע פִֿילעשיִשתעמ תיִפּע. דעתערמִינע פּארתִיתִיוֹנ מאפּ תיִפּע. דעבִֿיצע %s: דעבִֿיד: %s
 דעבִֿיד: וּנאבֿאִילאבּלע דִירעצת צוֹלוֹר, מאשכּ: %d/%d/%d/%d  פּוֹש: %d/%d/%d/%d דִישאבּלע אצפִּי. דִישאבּלע שמפּ. דִישאבּלע אלל בּוֹוֹת וֹוּתפּוּת. דִישאבּלע/ענאבּלע שמארת (0/1). דִישצארדִינג ִימפּרוֹפּערליִ נעשתעד פּארתִיתִיוֹנ (%s,%s,%s%d) דִישכּ צאצהע שתאתִישתִיצש: הִיתש = %lu (%lu.%02lu%%), מִיששעש = %lu
 דִישכּ צוֹוּנת מוּשת פּרעצעדע דִישכּש לִישת.
 דִישפּלאיִ פֿפּשוא בֿערשִיוֹנ. דִישפּלאיִ שמארת העאלתה שתאתוּש. דִישפּלאיִ א לִינע וֹפֿ תעכּסת. דִישפּלאיִ בּלוֹצכּלִישת וֹפֿ פִֿילע. דִישפּלאיִ וֹוּתפּוּת וֹנ אלל צוֹנשוֹלעש. דִישפּלאיִ פּוֹוער מוֹדע. דִישפּלאיִ תהע וּשאגע וֹפֿ תהִיש צוֹממאנד אנד עכּסִית. דִישפּלאיִ תהִיש העלפּ אנד עכּסִית. דִישפּלאיִ/שעת צוּררענת דאתעתִימע. דוֹ נוֹת אפּפּליִ אניִ רעעד-שוֹלוֹמוֹנ צוֹדעש והענ עמבּעדדִינג צוֹרע.ִימג. תהִיש וֹפּתִיוֹנ ִיש וֹנליִ אבֿאִילאבּלע וֹנ כּס86 בִּיוֹש תארגעתש. דוֹ נוֹת וֹוּתפּוּת תהע תראִילִינג נעולִינע. דוֹ נוֹת פּרִינת מעששאגעש. דוֹ נוֹת פּרוֹבּע אניִ פֿלוֹפּפּיִ דרִיבֿע. דוֹ נוֹת וּשע אפּמ תוֹ האלת תהע צוֹמפּוּתער. דוֹ נוֹתהִינג, שוּצצעששפֿוּלליִ. דוֹ נוֹתהִינג, וּנשוּצצעששפֿוּלליִ. דוֹנ'ת דִישפּלאיִ בּוֹוֹת דִיאגנוֹשתִיצ מעששאגעש. דוֹנ'ת לוֹאד הוֹשת תאבּלעש שפּעצִיפִֿיעד בּיִ צוֹממא-שעפּאראתעד לִישת. דוֹנ'ת רעבּוֹוֹת, יוּשת האלת. דוֹנ'ת שתוֹפּ אפֿתער פִֿירשת עררוֹר. דוֹנ'ת וּפּדאתע עבּדא. מאיִ פִֿיכּס פֿאִילוּרעש וֹר האנגש וֹנ שוֹמע בִּיוֹשעש בּוּת מאכּעש ִית ִינעפֿפֿעצתִיבֿע וִיתה וֹש נוֹת רעצעִיבִֿינג רשדפּ פֿרוֹמ גרוּבּ. עפִֿי בּוֹוֹתלוֹאדער ִיד ִישנ'ת שפּעצִיפִֿיעד. ענבֿבֿאר ענבֿבֿאר [ענבֿבֿאר] ... עררוֹר: נוֹ בֿאלִיד כּעיִבּוֹארד לאיִוֹוּת פֿוֹוּנד. צהעצכּ תהע ִינפּוּת.
 עשצ את אניִ תִימע עכּסִיתש. עכּספּרעששִיוֹנ עכּספּרעששִיוֹנ ] עלאפּשעד תִימע: %d.%03d ש 
 עלאפּשעד תִימע: %d.%03d שעצוֹנדש 
 עמבּעדדִינג ִיש נוֹת פּוֹששִיבּלע.  גרוּבּ צאנ וֹנליִ בּע ִינשתאללעד ִינ תהִיש שעתוּפּ בּיִ וּשִינג בּלוֹצכּלִישתש.  הוֹועבֿער, בּלוֹצכּלִישתש ארע וּנרעלִיאבּלע אנד תהעִיר וּשע ִיש דִישצוֹוּראגעד. עמוּלאתע א כּעיִשתרוֹכּע שעקוּענצע ענאבּלע ִינתערפּרעתאתִיוֹנ וֹפֿ בּאצכּשלאשה עשצאפּעש. ענאבּלע/דִישאבּלע רתש/צתש. ענתער זפֿש פּאששווֹרד:  ענתער ִינ כּדבּ וֹנ בּוֹוֹת. ענתער נוֹרמאל מוֹדע. ענתער פּאששפּהראשע פֿוֹר %s%s%s (%s):  ענתער פּאששווֹרד:  ענתער וּשערנאמע:  עררוֹר ִינ פּארשִינג צוֹממאנד לִינע ארגוּמענתש
 עבֿאלוּאתע אנ עכּספּרעששִיוֹנ. עבֿאלוּאתע ארגוּמענתש אש גרוּבּ צוֹממאנדש עכּסעצוּתע שיִשלִינוּכּס צוֹנפִֿיג ִינ נעו צוֹנתעכּסת עכּסעצוּתע שיִשלִינוּכּס צוֹנפִֿיג ִינ נעו צוֹנתעכּסת תאכִּינג וֹנליִ מענוּ ענתרִיעש עכּסעצוּתע שיִשלִינוּכּס צוֹנפִֿיג ִינ שאמע צוֹנתעכּסת עכּסעצוּתע שיִשלִינוּכּס צוֹנפִֿיג ִינ שאמע צוֹנתעכּסת תאכִּינג וֹנליִ מענוּ ענתרִיעש עכּסִית פֿאִילעד עכּסִית פֿרוֹמ גרוּבּ. עכּסִית פֿרוֹמ לוֹוֹפּש עכּסִית פֿרוֹמ נוֹרמאל מוֹדע. עכּספּוֹרת בֿארִיאבּלעש. עכּספּוֹרת בֿערשִיוֹנ 1 תאבּלעש תוֹ תהע וֹש. עכּספּוֹרת בֿערשִיוֹנ 2 אנד בֿערשִיוֹנ 3 תאבּלעש תוֹ תהע וֹש. פִֿילע פִֿילע [ארג ...] פִֿילע [ארגש...] פִֿילע | תעמפּוֹ [פִּיתצה1 דוּראתִיוֹנ1] [פִּיתצה2 דוּראתִיוֹנ2] ...  פִֿילע... פִֿילע1 פִֿילע2 פִֿילענאמע צוֹממאנד פִֿילעשיִשתעמ [בֿארִיאבּלע] פִֿילע|פּרוֹמפּת פֿוֹנתש פֿוֹרמאת פֿפּשוא פּרוֹתוֹצוֹל ואשנ'ת אבּלע תוֹ פִֿינד תהע ִינתערפֿאצע פֿפּשוא רעבִֿישִיוֹנ: %x
 פֿרוֹמ-תוֹ[,פֿרוֹמ-תוֹ] פֿרוֹמ[כּ|מ|ג] תוֹ[כּ|מ|ג] פֿת_ִינִית_פֿרעעתיִפּע פֿאִילש פֿאִילעד תוֹ בּוֹוֹת בּוֹתה דעפֿאוּלת אנד פֿאללבּאצכּ ענתרִיעש.
 פֿאִילעד תוֹ צרעאתע `דעבִֿיצע-מאפּפּער' תרעע פֿאללִינג בּאצכּ תוֹ `%s' פִֿילע שִיזע: %s
 פִֿילע שיִשתעמ `%s' דוֹעשנ'ת שוּפּפּוֹרת עמבּעדדִינג פִֿילעש דִיפֿפֿער את תהע וֹפֿפֿשעת %llu: 0כּס%x [%s], 0כּס%x [%s]
 פִֿילעש דִיפֿפֿער ִינ שִיזע: %llu [%s], %llu [%s]
 פִֿילעשיִשתעמ צאננוֹת בּע אצצעששעד פִֿילעשיִשתעמ תיִפּע %s פִֿילל היִבּרִיד מבּר וֹפֿ גפּת דרִיבֿע דעבִֿיצע. שפּעצִיפִֿיעד פּארתִיתִיוֹנש וִילל בּע א פּארת וֹפֿ היִבּרִיד מבּר. וּפּ תוֹ 3 פּארתִיתִיוֹנש ארע אללוֹועד. תיִפּע ִיש אנ מבּר תיִפּע. + מעאנש תהאת פּארתִיתִיוֹנ ִיש אצתִיבֿע. וֹנליִ וֹנע פּארתִיתִיוֹנ צאנ בּע אצתִיבֿע. פִֿינאלִיזע לוֹאדִינג וֹפֿ עפִֿי עמוּלאתוֹר. פִֿירשת תריִ תהע דעבִֿיצע הִינת ִיפֿ צוּררענתליִ רוּננִינג וֹנ ארצ. ִיפֿ הִינת ענדש ִינ צוֹממא, אלשוֹ תריִ שוּבּפּארתִיתִיוֹנש פִֿירשת תריִ תהע דעבִֿיצע הִינת ִיפֿ צוּררענתליִ רוּננִינג וֹנ בִּיוֹש. ִיפֿ הִינת ענדש ִינ צוֹממא, אלשוֹ תריִ שוּבּפּארתִיתִיוֹנש פִֿירשת תריִ תהע דעבִֿיצע הִינת ִיפֿ צוּררענתליִ רוּננִינג וֹנ עפִֿי. ִיפֿ הִינת ענדש ִינ צוֹממא, אלשוֹ תריִ שוּבּפּארתִיתִיוֹנש פִֿירשת תריִ תהע דעבִֿיצע הִינת ִיפֿ צוּררענתליִ רוּננִינג וֹנ ִיעעע1275. ִיפֿ הִינת ענדש ִינ צוֹממא, אלשוֹ תריִ שוּבּפּארתִיתִיוֹנש פִֿירשת תריִ תהע דעבִֿיצע הִינת ִיפֿ דִירעצת הארדוארע אצצעשש ִיש שוּפּפּוֹרתעד. ִיפֿ הִינת ענדש ִינ צוֹממא, אלשוֹ תריִ שוּבּפּארתִיתִיוֹנש פִֿירשת תריִ תהע דעבִֿיצע הִינת. ִיפֿ הִינת ענדש ִינ צוֹממא, אלשוֹ תריִ שוּבּפּארתִיתִיוֹנש פִֿיכּס בִֿידעוֹ פּרוֹבּלעמ. פֿוֹוּנד %s וֹנ %s (%s)\נ פֿוֹוּנד %s וֹנ %s\נ פֿוֹוּנד גנוּ מאצה: %s פֿוֹוּנד הוּרד מוֹדוּלע: %s פֿוֹוּנד נעתבּשד כּערנעל: %s\נ פֿוֹוּנד בּאצכּגרוֹוּנד: %s\נ פֿוֹוּנד ִינִיתרד ִימאגע: %s\נ פֿוֹוּנד כּערנעל מוֹדוּלע דִירעצתוֹריִ: %s\נ פֿוֹוּנד כּערנעל וֹפֿ פֿרעעבּשד: %s\נ פֿוֹוּנד לִינוּכּס ִימאגע: %s\נ פֿוֹוּנד תהעמע: %s\נ פֿרעעתיִפּע עררוֹר %d לוֹאדִינג גליִפּה 0כּס%x פֿוֹר וּ+0כּס%x%s פֿרעעזע אתא שעצוּרִיתיִ שעתתִינגש וּנתִיל רעשעת. פֿרִידאיִ ג גנוּ גרוּבּ  בֿערשִיוֹנ %s גרוּבּ בּוֹוֹת מענוּ גרוּבּ דוֹעשנ'ת כּנוֹו הוֹו תוֹ האלת תהִיש מאצהִינע יִעת! גרוּבּ עמוּלאתוֹר. גרוּבּדעבִֿיצע=פּלאנ9דעבִֿיצע גארבּאגע ִינ ארגפּ_העלפּ_פֿמת: %s גענעראתע גרוּבּ כּעיִבּוֹארד לאיִוֹוּת פֿרוֹמ לִינוּכּס צוֹנשוֹלע וֹנע. גענעראתע פּבּכּדפֿ2 פּאששווֹרד האשה. גענעראתע א גרוּבּ צוֹנפִֿיג פִֿילע גענעראתע א שתאנדאלוֹנע ִימאגע (צוֹנתאִינִינג אלל מוֹדוּלעש) ִינ תהע שעלעצתעד פֿוֹרמאת גענעראתִינג גרוּבּ צוֹנפִֿיגוּראתִיוֹנ פִֿילע ... געת צרצ32 צהעצכּשוּמ וֹפֿ פִֿילע. געת דִישכּ צאצהע ִינפֿוֹ. געת/שעת אתא דִישכּ פּאראמעתערש. גִיבּ גִיבּ/ש גראפֿת פּוִֹינת שיִנתאכּס (ע.ג. /בּוֹוֹת/גרוּבּ/גרוּבּ.צפֿג=./גרוּבּ.צפֿג) ִיש אצצעפּתעד האשה הִינת האלת תהע שיִשתעמ, ִיפֿ פּוֹששִיבּלע וּשִינג אפּמ. האלתש תהע צוֹמפּוּתער.  תהִיש צוֹממאנד דוֹעש נוֹת ווֹרכּ וֹנ אלל פִֿירמוארע ִימפּלעמענתאתִיוֹנש. האנדלע נ בּיִתעש ִינ וֹוּתפּוּת פִֿילע. העללוֹ ווֹרלד הערצוּלעש  ִיד ִימאגע1 [ִימאגע2 ...] מוֹוּנתפּוִֹינת ִימאגע_פּאתה צוֹממאנדש ִינשתאלל_דעבִֿיצע מוּשת בּע שיִשתעמ דעבִֿיצע פִֿילענאמע.
%s צוֹפִּיעש גרוּבּ ִימאגעש ִינתוֹ %s.  וֹנ שוֹמע פּלאתפֿוֹרמש, ִית מאיִ אלשוֹ ִינשתאלל גרוּבּ ִינתוֹ תהע בּוֹוֹת שעצתוֹר. ִיפֿ פִֿילענאמע ִיש `-', תהע דעפֿאוּלת בֿאלוּע %s ִיש וּשעד.

תהערע ִיש נוֹ `דעלעתע' צוֹממאנד; ִיפֿ יִוֹוּ ואנת תוֹ דעלעתע תהע והוֹלע ענבִֿירוֹנמענת
בּלוֹצכּ, וּשע `רמ %s'. ִימפּוֹרת זפֿש וראפּפִּינג כּעיִ שתוֹרעד ִינ פִֿילע. ִינצוֹררעצת בֿדעבֿ ִינצוֹררעצת בִֿירתוּאל דעבִֿיצע: נוֹ תיִפּע אבֿאִילאבּלע ִינשערת א מוֹדוּלע. ִינשתאלל גרוּבּ וֹנ יִוֹוּר דרִיבֿע. ִינשתאללאתִיוֹנ פִֿינִישהעד. נוֹ עררוֹר רעפּוֹרתעד. ִינשתאללִינג פֿוֹר %s פּלאתפֿוֹרמ.
 ִינבֿאלִיד בּאצכּ רעפֿערענצע ִינבֿאלִיד צהאראצתער צלאשש נאמע ִינבֿאלִיד צוֹללאתִיוֹנ צהאראצתער ִינבֿאלִיד צוֹממאנד %s.
 ִינבֿאלִיד צוֹנתענת וֹפֿ \{\} ִינבֿאלִיד דעבִֿיצע `%s'.
 ִינבֿאלִיד דִישכּ צוֹוּנת.
 ִינבֿאלִיד פּרעצעדִינג רעגוּלאר עכּספּרעששִיוֹנ ִינבֿאלִיד ראנגע ענד ִינבֿאלִיד רעגוּלאר עכּספּרעששִיוֹנ ִינבֿוֹכּע וּשער צוֹנפִֿיגוּראתִיוֹנ רוֹוּתִינג. כּ כּערנעל ארגש כּעיִבּוֹארד_כּעיִ כּעיִבּוֹארד כּעיִ תוֹ קוִּיצכּליִ בּוֹוֹת תהִיש ענתריִ. כִּיבּ כִּיבּ/ש לוֹצאלעש לעאפֿ בִֿירתוּאל דעבִֿיצע (פִֿילע וֹר דִישכּ) לעגאציִ `אשכּ' פּאראמעתער נוֹ לוֹנגער שוּפּפּוֹרתעד. לעגענד: מאשכּ/פּוֹשִיתִיוֹנ=רעד/גרעענ/בּלוּע/רעשערבֿעד לענגתה וֹפֿ גענעראתעד האשה לענגתה וֹפֿ שאלת לִישת דנש שערבֿערש לִישת פּצִי דעבִֿיצעש. לִישת אלל פִֿילעש. לִישת אבֿאִילאבּלע בִֿידעוֹ מוֹדעש. ִיפֿ רעשוֹלוּתִיוֹנ ִיש גִיבֿענ שהוֹו וֹנליִ מוֹדעש מאתצהִינג ִית. לִישת צוֹרעבּוֹוֹת תאבּלעש. לִישת דעבִֿיצעש אנד פִֿילעש. לִישת דעבִֿיצעש וֹר פִֿילעש. לִישת דעבִֿיצעש. לִישת פִֿילעש ִינ פּאתה. לִישת מעמוֹריִ מאפּ פּרוֹבִֿידעד בּיִ פִֿירמוארע. לִישת וֹפֿ שוּפּפּוֹרתעד בִֿידעוֹ מוֹדעש: לִישת וֹפֿ וּשערש אללוֹועד תוֹ בּוֹוֹת תהִיש ענתריִ. לִישת וֹר שעלעצת אנ ִינפּוּת תערמִינאל. לִישת וֹר שעלעצת אנ וֹוּתפּוּת תערמִינאל. לִישת תהע צוּררענת בֿארִיאבּלעש. לִישת תהע לוֹאדעד פֿוֹנתש. לִישת בֿארִיאבּלעש פֿרוֹמ ענבִֿירוֹנמענת בּלוֹצכּ פִֿילע. לוֹאד 64-בִּית כּסנוּ ִימאגע. לוֹאד בִּיוֹש דוּמפּ. לוֹאד דתבּ פִֿילע. לוֹאד פֿרעעבּשד ענבֿ. לוֹאד פֿרעעבּשד כּערנעל מוֹדוּלע (עלפֿ). לוֹאד פֿרעעבּשד כּערנעל מוֹדוּלע. לוֹאד פֿרעעדוֹש כּערנעל.שיִש. לוֹאד לִינוּכּס. לוֹאד נתלדר וֹר בּוֹוֹתמגר. לוֹאד נעתבּשד כּערנעל מוֹדוּלע (עלפֿ). לוֹאד נעתבּשד כּערנעל מוֹדוּלע. לוֹאד פּלאנ9 כּערנעל. לוֹאד תרוּעצריִפּת ִישוֹ. לוֹאד כּסנוּ עכּסתענשִיוֹנ דִירעצתוֹריִ. לוֹאד כּסנוּ עכּסתענשִיוֹנ פּאצכּאגע. לוֹאד כּסנוּ עכּסתענשִיוֹנ. לוֹאד כּסנוּ ִימאגע. לוֹאד כּסנוּ ראמדִישכּ. ִית וִילל בּע אבֿאִילאבּלע ִינ וֹש אש מד0. לוֹאד `דעבִֿיצע-פּרוֹפּערתִיעש' דוּמפּ. לוֹאד א פּכּסע ִימאגע. לוֹאד א כּעיִבּוֹארד לאיִוֹוּת. לוֹאד א מוּלתִיבּוֹוֹת 2 כּערנעל. לוֹאד א מוּלתִיבּוֹוֹת 2 מוֹדוּלע. לוֹאד א מוּלתִיבּוֹוֹת כּערנעל. לוֹאד א מוּלתִיבּוֹוֹת מוֹדוּלע. לוֹאד א שפּלאשה ִימאגע פֿוֹר כּסנוּ. לוֹאד אנ ִימאגע וֹפֿ הִיבּערנאתעד כּסנוּ. לוֹאד אנד ִינִיתִיאלִיזע עפִֿי עמוּלאתוֹר. לוֹאד אנוֹתהער בּוֹוֹת לוֹאדער. לוֹאד אנוֹתהער צוֹנפִֿיג פִֿילע בּוּת תאכּע וֹנליִ מענוּ ענתרִיעש. לוֹאד אנוֹתהער צוֹנפִֿיג פִֿילע וִיתהוֹוּת צהאנגִינג צוֹנתעכּסת בּוּת תאכּע וֹנליִ מענוּ ענתרִיעש. לוֹאד אנוֹתהער צוֹנפִֿיג פִֿילע וִיתהוֹוּת צהאנגִינג צוֹנתעכּסת. לוֹאד אנוֹתהער צוֹנפִֿיג פִֿילע. לוֹאד אנוֹתהער צוֹרעבּוֹוֹת פּאיִלוֹאד לוֹאד בּאצכּגרוֹוּנד ִימאגע פֿוֹר אצתִיבֿע תערמִינאל. לוֹאד הוֹשת אצפִּי תאבּלעש אנד תאבּלעש שפּעצִיפִֿיעד בּיִ ארגוּמענתש. לוֹאד ִינִיתרד. לוֹאד כּוֹפּענבּשד ראמדִישכּ. לוֹאד כּערנעל וֹפֿ פֿרעעבּשד. לוֹאד כּערנעל וֹפֿ נעתבּשד. לוֹאד כּערנעל וֹפֿ וֹפּענבּשד. לוֹאד מוֹדוּלע. לוֹאד וֹנליִ תאבּלעש שפּעצִיפִֿיעד בּיִ צוֹממא-שעפּאראתעד לִישת. לוֹאד תהע שאמע פִֿילע ִינ מוּלתִיפּלע ואיִש. לוֹאד בֿארִיאבּלעש פֿרוֹמ ענבִֿירוֹנמענת בּלוֹצכּ פִֿילע. לוֹאד זפֿש צריִפּתוֹ כּעיִ. לוֹאדעד פֿוֹנתש: לוֹאדִינג גנוּ מאצה ... לוֹאדִינג לִינוּכּס %s ... לוֹאדִינג כּסענ %s ... לוֹאדִינג ִינִיתִיאל ראמדִישכּ ... לוֹאדִינג כּערנעל וֹפֿ פֿרעעבּשד %s ... לוֹאדִינג כּערנעל וֹפֿ ִיללוּמוֹש ... לוֹאדִינג תהע הוּרד ... מ מאצ בֿערִיפִֿיצאתִיוֹנ פֿאִילעד מענוּ_ענתריִ ִיש א נוּמבּער, א מענוּ ִיתעמ תִיתלע וֹר א מענוּ ִיתעמ ִידענתִיפִֿיער. מענוּ_ענתריִ ִיש א נוּמבּער, א מענוּ ִיתעמ תִיתלע וֹר א מענוּ ִיתעמ ִידענתִיפִֿיער. פּלעאשע נוֹתע תהאת מענוּ ִיתעמש ִינ
שוּבּמענוּש וֹר שוּבּ-שוּבּמענוּש רעקוִּירע שפּעצִיפֿיִִינג תהע שוּבּמענוּ צוֹמפּוֹנענתש אנד תהענ תהע
מענוּ ִיתעמ צוֹמפּוֹנענת. תהע תִיתלעש שהוֹוּלד בּע שעפּאראתעד וּשִינג תהע גרעאתער-תהאנ
צהאראצתער (>) וִיתה נוֹ עכּסתרא שפּאצעש. דעפּענדִינג וֹנ יִוֹוּר שהעלל שוֹמע צהאראצתערש ִינצלוּדִינג > מאיִ נעעד עשצאפִּינג. מוֹרע ִינפֿוֹרמאתִיוֹנ אבּוֹוּת תהִיש ִיש אבֿאִילאבּלע
ִינ תהע גרוּבּ מאנוּאל ִינ תהע שעצתִיוֹנ אבּוֹוּת תהע 'דעפֿאוּלת' צוֹממאנד.  מוֹדוּלע מוֹדוּלעש מאצ-שתיִלע בּלעשש וֹנ הפֿש וֹר הפֿש+ מאכּע גרוּבּ צד-רוֹמ, דִישכּ, פּענדרִיבֿע אנד פֿלוֹפּפּיִ בּוֹוֹתאבּלע ִימאגע. מאכּע גרוּבּ כּעיִבּוֹארד לאיִוֹוּת פִֿילע. מאכּע א בּוֹוֹתאבּלע ִימאגע וֹפֿ גרוּבּ. מאכּע א בִֿירתוּאל דרִיבֿע פֿרוֹמ א פִֿילע. מאכּע פּארתִיתִיוֹנ אצתִיבֿע מאנאגע תהע בִּיוֹש דרִיבֿע מאפּפִּינגש. מאנדאתוֹריִ וֹר וֹפּתִיוֹנאל ארגוּמענתש תוֹ לוֹנג וֹפּתִיוֹנש ארע אלשוֹ מאנדאתוֹריִ וֹר וֹפּתִיוֹנאל פֿוֹר אניִ צוֹררעשפּוֹנדִינג שהוֹרת וֹפּתִיוֹנש. מאנִיפּוּלאתע פּצִי דעבִֿיצעש. מעאשוּרע תִימע וּשעד בּיִ צוֹממאנד מעמוֹריִ עכּסהאוּשתעד מעמוֹריִ תיִפּע: דדר2. מעמוֹריִ תיִפּע: וּנכּנוֹונ. מענוּ ענתריִ ִידענתִיפִֿיער. מענוּ ענתריִ נוֹת שפּעצִיפִֿיעד. מענוּ ענתריִ תיִפּע. מִיבּ מִיבּ/ש מִינִימאל בּאשה-לִיכּע לִינע עדִיתִינג ִיש שוּפּפּוֹרתעד. פֿוֹר תהע פִֿירשת ווֹרד, תאבּ לִישתש פּוֹששִיבּלע צוֹממאנד צוֹמפּלעתִיוֹנש. אניִוהערע עלשע תאבּ לִישתש פּוֹששִיבּלע דעבִֿיצע וֹר פִֿילע צוֹמפּלעתִיוֹנש. %s מִינִימוּמ עמאצש-לִיכּע שצרעענ עדִיתִינג ִיש שוּפּפּוֹרתעד. תאבּ לִישתש צוֹמפּלעתִיוֹנש. פּרעשש צתרל-כּס וֹר פֿ10 תוֹ בּוֹוֹת, צתרל-צ וֹר פֿ2 פֿוֹר א צוֹממאנד-לִינע וֹר עשצ תוֹ דִישצארד עדִיתש אנד רעתוּרנ תוֹ תהע גרוּבּ מענוּ. מִיששִינג ארגוּמענתש
 מִיששִינג ִינפּוּת פִֿילע
 מוֹנדאיִ מוֹנוֹצהרוֹמע  מוֹרע תהאנ וֹנע ִינשתאלל דעבִֿיצע? מוֹרע תהאנ וֹנע מענוּ ענתריִ? מוֹוּנת א צריִפּתוֹ דעבִֿיצע. מוֹוּנת אלל בֿוֹלוּמעש וִיתה `בּוֹוֹת' פֿלאג שעת. מוֹוּנת אלל. מוֹוּנת בּיִ וּוִּיד. מוֹוּנת צריִפּתוֹ דעבִֿיצעש. נאמע נאמע [בֿארִיאבּלע] [הִינתש] נוֹת רוּננִינג:  נוּמ נוּמבּער_וֹפֿ_שעצוֹנדש נאמע	רעפֿ צוֹוּנת	דעפּענדענצִיעש
 נאתִיבֿע דִישכּ דרִיבֿערש ארע ִינ וּשע. רעפֿוּשִינג תוֹ וּשע פִֿירמוארע דִישכּ ִינתערפֿאצע. נעתבּוֹוֹת דִירעצתוֹריִ פֿוֹר %s צרעאתעד. צוֹנפִֿיגוּרע יִוֹוּר דהצפּ שערבֿער תוֹ פּוִֹינת תוֹ %s
 נעתווֹרכּ פּרוֹתוֹצוֹלש: נעו מבּר ִיש ורִיתתענ תוֹ `%s'
 נוֹ צש5536 פֿוֹוּנד נוֹ פֿפּשוא פֿוֹוּנד נוֹ בּוֹוֹת תִימע שתאתִישתִיצש ִיש אבֿאִילאבּלע
 נוֹ צוֹממאנד ִיש שפּעצִיפִֿיעד.
 נוֹ דעבִֿיצע ִיש שפּעצִיפִֿיעד.
 נוֹ דִישכּ צאצהע שתאתִישתִיצש אבֿאִילאבּלע
 נוֹ דרִיבֿעש האבֿע בּעענ רעמאפּפּעד נוֹ כּנוֹונ פִֿילעשיִשתעמ דעתעצתעד נוֹ מאתצה נוֹ פּאתה ִיש שפּעצִיפִֿיעד.
 נוֹ פּאתה וֹר דעבִֿיצע ִיש שפּעצִיפִֿיעד.
 נוֹ פּרעבִֿיוֹוּש רעגוּלאר עכּספּרעששִיוֹנ נוֹ בִֿירתוּאל דעבִֿיצע תרעע אבֿאִילאבּלע נוֹנ-צהאִינ 4  נוֹת ענוֹוּגה פּאראמעתערש תוֹ צוֹממאנד.
 נוֹו צוֹננעצת תהע רעמוֹתע דעבּוּגגער, פּלעאשע. נוּמבּער וֹפֿ פּבּכּדפֿ2 ִיתעראתִיוֹנש וֹפּתִיוֹנש פִֿילע וֹש דִישכּ #נוּמ ------> גרוּבּ/בִּיוֹש דעבִֿיצע וֹש פִֿילע %s וֹפּענ עררוֹר: %s וֹפּתִיוֹנש: וֹוּת וֹפֿ ראנגע לוֹוֹכּוּפּ: %d
 וֹוּת וֹפֿ ראנגע שוּבּשתִיתוּתִיוֹנ (%d, %d)
 וֹבֿעררִידע גוּעששעד מאפּפִּינג וֹפֿ פּלאנ9 דעבִֿיצעש. פּ פּארתִיתִיוֹנ צוֹממאנדש פּאתה פּבּכּדפֿ2 האשה וֹפֿ יִוֹוּר פּאששווֹרד ִיש %s
 פּוֹרת פּוֹרת בֿאלוּע [מאשכּ] פּוּבּכּעיִ_ִיד פּאלעתתעד  פּארשע לעגאציִ צוֹנפִֿיג ִינ נעו צוֹנתעכּסת פּארשע לעגאציִ צוֹנפִֿיג ִינ נעו צוֹנתעכּסת תאכִּינג וֹנליִ מענוּ ענתרִיעש פּארשע לעגאציִ צוֹנפִֿיג ִינ שאמע צוֹנתעכּסת פּארשע לעגאציִ צוֹנפִֿיג ִינ שאמע צוֹנתעכּסת תאכִּינג וֹנליִ מענוּ ענתרִיעש פּארת נוֹ: %s.
 פּארתִיתִיוֹנ %d ִיש אצתִיבֿע נוֹו. 
 פּארתִיתִיוֹנ %s: פּארתִיתִיוֹנ שתיִלע `%s' דוֹעשנ'ת שוּפּפּוֹרת עמבּעדדִינג פּאתה: %s
 פּאתה: וּנאבֿאִילאבּלע פּערפֿוֹרמ צוֹממאנדש וֹנ פּארתִיתִיוֹנ.
וּשע `פּארתתוֹוֹל פּארתִיתִיוֹנ העלפּ' פֿוֹר תהע לִישת וֹפֿ אבֿאִילאבּלע צוֹממאנדש. פּערפֿוֹרמ א דנש לוֹוֹכּוּפּ פּערפֿוֹרמ אנ ִיפּבֿ6 אוּתוֹצוֹנפִֿיגוּראתִיוֹנ פּערפֿוֹרמ בּוֹתה דִירעצת אנד רעבֿערשע מאפּפִּינגש. פִּיבּ פִּיבּ/ש פּלאנאר  פּלאיִ א תוּנע. פּלעאשע דוֹנ'ת וּשע וֹלד תִיתלע `%s' פֿוֹר גרוּבּ_דעפֿאוּלת, וּשע `%s' (פֿוֹר בֿערשִיוֹנש בּעפֿוֹרע 2.00) וֹר `%s' (פֿוֹר 2.00 וֹר לאתער) פּוֹוֹל גוִּיד: %016llx
 פּוֹוֹל גוִּיד: וּנאבֿאִילאבּלע פּוֹוֹל נאמע: %s
 פּוֹוֹל נאמע: וּנאבֿאִילאבּלע פּוֹוֹל שתאתע: אצתִיבֿע פּוֹוֹל שתאתע: דעשתרוֹיִעד פּוֹוֹל שתאתע: עכּספּוֹרתעד פּוֹוֹל שתאתע: לעבֿעל 2 ארצ דעבִֿיצע פּוֹוֹל שתאתע: פּוֹתענתִיאלליִ אצתִיבֿע פּוֹוֹל שתאתע: רעשערבֿעד פֿוֹר הוֹת שפּארע פּוֹוֹל שתאתע: וּנאבֿאִילאבּלע פּוֹוֹל שתאתע: וּנִינִיתִיאלִיזעד פּוֹששִיבּלע ארגוּמענתש ארע: פּוֹששִיבּלע צוֹממאנדש ארע: פּוֹששִיבּלע דעבִֿיצעש ארע: פּוֹששִיבּלע פִֿילעש ארע: פּוֹששִיבּלע פּארתִיתִיוֹנש ארע: פּוֹששִיבּלע תהִינגש ארע: פּרעמאתוּרע ענד וֹפֿ רעגוּלאר עכּספּרעששִיוֹנ פּרעפּארעש גרוּבּ נעתווֹרכּ בּוֹוֹת ִימאגעש את נעת_דִירעצתוֹריִ/שוּבּדִיר אששוּמִינג נעת_דִירעצתוֹריִ בּעִינג תפֿתפּ רוֹוֹת. פּרעשש אניִ כּעיִ תוֹ צוֹנתִינוּע... פּרעשש אניִ כּעיִ תוֹ לאוּנצה כּסנוּ פּרעשש ענתער תוֹ בּוֹוֹת תהע שעלעצתעד וֹש, `ע' תוֹ עדִית תהע צוֹממאנדש בּעפֿוֹרע בּוֹוֹתִינג וֹר `צ' פֿוֹר א צוֹממאנד-לִינע. פּרעשש ענתער תוֹ בּוֹוֹת תהע שעלעצתעד וֹש, `ע' תוֹ עדִית תהע צוֹממאנדש בּעפֿוֹרע בּוֹוֹתִינג וֹר `צ' פֿוֹר א צוֹממאנד-לִינע. עשצ תוֹ רעתוּרנ פּרעבִֿיוֹוּש מענוּ. פּרִינת מעמוֹריִ ִינפֿוֹרמאתִיוֹנ. פּרִינת זפֿש ִינפֿוֹ אבּוֹוּת דעבִֿיצע. פּרִינת זפֿש-בּוֹוֹתפֿשוֹבּי וֹר שתוֹרע ִית ִינתוֹ בֿארִיאבּלע פּרִינת א בּלוֹצכּ לִישת. פּרִינת אנד עכּסעצוּתע בּלוֹצכּ ארגוּמענת. פּרִינת בּאצכּתראצע. פּרִינת דרִיבֿע ִידענתִיתיִ אנד שעתתִינגש. פּרִינת שִיזעש ִינ א הוּמאנ רעאדאבּלע פֿוֹרמאת. פּרוֹבּע דעבִֿיצע ִינפֿוֹרמאתִיוֹנ פֿוֹר א גִיבֿענ פּאתה (וֹר דעבִֿיצע, ִיפֿ תהע -ד וֹפּתִיוֹנ ִיש גִיבֿענ). ראמ הוֹלדִינג צוֹרעבּוֹוֹת תאבּלעש ראמ הוֹלדִינג פִֿירמוארע צוֹדע ראמ שלוֹת נוּמבּער %d
 רעגעכּספּ שתרִינג רוֹמ ִימאגע ִיש פּרעשענת. רעאד 16-בִּית בֿאלוּע פֿרוֹמ אדדר. רעאד 16-בִּית בֿאלוּע פֿרוֹמ פּוֹרת. רעאד 32-בִּית בֿאלוּע פֿרוֹמ אדדר. רעאד 32-בִּית בֿאלוּע פֿרוֹמ פּוֹרת. רעאד 8-בִּית בֿאלוּע פֿרוֹמ אדדר. רעאד 8-בִּית בֿאלוּע פֿרוֹמ פּוֹרת. רעאד וֹנליִ לענגתה בּיִתעש. רעבּוֹוֹת פֿאִילעד רעבּוֹוֹת ִינתוֹ פִֿירמוארע שעתוּפּ מענוּ. רעבּוֹוֹת תהע צוֹמפּוּתער. רעענתער פּאששווֹרד:  רעגִישתער %x וֹפֿ %x:%02x.%x ִיש %x
 רעגוּלאר עכּספּרעששִיוֹנ תוֹוֹ בִּיג רעמוֹבֿע א דנש שערבֿער רעמוֹבֿע א מוֹדוּלע. רעמוֹבֿע אנ ענבִֿירוֹנמענת בֿארִיאבּלע. רעמוֹבֿע אניִ מעמוֹריִ רעגִיוֹנש ִינ שפּעצִיפִֿיעד ראנגע. רענדער אפּפּלע .דִישכּ_לאבּעל. רעפּוֹרת בּוּגש תוֹ %s.
 רעפּוֹרת בּוּגש תוֹ <בּוּג-גרוּבּ@גנוּ.וֹרג>. רעקוּעשתעד שערִיאל תערמִינאל בּוּת גרוּבּ_שערִיאל_צוֹממאנד ִיש וּנשפּעצִיפִֿיעד. דעפֿאוּלת פּאראמעתערש וִילל בּע וּשעד. רעשעת אלל מאפּפִּינגש תוֹ תהע דעפֿאוּלת בֿאלוּעש. רעתרִיעבֿע דעבִֿיצע ִינפֿוֹ. רעתוּרנ פֿרוֹמ א פֿוּנצתִיוֹנ. רעתוּרנ תוֹ ִיעעע1275 פּרוֹמפּת. רוּנ `גדבּ %s %d', אנד שעת ארגש.הוֹלד תוֹ זערוֹ.
 רוּנ `גוֹ' תוֹ רעשוּמע גרוּבּ. שעצש שהוֹרתנאמע שהוֹרתנאמע צארד אדדרעשש [הואדדרעשש] שהוֹרתנאמע נעת [ִינתערפֿאצע| גו גאתעואיִ] שִיזע שוֹוּרצע|-וּ וּוִּיד|-א|-בּ שתרִינג שתרִינג ... שאתוּרדאיִ שאבֿע רעאד בֿאלוּע ִינתוֹ בֿארִיאבּלע בֿארנאמע. שאבֿע בֿארִיאבּלעש תוֹ ענבִֿירוֹנמענת בּלוֹצכּ פִֿילע. שאיִ `העללוֹ ווֹרלד'. שצרִיפּת `%s' צוֹנתאִינש נוֹ צוֹממאנדש אנד וִילל דוֹ נוֹתהִינג
 שעארצה דעבִֿיצעש בּיִ וּוִּיד. ִיפֿ בֿארִיאבּלע ִיש שפּעצִיפִֿיעד, תהע פִֿירשת דעבִֿיצע פֿוֹוּנד ִיש שעת תוֹ א בֿארִיאבּלע. שעארצה דעבִֿיצעש בּיִ א פִֿילע. שעארצה דעבִֿיצעש בּיִ א פִֿילעשיִשתעמ וּוִּיד. שעארצה דעבִֿיצעש בּיִ א פִֿילעשיִשתעמ לאבּעל. שעארצה דעבִֿיצעש בּיִ פִֿילע, פִֿילעשיִשתעמ לאבּעל וֹר פִֿילעשיִשתעמ וּוִּיד. ִיפֿ --שעת ִיש שפּעצִיפִֿיעד, תהע פִֿירשת דעבִֿיצע פֿוֹוּנד ִיש שעת תוֹ א בֿארִיאבּלע. ִיפֿ נוֹ בֿארִיאבּלע נאמע ִיש שפּעצִיפִֿיעד, `רוֹוֹת' ִיש וּשעד. שעארצה דעבִֿיצעש בּיִ פִֿילע. ִיפֿ בֿארִיאבּלע ִיש שפּעצִיפִֿיעד, תהע פִֿירשת דעבִֿיצע פֿוֹוּנד ִיש שעת תוֹ א בֿארִיאבּלע. שעארצה דעבִֿיצעש בּיִ לאבּעל. ִיפֿ בֿארִיאבּלע ִיש שפּעצִיפִֿיעד, תהע פִֿירשת דעבִֿיצע פֿוֹוּנד ִיש שעת תוֹ א בֿארִיאבּלע. שעצתוֹר %llu ִיש אלרעאדיִ ִינ וּשע בּיִ ראִיד צוֹנתרוֹללער `%s'; אבֿוִֹידִינג ִית.  פּלעאשע אשכּ תהע מאנוּפֿאצתוּרער נוֹת תוֹ שתוֹרע דאתא ִינ מבּר גאפּ שעצתוֹר %llu ִיש אלרעאדיִ ִינ וּשע בּיִ תהע פּרוֹגראמ `%s'; אבֿוִֹידִינג ִית.  תהִיש שוֹפֿתוארע מאיִ צאוּשע בּוֹוֹת וֹר וֹתהער פּרוֹבּלעמש ִינ פֿוּתוּרע.  פּלעאשע אשכּ ִיתש אוּתהוֹרש נוֹת תוֹ שתוֹרע דאתא ִינ תהע בּוֹוֹת תראצכּ שעלעצת דעבִֿיצע בּיִ ִיתש פּוֹשִיתִיוֹנ וֹנ תהע בּוּש. שעלעצת דעבִֿיצע בּיִ בֿענדוֹר אנד דעבִֿיצע ִידש. שעת אדבֿאנצעד פּוֹוער מאנאגעמענת
(1=לוֹו, ..., 254=הִיגה, 255=וֹפֿפֿ). שעת אוּתוֹמאתִיצ אצוֹוּשתִיצ מאנאגעמענת
(0=וֹפֿפֿ, 128=קוִּיעת, ..., 254=פֿאשת). שעת וֹעמִיד וֹפֿ רשדפּ, כּסשדת אנד רשדת. שעת וֹעמתאבּלע ִיד וֹפֿ רשדפּ, כּסשדת אנד רשדת. שעת וֹעמתאבּלע רעבִֿישִיוֹנ וֹפֿ רשדפּ, כּסשדת אנד רשדת. שעת `הִידדענ' פֿלאג ִינ פּארתִיתִיוֹנ תיִפּע שעת א בֿארִיאבּלע תוֹ רעתוּרנ בֿאלוּע. שעת א בֿארִיאבּלע תוֹ תהע פִֿירשת דעבִֿיצע פֿוֹוּנד. שעת אנ ענבִֿירוֹנמענת בֿארִיאבּלע. שעת בּאצכּגרוֹוּנד צוֹלוֹר פֿוֹר אצתִיבֿע תערמִינאל. שעת בִּית את בּיִתע:בִּית ִינ צמוֹש. שעת צרעאתוֹר פִֿיעלד וֹפֿ רשדפּ, כּסשדת אנד רשדת. שעת צרעאתוֹר רעבִֿישִיוֹנ וֹפֿ רשדפּ, כּסשדת אנד רשדת. שעת דעבּוּג ענבִֿירוֹנמענת בֿארִיאבּלע. שעת דרִיבֿע תוֹ שלעעפּ מוֹדע. שעת דרִיבֿע תוֹ שתאנדבּיִ מוֹדע. שעת פּוֹשִיתִיוֹנאל פּאראמעתערש. שעת רוֹוֹת דעבִֿיצע. שעת שתאנדבּיִ תִימעוֹוּת
(0=וֹפֿפֿ, 1=5ש, 2=10ש, ..., 240=20מ, 241=30מ, ...). שעת תערמִינפֿוֹ תיִפּע וֹפֿ תערמ  תוֹ תיִפּע.
 שעת תהע דעפֿאוּלת בּוֹוֹת מענוּ ענתריִ פֿוֹר גרוּבּ, פֿוֹר תהע נעכּסת בּוֹוֹת וֹנליִ. שעת תהע דעפֿאוּלת בּוֹוֹת מענוּ ענתריִ פֿוֹר גרוּבּ. שעת תהע שערִיאל פּוֹרת אדדרעשש. שעת תהע שערִיאל פּוֹרת פּארִיתיִ. שעת תהע שערִיאל פּוֹרת שפּעעד. שעת תהע שערִיאל פּוֹרת שתוֹפּ בִּיתש. שעת תהע שערִיאל פּוֹרת ווֹרד לענגתה. שעת תהע שערִיאל וּנִית. שעת וּפּ ִימאגעש תוֹ בּוֹוֹת פֿרוֹמ דעבִֿיצע.

יִוֹוּ שהוֹוּלד נוֹת נוֹרמאלליִ רוּנ תהִיש פּרוֹגראמ דִירעצתליִ.  וּשע גרוּבּ-ִינשתאלל ִינשתעאד. שעת וּשער פּאששווֹרד (פּבּכּדפֿ2).  שעת וּשער פּאששווֹרד (פּלאִינתעכּסת). וּנרעצוֹממענדעד אנד ִינשעצוּרע. שעת בֿארִיאבּלע וִיתה וּשער ִינפּוּת. שעת בֿארִיאבּלעש. שעתתִינג גרוּבּ_תִימעוֹוּת תוֹ א נוֹנ-זערוֹ בֿאלוּע והענ גרוּבּ_הִידדענ_תִימעוֹוּת ִיש שעת ִיש נוֹ לוֹנגער שוּפּפּוֹרתעד. שעתתִינג פּארתִיתִיוֹנ תיִפּע תוֹ 0כּס%x
 שהִיפֿת פּוֹשִיתִיוֹנאל פּאראמעתערש. שהוֹו אצפִּי ִינפֿוֹרמאתִיוֹנ. שהוֹו אפּמ ִינפֿוֹרמאתִיוֹנ. שהוֹו צבּמעמ צוֹנשוֹלע צוֹנתענת. שהוֹו א העלפּ מעששאגע. שהוֹו א לוֹנג לִישת וִיתה מוֹרע דעתאִילעד ִינפֿוֹרמאתִיוֹנ. שהוֹו צוֹנתענתש וֹפֿ פִֿילע ִינ העכּס. שהוֹו לוֹאדעד מוֹדוּלעש. שהוֹו מעמוֹריִ צוֹנתענתש. שהוֹו ראו צוֹנתענתש וֹפֿ אתא ִידענתִיפֿיִ שעצתוֹר. שהוֹו ראו צוֹנתענתש וֹפֿ א פִֿילע וֹר מעמוֹריִ. שהוֹו ראו דוּמפּ וֹפֿ תהע צמוֹש צוֹנתענתש. שהוֹו ראו דוּמפּ וֹפֿ תהע פּצִי צוֹנפִֿיגוּראתִיוֹנ שפּאצע. שהוֹו תהע צוֹנתענתש וֹפֿ א פִֿילע. שהוֹו תהע צוּררענת מאפּפִּינגש. שהוֹו תהע לִישת וֹפֿ תרוּשתעד כּעיִש. שהוֹו תהִיש מעששאגע. שהוֹו בֿערשִיוֹנ 1 תאבּלעש וֹנליִ. שהוֹו בֿערשִיוֹנ 2 אנד בֿערשִיוֹנ 3 תאבּלעש וֹנליִ. שהוּתדוֹונ פֿאִילעד שִימוּלאתע גרוּבּ-לעגאציִ `ִינִיתרד' צוֹממאנד שִימוּלאתע גרוּבּ-לעגאציִ `כּערנעל' צוֹממאנד שִימוּלאתע גרוּבּ-לעגאציִ `מוֹדוּלענוֹוּנזִיפּ' צוֹממאנד שִימוּלאתע גרוּבּ-לעגאציִ `פּאששווֹרד' צוֹממאנד שִימוּלאתע גרוּבּ-לעגאציִ `פּאששווֹרד' צוֹממאנד ִינ מענוּ ענתריִ מוֹדע שכִּיפּ נ בּיִתעש פֿרוֹמ וֹוּתפּוּת פִֿילע. שכִּיפּ וֹפֿפֿשעת בּיִתעש פֿרוֹמ תהע בּעגִיננִינג וֹפֿ פִֿילע. שכִּיפּ שִיגנאתוּרע-צהעצכִּינג וֹפֿ תהע ענבִֿירוֹנמענת פִֿילע. שכִּיפּ שִיגנאתוּרע-צהעצכִּינג וֹפֿ תהע פּוּבּלִיצ כּעיִ פִֿילע. שלוֹת %d וֹפּענעד
 שוֹמע הוּרד שתוּפֿפֿ פֿוֹוּנד, בּוּת נוֹת ענוֹוּגה תוֹ בּוֹוֹת. שפּעצִיפֿיִ פִֿילענאמע. שפּעצִיפֿיִ האשה תוֹ וּשע. שפּעצִיפֿיִ וֹנע וֹר מוֹרע פֿוֹנת פִֿילעש תוֹ לוֹאד. שפּעצִיפֿיִ שִיזע פֿוֹר עאצה רעאד וֹפּעראתִיוֹנ שפּעצִיפֿיִ תהע נוּמבּער וֹפֿ ִינפּוּת פִֿילעש. שפּעעד: %s 
 שתארת גדבּ שתוּבּ וֹנ גִיבֿענ פּוֹרת שתוֹפּ גדבּ שתוּבּ שתוֹראגע ִינפֿוֹרמאתִיוֹנ פֿוֹר `%s' דוֹעש נוֹת ִינצלוּדע תיִפּע שתוֹראגע ִינפֿוֹרמאתִיוֹנ פֿוֹר `%s' ִינדִיצאתעש נעִיתהער א פּלאִינ פּארתִיתִיוֹנ נוֹר א פּלאִינ דִישכּ שתוֹרע מאתצהעד צוֹמפּוֹנענת נוּמבּער ִינ בֿארנאמע. שוּצצעשש שוּנדאיִ שוּפּפּרעשש נוֹרמאל וֹוּתפּוּת (וארנִינגש רעמאִינ). שוִיתצה תוֹ נאתִיבֿע דִישכּ דרִיבֿערש. ִיפֿ נוֹ מוֹדוּלעש ארע שפּעצִיפִֿיעד דעפֿאוּלת שעת (פּאתא,אהצִי,וּשבּמש,וֹהצִי,וּהצִי,עהצִי) ִיש וּשעד שיִנתאכּס עררוֹר את לִינע %u
 שיִנתאכּס עררוֹרש ארע דעתעצתעד ִינ גענעראתעד גרוּבּ צוֹנפִֿיג פִֿילע.
ענשוּרע תהאת תהערע ארע נוֹ עררוֹרש ִינ /עתצ/דעפֿאוּלת/גרוּבּ
אנד /עתצ/גרוּבּ.ד/* פִֿילעש וֹר פּלעאשע פִֿילע א בּוּג רעפּוֹרת וִיתה
%s פִֿילע אתתאצהעד. שיִשתעמ מאנאגעמענת בּוּש צוֹנתרוֹללער ִי/וֹ שפּאצע ִיש את 0כּס%x
 ת תארגעת תהעמעש תארגעת פֿוֹרמאת נוֹת שפּעצִיפִֿיעד (וּשע תהע -וֹ וֹפּתִיוֹנ). תערמִינאל האש שפּעצִיפִֿיעד געוֹמעתריִ. תערמִינאל ִיש אשצִיִי-וֹנליִ [דעפֿאוּלת]. תערמִינאל ִיש לוֹגִיצאל-וֹרדערעד וּתפֿ-8. תערמִינאל ִיש בִֿישוּאלליִ-וֹרדערעד וּתפֿ-8. תעשת וּשבּ שוּפּפּוֹרת. תעשת בִּית את בּיִתע:בִּית ִינ צמוֹש. תעשת פִֿילע רעאד שפּעעד. תעשת ִיפֿ רעגעכּספּ מאתצהעש שתרִינג. תעשת בִֿידעוֹ שוּבּשיִשתעמ ִינ מוֹדע וכּסה. תעשת בִֿידעוֹ שוּבּשיִשתעמ. תעכּסת-וֹנליִ  תהע פִֿילעש ארע ִידענתִיצאל.
 תהע הִיגהלִיגהתעד ענתריִ וִילל בּע עכּסעצוּתעד אוּתוֹמאתִיצאלליִ ִינ %dש. תהִיש בֿדעבֿ ִיש א ראִידז%llu
 תהִיש בֿדעבֿ ִיש א מִיררוֹר תהִיש ענתריִ צאנ בּע בּוֹוֹתעד בּיִ אניִ וּשער. תהִיש רעקוִּירעש שעתתִינג גרוּבּ_דעפֿאוּלת=שאבֿעד ִינ %s/דעפֿאוּלת/גרוּבּ.\נ תהוּרשדאיִ תִיבּ תִיבּ/ש תוֹוֹל תוֹ עדִית ענבִֿירוֹנמענת בּלוֹצכּ. תוֹתאל פֿלאשה שִיזע: %d בּ.
 תראִילִינג בּאצכּשלאשה תראנשפֿוֹרמ 64-בִּית וּוִּיד תוֹ פֿוֹרמאת שוִּיתאבּלע פֿוֹר כּסנוּ. ִיפֿ -ל ִיש גִיבֿענ כּעעפּ ִית לוֹוערצאשע אש דוֹנע בּיִ בּלכִּיד. תראנשפֿוֹרמ א שיִשתעמ פִֿילענאמע ִינתוֹ גרוּבּ וֹנע. תראנשפֿוֹרמ שיִשלִינוּכּס צוֹנפִֿיג ִינתוֹ גרוּבּ וֹנע. תראנשלאתע שעת1 צהאראצתערש תוֹ שעת2 ִינ שתרִינג. תראנשלאתע תוֹ לוֹוער צאשע. תראנשלאתע תוֹ וּפּפּער צאשע. תראנשלאתעש תהע שתרִינג וִיתה תהע צוּררענת שעתתִינגש. תריִ '%s --העלפּ' וֹר '%s --וּשאגע' פֿוֹר מוֹרע ִינפֿוֹרמאתִיוֹנ.
 תוּעשדאיִ וּשער פּאששווֹרד וּשער פּבּכּדפֿ2_פּאששווֹרד וּשערנאמע[,וּשערנאמע] וּתפֿ-8 וּנאבּלע תוֹ צרעאתע פִּיפּע: %s וּנאבּלע תוֹ דעתערמִינע יִוֹוּר פּלאתפֿוֹרמ. וּשע --תארגעת. וּנאבּלע תוֹ פֿוֹרכּ: %s וּנאבּלע תוֹ וֹפּענ שתרעאמ פֿרוֹמ %s: %s וּנאבּלע תוֹ רעתרִיעבֿע פּוֹוֹל שתאתע וּנצוֹמפּרעשש דאתא. וּנצוֹמפּרעשש פִֿילע בּעפֿוֹרע צהעצכּשוּממִינג. וּנכּנוֹונ אדדרעשש תיִפּע %d
 וּנכּנוֹונ צוֹממאנד `%s'.
 וּנכּנוֹונ צוֹמפּרעששִיוֹנ פֿוֹרמאת %s וּנכּנוֹונ ענצוֹדִינג וּנכּנוֹונ עכּסתרא ארגוּמענת `%s'. וּנכּנוֹונ גשוּבּ פֿוֹנת פֿעאתוּרע 0כּס%x (%s)
 וּנכּנוֹונ כּעיִבּוֹארד שצאנ צוֹדע 0כּס%02x
 וּנכּנוֹונ כּעיִבּוֹארד שצאנ ִידענתִיפִֿיער %s
 וּנכּנוֹונ פּלאתפֿוֹרמ `%s-%s' וּנכּנוֹונ שיִשתעמ עררוֹר וּנכּנוֹונ בִֿידעוֹ מוֹדע  וּנכּנוֹונ בִֿירתוּאל דעבִֿיצע תיִפּע: %s
 וּנלוֹאד עפִֿי עמוּלאתוֹר. וּנמאתצהעד ( וֹר \( וּנמאתצהעד ) וֹר \) וּנמאתצהעד [ וֹר [^ וּנמאתצהעד \{ וּנרעצוֹגנִיזעד צוֹמפּרעששִיוֹנ `%s' וּנרעצוֹגנִיזעד וֹפּתִיוֹנ `%s'\נ וּנרעצוֹגנִיזעד פּוֹוֹל שתאתע וּנשוּפּפּוֹרתעד אדדרעשש תיִפּע %d
 וּנשוּפּפּוֹרתעד צוֹבֿעראגע שפּעצִיפִֿיצאתִיוֹנ: %d
 וּנשוּפּפּוֹרתעד הו אדדרעשש תיִפּע %d
 וּנשוּפּפּוֹרתעד ִימאגע פֿוֹרמאת וּנשוּפּפּוֹרתעד שוּבּשתִיתוּתִיוֹנ פֿלאג: 0כּס%x
 וּנשוּפּפּוֹרתעד שוּבּשתִיתוּתִיוֹנ שפּעצִיפִֿיצאתִיוֹנ: %d
 וּנשוּפּפּוֹרתעד שוּבּשתִיתוּתִיוֹנ תיִפּע: %d
 וּשאגע: וּשאגע: %s -וֹ וֹוּתפּוּת צכּבּמאפּ_ארגוּמענתש...\נ וּשאגע: %s דעבִֿיצע
 וּשאגע: %s [ִינפִֿילע [וֹוּתפִֿילע]]
 וּשאגע: %s [וֹפּתִיוֹנ] מענוּ_ענתריִ\נ וּשאגע: %s [וֹפּתִיוֹנ]\נ וּשע צד-רוֹמ אש רוֹוֹת. וּשע גדבּ רעמוֹתע דעבּוּגגער ִינשתעאד וֹפֿ דדבּ. וּשע שתרִינג אש מענוּ ענתריִ בּוֹדיִ. וּשע צוֹמפִּילעד-ִינ רוֹוֹת דעבִֿיצע. וּשע שערִיאל צוֹנשוֹלע. וּשע תהע %C אנד %C כּעיִש תוֹ שעלעצת והִיצה ענתריִ ִיש הִיגהלִיגהתעד. בֿאר ִינתערפֿאצע נוּמבּער דעשצרִיפּתִיוֹנ בֿארנאמע בֿדעבֿ עלעמענת נוּמבּער %d ִישנ'ת צוֹררעצת
 בֿדעבֿ עלעמענת נוּמבּער %d:
 בֿדעבֿ וִיתה %d צהִילדרענ
 בֿערבּוֹשע צוֹוּנתדוֹונ. בֿערִיפֿיִ דעתאצהעד שִיגנאתוּרע. בֿערשִיוֹנ %u.%u
32-בִּית צש = 0כּס%x, לענ = 0כּס%x, וֹפֿפֿשעת = 0כּס%x
16-בִּית צש = 0כּס%x, לענ = 0כּס%x
דש = 0כּס%x, לענ = 0כּס%x
 בִֿירתוּאל דעבִֿיצע ִיש דעגראדעד בִֿירתוּאל דעבִֿיצע ִיש פֿאוּלתעד בִֿירתוּאל דעבִֿיצע ִיש וֹפֿפֿלִינע בִֿירתוּאל דעבִֿיצע ִיש וֹנלִינע בִֿירתוּאל דעבִֿיצע ִיש רעמוֹבֿעד וארנִינג: נוֹ צוֹנשוֹלע וִילל בּע אבֿאִילאבּלע תוֹ וֹש וארנִינג: נוֹ פּלאתפֿוֹרמ-שפּעצִיפִֿיצ ִינשתאלל ואש פּערפֿוֹרמעד וארנִינג: וּנשוּפּפּוֹרתעד פֿוֹנת פֿעאתוּרע פּאראמעתערש: %x
 וִידתהכּסהעִיגהת. ואִית פֿוֹר א שפּעצִיפִֿיעד נוּמבּער וֹפֿ שעצוֹנדש. ואִית פֿוֹר כּעיִפּרעשש אפֿתער עבֿעריִ לִינע וֹפֿ וֹוּתפּוּת. וארנִינג: וארנִינג: ִינבֿאלִיד בּאצכּגרוֹוּנד צוֹלוֹר `%s'
 וארנִינג: ִינבֿאלִיד פֿוֹרעגרוֹוּנד צוֹלוֹר `%s'
 וארנִינג: שיִנתאכּס עררוֹר (מִיששִינג שלאשה) ִינ `%s'
 ועדנעשדאיִ וִינדוֹוש נת/2000/כּספּ (לוֹאדער) וִינדוֹוש בִֿישתא/7 (לוֹאדער) ורִיתע 16-בִּית בֿאלוּע תוֹ אדדר. ורִיתע 16-בִּית בֿאלוּע תוֹ פּוֹרת. ורִיתע 32-בִּית בֿאלוּע תוֹ אדדר. ורִיתע 32-בִּית בֿאלוּע תוֹ פּוֹרת. ורִיתע 8-בִּית בֿאלוּע תוֹ אדדר. ורִיתע 8-בִּית בֿאלוּע תוֹ פּוֹרת. ורִיתתענ שפּד בּיִתעש: %d בּ.
 כּסענ היִפּערבִֿישוֹר, בֿערשִיוֹנ %s יִוּבֿ  יִוֹוּ נעעד תוֹ שפּעצִיפֿיִ את לעאשת וֹנע צוֹממאנד.
 יִוֹוּ וִילל האבֿע תוֹ שעת `שיִשתעמפּארתִיתִיוֹנ' אנד `וֹשלוֹאדער' מאנוּאלליִ. יִוֹוּ'בֿע פֿוֹוּנד א בּוּג יִוֹוּר עמבּעדדִינג ארעא ִיש וּנוּשוּאלליִ שמאלל.  צוֹרע.ִימג ווֹנ'ת פִֿית ִינ ִית. יִוֹוּר כּסוֹררִישוֹ דוֹעשנ'ת שוּפּפּוֹרת `--גרוּבּ2-בּוֹוֹת-ִינפֿוֹ'. שוֹמע פֿעאתוּרעש ארע דִישאבּלעד. פּלעאשע וּשע כּסוֹררִישוֹ 1.2.9 וֹר לאתער. יִוֹוּר כּסוֹררִישוֹ דוֹעשנ'ת שוּפּפּוֹרת `--גרוּבּ2-בּוֹוֹת-ִינפֿוֹ'. יִוֹוּר צוֹרע ִימאגע ִיש תוֹוֹ בִּיג. בּוֹוֹת אש דִישכּ ִיש דִישאבּלעד. פּלעאשע וּשע כּסוֹררִישוֹ 1.2.9 וֹר לאתער. [--אפּפּענד|--רעמוֹבֿע] [תערמִינאל1] [תערמִינאל2] ... [--פֿוֹרצע|--בּפּבּ] פִֿילע [--מד5] פּאששוד [פִֿילע] [--נוֹ-מעמ-וֹפּתִיוֹנ] [--תיִפּע=תיִפּע] פִֿילע [ארג ...] [-1|-2] [--עכּסצלוּדע=תאבּלע1,תאבּלע2|--לוֹאד-וֹנליִ=תאבּלע1,תאבּלע2] פִֿילע1 [פִֿילע2] [...] [-צ פִֿילע [-פּ פּרעפִֿיכּס]] [פִֿילע1 [פִֿילע2 ...]] [-ד] דעבִֿיצענאמע פִֿילע. [-ע|-נ] שתרִינג [-פֿ פִֿילע] [-פֿ פִֿילע] [-ש|--שכִּיפּ-שִיג] [בֿארִיאבּלע_נאמע_תוֹ_והִיתעלִישת] [...] [-פֿ פִֿילע] בֿארִיאבּלע_נאמע [...] [-פֿ|-ל|-וּ|-ש|-נ] [--הִינת הִינת [--הִינת הִינת] ...] נאמע [-ה|-פּ|-ר] [פִֿילע] [-ל] גרוּבּוּוִּיד [בֿארנאמע] [-ל|-ה|-א] [פִֿילע ...] [-מ (שתרעתצה|נוֹרמאל)] פִֿילע [-ש פּוֹשִיתִיוֹנ] [-ד דעבִֿיצע] [-ש פּוֹשִיתִיוֹנ] [-ד דעבִֿיצע] [-בֿ בֿאר] רעגִישתער[=בֿאלוּע[:מאשכּ]] [-ש שִיזע] פִֿילענאמע [-ש|--שכִּיפּ-שִיג] פִֿילע שִיגנאתוּרע_פִֿילע [פּוּבּכּעיִ_פִֿילע] [-ש|--שכִּיפּ-שִיג] פּוּבּכּעיִ_פִֿילע [אדדר|צוֹמוּנִית][,שפּעעד] [ארג] [צארד [הואדדרעשש]] [צארד] [דִיר] [ענבֿבֿאר=בֿאלוּע] [ענבֿבֿאר] [כּעיִשתרוֹכּע1] [כּעיִשתרוֹכּע2] ... [מוֹדוּלע1 מוֹדוּלע2 ...] [נוּמבּער:]בֿארנאמע [נוּמ] [וֹפּתִיוֹנש...] [וֹפּתִיוֹנש] [וֹפּתִיוֹנש] דִישכּ [וֹפּתִיוֹנש] פִֿילע_וֹר_דעבִֿיצע [וֹפּתִיוֹנש] פֿוֹנת_פִֿילעש [וֹפּתִיוֹנש] [שעת1] [שעת2] [שתרִינג] [וֹפּתִיוֹנ] שוֹוּרצע... [וֹפּתִיוֹנ] [ִינשתאלל_דעבִֿיצע] [וֹפּתִיוֹנ]... [מוֹדוּלעש] [וֹפּתִיוֹנ]... [פּאתה|דעבִֿיצע] [וֹפּתש] [פּאתה] [פּאתתערנ ...] [וּשערלִישת] [בֿאלוּע]... [וכּסה[כּסד]] [וכּסה] [[-א|-וּ|-בֿ] [-ג וכּסה] תערמ [תיִפּע]] [[יִעאר-]מוֹנתה-דאיִ] [הוֹוּר:מִינוּתע[:שעצוֹנד]] [בּוּש]:[שלוֹת][.פֿוּנצ] [בֿענדוֹר]:[דעבִֿיצע] `%s' ִיש נוֹת א לוֹצאל דִישכּ `צריִפּתוֹמוֹוּנת' צוֹממאנד פֿאִילש: %s `לוֹוֹפּבּאצכּ' צוֹממאנד פֿאִילש: %s `נבֿשעתענבֿ' פֿאִילעד. 
יִוֹוּ וִילל האבֿע תוֹ שעת `בּוֹוֹת-דעבִֿיצע' בֿארִיאבּלע מאנוּאלליִ.  את תהע ִיעעע1275 פּרוֹמפּת, תיִפּע:
  %s
 `וֹבּפּפּאתה' נוֹת פֿוֹוּנד ִינ פּארענת דִירש וֹפֿ `%s', נוֹ ִיעעע1275 נאמע דִישצוֹבֿעריִ א בֿאלוּע ואש אששִיגנעד תוֹ תהע ארגוּמענת `%s' והִילע ִית דוֹעשנ'ת רעקוִּירע אנ ארגוּמענת אצצעשש דענִיעד אדד נוֹתע שעגמענת פֿוֹר צהרפּ ִיעעע1275 אדדר אדדרעשש נוֹת פֿוֹוּנד אששוּמע ִינפּוּת ִיש א פּכּסעלִינוּכּס צוֹנפִֿיגוּראתִיוֹנ פִֿילע. אששוּמע ִינפּוּת ִיש א שיִשלִינוּכּס צוֹנפִֿיגוּראתִיוֹנ פִֿילע. אששוּמע ִינפּוּת ִיש אנ ִישוֹלִינוּכּס צוֹנפִֿיגוּראתִיוֹנ פִֿילע. אתתעמפּת תוֹ ִינשתאלל תוֹ ענצריִפּתעד דִישכּ וִיתהוֹוּת צריִפּתוֹדִישכּ ענאבּלעד. שעת `%s' ִינ פִֿילע `%s'. אתתעמפּת תוֹ רעאד וֹר ורִיתע וֹוּתשִידע וֹפֿ דִישכּ `%s' אתתעמפּת תוֹ רעאד וֹר ורִיתע וֹוּתשִידע וֹפֿ פּארתִיתִיוֹנ אתתעמפּת תוֹ רעאד פּאשת תהע ענד וֹפֿ פִֿילע אתתעמפּת תוֹ שעעכּ וֹוּתשִידע וֹפֿ תהע פִֿילע אתתעמפּתִינג תוֹ רעאד תהע צוֹרע ִימאגע `%s' פֿרוֹמ גרוּבּ אתתעמפּתִינג תוֹ רעאד תהע צוֹרע ִימאגע `%s' פֿרוֹמ גרוּבּ אגאִינ אבֿאִילאבּלע ראמ אבֿאִילאבּלע פֿוֹרמאתש: בּאד שִיגנאתוּרע בּאשע_אדדר = 0כּס%llx, לענגתה = 0כּס%llx, %s
 בּאשע_אדדר = 0כּס%llx, לענגתה = 0כּס%llx, תיִפּע = 0כּס%x
 בִּיתמאפּ פִֿילע `%s' ִיש וֹפֿ וּנשוּפּפּוֹרתעד פֿוֹרמאת בּלעשש פֿוֹר פּפּצ-בּאשעד מאצש בּלעשש פֿוֹר כּס86-בּאשעד מאצש בּלוֹצכּלִישת פִֿילע בּלוֹצכּלִישתש ארע ִינצוֹמפּלעתע בּלוֹצכּלִישתש ארע ִינבֿאלִיד בּלוֹצכּשִיזע ִיש נוֹת דִיבִֿישִיבּלע בּיִ 512 צאנ'ת בּרעאכּ 0 לוֹוֹפּש צאנ'ת צוֹמפּרעשש `%s' תוֹ `%s' צאנ'ת דעתערמִינע פִֿילעשיִשתעמ וֹנ %s צאנ'ת פִֿינד צוֹממאנד `%s' צאנ'ת מוֹוּנת ענצריִפּתעד בֿוֹלוּמע `%s': %s צאנ'ת וֹפּענ `%s': %s צאנ'ת וֹפּענ פִֿילע %s, ִינדעכּס %d: עררוֹר %d צאנ'ת רעתרִיעבֿע בּלוֹצכּלִישתש צאנ'ת רעתרִיעבֿע בּלוֹצכּלִישתש: %s צאנ'ת שעת %dכּס%d פֿוֹנת שִיזע: פֿרעעתיִפּע עררוֹר %d: %s צאננוֹת צוֹמפּרעשש תהע כּערנעל ִימאגע צאננוֹת צוֹפּיִ `%s' תוֹ `%s': %s צאננוֹת דעלעתע `%s': %s צאננוֹת פִֿינד עפִֿי דִירעצתוֹריִ צאננוֹת פִֿינד א גרוּבּ דרִיבֿע פֿוֹר %s.  צהעצכּ יִוֹוּר דעבִֿיצע.מאפּ צאננוֹת פִֿינד א דעבִֿיצע פֿוֹר %s (ִיש /דעבֿ מוֹוּנתעד?) צאננוֹת פִֿינד לוֹצאלע `%s' צאננוֹת געת תראנשלאתוֹר צוֹממאנד לִינע פֿוֹר פּאתה `%s': %s צאננוֹת מאכּע תעמפּוֹראריִ דִירעצתוֹריִ: %s צאננוֹת מאכּע תעמפּוֹראריִ פִֿילע: %s צאננוֹת וֹפּענ וֹש פִֿילע `%s': %s צאננוֹת וֹפּענ `%s': %s צאננוֹת וֹפּענ צוֹנפִֿיגוּראתִיוֹנ פִֿילע `%s': %s צאננוֹת וֹפּענ דִירעצתוֹריִ `%s': %s צאננוֹת רעאד `%s' צוֹררעצתליִ צאננוֹת רעאד `%s': %s צאננוֹת רענאמע תהע פִֿילע %s תוֹ %s צאננוֹת רעשתוֹרע תהע וֹרִיגִינאל דִירעצתוֹריִ צאננוֹת שעעכּ `%s': %s צאננוֹת שתאת `%s': %s צאננוֹת ורִיתע תוֹ צד-רוֹמ צאננוֹת ורִיתע תוֹ `%s': %s צאננוֹת ורִיתע תוֹ תהע שתדוֹוּת: %s צארד נוֹת פֿוֹוּנד צאת פִֿילע צהעצכּשוּמ בֿערִיפִֿיצאתִיוֹנ פֿאִילעד צהוֹוֹשע תהע צוֹמפּרעששִיוֹנ תוֹ וּשע פֿוֹר צוֹרע ִימאגע צמפּ פִֿילע לוֹצאל צוֹמוּנִית[,שפּעעד] צוֹמפּארע פֿאִיל את וֹפֿפֿשעת %llu צוֹמפּרעשש גרוּבּ פִֿילעש [וֹפּתִיוֹנאל] צוֹננעצתִיוֹנ רעפֿוּשעד צוֹננעצתִיוֹנ תִימעוֹוּת צוֹנבֿערת תוֹ בּוֹלד פֿוֹנת צוֹרע ִימאגע ִיש תוֹוֹ בִּיג (0כּס%x > 0כּס%x) צוֹרע.ִימג בֿערשִיוֹנ מִישמאתצה צוֹוּלדנ'ת אוּתוֹצוֹנפִֿיגוּרע %s צוֹוּלדנ'ת פִֿינד ִיעעע1275 דעבִֿיצע פּאתה פֿוֹר %s.
יִוֹוּ וִילל האבֿע תוֹ שעת `בּוֹוֹת-דעבִֿיצע' בֿארִיאבּלע מאנוּאלליִ צוֹוּלדנ'ת פִֿינד א נעצעששאריִ מעמבּער דעבִֿיצע וֹפֿ מוּלתִי-דעבִֿיצע פִֿילעשיִשתעמ צוֹוּלדנ'ת פִֿינד געלִי צוֹנשוּמער צוֹוּלדנ'ת פִֿינד געוֹמ `פּארת' צלאשש צוֹוּלדנ'ת וֹפּענ געוֹמ צוֹוּלדנ'ת רעאד עלִי מעתאדאתא צוֹוּלדנ'ת רעתרִיעבֿע וּוִּיד צוֹוּלדנ'ת רעתרִיעבֿע געלִי וּוִּיד צוֹוּלדנ'ת רעתרִיעבֿע ראנדוֹמ דאתא צוֹוּלדנ'ת רעתרִיעבֿע ראנדוֹמ דאתא פֿוֹר שאלת צוֹוּלדנ'ת שענד נעתווֹרכּ פּאצכּעת צפּ פִֿילע לוֹצאל צרצ פִֿילע צריִפּתוֹגראפּהִיצ עררוֹר נוּמבּער %d צוּררענת דִירעצתוֹריִ וֹפֿ תהע שיִשלִינוּכּס [דעפֿאוּלת ִיש פּארענת דִירעצתוֹריִ וֹפֿ ִינפּוּת פִֿילע]. צוּררענת דִירעצתוֹריִ וֹפֿ תהע שיִשלִינוּכּס אש ִית וִילל בּע שעענ וֹנ רוּנתִימע  [דעפֿאוּלת ִיש פּארענת דִירעצתוֹריִ וֹפֿ ִינפּוּת פִֿילע]. ציִגוִינ_צוֹנבֿ_פּאתה() פֿאִילעד דעלעתע דעבִֿיצע מאפּ ִיפֿ ִית אלרעאדיִ עכּסִישתש דעשתִינאתִיוֹנ וּנרעאצהאבּלע דעבִֿיצע צוֹוּנת עכּסצעעדש לִימִית דעבִֿיצע תרעע מוּשת בּע שוּפּפּלִיעד (שעע `דעבִֿיצעתרעע' צוֹממאנד) דִישאבּלע הִינתִינג דִישכּ `%s' נוֹת פֿוֹוּנד דִישכּ דוֹעש נוֹת עכּסִישת, שוֹ פֿאללִינג בּאצכּ תוֹ פּארתִיתִיוֹנ דעבִֿיצע %s דִישכּ מוֹדוּלע תוֹ וּשע (בִּיוֹשדִישכּ וֹר נאתִיבֿע). תהִיש וֹפּתִיוֹנ ִיש וֹנליִ אבֿאִילאבּלע וֹנ בִּיוֹש תארגעת. דִישכּ רעאד פֿאִילש את וֹפֿפֿשעת %lld, לענגתה %lld דִישכּבּוֹוֹת.ִימג שִיזע מוּשת בּע %u בּיִתעש דוֹ נוֹת ִינשתאלל בּוֹוֹתשעצתוֹר דוֹ נוֹת פּרוֹבּע פֿוֹר פִֿילעשיִשתעמש ִינ דעבִֿיצע דוֹמאִינ נאמע צוֹמפּוֹנענת ִיש תוֹוֹ לוֹנג דוֹנ'ת וּפּדאתע לעד שתאתע דוֹנ'ת וּפּדאתע תהע `בּוֹוֹת-דעבִֿיצע'/`בּוֹוֹת*' נבֿראמ בֿארִיאבּלעש. תהִיש וֹפּתִיוֹנ ִיש וֹנליִ אבֿאִילאבּלע וֹנ עפִֿי אנד ִיעעע1275 תארגעתש. דוֹנע עמבּעד פִֿילע אש א מעמדִישכּ ִימאגע
ִימפּלִיעש `-פּ (מעמדִישכּ)/בּוֹוֹת/גרוּבּ' אנד וֹבֿעררִידעש אניִ פּרעפִֿיכּס שוּפּפּלִיעד פּרעבִֿיוֹוּשליִ, בּוּת תהע פּרעפִֿיכּס ִיתשעלפֿ צאנ בּע וֹבֿעררִידדענ בּיִ לאתער וֹפּתִיוֹנש עמבּעד פִֿילע אש אנ עארליִ צוֹנפִֿיג עמבּעד פִֿילע אש פּוּבּלִיצ כּעיִ פֿוֹר שִיגנאתוּרע צהעצכִּינג עמבּעדדִינג ִיש נוֹת פּוֹששִיבּלע, בּוּת תהִיש ִיש רעקוִּירעד פֿוֹר ראִיד אנד לבֿמ ִינשתאלל עמבּעדדִינג ִיש נוֹת פּוֹששִיבּלע, בּוּת תהִיש ִיש רעקוִּירעד פֿוֹר צרוֹשש-דִישכּ ִינשתאלל ענאבּלע ארצש (בִּיג-ענדִיאנ מִיפּש מאצהִינעש, מוֹשתליִ שגִי) בּוֹוֹת. דִישאבּלעש הפֿש+, אפּמ, שפּארצ64 אנד בּוֹוֹת אש דִישכּ ִימאגע פֿוֹר ִי386-פּצ ענאבּלע שפּארצ בּוֹוֹת. דִישאבּלעש הפֿש+, אפּמ, ארצש אנד בּוֹוֹת אש דִישכּ ִימאגע פֿוֹר ִי386-פּצ ענאבּלִינג %s שוּפּפּוֹרת ... ענתער: בּוֹוֹת, `ע': וֹפּתִיוֹנש, `צ': צמד-לִינע ענבִֿירוֹנמענת בּלוֹצכּ תוֹוֹ שמאלל עררוֹר: %s.
 עכּספּעצת גרוּבּ ִימאגעש וּנדער תהע דִירעצתוֹריִ דִיר/%s ִינשתעאד וֹפֿ תהע %s דִירעצתוֹריִ פֿאִילעד תוֹ צוֹפּיִ גרוּבּ תוֹ תהע פּרעפּ פּארתִיתִיוֹנ פֿאִילעד תוֹ געת צאנוֹנִיצאל פּאתה וֹפֿ `%s' פֿאִילעד תוֹ רעאד תהע שעצתוֹרש וֹפֿ תהע צוֹרע ִימאגע פֿאִילוּרע רעאדִינג שעצתוֹר 0כּס%llx פֿרוֹמ `%s' פֿאִילוּרע תוֹ רעאד פּאששווֹרד פֿאִילוּרע ורִיתִינג שעצתוֹר 0כּס%llx תוֹ `%s' פֿאלשע פֿאוּלתיִ ראמ (בּאדראמ) פִֿילע `%s' נוֹת פֿוֹוּנד פִֿילענאמע עכּספּעצתעד פִֿילענאמע וֹר תעמפּוֹ אנד נוֹתעש עכּספּעצתעד פִֿילעשיִשתעמ `%s' דוֹעש נוֹת שוּפּפּוֹרת לאבּעלש פִֿילעשיִשתעמ `%s' דוֹעשנ'ת שוּפּפּוֹרת בּלוֹצכּלִישתש פִֿילעשיִשתעמ וֹנ %s ִיש נעִיתהער הפֿש נוֹר הפֿש+ פִֿירמוארע ִימאגע ִיש תוֹוֹ בִּיג פֿוֹרצע אוּתוֹהִינת פֿוֹוּר ארגוּמענתש עכּספּעצתעד פֿושתארת.ִימג דוֹעשנ'ת מאתצה תהע כּנוֹונ גוֹוֹד בֿערשִיוֹנ. פּרוֹצעעד את יִוֹוּר וֹונ רִישכּ גענעראתע אנ ִימאגע ִינ פֿוֹרמאת גִיבֿע א שהוֹרת וּשאגע מעששאגע גִיבֿע תהִיש העלפּ לִישת גִיבֿענ ארגוּמענת ִיש א שיִשתעמ דעבִֿיצע, נוֹת א פּאתה גרוּבּ-מכִּימאגע ִיש צוֹמפִּילעד וִיתהוֹוּת כּסז שוּפּפּוֹרת גרוּבּ> האנג פֿוֹר שעצש שעצוֹנדש (דעפֿאוּלת 3600) העכּס פִֿילע ִיגנוֹרע בִּיתמאפּ שתרִיכּעש והענ לוֹאדִינג ִינצוֹררעצת תערמִינאל דִימענשִיוֹנש שפּעצִיפִֿיצאתִיוֹנ ִינִיתרד אלרעאדיִ לוֹאדעד ִינשתאלל פֿוֹנתש [דעפֿאוּלת=%s] ִינשתאלל גרוּבּ פֿוֹר תארגעת פּלאתפֿוֹרמ [דעפֿאוּלת=%s] ִינשתאלל גרוּבּ ִימאגעש וּנדער תהע דִירעצתוֹריִ דִיר/%s ִינשתעאד וֹפֿ תהע %s דִירעצתוֹריִ ִינשתאלל תהעמעש [דעפֿאוּלת=%s] ִינשתאלל דעבִֿיצע ִישנ'ת שפּעצִיפִֿיעד ִינשתאלל עבֿענ ִיפֿ פּרוֹבּלעמש ארע דעתעצתעד ִינשתאלל וֹנליִ לוֹצאלעש [דעפֿאוּלת=אלל] ִינשתאלל וֹנליִ מוֹדוּלעש אנד תהעִיר דעפּענדענצִיעש [דעפֿאוּלת=אלל] ִינבֿאלִיד פּבּכּדפֿ2 פּאששווֹרד ִינבֿאלִיד ארצה-דעפּענדענת עלפֿ מאגִיצ ִינבֿאלִיד ארצה-ִינדעפּענדענת עלפֿ מאגִיצ ִינבֿאלִיד ארגוּמענת ִינבֿאלִיד בּלוֹצכּ שִיזע ִינבֿאלִיד צוֹלוֹר שפּעצִיפִֿיצאתִיוֹנ `%s' ִינבֿאלִיד דעבִֿיצע תרעע ִינבֿאלִיד ענבִֿירוֹנמענת בּלוֹצכּ ִינבֿאלִיד פִֿילע נאמע `%s' ִינבֿאלִיד פֿוֹנת ראנגע ִינבֿאלִיד לִינע פֿוֹרמאת: %s ִינבֿאלִיד מוֹדִינפֿוֹ פִֿילע `%s' ִינבֿאלִיד פּאראמעתער %s ִינבֿאלִיד שכִּיפּ בֿאלוּע %lld ִינבֿאלִיד בֿארִיאבּלע נאמע `%s' ִינבֿאלִיד בִֿידעוֹ מוֹדע שפּעצִיפִֿיצאתִיוֹנ `%s' ִינבֿאלִיד זִימאגע ִיוֹצתל געת_ארראיִ_ִינפֿוֹ עררוֹר: %s ִיוֹצתל געת_דִישכּ_ִינפֿוֹ עררוֹר: %s ִיוֹצתל ראִיד_בֿערשִיוֹנ עררוֹר: %s כּערנעל ִימאגע ִיש תוֹוֹ בִּיג (0כּס%x > 0כּס%x) לִישת נעתווֹרכּ אדדרעששעש לִישת נעתווֹרכּ צארדש לִישת נעתווֹרכּ רוֹוּתעש לש פּאתה לזוֹפּ פִֿילע צוֹררוּפּתעד מאכּע תהע דרִיבֿע אלשוֹ בּוֹוֹתאבּלע אש פֿלוֹפּפּיִ (דעפֿאוּלת פֿוֹר פֿדכּס דעבִֿיצעש). מאיִ בּרעאכּ וֹנ שוֹמע בִּיוֹשעש. מִיששִינג `%c' שיִמבּוֹל מִיששִינג מאנדאתוֹריִ וֹפּתִיוֹנ פֿוֹר `%s' מוֹדוּלע `%s' ִישנ'ת לוֹאדעד מוֹדוּלע ִישנ'ת לוֹאדעד נאמע נעעד אנ ִימאגע אנד מוֹוּנתפּוִֹינת נוֹ אפּמ פֿוֹוּנד נוֹ דהצפּ ִינפֿוֹ פֿוֹוּנד נוֹ דהצפּ וֹפּתִיוֹנ %d פֿוֹוּנד נוֹ דהצפּ וֹפּתִיוֹנש פֿוֹוּנד נוֹ דנש רעצוֹרד פֿוֹוּנד נוֹ דנש רעפּליִ רעצעִיבֿעד נוֹ דנש שערבֿערש צוֹנפִֿיגוּרעד נוֹ עפִֿי רוֹוּתִינעש ארע אבֿאִילאבּלע פֿוֹר יִוֹוּר פּלאתפֿוֹרמ נוֹ עפִֿי רוֹוּתִינעש ארע אבֿאִילאבּלע והענ רוּננִינג ִינ בִּיוֹש מוֹדע נוֹ ִיעעע1275 רוֹוּתִינעש ארע אבֿאִילאבּלע פֿוֹר יִוֹוּר פּלאתפֿוֹרמ נוֹ שגִי רוֹוּתִינעש ארע אבֿאִילאבּלע פֿוֹר יִוֹוּר פּלאתפֿוֹרמ נוֹ `/' ִינ צאנוֹנִיצאל פִֿילענאמע נוֹ צוֹממאנד ִיש שפּעצִיפִֿיעד נוֹ צוֹמפּרעששִיוֹנ ִיש אבֿאִילאבּלע פֿוֹר יִוֹוּר פּלאתפֿוֹרמ נוֹ דעצריִפּתִיוֹנ כּעיִ אבֿאִילאבּלע נוֹ הִינתש אבֿאִילאבּלע פֿוֹר יִוֹוּר פּלאתפֿוֹרמ. עכּספּעצת רעדוּצעד פּערפֿוֹרמאנצע נוֹ נעתווֹרכּ צארד פֿוֹוּנד נוֹ ראנדוֹמ נוּמבּער גענעראתוֹר ִיש אבֿאִילאבּלע פֿוֹר יִוֹוּר וֹש נוֹ שערבֿער ִיש שפּעצִיפִֿיעד נוֹ שוּצה פּארתִיתִיוֹנ נוֹ שוִּיתאבּלע בִֿידעוֹ מוֹדע פֿוֹוּנד נוֹ שיִמבּוֹל תאבּלע נוֹ תערמִינאל שפּעצִיפִֿיעד נוֹ תערמִינאתוֹר ִינ תהע צוֹרע ִימאגע נוֹנ-שעצתוֹר-אלִיגנעד דאתא ִיש פֿוֹוּנד ִינ תהע צוֹרע פִֿילע נוֹת א דִירעצתוֹריִ נוֹת א פּרִימאריִ פּארתִיתִיוֹנ נוֹת א רעגוּלאר פִֿילע נוֹת ִינ פֿוּנצתִיוֹנ בּוֹדיִ וֹנע ארגוּמענת עכּספּעצתעד וֹנליִ ִיפּבֿ4 וֹנליִ ִיפּבֿ6 וֹתהער שוֹפֿתוארע ִיש וּשִינג תהע עמבּעדדִינג ארעא, אנד תהערע ִיש נוֹת ענוֹוּגה רוֹוֹמ פֿוֹר צוֹרע.ִימג.  שוּצה שוֹפֿתוארע ִיש וֹפֿתענ תריִִינג תוֹ שתוֹרע דאתא ִינ א ואיִ תהאת אבֿוִֹידש דעתעצתִיוֹנ.  וע רעצוֹממענד יִוֹוּ ִינבֿעשתִיגאתע וֹוּת וֹפֿ מעמוֹריִ וֹוּתפּוּת א גענעראתעד ִימאגע תוֹ פִֿילע [דעפֿאוּלת=שתדוֹוּת] וֹוּתפּוּת פִֿילע מוּשת בּע שפּעצִיפִֿיעד וֹוּתפּוּת גענעראתעד צוֹנפִֿיג תוֹ פִֿילע [דעפֿאוּלת=שתדוֹוּת] וֹבֿערפֿלוֹו ִיש דעתעצתעד פּאששווֹרדש דוֹנ'ת מאתצה פּערפֿוֹרמ א בּוֹוֹתפּ אוּתוֹצוֹנפִֿיגוּראתִיוֹנ פּהיִשִיצאל בֿוֹלוּמע %s נוֹת פֿוֹוּנד פּרע-לוֹאד שפּעצִיפִֿיעד מוֹדוּלעש מוֹדוּלעש פּרעפֿער ִיפּבֿ4 פּרעפֿער ִיפּבֿ6 פּרעמאתוּרע ענד וֹפֿ פִֿילע פּרעמאתוּרע ענד וֹפֿ פִֿילע %s פּרעשש צאפּשלוֹצכּ כּעיִ פּרעשש ִינשערת כּעיִ פּרעשש נוּמלוֹצכּ כּעיִ פּרעשש שצרוֹלללוֹצכּ כּעיִ פּרעשש שיִשרק פּרעשש לעפֿת אלת פּרעשש לעפֿת צתרל פּרעשש לעפֿת שהִיפֿת פּרעשש רִיגהת אלת פּרעשש רִיגהת צתרל פּרעשש רִיגהת שהִיפֿת פּרִינת פּרוֹגראמ בֿערשִיוֹנ פּרִינת תהע בֿערשִיוֹנ ִינפֿוֹרמאתִיוֹנ אנד עכּסִית פּרִינת תהִיש מעששאגע אנד עכּסִית פּרִינת בֿערבּוֹשע מעששאגעש. פּוּבּלִיצ כּעיִ %08x נוֹת פֿוֹוּנד רעאד עררוֹר את וֹפֿפֿשעת %llu: %s רעאד תעכּסת פֿרוֹמ פִֿילע. רעלאתִיבֿע שוּבּדִירעצתוֹריִ וֹנ נעתווֹרכּ שערבֿער רעלוֹצאתִיוֹנ 0כּס%x ִיש נוֹת ִימפּלעמענתעד יִעת רעשערבֿעד ראמ רעתרִיעבֿע דהצפּ וֹפּתִיוֹנ אנד שאבֿע ִית ִינתוֹ בֿאר. ִיפֿ בֿאר ִיש - תהענ פּרִינת תהע בֿאלוּע. רוֹוֹת דִירעצתוֹריִ אש ִית וִילל בּע שעענ וֹנ רוּנתִימע [דעפֿאוּלת=/]. רוֹוֹת דִירעצתוֹריִ וֹפֿ תפֿתפּ שערבֿער רוֹוֹת דִירעצתוֹריִ וֹפֿ תהע שיִשלִינוּכּס דִישכּ [דעפֿאוּלת=/]. רוֹוּתע לוֹוֹפּ דעתעצתעד שאבֿע רוֹמ ִימאגעש ִינ דִיר [וֹפּתִיוֹנאל] שאבֿע וֹוּתפּוּת ִינ פִֿילע [רעקוִּירעד] שעלעצת פֿאצע ִינדעכּס שערִיאל פּוֹרת `%s' ִישנ'ת פֿוֹוּנד שעת [נאמע=בֿאלוּע ...] שעת צאפּשלוֹצכּ מוֹדע שעת פֿוֹנת אשצענת שעת פֿוֹנת דעשצענת שעת פֿוֹנת פֿאמִיליִ נאמע שעת פֿוֹנת ראנגע שעת פֿוֹנת שִיזע שעת ִינפּוּת פִֿילענאמע פֿוֹר 32-בִּית פּארת. שעת ִינפּוּת פִֿילענאמע פֿוֹר 64-בִּית פּארת. שעת ִינפּוּת פִֿילענאמע. דעפֿאוּלת ִיש שתדִינ שעת ִינשערת מוֹדע שעת נוּמלוֹצכּ מוֹדע שעת וֹוּתפּוּת פִֿילענאמע. דעפֿאוּלת ִיש שתדוֹוּת שעת פּאוּשע מוֹדע שעת פּרעפִֿיכּס דִירעצתוֹריִ [דעפֿאוּלת=%s] שעת שצרוֹלללוֹצכּ מוֹדע שעת תהע לאבּעל תוֹ רענדער שעת תהע פּרוֹגראמ נאמע שִיזע שתרעתצה|נוֹרמאל שיִמבּוֹל `%s' נוֹת פֿוֹוּנד תעמפּוֹראריִ תערמִינאל %s ִישנ'ת פֿוֹוּנד וֹר ִית'ש נוֹת האנדלעד בּיִ תערמִינפֿוֹ תערמִינאל `%s' ִישנ'ת פֿוֹוּנד תהע ִיד וֹפֿ בּוֹוֹתלוֹאדער. תהִיש וֹפּתִיוֹנ ִיש וֹנליִ אבֿאִילאבּלע וֹנ עפִֿי אנד מאצש. תהע פּרעפּ פּארתִיתִיוֹנ ִיש נוֹת עמפּתיִ. ִיפֿ יִוֹוּ ארע שוּרע יִוֹוּ ואנת תוֹ וּשע ִית, רוּנ דד תוֹ צלעאר ִית: `%s' תהע ארגוּמענת `%s' רעקוִּירעש אנ ִינתעגער תהע צהוֹשענ פּארתִיתִיוֹנ ִיש נוֹת א פּרעפּ פּארתִיתִיוֹנ תהע דעבִֿיצע.מאפּ ענתריִ `%s' ִיש ִינבֿאלִיד. ִיגנוֹרִינג ִית. פּלעאשע צוֹררעצת וֹר דעלעתע יִוֹוּר דעבִֿיצע.מאפּ תהע דרִיבֿע %s ִיש דעפִֿינעד מוּלתִיפּלע תִימעש ִינ תהע דעבִֿיצע מאפּ %s תהע דרִיבֿע נאמע `%s' ִינ דעבִֿיצע.מאפּ ִיש ִינצוֹררעצת. וּשִינג %s ִינשתעאד. פּלעאשע וּשע תהע פֿוֹרמ [הפֿצ]ד[0-9]* (ע.ג. `הד0' וֹר `צד') תהע פִֿירשת שעצתוֹר וֹפֿ תהע צוֹרע פִֿילע ִיש נוֹת שעצתוֹר-אלִיגנעד תהע ִינשתאללאתִיוֹנ דעבִֿיצע ִיש רעמוֹבֿאבּלע. תהִיש וֹפּתִיוֹנ ִיש וֹנליִ אבֿאִילאבּלע וֹנ עפִֿי. תהע פּארתִיתִיוֹנ תיִפּע 0כּס%x ִישנ'ת בֿאלִיד תהע שעצתוֹרש וֹפֿ תהע צוֹרע פִֿילע ארע תוֹוֹ פֿראגמענתעד תהע שִיזע וֹפֿ `%s' ִיש נוֹת %u תהע שִיזע וֹפֿ `%s' ִיש תוֹוֹ לארגע תהע שִיזע וֹפֿ `%s' ִיש תוֹוֹ שמאלל תהִיש עלפֿ פִֿילע ִיש נוֹת וֹפֿ תהע רִיגהת תיִפּע תהִיש גפּת פּארתִיתִיוֹנ לאבּעל צוֹנתאִינש נוֹ בִּיוֹש בּוֹוֹת פּארתִיתִיוֹנ; עמבּעדדִינג ווֹנ'ת בּע פּוֹששִיבּלע תהִיש לדמ האש נוֹ עמבּעדדִינג פּארתִיתִיוֹנ; עמבּעדדִינג ווֹנ'ת בּע פּוֹששִיבּלע תהִיש משדוֹש-שתיִלע פּארתִיתִיוֹנ לאבּעל האש נוֹ פּוֹשת-מבּר גאפּ; עמבּעדדִינג ווֹנ'ת בּע פּוֹששִיבּלע תהרעע ארגוּמענתש עכּספּעצתעד תִימע וֹוּת וֹפּענִינג `%s' תִימעוֹוּת רעאדִינג `%s' תִימעוֹוּת: צוֹוּלד נוֹת רעשוֹלבֿע הארדוארע אדדרעשש תוֹוֹ דעעפּ נעשתִינג וֹפֿ שיִמלִינכּש תראנשלאתוֹר `%s' פֿוֹר פּאתה `%s' האש שעבֿעראל נוֹנ-וֹפּתִיוֹנ ווֹרדש, את לעאשת `%s' אנד `%s' תראנשלאתוֹר `%s' פֿוֹר פּאתה `%s' ִיש גִיבֿענ וֹנליִ וֹפּתִיוֹנש, צאננוֹת פִֿינד דעבִֿיצע פּארת תראנשלאתוֹר צוֹממאנד לִינע ִיש עמפּתיִ פֿוֹר פּאתה `%s' תווֹ ארגוּמענתש עכּספּעצתעד תיִפּע וּנאבּלע תוֹ ִידענתִיפֿיִ א פִֿילעשיִשתעמ ִינ %s; שאפֿעתיִ צהעצכּ צאנ'ת בּע פּערפֿוֹרמעד וּנאלִיגנעד דעבִֿיצע שִיזע וּנעכּספּעצתעד עפִֿי עררוֹר וּנעכּספּעצתעד ענד וֹפֿ פִֿילע וּנכּנוֹונ ארגוּמענת `%s' וּנכּנוֹונ צוֹמפּרעששִיוֹנ %d
 וּנכּנוֹונ דעבִֿיצע תיִפּע %s
 וּנכּנוֹונ פִֿילעשיִשתעמ וּנכּנוֹונ כִּינד וֹפֿ ראִיד דעבִֿיצע `%s' וּנכּנוֹונ רעגעכּספּ עררוֹר וּנכּנוֹונ תארגעת פֿוֹרמאת %s
 וּנכּנוֹונ תערמִינפֿוֹ תיִפּע `%s' וּנרעצוֹגנִישעד דהצפּ וֹפּתִיוֹנ פֿוֹרמאת שפּעצִיפִֿיצאתִיוֹנ `%s' וּנרעצוֹגנִישעד נעתווֹרכּ אדדרעשש `%s' וּנרעצוֹגנִישעד נעתווֹרכּ ִינתערפֿאצע `%s' וּנרעצוֹגנִיזעד נוּמבּער וּנרעשוֹלבֿאבּלע אדדרעשש %s וּנשעת [נאמע ...] וּנשוּפּפּוֹרתעד התתפּ עררוֹר %d: %s וּנשוּפּפּוֹרתעד התתפּ רעשפּוֹנשע וּנשוּפּפּוֹרתעד ראִיד בֿערשִיוֹנ: %d.%d וּנשוּפּפּוֹרתעד גזִיפּ פֿוֹרמאת וּנשוּפּפּוֹרתעד פּלאתפֿוֹרמ %s
 וּנשוּפּפּוֹרתעד שערִיאל פּוֹרת פֿלוֹו צוֹנתרוֹל וּנשוּפּפּוֹרתעד שערִיאל פּוֹרת פּארִיתיִ וּנשוּפּפּוֹרתעד שערִיאל פּוֹרת שפּעעד וּנשוּפּפּוֹרתעד שערִיאל פּוֹרת שתוֹפּ בִּיתש נוּמבּער וּנשוּפּפּוֹרתעד שערִיאל פּוֹרת ווֹרד לענגתה וּשע צוֹלוֹר פֿוֹר בּאצכּגרוֹוּנד וּשע צוֹלוֹר פֿוֹר לאבּעל וּשע צוֹלוֹר פֿוֹר לאבּעל בּאצכּגרוֹוּנד וּשע צוֹלוֹר פֿוֹר תעכּסת וּשע דִיר אש תהע עפִֿי שיִשתעמ פּארתִיתִיוֹנ רוֹוֹת. וּשע דִיר פֿוֹר פּפּצ מאצ ִינשתאלל. וּשע פִֿילע אש פֿוֹנת (פּפֿ2). וּשע פִֿילע אש פֿוֹנת פֿוֹר לאבּעל וּשע פִֿילע אש תהע בּוֹוֹת ִימאגע [דעפֿאוּלת=%s] וּשע פִֿילע אש תהע צוֹרע ִימאגע [דעפֿאוּלת=%s] וּשע פִֿילע אש תהע דעבִֿיצע מאפּ [דעפֿאוּלת=%s] וּשע פִֿילע אש כּסוֹררִישוֹ [וֹפּתִיוֹנאל] וּשע גרוּבּ פִֿילעש ִינ תהע דִירעצתוֹריִ דִיר [דעפֿאוּלת=%s] וּשע שתרִינג אש פּרוֹדוּצת נאמע וּשע שתרִינג אש פּרוֹדוּצת בֿערשִיוֹנ וּשע ִידענתִיפִֿיער פִֿילע עבֿענ ִיפֿ וּוִּיד ִיש אבֿאִילאבּלע וּשע ִימאגעש אנד מוֹדוּלעש וּנדער דִיר [דעפֿאוּלת=%s/<פּלאתפֿוֹרמ>] וּשע תהעמעש וּנדער דִיר [דעפֿאוּלת=%s] וּשע תראנשלאתִיוֹנש וּנדער דִיר [דעפֿאוּלת=%s] בֿארִיאבּלע `%s' ִישנ'ת שעת בִֿישוּאלליִ-וֹרדערעד וּתפֿ-8 ואִית וּנתִיל א דעבּוּגגער וִילל אתתאצה וִילל נוֹת פּרוֹצעעד וִיתה בּלוֹצכּלִישתש ורִיתע וֹוּתפּוּת תוֹ פִֿילע [דעפֿאוּלת=שתדוֹוּת]. ורוֹנג עלִי מאגִיצ וֹר בֿערשִיוֹנ כּסנוּ_וּוִּיד דעבִֿיצע כּסז פִֿילע צוֹררוּפּתעד וֹר וּנשוּפּפּוֹרתעד בּלוֹצכּ וֹפּתִיוֹנש יִוֹוּ צאנ'ת דעלעתע תהִיש אדדרעשש יִוֹוּ נעעד תוֹ לוֹאד תהע כּערנעל פִֿירשת יִוֹוּר בִּיוֹש בּוֹוֹת פּארתִיתִיוֹנ ִיש תוֹוֹ שמאלל; עמבּעדדִינג ווֹנ'ת בּע פּוֹששִיבּלע יִוֹוּר צוֹרע.ִימג ִיש וּנוּשוּאלליִ לארגע.  ִית ווֹנ'ת פִֿית ִינ תהע עמבּעדדִינג ארעא יִוֹוּר עמבּעדדִינג ארעא ִיש וּנוּשוּאלליִ שמאלל.  צוֹרע.ִימג ווֹנ'ת פִֿית ִינ ִית.                                                                                                                                                                                                                                                                             boot/grub/locale/en@piglatin.mo                                                                     0000600 0001750 0001750 00000410002 13417732100 0015451 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                       /     )    S      n  #   n      n     o     1o     Io  $   `o     o  6   o     o     o  	   o     o     o     p     -p     Ep     [p  .   hp  .   p  %   p     p     p    p    r    	s     t  8   +t  '   dt  7   t  F   t  v   u  +   u     u      u     u  !   u     v  ,   1v     ^v     vv  $   v     v  *   v     v     
w     w     "w     :w  
   Zw  	   ew     ow     w  ,   w  ,   w  ,   w  '    x  -   Hx      vx  (   x  (   x  )   x     y     3y     Sy     `y     iy  "   ry  4   y     y     y  7   y     z      z  1   6z     hz     z  %   z  '   z  %   z  '   z     &{     +{     -{     K{     `{     u{     z{     {     {     {     {     {     {     {  3   |     6|  $   <|     a|     y|     |      |     |     |     |     |  -   }     E}  !   b}     }     }     }  #   }     }  `   v~  Z   ~     2     M     i     k     o                      0     3        /     G     a     x                    Ҁ                         !     '  %   6     \     {                    ׁ                       *   8  3   c  1     E   ɂ  C     <   S  1     2                  .     N      k               Ǆ                  7   ?  1   w       +   ȅ            #   1     U  5   p          Ć        -         0     Q     q  "     8                    	   6  #   @     d                    Ո       )        %     D     b  "     P             	  H     &   g            !     ,   ϊ                 	   )  !   3  *   U       '             Ջ            $        >     P     b     }            
   Ҍ  
   ݌       1        -     ;     H     a  3   }  >     $             ,     I     a     |       +        ܎       o     #               $               '   ;  9   c            z   Ԑ  "   O     r     y  8        Ƒ  
   ݑ                    /     ˒  +             ,     A     W  "   j            (        ؓ  #     &     ?   ;  '   {  @                             '  "   9  0   \                 7                            #     /     5  0   <     m                 2     %             .  *   =  6   h  +        ˗            !   ͘  d     e   T  d     i     o     H        B     U     k     |                    ֛  #             1     I  1   [  )                       ՜  /             #     :  5   W            K   ȝ       &             1     F     c     g  7   m  D               '     P        m       	                  Ġ     ؠ     i  '        "  +   1     ]     n  )          9   Ѣ          "     ?     [     p            $        أ       "        (     *     6  (   C     l     p     v  "   ~  +     -   ͤ               #     4     F     X  O   h          Υ                 %        E  )   d  !     "        Ӧ       +        2     I     Y     h  !   z               ѧ     ݧ                0     C     W     u            4             	          3     N     i                  !   ٩       4     M   J  2        ˪       *     8   .     g     t                    ҫ  3   ߫  $     +   8     d     y                    Ĭ                     4     6  D   N         f     m     u  7     ;   ̯          (  !   G     i       s             +     H     Y     l                    ı     ȱ     α     w     0     C     W     ^     j            '     
                            .     <     @     R  H   o  L                  4     D  %   S     y       #        е          
           *     K      j       "     (                %        3  2   M            #     *   Ʒ                 #        /     4  	   F  	   P  "   Z  ;   }  #     <   ݸ          (     F  .   T  	          `           !     )   7     a     e     k     s  q                       ,     C     V     l            "                       ,     C     Y     m       #     a        !     >  g   Z     ½     G     a  -   ~       !          "     '     Q   >               ƿ     ڿ                    8     U     r                                          :  #   U     y            -               "     b   =  )                    ,        @     Y  	   ^  "   h  %                    
          &     )        7  5   J  ^          $     %        D  ^     _   V  }        4  )     '     >   =  D   |  !     '     -     #   9     ]  )   }       )          )     ,   5     b                      E     $   (     M  A   e  )                  
     %      D     e  q   z       :   	     D     b  `   q                    &     <     X  0   m            #               )   &  &   P  #   w  -                             3  )   O     y  %     %     ,     '     :   *     e  -     0     /          .   #  '   R     z       '     $     "                  :  2   H  Q   {  *                )     o   1            6   t                 0           !     "   /  #   R     v                 !          
          <   8     u       %     >        
                    =     V  d   i  *     (     ,   "     O     h  0     6                            (     .  0   H     y  !               $                  2     P     a  $   ~  "     $                        -     N     c     u                                '        <     \  $   u  +     "          )             ,     J     j       '                    <         H     i  %   q                      m        c     ~                 +     3     1   E     w  '     -          '     '     .   4  	   c     m                                   -     H     b     }  *     ?          B      p   C       /   ?     o       .     O     )        C     Y  	   h  <   r       5                  -     C     ^  :   x       1                  +     1     D     K     Q     `     i                      	                             )     <     V     l                 
     
     	          !     )             (  P   :                 n     F   P  N          "               .   .  .   ]  /     W     -     -   B  $   p  #     0     6        !     /     B     U  (   c  1     )                       )     C  !   Z     |                  %          &        F     `  0   ~                       7     .   V       4     #                  2  '   G     o                 %                  .     E     ^     }            ,                            9     L     _  #   t            _     B   ,     o                                &   *     Q     n     |       N     m        `  &   z            7               ;   0  V   l  +     "          &   ,  !   S     u  r                    /     H     F   A  w     N         O  (   g            I     )     $   ,  ,   Q  '   ~       %                            (  $   :  '   _  *     (                    J        g            -     +          $        7  "   @  +   c            -     J        9    U %   t "    9             "   0    S    d     w                            "    7    O %   j                 %           6    I    ]    e [   y     !           $    8    =    Z    g    z                 /    7    4   T /            -        @   8    y 3                   	        / 1   O                     	    	           	 1   	    	 0   
    L
    a
 !   w
    
 J   
 "       $    0    <    R    k    ~                                        %    2 &   H    o                 '    &       ? L   L 9        0       " !   6    X    w                                 #     #   D $   h         &        !               2    G    L    [ 	   q 7   {     D    ]    %   p ,    [    ;    w   [ 7    K    #   W /   {             &    U   ) @    Q           +    A +   V     R    L    .   ?    n     F                       )    A    Y     l             2    !   
 #   ,    P    d    |                     $       ;    Z (   x #                    )   $    N    k     '    '    '        0   5    f     -    8    !    '   (    P    h !         &            .       C !   a B    F    E    B   S t   )     )   5     _     ~       0          D   ! 	   L!    V!    d!    p! &   !    !    !    !    ! ?   " @   F" 3   "    "    " c  " g  4$ h  % "   ' J   (' 7   s' I   ' [   '    Q( 8   (    %) (   :)    c) )   y) %   ) 9   )    *    !* ,   :* !   g* 4   *    * 
   *    *    * *   +    ?+    M+ %   Z+    + @   + ;   + @   , 6   P, C   , /   , 9   , 7   5- 8   m- )   - )   -    - 
   	. 
   . -   . D   M. 
   .    . =   . 
   .    . A   / )   Y/    / .   / 1   / .   / 1   0    H0    O0 (   Q0    z0    0    0    0    0 )   0    1    %1    81    M1    `1 K   s1    1 4   1    1     2    >2 -   T2    2 !   2    2    2 ;   2 )   :3 0   d3    3 &   3    3 .   3    +4    4    f5 "   5 #   6    26    66    >6    ^6    f6    s6 '   6 F   6 J    7    K7 #   k7    7 !   7 #   7    7    8    (8    G8    W8    s8    8    8    8 4   8 )   8    9    $9 "   B9     e9    9    9    9    9    9 ;   : D   D: B   : c   : ^   0; W   ; H   ; I   0< /   z< )   < 1   < +   = .   2= 0   a= *   = )   = +   = ,   > ,   @> Q   m> F   > 0   ? C   7? -   {? ,   ? 4   ? (   @ I   4@ +   ~@ *   @ 1   @ D   A .   LA -   {A "   A 2   A I   A .   IB    xB &   B    B /   B +   B    C -   8C *   fC    C    C 8   C *   C (   %D '   ND 1   vD o   D    E    5E ^   RE 4   E    E    F '   F C   5F    yF    F !   F    F +   F 7   F     !G 4   BG    wG    G #   G     G .   G    #H    9H !   OH !   qH     H %   H    H    H    H 9   I    FI    YI "   jI "   I <   I H   I 0   6J    gJ $   J #   J #   J ,   J    K ?   8K '   xK %   K    K 0   gL    L +   L 6   L    M "   :M 3   ]M M   M "   M +   N    .N 1   N 	   O    O L   4O $   O    O    O     O &   O    P &   P 9   
Q     DQ    eQ "   Q    Q )   Q    Q    Q 7   R     MR 0   nR 4   R W   R 5   ,S X   bS    S    S    S    S    T 0   1T C   bT    T    T    T C   T 	   U    #U    3U    HU    bU    rU    zU D   U    U    U %   U     V D   @V 5   V    V    V ;   V B   )W 4   lW &   W    W '  W .   Y    6Y    Y    VZ    Z    {[ f   \    \    \    \    \    \    \    ]     9] +   Z] &   ]    ]    ] ?   ] 7   "^    Z^    c^    g^    ^ A   ^    ^    ^ (   _ F   1_ &   x_ &   _ e   _ 2  ,` .   _a &   a    a '   a    a 	   b N   b a   Zb    b    b 8   b k   c ,   oc    c    c    c &   c    c     d    d 7   e    e 9   e     f %   9f 5   _f #   f J   f    g %   "g "   Hg    kg    g    g    g .   g    h "   )h ,   Lh    yh    }h    h 7   h    h 	   h 	   h /   h <   !i ;   ^i !   i    i    i    i    j    j n   0j    j     j    j    j    k 1   +k )   ]k =   k 0   k 1   k #   (l    Ll 8   kl    l    l    l    l ,   m #   5m     Ym    zm    m +   m "   m    m    n &   -n $   Tn    yn    n O   n *   n    &o     Bo #   co #   o !   o !   o *   o /   p /   Jp "   zp I   p h   p A   Pq "   q &   q 8   q M   r    cr    ur     r    r !   r    r D   s 3   Ks 8   s    s    s    s    t    t "   2t )   Ut '   t    t    t    t i   t   Nu    w 	   w .   w J   x Q   bx )   x -   x 1   y    >y )   [y    y    %z '   Cz    kz    z    z    z "   z    z    { 	   {    !{ 
  |    }    $}    ?}    H} )   V} %   }    } :   }    ~    ~    '~    C~    J~    h~    z~    ~ $   ~ e   ~ `   $     *            3    "   & !   I .   k &    $            .    '   B +   j     -    4   Ձ %   
    0 2   B $   u A       ܂ "    -    8   9    r    v     /       ă    ˃         /    R   . 0    S        '       @ ?   P                8 ,   V 6        	    	   ʆ    Ԇ                Ç    և            * )   F '   p .       ǈ             '    E    b    }     0        '   m (           \     " (   C @   l     .   ʌ     .    7   = u   u #    !       1    K    ] '   } &    '   ̎ &    &    %   B     h     +       Ǐ     (    #   " 0   F    w     )    =   ֐ "       7 1   Q     8       >     [ #   | B    &       
     +    0   I    z !            
    3   ē 6       / J   L     $    2   B 2   u            ,       f ;   n 7    N    U   1 2    ;    @    4   7 ,   l :    &   ԛ 6    ,   2 ;   _ >    (   ڜ "    $   &     K    l N    3   ҝ     ]   & :    '    %    $    *   2 ,   ]         %   C L   i )            '   { "       ơ     #       ' B   E "    +    -   ע          :   < 9   w 2    >    *   # "   N +   q     $    7   ۤ     4   ' 3   \ :    5   ˥ R    +   T ?    @    @       B A   W 5       ϧ     9    2   = 0   p     )       ٨ F    q   4 7    	   ީ     4       & "   Ǫ    L       @    D    M C   V (    .   ì /    0   "    S -   l     )    .           - #   = P   a %    !   خ 8    Q   3 
        	    +        ̯         ;    6   а ;        C !   d >    O   ű 	           2    N    h "   q >       Ӳ -    (       D -   Z          $   ɳ     )    -   / +   ] .    !       ڴ     )       <    Z    r         &    $   ٵ     $    .   B )   q      +    2    )    	   E 7   O     &    *   ŷ         8   + -   d (        T   ָ )   + 	   U 3   _            й          #    "    #   Һ "    "    =   < B   z <        7   
 A   B 
    4    4   ļ @       : #   F    j &    %    &   ֽ %    %   # $   I !   n          :    Y       K a   g    ɿ    b 8   $    ]    x >    c    5   7    m         N    %    J   "    m         "    !    L   	    V A   o %                           &    : !   F    h                     "        )       9 !   Q    s      	                            1    3   5    i     p    (   
 )   3 &   ]     h    t        0       =    E @   ^ @    B    |   # E    A    7   ( 4   ` F    O       ,    ?    W    o /    :    <    "   ) "   L    o !        ,        +    +   8 #   d 4        5    !    %   4 ?   Z +    *        "    J   3 @   ~ !    F    +   ( &   T *   {     4    )    $   #    H )   e 0                 "    (   >    g    | "    >             %    '   :    b    y     /    "             ! Z    %    /   %    U %   q     &    '    4    &   ;    b    v $    j        !    8       	 #   & K   J         P    {    9    /    "    5   " .   X !           S    Z -   E A   s g    b        s   *     A    $       " d   1 9    5    @    3   G     { 1            !           0 3   G 5   { 8    8    %   #    I    ] g   } (    &       5 C   Q :        .        -    4   B    w !    :    e    "   X *   { 5    /    M       Z -   y 0            +   	    5 !   P !   r         $            %   + 2   Q     ,    *    &    1       I    g             ~       ? .   [ %            )                .    O    n     !    @    O    E   [ ?    )         ;   , $   h R        F       E    e &   }         -    H       M     d                            D   ' (   l ?            +    $   < f   a ,                "   7    Z    s                                (    ?    W    h 5    '        !     (   "    K 2   h 0        p    P   N (    ?        0   " *   S    ~ +                       $    A    V 0   j 0    2            4   -    b )   w     !                       4 P   @ &    g         6    >       # Q        P    k    0   j  C     *     /   
 /   : ;   j r    X    p   r      !       & 8   C '   | {    m     B            b       Z    w !                    0   +    \     y %    B    -    /   1    a    z     %         &           ; /   Y '    &    5    .   	 !   =	    _	 )   |	    	 <   	 *   	 #   *
 (   N
 8   w
 8   
 7   
 +   ! B   M &    )    D    L   & -   s 3    $        0    *   J 3   u &        ?    (   ' -   P Z   ~ _    f   9 a       V      s                 r           M  (  q  t     )   K          ]  U          (           @   h  K  c    k          C    O              \               A            B        H           S   4        w   A   R      [                     +           i        W        0  e  d                          $                 A  f               /  v      ?       a    1      5  v                      #            j       ~              g          X  "  )      5  v  #  ~                w  .      B       }                  u         z                    _             ?    *             F          o                                                                J                       ~  Q                  l                      r  t               r    8                  Z  <      z      ;   t   T              '                     j  p    3  <            $      n  0      2     	                     b                            N         g                p    j      ^                                      o  O    I          L  '                !  U  W  C                     D               P      v  k      V           M  =  u                       a            }      ~    `      e                   \                              l                        x  "  V  6    ,      2  w  #    k  z                   O      %                               G       *      b  N  Z    ,  N   D  N           V            L  v     2    ?  T        G           !  I  &    W          x      9     w    Y      p         0                ;                    z                                   u  z             ;     x          \    "  (            I  7  &          *  b           {      	              L       W  T         +         c     Z             Q          .  y  2          4  :          S            -      \                       _        T                        r                                 X              8    #     3   d                  8                     R        g      A    d                      U                                       f                  (             ^         F                `         `                             "   r                     !      K    =   G            !              N                                         '    l  u    >  <         >  ^       7               M                                                   a  W      &                       ~             ,                [             )          3                                 h          Z                      1          M    /           Z                  5       J    i                            ,                    I  #   i                 l  g       ;    4      B                                 }        :        :                 %                              H              _               y   U            c                                	  "                f            /  e        C    C                       
        /     {    &  -         Q  +      &                    L  X          S        q  P    0  '         E      `  i         }        +            	                |               D          3                9    >   |            |         7     
   "    s   <  9            F       T                R   ,                         -      w          (      l                }  V        j  c    f             J                       .    P                    p            *  ?     n                    [    (    :              D                    f  0     n     q   Q                |    y      {  6   @                 @  
    E                     x                                     F    G     
    b    Y                      t     ]                 y         q  -             &    A      =  7  =    ^                                            >                    m  4       `               M  s         t  Q        {     4  e  ^                          P      $  )  6        U                           .    G      H  !   [        )      >    q           9           S  d        O      9               p         X      R  B  E   %     E  n         C        8   K      S       {        /                                     h      5  *  *  _          1   
      /                                    %     :              g        H    .             	              H        ,             '        Y  1    +                    m      -                                  E                 h                          o         F      I          k        ]                a      2    h   %    .         a              j       
          '  n                             -            k   o    +        u       <   %                        ]          e              b         @      =        $   s    \  m                        J    d     !          )          R               X                    3          @      J                        $    6          $        i  Y      7   6               Y                   y            B                8    |     #  s        ?       1           L           5              ;  K        o   P    	            [                           D                   _                  m    ]           m             x           c  O                    total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s doesn't exist. Please specify --target or --directory %s doesn't look like an EFI partition.
 %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: not found %s: option '%c%s' doesn't allow an argument
 %s: option '%s' is ambiguous; possibilities: %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- --ppc PATH|--x86 FILE -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add PUBKEY_FILE to trusted keys. Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Bless DIR of HFS or HFS+ partition for PPC macs. Bless FILE of HFS or HFS+ partition for intel macs. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't create file: %s Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check if CPU supports Physical Address Extension. Check if FILE can be booted as i386 PAE Xen unprivileged guest kernel Check if FILE can be booted as x86_64 Xen unprivileged guest kernel Check if FILE can be used as Xen x86 privileged guest kernel Check if FILE can be used as x86 multiboot kernel Check if FILE can be used as x86 multiboot2 kernel Check if FILE is ARM EFI file Check if FILE is ARM Linux Check if FILE is ARM64 EFI file Check if FILE is ARM64 Linux Check if FILE is BIOS bootsector Check if FILE is IA64 EFI file Check if FILE is IA64 Linux Check if FILE is MIPS Linux Check if FILE is MIPSEL Linux Check if FILE is POWERPC Linux Check if FILE is SPARC64 Linux Check if FILE is XNU (Mac OS X kernel) hibernated image Check if FILE is hiberfil.sys in hibernated state Check if FILE is i386 EFI file Check if FILE is i386 XNU (Mac OS X kernel) Check if FILE is i386 kFreeBSD Check if FILE is i386 kNetBSD Check if FILE is of specified type. Check if FILE is x86 Linux Check if FILE is x86 Linux supporting 32-bit protocol Check if FILE is x86 kFreeBSD Check if FILE is x86 kNetBSD Check if FILE is x86_64 EFI file Check if FILE is x86_64 XNU (Mac OS X kernel) Check if FILE is x86_64 kFreeBSD Check if FILE is x86_64 kNetBSD Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear bit at BYTE:BIT in CMOS. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find a free BootNNNN slot Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Default server is ${net_default_server} Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not apply any reed-solomon codes when embedding core.img. This option is only available on x86 BIOS targets. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. EFI bootloader id isn't specified. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enable/disable RTS/CTS. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Evaluate arguments as GRUB commands Execute syslinux config in new context Execute syslinux config in new context taking only menu entries Execute syslinux config in same context Execute syslinux config in same context taking only menu entries Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FONTS FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File size: %s
 File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Generates a bootable CD/USB/floppy image.  Arguments other than options to this program are passed to xorriso, and indicate source files, source directories, or any of the mkisofs options listed by the output of `%s'. Generating grub configuration file ... Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s Glue 32-bit and 64-bit binary into Apple universal one. Graft point syntax (E.g. /boot/grub/grub.cfg=./grub.cfg) is accepted HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS INSTALL_DEVICE must be system device filename.
%s copies GRUB images into %s.  On some platforms, it may also install GRUB into the boot sector. If FILENAME is `-', the default value %s is used.

There is no `delete' command; if you want to delete the whole environment
block, use `rm %s'. Import ZFS wrapping key stored in FILE. Incorrect VDEV Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Installing for %s platform.
 Insufficient privileges to access firmware, assuming BIOS Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s LOCALES Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List Xen storage. List all files. List available video modes. If resolution is given show only modes matching it. List coreboot tables. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load DTB file. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load Truecrypt ISO. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load module. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... M MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MENU_ENTRY is a number, a menu item title or a menu item identifier. Please note that menu items in
submenus or sub-submenus require specifying the submenu components and then the
menu item component. The titles should be separated using the greater-than
character (>) with no extra spaces. Depending on your shell some characters including > may need escaping. More information about this is available
in the GRUB Manual in the section about the 'default' command.  MODULE MODULES Mac-style bless on HFS or HFS+ Mail xorriso support requests to <bug-xorriso@gnu.org>. Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NOT RUNNING:  NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Netboot directory for %s created. Configure your DHCP server to point to %s
 Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OPTIONS FILE OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Option -- switches to native xorriso command mode. Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] PUBKEY_ID Paletted  Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Prepares GRUB network boot images at net_directory/subdir assuming net_directory being TFTP root. Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot into firmware setup menu. Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove PUBKEY_ID from trusted keys. Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Render Apple .disk_label. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING STRING ... Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Script `%s' contains no commands and will do nothing
 Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set bit at BYTE:BIT in CMOS. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the base frequency. Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting GRUB_TIMEOUT to a non-zero value when GRUB_HIDDEN_TIMEOUT is set is no longer supported. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show CBMEM console content. Show a help message. Show a long list with more detailed information. Show boot time statistics. Show contents of FILE in hex. Show coreboot boot time statistics. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show raw dump of the CMOS contents. Show raw dump of the PCI configuration space. Show the contents of a file. Show the current mappings. Show the list of trusted keys. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Skip signature-checking of the environment file. Skip signature-checking of the public key file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Sorry, no parttool is available for %s
 Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Storage information for `%s' does not include type Storage information for `%s' indicates neither a plain partition nor a plain disk Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Switch to native disk drivers. If no modules are specified default set (pata,ahci,usbms,ohci,uhci,ehci) is used Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 T TARGET THEMES Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This VDEV is a RAIDZ%llu
 This VDEV is a mirror This entry can be booted by any user. This requires setting GRUB_DEFAULT=saved in %s/default/grub.\n Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Transform syslinux config into GRUB one. Translate SET1 characters to SET2 in STRING. Translate to lower case. Translate to upper case. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown platform `%s-%s' Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized compression `%s' Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME VDEV element number %d isn't correct
 VDEV element number %d:
 VDEV with %d children
 Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. You've found a bug Your embedding area is unusually small.  core.img won't fit in it. Your xorriso doesn't support `--grub2-boot-info'. Some features are disabled. Please use xorriso 1.2.9 or later. Your xorriso doesn't support `--grub2-boot-info'. Your core image is too big. Boot as disk is disabled. Please use xorriso 1.2.9 or later. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] [-s|--skip-sig] [variable_name_to_whitelist] [...] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [-s|--skip-sig] FILE SIGNATURE_FILE [PUBKEY_FILE] [-s|--skip-sig] PUBKEY_FILE [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [DIR] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTIONS] [SET1] [SET2] [STRING] [OPTION] SOURCE... [OPTION] [INSTALL_DEVICE] [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `%s' is miscompiled: its start address is 0x%llx instead of 0x%llx: ld.gold bug? `%s' is not a local disk `cryptomount' command fails: %s `loopback' command fails: %s `nvsetenv' failed. 
You will have to set `boot-device' variable manually.  At the IEEE1275 prompt, type:
  %s
 `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found assume input is a pxelinux configuration file. assume input is a syslinux configuration file. assume input is an isolinux configuration file. attempt to install to encrypted disk without cryptodisk enabled. Set `%s' in file `%s'. attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: available targets: bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format bless for ppc-based macs bless for x86-based macs blocklist FILE blocklists are incomplete blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't compress `%s' to `%s' can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s can't set %dx%d font size: Freetype error %d: %s cannot compress the kernel image cannot copy `%s' to `%s': %s cannot delete `%s': %s cannot find EFI directory cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot find locale `%s' cannot get translator command line for path `%s': %s cannot make temporary directory: %s cannot make temporary file: %s cannot open OS file `%s': %s cannot open `%s': %s cannot open configuration file `%s': %s cannot open directory `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu compress GRUB files [optional] connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find IEEE1275 device path for %s.
You will have to set `boot-device' variable manually couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d current directory of the syslinux [default is parent directory of input file]. current directory of the syslinux as it will be seen on runtime  [default is parent directory of input file]. cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit device tree must be supplied (see `devicetree' command) disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. disk read fails at offset %lld, length %lld diskboot.img size must be %u bytes do not install bootsector do not probe for filesystems in DEVICE domain name component is too long don't update LED state don't update the `boot-device'/`Boot*' NVRAM variables. This option is only available on EFI and IEEE1275 targets. done embed FILE as a memdisk image
Implies `-p (memdisk)/boot/grub' and overrides any prefix supplied previously, but the prefix itself can be overridden by later options embed FILE as an early config embed FILE as public key for signature checking embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enable ARCS (big-endian mips machines, mostly SGI) boot. Disables HFS+, APM, sparc64 and boot as disk image for i386-pc enable sparc boot. Disables HFS+, APM, ARCS and boot as disk image for i386-pc enabling %s support ... enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to copy Grub to the PReP partition failed to get canonical path of `%s' failed to read the sectors of the core image failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' is too big file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists filesystem on %s is neither HFS nor HFS+ firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification initrd already loaded install FONTS [default=%s] install GRUB for TARGET platform [default=%s] install GRUB images under the directory DIR/%s instead of the %s directory install THEMES [default=%s] install device isn't specified install even if problems are detected install only LOCALES [default=all] install only MODULES and their dependencies [default=all] invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid argument invalid block size invalid color specification `%s' invalid device tree invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid modinfo file `%s' invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' invalid zImage ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no EFI routines are available for your platform no EFI routines are available when running in BIOS mode no IEEE1275 routines are available for your platform no SGI routines are available for your platform no `/' in canonical filename no command is specified no compression is available for your platform no decryption key available no hints available for your platform. Expect reduced performance no network card found no random number generator is available for your OS no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected only ipv4 only ipv6 other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found plain Image kernel not supported - rebuild with CONFIG_(U)EFI_STUB enabled pre-load specified modules MODULES prefer ipv4 prefer ipv6 premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print TARGET print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory as it will be seen on runtime [default=/]. root directory of TFTP server root directory of the syslinux disk [default=/]. route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the label to render set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the ID of bootloader. This option is only available on EFI and Macs. the PReP partition is not empty. If you are sure you want to use it, run dd to clear it: `%s' the argument `%s' requires an integer the chosen partition is not a PReP partition the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive %s is defined multiple times in the device map %s the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected EFI error unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported platform %s
 unsupported serial port flow control unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for label use COLOR for label background use COLOR for text use DIR as the EFI System Partition root. use DIR for PPC MAC install. use FILE as font (PF2). use FILE as font for label use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] use themes under DIR [default=%s] use translations under DIR [default=%s] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists write output to FILE [default=stdout]. wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your LDM Embedding Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub 2.02~beta2
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-12-24 21:18+0100
Last-Translator: Automatically generated
Language-Team: none
Language: en@piglatin
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=(n != 1);
               otaltay emorymay: %d iBKay
     oNay eferredpray odemay availableway
     eferredPray odemay: %ux%u
   EDIDway ecksumchay invalidway   EDIDway ersionvay: %u.%u
   ailedFay otay initializeway ideovay adapterway   oNay infoway availableway   EVBay infoway:   ersionvay: %d.%d  OEMway oftwaresay evray: %d.%d
   orway:   (eftmostlay)  (edialmay)  (ightmostray)  - artitionPay artstay atway %llu%sKiB  - ectorSay izesay %uB  - otalTay izesay %llu%sKiB  - otalTay izesay unknownway  [OPTIONway...] %.*say: ARGPway_ELPHay_FMTay arameterpay ustmay ebay ositivepay %.*say: ARGPway_ELPHay_FMTay arameterpay equiresray away aluevay %.*say: Unknownway ARGPway_ELPHay_FMTay arameterpay %ds %ds emainingray. %s appearsway otay ontaincay away %s ilesystemfay ichwhay isnway'tay ownknay otay eserveray acespay orfay OSDay-ylestay ootbay.  Installingway UBGRay erethay ouldcay esultray inway ILESYSTEMFay ESTRUCTIONDay ifway aluablevay ataday isway overwrittenway ybay ubgray-etupsay (--ipskay-fsay-obepray isablesday isthay eckchay, useway atway your ownway iskray) %s appearsway otay ontaincay away %s artitionpay apmay andway LDMay ichwhay isnway'tay ownknay otay ebay away afesay ombinationcay.  Installingway UBGRay erethay ouldcay esultray inway ILESYSTEMFay ESTRUCTIONDay ifway aluablevay ataday isway overwrittenway ybay ubgray-etupsay (--ipskay-fsay-obepray isablesday isthay eckchay, useway atway your ownway iskray) %s appearsway otay ontaincay away %s artitionpay apmay ichwhay isnway'tay ownknay otay eserveray acespay orfay OSDay-ylestay ootbay.  Installingway UBGRay erethay ouldcay esultray inway ILESYSTEMFay ESTRUCTIONDay ifway aluablevay ataday isway overwrittenway ybay ubgray-etupsay (--ipskay-fsay-obepray isablesday isthay eckchay, useway atway your ownway iskray) %s oesday otnay upportsay UUIDsway %s oesnday'tay existway. easePlay ecifyspay --argettay orway --irectoryday %s oesnday'tay ooklay ikelay anway EFIway artitionpay.
 %s eneratesgay away eyboardkay ayoutlay orfay UBGRay usingway ompckbcay\n %s isway eprecatedday. Useway etsay ayloadgfxpay=%s eforebay inuxlay ommandcay insteadway.
 %s isway eprecatedday. AVGay odemay %d isnway'tay ecognizedray. Useway etsay ayloadgfxpay=IDTHxHEIGHTWay[EPTHxDay] eforebay inuxlay ommandcay insteadway.
 %s isway otnay yet upportedsay ybay ubgray-onfigmkcay.\n %s, ithway urdHay %s %s, ithway urdHay %s (ecoveryray odemay) %s, ithway inuxLay %s %s, ithway inuxLay %s (ecoveryray odemay) %s, ithway enXay %s andway inuxLay %s %s, ithway enXay %s andway inuxLay %s (ecoveryray odemay) %s, ithway enXay ypervisorhay %s, ithway eeBSDkFray %s %s, ithway eeBSDkFray %s (ecoveryray odemay) %s, ithway ernelkay %s (iavay %s) %s, ithway ernelkay %s (iavay %s, ecoveryray odemay) %s: ASHHay ISMATCHMay
 %s: OKway
 %s: EADRay ERRORway
 %s: ooTay anymay argumentsway
 %s: You ustmay unray isthay asway ootray\n %s: errorway: %s: infoway: %s: invalidway optionway -- ‘%c’
 %s: otnay oundfay %s: optionway ‘%c%s’ oesnday'tay allowway anway argumentway
 %s: optionway ‘%s’ isway ambiguousway; ossibilitiespay: %s: optionway ‘--%s’ oesnday'tay allowway anway argumentway
 %s: optionway ‘--%s’ equiresray anway argumentway
 %s: optionway ‘-Way %s’ oesnday'tay allowway anway argumentway
 %s: optionway ‘-Way %s’ isway ambiguousway
 %s: optionway ‘-Way %s’ equiresray anway argumentway
 %s: optionway equiresray anway argumentway -- ‘%c’
 %s: optionway equiresray anway argumentway -- ‘%s’\n %s: unrecognizedway optionway ‘%c%s’
 %s: unrecognizedway optionway ‘--%s’
 %s: arningway: (32-itbay) (64-itbay) (OGRAMPRay ERRORway) oNay ersionvay ownknay!? (OGRAMPRay ERRORway) Optionway ouldshay avehay eenbay ecognizedray!? (onway %s) - abelLay ‘%s’ - astLay odificationmay imetay %d-%02d-%02d %02d:%02d:%02d %s --OREMay-- --ppcay ATHPay|--xay86 ILEFay -hay ASHHay [-cay ILEFay [-pay EFIXPRay]] [ILEFay1 [ILEFay2 ...]] -lay | -ray | [-say] ubdevgray osdiskway. .5 16-itbay otectedpray interfaceway upportedsay
 16-itbay otectedpray interfaceway unsupportedway
 32-itbay otectedpray interfaceway upportedsay
 32-itbay otectedpray interfaceway unsupportedway
 =ALVay > ACPIway onnay-olatilevay oragestay AMRay ACPIway eclaimableray AMRay ACPIway utdownshay ailedfay ADDRway ADDRway ALUEVay [ASKMay] ADDRway [IZESay] ADDRway1,ASKMay1[,ADDRway2,ASKMay2[,...]] ADDRESSway ERVERDNSSay APMway isabledday
 APMway isengagedday
 APMway enabledway
 APMway engagedway
 ARGPway_ELPHay_FMTay: %s aluevay isway esslay anthay orway equalway otay %s ASCIIway Acceptway OSDay-ylestay CRay/NLay inelay endingsway. Activeway inputway erminalstay: Activeway outputway erminalstay: Adapterway ‘%s’:
 Addway UBKEYPay_ILEFay otay ustedtray eyskay. Addway away DNSay erversay Addway away etworknay addressway. Addway away etworknay outeray. Advancedway optionsway orfay %s Advancedway optionsway orfay %s (ithway enXay ypervisorhay) Allowway otay interruptway ithway ESCway. Askway orfay ilefay amenay otay ebootray omfray. Assumeway inputway isway exhay. Assumeway inputway isway assphrasepay. Assumeway inputway isway awray. Attemptingway otay ecryptday astermay eykay... Attemptingway otay installway UBGRay otay away iskday ithway ultiplemay artitionpay abelslay orway othbay artitionpay abellay andway ilesystemfay.  isThay isway otnay upportedsay yet. Attemptingway otay installway UBGRay otay away iskday ithway ultiplemay artitionpay abelslay.  isThay isway otnay upportedsay yet. Attemptingway otay installway UBGRay otay away artitionlesspay iskday orway otay away artitionpay.  isThay isway away ADBay ideaway. Availableway inputway erminalstay: Availableway outputway erminalstay: Bay Bay/say IOSBay_UMPDay [INTway10_UMPDay] OCKBLay YTEBay:ITBay ackgroundBay imageway odemay. aseBay irectoryday orfay ashhay istlay. essBlay IRDay ofway HFSay orway HFSay+ artitionpay orfay PPCay acsmay. essBlay ILEFay ofway HFSay orway HFSay+ artitionpay orfay intelway acsmay. ootBay IOSBay-asedbay ystemsay. ootBay anway operatingway ystemsay. ootBay intoway inglesay odemay. ootBay ithway ebugday essagesmay. ootBay ithway erbosevay essagesmay. ootingBay ‘%s’ ootingBay away ommandcay istlay ootingBay inway indblay odemay ootpathBay: %s
 ootpathBay: unavailableway
 eakBray intoway GDBay ACGay  OLORCay OMMANDCay [ARGSway] UCPay Idleway oesnday'tay owslay ownday ocessorpray
 UCPay Idleway owsslay ownday ocessorpray
 CSay5536 atway %d:%d.%d
 anCay'tay eatecray ilefay: %s anCay'tay enableway OMRay areaway. angeChay onfiguredcay evicesday. angeChay artitionpay ypetay eckChay Altway eykay. eckChay ontrolCay eykay. eckChay iftShay eykay. eckChay orfay UCPay eaturesfay. eckChay asheshay ofway ilesfay ithway ashhay istlay ILEFay. eckChay ifway UCPay upportssay 64-itbay (onglay) odemay (efaultday). eckChay ifway UCPay upportssay ysicalPhay Addressway Extensionway. eckChay ifway ILEFay ancay ebay ootedbay asway iway386 AEPay enXay unprivilegedway uestgay ernelkay eckChay ifway ILEFay ancay ebay ootedbay asway xay86_64 enXay unprivilegedway uestgay ernelkay eckChay ifway ILEFay ancay ebay usedway asway enXay xay86 ivilegedpray uestgay ernelkay eckChay ifway ILEFay ancay ebay usedway asway xay86 ultibootmay ernelkay eckChay ifway ILEFay ancay ebay usedway asway xay86 ultibootmay2 ernelkay eckChay ifway ILEFay isway ARMway EFIway ilefay eckChay ifway ILEFay isway ARMway inuxLay eckChay ifway ILEFay isway ARMway64 EFIway ilefay eckChay ifway ILEFay isway ARMway64 inuxLay eckChay ifway ILEFay isway IOSBay ootsectorbay eckChay ifway ILEFay isway IAway64 EFIway ilefay eckChay ifway ILEFay isway IAway64 inuxLay eckChay ifway ILEFay isway IPSMay inuxLay eckChay ifway ILEFay isway IPSELMay inuxLay eckChay ifway ILEFay isway OWERPCPay inuxLay eckChay ifway ILEFay isway ARCSPay64 inuxLay eckChay ifway ILEFay isway UXNay (acMay OSway Xay ernelkay) ibernatedhay imageway eckChay ifway ILEFay isway iberfilhay.yssay inway ibernatedhay atestay eckChay ifway ILEFay isway iway386 EFIway ilefay eckChay ifway ILEFay isway iway386 UXNay (acMay OSway Xay ernelkay) eckChay ifway ILEFay isway iway386 eeBSDkFray eckChay ifway ILEFay isway iway386 etBSDkNay eckChay ifway ILEFay isway ofway ecifiedspay ypetay. eckChay ifway ILEFay isway xay86 inuxLay eckChay ifway ILEFay isway xay86 inuxLay upportingsay 32-itbay otocolpray eckChay ifway ILEFay isway xay86 eeBSDkFray eckChay ifway ILEFay isway xay86 etBSDkNay eckChay ifway ILEFay isway xay86_64 EFIway ilefay eckChay ifway ILEFay isway xay86_64 UXNay (acMay OSway Xay ernelkay) eckChay ifway ILEFay isway xay86_64 eeBSDkFray eckChay ifway ILEFay isway xay86_64 etBSDkNay eckChay eykay odifiermay atusstay. eckChay etherwhay userway isway inway USERLISTway. ecksChay UBGRay iptscray onfigurationcay ilefay orfay yntaxsay errorsway. earClay itbay atway YTEBay:ITBay inway OSCMay. earClay ethay eenscray. earedClay activeway agflay onway %d. 
 ommandsCay: ompareCay ILEFay ithway ocallay ilefay OCALLay. ompareCay ilefay ‘%s’ ithway ‘%s’:
 ompareCay otway ilesfay. omputeCay UXNay UUIDway ofway ethay eviceday. omputeCay orway eckchay ashhay ecksumchay. onfigureCay erialsay ortpay. ontinueCay oopslay onvertCay ommoncay ontfay ilefay ormatsfay intoway PFay2 opyCay ILEFay otay ocallay ilefay OCALLay. opyCay ILEFay otay andardstay outputway. ouldCay otnay ocatelay AFPSWay iverdray ouldnCay'tay indfay away eefray ootNNNNBay otslay ouldnCay'tay indfay ysicalphay olumevay ‘%s’. omeSay odulesmay aymay ebay issingmay omfray orecay imageway. ouldnCay'tay oadlay ashay256 ouldnCay'tay oadlay ashay512 eateCray IOSBay-ikelay ucturesstray orfay ackwardbay ompatibilitycay ithway existingway OSway. eateCray away ankblay environmentway ockblay ilefay. urrentCay erminfotay ypestay: EVICEDay EVICEDay [ARTITIONPay[+/-[YPETay]]] ... EVICEDay ustmay ebay anway OSway eviceday (eway.gay. /evday/asday). EVICEDay_AMENay IRDay IRECTORYDay [OSBundleRequiredway] ERVERDNSSay ebugDay ooltay orfay ilesystemfay iverdray. eclareDay emorymay egionsray asway aultyfay (adrambay). ecompressorDay isway ootay igbay efaultDay erversay isway ${etnay_efaultday_erversay} efineDay away enumay entryway. efineDay away ubmenusay. eleteDay away etworknay addressway. eleteDay away etworknay outeray. eleteDay ethay ecifiedspay oopbacklay ivedray. eleteDay ariablesvay. etermineDay iverdray. etermineDay ilesystemfay UUIDway. etermineDay ilesystemfay abellay. etermineDay ilesystemfay ypetay. etermineDay artitionpay apmay ypetay. eviceDay %s: evidDay: %s
 evidDay: unavailableway irectDay olorcay, askmay: %d/%d/%d/%d  ospay: %d/%d/%d/%d isableDay ACPIway. isableDay SMPay. isableDay allway ootbay outputway. isableDay/enableway ARTSMay (0/1). iscardingDay improperlyway estednay artitionpay (%s,%s,%s%d) iskDay achecay atisticsstay: itshay = %lu (%lu.%02lu%%), issesmay = %lu
 iskDay ountcay ustmay ecedepray isksday istlay.
 isplayDay AFPSWay ersionvay. isplayDay ARTSMay ealthhay atusstay. isplayDay away inelay ofway exttay. isplayDay ocklistblay ofway ILEFay. isplayDay outputway onway allway onsolescay. isplayDay owerpay odemay. isplayDay ethay usageway ofway isthay ommandcay andway exitway. isplayDay isthay elphay andway exitway. isplayDay/etsay urrentcay atetimeday. oDay otnay applyway anyway eedray-olomonsay odescay enwhay embeddingway orecay.imgway. isThay optionway isway onlyway availableway onway xay86 IOSBay argetstay. oDay otnay outputway ethay ailingtray ewlinenay. oDay otnay intpray essagesmay. oDay otnay obepray anyway oppyflay ivedray. oDay otnay useway APMway otay althay ethay omputercay. oDay othingnay, uccessfullysay. oDay othingnay, unsuccessfullyway. onDay'tay isplayday ootbay iagnosticday essagesmay. onDay'tay oadlay osthay ablestay ecifiedspay ybay ommacay-eparatedsay istlay. onDay'tay ebootray, ustjay althay. onDay'tay opstay afterway irstfay errorway. onDay'tay updateway EBDAway. ayMay ixfay ailuresfay orway angshay onway omesay IOSesBay utbay akesmay itway ineffectiveway ithway OSway otnay eceivingray RSDPay omfray UBGRay. EFIway ootloaderbay idway isnway'tay ecifiedspay. ENVVARway ENVVARway [ENVVARway] ... ERRORway: onay alidvay eyboardkay ayoutlay oundfay. eckChay ethay inputway.
 ESCway atway anyway imetay exitsway. EXPRESSIONway EXPRESSIONway ] Elapsedway imetay: %d.%03d say 
 Elapsedway imetay: %d.%03d econdssay 
 Embeddingway isway otnay ossiblepay.  UBGRay ancay onlyway ebay installedway inway isthay etupsay ybay usingway ocklistsblay.  oweverHay, ocklistsblay areway UNRELIABLEway andway eirthay useway isway iscouragedday. Emulateway away eystrokekay equencesay Enableway interpretationway ofway ackslashbay escapesway. Enableway/isableday RTSay/CTSay. Enterway ZFSay asswordpay:  Enterway inway KDBay onway ootbay. Enterway ormalnay odemay. Enterway assphrasepay orfay %s%s%s (%s):  Enterway asswordpay:  Enterway usernameway:  Errorway inway arsingpay ommandcay inelay argumentsway
 Evaluateway anway expressionway. Evaluateway argumentsway asway UBGRay ommandscay Executeway yslinuxsay onfigcay inway ewnay ontextcay Executeway yslinuxsay onfigcay inway ewnay ontextcay akingtay onlyway enumay entriesway Executeway yslinuxsay onfigcay inway amesay ontextcay Executeway yslinuxsay onfigcay inway amesay ontextcay akingtay onlyway enumay entriesway Exitway ailedfay Exitway omfray UBGRay. Exitway omfray oopslay Exitway omfray ormalnay odemay. Exportway ariablesvay. Exportway ersionvay 1 ablestay otay ethay OSway. Exportway ersionvay 2 andway ersionvay 3 ablestay otay ethay OSway. ILEFay ILEFay [ARGway ...] ILEFay [ARGSway...] ILEFay | EMPOTay [ITCHPay1 URATIONDay1] [ITCHPay2 URATIONDay2] ...  ILEFay... ILEFay1 ILEFay2 ILENAMEFay OMMANDCay ILESYSTEMFay [ARIABLEVay] ILEFay|omptpray ONTSFay ORMATFay AFPSWay otocolpray asnway'tay ableway otay indfay ethay interfaceway AFPSWay evisionray: %x
 OMFRay-OTay[,OMFRay-OTay] OMFRay[Kay|May|Gay] OTay[Kay|May|Gay] FTay_Initway_eeTypeFray ailsfay ailedFay otay ootbay othbay efaultday andway allbackfay entriesway.
 ailedFay otay eatecray ‘eviceday-appermay’ eetray allingFay ackbay otay ‘%s’ ileFay izesay: %s
 ileFay ystemsay ‘%s’ oesnday'tay upportsay embeddingway ilesFay ifferday atway ethay offsetway %llu: 0x%x [%s], 0x%x [%s]
 ilesFay ifferday inway izesay: %llu [%s], %llu [%s]
 ilesystemFay annotcay ebay accessedway ilesystemFay ypetay %s illFay ybridhay MBRay ofway GPTay ivedray EVICEDay. ecifiedSpay artitionspay illway ebay away artpay ofway ybridhay MBRay. Upway otay 3 artitionspay areway allowedway. YPETay isway anway MBRay ypetay. + eansmay atthay artitionpay isway activeway. Onlyway oneway artitionpay ancay ebay activeway. inalizeFay oadinglay ofway EFIway emulatorway. irstFay ytray ethay eviceday INTHay ifway urrentlycay unningray onway ARCway. Ifway INTHay endsway inway ommacay, alsoway ytray ubpartitionssay irstFay ytray ethay eviceday INTHay ifway urrentlycay unningray onway IOSBay. Ifway INTHay endsway inway ommacay, alsoway ytray ubpartitionssay irstFay ytray ethay eviceday INTHay ifway urrentlycay unningray onway EFIway. Ifway INTHay endsway inway ommacay, alsoway ytray ubpartitionssay irstFay ytray ethay eviceday INTHay ifway urrentlycay unningray onway IEEEway1275. Ifway INTHay endsway inway ommacay, alsoway ytray ubpartitionssay irstFay ytray ethay eviceday INTHay ifway irectday ardwarehay accessway isway upportedsay. Ifway INTHay endsway inway ommacay, alsoway ytray ubpartitionssay irstFay ytray ethay eviceday INTHay. Ifway INTHay endsway inway ommacay, alsoway ytray ubpartitionssay ixFay ideovay oblempray. oundFay %s onway %s (%s)\n oundFay %s onway %s\n oundFay UGNay achMay: %s oundFay urdHay odulemay: %s oundFay etBSDNay ernelkay: %s\n oundFay ackgroundbay: %s\n oundFay initrdway imageway: %s\n oundFay ernelkay odulemay irectoryday: %s\n oundFay ernelkay ofway eeBSDFray: %s\n oundFay inuxlay imageway: %s\n oundFay emethay: %s\n eetypeFray Errorway %d oadinglay yphglay 0x%x orfay Uway+0x%x%s eezeFray ATAway ecuritysay ettingssay untilway esetray. idayFray Gay UGNay UBGRay  ersionvay %s UBGRay ootBay enuMay UBGRay oesnday'tay owknay owhay otay althay isthay achinemay yet! UBGRay emulatorway. UBDEVICEGRay=ANPLay9DEVICE arbageGay inway ARGPway_ELPHay_FMTay: %s enerateGay UBGRay eyboardkay ayoutlay omfray inuxLay onsolecay oneway. enerateGay PBKDFay2 asswordpay ashhay. enerateGay away ubgray onfigcay ilefay enerateGay away andalonestay imageway (ontainingcay allway odulesmay) inway ethay electedsay ormatfay eneratesGay away ootablebay CDay/USBway/oppyflay imageway.  Argumentsway otherway anthay optionsway otay isthay ogrampray areway assedpay otay orrisoxay, andway indicateway ourcesay ilesfay, ourcesay irectoriesday, orway anyway ofway ethay isofsmkay optionsway istedlay ybay ethay outputway ofway ‘%s’. eneratingGay ubgray onfigurationcay ilefay ... etGay crcay32 ecksumchay ofway ILEFay. etGay iskday achecay infoway. etGay/etsay ATAway iskday arameterspay. iBGay iBGay/say ueGlay 32-itbay andway 64-itbay inarybay intoway Appleway universalway oneway. aftGray ointpay yntaxsay (Eway.gay. /ootbay/ubgray/ubgray.cfgay=./ubgray.cfgay) isway acceptedway ASHHay INTHay altHay ethay ystemsay, ifway ossiblepay usingway APMway. altsHay ethay omputercay.  isThay ommandcay oesday otnay orkway onway allway irmwarefay implementationsway. andleHay Nay ytesbay inway outputway ilefay. elloHay orldWay erculesHay  IDway IMAGEway1 [IMAGEway2 ...] OUNTPOINTMay IMAGEway_ATHPay OMMANDSCay INSTALLway_EVICEDay ustmay ebay ystemsay eviceday ilenamefay.
%s opiescay UBGRay imagesway intoway %s.  Onway omesay atformsplay, itway aymay alsoway installway UBGRay intoway ethay ootbay ectorsay. Ifway ILENAMEFay isway ‘-’, ethay efaultday aluevay %s isway usedway.

ereThay isway onay ‘eleteday’ ommandcay; ifway you antway otay eleteday ethay olewhay environmentway
ockblay, useway ‘rmay %s’. Importway ZFSay appingwray eykay oredstay inway ILEFay. Incorrectway EVVDay Incorrectway irtualvay eviceday: onay ypetay availableway Insertway away odulemay. Installway UBGRay onway your ivedray. Installationway inishedfay. oNay errorway eportedray. Installingway orfay %s atformplay.
 Insufficientway ivilegespray otay accessway irmwarefay, assumingway IOSBay Invalidway ackbay eferenceray Invalidway aracterchay assclay amenay Invalidway ollationcay aracterchay Invalidway ommandcay %s.
 Invalidway ontentcay ofway \{\} Invalidway eviceday ‘%s’.
 Invalidway iskday ountcay.
 Invalidway ecedingpray egularray expressionway Invalidway angeray endway Invalidway egularray expressionway Invokeway userway onfigurationcay outingray. Kay ERNELKay ARGSway EYBOARDKay_EYKay eyboardKay eykay otay uicklyqay ootbay isthay entryway. iBKay iBKay/say OCALESLay eafLay irtualvay eviceday (ilefay orway iskday) egacyLay ‘askway’ arameterpay onay ongerlay upportedsay. egendLay: askmay/ositionpay=edray/eengray/ueblay/eservedray engthLay ofway eneratedgay ashhay engthLay ofway altsay istLay DNSay erverssay istLay IPCay evicesday. istLay enXay oragestay. istLay allway ilesfay. istLay availableway ideovay odesmay. Ifway esolutionray isway ivengay owshay onlyway odesmay atchingmay itway. istLay orebootcay ablestay. istLay evicesday andway ilesfay. istLay evicesday orway ilesfay. istLay evicesday. istLay ilesfay inway ATHPay. istLay emorymay apmay ovidedpray ybay irmwarefay. istLay ofway upportedsay ideovay odesmay: istLay ofway usersway allowedway otay ootbay isthay entryway. istLay orway electsay anway inputway erminaltay. istLay orway electsay anway outputway erminaltay. istLay ethay urrentcay ariablesvay. istLay ethay oadedlay ontsfay. istLay ariablesvay omfray environmentway ockblay ilefay. oadLay 64-itbay UXNay imageway. oadLay IOSBay umpday. oadLay DTBay ilefay. oadLay eeBSDFray envway. oadLay eeBSDFray ernelkay odulemay (ELFway). oadLay eeBSDFray ernelkay odulemay. oadLay eeDOSFray ernelkay.yssay. oadLay inuxLay. oadLay NTLDRay orway ootMGRBay. oadLay etBSDNay ernelkay odulemay (ELFway). oadLay etBSDNay ernelkay odulemay. oadLay anPlay9 ernelkay. oadLay uecryptTray ISOway. oadLay UXNay extensionway irectoryday. oadLay UXNay extensionway ackagepay. oadLay UXNay extensionway. oadLay UXNay imageway. oadLay UXNay amdiskray. Itway illway ebay availableway inway OSway asway mday0. oadLay ‘eviceday-opertiespray’ umpday. oadLay away EPXay imageway. oadLay away eyboardkay ayoutlay. oadLay away ultibootmay 2 ernelkay. oadLay away ultibootmay 2 odulemay. oadLay away ultibootmay ernelkay. oadLay away ultibootmay odulemay. oadLay away ashsplay imageway orfay UXNay. oadLay anway imageway ofway ibernatedhay UXNay. oadLay andway initializeway EFIway emulatorway. oadLay anotherway ootbay oaderlay. oadLay anotherway onfigcay ilefay utbay aketay onlyway enumay entriesway. oadLay anotherway onfigcay ilefay ithoutway angingchay ontextcay utbay aketay onlyway enumay entriesway. oadLay anotherway onfigcay ilefay ithoutway angingchay ontextcay. oadLay anotherway onfigcay ilefay. oadLay anotherway orebootcay ayloadpay oadLay ackgroundbay imageway orfay activeway erminaltay. oadLay osthay ACPIway ablestay andway ablestay ecifiedspay ybay argumentsway. oadLay initrdway. oadLay OpenBSDkay amdiskray. oadLay ernelkay ofway eeBSDFray. oadLay ernelkay ofway etBSDNay. oadLay ernelkay ofway OpenBSDway. oadLay odulemay. oadLay onlyway ablestay ecifiedspay ybay ommacay-eparatedsay istlay. oadLay ethay amesay ilefay inway ultiplemay aysway. oadLay ariablesvay omfray environmentway ockblay ilefay. oadLay zfsay yptocray eykay. oadedLay ontsfay: oadingLay UGNay achMay ... oadingLay inuxLay %s ... oadingLay enXay %s ... oadingLay initialway amdiskray ... oadingLay ernelkay ofway eeBSDFray %s ... oadingLay ernelkay ofway Illumosway ... oadingLay ethay urdHay ... May ACMay erificationvay ailedfay ENUMay_ENTRYway isway away umbernay, away enumay itemway itletay orway away enumay itemway identifierway. ENUMay_ENTRYway isway away umbernay, away enumay itemway itletay orway away enumay itemway identifierway. easePlay otenay atthay enumay itemsway inway
ubmenussay orway ubsay-ubmenussay equireray ecifyingspay ethay ubmenusay omponentscay andway enthay ethay
enumay itemway omponentcay. eThay itlestay ouldshay ebay eparatedsay usingway ethay eatergray-anthay
aracterchay (>) ithway onay extraway acesspay. ependingDay onway your ellshay omesay aracterschay includingway > aymay eednay escapingway. oreMay informationway aboutway isthay isway availableway
inway ethay UBGRay anualMay inway ethay ectionsay aboutway ethay ‘efaultday’ ommandcay.  ODULEMay ODULESMay acMay-ylestay essblay onway HFSay orway HFSay+ ailMay orrisoxay upportsay equestsray otay <ugbay-orrisoxay@ugnay.orgway>. akeMay UBGRay CDay-OMRay, iskday, endrivepay andway oppyflay ootablebay imageway. akeMay UBGRay eyboardkay ayoutlay ilefay. akeMay away ootablebay imageway ofway UBGRay. akeMay away irtualvay ivedray omfray away ilefay. akeMay artitionpay activeway anageMay ethay IOSBay ivedray appingsmay. andatoryMay orway optionalway argumentsway otay onglay optionsway areway alsoway andatorymay orway optionalway orfay anyway orrespondingcay ortshay optionsway. anipulateMay IPCay evicesday. easureMay imetay usedway ybay OMMANDCay emoryMay exhaustedway emoryMay ypetay: DDRay2. emoryMay ypetay: Unknownway. enuMay entryway identifierway. enuMay entryway otnay ecifiedspay. enuMay entryway ypetay. iBMay iBMay/say inimalMay ASHBay-ikelay inelay editingway isway upportedsay. orFay ethay irstfay ordway, ABTay istslay ossiblepay ommandcay ompletionscay. Anywhereway elseway ABTay istslay ossiblepay eviceday orway ilefay ompletionscay. %s inimumMay Emacsway-ikelay eenscray editingway isway upportedsay. ABTay istslay ompletionscay. essPray Ctrlay-xay orway Fay10 otay ootbay, Ctrlay-cay orway Fay2 orfay away ommandcay-inelay orway ESCway otay iscardday editsway andway eturnray otay ethay UBGRay enumay. issingMay argumentsway
 issingMay inputway ilefay
 ondayMay onochromeMay  oreMay anthay oneway installway eviceday? oreMay anthay oneway enumay entryway? ountMay away yptocray eviceday. ountMay allway olumesvay ithway ‘ootbay’ agflay etsay. ountMay allway. ountMay ybay UUIDway. ountMay yptocray evicesday. AMENay AMENay [ARIABLEVay] [INTSHay] OTNay UNNINGRay:  UMNay UMBERNay_OFway_ECONDSSay ameNay	efRay ountCay	ependenciesDay
 ativeNay iskday iversdray areway inway useway. efusingRay otay useway irmwarefay iskday interfaceway. etbootNay irectoryday orfay %s eatedcray. onfigureCay your DHCPay erversay otay ointpay otay %s
 etworkNay otocolspray: ewNay MBRay isway ittenwray otay ‘%s’
 oNay CSay5536 oundfay oNay AFPSWay oundfay oNay ootbay imetay atisticsstay isway availableway
 oNay ommandcay isway ecifiedspay.
 oNay eviceday isway ecifiedspay.
 oNay iskday achecay atisticsstay availableway
 oNay ivesdray avehay eenbay emappedray oNay ownknay ilesystemfay etectedday oNay atchmay oNay athpay isway ecifiedspay.
 oNay athpay orway eviceday isway ecifiedspay.
 oNay eviouspray egularray expressionway oNay irtualvay eviceday eetray availableway onNay-ainchay 4  otNay enoughway arameterspay otay ommandcay.
 owNay onnectcay ethay emoteray ebuggerday, easeplay. umberNay ofway PBKDFay2 iterationsway OPTIONSway ILEFay OSway iskday #umnay ------> UBGRay/IOSBay eviceday OSway ilefay %s openway errorway: %s Optionway -- itchessway otay ativenay orrisoxay ommandcay odemay. Optionsway: Outway ofway angeray ookuplay: %d
 Outway ofway angeray ubstitutionsay (%d, %d)
 Overrideway uessedgay appingmay ofway anPlay9 evicesday. Pay ARTITIONPay OMMANDSCay ATHPay PBKDFay2 ashhay ofway your asswordpay isway %s
 ORTPay ORTPay ALUEVay [ASKMay] UBKEYPay_IDway alettedPay  arsePay egacylay onfigcay inway ewnay ontextcay arsePay egacylay onfigcay inway ewnay ontextcay akingtay onlyway enumay entriesway arsePay egacylay onfigcay inway amesay ontextcay arsePay egacylay onfigcay inway amesay ontextcay akingtay onlyway enumay entriesway artPay onay: %s.
 artitionPay %d isway activeway ownay. 
 artitionPay %s: artitionPay ylestay ‘%s’ oesnday'tay upportsay embeddingway athPay: %s
 athPay: unavailableway erformPay OMMANDSCay onway artitionpay.
Useway ‘arttoolpay ARTITIONPay elphay’ orfay ethay istlay ofway availableway ommandscay. erformPay away DNSay ookuplay erformPay anway IPVway6 autoconfigurationway erformPay othbay irectday andway everseray appingsmay. iBPay iBPay/say anarPlay  ayPlay away unetay. easePlay onday'tay useway oldway itletay ‘%s’ orfay UBGRay_EFAULTDay, useway ‘%s’ (orfay ersionsvay eforebay 2.00) orway ‘%s’ (orfay 2.00 orway aterlay) oolPay UIDGay: %016llx
 oolPay UIDGay: unavailableway oolPay amenay: %s
 oolPay amenay: unavailableway oolPay atestay: activeway oolPay atestay: estroyedday oolPay atestay: exportedway oolPay atestay: evellay 2 ARCway eviceday oolPay atestay: otentiallypay activeway oolPay atestay: eservedray orfay othay arespay oolPay atestay: unavailableway oolPay atestay: uninitializedway ossiblePay argumentsway areway: ossiblePay ommandscay areway: ossiblePay evicesday areway: ossiblePay ilesfay areway: ossiblePay artitionspay areway: ossiblePay ingsthay areway: ematurePray endway ofway egularray expressionway eparesPray UBGRay etworknay ootbay imagesway atway etnay_irectoryday/ubdirsay assumingway etnay_irectoryday eingbay TFTPay ootray. essPray anyway eykay otay ontinuecay... essPray anyway eykay otay aunchlay uxnay essPray enterway otay ootbay ethay electedsay OSway, ‘eway’ otay editway ethay ommandscay eforebay ootingbay orway ‘cay’ orfay away ommandcay-inelay. essPray enterway otay ootbay ethay electedsay OSway, ‘eway’ otay editway ethay ommandscay eforebay ootingbay orway ‘cay’ orfay away ommandcay-inelay. ESCway otay eturnray eviouspray enumay. intPray emoryMay informationway. intPray ZFSay infoway aboutway EVICEDay. intPray ZFSay-OOTFSOBJBay orway orestay itway intoway ARIABLEVay intPray away ockblay istlay. intPray andway executeway ockblay argumentway. intPray acktracebay. intPray ivedray identityway andway ettingssay. intPray izessay inway away umanhay eadableray ormatfay. obePray eviceday informationway orfay away ivengay athpay (orway eviceday, ifway ethay -day optionway isway ivengay). AMRay oldinghay orebootcay ablestay AMRay oldinghay irmwarefay odecay AMRay otslay umbernay %d
 EGEXPRay INGSTRay OMRay imageway isway esentpray. eadRay 16-itbay aluevay omfray ADDRway. eadRay 16-itbay aluevay omfray ORTPay. eadRay 32-itbay aluevay omfray ADDRway. eadRay 32-itbay aluevay omfray ORTPay. eadRay 8-itbay aluevay omfray ADDRway. eadRay 8-itbay aluevay omfray ORTPay. eadRay onlyway ENGTHLay ytesbay. ebootRay ailedfay ebootRay intoway irmwarefay etupsay enumay. ebootRay ethay omputercay. eenterRay asswordpay:  egisterRay %x ofway %x:%02x.%x isway %x
 egularRay expressionway ootay igbay emoveRay UBKEYPay_IDway omfray ustedtray eyskay. emoveRay away DNSay erversay emoveRay away odulemay. emoveRay anway environmentway ariablevay. emoveRay anyway emorymay egionsray inway ecifiedspay angeray. enderRay Appleway .iskday_abellay. eportRay ugsbay otay %s.
 eportRay ugsbay otay <ugbay-ubgray@ugnay.orgway>. equestedRay erialsay erminaltay utbay UBGRay_ERIALSay_OMMANDCay isway unspecifiedway. efaultDay arameterspay illway ebay usedway. esetRay allway appingsmay otay ethay efaultday aluesvay. etrieveRay eviceday infoway. eturnRay omfray away unctionfay. eturnRay otay IEEEway1275 omptpray. unRay ‘gdbay %s %d’, andway etsay ARGSway.OLDHay otay erozay.
 unRay ‘ogay’ otay esumeray UBGRay. ECSSay ORTNAMESHay ORTNAMESHay ARDCay ADDRESSway [ADDRESSHWay] ORTNAMESHay ETNay [INTERFACEway| gway ATEWAYGay] IZESay OURCESay|-uway UUIDway|-away|-bay INGSTRay INGSTRay ... aturdaySay aveSay eadray aluevay intoway ariablevay ARNAMEVay. aveSay ariablesvay otay environmentway ockblay ilefay. aySay ‘elloHay orldWay’. iptScray ‘%s’ ontainscay onay ommandscay andway illway oday othingnay
 earchSay evicesday ybay UUIDway. Ifway ARIABLEVay isway ecifiedspay, ethay irstfay eviceday oundfay isway etsay otay away ariablevay. earchSay evicesday ybay away ilefay. earchSay evicesday ybay away ilesystemfay UUIDway. earchSay evicesday ybay away ilesystemfay abellay. earchSay evicesday ybay ilefay, ilesystemfay abellay orway ilesystemfay UUIDway. Ifway --etsay isway ecifiedspay, ethay irstfay eviceday oundfay isway etsay otay away ariablevay. Ifway onay ariablevay amenay isway ecifiedspay, ‘ootray’ isway usedway. earchSay evicesday ybay ilefay. Ifway ARIABLEVay isway ecifiedspay, ethay irstfay eviceday oundfay isway etsay otay away ariablevay. earchSay evicesday ybay abellay. Ifway ARIABLEVay isway ecifiedspay, ethay irstfay eviceday oundfay isway etsay otay away ariablevay. ectorSay %llu isway alreadyway inway useway ybay aidray ontrollercay ‘%s’; avoidingway itway.  easePlay askway ethay anufacturermay otnay otay orestay ataday inway MBRay apgay ectorSay %llu isway alreadyway inway useway ybay ethay ogrampray ‘%s’; avoidingway itway.  isThay oftwaresay aymay ausecay ootbay orway otherway oblemspray inway uturefay.  easePlay askway itsway authorsway otnay otay orestay ataday inway ethay ootbay acktray electSay eviceday ybay itsway ositionpay onway ethay usbay. electSay eviceday ybay endorvay andway eviceday IDsway. etSay Advancedway owerPay anagementMay
(1=owlay, ..., 254=ighhay, 255=offway). etSay Automaticway Acousticway anagementMay
(0=offway, 128=uietqay, ..., 254=astfay). etSay OEMIDway ofway RSDPay, XSDTay andway RSDTay. etSay OEMTABLEway IDway ofway RSDPay, XSDTay andway RSDTay. etSay OEMTABLEway evisionray ofway RSDPay, XSDTay andway RSDTay. etSay ‘iddenhay’ agflay inway artitionpay ypetay etSay away ariablevay otay eturnray aluevay. etSay away ariablevay otay ethay irstfay eviceday oundfay. etSay anway environmentway ariablevay. etSay ackgroundbay olorcay orfay activeway erminaltay. etSay itbay atway YTEBay:ITBay inway OSCMay. etSay eatorcray ieldfay ofway RSDPay, XSDTay andway RSDTay. etSay eatorcray evisionray ofway RSDPay, XSDTay andway RSDTay. etSay ebugday environmentway ariablevay. etSay ivedray otay eepslay odemay. etSay ivedray otay andbystay odemay. etSay ositionalpay arameterspay. etSay ootray eviceday. etSay andbystay imeouttay
(0=offway, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). etSay erminfotay ypetay ofway ERMTay  otay YPETay.
 etSay ethay asebay equencyfray. etSay ethay efaultday ootbay enumay entryway orfay UBGRay, orfay ethay extnay ootbay onlyway. etSay ethay efaultday ootbay enumay entryway orfay UBGRay. etSay ethay erialsay ortpay addressway. etSay ethay erialsay ortpay aritypay. etSay ethay erialsay ortpay eedspay. etSay ethay erialsay ortpay opstay itsbay. etSay ethay erialsay ortpay ordway engthlay. etSay ethay erialsay unitway. etSay upway imagesway otay ootbay omfray EVICEDay.

You ouldshay otnay ormallynay unray isthay ogrampray irectlyday.  Useway ubgray-installway insteadway. etSay userway asswordpay (PBKDFay2).  etSay userway asswordpay (aintextplay). Unrecommendedway andway insecureway. etSay ariablevay ithway userway inputway. etSay ariablesvay. ettingSay UBGRay_IMEOUTTay otay away onnay-erozay aluevay enwhay UBGRay_IDDENHay_IMEOUTTay isway etsay isway onay ongerlay upportedsay. ettingSay artitionpay ypetay otay 0x%x
 iftShay ositionalpay arameterspay. owShay ACPIway informationway. owShay APMway informationway. owShay EMCBMay onsolecay ontentcay. owShay away elphay essagemay. owShay away onglay istlay ithway oremay etailedday informationway. owShay ootbay imetay atisticsstay. owShay ontentscay ofway ILEFay inway exhay. owShay orebootcay ootbay imetay atisticsstay. owShay oadedlay odulesmay. owShay emorymay ontentscay. owShay awray ontentscay ofway ATAway IDENTIFYway ectorsay. owShay awray ontentscay ofway away ilefay orway emorymay. owShay awray umpday ofway ethay OSCMay ontentscay. owShay awray umpday ofway ethay IPCay onfigurationcay acespay. owShay ethay ontentscay ofway away ilefay. owShay ethay urrentcay appingsmay. owShay ethay istlay ofway ustedtray eyskay. owShay isthay essagemay. owShay ersionvay 1 ablestay onlyway. owShay ersionvay 2 andway ersionvay 3 ablestay onlyway. utdownShay ailedfay imulateSay ubgray-egacylay ‘initrdway’ ommandcay imulateSay ubgray-egacylay ‘ernelkay’ ommandcay imulateSay ubgray-egacylay ‘odulenounzipmay’ ommandcay imulateSay ubgray-egacylay ‘asswordpay’ ommandcay imulateSay ubgray-egacylay ‘asswordpay’ ommandcay inway enumay entryway odemay ipSkay Nay ytesbay omfray outputway ilefay. ipSkay offsetway ytesbay omfray ethay eginningbay ofway ilefay. ipSkay ignaturesay-eckingchay ofway ethay environmentway ilefay. ipSkay ignaturesay-eckingchay ofway ethay ublicpay eykay ilefay. otSlay %d openedway
 omeSay urdHay uffstay oundfay, utbay otnay enoughway otay ootbay. orrySay, onay arttoolpay isway availableway orfay %s
 ecifySpay ilenamefay. ecifySpay ashhay otay useway. ecifySpay oneway orway oremay ontfay ilesfay otay oadlay. ecifySpay izesay orfay eachway eadray operationway ecifySpay ethay umbernay ofway inputway ilesfay. eedSpay: %s 
 artStay GDBay ubstay onway ivengay ortpay opStay GDBay ubstay orageStay informationway orfay ‘%s’ oesday otnay includeway ypetay orageStay informationway orfay ‘%s’ indicatesway eithernay away ainplay artitionpay ornay away ainplay iskday oreStay atchedmay omponentcay UMBERNay inway ARNAMEVay. uccessSay undaySay uppressSay ormalnay outputway (arningsway emainray). itchSway otay ativenay iskday iversdray. Ifway onay odulesmay areway ecifiedspay efaultday etsay (atapay,ahciway,usbmsway,ohciway,uhciway,ehciway) isway usedway yntaxSay errorway atway inelay %u
 yntaxSay errorsway areway etectedday inway eneratedgay UBGRay onfigcay ilefay.
Ensureway atthay erethay areway onay errorsway inway /etcway/efaultday/ubgray
andway /etcway/ubgray.day/* ilesfay orway easeplay ilefay away ugbay eportray ithway
%s ilefay attachedway. ystemSay anagementmay usbay ontrollercay Iway/Oway acespay isway atway 0x%x
 Tay ARGETTay EMESTHay argetTay ormatfay otnay ecifiedspay (useway ethay -Oway optionway). erminalTay ashay ecifiedspay eometrygay. erminalTay isway ASCIIway-onlyway [efaultday]. erminalTay isway ogicallay-orderedway UTFway-8. erminalTay isway isuallyvay-orderedway UTFway-8. estTay USBway upportsay. estTay itbay atway YTEBay:ITBay inway OSCMay. estTay ilefay eadray eedspay. estTay ifway EGEXPRay atchesmay INGSTRay. estTay ideovay ubsystemsay inway odemay WxHay. estTay ideovay ubsystemsay. extTay-onlyway  eThay ilesfay areway identicalway.
 eThay ighlightedhay entryway illway ebay executedway automaticallyway inway %ds. isThay EVVDay isway away AIDZRay%llu
 isThay EVVDay isway away irrormay isThay entryway ancay ebay ootedbay ybay anyway userway. isThay equiresray ettingsay UBGRay_EFAULTDay=avedsay inway %s/efaultday/ubgray.\n ursdayThay iBTay iBTay/say oolTay otay editway environmentway ockblay. otalTay ashflay izesay: %d Bay.
 ailingTray ackslashbay ansformTray 64-itbay UUIDway otay ormatfay uitablesay orfay UXNay. Ifway -lay isway ivengay eepkay itway owercaselay asway oneday ybay idblkay. ansformTray away ystemsay ilenamefay intoway UBGRay oneway. ansformTray yslinuxsay onfigcay intoway UBGRay oneway. anslateTray ETSay1 aracterschay otay ETSay2 inway INGSTRay. anslateTray otay owerlay asecay. anslateTray otay upperway asecay. anslatesTray ethay ingstray ithway ethay urrentcay ettingssay. yTray ‘%s --elphay’ orway ‘%s --usageway’ orfay oremay informationway.
 uesdayTay USERway ASSWORDPay USERway PBKDFay2_ASSWORDPay USERNAMEway[,USERNAMEway] UTFway-8 Unableway otay eatecray ipepay: %s Unableway otay etermineday your atformplay. Useway --argettay. Unableway otay orkfay: %s Unableway otay openway eamstray omfray %s: %s Unableway otay etrieveray oolpay atestay Uncompressway ataday. Uncompressway ilefay eforebay ecksummingchay. Unknownway addressway ypetay %d
 Unknownway ommandcay ‘%s’.
 Unknownway ompressioncay ormatfay %s Unknownway encodingway Unknownway extraway argumentway ‘%s’. Unknownway ubgsay ontfay eaturefay 0x%x (%s)
 Unknownway eyboardkay anscay odecay 0x%02x
 Unknownway eyboardkay anscay identifierway %s
 Unknownway atformplay ‘%s-%s’ Unknownway ystemsay errorway Unknownway ideovay odemay  Unknownway irtualvay eviceday ypetay: %s
 Unloadway EFIway emulatorway. Unmatchedway ( orway \( Unmatchedway ) orway \) Unmatchedway [ orway [^ Unmatchedway \{ Unrecognizedway ompressioncay ‘%s’ Unrecognizedway optionway ‘%s’\n Unrecognizedway oolpay atestay Unsupportedway addressway ypetay %d
 Unsupportedway overagecay ecificationspay: %d
 Unsupportedway hway addressway ypetay %d
 Unsupportedway imageway ormatfay Unsupportedway ubstitutionsay agflay: 0x%x
 Unsupportedway ubstitutionsay ecificationspay: %d
 Unsupportedway ubstitutionsay ypetay: %d
 Usageway: Usageway: %s -oway OUTPUTway APCKBMay_ARGUMENTSway...\n Usageway: %s EVICEDay
 Usageway: %s [INFILEway [OUTFILEway]]
 Usageway: %s [OPTIONway] ENUMay_ENTRYway\n Usageway: %s [OPTIONway]\n Useway CDay-OMRay asway ootray. Useway GDBay emoteray ebuggerday insteadway ofway DDBay. Useway INGSTRay asway enumay entryway odybay. Useway ompiledcay-inway ootray eviceday. Useway erialsay onsolecay. Useway ethay %C andway %C eyskay otay electsay ichwhay entryway isway ighlightedhay. ARVay INTERFACEway UMBERNay ESCRIPTIONDay ARNAMEVay EVVDay elementway umbernay %d isnway'tay orrectcay
 EVVDay elementway umbernay %d:
 EVVDay ithway %d ildrenchay
 erboseVay ountdowncay. erifyVay etachedday ignaturesay. ersionVay %u.%u
32-itbay CSay = 0x%x, enlay = 0x%x, offsetway = 0x%x
16-itbay CSay = 0x%x, enlay = 0x%x
DSay = 0x%x, enlay = 0x%x
 irtualVay eviceday isway egradedday irtualVay eviceday isway aultedfay irtualVay eviceday isway offlineway irtualVay eviceday isway onlineway irtualVay eviceday isway emovedray ARNINGWay: onay onsolecay illway ebay availableway otay OSway ARNINGWay: onay atformplay-ecificspay installway asway erformedpay ARNINGWay: unsupportedway ontfay eaturefay arameterspay: %x
 IDTHxHEIGHTWay. aitWay orfay away ecifiedspay umbernay ofway econdssay. aitWay orfay eypresskay afterway everyway inelay ofway outputway. arningWay: arningWay: invalidway ackgroundbay olorcay ‘%s’
 arningWay: invalidway oregroundfay olorcay ‘%s’
 arningWay: yntaxsay errorway (issingmay ashslay) inway ‘%s’
 ednesdayWay indowsWay NTay/2000/XPay (oaderlay) indowsWay istaVay/7 (oaderlay) iteWray 16-itbay ALUEVay otay ADDRway. iteWray 16-itbay ALUEVay otay ORTPay. iteWray 32-itbay ALUEVay otay ADDRway. iteWray 32-itbay ALUEVay otay ORTPay. iteWray 8-itbay ALUEVay otay ADDRway. iteWray 8-itbay ALUEVay otay ORTPay. ittenWray SPDay ytesbay: %d Bay.
 enXay ypervisorhay, ersionvay %s YUV  You eednay otay ecifyspay atway eastlay oneway ommandcay.
 You illway avehay otay etsay ‘ystemPartitionSay’ andway ‘OSLoaderway’ anuallymay. You'evay oundfay away ugbay Your embeddingway areaway isway unusuallyway allsmay.  orecay.imgway onway'tay itfay inway itway. Your orrisoxay oesnday'tay upportsay ‘--ubgray2-ootbay-infoway’. omeSay eaturesfay areway isabledday. easePlay useway orrisoxay 1.2.9 orway aterlay. Your orrisoxay oesnday'tay upportsay ‘--ubgray2-ootbay-infoway’. Your orecay imageway isway ootay igbay. ootBay asway iskday isway isabledday. easePlay useway orrisoxay 1.2.9 orway aterlay. [--appendway|--emoveray] [ERMINALTay1] [ERMINALTay2] ... [--orcefay|--bpbay] ILEFay [--mday5] ASSWDPay [ILEFay] [--onay-emmay-optionway] [--ypetay=YPETay] ILEFay [ARGway ...] [-1|-2] [--excludeway=ABLETay1,ABLETay2|--oadlay-onlyway=ABLETay1,ABLETay2] ILEFay1 [ILEFay2] [...] [-cay ILEFay [-pay EFIXPRay]] [ILEFay1 [ILEFay2 ...]] [-day] EVICENAMEDay ILEFay. [-eway|-nay] INGSTRay [-fay ILEFay] [-fay ILEFay] [-say|--ipskay-igsay] [ariablevay_amenay_otay_itelistwhay] [...] [-fay ILEFay] ariablevay_amenay [...] [-fay|-lay|-uway|-say|-nay] [--inthay INTHay [--inthay INTHay] ...] AMENay [-hay|-pay|-ray] [ILEFay] [-lay] UBUUIDGRay [ARNAMEVay] [-lay|-hay|-away] [ILEFay ...] [-may (etchstray|ormalnay)] ILEFay [-say OSITIONPay] [-day EVICEDay] [-say OSITIONPay] [-day EVICEDay] [-vay ARVay] EGISTERRay[=ALUEVay[:ASKMay]] [-say IZESay] ILENAMEFay [-say|--ipskay-igsay] ILEFay IGNATURESay_ILEFay [UBKEYPay_ILEFay] [-say|--ipskay-igsay] UBKEYPay_ILEFay [ADDRway|omUNITcay][,EEDSPay] [ARGway] [ARDCay [ADDRESSHWay]] [ARDCay] [IRDay] [ENVVARway=ALUEVay] [ENVVARway] [EYSTROKEKay1] [EYSTROKEKay2] ... [ODULEMay1 ODULEMay2 ...] [UMBERNay:]ARNAMEVay [UMNay] [OPTIONSway...] [OPTIONSway] [OPTIONSway] ISKDay [OPTIONSway] ILEFay_ORway_EVICEDay [OPTIONSway] ONTFay_ILESFay [OPTIONSway] [ETSay1] [ETSay2] [INGSTRay] [OPTIONway] OURCESay... [OPTIONway] [INSTALLway_EVICEDay] [OPTIONway]... [ODULESMay] [OPTIONway]... [ATHPay|EVICEDay] [OPTSway] [ATHPay] [ATTERNPay ...] [USERLISTway] [ALUEVay]... [WxHay[xDay]] [WxHay] [[-away|-uway|-vay] [-gay WxHay] ERMTay [YPETay]] [[year-]onthmay-ayday] [ourhay:inutemay[:econdsay]] [usbay]:[otslay][.uncfay] [endorvay]:[eviceday] ‘%s’ isway iscompiledmay: itsway artstay addressway isway 0x%llx insteadway ofway 0x%llx: lday.oldgay ugbay? ‘%s’ isway otnay away ocallay iskday ‘yptomountcray’ ommandcay ailsfay: %s ‘oopbacklay’ ommandcay ailsfay: %s ‘etenvnvsay’ ailedfay. 
You illway avehay otay etsay ‘ootbay-eviceday’ ariablevay anuallymay.  Atway ethay IEEEway1275 omptpray, ypetay:
  %s
 ‘obppathway’ otnay oundfay inway arentpay irsday ofway ‘%s’, onay IEEEway1275 amenay iscoveryday away aluevay asway assignedway otay ethay argumentway ‘%s’ ilewhay itway oesnday'tay equireray anway argumentway accessway eniedday addway OTENay egmentsay orfay CHRPay IEEEway1275 addrway addressway otnay oundfay assumeway inputway isway away elinuxpxay onfigurationcay ilefay. assumeway inputway isway away yslinuxsay onfigurationcay ilefay. assumeway inputway isway anway isolinuxway onfigurationcay ilefay. attemptway otay installway otay encryptedway iskday ithoutway yptodiskcray enabledway. etSay ‘%s’ inway ilefay ‘%s’. attemptway otay eadray orway itewray outsideway ofway iskday ‘%s’ attemptway otay eadray orway itewray outsideway ofway artitionpay attemptway otay eadray astpay ethay endway ofway ilefay attemptway otay eeksay outsideway ofway ethay ilefay attemptingway otay eadray ethay orecay imageway ‘%s’ omfray UBGRay attemptingway otay eadray ethay orecay imageway ‘%s’ omfray UBGRay againway availableway AMRay availableway ormatsfay: availableway argetstay: adbay ignaturesay asebay_addrway = 0x%llx, engthlay = 0x%llx, %s
 asebay_addrway = 0x%llx, engthlay = 0x%llx, ypetay = 0x%x
 itmapbay ilefay ‘%s’ isway ofway unsupportedway ormatfay essblay orfay ppcay-asedbay acsmay essblay orfay xay86-asedbay acsmay ocklistblay ILEFay ocklistsblay areway incompleteway ocklistsblay areway invalidway ocksizeblay isway otnay ivisibleday ybay 512 ancay'tay eakbray 0 oopslay ancay'tay ompresscay ‘%s’ otay ‘%s’ ancay'tay etermineday ilesystemfay onway %s ancay'tay indfay ommandcay ‘%s’ ancay'tay ountmay encryptedway olumevay ‘%s’: %s ancay'tay openway ‘%s’: %s ancay'tay openway ilefay %s, indexway %d: errorway %d ancay'tay etrieveray ocklistsblay ancay'tay etrieveray ocklistsblay: %s ancay'tay etsay %dx%d ontfay izesay: eetypeFray errorway %d: %s annotcay ompresscay ethay ernelkay imageway annotcay opycay ‘%s’ otay ‘%s’: %s annotcay eleteday ‘%s’: %s annotcay indfay EFIway irectoryday annotcay indfay away UBGRay ivedray orfay %s.  eckChay your eviceday.apmay annotcay indfay away eviceday orfay %s (isway /evday ountedmay?) annotcay indfay ocalelay ‘%s’ annotcay etgay anslatortray ommandcay inelay orfay athpay ‘%s’: %s annotcay akemay emporarytay irectoryday: %s annotcay akemay emporarytay ilefay: %s annotcay openway OSway ilefay ‘%s’: %s annotcay openway ‘%s’: %s annotcay openway onfigurationcay ilefay ‘%s’: %s annotcay openway irectoryday ‘%s’: %s annotcay eadray ‘%s’ orrectlycay annotcay eadray ‘%s’: %s annotcay enameray ethay ilefay %s otay %s annotcay estoreray ethay originalway irectoryday annotcay eeksay ‘%s’: %s annotcay atstay ‘%s’: %s annotcay itewray otay CDay-OMRay annotcay itewray otay ‘%s’: %s annotcay itewray otay ethay outstday: %s ardcay otnay oundfay atcay ILEFay ecksumchay erificationvay ailedfay oosechay ethay ompressioncay otay useway orfay orecay imageway cmpay ILEFay OCALLay omUNITcay[,EEDSPay] omparecay ailfay atway offsetway %llu ompresscay UBGRay ilesfay [optionalway] onnectioncay efusedray onnectioncay imeouttay onvertcay otay oldbay ontfay orecay imageway isway ootay igbay (0x%x > 0x%x) orecay.imgway ersionvay ismatchmay ouldncay'tay autoconfigureway %s ouldncay'tay indfay IEEEway1275 eviceday athpay orfay %s.
You illway avehay otay etsay ‘ootbay-eviceday’ ariablevay anuallymay ouldncay'tay indfay away ecessarynay embermay eviceday ofway ultimay-eviceday ilesystemfay ouldncay'tay indfay eligay onsumercay ouldncay'tay indfay eomgay ‘artpay’ assclay ouldncay'tay openway eomgay ouldncay'tay eadray ELIway etadatamay ouldncay'tay etrieveray UUIDway ouldncay'tay etrieveray eligay UUIDway ouldncay'tay etrieveray andomray ataday ouldncay'tay etrieveray andomray ataday orfay altsay ouldncay'tay endsay etworknay acketpay cpay ILEFay OCALLay crcay ILEFay yptographiccray errorway umbernay %d urrentcay irectoryday ofway ethay yslinuxsay [efaultday isway arentpay irectoryday ofway inputway ilefay]. urrentcay irectoryday ofway ethay yslinuxsay asway itway illway ebay eensay onway untimeray  [efaultday isway arentpay irectoryday ofway inputway ilefay]. ygwincay_onvcay_athpay() ailedfay eleteday eviceday apmay ifway itway alreadyway existsway estinationday unreachableway eviceday ountcay exceedsway imitlay eviceday eetray ustmay ebay uppliedsay (eesay ‘evicetreeday’ ommandcay) isableday intinghay iskday ‘%s’ otnay oundfay iskday oesday otnay existway, osay allingfay ackbay otay artitionpay eviceday %s iskday odulemay otay useway (iosdiskbay orway ativenay). isThay optionway isway onlyway availableway onway IOSBay argettay. iskday eadray ailsfay atway offsetway %lld, engthlay %lld iskbootday.imgway izesay ustmay ebay %u ytesbay oday otnay installway ootsectorbay oday otnay obepray orfay ilesystemsfay inway EVICEDay omainday amenay omponentcay isway ootay onglay onday'tay updateway EDLay atestay onday'tay updateway ethay ‘ootbay-eviceday’/‘ootBay*’ AMNVRay ariablesvay. isThay optionway isway onlyway availableway onway EFIway andway IEEEway1275 argetstay. oneday embedway ILEFay asway away emdiskmay imageway
Impliesway ‘-pay (emdiskmay)/ootbay/ubgray’ andway overridesway anyway efixpray uppliedsay eviouslypray, utbay ethay efixpray itselfway ancay ebay overriddenway ybay aterlay optionsway embedway ILEFay asway anway earlyway onfigcay embedway ILEFay asway ublicpay eykay orfay ignaturesay eckingchay embeddingway isway otnay ossiblepay, utbay isthay isway equiredray orfay AIDRay andway LVMay installway embeddingway isway otnay ossiblepay, utbay isthay isway equiredray orfay osscray-iskday installway enableway ARCSway (igbay-endianway ipsmay achinesmay, ostlymay ISGay) ootbay. isablesDay HFSay+, APMway, arcspay64 andway ootbay asway iskday imageway orfay iway386-pcay enableway arcspay ootbay. isablesDay HFSay+, APMway, ARCSway andway ootbay asway iskday imageway orfay iway386-pcay enablingway %s upportsay ... enterway: ootbay, ‘eway’: optionsway, ‘cay’: cmday-inelay environmentway ockblay ootay allsmay errorway: %s.
 expectway UBGRay imagesway underway ethay irectoryday IRDay/%s insteadway ofway ethay %s irectoryday ailedfay otay opycay ubGray otay ethay ePPRay artitionpay ailedfay otay etgay anonicalcay athpay ofway ‘%s’ ailedfay otay eadray ethay ectorssay ofway ethay orecay imageway ailurefay eadingray ectorsay 0x%llx omfray ‘%s’ ailurefay otay eadray asswordpay ailurefay itingwray ectorsay 0x%llx otay ‘%s’ alsefay aultyfay AMRay (adRAMBay) ilefay ‘%s’ isway ootay igbay ilefay ‘%s’ otnay oundfay ilenamefay expectedway ilenamefay orway empotay andway otesnay expectedway ilesystemfay ‘%s’ oesday otnay upportsay abelslay ilesystemfay ‘%s’ oesnday'tay upportsay ocklistsblay ilesystemfay onway %s isway eithernay HFSay ornay HFSay+ irmwarefay imageway isway ootay igbay orcefay autohintway ourfay argumentsway expectedway artfwstay.imgway oesnday'tay atchmay ethay ownknay oodgay ersionvay. oceedpray atway your ownway iskray enerategay anway imageway inway ORMATFay ivegay away ortshay usageway essagemay ivegay isthay elphay istlay ivengay argumentway isway away ystemsay eviceday, otnay away athpay ubgray-imagemkay isway ompiledcay ithoutway XZay upportsay ubgray> anghay orfay ECSSay econdssay (efaultday 3600) exhay ILEFay ignoreway itmapbay ikesstray enwhay oadinglay incorrectway erminaltay imensionsday ecificationspay initrdway alreadyway oadedlay installway ONTSFay [efaultday=%s] installway UBGRay orfay ARGETTay atformplay [efaultday=%s] installway UBGRay imagesway underway ethay irectoryday IRDay/%s insteadway ofway ethay %s irectoryday installway EMESTHay [efaultday=%s] installway eviceday isnway'tay ecifiedspay installway evenway ifway oblemspray areway etectedday installway onlyway OCALESLay [efaultday=allway] installway onlyway ODULESMay andway eirthay ependenciesday [efaultday=allway] invalidway PBKDFay2 asswordpay invalidway archway-ependentday ELFway agicmay invalidway archway-independentway ELFway agicmay invalidway argumentway invalidway ockblay izesay invalidway olorcay ecificationspay ‘%s’ invalidway eviceday eetray invalidway environmentway ockblay invalidway ilefay amenay ‘%s’ invalidway ontfay angeray invalidway inelay ormatfay: %s invalidway odinfomay ilefay ‘%s’ invalidway arameterpay %s invalidway ipskay aluevay %lld invalidway ariablevay amenay ‘%s’ invalidway ideovay odemay ecificationspay ‘%s’ invalidway Imagezay ioctlway ETGay_ARRAYway_INFOway errorway: %s ioctlway ETGay_ISKDay_INFOway errorway: %s ioctlway AIDRay_ERSIONVay errorway: %s ernelkay imageway isway ootay igbay (0x%x > 0x%x) istlay etworknay addressesway istlay etworknay ardscay istlay etworknay outesray lsay ATHPay oplzay ilefay orruptedcay akemay ethay ivedray alsoway ootablebay asway oppyflay (efaultday orfay fdXay evicesday). ayMay eakbray onway omesay IOSesBay. issingmay ‘%c’ ymbolsay issingmay andatorymay optionway orfay ‘%s’ odulemay ‘%s’ isnway'tay oadedlay odulemay isnway'tay oadedlay amenay eednay anway imageway andway ountpointmay onay APMway oundfay onay DHCPay infoway oundfay onay DHCPay optionway %d oundfay onay DHCPay optionsway oundfay onay DNSay ecordray oundfay onay DNSay eplyray eceivedray onay DNSay erverssay onfiguredcay onay EFIway outinesray areway availableway orfay your atformplay onay EFIway outinesray areway availableway enwhay unningray inway IOSBay odemay onay IEEEway1275 outinesray areway availableway orfay your atformplay onay ISGay outinesray areway availableway orfay your atformplay onay ‘/’ inway anonicalcay ilenamefay onay ommandcay isway ecifiedspay onay ompressioncay isway availableway orfay your atformplay onay ecryptionday eykay availableway onay intshay availableway orfay your atformplay. Expectway educedray erformancepay onay etworknay ardcay oundfay onay andomray umbernay eneratorgay isway availableway orfay your OSway onay erversay isway ecifiedspay onay uchsay artitionpay onay uitablesay ideovay odemay oundfay onay ymbolsay abletay onay erminaltay ecifiedspay onay erminatortay inway ethay orecay imageway onnay-ectorsay-alignedway ataday isway oundfay inway ethay orecay ilefay otnay away irectoryday otnay away imarypray artitionpay otnay away egularray ilefay otnay inway unctionfay odybay oneway argumentway expectedway onlyway ipvway4 onlyway ipvway6 otherway oftwaresay isway usingway ethay embeddingway areaway, andway erethay isway otnay enoughway oomray orfay orecay.imgway.  uchSay oftwaresay isway oftenway yingtray otay orestay ataday inway away ayway atthay avoidsway etectionday.  eWay ecommendray you investigateway outway ofway emorymay outputway away eneratedgay imageway otay ILEFay [efaultday=outstday] outputway ilefay ustmay ebay ecifiedspay outputway eneratedgay onfigcay otay ILEFay [efaultday=outstday] overflowway isway etectedday asswordspay onday'tay atchmay erformpay away ootpbay autoconfigurationway ysicalphay olumevay %s otnay oundfay ainplay Imageway ernelkay otnay upportedsay - ebuildray ithway ONFIGCay_(Uway)EFIway_UBSTay enabledway epray-oadlay ecifiedspay odulesmay ODULESMay eferpray ipvway4 eferpray ipvway6 ematurepray endway ofway ilefay ematurepray endway ofway ilefay %s esspray apsLockCay eykay esspray Insertway eykay esspray umLockNay eykay esspray ollLockScray eykay esspray ysRqSay esspray eftlay altway esspray eftlay ctrlay esspray eftlay iftshay esspray ightray altway esspray ightray ctrlay esspray ightray iftshay intpray ARGETTay intpray ogrampray ersionvay intpray ethay ersionvay informationway andway exitway intpray isthay essagemay andway exitway intpray erbosevay essagesmay. ublicpay eykay %08x otnay oundfay eadray errorway atway offsetway %llu: %s eadray exttay omfray ILEFay. elativeray ubdirectorysay onway etworknay erversay elocationray 0x%x isway otnay implementedway yet eservedray AMRay etrieveray DHCPay optionway andway avesay itway intoway ARVay. Ifway ARVay isway - enthay intpray ethay aluevay. ootray irectoryday asway itway illway ebay eensay onway untimeray [efaultday=/]. ootray irectoryday ofway TFTPay erversay ootray irectoryday ofway ethay yslinuxsay iskday [efaultday=/]. outeray ooplay etectedday avesay OMRay imagesway inway IRDay [optionalway] avesay outputway inway ILEFay [equiredray] electsay acefay indexway erialsay ortpay ‘%s’ isnway'tay oundfay etsay [AMENay=ALUEVay ...] etsay apslockcay odemay etsay ontfay ascentway etsay ontfay escentday etsay ontfay amilyfay amenay etsay ontfay angeray etsay ontfay izesay etsay inputway ilenamefay orfay 32-itbay artpay. etsay inputway ilenamefay orfay 64-itbay artpay. etsay inputway ilenamefay. efaultDay isway INSTDay etsay insertway odemay etsay umlocknay odemay etsay outputway ilenamefay. efaultDay isway OUTSTDay etsay ausepay odemay etsay efixpray irectoryday [efaultday=%s] etsay olllockscray odemay etsay ethay abellay otay enderray etsay ethay ogrampray amenay izesay etchstray|ormalnay ymbolsay ‘%s’ otnay oundfay emporarytay erminaltay %s isnway'tay oundfay orway itway'say otnay andledhay ybay erminfotay erminaltay ‘%s’ isnway'tay oundfay ethay IDway ofway ootloaderbay. isThay optionway isway onlyway availableway onway EFIway andway acsMay. ethay ePPRay artitionpay isway otnay emptyway. Ifway you areway uresay you antway otay useway itway, unray dday otay earclay itway: ‘%s’ ethay argumentway ‘%s’ equiresray anway integerway ethay osenchay artitionpay isway otnay away ePPRay artitionpay ethay eviceday.apmay entryway ‘%s’ isway invalidway. Ignoringway itway. easePlay orrectcay orway eleteday your eviceday.apmay ethay ivedray %s isway efinedday ultiplemay imestay inway ethay eviceday apmay %s ethay ivedray amenay ‘%s’ inway eviceday.apmay isway incorrectway. Usingway %s insteadway. easePlay useway ethay ormfay [hfcay]day[0-9]* (Eway.gay. ‘hday0’ orway ‘cday’) ethay irstfay ectorsay ofway ethay orecay ilefay isway otnay ectorsay-alignedway ethay installationway eviceday isway emovableray. isThay optionway isway onlyway availableway onway EFIway. ethay artitionpay ypetay 0x%x isnway'tay alidvay ethay ectorssay ofway ethay orecay ilefay areway ootay agmentedfray ethay izesay ofway ‘%s’ isway otnay %u ethay izesay ofway ‘%s’ isway ootay argelay ethay izesay ofway ‘%s’ isway ootay allsmay isthay ELFway ilefay isway otnay ofway ethay ightray ypetay isthay GPTay artitionpay abellay ontainscay onay IOSBay ootBay artitionPay; embeddingway onway'tay ebay ossiblepay isthay LDMay ashay onay Embeddingway artitionPay; embeddingway onway'tay ebay ossiblepay isthay osmsday-ylestay artitionpay abellay ashay onay ostpay-MBRay apgay; embeddingway onway'tay ebay ossiblepay eethray argumentsway expectedway imetay outway openingway ‘%s’ imeouttay eadingray ‘%s’ imeouttay: ouldcay otnay esolveray ardwarehay addressway ootay eepday estingnay ofway ymlinkssay anslatortray ‘%s’ orfay athpay ‘%s’ ashay everalsay onnay-optionway ordsway, atway eastlay ‘%s’ andway ‘%s’ anslatortray ‘%s’ orfay athpay ‘%s’ isway ivengay onlyway optionsway, annotcay indfay eviceday artpay anslatortray ommandcay inelay isway emptyway orfay athpay ‘%s’ otway argumentsway expectedway ypetay unableway otay identifyway away ilesystemfay inway %s; afetysay eckchay ancay'tay ebay erformedpay unalignedway eviceday izesay unexpectedway EFIway errorway unexpectedway endway ofway ilefay unknownway argumentway ‘%s’ unknownway ompressioncay %d
 unknownway eviceday ypetay %s
 unknownway ilesystemfay unknownway indkay ofway AIDRay eviceday ‘%s’ unknownway egexpray errorway unknownway argettay ormatfay %s
 unknownway erminfotay ypetay ‘%s’ unrecognisedway DHCPay optionway ormatfay ecificationspay ‘%s’ unrecognisedway etworknay addressway ‘%s’ unrecognisedway etworknay interfaceway ‘%s’ unrecognizedway umbernay unresolvableway addressway %s unsetway [AMENay ...] unsupportedway HTTPay errorway %d: %s unsupportedway HTTPay esponseray unsupportedway AIDRay ersionvay: %d.%d unsupportedway ipgzay ormatfay unsupportedway atformplay %s
 unsupportedway erialsay ortpay owflay ontrolcay unsupportedway erialsay ortpay aritypay unsupportedway erialsay ortpay eedspay unsupportedway erialsay ortpay opstay itsbay umbernay unsupportedway erialsay ortpay ordway engthlay useway OLORCay orfay ackgroundbay useway OLORCay orfay abellay useway OLORCay orfay abellay ackgroundbay useway OLORCay orfay exttay useway IRDay asway ethay EFIway ystemSay artitionPay ootray. useway IRDay orfay PPCay ACMay installway. useway ILEFay asway ontfay (PFay2). useway ILEFay asway ontfay orfay abellay useway ILEFay asway ethay ootbay imageway [efaultday=%s] useway ILEFay asway ethay orecay imageway [efaultday=%s] useway ILEFay asway ethay eviceday apmay [efaultday=%s] useway ILEFay asway orrisoxay [optionalway] useway UBGRay ilesfay inway ethay irectoryday IRDay [efaultday=%s] useway INGSTRay asway oductpray amenay useway INGSTRay asway oductpray ersionvay useway identifierway ilefay evenway ifway UUIDway isway availableway useway imagesway andway odulesmay underway IRDay [efaultday=%s/<atformplay>] useway emesthay underway IRDay [efaultday=%s] useway anslationstray underway IRDay [efaultday=%s] ariablevay ‘%s’ isnway'tay etsay isuallyvay-orderedway UTFway-8 aitway untilway away ebuggerday illway attachway illway otnay oceedpray ithway ocklistsblay itewray outputway otay ILEFay [efaultday=outstday]. ongwray ELIway agicmay orway ersionvay uxnay_uuidway EVICEDay xzay ilefay orruptedcay orway unsupportedway ockblay optionsway you ancay'tay eleteday isthay addressway you eednay otay oadlay ethay ernelkay irstfay your IOSBay ootBay artitionPay isway ootay allsmay; embeddingway onway'tay ebay ossiblepay your LDMay Embeddingway artitionPay isway ootay allsmay; embeddingway onway'tay ebay ossiblepay your orecay.imgway isway unusuallyway argelay.  Itway onway'tay itfay inway ethay embeddingway areaway your embeddingway areaway isway unusuallyway allsmay.  orecay.imgway onway'tay itfay inway itway.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               boot/grub/locale/en@quot.mo                                                                         0000600 0001750 0001750 00000351074 13417732100 0014647 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                       /     )    S      n  #   n      n     o     1o     Io  $   `o     o  6   o     o     o  	   o     o     o     p     -p     Ep     [p  .   hp  .   p  %   p     p     p    p    r    	s     t  8   +t  '   dt  7   t  F   t  v   u  +   u     u      u     u  !   u     v  ,   1v     ^v     vv  $   v     v  *   v     v     
w     w     "w     :w  
   Zw  	   ew     ow     w  ,   w  ,   w  ,   w  '    x  -   Hx      vx  (   x  (   x  )   x     y     3y     Sy     `y     iy  "   ry  4   y     y     y  7   y     z      z  1   6z     hz     z  %   z  '   z  %   z  '   z     &{     +{     -{     K{     `{     u{     z{     {     {     {     {     {     {     {  3   |     6|  $   <|     a|     y|     |      |     |     |     |     |  -   }     E}  !   b}     }     }     }  #   }     }  `   v~  Z   ~     2     M     i     k     o                      0     3        /     G     a     x                    Ҁ                         !     '  %   6     \     {                    ׁ                       *   8  3   c  1     E   ɂ  C     <   S  1     2                  .     N      k               Ǆ                  7   ?  1   w       +   ȅ            #   1     U  5   p          Ć        -         0     Q     q  "     8                    	   6  #   @     d                    Ո       )        %     D     b  "     P             	  H     &   g            !     ,   ϊ                 	   )  !   3  *   U       '             Ջ            $        >     P     b     }            
   Ҍ  
   ݌       1        -     ;     H     a  3   }  >     $             ,     I     a     |       +        ܎       o     #               $               '   ;  9   c            z   Ԑ  "   O     r     y  8        Ƒ  
   ݑ                    /     ˒  +             ,     A     W  "   j            (        ؓ  #     &     ?   ;  '   {  @                             '  "   9  0   \                 7                            #     /     5  0   <     m                 2     %             .  *   =  6   h  +        ˗            !   ͘  d     e   T  d     i     o     H        B     U     k     |                    ֛  #             1     I  1   [  )                       ՜  /             #     :  5   W            K   ȝ       &             1     F     c     g  7   m  D               '     P        m       	                  Ġ     ؠ     i  '        "  +   1     ]     n  )          9   Ѣ          "     ?     [     p            $        أ       "        (     *     6  (   C     l     p     v  "   ~  +     -   ͤ               #     4     F     X  O   h          Υ                 %        E  )   d  !     "        Ӧ       +        2     I     Y     h  !   z               ѧ     ݧ                0     C     W     u            4             	          3     N     i                  !   ٩       4     M   J  2        ˪       *     8   .     g     t                    ҫ  3   ߫  $     +   8     d     y                    Ĭ                     4     6  D   N         f     m     u  7     ;   ̯          (  !   G     i       s             +     H     Y     l                    ı     ȱ     α     w     0     C     W     ^     j            '     
                            .     <     @     R  H   o  L                  4     D  %   S     y       #        е          
           *     K      j       "     (                %        3  2   M            #     *   Ʒ                 #        /     4  	   F  	   P  "   Z  ;   }  #     <   ݸ          (     F  .   T  	          `           !     )   7     a     e     k     s  q                       ,     C     V     l            "                       ,     C     Y     m       #     a        !     >  g   Z     ½     G     a  -   ~       !          "     '     Q   >               ƿ     ڿ                    8     U     r                                          :  #   U     y            -               "     b   =  )                    ,        @     Y  	   ^  "   h  %                    
          &     )        7  5   J  ^          $     %        D  ^     _   V  }        4  )     '     >   =  D   |  !     '     -     #   9     ]  )   }       )          )     ,   5     b                      E     $   (     M  A   e  )                  
     %      D     e  q   z       :   	     D     b  `   q                    &     <     X  0   m            #               )   &  &   P  #   w  -                             3  )   O     y  %     %     ,     '     :   *     e  -     0     /          .   #  '   R     z       '     $     "                  :  2   H  Q   {  *                )     o   1            6   t                 0           !     "   /  #   R     v                 !          
          <   8     u       %     >        
                    =     V  d   i  *     (     ,   "     O     h  0     6                            (     .  0   H     y  !               $                  2     P     a  $   ~  "     $                        -     N     c     u                                '        <     \  $   u  +     "          )             ,     J     j       '                    <         H     i  %   q                      m        c     ~                 +     3     1   E     w  '     -          '     '     .   4  	   c     m                                   -     H     b     }  *     ?          B      p   C       /   ?     o       .     O     )        C     Y  	   h  <   r       5                  -     C     ^  :   x       1                  +     1     D     K     Q     `     i                      	                             )     <     V     l                 
     
     	          !     )             (  P   :                 n     F   P  N          "               .   .  .   ]  /     W     -     -   B  $   p  #     0     6        !     /     B     U  (   c  1     )                       )     C  !   Z     |                  %          &        F     `  0   ~                       7     .   V       4     #                  2  '   G     o                 %                  .     E     ^     }            ,                            9     L     _  #   t            _     B   ,     o                                &   *     Q     n     |       N     m        `  &   z            7               ;   0  V   l  +     "          &   ,  !   S     u  r                    /     H     F   A  w     N         O  (   g            I     )     $   ,  ,   Q  '   ~       %                            (  $   :  '   _  *     (                    J        g            -     +          $        7  "   @  +   c            -     J        9    U %   t "    9             "   0    S    d     w                            "    7    O %   j                 %           6    I    ]    e [   y     !           $    8    =    Z    g    z                 /    7    4   T /            -        @   8    y 3                   	        / 1   O                     	    	           	 1   	    	 0   
    L
    a
 !   w
    
 J   
 "       $    0    <    R    k    ~                                        %    2 &   H    o                 '    &       ? L   L 9        0       " !   6    X    w                                 #     #   D $   h         &        !               2    G    L    [ 	   q 7   {     D    ]    %   p ,    [    ;    w   [ 7    K    #   W /   {             &    U   ) @    Q           +    A +   V     R    L    .   ?    n     F                       )    A    Y     l             2    !   
 #   ,    P    d    |                     $       ;    Z (   x #                    )   $    N    k     '    '    '        0   5    f     -    8    !    '   (    P    h !         &            .       C !   a B    F    E    B   S p   #         +     L     g       $          6        !    ! 	   !    #!    0!    P!    c!    {!    ! .   ! .   ! %   !    ""    &"   5"   :#   ?$    G% 8   a% '   % 7   % F   % v   A& +   &    &     &    ' !   ('    J' ,   g'    '    ' $   '    ' *   (    -(    @(    H(    X(    p( 
   ( 	   (    (    ( 0   ( 0   ) 0   5) +   f) 1   ) $   ) ,   ) ,   * -   C* #   q* #   *    *    *    * "   * 4   *    0+    8+ 7   I+    +    + 1   +    +    + %   + '   , %   B, '   h,    ,    ,    ,    ,    ,    ,    ,    ,    -    "-    4-    B-    R-    _- 3   l-    - $   -    -    -    -     .    0.    A.    X.    m. -   .    . !   .    .    /    #/ #   8/    \/ `   / Z   E0    0    0    0    0    0    0    0    1    1 0   81 3   i1    1    1    1    1     2    2    -2    D2    Z2    h2    2    2    2    2 %   2    2    2    3    3    .3    I3    _3    n3    3    3 *   3 3   3 1   	4 E   ;4 C   4 <   4 1   5 2   45    g5    5    5    5     5    5    6    96    U6    s6    6 7   6 1   6    7 +   :7    f7    7 #   7    7 5   7    8    68     S8 -   t8     8    8    8 "   8 8   !9    Z9    y9    9 	   9 #   9 %   9    9    :    /:    O:    f: )   u:    :    :    : "   : T   ;    r;    ; H   ; &   ;    <    $< !   +< ,   M<    z<    <    < 	   < !   < *   <    < '   =    >=    S=    e=    = $   =    =    =    =    =    >    2> 
   P> 
   [>    f> 1   y>    >    >    >    > 3   > >   /? $   n?    ?    ?    ?    ?    ?    @ +   .@    Z@    v@ o   @ #   A    (A    ?A $   ^A    A    A '   A 9   A    B    4B z   RB "   B    B    B 8   C    DC 
   [C    fC    sC    C    C    ID +   fD    D    D    D    D "   D    E    E (   -E    VE #   nE &   E ?   E '   E @   !F    bF    nF    ~F    F    F "   F 0   F    G    G    G 7   .G    fG    nG    zG    G    G    G    G 0   G    G    G    H    'H 2   >H )   qH    H    H .   H 6   H +   )I    UI    sI    I !   WJ d   yJ e   J d   DK i   K o   L H   L    L    L    L    M    M    /M    IM    `M #   yM    M    M    M 1   M )   N    AN    HN    JN    _N /   nN    N    N    N 5   N    O    6O K   RO    O &   |P    P    P    P    P    P 7   P D   3Q    xQ    }Q '   Q P   Q    Q    R 	   &R    0R    3R    RR    fR    R '   S    S +   S    S    T )   $T    NT 9   kT    T    T    T    T    
U    "U    <U $   QU    vU    U "   U    U    U    U (   U    
V    V    V "   V /   ?V -   oV    V    V    V    V    V    V O   
W    ZW    pW    W    W    W %   W    W )   X !   0X "   RX    uX    X +   X    X    X    X    
Y !   Y    >Y    ZY    sY    Y     Y    Y    Y    Y    Y    Z    3Z    GZ 4   WZ "   Z    Z    Z    Z    Z    [    ([    A[     ^[ !   [    [ 4   [ M   [ 2   >\    q\    \ *   \ 8   \    ]    ]    1]    I]    `]    x] 3   ] $   ] +   ]    
^    ^    -^    B^    W^    j^     ^    ^    ^    ^    ^ D   ^   9_    a    a    a 7   >a ;   va    a    a !   a    b    )b s   Ib    b    b    b    c    c    ,c    Cc    ]c    nc    rc    xc    !d    d    d    e    e    e    2e    Le +   ce 
   e    e    e    e    e    e    e    e     f H   f L   ff    f    f    f    f %   g    +g    Eg #   ^g    g    g    g    g     g    g     h    =h "   Jh (   mh    h    h %   h    h 2   h    2i    ;i #   Ti *   xi    i    i    i #   i    i    i 	   i 	   j "   j ;   /j #   kj <   j    j    j    j 2   k 	   9k    Ck d   Uk    k !   k )   k    l    l    %l    -l }   :l    l    l    l    l    	m    m    2m    Gm    fm "   m    m    m    m    m    	n    n    3n    Ln #   an a   n    n    o o    o    o    p    7p -   Tp    p !   p    p "   p '   p Q   q    fq    q    q    q    q    q    q    r    +r    Hr    dr    r    r     r    r    r     r    s #   +s    Os    cs    ts -   s    s    s "   s b   t )   vt    t    t    t 0   t    u    7u 	   <u "   Fu %   iu    u    u    u 
   u    u &   u )   u    v 9   ,v ^   fv    v $   v %   w    *w ^   w _   @x    x    "y )   y '   z >   /z D   nz !   z '   z -   z '   +{    S{ )   s{    { )   {    { )   | ,   +|    X|    x|    |    |    | E   | $   }    C} A   [} )   }    }    }     ~    ~     :~    [~ q   p~    ~ :   ~    :    X `   g                    2    N 0   c         #   ̀         )    &   F #   m -           ܁            ) )   E    o )    )    0   ӂ +    >   0    o -    0    /        .   - '   \         '    $   ӄ "           '    D 6   R U    *   ߅    
     )    o   C        ̆ 6               Ƈ 0   ͇      !    "   A #   d                Έ !        
   %    0 <   J         %    >   ݉        %    )    /    O    h d   { *    (    ,   4    a    z 0    >   ċ                .    B    H 0   b     !       Ȍ     $           5    P    n      $    "   ō $           *    ?     S    t                 !   ̎            % '   B    j     $    +   ȏ "        )       H    Z    x         '               % <   9     v     %       ő    ޑ         m   #            ƒ         +    3   ? 1   s     '    -   ۓ    	 +    +   > 2   j 	           Ô    ܔ            0    L    g             *    G       / B   B t        /           Η .    O    )   c         	    <        5       M    _    w         :        1       B    ^    u    {                        њ             	           $    =     R    s                Л    כ    ޛ 
    
    	        !    )   4    ^    r T       ٜ #         v   ; N    R       T "   b         .    .   ˞ /    _   * 1    -    $    #    4   3 :   h            Ġ    נ (    1    -   @    n                ɡ !        #        :    [ )   w     &            0        I $   j         7   ģ .       + 8   G #            ä     +    "   )    L    k     %       ʥ                0    O    ^    g ,               Ц                1 #   F    j     c    B       E #   a                ʨ     &       +    H    V    _ N   } m   ̩    : &   T    {     ;            ;    V   N +    "   ѫ     &    !   5    W z   n             /    H    F   / w   v N       = 0   U         I    )    (   " ,   K +   x     )                       2 $   D +   i .    (   ı             J   .    y         -   Ĳ +        $   $    I "   R +   u         -   ҳ J        K    g %    "    9   ϴ    	     ! "   B    e    v $           µ    ܵ        
    "    @    U    m )           Ŷ         %       E    \    o         [        %       9    V    j    o                ĸ    ڸ         /    7   N 4    /             -   $    R @   n     3   ź            "    ?    O    e 1           ǻ    ߻         	    	   '    1     1       3 0   Q         !       Ͻ J    "   7    Z    f    r                ž    ׾                    (    8    I    [    h &   ~            ٿ         '   & &   N    u L    9       	 0   '    X !   l                                 (    =    L #   Z #   ~ $            &        !       @    T    l             	    7        D    a   T )    ,    _    ;   m     7   - K   e #    /        !   $ !   F &   h U    @    Q   &    x         +        b    T   p 2            F       [    q                     $           4    N 6   m %    '                   /    M    g         $            (    #   C    g             )               % '   @ '   h '        0           # -   A 8   o !    '            !   %     G &   h         .        !    B   ) F   l E    B       V      s                 r           M  (  q  t     )   K          ]  U          (           @   h  K  c    k          C    O              \               A            B        H           S   4        w   A   R      [                     +           i        W        0  e  d                          $                 A  f               /  v      ?       a    1      5  v                      #            j       ~              g          X  "  )      5  v  #  ~                w  .      B       }                  u         z                    _             ?    *             F          o                                                                J                       ~  Q                  l                      r  t               r    8                  Z  <      z      ;   t   T              '                     j  p    3  <            $      n  0      2     	                     b                            N         g                p    j      ^                                      o  O    I          L  '                !  U  W  C                     D               P      v  k      V           M  =  u                       a            }      ~    `      e                   \                              l                        x  "  V  6    ,      2  w  #    k  z                   O      %                               G       *      b  N  Z    ,  N   D  N           V            L  v     2    ?  T        G           !  I  &    W          x      9     w    Y      p         0                ;                    z                                   u  z             ;     x          \    "  (            I  7  &          *  b           {      	              L       W  T         +         c     Z             Q          .  y  2          4  :          S            -      \                       _        T                        r                                 X              8    #     3   d                  8                     R        g      A    d                      U                                       f                  (             ^         F                `         `                             "   r                     !      K    =   G            !              N                                         '    l  u    >  <         >  ^       7               M                                                   a  W      &                       ~             ,                [             )          3                                 h          Z                      1          M    /           Z                  5       J    i                            ,                    I  #   i                 l  g       ;    4      B                                 }        :        :                 %                              H              _               y   U            c                                	  "                f            /  e        C    C                       
        /     {    &  -         Q  +      &                    L  X          S        q  P    0  '         E      `  i         }        +            	                |               D          3                9    >   |            |         7     
   "    s   <  9            F       T                R   ,                         -      w          (      l                }  V        j  c    f             J                       .    P                    p            *  ?     n                    [    (    :              D                    f  0     n     q   Q                |    y      {  6   @                 @  
    E                     x                                     F    G     
    b    Y                      t     ]                 y         q  -             &    A      =  7  =    ^                                            >                    m  4       `               M  s         t  Q        {     4  e  ^                          P      $  )  6        U                           .    G      H  !   [        )      >    q           9           S  d        O      9               p         X      R  B  E   %     E  n         C        8   K      S       {        /                                     h      5  *  *  _          1   
      /                                    %     :              g        H    .             	              H        ,             '        Y  1    +                    m      -                                  E                 h                          o         F      I          k        ]                a      2    h   %    .         a              j       
          '  n                             -            k   o    +        u       <   %                        ]          e              b         @      =        $   s    \  m                        J    d     !          )          R               X                    3          @      J                        $    6          $        i  Y      7   6               Y                   y            B                8    |     #  s        ?       1           L           5              ;  K        o   P    	            [                           D                   _                  m    ]           m             x           c  O                    total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s doesn't exist. Please specify --target or --directory %s doesn't look like an EFI partition.
 %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: not found %s: option '%c%s' doesn't allow an argument
 %s: option '%s' is ambiguous; possibilities: %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- --ppc PATH|--x86 FILE -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add PUBKEY_FILE to trusted keys. Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Bless DIR of HFS or HFS+ partition for PPC macs. Bless FILE of HFS or HFS+ partition for intel macs. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't create file: %s Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check if CPU supports Physical Address Extension. Check if FILE can be booted as i386 PAE Xen unprivileged guest kernel Check if FILE can be booted as x86_64 Xen unprivileged guest kernel Check if FILE can be used as Xen x86 privileged guest kernel Check if FILE can be used as x86 multiboot kernel Check if FILE can be used as x86 multiboot2 kernel Check if FILE is ARM EFI file Check if FILE is ARM Linux Check if FILE is ARM64 EFI file Check if FILE is ARM64 Linux Check if FILE is BIOS bootsector Check if FILE is IA64 EFI file Check if FILE is IA64 Linux Check if FILE is MIPS Linux Check if FILE is MIPSEL Linux Check if FILE is POWERPC Linux Check if FILE is SPARC64 Linux Check if FILE is XNU (Mac OS X kernel) hibernated image Check if FILE is hiberfil.sys in hibernated state Check if FILE is i386 EFI file Check if FILE is i386 XNU (Mac OS X kernel) Check if FILE is i386 kFreeBSD Check if FILE is i386 kNetBSD Check if FILE is of specified type. Check if FILE is x86 Linux Check if FILE is x86 Linux supporting 32-bit protocol Check if FILE is x86 kFreeBSD Check if FILE is x86 kNetBSD Check if FILE is x86_64 EFI file Check if FILE is x86_64 XNU (Mac OS X kernel) Check if FILE is x86_64 kFreeBSD Check if FILE is x86_64 kNetBSD Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear bit at BYTE:BIT in CMOS. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find a free BootNNNN slot Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Default server is ${net_default_server} Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not apply any reed-solomon codes when embedding core.img. This option is only available on x86 BIOS targets. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. EFI bootloader id isn't specified. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enable/disable RTS/CTS. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Evaluate arguments as GRUB commands Execute syslinux config in new context Execute syslinux config in new context taking only menu entries Execute syslinux config in same context Execute syslinux config in same context taking only menu entries Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FONTS FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File size: %s
 File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Generates a bootable CD/USB/floppy image.  Arguments other than options to this program are passed to xorriso, and indicate source files, source directories, or any of the mkisofs options listed by the output of `%s'. Generating grub configuration file ... Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s Glue 32-bit and 64-bit binary into Apple universal one. Graft point syntax (E.g. /boot/grub/grub.cfg=./grub.cfg) is accepted HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS INSTALL_DEVICE must be system device filename.
%s copies GRUB images into %s.  On some platforms, it may also install GRUB into the boot sector. If FILENAME is `-', the default value %s is used.

There is no `delete' command; if you want to delete the whole environment
block, use `rm %s'. Import ZFS wrapping key stored in FILE. Incorrect VDEV Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Installing for %s platform.
 Insufficient privileges to access firmware, assuming BIOS Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s LOCALES Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List Xen storage. List all files. List available video modes. If resolution is given show only modes matching it. List coreboot tables. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load DTB file. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load Truecrypt ISO. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load module. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... M MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MENU_ENTRY is a number, a menu item title or a menu item identifier. Please note that menu items in
submenus or sub-submenus require specifying the submenu components and then the
menu item component. The titles should be separated using the greater-than
character (>) with no extra spaces. Depending on your shell some characters including > may need escaping. More information about this is available
in the GRUB Manual in the section about the 'default' command.  MODULE MODULES Mac-style bless on HFS or HFS+ Mail xorriso support requests to <bug-xorriso@gnu.org>. Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NOT RUNNING:  NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Netboot directory for %s created. Configure your DHCP server to point to %s
 Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OPTIONS FILE OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Option -- switches to native xorriso command mode. Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] PUBKEY_ID Paletted  Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Prepares GRUB network boot images at net_directory/subdir assuming net_directory being TFTP root. Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot into firmware setup menu. Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove PUBKEY_ID from trusted keys. Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Render Apple .disk_label. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING STRING ... Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Script `%s' contains no commands and will do nothing
 Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set bit at BYTE:BIT in CMOS. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the base frequency. Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting GRUB_TIMEOUT to a non-zero value when GRUB_HIDDEN_TIMEOUT is set is no longer supported. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show CBMEM console content. Show a help message. Show a long list with more detailed information. Show boot time statistics. Show contents of FILE in hex. Show coreboot boot time statistics. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show raw dump of the CMOS contents. Show raw dump of the PCI configuration space. Show the contents of a file. Show the current mappings. Show the list of trusted keys. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Skip signature-checking of the environment file. Skip signature-checking of the public key file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Sorry, no parttool is available for %s
 Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Storage information for `%s' does not include type Storage information for `%s' indicates neither a plain partition nor a plain disk Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Switch to native disk drivers. If no modules are specified default set (pata,ahci,usbms,ohci,uhci,ehci) is used Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 T TARGET THEMES Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This VDEV is a RAIDZ%llu
 This VDEV is a mirror This entry can be booted by any user. This requires setting GRUB_DEFAULT=saved in %s/default/grub.\n Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Transform syslinux config into GRUB one. Translate SET1 characters to SET2 in STRING. Translate to lower case. Translate to upper case. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown platform `%s-%s' Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized compression `%s' Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME VDEV element number %d isn't correct
 VDEV element number %d:
 VDEV with %d children
 Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. You've found a bug Your embedding area is unusually small.  core.img won't fit in it. Your xorriso doesn't support `--grub2-boot-info'. Some features are disabled. Please use xorriso 1.2.9 or later. Your xorriso doesn't support `--grub2-boot-info'. Your core image is too big. Boot as disk is disabled. Please use xorriso 1.2.9 or later. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] [-s|--skip-sig] [variable_name_to_whitelist] [...] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [-s|--skip-sig] FILE SIGNATURE_FILE [PUBKEY_FILE] [-s|--skip-sig] PUBKEY_FILE [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [DIR] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTIONS] [SET1] [SET2] [STRING] [OPTION] SOURCE... [OPTION] [INSTALL_DEVICE] [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `%s' is miscompiled: its start address is 0x%llx instead of 0x%llx: ld.gold bug? `%s' is not a local disk `cryptomount' command fails: %s `loopback' command fails: %s `nvsetenv' failed. 
You will have to set `boot-device' variable manually.  At the IEEE1275 prompt, type:
  %s
 `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found assume input is a pxelinux configuration file. assume input is a syslinux configuration file. assume input is an isolinux configuration file. attempt to install to encrypted disk without cryptodisk enabled. Set `%s' in file `%s'. attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: available targets: bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format bless for ppc-based macs bless for x86-based macs blocklist FILE blocklists are incomplete blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't compress `%s' to `%s' can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s can't set %dx%d font size: Freetype error %d: %s cannot compress the kernel image cannot copy `%s' to `%s': %s cannot delete `%s': %s cannot find EFI directory cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot find locale `%s' cannot get translator command line for path `%s': %s cannot make temporary directory: %s cannot make temporary file: %s cannot open OS file `%s': %s cannot open `%s': %s cannot open configuration file `%s': %s cannot open directory `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu compress GRUB files [optional] connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find IEEE1275 device path for %s.
You will have to set `boot-device' variable manually couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d current directory of the syslinux [default is parent directory of input file]. current directory of the syslinux as it will be seen on runtime  [default is parent directory of input file]. cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit device tree must be supplied (see `devicetree' command) disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. disk read fails at offset %lld, length %lld diskboot.img size must be %u bytes do not install bootsector do not probe for filesystems in DEVICE domain name component is too long don't update LED state don't update the `boot-device'/`Boot*' NVRAM variables. This option is only available on EFI and IEEE1275 targets. done embed FILE as a memdisk image
Implies `-p (memdisk)/boot/grub' and overrides any prefix supplied previously, but the prefix itself can be overridden by later options embed FILE as an early config embed FILE as public key for signature checking embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enable ARCS (big-endian mips machines, mostly SGI) boot. Disables HFS+, APM, sparc64 and boot as disk image for i386-pc enable sparc boot. Disables HFS+, APM, ARCS and boot as disk image for i386-pc enabling %s support ... enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to copy Grub to the PReP partition failed to get canonical path of `%s' failed to read the sectors of the core image failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' is too big file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists filesystem on %s is neither HFS nor HFS+ firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification initrd already loaded install FONTS [default=%s] install GRUB for TARGET platform [default=%s] install GRUB images under the directory DIR/%s instead of the %s directory install THEMES [default=%s] install device isn't specified install even if problems are detected install only LOCALES [default=all] install only MODULES and their dependencies [default=all] invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid argument invalid block size invalid color specification `%s' invalid device tree invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid modinfo file `%s' invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' invalid zImage ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no EFI routines are available for your platform no EFI routines are available when running in BIOS mode no IEEE1275 routines are available for your platform no SGI routines are available for your platform no `/' in canonical filename no command is specified no compression is available for your platform no decryption key available no hints available for your platform. Expect reduced performance no network card found no random number generator is available for your OS no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected only ipv4 only ipv6 other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found plain Image kernel not supported - rebuild with CONFIG_(U)EFI_STUB enabled pre-load specified modules MODULES prefer ipv4 prefer ipv6 premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print TARGET print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory as it will be seen on runtime [default=/]. root directory of TFTP server root directory of the syslinux disk [default=/]. route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the label to render set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the ID of bootloader. This option is only available on EFI and Macs. the PReP partition is not empty. If you are sure you want to use it, run dd to clear it: `%s' the argument `%s' requires an integer the chosen partition is not a PReP partition the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive %s is defined multiple times in the device map %s the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected EFI error unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported platform %s
 unsupported serial port flow control unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for label use COLOR for label background use COLOR for text use DIR as the EFI System Partition root. use DIR for PPC MAC install. use FILE as font (PF2). use FILE as font for label use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] use themes under DIR [default=%s] use translations under DIR [default=%s] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists write output to FILE [default=stdout]. wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your LDM Embedding Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub 2.02~beta2
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-12-24 21:18+0100
Last-Translator: Automatically generated
Language-Team: none
Language: en@quot
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=(n != 1);
               total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s doesn't exist. Please specify --target or --directory %s doesn't look like an EFI partition.
 %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- ‘%c’
 %s: not found %s: option ‘%c%s’ doesn't allow an argument
 %s: option ‘%s’ is ambiguous; possibilities: %s: option ‘--%s’ doesn't allow an argument
 %s: option ‘--%s’ requires an argument
 %s: option ‘-W %s’ doesn't allow an argument
 %s: option ‘-W %s’ is ambiguous
 %s: option ‘-W %s’ requires an argument
 %s: option requires an argument -- ‘%c’
 %s: option requires an argument -- ‘%s’\n %s: unrecognized option ‘%c%s’
 %s: unrecognized option ‘--%s’
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label ‘%s’ - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- --ppc PATH|--x86 FILE -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter ‘%s’:
 Add PUBKEY_FILE to trusted keys. Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Bless DIR of HFS or HFS+ partition for PPC macs. Bless FILE of HFS or HFS+ partition for intel macs. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting ‘%s’ Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't create file: %s Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check if CPU supports Physical Address Extension. Check if FILE can be booted as i386 PAE Xen unprivileged guest kernel Check if FILE can be booted as x86_64 Xen unprivileged guest kernel Check if FILE can be used as Xen x86 privileged guest kernel Check if FILE can be used as x86 multiboot kernel Check if FILE can be used as x86 multiboot2 kernel Check if FILE is ARM EFI file Check if FILE is ARM Linux Check if FILE is ARM64 EFI file Check if FILE is ARM64 Linux Check if FILE is BIOS bootsector Check if FILE is IA64 EFI file Check if FILE is IA64 Linux Check if FILE is MIPS Linux Check if FILE is MIPSEL Linux Check if FILE is POWERPC Linux Check if FILE is SPARC64 Linux Check if FILE is XNU (Mac OS X kernel) hibernated image Check if FILE is hiberfil.sys in hibernated state Check if FILE is i386 EFI file Check if FILE is i386 XNU (Mac OS X kernel) Check if FILE is i386 kFreeBSD Check if FILE is i386 kNetBSD Check if FILE is of specified type. Check if FILE is x86 Linux Check if FILE is x86 Linux supporting 32-bit protocol Check if FILE is x86 kFreeBSD Check if FILE is x86 kNetBSD Check if FILE is x86_64 EFI file Check if FILE is x86_64 XNU (Mac OS X kernel) Check if FILE is x86_64 kFreeBSD Check if FILE is x86_64 kNetBSD Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear bit at BYTE:BIT in CMOS. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file ‘%s’ with ‘%s’:
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find a free BootNNNN slot Couldn't find physical volume ‘%s’. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Default server is ${net_default_server} Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not apply any reed-solomon codes when embedding core.img. This option is only available on x86 BIOS targets. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. EFI bootloader id isn't specified. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enable/disable RTS/CTS. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Evaluate arguments as GRUB commands Execute syslinux config in new context Execute syslinux config in new context taking only menu entries Execute syslinux config in same context Execute syslinux config in same context taking only menu entries Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FONTS FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create ‘device-mapper’ tree Falling back to ‘%s’ File size: %s
 File system ‘%s’ doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Generates a bootable CD/USB/floppy image.  Arguments other than options to this program are passed to xorriso, and indicate source files, source directories, or any of the mkisofs options listed by the output of ‘%s’. Generating grub configuration file ... Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s Glue 32-bit and 64-bit binary into Apple universal one. Graft point syntax (E.g. /boot/grub/grub.cfg=./grub.cfg) is accepted HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS INSTALL_DEVICE must be system device filename.
%s copies GRUB images into %s.  On some platforms, it may also install GRUB into the boot sector. If FILENAME is ‘-’, the default value %s is used.

There is no ‘delete’ command; if you want to delete the whole environment
block, use ‘rm %s’. Import ZFS wrapping key stored in FILE. Incorrect VDEV Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Installing for %s platform.
 Insufficient privileges to access firmware, assuming BIOS Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device ‘%s’.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s LOCALES Leaf virtual device (file or disk) Legacy ‘ask’ parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List Xen storage. List all files. List available video modes. If resolution is given show only modes matching it. List coreboot tables. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load DTB file. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load Truecrypt ISO. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load ‘device-properties’ dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load module. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... M MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MENU_ENTRY is a number, a menu item title or a menu item identifier. Please note that menu items in
submenus or sub-submenus require specifying the submenu components and then the
menu item component. The titles should be separated using the greater-than
character (>) with no extra spaces. Depending on your shell some characters including > may need escaping. More information about this is available
in the GRUB Manual in the section about the ‘default’ command.  MODULE MODULES Mac-style bless on HFS or HFS+ Mail xorriso support requests to <bug-xorriso@gnu.org>. Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with ‘boot’ flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NOT RUNNING:  NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Netboot directory for %s created. Configure your DHCP server to point to %s
 Network protocols: New MBR is written to ‘%s’
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OPTIONS FILE OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Option -- switches to native xorriso command mode. Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] PUBKEY_ID Paletted  Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style ‘%s’ doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use ‘parttool PARTITION help’ for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Please don't use old title ‘%s’ for GRUB_DEFAULT, use ‘%s’ (for versions before 2.00) or ‘%s’ (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Prepares GRUB network boot images at net_directory/subdir assuming net_directory being TFTP root. Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, ‘e’ to edit the commands before booting or ‘c’ for a command-line. Press enter to boot the selected OS, ‘e’ to edit the commands before booting or ‘c’ for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot into firmware setup menu. Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove PUBKEY_ID from trusted keys. Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Render Apple .disk_label. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run ‘gdb %s %d’, and set ARGS.HOLD to zero.
 Run ‘go’ to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING STRING ... Saturday Save read value into variable VARNAME. Save variables to environment block file. Say ‘Hello World’. Script ‘%s’ contains no commands and will do nothing
 Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, ‘root’ is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller ‘%s’; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program ‘%s’; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set ‘hidden’ flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set bit at BYTE:BIT in CMOS. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the base frequency. Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting GRUB_TIMEOUT to a non-zero value when GRUB_HIDDEN_TIMEOUT is set is no longer supported. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show CBMEM console content. Show a help message. Show a long list with more detailed information. Show boot time statistics. Show contents of FILE in hex. Show coreboot boot time statistics. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show raw dump of the CMOS contents. Show raw dump of the PCI configuration space. Show the contents of a file. Show the current mappings. Show the list of trusted keys. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy ‘initrd’ command Simulate grub-legacy ‘kernel’ command Simulate grub-legacy ‘modulenounzip’ command Simulate grub-legacy ‘password’ command Simulate grub-legacy ‘password’ command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Skip signature-checking of the environment file. Skip signature-checking of the public key file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Sorry, no parttool is available for %s
 Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Storage information for ‘%s’ does not include type Storage information for ‘%s’ indicates neither a plain partition nor a plain disk Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Switch to native disk drivers. If no modules are specified default set (pata,ahci,usbms,ohci,uhci,ehci) is used Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 T TARGET THEMES Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This VDEV is a RAIDZ%llu
 This VDEV is a mirror This entry can be booted by any user. This requires setting GRUB_DEFAULT=saved in %s/default/grub.\n Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Transform syslinux config into GRUB one. Translate SET1 characters to SET2 in STRING. Translate to lower case. Translate to upper case. Translates the string with the current settings. Try ‘%s --help’ or ‘%s --usage’ for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command ‘%s’.
 Unknown compression format %s Unknown encoding Unknown extra argument ‘%s’. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown platform ‘%s-%s’ Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized compression ‘%s’ Unrecognized option ‘%s’\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME VDEV element number %d isn't correct
 VDEV element number %d:
 VDEV with %d children
 Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color ‘%s’
 Warning: invalid foreground color ‘%s’
 Warning: syntax error (missing slash) in ‘%s’
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set ‘SystemPartition’ and ‘OSLoader’ manually. You've found a bug Your embedding area is unusually small.  core.img won't fit in it. Your xorriso doesn't support ‘--grub2-boot-info’. Some features are disabled. Please use xorriso 1.2.9 or later. Your xorriso doesn't support ‘--grub2-boot-info’. Your core image is too big. Boot as disk is disabled. Please use xorriso 1.2.9 or later. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] [-s|--skip-sig] [variable_name_to_whitelist] [...] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [-s|--skip-sig] FILE SIGNATURE_FILE [PUBKEY_FILE] [-s|--skip-sig] PUBKEY_FILE [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [DIR] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTIONS] [SET1] [SET2] [STRING] [OPTION] SOURCE... [OPTION] [INSTALL_DEVICE] [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] ‘%s’ is miscompiled: its start address is 0x%llx instead of 0x%llx: ld.gold bug? ‘%s’ is not a local disk ‘cryptomount’ command fails: %s ‘loopback’ command fails: %s ‘nvsetenv’ failed. 
You will have to set ‘boot-device’ variable manually.  At the IEEE1275 prompt, type:
  %s
 ‘obppath’ not found in parent dirs of ‘%s’, no IEEE1275 name discovery a value was assigned to the argument ‘%s’ while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found assume input is a pxelinux configuration file. assume input is a syslinux configuration file. assume input is an isolinux configuration file. attempt to install to encrypted disk without cryptodisk enabled. Set ‘%s’ in file ‘%s’. attempt to read or write outside of disk ‘%s’ attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image ‘%s’ from GRUB attempting to read the core image ‘%s’ from GRUB again available RAM available formats: available targets: bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file ‘%s’ is of unsupported format bless for ppc-based macs bless for x86-based macs blocklist FILE blocklists are incomplete blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't compress ‘%s’ to ‘%s’ can't determine filesystem on %s can't find command ‘%s’ can't mount encrypted volume ‘%s’: %s can't open ‘%s’: %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s can't set %dx%d font size: Freetype error %d: %s cannot compress the kernel image cannot copy ‘%s’ to ‘%s’: %s cannot delete ‘%s’: %s cannot find EFI directory cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot find locale ‘%s’ cannot get translator command line for path ‘%s’: %s cannot make temporary directory: %s cannot make temporary file: %s cannot open OS file ‘%s’: %s cannot open ‘%s’: %s cannot open configuration file ‘%s’: %s cannot open directory ‘%s’: %s cannot read ‘%s’ correctly cannot read ‘%s’: %s cannot rename the file %s to %s cannot restore the original directory cannot seek ‘%s’: %s cannot stat ‘%s’: %s cannot write to CD-ROM cannot write to ‘%s’: %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu compress GRUB files [optional] connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find IEEE1275 device path for %s.
You will have to set ‘boot-device’ variable manually couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom ‘part’ class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d current directory of the syslinux [default is parent directory of input file]. current directory of the syslinux as it will be seen on runtime  [default is parent directory of input file]. cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit device tree must be supplied (see ‘devicetree’ command) disable hinting disk ‘%s’ not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. disk read fails at offset %lld, length %lld diskboot.img size must be %u bytes do not install bootsector do not probe for filesystems in DEVICE domain name component is too long don't update LED state don't update the ‘boot-device’/‘Boot*’ NVRAM variables. This option is only available on EFI and IEEE1275 targets. done embed FILE as a memdisk image
Implies ‘-p (memdisk)/boot/grub’ and overrides any prefix supplied previously, but the prefix itself can be overridden by later options embed FILE as an early config embed FILE as public key for signature checking embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enable ARCS (big-endian mips machines, mostly SGI) boot. Disables HFS+, APM, sparc64 and boot as disk image for i386-pc enable sparc boot. Disables HFS+, APM, ARCS and boot as disk image for i386-pc enabling %s support ... enter: boot, ‘e’: options, ‘c’: cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to copy Grub to the PReP partition failed to get canonical path of ‘%s’ failed to read the sectors of the core image failure reading sector 0x%llx from ‘%s’ failure to read password failure writing sector 0x%llx to ‘%s’ false faulty RAM (BadRAM) file ‘%s’ is too big file ‘%s’ not found filename expected filename or tempo and notes expected filesystem ‘%s’ does not support labels filesystem ‘%s’ doesn't support blocklists filesystem on %s is neither HFS nor HFS+ firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification initrd already loaded install FONTS [default=%s] install GRUB for TARGET platform [default=%s] install GRUB images under the directory DIR/%s instead of the %s directory install THEMES [default=%s] install device isn't specified install even if problems are detected install only LOCALES [default=all] install only MODULES and their dependencies [default=all] invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid argument invalid block size invalid color specification ‘%s’ invalid device tree invalid environment block invalid file name ‘%s’ invalid font range invalid line format: %s invalid modinfo file ‘%s’ invalid parameter %s invalid skip value %lld invalid variable name ‘%s’ invalid video mode specification ‘%s’ invalid zImage ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing ‘%c’ symbol missing mandatory option for ‘%s’ module ‘%s’ isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no EFI routines are available for your platform no EFI routines are available when running in BIOS mode no IEEE1275 routines are available for your platform no SGI routines are available for your platform no ‘/’ in canonical filename no command is specified no compression is available for your platform no decryption key available no hints available for your platform. Expect reduced performance no network card found no random number generator is available for your OS no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected only ipv4 only ipv6 other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found plain Image kernel not supported - rebuild with CONFIG_(U)EFI_STUB enabled pre-load specified modules MODULES prefer ipv4 prefer ipv6 premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print TARGET print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory as it will be seen on runtime [default=/]. root directory of TFTP server root directory of the syslinux disk [default=/]. route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port ‘%s’ isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the label to render set the program name size stretch|normal symbol ‘%s’ not found temporary terminal %s isn't found or it's not handled by terminfo terminal ‘%s’ isn't found the ID of bootloader. This option is only available on EFI and Macs. the PReP partition is not empty. If you are sure you want to use it, run dd to clear it: ‘%s’ the argument ‘%s’ requires an integer the chosen partition is not a PReP partition the device.map entry ‘%s’ is invalid. Ignoring it. Please correct or delete your device.map the drive %s is defined multiple times in the device map %s the drive name ‘%s’ in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. ‘hd0’ or ‘cd’) the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of ‘%s’ is not %u the size of ‘%s’ is too large the size of ‘%s’ is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening ‘%s’ timeout reading ‘%s’ timeout: could not resolve hardware address too deep nesting of symlinks translator ‘%s’ for path ‘%s’ has several non-option words, at least ‘%s’ and ‘%s’ translator ‘%s’ for path ‘%s’ is given only options, cannot find device part translator command line is empty for path ‘%s’ two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected EFI error unexpected end of file unknown argument ‘%s’ unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device ‘%s’ unknown regexp error unknown target format %s
 unknown terminfo type ‘%s’ unrecognised DHCP option format specification ‘%s’ unrecognised network address ‘%s’ unrecognised network interface ‘%s’ unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported platform %s
 unsupported serial port flow control unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for label use COLOR for label background use COLOR for text use DIR as the EFI System Partition root. use DIR for PPC MAC install. use FILE as font (PF2). use FILE as font for label use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] use themes under DIR [default=%s] use translations under DIR [default=%s] variable ‘%s’ isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists write output to FILE [default=stdout]. wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your LDM Embedding Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it.                                                                                                                                                                                                                                                                                                                                                                                                                                                                     boot/grub/locale/eo.mo                                                                              0000600 0001750 0001750 00000126152 13417732100 0013634 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                                ,      )     )     )     )    )    *     +      +     ,  !   ,     A,  $   V,     {,  *   ,     ,     ,     ,  
   ,  	   ,     -     -  7   -     T-  1   ]-     -     -     -     -     -     -     -  $   .     '.     ?.     X.  !   u.     .  `   /  Z   /     /     /     0     0     60     P0     g0     0     0     0     0     0     0     0     1     1     -1     H1  	   Z1  #   d1     1     1     1     1     1     1  &   2     E2  !   L2  ,   n2     2     2     2  !   2     2     2     3     #3     53     P3     l3     3  
   3  
   3     3     3     3     3  $   4     04     M4     e4     4     4  +   4     4  #   4      5     75  $   V5     {5     5  '   5  9   5     6     ,6     J6     Q6     e6  
   |6     6     6  +   07     \7     q7     7     7     7  (   7     7     7     8     8     48  "   F8  0   i8     8     8     8  7   8     8     8     	9     9  2   09     c9     x9     9     9  !   z:  d   :  e   ;  d   g;  i   ;  H   6<     <     <     <  )   <     <     <     =     =     ;=     W=     t=     y=  '   ~=  P   =     =     >     ">     6>     G>     \>     r>  "   >     >     >     >     >     >     ?     ?  %   .?  )   T?  !   ~?  "   ?     ?     ?  +   ?     "@     9@     I@  !   [@     }@     @     @     @      @     @     A     /A     KA     _A     oA     A     A     A     A     A     B  !   B     @B  M   ZB  2   B     B  *   B  8    C     YC     fC     ~C     C  3   C  $   C  +   D     2D     @D     ^D     eD  !   mD     D     D     D     D     D     E     QF     XF     ]F     uF     F     F     F     F      F  "   G     2G     ;G     NG     SG     XG  "   jG  #   G     G     G  	   G  )   G     H     H     &H     =H     SH     gH     H     H  g   H     I     I     I  !   I  "   I  '   J     :J     HJ     eJ     J     J     J     J     J     K     !K     4K     EK  -   eK  )   K     K     K     K     K     K  &    L  )   'L     QL  ^   dL     L  $   L  %   M     (M  ^   M  _   :N  >   N  D   N  !   O  '   @O  -   hO  )   O     O  )   O  )   P  ,   1P     ^P     ~P     P     P     P  E   P  $   $Q     IQ     fQ     Q     Q      Q     Q  q   Q     dR  :   R     R     R     R     S     S     3S  0   HS     yS     S     S  )   S  &   S     T     0T     KT     ^T  )   zT  %   T  %   T  ,   T  '   U  :   EU     U  -   U     U     U  '   U     V  )   #V      MV  !   nV  "   V  #   V     V     V  !   W     *W     @W  <   ZW     W     W  0   W     W     W     X     X  $   "X     GX     ^X     {X     X     X  '   X     X     X     X  '   X  -   %Y     SY  '   \Y  '   Y  .   Y  	   Y     Y     Z     Z     9Z     UZ     pZ  *   Z  /   Z     Z  .   Z  O   +[  )   {[     [     [  	   [     [  5   [     (\     :\     R\     h\     \     \     \     \     \     \  	   \     \     \     ]     ]     7]     >]     E]  
   S]  
   ^]  !   i]  )   ]     ]     ]  0   ]  6   #^     Z^     i^     ^      ^     ^     ^     ^     _     _     8_     Q_     Z_     i_     y_  #   _     _     _     _     _  "   _  &   !`  H   H`  F   `     `     `     `     `     a     a  %   a     Ea     _a     va     a     a     a  [   a     b     3b     Kb     bb     xb  1   b     b     b     b     c     c     /c     Ec     ^c     zc     c     c  	   c  7   c  /   d     7d     Rd     pd     d  F   d     d     e     e     ,e     Ke  (   ie  #   e  '   e  '   e  '   f  0   .f  !   _f    f     8h     Eh     Ih  5  Uh  5  i     j     j     j  !   k     'k  "   ;k     ^k  '   xk     k     k     k  
   k     k     k     k  4   
l     ?l  4   Gl     |l     l     l     l     l     l     l  $   l     m     4m     Mm  /   dm     m     n  S   n     n     o     1o     7o     Vo     lo  !   o  !   o     o     o     o     p      p     5p     Jp  $   gp      p     p  	   p  (   p      p     q  *   *q     Uq     kq  %   q  *   q     q  !   q  0   q     +r  	   7r     Ar  %   ^r     r     r     r     r  #   r  "   r     s     4s     Rs     ds     {s     s  !   s      s  '   s     	t     &t     ?t  !   ]t     t  (   t  !   t  #   t     u     u  (   5u     ^u     tu  .   u  D   u      v     v     9v     Bv     Zv     tv  	   |v     v  4   'w     \w     tw     w     w     w  -   w     w     x     x     )x     Bx  ,   Wx  :   x     x     x     x  7   x  
   #y     .y     @y     Sy  8   gy     y     y     y     y      z  [   z  \   K{  [   {  `   |  R   e|     |     |     |  0   }     E}     N}     b}  !   p}  *   }  &   }     }     }  &   }  O   ~  !   j~     ~     ~     ~     ~     ~     ~  #        1     G     ^      x                  .     0     #   H  #   l            /   ΀            $   1  +   V  %     %        ΁       #        &  $   D     i                         ւ               &     @  $   ]       Q     6        &  &   E  I   l          ˄            ;   '  %   c  .              ˅            #     *        J     a     z          /          $     )     D     W     w  &          (   ۈ  +        0     8     K     P     V  3   i  3        щ       	     -        ,     8     J     Z     j     z                    >            !     '   ?  &   g                    ߌ               <  !   [     }                 6   ۍ  -        @     X     j  
   q     |  .     0          k        e  +     .        ޏ  m     m   *  O     M     $   6  *   [  0     +          &     /   *  0   Z  +     #     $   ۓ             ^   7  -     !   Ĕ  !     !        *  $   I     n       &     B   -  "   p               Ö     ږ       .     '   7     _     {  .     .   Ǘ               /     E  +   c  (     1     5     )      =   J  %     4               4        F  *   O  %   z  &     %   ǚ  #          '   %  '   M     u       2        ݛ  $     -   
     8     >     L     c  5   i       #        ߜ            #        >     S     [  $   h  )          '     $     @        M      V  !   w        !        ܞ        "     1   @     r  2     Y     4        O     h     {        ;                       +     I     `     f     x                              ӡ                         $     1  !   =  ,   _  %          +   Ѣ  4        2      D     e       #        ƣ            %        C     ^     j     {  !     #        Ҥ                  +   )  &   U  I   |  A   ƥ                    .     E     L  $   X     }               Ϧ            t     
                  ȧ  !     :   
     E     X     p  
                  ɨ               #     @     Y  >   b  5     !   ש  !     $        @  G   W               Ҫ  !     #     '   /  $   W  8   |  ,     2     ;        Q         
                      L   x     -   -       &                                         5             W         9  8     p         +      f                 o      1       D   P                                      2   [  B   X          $       O      I         \  v                    0   b                      ;     u  N      6  =   R                                                          w                    S            X   s                   [                  O    `            |       ?   ]              y  A   r       %  \                       C   V   h                            g                      !        	                        :      *                               h  (   {          e         T          ^      P  T   M                               @       d                     @  x            G       q       8  }  i          	      1                           B    m  7            %         n   w   Y   e                            .               b      #          H               C                                L        )  Z                    U      i   '            F          7          "      G   <   >                                 2          Q     A     U  Y  q                 4         Z        v                                  S   9              >    :   4            +    R   #          p      3  }     !                                            j             l      $    t     _    .                   W   _         ;                           ~                   c   ~     H            `                       k                    6       (  z                                  c            5           t       z    {  n                          K            ,                            f   D    V              M  ?    m                  k   ]     Q             r              K  &  )          a                 N   d   E               
      ,             s      /                   u   I           F      J  y   o           ^     /        <                      0  E    |  "                                  *      a         3       =       J                       l  g   j     '           [OPTION...] %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: error: %s: info: %s: warning: - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. > ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR1,MASK1[,ADDR2,MASK2[,...]] ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Allow to interrupt with ESC. Ask for file name to reboot from. Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: BLOCK Base directory for hash list. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list COLOR Change configured devices. Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check key modifier status. Clear the screen. Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute or check hash checksum. Configure serial port. Continue loops Copy FILE to local file LOCAL. Create a blank environment block file. DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] Debug tool for filesystem driver. Define a menu entry. Define a submenu. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Disk count must precede disks list.
 Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. ENVVAR ENVVAR [ENVVAR] ... ESC at any time exits. EXPRESSION EXPRESSION ] Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Enable interpretation of backslash escapes. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FROM[K|M|G] TO[K|M|G] Failed to boot both default and fallback entries.
 Falling back to `%s' Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found NetBSD kernel: %s\n Found kernel of FreeBSD: %s\n Freeze ATA security settings until reset. Friday GNU GRUB  version %s GRUB emulator. Generate a grub config file Get crc32 checksum of FILE. Get/set ATA disk parameters. HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World IMAGE_PATH COMMANDS Insert a module. Invalid command %s.
 Invalid device `%s'.
 Invalid disk count.
 Invoke user configuration routing. List DNS servers List PCI devices. List all files. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Loaded fonts: Loading kernel of Illumos ... MODULE MODULES Make a virtual drive from a file. Manage the BIOS drive mappings. Manipulate PCI devices. Menu entry identifier. Menu entry type. Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Monday NAME NAME [VARIABLE] [HINTS] NUMBER_OF_SECONDS No command is specified.
 No device is specified.
 No known filesystem detected No path is specified.
 No path or device is specified.
 Not enough parameters to command.
 Options: PARTITION COMMANDS PATH PORT PORT VALUE [MASK] Parse legacy config in new context Parse legacy config in same context Part no: %s.
 Partition %s: Path: %s
 Perform both direct and reverse mappings. Play a tune. Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Press any key to continue... Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print a block list. Print and execute block argument. Print drive identity and settings. Print sizes in a human readable format. REGEXP STRING Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot the computer. Reenter password:  Remove a module. Remove an environment variable. Remove any memory regions in specified range. Reset all mappings to the default values. Retrieve device info. Return from a function. SIZE STRING Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Shift positional parameters. Show ACPI information. Show APM information. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show the contents of a file. Show the current mappings. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Specify filename. Specify hash to use. Specify one or more font files to load. Sunday Suppress normal output (warnings remain). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. The files are identical.
 The highlighted entry will be executed automatically in %ds. Thursday Tool to edit environment block. Translates the string with the current settings. Tuesday USER PASSWORD USER PBKDF2_PASSWORD UTF-8 Uncompress file before checksumming. Unknown command `%s'.
 Unknown extra argument `%s'. Unload EFI emulator. Usage: Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use serial console. VARNAME WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. You need to specify at least one command.
 [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [ADDR|comUNIT][,SPEED] [ARG] [ENVVAR=VALUE] [ENVVAR] [NUMBER:]VARNAME [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] `cryptomount' command fails: %s `loopback' command fails: %s attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again blocklist FILE can't find command `%s' can't open `%s': %s cannot compress the kernel image cannot open OS file `%s': %s cannot open `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot write to `%s': %s cat FILE cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu core image is too big (0x%x > 0x%x) couldn't open geom cp FILE LOCAL crc FILE device count exceeds limit diskboot.img size must be %u bytes do not probe for filesystems in DEVICE embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install error: %s.
 false filename expected give this help list grub> hex FILE install even if problems are detected invalid environment block invalid file name `%s' invalid line format: %s invalid parameter %s invalid skip value %lld ls PATH make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. module isn't loaded no command is specified no server is specified no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a regular file one argument expected out of memory output file must be specified premature end of file premature end of file %s print this message and exit print verbose messages. read error at offset %llu: %s set [NAME=VALUE ...] temporary the first sector of the core file is not sector-aligned the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small two arguments expected unable to identify a filesystem in %s; safety check can't be performed unexpected end of file unknown argument `%s' unknown filesystem unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use GRUB files in the directory DIR [default=%s] you need to load the kernel first Project-Id-Version: grub-2.0.0-pre4
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2012-04-05 21:52+0200
Last-Translator: Kristjan SCHMIDT <kristjan.schmidt@googlemail.com>
Language-Team: Esperanto <translation-team-eo@lists.sourceforge.net>
Language: eo
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=(n != 1)
  [OPCIOJ...] %ds %ds restas. ‘%s’ ŝajne enhavas ‘%s’-dosiersistemon kiu ne estas konata pro rezervado de loko por DOS-eca praŝargo. Instalo de Grubo en ĝin povas rezultiĝi en DOSIERSISTEMA DETRUO se valoraj datumoj anstataŭiĝas fare de ‘grub-setup’ (‘--skip-fs-probe’ malŝaltas tiun kontrolon, uzu ĝin proprariske) ‘%s’ ŝajne enhavas ‘%s’-subdisktabelon kiu ne estas konata pro rezervado de loko por DOS-eca praŝargo. Instalo de Grubo en ĝin povas rezultiĝi en DOSIERSISTEMA DETRUO se valoraj datumoj anstataŭiĝas fare de ‘grub-setup’ (‘--skip-fs-probe’ malŝaltas tiun kontrolon, uzu ĝin proprariske) %s, kun Hurdo %s %s, kun Hurdo %s (riparreĝimo) %s, kun Linukso %s %s, kun Linukso %s (riparreĝimo) %s, kun kFreeBSD %s %s, kun kFreeBSD %s (riparreĝimo) %s, kun kerno %s (per %s) %s, kun kerno %s (per %s, riparreĝimo) %s: Haketo-miskongruo
 %s: Akcepti
 %s: LEGERARO
 %s: eraro: %s: informoj: %s: averto: - Etikedo “%s” - Laste modifiĝis je %d-%02d-%02d %02d:%02d:%02d %s --PLI-- [-c DOSIERO [-p PREFIKSO]] [DOSIERO1 [DOSIERO2 ...]] -l | -r | [-s] grubdev osdisk. > ACPI-elŝalto malsukcesis ADDR ADDR VALORO [MASKO] ADR1,MASKO1[,ADR2,MASKO2[,...]] ASKIO Akcepti DOS-specajn CR/NL-linfinojn. Aktivaj enigoterminaloj: Aktivaj eligoterminaloj: Interrompebla per ESK. Demandi por dosiernomo el kiu okazu restartigo. Provas instali Grubon al disko kun pluraj subdisketikedoj aŭ kun kaj subdisketikedo kaj dosiersistemo. Tio ankoraŭ ne estas subtenata. Provas instali Grubon al disko kun pluraj subdisketikedoj aŭ kun kaj subdisketikedo kaj dosiersistemo. Tio ankoraŭ ne estas subtenata. Provas instali Grubon al sensubdiska disko aŭ al subdisko. Tio estas MALBONA ideo. Disponeblaj enigoterminaloj: Haveblaj eligoterminaloj: BLOKO Baza dosierujo por haketlisto. Startigi operaciumon. Praŝargi en unuopan reĝimon. Praŝargi kun sencimigo-mesaĝoj. Praŝargi kun ampleksaj mesaĝoj. Ŝargas na ‘%s’ Praŝargas komandliston KOLORO Ŝanĝi agorditajn aparatojn. Kontroli Alt-klavon. Kontroli stirklavon. Kontroli majuskligan klavon. Kontroli por ĉefprocesoraj trajtoj. Kontroli staton de klavmodifilo. Vakigi la ekranon. Komandoj: Kompari DOSIERO-n kun loka dosiero LOKA. Kompari dosieron '%s' kun '%s':
 Kompari du dosierojn. Kalkuli aŭ kontroli haketan kontrolsumon. Agordi serian pordon. Daŭrigi iteraciojn Kopii DOSIERO-n al loka dosiero LOKA. Krei malplenan ĉirkaŭaĵan blokdosieron. APARATO APARATO [SUBDISKO[+/-[TIPO]]] ... APARATO estu operaciuma aparato (ekz. /dev/sda). APARAT_NOMO DOSIERUJO DOSIERUJO [OSBundleRequired] Sencimigilo por dosiersistema pelilo. Difini menueron. Difini submenuon. Forigi variablojn. Determini pelilon. Determini na UUID de dosiersistemo. Determini dosiersisteman etikedon. Determini dosiersisteman tipon. Determini subdiskmapan tipon. Aparato ‘%s’: Aparat-identigilo: %s
 Elŝalti na ACPI. Elŝalti na SMP. Elŝalti ĉiun praŝargan eligon. Elŝalti/Enŝalti na SMART (0/1) Diskonombro estu antaŭ la diskolisto.
 Kontroli sanstaton de SMART. Montri linion da teksto. Montri blokliston de DOSIERO. Montri eligon sur ĉiuj konzoloj. Montri energi-reĝimon. Montri la uzon de tiu komando kaj eliri. Montri ĉi tiun helpon kaj eliri. Ne eligi finajn malplenajn liniojn. Ne presi mesaĝojn. Ne sondi ajnan disketilon. Ne uzi na APM por haltigi la komputilon. Fari nenion, sukcese. Fari nenion, nesukcese. Ne montri dumpraŝargajn diagnozajn mesaĝojn. Ne ŝargi gastigajn tabelojn specifitajn per perkome disigita listo. Ne restartigi, nur haltigi. Ne ĉesi post la unua eraro. ĈIRKVAR ĈIRKVAR [ĈIRKVAR] ... ‘Esk’ ĉiam elirigas. ESPRIMO ESPRIMO ] Enkorpigo ne eblas. Uzante tiujn agordojn Grubo instaleblas nur se bloklistoj estas uzataj. Tamen, bloklistoj estas MALFIDINDAJ kaj ilia uzo estas malkonsilata. Aktivigi interpretadon de retro-stangaj kombinaĵoj. Entajpu ZFS-pasvorton:  Eniri KDB dum praŝargo. Starti normalreĝimon. Entajpu pasvorton: Enigu uzantnomon:  Eraro dum analizo de komandliniaj argumentoj
 Taksi esprimon. Eliri el Grubo. Eliri iteraciojn Foriri el normalreĝimo. Eksporti variablojn. Eksporti versio-1-tabelojn al la operaciumo. Eksporti versio-2- kaj versio-3-tabelojn al la operaciumo. DOSIERO DOSIERO [ARG ...] DOSIERO [ARGS...] DOSIERO | RAPIDO [GRADO1 DAŬRO1] [GRADO2 DAŬRO2] ...  DOSIERO... DOSIERO1 DOSIERO2 DOSIERNOMO KOMANDO DE[K|M|G] AL[K|M|G] Praŝargo de kaj defaŭlta kaj refala eroj malsukcesis.
 Refalas al ‘%s’ Ne eblis atingi dosiersistemon Dosiersistema tipo: ‘%s’ Plenigi hibridan MBR de GPT-aparato APARATO. Elektitaj subdiskoj estos parto de hibrida MBR. Rajtas esti maksimume 3 subdiskoj. TIPO estas MBR-tipo. + signifas ke subdisko estas aktiva. Nur unu subdisko povas esti aktiva. Finigi ŝargadon de EFI-imitilo. Unue provi la aparaton SUGESTO (je ARC). Se SUGESTO finas je komo, provi ankaŭ subdiskojn. Unue provi la aparaton SUGESTO (je BIOS). Se SUGESTO finas je komo, provi ankaŭ subdiskojn. Unue provi la aparaton SUGESTO (je EFI). Se SUGESTO finas je komo, provi ankaŭ subdiskojn. Unue provi la aparaton SUGESTO (je IEEE1275). Se SUGESTO finas je komo, provi ankaŭ subdiskojn. Unue provi la aparaton SUGESTO. Se SUGESTO finas je komo, provi ankaŭ subdiskojn. Korekti videobildan problemon. Trovis kernon de NetBSD: %s\n Trovis kernon de FreeBSD: %s\n Frostigi sekurecagordojn de ATA ĝis restartigo. Vendredo GNU GRUB  versio %s GRUB-imitilo. Generi agordan dosieron de Grubo. Akiri ‘crc32’-kontrolsumon de DOSIERO. Akiri/agordi parametrojn de ATA-disko. HAKETO SUGESTO Haltigi la sistemon, se eblas per APM. Haltigi la komputilon. Tiu ĉi komando funkcias ne kun ĉiuj firm-programaĵoj. Trakti N bajtojn en elira dosiero Saluton mondo BILDO_VOJO-KOMANDOJ Enmeti modulon. Nevalida komando ‘%s’.
 Nevalida aparato ‘%s’.
 Nevalida diskonombro.
 Alvoki enkursigon de uzantagordado. Listigi DNS-servilojn Listigi PCI-aparatojn. Listigi ĉiujn dosierojn. Listigi aparatojn kaj dosierojn. Listigi aparatojn aŭ dosierojn. Listigi aparatojn. Listigi dosierojn en VOJO. Listigi memormapon provizitan de firmprogramo. Listo de uzantoj kiuj rajtas startigi tiun eron. Listigi aŭ elekti enigoterminalon. Listigi aŭ elekti eligoterminalon. Listigi la nunajn variablojn. Listigi la ŝargitajn tiparojn. Listigi variablojn el ĉirkaŭaĵa blokdosiero. Ŝargi 64-bitan XNU-bildon. Ŝargi BIOS-nekropsion Ŝarĝado de ĉirkaŭaĵo de FreeBSD Ŝarĝado de kerna modulo de FreeBSD (ELF). Ŝarĝado de kerna modulo de FreeBSD. Ŝarĝado de 'kernel.sys' de FreeBSD. Ŝarĝado de Linukso. Ŝarĝado de NTLDR na BootMGR Ŝargi kernmodulon de NetBSD (ELF). Ŝargi kernmodulon de NetBSD. Ŝargi dosierujon de XNU-etendaĵoj. Ŝargi XNU-aldonpakaĵon. Ŝargi XNU-aldonaĵon. Ŝargi XNU-bildon. Ŝargi PXE-bildon. Ŝargi klavarfasonon. Ŝargi multiboot-2-kernon. Ŝargi multiboot-2-modulon. Ŝargi multiboot-kernon. Ŝargi multiboot-modulon. Ŝargi salutŝildon por XNU. Ŝargi kaj pravalorizi EFI-imitilon. Ŝargi alian praŝargilon. Ŝargi alian agordodosieron sen ŝanĝo de kunteksto sed kun nur menu-elektebloj. Ŝargi alian agordodosieron sen ŝanĝi la kuntekston. Ŝargi alian agordan dosieron. Ŝargi fonbildon por aktiva terminalo. Ŝargi gastigajn ACPI-tabelojn kaj tabelojn specifigitajn per argumentoj. Ŝarĝado de initrd. Ŝarĝado de kerno de FreeBSD. Ŝarĝado de kerno de NetBSD. Ŝarĝado de kerno de OpenBSD. Ŝargi nur la tabelojn donitajn en komo-dispartigita listo. Ŝargi la saman dosieron plurmaniere. Ŝargi variablojn el ĉirkaŭaĵa blokdosiero. Ŝargitaj tiparoj: Ŝarĝado de kerno de Ilumoso... MODULO MODULOJ Fari virtualan aparaton el dosiero. Mastrumi la mapigojn de BIOS-datumportilo. Manipuli PCI-aparatojn Identigilo de menuenigo. Tipo de menuenigo. Minimuma ‘BASH’-eca linimodifado estas subtenata. Por la unua vorto, TABO listigas eblajn komandojn. Aliloke TABO listigas eblajn aparatojn aŭ dosierojn. %s Minimuma Emacs-eca ekranmodifado estas subtenata. ‘Tabo’ listigas kompletaĵojn. Premu ‘Stir-x’ aŭ ‘F10’ por praŝargi, ‘Stir-c’ aŭ ‘F2’ por komandlinio aŭ ‘Esk’ por forĵeti modifojn kaj reiri al la GRUB-menuo. Lundo NOMO NOMO [VARIABLO] [SUGESTOJ] NOMBRO_DA_SEKUNDOJ Neniu komando estas specifita.
 Neniu aparato estas specifita.
 Detektis neniun konatan dosiersistemon Neniu vojo estas specifita.
 Neniu vojo aŭ aparato estas specifita.
 La komando ne havas sufiĉe da parametroj.
 Opcioj: SUBDISKAJ KOMANDOJ VOJO PORDO PORDVALORO [MASKO] Sintakse analizi heredaĵagordojn en nova kunteksto Sintakse analizi heredaĵagordojn en sama kunteksto Parto-nr.: %s.
 Subdisko ‘%s’: Vojo: %s
 Plenumi mapigojn kaj direktajn kaj inversajn. Ludi sonon. Eblaj argumentoj: Eblaj komandoj: Eblaj aparatoj: Eblaj dosieroj: Eblaj subdiskoj: Eblaj aĵoj: Premu klavon por daŭrigi ... Premu ‘enigi’ por praŝargi la elektitan operaciumon, ‘e’ por modifi la komandojn antaŭ praŝargo aŭ ‘c’ por komandlinio. Premu ‘enigi’ por praŝargi la elektitan operaciumon, ‘e’ por modifi la komandojn antaŭ praŝargo aŭ ‘c’ por komandlinio. ‘Esk’ por reiri al antaŭa menuo. Montri memoro-informojn. Presi liston de blokoj. Eldoni kaj lanĉi blokargumenton. Montri identon kaj agordojn de aparato. Montri grandojn en home legebla formo. REGEXP SIGNOĈENO Legi 16-bitan valoron de ADDR. Legi 16-bitan valoron el PORDO. Legi 32-bitan valoron de ADDR. Legi 32-bitan valoron el PORDO. Legi 8-bitan valoron de ADDR. Legi 8-bitan valoron el PORDO. Legi nur bajtojn de longo LENGTH. Restartigi la komputilon. Reenigu pasvorton:  Forigi modulon. Forigi ĉirkaŭaĵan variablon. Forigi ĉiujn memorregionojn en la specifita amplekso. Agordi ĉiujn mapigojn al defaŭltaj valoroj. Ricevi aparatinformojn. Reiri de funkcio. GRANDO SIGNOĈENO Sabato Konservi legitan valoron en variablon VARNOMO. Konservi variablojn al ĉirkaŭaĵa blokdosiero. Diri "Saluton mondo". Serĉi aparatojn per UUID. Se VARIABLO estas specifita, la unue trovita aparato estas agordita al variablo. Serĉu aparatojn per dosiero. Serĉu aparatojn per UUID de dosiersistemo. Serĉu aparatojn per etikedo de dosiersistemo. Serĉi aparatojn per dosiero, dosiersistema etikedo aŭ UUID de dosiersistemo. Se --set estas specifita la unue trovita dosiero estas agordota al variablo. Se neniu variablo-nomo estas specifita, "ĉefuzanto" estas uzota. Serĉi aparatojn perdosiere. Se VARIABLO estas specifita, la unue trovita aparato estas agordita al variablo. Serĉi aparatojn peretikede. Se VARIABLO estas specifita, la unue trovita aparato estas agordita al variablo. Agordi altnivelan energi-mastrumadon
(1=malalta, ..., 254=alta, 255=malaktiva). Agordi Aŭtomatan Akustikan Mastrumadon
(0=for, 128=kvieta, ..., 254=rapida). Agordi OEMID de RSDP, XSDT kaj RSDT. Agordi OEMTABLE ID de RSDP, XSDT kaj RSDT. Agordi OEMTABLE-revizion de RSDP, XSDT kaj RSDT. Agordi variablon al la unue trovita aparato Agordi ĉirkaŭaĵan variablon. Ŝargi fonbildon por aktiva terminalo. Agordi kampon 'creator' de RSDP, XSDT kaj RSDT. Agordi revizion 'creator' de RSDP, XSDT kaj RSDT Agordi variablon de sencimiga ĉirkaŭaĵo. Agordi aparaton al dormeta reĝimo. Agordi aparaton al atendada reĝimo. Agordi poziciajn parametrojn. Agordi radikan aparaton. Agordi limtempon de preteco
(0=neaktiva, 1=5 sek, 2=10 sek, ..., 240=20 min, 241=30 min, ...). Agordi ‘terminfo’-tipon de TERM al TIPO.
 Agordi la adreson de seria pordo. Agordi la parecon de seria pordo. Agordi la rapidon de seria pordo. Agordi la seriajn stop-bitojn. Agordi la vortlongon de seria pordo. Agordi la serian unuon. Agordi bildojn kiuj praŝargiĝu de APARATO.

Normale vi ne lanĉu ĉi tiun programon rekte. Uzu ‘grub-install’ anstataŭe. Agordi pasvorton por uzanto (PBKDF2).  Agordi uzantpasvorton (simpla teksto). Nerekomendate kaj nesekure. Agordi variablon kun uzanto-enigo. Agordi variablojn. Ŝovi poziciajn parametrojn. Montri ACPI-informojn. Montri APM-informojn. Montri helpan mesaĝon. Montri longan liston kun pli detalaj informoj. Montri la enhavon de dosiero deksesume. Montri ŝargitajn modulojn. Montri la enhavon de memoro. Montri krudan enhavon de ATA-IDENTIFY-sektoro. Montri krudajn enhavojn de dosiero aŭ memoro. Montri la enhavon de dosiero. Montri la nunajn mapigojn. Montri tiun mesaĝon. Montri nur versio-1-tabelojn. Montri nur versio-2- kaj versio-3-tabelojn. Simuli initrd-komandon de grub-heredaĵo Simuli komandon »kernel« kiel en grub-heredaĵo Simuli ‘modulenounzip’-komandon de grub-heredaĵo Sumuli pasvort-komandon de grub-heredaĵo Simuli pasvortkomandon de grub-heredaĵo en reĝimo menuenigo Transsalti N bajtojn de elira dosiero Transsalti "offset" da bajtoj komence de la dosiero. Specifi dosiernomon. Specifi uzendan haketon. Specifigi unu aŭ plurajn ŝargotajn tipardosierojn. Dimanĉo Subpremi normalan eligon (avertoj restos). Terminalo havas specifitan geometrion Terminalo estas nur-ASKIA [defaŭlte]. Terminalo estas UTF-8 en logika ordo. Terminalo estas UTF-8 en vida ordo. Testi USB-subtenon. Testi ĉu REGESPR egalas al SIGNOĈENO. Testi video-subsistemon en reĝimo AxL. Testi video-subsistemon. La dosieroj estas identaj.
 La elektita ero estos aŭtomate lanĉata post %ds. Ĵaŭdo Ilo por modifi ĉirkaŭaĵan blokon. Tradukas la signoĉenon per la nunaj agordoj. Mardo UZANTPASVORTO UZANTO PBKDF2_PASVORTO UTF-8 Malkompaktigi dosieron antaŭ kalkulo de kontrolsumo. Nekonata komando ‘%s’.
 Nekonata aldona argumento ‘%s’. Malŝargi EFI-imitilon. Uzado: Uzi KD-ROM-on kiel radikon. Uzi GDB-sencimigilon anstataŭ DDB. Uzi serian konzolon. VARNOMO LARĜOxALTO. Atendi specifan nombron da sekundoj. Atendi klavofrapon post ĉiu eliga linio. Averto: Averto: nevalida malfonkoloro ‘%s’
 Averto: nevalida fonkoloro ‘%s’
 Atenton: sintaksa eraro (mankanta oblikvo (‘/’) en ‘%s’
 Merkredo Skribi 16-bitan valoron al ADDR. Skribi 16-bitan VALOROn al PORDO. Skribi 32-bitan valoron al ADDR. Skribi 32-bitan VALOROn al PORDO. Skribi 8-bitan valoron al ADDR. Skribi 8-bitan VALOROn al PORDO. Vi specifu almenaŭ unu komandon.
 [--append|--remove] [TERMINALO1] [TERMINALO2] ... [--md5] PASVORTO [DOSIERO] [--no-mem-option] [--type=SPECO] DOSIERO [ARG ...] [-1|-2] [--exclude=TABELO1,TABELO2|--load-only=tabelo1,tabelo2] DOSIERO1 [DOSIERO2] [...] [-c DOSIERO [-p PREFIKSO]] [DOSIERO1 [DOSIERO2 ...]] [-d] APARATNOMO DOSIERO. [-e|-n] SIGNOĈENO [-f DOSIERO] [-f DOSIERO] variabla_nomo [...] [-f|-l|-u|-s|-n] [--hint SUGESTO [--hint SUGESTO] ...] NOMO [-h|-p|-r] [DOSIERO] [-l] GRUBUUID [VARNOMO] [-l|-h|-a] [DOSIERO ...] [-m (stretch|normal)] DOSIERO [ADR|comUNIT][,RAPIDO] [ARG] [ĈIRKVAR=VALORO] [ENVVAR] [NUMERO:]VARNOMO [OPCIOJ...] [OPCIOJ] [OPCIOJ] DISKO [OPCIOJ] DOSIERO_AŬ_APARATO [OPCIOJ] TIPAR_DOSIEROJ [OPCIO]... [VOJO|APARATO] [OPCIOJ] [VOJO] [ŜABLONO ...] [UZANTLISTO] [VALORO]... [[-a|-u|-v] [-g LxA] TERM [TIPO]] [[jaro-]monato-tago] [horo:minuto[:sekundo]] `cryptomount'-komando malsukcesis: %s `loopback'-komando fiaskis: %s provas legi la kernbildon ‘%s’ el Grubo provas relegi la kernbildon ‘%s’ el Grubo denove blocklist DOSIERO ne eblas trovi komandon ‘%s’ ne eblas malfermi na `%s': %s ne eblas densigi la kernbildon ne eblas malfermi OS-dosieron %s:%s ne eblas malfermi na '%s': %s ne eblas legi ‘%s’ korekte ne eblas legi na '%s': %s ne eblas alinomi la dosieron %s al %s ne eblas skribi al '%s':%s cat DOSIERO cmp DOSIERO LOKA comUNIT[,RAPIDO] komparado fiaskis je deŝovo %llu kernbildo tro grandas (0x%x > 0x%x) ne eblas malfermi na Geom cp DOSIERO LOKA crc DOSIERO nombro da aparatoj superas limon grando de ‘diskboot.img’ estu %u bajtoj ne sondi por dosiersistemoj en APARATO enkorpigo ne eblas, sed tio estas postulata por instaldo per RAID kaj LVM enkorpigo ne eblas, sed tio estas postulata por krucdiska instalo eraro: %s.
 false atendis dosiernomon montri ĉi tiun helpon grubo> hex DOSIERO Instali eĉ se detektiĝis problemoj nevalida ĉirkaŭaĵa bloko nevalida dosiernomo ‘%s’ nevalida linia formo: %s nevalida parametro %s nevalida transsalt-valoro %lld ls VOJO igi la diskilon praŝargebla ankaŭ kiel disketilon (defaŭlto por fdX-aparatoj). Eblas kadukiĝi je kelkaj BIOS-oj. neŝargita neniu komando estas specifita neniu servilo estas specifita neniu terminalo estas specifita ĉenfinilo mankas en la kernbildo ne-sektor-aliniigitaj datumoj troviĝis en la kern-dosiero ne estas dosierujo ne estas regula dosiero atendis unu argumenton memormanko elig-dosiero estu specifita neatendita fino de dosiero neatendita fino de dosiero %s montri tiun mesaĝon kaj eliri eldoni ampleksajn mesaĝojn. legeraro je deŝovo %llu: %s agordi [NOMO=VALORO ...] dumtempe la unua sektoro de la kern-dosiero ne estas sektor-alliniigita la sektoroj de la kern-dosiero estas tro fragmentitaj la grando de ‘%s’ ne estas %u la grando de ‘%s’ tro grandas la grando de ‘%s’ tro malgrandas atendis du argumentojn ne eblas rekoni dosiersistemon en ‘%s’; sekurkontrolo ne lanĉeblas neatendita fino de dosiero nekonata argumento '%s' Nekonata dosiersistemo nesubtenata pareco de seria pordo nesubtenata rapideco de seria pordo nesubtenata nombro da seriaj stop-bitoj nesubtenata vortlongo de seria pordo Uzi DOSIERO-n kiel la praŝargilan bildon [defaŭlte=%s] Uzi DOSIERO-n kiel kernbildon [defaŭlte=%s] uzi DOSIERO-n kiel aparatdosierujon [defaŭlte=%s] Uzi GRUB-dosierojn en la dosierujo DOSIERUJO [defaŭlte=%s] unue vi ŝargu la kernon                                                                                                                                                                                                                                                                                                                                                                                                                       boot/grub/locale/es.mo                                                                              0000600 0001750 0001750 00000327415 13417732100 0013645 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                       x     #    G      _  #   _      _     _     _     `  $   `     =`  6   Q`     `     `  	   `     `     `     `     `     `     a  .    a  .   Oa  %   ~a     a     a    a    b    c     d  7   d  F   e  v   be  +   e     f      f     7f  !   If     kf  ,   f     f     f  $   f     g  *   #g     Ng     ag     ig     yg     g  
   g  	   g     g  ,   g  ,   h  ,   <h  '   ih  -   h      h  (   h  (   	i  )   2i     \i     |i     i     i     i  "   i  4   i     j     j  7   (j     `j  1   ij     j     j  %   j  '   j  %   k  '   1k     Yk     ^k     `k     ~k     k     k     k     k     k     k     k     l     l     (l  3   5l     il  $   ol     l     l     l     l     l     l     m  -   )m     Wm  !   tm     m     m     m  #   m      n  `   n  Z   n     Do     _o     {o     }o     o     o     o     o     o     o     o     p     %p     ?p     [p     hp     p     p     p     p     p     p     p  %   p     	q     (q     <q     Sq     nq     q     q     q     q  *   q  3   q     .r  "   Ir  8   lr     r     r  	   r  #   r     s      s     3s     Ss     ss     s  )   s     s     s      t  P   t     ot     t  H   t  &   t     	u     !u  !   (u  ,   Ju     wu     u     u  	   u  !   u  *   u     u     v     (v     :v     Tv  $   lv     v     v     v     v     v     w  
   %w  
   0w     ;w  1   Nw     w     w     w     w  3   w  >   x  $   Cx     hx     x     x     x     x     x  +   y     /y     Ky  #   iy     y     y  $   y     y     z  '   z  9   Fz     z     z  z   z     2{     9{  8   M{     {  
   {     {     {     {     {     |  +   |     |     |     |  "   }     5}     F}  (   W}     }     }     }     }     }     }  "   }  0   ~     A~     F~     U~  7   d~     ~     ~     ~     ~     ~     ~  0   ~          /     A     W  2   n  %               *     6     +   M     y            !   {  d     e     d   h  i   ͂  o   7  H                       *     =     S     m       #             ߄       1   	  )   ;     e     l     n       /             х       5        ;     Z  K   v          ކ                           '   $  P   L            	   ȇ     ҇     Շ       '     +   0     \     m  )             ʈ                    0     F  $   [            "        Љ     ҉     މ  (               "     +   A  -   m               Ê     Ԋ       O        F     \     t            %        Ӌ  )     !     "   >     a     }  +             ׌       !             7     P     \      s                                4         U     t                    Ԏ                #  !   D     f  4     M     2        6     P  *   n  8        Ґ     ߐ               %  3   =  $   q  +             ב                    "      >     _     }            D               7      ;   8     t       !        Փ       s                       Ŕ     ؔ                    0     4     :                    Ö     ʖ     ֖            '   %  
   M     X     g     }                      H   ͗          )     E     U  %   d            #                       $      ;     \      {       "     (   ̙       %        7  2   Q            #     *   ʚ               
  #        3     8  	   J  	   T  "   ^  ;     #     <             ,     J  .   X  	          `          !     )   ;     e     i     o     w  q             
     !     0     G     Z     p            "   Þ                    0     G     ]     q       #        ß       g        d            -         N  !   b       "     '     Q        2     N     h     |                    ڢ               0     L     d      r                     ܣ                 -   <     j       "     b     )        H     ^     v  ,             ץ  	   ܥ  "     %   	     /     4     I     P  &   Y  )          ^          $   6  %   [       ^   4  _     }        q  )   (  '   R  >   z  D     !     '      -   H  #   v       )          )     )   +  ,   U                    ֬       E     $   H  A   m  )        ٭               -      L     m  q          :        L     j     y               ͯ            0        E     c     x  )     &        ߰               *  )   F     p  %     %     ,   ̱  '     :   !     \  -   {       .               '     $   7  "   \                 *               )     o               6   ]            0         ε  !     "     #   4     X     j            !        ߶  
           <     %   W  >   }          ŷ     ɷ     Ϸ            d     *     0     6   ܸ               )     >     R     X  0   r       !        ع       $        ,     E     \     z       $     "   ͺ  $             *      >     _     t                         һ       '        /     O  $   h  +     "        ܼ  )                  =     ]     r  '             ͽ       <         ;     \     d     w  m                   5     O     h  +     3     1          '   "  -   J     x  '     '     .     	         
     &     ?     [     w                                *     ?   J  B     p        >  /               .   $  O   S  )               	          5        P     b     z            :                   *     0     C     J     Y     b                      	                                 1     8     ?  
   M  
   X  	   c     m  !   s  )                         F   "  N   i       "               -      -   .  $   \  #     0     6                  .  (   <  1   e  )               !        	           >  %   V     |  &                     7     .   H  4   w                           %   .     T     i     ~                           ,        /     >     N     j     }       #               B        @     \     |                 &             !     /     8     V  &   p                      ;     V   *  "     &     !                  	  /   '  H   W  F     w     N   _  (               I     $   I  '   n       %                         $     '   :  *   b                 J             5     P  -   d  +          $          "     +     J   A  %                "              !     B     \     s                      %             +     I  %   f                           [        B  !   V     x                                             )     ?     Y     v                                        ,  1   L     ~                                1          0        5     J  !   `       "                                 '     <     H     W     g     x                 &                       6     T  '   i  &          L             0  !   D     f                                                #   .  #   R  $   v            &          !             (     =     B     Q  	   g  7   q       %     [     w   E  7     K     #   A  /   e                 &     U     @   i  Q                  +  +   @     l  R     L     .   )     X     o  F   t                              .      A     b     w       2     !     #        %     9     Q     b                           (     #   8     \     u            )               '     '   @  '   h       0               -     8   G            !                     .        L  !   j  B     E     B       X  $     (        ?  '   Z       /           R        >     D     X     q  &                         3   
  3   >  *   r            F    G    F  >       E     J     y   )  '          '          (        =  1   W            +          3         4  	   I     S     i       
          !     1     0     1   G  /   y  2     $     0     0   2  1   c  #     #     
     	     	     4     D   1     v     ~  P          :     #   %     I  (   L  +   u  (     +               &        (     @  
   W     b     ~  3                              2   !     T  /   Z                                  ' 2   B !   u ;        "        *   0    [ j    \   d "    !                   )    0 ;   9 &   u "        )    $       ,    K $   ]              $                4    1   K    } !    %                   2 )   P N   z @    5   
 6   @ L   w     '    	    	 .   
	 &   9	    `	 '   v	    	    	    	 7   	 (   
 '   E
 1   m
 f   
         Q   8 -            &    R       ^ 
   t         F    6    #   (    L    l         2            *    .   > *   m )        !    +    ?        `    r -        :    Q    9   ^     !        )    (       H '   e         $        /    (   6 *   _ *    1    N       6 #   V    z     -   $ [   R 5    
             &       D ,    @   5    v         &        !   
 :   ,    g                     *    0       2    :    S :   l 
                         0       9    Q    ]    p @    /    '       ! 4   : F   o 7    *        <  8 "   u        &        C     m   t                 /     G     g  "     *     3     #   	!     -!    N! <   d! ?   !    !    !    !    " 1   "    M"     _" "   " P   " %   " +   # L   F# 4   # ,   # )   #    $    #$    )$    .$ 0   :$ X   k$ %   $ 
   $ 	   $    $ &   %    4% <   O% 7   %    %    % 6   %    /& '   L& "   t&    &    &    &    & )   	'    3'    K' 3   i'    '    '    ' 2   '    '    ' *   ' 5   !( 5   W(    (    (    (    (    (    )    )     )     )    ) $   * @   0* #   q* =   * 0   * /   +    4+    T+ :   r+ #   +    +    + +   , (   7,    `,    ,    , *   , '   ,    , &   - #   9-    ]-    w- G   - *   -    . #   . !   =. !   _.    .    . $   . "   . #   	/ "   -/ T   P/ g   / =   0 %   K0 !   q0 1   0 R   0    1 (   &1    O1    l1    1 J   1 ,   1 4   2 -   R2    2    2    2    2 %   2 !   2    3    63    J3    L3 X   h3    3    3 F   3 I   4 6   c4 %   4 /   4    4 .   5    >5    5 !   5    6    6    66 &   T6 ,   {6    6    6    6    6   7    8    8    8 
   8 )   
9     49    U9 =   s9    9    9    9    9     9    :    :    0: d   O:    : <   :    ; !   #; 8   E;    ~; &   ; 8   ;    ; 2   <    K< $   `< 1   < !   < 3   < 0   = )   >= -   h=    = *   = -   = ;   > 	   I>    S> %   q> +   >    >    >    > '   >    ?    ?    %? 	   .? 7   8? b   p? 7   ? c   @    o@ #   @    @ 4   @ 	   @    @ |   A    A #   A -   A    A    A    A    B    B    B    B    B     B    C    4C    QC -   nC (   C 2   C     C "   D    <D    ZD    uD    D    D    D &   D *   E %   1E    WE    E #   F 0   F 2   F    G 3   4G    hG 6   G 9   G n   G    aH    H    H    H    H &   H #   I &   5I #   \I %   I "   I    I    I 3   I    0J    GJ     eJ #   J    J    J     J >   J "   6K    YK _   rK ~   K :   QL %   L    L (   L 2   L '   &M    NM    WM /   dM (   M    M    M    M    M 9   M 8   #N    \N f   qN    N 7   N ;   0O    lO i   UP j   P    *Q    Q 5   R =   S ^   BS g   S %   	T +   /T 8   [T 6   T &   T 5   T    (U 1   HU 2   zU @   U -   U "   V $   ?V $   dV    V k   V 8   W Z   KW 8   W )   W &   	X (   0X .   YX 2   X    X    X +   `Y K   Y 6   Y    Z '   !Z "   IZ    lZ "   Z +   Z    Z 8   Z 2   /[    b[ %   [ 3   [ 9   [ #   \    9\    X\ 0   n\ 6   \    \ #   \ #   ] *   /] %   Z] @   ] $   ] 8   ]    ^ Q   3^ !   ^    ^ 4   ^ 5   ^ -   -_    [_ 3   k_    _ ;   _    _    _ 2   `    4` "   `    ` H   a    ,b    .b >   7b *   vb 2   b +   b *    c    +c (   Ec *   nc .   c 2   c    c    d    'd :   Ed A   d @   d    e    
e    e +   e    @e    _e x   ~e ;   e ,   3f >   `f    f    f    f    f    f (   f 1   g )   Hg #   rg &   g    g )   g "   g    h %   8h    ^h $   xh <   h $   h &   h    &i    Di ,   `i    i    i    i    i    i    i    j #   6j .   Zj ,   j    j ,   j 1   k &   4k    [k +   `k    k 1   k %   k    k    l .   'l 2   Vl 0   l    l ;   l &   m    3m    Fm    ]m    ym @   m !   @n )   bn &   n %   n 6   n I   o C   Zo    o +   o H   o    #p (   *p ,   Sp 5   p 
   p )   p &   p *   q &   =q *   dq &   q )   q %   q    r    !r    =r (   Br C   kr Q   r    s    s /   $t    Tt    lt 8   t U   t 3   u #   Mu    qu    u %   u E   u    u    v    +v    Dv    bv I   v    v "   v    w    w 	   +w    5w    Qw -   gw    w    w 	   w    w 
   w    w     w    x    2x    Jx 
   jx    ux    |x    x 
   x    x    x ,   x (   x    #y    :y &   Uy $   |y j   y >   z    Kz 1   [z 
   z    z 1   z 1   z .   { #   D{ 1   h{ :   {    {    {    { 0   | 9   <| 2   v|    | %   | ,   |    } 2   ,} %   _} 0   }    } 5   } ,   	~ 0   6~ +   g~ I   ~ C   ~ N   ! .   p     %        '    ,   &    S )   q !    "    /           & 3   2 9   f         0   Ɂ            ! 5   ?    u     `    (    2   =    p %        #   ˃ 8    '   (    P    a    m     '       τ ,           + A   F m    /    ,   & 6   S !        2    F    N   , a   {    ݇ j    ;    $   &    K _   W .    %        )   *    T    Z    r     8    6    >    *   Y         Y    '    )   >    h ?    4   Ȍ     6       = -   I :   w \    &       6 =   T ?       Ҏ *        #   7    [     w     '    $   ُ 3    !   2     T    u 7       ͐            !    )    ?    Ƒ )   ߑ "   	    ,    H ,   O    | %    &    "    (    '   , $   T 6   y     -   Г $    !   #    E +   ^         ,   Ĕ F       8    L    j                  A    *   Ֆ P        Q    j (    %    -   ח            <    [    u             '   ؘ +        , %   F )   l      0            &   " .   I    x )    3        \    "   X    { 5    )   ɛ '    !       = #   T (   x (    +   ʜ          >   2 >   q ;        $   	 F   .    u 0    .            :    &   N    u D   ~ "   ß (    n       ~ B    _   K (    @   ԡ     (   3 *   \ (    m    F    x   e    ޣ          A   = ,    k    v    D       ԥ     f    "   ]             #   ֦     .    *   I     t '    ?    &    $   $    I    _    y         $   Ǩ     %   	 '   / 8   W 1       ©    ک )       " >   : '   y (    =   ʪ ;    ?   D $    F    %    %    J   < I    "   Ѭ     $    *   4 '   _     6       ӭ !    R    O   h T           #       `  %  q      1    W    V                5  :  v  )           n  M  p               :   %  \                    6        `   d           K      S                  {            O            r     ?      t  '  8  9  k              s            ^  o                  S  a                                  L    k  `      
              3      <          U  3    R   e  .       "      G      ,   {       ^                            <  k  B  =   Q     .   X  !  C     K                    m                      
    j           e  2                  d   
     y    0                            V  x                  #  P       )         k  A           A                 {             _            N  L                       K    F     $                       i     O                        P  (    9   	       #  '  c   0  !               I    !                                         %                       i    q        o                  h             l  z                          i    X  f         
                                       <        s        !         @        v     |                        C        ,          *    T                   w      	   -      f   R  ;                                          y           G      #   g                     1             u      D         '   /  @   q    R                O      0  D            T             A      [  ]                    L   O                  ,    }              t     )          g  .    ,          4   ]  l        q           l  >                   w  D                }     &         x          M  \              \                                     4  ?            N  o      ~      d  *      r          e      /                   X    C                                         l      v              ^                            p    r     L         %             7  3      G  f  7    .                     H  s    Z                  r                            (                   W    (          h  8  w          S              ]           n          (  u               a      d  7            c              ]                        "                j  w               7                1        t          ?   u                    Q  M                        +       Z                        h       U  /            n                      '               I           z    W                              *       =  z          {             E        4  m      j      9           Y         3          6      S    2              &              u    c  s              i    \    5       Z      b              A      Q          k           G     v  F        x                      F  o                        a      &      x  -  `  _  B  ]      1   h  s         U               J  2          -   ?  ~    T      g     L               [  &  =          <    R      2                     J               I      f      N            F            W         )                    [                  u  5           ?    _           t             P                         U              o             ;            b  N    
           $          -                   i         \  K  Y  Z                                  w       8      E  |  *            M          /      I  @     b          z                   T  |                   j     ^                   ;          I      y            J               6         n     $        $       (      H      V  b  H   "  8           D  >     %      !    "  >  1     Y     3                           .  [  $  c        :    @  m  m    H  2     l             E                 	          9    ~                     g  }    |  	      +      *              >  D        O              C  :        f              M              =                9  Y            6   p      -             /      v     #               d  0  r  y   a                <   N   J             b          Z            A       :        S                         ,    K   +                     a      h           c      6                       }  E         5   ;      C       [       @          >                                                  W      ^         )          =        g      Q       F      e   X       J                  E  0           ~       Y               '  T      B       x      Q  	  H    e                             m   p   +  X      _  G                     P          4  7    +            B      V  p    V            t      U        5                   R    _       j    ;          4             "                 &   n      `    q   8   P  B                           total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: option '%c%s' doesn't allow an argument
 %s: option '%s' is ambiguous; possibilities: %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File size: %s
 File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS Import ZFS wrapping key stored in FILE. Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List coreboot tables. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... M MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MODULE MODULES Mail xorriso support requests to <bug-xorriso@gnu.org>. Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Option -- switches to native xorriso command mode. Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] PUBKEY_ID Paletted  Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot into firmware setup menu. Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Render Apple .disk_label. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show CBMEM console content. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show the contents of a file. Show the current mappings. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Switch to native disk drivers. If no modules are specified default set (pata,ahci,usbms,ohci,uhci,ehci) is used Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 T TARGET Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This entry can be booted by any user. This requires setting GRUB_DEFAULT=saved in %s/default/grub.\n Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. Your embedding area is unusually small.  core.img won't fit in it. Your xorriso doesn't support `--grub2-boot-info'. Some features are disabled. Please use xorriso 1.2.9 or later. Your xorriso doesn't support `--grub2-boot-info'. Your core image is too big. Boot as disk is disabled. Please use xorriso 1.2.9 or later. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `cryptomount' command fails: %s `loopback' command fails: %s `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format blocklist FILE blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s cannot compress the kernel image cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot get translator command line for path `%s': %s cannot open OS file `%s': %s cannot open `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. diskboot.img size must be %u bytes do not probe for filesystems in DEVICE domain name component is too long don't update LED state done embed FILE as an early config embed FILE as public key for signature checking embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enable ARCS (big-endian mips machines, mostly SGI) boot. Disables HFS+, APM, sparc64 and boot as disk image for i386-pc enable sparc boot. Disables HFS+, APM, ARCS and boot as disk image for i386-pc enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to get canonical path of `%s' failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification install GRUB images under the directory DIR/%s instead of the %s directory install even if problems are detected invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid block size invalid color specification `%s' invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no `/' in canonical filename no command is specified no decryption key available no network card found no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found pre-load specified modules MODULES premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory of TFTP server route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the argument `%s' requires an integer the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for label use COLOR for label background use COLOR for text use DIR as the EFI System Partition root. use FILE as font (PF2). use FILE as font for label use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub 2.00+20130519
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-06-01 14:56+0200
Last-Translator: Miguel Ángel Arruga Vivas <rosen644835@gmail.com>
Language-Team: Spanish <es@li.org>
Language: es
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=(n != 1);
               memoria total: %d KiB
     No hay un modo preferido disponible
     Modo preferido: %ux%u
   comprobación de suma EDID no válida   versión EDID: %u.%u
   No se pudo inicializar el adaptador de vídeo   No hay información disponible   Información VBE:   versión: %d.%d  Revisión del software del vendedor: %d.%d
   o:   (margen izquierdo)  (altura de minúsculas)  (margen derecho)  - La partición comienza en %llu%sKiB  - Tamaño del sector %uB  - Tamaño total %llu%sKiB  - Tamaño total desconocido  [OPCIÓN...] %.*s: El parámetro ARGP_HELP_FMT debe ser positivo %.*s: El parámetro ARGP_HELP_FMT necesita un valor %.*s: Parámetro ARGP_HELP_FMT desconocido %d s faltan %d s. Parece que %s contiene un sistema de ficheros %s del que se sabe que no reserva espacio para un arranque tipo DOS.  Instalar GRUB ahí puede provocar la DESTRUCCIÓN DEL SISTEMA DE FICHEROS si algún dato importante es sobrescrito por grub-setup (--skip-fs-probe deshabilita esta comprobación, úselo bajo su responsabilidad) Parece que %s contiene un mapa de particiones %s y LDM y no se tiene constancia de que sea una combinación segura.  Instalar GRUB ahí puede provocar la DESTRUCCIÓN DEL SISTEMA DE FICHEROS si algún dato importante es sobrescrito por grub-setup (--skip-fs-probe deshabilita esta comprobación, úselo bajo su responsabilidad) Parece que %s contiene un mapa de particiones %s del que se sabe que no reserva espacio para un arranque tipo DOS.  Instalar GRUB ahí puede provocar la DESTRUCCIÓN DEL SISTEMA DE FICHEROS si algún dato importante es sobrescrito por grub-setup (--skip-fs-probe deshabilita esta comprobación, úselo bajo su responsabilidad) %s no soporta UUID %s genera una distribución de teclado para GRUB usando «ckbcomp»\n %s está obsoleto. Use «set gfxpayload=%s» antes de la orden «linux».
 %s está obsoleto. No se reconoce el modo VGA %d. Use «set gfxpayload=ANCHOxALTO[xPROFUNDO] antes de la orden «linux»
 grub-mkconfig todavía no soporta %s.\n %s, con Hurd %s %s, con Hurd %s (modo de recuperación) %s, con Linux %s %s, con Linux %s (modo de recuperación) %s, con Xen %s y Linux %s %s, con Xen %s y Linux %s (modo de recuperación) %s, con el hipervisor Xen %s, con kFreeBSD %s %s, con kFreeBSD %s (modo de recuperación) %s, con núcleo %s (vía %s) %s, con núcleo %s (vía %s, modo de recuperación) %s: EL HASH DIFIERE
 %s: BIEN
 %s: ERROR DE LECTURA
 %s: Demasiados parámetros
 %s: Debe ejecutarse como root\n %s: error: %s: información: %s: opción no válida -- «%c»
 %s: la opción «%c%s» no permite un parámetro
 %s: la opción «%s» es ambigua; posibilidades: %s: la opción «--%s» no permite un parámetro
 %s: la opción «--%s» necesita un parámetro
 %s: la opción «-W %s» no permite un parámetro
 %s: la opción «-W %s» es ambigua
 %s: la opción «-W %s» necesita un parámetro
 %s: la opción necesita un parámetro -- «%c»
 %s: la opción necesita un parámetro -- «%s»\n %s: opción «%c%s» no reconocida
 %s: opción «--%s» no reconocida
 %s: aviso: (32 bits) (64 bits) (ERROR DEL PROGRAMA) ¿¡Ninguna versión conocida!? (ERROR DEL PROGRAMA) ¿¡Deberían haberse reconocido las opciones!? (en %s) - Etiqueta «%s» - Fecha de la última modificación %7$s %3$02d/%2$02d/%1$d %4$02d:%5$02d:%6$02d --MÁS-- -h HASH [-c FICHERO [-p PREFIJO]] [FICHERO1 [FICHERO2 ..]] -l | -r | [-s] disco_grub disco_so. ,5 Interfaz protegida de 16 bits permitida
 Interfaz protegida de 16 bits no permitida
 Interfaz protegida de 32 bits permitida
 Interfaz protegida de 32 bits no permitida
 =VALOR es> Almacenamiento ACPI no volátil en RAM RAM reclamable por ACPI Falló el apagado ACPI DIRECCIÓN DIRECCIÓN VALOR [MÁSCARA] DIRECCIÓN [TAMAÑO] DIRECCIÓN1,MÁSCARA1[,DIRECCIÓN2,MÁSCARA2[,...]] DIRECCIÓN SERVIDOR_DNS APM deshabilitada
 APM desactivada
 APM habilitada
 APM activada
 ARGP_HELP_FMT: el valor %s es menor o igual que %s ASCII Acepta saltos de línea en formato DOS (CR/NL). Terminales de entrada activos: Terminales de salida activos: Adaptador «%s»:
 Añade un servidor DNS Añade una dirección de red. Añade una ruta de red. Opciones avanzadas para %s Opciones avanzadas para %s (con el hipervisor Xen) Permite la interrupción con ESC. Pregunta por un nombre de fichero para reiniciar desde él. Asume que la entrada es hex. Asume que la entrada es una clave. Asume que la entrada es raw. Intentando descifrar la clave principal... Intentando instalar GRUB en un disco con múltiples etiquetas de partición o con etiqueta de partición y sistema de ficheros.  Todavía no está soportado. Intentando instalar GRUB en un disco con múltiples etiquetas de partición.  Todavía no está soportado. Intentando instalar GRUB en un disco sin particiones o en una partición.  Es una MALA idea. Terminales de entrada disponibles: Terminales de salida disponibles: B B/s VOLCADO_BIOS [VOLCADO_INT10] BLOQUE BYTE:BIT Modo de imagen de fondo. (Entre paréntesis su traducción) Directorio base para la lista de hash. Arranca un sistema basado en BIOS. Arranca un sistema operativo. Arranca en modo no-multiusuario (single). Arranca con mensajes de depuración. Arranca con mensajes prolijos. Arrancando «%s» Arrancando con una lista de órdenes Arrancando en modo ciego Ruta de arranque: %s
 Ruta de arranque: no disponible
 Salta (con un punto de parada) a GDB CGA  COLOR ORDEN [PARÁMETROS] Poner en espera a la CPU no ralentiza al procesador
 Poner en espera a la CPU ralentiza al procesador
 CS5536 en %d:%d.%d
 No se puede activar el área ROM. Cambia los dispositivos configurados. Cambia el tipo de partición Comprueba la tecla «Alt». Comprueba la tecla «Control». Comprueba la tecla «Shift». Comprueba las características de la CPU. Comprueba el hash de los ficheros con el FICHERO con la lista de valores hash. Comprueba si la CPU soporta el modo de 64 bits (predeterminada). Comprueba el estado de los modificadores del teclado. Comprobar si el usuario está en la LISTA_DE_USUARIOS. Comprueba el fichero de configuración de GRUB buscando errores de sintaxis. Limpia la pantalla. Desactivada la marca de activa en %d. 
 Órdenes: Compara el FICHERO con el fichero local LOCAL. Compara el fichero «%s» con «%s»:
 Compara dos ficheros. Calcula el UUID de XNU del dispositivo. Calcula o comprueba el hash. Configura puerto serie. Continúa bucles Convierte formatos de ficheros de fuentes comunes a PF2 Copia el FICHERO al fichero local LOCAL. Copia el FICHERO a la salida estándar. No se ha podido encontrar el controlador de FPSWA No se pudo encontrar el volumen físico «%s». Algunos módulos pueden faltar en la imagen principal. No se pudo cargar sha256 No se pudo cargar sha512 Crea estructuras tipo BIOS por compatibilidad con sistemas operativos existentes. Crea un fichero de bloques de entorno limpio. Tipos actuales de «terminfo»: DISPOSITIVO DISPOSITIVO [PARTICION[+/-[TIPO]]] ... DISPOSITIVO debe ser un dispositivo del sistema operativo (por ejemplo /dev/sda2). NOMBRE_DE_DISPOSITIVO DIRECTORIO DIRECTORIO [OSBundleRequired] SERVIDOR_DNS Herramienta de depuración para controladores de sistemas de archivos. Declara regiones de memoria como defectuosas (badram). El descompresor es demasiado grande Define una entrada en el menú. Define un sub-menú. Borra una dirección de red. Borra una ruta de red. Borra la unidad de imagen en memoria especificada. Borra variables. Determina el controlador. Determina el UUID del sistema de ficheros. Determina la etiqueta del sistema de ficheros. Determina el tipo del sistema de ficheros. Determina el tipo de mapa de particiones. Dispositivo %s: Identificador de dispositivo: %s
 Identificador de dispositivo: no disponible Color en memoria, máscara: %d/%d/%d/%d  posición: %d/%d/%d/%d Deshabilita ACPI. Deshabilita SMP. Desactiva toda la salida durante el arranque. Desactivar/activar SMART (0/1). Descartando partición impropiamente embebida (%s,%s,%s%d) Estadísticas de la caché del disco: aciertos = %lu (%lu.%02lu%%), fallos = %lu
 El número de discos debe preceder a la lista de discos.
 Muestra la versión de FPSWA. Muestra el estado de salud SMART. Muestra una línea de texto. Muestra una lista de bloques del fichero. Muestra la salida en todas las consolas. Muestra el modo de energía. Muestra el uso de esta orden y termina. Muestra esta ayuda y finaliza. Muestra/cambia la fecha actual. No imprime el salto de línea final. No imprime mensajes. No prueba ninguna unidad de discos extraíbles. No usa la APM para detener el ordenador. No hace nada, con respuesta satisfactoria. No hace nada, sin respuesta satisfactoria. No muestra mensajes de diagnóstico del arranque. No carga las tablas de máquinas especificadas en la lista separada por comas. No reinicia, simplemente apaga. No se detiene ante el primer error. No actualizar EBDA. Puede solucionar fallos o cuelgues en algunas BIOS pero se vuelve inefectivo con sistemas operativos que no reciben RSDP de GRUB. VARIABLE_DE_ENTORNO VARIABLE_DE_ENTORNO [VARIABLE_DE_ENTORNO] ... ERROR: no se ha encontrado ninguna distribución de teclado válida. Compruebe la entrada.
 Se puede salir en cualquier momento pulsando «ESC». EXPRESIÓN EXPRESIÓN ] Tiempo transcurrido: %d.%03d s 
 Tiempo transcurrido: %d.%03d segundos
 El embebido no es posible.  GRUB podrá ser instalado con esta configuración únicamente usando listas de bloques.  No obstante, las listas de bloques son INSEGURAS y su uso está desaconsejado. Emula una secuencia de pulsaciones de teclas Activa la interpretación de secuencias escapadas por una barra. Introduzca la clave ZFS:  Entra en el KDB al arrancar. Entrar en el modo normal. Introduzca la clave para %s%s%s (%s):  Introduzca la contraseña:  Introduzca el nombre de usuario:  Error procesando los parámetros de la línea de órdenes
 Evalúa una expresión. Falló al salir Sale de GRUB. Sale de bucles Salir del modo normal. Exporta variables. Exporta la versión 1 de las tablas al SO. Exporta las versiones 2 y 3 de las tablas al SO. FICHERO FICHERO [PARÁMETRO ...] FICHERO [PARÁMETROS...] FICHERO | TEMPO [TONO1 DURACIÓN1] [TONO2 DURACIÓN2] ...  FICHERO... FICHERO1 FICHERO2 FICHERO ORDEN SISTEMA_DE_FICHEROS [VARIABLE] FICHERO|prompt FORMATO El protocolo FPSWA no pudo encontrar la interfaz Revisión de FPSWA: %x
 DE-A[,DE-A] DE[K|M|G] A[K|M|G] falló FT_Init_FreeType No se pudo arrancar la entrada predeterminada ni la de reserva.
 No se pudo crear el árbol de «device-mapper» Arrancando la entrada de reserva «%s» Tamaño del fichero: %s
 El sistema de ficheros «%s» no permite el embebido Los ficheros difieren en el desplazamiento %llu: 0x%x [%s], 0x%x [%s]
 Los ficheros difieren en tamaño: %llu [%s], %llu [%s]
 No se puede acceder al sistema de ficheros Sistema de ficheros de tipo %s Rellena el registro de arranque híbrido de la unidad GPT DISPOSITIVO. Las particiones especificadas formarán parte del registro de arranque híbrido. Se permiten hasta 3 particiones. TIPO es un tipo del registro de arranque. + significa que esa partición está activada. Sólo una partición puede estar activada. Termina de cargar el emulador EFI. Prueba primero el dispositivo INDICACIÓN si se está corriendo sobre ARC. Si INDICACIÓN termina en una coma, prueba también subparticiones Prueba primero el dispositivo INDICACIÓN si se está corriendo sobre BIOS. Si INDICACIÓN termina en una coma, prueba también subparticiones Prueba primero el dispositivo INDICACIÓN si se está corriendo sobre EFI. Si INDICACIÓN termina en una coma, prueba también subparticiones Prueba primero el dispositivo INDICACIÓN si se está corriendo sobre IEEE1275. Si INDICACIÓN termina en una coma, prueba también subparticiones Prueba primero el dispositivo INDICACIÓN si está permitido el acceso directo al hadware. Si INDICACIÓN termina en una coma, prueba también subparticiones Prueba primero el dispositivo INDICACIÓN. Si INDICACIÓN termina en una coma, prueba también subparticiones Repara problemas de vídeo. Encontrado %s en %s (%s)\n Encontrado %s en %s\n Encontrado GNU Mach: %s Encontrado módulo del Hurd: %s Encontrado núcleo NetBSD: %s\n Encontrado fondo de pantalla: %s\n Encontrada imagen de memoria inicial: %s\n Encontrado directorio de módulos del núcleo: %s\n Encontrado núcleo de FreeBSD: %s\n Encontrada imagen de linux: %s\n Encontrado tema: %s\n Error de Freetype %d cargando el símbolo 0x%x para U+0x%x%s Congela las configuraciones de seguridad ATA hasta el reinicio. Viernes G GNU GRUB  versión %s Menú de arranque de GRUB ¡GRUB todavía no sabe como parar esta máquina! Emulador de GRUB. DISPOSITIVOGRUB=DISPOSITIVOPLAN9 Incongruencia en ARGP_HELP_FMT: %s Genera una distribución de teclado de GRUB a partir de una de consola de Linux. Genera un hash de contraseña PBKDF2. Genera un fichero de configuración de grub Crea una imagen (que contiene todos los módulos) en el formato seleccionado Obtiene una comprobación de suma crc32 del FICHERO. Obtiene información de la caché del disco. Obtiene/cambia parámetros del disco ATA. GiB GiB/s HASH INDICACIÓN Detiene el sistema, si es posible usando la APM. Detiene el ordenador.  Esta orden no funciona en todas las implementaciones de firmware. Maneja N bytes del fichero de salida. Hola mundo Hercules  IDENTIFICADOR IMAGEN1 [IMAGEN2 ...] PUNTO_DE_MONTADO RUTA_DE_LA_IMAGEN ÓRDENES Importa una clave de cobertura ZFS almacenada en el FICHERO. Dispositivo virtual incorrecto: ningún tipo disponible Inserta un módulo. Instala GRUB en su dispositivo. Instalación terminada. No se notificó ningún error. Referencia pasada no válida Nombre de clase de carácter no válido Carácter de ordenación inválido Orden %s no válida.
 Contenido de \{\} no válido Dispositivo «%s» no válido.
 Número de discos no válido.
 Expresión regular predecesora no válida Fin de rango no válido Expresión regular no válida Invoca la configuración de encaminado del usuario. K NÚCLEO PARÁMETROS TECLA Tecla para arrancar rápidamente con esta entrada. KiB KiB/s Dispositivo hoja virtual (fichero o disco) El parámetro de GRUB1 «ask» ya no está soportado. Leyenda: máscara/posición=rojo/verde/azul/reservado Longitud del hash generado Longitud del 'salt' Enumera los servidores DNS Enumerar los dispositivos PCI. Enumera todos los ficheros. Enumera los modos de vídeo disponibles. Si se proporciona una resolución muestra únicamente los modos que se adecuen a ella. Enumera las tablas de coreboot. Enumera dispositivos y ficheros. Enumera dispositivos o ficheros. Lista de dispositivos. Enumera los archivos en la RUTA.     Enumerar los mapeados de memoria proporcionados por el firmware. Lista de modos de vídeo admitidos: Lista de usuarios con permiso para arrancar con esta entrada. Selecciona un terminal de entrada o los enumera. Selecciona un terminal de salida o los enumera. Enumera las variables actuales. Enumera las fuentes cargadas. Muestra las variables de un fichero de bloques de entorno. Carga una imagen de 64 bits de XNU. Carga un volcado de la BIOS. Carga el entorno de FreeBSD. Carga módulo del núcleo de FreeBSD (ELF). Carga un módulo del núcleo de FreeBSD. Carga el kernel.sys de FreeDOS. Carga Linux. Carga NTLDR o BootMGR. Carga módulo del núcleo de NetBSD (ELF). Carga un módulo del núcleo de NetBSD. Carga el núcleo de Plan9. Carga un directorio de extensión XNU. Carga un paquete de extensión XNU. Carga una extensión XNU. Carga una imagen de XNU. Carga un disco de memoria de XNU. Estará disponible en el SO como md0. Carga un volcado de «device-properties». Carga una imagen PXE. Carga una distribución de teclado. Carga un núcleo «multiboot 2». Carga un módulo «multiboot 2». Carga un núcleo «multiboot». Carga un módulo «multiboot». Carga una imagen de inicio para XNU. Carga una imagen de XNU hibernado. Carga e inicializa el emulador EFI. Salta a otro cargador de arranque. Carga otro fichero de configuración pero tomando únicamente sus entradas de menú. Carga otro fichero de configuración tomando únicamente sus entradas de menú sin cambiar de contexto. Carga otro fichero de configuración sin cambiar de contexto. Carga otro fichero de configuración. Carga otro "payload" de coreboot. Carga la imagen de fondo para el terminal activo. Carga las tablas ACPI de la máquina y las tablas especificadas en los argumentos. Carga initrd. Carga una imagen de memoria de kOpenBSD. Carga el núcleo de FreeBSD. Carga el núcleo de NetBSD. Carga el núcleo de OpenBSD. Carga únicamente las tablas especificadas en la lista separada por comas. Carga el mismo fichero de múltiples formas. Carga variables de un fichero de bloques de entorno. No se pudo cargar la clave de cifrado de zfs. Fuentes cargadas: Cargando GNU Mach... Cargando Linux %s... Cargando Xen %s... Cargando imagen de memoria inicial... Cargando núcleo de FreeBSD %s... Cargando núcleo de Illumos... Cargando el Hurd... M falló la verificación MAC ENTRADA_DEL_MENÚ es un número, un título de un elemento del menú o un identificador. MÓDULO MÓDULOS Envíe las peticiones de soporte para xorriso a <bug-xorriso@gnu.org>. Crea una imagen arrancable de GRUB desde CD-ROM, disco duro y extraíble. Genera un fichero de distribución de teclado de GRUB. Genera una imagen arrancable de GRUB. Crea una unidad virtual a partir de un fichero. Cambia una partición a activa Gestiona los mapas de dispositivos de la BIOS. Los argumentos obligatorios u opcionales para las opciones largas son también obligatorios u opcionales para las opciones cortas correspondientes. Manipula dispositivos PCI. Mide el tiempo usado por la ORDEN Memoria agotada Tipo de memoria: DDR2. Tipo de memoria: Desconocido. Identificador de la entrada del menú. No se ha especificado una entrada del menú. Tipo de entrada de menú. MiB MiB/s Se soporta una edición de línea mínima al estilo de BASH. «TAB» enumera las posibles órdenes a completar para la primera palabra. En cualquier otro lado «TAB» muestra una lista de posibles dispositivos o ficheros a completar. %s Se soporta una edición de pantalla mínima al estilo de Emacs. «TAB» enumera las posibles palabras a completar. Pulse «Ctrl-x» o «F10» para arrancar, «Ctrl-c» o «F2» para una línea de órdenes o «ESC» para descartar las ediciones y volver al menú de GRUB. Faltan parámetros
 Falta un archivo de entrada
 Lunes Monocromo  ¿Más de un dispositivo de instalación? ¿Más de una entrada del menú? Monta un dispositivo cifrado. Monta todos los volúmenes con la etiqueta «boot» activada. Monta todos. Monta por UUID. Monta un dispositivo cifrado. NOMBRE NOMBRE [VARIABLE] [INDICACIONES] NÚMERO NÚMERO_DE_SEGUNDOS Nombre	Núm Ref.	Dependencias
 Los controladores de disco nativos están en uso. Rechazando usar la interfaz de disco del firmware. Protocolos de red: El nuevo registro de arranque (MBR) se escribirá en «%s»
 No se encontró ningún CS5536 No se ha encontrado ningún FPSWA No hay estadísticas disponibles del tiempo de arranque
 Ninguna orden especificada.
 No se ha especificado un dispositivo.
 No hay estadísticas disponibles de la caché del disco
 No se han remapeado unidades No se han detectado sistemas de ficheros conocidos Ninguna coincidencia No se ha especificado ninguna ruta.
 No se ha especificado una ruta o un dispositivo.
 Ninguna expresión regular previa Ningún árbol de dispositivos virtuales disponible Non-chain 4 (modo no encadenado de 256 colores)  Parámetros insuficientes para la orden.
 Conecte ahora el depurador remoto, por favor. Número de iteraciones PBKDF2 Disco del SO ------> Dispositivo GRUB/BIOS error de apertura en el fichero del SO %s: %s La opción -- cambia al modo de órdenes nativo de xorriso. Opciones: Búsqueda fuera de rango: %d
 Sustitución fuera de rango (%d, %d)
 Fuerza el mapeado de dispositivos de Plan9. P PARTICIÓN ÓRDENES RUTA El hash PBKDF2 de su contraseña es %s
 PUERTO PUERTO VALOR [MÁSCARA] ID_CLAVE Indexado  Procesa la configuración de GRUB1 en un nuevo contexto Procesa la configuración de GRUB1 en un nuevo contexto tomando únicamente las entradas del menú Procesa la configuración de GRUB1 en el mismo contexto Procesa la configuración de GRUB 1 en el mismo contexto tomando únicamente las entradas del menú Número de pieza: %s.
 La partición %d ahora es activa. 
 Partición %s: El tipo de particiones «%s» no permite el embebido Ruta: %s
 Ruta: no disponible Realiza las ÓRDENES en la partición.
Use «parttool PARTICIÓN help»' para obtener una lista de las órdenes disponibles. Realiza una busqueda DNS Realiza una autoconfiguración IPV6 Realizar ambos mapeados, directos e inversos. PiB PiB/s Planar Toca una melodía. Por favor, no use el antiguo título «%s» en GRUB_DEFAULT, use «%s» (para versiones previas a la 2.00) o «%s» (para la 2.00 y posteriores) GUID del "pool": %016llx
 GUID del "pool": no disponible Nombre del "pool": %s
 Nombre del "pool": no disponible Estado del "pool": activo Estado del "pool": destruido Estado del "pool": exportado Estado del "pool": dispositivo ARC de nivel 2 Estado del "pool": potencialmente activo Estado del "pool": reservado para arranque rápido Estado del "pool": no disponible Estado del "pool": no inicializado Los parámetros posibles son: Las órdenes posibles son: Los dispositivos posibles son: Los ficheros posibles son: Las particiones posibles son: Objetos posibles: Fin prematuro de la expresión regular Presione cualquier tecla para continuar... Pulse cualquier tecla para lanzar xnu Pulse «Intro» para arrancar el SO seleccionado, «e» para editar los órdenes antes de arrancar o «c» para una línea de órdenes. Pulse «Intro» para arrancar el SO seleccionado, «e» para editar las órdenes antes de arrancar o «c» para una línea de órdenes. «ESC» para volver al menú anterior. Imprime información de la memoria. Imprime información ZFS acerca del DISPOSITIVO. Imprime ZFS-BOOTFSOBJ o lo almacena en la VARIABLE Imprime una lista de bloques. Imprime y ejecuta el bloque pasado como parámetro. Imprime pila de llamadas Imprime la identidad y la configuración de la unidad. Imprime los tamaños en un formato legible por un humano. Comprueba la información del dispositivo para una ruta dada (o dispositivo, si se proporciona la opción -d). RAM con las tablas de coreboot RAM con código del firmware Zócalo de RAM número %d
 EXPR_REGULAR CADENA La imagen ROM está presente. Lee un valor de 16 bits de DIRECCIÓN. Lee un valor de 16 bits del PUERTO. Lee un valor de 32 bits de DIRECCIÓN. Lee un valor de 32 bits del PUERTO. Lee un valor de 8 bits de DIRECCIÓN. Lee un valor de 8 bits del PUERTO. Lee únicamente LONGITUD bytes. Falló el reinicio Reinicia en el menú de configuración del firmware Reinicia el ordenador. Reintroduzca la contraseña:  Registro %x de %x:%02x.%x es %x
 Expresión regular demasiado grande Elimina un servidor DNS Elimina un módulo. Elimina una variable de entorno. Elimina cualquier región de memoria en el rango especificado. Pinta la «.disk_label.» de Apple Notifique errores a %s.
 Notifique los errores a <bug-grub@gnu.org>.
Notifique los errores de traducción a <es@li.org>. Se ha solicitado un terminal serie pero GRUB_SERIAL_COMMAND no está especificado. Se usarán los parámetros predeterminados. Reinicia todos los mapeados a los valores predeterminados. Obtiene información del dispositivo. Vuelve de una función. Vuelve a la línea de órdenes IEEE1275. Ejecute «gdb %s %d», y cambie ARGS.HOLD a cero.
 Ejecute «go» para continuar con GRUB. SEGUNDOS NOMBRE_CORTO NOMBRE_CORTO TARJETA DIRECCIÓN [DIRECCIÓN_HW] NOMBRE_CORTO RED [INTERFAZ| gw PASARELA] TAMAÑO FUENTE|-u UUID|-a|-b CADENA Sábado Guarda el valor leído en la variable NOMBRE_DE_VARIABLE. Guarda las variables a un fichero de bloques de entorno. Dice «Hola mundo». Busca dispositivos por UUID. Si se especifica VARIABLE, se cambiará al primer dispositivo encontrado. Busca dispositivos por fichero. Busca dispositivos por el UUID del sistema de ficheros. Busca dispositivos por la etiqueta del sistema de ficheros. Busca dispositivos por fichero, la etiqueta del sistema de ficheros o el UUID. En caso de especificar --set, el primer dispositivo encontrado se almacena en una variable. Si no se especifica un nombre de variable se usará «root». Busca dispositivos por fichero. Si se especifica VARIABLE, se cambiará al primer dispositivo encontrado. Busca dispositivos por etiqueta. Si se especifica VARIABLE, se cambiará al primer dispositivo encontrado. El sector %llu está actualmente en uso por el controlador raid «%s»; evitándolo.  Por favor, pida al fabricante que no almacene datos en el espacio posterior al sector de arranque. El sector %llu está actualmente en uso por el programa «%s»; evitándolo.  Este programa puede causar problemas de arranque o de otro tipo en el futuro.  Por favor, pida a los autores que no almacenen datos en la pista de arranque. Selecciona un dispositivo por su posición en el bus. Selecciona un dispositivo por ID de fabricante y dispositivo. Cambia la Gestión Avanzada de Energía (APM en inglés)
(1=baja, ..., 254=alta, 255=apagada). Cambia la Gestión Automática de Sonido (AAM en ingés)
(0=apagado, 128=silencioso, ..., 254=rápido). Establece OEMID en RSDP, XSDT y RSDT. Establece OEMTABLE ID en RDSP, XSDT y RSDT. Establece la revisión de OEMTABLE en RDSP, XSDT y RSDT. Cambia la etiqueta «hidden» en el tipo de partición Cambia una variable al valor devuelto. Cambia una variable al primer dispositivo encontrado. Cambia una variable de entorno. Cambia el color de fondo para el terminal activo. Establece el campo 'creador' en RDSP, XSDT y RSDT. Establece la revisión del campo 'creador' en RDSP, XSDT y RSDT. Cambia la variable de entorno de depuración. Cambia la unidad a estado dormido. Cambia la unidad a estado de espera. Cambia los parámetros posicionales. Cambia el dispositivo raíz. Cambia el plazo de finalización del estado de espera
(0=apagado, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Establece el tipo del TERMINAL de «terminfo» en TIPO.
 Cambia la entrada predeterminada del menú de GRUB, únicamente para el próximo arranque. Establece la entrada del menú predeterminada para GRUB. Establece la dirección del puerto serie. Establece la paridad del puerto serie. Establece la velocidad del puerto serie. Establece los bits de parada del puerto serie. Establece la longitud de palabra del puerto serie. Establece la unidad serie. Configura las imágenes para arrancar desde DISPOSITIVO.

Normalmente no debería ejecutar este programa directamente.  Use grub-install. Cambia la contraseña del usuario (PBKDF2). Cambia la contraseña del usuario (texto plano). No recomendado e inseguro. Cambia la variable a partir de la entrada del usuario. Cambia variables. Cambiando el tipo de partición a 0x%x
 Rota los parámetros posicionales. Muestra la información ACPI. Muestra la información de la APM. Muestra los contenidos de la consola CBMEM. Muestra un mensaje de ayuda. Muestra una larga lista con información más detallada. Muestra los contenidos del FICHERO en hexadecimal. Muestra los módulos cargados. Muestra los contenidos de la memoria. Muestra el contenido crudo del sector ATA IDENTIFY. Muestra el contenido crudo de un fichero o de la memoria. Muestra el contenido de un fichero. Muestra los mapeados actuales. Muestra este mensaje. Muestra únicamente las tablas de la versión 1. Muestra únicamente las tablas de las versiones 2 y 3. Falló al apagar Simula la orden «initrd» de GRUB1 Simula la orden «kernel» de GRUB1 Simula la orden «modulenounzip» de GRUB1 Simula la orden «password» de GRUB1 Simula la orden «pasword» de GRUB1 en modo de entrada de menú Salta N bytes del archivo de salida. Descarta bytes de desplazamiento del inicio del fichero. Abierto zócalo %d
 Se han encontrado algunas partes del Hurd, pero no las suficientes para arrancar. Especifique el nombre de fichero. Especifica el hash a usar. Especifique uno o más ficheros de fuentes a cargar. Especifica el tamaño para cada operación de lectura Especifica el número de ficheros de entrada. Velocidad: %s 
 Inicia el soporte de GDB en el puerto proporcionado Para el soporte de GFB Almacena la componente correspondiente NÚMERO en VARIABLE. Éxito Domingo Silencia la salida normal (los avisos permanecen). Utiliza los controladores de disco nativos. Si no se especifíca ningún módulo se utilizará el conjunto por defecto (pata, ahci, usbms, ohci, ehci) Error de sintaxis en la línea %u
 Se han detectado errores de sintaxis en el fichero de
configuración de GRUB generado.
Asegurese de que no hay errores en /etc/default/grub
en los ficheros /etc/grub.d/* o, por favor, abra una
notificación de errores con el fichero %s adjunto. El espacio del sistema de gestión de control del bus I/O está en 0x%x
 T OBJETIVO No se ha especificado el formato objetivo (use la opción -O). El terminal ha especificado su geometría. El terminal es únicamente ASCII [predeterminado]. El terminal es UTF-8 lógicamente ordenado. El terminal es UTF-8 visualmente ordenado. Comprueba el soporte USB. Comprueba el bit de la CMOS en BYTE:BIT. Prueba la velocidad de lectura de fichero. Comprueba si la EXPR_REGULAR acepta la CADENA. Prueba el subsistema de vídeo con modo ANCHOxALTO Prueba el subsistema de vídeo. Solo texto  Los ficheros son idénticos.
 La entrada marcada se ejecutará automáticamente en %d s. Esta entrada puede ser usada por cualquier usuario para arrancar. Esto requere establecer GRUB_DEFAULT=saved en %s/default/grub.\n Jueves TiB TiB/s Herramienta para editar bloques de entorno. Tamaño total de flash: %d B.
 Barra invertida extra al final Transforma el UUID de 64 bits a un formato adecuado para XNU. Será en minúsculas si se proporciona -l como hace blkid. Transforma un nombre de fichero del sistema en uno de GRUB. Traduce la cadena con las opciones actuales. Pruebe «%s --help» o «%s --usage» para más información.
 Martes USUARIO CONTRASEÑA USUARIO CONTRASEÑA_PBKDF2 USUARIO[,USUARIO] UTF-8 No se pudo crear una tubería (pipe): %s Imposible determinar su plataforma. Use --target. No se pudo bifurcar (fork) el proceso: %s No se pudo abrir el flujo de %s: %s Imposible obtener el estado del "pool" Descomprime datos. Descomprime fichero antes de comprobarlo. Tipo de dirección %d desconocido
 Orden «%s» desconocida.
 Formato de compresión %s desconocido Codificación desconocida Parámetro extra «%s» desconocido. Se desconoce la característica gsub 0x%x de la fuente (%s)
 Código de tecla 0x%02x desconocido
 Identificador de tecla %s desconocido
 Error desconocido del sistema Modo de vídeo desconocido  Tipo de dispositivo virtual desconocido: %s
 Descarga el emulador EFI. ( o \( desemparejado ) o \) desemparejado [ o [^ desemparejado \{ desemparejado Opción «%s» no reconocida\n Estado del "pool" no reconocido Tipo de dirección %d no soportado
 Especificación de cobertura no soportada: %d
 Tipo de dirección hardware %d no soportado
 Formato de imagen no soportado Etiqueta de sustitución no soportada: 0x%x
 Especificación de sustitución no soportada: %d
 Tipo de sustitución no soportado: %d
 Uso: Uso: %s -o SALIDA ARGUMENTOS_DE_CKBMAP...\n Uso: %s DISPOSITIVO
 Uso: %s [FICHERO_DE_ENTRADA [FICHERO_DE_SALIDA]]
 Uso: %s [OPCIÓN] ENTRADA_DEL_MENÚ\n Uso: %s [OPCIÓN]\n Usa el CD-ROM como raíz. Usar el depurador remoto de GDB en vez de DDB. Usa CADENA como el cuerpo de la entrada del menú. Usa el dispositivo raíz compilado internamente. Usa la consola serie. Use las teclas %C y %C para seleccionar la entrada marcada. VARIABLE INTERFAZ NÚMERO DESCRIPCIÓN NOMBRE_DE_VARIABLE Cuenta atrás prolija. Verifica la firma extraida. Versión %u.%u
32-bit CS = 0x%x, longitud = 0x%x, desplazamiento = 0x%x
16-bit CS = 0x%x, longitud = 0x%x
DS = 0x%x, longitud = 0x%x
 El dispositivo virtual está degradado (falta algún componente) El dispositivo virtual ha fallado El dispositivo virtual está desconectado El dispositivo virtual está conectado El dispositivo virtual se ha retirado AVISO: no habrá ninguna consola disponible para el SO AVISO: no se ha realizado una instalación específica para la plataforma AVISO: parámetros de características de fuente no soportados: %x
 ANCHURAxALTURA. Espera el número de segundos especificado. Espera una pulsación de tecla después de la impresión de cada línea. Aviso: Aviso: color de fondo «%s» no válido
 Aviso: color de principal «%s» no válido
 Aviso: error de sintaxis (falta una barra) en «%s»
 Miércoles Windows NT/2000/XP (cargador de arranque) Windows Vista/7 (cargador de arranque) Escribe el VALOR de 16 bits en DIRECCIÓN. Escribe el VALOR de 16 bits al PUERTO. Escribe el VALOR de 32 bits en DIRECCIÓN. Escribe el VALOR de 32 bits al PUERTO. Escribe el VALOR de 8 bits en DIRECCIÓN. Escribe el VALOR de 8 bits al PUERTO. Bytes SPD escritos: %d B.
 Hipervisor Xen, versión %s YUV  Se debe especificar al menos una orden.
 Tendrá que fijar «SystemPartition» and «OSLoader» manualmente. Su área de embebido es excepcionalmente pequeña.  core.img no entrará en ella. Su xorriso no admite «--grub2-boot-info». Algunas características están deshabilitadas. Por favor, use xorriso 1.2.9 o una versión posterior. Su xorriso no admite «--grub2-boot-info». El arranque como disco está deshabilitado. Por favor, use xorriso 1.2.9 o una versión posterior.< [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FICHERO [--md5] CONTRASEÑA [FICHERO] [--no-mem-option] [--type=TIPO] FICHERO [PARÁMETRO ...] [-1|-2] [--exclude=TABLA1,TABLA2|--load-only=TABLA1,TABLA2] FICHERO1 [FICHERO2] [...] [-c FICHERO [-p PREFIJO]] [FICHERO1 [FICHERO2 ...]] [-d] NOMBRE_DE_DISPOSITIVO FICHERO. [-e|-n] CADENA [-f FICHERO] [-f FICHERO] nombre_de_variable [...] [-f|-l|-u|-s|-n] [--hint INDICACIÓN [--hint INDICACIÓN] ...] NOMBRE [-h|-p|-r] [FICHERO] [-l] UUID_DE_GRUB [VARIABLE] [-l|-h|-a] [FICHERO ...] [-m (stretch|normal)] FICHERO [-s POSICIÓN] [-d DISPOSITIVO] [-s POSICIÓN] [-d DISPOSITIVO] [-v VARIABLE] REGISTRO[=VALOR[:MÁSCARA]] [-s TAMAÑO] FICHERO [DIRECCION|comNÚMERO][,VELOCIDAD] [PARÁMETRO] [TARJETA [DIRECCIÓN_HW]] [TARJETA] [VARIABLE_DE_ENTORNO=VALOR] [VARIABLE_DE_ENTORNO] [PULSACIÓNDETECLA1] [PULSACIÓNDETECLA2] ... [MODULO1 MODULO2 ...] [NÚMERO:]VARIABLE [NÚMERO] [OPCIONES...] [OPCIONES] [OPCIONES] DISCO [OPCIONES] FICHERO_O_DISPOSITIVO [OPCIONES] FICHEROS_DE_FUENTES [OPCIÓN]... [MÓDULOS] [OPCIÓN]... [RUTA|DISPOSITIVO] [OPCIONES] [RUTA] [PATRÓN ..] [LISTA_DE_USUARIOS] [VALOR]... [ANCHOxALTO[xPROFUNDO]] [ANCHOxALTO] [[-a|-u|-v] [-g ANCHOxALTO] TERMINAL [TIPO]] [[año-]mes-dia] [hora:minuto[:segundo]] [bus]:[zócalo][.func] [fabricante]:[dispositivo] la orden «cryptmount» ha fallado: %s la orden «loopback» ha fallado: %s no se encontró 'obppath' en los directorios superiores a %s, no se ha descubierto ningún nombre IEEE1275 se asignó un valor al parámetro «%s» cuando no lo requiere acceso denegado añade un segmento «NOTE» para el CHRP IEEE1275 dirección dirección no encontrada intento de leer o escribir fuera del disco «%s» intento de leer o escribir fuera de la partición intento de leer más allá del fin del fichero intento de buscar fuera del fichero intentado leer la imagen principal «%s» de GRUB intentado leer de nuevo la imagen principal «%s» de GRUB RAM disponible formatos disponibles: firma incorrecta dirección_base = 0x%llx, longitud = 0x%llx, %s
 dirección_base = 0x%llx, longitud = 0x%llx, tipo = 0x%x
 no está soportado el formato de la imágen «%s» blocklist FICHERO las listas de bloques no son válidas el tamaño de bloque no es divisible por 512 no se puede salir de 0 bucles no se pudo determinar el sistema de ficheros en %s no se puede encontrar la orden «%s» no se puede montar el volumen cifrado «%s»: %s no se puede abrir «%s»: %s no se puede abrir el fichero %s, índice %d: error %d no se pudieron obtener las listas de bloques no se pudieron obtener las listas de bloques: %s no se puede comprimir la imagen del núcleo no se pudo encontrar una unidad de GRUB para %s.  Compruebe su device.map no se pudo encontrar un dispositivo para %s (¿está montado /dev?) no se pudo obtener la línea de órdenes del traductor para la ruta «%s»: %s no se puede abrir el fichero del SO «%s»: %s no se puede abrir «%s»: %s no se puede leer «%s» correctamente no se puede leer «%s»: %s no se pudo renombrar el fichero %s a %s no se puede restituir el directorio original no se puede buscar «%s»: %s no se puede hacer stat() sobre «%s»: %s no se puede escribir en el CD-ROM no se puede escribir en «%s»: %s no se puede escribir en la salida estándar: %s tarjeta no encontrada cat FICHERO falló la verificación de la suma de comprobación selecciona la compresión a usar para la imagen principal cmp FICHERO LOCAL comNÚMERO[,VELOCIDAD] falló la comparación en el desplazamiento %llu conexión rechazada conexión expirada convertir a fuente en negrita la imagen principal es demasiado grande (0x%x > 0x%x) versión incorrecta de core.img no se pudo auto-configurar %s no se pudo encontrar el dispositivo miembro necesario de un sistema de ficheros multidispositivo no se pudo encontrar el cliente «geli» no se pudo encontrar la clase «part» de «geom» no se pudo abrir «geom» no se pudieron leer los metadatos ELI no se pudo obtener el UUID no se pudo obtener el UUID «geli» no se pudieron obtener datos aleatorios para el «salt» no se pudo enviar el paquete por la red cp FICHERO LOCAL crc FICHERO error criptográfico número %d falló cygwin_conv_path() borra el mapa de dispositivos si existe destino no alcanzable el número de dispositivos supera el límite deshabilita indicaciones disco «%s» no encontrado no existe el disco, por lo que se usa la partición de reserva %s módulo de disco a usar (biosdisk o native). Esta opción únicamente está disponible en objetivos con BIOS. el tamaño de diskboot.img debe ser de %u bytes no busca sistemas de ficheros en DISPOSITIVO la componente del nombre de dominio es demasiado larga no actualiza el estado de los LED hecho embebe el FICHERO como una configuración temprana embebe el FICHERO como una clave pública para comprobación de firmas el embebido no es posible, pero se requiere para la instalación en RAID y LVM el embebido no es posible, pero esto es necesario para una instalación en múltiples particiones habilíta el arranque ARCS (máquinas mips «big-endian», principalmente SGI). Deshabilita HFS+, APM, sparc64 y el arranque como una imágen de disco en i386-pc activa el arranque sparc. Deshabilita HFS+, APM, ARCS y el arranque como una imágen de disco para i386-pc intro: arrancar, «e»: opciones, «c»: línea de órdenes bloque de entorno demasiado pequeño error: %s.
 se esperaban las imágenes de GRUB en el directorio DIRECTORIO/%s en vez de en el directorio %s no se pudo obtener la ruta canónica de «%s» fallo leyendo sector 0x%llx de «%s» falló al leer la contraseña fallo escribiendo sector 0x%llx en «%s» falso RAM defectuosa (BadRAM) fichero «%s» no encontrado nombre de fichero esperado se esperaba un nombre de fichero o un tempo y unas notas el sistema de ficheros «%s» no soporta las etiquetas el sistema de ficheros «%s» no soporta las listas de bloques la imagen del firmware es demasiado grande fuerza auto-indicaciones se esperaban cuatro argumentos fwstart.img no coincide con la versión buena conocida. Continúe bajo su responsabilidad genera una imagen en el FORMATO deseado proporciona un mensaje corto sobre el uso proporciona esta lista de ayuda el parámetro pasado es un dispositivo del sistema, no una ruta «grub-mkimage» está compilado sin soporte para XZ grub_es> espera durante SEGUNDOS segundos (predeterminado 3600) hex FICHERO ignora los mapas de bits existentes al cargar especificación incorrecta de las dimensiones del terminal instala las imágenes de GRUB bajo el directorio DIRECTORIO/%s en vez de en el directorio %s instala aunque se encuentren problemas contraseña PBKDF2 no válida número mágico ELF dependiente de la arquitectura no válido número mágico independiente de la arquitectura ELF no válido tamaño de bloque no válido especificación de color «%s» no válida bloque de entorno no válido nombre de fichero «%s» no válido rango de fuentes no válido formato de línea no válido: %s parámetro %s no válido valor de desplazamiento %lld no válido nombre de variable «%s» no válido especificación de modo de vídeo «%s» no válida error de ioctl GET_ARRAY_INFO: %s error de ioctl GET_DISK_INFO: %s error en ioctl RAID_VERSION: %s la imagen del núcleo es demasiado grande (0x%x > 0x%x) enumera las direcciones de red enumera las tarjetas de red enumera las rutas de red ls RUTA fichero lzop corrupto hace que la unidad sea arrancable como disco extraíble (predeterminado para dispositivos fdX). Puede provocar fallos en algunas BIOS. Falta el símbolo «%c» falta una opción obligatoria para «%s» el módulo «%s» no está cargado el módulo no está cargado nombre se necesita una imagen y un punto de montado no se encontró la APM no se ha encontrado información DHCP no se ha encontrado la opción DHCP %d no se han encontrado opciones DHCP no se ha encontrado ningún registro DNS no se ha recibido ninguna respuesta DNS no se han configurado servidores DNS ninguna barra «/» en el nombre canónico del fichero no se ha especificado una orden no hay ninguna clave de descifrado disponible no se han encontrado tarjetas de red no se ha especificado un servidor no existe tal partición no se encontró un modo de vídeo apropiado ninguna tabla de símbolos no se ha especificado terminal ninguna finalización en la imagen principal se han encontrado datos no alineados al sector en el fichero principal no es un directorio no es una partición primaria no es un fichero normal fuera del cuerpo de una función se esperaba un parámetro otro programa está usando el área de embebido, y no hay espacio suficiente para core.img.  Dicho programa intenta almacenar datos habitualmente evitando ser detectado.  Le recomendamos que investigue sin memoria imprimir la imagen generada en el FICHERO [predeterminado=stdout] el fichero de salida debe ser especificado salida del fichero generado de configuración al FICHERO [predeterminado=stdout] desbordamiento detectado las contraseñas no coinciden realizar una autoconfiguración de bootp no se encontró el volumen físico %s pre-carga los módulos MÓDULOS especificados fin prematuro del fichero fin prematuro del fichero %s pulse la tecla «Bloq Mayús» pulse la tecla «Insert» pulse la tecla «Bloq Num» pulse la tecla «Bloq Despl» pulse «Pet Sis» pulse la tecla «Alt» pulse la tecla «Ctrl» de la izquierda presione la tecla «Shift» de la izquierda pulse la tecla «Alt Gr» pulse la tecla «Ctrl» de la derecha presione la tecla «Shift» de la derecha imprime la versión del programa imprime la información de la versión y termina imprime este mensaje y termina imprime mensajes prolijos. no se encontró la clave pública %08x error de lectura en el desplazamiento %llu: %s lee texto del FICHERO. directorio relativo en el servidor de red la reubicación 0x%x no está implementada todavía RAM reservada obtiene la opción DHCP y la almacena en VARIABLE. Si VARIABLE es «-» se imprime el valor. directorio raíz del servidor TFTP ruta cíclica detectada almacena las imagenes ROM en el DIRECTORIO [opcional] almacena la salida en FICHERO [requerida] seleccione el índice de la tipografía Puerto serie «%s» no encontrado set [NOMBRE=VALOR ...] cambia el estado de las mayúsculas cambia el espacio superior entre líneas cambia el espacio inferior entre líneas cambia el nombre de la familia tipográfica cambia el rango de fuentes cambia el tamaño de las fuentes establece el fichero de entrada para la partición de 32 bits. establece el fichero de entrada para la partición de 64 bits. establece el fichero de salida. El predeterminado es STDOUT cambia el modo de inserción cambia el modo del teclado numérico establece el nombre del archivo de salida. El predeterminado es STDOUT cambia el modo de pausa cambia el directorio prefijo [predeterminado=%s] cambia el estado del bloqueo de desplazamiento cambia el nombre del programa tamaño stretch(estirada)|normal(en la esquina superior izquierda) no se ha encontrado el símbolo «%s» temporal no se ha encontrado el terminal %s o no es manejado por «terminfo» no se encuentra el terminal «%s» el parámetro «%s» necesita un entero. La entrada «%s» de device.map no es válida. Ignorándola. Por favor, corríjala o bórrela de su device.map El nombre de unidad «%s» en device.map es incorrecto. Usando %s. Por favor, use el formato [hfc]d[0-9]* (Por ejemplo: «hd0» o «cd») el primer sector del fichero principal no está alineado al sector el dispositivo de instalación es extraíble. Esta opción únicamente está disponible en EFI. el tipo de partición 0x%x no es válido los sectores del fichero principal están demasiado fragmentados el tamaño de «%s» no es %u el tamaño de «%s» es demasiado grande el tamaño de «%s» es demasiado pequeño este fichero ELF no es del tipo adecuado esta etiqueta de partición GPT no contiene ninguna Partición de Arranque BIOS; el embebido no será posible este LDM no tiene Partición de Embebido; el embebido no será posible esta etiqueta de partición de tipo msdos no tiene espacio después del sector de arranque; el embebido no será posible se esperaban tres parámetros expiró el plazo abriendo «%s» expiró el plazo leyendo «%s» expiración del plazo: no se pudo resolver la dirección hardware demasiada profundidad de enlaces simbólicos el traductor «%s» tiene varias palabras que no son opciones para la ruta «%s», al menos «%s» y «%s» el traductor «%s» tiene únicamente opciones para la ruta «%s», no se pudo encontrar el parámetro del dispositivo la línea de órdenes del traductor está vacía para la ruta «%s» se esperaban dos parámetros tipo imposible identificar un sistema de ficheros en %s; no se puede realizar la comprobación de seguridad tamaño de dispositivo desalineado final de fichero inesperado parámetro «%s» desconocido compresión %d desconocida
 tipo de dispositivo %s desconocido
 sistema de ficheros desconocido Dispositivo de RAID «%s» de tipo desconocido error de expresiones regulares desconocido formato objetivo %s desconocido
 tipo de «terminfo» «%s» desconocido especificación de formato de opción DHCP «%s» no reconocida dirección de red «%s» no reconocida interfaz de red «%s» no reconocida número no reconocido dirección %s irresoluble unset [NOMBRE ...] error HTTP %d no soportado: %s respuesta HTTP no soportada versión de RAID no soportada: %d.%d formato de gzip no soportado paridad del puerto serie no soportada velocidad del puerto serie no soportada número de bits de parada del puerto serie no soportados longitud de palabra del puerto serie no soportada usa COLOR para el fondo usa el COLOR para la etiqueta usa el COLOR para el fondo de la etiqueta usa COLOR para el texto usa DIRECTORIO como la raíz de la partición del sistema EFI. usa el FICHERO como tipografías (PF2). usa FICHERO como fuente para la etiqueta usa el FICHERO como la imagen de arranque [predeterminado=%s] usa el FICHERO como la imagen principal [predeterminado=%s] usa el FICHERO como el mapa de dispositivos [predeterminado=%s] usar FICHERO como xorriso [opcional] usa los ficheros de GRUB del directorio DIRECTORIO [predeterminado=%s] usa la CADENA como nombre de producto Usa CADENA como versión del producto usa el fichero de identificación, incluso aunque el UUID esté disponible usa imágenes y módulos en el DIRECTORO [predeterminado=%s/<plataforma>] no se ha fijado la variable «%s» UTF-8 visualmente ordenado espera hasta que se una un depurador no se procederá con las listas de bloques versión o número mágico ELI erroneos xnu_uuid DISPOSITIVO fichero xz corrupto u opciones de bloque no soportadas no puede borrar esta dirección se debe cargar primero el núcleo su Partición de Arranque BIOS es demasiado pequeña; el embebido no será posible su core.img es extraordinariamente grande.  No entrará en el área de embebido su área de embebido es extraordinariamente pequeña.  core.img no entrará en ella.                                                                                                                                                                                                                                                    boot/grub/locale/fi.mo                                                                              0000600 0001750 0001750 00000321726 13417732100 0013633 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                       x     #    G      _  #   _      _     _     _     `  $   `     =`  6   Q`     `     `  	   `     `     `     `     `     `     a  .    a  .   Oa  %   ~a     a     a    a    b    c     d  7   d  F   e  v   be  +   e     f      f     7f  !   If     kf  ,   f     f     f  $   f     g  *   #g     Ng     ag     ig     yg     g  
   g  	   g     g  ,   g  ,   h  ,   <h  '   ih  -   h      h  (   h  (   	i  )   2i     \i     |i     i     i     i  "   i  4   i     j     j  7   (j     `j  1   ij     j     j  %   j  '   j  %   k  '   1k     Yk     ^k     `k     ~k     k     k     k     k     k     k     k     l     l     (l  3   5l     il  $   ol     l     l     l     l     l     l     m  -   )m     Wm  !   tm     m     m     m  #   m      n  `   n  Z   n     Do     _o     {o     }o     o     o     o     o     o     o     o     p     %p     ?p     [p     hp     p     p     p     p     p     p     p  %   p     	q     (q     <q     Sq     nq     q     q     q     q  *   q  3   q     .r  "   Ir  8   lr     r     r  	   r  #   r     s      s     3s     Ss     ss     s  )   s     s     s      t  P   t     ot     t  H   t  &   t     	u     !u  !   (u  ,   Ju     wu     u     u  	   u  !   u  *   u     u     v     (v     :v     Tv  $   lv     v     v     v     v     v     w  
   %w  
   0w     ;w  1   Nw     w     w     w     w  3   w  >   x  $   Cx     hx     x     x     x     x     x  +   y     /y     Ky  #   iy     y     y  $   y     y     z  '   z  9   Fz     z     z  z   z     2{     9{  8   M{     {  
   {     {     {     {     {     |  +   |     |     |     |  "   }     5}     F}  (   W}     }     }     }     }     }     }  "   }  0   ~     A~     F~     U~  7   d~     ~     ~     ~     ~     ~     ~  0   ~          /     A     W  2   n  %               *     6     +   M     y            !   {  d     e     d   h  i   ͂  o   7  H                       *     =     S     m       #             ߄       1   	  )   ;     e     l     n       /             х       5        ;     Z  K   v          ކ                           '   $  P   L            	   ȇ     ҇     Շ       '     +   0     \     m  )             ʈ                    0     F  $   [            "        Љ     ҉     މ  (               "     +   A  -   m               Ê     Ԋ       O        F     \     t            %        Ӌ  )     !     "   >     a     }  +             ׌       !             7     P     \      s                                4         U     t                    Ԏ                #  !   D     f  4     M     2        6     P  *   n  8        Ґ     ߐ               %  3   =  $   q  +             ב                    "      >     _     }            D               7      ;   8     t       !        Փ       s                       Ŕ     ؔ                    0     4     :                    Ö     ʖ     ֖            '   %  
   M     X     g     }                      H   ͗          )     E     U  %   d            #                       $      ;     \      {       "     (   ̙       %        7  2   Q            #     *   ʚ               
  #        3     8  	   J  	   T  "   ^  ;     #     <             ,     J  .   X  	          `          !     )   ;     e     i     o     w  q             
     !     0     G     Z     p            "   Þ                    0     G     ]     q       #        ß       g        d            -         N  !   b       "     '     Q        2     N     h     |                    ڢ               0     L     d      r                     ܣ                 -   <     j       "     b     )        H     ^     v  ,             ץ  	   ܥ  "     %   	     /     4     I     P  &   Y  )          ^          $   6  %   [       ^   4  _     }        q  )   (  '   R  >   z  D     !     '      -   H  #   v       )          )     )   +  ,   U                    ֬       E     $   H  A   m  )        ٭               -      L     m  q          :        L     j     y               ͯ            0        E     c     x  )     &        ߰               *  )   F     p  %     %     ,   ̱  '     :   !     \  -   {       .               '     $   7  "   \                 *               )     o               6   ]            0         ε  !     "     #   4     X     j            !        ߶  
           <     %   W  >   }          ŷ     ɷ     Ϸ            d     *     0     6   ܸ               )     >     R     X  0   r       !        ع       $        ,     E     \     z       $     "   ͺ  $             *      >     _     t                         һ       '        /     O  $   h  +     "        ܼ  )                  =     ]     r  '             ͽ       <         ;     \     d     w  m                   5     O     h  +     3     1          '   "  -   J     x  '     '     .     	         
     &     ?     [     w                                *     ?   J  B     p        >  /               .   $  O   S  )               	          5        P     b     z            :                   *     0     C     J     Y     b                      	                                 1     8     ?  
   M  
   X  	   c     m  !   s  )                         F   "  N   i       "               -      -   .  $   \  #     0     6                  .  (   <  1   e  )               !        	           >  %   V     |  &                     7     .   H  4   w                           %   .     T     i     ~                           ,        /     >     N     j     }       #               B        @     \     |                 &             !     /     8     V  &   p                      ;     V   *  "     &     !                  	  /   '  H   W  F     w     N   _  (               I     $   I  '   n       %                         $     '   :  *   b                 J             5     P  -   d  +          $          "     +     J   A  %                "              !     B     \     s                      %             +     I  %   f                           [        B  !   V     x                                             )     ?     Y     v                                        ,  1   L     ~                                1          0        5     J  !   `       "                                 '     <     H     W     g     x                 &                       6     T  '   i  &          L             0  !   D     f                                                #   .  #   R  $   v            &          !             (     =     B     Q  	   g  7   q       %     [     w   E  7     K     #   A  /   e                 &     U     @   i  Q                  +  +   @     l  R     L     .   )     X     o  F   t                              .      A     b     w       2     !     #        %     9     Q     b                           (     #   8     \     u            )               '     '   @  '   h       0               -     8   G            !                     .        L  !   j  B     E     B       X  *     /   1     a  "          *          :        9     A     P     a  /   q                       5     *   4  (   _            Y    G    P  @       I     T        K  *          *        D  +   a  '     6     "          .   /  '   ^  5     $                    6     
   P     [  &   g  -     =     -     *   (  .   S  0     +     +     ,     &   8  %   _                 %     3        	       ;   *     f  F   r  4          &     )     &   B  )   i            1     .                  #     7  $   E     j     }                 9        	 &       6    P    k    ~         "    >    #   " (   F '   o !        ,        ^    Z    #   O $   s                         &    )        %    F #   _                     #       !    2    7    = %   R #   x     '                   (    D    ^ @   } E    #    /   ( >   X     %    	    5    /   	    A	    Y	 -   r	    	    	 1   	 2   	 "   )
 '   L
 d   t
 &   
 %     e   & $                ?    
   /    :    > 	   [ 4   e *    !                   , +   A    m     )    )    )        	   0    :     M 6   n         0    0    5   < H   r T           &    A     U +   v     2         !   	 -   +    Y #   r 2    "    &    3    M   G )    -                I            $ 	   ,    6     P    q !   / 7   Q              )            0   2    c    s                 .    ;       B    K    e =                            # :   )    d +   } "        >    0   ) %   Z     .    @    1    %   4    Z    y !   P y   r     y   s |    {   j X       ?    R    q         .            3    /   O         ;    C    	   0     :     =     Q  9   h            "     B     +   1!    ]! I   x! #   !    !    " 	   "    )"    5"    A" ;   G" Z   " &   "    # 	   #    # )   $#    N# 6   b# =   #    #    # /   $    2$    J$ #   h$    $    $    $    $ /    %    0% $   N% &   s%    %    %    % A   % 	   &    & '   & .   F& -   u& &   &    &    &    &    ' x   )'    '    '     '    ' $   ( 1   7(     i( B   ( #   ( $   (    )    3) /   P)    )    )    )     )    )    *    *    (*    A*    a*    {*    *    *    *    * Q   * $   B+    g+    {+    +    +    +    +    ,    -,     I,    j, :   , T   , 7   -    R-    p- %   - F   -    -    . (   ). '   R. (   z. C   . %   . ,   /    :/    Q/    e/ /   {/    /     / 1   / .   0    A0    S0    V0 E   t0    0    0 A   0 F   1 *   T1     1 '   1    1    1    1    2 !   2    2    2    2    3 "   3    >3 	   S3    ]3    i3    `4    U5    k5 	   5    5     5    5    5 2   5    *6    96    L6    c6    h6    6    6    6 k   6    %7 )   ?7    i7    }7 8   7    7    7 /   8 .   48 )   c8    8    8 )   8 )   8 !   9    09 -   <9    j9 !   9 6   9 0   9 9   :    N:    Z: (   w: &   :    :    :    : $   :    ;    	;    ;    7; /   @; H   p; /   ; H   ;    2<    B<    _< "   h< 
   <    < p   <     = !   1= 2   S= 	   =    =    =    =    =    U>    l>    >    >    >    >    >    > (   ? (   ;?    d?    ?    ?    ?    ?    ?    @    &@ .   @@ .   o@ 5   @    @    lA    3B $   IB 0   nB    B #   B    B )   B *   C R   DC '   C *   C    C    C    D !   1D %   SD !   yD %   D     D $   D    E !   E *   @E    kE    E     E &   E    E    F    F 5   0F    fF    F    	G p   G (   H    9H    LH    ^H 6   {H 2   H    H 	   H +   H -   $I    RI    WI 
   lI    wI -   I .   I    I n   I     dJ =   J 3   J   J q   L o   zL    L    pM *   N 2   3N X   fN R   N -   O 1   @O /   rO &   O    O 5   O    P &   6P ,   ]P +   P '   P    P    P    Q    +Q [   =Q %   Q O   Q *   R    :R    SR    qR    R    R    R    R $   nS O   S '   S    T    T    9T    UT    jT %   ~T    T /   T /   T    U    4U -   MU -   {U    U    U    U    U +   V    EV *   `V *   V 1   V ,   V ?   W !   UW 3   wW    W B   W    W %   X =   @X *   ~X *   X    X )   X    Y <    Y    ]Y 	   fY 0   pY    Y    -Z    HZ G   [    T[    W[ 8   ][ (   [ '   [ )   [ ,   \    >\ %   O\    u\ 2   \ *   \    \    ]    ] H   7] 8   ] I   ]    ^ 	   ^    ^ )   !^ &   K^    r^    ^ 6   _ .   D_ >   s_    _    _    _ !   _    `    ` D   0`    u` )   `     `    ` :   `    2a    Na    la    a /   a -   a 0   a /   +b    [b    yb $   b    b    b    b    b 
   c !   c    2c    Lc !   gc %   c    c    c "   c    d 	   %d .   /d    ^d 0   rd %   d    d    d /   d '   .e ,   Ve    e A   e     e    f    f $   %f    Jf    f    f    g    $g    ?g C   Zg 5   g 8   g    h    h =   ;h 	   yh ,   h ,   h E   h    #i    /i    Mi '   hi *   i '   i *   i &   j )   5j "   _j    j    j 5   j J   j O   "k    rk    l -   l    m    3m ;   Om W   m 7   m    n    4n    Gn !   Un 7   wn    n    n    n    n    o ?   :o    zo    o    o    o    o    o    o +   o    %p    =p    Sp    Yp    ip    vp    p    p    p    p    p    q    q    q 	   2q 	   <q    Fq &   Lq 5   sq    q    q *   q (   r _   *r D   r    r .   r    s    s <   .s .   ks '   s $   s 1   s ;   t !   Ut    wt    t (   t 3   t *   u    :u !   Mu $   ou 2   u :   u )   v 4   ,v )   av 1   v )   v #   v 8   w O   Dw ?   w ?   w 8   x "   Mx ,   px "   x &   x 3   x    y !   :y #   \y +   y )   y    y    y '   y /    z    Pz    iz -   ~z    z    z !   z '   z $   { 3   ?{ [   s{ )   { *   {     $| '   E| '   m| -   | 6   | )   |    $}    <}    I}    ^} )   ~}    } !   }    }    } B   ~ u   [~ &   ~ 4   ~ '   -    U    o (   v <    O    \   ,     p   & F       ށ     G   
 :   R 6       Ă <            )    G    g 1    0    5    %       @    Y M   w    ń         2    *   K    v $   |     1    0    =    *   O "   z (    '   Ɔ     '       - "   K    n             "   އ +       -    M    l <       ǈ                 x   0     /   É             , (   1    Z    k                ݊     B       ^    {            Ջ             "   > 0   a                ׌             :    #   3 7   W         &        (       ,     J    k                ڏ '    )    *   E &   p '    (                    ?    ] %   }     ,    (        S   $    x     4    &        "        C    W "   k !           ˓     5    4   + )   `         +       ۔ "           %    9    >    M    l C   x $    (    a   
    l 8    R   = "    +    '   ߗ &    &   . *   U X    K   ٘ h   %     )    1   ֙ <    -   E ^   s b   Қ 1   5    g     ^                   :    R     m '    +        #    5     $   V &   {            ϝ                0     E    f (         .   ̞ *    .   & .   U +    #    %   ԟ 2    ,   - -   Z 9    4          "    @   ; G   | "   ġ      &       / %   H    n 9   }        ע J    E   @ O           #       `  %  q      1    W    V                5  :  v  )           n  M  p               :   %  \                    6        `   d           K      S                  {            O            r     ?      t  '  8  9  k              s            ^  o                  S  a                                  L    k  `      
              3      <          U  3    R   e  .       "      G      ,   {       ^                            <  k  B  =   Q     .   X  !  C     K                    m                      
    j           e  2                  d   
     y    0                            V  x                  #  P       )         k  A           A                 {             _            N  L                       K    F     $                       i     O                        P  (    9   	       #  '  c   0  !               I    !                                         %                       i    q        o                  h             l  z                          i    X  f         
                                       <        s        !         @        v     |                        C        ,          *    T                   w      	   -      f   R  ;                                          y           G      #   g                     1             u      D         '   /  @   q    R                O      0  D            T             A      [  ]                    L   O                  ,    }              t     )          g  .    ,          4   ]  l        q           l  >                   w  D                }     &         x          M  \              \                                     4  ?            N  o      ~      d  *      r          e      /                   X    C                                         l      v              ^                            p    r     L         %             7  3      G  f  7    .                     H  s    Z                  r                            (                   W    (          h  8  w          S              ]           n          (  u               a      d  7            c              ]                        "                j  w               7                1        t          ?   u                    Q  M                        +       Z                        h       U  /            n                      '               I           z    W                              *       =  z          {             E        4  m      j      9           Y         3          6      S    2              &              u    c  s              i    \    5       Z      b              A      Q          k           G     v  F        x                      F  o                        a      &      x  -  `  _  B  ]      1   h  s         U               J  2          -   ?  ~    T      g     L               [  &  =          <    R      2                     J               I      f      N            F            W         )                    [                  u  5           ?    _           t             P                         U              o             ;            b  N    
           $          -                   i         \  K  Y  Z                                  w       8      E  |  *            M          /      I  @     b          z                   T  |                   j     ^                   ;          I      y            J               6         n     $        $       (      H      V  b  H   "  8           D  >     %      !    "  >  1     Y     3                           .  [  $  c        :    @  m  m    H  2     l             E                 	          9    ~                     g  }    |  	      +      *              >  D        O              C  :        f              M              =                9  Y            6   p      -             /      v     #               d  0  r  y   a                <   N   J             b          Z            A       :        S                         ,    K   +                     a      h           c      6                       }  E         5   ;      C       [       @          >                                                  W      ^         )          =        g      Q       F      e   X       J                  E  0           ~       Y               '  T      B       x      Q  	  H    e                             m   p   +  X      _  G                     P          4  7    +            B      V  p    V            t      U        5                   R    _       j    ;          4             "                 &   n      `    q   8   P  B                           total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: option '%c%s' doesn't allow an argument
 %s: option '%s' is ambiguous; possibilities: %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File size: %s
 File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS Import ZFS wrapping key stored in FILE. Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List coreboot tables. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... M MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MODULE MODULES Mail xorriso support requests to <bug-xorriso@gnu.org>. Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Option -- switches to native xorriso command mode. Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] PUBKEY_ID Paletted  Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot into firmware setup menu. Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Render Apple .disk_label. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show CBMEM console content. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show the contents of a file. Show the current mappings. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Switch to native disk drivers. If no modules are specified default set (pata,ahci,usbms,ohci,uhci,ehci) is used Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 T TARGET Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This entry can be booted by any user. This requires setting GRUB_DEFAULT=saved in %s/default/grub.\n Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. Your embedding area is unusually small.  core.img won't fit in it. Your xorriso doesn't support `--grub2-boot-info'. Some features are disabled. Please use xorriso 1.2.9 or later. Your xorriso doesn't support `--grub2-boot-info'. Your core image is too big. Boot as disk is disabled. Please use xorriso 1.2.9 or later. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `cryptomount' command fails: %s `loopback' command fails: %s `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format blocklist FILE blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s cannot compress the kernel image cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot get translator command line for path `%s': %s cannot open OS file `%s': %s cannot open `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. diskboot.img size must be %u bytes do not probe for filesystems in DEVICE domain name component is too long don't update LED state done embed FILE as an early config embed FILE as public key for signature checking embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enable ARCS (big-endian mips machines, mostly SGI) boot. Disables HFS+, APM, sparc64 and boot as disk image for i386-pc enable sparc boot. Disables HFS+, APM, ARCS and boot as disk image for i386-pc enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to get canonical path of `%s' failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification install GRUB images under the directory DIR/%s instead of the %s directory install even if problems are detected invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid block size invalid color specification `%s' invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no `/' in canonical filename no command is specified no decryption key available no network card found no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found pre-load specified modules MODULES premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory of TFTP server route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the argument `%s' requires an integer the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for label use COLOR for label background use COLOR for text use DIR as the EFI System Partition root. use FILE as font (PF2). use FILE as font for label use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub 2.00+20130519
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-05-22 12:52+0300
Last-Translator: Jorma Karvonen <karvonen.jorma@gmail.com>
Language-Team: Finnish <translation-team-fi@lists.sourceforge.net>
Language: fi
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=n != 1;
           muistia yhteensä: %d kibitavua
     Ensisijaista tilaa ei ole käytettävissä
     Ensisijainen tila: %ux%u
   EDID-tarkistussumma virheellinen   EDID-versio: %u.%u
   Videosovittimen alustaminen epäonnistui   Tietoa ei ole saatavilla   VBE-tiedot:  versio: %d.%d  OEM-ohjelmistoversio: %d.%d
   tai:   (vasemmaisin)  (sisäpuolinen)  (oikeammaisin)  - Osiotaulu alkaa osoitteesta %llu%s kibitavua  - Sektorikoko %uB  - Kokonaiskoko %llu%s kibitavua  - Kokonaiskoko tuntematon [VALITSIN...] %.*s: ARGP_HELP_FMT-parametrin on oltava positiivinen %.*s: ARGP_HELP_FMT-parametri vaatii arvon %.*s: Tuntematon ARGP_HELP_FMT-parametri %d s %d s jäljellä. %s vaikuttaa sisältävän %s-tiedostojärjestelmän, jonka ei tiedetä varaavan tilaa DOS-tyyliselle alkulataukselle. GRUB-ohjelman asentaminen sinne voi aiheuttaa TIEDOSTOJÄRJESTELMÄN TUHOUTUMISEN, jos grub-setup korvaa arvokasta tietoa (valitsin --skip-fs-probe ottaa pois käytöstä tämän tarkistuksen, käytä sitä omalla vastuullasi) %s vaikuttaa sisältävän %s-osiokuvauksen ja LDM:n, jonka tiedetään olevan turvaton yhdistelmä. GRUB-ohjelman asentaminen sinne voi aiheuttaa TIEDOSTOJÄRJESTELMÄN TUHOUTUMISEN, jos grub-setup korvaa arvokasta tietoa (valitsin --skip-fs-probe ottaa pois käytöstä tämän tarkistuksen, käytä sitä omalla vastuullasi) %s vaikuttaa sisältävän %s-osiokuvauksen, jonka ei tiedetä varaavan tilaa DOS-tyyliselle alkulataukselle. GRUB-ohjelman asentaminen sinne voi aiheuttaa TIEDOSTOJÄRJESTELMÄN TUHOUTUMISEN, jos grub-setup korvaa arvokasta tietoa (valitsin --skip-fs-probe ottaa pois käytöstä tämän tarkistuksen, käytä sitä omalla vastuullasi) %s ei tue UUID-tunnisteita %s tuottaa näppäimistösijoittelun ckbcomp:ia käyttävälle GRUB:lle\n %s on vanhentunut. Käytä sen sijaan ”set gfxpayload=%s” ennen linux-komentoa.
 %s on vanhentunut. VGA-tilaa %d ei tunnistettu. Käytä sen sijaan ”set gfxpayload=LEVEYSxKORKEUS[xSYVYYS]” ennen linux-komentoa.
 grub-mkconfig ei vielä tue kohdetta %s.\n %s, jakeluversiolla Hurd %s %s, jakeluversiolla Hurd %s (toipumistila) %s, jakeluversiolla Linux %s %s, jakeluversiolla Linux %s (toipumistila) %s, jakeluversioilla Xen %s ja Linux %s %s, jakeluversioilla Xen %s ja Linux %s (toipumistila) %s, jakeluversiolla Xen hypervisor %s, jakeluversiolla kFreeBSD %s %s, jakeluversiolla kFreeBSD %s (toipumistila) %s, jakeluversiolla ydin %s (%s-kautta) %s, jakeluversiolla ydin %s (%s-kautta, toipumistila) %s: HAJAKOODAUSTÄSMÄÄMÄTTÖMYYS
 %s: VALMIS
 %s: LUKUVIRHE
 %s: Liian monta argumenttia
 %s: Sinun on suoritettava tämä root-käyttäjänä\n %s: virhe: %s: tiedot: %s: virheellinen valitsin -- ’%c’
 %s: valitsin ’%c%s’ ei salli argumenttia
 %s: valitsin ’%s’ ei ole yksiselitteinen; mahdollisuudet: %s: valitsin ’--%s’ ei salli argumenttia
 %s: valitsin ’--%s’ vaatii argumentin
 %s: valitsin ’-W %s’ ei salli argumenttia
 %s: valitsin ’-W %s’ ei ole yksiselitteinen
 %s: valitsin ’-W %s’ vaatii argumentin
 %s: valitsin vaatii argumentin -- ’%c’
 %s: valitsin vaatii argumentin -- ”%s”\n %s: tunnistamaton valitsin ’%c%s’
 %s: unnistamaton valitsin ’--%s’
 %s: varoitus: (32-bittinen) (64-bittinen) (OHJELMAVIRHE) Versiota ei tiedetä!? (OHJELMAVIRHE) Valitsin pitäisi olla tunnistettu!? (kohteella %s) - Nimiö ”%s” - Viimeinen muokkausaika %3$d.%2$d.%1$d %4$d:%5$d:%6$d %7$s --LISÄÄ-- -h HAJAKOODAUS [-c TIEDOSTO [-p ETULIITE]] [TIEDOSTO1 [TIEDOSTO2 ...]] -l | -r | [-s] grub-laite käyttöjärjestelmälevy. ,5 16-bittinen suojattu rajapinta tuettu
 16-bittinen suojattu rajapinta tukematon
 32-bittinen suojattu rajapinta tuettu
 32-bittinen suojattu rajapinta tukematon
 =ARVO > ACPI ei-lyhytkestoinen tallennuspaikka-RAM-muisti ACPI uudelleen käyttöön otettava RAM-muisti ACPI-sulkeutuminen epäonnistui OSOITE OSOITE ARVO [PEITE] OSOITE [KOKO] OSOITE,PEITE1[,OSOITE2,PEITE2[,...]] OSOITE DNSPALVELIN APM otettu pois käytöstä
 APM irrotettu
 APM otettu käyttöön
 APM liitetty
 ARGP_HELP_FMT: %s-arvo on pienempi tai yhtäsuuri kuin %s ASCII Hyväksy DOS-tyyliset CR/NL-riviloput. Aktivoi syötepäätteet: Aktivoi tulostepäätteet: Sovitin ”%s”:
 Lisää DNS-palvelin Lisää verkko-osoite. Lisää verkkoreitti. Lisävalitsimet kohteelle ”%s” Lisävalitsimet kohteelle %s (Xen hypervisor -jakeluversiolla) Salli keskeytys ESC-näppäimellä. Kysy tiedostonimeä, josta alkuladataan. Otaksu, että syöte on heksadesimaali. Otaksu, että syöte on salasana. Otaksu, että syöte on raaka. Yritettiin purkaa master-avaimen salausta... Yritetään asentaa GRUB levyasemalle, jossa on useita osionimiöitä tai sekä osionimiö että tiedostojärjestelmä. Tätä ei vielä tueta. Yritetään asentaa GRUB levyasemalle, jossa on useita osionimiöitä. Tätä ei vielä tueta. Yritetään asentaa GRUB osioimattomalle levyasemalle tai osiolle. Tämä on HUONO ajatus. Saatavilla olevat syötepäätteet: Saatavilla olevat tulostepäätteet: B B/s BIOS_DUMP [INT10_DUMP] LOHKO BYTE:BIT Taustakuvatila. Perushakemisto hajakoodausluettelolle. Alkulataa BIOS-perustainen järjestelmä. Alkulataa käyttöjärjestelmä. Alkulataa yhteen tilaan. Alkulataa vianjäljitysviesteillä. Alkulataa laveilla viesteillä. Alkuladataan ”%s” Alkuladataan komentoluettelo Alkulataa sokkona Alkulatauspolku: %s
 Alkulatauspolku: ei ole saatavilla
 Hyppää GDB:hen CGA  VÄRI KOMENTO [ARGUMENTIT] CPU Idle-tila ei hidasta prosessoria
 CPU Idle-tila hidastaa prosessorin
 CS5536 osoitteessa %d:%d.%d
 Ei voida ottaa käyttöön ROM-aluetta. Vaihda asetettuja laitteita. Vaihda osiotyyppi Tarkista Alt-näppäin. Tarkista Control-näppäin. Tarkista vaihtonäppäin. Tarkista suoritinominaisuudet. Tarkista tiedostohajakoodaukset hajakoodausluettelo-TIEDOSTOlla. Tarkista, että tukeeko prosessori 64-bittistä (long)tilaa (oletus). Tarkista muokkausnäppäinten tila. Tarkista onko käyttäjä USERLIST-luettelossa. Tarkista GRUB-skriptiasetustiedosto syntaksivirheiden varalta. Tyhjennä näyttö. Nollattu aktiivilippu kohteessa %d. 
 Komennot: Vertaa TIEDOSTOa paikalliseen tiedostoon PAIKALLINEN. Vertaa tiedostoa ”%s” tiedostoon ”%s”:
 Vertaa kahta tiedostoa. Laske laitteen XNU UUID. Laske tai tarkista hajakoodaustarkistussumma. Aseta sarjaportti. Jatka silmukoita Muunna yleiset kirjasintiedostomuodot PF2-muotoon Kopioi TIEDOSTO paikalliseen tiedotoon PAIKALLINEN Kopioi TIEDOSTO vakiotulosteeseen. FPSWA-ajurin paikantaminen epäonnistui Fyysisen taltion ”%s” löytäminen epäonnistui. Jotkut moduulit voivat puuttua ydinlevykuvasta. Sha256-algoritmian lataus epäonnistui Sha512-algoritmin lataus epäonnistui Luo BIOS-kaltainen rakenne olemassa olevan käyttöjärjestelmän taaksepäinyhteensopivuutta varten. Luo tyhjä ympäristölohkotiedosto. Nykyiset terminfo-tyypit: LAITE LAITE [OSIO[+/-[TYYPPI]]] ... LAITTEEN on oltava käyttöjärjestelmälaite (esim. /dev/sda). LAITE_NIMI DIR HAKEMISTO [OSBundleRequired] DNSSERVER Vianjäljitystyökalu tiedostojärjestelmäajurille. Esittele muistialueet viallisena (badram). Tiivistyksen purkaja on liian iso Määritä valikkorivi. Määritä alivalikko. Poista verkko-osoite. Poista verkkoreitti. Poista määritelty silmukkalaitelevyasema. Poista muuttujat. Määrittele ajuri. Määrittele tiedostojärjestelmän UUID. Määrittele tiedostojärjestelmänimiö. Määrittele tiedostojärjestelmätyyppi. Määrittele osiokuvaustyyppi. Laite %s: Laitetunniste: %s
 Laitetunniste: ei ole saatavilla Ohjausväri, peite: %d/%d/%d/%d  sijainti: %d/%d/%d/%d Ota ACPI pois käytöstä. Ota SMP pois käytöstä. Ota pois käytöstä kaikki alkulataustulosteet. Ota pois käytöstä/ota käyttöön SMART (0/1) Hylätään väärin sisäkkäiset osiot (%s,%s,%s%d) Levyvälimuistitilasto: osumia = %lu (%lu.%02lu%%), ohilaukauksia = %lu
 Valinnaisen levylukumäärän on oltava sitä käytettäesä levyluettelon edessä.
 Näytä FPSWA-versio. Näytä SMART-terveystila. Näytä tekstirivi. Näytä TIEDOSTOn lohkoluettelo. Näytä tuloste kaikissa pääteikkunoissa. Näytä virtatila. Näytä tämän komennon käyttöopaste ja poistu. Näytä tämä opaste ja poistu. Näytä/aseta nykyinen päiväys. Älä tulosta perässä olevia rivinvaihtoja. Älä tulosta viestejä. Älä koesta mitään levykeasemaa. Älä käytä APM:ia tietokoneen pysäyttämiseen. Älä tee mitään, onnistuneesti. Älä tee mitään, epäonnistuneesti. Älä näytä alkulatauksen diagnostiikkaviestejä. Älä lataa pilkulla erotetulla luetteloilla määriteltyä tietokonetauluja. Älä alkulataa uudelleen, vain pysähdy. Älä pysähdy ensimmäisen virheen jälkeen. Älä päivitä EBDA:ta. Saattaa korjata virheet tai jää roikkumaan joissain BIOS:seissa, mutta on tehoton käyttöjärjestelmillä, jotka eivät vastaanota RSDP:tä GRUB:sta. ENVAR ENVVAR [ENVVAR] ... VIRHE: kevollista näppäimistöasettelua ei löytynyt. Tarkista syöte.
 Poistuu aina ESC-näppäimellä. LAUSEKE LAUSEKE ] Kulunut aika: %d.%03d s 
 Kulunut aika: %d.%03d sekuntia 
 Upottaminen ei ole mahdollista.  GRUB voidaan asentaa tällä asetuksella vain käyttäen lohkoluetteloja.  Lohkoluettelot ovat kuitenkin EPÄLUOTETTAVIA ja niiden käyttöä ei suositella. Matki näppäinlyöntisekvenssiä Ota käyttöön kenoviivakoodinvaihtomerkkien tulkinta. Kirjoita ZFS-salasana:  Siirry KDB:hen alkulautauksessa. Siirry normaalitilaan. Kirjoita salasana kohteelle %s%s%s (%s):  Kirjoita salasana:  Kirjoita käyttäjänimi:  Virhe jäsennettäessä komentoriviargumentteja
 Arvioi lauseke. Poistuminen epäonnistui Poistu GRUB:sta. Poistu silmukoista Poistu normaalitilasta. Vie muuttujat. Vie version 1 taulut käyttöjärjestelmään. Vie version 2 ja version 3 taulut käyttöjärjestelmään. TIEDOSTO TIEDOSTO [ARGUMENTTI ...] TIEDOSTO [ARGUMENTIT ...] TIEDOSTO | TAHTI [PISTEJAKO1 KESTO1] [PISTEJAKO2 KESTO2] ...  TIEDOSTO... TIEDOSTO1 TIEDOSTO2 TIEDOSTONIMI KOMENTO TIEDOSTOJÄRJESTELMÄ [MUUTTUJA] TIEDOSTO|kehote MUOTO FPSWA-yhteyskäytäntö ei kykene löytämään rajapintaa FPSWA-korjausversio: %x
 KOHTEESTA-KOHTEESEEN[,KOHTEESTA-KOHTEESEEN] KOHTEESTA[K|M|G] KOHTEESEEN[K|M|G] FT_Init_FreeType epäonnistuu Sekä oletus- että varmistuslevyjen alkulataus epäonnistui.
 Epäonnistunut ”device-mapper”-puun luominen Palataan takaisin kohteeseen ”%s” Tiedostokoko: %s
 Tiedostojärjestelmä ”%s” ei tue upotusta Tiedostot eroavat siirrososoitteessa %llu: 0x%x [%s], 0x%x [%s]
 Tiedostot ovat erikokoisia: %llu [%s], %llu [%s]
 Tiedostojärjestelmään ei päästä Tiedostojärjestelmätyyppi %s Täytä GPT-aseman LAITE hybridi-MBR. Määritellyt osiot ovat osa hybridi-MBR:ää. Korkeintaan 3 osiota sallitaan. TYYPPI on MBR-tyyppi. + tarkoittaa, että osio on aktiivinen. Vain yksi osio voi olla aktiivinen. Päätä EFI-emulaattorin lataus. Yritä ensimmäiseksi laitteella VIHJE, jos suoritetaan kohteella ARC. Jos VIHJE loppuu pilkkuun, yritä myös aliosioita Yritä ensimmäiseksi laitteella VIHJE, jos suoritetaan tällä hetkellä BIOS:ssa. Jos VIHJE loppuu pilkkuun, yritä myös aliosioita Yritä ensimmäiseksi laitteella VIHJE, jos suoritetaan kohteella EFI. Jos VIHJE loppuu pilkkuun, yritä myös aliosioita Ensimmäinen yritys laitteelle VIHJE, jos suoritetaan kohteella IEEE1275. Jos VIHJE loppuu pilkkuun, yritä myös aliosioita Ensimmäinen yritys laitteelle VIHJE, jos suoraa laitepääsyä tuetaan. Jos VIHJE loppuu pilkkuun, yritä myös aliosioita Ensimmäinen yritys laitteelle VIHJE. Jos VIHJE loppuu pilkkuun, yritä myös aliosioita Korjaa videopulma. Löytyi %s kohteelta %s (%s)\n Löytyi %s kohteella %s\n GNU Mach löytyi: %s Hurd-moduuli löytyi: %s NetBSD-käyttöjärjestelmäydin löytyi: %s\n Tausta löytyi: %s\n Löytyi initrd-levykuva: %s\n Käyttöjärjestelmämoduulihakemisto löytyi: %s\n FreeBSD-käyttöjärjestelmäydin löytyi: %s\n Linux-levykuva löytyi: %s\n Teema löytyi: %s\n Freetype-virhe %d ladattaessa glyph 0x%x kohteelle U+0x%x%s Jäädytä ATA-turvallisuusasetukset uudelleenkäynnistykseen asti. Perjantai Gi GNU GRUB -versio %s GRUB-alkulatausvalikko GRUB ei vielä tiedä, kuinka tämä kone pysäytetään! GRUB-emulaattori. GRUBDEVICE=PLAN9DEVICE Roskaa kohteessa ARGP_HELP_FMT: %s Tuota GRUB-näppäimistöasettelu Linux-pääteikkuna-asettelusta. Tuota PBKDF2-salasanahajakoodausmerkkijono. Tuota grub config-tiedosto Tuota erillinen levykuva (sisältäen kaikki moduulit) valitussa muodossa Hae TIEDOSTOn crc32-tarkistussumma. Hae levyvälimuistitiedot. Hae/aseta ATA-levyparametrit. gibitavua gibitavua/s HAJAKOODAUS VIHJE Pysäytä järjestelmä, jos mahdollista käyttäen APM:ia. Pysäyttää tietokoneen.  Tämä komento ei toimi kaikissa mikro-ohjelmistototeutuksissa. Käsittele N tavua tulostetiedostossa. Hei Maailma Hercules  TUNNISTE LEVYKUVA1 [LEVYKUVA2 ...] LIITÄNTÄPISTE IMAGE_PATH KOMENNOT Tuo ZFS-käärinavain, joka on tallennettu TIEDOSTOon. Virheellinen virtuaalilaite: tyyppiä ei ole käytettävissä Lisää moduuli. Asenna GRUB levyasemaasi. Asennus on päättynyt. Virheitä ei löytynyt. Virheellinen paluuviite Virheellinen merkkiluokkanimi Virheellinen tietojen keräysmerkki Virheellinen komento %s.
 Virheellinen \{\}-sisältö Virheellinen laite ”%s”.
 Virheellinen levylukumäärä.
 Virheellinen edeltävä säännöllinen lauseke Virheellinen lukualueen loppu Virheellinen säännöllinen lauseke Kutsu esiin käyttäjäasetusreititys. Ki YDIN ARGUMENTIT NÄPPÄIMISTÖ_NÄPPÄIN Näppäimistönäppäin tämän rivin nopeaa alkulatausta varten. kibitavua kibitavua/s Lehtivirtuaalilaite (tiedosto tai levy) Perinne-”ask”-parametriä ei enää tueta. Selite: mask/position=red/green/blue/reserved Tuotetun hajakoodausmerkkijonon pituus Salt-siemenen pituus Luettele DNS-palvelimet Luettele PCI-laitteet. Luettele kaikki tiedostot. Luettele käytettävissä olevat videotilat. Jos resoluutio on annettu, näytä vain tiloja, jotka täsmäävät siihen. Luettele coreboot-taulukot. Luettele laitteet ja tiedostot. Luettele laitteet tai tiedostot. Luettele laitteet. Luettele tiedostot PATH-muuttujassa. Luettele mikro-ohjelmiston tarjoama muistikuvaus. Tuettujen videotilojen luettelo: Luettelo käyttäjistä, joiden sallitaan alkuladata tämä kohde. Luettele tai valitse syötepääte. Luettele tai valitse tulostepääte. Luettele nykyiset muuttujat. Luettele ladatut kirjasimet. Luettele muuttujat ympäristölohkotiedostosta. Lataa 64-bittinen XNU-levykuva. Lataa BIOS-vedos. Lataa FreeBSD-ymp. Lataa FreeBSD-ydinmoduuli (ELF). Lataa FreeBSD-ydinmoduuli. Lataa FreeDOS-kernel.sys. Lataa Linux. Lataa NTLDR tai BootMGR. Lataa NetBSD-ydinmoduuli (ELF). Lataa NetBSD-ydinmoduuli. Lataa Plan9-ydin. Lataa XNU-laajennushakemisto. Lataa XNU-laajennuspakkaus. Lataa XNU-laajennus. Lataa XNU-levykuva. Lataa XNU-ramlevy. Käyttöjärjestelmässä se on käytettävissä nimellä md0. Lataa ”device-properties”-vedos. Lataa PXE-levykuva. Lataa näppäimistösijoittelu. Lataa monialkulataus 2 -ydin. Lataa monialkulataus 2 moduuli. Lataa monialkulatausydin. Lataa monialkulatausmoduuli. Lataa tervetulokuva XNU:lle. Lataa XNU-lepotilalevykuva. Lataa ja alusta EFI-emulaattori. Lataa toinen alkulatauslataaja. Lataa toinen config-tiedosto, mutta hae vain valikkorivit. Lataa toinen config-tiedosto muuttamatta asiayhteyttä, mutta hae vain valikkorivit. Lataa toinen config-tiedosto muuttamatta asiayhteyttä. Lataa toinen config-tiedosto. Lataa toinen coreboot-kuorma Lataa taustakuva aktiivipäätteelle. Lataa tietokoneen ACPI-taulut ja argumenttien määrittelemät taulut. Lataa initrd-tiedosto. Lataa kOpenBSD-ramlevy. Lataa FreeBSD-käyttöjärjestelmäydin. Lataa NetBSD-käyttöjärjestelmäydin. Lataa OpenBSD-käyttöjärjestelmäydin. Lataa vain pilkulla erotetulla luettelolla määriteltyjä tauluja. Lataa sama tiedosto useilla tavoilla. Lataa muuttujat ympäristölohkotiedostosta. Lataa zfs-salausavain. Ladatut kirjasimet: Ladataan GNU Mach ... Ladataan Linux %s käyttöjärjestelmäydin ... Ladataan Xen %s ... Ladataan alustavaa ramlevyä ... Ladataan FreeBSD %s käyttöjärjestelmäydin ... Ladataan Illumos-käyttöjärjestelmäydin ... Ladataan Hurd ... Mi MAC-todentaminen epäonnistui VALIKKORIVI on numero tai valikkoriviotsikko tai valikkorivitunniste. MODUULI MODUULIT Sähköposti-xorriso-tuki vaatii osoitteen <bug-xorriso@gnu.org>. Tee GRUB CD-ROM-, levy-, muistitikku- ja levykealkuladattava levykuva. Tee GRUB-näppäimistösijoittelutiedosto. Tee alkuladattava GRUB-levykuva. Tee tiedostosta virtuaalinen levyasema. Tee osiosta aktiivinen Hallinnoi BIOS-asemakuvauksia. Pakolliset tai valinnaiset argumentit pitkille valitsimille ovat pakollisia tai valinnaisia myös kaikille vastaaville lyhyille valitsimille. Käsittele PCI-laitteita. KOMENNON käyttämä mitattu aika Muisti loppui Muistityyppi: DDR2. Muistityyppi: Tuntematon. Valikkorivin tunniste. Valikkoriviä ei ole määritelty. Valikkorivin tyyppi. mebitavua mebitavua/s Minimaalista BASH-kaltaista rivimuokkausta tuetaan. Hae ensimmäiselle sanalle SARKAIN-painikkeella luettelot mahdollisista komentojen täydennyksistä. Kaikkialla muualla SARKAIN-painike luettelee mahdolliset laite- tai tiedostotäydennykset. %s Minimaalista Emacs-kaltaista näyttömuokkausta tuetaan. SARKAIN-painike luettelee täydennykset. Alkulataa näppäimillä Ctrl-x tai F10, komentoriville näppäimillä Ctrl-c tai F2 tai hylkää muokkaukset ja palaa valikkoon ESC-painikkeella. Puuttuvat argumentit
 Puuttuva syötetiedosto
 Maanantai Kaksivärinäyttö  Enemmän kuin yksi asennuslaite? Enemmän kuin yksi valikkorivi? Liitä salauslaite. Liitä kaikki taltiot ”boot”-lippu asetettuna. Liitä kaikki. UUID:n liittämä. Liitä salauslaitteet. NIMI NIMI [MUUTTUJA] [VIHJEET] NUM SEKUNTIEN_MÄÄRÄ Nimi	Viitelaskuri	Riippuvuudet
 Kotoperäiset levyajurit ovat käytössä. Kieltäydytään käyttämästä mikro-ohjelmistolevyrajapintaa. Verkkoyhteyskäytännöt: Uusi MBR on kirjoitettu levylle ”%s”
 CS5536 ei löytynyt FPSWAta ei löytynyt Alkulatausaikaiset tilastot eivät ole käytettävissä
 Komentoa ei ole määritelty.
 Laitetta ei ole annettu.
 Levyvälimuistitilasto ei ole käytettävissä
 Yhtään kiintolevyä ei ole kuvattu uudelleen Tuntematon tiedostojärjestelmä havaittu Ei täsmäystä Polkua ei ole määritelty.
 Polkua tai laitetta ei ole määritelty.
 Ei edellistä säännöllistä lauseketta Ei virtuaalilaitepuuta saatavilla Ei-ketju 4  Komennolle ei ole riittävästi parametreja.
 Yhdistä nyt etävikajäljitin. PBKDF2-iteraatioiden lukumäärä Käyttöjärjestelmälevy #num ------> GRUB/BIOS-laite Käyttöjärjestelmätiedoston %s avausvirhe: %s Valitsin -- vaihtaa alkuperäiseen xorriso-komentotilaan. Valitsimet: Hakualueen ulkopuolella: %d
 Korvautumisalueen ulkopuolella (%d, %d)
 Ohita Plan9-laitteiden arvattu kuvaus. Pi OSIOKOMENNOT POLKU Salasanasi PBKDF2-hajakoodaus on %s
 PORTTI PORTTI ARVO [PEITE] JULKISEN_AVAIMEN_TUNNISTE Pakattu  Jäsennä perinneasetus uudessa asiayhteydessä Jäsennä perinneasetus uudessa asiayhteydessä ottaen vain valikkorivit Jäsennä perinneasetus samassa asiayhteydessä Jäsennä perinneasetus samassa asiayhteydessä ottaen vain valikkorivit Osanumero: %s.
 Osio %d on nyt aktiivinen. 
 Osio %s: Osiotyyli ”%s” ei tue upotusta Polku: %s
 Polku: ei ole saatavilla Suorita KOMENNOT osiolla.
Käytä ”parttool OSIO help” käytettävissä olevien komentojen luetteloimiseksi. Suorita DNS-haku Suorita automaattinen IPV6-asetus Suorita sekä suorat että käänteiset kuvaukset. pebitavua pebitavua/s Planar  Soita sävelmä. Älä käytä vanhaa otsikkoa ”%s” GRUB_DEFAULT-määrittelyksi, käytä ”%s” (versioille ennen 2.00) tai ”%s” (versiolla 2.00 ja myöhäisemmille) Varanto-GUID: %016llx
 Varanto-GUID: ei saatavilla Varantonimi: %s
 Varantonimi: ei saatavilla Varantotila: aktiivinen Varantotila: tuhottu Varantotila: viety Varantotila: taso 2 ARC-laite Varantotila: potentiaalisesti aktiivinen Varantotila: varattu kuumalle varaosalle Varantotila: ei saatavilla Varantotila: alustamaton Mahdollisia argumentteja ovat: Mahdollisia komentoja ovat: Mahdollisia laitteita ovat: Mahdollisia tiedostoja ovat: Mahdollisia osioita ovat: Mahdollisia asioita ovat: Ennenaikainen säännöllisen lausekkeen loppu Jatka painamalla mitä tahansa näppäintä... Käynnistä xnu painamalla mitä tahansa näppäintä Paina enter-näppäintä valitun käyttöjärjestelmän alkulataamiseksi, ”e” komentojen muokkaukseen ennen alkulatausta ja ”c” komentoriville. Paina enter-näppäintä valitun käyttöjärjestelmän alkulataamiseksi, ”e” komentojen muokkaukseen ennen alkulatausta ja ”c” komentoriville. Palaa edelliseen valikkoon ESC-näppäimellä. Tulosta muistitiedot. Tulosta ZFS-tiedot laitteesta LAITE. Tulosta ZFS-BOOTFSOBJ tai tallenna se MUUTTUJAan Tulosta lohkoluettelo. Tulosta ja suorita lohkoargumentti. Tulosta paluujälki. Tulosta aseman identiteetti ja asetukset. Tulosta koot ihmisen luettavassa muodossa. Koesta laitetiedot annetulle polulle (tai laitteelle, jos valitsin -d on annettu). coreboot-taulukkoja pitävä RAM-muisti mikro-ohjelmistokoodia pitävä RAM-muisti RAM-välinumero %d
 REGEXP-lauseke MERKKIJONO ROM-levykuva on läsnä. Lue 16-bittinen arvo OSOITTEESTA. Lue 16-bittinen arvo portista PORTTI. Lue 32-bittinen arvo OSOITTEESTA. Lue 32-bittinen arvo portista PORTTI. Lue 8-bittinen arvo OSOITTEESTA. Lue 8-bittinen arvo portista PORTTI. Lue vain LENGTH-tavua. Uudelleenkäynnistys epäonnistui Alkulataa mikro-ohjelmistoasetusvalikkoon. Alkulataa tietokone uudelleen. Kirjoita salasana uudelleen:  Rekisteri %x / %x:%02x.%x on %x
 Säännöllinen lauseke on liian suuri Poista DNS-palvelin Poista moduuli. Poista ympäristömuuttuja. Poista kaikki muistialueet määritellyltä alueelta. Renderoi Apple .disk_label. Ilmoita vioista (englanniksi) osoitteeseen %s.
Ilmoita käännösvirheistä osoitteeseen <translation-team-fi@lists.sourceforge.net>.
 Ilmoita vioista (englanniksi) osoitteeseen <bug-grub@gnu.org>. Ilmoita käännösvirheistä osoitteeseen <translation-team-fi@lists.sourceforge.net>. Pyydettiin sarjapääteikkuna, mutta GRUB_SERIAL_COMMAND on määrittelemätön. Käytetään oletusparametreja. Palauta kaikki kuvaukset oletusarvoihin. Nouda laitetiedot. Palaa funktiosta. Palaa IEEE1275 -kehotteelle. Suorita ”gdb %s %d”, ja aseta ARGS.HOLD nollaksi.
 Suorita ”go” GRUB:in aloittamiseksi uudelleen. SEKUNTIA LYHYTNIMI LYHYTNIMI KORTTI OSOITE [LAITTEISTO-OSOITE] LYHYTNIMI NET [RAJAPINTA] gw YHDYSKÄYTÄVÄ] KOKO SOURCE|-u UUID|-a|-b MERKKIJONO Lauantai Tallenna luettu arvo muuttujaan MUUTTUJANIMI. Tallenna muuttujat ympäristölohkotiedostoon. Sano ”Hei Maailma”. Etsi laitteita UUID:n avulla. Jos MUUTTUJA on määritelty, ensimmäinen löydetty laite asetetaan muuttujaan. Etsi laitteita tiedoston avulla. Etsi laitteita tiedostojärjestelmän UUID-tunnisteen avulla. Etsi laitteita tiedostojärjestelmänimiön avulla. Etsi laitteita tiedoston, tiedostojärjestelmänimiön tai tiedostojärjestelmän UUID-tunnisteen avulla. Jos valitsin --set on määritelty, ensimmäinen löydetty laite asetetaan muuttujaan. Jos mitään muuttujanimeä ei ole määritelty, käytetään arvoa ”root”. Etsi laitteita tiedoston avulla. Jos MUUTTUJA on määritelty, ensimmäinen löydetty laite asetetaan muuttujaan. Etsi laitteita nimiön avulla. Jos MUUTTUJA on määritelty, ensimmäinen löydetty laite asetetaan muuttujaan. Sektori %llu on jo raid-ohjaimen ”%s” käyttämä, vältä sektoria. Pyydä valmistajaa olemaan tallentamatta tietoja MBR-väliin Sektori %llu on jo ohjelman ”%s” käyttämä, vältä sektoria. Tämä ohjelmisto saattaa aiheuttaa alkulatauksen tai muita pulmia tulevaisuudessa. Valitse laite sen väyläsijainnin avulla. Valitse laite myyjä- ja laitetunnisteiden avulla. Aseta kehittynyt virranhallinta (APM)
(1=matala, ..., 254=korkea, 255=pois käytöstä). Aseta automaattinen akustinen hallinta (AAM)
(0=pois, 128=hiljaa, ..., 254=nopea). Aseta RSDP:n, XSDT:n ja RSDT:n OEMID-kenttä. Aseta RSDP:n, XSDT:n ja RSDT:n OEMTABLE-tunniste. Aseta RSDP:n, XSDT:n ja RSDT:n OEMTABLE-versio. Aseta ”hidden”-lippu osiotyypissä Aseta muuttuja paluuarvoon. Aseta muuttuja ensimmäiseen löydettyyn laitteeseen. Aseta ympäristömuuttuja. Aseta taustaväri aktiivipäätteelle. Aseta RSDP:n, XSDT:n ja RSDT:n luojakenttä. Aseta RSDP:n, XSDT:n ja RSDT:n luojaversio. Aseta vianjäljitysympäristömuuttuja. Aseta asema lepotilaan. Aseta asema valmiustilaan. Aseta sijaintiparametrit. Aseta juurilaite. Aseta valmiustila-aikakatkaisu
(0=pois, 1=5 s, 2=10 s, ..., 240=20 min., 241=30 min., ...). Aseta TERM-terminfo-tyypiksi TYYPPI.
 Aseta oletusalkulatausvalikkorivi GRUB:lle, vain seuraavaa alkulatausta varten. Aseta oletusalkulatausvalikkorivi GRUB:lle Aseta sarjaporttiosoite. Aseta sarjaportin pariteetti. Aseta sarjaporttinopeus. Aseta sarjaportin stop-bitit. Aseta sarjaportin sanapituus. Aseta sarjayksikkö. Aseta levykuvat alkulatamaan laitteesta LAITE.

Tätä ohjelmaa ei pitäisi normaalisti suorittaa itse.  Käytä sen sijaan ohjelmaa grub-install. Aseta käyttäjäsalasana (PBKDF2).  Aseta käyttäjän salasana (pelkkänä tekstinä). Ei suositella turvattomana. Aseta muuttuja käyttäjäsyötteellä. Aseta muuttujat. Asetetaan osiotyypiksi 0x%x
 Vaihda sijaintiparametreja. Näytä ACPI-tiedot. Näytä APM-tiedot. Näytä CBMEM-pääteikkunasisältö. Näytä opasteviesti. Näytä pitkä luettelo yksityiskohtatiedoilla. Näytä TIEDOSTOn sisältö heksadesimaalisena. Näytä ladatut moduulit. Näytä muistisisältö. Näytä ATA IDENTIFY-sektorin raakasisältö. Näytä tiedoston tai muistin raakasisältö. Näytä tiedoston sisältö. Näytä nykyiset kuvaukset. Näytä tämä viesti. Näytä vain versio 1:n taulut. Näytä vain version 2 ja version 3 taulut. Sulkeutuminen epäonnistui Simuloi grub-legacy ”initrd” -komentoa Simuloi grub-legacy ”kernel” -komentoa Simuloi grub-legacy ”modulenounzip” -komentoa Simuloi grub-legacy ”password” -komentoa Simuloi grub-legacy ”password” -komentoa valikkorivitilassa Ohita N tavua tulostetiedostosta. Hyppää siirrososoitetavujen yli tiedoston alusta. Väli %d avattu
 Löytyi jotain Hurd-materiaalia, mutta ei kylliksi alkulataukseen. Määrittele tiedostonimi. Määritä käytettävä hajakoodaus. Määritä yksi tai useampia kirjasintiedostoja ladattavaksi. Määritä koko jokaiselle lukutoiminnolle Määritä syötetiedostojen lukumäärä. Nopeus: %s 
 Käynnistä GDB-tynkä annetussa portissa Pysäytä GDB-tynkä Tallenna täsmäävä komponentti-NUMERO muuttujaan VARNAME. Onnistui Sunnuntai Vaienna normaalituloste (varoitukset jäävät). Vaihda alkuperäisiin levyajureihin. Jos yhtään moduulia ei ole määritelty, käytetään oletusjoukkoa (pata,ahci,usbms,ohci,uhci,ehci) Syntaksivirhe rivillä %u
 Syntaksivirheita havaittu tuotettaessa GRUB-asetustiedostoa.
Varmista, että tiedostoissa /etc/default/grub ja /etc/grub.d/*
ei ole mitään virheitä tai tee vikailmoitus tiedosto %s
liitteenä. Järjestelmähallintaväyläohjain siirräntätila on osoitteessa 0x%x
 Ti KOHDE Kohdemuotoa ei ole määritelty (käytä valitsinta -O). Päätteellä on määritelty geometria. Pääte on vain ASCII-pääte [oletus]. Pääte on loogisesti järjestetty UTF-8. Pääte on visuaalisesti järjestetty UTF-8. Koesta USB-tuki. Testaa bitti BYTE:BIT CMOS-muistissa. Testaa tiedoston lukunopeus Koesta, jos REGEXP-lauseke täsmää MERKKIJONOon. Koesta video-alijärjestelmä WxH-tilassa. Koesta video-alijärjestelmä. Vain teksti  Tiedostot ovat identtiset.
 Korostettu valikkorivi suoritetaan automaattisesti %d sekunnin kuluttua. Kuka tahansa käyttäjä voi alkuladata tämän kohteen. Tämä vaatii asetuksen GRUB_DEFAULT=saved tiedostossa %s/default/grub.\n Torstai tebitavua tebitavus/s Työkalu ympäristölohkon muokkaamiseen. Flash-muistin kokonaiskoko: %d tavua.
 Jäljessä oleva kenoviiva Muunna 64-bittiset UUID:t XNU:lle sopivaan muotoon. Jos valitsin -l on annettu, pidä se pienenä kirjaimena kuten blkid tekee. Muunna järjestelmätiedostonimi GRUB-tiedostonimeksi. Käännä merkkijonot nykyisillä asetuksilla. Lisätietoja komennolla ’%s --help’ tai ’%s --usage’.
 Tiistai KÄYTTÄJÄ SALASANA KÄYTTÄJÄ PBKDF2_SALASANA KÄYTTÄJÄNIMI[,KÄYTTÄJÄNIMI] UTF-8 Ei kyetä luomaan putkea: %s Ei kyetä määrittelemään alustaasi. Käytä valitsinta --target. Ei kyetä fork-kutsumaan: %s Ei kyetä avamaan virtaa kohteelta %s: %s Ei kyetä noutamaan varantotilaa Pura tiedoston tiivistys. Pura tiedoston tiivistys ennen tarkistussumman laskemista. Tuntematon osoitetyyppi %d
 Tuntematon komento ”%s”.
 Tuntematon tiivistysmuoto %s Tuntematon koodaus Tuntematon ylimääräinen argumentti ”%s”. Tuntematon gsub-kirjasinominaisuus 0x%x (%s)
 Tuntematon näppäimistön etsintäkoodi 0x%02x
 Tuntematon näppäimistön etsintätunniste %s
 Tuntematon järjestelmävirhe Tuntematon videotila  Tuntematon virtuaalilaitetyyppi: %s
 Poista EFI-emulaattorilataus. Pariton ( tai \( Pariton ) tai \) Pariton [ tai [^ Pariton \{ Tunnistamaton valitsin ”%s”\n Tunnistamaton varantotila Tukematon osoitetyyppi %d
 Tukematon peittomäärittely: %d
 Tukematon laitteisto-osoitetyyppi %d
 Tukematon levykuvamuoto Tukematon korvauslippu: 0x%x
 Tukematon korvausmäärittely: %d
 Tukematon korvaustyyppi: %d
 Käyttö: Käyttö: %s -o TULOSTE CKBMAP_ARGUMENTIT...\n Käyttö: %s LAITE
 Käyttö: %s [SYÖTETIEDOSTO [TULOSTETIEDOSTO]]
 Käyttö: %s [VALITSIN] VALIKKORIVI\n Käyttö: %s [VALITSIN]\n Käytä CD-ROM:ia juurena. Käytä GDB-etävianjäljitintä eikä DDB:tä. Käytä MERKKIJONOa valikkorivirunkona. Käytä sisäänkäännettyä root-laitetta. Käytä sarjapääteikkunaa. Käytä näppäimiä %C ja %C valitsemaan korostettu valikkorivi. MUUTTUJA RAJAPINTA NUMERO KUVAUS MUUTTUJANIMI Lavea loppulaskenta. Varmista ulkopuolinen allekirjoitus. Versio %u.%u
32-bittinen CS = 0x%x, pituus = 0x%x, siirrososoite = 0x%x
16-bittinen CS = 0x%x, pituus = 0x%x
DS = 0x%x, pituus = 0x%x
 Virtuaalilaite on taantunut Virtuaalilaite vioittui Virtuaalilaite ei ole verkossa Virtuaalilaite on verkossa Virtuaalilaite poistettiin VAROITUS: pääteikkunaa ei ole saatavissa käyttöjärjestelmään VAROITUS: alustakohtaista asennusta ei ole suoritettu VAROITUS: tukemattomat kirjasinominaisuusparametrit: %x
 LEVEYSxKORKEUS. Odota tietty sekuntimäärä. Odota näppäimen painallusta jokaisen tulosterivin jälkeen. Varoitus: Varoitus: virheellinen taustaväri ”%s”
 Varoitus: virheellinen edustaväri ”%s”
 Varoitus: syntaksivirhe (puuttuu /-merkki) värinimiparissa ”%s”
 Keskiviikko Windows NT/2000/XP (-lataaja) Windows Vista/7 (-lataaja) Kirjoita 16-bittinen ARVO OSOITTEESEEN. Kirjoita 16-bittinen ARVO porttiin PORTTI. Kirjoita 32-bittinen ARVO OSOITTEESEEN. Kirjoita 32-bittinen ARVO porttiin PORTTI. Kirjoita 8-bittinen ARVO OSOITTEESEEN. Kirjoita 8-bittinen ARVO porttiin PORTTI. Kirjoitettu SPD-tavuja: %d tavua.
 Xen hypervisor, versio %s YUV  Sinun on määriteltävä vähintään yksi komento.
 Sinun on asetettava ”SystemPartition” ja ”OSLoader” manuaalisesti. Upotettava alueesi on epätavallisen pieni.  Tiedosto core.img ei mahdu siihen. Xorriso-ohjelmasi ei tue valitsinta ”--grub2-boot-info”. Jotkut ominaisuudet ovat poissa käytöstä. Käytä xorriso-ohjelmaversiota 1.2.9 tai sitä myöhäisempää. Xorriso-ohjelmasi ei tue valitsinta ”--grub2-boot-info”. Ydinvedoskuvasi on liian suuri. Alkulataus levynä on otettu pois käytöstä. Käytä xorriso-ohjelmaversiota 1.2.9 tai sitä myöhäisempää. [--append|--remove] [PÄÄTE1] [PÄÄTE2] ... [--force|--bpb] TIEDOSTO [--md5] SALASANA [TIEDOSTO] [--no-mem-option] [--type=TYYPPI] TIEDOSTO [ARGUMENTTI ...] [-1|-2] [--exclude=TAULU1,TAULU2|--load-only=TAULU1,TAULU2] TIEDOSTO1 [TIEDOSTO2] [...] [-c TIEDOSTO [-p ETULIITE]] [TIEDOSTO1 [TIEDOSTO2 ...]] [-d] LAITENIMI TIEDOSTO. [-e|-n] MERKKIJONO [-f TIEDOSTO] [-f TIEDOSTO] muuttuja_nimi [...] [-f|-l|-u|-s|-n] [--hint VIHJE [--hint VIHJE] ...] NIMI [-h|-p|-r] [TIEDOSTO] [-l] GRUBUUID [MUUTTUJANIMI] [-l|-h|-a] [TIEDOSTO ...] [-m (stretch|normal)] TIEDOSTO [-s SIJAINTI]... [POLKU|LAITE] [-s SIJAINTI] [-d LAITE] [-v MUUTTUJA] REKISTERI[=ARVO[:PEITE]] [-s KOKO] TIEDOSTONIMI [OSOITE|comYKSIKKÖ][,NOPEUS] [ARGUMENTTI] [KORTTI [LAITTEISTO-OSOITE]] [KORTTI] [ENVVAR=ARVO] [ENVVAR] [NÄPPÄINLYÖNTI1] [NÄPPÄINLYÖNTI2] ... [MODUULI1 MODUULI2 ...] [NUMERO:]MUUTTUJANIMI [NUM] [VALITSIMET...] [VALITSIMET] [VALITSIMET] LEVY [VALITSIN] TIEDOSTO_TAI_LAITE [VALITSIMET] KIRJASIN_TIEDOSTOT [VALITSIN]... [MODUULIT] [VALITSIN]... [POLKU|LAITE] [VALITSIMET] [POLKU] [MALLI ...] [KÄYTTÄJÄLUETTELO] [ARVO]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] PÄÄTE [TYYPPI]] [[vuosi-]kuukausi-päivä] [tunti:minuutti[:sekunti]] [väylä]:[väli][.funktio] [myyjä]:[laite] ”cryptomount”-komento epäonnistuu: %s ”loopaback”-komento epäonnistui: %s ”obppath” ei löytynyt kohteen ”%s” äitihakemistoista, ei ole havaittu IEEE1275-nimeä arvo liitettiin argumenttiin ”%s” vaikka se ei vaadi argumenttia pääsy kielletty lisää NOTE-segmentti kohteelle CHRP IEEE1275 osoite osoitetta ei löytynyt yritetään lukea tai kirjoittaa levyn ”%s” ulkopuolella yritys lukea tai kirjoittaa osion ulkopuolelle yritys lukea tiedoston lopun jäljestä yritys etsiä tiedoston ulkopuolella yritetään lukea ydinlevykuvaa ”%s” GRUB:sta yritetään lukea ydinlevykuvaa ”%s” GRUB:sta uudelleen käytettävissä oleva RAM-muisti käytettävissä olevat muodot: virheellinen allekirjoitus base_addr = 0x%llx, pituus = 0x%llx, %s
 base_addr = 0x%llx, pituus = 0x%llx, tyyppi = 0x%x
 bittikartta ”%s” on tukematonta muotoa blocklist TIEDOSTO lohkoluettelot ovat virheellisiä lohkokoko on jaollinen numerolla 512 break 0 -silmukasta uloshyppääminen epäonnistui ei voi määrittellä tiedostojärjestelmää kohteessa %s ei kyetä löytämään komentoa ”%s” salaustaltion ”%s” liittäminen epäonnistui: %s ei voi avata tulostekohdetta ”%s”: %s ei voida avata tiedostoa %s, indeksi %d: virhe %d lohkoluetteloiden noutaminen epäonnistui ei voida noutaa lohkoluetteloja: %s ei voi tiivistää käyttöjärjestelmäytimen levykuvaa ei voida löytää GRUB-levyasemaa kohteelle %s. Tarkista device.map-tiedostosi ei voida löytää laitetta kohteelle %s (onko /dev -liitetty?) ei kyetä saamaan translator-komentoriviä polulle ”%s”: %s ei voi avata käyttöjärjestelmätiedostoa ”%s”: %s ei voi avata kohdetta ”%s”: %s ei voida lukea ydinlevykuvaa ”%s” oikein ei voi lukea kohdetta ”%s”: %s ei voi nimeä tiedostoa %s nimellä %s alkuperäisen hakemiston palauttaminen epäonnistui ”%s”-haku epäonnistui: %s ei voida stat-kutsua ”%s”: %s ei voida kirjoittaa CD-ROM -levylle ei voida kirjoittaa kohteeseen ”%s”: %s ei voida kirjoittaa vakiotulosteeseen: %s korttia ei löytynyt cat TIEDOSTO tarkistussummatodentaminen epäonnistui valitse ydinlevykuvalle käytettävä tiivistys cmp TIEDOSTO PAIKALLINEN comYKSIKKÖ[,NOPEUS] vertailu epäonnistui siirrososoitteessa %llu yhteys kielletty yhteysaikavalvonta muunna vahvennetuksi kirjasimeksi ydinlevykuva on liian iso (0x%x > 0x%x) core.img -versiotäsmäämättömyys kohteen %s asettaminen automaattisesti epäonnistui monilaitetiedostojärjestelmän välttämättömän jäsenlaiteen löytäminen epäonnistui geli-kuluttajan löytäminen epäonnistui geom ”part” -luokan avaus epäonnistui geom-laitteen avaus epäonnistui ELI-metatietojen lukeminen epäonnistui UUID-tunnisteen noutaminen epäonnistui geli UUID -tunnisteen noutaminen epäonnistui satunnaisdatan noutaminen salt-siemeneksi epäonnistui verkkopaketin lähettäminen epäonnistui cp TIEDOSTO PAIKALLINEN crc TIEDOSTO salausvirhenumero %d cygwin_conv_path() epäonnistui poista laitekuvaus, jos se on jo olemassa kohde saavuttamaton laitelukumäärä ylittää rajan ota vihjeet pois käytöstä levyä ”%s” ei löytynyt levyä ei ole olemassa, joten palataan takaisin osiolaitteeseen %s käytettävä levyasemamoduuli (biosdisk tai alkuperäinen). Tämä valitsin on käytettävissä vain BIOS-kohteella. diskboot.img:n koon on oltava %u tavua älä koesta tiedostojärjestelmiä laitteessa LAITE verkkotunnuskomponentti on liian pitkä älä päivitä LED-tilaa valmis upota TIEDOSTO kuin aikaisena asetuksena upota TIEDOSTO julkisena avaimena allekirjoitustarkistukseen upottaminen ei ole mahdollista, mutta sitä vaaditaan RAID- ja LVM-asennuksessa upottaminen ei ole mahdollista, mutta sitä vaaditaan asennuksessa kahdelle eri levyasemalle ota käyttöön ARCS (big-endian mips-koneet, useimmiten SGI) -alkulataus. Ottaa pois käytöstä HFS+, APM, sparc64 ja alkulatauksen levykuvana i386-pc:lle ota käyttöön sparc-alkulataus. Ottaa pois käytöstä HFS+, APM, ARCS ja alkulatauksen levykuvana i386-pc:lle enter-näppäin: alkulataus, ”e”: valitsimet, ”c”: komentorivi ympäristölohko on liian pieni virhe: %s.
 oleta GRUB-levykuvien olevan hakemiston DIR/%s alla eikä %s-hakemiston sääntöjen mukaisen ”%s”-polun saaminen epäonnistui häiriö luettaessa sektoria 0x%llx kohteesta ”%s” häiriö salasanan lukemisessa häiriö kirjoitettaessa sektoria 0x%llx kohteeseen ”%s” epätosi viallinen RAM-muisti (BadRAM) tiedostoa ”%s” ei löytynyt odotettiin tiedostonimeä otaksuttiin tiedostonimeä tai tahtia ja nuotteja tiedostojärjestelmä ”%s” ei tue nimiöitä tiedostojärjestelmä ”%s” ei tue lohkoluetteloja mikro-ohjelmistolevykuva on liian iso pakota automaattivihjeet odotettiin neljä argumenttia fwstart.img ei täsmää tunnettuun hyvään versioon, etene omalla riskillä tuota levykuva muodossa MUOTO anna lyhyt käyttöviesti anna tämä opasteluettelo annettu argumentti on järjestelmälaite, ei polku grub-mkimage on käännetty ilman XZ-tukea grub> jumittuu SECS sekuntia (oletus 3600) hex TIEDOSTO ohiys bittikartta-strikes-määrittelyt ladatessa virheellinen pääteikkunamittasuhdemäärittely asenna GRUB-levykuvat hakemistoon DIR/%s eikä %s-hakemistoon asenna myös silloin kun havaittiin pulmia vääränmuotoinen PBKDF2-salasana virheellinen arch-riippuvainen ELF magic virheellinen arch-riippumaton ELF magic virheellinen lohkokoko virheellinen värimäärittely ”%s” virheellinen ympäristölohko virheellinen tiedostonimi ”%s” virheellinen kirjasinlukualue virheellinen rivimuoto: %s virheellinen parametri %s virheellinen ohitusarvo %lld virheellinen muuttujanimi ”%s” virheellinen videotilamäärittely ”%s” ioctl GET_ARRAY_INFO -virhe: %s ioctl GET_DISK_INFO -virhe: %s ioctl RAID_VERSION -virhe: %s käyttöjärjestelmäydinlevykuva on liian iso (0x%x > 0x%x) luettele verkko-osoitteet luettele verkkokortit luettele verkkoreitit ls POLKU lzop-tiedosto turmeltunut tee levyasemasta alkukäynnistettävä myös levykkeenä (oletus fdX-laitteille). Saattaa rikkoutua joissakin BIOS:eissa puuttuva ”%c”-symboli puuttuva pakollinen valitsin kohteelle ”%s” moduulia ”%s” ei ole ladattu moduulia ei ole ladattu nimi tarvitsee levykuvan ja liitäntäpisteen APM ei löytynyt DHCP-tietoja ei löytynyt DHCP-valitsinta %d ei löytynyt DHCP-valitsimia ei löytynyt DNS-tietuetta ei löytynyt ei vastaanotettu DNS-vastausta DNS-palvelimia ei ole asetettu kauttaviiva ”/” puuttu sääntöjenmukaisesta tiedostonimestä komentoa ei ole määritelty salausavainta ei ole saatavilla verkkokorttia ei löytynyt palvelinta ei ole määritelty sellaista osiota ei ole sopivaa videotilaa ei löytynyt ei symbolitaulua päätettä ei ole määritelty ei päätöslohkoa ydinlevykuvassa ei-sektoritasattua dataa löytyi ydintiedostosta ei ole hakemisto ei ole ensisijainen osio ei ole tavallinen tiedosto ei ole funktion sisällä odotettiin yhtä argumenttia jokin toinen ohjelmisto käyttää upotusaluetta ja siinä ei ole kylliksi tilaa core.img -tiedostolle. Sellainen ohjelmisto yrittää usein tallentaa tietoja välttääkseen havaitsemista. Suosittelemme tutkimaan asiaa muisti loppui tulosta tuotettu levykuva tiedostoon [oletus=vakiotuloste] tulostetiedosto on määriteltävä tulostetuotettu asetus TIEDOSTOon [oletus=vakiotuloste] ylivuoto havaittu salasanat eivät täsmää suorita automaattinen alkulatausasetus fyysistä taltiota %s ei löydy esilataa määritellyt moduulit MODUULIT ennenaikainen tiedoston loppu ennenaikainen tiedoston %s loppu paina CapsLock-näppäintä paina Insert-näppäintä paina NumLock-näppäintä paina ScrollLock-näppäintä paina sysRq-näppäintä paina vasemmanpuoleita alt-näppäintä paina vasemmanpuoleista ctrl-näppäintä paina vasemmanpuoleista vaihtonäppäintä paina oikeanpuoleista alt-näppäintä paina oikeanpuoleista ctrl-näppäintä paina oikeanpuoleista vaihtonäppäintä tulosta ohjelman versio tulosta versiotiedot ja poistu tulosta tämä viesti ja poistu tulosta laveilla viesteillä. julkista avainta %08x ei löydy lukuvirhe siirrososoitteessa %llu: %s lue teksti TIEDOSTOsta. verkkopalvelimelle suhteellinen alihakemisto relocation 0x%x ei ole vielä toteutettu varattu RAM-muisti nouda DHCP-valitsin ja tallenna se MUUTTUJAan. Jos MUUTTUJA on - niin tulosta arvo. TFTP-palvelimen juurihakemisto reittisilmukka havaittu tallenna ROM-levykuvat hakemistoon DIR [valinnainen] tallenna tuloste TIEDOSTOon [vaadittu] valitse face-indeksi sarjaporttia ”%s” ei löytynyt set [NIMI=ARVO ...] aseta capslock-tila aseta kirjasinsukulinja ylöspäin aseta kirjasinsukulinja alaspäin aseta kirjasinperheen nimi aseta kirjasinlukualue aseta kirjasinkoko aseta syötetiedostonimi 32-bittiselle komponentille. aseta syötetiedostonimi 64-bittiselle komponentille aseta syötetiedostonimi. Oletus on STDIN aseta insert-tila aseta numlock-tila aseta tulostetiedostonimi. Oletus on STDOUT aseta pause-tila aseta prefix-hakemisto [oletus=%s] aseta scrolllock-tila aseta ohjelman nimi koko stretch|normal symbolia ”%s” ei löytynyt tilapäinen pääteikkuna %s ei löytynyt tai terminfo ei ole käsitellyt sitä pääteikkunaa ”%s” ei löytynyt argumentti ”%s” vaatii kokonaisluvun rivi device.map ”%s” on virheellinen. Ohita se. Korjaa tai poista se device.map-tiedostostasi levyasemanimi ”%s” tiedostossa device.map on virheellinen. Sen sijasta käytetään %s. Käytä muotoa [hfc]d[0-9]* (Esim.: ”hd0” tai ”cd”) ydintiedoston ensimmäinen sektori ei ole sektoritasattu asennuslaite on irrotettava. Tämä valitsin on käytettävissä vain EFI-osiolla. osiotyyppi 0x%x ei ole kelvollinen ydintiedoston sektorit ovat liian hajallaan alkulatauspolun ”%s” koko ei ole %u ydinpolun ”%s” koko on liian suuri ydinpolun ”%s” koko on liian pieni tämä ELF-tiedosto ei ole oikeaa tyyppiä tämä GPT-osionimiö ei sisällä BIOS-alkulatausosiota; upottaminen ei ole mahdollista tällä LDM:llä ei ole upotettavaa osiota; upottaminen ei ole mahdollista! tässä msdos-tyylisessä osionimiössä ei ole MBR:n jälkeistä aukkoa; upottaminen ei ole mahdollista odotettiin kolmea argumenttia aikavalvonta avattaessa kohdetta ”%s” aikavalvonta laukesi luettaessa kohdetta ”%s” aikavalvonta: laitteisto-osoiteen ratkaiseminen epäonnistui symboliset linkit liian syvässä sisäkkäin translator ”%s” polulle ”%s” on useita ei-valitsinsanoja, ainakin ”%s” ja ”%s” translator ”%s” polulle ”%s” annetaan vain valitsimia, laiteosan löytäminen epäonnistui translator-komentorivi on tyhjä polulle ”%s” odotettiin kahta argumenttia tyyppi tiedostojärjestelmän tunnistaminen levyasemassa %s epäonnistui; turvatarkistus epäonnistui tasaamaton laitekoko odottamaton tiedoston loppu tuntematon argumentti ”%s” tuntematon tiivitys %d
 tuntematon laitetyyppi %s
 tuntematon tiedostojärjestelmä väärän tyyppinen RAID-laite ”%s” tuntematon säännöllisen lausekkeen virhe tuntematon kohdemuoto %s
 tuntematon terminfo-tyyppi ”%s” tunnistamaton DHCP-valitsinmuotomäärittely ”%s” tunnistamaton verkko-osoite ”%s” tunnistamaton verkkorajapinta ”%s” tunnistamaton numero ratkaisematon osoite %s unset [NIMI ...] tukematon HTTP-virhe %d: %s tukematon HTTP-vastaus tukematon RAID-versio: %d.%d tukematon gzip-muoto tukematon sarjaportin pariteetti tukematon sarjaporttinopeus tukematon sarjaportin stop-bittimäärä tukematon sarjaportin sanapituus käytä COLOR-muuttuja-asetusta taustavärinä käytä COLOR-muuttuja-asetusta nimiössä käytä COLOR-muuttuja-asetusta nimiötaustana käytä COLOR-muuttuja-asetusta tekstivärinä käytä DIR EFI-järjestelmäosion juurena. käytä TIEDOSTOa kirjasimena (PF2) käytä TIEDOSTOa nimiön kirjasimena käytä TIEDOSTOa alkulatauslevykuvana [oletus=%s] käytä TIEDOSTOa ydinlevykuvana [oletus=%s] käytä TIEDOSTOa laitekuvauksena [oletus=%s] käytä TIEDOSTOa niin kuin xorriso-ohjelma [valinnainen] käytä GRUB-tiedostoja hakemistossa DIR [oletus=%s] käytä MERKKIJONOa tuotenimenä Käytä MERKKIJONOa tuoteversiona. käytä tunnistetiedostoa vieläpä kun UUID on käytettävissä käytä levykuvia ja moduuleja hakemiston DIR alla [oletus=%s/<alusta>] muuttujaa ”%s” ei ole asetettu visuaalisesti järjestetty UTF-8 odota kunnes vianjäljittäjä liittyy ei jatka lohkoluetteloja väärä ELI-maaginen luku tai versio xnu_uuid LAITE xz-tiedosto vaurioitunut tai tukemattomat lohkovalitsimet et voi poistaa tätä osoitetta sinun on ladattava ydin ensin sinun BIOS-alkulatausosiosi on liian pieni; upottaminen ei ole mahdollista tiedostosi core.img on epätavallisen iso. Se ei sovi upotusalueelle. upotettava alueesi on epätavallisen pieni.  Tiedosto core.img ei mahdu siihen.                                           boot/grub/locale/fr.mo                                                                              0000600 0001750 0001750 00000367422 13417732100 0013647 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                            |'    N      Pi  #   Qi      ui     i     i     i  $   i     j  6   j     Pj     Wj  	   cj     mj     zj     j     j     j     j  .   j  .   k  %   Fk     lk     pk    k    l    m     n  8   n  '   n  7   o  F   Do  v   o  +   p     .p      ?p     `p  !   rp     p  ,   p     p     p  $   q     0q  *   Lq     wq     q     q     q     q  
   q  	   q     q     r  ,   r  ,   Fr  ,   sr  '   r  -   r      r  (   s  (   @s  )   is     s     s     s     s     s  "   s  4   t     Jt     Rt  7   _t     t     t  1   t     t     u  %   
u  '   0u  %   Xu  '   ~u     u     u     u     u     u     u     u     v     v     8v     Jv     Xv     hv     uv  3   v     v  $   v     v     v     w     !w     2w     Iw     ^w  -   vw     w  !   w     w     w     x  #   )x     Mx  `   x  Z   6y     y     y     y     y     y     y     y     y     z  0   )z  3   Zz     z     z     z     z     z     {     {     1{     G{     U{     l{     {{     {     {  %   {     {     {     {     |     |     6|     L|     [|     n|     |  *   |  3   |  1   |  1   (}  2   Z}     }      }     }  1   }     ~  #   <~     `~  "   {~  8   ~     ~     ~  	     #        4     R     e                 )                  2  "   P  P   s     Ā     ـ  H     &   7     ^     v  !   }  ,        ́     ؁     ܁  	     !     *   %     P  '   h                    т  $                   2     M     i       
     
          1   ˃                    1  3   M  >     $                       1     L     l  +             ȅ  o     #   V     z       $        Ն       '     9   3     m       z             &  8   :     s  
                       ܈     x  +             ى            "        :     K  (   \       #             ͊     ݊            "     0   9     j     o     ~  7        ŋ     ͋     ً                       0        J     ^     p       2     %   Ќ            *     6   E  +   |          ƍ     ٍ  !     d   ̎  e   1  d     i     o   f  H   ֐          2     H     Y     l                 #   ̑               &  1   8  )   j                      /                     5   4     j       K     &             4     I     f     j  D   p            '     P        8     W  	   c     m     p               4  '   Ŗ       +        (     9  )   U                    ϗ                 $   '     L     ^  "   y                 (                    "     +     -   A     o                      O   ʙ          0     H     _     m  %          )   ƚ  !     "        5     Q  +   h                    ʛ  !   ܛ               3     ?      V     w                    ל            4        L     k     }               ˝                  !   ;     ]  4   w  M     2        -     G  *   e  8        ɟ     ֟                    4  3   A  $   u  +        Ơ     ۠                    &      B     c                 D            ȣ     ϣ     ף  7     ;   .     j       !        ˤ       s        u                    Υ                    &     *     0     ٦                         ̧            '     
   C     N     ]     s     x                      H   Ѩ  L        g     z            %        ۩       #        2     O     l     u                 ̪       "     (        F     b  %   o       2               #     *   (     S     U     h  #   m            	     	     "     ;   ߬  #     <   ?     |            .     	          `        b  !   w  )        î     Ǯ     ͮ     ծ  q        T     h                         ί            "   !     D     \     v                    ϰ       #        !     >  g   Z     ±     G     a  -   ~       !          "     '     Q   >               Ƴ     ڳ                    8     U     r               ´      д                     :     U     i     z  -        ȵ       "     b     )   |               Զ  ,             5  	   :  "   D  %   g                 
          &   ·  )          5   &  ^   \       $   ո  %           ^   ӹ  _   2  }          )   ǻ  '     >     D   X  !     '     -     #        9  )   Y       )        ʽ  )     ,        >     ^     w            E     $     A   )  )   k               ο                )  q   >       :             &  `   5                                 0   1     b            )     &                  4     G  )   c       %     %     ,     '     :   >     y  -     0          .        6     H  '   ]  $     "                    *        /     7  )   >  o   h            6                    0         #  !   D  "   f  #                         !        4  
   J     U  <   o            %     >        A     J     N     T     t       d     *     (   0  ,   Y            0     6              (     6     K     _     e  0          !               $        9     R     i            $     "     $        "     ;     P      d                                             .  '   K     s       $     +     "           )   '     Q     c                 '                  .  <   B             %                         m   ,                           +     3   H  1   |       '     -          '     '   C  .   k  	                                 -     I     d                 *     ?        $  B   7  p   z       /   v            .     O      )   P     z       	          5                  '     =     X  :   r       1                  %     +     >     E     K     Z     c                      	                             #     6     P     f                 
     
     	          !     )             "     4     M     m  n     F     N   @       "               -     -     $   3  #   X  0   |  6                    (     1   <  )   n                           !   
     ,     @      \     }  %          &               0   .      _                 7     .        5  4   M  #                                 1     F  %   f                                          ,   :     g     v                           #              :  B   T                                   4  &   R     y                      &             $     ?     O  ;   c  V     +     "   "     E  &   _  !          r        2     7  /   U  H     F     w     N          (             9  I   E  )     $     ,     '        3  %   L     r     x            $     '     *        *     D     S  J   k                 -     +   /     [  $   a       "     +               -     J   =            %     "     9        F      ^  "                                       ,     ?     W     q            %                       +  %   H     n                      [        $  !   8     Z     s                                             !  /   ;  7   k  4     /             %  -   =     k  @          3             )     ;     X     h     ~  1                               	   6  	   @     J       1        L  0   j            !          "        (     4     @     V     o                                                       )  &   ?     f                      '     &        6  L   C  9          0          !   -     O     n                                        	  #     #   ;  $   _            &          !                  &     +     :  	   P  7   Z       D     ]     %   O  ,   u  [     ;     w   :  7     K     #   6 /   Z             &    U    @   ^ Q           
      +   5    a R   ~ L    .       M    d F   i                             8     K    l         2    !    #       /    C    [    l                         (   2 #   [                 )           %    = '   X '    '        0        	    ;	 -   Y	 8   	 !   	 '   	    

    "
 !   9
     [
 &   |
    
    
 .   
    
 !    B   = E    B      	 )    &        $       A 0   \      O        >       F >   R &                   
 B    9   [ (            ]   P  2 Z   "    :    *   < N   g ^        7        %        &   %    L 0   h         )    &    :        S    t         4            '       6 5   K :    5    3    6   & *   ] 4    5    6    '   * '   R    z 
    
    '    9            M   &    t     ?    %        .    2   6 .   i 2            &               1    9    Q '   b                     =        .        O    n                     .     %   >  2   d        !          4        (! v   ! s   [" #   " "   "    #    #     #    9# 	   >#     H# /   i# 9   # :   # +   $ %   :$ #   `$ )   $ (   $    $ #   $    %    /% #   I%    m%    |%    %    % (   % !   %    % %   % $   #& )   H&    r& #   & $   & )   & $   ' G   (' O   p' N   ' E   ( H   U( +   ( 6   ( -   ) >   /) ,   n) *   ) :   ) =   * P   ?*    *    *    * '   * <   *    4+ &   L+ 7   s+    +    + ;   + +   , &   D, %   k, 3   , o   ,    5-    R- k   o- 1   -    .    *. )   9. ^   c.    .    .    . 
   . 4   . @   2/     s/ 0   /    /    /    /    0 ,   60    c0    |0 +   0 1   0 ,   0 )   '1    Q1 $   f1 -   1 ?   1    1    2 -   !2 #   O2 A   s2 N   2 ?   3    D3 *   _3    3 &   3 .   3     3 -   4    L4 1   l4    4 -   (5    V5 '   t5 1   5    5    5 9   6 X   A6 '   6 -   6    6    7    7 I   7 #   8 
   18    <8    I8 %   h8    8    `9 T   9    9    9    :    3: +   J:    v:    : 8   :    : /   ;    3;    D;    R;    f;    }; B   ; P   ;    )<    1<    C< 9   [<    <    <    <    <    <    <    < 1   <    '=    >=    L=    `= H   {= ;   =     >    > F   /> K   v> B   > (   ?    .? Q  N? +   @    @    A    +B    B    C    dD    D    E     E    4E    KE    eE    E (   E ,   E     E    F    4F =   KF >   F    F    F    F    F 7   G    ;G (   KG *   tG Q   G ,   G '   H G   FH -   H 0   H .   H 2   I    OI    UI X   ]I    I    I -   I }   I '   rJ    J 	   J    J $   J    J    J    K :   L    L :   L    
M    M $   ;M    `M &   M !   M    M    M %   M     "N .   CN    rN !   N 6   N    N    N    N 7   
O    BO    HO    PO 2   XO 2   O 5   O    O    P    'P !   AP    cP c   P     P )   Q )   .Q    XQ "   vQ Q   Q "   Q ;   R 0   JR 0   {R !   R    R A   R    0S    NS    mS     S &   S     S !   S    T    T %   9T    _T !   T    T (   T "   T    U    !U c   6U 0   U    U #   U    V    %V    EV    aV #   ~V "   V (   V ,   V T   W n   pW D   W *   $X :   OX 7   X N   X "   Y $   4Y    YY    sY    Y    Y P   Y 1   
Z @   <Z #   }Z    Z    Z    Z    Z (   [ !   +[     M[    n[    [    [ \   [ W  \    \^    c^ "   k^ A   ^ N   ^ /   _ #   O_ /   s_    _ +   _    _ "   s` &   `    `    `    `    a !   &a    Ha    `a    fa    na    @b    c    #c    ?c    Ec >   Qc <   c "   c K   c    <d    Md %   ^d    d    d    d    d    d    d s   d T   ^e    e I   e    f    ,f ;   Df    f %   f 1   f 2   f *   'g    Rg    hg 5   g )   g 9   g    h (   'h 4   Ph    h    h N   h A    i 6   Bi 
   yi    i #   i >   i    j    	j    j )   $j    Nj    Sj    hj    j :   j a   j 8   4k _   mk    k )   k    l D   "l    gl    ul    l    m ,   /m D   \m    m    m 	   m    m    m    en    ~n    n    n    n    n    n -   o &   Co 1   jo    o     o    o    o %   p    Ap     `p    p )   p $   p %   p    q    q ,   r <   r 1   r    *s )   Gs    qs 2   s 5   s l   s $   at :   t    t    t    t "   u     1u "   Ru     uu !   u    u    u    u O   v    _v %   yv !   v "   v    v    v %   w C   4w    xw    w *   w {   w B   Yx 1   x    x    x ?   y *   Ey    py    ty +   }y (   y    y    y    y    y    z .   	z =   8z    vz A   z    z )   ]{ >   { D   {    |    }    }    ~    ~ F    V   	 [   ` ]    '    6   B 5   y <    .    8    &   T ;   { %    ;   ݂ :    2   T "    !    &   ̃ "    Z    2   q Z    3    "   3 #   V #   z *    +   Ʌ !        /    Y    5   @    v h    (    &     #   G !   k (        >   ҈ /       A #   ` 1    8    !    '       9 (   N 6   w     3    3    :   & 5   a O    &    -    B   <     J             7   ' 9   _ )       Í .   Ӎ     6    	   Q    [ A   d     "   7    Z H   J             1    '   א 1    .   1 /   ` #    #    (   ؑ B    2   D    w         D           ! C   7 H   {    ē    ʓ    Г +   ؓ        # w   8 ;    ;    D   (    m     <    ]   ڕ    8    >    U    s     "    <    ,    '     )   H    r A       З             , '   = (   e     !    "   Ϙ         -        N    k             %   ֙             7 7   W +    !    4   ݚ 9    .   L    { 2    !    5   ߛ )       ?    \ 6   y /    ,        =   ) !   g     *           ֝     "       & '    (   Ҟ (    &   $ %   K N   q S    O       d &   u L        ;    ;   2 I   n            ߡ '    $   " '   G $   o &    #       ߢ         +    I   K     M            /           ץ 1    U   ( 4   ~        ͦ    ݦ "    :       H    ]    u     !    E   Χ     A   ( %   j                Ѩ    ٨     	               1    B    H 	   V    `    q     +       ө &        %   & 	   L    V    _    k             +    -   ت          $   @ /   e ,    ~   « k   A [       	 *       C    K B   ` =    -    +    ;   ; D   w        ˮ     )    2    @   R            ů #   ׯ $    -     <   N 3    8    ,    8   % $   ^ :    -    3    P     )   q 5    (   Ѳ (    K   # G   o *    W    4   : /   o J    $    3    *   C #   n *    0    (    0       H )   g 1       ö    ֶ -    7       H    Z )   n )       ·    շ     /    (   > +   g h    (    4   %    Z (   s      %    2    A    &   X         "        9   ݺ     /   0 ,   `      I    j    @   c 2    )   ׼ ;    %   = '   c         4   " I   W [    \       Z i    )   \ L            N    -   Q 6    1    1    !    3   <    p    u !        *    H    N   < <    3        ^       u '        ?    4       L 1   R     3    4    '    &   ! 9   H O    &    3    1   - 0   _ F         :    <   3    p     /    *        #    #   ;    _ $            $    3        4 #   F "   j !    0                	   6    @    V     ,    &   C    j     2        #    !        #   6    Z    u 4    B    9   
 4   D 1   y     4    (     `   )     ^       	    & '   C    k     '    T           +    F &   \                     <    -    B       P &   o -    !    )           !    2    N /   m !        #             !   > &   `      !    &         *       =    \ !   { ,         /    6       R R   a H    "    5        V ,   q +    ,    *       " *   7 '   b &    '    $        =    =   Y 7        +    8       Q 4   k ,            +    !    
   ? H   J "    X    n    *   ~ 1    o    K   K     Q   J Y    +    ?   " .   b '    '    )    t    M    {       J 2   c 1    A    $   
    /     E   O         k    %       D    Z    t     "        .    (       B #   [ >    '    )           #    = )   M !   w )        #    "    "   ) 2   L *    %    "    2       & 8   E 0   ~ $    /    ;    5   @ @   v 4    D    %   1 )   W ?    Q    9    >   M )        '    +    4   & '   [     ;    "    #    R    R   q M                                   O            u  A        /   Z    *  +  +                 9    ]      P       !       	  E         m                 D    c     h         `      L  S     f      v             =            l      T        @          \                       k                    e            "                U        r  7       V  :      {    %        U           ?      N             G         {                             @  ^         I        #                                 &          `                         Y   b    u      '  B  )          S          Y          N      Y      j  @  D        0    z          T                    C        P    #                                        J    s      z          Q               H   }        c           e   !                             W     !   \    o         k       9      \  J  E              b            m       -    f                  	   w      5  X               C          4         W    >      Y           A          g         I          S  D                %               w      R        F       0      y    Q                 Z  g    a                  0     ;        )  X  W            X  J                         1     &       4  g    R                   _                    m            X         x        G  z       <      H  #                    R  7      k                      '           ^  /      ;          o  "  #                                                       3         q            Z      @      2                     j           K                  d               <                  1  `                         %         |  >  x             y  R        {              >           I             Q          r   "    .  v  h      3           q   y   :   r        ;            8                      	    P        M  M      z          f    e  p  y       <      2                  5        &                .     d  +  *         ~  4                 n  6    ,  D   W                       s                {            9     [        Q             J        p      0                b                W  u   ~                                  i     M  A    )    B                         :  -                         O          ,              L      z  w                  F                   a    r        M     |     [         >  F      	                       x  `         6   .  +           ,          U  
                  6      w       &  ?    J                         '    /        5              9  :  {       N                 /      6  ^            S    n                                       m    s  ~                                  I  [               |  V                       -           *  \    b     $  N    L  3     R            U                             o           K    _     B            3  P  L                                       ^  j  n                         K         F             
       |                           8        T          
  #  ,   (  =      i                            f              l  <  7  T   ]  x  d                        8  k                    t                           K                       2        +  q      K       '                   t  [    l  ;             X  C   G    F    %  -            *      _    j      Z  v            7    Q   B                     l   }  
  3      $                 C      e  @        P     h  E        a         h  
  "     V       N  ]                    2                      &  (   i                     :  d                 t        g    u           b                   x                             v      t                '  	  V        5    ?      f        U      g  c         1    s   )                          i                             H    =                          n      a    $                                6  j  (            !      \   .  ?                                                             y                             E     G          1                              $         k  m          -    E      [        I  .              |    }    ,    a   A    =                    `              ?             B                8            o  }                        Z                  2       i   ]           O          q                   $              e                          =      ;      w      0                    V    L      4                      ~  H  (            p  /  }         "     1  (                           l       )             >                       Y                 d              4    C  O               q  <            O                              c        h  G     9                                               o                                                                 D      u         t         5                   c               %  H      p                                             7    _           T    A                ~      v  s           r                         !  ^    p  _      ]  S      *  n    8       M                    total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s doesn't exist. Please specify --target or --directory %s doesn't look like an EFI partition.
 %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: not found %s: option '%c%s' doesn't allow an argument
 %s: option '%s' is ambiguous; possibilities: %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- --ppc PATH|--x86 FILE -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Bless DIR of HFS or HFS+ partition for PPC macs. Bless FILE of HFS or HFS+ partition for intel macs. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't create file: %s Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check if CPU supports Physical Address Extension. Check if FILE can be used as x86 multiboot kernel Check if FILE can be used as x86 multiboot2 kernel Check if FILE is ARM EFI file Check if FILE is BIOS bootsector Check if FILE is IA64 EFI file Check if FILE is hiberfil.sys in hibernated state Check if FILE is i386 EFI file Check if FILE is of specified type. Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find a free BootNNNN slot Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Default server is ${net_default_server} Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not apply any reed-solomon codes when embedding core.img. This option is only available on x86 BIOS targets. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enable/disable RTS/CTS. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Evaluate arguments as GRUB commands Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FONTS FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File size: %s
 File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Generating grub configuration file ... Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s Graft point syntax (E.g. /boot/grub/grub.cfg=./grub.cfg) is accepted HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS INSTALL_DEVICE must be system device filename.
%s copies GRUB images into %s.  On some platforms, it may also install GRUB into the boot sector. If FILENAME is `-', the default value %s is used.

There is no `delete' command; if you want to delete the whole environment
block, use `rm %s'. Import ZFS wrapping key stored in FILE. Incorrect VDEV Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s LOCALES Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List coreboot tables. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load DTB file. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load Truecrypt ISO. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load module. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... M MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MENU_ENTRY is a number, a menu item title or a menu item identifier. Please note that menu items in
submenus or sub-submenus require specifying the submenu components and then the
menu item component. The titles should be separated using the greater-than
character (>) with no extra spaces. Depending on your shell some characters including > may need escaping. More information about this is available
in the GRUB Manual in the section about the 'default' command.  MODULE MODULES Mac-style bless on HFS or HFS+ Mail xorriso support requests to <bug-xorriso@gnu.org>. Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NOT RUNNING:  NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Netboot directory for %s created. Configure your DHCP server to point to %s
 Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OPTIONS FILE OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Option -- switches to native xorriso command mode. Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] PUBKEY_ID Paletted  Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot into firmware setup menu. Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Render Apple .disk_label. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING STRING ... Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Script `%s' contains no commands and will do nothing
 Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set bit at BYTE:BIT in CMOS. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting GRUB_TIMEOUT to a non-zero value when GRUB_HIDDEN_TIMEOUT is set is no longer supported. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show CBMEM console content. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show the contents of a file. Show the current mappings. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Skip signature-checking of the environment file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Switch to native disk drivers. If no modules are specified default set (pata,ahci,usbms,ohci,uhci,ehci) is used Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 T TARGET THEMES Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This VDEV is a RAIDZ%llu
 This VDEV is a mirror This entry can be booted by any user. This requires setting GRUB_DEFAULT=saved in %s/default/grub.\n Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Transform syslinux config into GRUB one. Translate SET1 characters to SET2 in STRING. Translate to lower case. Translate to upper case. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown platform `%s-%s' Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized compression `%s' Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME VDEV element number %d isn't correct
 VDEV element number %d:
 VDEV with %d children
 Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. You've found a bug Your embedding area is unusually small.  core.img won't fit in it. Your xorriso doesn't support `--grub2-boot-info'. Some features are disabled. Please use xorriso 1.2.9 or later. Your xorriso doesn't support `--grub2-boot-info'. Your core image is too big. Boot as disk is disabled. Please use xorriso 1.2.9 or later. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [-s|--skip-sig] FILE SIGNATURE_FILE [PUBKEY_FILE] [-s|--skip-sig] PUBKEY_FILE [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [DIR] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTIONS] [SET1] [SET2] [STRING] [OPTION] SOURCE... [OPTION] [INSTALL_DEVICE] [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `%s' is not a local disk `cryptomount' command fails: %s `loopback' command fails: %s `nvsetenv' failed. 
You will have to set `boot-device' variable manually.  At the IEEE1275 prompt, type:
  %s
 `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format bless for ppc-based macs bless for x86-based macs blocklist FILE blocklists are incomplete blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't compress `%s' to `%s' can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s can't set %dx%d font size: Freetype error %d: %s cannot compress the kernel image cannot copy `%s' to `%s': %s cannot delete `%s': %s cannot find EFI directory cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot find locale `%s' cannot get translator command line for path `%s': %s cannot make temporary directory: %s cannot make temporary file: %s cannot open OS file `%s': %s cannot open `%s': %s cannot open directory `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu compress GRUB files [optional] connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. disk read fails at offset %lld, length %lld diskboot.img size must be %u bytes do not install bootsector do not probe for filesystems in DEVICE domain name component is too long don't update LED state don't update the `boot-device'/`Boot*' NVRAM variables. This option is only available on EFI and IEEE1275 targets. done embed FILE as an early config embed FILE as public key for signature checking embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enable ARCS (big-endian mips machines, mostly SGI) boot. Disables HFS+, APM, sparc64 and boot as disk image for i386-pc enable sparc boot. Disables HFS+, APM, ARCS and boot as disk image for i386-pc enabling %s support ... enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to copy Grub to the PReP partition failed to get canonical path of `%s' failed to read the sectors of the core image failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification initrd already loaded install FONTS [default=%s] install GRUB for TARGET platform [default=%s] install GRUB images under the directory DIR/%s instead of the %s directory install THEMES [default=%s] install device isn't specified install even if problems are detected install only LOCALES [default=all] install only MODULES and their dependencies [default=all] invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid argument invalid block size invalid color specification `%s' invalid device tree invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid modinfo file `%s' invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' invalid zImage ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no EFI routines are available for your platform no EFI routines are available when running in BIOS mode no IEEE1275 routines are available for your platform no SGI routines are available for your platform no `/' in canonical filename no command is specified no compression is available for your platform no decryption key available no hints available for your platform. Expect reduced performance no network card found no random number generator is available for your OS no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected only ipv4 only ipv6 other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found pre-load specified modules MODULES prefer ipv4 prefer ipv6 premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory as it will be seen on runtime [default=/]. root directory of TFTP server root directory of the syslinux disk [default=/]. route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the ID of bootloader. This option is only available on EFI and Macs. the PReP partition is not empty. If you are sure you want to use it, run dd to clear it: `%s' the argument `%s' requires an integer the chosen partition is not a PReP partition the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive %s is defined multiple times in the device map %s the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected EFI error unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported platform %s
 unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for label use COLOR for label background use COLOR for text use DIR as the EFI System Partition root. use DIR for PPC MAC install. use FILE as font (PF2). use FILE as font for label use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] use themes under DIR [default=%s] use translations under DIR [default=%s] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists write output to FILE [default=stdout]. wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub 2.02-pre1
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-12-20 17:42-0400
Last-Translator: David Prévot <david@tilapin.org>
Language-Team: French <traduc@traduc.org>
Language: fr
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Generator: Lokalize 1.4
Plural-Forms: nplurals=2; plural=(n > 1);
               mémoire totale : %d Kio
     Pas de mode préféré disponible
     Mode préféré : %ux%u
   Somme de contrôle EDID incorrecte   Version d'EDID : %u.%u
   Échec d'initialisation de l'adaptateur vidéo   Aucun renseignement disponible   renseignements VBE :   version : %d.%d  révision de logiciel OEM : %d.%d
   ou :   (initiale, ou finale pour les écritures de droite à gauche)  (médiane)  (finale, ou initiale pour les écritures de droite à gauche)  - La partition commence à %llu%s Kio  - Taille de secteur %u o  - Taille totale %llu%s Kio  - Taille totale inconnue  [OPTION ...] %.*s : le paramètre FMT_AIDE_ARGP doit être strictement positif %.*s : le paramètre FMT_AIDE_ARGP nécessite une valeur %.*s : paramètre FMT_AIDE_ARGP inconnu %d s Plus que %d s. %s a l'air de contenir un système de fichiers %s qui pourrait ne pas réserver de place pour un amorçage de type DOS. Installer GRUB à cet endroit risque de DÉTRUIRE le système de fichiers si des données importantes sont écrasées lors de l'installation de GRUB (--skip-fs-probe désactive ce contrôle, à utiliser à vos risques et périls) %s a l'air de contenir un plan de partition %s et un LDM, ce qui n'est pas souvent une association fiable. Installer GRUB à cet endroit risque de DÉTRUIRE le système de fichiers si des données importantes sont écrasées lors de l'installation de GRUB (--skip-fs-probe désactive ce contrôle, à utiliser à vos risques et périls) %s a l'air de contenir un plan de partition %s qui pourrait ne pas réserver de place pour un amorçage de type DOS. Installer GRUB à cet endroit risque de DÉTRUIRE le système de fichiers si des données importantes sont écrasées lors de l'installation de GRUB (--skip-fs-probe désactive ce contrôle, à utiliser à vos risques et périls) %s ne prend pas en charge les UUID %s n'existe pas. Veuillez utiliser --target ou --directory %s ne ressemble pas à une partition EFI.
 %s crée un fichier de disposition de clavier pour GRUB en utilisant ckbcomp\n %s est obsolète. Utilisez plutôt « set gfxpayload=%s » avant la commande « linux ».
 %s est obsolète. Le mode VGA %d n'est pas reconnu. Utilisez plutôt « set gfxpayload=LARGxHAUT[xPROF] » avant la commande « linux ».
 %s n'est pas encore pris en charge par grub-mkconfig.\n %s, avec Hurd %s %s, avec Hurd %s (mode de dépannage) %s, avec Linux %s %s, avec Linux %s (mode de dépannage) %s, avec Xen %s et Linux %s %s, avec Xen %s et Linux %s (mode de dépannage) %s, avec hyperviseur Xen %s, avec kFreeBSD %s %s, avec kFreeBSD %s (mode de dépannage) %s, avec le noyau %s (à l'aide de %s) %s, avec le noyau %s (à l'aide de %s, mode de dépannage) %s : hachage non correspondant
 %s : succès
 %s : erreur de lecture
 %s : trop d'arguments
 %s : seul le superutilisateur peut exécuter cela\n %s : erreur : %s : information : %s : option incorrecte — « %c »
 %s : non disponible %s : l'option « %c%s » n'accepte pas d'argument
 %s : l'option « %s » est ambiguë ; possibilités : %s : l'option « --%s » n'accepte pas d'argument
 %s : l'option « --%s » nécessite un argument
 %s : l'option « -W %s » n'accepte pas d'argument
 %s : l'option « -W %s » est ambiguë
 %s : l'option « -W %s » nécessite un argument
 %s : l'option nécessite un argument — « %c »
 %s : l'option nécessite un argument — « %s »\n %s : option « %c%s » non reconnue
 %s : option « --%s » non reconnue
 %s : attention : (32 bits) (64 bits) (Erreur du programme) version inconnue. (Erreur du programme) l'option aurait due être reconnue. (sur %s) - Étiquette « %s » - Dernière date de modification %7$s %3$02d/%2$02d/%1$d %4$02d:%5$02d:%6$02d — Plus — --ppc CHEMIN|--x86 FICHIER -h HACHAGE [-c FICHIER [-p PRÉFIXE]] [FICHIER1 [FICHIER2 ...]] -l | -r | [-s] périph_grub dique_se. ,5 Interface 16 bits protégée prise en charge
 Interface 16 bits protégée non prise en charge
 Interface 32 bits protégée prise en charge
 Interface 32 bits protégée non prise en charge
 =VAL > RAM de stockage non volatile de l'ACPI RAM de l'ACPI récupérable Échec d'arrêt avec l'ACPI ADRESSE ADRESSE VALEUR [MASQUE] ADRESSE [TAILLE] ADRESSE1,MASQUE1[,ADRESSE2,MASQUE2] ... ADRESSE SERVEURDNS APM désactivée
 APM débrayée
 APM activée
 APM embrayée
 FMT_AIDE_ARGP : la valeur %s est inférieure ou égale à %s ASCII Accepter les fins de ligne de type DOS RC/PAL. Terminaux actifs en entrée : Terminaux actifs en sortie : Adaptateur « %s » :
 Ajouter un serveur DNS Ajouter une adresse réseau. Ajouter une route réseau. Options avancées pour %s Option avancée pour %s (avec hyperviseur Xen) Permettre l'interruption avec Échap. Demander le nom du fichier sur lequel redémarrer. Entrée supposée hexadécimale. Mot de passe supposé en entrée. Entrée supposée brute. Tentative de déchiffrement de la clef principale… Tentative d'installation de GRUB sur un disque ayant plusieurs étiquettes de partition, ou à la fois une étiquette de partition et un système de fichier. Ce n'est pas encore possible. Tentative d'installation de GRUB sur un disque ayant plusieurs étiquettes de partition. Ce n'est pas encore possible. Tentative d'installation de GRUB sur un disque sans partition ou sur une partition. C'est une très mauvaise idée. Terminaux disponibles en entrée : Terminaux disponibles en sortie :  o  o/s SVGRD_BIOS [SVGRD_INT10] BLOC OCTET:BIT Mode de l'image d'arrière-plan. Répertoire de base pour la liste des hachages. RÉP bless de partition HFS ou HFS+ pour les Mac PowerPC. FICHIER bless de partition HFS ou HFS+ pour les Mac Intel. Démarrer le système en utilisant le BIOS. Démarrer un système d'exploitation. Démarrer en mode mono-utilisateur. Démarrer avec les messages de débogage. Démarrer en affichant plus de messages. Démarrage de « %s » Démarrage d'une liste de commandes Démarrage en mode aveugle Chemin d'amorçage : %s
 Chemin d'amorçage : indisponible
 Pause dans GDB CGA  COULEUR COMMANDE [ARGUMENTS] La veille ne ralentit pas le processeur
 La veille ralentit le processeur
 CS5536 à %d:%d.%d
 Impossible de créer le fichier : %s Impossible d'activer la zone de ROM. Modifier les périphériques configurés. Modifier le type de partition Vérifier l'état de la touche Alt. Vérifier l'état de la touche Ctrl. Vérifier l'état de la touche majuscule. Tester les capacités du processeur. Comparer les hachages de fichiers avec le FICHIER de liste de hachages. Vérifier si le processeur accepte le mode 64 bits (long, option par défaut). Vérifier si le processeur accepte l’extension d’adresses physiques (PAE). Vérifier si FICHIER peut être utilisé comme un noyau Multiboot x86 Vérifier si FICHIER peut être utilisé comme un noyau Multiboot 2 x86 Vérifier si FICHIER est un fichier EFI ARM Vérifier si FICHIER est un secteur d’amorçage BIOS Vérifier si FICHIER est un fichier EFI IA-64 Vérifier si FICHIER est hiberfil.sys en état d’hibernation Vérifier si FICHIER est un fichier EFI i386 Vérifier si FICHIER est du type indiqué. Vérifier l'état des touches spéciales (Maj, Alt, Ctrl). Vérifier si l'utilisateur fait partie de LISTE_UTILISATEURS. Vérifie les erreurs de syntaxe dans le fichier de configuration de script GRUB. Effacer l'écran. Attribut actif effacé de %d. 
 Commandes : Comparer FICHIER avec le fichier LOCAL. Comparer le fichier « %s » par rapport à « %s » :
 Comparer deux fichiers. Calculer l'UUID XNU du périphérique. Calculer ou vérifier la somme de contrôle du hachage. Configurer le port série. Continuer les boucles Convertir les formats de fichier de police habituels en PF2 Copier FICHIER vers le fichier local LOCAL. Copier FICHIER sur la sortie standard. Impossible de trouver le pilote FPSWA Impossible de trouver un emplacement BootNNNN libre Impossible de trouver le volume physique « %s ». Certains modules risquent de manquer dans l'image de base. Impossible de charger sha256 Impossible de charger sha512 Créer des structures de type BIOS pour compatibilité ascendante avec le système d'exploitation existant. Créer un fichier de bloc d'environnement vierge. Types de terminfo actuels : PÉRIPHÉRIQUE PÉRIPHÉRIQUE [PARTITION[+/-[TYPE]]] ... PÉRIPHÉRIQUE doit être un périphérique du système d'exploitation (par exemple /dev/sda). NOM_PÉRIPH RÉP RÉPERTOIRE [OSBundleRequired] SERVEURDNS Outil de débogage du pilote de système de fichier. Déclarer des régions de mémoire comme défectueuses (badram). Le décompresseur est trop grand Le serveur par défaut est ${net_default_server} Définir une entrée de menu. Définir un sous-menu. Supprimer une adresse réseau. Supprimer une route réseau. Supprimer le périphérique boucle indiqué. Supprimer les variables. Déterminer le pilote utilisé. Déterminer l'UUID du système de fichiers. Déterminer l'étiquette du système de fichiers. Déterminer le type de système de fichiers. Déterminer le type de plan de partition. Périphérique %s : Identifiant de périphérique : %s
 Identifiant de périphérique : indisponible Couleur directe, masque : %d/%d/%d/%d  position : %d/%d/%d/%d Désactiver l'ACPI. Désactiver le SMP. Désactiver toutes les sorties au démarrage. Désactiver ou activer SMART (0/1). Abandon de partition imbriquée de façon incorrecte (%s,%s,%s%d) Statistiques de cache du disque : atteints = %lu (%lu.%02lu%%), ratés = %lu
 Le décompte des disques doit précéder la liste des disques.
 Afficher la version FPSWA. Afficher l'état de santé d'après SMART. Afficher une ligne de texte. Affiche la liste des blocs de FICHIER. Afficher les messages sur toutes les consoles. Afficher le mode d'alimentation. Afficher l'aide de cette commande et quitter. Afficher cette aide et quitter. Afficher ou définir la date et l'heure actuelle. N’appliquer aucun des codes Reed-Solomon lors de l’embarquage de core.img. Cette option n'est disponible que sur les cibles BIOS x86. Ne pas afficher le changement de ligne final. Ne pas afficher les messages. N'examiner aucun lecteur de disquettes. Ne pas utiliser l'APM pour arrêter l'ordinateur. Ne rien faire, avec succès. Ne rien faire, avec échec. Ne pas afficher les messages de diagnostic au démarrage. Ne pas charger les tables d'hôte indiquées dans la liste, séparées par des virgules. Ne pas redémarrer, arrêter seulement. Ne pas s'arrêter après la première erreur. Ne pas mettre à jour l'EBDA. Cela peut corriger des dysfonctionnements sur certains BIOS, mais est souvent inefficace si le système d'exploitation ne reçoit pas de RSDP du GRUB. VAR_ENV VAR_ENV [VAR_ENV] ... Erreur : pas de disposition de clavier disponible. Vérifiez l'entrée.
 Échap à tout moment pour quitter. EXPRESSION EXPRESSION ] Temps écoulé : %d,%03d s 
 Temps écoulé : %d,%03d secondes 
 L'embarquage est impossible. GRUB ne peut être installé sur cette configuration qu'en utilisant les listes de blocs. Cependant, les listes de blocs ne sont PAS fiables et leur utilisation est déconseillée. Émuler une séquence de frappe Activer l'interprétation des séquences d'échappement par barre oblique inversée. Activer ou désactiver RTS/CTS Entrez le mot de passe ZFS :  Entrer dans KDB au démarrage. Passer en mode normal. Entrez le mot de passe pour %s%s%s (%s) :  Entrez le mot de passe :  Entrez le nom d'utilisateur :  Erreur d'analyse des arguments de la ligne de commandes
 Évaluer une expression. Évaluer les arguments comme des commandes GRUB Échec de sortie Quitter GRUB. Sortir des boucles. Sortir du mode normal. Exporter les variables. Exporter les tables en version 1 vers le système d'exploitation. Exporter les tables en version 2 et version 3 vers le système d'exploitation. FICHIER FICHIER [ARG ...] FICHIER [ARGUMENTS ...] FICHIER | MESURE [DEGRÉ1 DURÉE1] [DEGRÉ2 DURÉE2] ...  FICHIER ... FICHIER1 FICHIER2 FICHIER COMMANDE SYS_FIC [VARIABLE] FICHIER|prompt POLICES FORMAT Le protocole FPSWA n'a pas pu trouver l'interface Révision FPSWA : %x
 DE-À[,DE-À] DE[K|M|G] À[K|M|G] échec de FT_Init_FreeType Échec de démarrage de l'entrée par défaut et des entrées de repli.
 Échec de création de l'arborescence « device-mapper » Repli vers « %s » Taille de fichier : %s
 Le système de fichiers « %s » ne prend pas en charge l'embarquage Les fichiers sont différents à la position %llu : 0x%x [%s], 0x%x [%s]
 Les fichiers sont de tailles différentes : %llu [%s], %llu [%s]
 Le système de fichiers est inaccessible Type de système de fichiers %s Remplir le secteur d'amorçage principal (MBR) hybride du disque GPT PÉRIPHÉRIQUE. Les partitions indiquées feront partie du secteur d'amorçage principal hybride. Jusqu'à trois partitions sont permises. TYPE est un type de secteur d'amorçage principal. + signifie que la partition est active. Une seule partition peut être active. Terminer le chargement de l'émulateur EFI. Essayer d'abord le CONSEIL (« hint ») de périphérique seulement si exécuté sur une plate-forme ARC. Si CONSEIL se finit par une virgule, essayer aussi les sous-partitions. Essayer d'abord le CONSEIL (« hint ») de périphérique si exécuté sur une plate-forme BIOS. Si CONSEIL se finit par une virgule, essayer aussi les sous-partitions. Essayer d'abord le CONSEIL (« hint ») de périphérique seulement si exécuté sur une plate-forme EFI. Si CONSEIL se finit par une virgule, essayer aussi les sous-partitions. Essayer d'abord le CONSEIL (« hint ») de périphérique si exécuté sur une plate-forme IEEE1275. Si CONSEIL se finit par une virgule, essayer aussi les sous-partitions. Essayer d'abord le CONSEIL (« hint ») de périphérique seulement si exécuté sur une plate-forme permettant un accès matériel direct. Si CONSEIL se finit par une virgule, essayer aussi les sous-partitions. Essayer d'abord le CONSEIL (« hint ») de périphérique. Si CONSEIL se finit par une virgule, essayer aussi les sous-partitions. Corriger un problème vidéo. %s trouvé sur %s (%s)\n %s trouvé sur %s\n GNU Mach trouvé : %s Module Hurd trouvé : %s Noyau NetBSD trouvé : %s\n Arrière-plan trouvé : %s\n Image mémoire initiale trouvée : %s\n Répertoire de modules noyau trouvé : %s\n Noyau de FreeBSD trouvé : %s\n Image Linux trouvée : %s\n Thème trouvé : %s\n Erreur %d de Freetype en chargeant glyphe 0x%x pour U+0x%x%s Figer les paramètres de sécurité ATA jusqu'au redémarrage. vendredi  G GNU GRUB  version %s Menu de démarrage GRUB GRUB ne sait pas encore comment arrêter cette machine. Émulateur GRUB PÉRIPHÉRIQUE_GRUB=PÉRIPHÉRIQUE_PLAN9 Rien d'utilisable dans FMT_AIDE_ARGP : %s Générer une disposition de clavier GRUB à partir de celle de la console Linux. Générer un hachage PBKDF2 du mot de passe. Créer un fichier de configuration GRUB Créer une image autonome (contenant tous les modules) au format choisi Création du fichier de configuration GRUB… Calculer la somme de contrôle CRC32 de FICHIER. Obtenir les renseignements de cache du disque. Obtenir ou définir les paramètres ATA du disque.  Gio  Gio/s La syntaxe de point de greffe (par exemple /boot/grub/grub.cfg=./grub.cfg) est acceptée HACHAGE CONSEIL Arrêter le système, si possible avec l'APM. Arrête l'ordinateur. Cette commande ne fonctionne pas avec toutes les implémentations de microprogramme (« firmware »). Traiter N octets du fichier de sortie. Bonjour à tous Hercules  IDENTIFIANT IMAGE1 [IMAGE2 ...] POINT_DE_MONTAGE CHEMIN_IMAGE COMMANDES PÉRIPHÉRIQUE_INSTALLATION doit être un nom de fichier de périphérique système.
%s copie les images GRUB sur %s. Sur certaines plates-formes, cela pourrait aussi installer GRUB sur le secteur d'amorçage. Si FICHIER est « - », la valeur par défaut %s est utilisée.

Il n’y a pas de commande « delete ». Si vous voulez supprimer tous
l’environnement, utilisez « rm %s ». Importer la clef de chiffrement ZFS stockée dans FICHIER. VDEV incorrect Périphérique virtuel incorrect : pas de type disponible Charger un module. Installer GRUB sur le disque. Installation terminée, sans erreur. Référence arrière incorrecte Nom de classe de caractères incorrect Caractère de collation incorrect Commande %s incorrecte.
 Contenu de \{\} incorrect Périphérique « %s » incorrect.
 Décompte de disques incorrect.
 Expression rationnelle précédente incorrecte Fin d'intervalle incorrecte Expression rationnelle incorrecte Accomplir la configuration de routage par utilisateur.  k NOYAU ARGUMENTS TOUCHE_CLAVIER Touche clavier pour démarrer rapidement cette entrée.  Kio  Kio/s LOCALES Périphérique virtuel feuille (fichier ou disque) L'ancien paramètre « ask » n'est plus permis. Légende : masque/position=rouge/vert/bleu/réservé Longueur du hachage généré. Longueur du salage. Afficher les serveurs DNS Afficher les périphériques PCI. Afficher tous les fichiers. Afficher les modes vidéo. Si une résolution est donnée, n'afficher que les modes correspondants. Afficher les tables de coreboot. Afficher les périphériques et fichiers. Afficher les périphériques ou fichiers. Afficher les périphériques. Afficher les fichiers dans CHEMIN. Afficher la carte de mémoire transmise par le microprogramme (« firmware »). Liste des mode vidéo possibles : Liste d'utilisateurs autorisés à démarrer cette entrée. Afficher ou sélectionner un terminal d'entrée. Afficher ou sélectionner un terminal de sortie. Afficher les variables actuelles. Afficher les polices chargées. Afficher les variables depuis un fichier de bloc d'environnement. Charger l'image 64 bits XNU. Charger la sauvegarde du BIOS. Charger le fichier DTB. Charger l'environnement FreeBSD. Charger le module noyau FreeBSD (ELF). Charger le module noyau FreeBSD. Charger de kernel.sys de FreeDOS. Charger Linux. Charger NTLDR ou BootMGR. Charger le module noyau NetBSD (ELF). Charger le module noyau NetBSD. Charger un noyau de type Plan 9. Charger l’ISO Truecrypt. Charger le répertoire d'extensions XNU. Charger le paquet d'extension XNU. Charger l'extension XNU. Charger l'image XNU. Charger le disque mémoire XNU. Il sera disponible dans le système d'exploitation sous le nom md0. Charger la sauvegarde « device-properties ». Charger une image PXE. Charger une disposition de clavier. Charger un noyau Multiboot 2. Charger un module Multiboot 2. Charger un noyau Multiboot. Charger un module Multiboot. Charger l'image d'accueil pour XNU. Charger l'image d'hibernation XNU. Charger et initialiser l'émulateur EFI. Charger un autre gestionnaire de démarrage. Charger un autre fichier de configuration, mais ne prendre que les entrées de menu. Charger un autre fichier de configuration sans modifier le contexte, mais ne prendre que les entrées de menu. Charger un autre fichier de configuration sans modifier le contexte. Charger un autre fichier de configuration. Charger une autre charge utile (« payload ») coreboot. Charger l'image d'arrière-plan pour le terminal actif. Charger les tables ACPI de l'hôte et les tables indiquées par les arguments. Charger l'image mémoire initiale. Charger le disque mémoire kOpenBSD. Charger le noyau FreeBSD. Charger le noyau NetBSD. Charger le noyau OpenBSD. Charger un module. Ne charger que les tables indiquées dans la liste, séparées par des virgules. Charger le même fichier de différentes façons. Charger les variables depuis un fichier de bloc d'environnement. Charger la clef de chiffrement ZFS. Polices chargées : Chargement de GNU Mach… Chargement de Linux %s… Chargement de Xen %s… Chargement du disque mémoire initial… Chargement du noyau FreeBSD %s… Chargement du noyau d'Illumos… Chargement du Hurd…  M échec de vérification de MAC ENTRÉE_MENU est un numéro, un titre d'entrée de menu ou un identifiant d'entrée de menu. ENTRÉE_MENU est un numéro, un titre d'entrée de menu ou un identifiant d'entrée de menu.
Veuillez noter que les entrées de menu dans les sous-menus et sous-sous-menus nécessitent d’indiquer le composant de sous-menu puis le composant d’entrée de menu.
Les titres devrait être séparés en utilisant le caractères supérieur (>) sans espace supplémentaire.
Suivant l’interpréteur de commandes, certains caractères, y compris >, ont besoin d’être protégés.
Plus de renseignements à ce sujet sont disponibles dans le manuel de GRUB à la section sur la commande « default ». MODULE MODULES bless de type mac pour HFS ou HFS+ Envoyer les demandes d'aide sur xorriso à <bug-xorriso@gnu.org>. Faire une image GRUB amorçable de CD, de disque, de clef USB ou de disquette. Faire un ficher de disposition de clavier GRUB. Faire une image de GRUB amorçable. Faire un disque virtuel à partir d'un fichier. Activer la partition Gérer les correspondances de disques BIOS. Les arguments obligatoires ou facultatifs des options longues sont aussi obligatoires ou facultatifs pour les options courtes correspondantes. Manipuler les périphériques PCI. Mesurer le temps utilisé par COMMANDE Mémoire épuisée Type de mémoire : DDR2. Type de mémoire : inconnu. Identifiant d'entrée de menu. Aucune entrée de menu indiquée. Type d'entrée de menu.  Mio  Mio/s Édition de ligne basique de type Bash possible. Pour le premier mot, Tab affiche les complètements de commande possibles. Ailleurs, Tab affiche les complètements de périphériques ou fichiers possibles. %s Édition basique à l'écran de type Emacs possible. Tab affiche les complètements. Appuyez sur Ctrl-x ou F10 pour démarrer, Ctrl-c ou F2 pour une invite de commandes ou Échap pour revenir au menu GRUB. Arguments manquants
 Fichier d'entrée manquant
 lundi Monochrome  Plus d'un disque d'installation, alors qu'un seul est attendu. Plus d'une entrée de menu, alors qu'une seule est attendue. Monter un périphérique chiffré. Monter tous les volumes avec l'attribut d'amorçage (« boot ») défini. Tous les monter. Monter par UUID. Monter les périphériques chiffrés. NOM NOM [VARIABLE] [CONSEILS] Non exécuté :  NUM NOMBRE_DE_SECONDES Nom	Nombre Réf.	Dépendances
 Utilisation des pilotes natifs du disque. Refus d'utiliser l'interface disque du microprogramme (« firmware »). répertoire Netboot créé pour %s. Configurez le serveur DHCP pour pointer vers %s
 Protocoles réseau : Le nouveau secteur d'amorçage principal (MBR) est écrit sur « %s »
 Pas de CS5536 disponible Pas de FPSWA disponible Aucune statistique de temps de démarrage n'est disponible
 Aucune commande indiquée.
 Aucun périphérique n'est indiqué.
 Aucune statistique de cache du disque disponible
 Aucune correspondance de disque n'a été refaite. Aucun système de fichiers connu détecté Pas de correspondance Aucun chemin indiqué.
 Aucun chemin ni aucun périphérique n'est indiqué.
 Pas d'expression rationnelle précédente Pas d'arborescence de périphériques virtuels disponible Non-chain 4  Paramètres manquants pour la commande.
 Veuillez connecter le débogueur distant maintenant. Nombre d'itérations PBKDF2 OPTIONS FICHIER disque nº num du système d'exploitation ------> périphérique GRUB ou BIOS erreur d'ouverture du fichier %s de système d'exploitation : %s L'option -- bascule en mode natif de commande xorriso. Options : Recherche hors limites : %d
 Substitution hors limites (%d, %d)
 Redéfinir l'équivalent supposé des périphériques Plan 9.  P PARTITION COMMANDES CHEMIN Le hachage PBKDF2 du mot de passe est %s
 PORT PORT VALEUR [MASQUE] IDENTIFIANT_CLEF_PUBLIQUE Palette de couleurs  Analyser l'ancienne configuration dans le nouveau contexte Analyser l'ancienne configuration dans le nouveau contexte en ne prenant que les entrées de menu Analyser l'ancienne configuration dans le même contexte Analyser l'ancienne configuration dans le même contexte en ne prenant que les entrées de menu Numéro de modèle : %s.
 La partition %d est maintenant active. 
 Partition %s : Le style de partition « %s » ne prend pas en charge l'embarquage Chemin : %s
 Chemin : indisponible Exécuter les COMMANDES sur une partition.
Utiliser « parttool PARTITION help » pour obtenir la liste des commandes disponibles. Effectuer une résolution DNS Effectuer une configuration IPV6 automatique Activer les correspondances dans les deux sens (directe et inverse).  Pio  Pio/s Par plan  Émettre un son. Veuillez ne pas utiliser l'ancien titre « %s » pour GRUB_DEFAULT, utilisez « %s » (avant la version 2.00) ou « %s » (depuis la version 2.00) GUID du pool : %016llx
 GUID du pool : indisponible Nom du pool : %s
 Nom du pool : indisponible État du pool : actif État du pool : détruit État du pool : exporté État du pool : périphérique ARC niveau 2 État du pool : potentiellement actif État du pool : réservé pour échange à chaud État du pool : indisponible État du pool : non initialisé Les arguments possibles sont : Les commandes possibles sont : Les périphériques possibles sont : Les fichiers possibles sont : Les partitions possibles sont : Les choses possibles sont : Fin prématurée d'expression rationnelle Appuyez une touche pour continuer… Appuyez une touche pour démarrer XNU Appuyez sur Entrée pour démarrer le système sélectionné, « e » pour éditer les commandes avant de démarrer ou « c » pour obtenir une invite de commandes. Appuyez sur Entrée pour démarrer le système sélectionné, « e » pour éditer les commandes avant de démarrer ou « c » pour obtenir une invite de commandes. Échap pour revenir au menu précédent. Afficher les renseignements sur la mémoire. Afficher les renseignements ZFS à propos de PÉRIPHÉRIQUE. Afficher ZFS-BOOTFSOBJ ou la sauver dans VARIABLE Afficher une liste de blocs. Afficher et exécuter l'argument de bloc. Afficher la pile d'appel. Afficher les paramètres et l'identité du disque. Afficher les tailles au format lisible par un humain. Examiner les renseignements du périphérique pour un chemin (ou un périphérique avec l'option -d) donné. RAM contenant les tables de coreboot RAM contenant le code de microprogramme (« firmware ») Connecteur de RAM numéro %d
 EXPR_RAT CHAÎNE Une image ROM est présente. Lire la valeur 16 bits d'ADRESSE. Lire la valeur 16 bits du PORT. Lire la valeur 32 bits d'ADRESSE. Lire la valeur 32 bits du PORT. Lire la valeur 8 bits d'ADRESSE. Lire la valeur 8 bits du PORT. Lire seulement LONGUEUR octets. Échec de redémarrage Redémarrer dans le menu de configuration de microprogramme (« firmware »). Redémarrer l'ordinateur. Entrez de nouveau le mot de passe :  Registre %x de %x:%02x.%x est %x
 Expression rationnelle trop grosse Retirer un serveur DNS Retirer un module. Retirer une variable d'environnement. Retirer toutes les régions de mémoire dans l'intervalle indiqué. Fournir le .disk_label Apple. Signaler les bogues à %s.
 Signaler les bogues à <bug-grub@gnu.org>. Un terminal série est demandé, mais GRUB_SERIAL_COMMAND n'est pas indiqué. Les paramètres par défaut seront utilisés. Réinitialiser toutes les correspondances aux valeurs par défaut. Récupérer les renseignements du périphérique. Terminer une fonction. Retourner à l'invite IEEE1275. Exécutez « gdb %s %d », et configurez ARGS.HOLD à zéro.
 Exécuter « go » pour revenir à GRUB. SEC NOMCOURT NOMCOURT CARTE ADRESSE [ADRESSEMATÉRIELLE] NOMCOURT RÉS [INTERFACE| gw PASSERELLE] TAILLE SOURCE|-u UUID|-a|-b CHAÎNE CHAÎNE ... samedi Sauver la valeur lue dans la variable NOM_VAR. Sauver les variables dans un fichier de bloc d'environnement. Dire « Bonjour à tous ». Le script « %s » ne contient pas de commande et ne fera rien
 Chercher des périphériques par UUID. Si VARIABLE est indiquée, le premier périphérique trouvé est enregistré dans une variable. Chercher les périphériques par fichier. Chercher les périphériques par UUID de système de fichiers. Chercher les périphériques par étiquette de système de fichiers. Chercher des périphériques par nom de fichier, étiquette ou UUID de système de fichiers. Si --set est indiqué, le premier périphérique trouvé est enregistré dans une variable. Si aucun nom de variable n'est indiqué, « root » est utilisé. Chercher des périphériques par fichier. Si VARIABLE est indiquée, le premier périphérique trouvé est enregistré dans une variable. Chercher des périphériques par étiquette. Si VARIABLE est indiquée, le premier périphérique trouvé est enregistré dans une variable. Le secteur %llu est déjà utilisé par le contrôleur RAID « %s » ; à éviter. Veuillez demander au fabriquant de ne pas sauver de données dans la piste d'amorçage Le secteur %llu est déjà utilisé par le programme « %s » ; à éviter. Ce logiciel risque de poser des problèmes d'amorçage ou autre à l'avenir. Veuillez demander à ses auteurs de ne pas sauver de données dans la piste d'amorçage Sélectionner le périphérique en fonction de sa position sur le bus. Sélectionner le périphérique par identifiants de constructeur et de périphérique. Définir la gestion étendue de l'alimentation (APM)
(1=basse, ..., 254=haute, 255=arrêt). Définir la gestion acoustique automatique (AAM)
(0=arrêt, 128=silencieux, ..., 254=rapide). Définir l'OEMID de RSDP, XSDT et RSDT. Définir l'identifiant OEMTABLE de RSDP, XSDT et RSDT. Définir la révision OEMTABLE de RSDP, XSDT et RSDT. Définir l'attribut « caché » dans le type de partition Définir une variable pour renvoyer la valeur. Définir une variable au premier périphérique trouvé. Définir une variable d'environnement. Définir la couleur d'arrière-plan pour le terminal actif. Définir un bit à OCTET:BIT du CMOS. Définir l'identifiant du fabriquant de RSDP, XSDT et RSDT. Définir la révision du fabriquant de RSDP, XSDT et RSDT. Définir la variable d'environnement de débogage. Placer le lecteur en mode sommeil. Placer le lecteur en mode veille. Définir les paramètres positionnels. Définir le périphérique racine. Définir le délai de veille
(0=off, 1=5 s, 2=10 s, ..., 240=20 min, 241=30 min, ...). Définir le type de terminfo du TERMINAL à TYPE.
 Configurer l'entrée de menu par défaut pour GRUB, seulement pour le prochain démarrage. Configurer l'entrée de menu par défaut pour GRUB. Définir l'adresse du port série. Définir la parité du port série. Définir la vitesse du port série. Définir les bits d'arrêt du port série. Définir la taille de trame du port série. Définir le port série (unité). Préparer les images pour démarrer depuis PÉRIPHÉRIQUE.

Vous ne devriez normalement pas exécuter ce programme directement. Utilisez plutôt grub-install. Définir un mot de passe utilisateur (PBKDF2).  Définir le mot de passe utilisateur (texte en clair). Non recommandé et non sécurisé. Définir la variable avec la saisie de l'utilisateur. Définir les variables. Définir GRUB_TIMEOUT à une valeur non nulle si GRUB_HIDDEN_TIMEOUT est définie n’est plus possible. Changement du type de partition à 0x%x
 Décaler les paramètres positionnels. Afficher les renseignements d'ACPI. Montrer les renseignements d'APM. Afficher le contenu de la console CBMEM. Afficher un message d'aide. Afficher une longue liste de renseignements plus détaillées. Afficher le contenu de FICHIER en hexadécimal. Afficher les modules chargés. Afficher le contenu de la mémoire. Afficher le contenu brut du secteur ATA IDENTIFY. Afficher le contenu brut d'un fichier ou de la mémoire. Afficher le contenu d'un fichier. Afficher les correspondances actuelles. Afficher ce message. N'afficher que les tables en version 1. N'afficher que les tables en version 2 et version 3. Échec d'arrêt Simuler la commande « initrd » de l'ancien GRUB Simuler la commande « kernel » de l'ancien GRUB Simuler la commande « modulenounzip » de l'ancien GRUB Simuler la commande « password » de l'ancien GRUB Simuler la commande « password » de l'ancien GRUB en mode d'entrée de menu Sauter N octets du fichier de sortie. Sauter plusieurs octets au début du fichier. Sauter la vérification de signature du fichier d’environnement. Emplacement de clef %d ouvert
 Certains morceaux du Hurd sont disponibles, mais pas assez pour démarrer. Indiquer le nom de fichier. Indiquer le hachage à utiliser. Indiquer un ou plusieurs fichiers de police à charger. Indiquer la taille pour toutes les opérations de lecture Indiquer le nombre de fichiers d'entrée. Vitesse : %s 
 Démarrer la session GDB sur le port indiqué. Arrêter la session GDB Sauver le composant NOMBRE correspondant dans NOM_VAR. Réussite dimanche Supprimer la sortie normale (les avertissements sont conservés). Basculer vers les pilotes natifs de disque. Si aucun module n'est indiqué, l'ensemble par défaut (pata,ahci,usbms,ohci,uhci,ehci) est utilisé Erreur de syntaxe à la ligne %u
 Des erreurs de syntaxe sont détectées dans le fichier de configuration
de GRUB. Veuillez vérifier qu'il n'y a pas d'erreur dans les fichiers
/etc/default/grub et /etc/grub.d/*. Sinon veuillez signaler un bogue
en joignant le fichier %s. L'espace d'E/S du contrôleur de bus du système de gestion est à 0x%x
  T CIBLE THÈMES Format cible non indiqué (utiliser l'option -O). Le terminal a la géométrie indiquée. Le terminal est en ASCII seulement [par défaut]. Le terminal est en UTF-8 ordonné logiquement. Le terminal est en UTF-8 ordonné visuellement. Tester la prise en charge de l'USB. Tester un bit à OCTET:BIT du CMOS. Tester la vitesse de lecture du fichier. Tester si l'expression rationnelle EXPR_RAT correspond à CHAÎNE. Tester le sous-système vidéo en mode LARG×HAUT. Tester le sous-système vidéo. Texte seul  Les fichiers sont identiques.
 L'entrée sélectionnée sera exécutée automatiquement dans %d s. Ce VDEV est un RAIDZ%llu
 Ce VDEV est un miroir Cette entrée peut être démarrée par n'importe quel utilisateur. Cela nécessite de configurer GRUB_DEFAULT=saved dans %s/default/grub.\n jeudi  Tio  Tio/s Outil pour éditer un bloc d'environnement. Taille flash totale : %d o.
 Barre oblique finale Transformer un UUID 64 bits au format convenable pour XNU. Si -l est donnée, le garder en minuscule comme avec blkid. Transformer un nom de fichier système vers le format GRUB. Transformer une configuration syslinux vers le format GRUB. Convertir les caractères d’ENSEMBLE1 vers ENSEMBLE2 dans CHAÎNE. Convertir en minuscule. Convertir en majuscule. Traduit la chaîne en fonction de la configuration actuelle. Utilisez « %s --help » ou « %s --usage » pour obtenir de plus amples renseignements.
 mardi UTILISATEUR MOTDEPASSE UTILISATEUR MOTDEPASSE_PBKDF2 UTILISATEUR[,UTILISATEUR] UTF-8 Impossible de créer le tube : %s Impossible de déterminer la plate-forme. Utilisez --target. Impossible de bifurquer (« fork ») : %s Impossible d'ouvrir le flux de %s : %s Impossible de récupérer l'état du pool Décompresser les données. Décompresser le fichier avant de calculer la somme de contrôle. type %d d'adresse inconnu
 Commande « %s » inconnue.
 Format de compression %s inconnu Encodage inconnu Argument facultatif « %s » inconnu. fonctionnalité gsub 0x%x inconnue (%s)
 Code de touche 0x%02x inconnu
 Identifiant de touche %s inconnu
 Plate-forme « %s-%s » inconnue Erreur système inconnue Mode vidéo inconnu  Type de périphérique virtuel inconnu : %s
 Décharger l'émulateur EFI. ( ou \( sans correspondance ) ou \) sans correspondance [ ou [^ sans correspondance \{ sans correspondance Compression « %s » non reconnue\n Option « %s » non reconnue\n État du pool non reconnu type %d d'adresse non valable
 Spécification de couverture non prise en charge : %d
 type %d d'adresse matérielle non valable
 Format d'image non pris en charge Attribut de substitution non pris en charge : 0x%x
 Spécification de substitution non prise en charge : %d
 Type de substitution non pris en charge : %d
 Utilisation : Utilisation : %s -o SORTIE ARGUMENTS_CKBMAP ...\n Utilisation : %s PÉRIPHÉRIQUE
 Utilisation : %s [FICHIER_ENTRÉE [FICHIER_SORTIE]]
 Utilisation : %s [OPTION] ENTRÉE_MENU\n Utilisation : %s [OPTION]\n Utiliser le CD comme racine. Utiliser le débogueur distant GDB à la place de DDB. Utiliser CHAÎNE comme corps d'entrée de menu. Utiliser le périphérique racine intégré. Utiliser la console série. Utilisez les touches %C et %C pour sélectionner une entrée. VAR INTERFACE NUMÉRO DESCRIPTION NOM_VAR L'élément %d du VDEV n'est pas correct
 Élément %d du VDEV :
 VDEV avec %d enfants
 Décompte détaillé. Vérifier la signature détachée. Version %u.%u
CS 32 bits = 0x%x, longueur = 0x%x, position = 0x%x
CS 16 bits = 0x%x, longueur = 0x%x
DS = 0x%x, longueur = 0x%x
 Le périphérique virtuel est dégradé Le périphérique virtuel est en défaut Le périphérique virtuel est hors ligne Le périphérique virtuel est en ligne Le périphérique virtuel est retiré Attention : aucune console ne sera disponible pour ce système d'exploitation Attention : aucune installation spécifique à la plate-forme n'a été effectuée Attention : paramètres de fonctionnalité de police non pris en charge : %x
 LARGEURxHAUTEUR. Attendre le temps indiqué en seconde. Rester en attente d'appui sur une touche avant d'afficher la ligne suivante. Attention : Attention : couleur d'arrière-plan « %s » incorrecte
 Attention : couleur de premier plan « %s » incorrecte
 Attention : erreur de syntaxe (barre oblique manquante) dans « %s »
 mercredi Windows NT/2000/XP (chargeur) Windows Vista/7 (chargeur) Écrire la VALEUR 16 bits sur ADRESSE. Écrire la VALEUR 16 bits sur PORT. Écrire la VALEUR 32 bits sur ADRESSE. Écrire la VALEUR 32 bits sur PORT. Écrire la VALEUR 8 bits sur ADRESSE. Écrire la VALEUR 8 bits sur PORT. Octets SPD écrits : %d o.
 Hyperviseur Xen, version %s YUV  Vous devez indiquer au moins une commande.
 Veuillez définir « SystemPartition » et « OSLoader » vous-même. Vous avez découvert un bogue La zone d'embarquage est exceptionnellement petite. core.img n'y tiendra pas. Cette version de xorriso ne permet pas d'utiliser « --grub2-boot-info ». Certaines fonctionnalités sont désactivées. Veuillez utiliser au moins la version 1.2.9 de xorriso. Cette version de xorriso ne permet pas d'utiliser « --grub2-boot-info ». L'image de base est trop grande. Le démarrage en tant que disque est désactivé. Veuillez utiliser au moins la version 1.2.9 de xorriso. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FICHIER [--md5] MOT_DE_PASSE [FICHIER] [--no-mem-option] [--type=TYPE] FICHIER [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FICHIER1 [FICHIER2] [...] [-c FICHIER [-p PRÉFIXE]] [FICHIER1 [FICHIER2 ...]] [-d] NOM_PÉRIPH FICHIER. [-e|-n] CHAÎNE [-f FICHIER] [-f FICHIER] nom_de_variable [...] [-f|-l|-u|-s|-n] [--hint CONSEIL [--hint CONSEIL] ...] NOM [-h|-p|-r] [FICHIER] [-l] UUIDGRUB [NOM_VAR] [-l|-h|-a] [FICHIER ...] [-m (stretch|normal)] FICHIER [-s POSITION] [-d PÉRIPHÉRIQUE] [-s POSITION] [-d PÉRIPHÉRIQUE] [-v VAR] REGISTRE[=VALEUR[:MASQUE]] [-s TAILLE] FICHIER [-s|--skip-sig] FICHIER FICHIER_SIGNATURE [FICHIER_CLEF_PUBLIQUE] [-s|--skip-sig] FICHIER_CLEF_PUBLIQUE [ADRESSE|comUNITÉ][,VITESSE] [ARG] [CARTE [ADRESSEMATÉRIELLE]] [CARTE] [RÉP] [VAR_ENV=VALEUR] [VAR_ENV] [SEQ_FRAPPE1] [SEQ_FRAPPE2] ... [MODULE1 MODULE2 ...] [NOMBRE:]NOM_VAR [NUM] [OPTIONS ...] [OPTIONS] [OPTIONS] DISQUE [OPTIONS] FICHIER_OU_PERIPH [OPTIONS] FICHIERS_POLICE [OPTIONS] [ENSEMBLE1] [ENSEMBLE2] [CHAÎNE] [OPTION] SOURCE ... [OPTION] [PÉRIPHÉRIQUE_INSTALLATION] [OPTIONS] ... [MODULES] [OPTIONS] ... [CHEMIN|PÉRIPHÉRIQUE] [OPTIONS] [CHEMIN] [MOTIF ...] [LISTE_UTILISATEURS] [VALEUR] ... [LARGxHAUT[xPROF]] [LARGxHAUT] [[-a|-u|-v] [-g LARGxHAUT] TERMINAL [TYPE]] [[année-]mois-jour] [heure:minute[:seconde]] [bus]:[connecteur][.fonc] [constructeur]:[périphérique] « %s » n'est pas un disque local échec de la commande « cryptomount » : %s échec de la commande « loopback » : %s Échec de « nvsetenv »
Veuillez définir la variable « boot-device » vous-même. À l'invite IEEE1275, entrez :
  %s
 « obppath » non disponible dans les répertoire parents de « %s », pas de recherche de nom IEEE1275 une valeur a été affectée à l'argument « %s » alors qu'il n'a pas besoin d'argument accès refusé ajouter le segment NOTE pour CHRP IEEE1275 adresse adresse indisponible tentative de lecture ou d'écriture en dehors du disque « %s » tentative de lecture ou d'écriture en dehors de la partition tentative de lecture après la fin du fichier tentative de recherche en dehors du fichier tentative de lecture de l'image de base « %s » par GRUB nouvelle tentative de lecture de l'image de base « %s » par GRUB RAM disponible formats disponibles : mauvaise signature adr_base = 0x%llx, longueur = 0x%llx, %s
 adr_base = 0x%llx, longueur = 0x%llx, type = 0x%x
 le fichier image « %s » n'est pas d'un format pris en charge bless pour les Mac PowerPC bless pour les Mac x86 blocklist FICHIER les listes de blocs sont incomplets les listes de blocs sont incorrectes la taille de bloc n'est pas divisible par 512 l'argument de break doit être un entier strictement positif impossible de compresser « %s » vers « %s » impossible de déterminer le système de fichiers sur %s impossible de trouver la commande « %s » impossible de monter le volume chiffré « %s » : %s impossible d'ouvrir « %s » : %s impossible d'ouvrir le fichier %s, index %d : erreur %d impossible de récupérer les listes de blocs impossible de récupérer les listes de blocs : %s impossible de définir la taille de police %dx%d : erreur %d de Freetype : %s impossible de compresser l'image du noyau impossible de copier « %s » vers « %s » : %s impossible de supprimer « %s » : %s impossible de trouver le répertoire EFI impossible de trouver un périphérique GRUB pour %s. Vérifiez device.map. impossible de trouver un périphérique pour %s (/dev est-il monté ?) impossible de trouver la locale « %s » impossible d'obtenir la ligne de commande de traducteur pour le chemin « %s » : %s impossible de créer un répertoire temporaire : %s impossible de créer un ficher temporaire : %s impossible d'ouvrir le fichier « %s » du système d'exploitation : %s impossible d'ouvrir « %s » : %s impossible d'ouvrir le répertoire « %s » : %s impossible de lire « %s » correctement impossible de lire « %s » : %s impossible de renommer le fichier %s en %s impossible de restaurer le répertoire d'origine impossible de parcourir « %s » : %s impossible d'obtenir l'état de « %s » : %s impossible d'écrire sur le CD impossible d'écrire sur « %s » : %s impossible d'écrire sur la sortie standard : %s carte indisponible cat FICHIER échec de vérification de somme de contrôle choisir la compression à utiliser pour l'image de base cmp FICHIER LOCAL comUNITÉ[,VITESSE] échec de comparaison à la position %llu compresser les fichiers GRUB [facultatif] connexion refusée délai de connexion dépassé convertir en police grasse L'image de base est trop grande (0x%x > 0x%x) la version de core.img ne correspond pas impossible de configurer %s automatiquement impossible de trouver un périphérique membre nécessaire d'un système de fichiers multipériphérique impossible de trouver l'utilisateur geli impossible de trouver la classe « part » de GEOM impossible d'ouvrir GEOM impossible de lire les métadonnées ELI impossible de récupérer l'UUID impossible de récupérer l'UUID geli impossible de récupérer les données aléatoires impossible de récupérer les données aléatoires pour le salage impossible d'envoyer un paquet réseau cp FICHIER LOCAL crc FICHIER erreur cryptographique numéro %d échec de cygwin_conv_path()  effacer la carte de périphériques si elle existe déjà destination inaccessible le nombre de périphériques dépasse la limite désactiver l'optimisation (« hinting ») disque « %s » non disponible le disque n'existe pas, donc repli vers le périphérique de partition %s le module de disque à utiliser (biosdisk ou native). Cette option n'est disponible que sur la cible BIOS. échec de lecture du disque à la position %lld, longueur %lld la taille de diskboot.img doit être de %u octets ne pas installer le secteur d’amorçage ne pas chercher de systèmes de fichiers sur PÉRIPHÉRIQUE composant de nom de domaine trop long ne pas mettre à jour l'état de la DEL ne pas mettre à jour les variables NVRAM « boot-device » ou « Boot* ». Cette option n'est disponible que sur les cibles EFI et IEEE1275. fait embarquer FICHIER comme une configuration de départ embarquer FICHIER comme clef publique pour la vérification de signatures l'embarquage est impossible, il est pourtant nécessaire pour les installations RAID et LVM l'embarquage est impossible, il est pourtant nécessaire pour les installations interdisques activer le démarrage ARCS (machines MIPS gros-boutistes, surtout SGI). Désactiver HFS+, APM, sparc64 et démarrer comme une image disque pour i386-pc activer le démarrage SPARC. Désactiver HFS+, APM, ARCS et démarrer comme une image disque pour i386-pc activation de la prise en charge de %s… Entrée : démarrage, « e » : option, « c » : invite de commandes bloc d'environnement trop petit erreur : %s.
 chercher les images GRUB dans le répertoire RÉP/%s au lieu du répertoire %s échec de copie de GRUB sur la partition PReP impossible d'obtenir le chemin canonique de « %s » échec de lecture des secteurs de l'image de base échec de lecture du secteur 0x%llx de « %s » échec de lecture du mot de passe échec d'écriture du secteur 0x%llx sur « %s » faux RAM défectueuse (BadRAM) fichier « %s » non disponible nom de fichier attendu nom de fichier ou mesure et notes attendus le système de fichier « %s » ne prend pas en charge les étiquettes le système de fichier « %s » ne prend pas en charge les listes de blocs  l'image de microprogramme (« firmware ») est trop grande forcer l'optimisation (« hinting ») automatique quatre arguments attendus fwstart.img ne correspond pas à la bonne version connue. Poursuivez à vos risques et périls générer une image au FORMAT afficher un court message d'utilisation afficher cette liste d'aide l'argument donné est un périphérique système, pas un chemin grub-mkimage est compilé sans prise en charge de XZ grub> suspendre pendant SEC secondes (3600 par défaut) hex FICHIER ne pas utiliser les tracés bitmap déjà existants spécification des dimensions de terminal incorrecte image mémoire initiale déjà chargée installer les POLICES [%s par défaut] installer GRUB pour la plate-forme CIBLE [%s par défaut] installer les images GRUB dans le répertoire RÉP/%s au lieu du répertoire %s installer les THÈMES [%s par défaut] le périphérique d'installation n'est pas indiqué installer même si des problèmes sont détectés n’installer que les LOCALES [tout par défaut] n’installer que les MODULES et leurs dépendances [tout par défaut] mot de passe PBKDF2 non conforme numéro magique ELF dépendant de l'architecture incorrect numéro magique ELF indépendant de l'architecture incorrect argument incorrect taille de bloc incorrecte spécification de couleur « %s » incorrecte arborescence de périphériques incorrecte bloc d'environnement incorrect nom de fichier « %s » incorrect intervalle de caractères incorrect format de ligne incorrect : %s fichier modinfo « %s » incorrect paramètre %s incorrect valeur de saut %lld incorrecte nom de variable « %s » incorrect spécification « %s » de mode vidéo incorrecte zImage incorrecte erreur d'ioctl GET_ARRAY_INFO : %s erreur d'ioctl GET_DISK_INFO : %s erreur d'ioctl RAID_VERSION : %s L'image de noyau est trop grande (0x%x > 0x%x) afficher les adresses réseau afficher les cartes réseau afficher les routes réseau ls CHEMIN fichier lzop corrompu rendre aussi le disque amorçable, comme une disquette (par défaut pour les périphériques fdX). Ce paramètre risque de poser des problèmes avec certains BIOS. symbole « %c » manquant option obligatoire pour « %s » manquante le module « %s » n'est pas chargé le module n'est pas chargé nom une image et un point de montage sont nécessaires pas d'APM disponible aucun renseignement DHCP disponible aucune option %d DHCP disponible aucune option DHCP disponible aucun enregistrement DNS disponible aucune réponse DNS reçue aucun serveur DNS configuré pas de routine EFI disponible pour cette plate-forme pas de routine EFI disponible lors d’une exécution en mode BIOS pas de routine IEEE1275 disponible pour cette plate-forme pas de routine SGI disponible pour cette plate-forme pas de « / » dans le nom de fichier canonique aucune commande n'est indiquée pas de compression disponible pour cette plate-forme pas de clef de déchiffrement disponible pas de conseil (« hint ») disponible pour cette plate-forme. Performances réduites attendus aucune carte réseau disponible aucun générateur de nombres aléatoires n’est disponible pour ce système d’exploitation aucun serveur n'est indiqué cette partition n'existe pas aucun mode vidéo approprié disponible aucune table de symbole aucun terminal indiqué pas de terminateur dans l'image de base données non alignées sur des secteurs trouvées dans le fichier de l'image de base pas un répertoire pas une partition primaire pas un fichier normal n'est pas dans le corps d'une fonction un argument attendu IPv4 seulement IPv6 seulement un autre logiciel utilise la zone d'embarquage, et il n'y a pas assez de place pour core.img. Ce genre de logiciel essaye souvent de sauver des données de façon à éviter les détections. Vous devriez examiner cela mémoire épuisée envoyer l'image générée dans FICHIER [stdout par défaut] le fichier de destination doit être indiqué envoyer la configuration créée vers FICHIER [stdout par défaut] un dépassement est détectée les mots de passe ne correspondent pas effectuer une configuration bootp automatique volume physique %s non disponible précharger les modules MODULES indiqués IPv4 préférée IPv6 préférée fin prématurée de fichier fin prématurée du fichier %s appuyez sur la touche de verrouillage majuscule appuyez sur la touche d'insertion appuyez sur la touche Verr Num appuyez sur la touche Arrêt défil appuyez sur la touche Syst appuyez sur la touche Alt gauche appuyez sur la touche Ctrl gauche appuyez sur la touche majuscule gauche appuyez sur la touche Alt droite appuyez sur la touche Ctrl droite appuyez sur la touche majuscule droite afficher la version du programme afficher la version du logiciel et quitter afficher ce message et quitter afficher les messages bavards. clef publique %08x non disponible erreur de lecture à la position %llu : %s lire le texte depuis le FICHIER. sous-répertoire relatif sur le serveur réseau la délocalisation 0x%x n'est pas encore implémentée RAM réservée récupérer l'option DHCP et la sauver dans VAR. Si VAR est -, afficher la valeur. répertoire racine tel qu’il sera vu en fonctionnement [/ par défaut] répertoire racine du serveur TFTP répertoire racine du disque syslinux [/ par défaut] boucle de route détectée sauver les images ROM dans RÉP [facultatif] sauver la sortie dans FICHIER [nécessaire] sélectionner l'indice de police d'écriture le port série « %s » est indisponible set [NOM=VALEUR ...] définir le mode de verrouillage majuscule définir le talus de tête de la police définir le talus de pied de la police définir le nom de famille de la police définir l'intervalle de caractères définir la taille de police définir le nom de fichier d'entrée pour la partie 32 bits. définir le nom de fichier d'entrée pour la partie 64 bits. définir le nom de fichier d'entrée. STDIN par défaut définir le mode d'insertion définir le mode de verrouillage numérique définir le nom de fichier de sortie. STDOUT par défaut définir le mode de pause définir le répertoire de préfixe [%s par défaut] définir le mode de verrouillage défilement définir le nom du programme taille « stretch » (étiré) ou « normal » symbole « %s » non disponible temporaire Le terminal %s est indisponible ou n'est pas pris en charge par terminfo terminal « %s » non disponible l'IDENTIFIANT du chargeur d'amorçage. Cette option n'est disponible que sur EFI et Mac. la partition PReP n'est pas vide. Si vous voulez vraiment l'utiliser, utilisez dd pour l'effacer : « %s » l'argument « %s » nécessite un entier la partition choisie n'est pas une partition PReP L'entrée « %s » de device.map est incorrecte. Elle est ignorée. Veuillez corriger ou supprimer device.map le disque %s est défini plusieurs fois dans la carte de périphériques %s Le nom de périphérique « %s » dans device.map est incorrect. Utilisation de %s à la place. Veuillez utiliser le format [hfc]d[0-9]* (par exemple « hd0 » ou « cd ») le premier secteur du fichier de l'image de base n'est pas aligné sur un secteur le périphérique d'installation est amovible. Cette option n'est disponible que sur EFI. le type de partition 0x%x n'est pas valable les secteurs du fichier de l'image de base sont trop dispersés la taille de « %s » n'est pas égale à %u la taille de « %s » est trop grande la taille de « %s » est trop petite ce fichier ELF n'est pas du type adéquat cette étiquette de partition GPT ne contient pas de partition d'amorçage BIOS ; l'embarquage ne sera pas possible ce LDM n'a pas de partition d'embarquage ; l'embarquage ne sera pas possible cette étiquette de partition de type MSDOS n'a pas d'espace dans la piste d'amorçage ; l'embarquage ne sera pas possible trois arguments attendus délai dépassé lors de l'ouverture de « %s » délai dépassé lors de la lecture de « %s » délai dépassé : impossible de résoudre l'adresse matérielle trop de niveaux de liens symboliques plusieurs arguments fournis au traducteur « %s » pour le chemin « %s » ne sont pas des options, au moins « %s » et « %s » seules des options ont été fournies au traducteur « %s » pour le chemin « %s », impossible de trouver la partie relative au périphérique. la ligne de commande de traducteur est vide pour le chemin « %s » deux arguments attendus type impossible d'identifier le système de fichiers sur %s ; impossible d'effectuer un contrôle de sécurité taille de périphérique non alignée erreur EFI inattendue fin de fichier inattendue argument « %s » inconnu compression %d inconnue
 type de périphérique %s inconnu
 système de fichiers inconnu type de périphérique RAID « %s » inconnu Erreur d'expression rationnelle inconnue format cible %s inconnu
 type « %s » de terminfo inconnu spécification « %s » de format d'option DHCP non reconnue adresse réseau « %s » non reconnue interface réseau « %s » non reconnue nombre non reconnu adresse %s non résoluble unset [NOM ...] erreur %d HTTP non prise en charge : %s réponse HTTP non prise en charge version RAID non prise en charge : %d.%d format gzip non pris en charge plate-forme %s non prise en charge
 parité de port série non valable vitesse de port série non valable nombre de bits d'arrêt du port série non valable taille de trame du port série non valable utiliser COULEUR pour l'arrière-plan utiliser COULEUR pour l'étiquette utiliser COULEUR pour l'arrière-plan d'étiquette utiliser COULEUR pour le texte utiliser RÉP comme racine de la partition système EFI. Utiliser RÉP pour l’installation Mac PowerPC. utiliser FICHIER comme police (PF2). utiliser FICHIER comme police pour l'étiquette utiliser FICHIER comme image de démarrage [%s par défaut] utiliser FICHIER comme image de base [%s par défaut] utiliser FICHIER comme carte de périphériques [%s par défaut] utiliser FICHIER à la place de xorriso [facultatif] utiliser les fichiers GRUB dans le répertoire RÉP [%s par défaut] utiliser CHAÎNE comme nom de produit utiliser CHAÎNE comme version de produit utiliser le ficher d'identifiant même si l'UUID est disponible utiliser les images et modules présents dans RÉP [%s/<plate-forme> par défaut] utiliser les thèmes présents dans RÉP [%s par défaut] utiliser les traductions présentes dans RÉP [%s par défaut] la variable « %s » n'est pas définie UTF-8 ordonné visuellement attendre qu'un débogueur soit attaché refus de continuer avec les listes de blocs écrire la sortie vers FICHIER [stdout par défaut]. mauvaise version ou numéro magique ELI xnu_uuid PÉRIPHÉRIQUE fichier XZ corrompu ou options de bloc non prises en charge impossible d'effacer cette adresse le noyau doit d'abord être chargé la partition d'amorçage BIOS est trop petite ; l'embarquage ne sera pas possible core.img est exceptionnellement grand. Il ne tiendra pas dans la zone d'embarquage la zone d'embarquage est exceptionnellement petite. core.img n'y tiendra pas.                                                                                                                                                                                                                                               boot/grub/locale/gl.mo                                                                              0000600 0001750 0001750 00000324745 13417732100 0013643 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                       v     #    |G      H_  #   I_      m_     _     _     _  $   _     _  6   `     H`     O`  	   [`     e`     r`     `     `     `     `  .   `  .   a  %   >a     da     ha    wa    |b    c     d  7   d  F   d  v   "e  +   e     e      e     e  !   	f     +f  ,   Hf     uf     f  $   f     f  *   f     g     !g     )g     9g     Qg  
   qg  	   |g     g  ,   g  ,   g  ,   g  '   )h  -   Qh      h  (   h  (   h  )   h     i     <i     \i     ii     ri  "   {i  4   i     i     i  7   i      j  1   )j     [j     zj  %   }j  '   j  %   j  '   j     k     k      k     >k     Sk     hk     mk     k     k     k     k     k     k     k  3   k     )l  $   /l     Tl     ll     l     l     l     l     l  -   l     m  !   4m     Vm     km     m  #   m     m  `   Hn  Z   n     o     o     ;o     =o     Ao     Xo     ^o     go     ~o     o     o     o     o     o     p     (p     ?p     Up     cp     zp     p     p     p  %   p     p     p     p     q     .q     Dq     Sq     fq     wq  *   q  3   q     q  "   	r  8   ,r     er     wr  	   r  #   r     r     r     r     s     3s     Js  )   Ys     s     s     s  P   s     /t     Dt  H   Yt  &   t     t     t  !   t  ,   
u     7u     Cu     Gu  	   du  !   nu  *   u     u     u     u     u     v  $   ,v     Qv     cv     uv     v     v     v  
   v  
   v     v  1   w     @w     Nw     [w     tw  3   w  >   w  $   x     (x     ?x     \x     tx     x     x  +   x     x     y  #   )y     My     dy  $   y     y     y  '   y  9   z     @z     Yz  z   wz     z     z  8   {     F{  
   ]{     h{     u{     {     {     K|  +   h|     |     |     |  "   |     |     }  (   }     @}     X}     d}     t}     }     }  "   }  0   }     ~     ~     ~  7   $~     \~     d~     p~     ~     ~     ~  0   ~     ~     ~            2   .  %   a            *     6     +        9     W     j  !   ;  d   ]  e     d   (  i     o     H   g          Ã     ك                    -     D  #   ]                 1   Ʉ  )        %     ,     .     C  /   R                 5   Ņ            K   6                    І     Ԇ     چ     ߆  '     P        ]     |  	                    '   ȇ  +             -  )   I     s               È     ؈            $        @     R  "   m                 (        ԉ     ؉  "   މ  +     -   -     [     t                 O                  4     K     Y  %   m       )     !   ܋  "        !     =  +   T                 !        ی                     3     T     o                    Ѝ  4             4     F     ^     y               Ǝ        !        &  4   @  M   u  2   Ï            *   .  8   Y                    ΐ       3     $   1  +   V                         ϑ                     =     R     T  D   l       7     ;        ,     L  !   k            s   Ó     7     O     l     }                    ה                         T     g     {                    Ɩ  '   ݖ  
                  5     :     R     V     h  H        Η                 %        B     \  #   u               Ә     ܘ                 3     T  "   a  (          %   ə       2   	     <     E  #   ^  *                    #   ǚ            	     	     "     ;   9  #   u  <        ֛            .     	   ?     I  `   [       !   ќ  )             !     '     /  q   <               ٝ                    (     =     \  "   {               О                    )     B  #   W     {       g                    -   ؠ       !        <  "   M  '   p  Q                        4     B     X     u               ̢                     *     K     `      s               ã     ԣ  -        "     <  "   P  b   s  )   ֤                .  ,   I     v       	     "     %                         &     )   8     b  ^   u     Ԧ  $     %        9  ^     _   K  }        )  )     '   
  >   2  D   q  !     '   ت  -      #   .     R  )   r       )     )     ,        :     Z     s            E     $      A   %  )   g               ʭ                %  q   :       :   ɮ          "     1     Q     n                 0   ̯               0  )   F  &   p               ϰ       )        (  %   8  %   ^  ,     '     :   ٱ       -   3     a  .   q            '   ǲ  $     "        7     C     `  *   n            )     o   ҳ     B     [  6        L     N  0   U        !     "   ɵ  #             "     @     V  !   u       
          <   Ҷ  %     >   5     t     }                      d   ӷ  *   8  0   c  6        ˸     Ӹ               
       0   *     [  !   n            $                       2     C  $   `  "     $        ͺ                     ,     >     P     b     o            '               $      +   E  "   q       )        ż     ׼               *  '   >     f            <                        /  m   J          Ӿ                  +   :  3   f  1        ̿  '   ڿ  -        0  '   9  '   a  .     	                            /     K     g                      *     ?     B   B  p          /               .     O     )   [            	          5                  2     H     c  :   }                                             8     N     _     e  	   r     |                                     
     
     	        %  !   +  )   M     w                 F     N   !     p  "   ~            -     -     $     #   9  0   ]  6                    (     1     )   O     y       !                     %        4  &   H     o             7     .      4   /     d                      %             !     6     M     f                 ,                       "     5     H  #   ]            B                  4     G     b     y  &                              &   (     O     g            ;     V     "   9  &   \  !                    /     H     F   X  w     N     (   f            I     $     '   &     N  %   g                      $     '     *        E     _     n  J                    -     +   J     v  $   |       "     +     J     %   D     j        "                             +     >     V     k       %                    %        D     [     n            [          !        0     I     ]     b                                             .     F     b     x                           1        6     F     ^     q               ^  1   l       0               !        :     W     m                                                       .     @  &   V     }                      '     &   &     M  L   Z            !                  ,     I     ^     p                      #     #     $        0     @  &   Q     x  !                              	     7        >  %   X  [   ~  w     7   R  K     #     /        *     E     c  &     U     @     Q   ?                 +          R     L   q  .               F   	     P     f     }                                    &  2   A  !   t  #                                 /     O     g       (     #             
          =  )   P     z       '     '     '        %  0   D     u       -     8             -  !   D      f            .          !     B   !  E   d  B         %     /        "  .   <     k  1     *     7             "  	   ;     E  #   ^                      2     1     .   G     v     z  N    K    L  $     q  <     H     {     1          #          %        .  .   H  :   w       (          3        @     Y     f     {  "     	     	     !     0     /      0   P  ,     1     #     -     -   2  .   `  #     %     
               .     4   %     Z     b  >   t       >        	     (  .   +  2   Z  .     1               )             7     M     V     p  -               
               4        .  ,   4     a                               ,    !   J 6   l +    ,    %    $   "    G k    W   U #    "                           ! !   9    [    w #    %                    1    G )   ]                 *    &        #    %   ?    e             $    @    J   4 +    .    U       0 !   E    g *   n '            6       1	    K	 6   \	 (   	 $   	 .   	 c   
    t
    
 E   
 /   
    (    C '   O ?   w             	    E    7   @ "   x                 8       ?    T *   n .    *    )        
   -    8 5   V         %        >    E   2 3   x     "        &   
 (   1    Z ,   u     $            +    %   H &   n *    6    K       C    ] |   }         H    #   ^ 
            &        '    :           "    < 0   S         ?               '    6    F    \ '   q 5                =       B    N    b    v         3                     \   8 .            8    A   % 6   g +           "               )        : [       $    C    \ $   p                 ,    #   3    W    w 8    9                  	     !  .   8     g      v       8     $     +   ! V   ;! 0   ! +   ! +   !    "    "    %" 
   *" +   5" I   a" &   " 	   " 
   "    " $   "    # 8   ## <   \#    #     # :   # !   $ %   *$ #   P$    t$    $    $    $ -   $    %    4% 3   R%    %    %    % 1   %    %    % 7   % -   & 7   F&    ~&    &    &    &    & v    ' &   w'    ' #   '    '    ' 0   ( &   B( D   i( +   ( *   (    ) !   #) A   E)    )    )    ) *   ) $   *    )*    D*    R* )   k* #   *    * $   * !   *    +    2+ A   D+ 2   +    +    + !   + "   ,     0,     Q, &   r, &   , $   , "   , I   - i   R- @   - (   - /   &. )   V. J   .    . #   .    .    /    7/ ?   T/ .   / >   /    0    !0    :0    P0    f0    z0 $   0 !   0    0    0 +   0 _   "1    1 P   1 Q   1 -   -2 %   [2 (   2    2 0   2    2    3 "   3    3    3    3 "   4 *   :4    e4    4    4    4    g5    H6    [6    x6 
   }6 (   6    6    6 J   6    :7    H7     Y7    z7    7    7    7    7 l   7    E8 !   Y8    {8    8 B   8    8 (   
9 <   39     p9 6   9    9    9 )   9 #   $: =   H: *   : (   : ,   :    ; ,   %; )   R; 6   |; 	   ; "   ; -   ; 2   <    A<    C<    W< *   \<    <    <    < 
   < 0   < V   < 1   H= W   z=    = %   =    	> 9   >    R>    `>    >    ? %   )? *   O?    z?    ~?    ?    ?    ?     @    8@    X@    k@    @    @    @ +   @ &   A 2   ,A !   _A     A    A    A    A    A    B    0B &   IB &   pB &   B    B    XC     D *   6D 1   aD    D (   D    D 7   D 5   2E i   hE .   E     F    "F    =F    JF !   iF    F !   F    F     F    G    *G    @G 1   RG    G    G     G (   G    H    H "   0H F   SH "   H    H '   H z   H ?   yI (   I    I    I 8   J $   UJ    zJ 	   J &   J '   J    J    J    J    J )   K 5   ,K    bK s   vK $   K 5   L 9   EL    L w   }M w   M    mN    N 4   O 1   O P   +P \   |P '   P -   Q 6   /Q 6   fQ 1   Q >   Q !   R ,   0R 3   ]R 8   R 2   R '   R ,   %S $   RS     wS a   S /   S `   *T B   T &   T &   T (   U +   EU 2   qU    U    U /   ZV P   V .   V    
W -   %W "   SW    vW    W "   W    W 8   W &   )X    PX    mX 1   X 7   X    X    Y    1Y (   FY .   oY    Y '   Y '   Y .   Y )   .Z E   XZ %   Z =   Z    [ 9   [    O[    o[ @   [ 2   [ .   \    0\ $   A\    f\ /   z\    \    \ 0   \    \    ]    ] K   ^    ^    ^ ;   ^ $   _ )   7_ ,   a_ ,   _ $   _    _ +    ` $   ,` 1   Q` !   ` 
   `    ` 6   ` 0   a H   6a    a    a    a *   a    a    a u   a 7   ob 4   b ;   b    c    c    6c    Qc    cc )   ic ?   c    c '   c (   d    Bd 7   Wd &   d    d &   d    d )   e ?   =e '   }e )   e *   e    e -   f    Ef     cf     f     f    f #   f $   g )   'g 1   Qg /   g    g -   g 5    h *   6h    ah 1   oh    h 6   h -   h    $i    Ai ,   ]i -   i '   i    i ;   i !   2j    Tj    \j    rj n   j &   k    (k (   Dk %   mk    k 3   k Q   k L   9l    l +   l B   l    m ,   m 5   9m 1   om 	   m    m    m &   m #   n &   /n #   Vn %   zn "   n    n    n    n +   n E   +o T   qo    o    Hp /   p    q    3q 2   Rq ]   q 6   q    r    9r    Gr "   Ur A   xr    r !   r    r    s    +s F   Ks    s "   s    s    s 	   s    s    t    t    6t    Mt    dt    jt 
   xt    t "   t    t    t    t    u    u    u    &u 
   6u    Au    Vu !   cu (   u    u    u     u    v d    v I   v    v *   v    
w    w +   ,w )   Xw '   w     w 2   w :   w    9x    Jx    bx *   px 3   x 5   x    y &   "y 1   Iy    {y 3   y $   y +   y    z 4   7z .   lz 2   z ,   z L   z D   H{ @   { 1   {     | (   |    F| .   f| )   |    |    |    | &   }    @}    `}    x} =   } @   }    ~    ~ $   /~    T~    h~    {~ 3   ~ #   ~ "   ~ `    *   p 0        %    !    &   2 =   Y *           Ԁ         +       D '   a         C    l    .   n 8    3   ւ    
    & 0   , H   ] T    j       f \    2   R #    
    O    7    &   <    c +   ~            Ȇ     -    2   5 :   h '       ˇ     T        U "   q     <    2        3   "    V )   c :    O   ȉ .       G 1   e 3       ˊ (    #    '   5 %   ]         &   Ë *    0        F    g     4       ی            !    )    H    Ӎ "    "       1    M )   R    | "    "        ӎ %    '    "   B )   e     1       ׏ #        (   5    ^ #   u %    >               1    L    k        F =   R '    F            .   6 !   e                ٓ            )    7    K    `    }             +   ޔ    
    ( #   D )   h     %    0   ѕ     U       f     (    '   ˖      "       7    T (   q )       ė (        B   ( B   k D            D   +    p 4           ٙ     '        (    H 6   Q     %    \   Κ    + D    X    )   N ?   x     '   ֜ (    *   ' t   R R   ǝ r        !    &   ̞ :    =   . ]   l d   ʟ 9   /    i     a    #        "   /    R $   o !    3    '    #    $   6 D   [ *    *   ˢ     "       1 %   H "   n %    !    %   ٣ '    6   ' /   ^         #        ;    +   7 ,   c <    :   ͥ >    )   G =   q #    '   Ӧ F    B   B %        '   Ƨ ,    "       > E   S     !    _   ۨ S   ; U                   w         g        X            S       U  ^  |                    2  e  K  H  ^    1                          /  6    C              "                              O         F  r   O      b  '      ^      Q  A      G     
  ,                                                      s                        y  L    I    '   /    =          l   l  5          ;      z   <  .          ^  v              J             H  Q    J       4            O  w  8  o    Q        
       m                     2  3       4       g                 (         X  &           0            8            e      Z   j      r      !  Q         A  ,              6   K  2      n  ]      )     y                   c              d    d  h  s     @      P  ;            &    ?     3  n  q        /  v     R  m              )   [   @        >      -  s    v      s    S  ,       f          Z  0                 @    T    {            i      
         i  J          M       Z        $  N  *     0          o                     5            9   !  _  ?                 N          {      #  "    *  1    7  Y           -              N   P   #  m  f           O     p              `  -                        I       W             7  r  Y    }  )              w      h       ?           _                                      u    E  ]               5                                j  k  |   ,  L      k      G  P  ]       
           j  [     [           (  !                                                                     	  +              @               k    O    z     9  ]              4        *  b       1    )                    %                                      v       ,  V               E   L                                 M  &                    \        ;                            '    0      F      a                 q  ?                          n                        %                (  Z     A      )                          :    {   c       5     W      l  ;   T      Y  (  Z                <    b   7   f      M  +            S    0            9  t          B            <     D          5          S  u     B  3             3           }  @  `                       /            H                  9  z  =                     L          /   1             \                      -       [                    !                {              7  I   &    9         A      U      K  M                 e                        `  m    _   `                          e            _  |          :        I          >            (                 i            Y      b      j   p    n                 e      
  _  4          >  q   P  E    g                 K       *  %        X                }                           o  a  N  -      %     x          H   	                1           4      z      V         t         "   =                        W                       c                                   \                            ?         d        X                               6  .    f      :   E  s              	            H          S      g        K  D            }               o                       D                         a    J    ^   G  $                  i    j                p          ~          T           L  G          c                                   +           k        Y             l           C        q          *   8        <         T      q                 N     <  !             2   h  8        p                  6      y                     ~                          :  B       u    D              8                 #      l    F  w        V          x      u      W      R                 3    P            E      V   >                g      k                             .    b                               U                    r        m              =  2  "            c  y      A   G               R             B    a      \  ]  C  W      $      M                            V  \              >     .                                 p   	        v      F      n        +    :  d  6      x             J      t  "                    I            U                                            C        t          h          B  D  .                     ;        x               %      U                Q      C   	         F                              o  [  7    a      =                   #        r    $      R          `       &  R    T                    #  |        '  d      '            i   u  +     h        t            ~           f  $  X              ~                   total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: option '%c%s' doesn't allow an argument
 %s: option '%s' is ambiguous; possibilities: %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File size: %s
 File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS Import ZFS wrapping key stored in FILE. Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List coreboot tables. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... M MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MODULE Mail xorriso support requests to <bug-xorriso@gnu.org>. Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Option -- switches to native xorriso command mode. Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] PUBKEY_ID Paletted  Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot into firmware setup menu. Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Render Apple .disk_label. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show CBMEM console content. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show the contents of a file. Show the current mappings. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Switch to native disk drivers. If no modules are specified default set (pata,ahci,usbms,ohci,uhci,ehci) is used Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 T TARGET Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This entry can be booted by any user. This requires setting GRUB_DEFAULT=saved in %s/default/grub.\n Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. Your embedding area is unusually small.  core.img won't fit in it. Your xorriso doesn't support `--grub2-boot-info'. Some features are disabled. Please use xorriso 1.2.9 or later. Your xorriso doesn't support `--grub2-boot-info'. Your core image is too big. Boot as disk is disabled. Please use xorriso 1.2.9 or later. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `cryptomount' command fails: %s `loopback' command fails: %s `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format blocklist FILE blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s cannot compress the kernel image cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot get translator command line for path `%s': %s cannot open OS file `%s': %s cannot open `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. diskboot.img size must be %u bytes do not probe for filesystems in DEVICE domain name component is too long don't update LED state done embed FILE as an early config embed FILE as public key for signature checking embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enable ARCS (big-endian mips machines, mostly SGI) boot. Disables HFS+, APM, sparc64 and boot as disk image for i386-pc enable sparc boot. Disables HFS+, APM, ARCS and boot as disk image for i386-pc enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to get canonical path of `%s' failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification install GRUB images under the directory DIR/%s instead of the %s directory install even if problems are detected invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid block size invalid color specification `%s' invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no `/' in canonical filename no command is specified no decryption key available no network card found no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory of TFTP server route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the argument `%s' requires an integer the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for label use COLOR for label background use COLOR for text use DIR as the EFI System Partition root. use FILE as font (PF2). use FILE as font for label use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub-2.00+20130519
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-09-26 11:40+0200
Last-Translator: Anton Meixome <meixome@certima.net>
Language-Team: Galician <proxecto@trasno.net>
Language: gl
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=(n != 1);
X-Generator: Virtaal 0.7.0
X-Launchpad-Export-Date: 2013-07-03 10:56+0000
               memorial total: %d KiB
     Non hai dispoñíbel ningún modo favorito
     Modo favorito: %ux%u
   a suma de comprobación EDID non é correcta   Versión de EDID: %u.%u
   Fallou a inicialización do adaptador de vídeo   Non hai ningunha suxestión dispoñíbel   VBE info:   versión: %d.%d  OEM software rev: %d.%d
   ou:   (de esquerda a dereita)  (medial)  (de dereita a esquerda)  - A partición comeza en %llu%sKiB  - Tamaño do sector %uB  - Tamaño total %llu%sKiB  - Tamaño total descoñecido  [OPCIÓN...] %.*s: ARGP_HELP_FMT o parámetro debe ser positivo %.*s: ARGP_HELP_FMT o parámetro require un valor %.*s: Descoñécese o parámetro ARGP_HELP_FMT %ds %ds restantes. parece que %s contén un sistema de ficheiros %s que non se sabe se reserva ningún espazo para un arranque de tipo DOS. Instalar GRUB pode conducir á DESTRUCIÓN do SISTEMA_DE_FICHEIROS se datos valiosos se sobrescriben coa instalación de grub (--skip-fs-probe desactiva esta comprobación, utilícea segundo o seu propio criterio) %s parece conter un mapa de partición %s e LDM que non se sabe se ten unha combinación segura. Instalar o GRUB alí pode conducir á DESTRUCIÓN do SISTEMA_ DE_FICHEIROS se determinados datos valiosos se sobrescriben coa instalación do grub (--skip-fs-probe desactiva esta comprobación; utilícea segundo o seu propio criterio) %s parece conter un mapa de partición %s que non se sabe se reserva espazo para o arranque de estilo DOS. Instalar o GRUB alí pode conducir á DESTRUCIÓN do SISTEMA_ DE_FICHEIROS se datos valiosos se sobrescriben coa instalación do grub (--ignore-fs-examine desactiva esta comprobación; utilícea segundo o seu propio criterio) %s non é compatíbel con UUID %s xera un deseño de teclado para GRUB utilizando ckbcomp\n %s é obsoleto. Utilice gfxpayload=%s antes da orde linux no seu lugar.
 %s é obsoleto. O modo VGA %d xa non se recoñece. Utilice gfxpayload=LARGOxALTO[xFONDO] antes da orde linux no seu lugar.
 %s aínda non é compatíbel con grub-mkconfig.\n %s, co Hurd %s %s, co Hurd %s (modo restauración) %s, con Linux %s %s, con Linux %s (modo restauración) %s, con Xen %s e Linux %s %s, con Xen %s e Linux %s (modo restauración) %s, co hipervisor (VMM ou monitor de máquina virtual) Xen %s, con kFreeBSD %s %s, con kFreeBSD %s (modo restauración) %s, con núcleo %s (vía %s) %s, con núcleo %s (vía %s, modo de restauración) %s: NON COINCIDE O HASH
 %s: Aceptar
 %s: ERRO DE LECTURA
 %s: Demasiados argumentos
 %s: Debe executar isto como root\n %s: erro: %s: info: %s: opción incorrecta -- «%c»
 %s: a opción «%c%s» non permite un argumento
 %s: a opción «%s» é ambigua; posibilidades: %s: a opción «--%s» non permite un argumento
 %s: a opción «--%s» require un argumento
 %s: a opción «-W %s» non permite un argumento
 %s: a opción «-W %s» é ambigua
 %s: a opción «-W %s» require un argumento
 %s: a opción require un argumento -- «%c»
 %s: a opción require un argumento -- «%s»\n %s: opción non recoñecida '%c%s'
 %s: opción non recoñecida «--%s»
 %s: aviso: (32-bit) (64-bit) (ERRO DE PROGRAMA) Non se coñece a versión!? (ERRO DE PROGRAMA) Deberíase ter sido recoñecida!? (en %s) - Etiqueta «%s» - Hora da última modificación %d-%02d-%02d %02d:%02d:%02d %s --MÁIS INFORMACIÓN-- -h HASH [-c FICHEIRO [-p PREFIXO]] [FICHEIRO1 [FICHEIRO2 ...]] -l | -r | [-s] grubdev osdisk. ,5 compatíbel coa interface protexida de 16 bit
 non compatíbel coa interface protexida de 16 bit
 compatíbel coa interface protexida de 32 bit
 non compatíbel coa inteface protexida de 32 bit
 =VAL > RAM non volátil de almacenamento da ACPI RAM reclamábel da ACPI Fallou o apagado ACPI ENDEREZO ENDEREZO VALOR [MÁSCARA] ENDEREZO [TAMAÑO] ENDEREZO1,MASCARA1[,ENDEREZO2,MASCARA2[,...]] ADDRESS DNSSERVER Desactivado o APM
 Sen o APM
 Activado o APM
 Co APM
 ARGP_HELP_FMT: %s o valor é menor que ou igual a %s ASCII Aceptar os finais de liña estilo-DOS CR/NL. Terminais de entrada activos: Terminais de saída activos: Adaptador «%s»:
 Engadir un servidor de DNS Engadir un enderezo de rede. Engadir unha ruta de rede. Opcións avanzadas para %s Opcións avanzadas de %s (co hipervisor Xen) Permitir a interrupción con ESC. Preguntar polo nome do ficheiro desde o que reiniciar. Suponse que a entrada está en hexadecimal. Suponse que a entrada é unha frase de paso. Suponse que a entrada está en bruto. Tentando descifrar a chave mestra... Tentando instalar o GRUB nun disco con múltiplas etiquetas de partición ou tanto con etiquetas de partición e sistema de ficheiros. Aínda non se permite iso. Tentar instalar o GRUB nun disco con múltiplas etiquetas de partición. Isto aínda non é quen de facelo. Tentar instalar o GRUB nun disco sen particionar ou nunha partición. É moi MALA idea. Terminais de entrada dispoñíbeis: Terminais de saída dispoñíbeis: B B/s BIOS_DUMP [INT10_DUMP] BLOQUE BYTE:BIT Modo de imaxe de fondo. Cartafol base da lista de hashes. Sistema de inicio por BIOS. Arrancar un sistema operativo. Arrancar no modo de usuario único. Arrancar con mensaxes de depuración. Arrancar con mensaxes prolixas. Arranque de «%s» Arranque dunha lista de ordes Arranque no modo cego Ruta de arranque: %s
 Ruta de arranque: non está dispoñíbel
 Alto dentro do GDB CGA  COR ORDE [ARGUMENTOS] A CPU inactiva non ralentiza o procesador
 A CPU inactiva ralentiza o procesador
 CS5536 en %d:%d.%d
 Non se pode activar a área da ROM. Cambiar os dispositivos configurados. Cambiar o tipo de partición Comprobar a tecla Alt. Comprobar a tecla Control. Comprobar a tecla Maiús. Comprobar as funcionalidades da CPU. Comprobar os hashes de ficheiros co FICHEIRO da lista de hashes. Probar se a CPU é compatíbel co modo (predeterminado) de 64 bit (longo). Comprobar o estado do modificador de tecla. Comprobar se o usuario está na LISTAUSUARIOS. Comproba o ficheiro de configuración do script de GRUB en busca de erros de sintaxe. Despexar a pantalla. Despexada a marca activa en %d. 
 Ordes: Comparar FICHEIRO co ficheiro local LOCAL. Comparar o ficheiro «%s» con «%s»:
 Comparar dous ficheiros. Contar UUID XNU do dispositivo. Calcular ou comprobar a suma de comprobación do hash. Configurar o porto serie. Continuar bucles Converter os formatos comúns de tipos de letra en PF2 Copiar FICHEIRO no ficheiro local LOCAL. Copiar FICHEIRO na saída estándar. Non foi posíbel localizar o controlador FPSWA Non foi posíbel atopar o volume físico «%s». Algúns módulos da imaxe do núcleo deben faltar. Non foi posíbel cargar sha256 Non foi posíbel cargar sha512 Crear estruturas tipo BIOS para retrocompatibilidade co SO existente. Crear un ficheiro baleiro de bloque de entorno. Tipos de terminfo actuais: DISPOSITIVO DISPOSITIVO [PARTICIÓN[+/-[TIPO]]] ... O DISPOSITIVO debe ser un de sistema operativo (i.e. /dev/sda). NOME_DO_DISPOSITIVO CARTAFOL CARTAFOL [OSBundleRequired] DNSSERVER Ferramenta de depuración para o controlador do sistema de ficheiros. Declarar rexións de memoria como defectuosas (badram). O descompresor é demasiado grande Defina unha entrada de menú. Defina un submenú. Eliminar un enderezo de rede. Retirar unha ruta de rede. Eliminar o controlador de bucle de retorno especificado. Eliminar variábeis. Determinar o controlador. Determinar o UUID do sistema de ficheiros. Determinar a etiqueta do sistema de ficheiros. Determinar o tipo de sistema de ficheiros. Determinar o tipo de mapa de particións. Dispositivo %s: Devid: %s
 DevId: non está dispoñíbel Cor directa, máscara:  %d/%d/%d/%d  pos: %d/%d/%d/%d Desactivar ACPI. Desactivar SMP. Desactivar toda a saída de arranque. Desactivar/activar SMART (0/1). Descartando a partición aniñada impropiamente (%s, %s, %s%d) Estatísticas da caché de disco = %lu (%lu.%02lu%%), perdidos = %lu
 A conta de discos debe preceder a lista de discos.
 Presentar a versión FPSWA. Amosar o estado de sanidade SMART. Presentar unha liña de texto. Amosar a lista de bloqueo do FICHEIRO. Presentar a saída en todas as consolas. Amosar o modo de enerxía. Presentar a utilización desta orde e saír. Presentar esta axuda e saír. Amosar/definir a data e hora actual. Non amosar nova liña ao final. Non imprimir mensaxes. Non probar ningún dispositivo de disquete. Non usar APM para deter o computador. Non fai nada, resultado satisfactorio. Non fai nada, resultado non satisfactorio. Non presentar as mensaxes de diagnóstico do arranque. Non carga as táboas do servidor especificadas en lista separada por comas. Non reiniciar, só deter. Non parar tras o primeiro erro. Non actualizar EBDA. Podería corrixir fallos ou paradas nalgúns BIOS, pero faise ineficaz se o SO non recibe RSDP do GRUB. ENVVAR ENVVAR [ENVVAR] ... ERRO: non se atopou un deseño de teclado correcto. Comprobe a entrada.
 ESC en calquera momento para saír. EXPRESIÓN EXPRESIÓN ] Tempo transcorrido: %d.%03d s 
 Tempo transcorrido: %d.%03d segundos 
 Non é posíbel a incorporación. GRUB só se pode instalar nesta configuración mediante o uso de listas de bloques. Porén, as listas de bloques non son FIÁBEIS e non se recomenda o seu uso. Emular a secuencia de atallo de teclado Activar que se interpreten os escapes coa barra invertida. Escriba o contrasinal ZFS:  Entrar no KDB ao iniciar. Entrar no modo normal. Introducir frase de contrasinal de %s%s%s (%s):  Introduza o contrasinal:  Escriba o seu nome de usuario:  Produciuse un erro ao procesar os argumentos da liña de ordes
 Avaliar unha expresión. Fallou a saída Saír do GRUB. Saír de bucles Saír do modo normal. Exportar variábeis. Exportar a versión 1 das táboa ao SO. Exportar a versión 2 e versión 3 das táboas ao SO. FICHEIRO FICHEIRO [ARG ...] FICHEIRO [ARGUMENTOS...] FICHEIRO | TEMPO [PITCH1 DURACIÓN1] [PITCH2 DURACIÓN2] ...  FICHEIRO... FICHEIRO1 FICHEIRO2 NOMEDOFICHEIRO ORDE SISTEMAFICHEIROS [VARIÁBEL] FICHEIRO|prompt FORMATO O protocolo FPSWA non foi quen de atoar a interface Revisión de FPSWA: %x
 DESDE-ATA[,DESDE-ATA] DE[K|M|G] A[K|M|G] Fallou FT_Init_FreeType Produciuse un fallo no arranque de ambas as entradas, a predeterminada e a proba de fallos.
 Fallou ao crear a árbore do «device-mapper» Volta a «%s» Tamaño do ficheiro: %s
 O sistema de ficheiro «%s» non admite a incorporación Os ficheiros difiren no desprazamento %llu: 0x%x [%s], 0x%x [%s]
 Os ficheiros difiren en tamaño: %llu [%s], %llu [%s]
 Non se pode acceder ao sistema de ficheiros Sistema de ficheiros de tipo %s Completar o MBR híbrido da unidade GPT do DISPOSITIVO. As particións especificadas serán unha parte do MBR híbrido. Permítense ata tres particións. O TIPO é un forma de MBR. + significa que esa partición está activa. Soamente pode estar activan unha partición. Finalizar a carga do emulador EFI. Proba primeiro o dispositivo SUXESTIÓN se se estiver a executar en ARC. Se SUXESTIÓN remata en coma, probe tamén as subparticións Proba primeiro o dispositivo SUXESTIÓN se se estiver a executar no BIOS. Se SUXESTIÓN remata en coma, probe tamén as subparticións Proba primeiro o dispositivo SUXESTIÓN se se estiver a executar en EFI. Se SUXESTIÓN remata en coma, probe tamén as subparticións Proba primeiro o dispositivo SUXESTIÓN se se estiver a executar en IEEE1275. Se SUXESTIÓN remata en coma, probe tamén as subparticións Proba primeiro o dispositivo SUXESTIÓN se admitir o acceso directo ao hardware. Se SUXESTIÓN remata en coma, probe tamén as subparticións Primeiro, tente o HINT do dispositivo. Se HINT termina en coma, tente tamén subparticións Corrixir o problema de vídeo. Atopouse %s en %s (%s)\n Atopouse %s en %s\n Atopouse o micronúcleo GNU Mach: %s Atopouse o módulo Hurd: %s Atopouse o núcleo NetBSD: %s\n Atopouse o fondo: %s\n Atopouse a imaxe initrd: %s\n Atopouse o cartafol do módulo núcleo: %s\n Atopouse o núcleo de FreeBSD: %s\n Atopouse a imaxe de linux: %s\n Atopouse o tema: %s\n Erro %d de Freetype ao cargar o glifo 0x%x para U+0x%x%s Conxelar a configuración ATA de seguranza ata reiniciar. Venres G Versión do GNU GRUB %s Menú de arranque GRUB GRUB aínda non sabe como deter esta máquina! emulador GRUB. DISPOSITIVOGRUB=DISPOSITIVOPLAN9 Lixo en ARGP_HELP_FMT: %s Xerar un deseño de teclado GRUB a partir do da consola. Xerar o hash dun contrasinal PBKDF2. Xerar un ficheiro de configuración do GRUB Xerar unha imaxe independente (que conteña todos os módulos) no formato seleccionado Obter a suma de comprobación CRC32 do FICHEIRO. Obter información sobre a caché do disco. Obter/estabelecer parámetros ATA do disco. GiB GiB/s HASH SUXESTIÓN Deter o sistema, se é posíbel usando APM. Detén o equipo. Esta orde non funciona en todas os sistemas de firmware. Manexar N bytes no ficheiro de saída. Ola mundo Hércules  ID IMAXE1 [IMAXE2 ...] PUNTO_DE_MONTAXE ORDES de IMAGE_PATH Importar a chave ZFS de embalaxe almacenada no FICHEIRO. Dispositivo virtual incorrecto: non hai un tipo dispoñíbel Insira un módulo. Instalar o GRUB na súa unidade. A instalación finalizou. Non se informou de ningún erro. Referencia cara atrás incorrecta Nome de clase de carácter incorrecto Carácter de ordenación incorrecto A orde %s é incorrecta.
 O contido de \{\} é incorrecto Dispositivo incorrecto «%s».
 Conta de disco incorrecta.
 A expresión regular precedente é incorrecta Fin de intervalo incorrecto Expresión regular incorrecta Invocar a configuración de enrutamento do usuario. K ARGUMENTOS DO NÚCLEO TECLA Tecla para arrancar rapidamente con esta entrada. KiB KiB/s Dispositivo virtual como folla (sexa ficheiro ou disco) O antigo parámetro «ask» xa non se admite. Lenda: máscara/posición=vermello/verde/azul/reservado Tamaño do hash xerado Tamaño do salgado (salt) Listas os servidores de DNS Lista os dispositivos PCI. Lista todos os ficheiros. Relacione os modos de vídeos dispoñíbeis. No caso de dar a resolución, amosar só os modos que sexan coincidentes. Listar táboas do arranque do núcleo. Lista dispositivos e ficheiros. Lista de dispositivos ou ficheiros. Listar dispositivos. Listar ficheiros nA RUTA. Lista o mapa de memoria fornecido polo firmware. Lista de modos de vídeo compatíbeis: Lista de usuarios aos que se lles permite arrancar con esta entrada. Liste ou seleccione un terminal de entrada. Liste ou seleccione un terminal de saída. Listar as variábeis actuais. Lista os tipos de letra cargados. Lista de variábeis procedentes do ficheiro de bloque de entorno. Cargar imaxe XNU de 64-bit. Cargar o envorcado do BIOS. Cargar o entorno FreeBSD. Cargar o módulo do núcleo FreeBSD (ELF). Cargar o módulo do núcleo FreeBSD. Cargar FreeDOS kernel.sys. Cargar Linux. Cargar NTLDR ou BootMGR. Cargar o módulo do núcleo NetBSD (ELF). Cargar o módulo do núcleo NetBSD. Cargar o núcleo de Plan9. Cargar o cartafol de extensión XNU. Cargar paquete de extensión XNU. Cargar extensión XNU. Cargar imaxe XNU. Cargar o disco de memoria XNU. Está dispoñíbel no SO como md0. Cargar o envorcado «propiedades-do-dispositivo». Cargar unha imaxe PXE. Cargar un mapa de teclado. Cargar o núcleo multiarranque 2. Cargar un módulo multiarranque 2. Cargar un núcleo multiarranque. Cargar un módulo multiarranque. Cargar unha imaxe de benvida para XNU. Cargar unha imaxe de hibernación XNU. Cargar e inicializar o emulador EFI. Cargar outro cargador de arranque. Cargar outro ficheiro de configuración e tomar só as entradas de menú. Cargar outro ficheiro de configuración sen cambiar o contexto e tomar del soamente as entradas de menú. Cargar outro ficheiro de configuración sen cambiar de contexto. Cargar outro ficheiro de configuración. Cargar outra carga útil en arranque do núcleo Cargar imaxe de fondo no terminal activo. Cargar as táboas ACPI do servidor e as especificadas mediante argumentos. Cargar initrd. Cargar o disco de memoria kOpenBSD. Cargar o núcleo de FreeBSD. Cargar o núcleo de NetBSD. Cargar o núcleo de OpenBSD. Só carga as táboas especificadas en lista separada por comas. Carga o mesmo ficheiro de múltiplas maneiras. Carga variábeis procedentes do ficheiro de bloque de entorno. Cargar a chave de cifrado zfs. Tipos de letra cargados: Cargando GNU Mach ... Cargando Linux %s ... Cargando Xen %s ... Cargando o ramdisk inicial ... Cargando o núcleo de FreeBSD %s ... Cargando o núcleo de Illumos ... Cargando o Hurd ... M Produciuse un fallo na comprobación do MAC ENTRADA_DE_MENÚ é un número, un elemento do menú ou un identificador dun elemento do menú. MÓDULO O enderezo de correo para solicitudes de apoio técnico a <bug-xorriso@gnu.org>. Facer imaxe de do GRUB en CD-ROM, disco, dispositivo USB ou disquete arrancábel. Facer un ficheiro co deseño do teclado GRUB. Facer unha imaxe arrancábel de GRUB. Facer unha unidade virtual cun ficheiro. Facer activa a partición Xestionar o controlador de asignacións do BIOS. Os parámetros obrigatorios ou opcionais das opcións longas son tamén obrigatorios ou opcionais para calquera das opcións curtas que se correspondan. Manipular dispositivos PCI. Medida de tempo utilizado por ORDE Esgotouse a memoria Tipo de memoria: DDR2. Tipo de memoria: Descoñecida. Identificador da entrada de menú. A entrada do menú non está especificada. Tipo de entrada de menú. MiB MiB/s aAdmítese unha liña de edición mínima tipo BASH. Para a primeira palabra, TAB lista as posíbeis ordes de compleción. En calquera outra posición, TAB lista os dispositivos posíbeis ou os ficheiros que completar. %s É compatíbel co modo mínimo de edición en pantalla estilo Emacs. Completado de listas con TAB. Prema Ctrl-x ou F10 para iniciar, Ctrl-c ou F2 para a liña de ordes ou ESC para descartar cambios e volver ao menú do GRUB. Faltan argumentos
 Falta o ficheiro de entrada
 Luns Monocromo  Máis ca un dispositivo de instalación? Máis ca unha entrada do menú? Monta un dispositivo cifrado. Montar todos os volumes que teñan unha indicación «boot» estabelecida. Montar todos. Montar por UUID. Montar os dispositivos cifrados. NOME NOME [VARIABEL] [SUXESTIONS] NÚMERO NÚMERO_DE_SEGUNDOS Nome	Contador Ref	Dependencias
 Están a utilizarse os controladores nativos do disco. Desbótase utilizar a interface do disco de firmware. Protocolos de rede: Escribiuse un novo MBR en «%s»
 No foi posíbel atopar CS5536 Non se atopou FPSWA Non hai estatísticas dispoñíbeis sobre a duración do arranque
 Sen ordes especificadas.
 Non se especificou ningún dispositivo.
 Non hai estatísticas dispoñíbeis sobre a caché do disco
 Non se reasignaron controladores Non se detectou ningún sistema de ficheiros coñecido Non hai coincidencias Non se especificou a ruta.
 Non se especificou ruta nin dispositivo.
 Non hai expresión regular anterior Non hai ningunha árbore virtual de dispositivos dispoñíbel Non-chain 4 (modo de vídeo de 256 cores)  Non hai parámetros abondo para a orde.
 Agora conecte o depurador remoto, por favor. Número de iteracións PBKDF2 SO disco #núm ------> dispositivo GRUB/BIOS Erro na apertura do ficheiro do SO %s: %s Opción -- troca o modo de ordes ao nativo de xorriso. Opcións: Fóra do intervalo de procura: %d
 Fóra do intervalo de substitución (%d, %d)
 Sobrescribir a suposición dos dispositivos Plan9. P ORDES DE PARTICIÓN RUTA O hash do PBKDF2 do seu contrasinal é %s
 PORT PORTO VALOR [MÁSCARA] IDDECHAVEPÚBLICA En paleta  Procesa a configuración legada en novo contexto A análise da configuración legada en contexto novo collendo só as entradas do menú Procesa a configuración legada no mesmo contexto A análise da configuración legada no mesmo contexto collendo só as entradas do menú Parte núm: %s.
 A partición %d está activa agora. 
 Partición %s: O estilo de partición «%s» non admite a incorporación Camiño : %s
 Camiño: non está dispoñíbel Leva a efecto as ORDES na partición.
Utilice a «axuda da ferramenta partool para PARTICIÓN» para obter a lista das ordes dispoñíbeis. Realizar unha procura de DNS Realizar unha autoconfiguración IPV6 Realizar asignacións directas e inversas. PiB PiB/s Planar  Afinar. Non use o vello título «%s» para GRUB_DEFAULT, utilice «%s» (para versións anteriores á 2.00) ou «%s» (para a 2.00 ou posteriores) GUID do grupo: %016llx
 GUID do grupo: non dispoñíbel Nome do grupo: %s
 Nome do grupo: non dispoñíbel Estado do grupo: activo Estado do grupo: estragado Estado do grupo: exportado Estado do grupo: dispositivo ARC de nivel 2 Estado do grupo: potencialmente activo Estado do grupo: reservado para repoñer en quente Estado do grupo: non dispoñíbel Estado do grupo: desinicializado Os argumentos posíbeis son: As ordes posíbeis son: Os dispositivos posíbeis son: Os ficheiros posíbeis son: As particións posíbeis son: As cousas posíbeis son: Remate de expresión regular prematuro Prema calquera tecla para continuar... Prema calquera chave para arrincar xnu Prema a tecla Intro para arrincar o sistema operativo seleccionado, «e» para editar as ordes antes de arrancar ou «c» para obter unha liña de ordes. Prema a tecla Intro para arrancar o sistema operativo seleccionado, «e» para editar as ordes antes de arrancar ou «c» para obter unha liña de ordes. ESC para volver ao menú anterior. Imprime información da memoria. Imprimir info de ZFS verbo do DISPOSITIVO. Imprimir ZFS-BOOTFSOBJ ou almacenala en VARIÁBEL Imprimir unha lista de bloques. Imprimir e executar argumento de bloque. Imprimir traza marcha atrás. Imprime a identidade do controlador e a configuración. Imprime os tamaños nun formato lexíbel por humanos. Comproba a información do dispositivo nunha ruta dada (ou nun dispositivo, no caso de ter a opción -d). RAM que contén táboas do arranque de núcleo RAM que contén código firmware Rañura da RAM número %d
 CADEA REGEXP A imaxe da ROM está presente. Le o valor de 16 bit de ENDEREZO. Ler o valor de 16 bit de PORT. Le o valor de 32 bit de ENDEREZO. Ler o valor de 32 bit de PORT. Le o valor de 8 bit de ENDEREZO. Ler o valor de 8 bit de PORT. Ler só LENGTH bytes. Fallou o reinicio Reiniciar no menú de configuración do firmware. Reiniciar o computador. Reescribir o contrasinal:  Rexistro %x de %x:%02x.%x é %x
 A expresión regular é demasiado grande Retirar un servidor de DNS Retirar un módulo. Retirar unha variábel de entorno. Retirar calquera rexión de memoria dentro dun intervalo especificado. Renderizar a .disk_label de Apple. Informe dos erros a %s.
 Informe dos erros a <bug-grub@gnu.org>. Solicitouse o terminal serie pero non está especificado GRUB_SERIAL_COMMAND. Utilizaranse os parámetros predeterminados. Restabelecer todas as asignacións nos valores predeterminados. Recuperar a información do dispositivo. Volver desde unha función. Volver ao indicador IEEE1275. Execute «gdb %s %d» e estabeleza os ARGS.HOLD a cero.
 Executar «go» para retomar o GRUB. SEGS NOMECURTO NOMECURTO TARXETA ENDEREZO [HWADDRESS] NOMECURTO REDE [INTERFACE] gw PASARELA] TAMAÑO ORIXE|-u UUID|-a|-b CADEA Sábado Gardar o valor lido na variábel VARNAME. Garda as variábeis no ficheiro de bloque de entorno. Diga «Ola mundo». Buscar dispositivos por UUID. Se se especificou VARIÁBEL, o primeiro dispositivo atopado gárdase nunha variábel. Buscar dispositivos por un ficheiro. Buscar dispositivos por UUID de sistema de ficheiros. Buscar dispositivos por etiqueta de sistema de ficheiros. Buscar dispositivos por ficheiro, etiqueta de sistema de ficheiros ou UUID de sistema de ficheiros. Se --set estiver especificado, o primeiro dispositivo encontrado estabelécese como variábel. Se o nome da variábel non se especifica, úsase «root». Buscar dispositivos por ficheiro. Se se especificou VARIÁBEL, o primeiro dispositivo atopado gárdase nunha variábel. Buscar dispositivos por etiqueta. Se se especificou VARIÁBEL, o primeiro dispositivo atopado gárdase nunha variábel. O sector %llu xa o utiliza o controlador de raid «%s»; evítase. Pregúntelle ao fabricante para non almacenar datos na fenda MBR O sector %llu xa o utiliza o programa «%s»; evítase. Este software pode provocar no arranque ou noutros sitios problemas no futuro. Consúltelles aos seus autores para non almacenar datos no sector de inicio Selecciona o dispositivo pola súa posición no bus. Selecciona o dispositivo por fabricante e por ID. Estabelecer o xestor avanzado de enerxía
(1=baixo, ..., 254=alto, 255=apagado). Estabelecer o xestor automático de acústica
(0=apagado, 128=silencioso, ..., 254=rápido). Estabelecer OEMID de RSDP, XSDT e RSDT. Estabelecer OEMTABLE ID de RSDP, XSDT e RSDT. Estabelecer a revisión OEMTABLE de RSDP, XSDT e RSDT. Estabelecer a marca «agochada» no tipo de partición Estabelecer unha variábel para devolver o valor. Estabeleza unha variábel para o primeiro dispositivo atopado. Defina unha variábel de entorno. Estabelecer cor de fondo no terminal activo. Estabelecer o campo creador para RSDP, CSDT e RSDT. Estabelecer a revisión do creador de RSDP, CSDT e RSDT. Estabelecer a variábel do entorno de depuración. Estabelecer a unidade en modo dormente. Estabelecer o controlador do modo de espera. Estabelecer parámetros posicionais. Estabelecer o dispositivo raíz. Estabelecer a caducidade do tempo de espera
(0=apagado, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Estabelecer o tipo terminfo de TERM como TYPE.
 Estabelecer a entrada predeterminada do menú de arranque no GRUB, só para o seguinte arranque. Estabelecer a entrada predeterminada do menú de arranque no GRUB. Estabelecer o enderezo do porto serie. Estabelecer a paridade do porto serie. Estabelecer a velocidade do porto serie. Estabelecer o bit de parada do porto serie. Estabelecer a lonxitude da palabra no porto serie. Estabelecer a unidade serie. Configurar imaxes de arranque desde o DISPOSITIVO.

Non debería executar este programa directamente de modo ordinario. Utilice grub-install maiormente. Estabelecer o contrasinal de usuario (PBKDF2).  Estabelecer o contrasinal de usuario (texto simple). Non recomendado e inseguro. Estabelecer a variábel co usuario de entrada. Estabelecer as variábeis. Estabelecendo o tipo de partición como 0x%x
 Modificar parámetros posicionais. Amosar a información da ACPI. Amosar a información APM. Amosar o contido da consola CBMEM. Amosa unha mensaxe de axuda. Amosa unha lista longa con información máis detallada. Amosar os contidos do FICHEIRO en hex. Amosar os módulos cargados. Amosar contido da memoria. Amosar o contido en bruto do sector ATA IDENTIFY. Amosar os contidos en bruto dun ficheiro ou da memoria. Amosar o contido dun ficheiro. Amosar as asignacións actuais. Amosar esta mensaxe. Amosa soamente as táboas da versión 1. Amosa soamente as táboas das versións 2 e 3. Fallou o apagado Simula a antiga orde de grub «initrd» Simula a antiga orde de grub «kernel» Simula a antiga orde de grub «modulenounzip» Simula a antiga orde de grub «password» Simula a antiga orde de grub «password» no modo de entrada de menú Saltar N bytes do ficheiro de saída. Omitir o desprazamento de octetos desde o comezo do ficheiro. Rañura %d aberta
 Atopouse algo máis de Hurd pero non chega para arrancar. Especifique o nome do ficheiro. Especificar o hash para usar. Especifique un ou máis ficheiros de tipos de letra para cargar. Especifica o tamaño de cada operación de lectura Especificar o número de ficheiros de entrada. Velocidade: %s 
 Arrancar o servizo GDB no porto dado Deter o servizo GDB Gardar o compoñente de NÚMERO EN NOMEVARIBEL. Correcto Domingo Suprimir a saída normal (permanecen os avisos). Trocar para utilizar controladores de disco nativos. De non especificar módulos, utilizarase o conxunto predeterminado (pata, ahci, usbms, ohci, uhci, ehci) Erro sintáctico na liña %u
 Detectáronse erros sintácticos no ficheiro de configuración do GRUB xerado.
Asegúrese de que non hai erros en /etc/default/grub
e nos ficheiros /etc/grub.d/* ou escriba un informe de erro co
%s ficheiro anexado. O espazo do sistema de xestión do controlador de bus de E/S está en 0x%x
 T DESTINO Formato de destino non especificado (utilice a opción -O). O terminal especificou a xeometría. O terminal só é ASCII [predeterminado]. O terminal é un UTF-8 ordenado loxicamente. O terminal é un UTF-8 visualmente ordenado. Comprobar se é compatíbel con USB. Probar bit en BYTE:BIT no CMOS. Velocidade de lectura do ficheiro de proba. Probar se REGEXP coincide con CADEA. Probar o subsistema de vídeo en modo LARGOxALTO. Comprobar o subsistema de vídeo. Só texto  Os ficheiros son idénticos.
 A entrada realzada executarase automaticamente en %ds. Calquera usuario pode arrancar con esta entrada. Isto require a opción GRUB_PREDETERMINADO=gardada en %s/default/grub.\n Xoves TiB TiB/s Ferramenta para editar bloques de entorno. Tamaño total da flash: %d B.
 Barra invertida na fin de liña Transformar o UUID de 64 bits a formato adecuado para XNU. No caso de dar -l mantelo en minúsculas como o dá blkid. Transformar un nome de ficheiro do sistema nun de GRUB. Traduza a cadea que contén a configuración actual. Probe '%s --help' ou '%s --usage' para máis información.
 Martes CONTRASINAL DE USUARIO USUARIO CONTRASINAL_PBKDF2 USUARIO[,USUARIO] UTF-8 Non é posíbel crear a canalización: %s Non é posíbel determinar a súa plataforma. Utilice --target. Non é posíbel ramificar: %s Non é posíbel abrir o fluxo de %s: %s Non foi posíbel obter o estado do grupo Datos sen comprimir. Descomprimir o ficheiro antes da suma de comprobación. O tipo de enderezo %d é descoñecido
 Orde «%s» descoñecida.
 Formato de compresión descoñecido %s Codificación descoñecida O argumento extra «%s» é descoñecido. Descoñécese a funcionalidade 0x%x (%s) do tipo de letra gsub
 Código de teclado descoñecido 0x%02x
 Identificador do teclado descoñecido %s
 Produciuse un erro descoñecido do sistema Modo de vídeo descoñecido  Tipo de dispositivo virtual descoñecido: %s
 Non se cargou o emulador EFI. Non hai coincidencia con ( ou \C Non hai coincidencia con ) ou \) Non hai coincidencia con [ ou [^ Non hai coincidencia \{ A opción «%s» non se recoñece\n O estado do grupo é irrecoñecíbel O tipo %d de enderezo non é compatíbel
 Especificación de cobertura non compatíbel: %d
 O tipo %d de enderezo de hw non é compatíbel
 Formato de imaxe incompatíbel Marca de substitución non compatíbel: 0x%x
 Especificación de substitución non compatíbel: %d
 Tipo de substitución non compatíbel: %d
 Utilización: Utilización: %s -o SAÍDA ARGUMENTOS_CKBMAP...\n Utilización: %s DISPOSITIVO
 Utilización: %s [FICHEIRO_ENTRADA [FICHEIRO_SAÍDA]]
 Utilización: %s [OPCIÓN] ENTRADA_DE_MENÚ\n Utilización: %s [OPCIÓN]\n Utilizar o CDROM como root. Usar o depurador remoto GDB en lugar do DDB. Utilice CADEA como corpo da entrada de menú. Utilizar o dispositivo raíz integrado. Usar a consola serie. Use as teclas %C e %C para seleccionar que entrada realzar. VAR INTERFACE NÚMERO DESCRICIÓN VARNAME Conta atrás prolixa. Comprobar a sinatura extraída. Versión %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 O dispositivo virtual no está óptimo Falta o dispositivo virtual O dispositivo virtual está desconectado O dispositivo virtual está conectado Retirouse o dispositivo virtual AVISO: non haberá consola para o sistema operativo AVISO: non se realizou ningunha instalación específica para ningunha plataforma AVISO: parámetros de funcionalidades do tipo de letra non compatíbeis: %x
 LARGURAxALTURA. Agardar un número específico de segundos. Agardar por cada tecla presionada despois de cada liña de saída. Aviso: Aviso: a cor de fondo «%s» non é válida
 Aviso: a cor de primeiro plano «%s» non é válida
 Aviso: erro de sintaxe (falta a barra) en «%s»
 Mércores Windows NT/2000/XP (cargador) Windows Vista/7 (cargador) Escribe o VALOR de 16 bit de ENDEREZO. Escribir o VALOR de 16 bit en PORT. Escribe o VALOR de 32 bit de ENDEREZO. Escribir o VALOR de 32 bit en PORT. Escribe o VALOR de 8 bit de ENDEREZO. Escribir o VALOR de 8 bit en PORT. Bytes SPD escritos: %d B.
 Hipervisor Xen, versión %s YUV  Cómpre especificar cando menos unha orde.
 Terá que estabelecer «SystemPartition» e «OSLoader» manualmente. A súa área de incorporación é estrañamente pequena. A core.img no caberá nela. O seu xorriso non admite «--grub2-boot-info». Algunhas funcionalidades están desactivadas. Utilice xorriso 1.2.9 ou posterior. O seu xorriso non admite «--grub2-boot-info». A imaxe principal é demasiado grande. Arrancar como disco está desactivado. Utilice xorriso 1.2.9 ou posterior. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FICHEIRO [--md5] CONTRASINAL [FICHEIRO] [--no-mem-option] [--type=TIPO] FICHEIRO [ARG ...] [-1|-2] [--exclude=TÁBOA1,TÁBOA2|--load-only=TÁBOBA1, TÁBOA2] FICHEIRO1 [FICHEIRO2] [...] [-c FICHEIRO [-p PREFIXO]] [FICHEIRO1 [FICHEIRO2 ...]] [-d] NOMEDISPOSITIVO FICHEIRO. [-e|-n] CADEA [-f FICHEIRO] [-f FICHEIRO] nome_variábel [...] [-f|-l|-u|-s|-n] [--hint SUXESTIÓN [--hint SUXESTIÓN] ...] NOME [-h|-p|-r] [FICHEIRO] [-l] UUIDDOGRUB [NOMEDAVARIÁBEL] [-l|-h|-a] [FICHEIRO ...] [-m (stretch|normal)] FICHEIRO [-s POSICIÓN] [-d DISPOSITIVO] [-s POSICIÓN] [-d DISPOSITIVO] [-v VAR] [REXISTRO][=VALOR[:MÁSCARA]] [-s TAMAÑO] NOMEDOFICHEIRO [ENDEREZO|comUNIDADE][,VELOCIDADE] [ARG] [TARXETA [HWADDRESS]] [TARXETA] [ENVVAR=VALOR] [VARIABELENTORNO] [KEYSTROKE1] [KEYSTROKE2] ... [MÓDULO1,MÓDULO2...] [NÚMERO:]NOMEVARIABEL [NUM] [OPCIÓNS...] [OPCIÓNS] [OPCIÓNS] DISCO [OPCIÓNS] FICHEIRO_OU_DISPOSITIVO [OPCIÓNS] FICHEIROS_LETRAS [OPCIÓN]... [MÓDULOS] [OPCIÓN]... [RUTA|DISPOSITIVO] [OPCS] [RUTA] [MODELO ...] [LISTAUSUARIOS] [VALOR]... [LARGOxALTO[xFONDO]] [LARGOxALTO] [[-a|-u|-v] [-g WxH] TERM [TIPO]] [[ano-]mes-día] [hora:minuto[:segundo]] [bus]:[rañuña][.func] [fabricante]:[dispositivo] a orde «cryptomount» falla: %s a orde «loopback» falla: %s non se atopou «obppath» nos cartafoles superiores de «%s», non se descubre ningún nome IEEE1275 asignouse un valor ao argumento «%s» malia que non require un argumento acceso denegado engadir o segmento NOTA para CHRP IEEE1275 enderezo non se atopou o enderezo tenta ler ou escribir fóra do disco «%s» tenta ler ou escribir fóra da partición intenta ler pasado o remate do ficheiro tenta procurar fóra do ficheiro tentando ler a imaxe principal «%s» desde o GRUB tentando ler a imaxe principal «%s» desde o GRUB de novo RAM dispoñíbel formatos dispoñíbeis: mala sinatura ender_base = 0x%llx, tamaño = 0x%llx, %s
 ender_base = 0x%llx, tamaño = 0x%llx, tipo = 0x%x
 o ficheiro bitmap «%s» ten un formato incompatíbel FICHEIRO da lista de bloqueo as listas de bloques non son correctas o tamaño do bloque non se pode dividir entre 512 non pode romper 0 bucles non se pode determinar o sistema de ficheiros de %s non é posíbel atopar a orde «%s» non pode montar o volume cifrado «%s»: %s non se puido abrir «%s»: %s non se pode abrir o ficheiro %s, índice %d: erro %d non é posíbel recuperar as listas de bloques non é posíbel recuperar as listas de bloques: %s non é posíbel comprimir a imaxe do núcleo non foi posíbel atopar unha unidade GRUB para %s. Comprobe o seu device.map non foi posíbel atopar un dispositivo para %s (está montado /dev?) non pode obter liña de ordes de tradutor para a ruta «%s»: %s non é posíbel abrir o ficheiro do SO «%s»: %s non se pode abrir «%s»: %s non é posíbel ler correctamente «%s» non foi posíbel ler «%s»: %s non é posíbel renomear o ficheiro de %s a %s non se pode restaurar o cartafol orixinal non se pode procurar «%s»: %s non pode iniciar «%s»: %s non se pode escribir no CDROM non é posíbel escribir en «%s»: %s non pode escribir na stdout: %s non se atopou a tarxeta cat FICHEIRO produciuse un fallo na verificación da suma de comprobación escoller a compresión que se vai utilizar nas imaxes principais cmp FICHEIRO LOCAL comUNIDADE[,VELOCIDADE] comparar fallo no desprazamento %llu conexión rexeitada conexión esgotada converter en letra grosa a imaxe principal é demasiado grande (0x%x > 0x%x) non coincide a versión da core.img non foi posíbel autoconfigurar %s non foi posíbel atopar un dispositivo membro necesario do sistema de ficheiros multidispositivo non foi posíbel atopar un consumidor geli non foi posíbel atopar a clase «part» do geom non foi posíbel abrir o geom non foi posíbel ler os metadatos ELI non foi posíbel recuperar o UUID non foi posíbel recuperar o UUID geli non se poden recuperar datos aleatorios para o salgado (salt) non foi posíbel enviar un paquete de rede cp FICHEIRO LOCAL FICHEIRO crc erro de cifrado número %d fallou a cygwin_conv_path() eliminar o mapa do dispositivo se xa existe non se pode acadar o destino a conta do dispositivo excede o límite desactivar o suavizado Non se atopou o disco «%s» o disco non existe, volvendo atrás ao dispositivo da partición %s módulo do disco para utilizar (biodisco ou nativo). Esta opción só está dispoñíbel no BIOS de destino. o tamaño de diskboot.img debe ser de %u bytes non facer probas de sistemas de ficheiros no DISPOSITIVO o compoñente de nome de dominio é demasiado longo non actualizar o estado LED feito incorpora FICHEIRO como configuración adiantada incorpora FICHEIRO como chave pública para a comprobación de sinaturas a incorporación non é posíbel pero resulta requirida para instalación RAID e LVM non é posíbel a incorporación pero resulta requirido para a instalación entre particións (cross-disk) activa o arranque ARCS (máquinas mips tipo big-endian, maiormente SGI). Desactiva HFS+, APM, sparc64 e arranca como imaxe de disco en PC i386 activar arranque sparc. Desactiva HFS+, APM, ARCS e arranca como imaxe de disco para PC i386 intro: arranque, «e»: opcións, «c»: liña cmd bloque de entorno demasiado pequeno erro: %s.
 esperábanse as imaxes do GRUB no cartafol CARTAFOL//%s en lugar do cartafol %s produciuse un fallo ao obter a ruta canónica de «%s» fallo ao ler o sector 0x%llx de «%s» fallo ao ler o contrasinal fallo ao escribir o sector 0x%llx de «%s» falso RAM defectuosa (BadRAM) non se atopou o ficheiro «%s» agardábase o nome do ficheiro nome do ficheiro ou tempo e notas esperábeis o sistema de ficheiros «%s» non admite etiquetas o sistema de ficheiros «%s» non admite listas de bloques a imaxe do firmware é demasiado grande forzar o autosuavizado agardábanse catro argumentos fwstart.img non acha a versión boa coñecida. Proceda segundo o seu propio criterio xerar unha imaxe en FORMATO dar unha mensaxe curta sobre o uso dar esta lista de axuda o argumento dado é un dispositivo do sistema, non unha ruta grub-mkimage compílase sen compatibilidade con XZ grub> agardar durante SEGS segundos (predeterminado 3600) FICHEIRO hex ignorar os bitmap prefacturados ao cargar a especificación de dimensións do terminal é incorrecta instalar as imaxes do GRUB no cartafol DIR/%s en lugar de facelo no cartafol %s instalar incluso no caso de detectar problemas contrasinal PBKDF2 inpropiado incorrecto ELF máxico dependente da arquitectura incorrecto ELF máxico independente da arquitectura tamaño de bloque incorrecto especificación de cor incorrecta «%s» o bloque de entorno non é correcto o nome do ficheiro «%s» é incorrecto intervalo de tipo de letra incorrecto formato de liña incorrecto: %s o parámetro %s non é correcto o valor %lld de escape non é correcto non é correcto o nome da variábel «%s» a especificación de vídeo «%s» é incorrecta erro de ioctl GET_ARRAY_INFO: %s erro de ioctl GET_DISK_INFO: %s erro de ioctl RAID_VERSION: %s a imaxe do núcleo é demasiado grande (0x%x > 0x%x) listar enderezos de rede listar tarxetas de rede listas rutas de rede ls RUTA O ficheiro lzop está corrupto facer a unidade tamén ser arrancábel como disquete (o predeterminado con dispositivos fdX). A unidade pode estropearse con algúns BIOS. falta o símbolo «%c» falta a opción obrigatoria «%s» o módulo «%s» non está cargado o módulo non está cargado nome necesita unha imaxe e un punto de montaxe non se atopu APM non se atopou información de DHCP non se atopou a opción %d de DHCP non se atoparon opcións de DHCP non se atopou ningún rexistro de DNS Non se recibiu ningunha resposta de DNS non se configuraron servidores DNS falta «/» no nome canónico do ficheiro sen orde especificada non hai ningunha chave de descifrado dispoñíbel non se atopou a tarxeta de rede non se especificou ningún servidor non existe tal partición non se atopou o modo apropiado de vídeo sen táboa de símbolo non se especificou ningún terminal non hai terminador na imaxe principal atopáronse datos do sector non aliñado no ficheiro principal non é un cartafol non é unha partición primaria non é un ficheiro regular non está no corpo da función agardábase un argumento xa outro software está a usar a área de incorporación, e non sitio para o core.img. Tal software adoita tentar gardar datos de formas que evitan a detección. Recomendámoslle que investigue sen memoria imprime unha imaxe xerada no FICHEIRO [predeterminado=stdout] debe especificarse o ficheiro de saída imprime unha configuración xerada no FICHEIRO [predeterminado=stdout] detectouse desbordamento os contrasinais non coinciden realizar unha configuración automática bootp non se atopou o volume físico %s remate do ficheiro prematuro fin do ficheiro prematura %s premer a tecla de BloqM premer a tecla de inserción premer a tecla de BloqNúm premer a tecla de BloqD premer PetSis premer Alt esquerda premer Ctrl esquerda premer a maiúscula esquerda premer Alt dereita premer Ctrl dereita premer a maiúscula dereita imprimir versión do programa imprimir a versión da información e saír imprimir esta mensaxe e saír imprimir mensaxes prolixas. non se atopou a chave pública %08x erro de lectura no desprazamento %llu: %s ler o texto do FICHEIRO. cartafol relativo no servidor de rede a relocación 0x%x aínda non está implementada RAM reservada recuperar a opción DHCP e gardala en VAR. Se VAR xa está - entón imprimir o valor. cartafol raíz no servidor TFTP detectouse o bucle de rutas gardar imaxes ROM no CARTAFOL [opcional] gardar a saída en FICHEIRO [requirido] seleccionar o índice da faciana non se atopou o porto serie «%s» estabelecer [NOME=VALOR ...] definir o modo de BloqMaiús estabelecer a medida ascendente da letra estabelecer a medida descendente da letra estabelecer o nome da familia estabelecer o intervalo do tipo de letra estabelecer tamaño de letra estabelecer o nome do ficheiro de entrada para a parte de 32 bits. estabelecer o nome do ficheiro de entrada para a parte de 64 bits. estabelecer o nome de ficheiro de entrada. O predeterminado é STDIN definir o modo de inserción definir o modo de BloqNúm estabelecer o nome do ficheiro de saída. O predeterminado é STDOUT definir o modo de pausa estabeleza o prefixo do cartafol [predeterminado=%s] definir o modo de BloqDespr estabelecer o nome do programa tamaño stretch(=%ESTENDIDA%)|normal(=%NORMAL%) non se atopou o símbolo «%s» temporal non se atopou o terminal %s ou non o manexa o terminfo non se atopou o terminal «%s» o argumento «%s» require un enteiro a entrada «%s» do device.map é incorrecta. Ignórase. Corrixa ou elimine o seu device.map o nome da unidade «%s» en device.map é incorrecto. Utilice %s no seu lugar. Utilice a forma [hfc]d[0-9]* (i.e. «hd0» ou «cd») o primeiro sector do ficheiro principal non está aliñado co sector o dispositivo de instalación é retirábel. Esta opción só está dispoñíbel en EFI. o tipo de partición 0x%x non é correcto os sectores do ficheiro principal están demasiado fragmentados o tamaño de «%s» non é %u o tamaño de «%s» é demasiado grande o tamaño de «%s» é demasiado pequeno este ficheiro ELF non é do tipo apropiado esta etiqueta de partición GPT non contén unha partición de arranque do BIOS; non será posíbel a incorporación este LDM non ten partición de incorporación; a incorporación non será posíbel esta etiqueta de partición con estilo msdos non ten o salto posterior ao MBR; non será posíbel a incoporaciónl agardábanse tres argumentos esgotouse o tempo ao abrir «%s» esgotouse o tempo de lectura de «%s» esgotado: non foi posíbel resolver o enderezo de hardware demasiada profundiade do aniñamento de ligazóns simbólicas o tradutor «%s» na ruta «%s» ten varias palabras sen opción, cando menos «%s» e «%s» o tradutor «%s» para a ruta «%s» dáse só con opcións, non pode  atopar a parte do dispositivo a liña de ordes de tradutor está baleira na ruta «%s» agardábanse dous argumentos tipo non é posíbel identificar un sistema de ficheiros en %s; non se pode facer a proba de seguranza tamaño de dispositivo non aliñado remate de ficheiro inesperado o argumento «%s» é descoñecido compresión descoñecida %d
 tipo de dispositivo descoñecido %s
 sistema de ficheiros descoñecido o dispositivo RAID  «%s» é dun tipo descoñecido Erro de expresión regular descoñecido formato de destino descoñecido %s
 tipo de terminfo descoñecido «%s» non se recoñece a especificación «%s» do formato de opción DHCP non se recoñece o enderezo de rede «%s» a interface de rede «%s» é descoñecida número non recoñecido non se pode resolver o enderezo %s sen definir [NOME ...] O erro HTTP %d: %s non é compatíbel A resposta HTTP non é compatíbel versión de RAID incompatíbel: %d.%d O formato gzip non é compatíbel paridade do porto serie incompatíbel velocidade do porto serie incompatíbel número de bits de parada do porto serie incompatíbel largura de palabra do porto serie incompatíbel utilizar COR de fondo utilizar COR para etiqueta utilizar COR para fondo de etiqueta utilizar COR para texto utilice CARTAFOL como a raíz da partición do sistema EFI. utilizar FICHEIRO como tipo de letra (PF2). utilizar FICHEIRO como fonte para a etiqueta utilizar FICHEIRO como imaxe de arranque [predeterminado=%s] utilizar FICHEIRO como imaxe principal [predeterminado=%s] utilice FICHEIRO como mapa de dispositivos [predeterminado=%s] utilizar FICHEIRO como xorriso [opcional] utilice os ficheiros GRUB no cartafol DIR [predeterminado=%s] utilizar CADEA como nome de produto utilizar CADEA como versión de produto utilizar o ficheiro identificador incluso se o UUID está dispoñíbel utilice imaxes e módulos baixo DIR [predeterminado=%s/<platform>] a variábel «%s» non está definida UTF-8 visualmente ordenado agardar ata que un depurador o enganche non se procederá mediante listas de bloques non é o ELI máxico ou a versión DISPOSITIVO xnu_uuid O ficheiro xz está corrupto ou ten opcións de bloque incompatíbeis non pode eliminar este enderezo cómpre cargar o núcleo primeiro a súa partición de arranque do BIOS é demasiado pequena, non será posíbel a incorporación o seu core.img é inusualmente longo. Non se vai axustar á área de incorporación a súa área de incorporación é estrañamente pequena. Core.img non vai caber nela.                            boot/grub/locale/hu.mo                                                                              0000600 0001750 0001750 00000102635 13417732100 0013645 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                       a     $    ,                                    !           ,   0      ]   $   r         *      
      	      7         +!     J!     O!     a!     !  $   !     !     !  !   !     !  Z   "     "     "     #     #     =#     W#     n#     #     #     #     #     #     #     	$     !$     <$  	   N$  #   X$     |$     $     $     $     $  &   $     %  !   "%  ,   D%     q%     }%     %  !   %     %     %     %     %     &     -&     H&  
   f&     q&     &     &     &  $   &     &     &     '  +   9'     e'  #   '     '     '  $   '      (     (  '   6(  9   ^(     (     (     (     (     (  
   )     )     )  +   )     )     )     
*     *  (   ,*     U*     m*     }*     *     *     *     *  7   *     +     
+     +     '+  2   =+     p+     +     +  !   r,  H   ,     ,  )   ,     -     /-     K-     h-     m-  '   r-  P   -     -     
.     .     /.     D.     Z.  "   o.     .     .  O   .     /     /     3/  %   G/  !   m/  "   /     /     /  +   /     0     (0     80  !   J0     l0     0     0      0     0     0     1     !1     51     E1     ]1     x1     1     1     1  !   1     2  2   2     Q2  *   k2  8   2     2     2     2     3  3   #3  $   W3  +   |3     3     3     3     3      4     "4     74     >4     ^4     v4     4     05     5     6     6     -6  "   F6     i6     r6     6     6  "   6  #   6     6  )   6     7     (7     @7     W7     m7     7     7     7     7  !   7  "   8  '   %8     M8     [8     s8     8     8  -   8  )   8     9     '9     ?9  &   F9  )   m9  ^   9     9  $   :  %   5:  ^   [:  _   :  >   ;  D   Y;  !   ;  '   ;  -   ;     <  )   6<     `<  )   }<  ,   <     <     <     =     (=     C=  E   T=  $   =     =     =     =     >      2>     S>  q   h>     >  :   >     2?     P?     _?     |?     ?     ?  0   ?     ?     @     !@     <@     O@  -   n@     @     @  '   @  !   @  "   A  #   0A     TA     fA  !   A     A  <   A     A  0   B     KB     YB     nB  $   tB     B     B     B  '   B     B     C     C     #C  '   1C  -   YC  '   C  '   C  .   C  *   D  /   1D     aD  .   wD  )   D     D  	   D     D  5   E     =E     SE     nE     E     E     E     E     E     E     E     E  
   E  
   F  !   F  )   /F  0   YF  6   F     F      F     F     G     G     +G     GG     UG     ^G  "   yG  F   G     G     G     G     H     H     .H  1   NH     H  7   H  /   H     I     !I     ?I  F   ]I      I    I     K     K     K  ;  K  B  L     <N  0   TN  "   N  ;   N     N  3   N  (   3O  @   \O  	   O  	   O  ?   O  #   O     P     P  !   /P     QP  *   WP     P     P  3   P     P  g   Q      Q      R     >R     DR  "   \R  %   R  %   R  "   R     R  &   S     -S     KS     jS  &   S  2   S     S  
   S  3   T     ;T  8   [T     T     T  ,   T  *   T     U  %   #U  7   IU     U     U      U  :   U     U     V     V  #   6V  ,   ZV  *   V  /   V     V     V     V  %   W  '   5W  8   ]W  #   W  *   W  (   W  8   X  *   GX     rX     X  1   X  :   X     Y  "   7Y  @   ZY  K   Y  #   Y  #   Z     /Z     ;Z     ZZ  
   pZ     {Z     Z  4   D[      y[     [     [     [  1   [     \     :\     Q\     h\     \     \     \  ;   \     \     \     ]     ]  =   5]     s]     ]    ]  *   ^  e   ^     A_  =   \_     _  #   _  /   _     `     `  =   `  ]   K`  &   `     `     `     `  !   a     9a  1   Ta     a     a  t   a  $   3b  %   Xb  #   ~b  :   b  4   b  4   c  "   Gc  )   jc  5   c  &   c     c     d  &   .d      Ud     vd     d  %   d     d  (   d  $   e     =e     \e  "   ze     e     e     e     e  $   f  /   <f  %   lf  L   f  )   f  0   	g  F   :g     g     g     g     g  L   g  )   <h  4   fh     h     h     h      h  '   i     *i     @i  (   Fi     oi     i     i  5  wj     k  
   k     k     k  %   l     (l     4l     Il     Nl  8   cl  A   l     l  A   l     /m     Dm     `m     ym     m     m     m  .   m     
n  -    n  <   Nn  :   n     n     n     n     o  &   0o  =   Wo  C   o      o     o     p  8   &p  /   _p     p  $   q  1   4q  2   fq     q     r  :   r  P   r  2   (s  8   [s  >   s  3   s  5   t  $   =t  =   bt  A   t  2   t  /   u  *   Eu  $   pu     u  Y   u  6   v  #   Ev  '   iv  (   v  (   v  (   v     w     +w  3   w  a   w  3   Zx     x      x     x  "   x     y  =   'y  $   ey  #   y  +   y     y  (   y  0   z     Lz  &   az  9   z     z  #   z  %   {     +{  8   H{  )   {     {  B   {  4   |  <   @|     }|     |     |  E   |     |  .   }     J}  0   V}     }     }     }     }  $   }  :   
~  7   E~  7   }~  D   ~  '   ~  1   "     T  1   l  -          
          5        B     Y     u                    ǀ     ݀            
        (     =  $   J  +   o  ;     A   ׁ       %   )  '   O     w       /        ΂  	   ݂  %     +     R   9  
     	     #        Ń     у       =     )   D  6   n  -        ӄ            Z   "     }     d   `                      X         ^       j   V      F   O              '   4                       `  T  ~             	  #            )       P     >             	   =        '          _     8   a           7        (         
                       J                 u   =                    B  C  +  E             [        1                 F                    q   $    H   ;  @   %                   G                          3     t   i                        v          ]                   h   L   2       !                                      {          9  R                          0       ]  .   4      *               n   U   -           o         }                U       -  ,                                 8  l      Z              .          M        |          /                     y   Q   !   :      z             :                    x      ?            e                       I      0           )  E            s   P              
      ,                       C   6  6         $   K              <       2        "      X  5   w   >   &                p   \   G                        ;                L  Q      I      [                  m         <         S  b   7                 _              N          *            r      N        T                      @     H              B           %  A     K      &      +            J   A  Y   c             k              #                        ?               Y  3           "  a            5         D   1         M             ^  O                f   Z  g   R       9           \    W                (                   V  D  W   S       /        - Total size unknown %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: error: %s: info: - Last modification time %d-%02d-%02d %02d:%02d:%02d %s -l | -r | [-s] grubdev osdisk. ADDR ADDR VALUE [MASK] ADDR1,MASK1[,ADDR2,MASK2[,...]] ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Ask for file name to reboot from. Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: BLOCK Base directory for hash list. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting a command list Change configured devices. Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check key modifier status. Clear the screen. Commands: Compare FILE with local file LOCAL. Compare two files. Compute or check hash checksum. Configure serial port. Continue loops Copy FILE to local file LOCAL. Create a blank environment block file. DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] Debug tool for filesystem driver. Define a submenu. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Disk count must precede disks list.
 Display a line of text. Display blocklist of FILE. Display output on all consoles. Display the usage of this command and exit. Display this help and exit. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. ENVVAR ENVVAR [ENVVAR] ... ESC at any time exits. EXPRESSION EXPRESSION ] Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Enable interpretation of backslash escapes. Enter in KDB on boot. Enter normal mode. Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Exit from GRUB. Exit from loops Exit from normal mode. Export variables. FILE FILE [ARG ...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FROM[K|M|G] TO[K|M|G] Failed to boot both default and fallback entries.
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Freeze ATA security settings until reset. GNU GRUB  version %s Get crc32 checksum of FILE. Get/set ATA disk parameters. HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. IMAGE_PATH COMMANDS Insert a module. Invalid command %s.
 Invalid device `%s'.
 Invalid disk count.
 Invoke user configuration routing. List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List devices and files. List devices or files. List files in PATH. List memory map provided by firmware. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file without changing context. Load another config file. Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading the Hurd ... MODULE Manage the BIOS drive mappings. Manipulate PCI devices. Menu entry type. Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. NAME [VARIABLE] [HINTS] NUMBER_OF_SECONDS No command is specified.
 No device is specified.
 Not enough parameters to command.
 Options: PARTITION COMMANDS PORT PORT VALUE [MASK] Parse legacy config in new context Parse legacy config in same context Partition %s: Perform both direct and reverse mappings. Play a tune. Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Press any key to continue... Print a block list. Print and execute block argument. Print drive identity and settings. Print sizes in a human readable format. REGEXP STRING Read only LENGTH bytes. Reboot the computer. Remove a module. Remove an environment variable. Remove any memory regions in specified range. Reset all mappings to the default values. Retrieve device info. Return from a function. STRING Save read value into variable VARNAME. Save variables to environment block file. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Shift positional parameters. Show ACPI information. Show APM information. Show a help message. Show a long list with more detailed information. Show loaded modules. Show the contents of a file. Show the current mappings. Show this message. Skip N bytes from output file. Skip offset bytes from the beginning of file. Specify filename. Specify hash to use. Specify one or more font files to load. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. The highlighted entry will be executed automatically in %ds. Tool to edit environment block. Translates the string with the current settings. USER PASSWORD USER PBKDF2_PASSWORD UTF-8 Uncompress file before checksumming. Unknown command `%s'.
 Unload EFI emulator. Usage: Use GDB remote debugger instead of DDB. Use serial console. VARNAME Verbose countdown. WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 You need to specify at least one command.
 [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [ADDR|comUNIT][,SPEED] [ARG] [ENVVAR=VALUE] [ENVVAR] [NUMBER:]VARNAME [OPTIONS...] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [PATTERN ...] [USERLIST] [VALUE]... [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again blocklist FILE cannot compress the kernel image cannot read `%s' correctly cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu cp FILE LOCAL crc FILE device count exceeds limit diskboot.img size must be %u bytes embedding is not possible, but this is required for cross-disk install error: %s.
 hex FILE invalid skip value %lld ls PATH no terminal specified no terminator in the core image non-sector-aligned data is found in the core file read error at offset %llu: %s the first sector of the core file is not sector-aligned the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small unable to identify a filesystem in %s; safety check can't be performed will not proceed with blocklists Project-Id-Version: grub 1.97+20110101
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2011-04-19 00:47+0200
Last-Translator: Gabor Kelemen <kelemeng@gnome.hu>
Language-Team: Hungarian <translation-team-hu@lists.sourceforge.net>
Language: hu
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Generator: KBabel 1.11.4
Plural-Forms:  nplurals=2; plural=(n != 1);
  – Teljes méret ismeretlen %ds %ds van hátra. %s úgy tűnik, hogy %s fájlrendszert tartalmaz, amely nem tart fenn helyet a DOS-stílusú rendszerindításnak. A GRUB oda telepítése a FÁJLRENDSZER MEGSEMMISÜLÉSÉT okozhatja, ha a grub-setup értékes adatokat ír felül (a --skip-fs-probe kihagyja ezt az ellenőrzést, saját felelősségre használja). %s úgy tűnik, hogy %s partíció-térképet tartalmaz, amely nem tart fenn helyet a DOS-stílusú rendszerindításnak. A GRUB oda telepítése a FÁJLRENDSZER MEGSEMMISÜLÉSÉT okozhatja, ha a grub-setup értékes adatokat ír felül (a --skip-fs-probe kihagyja ezt az ellenőrzést, saját felelősségre használja). %s, Linux %s verzióval %s, Linux %s verzióval (helyreállítási mód) %s, Xen %s és Linux %s verzióval %s, Xen %s és Linux %s verzióval (helyreállítási mód) %s, kFreeBSD %s verzióval %s, kFreeBSD %s verzióval (helyreállítási mód) %s, %s kernellel (%s közvetítésével) %s, %s kernellel (%s közvetítésével, helyreállítási mód) %s: hiba: %s: info: - Utolsó módosítás ideje: %d. %02d. %02d. %02d:%02d:%02d %s -l | -r | [-s] grubeszköz oslemez. CÍM CÍM ÉRTÉK [MASZK] CÍM1,MASZK1[,CÍM2,MASZK2[,…]] ASCII DOS-stílusú CR/NL sorvégek elfogadása. Aktív beviteli terminálok: Aktív kimeneti terminálok: Fájlnév bekérése, amelyből újra kell indulni. Kísérlet a GRUB telepítésére több partíciócímkével vagy partíciócímkével és fájlrendszerrel egyaránt rendelkező lemezre. Ez még nem támogatott. Kísérlet a GRUB telepítésére partíciók nélküli lemezre vagy partícióra. Ez egy ROSSZ ötlet. Elérhető beviteli terminálok: Elérhető kimeneti terminálok: BLOKK Hashlista alapmappája. Operációs rendszer elindítása. Indítás egy felhasználós módban. Indítás hibakeresési üzenetekkel. Indítás részletes üzenetekkel. Parancslista indítása Beállított eszközök módosítása. Alt billentyű ellenőrzése. Ctrl billentyű ellenőrzése. Shift billentyű ellenőrzése. CPU szolgáltatásainak ellenőrzése. Billentyűmódosító állapotának ellenőrzése. A képernyő törlése. Parancsok: A FÁJL összehasonlítása a HELYI helyi fájllal. Két fájl összehasonlítása. Hash ellenőrzőösszeg kiszámolása és ellenőrzése. Soros port beállítása. Ciklusok folytatása A FÁJL átmásolása a HELYI helyi fájlba. Üres környezetblokk-fájl létrehozása. ESZKÖZ ESZKÖZ [PARTÍCIÓ[+/-[TÍPUS]]] … Az ESZKÖZNEK OS eszköznek kell lennie (pl. /dev/sda). ESZKÖZ_NÉV KVT KÖNYVTÁR [OSCsomagSzükséges] Hibakeresési eszköz a fájlrendszer-illesztőprogramhoz. Almenü definiálása. Változók törlése. Meghajtó meghatározása. Fájlrendszer UUID meghatározása. Fájlrendszer címkéjének meghatározása. Fájlrendszer típusának meghatározása. Partíciótérkép típusának meghatározása. %s eszköz: ACPI letiltása. SMP letiltása. Minden indítási kimenet letiltása. SMART letiltása/engedélyezése (0/1). A lemezszámnak meg kell előznie a lemezek listáját.
 Egy sornyi szöveg megjelenítése. A FÁJL blokklistájának megjelenítése. Kimenet megjelenítése minden konzolon. A parancs használatának megjelenítése és kilépés. Ezen súgó megjelenítése és kilépés. Ne írja ki a záró új sort. Ne írjon ki üzeneteket. Ne vizsgálja meg a hajlékonylemez-meghajtókat. Ne használja az APM-et a számítógép leállítására. Nem csinál semmit, sikeresen. Nem csinál semmit, sikertelenül. Ne jelenítsen meg rendszerindítási diagnosztikai üzeneteket. Ne töltse be a vesszőkkel elválasztott listán megadott gazdatáblákat. Ne induljon újra, csak álljon le. Ne álljon meg az első hiba után. KÖRNYVÁLT KÖRNYVÁLT. [KÖRNYVÁLT] … Az ESC mindig kilép. KIFEJEZÉS KIFEJEZÉS ] Beágyazás nem lehetséges. A GRUB ezen telepítés során kizárólag blokklisták segítségével települhet, viszont a blokklisták NEM MEGBÍZHATÓAK és használatuk nem javallott. Visszaper-escapek értelmezésének engedélyezése. Indításkor belépés a KDB-be. Belépés a normál módba. Adja meg a jelszót:  Adja meg a felhasználónevet:  Hiba a parancssori argumentumok feldolgozásakor
 Kifejezés kiértékelése. Kilépés a GRUB-ból. Kilépés ciklusokból Kilépés a normál módból. Változók exportálása. FÁJL FÁJL [ARG…] FÁJL | TEMPÓ [MAGASSÁG1 HOSSZ1] [MAGASSÁG2 HOSSZ2] …  FÁJL… FÁJL1 FÁJL2 FÁJLNÉV PARANCS ETTŐL[K|M|G] EDDIG[K|M|G] Az alap és tartalék bejegyzések indítása is sikertelen.
 A fájlrendszer nem érhető el Fájlrendszer típusa: %s A GPT meghajtó eszközének feltöltése hibrid MBR-el. A megadott partíciók részei lesznek a hibrid MBR-nek. Maximum 3 partíció engedélyezett. Típusa MBR típus. A + jelzi, hogy az adott partíció aktív. Egyszerre csak egy partíció lehet aktív. EFI-emulátor betöltésének befejezése. Elsőnek próbálja a TIPP eszközt. Ha a TIPP vesszőre végződik, próbálja az alpartíciókat is Videoprobléma javítása. ATA biztonsági beállítások fagyasztása újraindításig. GNU GRUB  %s verzió A FÁJL crc32 ellenőrző-összege. ATA lemezparaméterek lekérése/beállítása. HASH TIPP A rendszer leállítása, ha lehet akkor APM használatával. A számítógép leállítása. Ez a parancs nem működik minden firmware-megvalósításon. N bájt kezelése a kimeneti fájlban. KÉP_ÚTVONAL PARANCSOK Modul betöltése. Érvénytelen parancs: %s.
 Érvénytelen eszköz: „%s”.
 Érvénytelen lemezszám.
 Felhasználói beállításirányítás hívása. PCI eszközök felsorolása. Minden fájl felsorolása. Elérhető videomódok felsorolása. Ha meg van adva felbontás, akkor csak az arra illeszkedő módok felsorolása. Eszközök és fájlok felsorolása. Eszközök vagy fájlok felsorolása. Fájlok felsorolása az ÚTVONALON. A firmware által biztosított memóriatérkép kiírása. Bemeneti terminál felsorolása vagy kiválasztása. Kimeneti terminál felsorolása vagy kiválasztása. Aktuális változók felsorolása. Betöltött betűkészletek felsorolása. Változók felsorolása a környezeti blokkfájlból. 64 bites XNU rendszerkép betöltése. BIOS-kiíratás betöltése. FreeBSD környezet betöltése. FreeBSD kernelmodul betöltése (ELF). FreeBSD kernelmodul betöltése. Linux betöltése. NTLDR vagy BootMGR betöltése. NetBSD kernelmodul (ELF) betöltése. NetBSD kernelmodul betöltése. XNU kiterjesztéskönyvtár betöltése. XNU kiterjesztéscsomag betöltése. XNU kiterjesztés betöltése. XNU rendszerkép betöltése. Billentyűzetkiosztás betöltése Multiboot 2 kernel betöltése. Multiboot 2 modul betöltése. Multiboot kernel betöltése. Multiboot modul betöltése. Indítókép betöltése az XNU-hoz. EFI-emulátor betöltése és előkészítése. Másik rendszerbetöltő betöltése. Másik konfigurációs fájl betöltése a kontextus módosítása nélkül. Másik konfigurációs fájl betöltése. Háttérkép betöltése az aktív terminálhoz. Gazda ACPI-táblák és a paraméterben megadott táblák betöltése. Initrd betöltése. A FreeBSD kernel betöltése. A NetBSD kernel betöltése. Az OpenBSD kernel betöltése. Csak a vesszőkkel elválasztott listán megadott gazdatáblák betöltése. Ugyanazon fájl betöltése több módon. Változók betöltése a környezeti blokkfájlból. GNU Mach betöltése… Linux %s betöltése… Xen %s betöltése… Kiinduló ramdisk betöltése… A FreeBSD %s kernelének betöltése… A Hurd betöltése… MODUL A BIOS meghajtótársítások kezelése. PCI-eszközök kezelése. Menübejegyzés típusa. Minimális BASH-szerű szerkesztés támogatott. Az első szóhoz a TAB felsorolja a lehetséges parancskiegészítéseket. Bárhol máshol a TAB felsorolja a lehetséges eszköz- vagy fájlkiegészítéseket. %s Minimális Emacs-szerű képernyőszerkesztés támogatott. A TAB felsorolja a kiegészítési lehetőségeket. Nyomja meg a Ctrl-x kombinációt vagy az F10-et az indításhoz, a Ctrl-c kombinációt vagy az F2-t a parancssorhoz, vagy az ESC-t a szerkesztések eldobásához és a visszatéréshez a menübe. NÉV [VÁLTOZÓ] [TIPPEK] MÁSODPERC Nincs megadva parancs.
 Nincs megadva eszköz.
 Nincs elég paraméter a parancshoz.
 Kapcsolók: PARTÍCIÓ PARANCSOK PORT PORT ÉRTÉK [MASZK] Örökölt beállítások feldolgozása új kontextusban Örökölt beállítások feldolgozása ugyanabban a kontextusban %s partíció: Közvetlen és fordított társítások végrehajtása egyaránt. Dallam lejátszása. A lehetséges paraméterek: A lehetséges parancsok: A lehetséges eszközök: A lehetséges fájlok: A lehetséges partíciók: A lehetséges dolgok: Nyomjon meg egy billentyűt a folytatáshoz… Blokklista kiírása. Blokkargumentum kiírása és végrehajtása. Meghajtó azonosítójának és beállításainak kiírása. Méretek kiírása emberek által olvasható formátumban. REGEXP KARAKTERLÁNC Csak HOSSZ bájt beolvasása. Számítógép újraindítása. Modul eltávolítása. Környezeti változó eltávolítása. Memóriaterületek eltávolítása a megadott tartományból. Minden társítás visszaállítása az alapértelmezett értékre. Eszközinformációk lekérése. Visszatérés függvényből. KARAKTERLÁNC Beolvasott érték mentése a VÁLTOZÓNÉV változóba, Változók mentése a környezeti blokkfájlba. Eszközök keresése UUID alapján. Ha a VÁLTOZÓ meg van adva, akkor az elsőként megtalált eszköz bekerül a változóba. Eszközök keresése fájl alapján. Eszközök keresése fájlrendszer-UUID alapján. Eszközök keresése fájlrendszercímke alapján. Eszközök keresése fájl alapján. Ha a VÁLTOZÓ meg van adva, akkor az elsőként megtalált eszköz bekerül a változóba. Eszközök keresése címke alapján. Ha a VÁLTOZÓ meg van adva, akkor az elsőként megtalált eszköz bekerül a változóba. Az APM beállítása
(1=alacsony, …, 254=magas, 255=ki). Automatikus zajkezelés (AAM) beállítása
(0=ki, 128=csendes, ..., 254=gyors). Az RSDP, XSDT és RSDT OEMID-jának beállítása. Az RSDP, XSDT és RSDT OEMTABLE ID-jának beállítása. Az RSDP, XSDT és RSDT OEMTABLE revíziójának beállítása. Változó beállítása a visszatérési értékre. Változó beállítása az első talált eszközhöz. Környezeti változó beállítása. Az RSDP, XSDT és RSDT létrehozó mezőjének beállítása. Az RSDP, XSDT és RSDT létrehozó revíziójának beállítása. Hibakeresési környezeti változó beállítása. Meghajtó energiatakarékos módba kapcsolása. Meghajtó készenléti módba kapcsolása. Pozícióparaméterek beállítása. Gyökéreszköz beállítása. Készenléti időkorlát beállítása
(0=ki, 1=5mp, 2=10mp, …, 240=20p, 241=30p, …). A TERM terminfo típusának beállítása a TÍPUSRA.
 Soros port címének beállítása. Soros port paritásának beállítása. Soros port sebességének beállítása. Soros port stop bitjeinek beállítása. Soros port szóhosszának beállítása. A soros egység beállítása. Képfájlok beállítása az ESZKÖZRŐL indulásra.

Ezt a programot általában nem kell közvetlenül futtatnia. Használja a grub-install programot. Felhasználó jelszavának beállítása (PBKDF2).  A felhasználói jelszó (egyszerű szöveg) beállítása. Nem biztonságos, így nem ajánlott. Változó beállítása a felhasználói bevitelre. Változók beállítása. Pozícióparaméterek eltolása. ACPI információ mutatása APM-információk megjelenítése. Súgóüzenet megjelenítése. Hosszú lista megjelenítése részletesebb információkkal. Betöltött modulok megjelenítése. Fájl tartalmának megjelenítése. Az aktuális társítások megjelenítése. Ezen üzenet kiírása. N bájt átugrása a kimeneti fájlból. Eltolásbájtok kihagyása a fájl kezdetétől. Fájlnév megadása. Használandó hash-eljárás megadása Adjon meg legalább egy betöltendő betűkészletfájlt. A terminál csak ASCII [alap]. A terminál logikai sorrendű UTF-8 A terminál vizuális sorrendű UTF-8 USB-támogatás tesztelése. Teszteli, hogy a REGEXP illeszkedik-e a KARAKTERLÁNCRA. Videoalrendszer tesztelése SzxM módban. Videoalrendszer tesztelése. A kijelölt bejegyzés automatikusan elindul %d másodperc múlva. Környezetblokk szerkesztésére szolgáló eszköz. Lefordítja a karakterláncot a jelenlegi beállításokkal. FELHASZNÁLÓ JELSZÓ FELHASZNÁLÓ PBKDF2_JELSZÓ UTF-8 Tömörítse ki a fájlokat az ellenőrzőösszeg számolása előtt. Ismeretlen parancs: „%s”.
 EFI-emulátor eltávolítása a memóriából. Használat: GDB távoli hibakereső használata DDB helyett. Soros konzol használata. VÁLTOZÓNÉV Részletes visszaszámlálás. SZÉLESSÉGxMAGASSÁG. Várakozás a megadott másodpercig. Várakozás billentyűnyomásra minden kimeneti sor után. Figyelmeztetés: érvénytelen háttérszín: „%s”
 Figyelmeztetés: érvénytelen előtérszín: „%s”
 Figyelmeztetés: szintaktikai hiba (hiányzó perjel) itt: „%s”
 Legalább egy parancsot meg kell adni.
 [--append|--remove] [TERMINÁL1] [TERMINÁL2] … [--md5] JELSZÓ [FÁJL] [--no-mem-option] [--type=TÍPUS] FÁJL [ARG …] [-c FÁJL [-p ELŐTAG]] [FÁJL1 [FÁJL2 …]] [-e|-n] KARAKTERLÁNC [-f FÁJL] [-f FÁJL] változónév […] [-f|-l|-u|-s|-n] [--hint TIPP [--hint TIPP] …] NÉV [-l|-h|-a] [FÁJL …] [-m (stretch|normal)] FÁJL [CÍM|comEGYSÉG][,SEBESSÉG] [ARG] [KÖRNYVÁLT=ÉRTÉK] [KÖRNYEZETI VÁLTOZÓ] [SZÁM:]VÁLTOZÓNÉV [OPCIÓK…] [KAPCSOLÓK] LEMEZ [KAPCSOLÓK] FÁJL_VAGY_ESZKÖZ [MINTA…] [FELHASZNÁLÓLISTA] [ÉRTÉK]… [[-a|-u|-v] [-g SzxM] TERM [TÍPUS]] [[év-]hónap-nap] [óra:perc[:másodperc]] kísérlet a(z) „%s” magkép beolvasására a GRUB-ból kísérlet a(z) „%s” magkép beolvasására a GRUB-ból újra blocklist FÁJL a rendszermagkép nem tömöríthető „%s” nem olvasható be megfelelően cmp FÁJL HELYI comEGYSÉG[,SEBESSÉG] összehasonlítási hiba a(z) %llu eltolásnál cp FÁJL HELYI crc FÁJL az eszközszám túllépi a korlátot a diskboot.img mérete %u bájt kell legyen A beágyazás nem lehetséges, noha ez szükséges a lemezek közti telepítéshez hiba: %s.
 hex FÁJL érvénytelen ugrási érték: %lld ls ÚTVONAL nincs megadva terminál nincs befejező a magképben a magfájlban nem szektorokhoz igazított adatok találhatók olvasási hiba a(z) %llu eltolásnál: %s a magfájl első szektora nincs szektorokhoz igazítva a magfájl szektorai túlzottan töredezettek „%s” mérete nem %u „%s” mérete túl nagy „%s” mérete túl kicsi nem azonosítható fájlrendszer ezen: %s, a biztonsági ellenőrzés nem hajtható végre nem folytatom a blokklistákkal                                                                                                    boot/grub/locale/id.mo                                                                              0000600 0001750 0001750 00000042630 13417732100 0013623 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                             ,    <      X    Y     ^  !   p       7                    !        7     Q     h                                             6     H     [  !   b                                
   #     .     <     I     b     ~       +          #        "  $   9     ^     x  '     9               
   &     1  +   >     j                                               )        I     ^  '   {  P               "        0     B     R  %   j  +                    !             3     ?     ]     y                                2   !     T  8   n                      3     +   /     [     p                          }                 )                        /     E     Y     r            "     '                  0  )   A     k  &     )     ^     ^   1  _     >     D   /   !   t   '      -            )   !  ,   6!     c!     |!     !  E   !     !     "     '"     B"      a"     "  :   "     "     "  0   #     6#     K#     h#     #  -   #     #     #     #  <   #     ;$     I$  '   P$     x$     $  '   $  -   $  '   $  '   %  .   E%  B   t%     %  	   %     %     %     %     &     &  )   -&  0   W&  6   &      &     &  "   &     '  1   >'  7   p'  /   '     '     '     (  F   /(    v(  &   *     '+  &   ;+     b+  :   y+     +     +     +  ,   +     ,     2,     M,     f,  $   ,     ,     ,     ,     ,     -  $   -     A-     R-  	   i-  "   s-     -     -     -     -     -     .     7.     D.     V.      h.  !   .     .  #   .  2   .  !   /  $   ?/     d/  /   |/     /  %   /  %   /  Y   0     r0     0     0  
   0  )   0      0     1     $1     <1     V1     h1     o1  !   1     1     1  /   1     1     2  /   .2  W   ^2     2     2  %   2     2     3     /3  4   O3  /   3     3     3     3      3     4     24     >4     [4     t4     4     4     4     4  %   4     5  4   15     f5  F   5     5     5     5     6  O   %6  *   u6     6     6  !   6     6     6     7     7  "   7     8     "8  3   .8     b8  !   w8  "   8  #   8      8  !   9     #9  (   A9     j9  *   9  0   9     9     9     :  %   :     A:  .   _:  *   :  v   :  q   0;  t   ;  K   <  M   c<  #   <  )   <  -   <  %   -=  ,   S=  ,   =     =     =     =  Q   =     G>     _>     |>     >     >     >  N   >  %   6?     \?  >   u?     ?     ?     ?     @  #   @     >@     Z@     m@  <   @     @     @  )   @     
A     !A  6   >A  A   uA  +   A  )   A  >   B  ?   LB     B     B     B     B     B     B  
   C  (   C  /   6C  4   fC  %   C  %   C  &   C  $   D  5   3D  ;   iD  0   D     D     D     E  i   .E     ^          I                           {   /   |   +                 2      4   k   [      U   d      3   "   9            1      0   c                 B          Y          =   x   .   Z      :   ?          5                                 Q                     _             M      -                ,            V             K   L      e          C      i   $   ;          X       b                           p   w          F                                    t   }   @           R   '         6      P       r         s   `                               	                     S   !   J         7                                 y   v             *         D   u       \             (       #          E                         a   T                     m          G   8      O       h   
   f       >           q   o      %   W       n                ~          z   j   g   ]             l   A                       <   H   )             &   N    %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with kFreeBSD %s - Last modification time %d-%02d-%02d %02d:%02d:%02d %s -l | -r | [-s] grubdev osdisk. ADDR ADDR VALUE [MASK] Ask for file name to reboot from. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting a command list Change configured devices. Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check key modifier status. Clear the screen. Compare two files. DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DIRECTORY [OSBundleRequired] Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Display a line of text. Display output on all consoles. Display the usage of this command and exit. Display this help and exit. Do not output the trailing newline. Do not print messages. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. ESC at any time exits. EXPRESSION EXPRESSION ] Enable interpretation of backslash escapes. Enter in KDB on boot. Enter password:  Enter username:  Evaluate an expression. Exit from GRUB. FILE FILE1 FILE2 Filesystem cannot be accessed Filesystem type %s Fix video problem. Freeze ATA security settings until reset. GNU GRUB  version %s Get/set ATA disk parameters. Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. ID Invalid device `%s'.
 Invoke user configuration routing. List PCI devices. List all files. List devices and files. List memory map provided by firmware. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load Linux. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load a multiboot 2 kernel. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load another boot loader. Load another config file without changing context. Load another config file. Load host ACPI tables and tables specified by arguments. Load initrd. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load variables from environment block file. Loading Linux %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... MODULE Manage the BIOS drive mappings. Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s NUMBER_OF_SECONDS No device is specified.
 PARTITION COMMANDS Partition %s: Perform both direct and reverse mappings. Play a tune. Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Press any key to continue... Print a block list. Print drive identity and settings. Print sizes in a human readable format. Read only LENGTH bytes. Reboot the computer. Remove a module. Reset all mappings to the default values. Retrieve device info. Save read value into variable VARNAME. Save variables to environment block file. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set a variable to return value. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set drive to sleep mode. Set drive to standby mode. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Show a help message. Show a long list with more detailed information. Show loaded modules. Show the contents of a file. Show the current mappings. Show this message. Skip offset bytes from the beginning of file. Specify filename. Test USB support. Test video subsystem. The highlighted entry will be executed automatically in %ds. USER PASSWORD Usage: Use GDB remote debugger instead of DDB. Use serial console. Verbose countdown. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Your embedding area is unusually small.  core.img won't fit in it. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [ENVVAR] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [PATTERN ...] [[year-]month-day] [hour:minute[:second]] attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again cannot compress the kernel image cannot read `%s' correctly diskboot.img size must be %u bytes no terminator in the core image non-sector-aligned data is found in the core file the first sector of the core file is not sector-aligned the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small unable to identify a filesystem in %s; safety check can't be performed Project-Id-Version: grub 1.97+20100124
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2010-01-25 16:30+0700
Last-Translator: Arif E. Nugroho <arif_endro@yahoo.com>
Language-Team: Indonesian <translation-team-id@lists.sourceforge.net>
Language: id
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
 %s sepertinya berisi sebuah sistem berkas %s yang tidak diketahui untuk mereserve ruang untuk boot gaya-DOS. Memasang GRUB disana dapat berakibat KERUSAKAN SISTEM BERKAS jika data berharga dipaksa tulis oleh grub-setup (--skip-fs-probe menonaktifkan pemeriksaan ini, gunakan sesuai resiko anda) %s, dengan Linux %s %s, dengan Linux %s (mode penyembuhan) %s, dengan kFreeBSD %s - Waktu modifikasi terakhir %d-%02d-%02d %02d:%02d:%02d %s -l | -r | [-s] grubdev osdisk. ALAMAT ALAMAT NILAI [TOPENG] Tanya untuk nama berkas untuk direboot dari. Boot sistem operasi. Boot kedalam mode tunggal. Boot dengan pesan debug. Boot dengan pesan detail. Mem-boot dari sebuah daftar perintah Ubah konfigurasi perangkat. Periksa tombol Alt. Periksa tombol Control. Periksa tombol Shift. Periksa kapabilitas CPU. Periksa keadaan tombol pemodifikasi. Bersihkan layar. Bandingkan dua berkas. PERANGKAT PERANGKAT [PARTISI[+/-[TIPE]]] ... DIREKTORI [OSBundleRequired] Tentukan driver. Tentukan UUID sistem berkas. Tentukan nama sistem berkas. Tentukan tipe sistem berkas. Tentukan tipe peta partisi. Perankat %s: No-aktifkan ACPI. Non-aktifkan SMP. Tampilkan seluruh keluaran boot. Nonaktifkan/aktifkan SMART (0/1). Tampilkan baris dari teks. Tampilkan keluaran di semua konsol. Tampilkan penggunaan dari perintah ini dan keluar. Tampilkan bantuan ini dan keluar. Jangan keluarkan akhiran baris baru. Jangan tampilkan pesan. Jangan gunakan APM untuk menghentikan komputer. Tidak melakukan apapun, sukses. Tidak melakukan apapun, tidak sukses. Jangan tampilkan pesan diagnosa boot. Jangan muat tabel komputer yang dispesifikasikan oleh daftar yang dipisahkan dengan koma. Jangan reboot, hanya hentikan. ESC di waktu apapun keluar. EKSPRESI EKSPRESI ] Aktifkan interpretasi 'escape backslash'. Masuk dalam KDB pada waktu boot. Masukan kata sandi   :  Masukan nama pengguna:  Evaluasi sebuah ekspresi. Keluar dari GRUB. BERKAS BERKAS1 BERKAS2 Sistem berkas tidak dapat diakses Tipe sistem berkas %s Perbaiki masalah video. Hentikan konfigurasi keamanan ATA sampai reset. GNU GRUB  versi %s Get/set parameter disk ATA. Hentikan sistem, jika memungkinkan gunakan APM. Hentikan komputer. Perintah ini mungkin tidak bekerja di semua implementasi 'firmware'. ID Perangkat `%s' tidak valid.
 Panggil konfigurasi routing pengguna. Tampilkan perangkat PCI. Tampilkan seluruh berkas. Tampilkan perangkat dan berkas. Tampilkan peta memori yang disediakan oleh firmware. Tampilkan variabel dari berkas blok lingkungan. Muat image 64-bit XNU. Muat BIOS 'dump'. Muat lingkungan FreeBSD. Muat modul kernel (ELF) FreeBSD. Muat modul kernel FreeBSD. Muat Linux. Muat ekstensi direktori XNU. Muat paket ekstensi XNU. Muat ekstensi XNU. Muat image XNU. Muat sebuah kernel multiboot 2. Muat sebuah kernel multiboot. Muat sebuah modul multiboot. Muat sebuah gambar singkat untuk XNU. Muat 'boot loader' lain. Muat berkas konfigurasi lain tanpa mengubah konteks. Muat berkas konfigurasi lain. Muat tabel ACPI komputer dan tabel yang dispesifikasikan oleh argumen. Muat initrd. Muat kernel dari FreeBSD. Muat kernel dari NetBSD. Muat kernal dari OpenBSD. Hanya muat tabel yang dispesifikasikan oleh daftar yang dipisahkan dengan koma. Muat variabel dari berkas blok lingkungan. Memuat Linux %s ... Memuat inisial ramdisk ... Memuat kernel dari FreeBSD %s ... MODUL Pelihara pemetaan drive BIOS. Penyuntingan minimal bergaya BASH didukung. Untuk kata pertama, TAB menampilkan pelengkapan perintah yang memungkin. Dimanapun TAB menampilkan perangkat yang memungkinkan atau pelengkapan berkas. %s JUMLAH_DARI_DETIK Perangkat tidak dispesifikasikan.
 PERINTAH PARTISI Partisi %s: Lakukan baik pemetaan secara langsung dan terbalik. Mainkan sebuah nada. Argumen yang memungkinkan adalah: Perintah yang memungkinkan adalah: Perangkat yang memungkinkan adalah: Berkas yang memungkinkan adalah: Partisi yang memungkinkan adalah: Hal yang memungkinkan adalah: Tekan tombol apapun untuk melanjutkan... Tampilkan daftar blok. Tampilkan konfigurasi dan identitas drive. Tampilkan ukuran dalam format yang mudah dibaca. Baca saja PANJANG bytes. Reboot komputer. Hapus sebuah modul. Reset seluruh pemetaan ke nilai baku. Dapatkan informasi perangkat. Simpan nilai terbaca kedalam variabel NAMAVAR. Simpan variabel ke berkas blok lingkungan. Cari perangkat dengan UUID. Jika VARIABEL dispesifikasikan, perangkat pertama yang ditemukan diset ke sebuah variabel. Cari perangkat dengan berkas. Jika VARIABEL dispesifikasikan, perangkat pertama yang ditemukan diset ke variabel. Cari perangkat berdasarkan nama. Jika VARIABEL dispesifikasikan, perangkat pertama yang ditemukan diset ke variabel. Set Advanced Power Management
(1=rendah, ..., 254=tinggi, 255=tidak nyala). Set Automatic Acoustic Management
(0=tidak nyala, 128=pelan, ..., 254=cepat). Set OEMID dari RSDP, XSDT dan RSDT. Set OEMTABLE ID dari RSDP, XSDT dan RSDT. Set revisi OEMTABLE dari RSDP, XSDT dan RSDT. Set sebuah variabel ke nilai kembali. Set bagian pembuat dari RSDP, XSDT dan RSDT. Set revisi pembuat dari RSDP, XSDT dan RSDT. Set drive ke mode tidur. Set drive ke mode standby. Set perangkat root. Set waktu habis standby
(0=tidak nyala, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set alamat port serial. Set pariti dari port serial. Set kecepatan port serial. Set stop bit dari port serial. Set panjang kata port serial. Set satuan serial. Set kata sandi pengguna (teks-terbuka). Tidak direkomendasikan dan tidak aman. Set variabel dengan masukan pengguna. Tampilkan pesan bantuan. Tampilkan sebuah daftar panjang dengan informasi yang lengkap. Tampilkan modul termuat. Tampilkan isi dari berkas. Tampilkan pemetaan saat ini. Tampilkan pesan ini. Lewati byte ofset dari awal berkas. Spesifikasikan nama berkas. Coba dukungan USB. Coba subsistem video. Masukan yang disoroti akan diboot secara otomatis dalam %ds. KATA SANDI PENGGUNA Penggunaan: Gunakan GDB remote debugger daripada DDB. Gunakan konsol serial. Hitung mundur secara detail. Tunggu selama jumlah dari detik yang dispesifikasikan. Tunggu untuk penekanan tombol setelah setiap baris dari keluaran. Peringatan: nama belakang tidak valid `%s'
 Peringatan: warna depan tidak valid `%s'
 Peringatan: kesalahan dalam sintaks (hilang slash) dalam `%s'
 Penempatan anda sangat kecil. core.img tidak akan masuk disana. [-e|-n] KATA-KATA [-f BERKAS] [-f BERKAS] nama_variabel [...] [ENVVAR] [PILIHAN] DISK [PILIHAN] BERKAS_ATAU_PERANGKAT [POLA ...] [[tahun-]bulan-hari] [jam:menit[:detik]] mencoba untuk membaca image core `%s' dari GRUB mencoba untuk membaca image core `%s' dari GRUB lagi tidak dapat mengkompress image kernel tidak dapat membaca `%s' secara benar besar diskboot.img seharusnya %u bytes tidak ada pengakhir dalam image core sektor-tidak-selaras data ditemukan dalam berkas core sektor pertama dari berkas core tidak selaras secara sektor sektor dari berkas core terlalu terpotong potong ukuran dari `%s' bukan %u ukuran dari `%s' terlalu besar ukuran dari `%s' terlalu kecil tidak dapat mengidentifikasikan sebuah sistem berkas dalam %s; pemeriksaan keamanan tidak dapat dilakukan                                                                                                         boot/grub/locale/it.mo                                                                              0000600 0001750 0001750 00000315253 13417732100 0013647 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                       v     #    |G      H_  #   I_      m_     _     _     _  $   _     _  6   `     H`     O`  	   [`     e`     r`     `     `     `     `  .   `  .   a  %   >a     da     ha    wa    |b    c     d  7   d  F   d  v   "e  +   e     e      e     e  !   	f     +f  ,   Hf     uf     f  $   f     f  *   f     g     !g     )g     9g     Qg  
   qg  	   |g     g  ,   g  ,   g  ,   g  '   )h  -   Qh      h  (   h  (   h  )   h     i     <i     \i     ii     ri  "   {i  4   i     i     i  7   i      j  1   )j     [j     zj  %   }j  '   j  %   j  '   j     k     k      k     >k     Sk     hk     mk     k     k     k     k     k     k     k  3   k     )l  $   /l     Tl     ll     l     l     l     l     l  -   l     m  !   4m     Vm     km     m  #   m     m  `   Hn  Z   n     o     o     ;o     =o     Ao     Xo     ^o     go     ~o     o     o     o     o     o     p     (p     ?p     Up     cp     zp     p     p     p  %   p     p     p     p     q     .q     Dq     Sq     fq     wq  *   q  3   q     q  "   	r  8   ,r     er     wr  	   r  #   r     r     r     r     s     3s     Js  )   Ys     s     s     s  P   s     /t     Dt  H   Yt  &   t     t     t  !   t  ,   
u     7u     Cu     Gu  	   du  !   nu  *   u     u     u     u     u     v  $   ,v     Qv     cv     uv     v     v     v  
   v  
   v     v  1   w     @w     Nw     [w     tw  3   w  >   w  $   x     (x     ?x     \x     tx     x     x  +   x     x     y  #   )y     My     dy  $   y     y     y  '   y  9   z     @z     Yz  z   wz     z     z  8   {     F{  
   ]{     h{     u{     {     {     K|  +   h|     |     |     |  "   |     |     }  (   }     @}     X}     d}     t}     }     }  "   }  0   }     ~     ~     ~  7   $~     \~     d~     p~     ~     ~     ~  0   ~     ~     ~            2   .  %   a            *     6     +        9     W     j  !   ;  d   ]  e     d   (  i     o     H   g          Ã     ك                    -     D  #   ]                 1   Ʉ  )        %     ,     .     C  /   R                 5   Ņ            K   6                    І     Ԇ     چ     ߆  '     P        ]     |  	                    '   ȇ  +             -  )   I     s               È     ؈            $        @     R  "   m                 (        ԉ     ؉  "   މ  +     -   -     [     t                 O                  4     K     Y  %   m       )     !   ܋  "        !     =  +   T                 !        ی                     3     T     o                    Ѝ  4             4     F     ^     y               Ǝ        !        &  4   @  M   u  2   Ï            *   .  8   Y                    ΐ       3     $   1  +   V                         ϑ                     =     R     T  D   l       7     ;        ,     L  !   k            s   Ó     7     O     l     }                    ה                         T     g     {                    Ɩ  '   ݖ  
                  5     :     R     V     h  H        Η                 %        B     \  #   u               Ә     ܘ                 3     T  "   a  (          %   ə       2   	     <     E  #   ^  *                    #   ǚ            	     	     "     ;   9  #   u  <        ֛            .     	   ?     I  `   [       !   ќ  )             !     '     /  q   <               ٝ                    (     =     \  "   {               О                    )     B  #   W     {       g                    -   ؠ       !        <  "   M  '   p  Q                        4     B     X     u               ̢                     *     K     `      s               ã     ԣ  -        "     <  "   P  b   s  )   ֤                .  ,   I     v       	     "     %                         &     )   8     b  ^   u     Ԧ  $     %        9  ^     _   K  }        )  )     '   
  >   2  D   q  !     '   ت  -      #   .     R  )   r       )     )     ,        :     Z     s            E     $      A   %  )   g               ʭ                %  q   :       :   ɮ          "     1     Q     n                 0   ̯               0  )   F  &   p               ϰ       )        (  %   8  %   ^  ,     '     :   ٱ       -   3     a  .   q            '   ǲ  $     "        7     C     `  *   n            )     o   ҳ     B     [  6        L     N  0   U        !     "   ɵ  #             "     @     V  !   u       
          <   Ҷ  %     >   5     t     }                      d   ӷ  *   8  0   c  6        ˸     Ӹ               
       0   *     [  !   n            $                       2     C  $   `  "     $        ͺ                     ,     >     P     b     o            '               $      +   E  "   q       )        ż     ׼               *  '   >     f            <                        /  m   J          Ӿ                  +   :  3   f  1        ̿  '   ڿ  -        0  '   9  '   a  .     	                            /     K     g                      *     ?     B   B  p          /               .     O     )   [            	          5                  2     H     c  :   }                                             8     N     _     e  	   r     |                                     
     
     	        %  !   +  )   M     w                 F     N   !     p  "   ~            -     -     $     #   9  0   ]  6                    (     1     )   O     y       !                     %        4  &   H     o             7     .      4   /     d                      %             !     6     M     f                 ,                       "     5     H  #   ]            B                  4     G     b     y  &                              &   (     O     g            ;     V     "   9  &   \  !                    /     H     F   X  w     N     (   f            I     $     '   &     N  %   g                      $     '     *        E     _     n  J                    -     +   J     v  $   |       "     +     J     %   D     j        "                             +     >     V     k       %                    %        D     [     n            [          !        0     I     ]     b                                             .     F     b     x                           1        6     F     ^     q               ^  1   l       0               !        :     W     m                                                       .     @  &   V     }                      '     &   &     M  L   Z            !                  ,     I     ^     p                      #     #     $        0     @  &   Q     x  !                              	     7        >  %   X  [   ~  w     7   R  K     #     /        *     E     c  &     U     @     Q   ?                 +          R     L   q  .               F   	     P     f     }                                    &  2   A  !   t  #                                 /     O     g       (     #             
          =  )   P     z       '     '     '        %  0   D     u       -     8             -  !   D      f            .          !     B   !  E   d  B         %   {  ,                  	  0   !  "   R  8   u  
          
          #             &      E     f  5   t  3     ,               C    1  b  O         E     C   C       /        ;  &   K     r  '          0               *   !     L  0   g                      '          	        %  +   E  ,   q  +     +     /     !   &  ,   H  ,   u  -     $     $             &     /  3   8  D   l            0     	     3        9     X  '   [  +     '     +               (   
     3  !   K     m     q  	     %                              3        9  0   ?     p                              	  ,   !  "   N  (   q       "          *         w    u   8                                  #   9    ]    } !                   	    '    @ #   W    {             $             !       *    H    g    }     %    8    G    ,   W )    N               . !   7 !   Y    {                 1       # #   @ #   d _           	 R    	 *   s	    	    	 "   	 B   	    +
    7
    ;
 	   X
 1   b
 8   
    
    
             = (   W         !    %         .    
   A 
   L    W 7   n         "        ;    A   C <                    '   6 (   ^ *        +                8 %   Y         ,    F       #    B    _         Z       n             "        (    @               0 '   N    v     ;                       *    G 7   \ ;                1       %    -    9    J    a    m B   u                 >   
 2   I    |     (    :    ;    #   O    s     +   { t    u    t    y        \       k                             %   *    P    p     :    7                   3 A   D              L        &   6 O   ] !    +                   $    ) 0   . V   _ "        	        &         *   .  5   Y            2     #     #   ! "   9!    \!    t!    !    ! *   !    !    " -   -"    [" 
   ]"    h" $   n"    "    " *   " +   " 1   "    &#    C#    V#    h#    z# o   #    #    $    .$    C$    S$ 2   m$ "   $ 1   $ (   $ )   %    H%    d% 4   %    %    %    % )   % #   )&    M&    j&    w& (   & "   &    & %   & "   '    7'    P' =   g' "   '    ' #   '    (     (    =(    X( !   s(    ( $   (    ( G   ( ^   >) >   ) &   )     * 4   $* E   Y*    *    *    *    *    * B   + %   R+ 4   x+    +    +    +    +    ,    #, $   C, !   h,    ,    ,    , O   ,    
- I   - K   [- '   - "   - !   -    . +   /. k   [.    . &   .    /    /    */    H/    h/    /    /    /    /    X0    1    01    H1    P1 "   _1    1    1 .   1    1    1    2    !2    &2    >2    B2    T2 T   n2    2 #   2    2    3 2   &3    Y3    v3 5   3 "   3 &   3    4    )4 &   G4 '   n4 ,   4    4 '   4    4    5 #   25 ,   V5 5   5    5    5 '   5 1   6    96    ;6    N6 #   W6    {6    6    6 	   6 6   6 X   6 9   A7 [   {7    7     7    8 0   8    G8    U8 g   o8    8 )   8 (   9    ?9    C9    I9    R9 ~   e9    9    9    :    ":    =:    P:    f:     |: !   : #   :    :    :    ;    7;    O;    f;    {;    ; (   ; "   ; !   ; Z   < {   t< !   < '   = /   :=    j= #   =    = .   = 0   = [   > $   p> #   >    >    >    >    >    ?    .?    L?    l?    ?    ?    ? 0   ?    @    @     4@ "   U@    x@    @ #   @ C   @    A    %A %   <A o   bA -   A      B    !B    9B 3   TB !   B    B 	   B (   B (   B    
C    C    %C    -C -   4C 3   bC    C j   C    D .   3D 3   bD    D j   hE o   E    CF    F 6   G 4   G K   (H S   tH "   H *   H 2   I 2   II *   |I -   I #   I 3   I .   -J 6   \J +   J #   J %   J    	K    )K Q   @K (   K T   K 6   L '   GL &   oL (   L )   L 5   L    M    8M $   M P   M ,   8N    eN '   zN    N    N    N '   N    O 2   :O *   mO    O    O 3   O 5   P    :P    YP    uP !   P %   P    P )   P )   Q 0   >Q +   oQ ?   Q    Q ,   Q    (R F   8R    R    R 2   R 6   R $   S    CS "   RS    uS 7   S    S    S -   S    S     }T    T 8   dU    U 	   U <   U (   U -   V &   =V '   dV    V !   V %   V )   V 0   W    HW 
   gW    rW :   W 4   W I   W    CX    LX    PX 1   VX    X    X t   X 1   .Y .   `Y ?   Y    Y    Y    Y    Y    Z    Z <   9Z    vZ &   Z (   Z    Z -   Z     $[    E[ &   `[    [ &   [ -   [ #   [ $   \    :\    X\ (   u\    \    \    \    \    
]    "]    B] #   b] )   ] ,   ]    ] *   ] -   (^ (   V^    ^ '   ^    ^    ^    ^    ^    _ *   "_ #   M_ ,   q_    _ =   _ "   _    `    `    9` q   V`    `    `    `    a    -a <   Ea S   a 7   a    b ,    b 9   Mb    b -   b 2   b 3   b 
   (c    3c    Sc    pc     c    c     c    c    d    .d    Gd    cd -   hd C   d O   d    *e    e 1   [f    f    f .   f W   f +   ?g    kg    g 	   g    g 5   g    g    h    h    /h    Jh =   eh    h    h    h    h    h    h    i    i    -i    Ci    Ti    Zi 	   gi    qi    i    i    i    i 	   i 
   i    i    
j    j 	   %j    /j !   5j +   Wj    j    j &   j #   j c   j K   [k    k (   k    k    k :   k <   4l +   ql 0   l 1   l <    m    =m    Mm    bm ,   sm 5   m 1   m    n    n 2   ,n #   _n ,   n #   n .   n    o 3   o #   So '   wo ,   o A   o 7   p H   Fp 9   p    p &   p    q '   )q /   Qq "   q %   q    q     q .   r    :r    Mr    Vr 4   ur    r    r &   r    r    s    !s .   As $   ps *   s L   s %   t ,   3t    `t     xt    t     t /   t %   u    ,u    ;u    Du    _u /   u    u (   u    u    v ;   #v X   _v 4   v #   v #   w    5w    Sw +   Yw ?   w K   w L   x    ^x W   x 0   ?y #   py    y @   y 3   y /   z    Fz 1   dz    z    z    z    z $   z -   { -   0{ $   ^{    {    { P   {    { &   |    D| <   \| 6   |    | +   |    } '   } 3   3} >   g} +   }    } 4   } ;   "~    ^~ #   {~    ~    ~ "   ~    ~        3    S    r             0            =    V    f    r         %   !    G    `    t #   y     !       ρ            "    @ 8   ^     *       ݂         2   -    `    | %    <               * (   ?    h        O D   ` )    ;   υ         *   ;    f             	   Æ    ͆    ۆ            
        4    E    W     k '           ԇ      %       4 +   L .   x     N           # (   > "   g             ʉ              !   ; "   ] #    5    5   ڊ 7        H    i 9        4   ۋ        /    M    Q    ` 
   y A       ƌ #    \       b C    W   0 (    /        &    '   ( '   P `   x I   ُ b   #             9   ِ &    U   : Z    3           4 b   9            ђ        	    ( )   @    j &    !    4   ͓ '    )   *    T    l     !        #   ٔ     *    ,   D 8   q 9            '       @ (   X *    '    0   Ԗ ,    /   2 !   b 4    "    &   ܗ :    ;   > "   z     +    &    "       + @   ; &   | &    ?   ʙ P   
 O   [                w         g        X            S       U  ^  |                    2  e  K  H  ^    1                          /  6    C              "                              O         F  r   O      b  '      ^      Q  A      G     
  ,                                                      s                        y  L    I    '   /    =          l   l  5          ;      z   <  .          ^  v              J             H  Q    J       4            O  w  8  o    Q        
       m                     2  3       4       g                 (         X  &           0            8            e      Z   j      r      !  Q         A  ,              6   K  2      n  ]      )     y                   c              d    d  h  s     @      P  ;            &    ?     3  n  q        /  v     R  m              )   [   @        >      -  s    v      s    S  ,       f          Z  0                 @    T    {            i      
         i  J          M       Z        $  N  *     0          o                     5            9   !  _  ?                 N          {      #  "    *  1    7  Y           -              N   P   #  m  f           O     p              `  -                        I       W             7  r  Y    }  )              w      h       ?           _                                      u    E  ]               5                                j  k  |   ,  L      k      G  P  ]       
           j  [     [           (  !                                                                     	  +              @               k    O    z     9  ]              4        *  b       1    )                    %                                      v       ,  V               E   L                                 M  &                    \        ;                            '    0      F      a                 q  ?                          n                        %                (  Z     A      )                          :    {   c       5     W      l  ;   T      Y  (  Z                <    b   7   f      M  +            S    0            9  t          B            <     D          5          S  u     B  3             3           }  @  `                       /            H                  9  z  =                     L          /   1             \                      -       [                    !                {              7  I   &    9         A      U      K  M                 e                        `  m    _   `                          e            _  |          :        I          >            (                 i            Y      b      j   p    n                 e      
  _  4          >  q   P  E    g                 K       *  %        X                }                           o  a  N  -      %     x          H   	                1           4      z      V         t         "   =                        W                       c                                   \                            ?         d        X                               6  .    f      :   E  s              	            H          S      g        K  D            }               o                       D                         a    J    ^   G  $                  i    j                p          ~          T           L  G          c                                   +           k        Y             l           C        q          *   8        <         T      q                 N     <  !             2   h  8        p                  6      y                     ~                          :  B       u    D              8                 #      l    F  w        V          x      u      W      R                 3    P            E      V   >                g      k                             .    b                               U                    r        m              =  2  "            c  y      A   G               R             B    a      \  ]  C  W      $      M                            V  \              >     .                                 p   	        v      F      n        +    :  d  6      x             J      t  "                    I            U                                            C        t          h          B  D  .                     ;        x               %      U                Q      C   	         F                              o  [  7    a      =                   #        r    $      R          `       &  R    T                    #  |        '  d      '            i   u  +     h        t            ~           f  $  X              ~                   total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: option '%c%s' doesn't allow an argument
 %s: option '%s' is ambiguous; possibilities: %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File size: %s
 File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS Import ZFS wrapping key stored in FILE. Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List coreboot tables. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... M MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MODULE Mail xorriso support requests to <bug-xorriso@gnu.org>. Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Option -- switches to native xorriso command mode. Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] PUBKEY_ID Paletted  Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot into firmware setup menu. Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Render Apple .disk_label. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show CBMEM console content. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show the contents of a file. Show the current mappings. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Switch to native disk drivers. If no modules are specified default set (pata,ahci,usbms,ohci,uhci,ehci) is used Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 T TARGET Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This entry can be booted by any user. This requires setting GRUB_DEFAULT=saved in %s/default/grub.\n Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. Your embedding area is unusually small.  core.img won't fit in it. Your xorriso doesn't support `--grub2-boot-info'. Some features are disabled. Please use xorriso 1.2.9 or later. Your xorriso doesn't support `--grub2-boot-info'. Your core image is too big. Boot as disk is disabled. Please use xorriso 1.2.9 or later. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `cryptomount' command fails: %s `loopback' command fails: %s `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format blocklist FILE blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s cannot compress the kernel image cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot get translator command line for path `%s': %s cannot open OS file `%s': %s cannot open `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. diskboot.img size must be %u bytes do not probe for filesystems in DEVICE domain name component is too long don't update LED state done embed FILE as an early config embed FILE as public key for signature checking embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enable ARCS (big-endian mips machines, mostly SGI) boot. Disables HFS+, APM, sparc64 and boot as disk image for i386-pc enable sparc boot. Disables HFS+, APM, ARCS and boot as disk image for i386-pc enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to get canonical path of `%s' failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification install GRUB images under the directory DIR/%s instead of the %s directory install even if problems are detected invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid block size invalid color specification `%s' invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no `/' in canonical filename no command is specified no decryption key available no network card found no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory of TFTP server route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the argument `%s' requires an integer the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for label use COLOR for label background use COLOR for text use DIR as the EFI System Partition root. use FILE as font (PF2). use FILE as font for label use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub-2.00+20130519
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-06-10 11:02+0200
Last-Translator: Milo Casagrande <milo@milo.name>
Language-Team: Italian <tp@lists.linux.it>
Language: it
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8-bit
Plural-Forms: nplurals=2; plural=(n!=1);
               memoria totale: %d KiB
     Nessuna modalità preferita disponibile
     Modalità preferita: %ux%u
   Checksum EDID non valido   Versione EDID: %u.%u
   Inizializzazione adattatore video non riuscita   Nessuna informazione disponibile   Info VBE:   versione: %d.%d  Rev. software OEM: %d.%d
   oppure:   (più a sinistra)  (mediano)  (più a destra)  - La partizione inizia a %llu%sKiB  - Dimensione settore %uB  - Dimensione totale %llu%sKiB  - Dimensione totale sconosciuta  [OPZIONE...] %.*s: il parametro ARGP_HELP_FMT deve essere positivo %.*s: il parametro ARGP_HELP_FMT richiede un valore %.*s: parametro ARGP_HELP_FMT non conosciuto %ds %ds rimanenti. Sembra che %s contenga un file system %s di cui non è noto se sia in grado di riservare dello spazio per l'avvio in stile DOS. Installare GRUB qui potrebbe portare alla DISTRUZIONE del file system se dati importanti vengono sovrascritti da grub-setup (--skip-fs-probe disabilita questo controllo, usare a proprio rischio). Sembra che %s contenga una mappa delle partizioni %s e LDM di cui non è noto se sia una combinazione sicura. Installare GRUB qui potrebbe portare alla DISTRUZIONE del file system se dati importanti vengono sovrascritti da grub-setup (--skip-fs-probe disabilita questo controllo, usare a proprio rischio). Sembra che %s contenga una mappa delle partizioni %s di cui non è noto se sia in grado di riservare dello spazio per l'avvio in stile DOS. Installare GRUB qui potrebbe portare alla DISTRUZIONE del file system se dati importanti vengono sovrascritti da grub-setup (--skip-fs-probe disabilita questo controllo, usare a proprio rischio). %s non supporta gli UUID %s genera una disposizione di tastiera per GRUB utilizzando ckbcomp\n %s è deprecata, utilizzare "set gfxpayload=%s" prima del comando.
 %s è deprecata, la modalità VGA %d non è riconosciuta, usare "set gfxpayload=LARGHEZZAxALTEZZA[xPROFONDITÀ] prima del comando.
 %s non è ancora supportato da grub-mkconfig.\n %s, con Hurd %s %s, con Hurd %s (modalità ripristino) %s, con Linux %s %s, con Linux %s (modalità ripristino) %s, con Xen %s e Linux %s %s, con Xen %s e Linux %s (modalità ripristino) %s, con hypervisor Xen %s, con kFreeBSD %s %s, con kFreeBSD %s (modalità ripristino) %s, con kernel %s (via %s) %s, con kernel %s (via %s, modalità ripristino) %s: HASH NON CORRISPONDENTE
 %s: OK
 %s: ERRORE LETTURA
 %s: troppi argomenti
 %s: è necessario eseguirlo come root\n %s: errore: %s: info: %s: opzione non valida -- "%c"
 %s: l'opzione "%c%s" non accetta argomenti
 %s: l'opzione "%s" è ambigua; possibilità: %s: l'opzione "--%s" non accetta argomenti
 %s: l'opzione "--%s" richiede un argomento
 %s: l'opzione "-W %s" non accetta un argomento
 %s: l'opzione "-W %s" è ambigua
 %s: l'opzione "-W %s" richiede un argomento
 %s: l'opzione richiede un argomento -- "%c"
 %s: l'opzione richiede un argomento -- "%s"\n %s: opzione "%c%s" non riconosciuta
 %s: opzione "--%s" non riconosciuta
 %s: avviso: (32 bit) (64 bit) (ERRORE DEL PROGRAMMA) Nessuna versione conosciuta. (ERRORE DEL PROGRAMMA) L'opzione dovrebbe essere stata riconosciuta. (su %s) - Etichetta "%s" - Ultima modifica %d-%02d-%02d %02d.%02d.%02d %s --ALTRO-- -h HASH [-c FILE [-p PREFISSO]] [FILE1 [FILE2 ...]] -l | -r | [-s] devgrub discoos ,5 Interfaccia 16 bit protetta supportata
 Interfaccia 16 bit protetta non supportata
 Interfaccia 32 bit protetta supportata
 Interfaccia 32 bit protetta non supportata
 =VAL > Archivio non volatile della RAM per ACPI RAM ACPI riutilizzabile Arresto tramite ACPI non riuscito IND IND VALORE [MASCHERA] IND [DIM] IND1,MASCHERA1[,IND2,MASCHERA2[,...]] IND SERVERDNS APM disabilitato
 APM disattivato
 APM abilitato
 APM attivato
 ARGP_HELP_FMT: il valore %s è minore o uguale a %s ASCII Accetta terminatori di riga in stile DOS (CR/NL) Terminali di input attivi: Terminali di output attivi: Adattatore "%s":
 Aggiunge un server DNS Aggiunge un indirizzo di rete Aggiunge una rotta di rete Opzioni avanzate per %s Opzioni avanzate per %s (con hypervisor Xen) Consente di essere fermato con ESC Chiede il nome del file da cui riavviare Assume l'input come hex Assume l'input come una passphrase Assume l'input come raw Tentativo di decifrazione chiave master... Tentativo di installare GRUB su un disco con molteplici etichette di partizioni o sia con etichetta di partizione e file system. Tale pratica non è ancora supportata. Tentativo di installare GRUB su un disco con molteplici etichette di partizioni. Tale pratica non è ancora supportata. Tentativo di installare GRUB su un disco privo di partizioni o su una partizione. Tale pratica non è raccomandabile. Terminali di input disponibili: Terminali di output disponibili: B B/s DUMP_BIOS [DUMP_INT10] BLOCCO BYTE:BIT Modalità immagine di sfondo Directory di base per l'elenco hash Avvia un sistema basato su BIOS Avvia un sistema operativo Avvia in modalità singolo utente Avvia con messaggi di debug Avvia con messaggi prolissi Avvio di "%s" in corso Avvio di un elenco di comandi Avvia in modalità blind Percorso di avvio: %s
 Percorso di avvio: non disponibile
 Attiva breakpoint in GDB CGA  COLORE COMANDO [ARG] CPU Idle non rallenta il processore
 CPU Idle rallenta il processore
 CS5536 in %d:%d.%d
 Impossibile abilitare l'area ROM. Modifica i device configurati Modifica il tipo di partizione Verifica il tasto Alt Verifica il tasto Control Verifica il tasto Maiusc Verifica le caratteristiche della CPU Verifica gli hash dei file con gli hash presenti in FILE Verifica se la CPU supporta la modalità (lunga) a 64 bit (predefinito) Verifica lo stato dei modificatori dei tasti Verifica che l'utente sia in ELENCOUTENTI Verifica la presenza di errori di sintassi nello script di configurazione GRUB Pulisce lo schermo Pulito il flag attivo su %d.
 Comandi: Confronta FILE con un file LOCALE Confronta il file "%s" con "%s":
 Confronta due file Calcola l'UUID XNU di DEVICE Calcola o verifica l'hash Configura la porta seriale Continua i cicli Converte il formato del file del carattere in PF2 Copia FILE su un file LOCALE Copia il file sullo standard output Impossibile trovare il driver FPSWA Impossibile trovare il volume fisico "%s": potrebbero mancare alcuni moduli dall'immagine core. Impossibile caricare sha256 Impossibile caricare sha512 Crea strutture simil BIOS per retro-compatibilità con sistemi operativi esistenti Crea un file di blocco dell'ambiente vuoto Tipologie di terminfo correnti: DEVICE DEVICE [PARTIZIONE[+/-[TIPO]]] ... DEVICE deve essere un device del sistema operativo (come /dev/sda) NOME_DEVICE DIR DIRECTORY [OSBundleRequired] SERVERDNS Strumento di debug per il driver del file system. Dichiara regioni della memoria come danneggiate (badram) L'estrattore è troppo grande Definisce una voce di menù Definisce un sotto-menù Elimina un indirizzo di rete Elimina una rotta di rete Elimina l'unità di loopback specificata Elimina le variabili Determina il driver Determina lo UUID del file system Determina l'etichetta del file system Determina il tipo di file system Determina il tipo della mappa delle partizioni Device %s: Devid: %s
 Devid: non disponibile Colore diretto, maschera: %d/%d/%d/%d  pos: %d/%d/%d/%d Disabilita ACPI Disabilita SMP Disabilita tutto l'output di avvio Disabilita/Abilita SMART (0/1) Scartata partizione non correttamente annidata (%s,%s,%s%d) Statistiche cache del disco: hit = %lu (%lu.%02lu%%), miss = %lu
 Il conteggio dei dischi deve precedere l'elenco dei dischi.
 Visualizza la versione FPSWA Visualizza lo stato SMART Visualizza una riga di testo Visualizza la blocklist di FILE Visualizza l'output su tutte le console Visualizza la modalità di alimentazione Visualizza l'uso di questo comando ed esce Visualizza questo aiuto ed esce Visualizza/Imposta la data e l'ora correnti Non visualizza l'a capo finale Non stampa alcun messaggio Non esamina alcuna unità floppy Non usa APM per arrestare il computer Non fa nulla, successo Non fa nulla, insuccesso Non visualizza messaggi diagnostici di avvio Non carica le tabelle host specificate come elenco separato da virgole Non riavvia, arresta solamente Non si ferma al primo errore Non aggiorna EBDA: potrebbe risolvere dei problemi o dei blocchi con alcuni BIOS, ma non è efficace con sistemi operativi che non ricevono RSDP da GRUB VARAMB VARAMB [VARAMB] ... ERRORE: non è stata trovata alcuna disposizione di tastiera valida. Controllare l'input.
 ESC esce in qualsiasi momento. ESPRESSIONE ESPRESSIONE ] Tempo trascorso: %d.%03d s. 
 Tempo trascorso: %d.%03d secondi 
 L'embed non è possibile. GRUB può essere installato con questa configurazione solo usando blocklist. Le blocklist non sono comunque affidabili e ne viene sconsigliato l'uso. Simula la pressione di sequenze di tasti Abilita l'interpretazione delle sequenze di escape con backslash Inserire password ZFS: Entra in KDB all'avvio Entra nella modalità normale Inserire la passphrase per %s%s%s (%s): Inserire la password: Inserire il nome utente:  Errore nell'analizzare gli argomenti della riga di comando
 Valuta un'espressione Chiusura non riuscita Esce da GRUB Esce dai cicli Esce dalla modalità normale Esporta le variabili Espone la versione 1 delle tabelle al sistema operativo Espone le versioni 2 e 3 delle tabelle al sistema operativo FILE FILE [ARG ...] FILE [ARG ...] FILE | TEMPO [TONO1 DURATA1] [TONO2 DURATA2] ...  FILE... FILE1 FILE2 NOMEFILE COMANDO FILESYSTEM [VARIABILE] FILE|prompt FORMATO Il protocollo FPSWA non è stato in grado di trovare l'interfaccia Revisione FPSWA: %x
 DA-A[,DA-A] DA[K|M|G] A[K|M|G] FT_Init_FreeType non riuscita Caricamento delle voci predefinita e di ripiego non riuscito.
 Creazione dell'albero "device-mapper" non riuscita Viene usato "%s" come ripiego Dimensione file: %s
 Il file system "%s" non supporta l'embed I file differiscono all'offset %llu: 0x%x [%s], 0x%x [%s]
 I file differiscono nella dimensione: %llu [%s], %llu [%s]
 Impossibile accedere al file system File system di tipo %s Riempie l'MBR ibrido dell'unità GPT DEVICE: le partizioni specificate saranno parte di un MBR ibrido; sono consentite fino a 3 partizioni; TIPO è un tipo di MBR; + indica che la partizione è attiva, solo una partizione può essere attiva Finalizza il caricamento dell'emulatore EFI Prima prova il device SUGG se in esecuzione su ARC, se SUGG termina con una virgola, prova anche le sotto-partizioni Prima prova il device SUGG se in esecuzione su BIOS, se SUGG termina con una virgola, prova anche le sotto-partizioni Prima prova il device SUGG se in esecuzione su EFI, se SUGG termina con una virgola, prova anche le sotto-partizioni Prima prova il device SUGG se in esecuzione su IEEE1275, se SUGG termina con una virgola, prova anche le sotto-partizioni Prima prova il device SUGG se l'accesso diretto all'hardware è supportato, se SUGG termina con una virgola, prova anche le sotto-partizioni Prima prova il device SUGG, se SUGG termina con una virgola, prova anche le sotto-partizioni Corregge problemi video Trovato %s su %s (%s)\n Trovato %s su %s\n Trovato GNU Mach: %s Trovato modulo Hurd: %s Trovato kernel NetBSD: %s\n Trovato sfondo: %s\n Trovata immagine initrd: %s\n Trovata directory moduli kernel: %s\n Trovato kernel di FreeBSD: %s\n Trovata immagine linux: %s\n Tema trovato: %s\n Errore Freetype %d nel caricare il glifo 0x%x per U+0x%x%s Blocca le impostazioni di sicurezza ATA fino a un reset venerdì G GNU GRUB versione %s Menù avvio GRUB GRUB non ha ancora informazioni su come spegnere questo computer. Emulatore GRUB GRUBDEVICE=PLAN9DEVICE Dati errati in ARGP_HELP_FMT: %s Genera disposizione di tastiera GRUB a partire da quella della console Linux Genera hash password PBKDF2 Genera un file di configurazione GRUB. Genera un'immagine autonoma (contenente tutti i moduli) nel formato selezionato Calcola il checksum crc32 di FILE Recupera informazioni sulla cache del disco Recupera/Imposta parametri ATA GiB GiB/s HASH SUGG Arresta il sistema, utilizzando APM se possibile Arresta il computer: questo comando non funziona con tutte le implementazioni firmware Gestisce N byte nel file di output Hello World Hercules  ID IMMAGINE1 [IMMAGINE2 ...] PUNTODIMOUNT PERCORSO_IMG COMANDI Importa chiavi wrap ZFS archiviate in FILE Device virtuale non corretto: nessun tipo disponibile Inserisce un modulo Installa GRUB sull'unità. Installazione completata, nessun errore segnalato. Riferimento all'indietro non valido Nome classe di caratteri non valido Carattere di collazione non valido Comando %s non valido.
 Contenuto di \{\} non valido Device "%s" non valido.
 Conteggio dischi non valido.
 Espressione regolare precedente non valida Limite massimo non valido Espressione regolare non valida Invoca il routing della configurazione utente K KERNEL ARG TASTO Tasto rapido per avviare questa voce KiB KiB/s Dispositivo virtuale foglia (file o disco) Parametro legacy "ask" non più supportato. Legenda: masc/posizione=rosso/verde/blu/riservato Lunghezza dell'hash generato Lunghezza del salt Elenca server DNS Elenca device PCI Elenca tutti i file Elenca le modalità video disponibili; se viene fornita la risoluzione, mostra solo le modalità corrispondenti Elenca le tabelle coreboot Elenca device e file Elenca device o file Elenca i device Elenca i file in PERCORSO Elenca la mappa della memoria fornita dal firmware Elenco modalità video supportate: Elenco di utenti abilitati ad avviare questa voce Elenca o seleziona un terminale di input Elenca o seleziona un terminale di output Elenca le variabili attuali Elenca i caratteri caricati Elenca le variabili dal file a blocchi dell'ambiente Carica un'immagine XNU 64-bit Carica un dump BIOS Carica ambiente FreeBSD Carica un modulo del kernel FreeBSD (ELF) Carica un modulo del kernel FreeBSD Carica kernel.sys di FreeDOS Carica Linux Carica NTLDR o BootMGR Carica un modulo del kernel NetBSD (ELF) Carica un modulo del kernel NetBSD Carica kernel Plan9 Carica una directory d'estensione XNU Carica un pacchetto estensione XNU Carica un'estensione XNU Carica un'immagine XNU Carica un ramdisk XNU, sarà disponibile nel sistema come md0 Carica il dump "device-properties" Carica un'immagine PXE Carica una disposizione di tastiera Carica un kernel multiboot 2 Carica un modulo multiboot 2 Carica un kernel multiboot Carica un modulo multiboot Carica un'immagine splash per XNU Carica un'immagine XNU ibernata Carica e inizializza l'emulatore EFI Carica un altro boot loader Carica un altro file di configurazione, ma prende solo le voci di menù Carica un altro file di configurazione senza cambiare contesto ma prende solo le voci di menù Carica un altro file di configurazione senza cambiare contesto Carica un altro file di configurazione Carica un altro payload coreboot Carica un'immagine di sfondo per il terminale attivo Carica le tabelle ACPI dell'host e quelle specificate dagli argomenti Carica initrd Carica ramdisk kOpenBSD Carica il kernel FreeBSD Carica il kernel NetBSD Carica il kernel OpenBSD Carica solo le tabelle specificate come elenco separato da virgole Carica lo stesso file in modi diversi Carica le variabili dal file a blocchi dell'ambiente Carica chiave cifratura ZFS Caratteri caricati: Caricamento GNU Mach... Caricamento Linux %s... Caricamento Xen %s... Caricamento ramdisk iniziale... Caricamento kernel per FreeBSD %s... Caricamento kernel per Illumos... Caricamento Hurd... M verifica MAC non riuscita VOCE_MENÙ è un numero, il titolo o un identificatore di un elemento del menù MODULO Inviare richieste di supporto relative a xorriso a <bug-xorriso@gnu.org>. Crea un'immagine avviabile di GRUB da CD-ROM, disco, chiavetta USB o floppy Crea file disposizione tastiera di GRUB Crea un'immagine avviabile di GRUB Crea un drive virtuale da un file Rende la partizione attiva Gestisce le mappature delle unità del BIOS Argomenti obbligatori od opzionali per le opzioni lunghe lo sono anche per le corrispondenti opzioni corte. Gestisce device PCI Misura il tempo utilizzato per COMANDO Memoria esaurita Tipo di memoria: DDR2. Tipo di memoria: sconosciuto. Identificatore di voce di menù Voce di menù non specificata. Tipo di voce di menù MiB MiB/s Supporto minimale per modifica in stile BASH. Per la prima parola, TAB elenca i completamenti del comando. In altre parti elenca i completamenti possibili per device o file. %s Supporto minimale per modifica in stile Emacs. TAB elenca i completamenti. Premere Ctrl-x o F10 per avviare, Ctrl-c o F2 per la riga di comando, Esc per annullare le modifiche e tornare al menù. Argomenti mancanti
 File di input mancante
 lunedì Monocromatico  Più di un device d'installazione? Più di una voce di menù? Monta un device crypto Monta tutti i volumi col flag "boot" impostato Monta tutto Monta in base allo UUID Monta dispositivi cifrati NOME NOME [VARIABILE] [SUGG] NUM NUMERO_DI_SECONDI Nome	Cont rif	Dipendenze
 Sono in uso driver disco nativi: l'interfaccia disco firmware non verrà utilizzata. Protocolli di rete: Il nuovo MBR viene scritto in "%s"
 Nessun CS5536 trovato Nessun FPWSA trovato Nessuna statistica disponibile sui tempi di avvio
 Nessun comando specificato.
 Nessun device specificato.
 Nessuna statistica disponibile della cache del disco
 Nessuna unità è stata ri-mappata Nessun file system conosciuto rilevato Nessuna corrispondenza Nessun percorso specificato.
 Nessun percorso o device specificato.
 Nessuna espressione regolare precedente Nessun albero di device virtuali disponibile Non-chain 4  Parametri del comando non sufficienti.
 Collegare il debugger remoto. Numero di iterazioni PBKDF2 Disco #num ------> Device GRUB/BIOS Errore nell'aprire il file di sistema %s: %s L'opzione -- passa alla modalità comandi di xorriso. Opzioni: Lookup fuori intervallo: %d
 Sostituzione fuori intervallo (%d, %d)
 Scavalca la mappatura ipotizzata dei device Plan9 P PARTIZIONE COMANDI PERCORSO L'hash PBKDF2 della password è %s
 PORTA PORTA VALORE [MASCHERA] ID_CHIAVE_PUB Tavolozza Analizza configurazioni grub-legacy nel nuovo contesto Analizza configurazioni grub-legacy nel nuovo contesto utilizzando solo le voci di menù Analizza configurazioni grub-legacy nello stesso contesto Analizza configurazioni grub-legacy nello stesso contesto utilizzando solo le voci di menù Parte n° %s.
 La partizione %d è ora attiva.
 Partizione %s: La partizione in stile "%s" non supporta l'embed Percorso: %s
 Percorso: non disponibile Esegue COMANDI sulla partizione.
Usare "parttool PARTIZIONE help" per l'elenco dei comandi disponibili. Esegue un lookup DNS Esegue una configurazione automatica IPV6 Esegue mappature sia dirette sia inverse PiB PiB/s Planare  Riproduce un suono Non usare il vecchio titolo "%s" per GRUB_DEFAULT, utilizzare "%s" (per versioni prima di 2.00) o "%s" (per 2.00 o successive) GUID pool: %016llx
 GUID pool: non disponibile Nome pool: %s
 Nome pool: non disponibile Stato pool: attivo Stato pool: distrutto Stato pool: esportato Stato pool: device ARC livello 2 Stato pool: potenzialmente attivo Stato pool: riservato per hot spare Stato pool: non disponibile Stato pool: non inizializzato Possibili argomenti sono: Possibili comandi sono: Possibili device sono: Possibili file sono: Possibili partizioni sono: Possibili cose sono: Fine prematura dell'espressione regolare Premere un tasto per continuare... Premere un tasto per lanciare xnu "Invio" avvia il sistema selezionato; "e" modifica i comandi; "c" va alla riga di comando. "Invio" avvia il sistema selezionato; "e" modifica i comandi; "c" va alla riga di comando; "Esc" torna al menù precedente. Stampa informazioni sulla memoria Stampa informazioni ZFS riguardo DEVICE Stampa ZFS-BOOTFSOBJ o lo archivia in VARIABILE Stampa una blocklist Stampa ed esegue l'argomento BLOCCO Stampa backtrace Stampa informazioni e impostazioni dell'unità Stampa le dimensioni in un formato comprensibile Cerca informazioni sul device per un percorso fornito (o device se usato con l'opzione -d). RAM che contiene le tabelle coreboot RAM che contiene il codice firmware Slot RAM n° %d
 REGEXP STRINGA Immagine ROM presente. Legge un valore 16 bit da IND Legge un valore 16 bit da PORTA Legge un valore 32 bit da IND Legge un valore 32 bit da PORTA Legge un valore 8 bit da IND Legge un valore 8 bit da PORTA Legge solo LUNGHEZZA byte Riavvio non riuscito Riavvia nel menù di configurazione del firmware Riavvia il computer Reinserire la password: Registro %x di %x:%02x.%x è %x
 Espressione regolare troppo grande Rimuove un server DNS Rimuove un modulo Rimuove una variabile dell'ambiente Rimuove qualsiasi regione della memoria nell'intervallo specificato Visualizza .disk_label Apple Segnalare i bug a %s.
 Segnalare i bug a <bug-grub@gnu.org>. Richiesto terminale seriale, ma GRUB_SERIAL_COMMAND non è specificata. Verranno usati i parametri predefiniti. Ripristina le mappature ai valori predefiniti Recupera informazioni sul device Ritorna da una funzione Ritorna al prompt IEEE1275 Eseguire "gdb %s %d" e impostare ARGS.HOLD a zero.
 Esegue "go" per ripristinare GRUB SEC NOMEBREVE NOMEBREVE SCHEDA INDIRIZZO [INDIRIZZOHW] NOMEBREVE RETE [INTERFACCIA| gw GATEWAY] DIM SORGENTE|-u UUID|-a|-b STRINGA sabato Salva il valore letto nella variabile NOMEVAR Salva le variabili sul file a blocchi dell'ambiente Dice "Hello World" Cerca i device per UUID: se VARIABILE è specificata, il primo device trovato è impostato a una variabile Cerca i device tramite un file Cerca i device tramite un UUID del file system Cerca i device tramite un'etichetta del file system Cerca i device per file, etichetta del file system o UUID del file system. Se è specificato --set, il primo device trovato è impostato a una variabile, se non è indicata alcuna variabile, viene usata "root" Cerca i device per file: se VARIABILE è specificata, il primo device trovato è impostato a una variabile Cerca i device per etichetta: se VARIABILE è specificata, il primo device trovato è impostato a una variabile Il settore %llu è già in uso dal controller RAID "%s", viene saltato. Informare il costruttore e avvisarlo di non archiviare dati nell'intervallo del MBR. Il settore %llu è già in uso dal programma "%s", viene saltato. Questo software potrebbe causare problemi di avvio, o altri, nel futuro. Informare gli autori e avvisarli di non archiviare dati nell'intervallo del MBR. Seleziona il device in base alla sua posizione nel bus Seleziona il device tramite ID fornitore e ID device Imposta "Advanced Power Management"
(1=basso, ..., 254=elevato, 255=spento) Imposta "Automatic Acoustic Management"
(0=spento, 128=silenzioso, ..., 254=veloce) Imposta OEMID di RSDP, XSDT e RSDT Imposta l'ID OEMTABLE di RSDP, XSDT e RSDT Imposta la revisione OEMTABLE di RSDP, XSDT e RSDT Imposta il flag "hidden" sul tipo della partizione Imposta una variabile al valore di ritorno Imposta una variabile al primo device trovato Imposta una variabile dell'ambiente Imposta un colore di sfondo per il terminale attivo Imposta il campo creatore di RSDP, XSDT e RSDT Imposta la revisione del creatore di RSDP, XSDT e RSDT Imposta la variabile di debug dell'ambiente Imposta l'unità in modalità pausa Imposta l'unità in modalità standby Imposta i parametri posizionali Imposta il device root Imposta il timeout di standby
(0=spento, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...) Imposta il tipo TERM di terminfo a TIPO
 Imposta la voce di menù d'avvio predefinita per GRUB, solo per il successivo avvio. Imposta la voce di menù d'avvio predefinita per GRUB. Imposta l'indirizzo della porta seriale Imposta la parità della porta seriale Imposta la velocità della porta seriale Imposta i bit di stop della porta seriale Imposta la lunghezza della parola della porta seriale Imposta l'unità seriale Imposta le immagini affinché vengano avviate da DEVICE.

Questo programma non dovrebbe essere eseguito direttamente. Usare grub-install. Imposta la password utente (PBKDF2)  Imposta la password per l'utente (testo in chiaro): non consigliato e non sicuro Imposta la variabile con l'input dell'utente Imposta le variabili Impostazione tipo di partizione a 0x%x
 Cambia i parametri posizionali Mostra informazioni ACPI Mostra le informazioni APM Mostra il contenuto della console CBMEM Mostra un messaggio di aiuto Mostra un elenco con informazioni più dettagliate Mostra il contenuto di FILE in esadecimale Mostra i moduli caricati Mostra il contenuto di memoria Mostra il contenuto grezzo del settore ATA IDENTIFY Mostra il contenuto grezzo di un file o della memoria Mostra il contenuto di un file Mostra le mappature attuali Mostra questo messaggio Mostra solo le tabelle versione 1 Mostra solo le tabelle versione 2 e 3 Arresto non riuscito Simula il comando "initrd" di grub-legacy Simula il comando "kernel" di grub-legacy Simula il comando "modulenounzip" di grub-legacy Simula il comando "password" di grub-legacy Simula il comando "password" di grub-legacy nelle voci di menù Salta N byte dal file di output Salta un offset di byte dall'inizio del file Slot %d aperto
 Trovati alcuni elementi di Hurd, ma troppo pochi per eseguire il boot. Specifica il nome del file Specifica l'hash da usare Specifica uno o più file di caratteri da caricare Specifica la dimensione per ogni operazione di lettura Specifica il numero di file di input Velocità: %s
 Avvia stub GDB sulla porta fornita Ferma stub GDB Archivia il corrispondente componente NUMERO in NOMEVAR Successo domenica Elimina l'output normale (gli avvisi restano) Passa ai driver disco nativi; se nessun modulo è specificato viene usato l'insieme predefinito (pata,ahci,usbms,ohci,uhci,ehci) Errore di sintassi alla riga %u
 Errori di sintassi sono stati rilevati nel file di configurazione
di GRUB generato. Assicurarsi che non vi siano errori in
/etc/default/grub e /etc/grub.d/* o segnalare un bug allegando
il file %s. Lo spazio I/O del bus di controllo di sistema è a 0x%x
 T OBIETTIVO Formato dell'obiettivo non specificato (usare l'opzione -O). Il terminale ha la geometria specificata Il terminale è solamente ASCII [predefinito] Il terminale è UTF-8 in ordine logico Il terminale è UTF-8 in ordine visuale Verifica il supporto USB Verifica il bit BYTE:BIT nel CMOS Verifica la velocità di lettura file Verifica che REGEXP corrisponda a STRINGA Verifica il sottosistema video in modalità W×H Verifica il sottosistema video Solo testo I file sono identici.
 La voce selezionata verrà avviata automaticamente in %ds. Questa voce può essere avviata da tutti gli utenti. Ciò necessita l'impostazione di GRUB_DEFAULT=saved in %s/default/grub.\n giovedì TiB TiB/s Strumento per modificare il blocco dell'ambiente. Dimensione totale flash: %d B.
 Backslash finale Trasforma UUID 64-bit in un formato adatto per XNU; se viene passato -l mantiene tutto minuscolo come fatto da blkid Trasforma il nome file di sistema in uno di GRUB. Traduce la stringa con le impostazioni attuali Provare "%s --help" o "%s --usage" per ulteriori informazioni.
 martedì UTENTE PASSWORD UTENTE PASSWORD_PBKDF2 NOMEUTENTE[,NOMEUTENTE] UTF-8 Impossibile creare pipe: %s Impossibile determinare la piattaforma. Utilizzare --target. Impossibile eseguire fork: %s Impossibile aprire lo stream da %s: %s Impossibile recuperare lo stato del pool Decomprime i dati Estrae il file prima di calcolare il checksum Tipo d'indirizzo %d sconosciuto
 Comando "%s" sconosciuto.
 Formato di compressione %s sconosciuto Codifica sconosciuta Argomento aggiuntivo "%s" sconosciuto. Caratteristica 0x%x di gsub sconosciuta (%s)
 Codice numerico 0x%02x sconosciuto
 Identificatore tasto %s sconosciuto
 Errore di sistema sconosciuto Modalità video sconosciuta  Tipo di device virtuale sconosciuto: %s
 Rimuove l'emulatore EFI ( o \( senza corrispondenza ) o \) senza corrispondenza [ o [^ senza corrispondenza \{ senza corrispondenza Opzione "%s" non riconosciuta\n Stato del pool non riconosciuto Tipo d'indirizzo %d non supportato
 Specifica di coverage non supportata: %d
 Tipo d'indirizzo hardware %d non supportato
 Formato immagine non supportato Flag di sostituzione non supportato: 0x%x
 Specifica di sostituzione non supportata: %d
 Tipo di sostituzione non supportato: %d
 Uso: Uso: %s -o OUTPUT ARGOMENTI_CKBMAP...\n Uso: %s DEVICE
 Uso: %s [FILE_IN [FILE_OUT]]
 Uso: %s [OPZIONE] VOCE_MENÙ\n Uso: %s [OPZIONE]\n Usa CD-ROM come root Usa il debugger remoto GDB al posto di DDB Usa STRINGA come testo per il menù Usa un device di root compilato internamente Usa console seriale Usare i tasti %C e %C per selezionare la voce da evidenziare. VAR INTERFACCIA NUMERO DESCRIZIONE NOMEVAR Conto alla rovescia esplicito Verifica la firma scollegata Versione %u.%u
32 bit CS = 0x%x, lung = 0x%x, offset = 0x%x
16 bit CS = 0x%x, lung = 0x%x
DS = 0x%x, lung = 0x%x
 Device virtuale degradato Device virtuale danneggiato Device virtuale offline Device virtuale online Device virtuale rimosso ATTENZIONE: nessuna console sarà disponibile per il sistema Attenzione: non è stata eseguita alcuna installazione specifica per la piattaforma Attenzione: parametri del carattere non supportati: %x
 LARGHEZZAxALTEZZA Attende per un determinato numero di secondi Attende la pressione di un tasto dopo ogni riga di output Attenzione: Attenzione: colore di sfondo "%s" non valido
 Attenzione: colore di primo piano "%s" non valido
 Attenzione: errore di sintassi (manca "/") in "%s"
 mercoledì Windows NT/2000/XP (caricatore) Windows Vista/7 (caricatore) Scrive il VALORE 16 bit in IND Scrive il VALORE 16 bit su PORTA Scrive il VALORE 32 bit in IND Scrive il VALORE 32 bit su PORTA Scrive il VALORE 8 bit in IND Scrive il VALORE 8 bit su PORTA Byte SPD scritti: %d B.
 Hypervisor Xen, versione %s YUV  È necessario specificare almeno un comando.
 È necessario impostare manualmente "SystemPartition" e "OSLoader". L'area di embed è troppo piccola. Il file core.img non può esservi contenuto. Questa versione di xorriso non supporta "--grub2-boot-info": alcune funzionalità sono disabilitate. Utilizzare xorriso 1.2.9 o successivi. Questa versione di xorriso non supporta "--grub2-boot-info": l'immagine core è troppo grande, l'avvio come disco è disabilitato. Usare xorriso 1.2.9 o successivi. [--append|--remove] [TERMINALE1] [TERMINALE2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TIPO] FILE [ARG ...] [-1|-2] [--exclude=TABELLA1,TABELLA2|--load-only=TABELLA1,TABELLA2] FILE1 [FILE2] [...] [-c FILE [-p PREFISSO]] [FILE1 [FILE2 ...]] [-d] NOMEDEVICE FILE [-e|-n] STRINGA [-f FILE] [-f FILE] nome_variabile [...] [-f|-l|-u|-s|-n] [--hint SUGG [--hint SUGG] ...] NOME [-h|-p|-r] [FILE] [-l] UUIDGRUB [NOMEVAR] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSIZIONE] [-d DEVICE] [-s POSIZIONE] [-d DEVICE] [-v VAR] REGISTRO[=VAL[:MASCHERA]] [-s DIMENSIONE] NOMEFILE [IND|comUNITÀ][,VELOCITÀ] [ARG] [SCHEDA [INDIRIZZOHW]] [SCHEDA] [VARAMB=VALORE] [VARAMB] [TASTO1] [TASTO2] ... [MODULO1 MODULO2 ...] [NUMERO:]NOMEVAR [NUM] [OPZIONI...] [OPZIONI] [OPZIONI] DISCO [OPZIONI] FILE_O_DEVICE [OPZIONI] FILE_CARATTERE [OPZIONE]... [MODULI] [OPZIONE]... [PERCORSO|DEVICE] [OPZIONI] [PERCORSO] [MODELLO ...] [ELENCOUTENTI] [VALORE]... [LxA[xP]] [WxH] [[-a|-u|-v] [-g LxA] TERM [TIPO]] [[anno-]mese-giorno] [ore:minuti[:secondi]] [bus]:[slot][.func] [fornitore]:[device] comando "cryptomount" non riuscito: %s comando "loopback" non riuscito: %s "obppath" non trovato nelle directory superiori di "%s", scoperta dei nomi IEEE1275 non disponibile è stato assegnato un valore all'argomento "%s" benché non ne richieda uno accesso negato Aggiunge segmento NOTA per CHRP IEEE1275 ind indirizzo non trovato tentativo di leggere o scrivere al di fuori del disco "%s" tentativo di leggere o scrivere al di fuori della partizione tentativo di leggere oltre la fine del file tentativo di posizionamento al di fuori del file tentativo di leggere l'immagine core "%s" da GRUB tentativo di leggere nuovamente l'immagine core "%s" da GRUB RAM disponibile Formati disponibili: firma non valida indirizzo base = 0x%llx, lungh = 0x%llx, %s
 indirizzo base = 0x%llx, lungh = 0x%llx, tipo = 0x%x
 il formato del file bitmap "%s" non è supportato blocklist FILE blocklist non valide la dimensione del blocco non è divisibile per 512 impossibile interrompere zero cicli impossibile determinare il file system su %s impossibile trovare il comando "%s" impossibile montare il volume cifrato "%s": %s impossibile aprire "%s": %s impossibile aprire il file %s, indice %d: errore %d impossibile recuperare le blocklist impossibile recuperare le blocklist: %s impossibile comprimere l'immagine del kernel impossibile trovare un'unità GRUB per %s, controllare device.map impossibile trovare un device per %s (/dev è montato?) Impossibile recuperare mount da riga di comando per il percorso "%s": %s impossibile aprire il file "%s" del sistema operativo: %s impossibile aprire "%s": %s Impossibile leggere "%s" correttamente impossibile leggere "%s": %s impossibile rinominare il file %s in %s impossibile ripristinare la directory originale impossibile eseguire seek "%s": %s impossibile eseguire stat su "%s": %s impossibile scrivere sul CD-ROM impossibile scrivere su "%s": %s impossibile scrivere sullo standard output: %s scheda non trovata cat FILE verifica checksum non riuscita Sceglie la compressione da usare per l'immagine core cmp FILE LOCALE comUNITÀ[,VELOCITÀ] confronto non riuscito all'offset %llu connessione rifiutata connessione scaduta Converte in carattere grassetto l'immagine core è troppo grande (0x%x > 0x%x) versione core.img non corrispondente impossibile configurare automaticamente %s impossibile trovare un device membro necessario per file system multi-device impossibile trovare utilizzatore geli impossibile trovare la classe "part" di geom impossibile aprire geom impossibile leggere metadati ELI impossibile recuperare UUID impossibile recuperare UUID geli impossibile recuperare dati casuali per il salt impossibile inviare pacchetto di rete cp FILE LOCALE crc FILE errore di cifratura n° %d cygwin_conv_path() non riuscita Elimina la mappa dei dispositivi se esiste già destinazione non raggiungibile il conteggio dei device supera il limite Disabilita l'hinting disco "%s" non trovato il disco non esiste, viene usato il device di partizione %s Modulo disco da usare ("biosdisk" o "native"), quest'opzione è disponibile solo su BIOS la dimensione di diskboot.img deve essere di %u byte Non esamina i file system in DEVICE il nome del dominio è troppo lungo non aggiorna lo stato dei LED fatto Incorpora FILE come configurazione primaria Incorpora FILE come chiave pubblica per la verifica della firma L'embed non è possibile, ma è richiesto per l'installazione su RAID e LVM L'embed non è possibile, ma è richiesto per l'installazione su più dischi Abilita avvio ARCS (macchine mips big-endian, principalmente SGI), disabilita HFS+, APM, sparc64 e avvia come immagine disco per PC i386 Abilita avvio sparc, disabilita HFS+, APM, ARCS e avvia come immagine disco per PC i386 Invio: avvia; "e": opzioni; "c": riga di comando blocco dell'ambiente troppo piccolo errore: %s.
 Si aspetta le immagini GRUB nella directory DIR/%s invece che %s recupero del percorso canonico di "%s" non riuscito lettura del settore 0x%llx da "%s" non riuscita lettura password non riuscita scrittura del settore 0x%llx su "%s" non riuscita falso RAM difettosa (BadRAM) file "%s" non trovato atteso nome di file nome file oppure tempo e note attesi il file system "%s" non supporta le etichette il file system "%s" non supporta le blocklist l'immagine firmware è troppo grande Forza l'autohint attesi quattro argomenti fwstart.img non corrisponde alla versione consciuta, procedere a proprio rischio Genera un'immagine nel FORMATO Visualizza un breve messaggio di aiuto Visualizza questo aiuto l'argomento fornito è un device di sistema, non un percorso grub-mkimage è stato compilato senza il supporto a XZ grub> Si ferma per SEC secondi (predefinito 3600) hex FILE Ignora le bitmap durante il caricamento specifiche di dimensioni del terminale non corrette installa le immagini GRUB nella directory DIR/%s invece che %s Installa anche se vengono rilevati problemi password PBKDF2 non valida numero magic ELF basato sull'architettura non valido numero magico ELF indipendente dall'architettura non valido dimensione blocco non valida specifica di colore "%s" non valida blocco dell'ambiente non valido nome di file "%s" non valido intervallo di caratteri non valido formato riga non valido: %s parametro %s non valido valore di salto %lld non valido nome variabile "%s" non valido modalità video "%s" non valida errore ioctl GET_ARRAY_INFO: %s errore ioctl GET_DISK_INFO: %s errore ioctl RAID_VERSION: %s l'immagine kernel è troppo grande (0x%x > 0x%x) Elenca gli indirizzi di rete Elenca le schede di rete Elenca le rotte ls PERCORSO file lzop danneggiato Rende l'unità avviabile anche come un floppy (predefinito per i device fdX); potrebbe provocare malfunzionamenti con alcuni BIOS. simbolo "%c" mancante manca l'opzione obbligatoria per "%s" modulo "%s" non caricato modulo non caricato nome immagine e punto di mount necessari APM non trovato nessuna informazione DHCP trovata opzione DHCP %d non trovata nessuna opzione DHCP trovata nessun record DNS trovato nessuna risposta DNS ricevuta nessun server DNS configurato nessun carattere di slash (/) nel nome canonico del file nessun comando specificato nessuna chiave di decifrazione disponibile nessuna scheda di rete trovata nessun server specificato partizione inesistente non è stata trovata alcuna modalità video adatta nessuna tabella dei simboli nessun terminale specificato Nessun terminatore nell'immagine core Trovati dati non allineati rispetto al settore nel file core non una directory non una partizione primaria non un file regolare non all'interno del corpo della funzione atteso un solo argomento Altro software sta utilizzando l'area di embed e non c'è abbastanza spazio per core.img. Tale software solitamente archivia dati senza possibilità di rilevamento. È consigliato verificare la situazione. memoria esaurita Fornisce in output su FILE un'immagine generata [predefinito=stdout] deve essere specificato un file di output Invia la configurazione creata su FILE [predefinito=stdout] rilevato overflow le password non corrispondono Esegue una configurazione automatica bootp volume fisico %s non trovato fine file prematura fine prematura del file %s preme BlocMaiusc preme Ins preme BlocNum preme BlocScorr preme SysRq preme Alt sinistro preme Ctrl sinistro preme Maiusc sinistro preme Alt destro preme Ctrl destro preme Maiusc destro Stampa la versione del programma Stampa informazioni di versione ed esce Stampa questo messaggio ed esce Stampa messaggi prolissi chiave pubblica %08x non trovata errore di lettura all'offset %llu: %s Legge del testo da FILE sotto-directory relativa sul server di rete la rilocazione 0x%x non è ancora implementata RAM riservata Recupera l'opzione DHCP e la salva in VAR, se VAR è - allora stampa il valore directory root del server TFTP rilevato ciclo nella rotta Salva le immagini ROM in DIR [opzionale] Salva l'output su FILE [richiesto] Seleziona l'indice del carattere porta seriale "%s" non trovata set [NOME=VALORE ...] imposta la modalità blocmaiusc Imposta il tratto ascendente Imposta il tratto discendente Imposta la famiglia del carattere Imposta l'intervallo dei caratteri Imposta la dimensione del carattere Imposta il nome del file di input per la parte 32-bit Imposta il nome del file di input per la parte 64-bit Imposta il nome del file di input, predefinito è STDIN imposta la modalità inserimento imposta la modalità blocnum Imposta il nome del file di output, predefinito è STDOUT imposta la modalità pausa Imposta il prefisso della directory [predefinito=%s] imposta la modalità blocscorr Imposta il nome del programma dim stretch|normal simbolo "%s" non trovato temporaneo il terminale %s non è stato trovato o non è gestito da terminfo terminale "%s" non trovato l'argomento "%s" richiede un intero La voce "%s" di device.map non è valida, viene ignorata. Correggere o eliminare device.map. Il nome "%s" dell'unità in device.map non è corretto, viene usato %s al suo posto. Utilizzare la forma [hfc]d[0-9]* (es.: "hd0" o "cd") Il primo settore del file core non è allineato rispetto al settore Il dispositivo d'installazione è rimovibile, questa opzione è disponibile solo su EFI il tipo di partizione 0x%x non è valido I settori del file core sono troppo frammentati La dimensione di "%s" non è %u La dimensione di "%s" è troppo grande La dimensione di "%s" è troppo piccola questo file ELF non è di tipo corretto questa etichetta della partizione GPT non contiene BIOS Boot Partition, l'embed non è possibile questo LDM non ha una partizione per l'embed; l'embed non sarà possibile L'etichetta della partizione stile msdos non ha un intervallo dopo l'MBR, l'embed non è possibile attesi tre argomenti tempo scaduto nell'aprire "%s" tempo scaduto nel leggere "%s" tempo scaduto: impossibile risolvere l'indirizzo hardware troppi collegamenti simbolici annidati Mount "%s" per il percorso "%s" presenta molte parole non-opzioni, almeno "%s" e "%s" Mount "%s" per il percorso "%s" presenta solo opzioni, impossibile trovare la parte device Mount da riga di comando vuoto per il percorso "%s" attesi due argomenti tipo Impossibile identificare un file system in %s; non è possibile eseguire un controllo di sicurezza dimensione device non allineata fine file non attesa argomento "%s" sconosciuto compressione %d sconosciuta
 tipo di device %s sconosciuto
 file system sconosciuto tipologia di device RAID "%s" sconosciuta errore regexp sconosciuto formato %s dell'obiettivo sconosciuto
 tipo di terminfo "%s" sconosciuto specificazione di formato DHCP "%s" non riconosciuta indirizzo di rete "%s" non riconosciuto interfaccia di rete "%s" non riconosciuta numero non riconosciuto indirizzo %s non risolvibile unset [NOME ...] errore HTTP %d non supportato: %s risposta HTTP non supportata versione RAID non supportata: %d.%d formato gzip non supportato parità della porta seriale non supportata velocità della porta seriale non supportata numero di bit di stop della porta seriale non supportati lunghezza della parola della porta seriale non supportata Usa COLORE per lo sfondo Usa COLORE per l'etichetta Usa COLORE per lo sfondo dell'etichetta Usa COLORE per il testo Usa DIR come radice EFI System Partition Utilizza FILE come tipo di carattere (PF2) Usa FILE come carattere per l'etichetta Usa FILE come immagine di avvio [predefinito=%s] Usa FILE come immagine core [predefinito=%s] Usa FILE come mappa dei device [predefinito=%s] Usa FILE come xorriso [opzionale] Usa i file GRUB nella directory DIR [predefinito=%s] Usa STRINGA come nome del prodotto Usa STRINGA come versione del prodotto Usa il file identificativo anche se è disponibile lo UUID Usa immagini e moduli in DIR [predefinito=%s/<piattaforma>] la variabile "%s" non è impostata UTF-8 in ordine visuale Attende fino al collegamento di un debugger impossibile procedere con le blocklist versione o numero magic ELI errato xnu_uuid DEVICE file xz danneggiato o opzioni a livello di blocco non supportate impossibile eliminare questo indirizzo è necessario caricare il kernel prima BIOS Boot Partition è troppo piccola, l'embed non è possibile l'immagine core è stranamente grande. Non può essere mantenuta nell'area embed L'area di embed è troppo piccola. Il file core.img non può esservi contenuto.                                                                                                                                                                                                                                                                                                                                                      boot/grub/locale/ja.mo                                                                              0000600 0001750 0001750 00000055336 13417732100 0013630 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                             \  7        x  
   y  	                         $     !              &     D     \     v                                              ;     M     k     ~            !     ,                  8     T     o  
                                    +         L  #   h       $               '     9   &     `     ~       +                                 *  "   A  0   d       7                                                (     F     ^  )   p                           '     P        k                 %     +             $  !   4     V     r     ~                      2        )  8   C     |                 3     +        0     E     Z     m                                                             !     !     "!  )   0!     Z!     g!     !     !     !     !     !     !     "     "  "   0"     S"     a"     w"     "     "     "  )   "     "     #  &   #  )   C#  ^   m#     #  $   #  %   $  ^   1$  _   $  >   $  D   /%  !   t%  '   %  -   %     %     &  )   )&  ,   S&     &     &  E   &     &     '     3'     N'      m'     '  :   '     '     '     (     '(     <(     Y(     t(  -   (     (     (     (     (     )     #)  <   =)     z)  $   )     )     )     )     )  '   )     *     .*  '   6*  .   ^*  .   *  )   *     *  	   *     *  5   +     S+     i+     +     +     +     +     +     +  )   +      ,  "   ',     J,     O,  1   [,  7   ,  /   ,     ,     -     .-     L-     c-     -  (   -  #   -     -  !   .    '.     /     /     /      0     /0     40  >   F0  -   0     0  3   0  1   0  9   1  $   Y1  6   ~1  '   1  '   1     2      "2     C2     b2  -   ~2     2  &   2  (   2  B   3  '   U3     }3  !   3  N   3     3  .   4  3   C4  0   w4  6   4     4     4     5  0   5  *   N5  %   y5  *   5  9   5  -   6  $   26  '   W6  D   6  6   6  6   6  3   27  `   f7  -   7     7  +   7  E   (8     n8  $   8  ,   8     8     8  $    9  C   %9  U   i9     9  7   9     9     :  6   :  $   G:    l:  *   ;  $   $<  .   I<  /   x<  -   <  $   <  J   <  &   F=  6   m=  8   =     =     =  I   =     1>  %   >  '   >  0   
?  3   ;?  Q   o?  B   ?  ,   @  .   1@  <   `@  7   @     @  !   @  '   A  ,   7A  /   dA  -   A  T   A  0   B  c   HB     B  (   B  '   B  (   C  W   ?C  <   C     C     C     D  )   &D  ,   PD     }D     D  ,   D  5   D     E     #E     DF  "   \F  .   F     F     F     F  6   F     G     &G  "   CG  "   fG  "   G  +   G     G  6   G  *   /H  *   ZH  .   H     H  $   H  "   H  $   
I     /I     NI  9   mI  !   I     I  1   I  6   J     9J  -   J  ?   J  B   3K     vK     
L  O   L  U   L  *   AM  0   lM  <   M  !   M     M  ;   N  ;   WN  9   N  <   N  r   
O  6   }O  6   O  0   O  ?   P  6   \P  *   P  r   P  0   1Q     bQ     ~Q  0   Q  *   Q  -   Q  $   'R  E   LR     R  6   R  $   R  B   S  0   PS  ,   S  I   S     S  H   T  4   ]T  
   T     T  -   T  6   T  $   U     @U     HU  K   gU  .   U  )   U     V  	   V     (V  5   FV     |V     V     V     V     V     V     V     V     W  0   %W  G   VW     W     W  `   W  W   X  E   pX  -   X  &   X  &   Y     2Y  H   OY  B   Y  T   Y  H   0Z  *   yZ  9   Z            H                 g   s   <            ,   o       l      x                              J                  Y   r   Z          6           w         )          *      D   K   j      k                                             $             p          m          }   A          &      .   d       Q      V   :       M   L   z   O          F                           	   "   ?                      b      ~   t   E   ]   1                   W                     3      i          v      n             4   8   -      a                       !                   u          y                 B                              9      |   7         %   {                              h         #   
            R         +         [      /                @                U            _      '          c                      \      I                           C              e   f                    N       (                      q       =   G         ;       0          `                                              2                  S   T                            5          >   X   ^   P          %s: error: %s: info: -l | -r | [-s] grubdev osdisk. ACPI shutdown failed ADDR ADDR VALUE [MASK] Accept DOS-style CR/NL line endings. Ask for file name to reboot from. BLOCK Base directory for hash list. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Booting a command list Can't enable ROM area. Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check key modifier status. Clear the screen. Compare file `%s' with `%s':
 Compare two files. Compute or check hash checksum. Configure serial port. DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Display a line of text. Display output on all consoles. Display the usage of this command and exit. Display this help and exit. Do not output the trailing newline. Do not print messages. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't stop after first error. ENVVAR ESC at any time exits. Enable interpretation of backslash escapes. Enter in KDB on boot. Enter normal mode. Enter password:  Evaluate an expression. Exit from GRUB. Exit from normal mode. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Fix video problem. Found GNU Mach: %s Found NetBSD kernel: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freeze ATA security settings until reset. Generate a grub config file Get disk cache info. Get/set ATA disk parameters. HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Invalid device `%s'.
 List PCI devices. List all files. List devices and files. List memory map provided by firmware. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load Linux. Load XNU image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load another boot loader. Load another config file without changing context. Load another config file. Load host ACPI tables and tables specified by arguments. Load initrd. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load variables from environment block file. Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading the Hurd ... MODULE Make GRUB keyboard layout file. Manage the BIOS drive mappings. Manipulate PCI devices. Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s NAME [VARIABLE] [HINTS] Network protocols: No device is specified.
 PORT PORT VALUE [MASK] Partition %s: Perform both direct and reverse mappings. Play a tune. Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Press any key to continue... Print a block list. Print backtrace. Print drive identity and settings. REGEXP STRING ROM image is present. Read only LENGTH bytes. Reboot the computer. Remove a module. Remove an environment variable. Reset all mappings to the default values. Retrieve device info. STRING Save read value into variable VARNAME. Save variables to environment block file. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set a variable to return value. Set an environment variable. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set drive to sleep mode. Set drive to standby mode. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Show APM information. Show a help message. Show loaded modules. Show the contents of a file. Show the current mappings. Show this message. Skip offset bytes from the beginning of file. Specify filename. Specify hash to use. Test USB support. Test if REGEXP matches STRING. Test video subsystem. The files are identical.
 The highlighted entry will be executed automatically in %ds. USER PASSWORD Uncompress file before checksumming. Unload EFI emulator. Usage: Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use serial console. VARNAME Wait for a specified number of seconds. Warning: syntax error (missing slash) in `%s'
 [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-l|-h|-a] [FILE ...] [ADDR|comUNIT][,SPEED] [ARG] [ENVVAR=VALUE] [NUMBER:]VARNAME [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [PATTERN ...] [[year-]month-day] [hour:minute[:second]] cannot compress the kernel image diskboot.img size must be %u bytes done error: %s.
 non-sector-aligned data is found in the core file the first sector of the core file is not sector-aligned the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small two arguments expected unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length variable `%s' isn't set you need to load the kernel first Project-Id-Version: grub 2.0.0-pre6
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2012-10-11 05:55+0900
Last-Translator: Takeshi Hamasaki <hmatrjp@users.sourceforge.jp>
Language-Team: Japanese <translation-team-ja@lists.sourceforge.net>
Language: ja
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=1; plural=0;
 %s: エラー: %s: 情報: -l | -r | [-s] grubdev osdisk. ACPI シャットダウン失敗 ADDR ADDR VALUE [MASK] DOSスタイルのCR/NL行末コードを受け付けます。 再起動するファイル名を確認する BLOCK ハッシュリストのベースディレクトリ BIOSベースのシステムを起動します。 オペレーティングシステムを起動します。 シングルモードで起動する デバッグメッセージを表示して起動する コマンドリストを起動します ROM領域を有効にできません。 Alt キーを検査する。 Control キーを検査する。 Shift キーを検査する。 CPUの仕様を確認する キー修飾子の状態をチェックする 画面表示を消す ファイル `%s' と `%s' を比較:
 2つのファイルを比較します。 ハッシュチェックサムを計算または確認します。 シリアルポートを設定します DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE は OS のデバイスでなければいけません (例: /dev/sda)。 ドライバーを決定する ファイルシステムのUUIDを決定する ファイルシステムのラベルを決定する ファイルシステムの形式を決定する パーティションマップの形式を決定する デバイス %s: ACPIを使用しない SMPを使用しない すべての起動時の出力を表示しない SMART を無効/有効にします。(0/1) 1行のテキストを表示する。 すべての端末の出力を表示する このコマンドの使用法を表示して終了する このヘルプを表示して終了する。 末尾の改行を出力しない。 メッセージを表示しません。 コンピュータを停止するのに APM を使用しません。 何もしないでください。成功しました。 何もしないでください。失敗しました。 起動時の診断メッセージを表示しない カンマ区切りのリストで指定されたホストテーブルをロードしません。 最初のエラーの後停止しません。 ENVVAR ESC キーでいつでも終了します。 バックスラッシュによるエスケープを有効にする。 起動時にKDBに入る ノーマルモードに入ります パスワードを入力してください:  式を評価する GRUBを終了する ノーマルモードを抜けます バージョン1 テーブルをOSにエクスポートします。 バージョン2, バージョン3 テーブルをOSにエクスポートします。 FILE FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 ファイルシステムにアクセスできません ファイルシステムの種類 %s GPTドライブ DEVICE のハイブリッドMBRを埋めます。指定したパーティションがハイブリッドMBRの一部になります。３パーティションまで利用が可能です。TYPEはMBRのタイプを示します。＋はパーティションがアクティブな事を示します。アクティブになれるのはただ一つのパーティションのみです。 ビデオ出力の問題を修正する。 GNU Mach を見つけました: %s\n NetBSD カーネルを見つけました: %s\n FreeBSD カーネルを見つけました: %s\n Linux イメージを見つけました: %s\n テーマを見つけました: %s\n リセットするまで ATA セキュリティ設定を凍結します。 grub 設定ファイルを生成する ディスクキャッシュ情報を取得します。 ATA ディスクの設定値を取得/設定します。 HASH HINT APM が使えるなら、コンピュータを停止してください。 コンピュータを停止します。このコマンドはすべてのファームウェア実装で動作するとは限りません。 無効なデバイス `%s' です。
 PCIデバイスをリスト表示する すべてのファイルをリスト表示する デバイスとファイルをリスト表示する ファームウエアによって規定されたメモリマップを表示する 環境ブロックファイルから変数をリスト表示する 64ビットXNUイメージをロードする BIOSのダンプリストをロードする。 FreeBSDのカーネルモジュールをロードする(ELF) FreeBSDのカーネルモジュールをロードする Linuxをロードする XNUイメージをロードする キーボード配列を読み込む。 multiboot 2のカーネルをロードする multiboot 2のモジュールをロードする 他のブートローダーをロードする コンテキストを変更せずに他の設定ファイルをロードします。 他の設定ファイルをロードします。 引数で指定されたテーブルとホスト ACPI テーブルをロードしてください。 initrdをロードする FreeBSDのカーネルをロードする NetBSDのカーネルをロードする OpenBSDのカーネルをロードする カンマ区切りのリストで指定されたテーブルのみロードします。 環境ブロックファイルから変数をロードする GNU Mach をロード中... Linux %s をロード中... Xen %s をロード中... 初期 RAM ディスクをロード中... FreeBSD %s のカーネルをロード中... the Hurd をロード中... MODULE GRUB キーボード配列を作成する。 BIOS ドライブマッピングを管理します。 PCI デバイスを操作する BASH に似た最小限の行編集機能がサポートされています。最初の単語では、TAB で利用可能なコマンド補完の一覧が表示されます。その他には、TAB で利用可能なデバイスまたはファイル補完の一覧が表示されます。%s NAME [VARIABLE] [HINTS] ネットワークプロトコル: デバイスが指定されていません。
 PORT PORT VALUE [MASK] パーティション %s: 直接と反転マッピングの両方をおこなう 曲を鳴らす 利用可能な引数一覧: 利用可能なコマンド一覧: 利用可能なデバイス一覧: 利用可能なファイル一覧: 利用可能なパーティション一覧: 利用可能なものの一覧: 続けるには何かキーを押してください... ブロックリストを表示します。 バックトレースを表示します。 ドライブ ID と設定を印刷します。 REGEXP STRING ROMイメージが存在します。 LENGTH バイトだけ読み出す コンピュータを再起動する モジュールを削除する 環境変数を削除する。 全てのマッピングを既定値にリセットする デバイス情報を取得する STRING 読出し値を変数VARNAMEに保存します。 環境ブロックファイルに変数を保存する デバイスをUUID名で探す。VARIABLE が指定されれば、最初に見つかったデバイスが変数にセットされます。 デバイスをファイルで検索する。 デバイスをファイルシステム UUID で検索する。 デバイスをファイルシステムラベルで検索する。 デバイスをファイル名で探す。VARIABLE が指定されれば、最初に見つかったデバイスが変数にセットされます。 デバイスをラベル名で探す。VARIABLE が指定されれば、最初に見つかったデバイスが変数にセットされます。 Advanced Power Management を設定します。
(1=low, ..., 254=high, 255=off) Automatic Acoustic Management を設定します。
(0=off, 128=quiet, ..., 254=fast) RSDP, XSDT, RSDT の OEMID を設定する RSDP, XSDT, RSDT の OEMTABLE ID を設定する RSDP, XSDT, RSDT の OEMTABLE リビジョンを設定する 戻り値に変数を設定する 環境変数を設定する。 RSDP, XSDT, RSDT の製造者フィールドを設定する RSDP, XSDT, RSDT の製造者リビジョンを設定する ドライブをスリープモードに設定します。 ドライブをスタンバイモードに設定します。 スタンバイのタイムアウトを設定します。
(0=off, 1=5秒, 2=10秒, ..., 240=20分, 241=30分, ...) シリアルポートのアドレスを設定します シリアルポートのパリティを設定します シリアルポートの速度を設定します シリアルポートのストップビットを設定します シリアルポートのワード長を設定します シリアルユニットを設定します ユーザーパスワード（プレーンテキスト）を設定する。非推奨で安全ではありません ユーザー入力により変数を設定する APM情報を表示する。 ヘルプを表示します。 ロードされたモジュールを表示する ファイルの内容を表示します。 現在のマッピングを表示します。 このメッセージを表示する ファイルの始めからoffsetバイトをスキップします。 ファイル名を指定する 利用するハッシュを指定してください。 USBのサポートをテストする REGEXP が STRING に一致するかどうかの検査を行う。 ビデオのサブシステムをテストする 2つのファイルは同じものです。
 ハイライトされた項目が %d 秒後に自動実行されます。 ユーザーパスワード チェックサムを計算する前にファイルを解凍します。 EFI エミュレーターをアンロードする。 使い方: 使用法: %s [OPTION]\n CDROM をルートとして使用します。 DDBの代わりにGDBリモートデバッガを使う シリアルコンソールを使う VARNAME 指定した秒数の間待つ 警告：入力エラー `%s'の（スラッシュが抜けています）
 [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-e|-n] 文字列 [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-l|-h|-a] [FILE ...] [ADDR|comUNIT][,SPEED] [ARG] [ENVVAR=VALUE] [NUMBER:]VARNAME [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [PATTERN ...] [[年-]月-日] [時:分[:秒]] カーネルイメージを圧縮できません diskboot.img のサイズは %u バイトである必要があります 完了 エラー: %s。
 セクター順に整列していないデータがコアファイル中に見つかりました コアファイルの最初のセクターがセクター順に整列していません コアファイルのセクターがひどく断片化しています `%s' のサイズが %u ではありません `%s' のサイズが大きすぎます `%s' のサイズが小さすぎます 2つの引数が必要です サポートされていないシリアルポートのパリティです サポートされていないシリアルポートの速度です サポートされていないシリアルポートのストップビット値です サポートされていないシリアルポートのワード長です 変数 `%s' が設定されていません まずカーネルをロードする必要があります                                                                                                                                                                                                                                                                                                   boot/grub/locale/lt.mo                                                                              0000600 0001750 0001750 00000117026 13417732100 0013650 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                            ,  -  <      "      "     #     -#     E#  $   \#     #     #     #     #     #     #     #  1   #     $  %   >$  '   d$  %   $  '   $     $     $     $     %     '%     ,%     >%     J%     X%  $   e%     %     %     %     %     %     %     &  #   -&     Q&     l&     &     &     &     &     &     &     &     '     '  %   '     E'     d'     x'     '     '     '     '  *   '  3   (     9(     T(     r(     (  P   (     (     )  H    )     i)  !   p)     )     )     )  $   )     )     )     *     +*     F*  
   d*     o*  1   *     *     *     *     +     +  #   7+     [+     r+  $   +     +     +  9   +     &,  z   D,  
   ,     ,     ,     ,  +   -     @-  "   U-     x-     -     -  "   -  0   -     .     
.  7   .     Q.     Y.     e.  6   {.  +   .     .  !   /  d   /  e   60  d   0  i   1  o   k1  H   1     $2  )   72     a2     p2     2     2     2  '   2  P   2  	   %3  '   /3     W3  (   d3  "   3  -   3     3     3  O    4     P4     h4  %   v4     4  )   4  !   4  "   5     *5  +   A5     m5     }5  !   5  M   5  2   6     86  8   R6  3   6  $   6     6     6     
7  !   7     37     K7     h7     {7     7     7     7     7  '   7  
   8     8     8     68     H8  H   e8     8     8     8  #   8      9     29  (   ?9  %   h9     9     9     9  "   9  ;   9  #   :  <   ;:     x:  	   :     :  `   :     ;     ;     ;     ,;     C;     R;     i;     |;     ;     ;     ;  "   ;     <      <  g   :<     <     '=     A=  -   ^=     =  "   =  '   =     =     >     >     />     L>     i>     >     >     >     >     >     ?     ?     /?     J?     c?     x?  &   ?  )   ?  ^   ?     /@  $   I@  %   n@     @  ^   GA  _   A  )   B  '   0B  >   XB  D   B  !   B  '   B  -   &C     TC  )   tC  )   C  ,   C     C     D  E   )D     oD  :   D     D     D     D     E  0   'E     XE     mE  )   E  &   E     E     E     F  )    F  %   JF  %   pF  ,   F  '   F  -   F     G     )G     ;G  '   PG  *   xG  6   G     G     G  !   
H     ,H  
   BH     MH  <   gH  %   H  d   H  0   /I     `I     nI     I     I  $   I     I      I     J     $J     <J     CJ     bJ     jJ  m   }J     J     K     K     8K  '   RK     zK     K     K     K     K     L      L     :L  /   ?L     oL  .   L  O   L  )   M     .M     DM  	   SM     ]M  5   {M     M     M     M     M     M     N     )N     8N     QN  	   _N     iN  )   oN     N     N  -   N  $   N     O  (    O  1   IO     {O     O     O     O     O  B   O     4P     OP  (   fP  '   P  %   P     P     P     P     Q  $   Q  '   BQ     jQ     Q  %   Q     Q     Q     Q     Q     R     -R     ?R     OR     eR     uR     R     R     R     R     R     R     S      S     5S     AS     PS     `S     qS     S     S  &   S     S     S     S     S     T     T     .T     DT  &   ^T  @   T     T     T     T     U     $U     CU  (   aU  #   U     U     U  !   U  E   V  f  IV  -   W  "   W  !   X     #X  &   :X     aX     X     X  "   X     X  
   X     X  <   X  "   -Y  '   PY  )   xY  '   Y  )   Y  
   Y  /   Y  -   /Z     ]Z     yZ     Z     Z     Z     Z  -   Z     Z     [     9[     N[  !   l[     [     [  *   [     [     \     /\     F\     M\  "   Z\     }\     \      \     \     \  *   \  )   ]     A]     Y]  9   y]  (   ]  (   ]  ,   ^  F   2^  K   y^  +   ^  )   ^     _  0   0_  b   a_  %   _  %   _  A   `  
   R`  &   ]`     `     `     `  3   `      `     a  #   1a      Ua  #   va      a  (   a  @   a     %b     Eb     ]b     vb  (   b  (   b     b  /   b  %   *c  #   Pc  %   tc  >   c     c     c  
   d     d     d     d  I   d     Ie  #   fe     e     e     e  .   e  =   e     7f     >f  8   Vf  	   f     f     f  :   f  ,    g    -g  '   Ch     kh     h     i     "j     j  r   bk     k  A   k     7l  "   Ll  %   ol     l  	   l  2   l  R   l     ,m  3   <m  	   pm  7   zm  1   m  :   m     n     <n  p   Vn  "   n     n  K   o  &   Oo  C   vo  1   o  2   o     p  /   >p     np  "   p  '   p  e   p  <   9q  %   vq  F   q  ?   q  )   #r     Mr     _r     |r  '   r     r  )   r     r     s      )s     Js     `s  #   ms  )   s     s  &   s     s     t  /   *t  k   Zt     t  1   t     u  &   u  )   Au     ku  .   ~u  )   u     u  	   u     u  J   v  s   \v  P   v  y   !w     w     w     w  h   w     7x     Fx     Wx  !   tx     x  #   x     x  !   x  $   y  3   9y  %   my  2   y  #   y  "   y     z     z      }{  *   {  2   {     {  -   |  )   G|  E   q|     |     |  )   |  +   }  )   @}  +   j}  (   }  *   }     }     ~     %~  #   9~     ]~  @   |~     ~     ~  /   ~  1     ~   ?  "     A     4   #     X  o   I  q     5   +  E   a  P     U     9   N  ?     <   ȃ  ,     3   2  9   f  <     *   ݄  .     o   7  2     N   څ  4   )     ^     x       1               3     0   O            '     6   ׇ  5     5   D  <   z  7     6        &     :     Q  -   p  8     T   ׉     ,  .   G  9   v          Ί     ۊ  ?     4   0     e  *        B     Z     y  )     ,          +        /     J     j  ,   v  
          z   ɍ     D  !   d              )   Ȏ  (     +     (   G  +   p  '     *   ď            3        E  8   c  _     2        /     G     W  "   c  A        ȑ     ܑ               %     C     X  "   k                 6   ʒ  !        #  6   =  #   t       -     7              <      Z     {  &     N     $         1  H   R  -     +   ɕ  	     -        -     F  )   \  ,     %     (   ٖ  -        0     K     g     t  !             ŗ     ߗ          	     $     >     ]  %   z       "           !        &  '   D  (   l  (     6     *     *      "   K      n  1     %     &     #     %   2     X     s  "     O     (        ,     I     h  +   }  )     :   Ӝ  0     '   ?  1   g       \             [                 r                     Y               u                         S      M   b     I  +            *     ?   [                              |  ^  #               %                   i       f   W     E  U      0     .               y          =             S   R                >      1   B          R   Y      n    o         F            *                           j     ;        G      z   4             i  '             m               /      F      7      x   5   O                $  /  I          @   K               p                       x       J   4  c  g           l          V  9       2   >                   C      B  l    -  	          D                         X  (                r          u  t           s  d  =  
           ;   a  @     j                 \   H   m   }               L      {       A   J  P    w   N      h                                    
  `   E                                       &                      W     %              :           Z   ]   Q         g     +      3              X   <  1                  P      &             }     G      T                k          v   o     :   f  y  K   _         "       U      8  7     A               v  q   ^         #                 e              a   )      h          (   C      ~           D                                     b      )   ,              q             w          ]          _  M     n                                   `      O                \         z  t         {      0              Z     V                 .           L        $               c      !          |      ~  '      !      6        -       6   9          "    3  	                     Q             N        T  s   k       ?         2      p                               ,                e  8   <   d   5                               H       No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available %ds %ds remaining. %s does not support UUIDs %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] APM disabled
 APM enabled
 Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Allow to interrupt with ESC. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Available input terminals: Available output terminals: BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Base directory for hash list. Boot an operating system. Bootpath: %s
 Bootpath: unavailable
 CGA  COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't enable ROM area. Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check key modifier status. Compare file `%s' with `%s':
 Compare two files. Compute or check hash checksum. Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DIR Define a menu entry. Define a submenu. Delete the specified loopback drive. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable/enable SMART (0/1). Display SMART health status. Display a line of text. Display power mode. Display/set current datetime. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't load host tables specified by comma-separated list. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d seconds 
 Emulate a keystroke sequence Enable interpretation of backslash escapes. Enter ZFS password:  Enter passphrase for %s%s%s (%s):  Enter password:  Evaluate an expression. Exit from GRUB. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILESYSTEM [VARIABLE] Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Freeze ATA security settings until reset. GRUB Boot Menu Get disk cache info. Get/set ATA disk parameters. HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Hercules  Import ZFS wrapping key stored in FILE. KEYBOARD_KEY Keyboard key to quickly boot this entry. Leaf virtual device (file or disk) Legend: mask/position=red/green/blue/reserved List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List devices and files. List devices. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the loaded fonts. List variables from environment block file. Load BIOS dump. Load a keyboard layout. Load and initialize EFI emulator. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load host ACPI tables and tables specified by arguments. Load only tables specified by comma-separated list. Load the same file in multiple ways. Loaded fonts: MAC verification failed MODULE Make a virtual drive from a file. Manipulate PCI devices. Measure time used by COMMAND Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry type. Monochrome  Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. NAME [VARIABLE] [HINTS] NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Network protocols: New MBR is written to `%s'
 No CS5536 found No disk cache statistics available
 No virtual device tree available Non-chain 4  Now connect the remote debugger, please. OS disk #num ------> GRUB/BIOS device PARTITION COMMANDS PORT PORT VALUE [MASK] Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Planar  Play a tune. Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print drive identity and settings. Print sizes in a human readable format. RAM holding firmware code RAM slot number %d
 ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot the computer. Remove a module. Retrieve device info. Return to IEEE1275 prompt. Run `go' to resume GRUB. SOURCE|-u UUID|-a|-b STRING Save read value into variable VARNAME. Save variables to environment block file. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set a variable to return value. Set a variable to the first device found. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set drive to sleep mode. Set drive to standby mode. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Show ACPI information. Show APM information. Show a help message. Show a long list with more detailed information. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show the contents of a file. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Skip offset bytes from the beginning of file. Slot %d opened
 Specify filename. Specify hash to use. Specify one or more font files to load. Store matched component NUMBER in VARNAME. System management bus controller I/O space is at 0x%x
 Test USB support. Test bit at BYTE:BIT in CMOS. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This entry can be booted by any user. Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Translates the string with the current settings. USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] Unable to retrieve pool state Uncompress file before checksumming. Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unrecognized pool state Usage: Use STRING as menu entry body. VARNAME Verbose countdown. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed Wait for a specified number of seconds. Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 YUV  [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [NUMBER:]VARNAME [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [PATTERN ...] [WxH[xD]] [WxH] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] attempt to read or write outside of disk `%s' attempt to read past the end of file available RAM base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 can't find command `%s' cannot open `%s': %s cannot read `%s': %s cannot write to CD-ROM checksum verification failed couldn't find a necessary member device of multi-device filesystem couldn't read ELI metadata don't update LED state enter: boot, `e': options, `c': cmd-line failure reading sector 0x%llx from `%s' failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels invalid PBKDF2 password invalid file name `%s' invalid video mode specification `%s' missing `%c' symbol module `%s' isn't loaded no APM found no command is specified no decryption key available no such partition no symbol table no terminal specified not a directory not a regular file one argument expected physical volume %s not found premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift relocation 0x%x is not implemented yet reserved RAM set capslock mode set insert mode set numlock mode set pause mode set scrolllock mode symbol `%s' not found terminal `%s' isn't found this ELF file is not of the right type this LDM has no Embedding Partition; embedding won't be possible too deep nesting of symlinks two arguments expected unknown argument `%s' unrecognized number unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length variable `%s' isn't set wrong ELI magic or version you need to load the kernel first your core.img is unusually large.  It won't fit in the embedding area Project-Id-Version: grub 2.00+20130519
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-06-02 22:59+0300
Last-Translator: Rimas Kudelis <rq@akl.lt>
Language-Team: Lithuanian <komp_lt@konferencijos.lt>
Language: lt
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
     Nė viena pageidaujama veiksena negalima
     Pageidaujama veiksena: %u×%u
   netinkama EDID kontrolinė suma   EDID versija: %u.%u
   Nepavyko inicijuoti vaizdo adapterio   Jokia informacija neprieinama %d sek. liko %d sek. %s nepalaiko UUID identifikatorių %s: MAIŠOS NESUTAMPA
 %s: GERAI
 %s: SKAITYMO KLAIDA
 -h MAIŠA [-c FAILAS [-p PREFIKSAS]] [FAILAS1 [FAILAS2 ...]] -l | -r | [-s] grub_įr os_diskas. 16 bitų apsaugotoji sąsaja palaikoma
 16 bitų apsaugotoji sąsaja nepalaikoma
 32 bitų apsaugotoji sąsaja palaikoma
 32 bitų apsaugotoji sąsaja nepalaikoma
 =REIKŠMĖ ACPI išliekamoji užimta operatyvioji atmintis ACPI lentelių užimama operatyvioji atmintis Išjungti per ACPI nepavyko ADRESAS ADRESAS REIKŠMĖ [KAUKĖ] ADRESAS [DYDIS] APM išjungtas
 APM įgalintas
 Leisti DOS stiliaus CR/NL eilučių pabaigas. Aktyvūs įvesties terminalai: Aktyvūs išvesties terminalai: Adapteris „%s“:
 Leisti nutraukti Gr klavišu. Įvestį laikyti šešioliktaine. Įvestį laikyti slaptafraze. Įvestį laikyti neapdorota. Bandoma iššifruoti pagrindinį raktą... Galimi įvesties terminalai: Galimi išvesties terminalai: BIOS_DUMP [INT10_DUMP] BLOKAS BAITAS:BITAS Bazinis maišų sąrašo aplankas. Paleisti operacinę sistemą. Paleidimo kelias: %s
 Paleidimo kelias: nepasiekiamas
 CGA  KOMANDA [ARGUMENTAI] Procesoriaus atlaisvinimas jo nesulėtina
 Procesoriaus atlaisvinimas jį sulėtina
 CS5536 rasta: %d:%d.%d
 Negalima įgalinti ROM srities. Patikrinti „Alt“ (arba „Lyg3“) klavišo būseną. Patikrinti „Vald“ klavišo būseną. Patikrinti „Lyg2“ klavišo būseną. Patikrinti centrinio procesoriaus galimybes. Palyginti failų maišas su nurodytomis maišų sąrašo faile FAILAS. Patikrinti, ar centrinis procesorius palaiko 64 bitų veikseną (numatyta). Patikrinti modifikavimo klavišų būseną. Failų „%s“ ir „%s“ palyginimas:
 Palyginti du failus. Apskaičiuoti arba patikrinti maišos reikšmę. Nepavyko aptikti fizinio tomo „%s“. Kai kurių modulių pagrindiniame atvaizdyje gali trūkti. Nepavyko įkelti „sha256“ modulio Nepavyko įkelti „sha512“ modulio Kurti BIOS tipo struktūras atbuliniam suderinamumui su esama OS. ĮRENGINYS ĮRENGINYS [SKAIDINYS[+/-[TIPAS]]] ... APLANKAS Aprašyti meniu elementą. Aprašyti submeniu. Pašalinti nurodytą kilpinės jungties įrenginį. Nustatyti naudotiną tvarkyklę. Nustatyti failų sistemos UUID. Nustatyti failų sistemos etiketę. Nustatyti failų sistemos tipą. Nustatyti skaidinių schemos tipą. Įrenginio identifikatorius: %s
 Įrenginio idtifikatorius: nepasiekiamas Tiesioginės spalvos, kaukė: %d/%d/%d/%d, pozicija: %d/%d/%d/%d Išjungti/įjungti SMART (0/1). Parodyti SMART būklę. Parodyti teksto eilutę. Rodyti maitinimo veikseną. Parodyti arba nustatyti datą ir laiką. Neišvesti eilutės pabaigos failo gale. Nerodyti pranešimų. Netikrinti lanksčiųjų diskelių įrenginių. Nenaudoti APM kompiuteriui išjungti. Nieko nedaryti, grąžinti sėkmę. Nieko nedaryti, grąžinti nesėkmę. Neįkelti lentelių, nurodytų kableliais atskirtame sąraše. Nesustoti po pirmos klaidos. Nenaujinti EBDA. Tai gali pašalinti nesklandumus ar strigtis, pasitaikančias su kai kuriomis BIOS realizacijomis, tačiau neefektyvu, nes OS negauna RSDP struktūros iš GRUB. IŠRAIŠKA IŠRAIŠKA ] Sugaišta laiko: %d.%03d sek.
 Emuliuoti klavišų paspaudimus Įgalinti kaitos sekų su kairiniu pasviruoju brūkšniu interpretavimą. Įveskite ZFS slaptažodį:  Įveskite %s%s%s (%s) slaptafrazę: Įveskite slaptažodį:  Vykdyti išraišką. Išeiti iš GRUB. Eksportuoti pirmosios versijos lenteles į OS. Eksportuoti antrosios ir trečiosios versijų lenteles į OS. FAILAS FAILAS [ARGUMENTAS ...] FAILAS | TEMPAS [TONAS1 TRUKMĖ1] [TONAS2 TRUKMĖ2] ...  FAILAS... FAILAS1 FAILAS2 FAILŲ_SISTEMA [KINTAMASIS] Failai skiriasi ties poslinkiu %llu: 0x%x [%s], 0x%x [%s]
 Skiriasi failų dydis: %llu [%s], %llu [%s]
 Užpildyti GPT disko ĮRENGINYS hibridinį paleidimo įrašą (MBR). Nurodytieji skaidiniai bus hibridinio paleidimo įrašo dalis. Galima nurodyti iki trijų skaidinių. TIPAS yra MBR tipas. „+“ reiškia, jog skaidinys bus aktyvus. Tik vienas skaidinys gali būti aktyvus. Užbaigti EFI emuliatoriaus įkėlimą. Pirma išbandyti PATARIAMĄ įrenginį, jeigu veikiama ARC veiksenoje. Jeigu PATARIMAS baigiasi kableliu, bus išbandyti ir įrenginio skaidiniai Pirma išbandyti PATARIAMĄ įrenginį, jeigu veikiama BIOS veiksenoje. Jeigu PATARIMAS baigiasi kableliu, bus išbandyti ir įrenginio skaidiniai Pirma išbandyti PATARIAMĄ įrenginį, jeigu veikiama EFI veiksenoje. Jeigu PATARIMAS baigiasi kableliu, bus išbandyti ir įrenginio skaidiniai Pirma išbandyti PATARIAMĄ įrenginį, jeigu veikiama IEEE1275 veiksenoje. Jeigu PATARIMAS baigiasi kableliu, bus išbandyti ir įrenginio skaidiniai Pirma išbandyti PATARIAMĄ įrenginį, jeigu palaikoma tiesioginė prieiga prie įrenginių. Jeigu PATARIMAS baigiasi kableliu, bus išbandyti ir įrenginio skaidiniai Pirma išbandyti PATARIAMĄ įrenginį. Jeigu PATARIMAS baigiasi kableliu, bus išbandyti ir įrenginio skaidiniai Pašalinti problemą su vaizdu. Įrašyti ATA saugumo nuostatas iki bus atkurta pradinė būsena. GRUB paleidimo meniu Gauti disko podėlio informaciją. Gauti/nustatyti ATA disko parametrus. MAIŠA PATARIMAS Išjungti sistemą, jeigu įmanoma, naudojant APM. Išjungti kompiuterį. Ši komanda veikia ne su visa programine aparatine įranga. „Hercules“  Importuoti ZFS gaubiantįjį raktą laikomą FAILE. KLAVIŠAS Klaviatūros klavišas, iškviečiantis šį elementą. Virtualus įrenginys–lapas (failas arba diskas) Legenda: kaukė/pozicija=raudona/žalia/mėlyna/rezervuota Išvardinti PCI įrenginius. Išvardinti visus failus. Išvardinti galimas vaizdo veiksenas. Jeigu nurodyta skiriamoji geba, vardinti tik ją atitinkančias veiksenas. Išvardinti įrenginius ir failus. Išvardinti įrenginius. Parodyti aparatinės programinės įrangos pateiktą atminties žemėlapį. Palaikomų vaizdo veiksenų sąrašas: Sąrašas naudotojų, kuriems leidžiama iškviesti šį elementą. Išvardinti arba pasirinkti įvesties terminalą. Išvardinti arba pasirinkti išvesties terminalą. Išvardinti įkeltus šriftus. Išvardinti kintamuosius aplinkos blokų faile. Įkelti BIOS išklotinę. Įkelti klaviatūros išdėstymą. Įkelti ir inicijuoti EFI emuliatorių. Įkelti kitą konfigūracijos failą, nekeičiant konteksto, tačiau iš jo imti tik meniu elementus. Įkelti kitą konfigūracijos failą, nekeičiant konteksto. Įkelti kitą konfigūracijos failą. Įkelti kompiuterio ACPI lenteles ir lenteles, nurodytas argumentuose. Įkelti tik lenteles, nurodytas kableliais atskirtame sąraše. Įkelti tą patį failą keliais būdais. Įkelti šriftai: nepavyko patikrinti MAC kodo MODULIS Sukurti virtualų įrenginį iš failo. Manipuliuoti PCI įrenginiais. Paskaičiuoti, kiek laiko vykdoma KOMANDA Atminties tipas: DDR2. Atminties tipas: nežinomas. Meniu elemento identifikatorius. Meniu elemento tipas. Vienspalvė  Prijungti kriptografinį įrenginį Prijungti visus tomus su paleidimo žyme. Prijungti viską. Prijungti pagal UUID identifikatorių. VARDAS [KINTAMASIS] [PATARIMAI] SEKUNDŽIŲ_SKAIČIUS Pavadinimas	Nuorodų skaičius	Priklausomybės
 Naudojamos prigimtinės disko tvarkyklės. Aparatinės programinės įrangos disko sąsaja nebus naudojama. Tinklo protokolai: Naujas paleidimo įrašas įrašytas į „%s“
 CS5536 nerasta Disko podėlio statistika neprieinama
 Virtualių įrenginių medis neprieinamas „Non-chain 4“  Dabar prašom prijungti nuotolinę derintuvę. OS disko Nr. ------> GRUB/BIOS įrenginys SKAIDINYS KOMANDOS PRIEVADAS PRIEVADAS REIKŠMĖ [KAUKĖ] Analizuoti senosios GRUB versijos konfigūracinį failą naujame kontekste Analizuoti senosios GRUB versijos konfigūracinį failą naujame kontekste, tačiau iš jo imti tik meniu elementus Analizuoti senosios GRUB versijos konfigūracinį failą tame pačiame kontekste Analizuoti senosios GRUB versijos konfigūracinį failą tame pačiame kontekste, tačiau iš jo imti tik meniu elementus Dalies Nr.: %s.
 Kelias: %s
 Kelias: nepasiekiamas Vykdyti KOMANDAS su skaidiniu.
Naudokite „parttool SKAIDINYS help“ galimų komandų sąrašui gauti. Plokštuminė  Groti melodiją. Tomų grupės GUID: %016llx
 Tomų grupės GUID: nepasiekiamas Tomų grupės vardas: %s
 Tomų grupės vardas: nepasiekiamas Tomų grupės būsena: aktyvi Tomų grupės būsena: sunaikinta Tomų grupės būsena: eksportuojama Tomų grupės būsena: antrojo lygio ARC įrenginys Tomų grupės būsena: galimai aktyvi Tomų grupės būsena: laikoma karštajam rezervui Tomų grupės būsena: nepasiekiama Tomų grupės būsena: neiniciuota Spauskite „Įvesti“ („Enter“) pasirinktai OS paleisti, „e“, jeigu norite paredaguoti komandas, arba „c“ komandinei eilutei iškviesti. Spauskite „Įvesti“ („Enter“) pasirinktai OS paleisti, „e“, jeigu norite paredaguoti komandas, arba „c“ komandinei eilutei iškviesti. Paspaudę „Gr“ („Escape“), grįšite į ankstesnį meniu. Parodyti atminties informaciją. Parodyti ZFS informaciją apie ĮRENGINĮ. Parodyti ZFS-BOOTFSOBJ, arba priskirti KINTAMAJAM. Spausdinti blokų sąrašą. Parodyti disko identifikatorių ir nuostatas. Dydžius nurodyti suprantamesniu formatu. operatyvioji atmintis, kurioje laikoma aparatinė programinė įranga OA lizdo numeris %d
 Yra prieinamas ROM atvaizdis. Nuskaityti 16 bitų reikšmę iš ADRESO. Nuskaityti 16 bitų reikšmę iš PRIEVADO. Nuskaityti 32 bitų reikšmę iš ADRESO. Nuskaityti 32 bitų reikšmę iš PRIEVADO. Nuskaityti 8 bitų reikšmę iš ADRESO. Nuskaityti 8 bitų reikšmę iš PRIEVADO. Skaityti tik ILGIS baitų. Iš naujo paleisti kompiuterį. Pašalinti modulį. Nuskaityti įrenginio informaciją. Grįžti į IEEE1275 sąsają. Kai norėsite tęsti GRUB darbą, įvykdykite komandą „go“. ŠALTINIS|-u UUID|-a|-b EILUTĖ Įrašyti nuskaitytą reikšmę į KINTAMĄJĮ. Įrašyti kintamuosius į aplinkos blokų failą. Ješkoti įrenginių pagal UUID identifikatorių. Jeigu nurodytas KINTAMASIS, jam bus priskirtas pirmasis surastas įrenginys. Ieškoti įrenginių pagal failą. Ieškoti įrenginių pagal failų sistemos UUID identifikatorių. Ieškoti įrenginių pagal failų sistemos etiketę. Ieškoti įrenginių pagal failą, failų sistemos etiketę arba jos UUID identifikatorių. Nurodžius --set, parametrą, šiam kintamajam bus priskirtas pirmasis surastas įrenginys. Nenurodžius kintamojo vardo, bus naudojamas „root“. Ieškoti įrenginių pagal failą. Jeigu nurodytas KINTAMASIS, jam bus priskirtas pirmasis surastas įrenginys. Ieškoti įrenginių pagal etiketę. Jeigu nurodytas KINTAMASIS, jam bus priskirtas pirmasis surastas įrenginys. Parinkti įrenginį pagal jo poziciją magistralėje. Pasirinkti įrenginį pagal gamintojo ir įrenginio identifikatorius. Nustatyti energijos valdymo lygį
(1=žemas, ..., 254=aukštas, 255=išjungtas). Nustatyti automatinį akustinį valdymą
(0=išjungtas, 128=tylus, ..., 254=greitas). Nustatyti RSDP, XSDT ir RSDT struktūrų OEMID reikšmę. Nustatyti RSDP, XSDT ir RSDT struktūrų OEMTABLE ID reikšmę. Nustatyti RSDP, XSDT ir RSDT struktūrų OEMTABLE reviziją. Priskirti grąžinamą reikšmę kintamajam. Pirmąjį surastą įrenginį priskirti kintamajam. Nustatyti RSDP, XSDT ir RSDT struktūrų kūrėjo lauką. Nustatyti RSDP, XSDT ir RSDT struktūrų kūrėjo reviziją. Nurodyti diskui pereiti į miego būseną. Nurodyti diskui pereiti į budėjimo būseną. Nustatyti laiką iki bus pereita į budėjimo būseną
(0=išjungta, 1=5s, 2=10s, ..., 240=20m, 241=30m, ... ). Nustatyti naudotojo slaptažodį (PBKDF2 maišą). Nustatyti naudotojo slaptažodį (atviru tekstu). Nesaugu ir nerekomenduojama. Nustatyti kintamojo reikšmę į naudotojo įvestį. Rodyti ACPI informaciją. Rodyti APM informaciją. Rodyti pagalbinį pranešimą. Rodyti ilgą sąrašą su išsamesne informacija. Išvardinti įkeltus modulius. Rodyti atminties turinį. Rodyti neapdorotą ATA IDENTIFY sektoriaus turinį. Rodyti neapdorotą failo arba atminties turinį. Rodyti failo turinį. Rodyti šį pranešimą. Rodyti tik pirmosios versijos lenteles. Rodyti tik antrosios ir trečiosios versijų lenteles. Imituoti senosios GRUB versijos „initrd“ komandą Imituoti senosios GRUB versijos „kernel“ komandą Imituoti senosios GRUB versijos „modulenounzip“ komandą Imituoti senosios GRUB versijos „password“ komandą Praleisti nurodytą kiekį baitų nuo failo pradžios. Atvertas %d lizdas
 Nurodyti failo vardą. Nurodykite naudotiną maišą. Nurodyti vieną ar daugiau įkeltinų failų. Įrašyti atitikusį komponentą NUMERIS į KINTAMĄJĮ. Sistemos valdymo magistralės valdiklio įvesties/išvesties erdvė yra adresu 0x%x
 Išbandyti USB palaikymą. Patikrinti bito BAITAS:BITAS reikšmę CMOS'e. Išbandyti vaizdo posistemę PLOTIS×AUKŠTIS veiksenoje. Išbandyti vaizdo posistemę. Tik tekstas  Failai yra vienodi.
 Pasirinktasis elementas bus paleistas automatiškai už %d sek. Šį elementą gali iškviesti bet kuris naudotojas. Transformuoti 64 bitų UUID identifikatorių į XNU tinkamą formatą. Nurodžius „-l“ parametrą, grąžinamą reikšmę sudarys mažosios raidės, kaip „blkid“ atveju. Išverčia eilutę pagal esamas nuostatas. NAUDOTOJAS SLAPTAŽODIS NAUDOTOJAS PBKDF2_SLAPTAŽODIS NAUDOTOJAS[,NAUDOTOJAS] Nepavyko sužinoti tomų grupės būsenos Išskleisti failą prieš tikrinant maišą. Nežinoma vaizdo veiksena  Nežinomas virtualaus įrenginio tipas: %s
 Iškelti EFI emuliatorių. Nežinoma tomų grupės būsena Naudojimas: Naudoti EILUTĘ kaip meniu elemento tekstą. KINTAMASIS Detali atbulinė atskaita. Versija %u.%u
32 bitų CS = 0x%x, ilgis = 0x%x, poslinkis = 0x%x
16 bitų CS = 0x%x, ilgis = 0x%x
DS = 0x%x, ilgis = 0x%x
 Virtualus įrenginys defektyvus Virtualus įrenginys neprijungtas Virtualus įrenginys pasiekiamas Virtualus įrenginys pašalintas Palaukti nurodytą sekundžių skaičių. Įrašyti 16 bitų REIKŠMĘ į ADRESĄ. Nusiųsti 16 bitų REIKŠMĘ į PRIEVADĄ.  Įrašyti 32 bitų REIKŠMĘ į ADRESĄ. Nusiųsti 32 bitų REIKŠMĘ į PRIEVADĄ.  Įrašyti 8 bitų REIKŠMĘ į ADRESĄ. Nusiųsti 8 bitų REIKŠMĘ į PRIEVADĄ.  Įrašyta SPD baitų: %d B.
 YUV  [--append|--remove] [TERMINALAS1] [TERMINALAS2] ... [--md5] SLAPTAŽODIS [FAILAS] [--no-mem-option] [--type=TIPAS] FAILAS [ARGUMENTAS ...] [-1|-2] [--exclude=LENTELĖ1,LENTELĖ2|--load-only=LENTELĖ1,LENTELĖ2] FAILAS1 [FAILAS2] [...] [-c FAILAS [-p PREFIKSAS]] [FAILAS1 [FAILAS2 ...]] [-d] ĮRENGINYS FAILAS. [-n|-n] EILUTĖ [-f FAILAS] [-f FAILAS] kintamojo_vardas [...] [-f|-l|-u|-s|-n] [--hint PATARIMAS [--hint PATARIMAS] ...] VARDAS [-h|-p|-r] [FAILAS] [-l] GRUBUUID [KINTAMASIS] [-l|-h|-a] [FAILAS ...] [APLINKOS_KINTAMASIS] [KLAVIŠAS1] [KLAVIŠAS2] ... [NUMERIS:]KINTAMASIS [PARINKTYS] DISKAS [PARINKTYS] FAILAS_ARBA_ĮRENGINYS [ŠABLONAS ...] [PLOTISxAUKŠTIS[xGYLIS]] [PLOTISxAUKŠTIS] [[metai-]mėnuo-diena] [valandos:minutės[:sekundės]] [magistralė]:[lizdas][.funkcija] [gamintojas]:[įrenginys] bandoma skaityti arba rašyti už disko „%s“ ribų bandyti skaityti už failo pabaigos laisva operatyvioji atmintis bazinis_adresas = 0x%llx, ilgis = 0x%llx, %s
 bazinis_adresas = 0x%llx, ilgis = 0x%llx, tipas = 0x%x
 nepavyko rasti komandos „%s“ nepavyko atverti „%s“: %s nepavyko nuskaityti „%s“: %s rašyti į CD-ROM negalima kontrolinės sumos patikrinti nepavyko nepavyko rasti reikiamo įrenginio–nario kelių įrenginių failų sistemoje nepavyko nuskaityti ELI metaduomenų nekeisti šviesos diodo būsenos „įvesti“: paleisti, „e“: parinktys, „c“: komandinė eilutė klaida skaitant sektorių 0x%llx iš „%s“ klaida rašant sektorių 0x%llx į „%s“ neigiamas sugedusi operatyvioji atmintis („BadRAM“) failas „%s“ nerastas tikėtasi failo vardo tikėtasi failo vardo arba tempo ir natų failų sistema „%s“ nepalaiko etikečių negalima slaptažodžio PBKDF2 maiša netaisyklingas failo vardas – „%s“ negalimas vaizdo veiksenos aprašas: „%s“ trūksta „%c“ simbolio modulis „%s“ neįkeltas APM nerastas nenurodyta jokia komanda iššifravimo raktas neprieinamas tokio skaidinio nėra nėra simbolių lentelės nenurodytas terminalas tai nėra aplankas tai nėra paprastas failas tikėtasi vieno argumento nepavyko rasti fizinio tomo %s priešlaikinė failo pabaiga priešlaikinė failo „%s“ pabaiga nuspausti klavišą „Didž“ nuspausti klavišą „Įterpti“ nuspausti klavišą „Skaitm“ nuspausti klavišą „Slinkti“ nuspauti klavišą „Sist“ nuspausti kairįjį klavišą „Alt“ nuspausti kairįjį klavišą „Vald“ nuspausti kairįjį klavišą „Lyg2“ nuspausti dešinįjį klavišą „Alt“ („Lyg3“) nuspausti dešinįjį klavišą „Vald“ nuspausti dešinįjį klavišą „Lyg2“ perkėlimas 0x%x dar nerealizuotas rezervuota operatyvioji atmintis nustatyti didžiųjų raidžių klavišo būseną nustatyti įterpimo klavišo būseną nustatyti skaitmenų klavišo būseną nustatyti pauzės klavišo būseną nustatyti slinkties klavišo būseną simbolis „%s“ nerastas terminalas „%s“ nerastas šis ELF failas yra netinkamo tipo šis loginio disko tvarkytuvas neturi įtaisymo skaidinio; įtaisymas negalimas per giliai įdėtos simbolinės nuorodos tikėtasi dviejų argumentų nežinomas argumentas „%s“ nežinomas skaičius nepalaikomas nuosekliojo prievado lyginumas nepalaikomas nuosekliojo prievado greitis nepalaikomas nuosekliojo prievado pabaigos bitų skaičius nepalaikomas nuosekliojo prievado žodžio ilgis kintaojo „%s“ reikšmė nenustatyta netinkamas ELI magiškasis skaičius arba versija pirma turite įkelti branduolį jūsų „core.img“ failas neįprastai didelis. Jis nesutilps į įtaisymui skirtą erdvę                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           boot/grub/locale/nl.mo                                                                              0000600 0001750 0001750 00000316633 13417732100 0013647 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                       t     #    \G      (_  #   )_      M_     n_     _     _  $   _     _  6   _     (`     /`  	   ;`     E`     R`     r`     `     `     `  .   `  .   `  %   a     Da     Ha    Wa    \b    ac     id  7   d  F   d  v   e  +   ye     e      e     e  !   e     f  ,   (f     Uf     mf  $   f     f  *   f     f     g     	g     g     1g  
   Qg  	   \g     fg  ,   g  ,   g  ,   g  '   	h  -   1h      _h  (   h  (   h  )   h     h     i     <i     Ii     Ri  "   [i  4   ~i     i     i  7   i      j  1   	j     ;j  %   Zj  '   j  %   j  '   j     j     j     j     k     0k     Ek     Jk     \k     hk     k     k     k     k     k  3   k     l  $   l     1l     Il     bl     ql     l     l     l  -   l     l  !   m     3m     Hm     dm  #   ym     m  `   %n  Z   n     n     n     o     o     o     5o     ;o     Do     [o     yo     o     o     o     o     o     p     p     2p     @p     Wp     fp     kp     qp  %   p     p     p     p     p     q     !q     0q     Cq     Tq  *   lq  3   q     q  "   q  8   	r     Br     Tr  	   qr  #   {r     r     r     r     r     s     's  )   6s     `s     s     s  P   s     t     !t  H   6t  &   t     t     t  !   t  ,   t     u      u     $u  	   Au  !   Ku  *   mu     u     u     u     u     u  $   	v     .v     @v     Rv     mv     v     v  
   v  
   v     v  1   v     w     +w     8w     Qw  3   mw  >   w  $   w     x     x     9x     Qx     lx     x  +   x     x     x  #   y     *y     Ay  $   `y     y     y  '   y  9   y     z     6z  z   Tz     z     z  8   z     #{  
   :{     E{     R{     l{     {     (|  +   E|     q|     |     |  "   |     |     |  (   |     }     5}     A}     Q}     a}     x}  "   }  0   }     }     }     }  7   ~     9~     A~     M~     ^~     t~     ~  0   ~     ~     ~     ~     ~  2     %   >     d     y  *     6     +             4     G  !     d   :  e     d     i   j  o   Ԃ  H   D                    ǃ     ڃ          
     !  #   :     ^     |       1     )   ؄          	             /   /     _     n       5        ؅       K        _     {                           '     P        :     Y  	   e     o     r       '     +   ͇          
  )   &     P     g                    ͈       $             /     J     L     X  (   e            "     +     -             .     =     N     `  O   p          ֊                 %   '     M  )   l  !     "        ۋ       +        :     Q     a  !   s               ʌ     ֌                )     <     Z     v       4        ύ                     3     N     g             !          4     M   /  2   }          ʏ  *     8        L     Y     p            3     $     +        <     Q     _     t                     ّ                 D   &     k     r  7   z  ;               !   -     O     e  s                  .     ?     R     h                              ]          )     =     D     P     n       '     
   ǖ     Җ                              *  H   G                    ϗ  %   ޗ            #   7     [     x                     ֘        "     (   9     b  %   ~       2               #     *   7     b     d     w  #   |            	     "     ;     #      <   D                 .     	          `        g  !   |  )        Ȝ     ̜     Ҝ     ڜ  q        Y     m                         ӝ            "   &     I     a     {                    Ԟ       #        &     C  g   _     ǟ     L     f  -          !   Š       "     '     Q   C               ˡ     ߡ                     =     Z     w               Ǣ      բ                     ?     Z     n       -        ͣ       "     b     )                  ٤  ,        !     :  	   ?  "   I  %   l                      &     )          ^           $     %          ^     _     }   V     Ԩ  )     '     >   ݩ  D     !   a  '     -     #   ٪       )        G  )   d  )     ,                       9     T  E   e  $     A   Ь  )        <     Y     u                Э  q        W  :   t          ͮ     ܮ               0     F     b  0   w          Ư     ۯ  )     &        B     _     z       )        Ӱ  %     %   	  ,   /  '   \  :          -   ޱ       .        K     ]  '   r  $     "                    *        D     L  )   S  o   }            6               0          1  !   R  "   t  #             ͵            !         B  
   X     c  <   }  %     >             (     ,     2     R     k  d   ~  *     0     6   ?     v     ~                      0   ո       !        ;     Y  $   j                    ݹ       $     "   0  $   S     x                º     ׺                         5     M  '   j            $   ˻  +     "        ?  )   F     p                    ռ  '             0     M  <   a                ǽ     ڽ  m        c     ~               ˾  +     3     1   E     w  '     -        ۿ  '     '     .   4  	   c     m                                   -     H     b     }  *     ?     B     p   0       /   ,     \     q  .     O     )        0     F  	   U     _  5   }                           :   (     c     v                                             
       	        '     6     O     d     z                 
     
     	          !     )        "     6     H     h  F     N          "   )     L     Q  -   c  -     $     #     0     6   9     p     ~       (     1     )        $     3  !   J     l             %          &             4      R  7   s  .     4             ,     A     \     q  %                                 0     ?     H  ,   e                                #        ,     F  B   `                              $  &   @     g                      &                  -     =  ;   Q  V     "     &     !   .     P     g     l  /     H     F     w   J  N     (        :     V  I   b  $     '          %        8     >     R     f  $   x  '     *             
       J   1     |            -     +        !  $   '     L  "   U  +   x  J     %              -  "   N     q                                         .  %   I     o            %                       -     5  [   I       !                            *     7     J     b     x                                   #     :     L     i     y       1                  	          1     G     	  1        I  0   g            !          "        %     ;     T     g     x                                               &   $     K     g                 '     &          L   (     u       !                            ,     >     N     _     t       #     #     $               &        F  !   U     w                      	     7          %   &  [   L  w     7      K   X  #     /                  1  &   O  U   v  @     Q        _     x       +          R     L   ?  .               F             4     K     a     y                            2     !   B  #   d                                        5     T  (   r  #                         )        H     `  '   {  '     '          0        C     ^  -   |  8               !         4     U     p  .          !     B     E   2  B   x      &   o  !                    ,        5  8   M  	          
                                 3  3   ?  3   s  *               ^    8  F  \         I     ^   A       5   5     k     {                 )             '  "   ;     ^  (   y                      #     	             ,  )   I  5   s  )     &     *     $   %  '   J  '   r  (                    	     	     /   !  <   Q            4          ?     /   !  /   Q  4     /     4             #  #   %     I  !   _                 %                            (  ;   <     x  #   ~                                   5  0   Q       8     '     ,     $   + +   P    | i    j               )    +    /    F    K !   T    v %         !        $       = !   P    r                         '    "       9     P    q                 %    G    ?   _ (    2    ?       ; #   J    n ,   z #        #    *       6    P ;   f +    ,    $    U    	    v	    	 `   	 '   
    +
    E
 "   N
 H   q
    
    
    
 
   
 6   
 2   $    W    p             %            %   : &   ` "                     7   	    A    T !   f     6    F    2   %    X     k     "            8        3 )   T &   ~         -            #   ; C   _ )                +    H        	   9    C #   O #   s     !   K /   m             (           - 6   F    }                     0    =   ,    j    r     4    
                   "    1 /   :    j    }         H    /       <    Q (   f <    7    *       /    G &   ; q   b r    q   G u       / X           +    D    X    n          )    %    !       5    P 7   e 4                    /       1    @    ] B   y %    %    M    +   V     $                    )    N     $   T     y  	          %          5     +   !    0!    B! =   a!    !    !    !    !    "    ""    ;" *   U"    "    "    "    "    " <   "    
#    # /   # 7   D# 5   |#    #    #    #    $    $ ]   -$    $    $    $    $ !   $ 0   % !   G% 0   i% '   % (   %    %    & *   &&    Q&    m&    ~& %   &    & )   &    
'    ' $   /'    T'    s'    '    '    '    ' >   ' '   0(    X(    m(    (    (    (    (      ) %   !) $   G)    l) @   ) ^   ) @   ** "   k* (   * 8   * ?   *    0+    P+    o+    +    + @   + -   + *   +, "   V,    y,    ,    ,    , !   , "   ,    -    3-    H-    J- ?   b-    -    - :   - Q   - +   >. %   j. *   .    . #   . p   .    f/     /     /    /    /    /     0    0    (0    ,0    20    0    1    1    1    1 $   1    	2 %   #2 :   I2    2    2 #   2    2    2    2    2 #   3 U   *3    3 #   3    3    3 .   3    4    (4 2   B4 !   u4 .   4    4    4    4     5 ,   -5 '   Z5 $   5    5 4   5 /   5 I   $6    n6 $   v6 '   6 )   6    6    6    7 '   7    /7    57    K7 6   ^7 T   7 8   7 V   #8    z8    8    8 &   8    8    8 m   9    o9 $   9 1   9    9    9    9    9 {   :    :    :    :    :    :    :    ; "   );    L; '   k;    ;    ;    ;    ;    	<    #<    =<    W< (   n< &   < #   < w   <    Z=    = #   > /   3>    c> $   {>    > (   > $   > P   ?    T?    t?    ?    ?    ? #   ? #   ? #   @ #   4@ "   X@ "   {@    @    @ .   @    @    A !   -A    OA    oA    A #   A .   A     A j   B y   B t   B 3   pC    C    C #   C /    D    0D    OD 
   XD '   cD +   D    D    D 
   D    D .   D +   E    AE v   XE &   E 3   E 3   *F    ^F    ,G w   G    $H    H 3   I :   I E   J I   NJ '   J -   J 2   J *   !K )   LK /   vK !   K 7   K 4    L 6   5L '   lL    L "   L !   L    L M   M 4   `M J   M +   M *   N ,   7N ,   dN ,   N /   N    N |   O -   O E   O )   O    (P #   >P "   bP    P    P    P    P -   P ,   Q    BQ    YQ 0   tQ 0   Q     Q    Q    R "   (R /   KR    {R /   R /   R 6   R 1   +S C   ]S $   S 3   S    S G   T    WT    mT    T &   T $   T    T $   T    U =   .U    lU    sU 7   zU    U    NV    lV +   fW    W    W 2   W (   W (   W '   X '   FX    nX +   X "   X E   X %   Y    CY    \Y    jY B   Y 0   Y F   Y 	   BZ    LZ    PZ -   VZ    Z    Z u   Z @   .[ 3   o[ 6   [    [    [     [ "   \    @\    F\ <   a\ !   \ )   \    \    
] 7   "]    Z]    q] #   ]    ]    ] -   ]    ^    -^    E^    [^ #   s^    ^    ^    ^    ^    ^    ^    _    )_ +   H_ '   t_     _ (   _ .   _ %   ` 	   ;` 5   E`    {` .   `     `    ` '   ` 4   !a 1   Va 6   a    a 7   a !   b    9b    Ab #   Vb v   zb (   b $   c    ?c    \c    xc I   c D   c @   'd    hd &   wd 1   d    d .   d ,   e 3   :e    ne    we    e )   e )   e )   e )   (f (   Rf (   {f #   f    f    f ,   f D   g L   Yg y   g     h /   h    h    h 5   i U   Ri 7   i    i    i    j    j 4   8j    mj    j    j    j    j D   j    2k    Lk 
   ik    tk    k    k    k #   k    k     l    l 
   l 
   %l    0l    @l    Zl    wl    l    l    l    l    l    l 	   l    l %   l )   m    Am    Vm )   mm &   m Z   m M   n    gn /   |n    n    n 0   n -   n *   (o &   So .   zo 6   o    o    o    p )   #p 2   Mp 7   p    p    p %   p    
q *   (q    Sq 1   qq    q -   q    q #   
r -   .r A   \r <   r A   r 1   s    Os    hs    s %   s $   s    s %   t    ,t     Kt ,   lt    t    t #   t -   t    u    u '   4u    \u &   tu    u '   u %   u $   v P   +v    |v "   v    v    v    v    w C   *w "   nw    w    w    w    w >   w    (x $   @x    ex    zx :   x e   x .   8y -   gy #   y    y    y ,   y ?   z P   Kz Z   z    z d   { /   {    | 
   3| 7   >| *   v| +   |    | 0   |    }    %}    >}    \} 0   w} ,   } 1   }    ~    %~    ;~ G   [~ *   ~ $   ~    ~ 5    ;   >    z -            &    <    0   >    o >    @   ɀ    
         >    U    q                ؁ *            ?    ] )   z            ς         g       m $           ƃ    ݃ /           $    <    [    u         "   ʄ     +       1    L    b "   |         "   ʅ =       +    7    Q    i              M    )    V   (     "    &    "           %    B    b    {            ŉ    ۉ                3    J    b     x         &   Պ         !   1 )   S    } M       ݋      %    $   =    b $   z             Ό !    $       6     Q -   r -    ;   ΍    
    & =   >    | '           ڎ     (       & 	   D F   N     *    f   ߏ    F ?   א R       j 7           ߑ     +    Q   K C    W       9 3   Y 2    >    ,    g   , I    1   ޔ        0 X   5            ɕ             !   , %   N    t     ,       ږ            (    B "   S    v $        -   ڗ -    3   6 0   j          &   ט     7    *   Q /   | 2    /   ߙ =    /   M 2   } %    '   ֚ 2    ?   1     q     &    $   ћ 1       ( A   :    |      ?    Q    L   N                v         e        U            R       R  [  z                    /  c  H  G  [    0                          -  3    A                                       
    N         C  q   L        `  &      \      O  >      G       +                                                      q                      ~  v  I    H    '   ,    <          k   j  4          8      y   9  ,          \  t              G             F  N    I       3            M  t  5  m    O        
       l                     1  0       4       f                 (       
  U  &           .            8            b      Y   h      o        P         >  )              6   J  /      k  [      (     x                   a              b    a  f  p     =      N  9            #    <     2  k  n        .  s     P  j              )   Z   >        <      *  p    t      q    P  ,       d          W  -             }    =    Q    x            f      	         g  H          L       X        !  M  '     0           n     ~                3            9      \  >                 L          y              (  /    6  X           G              M   O   !  k  e           L     n              ^  +                        F       T             4  o  V    z  &              t      g       =           ]                     ~                 r    C  Z               2                                h  i  {   )  J      h      D  M  \                  g  X     X           %  !                                                                       (              @               i    N    x     7  [              1        '  _       .    '        	            $                                      s       *  T               E   K                                K  %                    Y        :  
                          $    -      C      _                 o  <                          m         }               %                %  W     @      &                          8    z   `       5     U  |    j  ;   Q      W  '  X               ;    a   7   c      J  )            Q    /            6  q          ?            9     B          2          Q  t     ?  0             3           {  ?  _   |                    ,            E                  6  w  :                     K          /   .             Z                      -       Y                                    x              4    #    8         ?      S      H  J                 b                        ]  k    ^   ^                          d            ]  y        ~  9        F          ;            &      }           g            W      _      i   m    l                 c        \  1          ;  p   M  D    d                 J       )  "        V                |                           l  ^  K  ,       #     v          H                    1           2      w      T         r         "   ;                        V                       b                                   [                           ?         c        V                       	        4  +    c      :   B  r              	            E          P      e  @      I  D            z               m                      A                         ^          ]   E  !                  f    g                m          {          S           I  F          a                                   (           j        V             i          B      *  o          *   5        <         R      n                 K     :               2   e  6        n                  3      v              	      {                          7  B       s    A              7                 "      i    E  u        S          u      r      T      Q                 1                  B      U   =                d      h                             -    `                                S                  p        j              :  0  !            `  w      A   D               O             A    `      Y  Z  @  U      $      L                            S  Z              >     .                                 o           u      F      l        *    7  b  5      u             I      r                      G            T           
                               @        q          e              C  +                     8        w               "      R                N      C            D                              l  Y  5    _      =                   #        p    #      O          ]       $  P    R                       y        %  a      $            h   s  +     f        s            }           d  "  W              |                   total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: option '%c%s' doesn't allow an argument
 %s: option '%s' is ambiguous; possibilities: %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File size: %s
 File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS Import ZFS wrapping key stored in FILE. Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List coreboot tables. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... M MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MODULE MODULES Mail xorriso support requests to <bug-xorriso@gnu.org>. Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Option -- switches to native xorriso command mode. Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] PUBKEY_ID Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot into firmware setup menu. Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Render Apple .disk_label. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show CBMEM console content. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show the contents of a file. Show the current mappings. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Switch to native disk drivers. If no modules are specified default set (pata,ahci,usbms,ohci,uhci,ehci) is used Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 T TARGET Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This entry can be booted by any user. This requires setting GRUB_DEFAULT=saved in %s/default/grub.\n Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. Your embedding area is unusually small.  core.img won't fit in it. Your xorriso doesn't support `--grub2-boot-info'. Some features are disabled. Please use xorriso 1.2.9 or later. Your xorriso doesn't support `--grub2-boot-info'. Your core image is too big. Boot as disk is disabled. Please use xorriso 1.2.9 or later. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `cryptomount' command fails: %s `loopback' command fails: %s `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format blocklist FILE blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s cannot compress the kernel image cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot get translator command line for path `%s': %s cannot open OS file `%s': %s cannot open `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. diskboot.img size must be %u bytes do not probe for filesystems in DEVICE domain name component is too long don't update LED state done embed FILE as an early config embed FILE as public key for signature checking embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enable ARCS (big-endian mips machines, mostly SGI) boot. Disables HFS+, APM, sparc64 and boot as disk image for i386-pc enable sparc boot. Disables HFS+, APM, ARCS and boot as disk image for i386-pc enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to get canonical path of `%s' failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification install GRUB images under the directory DIR/%s instead of the %s directory install even if problems are detected invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid block size invalid color specification `%s' invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no `/' in canonical filename no command is specified no decryption key available no network card found no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found pre-load specified modules MODULES premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory of TFTP server route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the argument `%s' requires an integer the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for label use COLOR for label background use COLOR for text use DIR as the EFI System Partition root. use FILE as font (PF2). use FILE as font for label use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub-2.00+20130519
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-05-29 13:24+0200
Last-Translator: Benno Schulenberg <benno@vertaalt.nl>
Language-Team: Dutch <vertaling@vrijschrift.org>
Language: nl
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Generator: Lokalize 1.0
Plural-Forms: nplurals=2; plural=(n != 1);
               totaal geheugen: %d KiB
     Geen voorkeursmodus aanwezig
     Voorkeursmodus: %ux%u
   EDID-controlesom is ongeldig   EDID-versie: %u.%u
   Initialiseren van video-adapter is mislukt   Geen info beschikbaar   VBE-info:   versie: %d.%d  OEM-softwarerevisie: %d.%d
      of:   (uiterst links)  (centrum)  (uiterst rechts)  - Partitie begint op %llu%sKiB  - Sectorgrootte is %uB  - Totale grootte is %llu%sKiB  - Totale grootte is onbekend  [OPTIE...] %.*s: Parameter in ARGP_HELP_FMT moet positief zijn %.*s: Parameter in ARGP_HELP_FMT vereist een waarde %.*s: Onbekende parameter in ARGP_HELP_FMT %ds Nog %d seconden. %s blijkt een %s-bestandssysteem te bevatten waarvan bekend is dat er geen ruimte voor DOS-achtig opstarten wordt gereserveerd.  Installeren van GRUB daarin kan VERNIELING VAN HET BESTANDSSYSTEEM tot gevolg hebben als waardevolle gegevens worden overschreven door grub-setup.  (Optie '--skip-fs-probe' schakelt deze controle uit, op uw eigen risico.) %s blijkt een %s-partitietabel én een LDM te bevatten; dit is geen veilige combinatie.  Installeren van GRUB daarin kan VERNIELING VAN HET BESTANDSSYSTEEM tot gevolg hebben als waardevolle gegevens overschreven worden door 'grub-setup'.  (Optie '--skip-fs-probe' schakelt deze controle uit, op uw eigen risico.) %s blijkt een %s-partitietabel te bevatten waarvan bekend is dat er geen ruimte voor DOS-achtig opstarten wordt gereserveerd.  Installeren van GRUB daarin kan VERNIELING VAN HET BESTANDSSYSTEEM tot gevolg hebben als waardevolle gegevens worden overschreven door grub-setup.  (Optie '--skip-fs-probe' schakelt deze controle uit, op uw eigen risico.) %s ondersteunt geen UUID's %s genereert een toetsenbordindeling voor GRUB met behulp van 'ckbcomp'\n %s wordt afgeraden. Gebruik in plaats daarvan 'set gfxpayload=%s' vóór de 'linux'-opdracht.
 %s wordt afgeraden. VGA-modus %d wordt niet herkend. Gebruik in plaats daarvan 'set gfxpayload=BREEDTExHOOGTE[xDIEPTE]' vóór de 'linux'-opdracht.
 %s wordt nog niet ondersteund door 'grub-mkconfig'.\n %s, met Hurd %s %s, met Hurd %s (herstelmodus) %s, met Linux %s %s, met Linux %s (herstelmodus) %s, met Xen %s en Linux %s %s, met Xen %s en Linux %s (herstelmodus) %s, met Xen-hypervisor %s, met kFreeBSD %s %s, met kFreeBSD %s (herstelmodus) %s, met kernel %s (via %s) %s, met kernel %s (via %s, herstelmodus) %s: NIET-OVEREENKOMENDE HASH
 %s: OK
 %s: LEESFOUT
 %s: Te veel argumenten
 %s: U moet dit uitvoeren als root\n %s: fout: %s: informatie: %s: ongeldige optie -- '%c'
 %s: optie '%c%s' staat geen argument toe
 %s: optie '%s' is niet eenduidig; mogelijkheden zijn: %s: optie '--%s' staat geen argument toe
 %s: optie '--%s' vereist een argument
 %s: optie '-W %s' staat geen argument toe
 %s: optie '-W %s' is niet eenduidig
 %s: optie '-W %s' vereist een argument
 %s: optie vereist een argument -- '%c'
 %s: optie vereist een argument -- '%s'\n %s: onbekende optie '%c%s'
 %s: onbekende optie '--%s'
 %s: waarschuwing: (32-bits) (64-bits) **Interne programmafout**: geen versie bekend!? **Interne programmafout**: optie had herkend moeten worden!? (op %s) - Label "%s" - Laatst gewijzigd op %d-%02d-%02d %02d:%02d:%02d %s --Meer-- -h HASH [-c BESTAND [-p VOORVOEGSEL]] [BESTAND1 [BESTAND2 ...]] -l | -r | [-s] GRUBAPPARAAT BEHEERSYSTEEMSCHIJF 16-bits beveiligde interface wordt ondersteund
 16-bits beveiligde interface wordt niet ondersteund
 32-bits beveiligde interface wordt ondersteund
 32-bits beveiligde interface wordt niet ondersteund
 =WAARDE > door ACPI gebruikte persistente RAM herbruikbare ACPI-RAM uitschakeling via ACPI is mislukt ADRES ADRES WAARDE [MASKER] ADRES [GROOTTE] ADRES1,MASKER1[,ADRES2,MASKER2[,...]] ADRES DNS-SERVER APM is uitgeschakeld
 APM wordt niet gebruikt
 APM is ingeschakeld
 APM wordt gebruikt
 ARGP_HELP_FMT: waarde voor '%s' is kleiner of gelijk aan %s ASCII DOS-regeleinden (CR+LF) accepteren. Actieve invoerterminals: Actieve uitvoerterminals: Adapter '%s':
 Een DNS-server toevoegen Een netwerkadres toevoegen. Een netwerkroute toevoegen. Geavanceerde opties voor %s Geavanceerde opties voor %s (met Xen-hypervisor) Afbreken met ESC toestaan. Vragen om naam van bestand waarvan herstart moet worden. Aannemen dat de invoer hexadecimaal is. Aannemen dat de invoer een wachtwoordzin is. Aannemen dat de invoer onbewerkt is. Poging tot ontsleutelen van hoofdsleutel... Poging om GRUB op een schijf te installeren met meerdere partitielabels of met zowel partitielabel als een bestandssysteem.  Dit wordt nog niet ondersteund. Poging om GRUB op een schijf te installeren met meerdere partitielabels.  Dit wordt nog niet ondersteund. Poging om GRUB op een schijf zonder partities te installeren, of op een partitie.  Dit is een SLECHT idee. Beschikbare invoerterminals: Beschikbare uitvoerterminals: B B/s BIOS-DUMP [INT10-DUMP] BLOK BYTE:BIT Modus voor achtergrondafbeelding. Basismap voor hash-lijst. Een BIOS-gebaseerd systeem opstarten. Een besturingssysteem opstarten. Opstarten in ééngebruikermodus. Opstarten met debug-meldingen. Opstarten met uitgebreide meldingen. Opstarten van '%s' Opstarten van een opdrachtenlijst Opstarten in blinde modus. Opstartpad: %s
 Opstartpad: (niet beschikbaar)
 In GDB inbreken CGA  KLEUR OPDRACHT [ARGUMENTEN] 'CPU Idle' vertraagt de processor niet
 'CPU Idle' vertraagt de processor
 CS5536 is op %d:%d.%d
 Kan ROM-gebied niet inschakelen. Ingestelde apparaten wijzigen. Partitietype wijzigen Alt-toets controleren. Control-toets controleren. Shift-toets controleren. Beschikbare CPU-functies achterhalen. Hashes van bestanden controleren aan de hand van dit hash-lijstbestand. Controleren of de CPU 64-bits ("lang") ondersteunt (standaard). Toestand van toetsaanpasser controleren. Controleren of gebruiker in GEBRUIKERSLIJST staat. Controleert een GRUB-scriptconfiguratiebestand op syntaxfouten. Scherm wissen. De 'actief'-vlag op %d is gewist. 
 Opdrachten: BESTAND met lokaal bestand DEZE vergelijken. Bestand '%s' vergelijken met '%s':
 Twee bestanden vergelijken. De XNU-UUID van APPARAAT berekenen. Hash-controlesom berekenen of controleren. Seriële poort instellen. Doorgaan met een lus. Gewone indelingen van lettertypebestanden omzetten naar PF2 BESTAND naar lokaal bestand DEZE kopiëren. Dit BESTAND naar standaarduitvoer kopiëren. Kan FPSWA-stuurprogramma niet vinden Kan fysiek volumen '%s' niet vinden.  Mogelijk ontbreken er modules in de core-image. Kan sha256 niet laden Kan sha512 niet laden BIOS-achtige structuren aanmaken voor terugwaartse compatibiliteit met bestaande beheersystemen. Een leeg omgevingsblokbestand aanmaken. Huidige 'terminfo'-types: APPARAAT APPARAAT [PARTITIE[+/-[TYPE]]] ... APPARAAT moet een besturingssyssteemnaam hebben (bijvoorbeeld /dev/sda). APPARAATNAAM MAP MAP [OSBundleRequired] DNS-SERVER Debug-gereedschap voor bestandssysteem-stuurprogramma. Geheugengebieden als slecht ('badram') declareren. Decompressor is te groot Een menu-item definiëren. Een submenu definiëren. Een netwerkadres verwijderen. Een netwerkroute verwijderen. Het gegeven lus-apparaat verwijderen. Variabelen verwijderen. Stuurprogramma achterhalen. UUID van bestandssysteem achterhalen. Label van bestandssysteem achterhalen. Soort bestandssysteem achterhalen. Soort partitietabel achterhalen. Apparaat %s: Apparaat-ID: %s
 Apparaat-ID: (niet beschikbaar) Direct-color, masker: %d/%d/%d/%d  positie: %d/%d/%d/%d ACPI uitschakelen. SMP uitschakelen. Alle opstartuitvoer onderdrukken. SMART in-/uitschakelen  (1/0). Onjuist geneste partitie (%s,%s,%s%d) wordt weggelaten Schijfcache-statistieken: treffers = %lu (%lu.%02lu%%), missers = %lu
 Schijvenaantal moet voorafgaan aan schijvenlijst.
 FPSWA-versie tonen SMART-gezondheidstoestand tonen. Een regel tekst tonen. De blokkenlijst van BESTAND tonen. Uitvoer op alle consoles tonen. Energiemodus tonen. Gebruikssamenvatting van deze opdracht tonen en stoppen. Deze hulptekst tonen en stoppen. De huidige datum en tijd tonen/instellen. Het laatste regeleinde niet weergeven. Geen meldingen tonen. Geen floppy-apparaten polsen. Geen APM gebruiken om de computer te stoppen. Niets doen, met succes. Niets doen, met mislukking. Geen diagnostische meldingen tonen. Host-tabellen die bestaan uit een kommagescheiden lijst niet laden. Niet herstarten, computer alleen stoppen. Niet stoppen na de eerste fout. EBDA niet bijwerken. Dit kan storingen en vastlopers op sommige BIOS'en verhelpen, maar maakt het functieloos bij besturingssystemen die geen RSDP van GRUB ontvangen. OMGEVINGSVARIABELE OMGEVINGSVARIABELE [OMGEVINGSVARIABELE ...] FOUT: Geen geldige toetsenbordindeling gevonden.  Controleer de invoer.
 ESC annuleert op elk moment. EXPRESSIE EXPRESSIE ] Verstreken tijd: %d.%03d seconden 
 Verstreken tijd: %d.%03d seconden 
 Inbedden is niet mogelijk.  GRUB kan in deze configuratie alleen worden geïnstalleerd met bloklijsten.  Bloklijsten zijn echter ONBETROUWBAAR en het gebruik ervan wordt ontraden. Een reeks toetsaanslagen emuleren Verwerking van 'backslash escapes' inschakelen. Voer ZFS-wachtwoord in:  KDB binnengaan bij opstarten. Op normale modus overgaan. Voer wachtwoordzin in voor %s%s%s (%s):  Voer wachtwoord in:  Voer gebruikersnaam in:  Fout tijdens ontleden van de opdrachtregelargumenten.
 Een expressie evalueren. Afsluiten is mislukt GRUB verlaten. Een lus verlaten. Normale modus verlaten. Variabelen exporteren. Versie-1-tabellen naar beheersysteem exporteren. Versie-2- en versie-3-tabellen naar beheersysteem exporteren. BESTAND BESTAND [ARGUMENT...] BESTAND [ARGUMENT...] BESTAND | TEMPO [HOOGTE1 DUUR1 [HOOGTE2 DUUR2] ...]  BESTAND... BESTAND1 BESTAND2 BESTANDSNAAM OPDRACHT BESTANDSSYSTEEM [VARIABELE] BESTAND|prompt INDELING Het FPSWA-protocol kan de interface niet vinden FPSWA-revisie: %x
 VAN-TOT[,VAN-TOT] VAN[K|M|G] TOT[K|M|G] FT_Init_FreeType() is mislukt Het opstarten van zowel het standaard- als het terugvalitem is mislukt.
 Aanmaken van apparaattoewijzingsboom is mislukt Terugvallend op '%s' Bestandsgrootte: %s
 Bestandssysteem '%s' kent geen inbedding Bestanden verschillen op positie %llu: 0x%x [%s], 0x%x [%s]
 Bestanden verschillen in grootte: %llu [%s], %llu [%s]
 Toegang tot bestandssysteem is onmogelijk. Bestandssysteemsoort %s Hybride MBR van GPT-APPARAAT vullen.  Opgegeven partities zullen onderdeel zijn van de hybride MBR.  Maximaal drie partities zijn toegestaan.  TYPE is een MBR-soort; + betekent dat de partitie actief is; slechts één partitie kan actief zijn. Het laden van de EFI-emulator afmaken. Eerst apparaat HINT proberen, wanneer draaiend op ARC.  Als HINT eindigt op een komma, ook subpartities proberen. Eerst apparaat HINT proberen, wanneer draaiend op BIOS.  Als HINT eindigt op een komma, ook subpartities proberen. Eerst apparaat HINT proberen, wanneer draaiend op EFI.  Als HINT eindigt op een komma, ook subpartities proberen. Eerst apparaat HINT proberen, wanneer draaiend op IEE1275.  Als HINT eindigt op een komma, ook subpartities proberen. Eerst apparaat HINT proberen wanneer directe hardwaretoegang ondersteund wordt.  Als HINT eindigt op een komma, ook subpartities proberen. Eerst apparaat HINT proberen.  Als HINT eindigt op een komma, ook subpartities proberen. Videoprobleem oplossen. %s gevonden op %s (%s)\n %s gevonden op %s\n GNU Mach gevonden: %s Hurd-module gevonden: %s Kernel van NetBSD gevonden: %s\n Gevonden achtergrond: %s\n Initiële RAM-schijf-image gevonden: %s\n Map voor kernelmodules gevonden: %s\n Kernel van FreeBSD gevonden: %s\n Linux-image gevonden: %s\n Gevonden thema: %s\n Freetype-fout %d bij laden van glyph 0x%x voor U+0x%x%s ATA-beveiligingsinstellingen bevriezen tot herstart. vrijdag G GNU GRUB  versie %s GRUB Opstartmenu GRUB weet nog niet hoe deze machine te stoppen! GRUB-emulator. GRUB-APPARAAT=PLAN9-APPARAAT Rommel in ARGP_HELP_FMT: %s Een GRUB-toetsenbordindeling genereren vanuit Linux-console één. Een PBKDF2-wachtwoord-hash genereren. Een GRUB-configuratiebestand aanmaken Een complete image (inclusief alle modules) genereren in de gekozen indeling. De CRC32-controlesom van BESTAND berekenen. Schijfcache-informatie ophalen. ATA-schijfparameters tonen/instellen GiB GiB/s HASH HINT Het systeem stoppen, zo mogelijk met APM. Stopt de computer.  Deze opdracht werkt niet met alle firmware-implementaties. N bytes in uitvoerbestand verwerken. Hallo wereld Hercules  ID IMAGE1 [IMAGE2 ...] AANKOPPELINGSPUNT IMAGE-PAD OPDRACHTEN De ZFS-inpaksleutel opgeslagen in BESTAND importeren. Onjuist virtueel apparaat: geen type bekend Een module laden. GRUB installeren op uw schijf. Installatie is afgerond. Er werden geen fouten gerapporteerd. Ongeldige terugverwijzing Ongeldige tekenklassenaam Ongeldig samengesteld teken Ongeldige opdracht: %s.
 Ongeldige inhoud van \{\} Ongeldig apparaat '%s'.
 Ongeldig schijvenaantal.
 Ongeldige voorafgaande reguliere expressie Ongeldig bereikeinde Ongeldige reguliere expressie K KERNEL ARGUMENTEN TOETS Toetsenbordtoets waarmee dit item direct gestart kan worden. KiB KiB/s Feitelijk virtueel apparaat (bestand of schijf) Verouderde parameter 'ask' wordt niet meer ondersteund. Legenda: masker/positie=rood/groen/blauw/gereserveerd Lengte van gegenereerde hash Lengte van startwaarde ('salt') DNS-servers tonen. PCI-apparaten tonen. Alle bestanden tonen. Beschikbare videomodi tonen.  Als een resolutie gegeven is, alleen overeenkomende modi tonen. De coreboot-tabellen tonen. Apparaten en bestanden tonen. Apparaten of bestanden tonen. Apparaten tonen. De bestanden in de map PAD tonen. Geheugentoewijzing geleverd door firmware tonen. Lijst van ondersteunde videomodi: Lijst van gebruikers die dit item mogen starten. Een invoerterminal tonen of selecteren. Een uitvoerterminal tonen of selecteren. De huidige variabelen tonen. De geladen lettertypes tonen. Variabelen uit omgevingsblokbestand tonen. Een 64-bit XNU-image laden. BIOS-dump laden. Een FreeBSD-omgeving laden. Een FreeBSD-kernelmodule (ELF) laden. Een FreeBSD-kernelmodule laden. Het kernel.sys-bestand van FreeDOS laden. Linux laden. NTLDR of BootMGR laden. Een NetBSD-kernelmodule (ELF) laden. Een NetBSD-kernelmodule laden. Een Plan9-kernel laden. Een XNU-extensiemap laden. Een XNU-extensiepakket laden. Een XNU-extensie laden. Een XNU-image laden. Een XNU-RAM-schijf laden.  Het zal beschikbaar zijn als 'md0'. Een dump van 'device-properties' laden. Een PXE-image laden. Een toetsenbordindeling laden. Een multiboot-2-kernel laden. Een multiboot-2-module laden. Een multiboot-kernel laden. Een multiboot-module laden. Een XNU-splash-afbeelding laden. Een image van een slapende XNU laden. EFI-emulator laden en initialiseren. Een andere boot-loader laden. Nog een configuratiebestand laden, maar alleen menu-items nemen. Nog een configuratiebestand laden zonder de context te wijzigen, maar alleen menu-items nemen. Nog een configuratiebestand laden zonder de context te wijzigen. Nog een configuratiebestand laden. Een andere payload van 'coreboot' laden. De achtergrondafbeelding voor de actieve terminal laden. Host-ACPI-tabellen laden, en tabellen opgegeven via argumenten. Een initiële RAM-schijf laden. Een kOpenBSD-RAM-schijf laden. Een FreeBSD-kernel laden. Een NetBSD-kernel laden. Een OpenBSD-kernel laden. Alleen tabellen die bestaan uit een kommagescheiden lijst laden. Hetzelfde bestand op meerdere manieren laden. Variabelen uit omgevingsblokbestand laden. De ZFS-versleutelingsleutel laden. Geladen lettertypes: Laden van GNU Mach... Laden van Linux %s... Laden van Xen %s... Laden van initiële RAM-schijf... Laden van kernel van FreeBSD %s... Laden van kernel van Illumos... Laden van de Hurd... M MAC-controle is mislukt MENU-ITEM is het nummer, de titel, of het ID van een menu-item. MODULE MODULES Stuur hulpvragen over 'xorriso' aan <bug-xorriso@gnu.org>. Een opstartbare GRUB-image maken voor CD-rom, USB-stick, harde schijf, en floppy. Een GRUB-toetsenbordindelingsbestand maken. Een opstartbare image maken van GRUB. Van een bestand een virtuele schijf maken. Partitie actief maken De BIOS-schijftoewijzingen beheren. Een argument dat verplicht of optioneel is voor een lange optie,
is dat ook voor de overeenkomstige korte optie. PCI-apparaten manipuleren. De tijd meten die OPDRACHT duurt Onvoldoende geheugen beschikbaar Geheugentype: DDR2. Geheugentype: (onbekend). Menu-itemnaam. Geen menu-item gegeven. Menu-itemsoort. MiB MiB/s Minimale Bash-achtige regelbewerking is mogelijk.  Voor het eerste woord toont TAB de mogelijke opdrachten.  Elders toont TAB de mogelijke apparaten of bestanden.  %s Minimale Emacs-achtige tekstbewerking is mogelijk.  TAB toont de mogelijke completeringen.  Druk op Ctrl-x of F10 om op te starten, Ctrl-c of F2 voor een opdrachtregel, of ESC voor het vorige menu. Ontbrekende argumenten
 Invoerbestand ontbreekt
 maandag Monochroom  Meer dan één installatie-apparaat? Meer dan één menu-item? Een versleuteld apparaat aankoppelen. Alle volumens aankoppelen die 'opstart'-vlag gezet hebben. Alles aankoppelen. Aankoppelen via UUID. Versleutelde apparaten aankoppelen. NAAM NAAM [VARIABELE] [HINTS] NUMMER AANTAL_SECONDEN Naam	Verwijzingen	Afhankelijkheden
 De eigen schijfstuurprogramma's worden gebruikt.  De firmware-interface is afgewezen. Netwerkprotocollen: Nieuwe MBR is geschreven naar '%s'
 Geen CS5536 gevonden Geen FPSWA gevonden Er zijn geen opstart-statistieken beschikbaar
 Geen opdracht gegeven.
 Geen apparaat opgegeven.
 Er zijn geen schijfcache-statistieken beschikbaar
 Er zijn geen schijven herverwezen Er is geen bekend bestandssysteem gedetecteerd Geen overeenkomsten Geen pad gegeven.
 Geen pad of apparaat gegeven.
 Geen eerdere reguliere expressie Er is geen virtueleapparatenboom beschikbaar Te weinig parameters voor de opdracht.
 Sluit nu de debugger op afstand aan. Aantal PBKDF2-iteraties beheersyteemschijfnummer ------> GRUB-/BIOS-apparaat beheersysteemfout bij openen van bestand %s: %s Optie '--' schakelt over naar de standaard opdrachtenmodus van 'xorriso'. Opties: Het gezochte valt buiten bereik: %d
 Vervanging valt buiten bereik (%d, %d)
 Een Plan9-apparaatovereenkomst aanpassen. P PARTITIE OPDRACHTEN PAD de PBKDF2-hash van uw wachtwoord is %s
 POORT POORT WAARDE [MASKER] PUBLIEKESLEUTEL-ID Een verouderde configuratie ontleden in nieuwe context Een verouderde configuratie ontleden in nieuwe context, maar alleen menu-items nemen Een verouderde configuratie ontleden in dezelfde context Een verouderde configuratie ontleden in dezelfde context, maar alleen menu-items nemen Onderdeelnummer: %s.
 Partitie %d is nu actief. 
 Partitie %s: Partitiestijl '%s' kent geen inbedding Pad: %s
 Pad: (niet beschikbaar) Voert OPDRACHTEN uit op partitie.
Gebruik 'parttool PARTITIE help' voor een lijst van beschikbare opdrachten. Een DNS-lookup uitvoeren Een IPv6-autoconfiguratie uitvoeren. Zowel directe als inverse verwijzingen uitvoeren. PiB PiB/s Planar  Een deuntje afspelen. Gebruik niet de oude titel '%s' voor GRUB_DEFAULT; gebruik of '%s' (voor versies vóór 2.00) of '%s' (voor 2.00 of later). Pool-GUID: %016llx
 Pool-GUID: (niet beschikbaar) Pool-naam: %s
 Pool-naam: (niet beschikbaar) Pool-status: actief Pool-status: vernietigd Pool-status: geëxporteerd Pool-status: niveau-2 ARC-apparaat Pool-status: potentieel actief Pool-status: gereserveerd als vervanger Pool-status: (niet beschikbaar) Pool-status: ongeïnitialiseerd Mogelijke argumenten zijn: Mogelijke opdrachten zijn: Mogelijke apparaten zijn: Mogelijke bestanden zijn: Mogelijke partities zijn: Mogelijke dingen zijn: Voortijdig einde van reguliere expressie Druk op een toets om verder te gaan... Druk op een toets om XNU te starten Druk op Enter om het geselecteerde systeem te starten, 'e' om de opdrachten te bewerken, of 'c' voor een opdrachtregel. Druk op Enter om het geselecteerde systeem te starten, 'e' om de opdrachten te bewerken, of 'c' voor een opdrachtregel.  Druk op ESC voor het vorige menu. Geheugeninformatie tonen. ZFS-informatie tonen over APPARAAT. Het ZFS-BOOTFSOBJ tonen of opslaan in VARIABELE Een blokkenlijst tonen. Een blokargument tonen en uitvoeren. Een backtrace tonen. Schijfidentiteit en -instellingen tonen. Grootten in leesbare vorm weergeven. Naar apparaatinformatie zoeken voor een gegeven pad (of apparaat met optie '-d') RAM die coreboot-tabellen bevat RAM die firmware bevat RAM-sleufnummer %d
 REGEXP TEKENREEKS ROM-image is aanwezig. Een 16-bits waarde lezen van ADRES. Een 16-bits waarde lezen uit POORT. Een 32-bits waarde lezen van ADRES. Een 32-bits waarde lezen uit POORT. Een 8-bits waarde lezen van ADRES. Een 8-bits waarde lezen uit POORT. Dit aantal bytes lezen. Herstarten is mislukt Herstarten naar instellingenmenu van firmware. Computer herstarten. Voer wachtwoord opnieuw in:  Register %x van %x:%02x.%x is %x
 Reguliere expressie is te groot Een DNS-server verwijderen Een module verwijderen. Een omgevingsvariabele verwijderen. Geheugengebieden in deze bereiken verwijderen. Een Apple .disk_label weergeven. Rapporteer gebreken in het programma aan %s;
meld fouten in de vertaling aan <vertaling@vrijschrift.org>.
 Rapporteer gebreken in het programma aan <bug-grub@gnu.org>;
meld fouten in de vertaling aan <vertaling@vrijschrift.org>. Een seriële terminal werd verzocht maar GRUB_SERIAL_COMMAND is niet gegeven.  Standaard parameters worden gebruikt. Alle verwijzingen op de standaardwaarden instellen. Apparaatinformatie ophalen. Terugkeren uit een functie. Naar de IEEE1275-prompt terugkeren. Voer 'gdb %s %d' uit, en zet ARGS.HOLD op nul.
 Typ 'go' om GRUB te hervatten. SECONDEN KORTE-NAAM KORTE-NAAM KAART ADRES [HARDWARE-ADRES] KORTE-NAAM NETWERK [INTERFACE | gw GATEWAY] GROOTTE BRON|-u UUID|-a|-b TEKENREEKS zaterdag Ingelezen waarde in variabele VARNAAM opslaan. Variabelen in omgevingsblokbestand opslaan. "Hallo wereld" melden. Apparaten op UUID zoeken.  Als VARIABELE opgegeven is, wordt de naam van het eerstgevonden apparaat daaraan toegekend. Apparaten zoeken aan hand van bestand. Apparaten zoeken aan hand van bestandssysteem-UUID. Apparaten zoeken aan hand van bestandssysteemlabel. Apparaten op bestand, label of UUID zoeken.  Als '--set' gegeven is, dan wordt het eerstgevonden apparaat toegekend aan een variabele; als geen variabelenaam gegeven is, dan wordt hiervoor 'root' gebruikt. Apparaten doorzoeken naar bestand.  Als VARIABELE opgegeven is, wordt de naam van het eerstgevonden apparaat daaraan toegekend. Apparaten op label zoeken.  Als VARIABELE opgegeven is, wordt de naam van het eerstgevonden apparaat daaraan toegekend. Sector %llu wordt reeds gebruikt door de RAID-controller '%s'; de sector wordt ontweken.  Vraag de fabrikant om geen gegevens in het MBR-gat op te slaan. Sector %llu wordt reeds gebruikt door het programma '%s'; de sector wordt ontweken.  Deze software kan in de toekomst (opstart-)problemen veroorzaken.  Vraag de auteurs om geen gegevens in het opstartspoor op te slaan. Apparaat selecteren via de positie ervan op de bus. Apparaat selecteren via ID's van producent en/of apparaat. Advanced Power Management instellen
(1=laag, ..., 254=hoog, 255=uit). Automatic Acoustic Management instellen
(0=uit, 128=stil, ..., 254=snel). OEMID van RSDP, XSDT en RSDT instellen. OEMTABLE-ID van RSDP, XSDT en RSDT instellen. OEMTABLE-revisie van RSDP, XSDT en RSDT instellen. De 'verborgen'-vlag in partitietype zetten De afsluitwaarde aan variabele toekennen. Eerstgevonden apparaat aan variabele toekennen. Een omgevingsvariabele instellen. De achtergrondkleur voor de actieve terminal instellen. Het 'creator'-veld van RSDP, XSDT en RSDT instellen. De 'creator'-revisie van RSDP, XSDT en RSDT instellen. Een debug-omgevingsvariabele instellen. Schijf in slaaptoestand zetten. Schijf in standby-toestand zetten. Positionele parameters instellen. Root-apparaat instellen. Standby-wachttijd instellen
(0=uit, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Het 'terminfo'-type van TERMINAL op TYPE instellen.
 Het standaardmenu-item voor GRUB instellen, alleen voor de volgende start. Het standaardmenu-item voor GRUB instellen. Het adres van de seriële poort instellen. De pariteit van de seriële poort instellen. De snelheid van de seriële poort instellen. De stopbits van de seriële poort instellen. De woordlengte van de seriële poort instellen. De seriële eenheid instellen. Images instellen om op te starten vanaf APPARAAT.

Dit programma gebruikt u normaliter niet direct.  Gebruik 'grub-install'. Gebruikerswachtwoord instellen (met PBKDF2).  Gebruikerswachtwoord instellen (platte tekst). Afgeraden en onveilig. Variabele met gebruikersinvoer instellen. Variabelen instellen. Instellen van partitietype op 0x%x
 Positionele parameters opschuiven. ACPI-informatie tonen. APM-informatie tonen. Inhoud van CBMEM-console tonen. Een hulptekst tonen. Een lijst met uitgebreidere informatie tonen. De inhoud van BESTAND in hexadecimaal tonen. Geladen modules tonen. Inhoud van geheugen tonen. Onbewerkte inhoud van ATA IDENTIFY-sector tonen. Onbewerkte inhoud van bestand of geheugen tonen. De inhoud van een bestand tonen. De huidige verwijzingen tonen. Deze tekst tonen. Alleen de versie-1-tabellen tonen. Alleen de versie-2- en versie-3-tabellen tonen. Uitschakeling is mislukt Een 'initrd'-opdracht van grub-legacy simuleren Een 'kernel'-opdracht van grub-legacy simuleren Een 'modulenounzip'-opdracht van grub-legacy simuleren Een 'password'-opdracht van grub-legacy simuleren Een 'password'-opdracht van grub-legacy in menu-itemmodus simuleren N bytes in uitvoerbestand overslaan. Dit aantal bytes vanaf begin van bestand overslaan. Sleuf %d is geopend
 Enige Hurd-dingen zijn gevonden, maar niet genoeg om te kunnen starten. Bestandsnaam opgeven. Te gebruiken hash. Te laden lettertypebestanden. Grootte opgeven voor elke leesoperatie Te gebruiken aantal invoerbestanden. Snelheid: %s
 GDB-stub starten op de gegeven poort GDB-stub stoppen Overeenkomende component (met dit NUMMER) opslaan in VARNAAM. Gelukt zondag Gewone uitvoer onderdrukken (maar waarschuwingen niet). Naar originele schijfstuurprogramma's overschakelen. Als er geen modules gegeven zijn, dan wordt de standaardset (pata,ahci,usbms,ohci,uhci,ehci) gebruikt. Syntaxfout in regelnummer %u
 Er zijn syntaxfouten gevonden in het aangemaakte GRUB-configuratiebestand.
Verzeker u ervan dat er geen fouten zitten in het bestand /etc/default/grub
noch in de bestanden in /etc/grub.d/.  Rapporteer anders een fout, met het
bestand %s als bijlage. I/O-ruimte van SMBus-controller is op 0x%x
 T DOEL Doelindeling is niet gegeven (gebruik optie '-O'). De terminal heeft de gegeven afmetingen. De terminal is alleen-ASCII [standaard]. De terminal is logisch-geordende UTF-8. De terminal is visueel-geordende UTF-8. USB-ondersteuning testen. Een bit testen op positie BYTE:BIT in CMOS. Leessnelheid van bestanden testen. Controleren of reguliere expressie REGEXP overeenkomt met TEKENREEKS. Video-subsysteem testen in modus BxH. Video-subsysteem testen. Alleen tekst  De bestanden zijn identiek.
 Over %d seconden wordt het geselecteerde item automatisch gestart. Dit item kan gestart worden door elke gebruiker. Dit vereist het instellen van GRUB_DEFAULT=saved in %s/default/grub.\n donderdag TiB TiB/s Gereedschap om omgevingsblok mee te bewerken. Totale flash-grootte: %d B.
 Backslash aan het eind Een 64-bit UUID geschikt maken voor XNU.  Als optie '-l' gegeven is, dan alleen in kleine letters zoals 'blkid' doet. Een bestandsnaam uit het systeem omzetten naar eentje voor GRUB. Vertaalt de tekenreeks met de huidige instellingen. Typ '%s --help' of '%s --usage' voor meer informatie.
 dinsdag GEBRUIKERSNAAM WACHTWOORD GEBRUIKERSNAAM PBKDF2-WACHTWOORD GEBRUIKERSNAAM[,GEBRUIKERSNAAM...] UTF-8 Kan geen pijp aanmaken: %s Kan uw platform niet achterhalen.  Gebruik optie '--target'. Kan geen nieuw proces starten: %s Kan gegevensstroom uit %s niet openen: %s Kan pool-status niet verkrijgen Gegevens decomprimeren. Bestand decomprimeren vóór berekenen van controlesom. Onbekend adrestype %d
 Opdracht '%s' is onbekend.
 Onbekende compressiespecificatie %s (onbekende codering) Onbekend extra argument '%s'. Onbekende 'gsub'-lettertypefunctie 0x%x (%s)
 Onbekende scancode 0x%02x
 Onbekende toetsnaam %s
 Onbekende systeemfout (onbekende videomodus)  Onbekend virtueel apparaattype: %s
 De EFI-emulator de-activeren. Ongepaarde ( of \( Ongepaarde ) of \) Ongepaarde [ of [^ Ongepaarde \{ Onbekende optie '%s'\n Onbekende pool-status Niet-ondersteund adrestype %d
 Niet-ondersteunde dekkingsspecificatie: %d
 Niet-ondersteund hardware-adrestype %d
 Niet-ondersteunde image-indeling Niet-ondersteunde vervangingsvlag: 0x%x
 Niet-ondersteunde vervangingsspecificatie: %d
 Niet-ondersteund vervangingstype: %d
 Gebruik:  Gebruik:  %s -o UITVOERBESTAND CKBMAP-ARGUMENTEN...\n Gebruik:  %s APPARAAT
 Gebruik:  %s [INVOERBESTAND [UITVOERBESTAND]]
 Gebruik:  %s [OPTIE] MENU-ITEM\n Gebruik:  %s [OPTIE]\n Een CD-ROM als root-apparaat gebruiken. GDB-debugger op afstand gebruiken in plaats van DDB. Deze TEKENREEKS gebruiken als body van menu-item. Het bij compilatie aangegeven root-apparaat gebruiken. Een seriële console gebruiken. Gebruik de %C- en %C-toetsen om een item te selecteren. VAR INTERFACE NUMMER OMSCHRIJVING VARNAAM Uitgebreid aftellen. Een losse vingerafdruk controleren. Versie %u.%u
32-bit CS = 0x%x, lengte = 0x%x, positie = 0x%x
16-bit CS = 0x%x, lengte = 0x%x
DS = 0x%x, lengte = 0x%x
 Virtueel apparaat is beperkt functioneel Virtueel apparaat is in fouttoestand Virtueel apparaat is offline Virtueel apparaat is online Virtueel apparaat is verwijderd WAARSCHUWING: er zal geen console beschikbaar zijn voor het beheersysteem WAARSCHUWING: er werd geen platformspecifieke installatie uitgevoerd WAARSCHUWING: niet-ondersteunde lettertypefunctieparameters: %x
 BREEDTExHOOGTE Een opgegeven aantal seconden wachten. Op een toetsaanslag wachten na elke uitvoerregel. Waarschuwing: Waarschuwing: ongeldige achtergrondkleur '%s'
 Waarschuwing: ongeldige voorgrondkleur '%s'
 Waarschuwing: syntaxfout (ontbrekende '/') in '%s'
 woensdag Windows NT/2000/XP (lader) Windows Vista/7 (lader) Deze 16-bits WAARDE schrijven naar ADRES. Deze 16-bits WAARDE schrijven naar POORT. Deze 32-bits WAARDE schrijven naar ADRES. Deze 32-bits WAARDE schrijven naar POORT. Deze 8-bits WAARDE schrijven naar ADRES. Deze 8-bits WAARDE schrijven naar POORT. Aantal geschreven SPD-bytes: %d B.
 Xen-hypervisor, versie %s YUV  U dient ten minste één opdracht te geven.
 U zult 'SystemPartition' en 'OSLoader' met de hand moeten instellen. Uw inbeddingsruimte is ongebruikelijk klein; core.img zal er niet in passen. Uw 'xorriso' ondersteunt '--grub2-boot-info' niet. Sommige functies zijn uitgeschakeld. Gebruik xorriso-1.2.9 of nieuwer. Uw 'xorriso' ondersteunt '--grub2-boot-info' niet. Uw core-image is te groot. Opstarten als schijf is uitgeschakeld. Gebruik xorriso-1.2.9 of nieuwer. [--append|--remove] [TERMINAL1 [TERMINAL2 ...]] [--force|--bpb] BESTAND [--md5] WACHTWOORD [BESTAND] [--no-mem-option] [--type=TYPE] BESTAND [ARGUMENT...] [-1|-2] [--exclude=TABEL1,TABEL2|--load-only=TABEL1,TABEL2] BESTAND1 [BESTAND2] [...] [-c BESTAND [-p VOORVOEGSEL]] [BESTAND1 [BESTAND2 ...]] [-d] APPARAATNAAM BESTAND [-e|-n] TEKENREEKS [-f BESTAND] [-f BESTAND] VARIABELENAAM... [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT]...] NAAM [-h|-p|-r] [BESTAND] [-l] GRUB-UUID [VARNAAM] [-l|-h|-a] [BESTAND ...] [-m (stretch|normal)] BESTAND [-s POSITIE] [-d APPARAAT] [-s POSITIE] [-d APPARAAT] [-v VARIABELE] REGISTER[=WAARDE[:MASKER]] [-s GROOTTE] BESTANDSNAAM [ADRES|comNUMMER][,SNELHEID] [ARGUMENT] [KAART [HARDWARE-ADRES]] [KAART] [OMGEVINGSVARIABELE=WAARDE] [OMGEVINGSVARIABELE] [TOETSAANSLAG1] [TOETSAANSLAG2 ...] [MODULE1 MODULE2 ...] [NUMMER:]VARNAAM [NUMMER] [OPTIE...] [OPTIE...] [OPTIES] SCHIJF [OPTIES] BESTAND|APPARAAT [OPTIES] LETTERTYPEBESTANDEN [OPTIE...] [MODULES] [OPTIE...] [PAD|APPARAAT] [OPTIES] [PAD] [PATROON ...] [GEBRUIKERSLIJST] [WAARDE...] [BxH[xD]] [BxH] [[-a|-u|-v] [-g BxH] TERMINAL [TYPE]] [[jaar-]maand-dag] [uur:minuut[:seconde]] [BUS]:[SLEUF][.FUNC] [PRODUCENT]:[APPARAAT] het 'cryptomount'-commando is mislukt: %s het 'loopback'-commando is mislukt: %s 'obppath' is niet gevonden in de omvattende mappen van '%s'; geen IEEE1275-naamsherleiding er werd een waarde gegeven voor argument '%s' terwijl het geen waarde vereist toegang is geweigerd een 'NOTE'-segment toevoegen voor CHRP IEEE1275 adres adres is niet gevonden poging tot lezen of schrijven buiten schijf '%s' poging tot lezen of schrijven buiten partitie poging tot lezen voorbij einde van bestand poging tot springen buiten het bestand poging om de core-image '%s' uit GRUB te lezen poging om de core-image '%s' uit GRUB opnieuw te lezen beschikbare RAM Beschikbare indelingen zijn: onjuiste vingerafdruk basisadres = 0x%llx, lengte = 0x%llx, %s
 basisadres = 0x%llx, lengte = 0x%llx, type = 0x%x
 bitkaartbestand '%s' heeft een niet-ondersteunde opmaak blocklist BESTAND bloklijsten zijn ongeldig blokgrootte is niet deelbaar door 512 kan niet nul lussen verbreken kan bestandssysteem op %s niet achterhalen kan opdracht '%s' niet vinden kan versleuteld volumen '%s' niet aankoppelen: %s kan '%s' niet openen: %s kan bestand %s niet openen, index %d: fout %d kan bloklijsten niet verkrijgen kan bloklijsten niet verkrijgen: %s de kernel-image kan niet worden gecomprimeerd Kan geen GRUB-schijf vinden voor %s.  Controleer uw 'device.map'. kan geen apparaat vinden voor %s (is /dev wel aangekoppeld?) kan de translator-opdrachtregel voor pad '%s' niet verkrijgen: %s kan bestand '%s' op beheersysteem niet openen: %s kan '%s' niet openen: %s kan '%s' niet foutloos lezen kan '%s' niet lezen: %s kan bestand %s niet naar %s hernoemen kan de originele map niet herstellen kan niet springen in '%s': %s kan status van '%s' niet opvragen: %s kan niet naar CD-rom schrijven kan niet schrijven naar '%s': %s kan niet naar standaarduitvoer schrijven: %s kaart is niet gevonden cat BESTAND controle van controlesom is mislukt te gebruiken soort compressie voor core-image cmp BESTAND DEZE comNUMMER[,SNELHEID] vergelijking is mislukt op positie %llu verbinding is geweigerd verbindingstijdslimiet is overschreden lettertype omzetten naar vet de core-image is te groot (0x%x > 0x%x) Versie van core.img komt niet overeen kan %s niet automatisch configureren kan een benodigd deelapparaat van een multi-apparaat-bestandssysteem niet vinden kan GELI-consument niet vinden kan GEOM 'part'-klasse niet vinden kan GEOM niet openen kan ELI-metagegevens niet lezen kan UUID niet verkrijgen kan GELI-UUID niet verkrijgen kan geen willekeurige gegevens verkrijgen voor startwaarde ('salt') kan netwerkpakketje niet verzenden cp BESTAND DEZE crc BESTAND versleutelingsfout, nummer %d cygwin_conv_path() is mislukt de apparaattoewijzingstabel verwijderen als deze reeds bestaat doel is niet bereikbaar aantal apparaten overschrijdt limiet hinting uitschakelen schijf '%s' is niet gevonden schijf bestaat niet; teruggevallen op partitie-apparaat %s te gebruiken schijfmodule ('biosdisk' of 'native'); deze optie is alleen beschikbaar op een BIOS-doel de grootte van diskboot.img moet %u bytes zijn niet naar bestandssystemen zoeken op APPARAAT component van domeinnaam is te lang LED-toestand niet bijwerken voltooid BESTAND inbedden als een vroege configuratie BESTAND inbedden als publieke sleutel voor vingerafdrukcontrole inbedding is niet mogelijk, maar dit is wel vereist bij RAID- en LVM-installatie inbedding is niet mogelijk, maar dit is wel vereist bij installatie over meerdere schijven ARCS-opstart inschakelen (big-endian MIPS-machines, meest SGI) -- schakelt HFS+, APM, sparc64 en opstarten als schijf-image voor i386-pc uit SPARC-opstart inschakelen -- schakelt HFS+, APM, ARCS en opstarten als schijf-image voor i386-pc uit Enter: starten, 'e': opties, 'c': opdrachtregel omgevingsblok is te klein fout: %s.
 GRUB-images zoeken onder MAP/%s in plaats van de map %s kan canoniek pad van '%s' niet achterhalen lezen van sector 0x%llx van '%s' is mislukt lezen van wachtwoord is mislukt schrijven van sector 0x%llx naar '%s' is mislukt onwaar beschadigde RAM (BadRAM) bestand '%s' is niet gevonden bestandsnaam werd verwacht bestandsnaam of tempo plus tonen werden verwacht bestandssysteem '%s' ondersteunt geen labels bestandssysteem '%s' ondersteunt geen bloklijsten de firmware-image is te groot autohinting afdwingen vier argumenten werden verwacht fwstart.img is niet de bekend-goede versie; doorgaan is op eigen risico een image in de gegeven indeling genereren een korte gebruikssamenvatting tonen deze hulptekst tonen gegeven argument is een systeemapparaat, niet een pad 'grub-mkimage' is gecompileerd zonder ondersteuning voor XZ grub> dit aantal seconden pauzeren (standaard 3600) hex BESTAND voorgebakken bitkaarten negeren onjuiste opgave van terminalafmetingen GRUB-images installeren onder MAP/%s in plaats van de map %s ook installeren als er problemen gevonden worden ongeldig PBKDF2-wachtwoord ongeldig architectuur-afhankelijk magisch getal in ELF-bestand ongeldig architectuur-onafhankelijk magisch getal in ELF-bestand ongeldige blokgrootte ongeldige kleurindicatie '%s' ongeldig omgevingsblok ongeldige bestandsnaam '%s' ongeldig lettertypebereik ongeldige regelopmaak: %s ongeldige parameter %s ongeldige sprongwaarde %lld ongeldige variabelenaam '%s' ongeldige specificatie '%s' van videomodus ioctl(GET_ARRAY_INFO)-fout: %s ioctl(GET_DISK_INFO)-fout: %s ioctl(RAID_VERSION)-fout: %s de kernel-image is te groot (0x%x > 0x%x) Netwerkadressen tonen Netwerkkaarten tonen Netwerkroutes tonen ls PAD LZOP-bestand is beschadigd de schijf ook opstartbaar maken als floppy (standaard voor fdX-apparaten); kan falen op sommige BIOS'en ontbrekend '%c'-symbool verplichte optie voor '%s' ontbreekt module '%s' is niet geladen module is niet geladen naam een image en een aankoppelingspunt zijn vereist geen APM gevonden geen DHCP-info gevonden DHCP-optie %d is niet gevonden geen DHCP-opties gevonden geen DNS-record gevonden geen DNS-antwoord ontvangen geen DNS-servers geconfigureerd geen '/' in canonieke bestandsnaam geen opdracht opgegeven er is geen onsleutelingssleutel beschikbaar geen netwerkkaart gevonden geen server opgegeven die partitie bestaat niet geen geschikte videomodus gevonden geen symbolentabel geen terminal opgegeven de core-image bevat geen eindteken niet-sector-uitgelijnde gegevens gevonden in het core-bestand is geen map is geen primaire partitie is geen normaal bestand valt niet binnen een functie één argument werd verwacht Andere software gebruikt het inbeddingsgebied en er is niet genoeg ruimte voor 'core.img'.  Zulke software probeert meestal om gegevens op te slaan op een manier die niet gedetecteerd wordt.  We raden u aan om dit nader te onderzoeken. onvoldoende geheugen beschikbaar een gegenereerde image uitvoeren naar BESTAND [standaard is standaarduitvoer] er moet een uitvoerbestand gegeven worden gegenereerd configuratiebestand uitvoeren naar BESTAND [standaard is standaarduitvoer] overloop is gedetecteerd de wachtwoorden komen niet overeen een 'bootp'-autoconfiguratie uitvoeren fysiek volumen %s is niet gevonden de gegeven MODULES vooraf laden voortijdig einde van bestand voortijdig einde van bestand %s CapsLock-toets indrukken Insert-toets indrukken NumLock-toets indrukken ScrollLock-toets indrukken SysRq-toets indrukken linker Alt indrukken linker Ctrl indrukken linker Shift indrukken rechter Alt indrukken rechter Ctrl indrukken rechter Shift indrukken programmaversie tonen programmaversie tonen en stoppen deze hulptekst tonen en stoppen uitgebreide meldingen tonen publieke sleutel %08x is niet gevonden leesfout op positie %llu: %s tekst lezen uit BESTAND relatieve submap op netwerkserver relocatie 0x%x is nog niet geïmplenteerd gereserveerde RAM een DHCP-optie ophalen en opslaan in VAR; als VAR '-' is, dan de waarde tonen hoofdmap van TFTP-server lus in de routering gedetecteerd ROM-images opslaan in MAP [optioneel] uitvoer opslaan in BESTAND [vereist] index van sublettertype seriële poort '%s' is niet gevonden set [NAAM=WAARDE ...] CapsLock-modus instellen stokken van lettertype instellen staarten van lettertype instellen naam van lettertypefamilie instellen lettertypebereik instellen grootte van lettertype instellen invoerbestandsnaam voor 32-bit deel instellen invoerbestandsnaam voor 64-bit deel instellen invoerbestandsnaam instellen [standaard is standaardinvoer] Insert-toetsmodus instellen NumLock-modus instellen uitvoerbestandsnaam instellen (standaard is standaarduitvoer) Pause-toetsmodus instellen de voorvoegmap instellen [standaard %s] ScrollLock-modus instellen de programmanaam instellen grootte stretch (=uitgerekt) | normal (=normaal) symbool '%s' is niet gevonden tijdelijk terminal '%s' is niet gevonden of wordt niet behandeld door 'terminfo' terminal '%s' is niet gevonden het argument '%s' vereist een geheel getal het item '%s' in 'device.map' is ongeldig; het wordt genegeerd; corrigeer of verwijder uw 'device.map' apparaatnaam '%s' in 'device.map' is onjuist; daarvoor in de plaats wordt %s gebruikt; gebruik de vorm [hfc]d[0-9]* (bijvoorbeeld 'hd0' of 'cd') de eerste sector van het core-bestand is niet sector-uitgelijnd het installatie-apparaat is verwijderbaar; deze optie is alleen beschikbaar op EFI partitietype 0x%x is ongeldig de sectoren van het core-bestand zijn te gefragmenteerd de grootte van '%s' is niet %u de grootte van '%s' is te groot de grootte van '%s' is te klein dit ELF-bestand is niet van het juiste type dit GPT-partitielabel bevat geen BIOS-opstartpartitie; inbedding is niet mogelijk deze LDM heeft geen inbeddende partitie; inbedding is niet mogelijk dit MSDOS-achtige partitielabel heeft geen ruimte na de MBR; inbedding is niet mogelijk drie argumenten werden verwacht tijdslimiet is overschreden tijdens openen van '%s' tijdslimiet is overschreden tijdens lezen van '%s' tijdslimiet is overschreden: kan hardware-adres niet herleiden te diepe nesting van symbolische koppelingen translator '%s' voor pad '%s' bevat meerdere argumenten die geen opties zijn, in elk geval '%s' en '%s' translator '%s' voor pad '%s' bevat alleen opties, geen apparaatcomponent de translator-opdrachtregel is leeg voor pad '%s' twee argumenten werden verwacht type bestandssysteem in %s wordt niet herkend; veiligheidscontrole kan niet worden uitgevoerd onuitgelijnde apparaatgrootte onverwacht einde van bestand onbekend argument '%s' onbekende compressie %d
 onbekend apparaattype %s
 onbekend bestandssysteem onbekend soort RAID-apparaat '%s' Onbekende fout in reguliere expressie onbekende doelindeling %s
 onbekend 'terminfo'-type '%s' onbekende DHCP-optie-opmaakspecificatie '%s' onbekend netwerkadres '%s' onbekende netwerkinterface '%s' niet-herkend getal niet-herleidbaar adres %s unset [NAAM ...] niet-ondersteunde HTTP-fout %d: %s niet-ondersteund HTTP-antwoord niet-ondersteunde RAID-versie: %d.%d niet-ondersteunde GZIP-indeling niet-ondersteunde pariteit van seriële poort niet-ondersteunde snelheid van seriële poort niet-ondersteund aantal stopbits van seriële poort niet-ondersteunde woordlengte van seriële poort KLEUR gebruiken voor achtergrond KLEUR gebruiken voor label KLEUR gebruiken voor label-achtergrond KLEUR gebruiken voor tekst deze MAP gebruiken als hoofdmap van EFI-systeempartitie dit BESTAND gebruiken als lettertype (PF2) dit BESTAND gebruiken als lettertype voor label BESTAND als opstart-image gebruiken [standaard %s] BESTAND als core-image gebruiken [standaard %s] BESTAND als apparaattoewijzingstabel gebruiken [standaard %s] dit BESTAND gebruiken als 'xorriso' [optioneel] de GRUB-bestanden uit MAP gebruiken [standaard %s] TEKENREEKS gebruiken voor productnaam TEKENREEKS gebruiken voor productversie ID-bestand gebruiken zelfs als UUID beschikbaar is images en modules onder MAP gebruiken [standaard %s/<platform>] variabele '%s' is niet ingesteld visueel-geordende UTF-8 wachten tot een debugger zich aanhecht zal niet verder gaan met bloklijsten foutief magisch getal of verkeerde versie van ELI xnu_uuid APPARAAT XZ-bestand is beschadigd of gebruikt niet-ondersteunde blokopties kan dit adres niet verwijderen u dient eerst de kernel te laden uw BIOS-opstartpartitie is te klein; inbedding is niet mogelijk Uw core.img is ongebruikelijk groot.  Het zal niet in de inbeddingsruimte passen. Uw inbeddingsgebied is ongebruikelijk klein; core.img zal er niet in passen.                                                                                                      boot/grub/locale/pa.mo                                                                              0000600 0001750 0001750 00000177526 13417732100 0013644 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                              w  )      7  #   7      7     7     7  $    8     %8     98     @8     V8     c8     g8     v8     8  !   8     8     8     8     8     9     9  
   ?9  	   J9     T9  ,   p9  ,   9  '   9  -   9       :  (   A:     j:     :     :     :     :  "   :     :     :  7   ;     9;  1   B;     t;  %   ;  '   ;  %   ;  '   <     /<     1<     F<     [<     `<     r<     ~<     <     <     <     <     <     <     <     =     =     .=  -   F=  !   t=     =     =     =  #   =      >     >     7>     N>     T>     ]>     t>     >     >     >     >     >     ?     ?     '?     >?     C?     I?  %   X?     ~?     ?     ?     ?     ?     ?     @     @  3   0@     d@  	   v@     @     @     @     @     @     @     A     !A  !   (A  ,   JA     wA     A     A  	   A  !   A     A     A  $   A     B     .B     @B     [B     wB  
   B  
   B     B  1   B     B     B     C     !C  >   =C     |C     C     C     C     C  +   C     (D     DD     bD     yD  $   D     D     D  '   D  9   E     UE     nE     E     E     E  
   E     E     E     E     F  "   F     AF     RF  (   cF     F     F     F     F  "   F  0   F     #G     (G     7G  7   FG     ~G     G     G     G     G     G     G     G     G     H     H  *   4H  +   _H     H     H     H     H     H     H     	I     I     6I  #   OI     sI     I  )   I     I     I     I  /   I     "J     9J     XJ     tJ     J     J     J  '   J  P   J     )K  	   5K     ?K     BK     aK  +   uK     K     K  )   K     K     L     *L     @L     UL     gL     L     L  -   L     L     L     L     M     M     +M     BM  %   PM     vM  )   M  !   M  "   M     N      N  +   7N     cN     zN     N     N     N     N     N     N  M   O  2   PO     O     O     O  3   O  $   O  +   !P     MP     [P     pP     P     P     P     P     P     P     P  !   Q     <Q     RQ     rQ     Q     Q     Q     Q     Q     Q     Q     R  
   'R     2R     AR     WR     \R     tR     xR     R     R     R     R     R  #   R     S     <S     YS     bS      yS     S      S     S  "   S  %   
T     0T     JT     ST     fT  #   kT     T     T     T  	   T     T  )   T     T     U     U     #U     :U     IU     `U     sU     U     U     U     U     U     U     V     (V     EV  g   aV     V  "   V  '    W     (W     BW     PW     fW     W     W     W     W     W     W     
X     %X     6X  -   VX     X  "   X  )   X     X     X     Y     Y     Y     3Y     :Y     CY     VY  $   pY  %   Y  )   Y  >   Y  D   $Z  !   iZ  )   Z     Z  )   Z  ,   Z     )[     I[     b[     }[  E   [  A   [  )   \     @\     U\  :   r\     \     \     \     \     ]  0   ]     M]     b]  &   x]     ]     ]     ]     ]  )   ^     0^  -   @^     n^     ~^     ^  '   ^  "   ^     ^     ^     ^     _     _     1_  
   G_     R_  %   l_     _  *   _  0   _     _     _     `     "`     6`     <`  !   V`     x`     `  $   `     `     `     `     a     +a     @a      Ta     ua     a     a     a     a     a  )   a     b     b     2b     Rb     gb     {b     b     b  m   b     c     3c     Mc     gc     c     c  '   c     c  	   c     c     c     d     4d     Pd     kd     d  *   d  ?   d  /   d     &e     ;e  .   Qe  O   e  )   e     e     f  	   f     )f  5   Gf     }f     f     f     f     f     f     f     f     g     g     2g     Cg     Ig  	   Vg     `g     og     g     g     g     g     g     g  
   g  
   g  	   g     	h  !   h  )   1h     [h     oh     h     h     h  -   h     h     h  (   h  1   i     Pi      _i     i  %   i     i  &   i      i  7   j  .   Rj     j     j     j     j     j  %   k     )k     @k     Yk     xk     k     k     k     k     k     k     k     l     !l     4l     Ol     ]l     fl     l  &   l     l     l     l  ;   m  &   =m     dm     {m  (   m     m     m     m     m     m     m  '   n  *   6n     an     {n     n     n     n  -   n     o  $   	o     .o  "   7o  %   Zo     o     o     o     o     o     o  %   
p     0p     Op     mp     p     p     p     p     p     p     p     	q     q     )q     Aq     ]q     oq     q     q     q     q     q     q     r     #r     1r     Or     dr  !   zr     r     r     r     r     r     s     s     3s     ?s     Ns     ^s     os     s     s     s  &   s     s     s     t      t     >t     Rt     gt     yt     t     t     t     t     t     t     t     t  	   u     u     3u     Qu     ou     u     u     u     u     u     u     u     v     *v     >v     Ov     ov     v  (   v  #   v     v     
w  !   w    <w  6   x  N   %y  +   ty     y  Y   y  .   z     Ez  ,   Sz     z     z     z  5   z      z  ?   z  0   >{  +   o{     {  !   {  *   {  j   {     j|     ||      |  V   |  U   }  R   e}  `   }  0   ~  O   J~  )   ~  )   ~     ~     	       E   -     s       D          1          V   =  `     V     `   L       9     2             !     3     ?     _     q  (             ̂       6     <   (     e  +     [     Q     <   Y  6     6   ̈́  `     9   e  <        ܅             8   	  O   B  >     ?   ц  =     I   O  6     K   Ї       /   5     e  	   j     t  X     R   ܈  N   /  /   ~  /     )   މ  2     /   ;  7   k       )   +     U  9   l  3     H   ڋ  5   #  &   Y  >     >          !     h   -       	     .     	   ۍ  S     )   9      c  @     "   Ŏ  "     1     9   =  9   w       
         ͏  F        5     G  =   X  %     ]     %     <   @  3   }  I     ,     ^   (  D     V   ̒  6   #  Q   Z  Q     8     ;   7  S   s     ǔ  H   J  G        ە       E        <     O  4   d  "     +     (          "   0  j   S  -     -     &     C   A  R     a   ؘ     :     G     ^  7   m               љ                         5  !   G  '   i       f     J     M   b  ,     9   ݛ  /     (   G  '   p  3     .   ̜  )     N   %  (   t       t        2  #   N  #   r  }          3   +  ;   _  9     M   ՟  	   #     -  y   2          b     |                 a   ɡ  /   +  P   [  i     3         J     k  *          /   ԣ            a     :     #     -   ޤ  -     9   :  @   t  #     e   ٥  >   ?  i   ~  O     R   8  8     :   ħ  o     7   o  %     &   ͨ  .     )   #  '   M  9   u  7          m     @     F   S            ^   A  o     $     H   5  H   ~  ;   ǭ  E     *   I     t       D     J   ߮  I   *  9   t  :     &     8     C   I  ,             Ͱ  E     A   1  ?   s       '   ͱ  ?     	   5     ?     W     [  ,   m  D     "   ߲  0     7   3  X   k  U   ĳ  F         a  4     R     I   
  S   T       S     3     ;   G       %     	     H   Ķ               $     >  $   M  I   r          ͷ       &        *  .   C  '   r  .     -   ɸ  1     /   )  -   Y  #     )     ,   չ  Q     K   T      6     V   ܻ  g   3  7        Ӽ  *     F     F   S  E     3     7     9   L  (     C     "     D     g   [  =   ÿ  I     Z   K  /     Q        (     8     E     Z     a       3     N     V     b   u  w        P  @     ]     N   v  M     ]     Q   q  G     S     0   _  w          [     /     6   #     Z  V     "   C  *   f  ,     2     m     <   _  8     c     6   9  5   p  ,     ?     X     -   l  ]     -     #   &  *   J  e   u  I        %     2  =   B       0     6          :        T       W     l   C       "                    :     M   S  :     )     k     0   r  (     ;     (     ,   1  *   ^  A     %     %     %        =  9   W       0     &     $     &        F  :   b  5          "          @     3     9     9   ;  9   u       @               !   *     L  F   k  F     E     3   ?     s  g   x  s     /   T            .     O     )   6     `                 :                   *  "   H     k                                                            +     @     V     p     w       
     
     	          !     )               )   1     [  ,   `  `          &     1   ,  :   ^       ]     E        L  I     e      Z     y     t   [  L     ?     Y   ]  F     T     j   S  D     F     B   J  )          6               ?     5   V  3     9     4     J   /     z       D     )     X      C   Y  &     +          [     4          I   (     r  @     	          +     .     Y   D  f     F     -   L  F   z  <     *     d   )       J          ]     Z   F  #     %           -     %   :  +   `  8     %     $     #        4  +   <  +   h  O     0     	     S         s  4     6     Y      1   Z  V     3     <     Z   T  /     E     )   %  <   O  &     F     "     =     0   [  H     7     0     %   >  #   d  $     '                    &   %     L     j  &     /     M     D   .  ?   s       =     #        ,  )   A  0   k        0     (     +     6   C     z       1          4     9     9   J  7          0     -     )   (  -   R  ,     #     9             +  7   <  1   t  F     `     S   N  8          d                                    `  d  G  g  M  7  Y   
      w   1   '   ,  z  )                o       u  /                  M        "               H                                         /               #                     .     &          >     U         ^            2       c       Z       Z           P        b           ?       a   W  ;  (                  	       T             d    z   K  $       G         g   	           )  k             s   <  H     B  A   V      L           @   x   4          V           !  F                        Y            "         =  #             R   %           R    U  Q              y      ~                 U    D  j                 s             H                                      5                             [          &           o      C                  m  $      7               O         C      e        K         B           o      4              ^                      3  S     q         F          b  v        %                     6  w      I      W    k     }           x              q  t  $   #          _  ?        N       e  \               .    1            N  Q    2                         r                 \  F  '  w    k         K  m                 C  5  q          _         I              7                       u  j          m       y  P  S             	   |      :         A         ^   E       ]     *                _     2           l        1                                   *   O    ;   P   M       d                 I         h  N       /      :         )                                      *  p  ]          "        {  X      L                    |                         9                    n     @  J   
      ~    r  &  i                        R                              Q                   D  {   p                  !   Y  h     >          t   J          X      e           A  D   i    -  +    8                  x  \                                       ]  s     J    @            c       T        [  l         n   ,         {  b   r               >      <                  8  a  8   v   B   :            `                  4            =     g  3    z    -   u           i      0   <  '  X      5              }                  l              E                  }              +   `           (           y               f     W   c      -  ;  f                      p  
         S           L    V     v  a                   .  (              6   h           t      [                             0     E              f  +  !                 ~           9            =   6    T                    O  ?      n                            Z  0    ,                  3                                 G   9                    |       j                 %                      total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID version: %u.%u
   Failed to initialize video adapter   No info available   or:   - Total size unknown  [OPTION...] %ds %ds remaining. %s does not support UUIDs %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen hypervisor %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: option '%c%s' doesn't allow an argument
 %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option requires an argument -- '%c'
 %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 > ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ASCII Active input terminals: Active output terminals: Adapter `%s':
 Advanced options for %s Advanced options for %s (with Xen hypervisor) Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Available input terminals: Available output terminals: BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Booting `%s' Booting a command list Bootpath: %s
 Bootpath: unavailable
 CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check if CPU supports 64-bit (long) mode (default). Clear the screen. Commands: Compare file `%s' with `%s':
 Compare two files. Compute or check hash checksum. Configure serial port. Continue loops Couldn't load sha256 Couldn't load sha512 DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Define a menu entry. Define a submenu. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Display FPSWA version. Display SMART health status. Display a line of text. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. ENVVAR ENVVAR [ENVVAR] ... ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d seconds 
 Enter ZFS password:  Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FORMAT FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Falling back to `%s' File system `%s' doesn't support embedding Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found linux image: %s\n Found theme: %s\n Freeze ATA security settings until reset. Friday GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUBDEVICE=PLAN9DEVICE Generate PBKDF2 password hash. Generate a grub config file Get disk cache info. Get/set ATA disk parameters. HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Invalid character class name Invalid command %s.
 Invalid device `%s'.
 Invalid disk count.
 Invalid range end Invalid regular expression KERNEL ARGS KEYBOARD_KEY Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List PCI devices. List all files. List devices and files. List devices or files. List devices. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load Linux. Load NTLDR or BootMGR. Load Plan9 kernel. Load XNU image. Load a keyboard layout. Load another boot loader. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load initrd. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... MAC verification failed MODULE MODULES Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Memory exhausted Menu entry identifier. Menu entry not specified. Menu entry type. Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NUM NUMBER_OF_SECONDS Network protocols: New MBR is written to `%s'
 No FPSWA found No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Options: PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] Partition %s: Path: %s
 Path: unavailable Perform both direct and reverse mappings. Planar  Play a tune. Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: unavailable Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Print a block list. Print drive identity and settings. Print sizes in a human readable format. RAM holding firmware code REGEXP STRING ROM image is present. Read 16-bit value from PORT. Read 32-bit value from PORT. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot the computer. Reenter password:  Regular expression too big Remove a module. Remove an environment variable. Remove any memory regions in specified range. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Reset all mappings to the default values. Retrieve device info. Run `go' to resume GRUB. SECS SIZE SOURCE|-u UUID|-a|-b STRING Saturday Say `Hello World'. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Select device by its position on the bus. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set a variable to the first device found. Set an environment variable. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial unit. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Show ACPI information. Show APM information. Show a help message. Show a long list with more detailed information. Show loaded modules. Show memory contents. Show raw contents of a file or memory. Show the contents of a file. Show the current mappings. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Skip offset bytes from the beginning of file. Slot %d opened
 Specify filename. Specify hash to use. Specify one or more font files to load. Specify the number of input files. Success Sunday Syntax error at line %u
 TARGET Test USB support. Test video subsystem. Text-only  The files are identical.
 This entry can be booted by any user. Thursday Transform a system filename into GRUB one. Translates the string with the current settings. Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unsupported image format Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use serial console. VARNAME Verbose countdown. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WIDTHxHEIGHT. Wait for a specified number of seconds. Warning: Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to PORT. Write 32-bit VALUE to PORT. Write 8-bit VALUE to PORT. Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [ADDR|comUNIT][,SPEED] [ARG] [CARD] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] access denied addr address not found attempt to read or write outside of disk `%s' available RAM available formats: base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 blocklist FILE can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d cannot compress the kernel image cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot open OS file `%s': %s cannot open `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed cmp FILE LOCAL comUNIT[,SPEED] connection refused connection timeout convert to bold font core.img version mismatch couldn't open geom couldn't read ELI metadata cp FILE LOCAL crc FILE cryptographic error number %d cygwin_conv_path() failed delete device map if it already exists destination unreachable disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s do not probe for filesystems in DEVICE don't update LED state done enter: boot, `e': options, `c': cmd-line error: %s.
 failure to read password false faulty RAM (BadRAM) file `%s' not found filename expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists firmware image is too big force autohint generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading install even if problems are detected invalid PBKDF2 password invalid file name `%s' invalid font range invalid line format: %s invalid parameter %s invalid variable name `%s' invalid video mode specification `%s' ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s ls PATH lzop file corrupted missing `%c' symbol module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no command is specified no decryption key available no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image not a directory not a primary partition not a regular file one argument expected out of memory output file must be specified overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. reserved RAM root directory of TFTP server route loop detected set [NAME=VALUE ...] set capslock mode set font family name set font range set font size set numlock mode set scrolllock mode set the program name size stretch|normal symbol `%s' not found temporary terminal `%s' isn't found the size of `%s' is too large the size of `%s' is too small two arguments expected type unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown regexp error unknown target format %s
 unrecognized number unset [NAME ...] unsupported RAID version: %d.%d unsupported gzip format unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length variable `%s' isn't set xnu_uuid DEVICE you need to load the kernel first Project-Id-Version: grub 2.0.0-pre6
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2012-05-19 19:45+0530
Last-Translator: A S Alam <aalam@users.sf.net>
Language-Team: Punjabi <punjabi-l10n@lists.sourceforge.net>
Language: pa
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=n != 1;
X-Generator: Lokalize 1.4
               ਕੁੱਲ ਮੈਮੋਰੀ: %d KiB
     ਕੋਈ ਪਸੰਦੀਦਾ ਮੋਡ ਉਪਲੱਬਧ ਨਹੀਂ
     ਪਸੰਦੀਦਾ ਮੋਡ: %ux%u
   EDID ਵਰਜਨ: %u.%u
   ਵਿਡੀਓ ਅਡੈਪਟਰ ਸ਼ੁਰੂ ਕਰਨ ਲਈ ਫੇਲ੍ਹ ਹੈ   ਕੋਈ ਜਾਣਕਾਰੀ ਨਹੀਂ   ਜਾਂ:   - ਕੁੱਲ ਆਕਾਰ ਅਣਜਾਣ [ਚੋਣ...] %ds %ds ਬਾਕੀ। %s UUID ਲਈ ਸਹਾਇਕ ਨਹੀਂ ਹੈ। %s, ਲੀਨਕਸ %s ਨਾਲ %s, ਲੀਨਕਸ %s ਨਾਲ (ਰਿਕਵਰੀ ਮੋਡ) %s, Xen ਹਾਈਪਰਵਾਈਜ਼ਰ ਨਾਲ %s: ਹੈਸ਼ ਮਿਲਦਾ ਨਹੀਂ
 %s:  ਠੀਕ ਹੈ
 %s: ਪੜ੍ਹਨ ਗਲਤੀ
 %s: ਬਹੁਤ ਆਰਗੂਮੈਂਟ
 %s: ਇਹ ਚਲਾਉਣ ਲਈ ਤੁਹਾਨੂੰ ਰੂਟ ਹੋਣਾ ਚਾਹੀਦਾ ਹੈ\n %s: ਗਲਤੀ: %s: ਜਾਣਕਾਰੀ: %s: ਗਲਤ ਚੋਣ -- '%c'
 '%s: ਚੋਣ '%c%s' ਇੱਕ ਆਰਗੂਮੈਂਟ ਨਹੀਂ ਲੈਂਦੀ
 %s: ਚੋਣ '--%s' ਇੱਕ ਆਰਗੂਮੈਂਟ ਨਹੀਂ ਲੈਂਦੀ
 %s: ਚੋਣ '--%s' ਲਈ ਇੱਕ ਆਰਗੂਮੈਂਟ ਚਾਹੀਦਾ
 %s: ਚੋਣ '-W %s' ਲਈ ਇੱਕ ਆਰਗੂਮੈਂਟ ਨਹੀਂ ਚਾਹੀਦਾ
 %s: ਚੋਣ '-W %s' ਸਧਾਰਨ ਹੈ।
 %s: ਚੋਣ ਲਈ ਆਰਗੂਮੈਂਟ ਚਾਹੀਦਾ ਹੈ --'%c'
 %s: ਬੇ-ਪਛਾਣ ਚੋਣ '%c%s'
 %s: ਬੇ-ਪਛਾਣ ਚੋਣ '--%s'
 %s: ਚੇਤਾਵਨੀ: (32-ਬਿੱਟ) (64-ਬਿੱਟ) (PROGRAM ERROR) ਕੋਈ ਜਾਣਿਆ ਵਰਜਨ ਨਹੀਂ!? (%s ਉੱਤੇ) - ਲੇਬਲ `%s' - ਆਖਰੀ ਸੋਧ ਸਮਾਂ %d-%02d-%02d %02d:%02d:%02d %s --ਹੋਰ-- -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. 16-ਬਿੱਟ ਸੁਰੱਖਿਅਤ ਇੰਟਰਫੇਸ ਸਹਾਇਕ ਹੈ
 16-ਬਿੱਟ ਸੁਰੱਖਿਅਤ ਇੰਟਰਫੇਸ ਗ਼ੈਰ-ਸਹਾਇਕ ਹੈ
 32-ਬਿੱਟ ਸੁਰੱਖਿਅਤ ਇੰਟਰਫੇਸ ਸਹਾਇਕ ਹੈ
 32-ਬਿੱਟ ਸੁਰੱਖਿਅਤ ਇੰਟਰਫੇਸ ਗ਼ੈਰ-ਸਹਾਇਕ ਹੈ
 > ACPI ਵਲੋਂ ਮੁੜ-ਦਾਅਵੇ-ਯੋਗ RAM ACPI ਬੰਦ ਕਰਨਾ ਫੇਲ੍ਹ ਹੈ ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM ਬੰਦ ਕਰੋ
 APM ਰੁੱਝਿਆ ਨਹੀ ਹੈ
 APM ਚਾਲੂ ਹੈ
 APM ਰੁੱਝਿਆ ਹੈ
 ASCII ਸਰਗਰਮ ਇੰਪੁੱਟ ਟਰਮੀਨਲ: ਉਪਲੱਬਧ ਆਉਟਪੁੱਟ ਟਰਮੀਨਲ: ਅਡੈਪਟਰ `%s':
 % ਲਈ ਤਕਨੀਕੀ ਚੋਣਾਂ %s ਲਈ ਤਕਨੀਕੀ ਚੋਣਾਂ (Xen ਹਾਈਪਰਵਾਈਜ਼ਰ ਨਾਲ) ਮੁੜ-ਚਾਲੂ ਕਰਨ ਲਈ ਫਾਇਲ ਨਾਂ ਪੁੱਛੋ। ਇੰਪੁੱਟ ਨੂੰ ਹੈਕਸਾ ਮੰਨੋ। ਇੰਪੁੱਟ ਨੂੰ ਵਾਕ ਮੰਨੋ। ਇੰਪੁੱਟ ਨੂੰ ਰਾਅ ਮੰਨੋ। ...ਮਾਸਟਰ ਕੁੰਜੀ ਡਿ-ਕ੍ਰਿਪਟ ਦੀ ਕੋਸ਼ਿਸ਼ ਜਾਰੀ ਉਪਲੱਬਧ ਇੰਪੁੱਟ ਟਰਮੀਨਲ: ਉਪਲੱਬਧ ਆਉਟਪੁੱਟ ਟਰਮੀਨਲ: BIOS_DUMP [INT10_DUMP] ਬਲਾਕ BYTE:BIT ਬੈਕਗਰਾਊਂਡ ਚਿੱਤਰ ਮੋਡ। ਹੈਸ਼ ਲਿਸਟ ਲਈ ਮੁੱਢਲੀ ਡਾਇਰੈਕਟਰੀ। BIOS-ਅਧਾਰਿਤ ਸਿਸਟਮ ਬੂਟ ਕਰੋ। ਓਪਰੇਟਿੰਗ ਸਿਸਟਮ ਬੂਟ ਕਰੋ। ਸਿੰਗਲ ਮੋਡ ਵਿੱਚ ਬੂਟ ਕਰੋ। ਡੀਬੱਗ ਸੁਨੇਹਿਆਂ ਨਾਲ ਬੂਟ ਕਰੋ। `%s' ਬੂਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ ਕਮਾਂਡ ਸੂਚੀ ਬੂਟ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ ਬੂਟ-ਪਾਥ: %s
 ਬੂਟ-ਪਾਥ: ਨਾ-ਉਪਲੱਬਧ
 CGA  ਰੰਗ COMMAND [ARGS] CPU ਆਈਡਲ ਪਰੋਸੈਸਰ ਨੂੰ ਹੌਲੀ ਨਹੀਂ ਕਰਦਾ
 CPU ਆਈਡਲ ਪਰੋਸੈਸਰ ਨੂੰ ਹੌਲੀ ਕਰਦਾ ਹੈ
 ROM ਖੇਤਰ ਚਾਲੂ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ। ਸੰਰਚਿਤ ਜੰਤਰ ਬਦਲੋ। ਪਾਰਟੀਸ਼ਨ ਕਿਸਮ ਬਦਲੋ ਆਲਟ ਸਵਿੱਚ ਵੇਖੋ। ਕੰਟਰੋਲ ਸਵਿੱਚ ਵੇਖੋ। ਸਿਫ਼ਟ ਸਵਿੱਚ ਵੇਖੋ। CPU ਫੀਚਰਾਂ ਲਈ ਚੈੱਕ ਕਰੋ। ਚੈੱਕ ਕਰੋ ਕਿ ਕੀ CPU 64-ਬਿੱਟ (ਲੰਮਾ) ਮੋਡ ਲਈ ਸਹਾਇਕ ਹੈ (ਡਿਫਾਲਟ)। ਸਕਰੀਨ ਸਾਫ਼ ਕਰੋ। ਕਮਾਂਡਾਂ: `%s' ਫਾਇਲ ਦੀ `%s' ਨਾਲ ਤੁਲਨਾ:
 ਦੋ ਫਾਇਲਾਂ ਦੀ ਤੁਲਨਾ। ਹੈਸ਼ ਚੈਕ-ਸਮ ਕੱਢੋ ਜਾਂ ਚੈਕ ਕਰੋ। ਸੀਰੀਅਲ ਪੋਰਟ ਸੰਰਚਨਾ। ਲੂਪਾਂ ਨਾਲ ਜਾਰੀ sha256 ਲੋਡ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ sha512 ਲੋਡ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ ਜੰਤਰ DEVICE [PARTITION[+/-[TYPE]]] ... ਜੰਤਰ OS ਜੰਤਰ ਹੋਣਾ ਚਾਹੀਦਾ ਹੈ (ਜਿਵੇਂ ਕਿ /dev/sda)। DEVICE_NAME ਡਾਇ ਡਾਇਰੈਕਟਰੀ [OSBundleRequired] DNSSERVER ਫਾਇਲ-ਸਿਸਟਮ ਡਰਾਇਵਰ ਲਈ ਡੀਬੱਗ ਟੂਲ। ਮੇਨੂ ਐਂਟਰੀ ਦਿਉ। ਸਬ-ਮੇਨੂ ਦਿਉ। ਦਿੱਤਾ ਲੂਪ-ਬੈਕ ਜੰਤਰ ਹਟਾਉ। ਵੇਰੀਬਲ ਹਟਾਓ। ਡਰਾਇਵਰ ਜਾਣੋ। ਫਾਇਲ ਸਿਸਟਮ UUID ਜਾਣੋ। ਫਾਇਲ ਸਿਸਟਮ ਲੇਬਲ ਜਾਣੋ। ਫਾਇਲ ਸਿਸਟਮ ਕਿਸਮ ਜਾਣੋ। ਜੰਤਰ %s: Devid: %s
 Devid: ਨਾ-ਉਪਲੱਬਧ ਸਿੱਧਾ ਰੰਗ, ਮਾਸਕ: %d/%d/%d/%d  pos: %d/%d/%d/%d ACPI ਬੰਦ। SMP ਬੰਦ। ਸਭ ਬੂਟ ਆਉਟਪੁੱਟ ਬੰਦ ਕਰੋ। SMART ਬੰਦ/ਚਾਲੂ (0/1)। ਡਿਸਕ ਕੈਸ਼ ਅੰਕੜੇ: ਸਹੀ = %lu (%lu.%02lu%%), ਖੁੰਝੇ = %lu
 FPSWA ਵਰਜਨ ਵੇਖਾਉ। ਸਮਾਰਟ ਹੈਲਥ ਹਾਲਤ ਵੇਖਾਉ। ਟੈਕਸਟ ਦੀ ਲਾਈਨ ਵੇਖੋ। ਸਭ ਕਨਸੋਲ ਉੱਤੇ ਆਉਟਪੁੱਟ ਵੇਖੋ। ਪਾਵਰਡ ਮੋਡ ਵੇਖਾਉ। ਇਸ ਕਮਾਂਡ ਦੀ ਵਰਤੋਂ ਵੇਖਾਉ ਅਤੇ ਬੰਦ ਕਰੋ। ਇਹ ਮੱਦਦ ਵੇਖਾਉ ਅਤੇ ਬੰਦ ਕਰੋ। ਮੌਜੂਦਾ ਸਮਾਂ-ਮਿਤੀ ਵੇਖਾਓ/ਸੈੱਟ ਕਰੋ। ਸੁਨੇਹੇ ਪਰਿੰਟ ਨਾ ਕਰੋ। ਕਿਸੇ ਫਲਾਪੀ ਡਰਾਇਵ ਦੀ ਖੋਜ ਨਾ ਕਰੋ। APM ਨੂੰ ਕੰਪਿਊਟਰ ਬੰਦ ਕਰਨ ਨਾ ਵਰਤੋਂ। ਕੁਝ ਨਾ ਕਰੋ, ਸਫ਼ਲ ਰਿਹਾ। ਕੁਝ ਨਾ ਕਰੋ, ਅਸਫ਼ਲ ਰਿਹਾ। ਬੂਟ ਜਾਂਚ-ਪੜਤਾਲ ਸੁਨੇਹੇ ਨਾ ਵੇਖਾਉ। ਕਾਮਿਆਂ ਨਾਲ ਵੱਖ ਕੀਤੀ ਲਿਸਟ ਤੋਂ ਹੋਸਟ ਟੇਬਲ ਲੋਡ ਨਾ ਕਰੋ। ਮੁੜ-ਚਾਲੂ ਨਾ ਕਰੋ, ਸਿਰਫ਼ ਰੋਕੋ। ਪਹਿਲੀ ਗਲਤੀ ਦੇ ਬਾਅਦ ਨਾ ਰੁਕੋ। ENVVAR ENVVAR [ENVVAR] ... ਕਿਸੇ ਵੀ ਸਮੇਂ ਬਾਹਰ ਜਾਣ ਲਈ ESC। ਸਮੀਕਰਨ ਸਮੀਕਰਨ ] ਬਾਕੀ ਸਮਾਂ: %d.%03d ਸਕਿੰਟ 
 ZFS ਪਾਸਵਰਡ ਦਿਉ:  ਸਧਾਰਨ ਮੋਡ 'ਚ ਜਾਉ। %s%s%s (%s) ਲਈ ਸ਼ਬਦ ਦਿਉ:  ਪਾਸਵਰਡ ਦਿਓ:  ਯੂਜ਼ਰ ਨਾਂ ਦਿਉ:  ਕਮਾਂਡ ਲਾਈਨ ਆਰਗੂਮੈਂਟ ਪਾਰਸ ਕਰਨ ਵਿੱਚ ਗਲਤੀ।
 ਬਾਹਰ ਜਾਣ ਲਈ ਫੇਲ੍ਹ ਗਰੱਬ ਤੋਂ ਬਾਹਰ ਆਉ। ਲੂਪਾਂ ਤੋਂ ਬਾਹਰ ਸਧਾਰਨ ਮੋਡ ਵਿੱਚੋਂ ਬਾਹਰ ਆਉ। ਵਰਜਨ 1 ਟੇਬਲ ਨੂੰ OS ਲਈ ਐਕਸਪੋਰਟ ਕਰੋ। OS ਲਈ ਵਰਜਨ 2 ਅਤੇ ਵਰਜਨ 3 ਟੇਬਲ ਐਕਸਪੋਰਟ ਕਰੋ। ਫਾਇਲ ਫਾਇਲ [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  ...ਫਾਇਲ ਫਾਇਲ1 ਫਾਇਲ2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt ਫਾਰਮੈਟ FPSWA ਰੀਵਿਜ਼ਨ: %x
 FROM-TO[,FROM-TO] ਤੋਂ[K|M|G] ਤੱਕ[K|M|G] FT_Init_FreeType ਫੇਲ੍ਹ ਹੈ `%s' ਲਈ ਫਾਲਬੈਕ ਫਾਇਲ ਸਿਸਟਮ `%s' ਇੰਬੈਡ ਕਰਨ ਲਈ ਸਹਾਇਕ ਨਹੀਂ ਹੈ ਫਾਇਲ ਆਕਾਰ ਵਿੱਚ ਅੰਤਰ: %llu [%s], %llu [%s]
 ਫਾਇਲ-ਸਿਸਟਮ ਵਰਤਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ ਫਾਇਲ ਸਿਸਟਮ ਕਿਸਮ %s ਵਿਡੀਓ ਸਮੱਸਿਆ ਠੀਕ ਕਰੋ। %2$s (%3$s) ਉੱਤੇ %1$s ਲੱਭਿਆ\n %2$s ਉੱਤੇ %1$s ਲੱਭਿਆ\n ਗਨੂ ਮੈਸ਼ ਲੱਭਿਆ: %s ਹੁਰਡ ਮੋਡੀਊਲ ਲੱਭਿਆ: %s ਬੈਕਗਰਾਊਂਡ ਲੱਭੀ: %s\n initrd ਈਮੇਜ਼ ਲੱਭਿਆ: %s\n ਕਰਨਲ ਮੋਡੀਊਲ ਡਾਇਰੈਕਟਰੀ ਲੱਭੀ: %s\n linux ਈਮੇਜ਼ ਲੱਭਿਆ: %s\n ਥੀਮ ਲੱਭਿਆ: %s\n ATA ਸੁਰੱਖਿਆ ਸੈਟਿੰਗ ਮੁੜ-ਸੈੱਟ ਕਰਨ ਤੱਕ ਫਰੀਜ਼ ਕਰੋ। ਸ਼ੁੱਕਰਵਾਰ ਗਨੂ ਗਰਬ ਵਰਜਨ %s ਗਰੱਬ ਬੂਟ ਮੇਨੂ ਗਰੱਬ ਨਹੀਂ ਜਾਣਦਾ ਹੈ ਕਿ ਇਹ ਮਸ਼ੀਨ ਨੂੰ ਕਿਵੇਂ ਰੋਕਣਾ ਹੈ! GRUBDEVICE=PLAN9DEVICE PBKDF2 ਪਾਸਵਰਡ ਹੈਸ਼ ਬਣਾਉ। grub ਸੰਰਚਨਾ ਫਾਇਲ ਤਿਆਰ ਕਰੋ ਡਿਸਕ ਕੈਸ਼ ਜਾਣਕਾਰੀ ਲਵੋ। ATA ਡਿਸਕ ਪੈਰਾਮੀਟਰ ਲਵੋ/ਸੈੱਟ ਕਰੋ। ਹੈਸ਼ HINT ਜੇ APM ਦੀ ਵਰਤੋਂ ਕਰਕੇ ਸੰਭਵ ਹੋਵੇ ਤਾਂ ਸਿਸਟਮ ਬੰਦ ਕਰੋ। ਕੰਪਿਊਟਰ ਬੰਦ ਕਰਦੀ ਹੈ। ਇਹ ਕਮਾਂਡ ਸਭ ਫਿਰਮਵੇਅਰ ਸਥਾਪਨ ਨਾਲ ਕੰਮ ਨਹੀਂ ਕਰਦੀ ਹੈ। ਹੈਲੋ ਵਰਲਡ ਹਰੀਕੁਲਸ  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS ਗਲਤ ਵਰਚੁਅਲ ਜੰਤਰ: ਕੋਈ ਕਿਸਮ ਉਪਲੱਬਧ ਨਹੀਂ ਮੋਡੀਊਲ ਸ਼ਾਮਿਲ ਕਰੋ। ਆਪਣੀ ਡਰਾਇਵ ਉੱਤੇ ਗਰਬ ਇੰਸਟਾਲ ਕਰੋ ਇੰਸਟਾਲੇਸ਼ਨ ਪੂਰੀ ਹੋਈ। ਕੋਈ ਗਲਤੀ ਨਹੀਂ ਮਿਲੀ। ਗਲਤ ਕਰੈਕਟਰ ਕਲਾਸ ਨਾਂ ਗਲਤ ਕਮਾਂਡ %s।
 ਗਲਤ ਜੰਤਰ `%s'।
 ਗਲਤ ਡਿਸਕ ਗਿਣਤੀ।
 ਗਲਤ ਅੰਤ ਰੇਜ਼ ਗਲਤ ਰੈਗੂਲਰ ਸਮੀਕਰਨ KERNEL ARGS KEYBOARD_KEY ਸੰਕੇਤ: ਮਾਸਕ/ਸਥਿਤੀ=ਲਾਲ/ਹਰਾ/ਨੀਲਾ/ਰਾਖਵਾਂ ਤਿਆਰ ਕੀਤੇ ਹੈਸ਼ ਦੀ ਲੰਬਾਈ ਸਾਲਟ ਦੀ ਲੰਬਾਈ PCI ਜੰਤਰਾਂ ਦੀ ਸੂਚੀ। ਸਭ ਫਾਇਲਾਂ ਦੀ ਸੂਚੀ ਜੰਤਰ ਅਤੇ ਫਾਇਲਾਂ ਵੇਖੋ। ਜੰਤਰ ਜਾਂ ਫਾਇਲਾਂ ਦੀ ਸੂਚੀ। ਜੰਤਰ ਦੀ ਸੂਚੀ। ਫਿਰਮਵੇਅਰ ਵਲੋਂ ਦਿੱਤੇ ਮੈਮੋਰੀ ਮੈਪ ਵੇਖਾਓ। ਸਹਾਇਕ ਵਿਡੀਓ ਮੋਡ ਦੀ ਸੂਚੀ: ਇਹ ਐਂਟਰੀ ਨੂੰ ਬੂਟ ਕਰਨ ਦੇ ਯੋਗ ਯੂਜ਼ਰ ਦੀ ਸੂਚੀ। ਇੰਪੁੱਟ ਟਰਮੀਨਲ ਵੇਖਾਉ ਜਾਂ ਚੁਣੋ। ਆਉਟਪੁੱਟ ਟਰਮੀਨਲ ਵੇਖਾਉ ਜਾਂ ਚੁਣੋ। ਮੌਜੂਦਾ ਵੇਰੀਬਲ ਵੇਖਾਓ। ਲੋਡ ਕੀਤੇ ਫੋਂਟ ਦੀ ਸੂਚੀ। ਇੰਵਾਇਰਨਮੈਂਟ ਬਲਾਕ ਫਾਇਲ ਤੋਂ ਵੇਰੀਬਲ ਲੋਡ ਕਰੋ। 64-ਬਿੱਜ਼ XNU ਈਮੇਜ਼ ਲੋਡ ਕਰੋ। BIOS ਡੰਪ ਲੋਡ ਕਰੋ। ਲੀਨਕਸ ਲੋਡ ਕਰੋ। NTLDR ਜਾਂ BootMGR ਲੋਡ ਕਰੋ। Plan9 ਕਰਨਲ ਲੋਡ ਕਰੋ। XNU ਈਮੇਜ਼ ਲੋਡ ਕਰੋ। ਕੀਬੋਰਡ ਲੇਆਉਟ ਲੋਡ ਕਰੋ। ਹੋਰ ਬੂਟ ਲੋਡਰ ਲੋਡ ਕਰੋ। ਬਿਨਾਂ ਪਰਸੰਗ ਬਦਲੇ ਬਿਨਾਂ, ਪਰ ਕੇਵਲ ਮੇਨੂ ਐਟਰੀਆਂ ਨਾਲ ਹੋਰ ਸੰਰਚਨਾ ਫਾਇਲ ਲੋਡ ਕਰੋ। ਬਿਨਾਂ ਪਰਸੰਗ ਬਦਲੇ ਹੋਰ ਸੰਰਚਨਾ ਫਾਇਲ ਲੋਡ ਕਰੋ। ਹੋਰ ਸੰਰਚਨਾ ਫਾਇਲ ਲੋਡ ਕਰੋ। ਹੋਰ ਕੋਰਬੂਟ ਪਲੇਅਲੋਡ ਲੋਡ ਕਰੋ initrd ਲੋਡ ਕਰੋ। ਕਾਮਿਆਂ-ਨਾਲ ਵੱਖ ਕੀਤੀ ਸੂਚੀ ਰਾਹੀਂ ਦਿੱਤੇ ਟੇਬਲ ਹੀ ਲੋਡ ਕਰੋ ਇੱਕੋ ਫਾਇਲ ਨੂੰ ਕੋਈ ਢੰਗਾਂ ਨਾਲ ਲੋਡ ਕਰੋ। ਇੰਵਾਇਰਨਮੈਂਟ ਬਲਾਕ ਫਾਇਲ ਤੋਂ ਵੇਰੀਬਲ ਲੋਡ ਕਰੋ। ਲੋਡ ਕੀਤੇ ਫੋਂਟ: ...ਗਨੂ ਮੈਸ਼ ਲੋਡ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ ਲੀਨਕਸ %s ਲੋਡ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ ... Xen %s ਲੋਡ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ... initial ramdisk ਲੋਡ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ ... MAC ਜਾਂਚ ਫੇਲ੍ਹ ਹੋਈ ਮੋਡੀਊਲ ਮੋਡੀਊਲ GRUB ਕੀਬੋਰਡ ਲੇਆਉਟ ਫਾਇਲ ਬਣਾਉ। ਗਰਬ ਦਾ ਬੂਟ ਹੋਣਯੋਗ ਈਮੇਜ਼ ਬਣਾਉ। ਫਾਇਲ ਤੋਂ ਵਰਚੁਅਲ ਡਰਾਇਵ ਬਣਾਉ। ਪਾਰਟੀਸ਼ ਨੂੰ ਐਕਟਿਵ ਬਣਾਓ BIOS ਡਰਾਇਵ ਮੈਪਿੰਗ ਪਰਬੰਧ। ਮੈਮੋਰੀ ਖਤਮ ਹੋਈ ਮੇਨੂ ਐਂਟਰੀ ਪਛਾਣਕਰਤਾ। ਮੇਨੂ ਐਂਟਰੀ ਨਹੀਂ ਦਿੱਤੀ ਗਈ। ਮੇਨੂ ਐਂਟਰੀ ਕਿਸਮ। ਸੋਮਵਾਰ ਇਕਹੇਰਾ ਰੰਗ  ਇੱਕ ਤੋਂ ਵੱਧ ਇੰਸਟਾਲ ਜੰਤਰ ਹਨ? ਇੱਕ ਤੋਂ ਵੱਧ ਮੇਨੂ ਐਂਟਰੀਆਂ? ਕ੍ਰਿਪਟੂ ਜੰਤਰ ਮਾਊਂਟ ਕਰੋ। ਸਭ ਮਾਊਂਟ। UUID ਰਾਹੀਂ ਮਾਊਂਟ। ਕ੍ਰਿਪਟੂ ਜੰਤਰ ਮਾਊਂਟ ਕਰੋ। ਨਾਂ NAME [VARIABLE] [HINTS] NUM NUMBER_OF_SECONDS ਨੈਟਵਰਕ ਪਰੋਟੋਕਾਲ: ਨਵਾਂ MBR `%s' ਉੱਤੇ ਲਿਖਿਆ ਗਿਆ ਹੈ
 FPSWA ਨਹੀਂ ਲੱਭਿਆ ਕਮਾਂਡ ਨਹੀਂ ਦਿੱਤੀ।
 ਕੋਈ ਜੰਤਰ ਨਹੀਂ ਦਿੱਤਾ।
 ਕੋਈ ਡਿਸਕ ਕੈਸ਼ ਅੰਕੜੇ ਉਪਲੱਬਧ ਨਹੀਂ ਹਨ
 ਕੋਈ ਡਰਾਇਵ ਮੁੜ-ਮੈਪ ਨਹੀਂ ਕੀਤੀ ਗਈ ਹੈ ਅਣਜਾਣ ਫਾਇਲ ਸਿਸਟਮ ਕਿਸਮ ਖੋਜੀ ਕੋਈ ਮੇਲ ਨਹੀਂ ਕੋਈ ਪਾਥ ਨਹੀਂ ਦਿੱਤਾ।
 ਕੋਈ ਪਾਥ ਜਾਂ ਜੰਤਰ ਨਹੀਂ ਦਿੱਤਾ ਹੈ।
 ਕੋਈ ਪਿਛਲਾ ਨਿਯਮਤ ਸਮੀਕਰਨ ਨਹੀਂ ਕੋਈ ਵਰਚੁਅਲ ਜੰਤਰ ਟਰੀ ਉਪਲੱਬਧ ਨਹੀਂ ਗੈਰ-ਚੇਨ 4  ਕਮਾਂਡ ਲਈ ਲੋੜੀਦੇ ਪੈਰਾਮੀਟਰ ਨਹੀਂ।
 OS ਡਿਸਕ #num ------> GRUB/BIOS ਜੰਤਰ OS ਫਾਇਲ %s ਖੋਲ੍ਹਣ 'ਚ ਗਲਤੀ: %s ਚੋਣਾਂ: ਪਾਰਟੀਸ਼ਨ ਕਮਾਂਡ ਪਾਥ ਤੁਹਾਡੇ ਪਾਸਵਰਡ ਦਾ PBKDF2 ਹੈਸ਼ %s ਹੈ
 PORT PORT VALUE [MASK] ਪਾਰਟੀਸ਼ਨ %s: ਪਾਥ: %s
 ਪਾਥ: ਨਾ-ਉਪਲੱਬਧ ਸਿੱਧੀ ਅਤੇ ਉਲਟ ਮੈਪਿੰਗ ਵਰਤੋਂ। ਪਲੇਨਰ  ਟਿਊਨ ਚਲਾਉ। ਪੂਲ GUID: %016llx
 ਪੂਲ GUID: ਨਾ-ਮੌਜੂਦ ਪੂਲ ਨਾਂ: %s
 ਪੂਲ ਨਾਂ: ਨਾ-ਉਪਲੱਬਧ ਪੂਲ ਹਾਲਤ: ਸਰਗਰਮ ਪੂਲ ਹਾਲਤ: ਨਸ਼ਟ ਕੀਤਾ ਪੂਲ ਹਾਲਤ: ਐਕਸਪੋਰਟ ਪੂਲ ਹਾਲਤ: ਨਾ-ਉਪਲੱਬਧ ਸੰਭਾਵਿਤ ਆਰਗੂਮੈਂਟ: ਸੰਭਾਵਿਤ ਕਮਾਂਡ ਹਨ: ਸੰਭਾਵਿਤ ਜੰਤਰ: ਸੰਭਾਵਿਤ ਫਾਇਲਾਂ: ਸੰਭਾਵਿਤ ਪਾਰਟੀਸ਼ਨ: ਜਾਰੀ ਰੱਖਣ ਲਈ ਕੋਈ ਵੀ ਸਵਿੱਚ ਦੱਬੋ... xnu ਚਲਾਉਣ ਲਈ ਕੋਈ ਵੀ ਸਵਿੱਚ ਦੱਬੋ। ਚੁਣੇ ਓਪਰੇਟਿੰਗ ਸਿਸਟਮ (OS) ਵਿੱਚ ਬੂਟ ਕਰਨ ਲਈ Enter, ਬੂਟ ਕਰਨ ਤੋਂ ਪਹਿਲਾਂ ਕਮਾਂਡ ਸੋਧਣ ਲਈ `e' ਜਾਂ ਕਮਾਂਡ-ਲਾਈਨ ਲਈ `c' ਦੱਬੋ। ਬਲਾਕ ਲਿਸਟ ਪਰਿੰਟ ਕਰੋ। ਡਰਾਇਵ ਪਛਾਣ ਅਤੇ ਸੈਟਿੰਗ ਪਰਿੰਟ ਕਰੋ। ਮਨੁੱਖੀ ਪੜਨਯੋਗ ਫਾਰਮੈਟ 'ਚ ਆਕਾਰ ਪਰਿੰਟ ਕਰੋ। RAM ਕੋਲ ਫਿਰਮਵੇਅਰ ਕੋਡ ਹੈ REGEXP STRING ROM ਈਮੇਜ਼ ਮੌਜੂਦ ਹੈ। ਪੋਰਟ ਤੋਂ 16-ਬਿੱਟ ਮੁੱਲ ਪੜ੍ਹੋ। ਪੋਰਟ ਤੋਂ 32-ਬਿੱਟ ਮੁੱਲ ਪੜ੍ਹੋ। ਪੋਰਟ ਤੋਂ 8-ਬਿੱਟ ਮੁੱਲ ਪੜ੍ਹੋ। ਕੇਵਲ LENGTH ਬਾਈਟ ਪੜ੍ਹੋ। ਮੁੜ-ਚਾਲੂ ਕਰਨ ਲਈ ਫੇਲ੍ਹ ਕੰਪਿਊਟਰ ਮੁੜ-ਚਾਲੂ ਕਰੋ। ਪਾਸਵਰਡ ਮੁੜ-ਦਿਓ:  ਨਿਯਮਤ ਸਮੀਕਰਨ ਬਹੁਤ ਵੱਡੀ ਹੈ ਮੋਡੀਊਲ ਹਟਾਉ। ਇੰਵਾਇਰਨਮੈਂਟ ਵੇਰੀਬਲ ਹਟਾਉ। ਦਿੱਤੀ ਰੇਜ਼ ਵਿੱਚ ਕੋਈ ਵੀ ਮੈਮੋਰੀ ਖੇਤਰ ਹਟਾਉ। ਬੱਗ ਜਾਣਕਾਰੀ %s ਨੂੰ ਭੇਜੋ।
 ਬੱਗ ਜਾਣਕਾਰੀ <bug-grub@gnu.org> ਨੂੰ ਭੇਜੋ ਸਭ ਮੈਪਿੰਗ ਲਈ ਡਿਫਾਲਟ ਮੁੱਲ ਸੈੱਟ ਕਰੋ। ਜੰਤਰ ਜਾਣਕਾਰੀ ਲਵੋ। GRUB ਨੂੰ ਮੁੜ-ਪ੍ਰਾਪਤ ਕਰਨ ਲਈ `go' ਚਲਾਉ। ਸਕਿੰਟ ਆਕਾਰ SOURCE|-u UUID|-a|-b STRING ਸ਼ਨਿੱਚਰਵਾਰ `Hello World' ਕਹੋ। ਜੰਤਰ ਫਾਇਲ ਨਾਲ ਲੱਭੋ। ਫਾਇਲ-ਸਿਸਟਮ UUID ਰਾਹੀਂ ਜੰਤਰ ਲੱਭੋ। ਫਾਇਲ-ਸਿਸਟਮ ਲੇਬਲ ਰਾਹੀਂ ਜੰਤਰ ਲੱਭੋ। ਜੰਤਰ ਨੂੰ ਬਸ ਉੱਤੇ ਇਸ ਦੀ ਸਥਿਤੀ ਨਾਲ ਚੁਣੋ। ਤਕਨੀਕੀ ਪਾਵਰ ਪਰਬੰਧ ਸੈੱਟ ਕਰੋ
(1=ਘੱਟ, ..., 254=ਵੱਧ, 255=ਬੰਦ) ਆਟੋਮੈਟਿਕ ਅਕੁਟਿਕ ਪਰਬੰਧ ਸੈੱਟ ਕਰੋ
(0=ਬੰਦ, 128=ਸ਼ਾਤ, ..., 254=ਤੇਜ਼)। RSDP, XSDT ਅਤੇ RSDT ਦਾ OEMID ਸੈੱਟ ਕਰੋ। ਪਹਿਲੇ ਲੱਭੇ ਜੰਤਰ ਲਈ ਵੇਰੀਬਲ ਸੈੱਟ ਕਰੋ। ਇੰਵਾਇਰਨਮੈਂਟ ਵੇਰੀਬਲ ਸੈੱਟ ਕਰੋ। RSDP, XSDT ਅਤੇ RSDT ਲਈ ਕਰੀਏਟਰ ਖੇਤਰ ਦਿਉ। RSDP, XSDT ਅਤੇ RSDT ਲਈ ਕਰੀਏਟਰ ਰੀਵਿਜ਼ਨ ਸੈੱਟ ਕਰੋ ਡੀਬੱਗ ਇੰਵਾਇਰਨਮੈਂਟ ਵੇਰੀਬਲ ਦਿਉ। ਸਲੀਪ ਮੋਡ ਲਈ ਡਰਾਇਵ ਸੈੱਟ ਕਰੋ। ਸਟੈਂਡਬਾਏ ਮੋਡ ਲਈ ਡਰਾਇਵ ਸੈੱਟ ਕਰੋ। ਰੂਟ ਜੰਤਰ ਸੈੱਟ ਕਰੋ। ਸਟੈਂਡਬਾਏ ਸਮਾਂ-ਸਮਾਪਤੀ ਸੈੱਟ
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). ਗਰਬ ਲਈ ਮੂਲ ਬੂਟ ਮੇਨੂ ਐਂਟਰੀ ਸੈੱਟ ਕਰੋ, ਕੇਵਲ ਅਗਲੇ ਬੂਟ ਲਈ ਹੀ। ਗਰਬ ਲਈ ਮੂਲ ਬੂਟ ਮੇਨੂ ਐਂਟਰੀ ਸੈੱਟ ਕਰੋ। ਸੀਰੀਅਲ ਯੂਨਿਟ ਦਿਉ। ਯੂਜ਼ਰ ਪਾਸਵਰਡ (PBKDF2) ਦਿਉ।  ਯੂਜ਼ਰ ਪਾਸਵਰਡ ਦਿਉ (ਪਲੇਨ-ਟੈਕਸਟ)। ਗ਼ੈਰ-ਸਿਫਾਰਸ਼ੀ ਅਤੇ ਅਸੁਰੱਖਿਅਤ ਯੂਜ਼ਰ ਇੰਪੁੱਟ ਨਾਲ ਵੇਰੀਬਲ ਸੈੱਟ ਕਰੋ। ਵੇਰੀਬਲ ਸੈੱਟ। ACPI ਜਾਣਕਾਰੀ ਵੇਖੋ। APM ਜਾਣਕਾਰੀ ਵੇਖਾਉ। ਮੱਦਦ ਸੁਨੇਹਾ ਵੇਖਾਉ। ਹੋਰ ਵੇਰਵੇ ਸਮੇਤ ਜਾਣਕਾਰੀ ਲਈ ਲੰਮੀ ਸੂਚੀ ਵੇਖੋ। ਲੋਡ ਕੀਤੇ ਮੋਡੀਊਲ ਵੇਖਾਉ। ਮੈਮੋਰੀ ਸਮੱਗਰੀ ਵੇਖਾਉ। ਫਾਇਲ ਜਾਂ ਮੈਮੋਰੀ ਦੀ ਕੱਚੀ ਸਮੱਗਰੀ ਵੇਖਾਉ। ਫਾਇਲ ਦੀ ਸਮੱਗਰੀ ਵੇਖੋ। ਮੌਜੂਦਾ ਮੈਪਿੰਗ ਵੇਖੋ। ਇਹ ਸੁਨੇਹਾ ਵੇਖਾਉ। ਕੇਵਲ ਵਰਜਨ 1 ਟੇਬਲ ਹੀ ਵੇਖੋ। ਕੇਵਲ ਵਰਜਨ 2 ਅਤੇ ਵਰਜਨ 3 ਟੇਬਲ ਹੀ ਵੇਖੋ। ਬੰਦ ਕਰਨਾ ਫੇਲ੍ਹ ਹੈ ਫਾਇਲ ਦੇ ਸ਼ੁਰੂ ਤੋਂ ਆਫਸੈੱਟ ਬਾਈਟ ਛੱਡੋ। ਸਲਾਟ %d ਖੁੱਲ੍ਹੀ ਹੈ
 ਫਾਇਲ-ਨਾਂ ਦਿਉ। ਵਰਤਣ ਲਈ ਹੈਸ਼ ਦਿਉ। ਲੋਡ ਕਰਨ ਲਈ ਇੱਕ ਜਾਂ ਵੱਧ ਫੋਂਟ ਫਾਇਲਾਂ ਦਿਉ। ਇੰਪੁੱਟ ਫਾਇਲਾਂ ਦੀ ਗਿਣਤੀ ਦਿਉ। ਸਫ਼ਲ ਐਤਵਾਰ ਲਾਈਨ %u ਉੱਤੇ ਸੰਟੈਕਸ ਗਲਤੀ
 ਟਾਰਗੇਟ USB ਸਹਿਯੋਗ ਟੈਸਟ ਕਰੋ। ਵਿਡੀਓ ਸਬ-ਸਿਸਟਮ ਟੈਸਟ। ਕੇਵਲ ਟੈਕਸਟ  ਫਾਇਲਾਂ ਇਕੋ ਜੇਹੀਆਂ ਹਨ।
 ਇਹ ਐਂਟਰੀ ਨੂੰ ਕਿਸੇ ਵੀ ਯੂਜ਼ਰ ਵਲੋਂ ਬੂਟ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ। ਵੀਰਵਾਰ ਸਿਸਟਮ ਫਾਇਲ-ਨਾਂ ਨੂੰ ਗਰਬ ਵਿੱਚ ਬਦਲੋ। ਲਾਈਨਾਂ ਨੂੰ ਮੌਜੂਦਾ ਸੈਟਿੰਗ ਨਾਲ ਅਨੁਵਾਦ ਕਰੋ। ਮੰਗਲਵਾਰ ਯੂਜ਼ਰ ਪਾਸਵਰਡ USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 ਪਾਈਪ ਬਣਾਉਣ ਲਈ ਅਸਮਰੱਥ: %s %s ਤੋਂ ਸਟਰੀਮ ਖੋਲ੍ਹਣ ਲਈ ਅਸਮਰੱਥ: %s ਪੂਲ ਹਾਲਤ ਲੈਣ ਲਈ ਅਸਮਰੱਥ ਅਣ-ਕੰਪਰੈਸ ਡਾਟਾ। ਚੈਕ-ਸਮ ਕਰਨ ਤੋਂ ਪਹਿਲਾਂ ਫਾਇਲ ਅਣ-ਕੰਪਰੈਸ ਕਰੋ। ਅਣਜਾਣ ਐਡਰੈਸ ਕਿਸਮ %d
 ਅਣਜਾਣ ਕਮਾਂਡ `%s'।
 ਅਣਜਾਣ ਕੰਪਰੈਸ਼ਨ ਫਾਰਮੈਟ %s ਅਣਜਾਣ ਇੰਕੋਡਿੰਗ ਅਣਜਾਣ ਸਿਸਟਮ ਗਲਤੀ ਅਣਜਾਣ ਵਿਡੀਓ ਮੋਡ  ਅਣਜਾਣ ਵਰਚੁਅਲ ਜੰਤਰ ਕਿਸਮ: %s
 ਨਾ ਮਿਲਦੇ ( ਜਾਂ \( ਨਾ ਮਿਲਦੇ ) ਜਾਂ \) ਨਾ ਮਿਲਦੇ [ ਜਾਂ [^ ਨਾ-ਮਿਲਦੇ \{ ਗ਼ੈਰ-ਸਹਾਇਕ ਈਮੇਜ਼ ਫਾਰਮੈਟ ਵਰਤੋਂ: ਵਰਤੋ: %s -o OUTPUT CKBMAP_ARGUMENTS...\n ਵਰਤੋਂUsage: %s ਜੰਤਰ
 ਵਰਤੋ: %s [INFILE [OUTFILE]]
 ਵਰਤੋ: %s [OPTION] MENU_ENTRY\n ਵਰਤੋ: %s [OPTION]\n CD-ROM ਨੂੰ ਰੂਟ ਵਜੋਂ ਵਰਤੋਂ। ਸੀਰੀਅਥ ਕਨਸੋਲ ਵਰਤੋਂ। VARNAME ਵਰਬੋਸ ਗਿਣਤੀ। ਵਰਜਨ %u.%u
32-ਬਿੱਟ CS = 0x%x, len = 0x%x, ਆਫਸੈਟ = 0x%x
16-ਬਿੱਟ CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 ਵਰਚੁਅਲ ਜੰਤਰ ਡੀ-ਗਰੇਡ ਕੀਤਾ ਵਰਚੁਅਲ ਜੰਤਰ ਖਰਾਬ ਹੈ ਵਰਚੁਅਲ ਜੰਤਰ ਆਫਲਾਈਨ ਹੈ ਵਰਚੁਅਲ ਜੰਤਰ ਆਨਲਾਈਨ ਹੈ ਵਰਚੁਅਲ ਜੰਤਰ ਹਟਾਇਆ ਗਿਆ WIDTHxHEIGHT ਦਿੱਤੇ ਸਕਿੰਟ ਲਈ ਉਡੀਕੋ ਜੀ। ਚੇਤਾਵਨੀ: ਬੁੱਧਵਾਰ Windows NT/2000/XP (ਲੋਡਰ) Windows Vista/7 (ਲੋਡਰ) ਪੋਰਟ ਉੱਤੇ 16-ਬਿੱਟ ਮੁੱਲ ਲਿਖੋ। ਪੋਰਟ ਉੱਤੇ 32-ਬਿੱਟ ਮੁੱਲ ਲਿਖੋ। ਪੋਰਟ ਉੱਤੇ 8-ਬਿੱਟ ਮੁੱਲ ਲਿਖੋ। Xen ਹਾਈਪਰਵਾਈਜ਼ਰ, ਵਰਜਨ %s YUV  ਤੁਹਾਨੂੰ ਘੱਟੋ-ਘੱਟ ਇੱਕ ਕਮਾਂਡ ਦੇਣਾ ਪਵੇਗੀ।
 ਤੁਹਾਨੂੰ `SystemPartition' ਅਤੇ `OSLoader' ਖੁਦ ਸੈੱਟ ਕਰਨਾ ਪਵੇਗਾ। [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [ਫਾਇਲ] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME ਫਾਇਲ। [-e|-n] ਲਾਈਨ [-f ਫਾਇਲ] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] ਨਾਂ [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [ਫਾਇਲ ...] [-m (stretch|normal)] ਫਾਇਲ [ADDR|comUNIT][,SPEED] [ARG] [CARD] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [NUMBER:]VARNAME [NUM] [OPTIONS...] [ਚੋਣਾਂ] [OPTIONS] ਡਿਸਕ [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [ਪਾਥ] [ਪੈਟਰਨ ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] ਅਸੈੱਸ ਪਾਬੰਦੀ ਹੈ addr ਐਡਰੈਸ ਨਹੀਂ ਲੱਭਿਆ ਡਿਸਕ `%s' ਤੋਂ ਬਾਹਰ ਪੜਨ ਜਾਂ ਲਿਖਣ ਦੀ ਕੋਸ਼ਿਸ਼ ਉਪਲੱਬਧ RAM ਉਪਲੱਬਧ ਫਾਰਮੈਟ: base_addr = 0x%llx, ਲੰਬਾਈ = 0x%llx, %s
 base_addr = 0x%llx, ਲੰਬਾਈ = 0x%llx, type = 0x%x
 blocklist FILE %s ਉੱਤੇ ਫਾਇਲ-ਸਿਸਟਮ ਜਾਣਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ ਕਮਾਂਡ `%s' ਲੱਭੀ ਨਹੀਂ ਜਾ ਸਕਦੀ। ਇੰਕ੍ਰਿਪਟ ਕੀਤੇ ਵਾਲੀਅਮ `%s' ਨੂੰ ਮਾਊਂਟ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ: %s `%s' ਨੂੰ ਖੋਲ੍ਹਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ: %s ਫਾਇਲ %s, ਇੰਡੈਕਸ %d ਖੋਲੀ ਨਹੀਂ ਜਾ ਸਕਦੀ: ਗਲਤੀ %d ਕਰਨਲ ਈਮੇਜ਼ ਕੰਪਰੈਸ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ %s ਲਈ ਗਰਬ ਡਰਾਇਵ ਲੱਭੀ ਨਹੀਂ ਜਾ ਸਕਦੀ। ਆਪਣੀ device.map ਵੇਖੋ %s ਲਈ ਜੰਤਰ ਲੱਭਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ ਹੈ (ਕੀ /dev ਮਾਊਂਟ ਹੈ?) OS ਫਾਇਲ `%s' ਖੋਲ੍ਹੀ ਨਹੀਂ ਜਾ ਸਕਦੀ: %s `%s' ਖੋਲ੍ਹਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ: %s `%s' ਨੂੰ ਠੀਕ ਤਰ੍ਹਾਂ ਪੜਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ `%s' ਨੂੰ ਪੜ੍ਹਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ: %s ਫਾਇਲ %s ਦਾ ਨਾਂ %s ਬਦਲਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ ਅਸਲੀ ਡਾਇਰੈਕਟਰੀ ਰੀ-ਸਟੋਰ ਨਹੀਂ ਕੀਤੀ ਜਾ ਸਕਦੀ CD-ROM ਉੱਤੇ ਲਿਖਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ `%s' ਉੱਤੇ ਲਿਖਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ: %s stdout ਲਈ ਲਿਖਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ: %s ਕਾਰਡ ਨਹੀਂ ਲੱਭਿਆ cat FILE ਚੈਕਸਮ ਜਾਂਚ ਫੇਲ੍ਹ ਹੋਈ cmp FILE LOCAL comUNIT[,SPEED] ਕੁਨੈਕਸ਼ਨ ਤੋਂ ਇਨਕਾਰ ਕੀਤਾ ਕੁਨੈਕਸ਼ਨ ਸਮਾਂ-ਸਮਾਪਤ ਗੂੜੇ ਫੋਂਟ ਵਿੱਚ ਬਦਲੋ core.img ਵਰਜਨ ਮਿਲਦਾ ਨਹੀਂ ਹੈ geom ਖੋਲ੍ਹਿਆ ਨਹੀਂ ਸਕਿਆ ELI ਮੇਟਾਡਾਟਾ ਪੜਿਆ ਨਹੀਂ ਜਾ ਸਕਿਆ cp FILE LOCAL crc FILE ਕ੍ਰਿਪਟੋਗਰਾਫਿਕ ਗਲਤੀ ਨੰਬਰ %d cygwin_conv_path() ਫੇਲ੍ਹ ਹੈ ਜੰਤਰ ਮੈਪ ਜੇ ਮੌਜੂਦ ਹੋਵੇ ਤਾਂ ਹਟਾ ਦਿਉ ਟਿਕਾਣਾ ਵਰਤਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ ਹਿੰਟਿੰਗ ਬੰਦ ਹੈ ਡਿਸਕ `%s' ਨਹੀਂ ਲੱਭੀ ਡਿਸਕ ਮੌਜੂਦ ਨਹੀਂ ਹੈ, ਪਾਰਟੀਸ਼ਨ ਜੰਤਰ %s ਉੱਤੇ ਵਾਪਸ ਆਇਆ ਜਾ ਰਿਹਾ ਹੈ ਜੰਤਰ ਵਿੱਚ ਫਾਇਲ-ਸਿਸਟਮ ਲਈ ਜਾਂਚ ਨਾ ਕਰੋ LED ਹਾਲਤ ਅੱਪਡੇਟ ਨਾ ਕਰੋ ਸਮਾਪਤ enter: ਬੂਟ, `e': ਚੋਣਾਂ, `c': ਕਮਾਂਡ-ਲਾਈਨ ਗਲਤੀ: %s
 ਪਾਸਵਰਡ ਪੜ੍ਹਨ ਲਈ ਫੇਲ੍ਹ ਹੈ ਗਲਤ ਖਰਾਬ RAM (BadRAM) ਫਾਇਲ `%s' ਨਹੀਂ ਲੱਭੀ ਫਾਇਲ-ਨਾਂ ਦੀ ਲੋੜ ਸੀ ਫਾਇਲ ਸਿਸਟਮ `%s' ਲੇਬਲ ਲਈ ਸਹਾਇਕ ਨਹੀਂ ਹੈ ਫਾਇਲ-ਸਿਸਟਮ `%s' ਬਲਾਕ-ਲਿਸਟ ਲਈ ਸਹਾਇਕ ਨਹੀਂ ਹੈ ਫਿਰਮਵੇਅਰ ਈਮੇਜ਼ ਬਹੁਤ ਵੱਡਾ ਹੈ ਆਟੋ-ਹਿੰਟ ਲਈ ਮਜ਼ਬੂਰ ਫਾਰਮੈਟ ਵਿੱਚ ਈਮੇਜ਼ ਤਿਆਰ ਕੀਤਾ ਸੰਖੇਪ ਵਰਤੋਂ ਸੁਨੇਹਾ ਦਿਉ ਇਹ ਮੱਦਦ ਸੂਚੀ ਦਿਉ ਦਿੱਤਾ ਆਰਗੂਮੈਂਟ ਸਿਸਟਮ ਜੰਤਰ ਹੈ ਨਾ ਕਿ ਪਾਥ grub> ਸਕਿੰਟ ਸਕਿੰਟਾਂ ਲਈ ਰੋਕੋ (ਮੂਲ 3600) hex FILE ਲੋਡ ਕਰਨ ਦੇ ਦੌਰਾਨ ਬਿਟਮੈਪ ਅਣਡਿੱਠਾ ਕਰੋ ਭਾਵੇਂ ਸਮੱਸਿਆ ਆਵੇ ਤਾਂ ਵੀ ਇੰਸਟਾਲ ਕਰੋ ਗਲਤ PBKDF2 ਪਾਸਵਰਡ ਗਲਤ ਫਾਇਲ ਨਾਂ `%s' ਗਲਤ ਫੋਂਟ ਰੇਜ਼ ਗਲਤ ਲਾਈਨ ਫਾਰਮੈਟ: %s ਗਲਤ ਪੈਰਾਮੀਟਰ %s ਗਲਤ ਵੇਰੀਬਲ ਨਾਂ `%s' ਗਲਤ ਵਿਡੀਓ ਮੋਡ ਹਦਾਇਤ `%s' ioctl GET_ARRAY_INFO ਗਲਤੀ: %s ioctl GET_DISK_INFO ਗਲਤੀ: %s ioctl RAID_VERSION ਗਲਤੀ: %s ls PATH lzop ਫਾਇਲ ਨਿਕਾਰਾ ਹੈ ਨਾ-ਮੌਜੂਦ `%c' ਨਿਸ਼ਾਨ ਮੋਡੀਊਲ `%s' ਲੋਡ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ ਮੋਡੀਊਲ ਲੋਡ ਨਹੀਂ ਹੈ ਨਾਂ ਈਮੇਜ਼ ਅਤੇ ਮਾਊਂਟ-ਪੁਆਇੰਟ ਚਾਹੀਦਾ ਹੈ APM ਨਹੀਂ ਲੱਭਿਆ DHCP ਜਾਣਕਾਰੀ ਨਹੀਂ ਲੱਭੀ ਕੋਈ ਕਮਾਂਡ ਨਹੀਂ ਦਿੱਤੀ ਕੋਈ ਡਿ-ਕ੍ਰਿਪਟਸ਼ਨ ਕੁੰਜੀ ਉਪਲੱਬਧ ਨਹੀਂ ਇੰਝ ਦਾ ਕੋਈ ਭਾਗ ਨਹੀਂ ਕੋਈ ਢੁੱਕਵਾਂ ਵਿਡੀਓ ਮੋਡ ਨਹੀਂ ਲੱਭਿਆ ਕੋਈ ਸਿੰਬਲ ਟੇਬਲ ਨਹੀਂ ਕੋਈ ਟਰਮੀਨਲ ਨਹੀਂ ਦਿੱਤਾ। ਕੋਰ ਈਮੇਜ਼ ਵਿੱਚ ਕੋਈ ਟਰਮੀਨੇਟਰ ਨਹੀਂ ਹੈ ਡਾਇਰੈਕਟਰੀ ਨਹੀਂ ਹੈ ਕੋਈ ਪ੍ਰਾਈਮਰੀ ਪਾਰਟੀਸ਼ਨ ਨਹੀਂ ਨਿਯਮਤ ਫਾਇਲ ਨਹੀਂ ਇੱਕ ਆਰਗੂਮੈਂਟ ਚਾਹੀਦੀ ਸੀ ਮੈਮੋਰੀ ਖਤਮ ਹੋਈ ਆਉਟਪੁੱਟ ਫਾਇਲ ਦੇਣਾ ਲਾਜ਼ਮੀ ਹੈ ਓਵਰਫਲੋ ਖੋਜਿਆ ਪਾਸਵਰਡ ਮੇਲ ਨਹੀਂ ਖਾ ਰਿਹਾ ਬੂਟ ਆਟੋ-ਸੰਰਚਨਾ ਕਰੋ ਫਿਜ਼ੀਕਲ ਵਾਲੀਅਮ %s ਨਹੀਂ ਲੱਭਿਆ ਫਾਇਲ ਦਾ ਅੰਤ ਅਚਾਨਕ ਹੈ। ਫਾਇਲ %s ਦਾ ਅਧੂਰਾ ਅੰਤ CapsLock ਸਵਿੱਚ ਦੱਬੋ Insert ਸਵਿੱਚ ਦੱਬੋ NumLock ਸਵਿੱਚ ਦੱਬੋ ScrollLock ਸਵਿੱਚ ਦੱਬੋ SysRq ਦੱਬੋ ਖੱਬੀ alt ਦੱਬੋ ਖੱਬੀ ctrl ਦੱਬੋ ਖੱਬੀ ਸਿਫਟ ਦੱਬੋ ਸੱਜੀ alt ਦੱਬੋ ਸੱਜੀ ctrl ਦੱਬੋ ਸੱਜੀ ਸਿਫਟ ਦੱਬੋ ਪਰੋਗਰਾਮ ਵਰਜਨ ਛਾਪੋ ਵਰਜਨ ਜਾਣਕਾਰੀ ਛਾਪੋ ਅਤੇ ਬੰਦ ਕਰੋ ਇਹ ਸੁਨੇਹਾ ਛਾਪੋ ਅਤੇ ਬੰਦ ਕਰੋ ਵੇਰਵੇ ਸਮੇਤ ਸੁਨੇਹੇ ਛਾਪੋ। ਰਾਖਵੀਂ RAM TFP ਸਰਵਰ ਲਈ ਰੂਟ ਡਾਇਰੈਕਟਰੀ ਰੂਟ ਲੂਪ ਖੋਜਿਆ set [NAME=VALUE ...] capslock ਮੋਡ ਸੈੱਟ ਕਰੋ ਫੋਂਟ ਫੈਮਲੀ ਨਾਂ ਦਿਓ ਫੋਂਟ ਰੇਜ਼ ਦਿਓ ਫੋਂਟ ਆਕਾਰ ਸੈੱਟ ਕਰੋ numlock ਮੋਡ ਸੈੱਟ ਕਰੋ scrolllock ਮੋਡ ਸੈੱਟ ਕਰੋ ਪਰੋਗਰਾਮ ਨਾਂ ਸੈੱਟ ਕਰੋ ਸਾਈਜ਼ stretch|normal ਸਿੰਬਲ `%s' ਨਹੀਂ ਲੱਭਿਆ ਆਰਜ਼ੀ ਟਰਮੀਨਲ `%s' ਨਹੀਂ ਲੱਭਿਆ `%s' ਦਾ ਆਕਾਰ ਬਹੁਤ ਵੱਡਾ ਹੈ `%s' ਦਾ ਆਕਾਰ ਬਹੁਤ ਛੋਟਾ ਹੈ ਦੋ ਆਰਗੂਮੈਂਟ ਦੀ ਲੋੜ ਹੈ ਕਿਸਮ ਫਾਇਲ ਦਾ ਅਸਧਾਰਨ ਅੰਤ ਅਣਜਾਣ ਆਰਗੂਮੈਂਟ `%s' ਅਣਜਾਣ ਕੰਪਰੈਸ਼ਨ %d
 ਅਣਜਾਣ ਜੰਤਰ ਕਿਸਮ %s
 ਅਣਜਾਣ ਫਾਇਲ ਸਿਸਟਮ ਅਣਜਾਣ regexp ਗਲਤੀ ਅਣਜਾਣ ਟਾਰਗੇਟ ਫਾਰਮੈਟ %s
 ਬੇਪਛਾਣ ਨੰਬਰ unset [NAME ...] ਗ਼ੈਰ-ਸਹਾਇਕ ਰੇਡ ਵਰਜਨ: %d.%d ਗ਼ੈਰ-ਸਹਾਇਕ gzip ਫਾਰਮੈਟ ਗ਼ੈਰ-ਸਹਾਇਕ ਸੀਰੀਅਲ ਪੋਰਟ ਸਪੀਡ ਗ਼ੈਰ-ਸਹਾਇਕ ਸੀਰੀਅਲ ਪੋਰਟ ਸਟਾਪ ਬਿੱਟ ਨੰਬਰ ਗ਼ੈਰ-ਸਹਾਇਕ ਸੀਰੀਅਲ ਪੋਰਟ ਸ਼ਬਦ ਲੰਬਾਈ ਵੇਰੀਬਲ `%s' ਸੈਟ ਨਹੀਂ ਹੈ। xnu_uuid ਜੰਤਰ ਤੁਹਾਨੂੰ ਪਹਿਲਾਂ ਕਰਨਲ ਲੋਡ ਕਰਨ ਦੀ ਲੋੜ ਹੈ।                                                                                                                                                                           boot/grub/locale/pl.mo                                                                              0000600 0001750 0001750 00000322163 13417732100 0013644 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                       x     #    G      _  #   _      _     _     _     `  $   `     =`  6   Q`     `     `  	   `     `     `     `     `     `     a  .    a  .   Oa  %   ~a     a     a    a    b    c     d  7   d  F   e  v   be  +   e     f      f     7f  !   If     kf  ,   f     f     f  $   f     g  *   #g     Ng     ag     ig     yg     g  
   g  	   g     g  ,   g  ,   h  ,   <h  '   ih  -   h      h  (   h  (   	i  )   2i     \i     |i     i     i     i  "   i  4   i     j     j  7   (j     `j  1   ij     j     j  %   j  '   j  %   k  '   1k     Yk     ^k     `k     ~k     k     k     k     k     k     k     k     l     l     (l  3   5l     il  $   ol     l     l     l     l     l     l     m  -   )m     Wm  !   tm     m     m     m  #   m      n  `   n  Z   n     Do     _o     {o     }o     o     o     o     o     o     o     o     p     %p     ?p     [p     hp     p     p     p     p     p     p     p  %   p     	q     (q     <q     Sq     nq     q     q     q     q  *   q  3   q     .r  "   Ir  8   lr     r     r  	   r  #   r     s      s     3s     Ss     ss     s  )   s     s     s      t  P   t     ot     t  H   t  &   t     	u     !u  !   (u  ,   Ju     wu     u     u  	   u  !   u  *   u     u     v     (v     :v     Tv  $   lv     v     v     v     v     v     w  
   %w  
   0w     ;w  1   Nw     w     w     w     w  3   w  >   x  $   Cx     hx     x     x     x     x     x  +   y     /y     Ky  #   iy     y     y  $   y     y     z  '   z  9   Fz     z     z  z   z     2{     9{  8   M{     {  
   {     {     {     {     {     |  +   |     |     |     |  "   }     5}     F}  (   W}     }     }     }     }     }     }  "   }  0   ~     A~     F~     U~  7   d~     ~     ~     ~     ~     ~     ~  0   ~          /     A     W  2   n  %               *     6     +   M     y            !   {  d     e     d   h  i   ͂  o   7  H                       *     =     S     m       #             ߄       1   	  )   ;     e     l     n       /             х       5        ;     Z  K   v          ކ                           '   $  P   L            	   ȇ     ҇     Շ       '     +   0     \     m  )             ʈ                    0     F  $   [            "        Љ     ҉     މ  (               "     +   A  -   m               Ê     Ԋ       O        F     \     t            %        Ӌ  )     !     "   >     a     }  +             ׌       !             7     P     \      s                                4         U     t                    Ԏ                #  !   D     f  4     M     2        6     P  *   n  8        Ґ     ߐ               %  3   =  $   q  +             ב                    "      >     _     }            D               7      ;   8     t       !        Փ       s                       Ŕ     ؔ                    0     4     :                    Ö     ʖ     ֖            '   %  
   M     X     g     }                      H   ͗          )     E     U  %   d            #                       $      ;     \      {       "     (   ̙       %        7  2   Q            #     *   ʚ               
  #        3     8  	   J  	   T  "   ^  ;     #     <             ,     J  .   X  	          `          !     )   ;     e     i     o     w  q             
     !     0     G     Z     p            "   Þ                    0     G     ]     q       #        ß       g        d            -         N  !   b       "     '     Q        2     N     h     |                    ڢ               0     L     d      r                     ܣ                 -   <     j       "     b     )        H     ^     v  ,             ץ  	   ܥ  "     %   	     /     4     I     P  &   Y  )          ^          $   6  %   [       ^   4  _     }        q  )   (  '   R  >   z  D     !     '      -   H  #   v       )          )     )   +  ,   U                    ֬       E     $   H  A   m  )        ٭               -      L     m  q          :        L     j     y               ͯ            0        E     c     x  )     &        ߰               *  )   F     p  %     %     ,   ̱  '     :   !     \  -   {       .               '     $   7  "   \                 *               )     o               6   ]            0         ε  !     "     #   4     X     j            !        ߶  
           <     %   W  >   }          ŷ     ɷ     Ϸ            d     *     0     6   ܸ               )     >     R     X  0   r       !        ع       $        ,     E     \     z       $     "   ͺ  $             *      >     _     t                         һ       '        /     O  $   h  +     "        ܼ  )                  =     ]     r  '             ͽ       <         ;     \     d     w  m                   5     O     h  +     3     1          '   "  -   J     x  '     '     .     	         
     &     ?     [     w                                *     ?   J  B     p        >  /               .   $  O   S  )               	          5        P     b     z            :                   *     0     C     J     Y     b                      	                                 1     8     ?  
   M  
   X  	   c     m  !   s  )                         F   "  N   i       "               -      -   .  $   \  #     0     6                  .  (   <  1   e  )               !        	           >  %   V     |  &                     7     .   H  4   w                           %   .     T     i     ~                           ,        /     >     N     j     }       #               B        @     \     |                 &             !     /     8     V  &   p                      ;     V   *  "     &     !                  	  /   '  H   W  F     w     N   _  (               I     $   I  '   n       %                         $     '   :  *   b                 J             5     P  -   d  +          $          "     +     J   A  %                "              !     B     \     s                      %             +     I  %   f                           [        B  !   V     x                                             )     ?     Y     v                                        ,  1   L     ~                                1          0        5     J  !   `       "                                 '     <     H     W     g     x                 &                       6     T  '   i  &          L             0  !   D     f                                                #   .  #   R  $   v            &          !             (     =     B     Q  	   g  7   q       %     [     w   E  7     K     #   A  /   e                 &     U     @   i  Q                  +  +   @     l  R     L     .   )     X     o  F   t                              .      A     b     w       2     !     #        %     9     Q     b                           (     #   8     \     u            )               '     '   @  '   h       0               -     8   G            !                     .        L  !   j  B     E     B     }  X  .     "        (     E     d  /   z       >     	     	          
   &  %   1     W  ,   n  #          .     5     %   0     V     [  U  m  <    U        V  ?   q  \          7          /        &  0   F  (   w  9           "     3     #   R  3   v                      (        $     0     @  -   \  2     -     #     .     '   >  &   f  &     &               
             (  #   4  4   X            ;     	     7     ;   #     _  :   b  >     :     >     
   V     a     c     ~  *                    #             #     4     E     U  7   g       9                      (    :    Q !   j @    .    !        $   >    c )   }     m   F `           5    U    W    [    u    z     !    #        -    %   ' -   M    {             #                    +   4 &   `     "    #                   %    = 4   Y 8    #    9    J   %    p $    
    #               	 &   #	    J	    f	 7   x	     	 %   	 .   	 k   &
 "   
 "   
 K   
 &   $    K    a #   m G            "    
    2   ! 0   T                     '           '    ; #   Z    ~                 8       2    B &   Q    x ?    H    /   !    Q    k     !    ,        7    *   > +   i 4        !    ,    .   9 1   h <    W    (   / )   X        9 0   O S    A    
       !    .    H    a    $ A   @     '                    :       H    \ !   x             $    )   
    4    9    K B   _                         1       *    <    J #   ^ B    /            ,    ;   H 5    /            "               /        ^ v                        &       3    I )   g '            =    A   -     o     w     y       2          #     !   
! @   ,!    m! $   ! O   ! &   " #   (" %   L"    r"    v"    |" 
   " 2   " c   " )   ##    M# 	   ]#    g# $   j#    # 2   # 3   #    $    $$ 1   ?$    q$    $    $    $    $ !   $    % ,   ;%    h%    % /   %    %    %    % .   %    &    & .   "& 8   Q& ?   & !   &    &    & !   ' %   A' y   g' "   ' '   ( )   ,(    V( &   t( K   ( )   ( 9   ) ;   K) ;   ) (   ) &   ) :   * %   N*    t* %   * %   *    *    *    +    -+ $   I+    n+    + )   + (   + "   +    , J   6, #   ,    ,    ,    ,    ,    -    *- )   E- +   o- !   -    - @   - Y   . 9   x.     .    . ,   . ?    /    `/    w/     /    /     / K   / )   @0 /   j0 "   0    0    0    0    1 &   +1 (   R1 %   {1    1    1 "   1 :   1    2    $2 W   ,2 O   2 &   2    2 %   3    A3 '   Z3    3    4 #   %4    I4    ]4    t4    4    4    4    4    4 )  4   6    7    .7    G7    U7 *   g7    7 $   7 6   7    8    8 $   18    V8    \8    y8    8 !   8 P   8    9    9    19    G9 *   \9    9    9 (   9 !   9 ,   :    /:    >: &   U: (   |: .   :    : $   : +   ;    2; -   I;    w; :   ;    ;    ; $   ; 1   <    P<    R< 	   e<    o<    <    <    < 
   < ;   < Y   = ?   ^= ]   =    = !   >    0> ,   =>    j>    y> `   >    >    	? ,   )?    V?    Z?    `?    i?    |?    @    @    /@    ?@    X@    k@    @ $   @    @ (   @    	A    !A    =A    QA    eA    {A    A    A *   A .   A -   B    4B    B !   C &   C /   C    D '   *D    RD -   mD 8   D ]   D #   2E    VE    vE    E    E +   E '   E +   F '   >F *   fF &   F !   F    F ,   F    "G    ?G -   VG    G    G    G    G 4   G !   H (   9H 7   bH h   H 7   I !   ;I    ]I !   pI =   I    I    I    I ,   I *   ,J    WJ    _J    wJ    }J 9   J 0   J !   J x   K $   K 3   K 7   K    L y   M |   |M    M    N -   O 3   O a   O _   TP "   P 3   P -   Q    9Q '   YQ 5   Q     Q +   Q )   R ,   .R ,   [R     R $   R    R    R    	S     S P   S 4   T     @T '   aT &   T +   T ,   T    	U    (U &   U \   U D   NV    V    V    V    V    V %   W    =W B   ZW *   W    W     W 2   X 0   9X    jX    X    X $   X *   X    Y 0   1Y 0   bY 7   Y 2   Y F   Y &   EZ +   lZ    Z ?   Z    Z    Z 7   [ -   O[ $   }[    [ *   [    [ 0   [    )\ 	   0\ 5   :\    p\    \    ] 2   ]    $^    &^ -   *^     X^ ,   y^ 2   ^ 2   ^    _     #_ !   D_ 3   f_ &   _    _    _    _ 9   _ ?   8` <   x`    `    `    ` 6   ` !   `    !a s   5a ;   a 1   a L   b    db    kb    ~b    b    b $   b >   b %   c 7   Bc    zc    c )   c    c    c    d    $d !   7d $   Yd (   ~d (   d    d    d )    e    *e    Ie    _e    ue    e    e    e    e *   e ,   f    <f *   [f .   f )   f 
   f /   f    g 2   5g !   hg    g     g *   g *   g '   h    Ah ?   \h    h    h    h    h    h "   i    i !   i "   i    	j =   )j 9   gj 2   j    j #   j <   k    Lk -   Sk /   k 6   k    k    k    l (   $l '   Ml (   ul '   l '   l &   l    m    0m    Mm ,   Rm 9   m >   m    m    n .   1o    `o    uo 1   o W   o -   p    Cp    `p 	   np    xp A   p    p     p    q    !q !   <q J   ^q    q "   q 
   q    q    r !   r    5r    Mr    gr    }r    r 
   r    r    r    r    r    r    s    #s    +s    7s    Ds    [s    js 
   ~s $   s 2   s    s    s .   t +   Ct S   ot J   t    u %   u    Bu    Hu +   ^u (   u    u    u 2   u :   %v    `v    nv    v -   v 5   v 3   v    )w    8w *   Sw    ~w +   w $   w 7   w    %x 3   Cx &   wx *   x &   x N   x E   ?y E   y &   y    y #   z    4z (   Rz ,   {z (   z $   z    z    { -   4{    b{    w{ .   { (   {    {    { .   |    3| %   J| #   p| &   |    | /   | d   	} *   n} ,   }    } (   }    ~ %   .~ 4   T~ +   ~    ~    ~    ~ %   ~ ,       A +   S         9    g    3   M +    %       Ӏ     '    4   " T   W N        `    4           1 A   > 7    ,         ,       3    :    O    i &    *    /   ҄            3 `   S     4   ΅     >    1   ^     *        !   ʆ (    @    (   V     7    :   ·    	 &        G    a             )   ǈ     +    !   :     \    } (       Ɖ    ߉                .     !   ˊ             # &   )    P    c                ԋ #    '       =     R    s         ,                7   /    g    {            Ǎ         I        	 R   *    }          %   Ϗ ,       "    <    Y    q                Ő    Ր            	        . 4   J -         &   Α "        *   - 0   X     T            ,   ( %   U    { %           Г                8    M :   c :    D   ٔ        6 D   K     *       Ε                 
   2 D   =     '    ^   Ȗ    ' 9    Y    %   ; +   a            Ø (   ޘ ]    D   e U         -    -   L I   z 1   Ě g    M   ^ 8            `    !   h                Ӝ     %    &   .    U    r ,            ם     %       3 #   E     i #        4   ˞ .     6   / 4   f            ͟     8       ? $   ^ 2    ,    1    /    7   E %   } &    0   ʡ O       K    k      4    )   ߢ    	 3       R     r L    I    H   *        #       `  %  q      1    W    V                5  :  v  )           n  M  p               :   %  \                    6        `   d           K      S                  {            O            r     ?      t  '  8  9  k              s            ^  o                  S  a                                  L    k  `      
              3      <          U  3    R   e  .       "      G      ,   {       ^                            <  k  B  =   Q     .   X  !  C     K                    m                      
    j           e  2                  d   
     y    0                            V  x                  #  P       )         k  A           A                 {             _            N  L                       K    F     $                       i     O                        P  (    9   	       #  '  c   0  !               I    !                                         %                       i    q        o                  h             l  z                          i    X  f         
                                       <        s        !         @        v     |                        C        ,          *    T                   w      	   -      f   R  ;                                          y           G      #   g                     1             u      D         '   /  @   q    R                O      0  D            T             A      [  ]                    L   O                  ,    }              t     )          g  .    ,          4   ]  l        q           l  >                   w  D                }     &         x          M  \              \                                     4  ?            N  o      ~      d  *      r          e      /                   X    C                                         l      v              ^                            p    r     L         %             7  3      G  f  7    .                     H  s    Z                  r                            (                   W    (          h  8  w          S              ]           n          (  u               a      d  7            c              ]                        "                j  w               7                1        t          ?   u                    Q  M                        +       Z                        h       U  /            n                      '               I           z    W                              *       =  z          {             E        4  m      j      9           Y         3          6      S    2              &              u    c  s              i    \    5       Z      b              A      Q          k           G     v  F        x                      F  o                        a      &      x  -  `  _  B  ]      1   h  s         U               J  2          -   ?  ~    T      g     L               [  &  =          <    R      2                     J               I      f      N            F            W         )                    [                  u  5           ?    _           t             P                         U              o             ;            b  N    
           $          -                   i         \  K  Y  Z                                  w       8      E  |  *            M          /      I  @     b          z                   T  |                   j     ^                   ;          I      y            J               6         n     $        $       (      H      V  b  H   "  8           D  >     %      !    "  >  1     Y     3                           .  [  $  c        :    @  m  m    H  2     l             E                 	          9    ~                     g  }    |  	      +      *              >  D        O              C  :        f              M              =                9  Y            6   p      -             /      v     #               d  0  r  y   a                <   N   J             b          Z            A       :        S                         ,    K   +                     a      h           c      6                       }  E         5   ;      C       [       @          >                                                  W      ^         )          =        g      Q       F      e   X       J                  E  0           ~       Y               '  T      B       x      Q  	  H    e                             m   p   +  X      _  G                     P          4  7    +            B      V  p    V            t      U        5                   R    _       j    ;          4             "                 &   n      `    q   8   P  B                           total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: option '%c%s' doesn't allow an argument
 %s: option '%s' is ambiguous; possibilities: %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File size: %s
 File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS Import ZFS wrapping key stored in FILE. Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List coreboot tables. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... M MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MODULE MODULES Mail xorriso support requests to <bug-xorriso@gnu.org>. Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Option -- switches to native xorriso command mode. Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] PUBKEY_ID Paletted  Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot into firmware setup menu. Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Render Apple .disk_label. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show CBMEM console content. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show the contents of a file. Show the current mappings. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Switch to native disk drivers. If no modules are specified default set (pata,ahci,usbms,ohci,uhci,ehci) is used Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 T TARGET Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This entry can be booted by any user. This requires setting GRUB_DEFAULT=saved in %s/default/grub.\n Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. Your embedding area is unusually small.  core.img won't fit in it. Your xorriso doesn't support `--grub2-boot-info'. Some features are disabled. Please use xorriso 1.2.9 or later. Your xorriso doesn't support `--grub2-boot-info'. Your core image is too big. Boot as disk is disabled. Please use xorriso 1.2.9 or later. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `cryptomount' command fails: %s `loopback' command fails: %s `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format blocklist FILE blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s cannot compress the kernel image cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot get translator command line for path `%s': %s cannot open OS file `%s': %s cannot open `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. diskboot.img size must be %u bytes do not probe for filesystems in DEVICE domain name component is too long don't update LED state done embed FILE as an early config embed FILE as public key for signature checking embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enable ARCS (big-endian mips machines, mostly SGI) boot. Disables HFS+, APM, sparc64 and boot as disk image for i386-pc enable sparc boot. Disables HFS+, APM, ARCS and boot as disk image for i386-pc enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to get canonical path of `%s' failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification install GRUB images under the directory DIR/%s instead of the %s directory install even if problems are detected invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid block size invalid color specification `%s' invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no `/' in canonical filename no command is specified no decryption key available no network card found no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found pre-load specified modules MODULES premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory of TFTP server route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the argument `%s' requires an integer the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for label use COLOR for label background use COLOR for text use DIR as the EFI System Partition root. use FILE as font (PF2). use FILE as font for label use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub 2.00+20130519
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-05-22 19:54+0200
Last-Translator: Jakub Bogusz <qboosh@pld-linux.org>
Language-Team: Polish <translation-team-pl@lists.sourceforge.net>
Language: pl
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
                   pamięć całkowita: %d KiB
     Tryb preferowany niedostępny
     Preferowany tryb: %ux%u
   błędna suma kontrolna EDID   Wersja EDID: %u.%u
   Nie udało się zainicjować karty graficznej   Informacje niedostępne   informacje VBE: wersja %d.%d  wer.oprogramowania OEM: %d.%d
     lub:   (lewego)  (środkowego)  (prawego)  - partycja zaczyna się od %llu%sKiB  - rozmiar sektora %uB  - całkowity rozmiar w sektorach: %llu%sKiB  - całkowity rozmiar jest nieznany  [OPCJA...] %.*s: Parametr ARGP_HELP_FMT musi być dodatni %.*s: Parametr ARGP_HELP_FMT wymaga podania wartości %.*s: Nieznany parametr ARGP_HELP_FMT %d s Pozostało: %d s. %s zawiera system plików %s, który nie jest znany z rezerwowania miejsca na uruchamianie w stylu systemu DOS. Instalowanie programu GRUB może spowodować USZKODZENIE SYSTEMU PLIKÓW, jeśli ważne dane zostaną zastąpione przez program grub-setup (parametr --skip-fs-probe wyłącza to sprawdzanie; należy go używać na własne ryzyko) %s zawiera mapę partycji %s oraz LDM, co nie jest znane jako bezpieczne połączenie. Instalowanie programu GRUB może spowodować USZKODZENIE SYSTEMU PLIKÓW, jeśli ważne dane zostaną zastąpione przez program grub-setup (parametr --skip-fs-probe wyłącza to sprawdzanie; należy go używać na własne ryzyko) %s zawiera mapę partycji %s, która nie jest znana z rezerwowania miejsca na uruchamianie w stylu systemu DOS. Instalowanie programu GRUB może spowodować USZKODZENIE SYSTEMU PLIKÓW, jeśli ważne dane zostaną zastąpione przez program grub-setup (parametr --skip-fs-probe wyłącza to sprawdzanie; należy go używać na własne ryzyko) %s nie obsługuje UUID-ów %s generuje układ klawiatury dla GRUB-a przy użyciu ckbcomp\n %s jest przestarzały. Zamiast tego należy ustawić gfxpayload=%s przed polecenim "linux".
 %s jest przestarzały. Tryb VGA %d nie został rozpoznany. Zamiast tego należy ustawić gfxpayload=SZERxWYS[xGŁĘB] przed poleceniem "linux".
 %s nie jest jeszcze obsługiwany przez grub-mkconfig.\n %s, za pomocą systemu Hurd %s %s, za pomocą systemu Hurd %s (tryb ratunkowy) %s, za pomocą systemu Linux %s %s, za pomocą systemu Linux %s (tryb ratunkowy) %s, za pomocą systemu Xen %s i Linux %s %s, za pomocą systemu Xen %s i Linux %s (tryb ratunkowy) %s, za pomocą hipernadzorcy Xen %s, za pomocą systemu kFreeBSD %s %s, za pomocą systemu kFreeBSD %s (tryb ratunkowy) %s, za pomocą jądra %s (przez %s) %s, za pomocą jądra %s (przez %s, tryb ratunkowy) %s: NIEZGODNOŚĆ SKRÓTU
 %s: OK
 %s: BŁĄD ODCZYTU
 %s: Za dużo argumentów
 %s: To musi być uruchomione jako root\n %s: błąd: %s: informacja: %s: błędna opcja -- "%c"
 %s: opcja "%c%s" nie może mieć argumentów
 %s: opcja "%s" jest niejednoznaczna; możliwości: %s: opcja "--%s" nie może mieć argumentów
 %s: opcja "%s" musi mieć argument
 %s: opcja "-W %s" nie może mieć argumentów
 %s: opcja "-W %s" jest niejednoznaczna
 %s: opcja "-W %s" musi mieć argument
 %s: opcja musi mieć argument -- "%c"
 %s: opcja musi mieć argument - "%s"\n %s: nieznana opcja "%c%s"
 %s: nieznana opcja "--%s"
 %s: uwaga: (32-bitowy) (64-bitowy) (BŁĄD PROGRAMU) Nieznana wersja!? (BŁĄD PROGRAMU) Opcja powinna zostać rozpoznana!? (na %s) - etykieta "%s" - czas ostatniej modyfikacji %d-%02d-%02d %02d:%02d:%02d %s --DALEJ-- -h SKRÓT [-c PLIK [-p PRZEDROSTEK]] [PLIK1 [PLIK2...]] -l | -r | [-s] urządzenie_gruba dysk_systemu_operacyjnego. ,5 interfejs 16-bitowego trybu chronionego jest obsługiwany
 interfejs 16-bitowego trybu chronionego nie jest obsługiwany
 interfejs 32-bitowego trybu chronionego jest obsługiwany
 interfejs 32-bitowego trybu chronionego nie jest obsługiwany
 =WARTOŚĆ > RAM na dane nieulotne ACPI RAM dostępny dla ACPI Wyłączenie przez ACPI nie powiodło się ADRES ADRES WARTOŚĆ [MASKA] ADRES [ROZMIAR] ADRES1,MASKA1[,ADRES2,MASKA2[,...]] ADRES SERWER_DNS APM wyłączony
 APM odłączony
 APM włączony
 APM podłączony
 ARGP_HELP_FMT: wartość %s jest mniejsza lub równa %s ASCII Akceptuje znaki końca wiersza CR/NL w stylu systemu DOS. Aktywne terminale wejściowe: Aktywne terminale wyjściowe: Karta "%s":
 Dodaje serwer DNS Dodaje adres sieciowy. Dodaje trasę sieciową. Opcje zaawansowane dla systemu %s Opcje zaawansowane dla systemu %s (z użyciem hipernadzorcy Xen) Zezwala na przerwanie za pomocą klawisza Esc. Pyta, z jakiego pliku uruchomić. Zakłada wejście szesnastkowe. Zakłada, że wejście jest hasłem. Zakłada surowe wejście. Próba odszyfrowania klucza głównego... Próba zainstalowania programu GRUB na dysku z wieloma etykietami partycji lub zarówno z etykietą, jak i systemem plików. To nie jest jeszcze obsługiwane. Próba zainstalowania programu GRUB na dysku z wieloma etykietami partycji. To nie jest jeszcze obsługiwane. Próba zainstalowania programu GRUB na dysku bez partycji lub na partycji. To jest ZŁY pomysł. Dostępne terminale wejściowe: Dostępne terminale wyjściowe: B B/s ZRZUT_BIOSU [ZRZUT_INT10] BLOK BAJT:BIT Tryb obrazu w tle. Podstawowy katalog dla listy sum. Uruchamia system oparty na BIOS-ie. Uruchamia system operacyjny. Uruchamia w trybie pojedynczego użytkownika. Uruchamia z komunikatami debugowania. Uruchamia z większą ilością komunikatów. Uruchamianie "%s" Uruchamianie listy poleceń Uruchamia w trybie ślepym Ścieżka rozruchowa: %s
 Ścieżka rozruchowa: niedostępna
 Zatrzymuje w GDB CGA  KOLOR POLECENIE [ARGUMENTY] Stan bezczynności nie spowalnia procesora
 Stan bezczynności spowalnia procesor
 CS5536 pod %d:%d.%d
 Nie można włączyć obszaru ROM. Zmienia skonfigurowane urządzenia. Zmienia typ partycji Sprawdza klawisz Alt. Sprawdza klawisz Ctrl. Sprawdza klawisz Shift. Sprawdza funkcje procesora. Sprawdza skróty plików z listą skrótów z PLIKU. Sprawdza flagę 64-bitowego trybu procesora (domyślne). Sprawdza stan klawisza modyfikacji. Sprawdza, czy użytkownik jest na LIŚCIE_UŻYTKOWNIKÓW. Sprawdza plik konfiguracyjny skryptu GRUB-a pod kątem błędów składni. Czyści ekran. Usunięto flagę aktywności z %d. 
 Polecenia: Porównuje PLIK z LOKALNYM plikiem. Porównuje plik "%s" z "%s":
 Porównuje dwa pliki. Liczy UUID XNU urządzenia. Oblicza lub sprawdza sumę kontrolną. Konfiguruje port szeregowy. Kontynuuje pętle Konwertuje fonty z popularnych formatów plików do PF2 Kopiuje PLIK do LOKALNEGO pliku. Kopiuje PLIK na standardowe wyjście. Nie udało się zlokalizować sterownika FPSWA Nie udało się odnaleźć wolumenu fizycznego "%s". Na obrazie core może brakować niektórych modułów. Nie udało się załadować sha256 Nie udało się załadować sha512 Tworzy struktury BIOS-owe dla wstecznej kompatybilności z istniejącym OS. Tworzy pusty plik blokowy środowiska. Obecne typy terminfo: URZĄDZENIE URZĄDZENIE [PARTYCJA[+/-[TYP]]]... URZĄDZENIE musi być urządzeniem systemu operacyjnego (np. /dev/sda). NAZWA_URZĄDZENIA KATALOG KATALOG [zmienna OSBundleRequired] SERWER_DNS Narzędzie debugowania sterownika systemu plików. Określa obszary pamięci jako wadliwe (badram). Dekompresor zbyt duży Określa wpis menu. Określa podmenu. Usuwa adres sieciowy. Usuwa trasę sieciową. Usuwa podany wpis urządzenia loopback. Usuwa zmienne. Określa sterownik. Określa UUID systemu plików. Określa etykietę systemu plików. Określa typ systemu plików. Określa typ mapy partycji. Urządzenie %s: ID urządzenia: %s
 ID urządzenia: niedostępny Bezpośredni kolor, maska: %d/%d/%d/%d  poz: %d/%d/%d/%d Wyłącza ACPI. Wyłącza SMP. Wyłącza całe wyjście uruchamiania. Wyłącza/włącza SMART (0/1). Porzucanie niewłaściwie zagnieżdżonej partycji (%s,%s,%s%d) Statystyki bufora dysku: trafienia = %lu (%lu.%02lu%%), chybienia = %lu
 Licznik dysku musi poprzedzać listę dysków.
 Wyświetla wersję FPSWA. Wyświetla stan SMART. Wyświetla wiersz tekstu. Wyświetla listę blokową PLIKU. Wyświetla wyjście na wszystkich konsolach. Wyświetla tryb zasilania. Wyświetla użycie tego polecenia i kończy działanie. Wyświetla tę pomoc i kończy działanie. Wyświetla/ustawia bieżącą datę i czas. Bez wyświetlania końcowych znaków nowych wierszy. Bez wyświetlania komunikatów. Bez wykrywania napędu dyskietek. Bez używania APM do wyłączania komputera. Nic nie robi, pomyślnie kończąc działanie. Nic nie robi, niepomyślnie kończąc działanie. Bez wyświetlania komunikatów diagnostycznych uruchamiania. Bez wczytywania tablic komputera podanych przez listę tablic oddzielonych przecinkami. Nie uruchamia ponownie, tylko wyłącza. Bez zatrzymywania po pierwszym błędzie. Bez aktualizowania EBDA. Może naprawić niektóre błędy lub awarie w niektórych BIOS-ach, ale jest bezużyteczne w systemach operacyjnych nie pobierających RSDP z programu GRUB. ZMIENNA_ŚRODOWISKOWA ZMIENNA_ŚRODOWISKOWA [ZMIENNA_ŚRODOWISKOWA]... BŁĄD: nie znaleziono poprawnego układu klawiatury. Proszę sprawdzić wejście.
 Wciśnięcie klawisza Esc w każdej chwili powoduje zakończenie. WYRAŻENIE WYRAŻENIE ] Minął czas: %d.%03d s 
 Minął czas: %d.%03d s
 Osadzanie nie jest możliwe. Program GRUB może być instalowany z tymi ustawieniami tylko używając list blokowania. Jednakże, listy blokowania są NIEPEWNE, a ich używanie jest niezalecane. Emuluje sekwencję klawiszy Włącza interpretowanie sekwencji sterujących lewego ukośnika. Hasło ZFS:  Przechodzi do KDB podczas uruchamiania. Przechodzi do zwykłego trybu. Hasło dla %s%s%s (%s):  Hasło:  Nazwa użytkownika:  Błąd podczas przetwarzania parametrów wiersza poleceń
 Oblicza wyrażenie. Wyjście nie powiodło się Kończy działanie programu GRUB. Kończy działanie pętli Wychodzi ze zwykłego trybu. Eksportuje zmienne. Eksportuje tablice w wersji 1 do OS. Eksportuje tablic w wersjach 2 i 3 do OS. PLIK PIK [PARAMETR...] PLIK [ARGUMENTY...] PLIK | TEMPO [TONACJA1 CZAS_TRWANIA1] [TONACJA2 CZAS_TRWANIA2]...  PLIK... PLIK1 PLIK2 NAZWA_PLIKU POLECENIE SYSTEM_PLIKÓW [ZMIENNA] PLIK|prompt FORMAT Protokół FPSWA nie mógł odnaleźć interfejsu Wersja FPSWA: %x
 OD-DO[,OD-DO] OD[K|M|G] DO[K|M|G] FT_Init_FreeType nie powiodło się Uruchomienie domyślnych i zapasowych wpisów się nie powiodło.
 Nie udało się utworzyć drzewa device-mappera Powracanie do "%s" Rozmiar pliku: %s
 System plików "%s" nie obsługuje osadzania Pliki różnią się na pozycji %llu: 0x%x [%s], 0x%x [%s]
 Pliki różnią się rozmiarem: %llu [%s], %llu [%s]
 Nie można uzyskać dostępu do systemu plików Typ systemu plików %s Wypełnia hybrydę MBR napędu GPT URZĄDZENIA. Podane partycje będą częścią hybrydy MBR. Dozwolone jest do 3 partycji. TYP jest typem MBR. + oznacza, że partycja jest aktywna. Tylko jedna partycja może być aktywna. Kończy wczytywanie emulatora EFI. Najpierw wypróbowuje WSKAZÓWKĘ urządzenia, jeśli uruchomiono przez ARC. Jeśli WSKAZÓWKA kończy się przecinkiem, próbuje także podpartycje Najpierw wypróbowuje WSKAZÓWKĘ urządzenia, jeśli uruchomiono przez BIOS. Jeśli WSKAZÓWKA kończy się przecinkiem, próbuje także podpartycje Najpierw wypróbowuje WSKAZÓWKĘ urządzenia, jeśli uruchomiono przez EFI. Jeśli WSKAZÓWKA kończy się przecinkiem, próbuje także podpartycje Najpierw wypróbowuje WSKAZÓWKĘ urządzenia, jeśli uruchomiono przez IEEE1275. Jeśli WSKAZÓWKA kończy się przecinkiem, próbuje także podpartycje Najpierw wypróbowuje WSKAZÓWKĘ urządzenia, jeśli obsługiwany jest bezpośredni dostęp do sprzętu. Jeśli WSKAZÓWKA kończy się przecinkiem, próbuje także podpartycje Najpierw wypróbowuje WSKAZÓWKĘ urządzenia. Jeśli WSKAZÓWKA kończy się przecinkiem, próbuje także podpartycje Naprawia problem obrazu. Znaleziono %s na %s (%s)\n Znaleziono %s na %s\n Znaleziono system GNU Mach: %s Znaleziono moduł Hurda: %s Znaleziono jądro systemu NetBSD: %s\n Znaleziono tło: %s\n Znaleziono obraz initrd: %s\n Znaleziono katalog modułów jądra: %s\n Znaleziono jądro systemu FreeBSD: %s\n Znaleziono obraz Linuksa: %s\n Znaleziono motyw: %s\n Błąd Freetype %d podczas ładowania glifu 0x%x dla U+0x%x%s Zatrzymuje ustawienia bezpieczeństwa ATA do czasu przywrócenia. Piątek G GNU GRUB  wersja %s Menu startowe GRUB-a GRUB nie wie jeszcze, jak wytrzymać tę maszynę! Emulator GRUB-a. URZĄDZENIE_GRUBA=URZĄDZENIE_PLAN9 Błędne dane w ARGP_HELP_FMT: %s Generuje układ klawiatury GRUB-a z układu dla konsoli Linuksa. Generuje skrót hasła PBKDF2. Generuje plik konfiguracyjny GRUB-a. Generuje samodzielny (zawierający wszystkie moduły) obraz w wybranym formacie Uzyskuje sumę kontrolną CRC32 PLIKU. Pobiera informacje o buforze dysku. Uzyskuje/ustawia parametry dysku ATA. GiB GiB/s SUMA WSKAZÓWKA Wyłącza komputer, jeśli to możliwe używa APM. Wyłącza komputer. To polecenie nie działa ze wszystkimi implementacjami oprogramowania sprzętu. Obsługuje N bajtów w pliku wyjściowym. Witaj, Świecie Hercules  ID OBRAZ1 [OBRAZ2 ...] PUNKT_MONTOWANIA ŚCIEŻKA_DO_OBRAZU POLECENIA Importuje klucz obudowujący ZFS zapisany w PLIKU. Niepoprawne urządzenie wirtualne; typ niedostępny Wstawia moduł. Instaluje GRUB-a na dysku. Instalacja zakończona. Nie zgłoszono błędów. Błędne odniesienie wstecz Błędna nazwa klasy znaków Błędny znak sortowany Nieprawidłowe polecenie %s.
 Błędna zawartość \{\} Nieprawidłowe urządzenie "%s".
 Nieprawidłowy licznik dysku.
 Błędne poprzedzające wyrażenie regularne Błędny koniec zakresu Błędne wyrażenie regularne Wywołuje trasowanie konfiguracji użytkownika. k JĄDRO ARGUMENTY KLAWISZ Klawisz do szybkiego wystartowania tego wpisu. KiB KiB/s Końcowe urządzenie wirtualne (plik lub dysk) Przestarzały parametr "ask" nie jest już obsługiwany. Legenda: maska/pozycja=czerwień/zieleń/błękit/zarezerwowane Długość wygenerowanego skrótu Długość zarodka Wyświetla listę serwerów DNS Wyświetla listę urządzeń PCI. Wyświetla listę wszystkich plików. Wyświetla listę dostępnych trybów obrazu. Jeśli podano rozdzielczość, to wyświetla tylko tryby pasujące do niej. Wyświetla listę tablic coreboot. Wyświetla listę urządzeń i plików. Wyświetla listę urządzeń lub plików. Wyświetla listę urządzeń. Wyświetla listę plików w ŚCIEŻCE. Wyświetla listę map pamięci dostarczanych przez oprogramowanie sprzętu. Lista obsługiwanych trybów graficznych: Lista użytkowników, którzy mogą uruchamiać ten wpis. Wyświetla listę terminali wejściowych lub wybiera jeden. Wyświetla listę terminali wyjściowych lub wybiera jeden. Wyświetla listę bieżących zmiennych. Wyświetla listę wczytanych czcionek. Wyświetla listę zmiennych z pliku blokowego środowiska. Wczytuje 64 bitowy obraz systemu XNU. Wczytuje zrzut BIOS-u. Wczytuje środowisko systemu FreeBSD. Wczytuje moduł jądra FreeBSD (ELF). Wczytuje moduł jądra FreeBSD. Wczytuje kernel.sys FreeDOS-a. Wczytuje system Linux. Wczytuje NTLDR lub BootMGR. Wczytuje moduł jądra NetBSD (ELF). Wczytuje moduł jądra NetBSD. Wczytuje jądro Plan9. Wczytuje katalog rozszerzeń systemu XNU. Wczytuje pakiet rozszerzeń systemu XNU. Wczytuje rozszerzenie systemu XNU. Wczytuje obraz systemu XNU. Wczytuje ramdysk XNU. Będzie dostępny dla systemu operacyjnego jako md0. Wczytuje zrzut "device-properties". Wczytuje obraz PXE. Wczytuje układ klawiatury. Wczytuje jądro Multiboot 2. Wczytuje moduł Multiboot 2. Wczytuje jądro Multiboot. Wczytuje moduł Multiboot. Wczytuje obraz powitalny dla systemu XNU. Wczytuje obraz zahibernowanego systemu XNU. Wczytuje i inicjuje emulator EFI. Wczytuje inny program startowy. Wczytuje inny plik konfiguracji, ale przyjmuje tylko wpisy menu. Wczytuje inny plik konfiguracji bez zmieniania kontekstu, ale przyjmuje tylko wpisy menu. Wczytuje inny plik konfiguracji bez zmieniania kontekstu. Wczytuje inny plik konfiguracji. Wczytuje inny payload coreboot. Wczytuje obraz tła dla aktywnego terminala. Wczytuje tablice ACPI komputera i tablice podane w parametrach. Wczytuje obraz initrd. Wczytuje ramdysk kOpenBSD. Wczytuje jądro systemu FreeBSD. Wczytuje jądro systemu NetBSD. Wczytuje jądro systemu OpenBSD. Wczytuje tylko tablice podane przez listę tablic oddzielonych przecinkami. Wczytuje ten sam plik na różne sposoby. Wczytuje zmienne z pliku blokowego środowiska. Wczytuje klucz kryptograficzny zfs Wczytane fonty: Wczytywanie systemu GNU Mach... Wczytywanie systemu Linux %s... Wczytywanie systemu Xen %s... Wczytywanie początkowego dysku RAM... Wczytywanie jądra systemu FreeBSD %s... Wczytywanie jądra systemu Illumos... Wczytywanie systemu Hurd... M weryfikacja MAC nie powiodła się WPIS_MENU to numer, tytuł lub identyfikator wpisu z menu. MODUŁ MODUŁY Prośby o wsparcie dotyczące xorriso prosimy wysyłać na adres <bug-xorriso@gnu.org>. Tworzy uruchamialny obraz płyty CD, dysku, pendrive'a lub dyskietki z GRUB-em. Tworzy plik układu klawiatury GRUB-a. Tworzy rozruchowy obraz GRUB-a. Tworzy urządzenie wirtualne z pliku. Czyni partycję aktywną Zarządza mapowaniami napędów BIOS-u. Argumenty obowiązkowe lub opcjonalne dla długich opcji są również obowiązkowe lub opcjonalne dla odpowiednich krótkich opcji. Manipuluje urządzeniami PCI. Mierzenie czasu wykonania POLECENIA Pamięć wyczerpana Rodzaj pamięci: DDR2. Rodzaj pamięci: nieznany. Identyfikator wpisu menu. Nie podano wpisu menu. Typ wpisu menu. MiB MiB/s Obsługiwane jest minimalne modyfikowanie wierszy w stylu powłoki Bash. Naciśnięcie klawisza Tab wyświetla listę możliwych uzupełnień polecenia po wpisaniu pierwszego słowa. W innych miejscach naciśnięcie klawisza Tab wyświetla listę możliwych uzupełnień urządzeń lub plików. %s Obsługiwane jest minimalne modyfikowanie ekrany w stylu programu Emacs. Naciśnięcie klawisza Tab wyświetla uzupełnienia. Naciśnięcie Ctrl-X uruchamia, Ctrl-C lub F2 powoduje przejście do wiersza poleceń, a Esc odrzuca zmiany i powoduje powrót do menu programu GRUB. Za mało argumentów
 Brak pliku wejściowego
 Poniedziałek Monochromatyczny  Więcej niż jedno urządzenie instalacji? Więcej niż jeden wpis menu? Montuje urządzenie kryptograficzne. Montuje wszystkie wolumeny z ustawioną flagą "boot". Montuje wszystko. Montuje wg UUID-a. Montuje urządzenia kryptograficzne. NAZWA NAZWA [ZMIENNA] [WSKAZÓWKI] LICZBA LICZBA_SEKUND Nazwa	Liczba użyć	Zależności
 Używane są natywne sterowniki dysku. Odmowa użycia interfejsu firmware dysku. Protokoły sieciowe: Zapisano nowy MBR do "%s"
 Nie znaleziono CS5536 Nie znaleziono FPSWA Brak dostępnych statystyk czasu rozruchu
 Nie podano polecenia.
 Nie podano urządzenia.
 Brak dostępnych statystyk bufora dysku
 Nie przemapowano żadnych dysków Nie wykryto żadnego znanego systemu plików Nic nie pasuje Nie podano ścieżki.
 Nie podano ścieżki ani urządzenia.
 Brak poprzedniego wyrażenia regularnego Brak dostępnego drzewa urządzeń wirtualnych Nie-chain 4  Za mało parametrów dla polecenia.
 Teraz proszę podłączyć zdalny debugger. Liczba iteracji PBKDF2 Numer dysku OS ---> Urządzenie GRUB-a/BIOS-u błąd otwarcia pliku OS %s: %s Opcja -- przełącza do natywnego trybu polecenia xorriso. Opcje: Wyszukiwanie spoza zakresu: %d
 Podstawienie spoza zakresu (%d, %d)
 Nadpisuje odgadnięte mapowania urządzeń Plan9. P PARTYCJA POLECENIA ŚCIEŻKA skrót PBKDF2 hasła to %s
 PORT PORT WARTOŚĆ [MASKA] ID_KLUCZA_PUBLICZNEGO Z paletą  Przetwarza przestarzałą konfigurację w nowym kontekście Przetwarza przestarzałą konfigurację w nowym kontekście, przyjmując tylko wpisy menu Przetwarza przestarzałą konfigurację w tym samym kontekście Przetwarza przestarzałą konfigurację w tym samym kontekście, przyjmując tylko wpisy menu Nr części: %s.
 Partycja %d jest teraz aktywna. 
 Partycja %s: Partycje typu "%s" nie obsługują osadzania Ścieżka: %s
 Ścieżka: niedostępna Wykonuje POLECENIA na partycji.
"parttool PARTYCJA help" wyświetli listę dostępnych poleceń. Wykonuje zapytanie DNS Wykonuje autokonfigurację IPV6 Wykonuje bezpośrednie i odwrotne mapowania. PiB PiB/s Planowy  Odtwarza dźwięk. Proszę nie używać starego tytułu "%s" dla GRUB_DEFAULT, ale "%s" (dla wersji starszych niż 2.00) lub "%s" (dla 2.00 lub nowszych) GUID puli: %016llx
 GUID puli: niedostępny Nazwa puli: %s
 Nazwa puli: niedostępna Stan puli: aktywna Stan puli: zniszczona Stan puli: wyeksportowana Stan puli: urządzenie ARC poziomu 2 Stan puli: potencjalnie aktywna Stan puli: zarezerwowana dla hot spare'a Stan puli: niedostępna Stan puli: nie zainicjowana Możliwe parametry: Możliwe polecenia: Możliwe urządzenia: Możliwe pliki: Możliwe partycje: Możliwe są: Przedwczesny koniec wyrażenia regularnego Naciśnięcie dowolnego klawisza kontynuuje... Naciśnięcie dowolnego klawisza uruchomi xnu Naciśnięcie klawisza Enter uruchamia wybrany system operacyjny, "e" modyfikuje polecenia przed uruchomieniem, a "c" przechodzi do wiersza poleceń. Naciśnięcie klawisza Enter uruchamia wybrany system operacyjny, "e" modyfikuje polecenia przed uruchomieniem, a "c" przechodzi do wiersza poleceń. Klawisz Esc powoduje przejście do poprzedniego menu. Wyświetla informacje o pamięci. Wypisuje informacje ZFS o URZĄDZENIU. Wypisuje ZFS-BOOTFSOBJ lub zapisuje do ZMIENNEJ Wyświetla listę bloków. Wyświetla i wykonuje parametr blokowy. Wyświetla stos wywołań. Wyświetla tożsamość i ustawienia napędu. Wyświetla rozmiary w formacie czytelnym dla człowieka. Wyszukanie informacji o urządzeniu dla podanej ścieżki (lub urządzenia, jeśli podano -d) RAM przechowujący tablice coreboot RAM przechowujący kod firmware Slot RAM numer %d
 WYRAŻENIE_REGULARNE CIĄG Obraz ROM jest dostępny. Odczytuje spod ADRESU wartość 16-bitową. Odczytuje z PORTU wartość 16-bitową. Odczytuje spod ADRESU wartość 32-bitową. Odczytuje z PORTU wartość 32-bitową. Odczytuje spod ADRESU wartość 8-bitową. Odczytuje z PORTU wartość 8-bitową. Odczytuje tylko bajty DŁUGOŚCI. Restart nie powiódł się Przeładowuje do menu konfiguracji firmware. Ponownie uruchamia komputer. Potwierdzenie hasła:  Rejestr %x urządzenia %x:%02x.%x zawiera %x
 Wyrażenie regularne zbyt duże Usuwa serwer DNS Usuwa moduł. Usuwa zmienną środowiskową. Usuwa wszystkie obszary pamięci w podanym zakresie. Renderowanie .disk_label Apple'a. Prosimy zgłaszać błędy na adres %s.
 Prosimy zgłaszać błędy na adres <bug-grub@gnu.org>. Żądano terminala szeregowego, ale nie podano GRUB_SERIAL_COMMAND. Użyte zostaną parametry domyślne. Przywraca wszystkie mapowania do domyślnych wartości. Pobiera informacje o urządzeniu. Powraca z funkcji. Wraca do znaku zachęty IEEE1275. Proszę uruchomić "gdb %s %d" i ustawić ARGS.HOLD na zero.
 Wpisanie "go" wznowi GRUB-a. SEK KRÓTKA_NAZWA KRÓTKA_NAZWA KARTA ADRES [ADRES_SPRZĘTOWY] KRÓTKA_NAZWA SIEĆ [INTERFEJS| gw BRAMKA] ROZMIAR ŹRÓDŁO|-u UUID|-a|-b CIĄG Sobota Zapisuje odczytaną wartość do zmiennej NAZWA_ZMIENNEJ. Zapisuje zmienne do pliku blokowego środowiska. Wypisuje tekst "Witaj, Świecie". Wyszukuje urządzenia według UUID. Jeśli podano ZMIENNĄ, pierwsze odnalezione urządzenie jest ustawiane na ZMIENNĄ. Wyszukuje urządzenia według pliku. Wyszukuje urządzenia według UUID systemu plików. Wyszukuje urządzenia według etykiety systemu plików. Wyszukuje urządzenia według pliku, etykiety systemu plików lub UUID systemu plików. Jeśli podano --set, pierwsze odnalezione urządzenie jest ustawiane na ZMIENNĄ. Jeśli nie podano nazwy zmiennej, to zostanie użyta "root". Wyszukuje urządzenia według pliku. Jeśli podano ZMIENNĄ, pierwsze odnalezione urządzenie jest ustawiane na ZMIENNĄ. Wyszukuje urządzenia według etykiety. Jeśli podano ZMIENNĄ, pierwsze odnalezione urządzenie jest ustawiane na ZMIENNĄ. Sektor %llu jest już używany przez kontroler RAID "%s"; pominięto go. Proszę skontaktować się z producentem, aby nie zapisywał danych w odstępie za MBR Sektor %llu jest już używany przez program "%s"; pominięto go. To oprogramowanie może powodować w przyszłości problemy z uruchomieniem systemu lub innego rodzaju. Proszę poprosić autorów o nie zapisywanie danych na ścieżce rozruchowej Wybiera urządzenie wg położenia na szynie. Wybiera urządzenie wg ID producenta i urządzenia. Ustawia APM (Zaawansowane zarządzanie zasilaniem)
(1=niskie, ..., 254=wysokie, 255=wyłączone). Ustawia AAM (Automatyczne zarządzanie akustyką)
(0=wyłączone, 128=ciche, ..., 254=szybkie). Ustawia OEMID z RSDP, XSDT i RSDT. Ustawia identyfikator OEMTABLE z RSDP, XSDT i RSDT. Ustawia wersję OEMTABLE z RSDP, XSDT i RSDT. Ustawia flagę partycji ukrytej Ustawia zmienną na wartość zwrotną. Ustawia zmienną na pierwsze odnalezione urządzenie. Ustawia zmienną środowiskową. Ustawia kolor tła dla aktywnego terminala. Ustawia pole twórcy z RSDP, XSDT i RSDT. Ustawia wersję twórcy z RSDP, XSDT i RSDT. Ustawia zmienną środowiskową debugowania. Ustawia napęd w tryb uśpienia. Ustawia napęd w trybie oczekiwania. Ustawia parametry pozycyjne. Ustawia urządzenie główne. Ustawia czas oczekiwania przed przejściem do stanu oczekiwania
(0=wyłączone, 1=5 sekund, 2=10 sekund, ..., 240=20 minut, 241=30 minut, ...). Ustawia TYP terminfo TERMINALA.
 Ustawia domyślny wpis rozruchowy dla GRUB-a tylko dla następnego uruchomienia. Ustawia domyślny wpis menu rozruchowego dla GRUB-a. Ustawia adres portu szeregowego. Ustawia parzystość portu szeregowego. Ustawia prędkość portu szeregowego. Ustawia bity zatrzymania portu szeregowego. Ustawia długość słowa portu szeregowego. Ustawia jednostkę szeregową. Ustawia obrazy do uruchomienia z URZĄDZENIA.

Zwykle ten problem nie powinien być bezpośrednio uruchamiany. Proszę użyć programu grub-install zamiast tego. Ustawia hasło użytkownika (PBKDF2).  Ustawia hasło użytkownika (w zwykłym tekście). Niezalecane i potencjalnie niebezpieczne. Ustawia zmienną za pomocą danych wprowadzonych przez użytkownika. Ustawia zmienne. Ustawia typ partycji na 0x%x
 Przesuwa parametry pozycyjne. Wyświetla informacje ACPI. Wyświetla informacje APM. Wyświetla zawartość konsoli CBMEM. Wyświetla komunikat pomocy. Wyświetla długą listę z bardziej szczegółowymi informacjami. Wyświetla szesnastkowo zawartość PLIKU. Wyświetla wczytane moduły. Wyświetla zawartość pamięci. Pokazuje surową zawartość sektora IDENTIFY ATA. Pokazuje surową zawartość pliku lub pamięci. Wyświetla zawartość pliku. Wyświetla bieżące mapowania. Wyświetla ten komunikat. Wyświetla tylko tablice w wersji 1. Wyświetla tylko tablice w wersjach 2 i 3. Zamknięcie nie powiodło się Symuluje polecenie "initrd" programu grub-legacy Symuluje polecenie "kernel" programu grub-legacy Symuluje polecenie "modulenounzip" programu grub-legacy Symuluje polecenie "password" programu grub-legacy Symuluje polecenie "password" programu grub-legacy w trybie wpisu menu Pomija N bajtów z pliku wyjściowego. Pomija bajty wyrównania z początku pliku. Slot %d otwarty
 Znaleziono elementy systemu Hurd, ale za mało do uruchomienia. Podaje nazwę pliku. Podaje sumę do użycia. Podaje jeden lub więcej plików czcionek do wczytania. Określa rozmiar dla każdej operacji odczytu Podaje liczbę plików wejściowych. Szybkość: %s 
 Uruchamia zaślepkę GDB na podanym porcie Zatrzymuje zaślepkę GDB Zapisuje NUMER dopasowanego elementu w ZMIENNEJ. Sukces Niedziela Ogranicza zwykłe wyjście (ostrzeżenia pozostają). Przełącza na natywne sterowniki dysku. Jeśli nie podano modułów, używany jest zestaw domyślny (pata,ahci,usbms,ohci,uhci,ehci) Błąd składni w linii %u
 W wygenerowanym pliku konfiguracyjnym GRUB-a wykryto błędy składni.
Proszę się upewnić, że w plikach /etc/default/grub oraz /etc/grub.d/*
nie ma błędów lub wypełnić raport o błędzie z załączonym plikiem %s. Przestrzeń we/wy kontrolera SM-bus jest pod 0x%x
 T CEL Nie określono formatu docelowego (opcji -O). Terminal posiada podane wymiary. Terminal obsługuje tylko ASCII [domyślne]. Terminal obsługuje logicznie porządkowane UTF-8. Terminal obsługuje wizualnie porządkowane UTF-8. Testuje obsługę USB. Sprawdza bit BAJT:BIT w CMOS-ie. Testuje szybkość odczytu pliku. Testuje, czy WYRAŻENIE_REGULARNE pasuje do CIĄGU. Testuje podsystem obrazu w trybie SxW. Testuje podsystem obrazu. Tylko tekst Pliki są identyczne.
 Wyróżniony wpis zostanie wykonany automatycznie za %ds. Ta pozycja może być uruchomiona przez dowolnego użytkownika. To wymaga ustawienia GRUB_DEFAULT=saved w %s/default/grub.\n Czwartek TiB TiB/s Narzędzie do modyfikacji pliku blokowego środowiska. Całkowity rozmiar flasha: %d B.
 Kończący znak "\" Przekształca 64-bitowy UUID do formatu odpowiedniego dla XNU. Jeśli podano -l, zachowuje małe litery, jak blkid. Przekształca nazwę pliku w systemie na nazwę dla GRUB-a. Tłumaczy ciąg za pomocą bieżących ustawień. Polecenie "%s --help" lub "%s --usage" pozwoli uzyskać więcej informacji.
 Wtorek UŻYTKOWNIK HASŁO UŻYTKOWNIK HASŁO_PBKDF2 UŻYTKOWNIK[,UŻYTKOWNIK] UTF-8 Nie udało się utworzyć potoku: %s Nie udało się określić platformy. Proszę użyć --target. Nie udało się utworzyć procesu: %s Nie udało się otworzyć strumienia z polecenia %s: %s Nie można pobrać stanu puli Dekompresuje dane. Dekompresuje plik przed sprawdzeniem sum. Nieznany typ adresu %d
 Nieznane polecenie "%s".
 Nieznany format kompresji %s Nieznane kodowanie Nieznany dodatkowy parametr "%s". Nieznana cecha fontu gsub 0x%x (%s)
 Nieznany kod skaningowy klawisza 0x%02x
 Nieznany identyfikator kodu klawisza %s
 Nieznany błąd systemowy Nieznany tryb obrazu  Nieznany typ urządzenia wirtualnego: %s
 Usuwa emulator EFI z pamięci. Niesparowane ( lub \( Niesparowane ) lub \) Niesparowane [ lub [^ Niesparowane \{ Nieznana opcja "%s"\n Nieznany stan puli Nie obsługiwany typ adresu %d
 Nie obsługiwane określenie pokrycia: %d
 Nie obsługiwany typ adresu sprzętowego %d
 Nie obsługiwany format obrazu Nie obsługiwana flaga podstawienia: 0x%x
 Nie obsługiwane określenie podstawienia: %d
 Nie obsługiwany rodzaj podstawienia: %d
 Składnia: Składnia: %s -o WYJŚCIE ARGUMENTY_CKBMAP...\n Składnia: %s URZĄDZENIE
 Składnia: %s [PLIK_WEJŚCIOWY [PLIK_WYJŚCIOWY]]
 Składnia: %s [OPCJA] WPIS_MENU\n Składnia: %s [OPCJA]\n Używa napędu CD-ROM jako root. Używa zdalnego debuggera GDB zamiast DDB. Użycie ŁAŃCUCHA jako ciała wpisu menu. Używa wkompilowanego urządzenia root. Używa konsoli szeregowej. Należy użyć klawiszy %C i %C, aby wybrać wyróżniony wpis. ZMIENNA INTERFEJS NUMER OPIS NAZWA_ZMIENNEJ Widoczne odliczanie. Sprawdza oddzielony podpis. Wersja %u.%u
32-bitowy CS = 0x%x, długość = 0x%x, offset = 0x%x
16-bitowy CS = 0x%x, długość = 0x%x
DS = 0x%x, długość = 0x%x
 Urządzenie wirtualne zdegradowane Urządzenie wirtualne zawiodło Urządzenie wirtualne odłączone Urządzenie wirtualne podłączone Urządzenie wirtualne usunięte UWAGA: konsola nie będzie dostępna dla systemu operacyjnego UWAGA: nie wykonano instalacji specyficznej dla platformy UWAGA: nie obsługiwane parametry cechy fontu: %x
 SZEROKOŚĆxWYSOKOŚĆ Czeka przez podaną liczbę sekund. Czeka na naciśnięcie klawisza po każdym wierszu wyjścia. Uwaga: Ostrzeżenie: nieprawidłowy kolor tła "%s"
 Ostrzeżenie: nieprawidłowy kolor tekstu "%s"
 Ostrzeżenie: błąd składni (brak ukośnika) w "%s"
 Środa Windows NT/2000/XP (loader) Windows Vista/7 (loader) Zapisuje WARTOŚĆ 16-bitową pod ADRES. Zapisuje WARTOŚĆ 16-bitową do PORTU. Zapisuje WARTOŚĆ 32-bitową pod ADRES. Zapisuje WARTOŚĆ 32-bitową do PORTU. Zapisuje WARTOŚĆ 8-bitową pod ADRES. Zapisuje WARTOŚĆ 8-bitową do PORTU. Zapisano bajty SPD: %d B.
 Hipernadzorca Xen, wersja %s YUV  Należy podać co najmniej jedno polecenie.
 Należy ręcznie ustawić "SystemPartition" i "OSLoader". Obszar osadzania jest niezwykle mały, nie pomieści core.img. Zainstalowana wersja xorriso nie obsługuje "--grub2-boot-info". Niektóre opcje są wyłączone. Proszę użyć xorriso 1.2.9 lub nowszego. Zainstalowana wersja xorriso nie obsługuje "--grub2-boot-info". Obraz core jest zbyt duży. Rozruch jako dysk jest wyłączony. Proszę użyć xorriso 1.2.9 lub nowszego. [--append|--remove] [TERMINAL1] [TERMINAL2]... [--force|--bpb] PLIK [--md5] HASŁO [PLIK] [--no-mem-option] [--type=TYP] PLIK [PARAMETR...] [-1|-2] [--exclude=TABLICA1,TABLICA2|--load-only=TABLICA1,TABLICA2] PLIK1 [PLIK2] [...] [-c PLIK [-p PRZEDROSTEK]] [PLIK1 [PLIK2...]] [-d] NAZWA_URZĄDZENIA PLIK. [-e|-n] CIĄG [-f PLIK] [-f PLIK] nazwa_zmiennej [...] [-f|-l|-u|-s|-n] [--hint WSKAZÓWKA [--hint WSKAZÓWKA]...] NAZWA [-h|-p|-r] [PLIK] [-l] UUID_GRUBA [NAZWA_ZMIENNEJ] [-l|-h|-a] [PLIK...] [-m (stretch|normal)] PLIK [-s POŁOŻENIE] [-d URZĄDZENIE] [-s POŁOŻENIE] [-d URZĄDZENIE] [-v ZMIENNA] REJESTR[=WARTOŚĆ[:MASKA]] [-s ROZMIAR] NAZWA_PLIKU [ADRES|comJEDNOSTKA][,PRĘDKOŚĆ] [PARAMETR] [KARTA [ADRES_SPRZĘTOWY]] [KARTA] [ZMIENNA_ŚRODOWISKOWA=WARTOŚĆ] [ZMIENNA_ŚRODOWISKOWA] [KLAWISZ1] [KLAWISZ2] ... [MODUŁ1 MODUŁ2 ...] [NUMER:]NAZWA_ZMIENNEJ [LICZBA] [OPCJE...] [OPCJE] [OPCJE] DYSK [OPCJE] PLIK_LUB_URZĄDZENIE [OPCJE] PLIKI_FONTÓW [OPCJA]... [MODUŁY] [OPCJA]... [PLIK|URZĄDZENIE] [OPCJE] [ŚCIEŻKA] [WZORZEC...] [LISTA_UŻYTKOWNIKÓW] [WARTOŚĆ]... [SZERxWYS[xGŁĘB]] [SZERxWYS] [[-a|-u|-v] [-g SxW] TERMINAL [TYP]] [[rok-]miesiąc-dzień] [godzina:minuta[:sekunda]] [szyna]:[slot][.funkcja] [producent]:[urządzenie] polecenie "cryptomount" nie powiodło się: %s polecenie "loopback" nie powiodło się: %s nie znaleziono "obppath" w katalogach powyżej %s ani przy wykrywaniu nazw IEEE1275 przypisano argumentowi "%s" wartość, podczas gdy nie wymaga on wartości brak dostępu dodaje segment NOTE dla CHRP IEEE1275 adres nie znaleziono adresu próba odczytu lub zapisu poza dyskiem "%s" próba odczytu lub zapisu poza partycją próba odczytu za końcem pliku próba ustawienia poza plikiem próba odczytania obrazu core "%s" z programu GRUB ponowna próba odczytania obrazu core "%s" z programu GRUB RAM dostępny dostępne formaty: błędny podpis adres_pocz = 0x%llx, długość = 0x%llx, %s
 adres_pocz = 0x%llx, długość = 0x%llx, typ = 0x%x
 plik bitmapy "%s" nie jest w obsługiwanym formacie blocklist PLIK listy bloków są błędne rozmiar bloku nie jest podzielny przez 512 nie można przerwać 0 pętli nie można określić systemu plików na %s nie można odnaleźć polecenia "%s" nie można zamontować zaszyfrowanego wolumenu "%s": %s nie można otworzyć "%s": %s nie można otworzyć pliku %s, indeks %d: błąd %d nie udało się odczytać list bloków nie udało się odczytać list bloków: %s nie można skompresować obrazu jądra nie można odnaleźć urządzenia GRUB-a dla %s. Proszę sprawdzić device.map nie można odnaleźć urządzenia dla %s (czy /dev jest zamontowany?) nie można uzyskać linii poleceń translatora dla ścieżki "%s": %s nie można otworzyć pliku OS "%s": %s nie można otworzyć "%s": %s nie można poprawnie odczytać "%s" nie można odczytać "%s": %s nie można zmienić nazwy pliku %s na %s nie można przywrócić pierwotnego katalogu nie można przemieścić się w "%s": %s nie można wykonać stat na "%s": %s nie można zapisać na CD-ROM nie można zapisać do "%s": %s nie można pisać na standardowe wyjście: %s nie znaleziono karty cat PLIK weryfikacja sumy kontrolnej nie powiodła się wybiera rodzaj kompresji dla obrazu core cmp PLIK LOKALNY comJEDNOSTKA[,PRĘDKOŚĆ] porównanie się nie powiodło w offsecie %llu połączenie odrzucone przekroczony limit czasu połączenia przekształca do fontu pogrubionego obraz core jest za duży (0x%x > 0x%x) niezgodność wersji core.img nie udało się automatycznie skonfigurować %s nie udało się odnaleźć wymaganego urządzenia składowego systemu plików na wielu urządzeniach nie udało się odnaleźć konsumenta geli nie udało się odnaleźć klasy "part" geom nie udało się otworzyć geom nie udało się odczytać metadanych ELI nie udało się uzyskać UUID-a nie udało się odczytać UUID-a geli nie udało się odczytać danych losowych na zarodek nie udało się wysłać pakietu sieciowego cp PLIK LOKALNY crc PLIK błąd kryptograficzny numer %d cygwin_conv_path() nie powiodło się usuwa mapę urządzeń, jeśli już istnieje cel nieosiągalny licznik urządzenia przekracza ograniczenie wyłącza hinting nie znaleziono dysku "%s" dysk nie istnieje, więc próba przejścia do partycji %s moduł dysku do użycia (biosdisk lub natywny). Ta opcja jest dostępna tylko na platformach z BIOS-em. rozmiar pliku diskboot.img musi wynosić %u bajtów nie wykrywa systemów plików w URZĄDZENIU element nazwy domeny jest zbyt długi pomija uaktualnienie stanu diod gotowe osadza plik jako wczesną konfigurację osadza PLIK jako klucz publiczny do kontroli podpisu osadzanie nie jest możliwe, ale jest wymagane przy instalacji na RAID-ie lub LVM-ie osadzanie nie jest możliwe, ale jest wymagane dla instalacji na wielu dyskach włącza rozruch ARCS (maszyny mips big-endian, głównie SGI); wyłącza HFS+, APM, sparc64 i rozruch jako obraz dysku dla i386-pc włącza rozruch typu sparc; wyłącza HFS+, APM, ARCS oraz rozruch jako obraz dysku dla i386-pc Enter: uruchomienie, "e": opcje, "c": linia poleceń blok środowiska zbyt mały błąd: %s.
 oczekuje obrazów GRUB-a poniżej KATALOGU/%s zamiast katalogu %s nie udało się uzyskać znormalizowanej ścieżki "%s" błąd podczas odczytu sektora 0x%llx z "%s" nie udało się odczytać hasła błąd podczas zapisu sektora 0x%llx na "%s" fałsz wadliwy RAM (BadRAM) nie znaleziono pliku "%s" oczekiwano nazwy pliku oczekiwano nazwy pliku lub tempa i nut system plików "%s" nie obsługuje etykiet system plików "%s" nie obsługuje list bloków obraz firmware jest za duży wymusza autohinting oczekiwano czterech argumentów fwstart.img nie pasuje do żadnej znanej dobrej wersji. Ewentualna kontynuacja na własne ryzyko generuje obraz w FORMACIE wyświetla krótką informację o składni polecenia wyświetla ten tekst pomocy podany argument jest urządzeniem systemowym, a nie ścieżką grub-mkimage został skompilowany bez obsługi XZ grub> zatrzymuje na SEK sekund (domyślnie 3600) hex PLIK ignoruje bitmapy przy wczytywaniu błędne określenie wymiarów terminala instaluje obrazy GRUB-a poniżej KATALOGU/%s zamiast katalogu %s instaluje nawet, jeśli wykryto problemy błędne hasło PBKDF2 błędny znacznik magiczny ELF zależny od architektury błędny znacznik magiczny ELF niezależny od architektury błędny rozmiar bloku nieprawidłowe określenie koloru "%s" błędny blok środowiska nieprawidłowa nazwa pliku "%s" błędny zakres fontu błędny format linii: %sn błędny parametr %s nieprawidłowa wartość pominięcia %lld błędna nazwa zmiennej "%s" błędne określenie trybu graficznego "%s" błąd ioctl-a GET_ARRAY_INFO: %s błąd ioctl-a GET_DISK_INFO: %s błąd ioctl-a RAID_VERSION: %s obraz jądra jest za duży (0x%x > 0x%x) wypisuje adresy sieciowe wypisuje karty sieciowe wypisuje listę tras ls ŚCIEŻKA plik lzop uszkodzony sprawia, żeby napęd był uruchamialny także jako dyskietka (domyślne dla urządzeń fdX). Może źle działać z niektórymi BIOS-ami. brak symbolu "%c" brak obowiązkowej opcji dla "%s" moduł "%s" nie jest załadowany nie wczytano modułu nazwa wymagany jest obraz i punkt montowania nie znaleziono APM nie znaleziono informacji DHCP nie znaleziono opcji DHCP %d nie znaleziono opcji DHCP nie znaleziono rekordu DNS nie otrzymano odpowiedzi DNS brak skonfigurowanych serwerów DNS brak "/" w znormalizowanej nazwie pliku nie podano polecenia niedostępny klucz deszyfrujący nie znaleziono karty sieciowej nie podano serwera partycja nie istnieje nie znaleziono pasującego trybu graficznego brak tablicy symboli nie podano terminala brak odstępu w obrazie core odnaleziono dane nie wyrównane do sektora w pliku core to nie jest katalog to nie jest partycja główna to nie jest zwykły plik poza ciałem funkcji oczekiwano jednego argumentu inne oprogramowanie używa obszaru osadzania i nie ma wystarczająco dużo miejsca na core.img. Takie oprogramowanie zwykle próbuje zapisać dane w sposób zapobiegający wykryciu. Zalecamy to wyjaśnić brak pamięci zapisuje wygenerowany obraz do PLIKU [domyślnie na standardowe wyjście] plik wyjściowy musi być podany zapisuje wygenerowaną konfigurację do PLIKU [domyślnie na standardowe wyjście] wykryto przepełnienie hasła nie zgadzają się wykonuje autokonfigurację bootp nie znaleziono wolumenu fizycznego %s załadowanie na początku podanych MODUŁÓW przedwczesny koniec pliku przedwczesny koniec pliku %s wciska klawisz CapsLock wciska klawisz Insert wciska klawisz NumLock wciska klawisz ScrollLock wciska SysRq wciska lewy Alt wciska lewy Ctrl wciska lewy Shift wciska prawy Alt wciska prawy Ctrl wciska prawy Shift wyświetla wersję programu wyświetla informację o wersji i kończy działanie wyświetla ten komunikat i kończy działanie wyświetla więcej komunikatów. nie znaleziono klucza publicznego %08x błąd odczytu w offsecie %llu: %s czyta tekst z PLIKU. podkatalog względny na serwerze sieciowym relokacja 0x%x jeszcze nie jest zaimplementowana RAM zarezerwowany pobiera opcję DHCP i zapisuje do ZMIENNEJ. Jeśli ZMIENNA to -, wypisuje wartość. katalog główny serwera TFTP wykryto pętlę na trasie zapisuje obrazy ROM do KATALOGU [opcjonalne] zapisuje wyjście do PLIKU [wymagane] wybiera indeks fontu nie znaleziono portu szeregowego "%s" set [NAZWA=WARTOŚĆ ...] ustawia tryb CapsLock ustawia podniesienie fontu ustawia opuszczenie fontu ustawia nazwę rodziny fontu ustawia zakres fontu ustawia rozmiar fontu ustawia nazwę pliku wejściowego dla części 32-bitowej. ustawia nazwę pliku wejściowego dla części 64-bitowej. ustawia nazwę pliku wejściowego. Domyślny to standardowe wejście ustawia tryb wstawiania ustawia tryb NumLock ustawia nazwę pliku wyjściowego. Domyślny to standardowe wyjście ustawia tryb pauzy ustawia katalog przedrostka [domyślny=%s] ustawia tryb ScrollLock określa nazwę programu rozmiar stretch|normal nie znaleziono symbolu "%s" tymczasowy nie znaleziono terminala %s lub nie jest obsługiwany przez terminfo nie znaleziono terminala "%s" argument "%s" wymaga liczby całkowitej wpis device.map "%s" jest błędny - zignorowano go. Proszę poprawić lub usunąć device.map nazwa napędu "%s" w device.map jest błędna. Zamiast niej użyto %s. Proszę użyć postaci [hfc]d[0-9]* (np. "hd0" lub "cd") pierwszy sektor pliku core nie jest wyrównany do sektora urządzenie instalacji jest wymienne. Ta opcja jest dostępna tylko na platformach z EFI. typ partycji 0x%x jest nieprawidłowy sektory pliku core są zbyt pofragmentowane rozmiar "%s" nie wynosi %u rozmiar "%s" jest za duży rozmiar "%s" jest za mały ten plik ELF jest jest właściwego typu ta etykieta partycji GPT nie ma BIOS-wej partycji rozruchowej; osadzanie nie będzie możliwe ten LDM nie ma partycji osadzającej; osadzanie nie będzie możliwe ta etykieta partycji typu MSDOS nie ma przerwy za MBR; osadzanie nie będzie możliwe oczekiwano trzech argumentów przekroczony limit czasu przy otwieraniu "%s" przekroczony limit czasu podczas odczytu "%s" przekroczony limit czasu: nie udało się rozwiązać adresu sprzętowego za duże zagnieżdżenie dowiązań symbolicznych translator "%s" dla ścieżki "%s" ma kilka parametrów nie będących opcjami, co najmniej "%s" i "%s" translator "%s" dla ścieżki "%s" ma tylko opcje, nie znaleziono urządzenia linia poleceń translatora dla ścieżki "%s" jest pusta oczekiwano dwóch argumentów typ nie można zidentyfikować systemu plików w %s; nie można wykonać sprawdzania bezpieczeństwa niewyrównany rozmiar urządzenia nieoczekiwany koniec pliku nieznany argument "%s" nieznana kompresja %d
 nieznany typ urządzenia %s
 nieznany system plików nieznany rodzaj urządzenia RAID "%s" nieznany błąd wyrażenia regularnego nieznany format docelowy %s
 nieznany typ terminfo "%s" nieznane określenie formatu opcji DHCP "%s" nieznany adres sieciowy "%s" nieznany interfejs sieciowy "%s" nierozpoznana liczba adres niemożliwy do rozwiązania: %s unset [NAZWA ...] nie obsługiwany błąd HTTP %d: %s nie obsługiwana odpowiedź HTTP nie obsługiwana wersja RAID: %d.%d nie obsługiwany format gzip nie obsługiwany tryb parzystości portu szeregowego nie obsługiwana prędkość portu szeregowego nie obsługiwana liczba bitów stopu portu szeregowego nie obsługiwana długość słowa portu szeregowego używa KOLORU dla tła używa KOLORU dla etykiety używa KOLORU dla tła etykiety używa KOLORU dla tekstu używa KATALOGU jako głównego partycji systemowej EFI. używa PLIKU jako fontu (PF2). używa PLIKU jako fontu dla etykiety używa PLIKU jako obrazu startowego [domyślny=%s] używa PLIKU jako obrazu core [domyślny=%s] używa PLIKU jako mapy urządzeń [domyślnie=%s] używa PLIKU jako programu xorriso [opcjonalne] używa plików programu GRUB w KATALOGU [domyślnie=%s] używa ŁAŃCUCHA jako nazwy produktu używa ŁAŃCUCHA jako wersji produktu używa pliku ID nawet jeśli dostępny jest UUID używa obrazów i modułów umieszczonych w KATALOGU [domyślny=%s/<platforma>] zmienna "%s" nie jest ustawiona wizualnie porządkowane UTF-8 czeka na podłączenie debuggera nie zostanie kontynuowane za pomocą list blokowania błędny znacznik magiczny lub wersja ELI xnu_uuid URZĄDZENIE plik xz uszkodzony lub nie obsługiwane opcje bloku tego adresu nie można usunąć najpierw należy wczytać jądro BIOS-owa partycja rozruchowa jest zbyt mała; osadzanie nie będzie możliwe ten core.img jest niezwykle duży. Nie zmieści się w obszarze osadzenia obszar osadzania jest niezwykle mały. core.img nie zmieści się w nim.                                                                                                                                                                                                                                                                                                                                                                                                              boot/grub/locale/pt_BR.mo                                                                           0000600 0001750 0001750 00000201027 13417732100 0014232 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                                /      p?  #   q?      ?     ?  $   ?     ?     
@     @     @     *@  .   7@  .   f@  %   @     @     @     @  F   @  v   /A  +   A     A      A     B  !   B     8B  ,   UB     B     B  $   B     B  *   B     C     .C     6C     FC     ^C  
   ~C  	   C     C  ,   C  ,   C  '   	D  -   1D      _D  (   D  (   D  )   D     D     E     <E     IE     RE  "   [E  4   ~E     E     E     E  1   E     F  %   "F  '   HF  %   pF  '   F     F     F     F     F     F     G     G     $G     0G     PG     bG     pG  3   }G     G  $   G     G     G     H     H     -H     BH  -   ZH     H     H     H     H  #   H     I     *I     FI     ]I     cI     lI     I     I     I     I     I     J      J     -J     DJ     RJ     iJ     xJ     }J     J  %   J     J     J     J     K     K     3K     BK     UK     fK  *   ~K  3   K     K     K  	   
L  #   L     8L     VL     iL     L     L     L     L  P   L     LM     aM  H   vM     M  !   M     M     M     M  	   N  *   N     JN     _N     qN     N  $   N     N     N     N     O     #O     >O  
   \O  
   gO     rO  1   O     O     O     O     O  >   P     FP     ]P     zP     P     P  +   P     P     Q  #   ,Q     PQ     gQ  $   Q     Q     Q  '   Q  9   	R     CR     \R  z   zR     R     R     S  
   'S     2S     ?S     _S  +   |S     S     S     S  "   S     	T     T     +T     CT     OT     _T     vT  "   T  0   T     T     T     T  7   T     7U     ?U     KU     aU  0   hU     U     U     U  6   U  +   V     8V     KV  !   W  d   >W  e   W  d   	X  i   nX  o   X  H   HY     Y     Y     Y     Y     Y     Y     Z     %Z  #   >Z     bZ     Z     Z  )   Z     Z     Z     Z     Z     [     +[     G[     \[     y[     ~[  '   [  P   [     [     \  +   \     7\     H\     d\     {\     \     \     \  $   \     ]     ]     3]     ?]  (   L]  "   u]  +   ]  -   ]     ]     ^     ^  O   %^     u^     ^     ^     ^  %   ^     ^  )   _  !   5_  "   W_     z_  +   _     _     _     _  !   _     `     4`     M`     Y`      p`     `     `     `     `     `     a  4   a     Ra     da     |a     a     a     a     a      b  !   "b     Db  M   ^b  2   b     b  8   b     2c     ?c     Vc     nc     c  3   c  $   c  +   c     "d     0d     Ed     Zd     md      d     d     d     d  D   d     :e     Ae  7   Ie     e  !   e     e  s   e     Vf     nf     f     f     f     f     f     f     g     g     g     8g     Rg  
   ig     tg     g     g     g     g     g  H   g     h     /h     Kh     [h     jh  #   h     h     h     h      h  (   i  %   7i     ]i     fi     yi     ~i     i  "   i  ;   i  #   i  <   j     Uj     cj  	   qj     {j  `   j  )   j     k  q   %k     k     k     k     k     k     k     l     &l     El  "   dl     l     l  #   l     l     l  g   m     ~m     n     n  -   :n     hn  "   |n  '   n     n     n     n     o     o     6o     So     po     o     o     o     o     o      p     p     ,p  -   Lp     zp  "   p  )   p     p     p     q     %q  	   *q  %   4q     Zq     _q     tq     {q  &   q  )   q     q  ^   q     Gr  $   ar  %   r     r  ^   _s  _   s  )   t  '   Ht  >   pt  D   t  !   t  '   u  -   >u     lu  )   u     u  )   u  ,   u     *v     Cv     ^v  E   ov  A   v  )   v     !w  :   >w     yw     w     w     w     w  0   w     x     7x     Lx  )   bx  &   x     x     x     x     x  )   y     Dy  %   Ty  %   zy  ,   y  '   y  :   y  -   0z     ^z  .   nz     z     z  '   z     z     	{  *   {     B{     J{  )   Q{     {{  0   {     {     {     {  !   |     $|  
   :|     E|  <   _|  %   |     |     |     |  d   |  0   \}     }     }     }     }     }  0   }     ~  $   !~     F~     ]~     {~     ~     ~      ~     ~     ~     ~          !     .     I     a     z                                        -     5  m   H          р                    8  '   F  -   n       	             ˁ                     8     T     o            /        ڂ       .     O   4  )             ă  	   Ӄ     ݃  5        1     C     [     q                              ˄     ܄       	                  !     7     Q     X     _  
   m  
   x  	          )             х  N        2     @     E  -   W  -     $     #   ؆          
  (     1   F     x                    χ                    3     <     Y     h     x  B        Έ                    *  &   3     Z     u            (        Ή  '   ډ  %        (     .     B     V  $   h  '             ͊            +        D  $   J     o  J   x     Ë      ۋ  "              @     W  %   o                    ӌ     ی       !        %     >     R     W     d     w                    ۍ                    #     6     L     Z     x  "             Ύ                         2     >     M     ]     n     ~            &        ޏ  &        !     .  !   L     n                         ͐                    
  	         *  %   D  &   j  @        ґ                    !     7     J     _  #   y               ɒ       (     #   /     S     r            .          !     E   $    j  %   E  )   k       (     "   ܖ                    +  2   9  0   l  +        ɗ     Η     ޗ  P        E  3   Ә       )        C  *   V       3        љ       -         .  3   K                      (   ʚ  	               /   .  /   ^  )     0     "     *     *   7  +   b  $     $     
   ؜  	     	     +     8   #     \     d     s  ;   |  )     &     +   	  &   5  +   \            '             Ҟ  	               1   *     \     s       0        Ɵ  )   ̟               /     @     Z     v  2        Š  %     '   	     1  *   Q  "   |  !             ء     ޡ       '      "   (     K     k  %     !        ˢ     ڢ       -        H     U     Z     ^  ,   s  '        ȣ  )   ܣ  %        ,     G     ^     v  #     ?     =     )   1     [  	   j  +   t                ٥       *     %   ;  +   a  c     "     "     L   7       '          
   ̧     ק       :        =     Z     n       +        Ҩ       ,     ,   &  )   S  (   }            #   ͩ  9        +     =  0   N  #     J          #   	     -  %   G     m  !          #               (     +   E     q       :     L         1  !   R     t       0        F  
   c     n  #   {       1          !        &  (   =     f     w                    Ư     ۯ  %     )        @     H     `  >   x  
        °     ԰       6        3     G     Y  ?   o  5              ,     z   3  {     z   *          %  e             ;     V     l               ¶       1     "   3     V     t  E        з     ܷ                 /   9  &   i  *               .   Ÿ  Z        O     [  6   ^               ɹ  %     "        1     H  '   d               ĺ     ֺ  ,   ܺ  ,   	  1   6  9   h               ѻ  g     "   S      v            0   ʼ  %     :   !  ,   \  +          5   ҽ          $     ;  .   X  (     !        Ҿ       -     '   ,     T  +   p  !             ֿ  @        ,     E     e                 1     %     )   :  -   d  e     @     )   9  G   c                           K   3  +     7                       (     ?  $   _  !               ^        8     @  K   I  (     1     ,                                    !   8  "   Z     }            '          $             *     <     A     Z     b      v  W          !        %     ?  !   W  3   y            #     4     +   :  /   f  	                         2     Q     3   a  R                         e   5  /                  g     ~                           +     $   E  /   j        !     #     *     +   ,     X             ,     1          6   #  $   Z  #                                 .     M     h       #                         !   #  ;   E       #     8     #          #   8     \  
   e  '   p                      7     5        1     D  #     7     :   (     c     Y       7   o  ;     [     ^   ?  #     ,     /     *     =   J  "     0     3     '     (   8     a  \   {  V     .   /  $   ^  B     *                        :  9   W  2               /     6   3  "   j            #     '          )     )   I  0   s  +     F     8        P  J   `       5     =     %   ?     e  D   v            7          8        D  !   X  3   z  '                    <     5   \                 |     /   S                 #          <     )     1   I     {  &                    -        @     _     |                               /     4  +   I  #   u            (          	          t   +  %     &     (     %     $   <     a  1   p  @                         %   4  !   Z  %   |  !     $              
     %  /   )     Y     q  7     `     3   "  !   V     x       $     5          %        )  #   B     f     r     z       7          	          
        '  !   8     Z  "   r  
     	               
     	          (             ,  O   G       	          '     )     #        ?     _     o  2     ;     +     !   !     C  $   c  *     #     '     /        /     ;     Z     l       i     4         5  '   U     }       +     *               
   +  9   6  
   p  #   {  (                         ,   $  0   Q            !          6        /  ,   5     b  R   n       -     /     &   6     ]     |  0                    
        %     =  '   T  !   |                 '     "        !      A  ,   b                              	     #  )   9  !   c  0                            !     <     Z     k                              
  '   &  $   N  2   s             +     !        #     ;     Q     h     }                 !          !     "     (   <  E   e  .               $        #      ?  '   `  #     '               '   	  )   1  ,   [  1     $     $            $ >   9 &   x (    N       P                          	   S           Q  K      r                        b         e     f              Q     k  e  	  d   ]                   0                      [       {   g      h      @       N               7           s   H     V                  Y     *         C         S                  h        d          T    >      l       *   &       ,        +         E        O  [   |            3      f                  H       J          B   Q      A     t       1   V                  -      b        D               q                                       j     i          A       [            L          6      Z                        #       5              s  @  ,                      K       \       3         '  >                             ;     P  g                    v    I  2             T      ]           }                  %                 4                  #              x    q             x    G        =  Z       K      A  o            
     n            O         $  B     '           P   \          U          >               o  p    M           /   @  %   j            8     *    a           w          .          k    R               {                 )     <    `     j  k   7          {  h                    !      $     }             (             Y      e       w                              ~             (               +      n               i        2            r   
             X      
        `       8    .                                           ?       |     _    ?  t  u  ?         o       a  5         H                      c  U                  %    2    G     <  Y     l      ^   9            g           z                      ^  l                                   "         0        f  R      3    i      =          D                           }    b     )           :        /  F           9     X   -                  c                 m                  6          T                                    :                    ~  E       1                                           4        5           '                   d      	  s  a    m    w          z                                   .                 -                 !                S      (         c      `                        4      N          y           X          ^          /  u                    J  B      p                  I   ,                          L    I                                                  C             N      ~  <       G            \      !  y                  Z          |        ;   6                         1  _          :           v                 O                    9      x          #      n            u   +  p                ]      t  D                           0        8         V      =                            _   U     $      F        W       ;                   )             7      L                                    "   R         y           r                      &  &  v  m      C           W  "  J    E      F          z                              M              M    W  q                     total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   Failed to initialize video adapter   No info available   or:   (leftmost)  (rightmost)  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s does not support UUIDs %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: option '%c%s' doesn't allow an argument
 %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' --MORE-- -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM enabled
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Available input terminals: Available output terminals: BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check key modifier status. Clear the screen. Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute or check hash checksum. Configure serial port. Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Declare memory regions as faulty (badram). Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Display FPSWA version. Display SMART health status. Display a line of text. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. ENVVAR ENVVAR [ENVVAR] ... ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d seconds 
 Emulate a keystroke sequence Enable interpretation of backslash escapes. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Evaluate an expression. Exit failed Exit from GRUB. Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILESYSTEM [VARIABLE] FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freeze ATA security settings until reset. Friday GNU GRUB  version %s GRUB Boot Menu GRUB emulator. Garbage in ARGP_HELP_FMT: %s Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Hello World ID Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid preceding regular expression Invalid range end Invalid regular expression KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MODULE MODULES Mail xorriso support requests to <bug-xorriso@gnu.org>. Make a bootable image of GRUB. Make a virtual drive from a file. Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all. Mount by UUID. NAME NAME [VARIABLE] [HINTS] NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No command is specified.
 No disk cache statistics available
 No drives have been remapped No match No previous regular expression No virtual device tree available Now connect the remote debugger, please. OS disk #num ------> GRUB/BIOS device Options: PARTITION COMMANDS PATH PORT PORT VALUE [MASK] Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %s: Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform both direct and reverse mappings. Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Premature end of regular expression Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print drive identity and settings. Print sizes in a human readable format. RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot the computer. Regular expression too big Remove a module. Remove an environment variable. Remove any memory regions in specified range. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Reset all mappings to the default values. Retrieve device info. Return to IEEE1275 prompt. Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set drive to sleep mode. Set drive to standby mode. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Show ACPI information. Show APM information. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show the contents of a file. Show the current mappings. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip offset bytes from the beginning of file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Start GDB stub on given port Stop GDB stub Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). TARGET Target format not specified (use the -O option). Test USB support. Test bit at BYTE:BIT in CMOS. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This entry can be booted by any user. Thursday Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Translates the string with the current settings. Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to determine your platform. Use --target. Unable to retrieve pool state Uncompress file before checksumming. Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized option `%s'\n Unrecognized pool state Unsupported image format Usage: Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use STRING as menu entry body. Use serial console. VARNAME Verbose countdown. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Xen hypervisor, version %s YUV  [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [ADDR|comUNIT][,SPEED] [ARG] [CARD] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] a value was assigned to the argument `%s' while it doesn't require an argument access denied addr address not found attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file available RAM available formats: base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 can't find command `%s' cannot open `%s': %s cannot read `%s': %s cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s cat FILE checksum verification failed cmp FILE LOCAL comUNIT[,SPEED] connection refused couldn't find a necessary member device of multi-device filesystem couldn't find geom `part' class couldn't open geom couldn't read ELI metadata cp FILE LOCAL crc FILE delete device map if it already exists device count exceeds limit disk `%s' not found don't update LED state done enter: boot, `e': options, `c': cmd-line error: %s.
 failure reading sector 0x%llx from `%s' failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels four arguments expected generate an image in FORMAT give a short usage message give this help list grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE install GRUB images under the directory DIR/%s instead of the %s directory invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid color specification `%s' invalid file name `%s' invalid line format: %s invalid video mode specification `%s' list network addresses list network cards list network routes ls PATH lzop file corrupted missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name no APM found no DHCP info found no DHCP options found no DNS servers configured no command is specified no decryption key available no such partition no symbol table no terminal specified not a directory not a regular file one argument expected out of memory output file must be specified physical volume %s not found pre-load specified modules MODULES premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit relocation 0x%x is not implemented yet reserved RAM root directory of TFTP server save ROM images in DIR [optional] serial port `%s' isn't found set capslock mode set insert mode set numlock mode set pause mode set scrolllock mode set the program name size stretch|normal symbol `%s' not found temporary terminal `%s' isn't found the argument `%s' requires an integer this ELF file is not of the right type this LDM has no Embedding Partition; embedding won't be possible too deep nesting of symlinks two arguments expected type unaligned device size unknown argument `%s' unknown filesystem unknown regexp error unknown target format %s
 unrecognised network interface `%s' unrecognized number unsupported gzip format unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use FILE as xorriso [optional] variable `%s' isn't set wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your core.img is unusually large.  It won't fit in the embedding area Project-Id-Version: grub 2.0.0-pre6
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2012-10-09 23:36-0300
Last-Translator: Luiz Fernando Ranghetti <elchevive@opensuse.org>
Language-Team: Brazilian Portuguese <ldpbr-translation@lists.sourceforge.net>
Language: pt_BR
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=(n != 1)
X-Generator: Lokalize 1.4
               memória total: %d KiB
     Nenhum modo preferencial disponível
     Modo preferencial: %ux%u
   Falha ao iniciar o adaptador de vídeo   Nenhuma informação disponível   ou:   (mais a esquerda)  (mais a direita)  [OPÇÃO...] %.*s: o parâmetro ARGP_HELP_FMT deve ser positivo %.*s: o parâmetro ARGP_HELP_FMT requer um valor %.*s: parâmetro ARGP_HELP_FMT desconhecido %d s %d s restantes. %s não suporta UUIDs %s está obsoleto. Ao invés, use 'set gfxpayload=%s' antes do comando 'linux'.
 %s está obsoleto. O modo VGA %d não é reconhecido. Ao invés, use 'set gfxpayload=LARGURAxALTURA[xPROFUNDIDADE' antes do comando 'linux'.
 %s ainda não está suportado pelo grub-mkconfig.\n %s, com o Hurd %s %s, com o Hurd %s (modo de recuperação) %s, com o Linux %s %s, com o Linux %s (modo de recuperação) %s, com o Xen %s e Linux %s %s, com o Xen %s e Linux %s (modo de recuperação) %s, com o hipervisor Xen %s, com o kFreeBSD %s %s, com o kFreeBSD %s (modo de recuperação) %s, com o kernel %s (via %s) %s, com o kernel %s (via %s, modo de recuperação) %s: HASH COINCIDE
 %s: OK
 %s: ERRO DE LEITURA
 %s: Excesso de argumentos
 %s: você deve executar isto como root\n %s: erro: %s: informação: %s: opção inválida -- '%c'
 %s: a opção '%c%s' não permite um argumento
 %s: a opção '--%s' não permite um argumento
 %s: a opção '--%s' requer um argumento
 %s: a opção '-W %s' não permite um argumento
 %s: a opção '-W %s' é ambígua
 %s: a opção '-W %s' requer um argumento
 %s: a opção requer um argumento -- '%c'
 %s: a opção requer um argumento -- '%s'\n %s: opção não reconhecida '%c%s'
 %s: opção não reconhecida '--%s'
 %s: aviso: (32 bits) (64 bits) (PROGRAMA ERRO) Nenhuma versão conhecida!? (PROGRAMA ERRO) A opção deveria ter sido reconhecida!? (em %s) - Rótulo '%s' --MAIS-- -h HASH [-c ARQUIVO [-p PREFIXO]] [ARQUIVO1 [ARQUIVO2 ...]] -l | -r | [-s] dispositivo_grub disco_so. Interface 16 bits protegida suportada
 Interface 16 bits protegida não suportada
 Interface 32 bits protegida suportada
 Interface 32 bits protegida não suportada
 =VALOR > Armazenamento RAM não volátil da ACPI RAM recuperável da ACPI Falhar ao desligar via ACPI ENDEREÇO VALOR DO ENDEREÇO [MÁSCARA] ENDEREÇO [TAMANHO] ENDEREÇO1,MÁSCARA1[,ENDEREÇO2,MÁSCARA2[,...]] ENDEREÇO SERVIDOR_DNS APM desabilitado
 APM habilitado
 ARGP_HELP_FMT: o valor %s é menor ou igual a %s ASCII Aceitar finais de linha CR/NL estilo DOS. Terminais de entrada ativos: Terminais de saída ativos: Adaptador '%s':
 Adicionar um servidor DNS Adicionar uma rota da rede. Opções avançadas para %s Opções avançadas para %s (com o hipervisor Xen) Permitir interromper com ESC. Assumir que a entrada é hexadecimal. Assumir que a entrada é frase secreta. Assumir que a entrada é bruta. Tentando descriptografar a chave mestre... Terminais de entrada disponíveis: Terminais de saída disponíveis: BIOS_DUMP [INT10_DUMP] BLOCO BYTE:BIT Modo de imagem de fundo. O diretório base para a lista de hash. Iniciar o sistema baseado na BIOS. Iniciar um sistema operacional. Iniciar no modo único. Iniciar com mensagens de depuração. Iniciar com mensagens detalhadas. Iniciando '%s' Iniciando uma lista de comandos Caminho de inicialização: %s
 Caminho de inicialização: não disponível
 Parar no GDB CGA  COR COMANDO [ARGUMENTOS] A CPU inativa não desacelera o processador
 A CPU inativa desacelera o processador
 CS5536 em %d:%d.%d
 Não foi possível habilitar a área ROM. Alterar os dispositivos configurados. Alterar tipo de partição Verificar a tecla Alt. Verificar a tecla Ctrl. Verificar a tecla Shift. Verifica as funcionalidades da CPU. Verifica os hashes dos arquivos com a lista de hash em ARQUIVO. Verifica se a CPU suporta o modo (padrão) de 64-bit (longo). Verificar o status da tecla modificadora. Limpar a tela. Comandos: Comparar ARQUIVO com o arquivo local LOCAL. Comparar arquivo '%s' com '%s':
 Comparar dois arquivos. Computar ou verificar o hash. Configurar porta serial. Copiar ARQUIVO para o arquivo local LOCAL. Copiar ARQUIBO para a saída padrão. Não foi possível encontrar o driver FPSWA Não foi possível encontrar o volume físico '%s'. Alguns módulos poderão faltar na imagem core. Não foi possível carregar sha256 Não foi possível carregar sha512 Criar estruturas parecidas com a BIOS para compatibilidade com SO existente. DISPOSITIVO DISPOSITIVO [PARTIÇÃO[+/-[TIPO]]] ... NOME_DO_DISPOSITIVO DIRETÓRIO DIRETÓRIO [OSBundleRequired] SERVIDOR_DNS Declarar regiões da memória como problemática (badram). Definir uma entrada do menu. Definir um submenu. Remover um endereço da rede. Remover uma rota da rede. Remover a unidade de loopback especificada. Remover variáveis. Determinar driver. Determinar o UUID do de sistema de arquivos. Determinar o rótulo do sistema de arquivos. Determinar o tipo de sistema de arquivos. Determinar o tipo de mapa da partição. Dispositivo %s: ID do dispositivo: %s
 ID do dispositivo: não disponível Cor direta, máscara: %d/%d/%d/%d  posição: %d/%d/%d/%d Desabilitar ACPI. Desabilitar SMP. Desabilitar todas as saídas de inicialização. Habilitar/desabilitar o SMART (0/1) Estatísticas de cache do disco: acertos = %lu (%lu.%02lu%%), erros = %lu
 Exibir a versão do FPSWA. Exibir o status da saúde do SMART. Exibe uma linha de texto. Exibir a saída em todos os consoles. Exibir o modo de energia. Exibe o uso desse comando e sair. Exibe esta ajuda e sai. Exibir/definir a data e hora atual. Não exibir a nova linha final. Não exibir mensagens. Não testar nenhuma unidade de disquete. Não usar o APM para desligar o computador. Não fazer nada, sucesso. Não fazer nada, sem sucesso. Não exibir mensagens de diagnósticos da inicialização. Não carregar tabelas de host especificado por lista separada por vírgulas. Não reiniciar, apenas desligar. Não parar após o primeiro erro. Não atualizar EBDA. Pode corrigir as falhas ou travamentos em algumas BIOS, mas, torna-se ineficaz em um SO que não recebe RSDP do GRUB. VARIÁVEL_DO_AMBIENTE VARIÁVEL_DO_AMBIENTE [VARIÁVEL_DO_AMBIENTE]... ESC em qualquer momento sai. EXPRESSÃO EXPRESSÃO ] Tempo decorrido: %d.%03d segundos 
 Emula um sequencia de teclas Habilitar a interpretação invertida de escapes. Digitar a senha ZFS:  Entrar no KDB na inicialização. Entrar no modo normal. Digitar frase secreta para %s%s%s (%s):  Digite a senha:  Digitar nome de usuário:  Avaliar uma expressão. Falha ao sair Sair do GRUB. Sair do modo normal. Exportar variáveis. Exportar tabelas versão 1 para o SO. Exportar tabelas versão 2 e 3 para o SO. ARQUIVO ARQUIVO [ARGUMENTO ...] ARQUIVO [ARGUMENTOS...] ARQUIVO | TEMPO [TIMBRE1 DURAÇÃO1] [TIMBRE2 DURAÇÃO2] ...  ARQUIVO... ARQUIVO1 ARQUIVO2 SISTEMA_DE_ARQUIVOS [VARIÁVEL] FORMATO O protocolo FPSWA não conseguiu encontrar a interface FPSWA revisão: %x
 DE-PARA[,DE-PARA] DE[K|M|G] PARA[K|M|G] Os arquivos diferem no deslocamento %llu: 0x%x [%s], 0x%x [%s]
 Os arquivos diferem no tamanho: %llu [%s], %llu [%s]
 Tipo de sistema de arquivos %s Preencha a MBR híbrida do DISPOSITIVO da unidade GPT. Partições especificadas serão uma parte da MBR híbrida. Até 3 partições são permitidas. TIPO é um tipo de MBR. + significa que a partição está ativa. Somente uma partição pode estar ativa. Finalizar o carregamento do emulador de EFI. Tentar primeiro a DICA do dispositivo se executando no ARC. Se a DICA terminar em vírgula, tentar também subpartições. Tentar primeiro a DICA do dispositivo se executando na BIOS. Se a DICA terminar em vírgula, tentar também subpartições. Tentar primeiro a DICA do dispositivo se executando no EFI. Se a DICA terminar em vírgula, tentar também subpartições. Tentar primeiro a DICA do dispositivo se executando em IEEE1275. Se a DICA terminar em vírgula, tentar também subpartições. Tentar primeiro a DICA do dispositivo se o acesso direto ao hardware for suportado. Se a DICA terminar em vírgula, tentar também subpartições. Tentar primeiro a DICA do dispositivo. Se a DICA terminar em vírgula, tentar também subpartições. Corrigir problema de vídeo. %s encontrado em %s (%s)\n Encontrado %s em %s\n GNU Mach encontrado: %s Módulo do Hurd encontrado: %s Kernel NetBSD encontrado: %s\n Plano de fundo encontrado: %s\n Imagem initrd encontrada: %s\n Diretório de módulos do kernel encontrado: %s\n Kernel do FreeBSD encontrado: %s\n Imagem Linux encontrada: %s\n Tema encontrado: %s\n Congelar as configurações de segurança do ATA até ser reiniciado. Sexta-feira GNU GRUB versão %s Menu de inicialização GRUB Emulador do GRUB. Lixo no ARGP_HELP_FMT: %s Obter a soma de verificação crc32 do ARQUIVO. Obter informações do cache do disco. Obter/definir os parâmetros ATA do disco. HASH DICA Desligar o sistema, se possível usando o APM. Desliga o computador. Este comando não funciona em todas as implementações de firmware. Olá mundo! ID Dispositivo virtual incorreto: nenhum tipo disponível Inserir um módulo. Instalar o GRUB na sua unidade. Referência anterior inválida Nome de classe de caractere inválido Caractere de ordenação inválido Comando inválido %s.
 Conteúdo inválido de \{\} Expressão regular precedente inválida Fim de intervalo inválido Expressão regular inválida KERNEL ARGUMENTOS TECLA Tecla para iniciar rapidamente esta entrada. Dispositivo virtual folha (arquivo ou disco) O parâmetro antigo 'ask' não é mais suportado. Legenda: máscara/posição=vermelho/verde/azul/reservado Listar servidores DNS Listar dispositivos PCI. Listar todos os arquivos. Lista os modos de vídeo disponíveis. Se a resolução for dada exibe apenas os modos correspondentes. Listar os dispositivos e arquivos. Listar dispositivos ou arquivos. Lista de dispositivos. Listar arquivos no CAMINHO. Listar mapa de memória fornecido pelo firmware. Lista dos modos de vídeo suportados: Lista de usuários com permissão de iniciar esta entrada. Listar ou selecionar um terminal de entrada. Listar ou selecionar um terminal de saída. Listar as fontes carregadas. Listar as variáveis do arquivo de bloco de ambiente. Carregar imagem XNU 64 bit. Carregar dump da BIOS. Carregar o ambiente FreeBSD. Carregar o módulo do kernel do FreeBSD (ELF). Carregar o módulo do kernel do FreeBSD. Carregar o kernel.sys do FreeBSD. Carregar Linux Carregar o NTLDR ou BootMGR. Carregar o módulo do kernel do NetBSD (ELF). Carregar o módulo do kernel do NetBSD. Carregar o kernel do Plan9. Carregar o diretório de extensões do XNU. Carregar pacote de extensão XNU. Carregar extensão XNU. Carregar imagem XNU. Carregar ramdisk do XNU. Ela estará disponível no SO como md0. Carregar uma imagem PXE. Carregar um leiaute de teclado. Carregar um kernel multiboot 2. Carregar um módulo multiboot 2 Carregar um kernel multiboot. Carregar um módulo multiboot. Carregar uma imagem de apresentação para o XNU. Carregar uma imagem do XNU hibernado. Carregar e inicializar o emulador de EFI. Carregar outro carregador de inicialização. Carregar outro arquivo de configuração sem alterar o contexto mas obter apenas as entradas de menu. Carregar outro arquivo de configuração sem alterar o contexto. Carregar outro arquivo de configuração. Carregar tabelas de host ACPI e tabelas especificadas pelos argumentos. Carregar initrd. Carregar ramdisk do kOpenBSD. Carregar o kernel do FreeBSD. Carregar o kernel do NetBSD. Carregar o kernel do OpenBSD. Carregar apenas as tabelas especificadas pela lista separada por vírgulas. Carregar o mesmo arquivo de várias formas. Carregar as variáveis do arquivo de bloco de ambiente. Fontes carregadas: Carregando o GNU Mach... Carregando o Linux %s... Carregando o XEN %s... Carregando o ramdisk inicial... Carregando o kernel do FreeBSD %s... Carregando o kernel do Illumos... Carregando o Hurd... falha na verificação do MAC ENTRADA_DO_MENU é um número, um título de item do menu ou um identificador de item do menu. MÓDULO MÓDULOS Envie um e-mail de pedido de suporte do xorriso para <bug-xorriso@gnu.org>. Fazer uma imagem inicializável do GRUB. Fazer uma unidade virtual a partir de um arquivo. Gerenciar os mapeamento de unidades da BIOS. Os argumentos obrigatórios ou opcionais para as opções longas também são obrigatórios ou opcionais para qualquer versão curta correspondente. Manipular dispositivos PCI. Tempo medido usado pelo COMANDO Memória esgotada Tipo de memória: DDR2. Tipo de memória: desconhecido. Identificador de entrada do menu. Entrada do menu não especificada. Tipo de entrada do menu. Segunda-feira Monocromático Mais de um dispositivo de instalação? Mais de uma entrada do menu? Montar um dispositivo criptografado. Montar tudo. Montar pelo UUID. NOME NOME [VARIÁVEL] [DICAS] NÚMERO NÚMERO_DE_SEGUNDOS Nome	Contador Ref	Dependências
 Unidades de disco nativas estão em uso. Recusando usar firmware da interface de disco. Protocolos de rede: A nova MBR está escrita em '%s'
 Nenhum CS5536 encontrado. Nenhum FPSWA encontrado Nenhum comando foi especificado.
 Nenhuma estatística de cache do disco disponível
 Nenhuma unidade foi remapeada. Sem correspondência Nenhuma expressão regular anterior Nenhuma árvore de dispositivos virtuais disponível Agora conecte o depurador remoto por favor. OS disco #número ------> Dispositivo GRUB/BIOS Opções: COMANDOS DA PARTIÇÃO CAMINHO PORTA PORTA VALOR [MÁSCARA] Analisar a configuração antiga no novo contexto. Analisar a configuração antiga no novo contexto apenas para as entradas de menu Analisar a configuração antiga no mesmo contexto. Analisar a configuração antiga no mesmo contexto apenas para as entradas de menu Número da parte: %s.
 Partição %s: Caminho: %s
 Caminho: não disponível Executa COMANDOS na partição.
Use 'parttool PARTIÇÃO help' para a lista de comandos disponíveis. Executar ambos os mapeamentos direto e inverso. Reproduzir um tom. Por favor, não use o título antigo '%s' para o GRUB_DEFAULT, use '%s' (para versões antes da 2.00) ou '%s' (para a 2.00 ou posterior) GUID da fila: %016llx
 GUID da fila: não disponível Nome da fila: %s
 Nome da fila: não disponível Estado da fila: ativo Estado da fila: destruído Estado da fila: exportado Estado da fila: dispositivo de nível 2 ARC Estado da fila: potencialmente ativa Estado da fila: reservado para disco de reserva Estado da fila: não disponível Estado da fila: não inicializada Fim prematuro da expressão regular Pressione qualquer tecla para continuar... Pressione qualquer tecla para iniciar o xnu Pressione 'Enter' para iniciar o SO selecionado, 'e' para editar os comandos antes da inicialização or 'c' para linha de comando. Pressione 'Enter' para iniciar o SO selecionado, 'e' para editar os comandos antes da inicialização or 'c' para a linha de comando. ESC para retornar ao menu anterior. Exibir informação de memória. Exibir informação ZFS sobre o DISPOSITIVO. Exibir ZFS-BOOTFSOBJ ou armazená-lo na VARIÁVEL Imprimir uma lista de bloco. Configurações e identidade da unidade de impressão. Imprimir tamanhos de forma legível. RAM armazenando código de firmware Número de slot da RAM %d
 EXPRESSÃO_REGULAR TEXTO A imagem ROM está presente. Ler valor 16 bit do ENDEREÇO; Ler valor 16 bit da PORTA. Ler valor 32 bit do ENDEREÇO. Ler valor 32 bit da PORTA. Ler valor 8 bit do ENDEREÇO. Ler valor 8 bit da PORTA. Ler apenas o COMPRIMENTO dos bytes. Falha ao reiniciar Reiniciar o computador. Expressão regular muito grande Remover um módulo. Remover uma variável do ambiente Remover qualquer região da memória na faixa especificada. Relate os erros para %s.
 Relate erros em <bug-grub@gnu.org>. Redefinir todos os mapeamentos para os valores padrões. Obter informações do dispositivo. Retorna ao prompt IEEE1275. Execute 'go' para continuar o GRUB. SEGUNDOS NOME_CURTO NOME_CURTO REDE [INTERFACE| gw GATEWAY] TAMANHO ORIGEM|-u UUID|-a|-b TEXTO Sábado Salvar o valor lido para dentro da variável NOMEDAVAR. Salvar as variáveis no arquivo de bloco de ambiente. Diz 'Olá mundo!'. Procurar dispositivos pelo UUID. Se a VARIÁVEL estiver especificada, o primeiro dispositivo encontrado é definido para uma variável. Procurar dispositivos pelo arquivo. Procurar dispositivos pelo UUID do sistema de arquivos. Procurar dispositivos pelo rótulo do sistema de arquivos. Procurar dispositivos pelo arquivo, sistema de arquivos ou UUID do sistema de arquivos. Se '--set' for especificado, o primeiro dispositivo encontrado é definido para uma variável. Se nenhum nome de variável for especificado, 'root' é usado. Procurar dispositivos pelo arquivo. Se a VARIÁVEL estiver especificada, o primeiro dispositivo encontrado é definido para uma variável. Procurar dispositivos pelo rótulo. Se a VARIÁVEL estiver especificada, o primeiro dispositivo encontrado é definido para uma variável. Selecionar dispositivo por sua posição no barramento. Selecionar dispositivo pelo fabricante e ID do dispositivo. Definir o gerenciamento avançado de energia (APM)
(1=baixo, ..., 254=alto, 255=desligado). Definir o gerenciamento acústico automático
(0=desligado, 128=silencioso, ..., 254=rápido). Definir OEMID de RSDP, XSDT e RSDT. Definir ID do OEMTABLE de RSDP, XSDT e RSDT. Definir revisão OEMTABLE de RSDP, XSDT e RSDT. Definir uma variável para retornar valor. Definir uma variável para o primeiro dispositivo encontrado. Definir uma variável do ambiente. Definir o campo do criador de RSDP, XSDT e RSDT. Definir a revisão do criador de RSDP, XSDT e RSDT. Definir a unidade para o modo suspenso. Definir a unidade para o modo de espera. Definir dispositivo raiz. Definir o tempo limite de espera
(0=desligado, 1=5s, 2=10s, ..., 240=20min, 241=30min, ...). Definir a entrada do menu padrão para o GRUB, para a próxima inicialização apenas. Definir a entrada do menu padrão para o GRUB. Definir senha de usuário (PBKDF2).  Definir senha de usuário (texto puro). Desaconselhado e inseguro. Definir variável com entrada do usuário. Definir variáveis. Exibir informações ACPI. Exibir informações APM. Exibe uma mensagem de ajuda. Exibir uma lista longa com informações mais detalhadas. Exibir o conteúdo do ARQUIVO no modo hexadecimal. Exibir os módulos carregados. Exibir o conteúdo da memória. Exibir o conteúdo bruto do setor ATA IDENTIFY. Exibir os conteúdos brutos de um arquivo ou memória. Exibe os conteúdos de um arquivo. Exibe os mapeamentos atuais. Exibir esta mensagem. Exibir apenas as tabelas versão 1. Exibir apenas as tabelas versão 2 e 3. Falhar ao desligar Simular o comando 'initrd' do grub-legacy Simular o comando 'kernel' do grub-legacy Simular o comando 'modulenounzip' do grub-legacy Simular o comando 'password' do grub-legacy Simular o comando 'password' do grub-legacy no modo de entrada do menu Ignorar os deslocamentos de bytes do início do arquivo. Slot %d aberto
 Algumas partes do Hurd encontrado, mas não o suficiente para inicializar. Especificar um nome de arquivo. Especifica o hash (soma de verificação) a utilizar. Especificar um ou mais arquivos de fontes a serem carregados. Iniciar o stub GDB na porta fornecida Parar o stub GDB Armazenar NÚMERO de componente correspondente em NOME_DE_VARIÁVEL. Sucesso Domingo Suprimir a saída normal (as advertências permanecem). DESTINO Formato de destino não especificado (use a opção -O). Testar suporte USB. Bit de teste em BYTE:BIT na CMOS. Testa se a EXPRESSÃO_REGULAR corresponde ao TEXTO. Testar subsistema de vídeo no modo LxA Testar subsistema de vídeo. Somente texto Os arquivos são idênticos.
 A entrada destacada será executada automaticamente em %d s. Esta entrada pode ser iniciada por qualquer usuário. Quinta-feira Tamanho total da flash: %d B.
 Remover barra invertida Transforma UUID de 64 bit num formato adequado ao XNU. Se '-l' for usado mantem as letras minúsculas como feito pelo blkid. Traduzir o texto com as configurações atuais. Terça-feira SENHA DO USUÁRIO USUÁRIO SENHA_PBKDF2 NOME_DE_USUÁRIO[,NOME_DE_USUÁRIO] UTF-8 Não foi possível determinar sua plataforma. Usar --target. Não foi possível obter o estado da fila Descompactar o arquivo antes de verificar o hash. Comando desconhecido '%s'
 Formato de compressão desconhecido %s Codificação desconhecida Erro de sistema desconhecido Modo de vídeo desconhecido  Tipo de dispositivo virtual desconhecido: %s
 Descarregar o emulador de EFI. ( ou \( sem correspondência ) ou \) sem correspondência [ ou [^ sem correspondência \{ sem correspondência Opção não reconhecida '%s'\n Estado da fila não reconhecido Formato de imagem não suportado Uso: Uso: %s DISPOSITIVO
 Uso: %s [ARQUIVO_ENTRADA [ARQUIVO_SAÍDA]]
 Uso: %s [OPÇÃO] ENTRADA_DO_MENU\n Uso: %s [OPÇÃO]\n Usar CD-ROM como root. Use TEXTO como corpo da entrada do menu. Usar console serial. NOMEDAVAR Contagem regressiva detalhada. Versão %u.%u
32 bit CS = 0x%x, comp. = 0x%x, desloc. = 0x%x
16 bit CS = 0x%x, comp. = 0x%x
DS = 0x%x, comp. = 0x%x
 O dispositivo virtual está degradado O dispositivo virtual está com falhas O dispositivo virtual está desconectado O dispositivo virtual está conectado O dispositivo virtual está removido LARGURAxALTURA Aguardar por um número de segundos especificado. Aguardar pressionamento de tecla depois de cada linha de saída. Aviso: Quarta-feira Windows NT/2000/XP (carregador) Windows Vista/7 (carregador) Gravar VALOR 16 bit para o ENDEREÇO. Gravar VALOR 16 bit para a PORTA. Gravar VALOR 32 bit para o ENDEREÇO. Gravar VALOR 32 bit para a PORTA. Gravar VALOR 8 bit para o ENDEREÇO. Gravar VALOR 8 bit para a PORTA. Hipervisor xen, versão %s YUV [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] ARQUIVO [--md5] SENHA [ARQUIVO] [--no-mem-option] [--type=TIPO] ARQUIVO [ARGUMENTO ...] [-1|-2] [--excluir=TABELA1,TABELA2|--carregar somente=TABELA1,TABELA2] ARQUIVO1 [ARQUIVO2] [...] [-c ARQUIVO [-p PREFIXO]] [ARQUIVO1 [ARQUIVO2 ...]] [-d] NOME_DO_DISPOSITIVO ARQUIVO. [-e|-n] TEXTO [-f ARQUIVO] [-f ARQUIVO] nome_da_variável [...] [-f|-l|-u|-s|-n] [--hint DICA [--hint DICA] ...] NOME [-h|-p|-r] [ARQUIVO] [-l] UUID_DO_GRUB [NOME_DA_VARIÁVEL] [-l|-h|-a] [ARQUIVO ...] [ENDEREÇO|comUNIDADE][,VELOCIDADE] [ARGUMENTO] [PLACA] [VARIÁVEL_DO_AMBIENTE=VALOR] [VARIÁVEL_DO_AMBIENTE] [COMBINAÇÃO_DE_TECLAS1] [COMBINAÇÃO_DE_TECLAS2] ... [NÚMERO:]NOME_DA_VARIÁVEL [NÚMERO] [OPÇÕES...] [OPÇÕES] [OPÇÕES] DISCO [OPÇÕES] ARQUIVO_OU_DISPOSITIVO [OPÇÃO]... [MÓDULOS] [OPÇÃO]... [CAMINHO|DISPOSITIVO] [OPÇÕES] [CAMINHO] [PADRÃO ...] [LISTA_DE_USUÁRIOS] [VALOR]... [LxA[xP]] [LxA] [[ano-]mês-dia] [hora:minuto[:segundo]] [barramento]:[slot][.func] [fabricante]:[dispositivo] um valor foi atribuído ao argumento '%s' enquanto ele não requer um argumento acesso negado endereço endereço não encontrado tentar ler ou gravar fora do disco '%s' tentar ler ou escrever fora da partição tentar ler após o final do arquivo tentar procurar fora do arquivo RAM disponível formatos disponíveis: endereço_base = 0x%llx, comprimento = 0x%llx, %s
 endereço_base = 0x%llx, comprimento = 0x%llx, tipo = 0x%x
 não foi possível encontrar o comando '%s' não foi possível abrir '%s': %s não foi possível ler '%s': %s não foi possível procurar '%s': %s não foi possível obter o status '%s': %s não foi possível gravar no CD-ROM não foi possível gravar para '%s': %s não foi possível gravar na saída padrão: %s cat ARQUIVO falha na soma de verificação cmp ARQUIVO LOCAL comUNIDADE[,VELOCIDADE] conexão recusada não foi possível encontrar um dispositivo membro necessário do sistema de arquivos multi-dispositivos. não foi possível encontrar a classe 'part' do geom não foi possível abrir o geom Não foi possível ler os metadados ELI cp ARQUIVO LOCAL crc ARQUIVO remover mapa de dispositivos se já existir o contador de dispositivo excedeu o limite disco '%s' não encontrado não atualizar o estado do LED concluído 'Enter': inicializa, 'e': opções, 'c': linha de comando erro: %s.
 falha ao ler o setor 0x%llx de '%s' falha ao gravar o setor 0x%llx para '%s' falso RAM com problemas (BadRAM) arquivo '%s' não encontrado é esperado o nome de arquivo é esperado nome de arquivo ou tempo e notas o sistema de arquivos '%s' não suporta rótulos quatro argumentos esperados gerar uma imagem no FORMATO fornece uma breve mensagem de uso fornece esta lista de ajuda grub-mkimage está compilado sem suporta a arquivos XZ grub> desliga por SEGUNDOS segundos (padrão 3600) hex ARQUIVO instalar as imagens do GRUB no diretório DIRETÓRIO/%s ao invés do diretório %s senha PBKDF2 inválida magia ELF dependente de arquitetura inválida magia ELF independente de arquitetura inválida especificação de cor inválida: '%s' nome de arquivo inválido '%s' formato de linha inválido: %s especificação de modo de vídeo inválida '%s' listar os endereços de rede listar as placas de rede listar as rotas da rede ls CAMINHO arquivo lzop corrompido símbolo '%c' faltando faltando opção obrigatória para '%s' módulo '%s' não está carregado O módulo não está carregado nome APM não encontrado nenhuma informação de DHCP encontrada nenhuma opção de DHCP encontrada nenhum servidor DNS configurado nenhuma comando foi especificado nenhuma chave de descriptografia disponível nenhuma partição nenhuma tabela de símbolo nenhum terminal especificado não é um diretório não é um arquivo comum é esperado um parâmetro memória insuficiente o arquivo de saída deve ser especificado volume físico %s não encontrado pré-carregar os módulos MÓDULOS especificados fim prematuro do arquivo fim de arquivo prematuro %s pressionar a tecla CapsLock pressionar a tecla Insert pressionar a tecla NumLock pressionar a tecla ScrollLock pressionar SysRq pressionar o Alt esquerdo pressionar o Ctrl esquerdo pressionar o Shift esquerdo pressionar o Alt direito pressionar o Ctrl direito pressionar o Shift direito exibe a versão do programa exibir a informação da versão e sair exibir esta mensagem de ajuda e sair realocação de 0x%x ainda não está implementada RAM reservada diretório raiz do servidor TFTP salvar imagens ROM no DIRETÓRIO [opcional] porta serial '%s' não encontrada definir o modo CapsLock definir o modo Insert definir o modo NumLock definir o modo Pause definir o modo ScrollLock definir o nome do programa tamanho stretch|normal símbolo '%s' não foi encontrado temporário terminal '%s' não foi encontrado o argumento '%s' requer um inteiro este arquivo ELF não é do tipo correto este LDM não tem partição de embutir; não será possível embutir encadeamento de link simbólico muito profundo são esperados dois argumentos tipo tamanho de dispositivo não alinhado argumento desconhecido '%s' sistema de arquivos desconhecido erro desconhecido na expressão regular formato de destino desconhecido %s
 interface de rede não reconhecida '%s' número não reconhecido formato gzip não suportado paridade de porta serial não suportada velocidade de porta serial não suportada bit de parada de porta serial não suportada tamanho de palavra de porta serial não suportada usar ARQUIVO como xorriso [opcional] a variável '%s' não está definida versão ou magia ELI incorretas xnu_uuid DISPOSITIVO arquivo xz corrompido ou com opções de bloco não suportadas você não pode remover este endereço você precisa carregar o kernel primeiro seu core.img está maior que de costume. Ele não caberá na área de embutir.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          boot/grub/locale/ru.mo                                                                              0000600 0001750 0001750 00000415630 13417732100 0013661 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                       x     #    G      _  #   _      _     _     _     `  $   `     =`  6   Q`     `     `  	   `     `     `     `     `     `     a  .    a  .   Oa  %   ~a     a     a    a    b    c     d  7   d  F   e  v   be  +   e     f      f     7f  !   If     kf  ,   f     f     f  $   f     g  *   #g     Ng     ag     ig     yg     g  
   g  	   g     g  ,   g  ,   h  ,   <h  '   ih  -   h      h  (   h  (   	i  )   2i     \i     |i     i     i     i  "   i  4   i     j     j  7   (j     `j  1   ij     j     j  %   j  '   j  %   k  '   1k     Yk     ^k     `k     ~k     k     k     k     k     k     k     k     l     l     (l  3   5l     il  $   ol     l     l     l     l     l     l     m  -   )m     Wm  !   tm     m     m     m  #   m      n  `   n  Z   n     Do     _o     {o     }o     o     o     o     o     o     o     o     p     %p     ?p     [p     hp     p     p     p     p     p     p     p  %   p     	q     (q     <q     Sq     nq     q     q     q     q  *   q  3   q     .r  "   Ir  8   lr     r     r  	   r  #   r     s      s     3s     Ss     ss     s  )   s     s     s      t  P   t     ot     t  H   t  &   t     	u     !u  !   (u  ,   Ju     wu     u     u  	   u  !   u  *   u     u     v     (v     :v     Tv  $   lv     v     v     v     v     v     w  
   %w  
   0w     ;w  1   Nw     w     w     w     w  3   w  >   x  $   Cx     hx     x     x     x     x     x  +   y     /y     Ky  #   iy     y     y  $   y     y     z  '   z  9   Fz     z     z  z   z     2{     9{  8   M{     {  
   {     {     {     {     {     |  +   |     |     |     |  "   }     5}     F}  (   W}     }     }     }     }     }     }  "   }  0   ~     A~     F~     U~  7   d~     ~     ~     ~     ~     ~     ~  0   ~          /     A     W  2   n  %               *     6     +   M     y            !   {  d     e     d   h  i   ͂  o   7  H                       *     =     S     m       #             ߄       1   	  )   ;     e     l     n       /             х       5        ;     Z  K   v          ކ                           '   $  P   L            	   ȇ     ҇     Շ       '     +   0     \     m  )             ʈ                    0     F  $   [            "        Љ     ҉     މ  (               "     +   A  -   m               Ê     Ԋ       O        F     \     t            %        Ӌ  )     !     "   >     a     }  +             ׌       !             7     P     \      s                                4         U     t                    Ԏ                #  !   D     f  4     M     2        6     P  *   n  8        Ґ     ߐ               %  3   =  $   q  +             ב                    "      >     _     }            D               7      ;   8     t       !        Փ       s                       Ŕ     ؔ                    0     4     :                    Ö     ʖ     ֖            '   %  
   M     X     g     }                      H   ͗          )     E     U  %   d            #                       $      ;     \      {       "     (   ̙       %        7  2   Q            #     *   ʚ               
  #        3     8  	   J  	   T  "   ^  ;     #     <             ,     J  .   X  	          `          !     )   ;     e     i     o     w  q             
     !     0     G     Z     p            "   Þ                    0     G     ]     q       #        ß       g        d            -         N  !   b       "     '     Q        2     N     h     |                    ڢ               0     L     d      r                     ܣ                 -   <     j       "     b     )        H     ^     v  ,             ץ  	   ܥ  "     %   	     /     4     I     P  &   Y  )          ^          $   6  %   [       ^   4  _     }        q  )   (  '   R  >   z  D     !     '      -   H  #   v       )          )     )   +  ,   U                    ֬       E     $   H  A   m  )        ٭               -      L     m  q          :        L     j     y               ͯ            0        E     c     x  )     &        ߰               *  )   F     p  %     %     ,   ̱  '     :   !     \  -   {       .               '     $   7  "   \                 *               )     o               6   ]            0         ε  !     "     #   4     X     j            !        ߶  
           <     %   W  >   }          ŷ     ɷ     Ϸ            d     *     0     6   ܸ               )     >     R     X  0   r       !        ع       $        ,     E     \     z       $     "   ͺ  $             *      >     _     t                         һ       '        /     O  $   h  +     "        ܼ  )                  =     ]     r  '             ͽ       <         ;     \     d     w  m                   5     O     h  +     3     1          '   "  -   J     x  '     '     .     	         
     &     ?     [     w                                *     ?   J  B     p        >  /               .   $  O   S  )               	          5        P     b     z            :                   *     0     C     J     Y     b                      	                                 1     8     ?  
   M  
   X  	   c     m  !   s  )                         F   "  N   i       "               -      -   .  $   \  #     0     6                  .  (   <  1   e  )               !        	           >  %   V     |  &                     7     .   H  4   w                           %   .     T     i     ~                           ,        /     >     N     j     }       #               B        @     \     |                 &             !     /     8     V  &   p                      ;     V   *  "     &     !                  	  /   '  H   W  F     w     N   _  (               I     $   I  '   n       %                         $     '   :  *   b                 J             5     P  -   d  +          $          "     +     J   A  %                "              !     B     \     s                      %             +     I  %   f                           [        B  !   V     x                                             )     ?     Y     v                                        ,  1   L     ~                                1          0        5     J  !   `       "                                 '     <     H     W     g     x                 &                       6     T  '   i  &          L             0  !   D     f                                                #   .  #   R  $   v            &          !             (     =     B     Q  	   g  7   q       %     [     w   E  7     K     #   A  /   e                 &     U     @   i  Q                  +  +   @     l  R     L     .   )     X     o  F   t                              .      A     b     w       2     !     #        %     9     Q     b                           (     #   8     \     u            )               '     '   @  '   h       0               -     8   G            !                     .        L  !   j  B     E     B       X  1   D  E   v  7     H        =  O   Y  +     O     
   %     0     M     e  4     #     '     /        5  h   L  D     ;        6     ;    R    d    N  %   \  `     m        Q  >        Q  8   `       9          C     #   A     e  <   x  9     b     &   R     y       3     t        I     [  -   u  O     \     O   P K    P    :   = E   x B    c    5   e 5    !            E    ]   Q 	        S       ! G   2 7   z     U    Z    U   f Z           ) A   + /   m 6    
    (        7   "    Z    v              D       $	 S   *	 /   ~	 1   	    	 !   	 +   
 /   F
 9   v
 [   
 1    E   > _    Y    B   > W               x 1   
 3   <    p    s     y         3    =    =   % ;   c N    Q    S   @     0    -               ?    [    ` #   i 4    /    "    8    =   N &    &    *    (    /   . V   ^     N   M _    t       q F        =    ,   # #   P 8   t R    =        > i   ^ ?    E    3   N     .   , .   [     C    !   [    } 4           V    r !   y     U    L    6   O )    $    )    -    K   - $   y $    :    @    <   ? 8   |     
        \       R     k  6     0     ^     q   J! `   ! $   " R   B" +   " 6   " C   " +   <# `   h# J   # G   $ L   \$ -   $ E   $ O   % F   m% H   % U   % j   S& J   & I   	'    S' '   :( U   b( }   ( B   6)    y)    ) /   ) 9   ) ^  * 0   j+ u   + !   , *   3, .   ^, ?   ,    , 0   , X   - &   u- 1   -    -    - 4   . 2   6. C   i. H   .    .    .     / `   @/    /    /     / 6   /    0    )0 L   60    0    0    0 9   0 |   1 A   ~1 )   1    1 [   2 b   c2 L   2 4   3 )   H3   r3 ;   5 "  C5 #  f6 "  7 '  8 @  9    ; 2   ;    -<    L<    f< "   < $   <    < $   < 9   = %   A= #   g=    = a   = i   >    u>    >    > $   > N   >    ? 4   ,?    a? \   ? 0   ? 5   @    E@ M   @ =   A @   ZA    A 	   A    A    A V   A `   B >   ~B    B 	   B    B A   B '   !C a   IC a   C    D :   ,D ;   gD 6   D =   D 8   E $   QE *   vE .   E 4   E U   F .   [F @   F b   F    .G    1G #   MG c   qG    G 	   G O   G ]   6H    H .   I    EI !   YI 3   {I 4   I    I #   J ?   J C   J /   CK 5   sK s   K D   L r   bL C   L E   M 5   _M B   M a   M 2   :N !   mN .   N 7   N 1   N &   (O    OO (   iO 6   O 0   O "   O ;   P 7   YP ,   P "   P l   P 2   NQ "   Q ;   Q (   Q ,   	R &   6R *   ]R :   R Y   R L   S 3   jS p   S    T a   T <   U 0   DU `   uU r   U    IV <   dV $   V #   V $   V ]   W ^   mW V   W 5   #X $   YX #   ~X #   X !   X M   X .   6Y +   eY    Y    Y    Y    Y    YZ    fZ i   sZ    Z E   q[ 6   [ C   [ ,   2\ L   _\ $  \ 0   ] D   ^ #   G^    k^ *   ^ 1   ^ $   ^    _    &_ 	   -_ ]  7_   ` *   +b /   Vb    b    b G   b .   b ;   ,c ]   hc     c #   c ;   d    Gd 2   Nd 
   d    d :   d    d "   e (   e    e    f A   f $   ]f *   f =   f J   f K   6g    g    g 8   g S   g K   Hh    h E   h N   h ,   6i <   ci 4   i [   i    1j )   Ej :   oj ^   j    	k 1   k    >k ,   Gk    tk &   }k 	   k    k `   k    $l a   l    m &   m 0   m    m U   n 	   bn    ln    n $   2o G   Wo Q   o    o 	   o    p "   p    9p    q !   q    ;q %   Pq +   vq -   q 7   q F   r D   Or \   r 1   r @   #s &   ds "   s (   s    s "   s $   t S   >t I   t B   t    u 5  u 6   4w D   kw h   w +   x G   Ex )   x t   x T   ,y    y :   .z ?   iz    z 4   z "   z F   { D   f{ F   { D   { E   7| C   }| E   | ?   } d   G} .   } .   } .   
~ C   9~    }~    ~ 7   ~ [   ~ -   N G   | V        a    @   G '    6    l    J   T         O   Ă B       W    d         o    R    (   b     2   ; L   n R    d      s    )    ߈ F   W    _   ^ Y    c    )   | /    ;   ֌ C    K   V b    5    K   ; Z    g    D   J K    G   ۏ 7   # 3   [     B   5    x \    F   n L    L    d   O Q    F       M =   2    p b    "   a ?    ;   Ė +     *   , ;   W 9    e   ͗ `   3 5    3   ʘ _    b   ^ 1    =    +   1 <   ] A    ;   ܚ F    F   _ M    H    n   = C    Y       J    d !    3    f   B Q    >       : J   Q )    j   Ɵ    1    @ h   W     =    ^  ϡ    .         [   ǣ >   # A   b H    H    4   6 D   k 2    M    >   1 (   p         g   Ҧ _   : Z            	    P    )   f 4       Ũ Z    K       :     %   Ϫ ,    A   "    d 1   j f    /    9   3 @   m     X   ˬ .   $ .   S 3    )    L    J   - C   x S    6    ,   G P   t (   ů            (    E 0   Y 8    8   ð \    O   Y D    G    Y   6 C       Բ K    4   < U   q G   ǳ 3    P   C R    k    `   S Y    a    C   p     1   ж =       @ F    6   + @   b ;    :   ߸ T       o r       o >    l   ɺ    6 ]   T a        
    '    $   ɼ D    >   3 D   r >    C    =   : &   x )       ɾ H   ξ Z       r         ?            A   + {   m =    *   '    R    g /   u S        +       ;    U -   t v    "    -   <    j .   }     :        ;    !   H (   j                 9    ,   % $   R 5   w     
        )       
         - %   6 G   \ &    3    K    H   K        0     5    
        Y   0 V    8    D    L   _ _        "   , '   O <   w G    [       X 2   k 4    6    X   
 4   c U    -    P    >   m B    2    Y   " \   | v    ;   P -    @    1    @   - X   n 7    7    B   7 3   z 2             B    i   P (         U    (   Z ?    5    E    2   ? Y   r     :    7    '    @    )   ] .    Z    <    '   N    v /    ;    Y    4   I A   ~ !    !    e       j ;   	 Q   E L    A       & M   9 e    x    ~   f     {    ^    1   y     b    M   ! B   o 3    <       # $   , !   Q $   s @    O    ^   ) T    3    2       D 5    P    &   _ r    6       0 e   6     k    C    f   Y L    9    v   G z    (   9 ;   b 4    )    .    .   , ,   [ 7    ;    U    %   R $   x #    ?    9    3   ; =   o              *    N    )    "   G    j D   q     0    *    +   ( $   T "   y *    N    "    4   9 -   n     "    <    6    "   R C   u i       # "   7    Z    w ,    l   %   (    N ;    m    -    $    M    0   " A   S 4    7    $    "   ' #   J &   n                            < ;   \ X    I    ;   ; 0   w ?    .    R    U   j /        3    >    T   % >   z 0    B    !   - $   O ,   t *    2    0    ,   0 R   ] R    N     *   R  #   }  Q     &     M    &   h &            %        W    )   c I           a `   D     3   g X    &    -    )   I 0   s n    }        ,     I   M E    u    V   S	    	    Z
 X    ,   t         <   F ,    .    .    6    6   E >   | N    6   
 -   A U   o =    E    '   I (   q     9    0    9    2   R _    _    w   E d    1   " 3   T <    5    o    L   k _    x    p    p    \   s u    U   F W    d    }   Y 5    3    E   A O    P       ( s   F 9    <    V   1                #       `  %  q      1    W    V                5  :  v  )           n  M  p               :   %  \                    6        `   d           K      S                  {            O            r     ?      t  '  8  9  k              s            ^  o                  S  a                                  L    k  `      
              3      <          U  3    R   e  .       "      G      ,   {       ^                            <  k  B  =   Q     .   X  !  C     K                    m                      
    j           e  2                  d   
     y    0                            V  x                  #  P       )         k  A           A                 {             _            N  L                       K    F     $                       i     O                        P  (    9   	       #  '  c   0  !               I    !                                         %                       i    q        o                  h             l  z                          i    X  f         
                                       <        s        !         @        v     |                        C        ,          *    T                   w      	   -      f   R  ;                                          y           G      #   g                     1             u      D         '   /  @   q    R                O      0  D            T             A      [  ]                    L   O                  ,    }              t     )          g  .    ,          4   ]  l        q           l  >                   w  D                }     &         x          M  \              \                                     4  ?            N  o      ~      d  *      r          e      /                   X    C                                         l      v              ^                            p    r     L         %             7  3      G  f  7    .                     H  s    Z                  r                            (                   W    (          h  8  w          S              ]           n          (  u               a      d  7            c              ]                        "                j  w               7                1        t          ?   u                    Q  M                        +       Z                        h       U  /            n                      '               I           z    W                              *       =  z          {             E        4  m      j      9           Y         3          6      S    2              &              u    c  s              i    \    5       Z      b              A      Q          k           G     v  F        x                      F  o                        a      &      x  -  `  _  B  ]      1   h  s         U               J  2          -   ?  ~    T      g     L               [  &  =          <    R      2                     J               I      f      N            F            W         )                    [                  u  5           ?    _           t             P                         U              o             ;            b  N    
           $          -                   i         \  K  Y  Z                                  w       8      E  |  *            M          /      I  @     b          z                   T  |                   j     ^                   ;          I      y            J               6         n     $        $       (      H      V  b  H   "  8           D  >     %      !    "  >  1     Y     3                           .  [  $  c        :    @  m  m    H  2     l             E                 	          9    ~                     g  }    |  	      +      *              >  D        O              C  :        f              M              =                9  Y            6   p      -             /      v     #               d  0  r  y   a                <   N   J             b          Z            A       :        S                         ,    K   +                     a      h           c      6                       }  E         5   ;      C       [       @          >                                                  W      ^         )          =        g      Q       F      e   X       J                  E  0           ~       Y               '  T      B       x      Q  	  H    e                             m   p   +  X      _  G                     P          4  7    +            B      V  p    V            t      U        5                   R    _       j    ;          4             "                 &   n      `    q   8   P  B                           total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: option '%c%s' doesn't allow an argument
 %s: option '%s' is ambiguous; possibilities: %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File size: %s
 File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS Import ZFS wrapping key stored in FILE. Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List coreboot tables. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... M MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MODULE MODULES Mail xorriso support requests to <bug-xorriso@gnu.org>. Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Option -- switches to native xorriso command mode. Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] PUBKEY_ID Paletted  Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot into firmware setup menu. Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Render Apple .disk_label. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show CBMEM console content. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show the contents of a file. Show the current mappings. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Switch to native disk drivers. If no modules are specified default set (pata,ahci,usbms,ohci,uhci,ehci) is used Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 T TARGET Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This entry can be booted by any user. This requires setting GRUB_DEFAULT=saved in %s/default/grub.\n Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. Your embedding area is unusually small.  core.img won't fit in it. Your xorriso doesn't support `--grub2-boot-info'. Some features are disabled. Please use xorriso 1.2.9 or later. Your xorriso doesn't support `--grub2-boot-info'. Your core image is too big. Boot as disk is disabled. Please use xorriso 1.2.9 or later. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `cryptomount' command fails: %s `loopback' command fails: %s `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format blocklist FILE blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s cannot compress the kernel image cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot get translator command line for path `%s': %s cannot open OS file `%s': %s cannot open `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. diskboot.img size must be %u bytes do not probe for filesystems in DEVICE domain name component is too long don't update LED state done embed FILE as an early config embed FILE as public key for signature checking embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enable ARCS (big-endian mips machines, mostly SGI) boot. Disables HFS+, APM, sparc64 and boot as disk image for i386-pc enable sparc boot. Disables HFS+, APM, ARCS and boot as disk image for i386-pc enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to get canonical path of `%s' failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification install GRUB images under the directory DIR/%s instead of the %s directory install even if problems are detected invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid block size invalid color specification `%s' invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no `/' in canonical filename no command is specified no decryption key available no network card found no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found pre-load specified modules MODULES premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory of TFTP server route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the argument `%s' requires an integer the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for label use COLOR for label background use COLOR for text use DIR as the EFI System Partition root. use FILE as font (PF2). use FILE as font for label use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub 2.00+20130519
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-05-21 20:32+0400
Last-Translator: Yuri Kozlov <yuray@komyakino.ru>
Language-Team: Russian <gnu@mx.ru>
Language: ru
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Generator: Lokalize 1.4
Plural-Forms:  nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);
               всего памяти: %d КиБ
     Предпочтительный режим недоступен
     Предпочтительный режим: %ux%u
   некорректная контрольная сумма для EDID   версия EDID: %u.%u
   Не удалось инициализировать видеоадаптер   Информация недоступна   Информация VBE: версия: %d.%d издание ПО OEM: %d.%d
   или:   (крайний слева)  (серединный)  (крайний справа)  - Раздел начинается с %llu%sКиБ  - Размер сектора %uБ  - Общий размер %llu%sКиБ  - Общий размер неизвестен  [ПАРАМЕТР…] %.*s: значение параметра ARGP_HELP_FMT должно быть положительным %.*s: параметр ARGP_HELP_FMT требует значение %.*s: неизвестный параметр ARGP_HELP_FMT %dс осталось %dс. Кажется, что %s содержит файловую систему %s, на которой неизвестно о наличии места для загрузчика в стиле DOS. Установка GRUB в этом случае может привести к ПОВРЕЖДЕНИЮ ФАЙЛОВОЙ СИСТЕМЫ, если важные данные будут перезаписаны grub-setup (параметр --skip-fs-probe выключает эту проверку, но вас предупредили) Кажется, что %s содержит карту разделов %s и LDM, что не является безопасной комбинацией. Установка GRUB в этом случае может привести к ПОВРЕЖДЕНИЮ ФАЙЛОВОЙ СИСТЕМЫ, если важные данные будут перезаписаны grub-setup (параметр --skip-fs-probe выключает эту проверку, но вас предупредили) Кажется, что %s содержит карту разделов %s, на которой неизвестно о наличии места для загрузчика в стиле DOS. Установка GRUB в этом случае может привести к ПОВРЕЖДЕНИЮ ФАЙЛОВОЙ СИСТЕМЫ, если важные данные будут перезаписаны grub-setup (параметр --skip-fs-probe выключает эту проверку, но вас предупредили) %s не поддерживает UUID %s генерирует раскладку клавиатуры GRUB с помощью ckbcomp\n %s устарел. Используйте вместо него set gfxpayload=%s до команды linux.
 %s устарел. Режим VGA %d не распознан. Используйте вместо него set gfxpayload=ШИРИНАxВЫСОТА[xГЛУБИНА] до команды linux.
 %s пока не поддерживается grub-mkconfig.\n %s, с Hurd %s %s, с Hurd %s (режим восстановления) %s, с Linux %s %s, с Linux %s (режим восстановления) %s, с Xen %s и Linux %s %s, с Xen %s и Linux %s (режим восстановления) %s, с гипервизором Xen %s, с kFreeBSD %s %s, с kFreeBSD %s (режим восстановления) %s, с ядром %s (с использованием %s) %s, с ядром %s (с использованием %s, режим восстановления) %s: НЕСОВПАДЕНИЕ ХЭША
 %s: OK
 %s: ОШИБКА ЧТЕНИЯ
 %s: Слишком много аргументов
 %s: Вы должны запускать программу имея права суперпользователя\n %s: ошибка: %s: информация: %s: неверный параметр «%c»
 %s: у параметра «%c%s» не может быть аргумента
 %s: двусмысленный параметр «%s»; возможные варианты: %s: у параметра «--%s» не может быть аргумента
 %s: для параметра «--%s» требуется аргумент
 %s: у параметра «-W %s» не может быть аргумента
 %s: двусмысленный параметр «-W %s»
 %s: параметру «-W %s» требуется аргумент
 %s: параметру требуется аргумент «%c»
 %s: параметр должен использоваться с аргументом — «%s»\n %s: неизвестный параметр «%c%s»
 %s: неизвестный параметр «--%s»
 %s: предупреждение: (32-бит) (64-бит) (ОШИБКА ПРОГРАММЫ) Версия неизвестна!? (ОШИБКА ПРОГРАММЫ) Параметр должен быть распознан!? (на %s) - Метка «%s» - Время последнего изменения %d-%02d-%02d %02d:%02d:%02d %s --ДАЛЬШЕ-- -h ХЭШ [-c ФАЙЛ [-p ПРЕФИКС]] [ФАЙЛ1 [ФАЙЛ2 …]] -l | -r | [-s] устройство_grub диск_ос. ,5 поддерживается 16-битный защищённый интерфейс
 16-битный защищённый интерфейс не поддерживается
 поддерживается 32-битный защищённый интерфейс
 32-битный защищённый интерфейс не поддерживается
 =ЗНАЧЕНИЕ > память долговременного хранения ACPI память, регенерируемая ACPI Не удалось выключить через ACPI АДРЕС АДРЕС ЗНАЧЕНИЕ [МАСКА] АДРЕС [РАЗМЕР] АДРЕС1,МАСКА1[,АДРЕС2,МАСКА2[,…]] АДРЕС СЕРВЕР_DNS APM запрещён
 APM не активирован
 APM разрешён
 APM активирован
 ARGP_HELP_FMT: значение %s меньше или равно %s ASCII Использовать DOS-стиль CR/NL для окончаний строк. Активные терминалы ввода: Активные терминалы вывода: Адаптер «%s»:
 Добавить сервер DNS Добавить сетевой адрес. Добавить сетевой маршрут. Дополнительные параметры для %s Дополнительные параметры для %s (с гипервизором Xen) Разрешить прерывание по ESC. Запросить имя файла для перезагрузки. Предполагать, что ввод в шестнадцатеричной системе. Предполагать, что ввод является ключевой фразой. Предполагать, что ввод не обработан. Выполняется попытка расшифровать мастер-ключ… Попытка установить GRUB на диск с несколькими разметками разделов или с разметкой разделов и файловой системой. Лучше этого НЕ ДЕЛАТЬ. Попытка установить GRUB на диск с несколькими разметками разделов. Это пока не поддерживается. Попытка установить GRUB на диск без разделов или на раздел. Лучше этого НЕ ДЕЛАТЬ. Доступные терминалы ввода: Доступные терминалы вывода: Б Б/с ДАМП_BIOSа [ДАМП_INT10] БЛОК БАЙТ:БИТ Режим фонового изображения. Базовый каталог для списка хэшей. Загрузить систему, указанную в BIOS Загрузить операционную систему. Загрузиться в однопользовательский режим. Загружаться с выводом отладочных сообщений. Показывать подробные сообщения при загрузке. Загружается «%s» Загружается список команд Загрузка в слепом режиме Bootpath: %s
 Bootpath: недоступен
 Прерваться в GDB CGA  ЦВЕТ КОМАНДА [АРГУМЕНТЫ] CPU Idle не замедляет процессор
 CPU Idle замедляет процессор
 CS5536 по адресу %d:%d.%d
 Не удалось включить область ROM. Изменить настроенные устройства. Изменить тип раздела Проверить клавишу Alt. Проверить клавишу Control. Проверить клавишу Shift. Проверить возможности ЦП. Проверить хэши файлов по списку хэшей из ФАЙЛА. Проверить, поддерживается ли процессором 64-битный («длинный») режим (по умолчанию). Проверить состояние модификаторов клавиш. Проверьте, что пользователь в СПИСКЕ_ПОЛЬЗОВАТЕЛЕЙ. Проверяет файл сценария настройки GRUB на синтаксические ошибки. Очистить экран. Флаг активности на разделе %d сброшен. 
 Команды: Сравнить ФАЙЛ с ЛОКАЛЬНЫМ_ФАЙЛОМ. Сравнить файл «%s» с «%s»:
 Сравнить два файла. Вычислить XNU UUID для устройства. Вычислить и проверить хэш контрольной суммы. Настроить последовательный порт. Продолжить циклы Преобразует файлы шрифтов распространённых форматов в PF2 Скопировать ФАЙЛ в ЛОКАЛЬНЫЙ_ФАЙЛ. Скопировать ФАЙЛ в стандартный вывод. Не удалось найти драйвер FPSWA Невозможно найти физический том «%s». Некоторые модули в базовом образе могут отсутствовать. Невозможно загрузить sha256 Невозможно загрузить sha512 Создать BIOS-подобные структуры для обратной совместимости с существующей ОС. Создать пустой файл блока окружения. Текущие типы terminfo: УСТРОЙСТВО УСТРОЙСТВО [РАЗДЕЛ[+/-[ТИП]]] … УСТРОЙСТВО должно задаваться в формате операционной системы (например, /dev/sda). ИМЯ_УСТРОЙСТВА КАТ КАТАЛОГ [OSBundleRequired] СЕРВЕР_DNS Инструмент отладки драйвера файловой системы. Объявить области памяти как сбойную (badram). Декомпрессор слишком большой Определить пункт меню. Определить подменю. Удалить сетевой адрес. Удалить сетевой маршрут. Удалить указанный привод обратной петли. Удалить переменные. Определить драйвер. Определить UUID файловой системы. Определить метку файловой системы. Определить тип файловой системы. Определить тип карты разделов. Устройство %s: Devid: %s
 Devid: недоступен Явно заданный цвет, маска: %d/%d/%d/%d  положение: %d/%d/%d/%d Выключить ACPI. Выключить SMP. Выключить вывод при загрузке. Выключить/включить SMART (0/1). Отбрасывается неправильно вложенный раздел (%s,%s,%s%d) Статистика дискового кэша: попаданий = %lu (%lu.%02lu%%), промахов = %lu
 Количество дисков должно быть перед списком дисков.
 Показать версию FPSWA. Показать состояние работоспособности по SMART. Показать строку текста. Показать список блоков ФАЙЛА. Выводить сообщения на всех консолях. Показать режим питания. Показать справку по этой команде и закончить работу. Показать эту справку и закончить работу. Показать/настроить текущую дату/время. Не выдавать конечный символ новой строки. Не показывать сообщения. Не проверять дисководы гибких дисков. Не использовать APM для останова компьютера. Ничего не делать, успешное завершение. Ничего не делать, неудачное завершение. Не выводить отладочные загрузочные сообщения. Не загружать таблицы компьютера, указанные через запятую. Не перезагружаться, а выполнить останов. Не останавливаться после первой ошибки. Не обновлять EBDA. Может помочь при ошибках и подвисаниях с некоторыми BIOS, но не оказывает влияния, если ОС не принимает RSDP от GRUB. ПЕРЕМЕННАЯ_ОКРУЖЕНИЯ ПЕРЕМЕННАЯ_ОКРУЖЕНИЯ [ПЕРЕМЕННАЯ_ОКРУЖЕНИЯ] … ОШИБКА: допустимая раскладка клавиатуры не найдена. Проверьте ввод.
 Для выхода нажмите ESC в любой момент. ВЫРАЖЕНИЕ ВЫРАЖЕНИЕ ] Затраченное время: %d.%03d с 
 Затраченное время: %d.%03d секунд 
 Встраивание невозможно. При имеющихся параметрах GRUB можно установить только с помощью списка блоков (blocklists). Однако, список блоков является НЕНАДЁЖНЫМ механизмом и его лучше не использовать. Эмулировать набор нажатий Включить обработку экранирующих символов обратной косой черты. Введите пароль ZFS:  Войти в KDB при загрузке. Войти в нормальный режим. Введите ключевую фразу для %s%s%s (%s):  Введите пароль:  Введите имя пользователя:  Ошибка при разборе аргументов командной строки
 Вычислить выражение. Не удалось выполнить выход Выйти из GRUB. Выйти из циклов Выйти из нормального режима. Экспортировать переменные. Экспортировать таблицы версии 1 в ОС. Экспортировать таблицы версии 2 и 3 в ОС. ФАЙЛ ФАЙЛ [АРГУМЕНТ …] ФАЙЛ [АРГУМЕНТЫ…] ФАЙЛ | ТЕМП [ТОН1 ДЛИТЕЛЬНОСТЬ1] [ТОН2 ДЛИТЕЛЬНОСТЬ2] …  ФАЙЛ… ФАЙЛ1 ФАЙЛ2 ИМЯ_ФАЙЛА КОМАНДА ФАЙЛОВАЯ_СИСТЕМА [ПЕРЕМЕННАЯ] ФАЙЛ|prompt ФОРМАТ Протоколом FPSWA не удалось найти интерфейс Редакция FPSWA: %x
 ИЗ-В[,ИЗ-В] С[K|M|G] ПО[K|M|G] FT_Init_FreeType завершилась с ошибкой Не удалось загрузиться согласно пунктам по умолчанию и резервному.
 Не удалось создать дерево «device-mapper» Откат к резервному «%s» Размер файла: %s
 Файловая система «%s» не поддерживает встраивание Файлы различаются начиная со смещения %llu: 0x%x [%s], 0x%x [%s]
 Файлы различаются по размеру: %llu [%s], %llu [%s]
 Файловая система недоступна Тип файловой системы %s Укомплектовать GPT гибридным MBR для УСТРОЙСТВА. Указанные разделы будут частью гибридного MBR. Можно указать до 3 разделов. В ТИПЕ задаётся тип MBR. Символ + означает, что раздел активный. Активным может быть только один раздел. Завершить загрузку эмулятора EFI. Сначала попробовать устройство согласно ПОДСКАЗКЕ, если в данный момент работает в ARC. Если ПОДСКАЗКА заканчивается запятой, то также попробовать подразделы. Сначала попробовать устройство согласно ПОДСКАЗКЕ, если в данный момент работает в BIOS. Если ПОДСКАЗКА заканчивается запятой, то также попробовать подразделы. Сначала попробовать устройство согласно ПОДСКАЗКЕ, если в данный момент работает в EFI. Если ПОДСКАЗКА заканчивается запятой, то также попробовать подразделы. Сначала попробовать устройство согласно ПОДСКАЗКЕ, если в данный момент работает в IEEE1275. Если ПОДСКАЗКА заканчивается запятой, то также попробовать подразделы. Сначала попробовать устройство согласно ПОДСКАЗКЕ, если поддерживается прямой доступ к оборудованию. Если ПОДСКАЗКА заканчивается запятой, то также попробовать подразделы. Сначала попробовать устройство согласно ПОДСКАЗКЕ. Если ПОДСКАЗКА заканчивается запятой, то также попробовать подразделы. Исправить проблему с видео. Найден %s на %s (%s)\n Найден %s на %s\n Найден GNU Mach: %s Найден модуль Hurd: %s Найдено ядро NetBSD: %s\n Найден фон: %s\n Найден образ initrd: %s\n Найден каталог модулей ядра: %s\n Найдено ядро FreeBSD: %s\n Найден образ linux: %s\n Найдена тема: %s\n Ошибка Freetype %d при загрузке образа символа 0x%x для U+0x%x%s Зафиксировать настройки безопасности ATA до перезагрузки. Пятница Г GNU GRUB, версия %s Загрузочное меню GRUB GRUB пока не знает как остановить эту машину! Эмулятор GRUB. УСТРОЙСТВО_GRUB=УСТРОЙСТВО_PLAN9 Мусор в ARGP_HELP_FMT: %s Генерирует раскладку клавиатуры GRUB из консоли Linux. Генерирует хэш пароля PBKDF2. Генерирует файл настройки grub Сгенерировать автономный образ (содержащий все модули) в заданном формате Вычислить контрольную сумму crc32 для ФАЙЛА. Получить информацию о кэше диска. Получить/Задать параметры ATA-диска. ГиБ ГиБ/с ХЭШ ПОДСКАЗКА Остановить систему, если возможно, с помощью APM. Остановить компьютер. Эта команда работает не везде. Обработать N байт выходного файла. Привет, мир Hercules  ID ОБРАЗ1 [ОБРАЗ2 …] ТОЧКА_МОНТИРОВАНИЯ ПУТЬ_К_ОБРАЗУ КОМАНДЫ Импортировать обёрточный ключ ZFS, хранящийся в ФАЙЛЕ. Некорректное виртуальное устройство: тип недоступен Вставить модуль. Устанавливает GRUB на устройство. Установка завершена. Ошибок нет. Неправильная обратная ссылка Неправильное имя класса символов Неправильный символ сравнения Неверная команда %s.
 Неверное содержимое \{\} Неверное устройство «%s».
 Неверное количество дисков.
 Неверное предшествующее регулярное выражение Неверный конец диапазона Неправильное регулярное выражение Выполнить пользовательскую настройку маршрутизации. К АРГУМЕНТЫ ЯДРА КЛАВИША_КЛАВИАТУРЫ Клавиша клавиатуры для быстрого запуска этого пункта. КиБ КиБ/с Виртуальное устройство-лист (файл или диск) Устаревший параметр «ask» больше не поддерживается. Обозначения: маска/положение=красный/зеленый/синий/зарезервированный Длина генерируемого хэша Длина соли Список серверов DNS Вывести список устройств PCI. Показать список всех файлов. Список доступных видео-режимов. Если указано разрешение, то показываются только подходящие режимы. Список таблиц coreboot. Вывести список устройств и файлов. Вывести список устройств или файлов. Вывести список устройств. Вывести список файлов в ПУТИ. Показать карту памяти, предоставляемую микропрограммой (firmware). Список поддерживаемых видео-режимов: Список пользователей, которым разрешено загружать этот пункт. Показать или выбрать терминал ввода. Показать или выбрать терминал вывода. Показать текущие переменные. Вывести список загруженных шрифтов. Показать список переменных из файла блока окружения. Загрузить 64-битный образ XNU. Загрузить дамп BIOS. Загрузить окружение FreeBSD. Загрузить модуль ядра FreeBSD (ELF). Загрузить модуль ядра FreeBSD. Загрузить FreeBSD kernel.sys. Загрузить Linux. Загрузить NTLDR или BootMGR. Загрузить модуль ядра NetBSD (ELF). Загрузить модуль ядра NetBSD. Загрузить ядро Plan9. Загрузить каталог расширений XNU. Загрузить пакет расширения XNU. Загрузить расширение XNU. Загрузить образ XNU. Загрузить виртуальный диск XNU. Он будет доступен в ОС как md0. Загрузить дамп «device-properties». Загрузить образ PXE. Загрузить раскладку клавиатуры. Загрузить ядро multiboot 2. Загрузить модуль multiboot 2. Загрузить ядро multiboot. Загрузить модуль multiboot. Загрузить образ заставки для XNU. Загрузить образ XNU, находящегося в спящем режиме. Загрузить и инициализировать эмулятор EFI. Загрузить другой загрузчик. Загрузить другой файл настройки, но взять только пункты меню. Загрузить другой файл настройки без смены контекста, но взять только пункты меню. Загрузить другой файл настройки без смены контекста. Загрузить другой файл настройки. Загрузить другой coreboot payload Загрузить фоновое изображение на активный терминал. Загружать таблицы ACPI машины и таблицы, указанные в параметрах. Загрузить initrd. Загрузить виртуальный диск kOpenBSD. Загрузить ядро FreeBSD. Загрузить ядро NetBSD. Загрузить ядро OpenBSD. Загружать только таблицы, указанные через запятую. Загрузить один и тот же файл несколькими способами. Загрузить переменные из файла блока окружения. Загрузить ключ шифрования zfs. Загруженные шрифты: Загружается GNU Mach … Загружается Linux %s … Загружается Xen %s … Загружается начальный виртуальный диск … Загружается ядро FreeBSD %s … Загружается ядро Illumos … Загружается Hurd … М ошибка сверки MAC ПУНКТ_МЕНЮ задаётся номером, заголовком или идентификатором пункта меню. МОДУЛЬ МОДУЛИ Отправляйте запросы поддержки xorriso по адресу <bug-xorriso@gnu.org>. Создать загрузочный образ GRUB для компакт-диска, диска, USB-накопителя или дискеты. Создаёт файл раскладки клавиатуры GRUB. Создаёт загрузочный образ GRUB. Создать виртуальный привод из файла. Сделать раздел активным Управлять BIOS переназначениями устройств. Обязательные или необязательные аргументы для длинных параметров также являются обязательными или необязательными для соответствующих коротких параметров. Управлять устройствами PCI. Замерить время, затраченное КОМАНДОЙ Закончилась память Тип памяти: DDR2. Тип памяти: неизвестен. Идентификатор пункта меню. Пункт меню не задан. Тип пункта меню. МиБ МиБ/с Поддерживается несколько BASH-подобных команд редактирования строки. Есть вывод списка команд по TAB для дополнения. Также есть везде, где возможно, вывод списка по TAB для устройств или файлов. %s Поддерживается несколько Emacs-подобных команд редактирования на экране. Есть списки дополнений по TAB. Нажмите Ctrl-x или F10 для загрузки, Ctrl-c или F2 для получения командной строки или ESC для отмены изменений и возврата в меню GRUB. Отсутствуют аргументы
 Отсутствует входной файл
 Понедельник Монохромный  Более одного устройства для установки? Более одного пункта меню? Смонтировать крипто-устройство. Смонтировать все тома с установленным флагом «boot». Смонтировать всё. Смонтировать по UUID. Смонтировать крипто-устройства. ИМЯ ИМЯ [ПЕРЕМЕННАЯ] [ПОДСКАЗКА] НОМЕР ЧИСЛО_СЕКУНД Имя	Счётчик ссылок	Зависимости
 Используются родные дисковые драйверы. Использование микропрограммного интерфейса диска отклоняется. Сетевые протоколы: Новый MBR записан в «%s»
 CS5536 не найден FPSWA не найден Нет статистики по времени загрузки
 Не указана команда.
 Не указано устройство.
 Нет статистики по дисковому кэшу
 Преобразованные устройства отсутствуют Обнаружена неизвестная файловая система Нет совпадения Не указан путь.
 Не указан путь или устройство.
 Отсутствует предыдущее регулярное выражение Недоступно дерево виртуальных устройств Non-chain 4  Недостаточно параметров для команды.
 Теперь подключитесь удалённым отладчиком. Количество итераций PBKDF2 диск #ном ОС ------> устройство GRUB/BIOS Ошибка открытия файла ОС %s: %s Параметр -- переключает в родной режим команд xorriso. Параметры: Поиск вне диапазона: %d
 Подстановка вне диапазона (%d, %d)
 Заменить предугаданное соответствие устройств Plan9. П КОМАНДЫ РАБОТЫ С РАЗДЕЛАМИ ПУТЬ Хэш PBKDF2 вашего пароля: %s
 ПОРТ ПОРТ ЗНАЧЕНИЕ [МАСКА] PUBKEY_ID Из палитры  Разобрать старый формат настройки в новом контексте Разобрать старый формат настройки в новом контексте, взяв только пункты меню Разобрать старый формат настройки в том же контексте Разобрать старый формат настройки в том же контексте, взяв только пункты меню Номер по каталогу: %s.
 Раздел %d сделан активным. 
 Раздел %s: Стиль раздела «%s» не поддерживает встраивание Path: %s
 Path: недоступен Выполнить КОМАНДЫ для раздела.
Список возможных команд доступен по команде «parttool РАЗДЕЛ help». Выполнить поиск в DNS Выполнить автоматическую настройку IPV6 Выполнить прямые и обратные переназначения. ПиБ ПиБ/с Планарный  Проиграть мелодию. Не используйте старое название «%s» для GRUB_DEFAULT, используйте «%s» (для версий старее 2.00) или «%s» (для 2.00 или новее) Пул GUID: %016llx
 Пул GUID: недоступен Имя пула: %s
 Имя пула: недоступно Состояние пула: активен Состояние пула: разрушен Состояние пула: экспортирован Состояние пула: уровень 2 устройства ARC Состояние пула: потенциально активен Состояние пула: зарезервирован как горячая замена Состояние пула: недоступен Состояние пула: не инициализирован Возможные параметры: Возможные команды: Возможные устройства: Возможные файлы: Возможные разделы: Возможные элементы: Преждевременный конец регулярного выражения Нажмите любую клавишу для продолжения… Нажмите любую клавишу для запуска xnu Нажмите «enter» для загрузки выбранной ОС, «e» для редактирования команд до загрузки или «c» для получения командной строки. Нажмите «enter» для загрузки выбранной ОС, «e» для редактирования команд до загрузки или «c» для получения командной строки. По ESC осуществляется возврат в предыдущее меню. Показать информацию о памяти. Показать информацию ZFS об УСТРОЙСТВЕ. Показать ZFS-BOOTFSOBJ или сохранить его значение в ПЕРЕМЕННОЙ Показать список блоков. Показать и выполнить блочный аргумент. Показать стек вызовов. Показать идентификационную информацию и настройки устройства. Показать размеры в понятном человеку формате. Собирает информацию об устройстве для заданного пути (или устройства, если указан параметр -d). память, содержащая таблицы coreboot память, содержащая микропрограмму Слот памяти № %d
 РЕГУЛЯРНОЕ_ВЫРАЖЕНИЕ СТРОКА Обнаружен образ ROM. Прочитать 16-битное значение по АДРЕСУ. Прочитать 16-битное значение из ПОРТА. Прочитать 32-битное значение по АДРЕСУ. Прочитать 32-битное значение из ПОРТА. Прочитать 8-битное значение по АДРЕСУ. Прочитать 8-битное значение из ПОРТА. Прочитать только ЗАДАННОЕ число байт. Не удалось выполнить перезагрузку Перезагрузить машину в меню настройки микропрограммы. Перезагрузить компьютер. Повторно введите пароль:  Регистр %x у %x:%02x.%x равен %x
 Регулярное выражение слишком велико Удалить сервер DNS Удалить модуль. Удалить переменную окружения. Удалить все области памяти в указанном диапазоне. Сгенерировать Apple .disk_label. Сообщения об ошибках отправляйте на %s.
 Сообщения об ошибках отправляйте на <bug-grub@gnu.org>. Запрашивается последовательный терминал, но GRUB_SERIAL_COMMAND не задана. Будут использованы параметры по умолчанию. Сбросить все переназначения в значения по умолчанию. Получить информацию об устройстве. Вернуться из функции. Вернуться в приглашение IEEE1275. Запустите «gdb %s %d», и установите значение ARGS.HOLD равным нулю.
 Введите «go» для возобновления работы GRUB. СЕКУНД КОРОТКОЕ_ИМЯ КОРОТКОЕ_ИМЯ КАРТА АДРЕС [АППАРАТНЫЙ_АДРЕС] КОРОТКОЕ_ИМЯ СЕТЬ [ИНТЕРФЕЙС| gw ШЛЮЗ] РАЗМЕР ИСТОЧНИК|-u UUID|-a|-b СТРОКА Суббота Сохранить прочитанное значение в переменную ИМЯ_ПЕРЕМЕННОЙ. Сохранить переменные в файл блока окружения. Сказать «Привет, мир». Искать устройства по UUID. Если указана ПЕРЕМЕННАЯ, то ей присвоится первое найденное устройство. Искать устройства по файлу. Искать устройства по UUID файловой системы. Искать устройства по метке файловой системы. Искать устройства по файлу, по метке или UUID файловой системы. Если указан параметр --set, то переменной присвоится первое найденное устройство. Если имя переменной не указано, то используется «root». Искать устройства по файлу. Если указана ПЕРЕМЕННАЯ, то ей присвоится первое найденное устройство. Искать устройства по метке. Если указана ПЕРЕМЕННАЯ, то ей присвоится первое найденное устройство. Сектор %llu уже используется raid-контроллером «%s»; пропускаем его. Попросите производителя не хранить данные в промежутке MBR Сектор %llu уже используется программой «%s»; пропускаем его. Данное ПО в будущем может создать проблемы с загрузкой. Попросите его авторов не хранить данные на загрузочной дорожке Выбрать устройство по его расположению на шине. Выбрать устройство по производителю и ID устройства. Настроить Advanced Power Management
(1=мин, …, 254=макс, 255=выкл). Настроить Automatic Acoustic Management
(0=выкл, 128=тихо, …, 254=быстро). Задать OEMID в RSDP, XSDT и RSDT. Задать OEMTABLE ID в RSDP, XSDT и RSDT. Задать ревизию OEMTABLE в RSDP, XSDT и RSDT. Установить флаг «hidden» в типе раздела Задать переменную для возврата значения. Задать переменную для первого найденного устройства. Задать переменную окружения. Назначить цвет фона активного терминала. Задать название создавшей программы в RSDP, XSDT и RSDT. Задать версию редакции создавшей программы в RSDP, XSDT и RSDT. Задать переменную окружения отладки. Перевести устройство в спящий (sleep) режим. Перевести устройство в дежурный режим. Задать позиционные параметры. Задать корневое устройство. Настроить задержку до перехода в дежурный режим (standby)
(0=выкл, 1=5с, 2=10с, …, 240=20мин, 241=30мин, …). Задать тип terminfo type для TERM  равным TYPE.
 Назначает пункт меню в GRUB для загрузки по умолчанию, только для следующей загрузки. Назначает пункт меню GRUB для загрузки по умолчанию. Задать адрес последовательного порта. Задать чётность последовательного порта. Задать скорость последовательного порта. Задать количество стоп-битов последовательного порта. Задать длину слова последовательного порта. Задать номер последовательного порта. Установка образов для загрузки с УСТРОЙСТВА.

Обычно не нужно вызывать эту программу вручную. Вместо неё используйте grub-install. Задать пароль пользователя (PBKDF2).  Задать пароль пользователя (в открытом виде). Не рекомендуется и небезопасно. Задать переменную с введёнными данными пользователя. Задать переменные. Назначение типа раздела равным 0x%x
 Сдвинуть позиционные параметры. Показать информацию ACPI. Показать информацию APM. Показать содержимое консоли CBMEM. Показать справочное сообщение. Показать длинный список с более подробной информацией. Показать содержимое ФАЙЛА в шестнадцатеричном коде. Показать загруженные модули. Показать содержимое памяти. Показать необработанное содержимое сектора ATA IDENTIFY. Показать необработанное содержимое файла или памяти. Показать содержимое файла. Показать текущие переназначения. Показать это сообщение. Показать только таблицы версии 1. Показать только таблицы версии 2 и 3. Не удалось выполнить выключение Имитировать команду «initrd» как в grub-legacy Имитировать команду «kernel» как в grub-legacy Имитировать команду «modulenounzip» как в grub-legacy Имитировать команду «password» как в grub-legacy Имитировать команду «password» как в grub-legacy в режиме пункта меню Пропустить N байт из выходного файла. Пропустить указанное число байт от начала файла. Открыт слот %d
 Найдены некоторые компоненты Hurd, но их недостаточно для загрузки системы. Указать имя файла. Использовать указанный хэш. Указать один или несколько файлов шрифтов для загрузки. Укажите объём данных каждой операции чтения Задать количество входных файлов. Скорость: %s 
 Запустить заглушку GDB на указанном порту Остановить заглушку GDB Сохранить совпавший компонент с НОМЕРОМ в ИМЯ_ПЕРЕМЕННОЙ. Успешно Воскресенье Не показывать обычные сообщения (только предупреждения). Перейти на родные дисковые драйверы. Если модули не указаны, то используется набор по умолчанию (pata,ahci,usbms,ohci,uhci,ehci) Синтаксическая ошибка в строке %u
 В сгенерированном файле настроек GRUB обнаружены синтаксические ошибки.
Убедитесь, что в файлах /etc/default/grub
и /etc/grub.d/* ошибки отсутствуют или пошлите сообщение об ошибке
в прикреплённым файлом %s. Контроллер системной шины управления вводом-выводом находится по адресу 0x%x
 Т ЦЕЛЬ Целевой формат не указан (используйте параметр -O). Терминал имеет указанные размеры. Терминал только в ASCII [по умолчанию]. Терминал в логически упорядоченной UTF-8. Терминал в визуально упорядоченной UTF-8. Протестировать поддержку USB. Проверить бит по адресу БАЙТ:БИТ в CMOS. Тест скорости чтения файла. Проверить, совпадает ли РЕГВЫР со СТРОКОЙ. Тест видеоподсистемы в режиме ШxВ. Тест видеоподсистемы. Только-текст  Файлы одинаковы.
 Выделенный пункт будет выполнен автоматически через %dс. Этот пункт может быть загружен любым пользователем. Для этого требуется строка GRUB_DEFAULT=saved в %s/default/grub.\n Четверг ТиБ ТиБ/с Инструмент редактирования блока окружения. Общий размер флэш: %d Б.
 Обратная косая черта в конце Преобразовать 64-бит UUID в формат, пригодный для XNU. Если указан -l, то оставить в нижнем регистре, как это делает blkid. Преобразовать системное имя файла в имя файла GRUB. Перевести строку с текущими настройками. Попробуйте «%s --help» или «%s --usage» для получения более подробного описания.
 Вторник ПАРОЛЬ ПОЛЬЗОВАТЕЛЯ ПОЛЬЗОВАТЕЛЬ ПАРОЛЬ_PBKDF2 ИМЯ_ПОЛЬЗОВАТЕЛЯ[,ИМЯ_ПОЛЬЗОВАТЕЛЯ] UTF-8 Не удалось создать канал: %s Не удалось определить вашу платформу. Используйте --target. Не удалось выполнить fork: %s Не удалось открыть поток из %s: %s Не удалось получить состояние пула Расжать данные. Расжать файл перед проверкой контрольной суммы. Неизвестный тип адреса %d
 Неизвестная команда «%s».
 Неизвестный формат сжатия %s Неизвестная кодировка Неизвестный дополнительный параметр «%s». Неизвестное шрифтовое свойство gsub 0x%x (%s)
 Неизвестный скан-код клавиатуры 0x%02x
 Неизвестный скан-идентификатор клавиатуры %s
 Неизвестная системная ошибка Неизвестный видео-режим Неизвестный тип виртуального устройства: %s
 Выгрузить эмулятор EFI. Непарная ( или \( Непарная ) или \) Непарная [ или [^ Непарная \{ Неизвестный параметр «%s»\n Нераспознанное состояние пула Неподдерживаемый тип адреса %d
 Неподдерживаемая подстановочная зона действия: %d
 Неподдерживаемый тип аппаратного адреса %d
 Неподдерживаемый формат изображения Неподдерживаемый флаг подстановки: 0x%x
 Неподдерживаемое подстановочное обозначение: %d
 Неподдерживаемый тип подстановки: %d
 Использование: Использование: %s -o ВЫВОД АРГУМЕНТЫ_CKBMAP…\n Использование: %s УСТРОЙСТВО
 Использование: %s [ВХОДНОЙ_ФАЙЛ [ВЫХОДНОЙ_ФАЙЛ]]
 Использование: %s [ПАРАМЕТР] ПУНКТ_МЕНЮ\n Использование: %s [ПАРАМЕТР]\n Использовать компакт-диск в качестве корня. Использовать удалённый отладчик GDB вместо DDB. Использовать СТРОКУ в качестве содержимого элемента меню. Использовать вкомпилированное корневое устройство. Использовать консоль на последовательном порту. Используйте клавиши %C и %C для перемещения по пунктам. ПЕРЕМЕННАЯ ИНТЕРФЕЙС НОМЕР ОПИСАНИЕ ИМЯ_ПЕРЕМЕННОЙ Детальный обратный отсчёт. Проверить отсоединённую подпись. Версия %u.%u
32-битный CS = 0x%x, длина = 0x%x, смещение = 0x%x
16-битный CS = 0x%x, длина = 0x%x
DS = 0x%x, длина = 0x%x
 Виртуальное устройство деградировано Сбой виртуального устройства Виртуальное устройство не в работе Виртуальное устройство в работе Виртуальное устройство удалено ПРЕДУПРЕЖДЕНИЕ: консоль в ОС будет недоступна ПРЕДУПРЕЖДЕНИЕ: никаких специальных установок для платформы не произведено ПРЕДУПРЕЖДЕНИЕ: неподдерживаемые параметры свойств шрифта: %x
 ШИРИНАxВЫСОТА. Подождать указанное число секунд. Ждать нажатия любой клавиши после каждой выводимой строки. Предупреждение: Предупреждение: неправильный цвет фона (background) «%s»
 Предупреждение: неправильный цвет текста (foreground) «%s»
 Предупреждение: синтаксическая ошибка (отсутствует косая черта) в «%s»
 Среда Windows NT/2000/XP (загрузчик) Windows Vista/7 (загрузчик) Записать 16-битное ЗНАЧЕНИЕ по АДРЕСУ. Записать 16-битное ЗНАЧЕНИЕ в ПОРТ. Записать 32-битное ЗНАЧЕНИЕ по АДРЕСУ. Записать 32-битное ЗНАЧЕНИЕ в ПОРТ. Записать 8-битное ЗНАЧЕНИЕ по АДРЕСУ. Записать 8-битное ЗНАЧЕНИЕ в ПОРТ. Записано байт SPD: %d Б.
 Гипервизор Xen, версия %s YUV  Вам нужно указать хотя бы одну команду.
 Вам нужно установить «SystemPartition» и «OSLoader» вручную. Встраиваемая область необычно маленького размера. core.img не влезет в неё. Имеющийся xorriso не поддерживает  «--grub2-boot-info». Некоторые возможности отключены. Используйте xorriso 1.2.9 или новее. Имеющийся xorriso не поддерживает  «--grub2-boot-info». Базовый образ слишком большой. Загрузка с диска отключена. Используйте xorriso 1.2.9 или новее. [--append|--remove] [ТЕРМИНАЛ1] [ТЕРМИНАЛ2] … [--force|--bpb] ФАЙЛ [--md5] ПАРОЛЬ [ФАЙЛ] [--no-mem-option] [--type=ТИП] ФАЙЛ [АРГУМЕНТ …] [-1|-2] [--exclude=ТАБЛИЦА1,ТАБЛИЦА2|--load-only=ТАБЛИЦА1,ТАБЛИЦА2] ФАЙЛ1 [ФАЙЛ2] […] [-c ФАЙЛ [-p ПРЕФИКС]] [ФАЙЛ1 [ФАЙЛ2 …]] [-d] ИМЯ_УСТРОЙСТВА ФАЙЛ. [-e|-n] СТРОКА [-f ФАЙЛ] [-f ФАЙЛ] имя_переменной […] [-f|-l|-u|-s|-n] [--hint ПОДСКАЗКА [--hint ПОДСКАЗКА] …] ИМЯ [-h|-p|-r] [ФАЙЛ] [-l] GRUBUUID [ИМЯ_ПЕРЕМЕННОЙ] [-l|-h|-a] [ФАЙЛ …] [-m (stretch|normal)] ФАЙЛ [-s ПОЗИЦИЯ] [-d УСТРОЙСТВО] [-s ПОЗИЦИЯ] [-d УСТРОЙСТВО] [-v ПЕРЕМЕННАЯ] РЕГИСТР[=ЗНАЧЕНИЕ[:МАСКА]] [-s РАЗМЕР] ИМЯФАЙЛА [АДРЕС|comНОМЕР][,СКОРОСТЬ] [АРГУМЕНТ] [КАРТА [АППАРАТНЫЙ_АДРЕС]] [КАРТА] [ПЕРЕМЕННАЯ_ОКРУЖЕНИЯ=ЗНАЧЕНИЕ] [ПЕРЕМ_ОКРУЖ] [НАБОРНАЖАТИЙ1] [НАБОРНАЖАТИЙ2] … [МОДУЛЬ1 МОДУЛЬ2 …] [НОМЕР:]ИМЯ_ПЕРЕМЕННОЙ [НОМЕР] [ПАРАМЕТРЫ…] [ПАРАМЕТРЫ] [ПАРАМЕТРЫ] ДИСК [ПАРАМЕТРЫ] ФАЙЛ_ИЛИ_УСТРОЙСТВО [ПАРАМЕТРЫ] ФАЙЛЫ_ШРИФТА [ПАРАМЕТР]… [МОДУЛИ] [ПАРАМЕТР]… [ПУТЬ|УСТРОЙСТВО] [ПАРАМЕТРЫ] [ПУТЬ] [ШАБЛОН …] [СПИСОК_ПОЛЬЗОВАТЕЛЕЙ] [ЗНАЧЕНИЕ]… [ШxВ[xГ]] [ШхВ] [[-a|-u|-v] [-g ШxВ] TERM [ТИП]] [[год-]месяц-день] [часы:минуты[:секунды]] [шина]:[слот][.функция] [производитель]:[устройство] команда «cryptomount» завершилась с ошибкой: %s команда «loopback» завершилась с ошибкой: %s «obppath» не найден в родительских каталогах «%s», обнаружение имени по IEEE1275 отсутствует для аргумента «%s» назначено значение, но это не требуется для аргумента доступ запрещён добавить сегмент NOTE в CHRP IEEE1275 адрес адрес не найден попытка чтения или записи вне пределов диска «%s» попытка чтения или записи вне пределов раздела попытка чтения за концом файла попытка перемещения за пределы файла попытка прочитать базовый образ «%s» из GRUB повторная попытка прочитать базовый образ «%s» из GRUB доступная память Доступные форматы: некорректная подпись базовый_адрес = 0x%llx, длина = 0x%llx, %s
 базовый_адрес = 0x%llx, длина = 0x%llx, тип = 0x%x
 Файл битовой карты «%s» неподдерживаемого формата blocklist ФАЙЛ некорректный список блоков размер блока не делится на 512 невозможно разорвать 0 циклов невозможно определить тип файловой системы на %s не удалось найти команду «%s» не удалось смонтировать шифрованный том «%s»: %s не удалось открыть «%s»: %s не удалось открыть файл %s, индекс %d: ошибка %d не удалось получить список блоков не удалось получить список блоков: %s не удалось сжать образ ядра не удалось найти привод GRUB для %s. Проверьте device.map не удалось найти устройство для %s (/dev смонтирован?) не удалось получить командную строку транслятора для пути «%s»: %s не удалось открыть файл ОС «%s»: %s не удалось открыть «%s»: %s не удалось прочитать «%s» правильно не удалось прочитать «%s»: %s не удалось переименовать файл %s в %s не удалось восстановить первоначальный каталог невозможно сместиться в «%s»: %s невозможно выполнить stat «%s»: %s невозможно записать на компакт-диск невозможно записать в «%s»: %s не удалось записать в stdout: %s карта не найдена cat ФАЙЛ ошибка при сверке контрольной суммы выбрать алгоритм сжатия, применяемый для базового образа cmp ФАЙЛ ЛОКАЛЬНЫЙ_ФАЙЛ comНОМЕР[,СКОРОСТЬ] сравнение по смещению %llu завершилось неудачно в соединении отказано истекло время ожидания соединения преобразовать в жирный шрифт базовый образ слишком большой (0x%x > 0x%x) Несоответствие версии core.img не удалось выполнить автоматическую настройку %s невозможно найти необходимое устройство-компонент в файловой системе с несколькими устройствами не удалось найти потребителя geli не удалось найти класс geom «part» не удалось открыть geom невозможно прочитать метаданные ELI не удалось получить UUID не удалось получить geli UUID не удалось получить произвольные данные для соли не удалось послать сетевой пакет cp ФАЙЛ ЛОКАЛЬНЫЙ_ФАЙЛ crc ФАЙЛ номер ошибки шифрования %d cygwin_conv_path() завершилась с ошибкой удалить карту устройств, если она уже существует пункт назначения недоступен превышен предел счётчика устройств отключить хинтинг диск «%s» не найден диск не существует, переходим обратно к разделу диска %s используемый дисковый модуль (biosdisk или native). Этот параметр доступен только для BIOS цели. размер diskboot.img должен быть %u байт не проверять файловые системы на УСТРОЙСТВЕ компонент доменного имени слишком длинен не обновлять состояние светодиодов завершено встраивать ФАЙЛ как файл ранней настройки встраивать ФАЙЛ как открытый ключ для проверки подписи встраивание невозможно, но оно необходимо при установке на RAID и LVM встраивание невозможно, но оно необходимо для междисковой установки включить ARCS (машины с big-endian mips, в основном SGI) boot. Выключить HFS+, APM, sparc64 и boot из дискового образа для i386-pc включить sparc boot. Выключить HFS+, APM, ARCS и boot из дискового образа для i386-pc «enter»: загрузка, «e»: параметры, «c»: командная строка блок окружения слишком мал ошибка: %s.
 образы GRUB находятся в каталоге КАТ/%s, а не в каталоге %s не удалось получить канонический путь «%s» ошибка при чтении сектора 0x%llx на «%s» не удалось прочитать пароль ошибка записи в сектор 0x%llx на «%s» ложь сбойная память (BadRAM) файл «%s» не найден ожидается имя файла ожидается имя файла или темп и ноты файловая система «%s» не поддерживает метки файловая система «%s» не поддерживает списки блоков размер образа микропрограммы слишком большой принудительный автохинтинг ожидается четыре аргумента fwstart.img не подходит ни под одну проверенную версию. Продолжаем на ваш страх и риск генерировать образ в ФОРМАТЕ показать короткую справку по использованию показать эту справку указанный аргумент является системным устройством, а не путём grub-mkimage собран без поддержки XZ grub> остановиться на заданное число СЕКУНД (по умолчанию 3600) hex ФАЙЛ игнорировать заданный в битовой карте размер при загрузке неверное задание размеров терминала устанавливать образы GRUB в каталог КАТ/%s, а не в каталог %s установить даже если обнаружены проблемы некорректный формат пароля PBKDF2 неверный архитектурно-зависимый отличительный идентификатор ELF неверный архитектурно-независимый отличительный идентификатор ELF неверный размер блока неправильное указание цвета «%s» неправильный блок окружения неверное имя файла «%s» неверный диапазон шрифта неверный формат строки: %s некорректный параметр %s неверное значение пропуска %lld некорректное имя переменной «%s» неправильное указание видео-режима экрана «%s» ошибка ioctl GET_ARRAY_INFO: %s ошибка ioctl GET_DISK_INFO: %s ошибка ioctl RAID_VERSION: %s образ ядра слишком большой (0x%x > 0x%x) вывести список сетевых адресов вывести список сетевых карт вывести список сетевых маршрутов ls ПУТЬ файл lzop повреждён сделать устройство загрузочным как дискета (по умолчанию для устройств fdX). Может не работать с некоторыми BIOS. отсутствует символ «%c» отсутствует обязательный параметр для «%s» модуль «%s» не загружен модуль не загружен имя требуется образ и точка монтирования APM не найден информация о DHCP не найдена параметр DHCP %d не найден параметры DHCP не найдены не найдена DNS-запись не получен ответ DNS не настроены серверы DNS в каноническом имени файла отсутствует «/» команда не указана недоступен ключ расшифровки сетевая карта не найдена сервер не указан нет такого раздела не найден подходящий видео-режим отсутствует таблица символов не указан терминал в базовом образе нет метки окончания в базовом файле найдены не выровненные посекторно данные не каталог не основной раздел не обычный файл не в функции ожидается один аргумент другое ПО использует встраиваемую область, и в ней недостаточно места для core.img. Подобное ПО таким способом часто пытается сохранить данные, чтобы их не обнаружили. Мы рекомендуем вам исследовать это недостаточно памяти записать сгенерированный образ в ФАЙЛ [по умолчанию: на стандартный вывод] требуется указать выходной файл вывести сгенерированные настройки в ФАЙЛ [по умолчанию stdout] обнаружено переполнение пароли не совпадают выполнить автоматическую настройку по bootp физический том %s не найден заранее загрузить указанные МОДУЛИ преждевременный конец файла преждевременный конец файла %s нажать клавишу CapsLock нажать клавишу Insert нажать клавишу NumLock нажать клавишу ScrollLock нажать SysRq нажать левый alt нажать левый ctrl нажать левый shift нажать правый alt нажать правый ctrl нажать правый shift показать номер версии программы показать информацию о версии и завершить работу показать эту справку и закончить работу показывать подробные сообщения. открытый ключ %08x не найден ошибка при чтении по смещению %llu: %s прочитать текст из ФАЙЛА. относительный подкаталог на сетевом сервере возможность перемещения 0x%x ещё не реализована зарезервированная память получить параметр DHCP и сохранить его в ПЕРЕМЕННУЮ. Если значение ПЕРЕМЕННОЙ равно -, то показать значение. корневой каталог сервера TFTP обнаружено зацикливание маршрута сохранить образы ROM в КАТАЛОГ [необязательный] сохранить вывод в ФАЙЛ [требуется] выбрать индекс начертания последовательный порт «%s» не найден set [ИМЯ=ЗНАЧЕНИЕ …] включить режим capslock назначить подъём шрифта назначить спуск шрифта назначить гарнитуру шрифта назначить диапазон шрифта назначить размер шрифта задать имя входного файла для 32-битной части. задать имя входного файла для 64-битной части. задать имя входного файла. По умолчанию STDIN включить режим вставки включить режим numlock задать имя выходного файла. По умолчанию STDOUT включить режим паузы назначить префикс-каталог [по умолчанию %s] включить режим scrolllock задать имя программы размер stretch|normal символ «%s» не найден временный терминал %s не найден или не поддерживается terminfo терминал «%s» не найден для аргумента «%s» требуется целое число некорректная запись «%s» в device.map. Игнорируется. Исправьте или удалите device.map некорректное имя устройства «%s» в device.map. Вместо него будет использовано %s. Используйте формат [hfc]d[0-9]* (например «hd0» или «cd») первый сектор базового файла не выровнен посекторно устройство, на которое производится установка, является переносным. Этот параметр доступен только для EFI. некорректный тип раздела 0x%x секторы базового файла слишком фрагментированы размер «%s» не равен %u размер «%s» слишком велик размер «%s» слишком мал ELF-файл неправильного типа метка раздела GPT не имеет BIOS Boot Partition; встраивание невозможно данный LDM не содержит встраиваемого раздела; встраивание невозможно метка раздела в стиле msdos не имеет промежутка после MBR; встраивание невозможно ожидается три аргумента истекло время ожидания при открытии «%s» истекло время ожидания при чтении «%s» истекло время ожидания: невозможно определить аппаратный адрес слишком большая вложенность символьных ссылок транслятору «%s» для пути «%s» передаётся несколько слов, не параметров, по крайней мере «%s» и «%s» транслятору «%s» для пути «%s» переданы только параметры, не удалось найти часть, относящуюся к устройству командная строка транслятора для пути «%s» пуста ожидается два аргумента тип не удалось определить файловую систему в %s; невозможно выполнить безопасную проверку невыровненный размер устройства неожиданный конец файла неизвестный аргумент «%s» неизвестный тип сжатия %d
 неизвестный тип устройства %s
 неизвестная файловая система неизвестный тип RAID-устройства «%s» неизвестная ошибка в регулярном выражении неизвестный целевой формат %s
 неизвестный terminfo-тип «%s» неопознанный формат указания параметра DHCP «%s» нераспознанный сетевой адрес «%s» нераспознанный сетевой интерфейс «%s» нераспознанное число неопределимый адрес %s unset [ИМЯ …] неподдерживаемая ошибка HTTP %d: %s неподдерживаемый ответ HTTP неподдерживаемая версия RAID: %d.%d неподдерживаемый формат gzip неподдерживаемая чётность последовательного порта неподдерживаемая скорость последовательного порта неподдерживаемое количество стоп-битов последовательного порта неподдерживаемая длина слова последовательного порта Использовать ЦВЕТ для фона использовать ЦВЕТ для метки использовать ЦВЕТ для фона метки использовать ЦВЕТ для текста использовать КАТАЛОГ в качестве корня системного раздела EFI. использовать ФАЙЛ как файл со шрифтом (PF2). использовать ФАЙЛ в качестве файла шрифта для метки использовать ФАЙЛ в качестве загрузочного образа [по умолчанию %s] использовать ФАЙЛ в качестве базового образа [по умолчанию %s] использовать ФАЙЛ в качестве карты устройств [по умолчанию %s] в качестве xorriso использовать ФАЙЛ [необязательный] использовать файлы GRUB в каталоге, заданном в КАТ [по умолчанию %s] использовать СТРОКУ в качестве имени продукта использовать СТРОКУ в качестве версии продукта использовать файл идентификации даже если доступен UUID использовать образы и модули из КАТАЛОГА [по умолчанию %s/<платформа>] переменная «%s» не определена визуально упорядоченная UTF-8 подождать пока подключиться отладчик не будет продолжена с использованием blocklists неверный отличительный символ ELI или версия xnu_uuid УСТРОЙСТВО файл xz повреждён или имеются неподдерживаемые параметры блока вы не можете удалить этот адрес сначала вам нужно загрузить ядро BIOS Boot Partition слишком мал; встраивание невозможно данный core.img необычно большого размера. Он не влезет во встраиваемую область встраиваемая область необычно маленького размера. core.img не влезет в неё.                                                                                                         boot/grub/locale/sl.mo                                                                              0000600 0001750 0001750 00000301612 13417732100 0013643 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                       0     !    C      pY  #   qY      Y     Y     Y     Y  $    Z     %Z  6   9Z     pZ     wZ  	   Z     Z     Z     Z  .   Z  .   Z  %   [     A[     E[    T[    Y\    ^]     f^  7   ^  F   ^  v   ^  +   v_     _      _     _  !   _     `  ,   %`     R`     j`  $   `     `  *   `     `     `     a     a     .a  
   Na  	   Ya     ca  ,   a  ,   a  '   a  -   b      /b  (   Pb  (   yb  )   b     b     b     c     c     "c  "   +c  4   Nc     c     c  7   c     c  1   c     d  %   *d  '   Pd  %   xd  '   d     d     d     d     d      e     e     e     ,e     8e     Xe     je     xe     e     e  3   e     e  $   e     f     f     2f     Af     Rf     if     ~f  -   f     f  !   f     g     g     4g  #   Ig     mg  `   g  Z   Vh     h     h     h     h     i     i     %i     Ci     [i     ui     i     i     i     i     i     i     
j     !j     0j     5j     ;j  %   Jj     pj     j     j     j     j     j     j     k     k  *   6k  3   ak     k  "   k  8   k     l     l  	   ;l  #   El     il     l     l     l     l     l  )    m     *m     Im     gm  P   m     m     m  H    n  &   In     pn     n  !   n  ,   n     n     n     n  	   o  !   o  *   7o     bo     zo     o     o     o  $   o     o     
p     p     7p     Sp     np  
   p  
   p     p  1   p     p     p     q     q  3   7q  >   kq  $   q     q     q     r     r     6r     Vr  +   jr     r     r  #   r     r     s  $   *s     Os     is  '   s  9   s     s      t  z   t     t     t  8   t     t  
   u     u     u     <u     u  +   u     !v     6v     Lv  "   _v     v     v  (   v     v     v     v     w     w     (w  "   :w  0   ]w     w     w     w  7   w     w     w     w     x     $x     0x  0   7x     hx     |x     x     x  2   x  %   x     y  *   )y  6   Ty  +   y     y     y     y  !   z  d   z  e   @{  d   {  i   |  o   u|  H   |     .}     A}     W}     h}     {}     }     }     }  #   }     }     ~     5~  1   G~  )   y~     ~     ~     ~  /   ~     ~          $  5   A     w       K                  /     L     Q  '   V  P   ~     π       	                  &  '   :  +   b            )                       5     J     b     x  $             Ă  "   ߂            (     "   D  +   g  -             ڃ                 O        l                 %          )     !   ,  "   N     q       +        Ѕ            !   	     +     G     `     l                     ҆                  4   0     e                    ɇ                     3  !   T     v  M     2   ވ          +  *   I  8   t               щ             3     $   L  +   q                    Պ                     :     X     m  D        ʋ     ы  7   ً  ;        M     m  !             Č  s        X     p                    Ǎ     ލ          	          k     r     ~            '   ͏  
                   %     *     B     F     X  H   u          ѐ                    &  #   ?     c                          ޑ             "   +  (   N     w  %          2   Ӓ            #   (  *   L     w       #               "   ʓ  ;     #   )  <   M                 .   Ĕ  	          `        p  !     )        ѕ     ٕ  q        X     l                         Җ            "   %     H     `     z                    ӗ       #        %     B  g   ^     Ƙ     K     e  -          !   ę       "     '     Q   B                    К                     =     Z     v                    ͛                       -   @     n  "     b     )        2     H     `  ,   {            	   Ɲ  "   Н  %                  3     :  &   C  )   j       ^          $      %   E     k  ^     _   }  }   ݠ     [  )     '   <  >   d  D     !     '   
  -   2  #   `       )        Σ  )     )     ,   ?     l                    ۤ  E     $   2  A   W  )        å                     6     W  q   l     ަ  :        6     T     c                    ͧ  0             1     F  )   \  &             ʨ            )        >  %   N  %   t  ,     '   ǩ  :        *  -   I     w  .             Ȫ  '   ݪ  "        (     E  *   S     ~       )             Ы  6          0   Ȭ        !     "   <  #   _                 !   ҭ       
   
       <   /  %   l                    Ԯ  d     *   L  0   w                    ӯ            0        8  !   K     m       $             ڰ                  $   =  "   b  $                   ӱ          	          -     ?     L     g       '        Ĳ       $     +   "  "   N     q  )   x               ҳ            '        C     b       <         д            m        z               ɵ       +     3   (  1   \       '     -   Ķ       '     '   #  .   K  	   z                    շ               )     D     _     y       *     ?   ĸ  B     /   G     w       .     O   ѹ  )   !     K     a  	   p     z  5        κ                    )     @     F     Y     `     o     x                 	        Ļ     ӻ                    1     8     ?  
   M  
   X  	   c     m  !   s  )             Ӽ            N   "     q  "               -     -     $     #   :  0   ^  6        ƾ     Ծ  (     1     )   B     l     {  !              ȿ       %        '  &   ;     b        7     .     4        =     Z     o            %                       &     ?     ^     m     v                                #   	     -     G  B   a                              %  &   A     h                      &                  .     >  ;   R  V     "     &     !   /     Q     h     m  H     F     (        D     `  I   l  '          %             #     7     K  $   ]  '     *                    J        a     }       -     +          $        1  "   :  +   ]  J     %                "   3      V     w                                 %        A     `     ~                           [        Q  !   e                                             $     8     N     h                                        %  1   E     w                                1          0        .     C  !   Y     {  "                                       5     A     P     `     q                 &                    '   3  &   [       L               !        0     O     a     ~                                $             -  &   >     e  !   t                           	     7        +  %   E  [   k  w     7   ?  K   w  #     /             2     P  &   n  U     @     Q   ,     ~            +          R     L   ^  .               F        =     S     j                                      2   .  !   a  #                                      <     T     s  (     #     )     '     '   0  '   X       0     -     8        7     O  !   f                  .          !   !  B   C  E     B     P    '   `  #          $          *        6  ?   R                                1     .   $  $   S     x     |  l    I    ^  B       >     L     {   J  "          "          %   +     Q  -   j            &          .        3     M     Y     l  (                     (     (     &   =  )   d        &     &     '     !   %  !   G     i  
   x  
     '     6               6        ;  D   D       &     &     &     &     	   D     N     Q     p                      %          !        %     8     X  /   x       *                            /     F     Z  .   s       9     (     )   $     N  0   m       j   =  t              <     ]     v     {       !                    &     )   /     Y     j                                     0     -   $     R  $   o                                @   '  <   h       0     >        5  3   F     z  /                     1        9     U  *   d  -     $           ]        a     }  j     )        .     G  "   O  2   r                      9     2     "   I     l                 (             
  %     '   D  #   l  #                    ;        $     5     E      c  9     M     0        =     X     w                  '         (   0 !   Y    { .    .            /   - R   ]                     P       '    E    K !   S    u      9   8    r         '            5       A    N    f             %    *               + I   D                          &           2    @    T >   r ,         -    =   -	 :   k	 (   	    	    	 %   
    
    j             j           5    O    d    {             %           ,    H ;   ^ 1                >       ;    O    h C         "    B   
 &   M '   t %    
        ,    N     &   O    v 	        #        .    /       (    6 .   R                             #   6    Z    r .                 *    )    7   G                      u       f             P        1   < #   n $            3       %    C    c "   {                 "       $    A    V    t         )    "               :    U    p             $    "    W   ) D    (    "    )    J   <                     R    '   H 3   p                      !       >    ]    y )    N            A    V   U -        $            4  r   R                    !    *!    E!    ]!    v!    !    F" 
   '# 	   2# ,   <# $   i#    # 4   #    #    #    #    $    $    <$    E$     U$ b   v$    $    $    
%     $%    E%    [% -   x%    % !   %    %    %    
&     *& #   K&    o&    & +   &    & &   & #   ' 5   4' 
   j'    u'     ' ,   '    '    ' &   '    (    ( /   3( G   c( 0   ( H   (    %)    4)    R) )   _)    )    ) \   )     * #   * )   7* 	   a*    k*    *     + "    +    C+ !   ]+     + !   + "   + .   + ,   , 6   A, $   x, "   ,    ,    ,    ,    ,    -    &-     9- /   Z- (   -    -    Q. !   %/    G/ 3   f/    / !   /    / (   / -   0 Z   A0     0    0 
   0    0 %   0 !   1 %   ?1 !   e1 $   1     1    1    1     2    2    42    N2    e2     u2 4   2 '   2 6   2 l   *3 /   3 !   3    3    3 2   4 0   L4    }4 	   4 0   4 !   4    4    4    4     5 9   5 1   A5    s5 n   5    5 .   6 0   I6    z6 q   w7 o   7    Y8    8 /   9 ,   9 P   +: Y   |: 6   : <   ; C   J; ,   ; -   ; .   ; (   < )   A< B   k< F   < 0   <    &= '   F=    n=    = ]   = '   > F   ,> ,   s>    >     >     > +   ? '   .?    V?    o? #   ? M   @ *   a@    @ %   @     @    @    A    A .   :A 3   iA    A    A +   A /   A    /B    IB    fB $   }B (   B    B "   B "   C )   %C $   OC <   tC '   C ,   C    D 9   D    TD    kD 1   D !   D    D    D A   E    SE    hE /   pE    E    E 5   F    F 3   F "   F     G "   ?G    bG    G !   G )   G (   G    H    ,H    8H +   MH +   yH    H     H +   H    H y   I @   I &   I    I     J    J #   (J    LJ     RJ J   sJ    J $   J ,   J    *K 1   <K    nK    K    K    K    K (   K #   L -   3L    aL    zL $   L    L    L    L    L    M    !M $   ;M    `M #   |M *   M    M $   M "   N    *N    IN ,   RN    N 0   N $   N    N 0   O 4   4O "   iO +   O    O 6   O #   
P    .P     @P    aP     P    Q    %Q    CQ     aQ (   Q 5   Q 5   Q    R $   (R 0   MR 
   ~R (   R *   R >   R    S    "S    BS $   _S #   S $   S #   S #   S "   T    8T    ST    qT    vT D   T u   T /   QU    U    U 3   U o   U 7   XV    V    V    V %   V 6   V    #W !   9W    [W    uW    W    W !   W 	   W    W    W $   W    $X 
   AX    LX    \X    hX     yX    X    X    X    X    X    X    	Y    Y 	   ,Y    6Y #   <Y )   `Y    Y    Y #   Y     Y G   Y    DZ !   WZ    yZ    Z *   Z (   Z "   Z    [ =   .[ E   l[    [    [ *   [ 4   \ ,   ;\    h\     {\     \    \ /   \    ] 3   #]    W] 4   s] ,   ]     ] B   ] 9   9^ =   s^ '   ^    ^ !   ^    _ (   4_     ]_    ~_    _    _    _    _    `    '` +   4`    ``    v` %   `    `    `    ` '   `    a !   :a K   \a    a $   a    a $   b    (b    Bb 0   ab $   b    b    b    b    b ,   c    Fc     Zc    {c    c 8   c Z   c )   ?d )   id $   d    d    d 1   d D   
e D   Oe 2   e    e    e 6   e #   $f    Hf $   \f    f    f "   f    f 2   f '   g 5   8g +   ng    g !   g T   g    *h #   @h    dh *   ~h .   h    h &   h    i '   i "   ;i 4   ^i '   i    i %   i 2   i    ,j    Lj    cj    j    j    j !   j !   j '   k    9k    Yk    xk    k    k    k    k     k n   l    ul    l    l    l    l "   l    l    m "   4m    Wm    wm    m    m %   m    m     n     n    :n (   Pn    yn    n %   n E   n    o    o    1o    Go    \o    wo    Np 2   ep $   p 9   p    p    q !   $q ,   Fq )   sq    q    q    q    q    r    r    ;r    Rr    lr    r    r    r    r    r '   s     ;s    \s    ys )   s    s    s `   s    Ot    mt "   t #   t    t %   t    u #   &u    Ju    eu    u    u    u .   u    u $   v 0   8v    iv %   v    v    v    v    v "   v    w <    w    ]w #   }w    w    !x 0   x Q   x    +y $   Ky    py    y    y    y O   y <   )z T   fz    z    z    z 8   { &   O{ Q   v{ U   { 1   |    P|    o| X   u|    |    |    }    }    3}    M}    g}     }    }    } 0   }     ~ "   .~    Q~    g~    ~    ~    ~     ~    ~ !   ~ !    7   ; )   s 4    1    .    5   3 &   i .    5    6    !   ,    N .   a #    &       ہ =    !   *     L D   m _    w       +    T                             a      \           Z        :       H  L  o          U                        _                        I           O                               J   d                   i                       G           1                R    Q      u                   I    h              $  /                                              .              l    g                  p  u       }        e                i          @  [    Y                d      (  \     t                O      y  {        E                    :  
      =   [  <   %  r                     
  t       P      z   F      I                  |        o   #      l  )        >    5        B             G    w    x  y                                 !               2            n  k              \    9  |     L  )          	  
                  F      *  A  Q                           i      ~         $  7              F      U    j            >        V               A  5              ;                 1                     ]              @       !        /                   `     .   s  N              W                         S        #        )      F                          }      J     "  M                 "   `    H  	  b  ;       `  C          #            9        |      f   v              Q         N             h               =         l         "      *       '  M                     1    T      k      5       &     k          z        A       !               <      n      V                   )   0        E   H              u                %     M             ,           >   C          %         ,                7    $    f  K  Z      '                                      	         g   4  t              a                                        R         ]           ^             "                          *  #  V    ~                c                    ,    B        6    :  b     f  ,  K  n      4                !  =            	    m   c           "            y    .    r  Y        M          '                           -                                  ^                                p  J  k                             1        -  (  }       T                @    {  &                  3  w                       {            )                                D  6  [    S      z            j  c                 v                                               _  B  .            /      m            L   3       ^             0      P     h            =    p     p  g                 8       ?   v                         X  #                       8  ?               K  $      N                                  7   (  g                   9   I  Y    |                   q               U  P       S     a         n         ]         q           -        4            b               Y         U             R  S    6            G      Q      9  C          &                      J      W                        <      -  ;              3          O  $  j                           ~   @                        d          T     x   d       0  '  P    O  2     q              `  h                   H           +                                     \  6  R                                     D          f      s  Z  X           v          N        ]      w   X  0      4    7      '           C      X      
    Z             j               r      -  E                    :  m                       A     e           !  &                    b                   m               K               &        u     W  o    %                             B              *                       x    D              i  ?                       c      /             ^  ?  }      8  E  l            q      
   _  3                	      e        .  {                               s           >         (   t           %      G                     a                   *           +                             _                        2   L                         [   r          +                     5           D      8                   V      W                    2               ,     o        s     /             ;       +  w  <  (            z      x                      y  ~  0     e                         total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: option '%c%s' doesn't allow an argument
 %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS Import ZFS wrapping key stored in FILE. Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MODULE MODULES Mail xorriso support requests to <bug-xorriso@gnu.org>. Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Option -- switches to native xorriso command mode. Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot the computer. Reenter password:  Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show the contents of a file. Show the current mappings. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Specify the number of input files. Start GDB stub on given port Stop GDB stub Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 TARGET Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This entry can be booted by any user. Thursday Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Translates the string with the current settings. Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME Verbose countdown. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. Your embedding area is unusually small.  core.img won't fit in it. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `cryptomount' command fails: %s `loopback' command fails: %s a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format blocklist FILE blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists: %s cannot compress the kernel image cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot get translator command line for path `%s': %s cannot open OS file `%s': %s cannot open `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. diskboot.img size must be %u bytes do not probe for filesystems in DEVICE domain name component is too long don't update LED state done embed FILE as an early config embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification install GRUB images under the directory DIR/%s instead of the %s directory install even if problems are detected invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid color specification `%s' invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no `/' in canonical filename no command is specified no decryption key available no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found pre-load specified modules MODULES premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. read error at offset %llu: %s relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory of TFTP server route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the argument `%s' requires an integer the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use DIR as the EFI System Partition root. use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub-2.0.0-pre6
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2012-12-11 21:02+0100
Last-Translator: Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Language-Team: Slovenian <translation-team-sl@lists.sourceforge.net>
Language: sl
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0);
X-Launchpad-Export-Date: 2012-12-03 07:20+0000
X-Generator: Poedit 1.5.4
X-Poedit-SourceCharset: utf-8
               skupni pomnilnik: %d KiB
      Prednostni način ni na voljo
      Prednostni način: %ux%u
    Nadzorna vsota EDID je neveljavna    Različica EDID: %u.%u
   Začenjanje vmesnika videa je spodletelo   Podrobnosti niso na voljo   VBE info:   različica: %d.%d  predelava programa OEM: %d.%d
   ali: (najbolj levo) (sredinsko) (najbolj desno)  - Skupna velikost je neznana  [MOŽNOST ...] %.*s: parameter ARGP_HELP_FMT mora biti pozitiven %.*s: parameter ARGP_HELP_FMT zahteva vrednost %.*s: neznan parameter ARGP_HELP_FMT %ds %ds preostalo. Videti je, da vsebuje %s datotečni sistem %s, za katerega ni znano, ali rezervira prostor za zagon v slogu sistema DOS. Nameščanje nalagalnika GRUB na to mesto lahko povzroči UNIČENJE DATOTEČNEGA SISTEMA, kadar program grub-setup prepiše pomembne podatke (možnost --skip-fs-probe onemogoči to preverjanje, zato možnost uporabljate na lastno odgovornost). Videti je, da vsebuje %s preslikavo razdelkov %s in LDM, kar pa ni varna kombinacija. Nameščanje nalagalnika GRUB na to mesto lahko povzroči UNIČENJE DATOTEČNEGA SISTEMA, kadar program grub-setup prepiše pomembne podatke (možnost --skip-fs-probe onemogoči to preverjanje, zato možnost uporabljate na lastno odgovornost). Videti je, da vsebuje %s preslikavo razdelkov %s, ki, za zagon v slogu sistema DOS, ne rezervira prostora. Nameščanje nalagalnika GRUB na to mesto lahko povzroči UNIČENJE DATOTEČNEGA SISTEMA, kadar program grub-setup prepiše pomembne podatke (možnost --skip-fs-probe onemogoči to preverjanje, zato možnost uporabljate na lastno odgovornost). %s ne podpira vrednosti UUID %s ustvari razporeditev tipkovnice za GRUB z uporabo ckbcomp\n %s je zastarel. Namesto tega pred ukazom linux uporabite set gfxpayload=%s.
 %s je zastarel. Način VGA %d ni prepoznan. Namesto tega pred ukazom linux uporabite gfxpayload=ŠIRINAxVIŠINA[xGLOBINA].
 grub-mkconfig še ne podpira %s.\n %s, s Hurd %s %s, s Hurd %s (obnovitveni način) %s, z Linuxom %s %s, z Linuxom %s (obnovitveni način) %s, s Xen %s in Linux %s %s, s Xen %s in Linux %s (obnovitveni način) %s, s hipervizorjem Xen %s, s kFreeBSD %s %s, s kFreeBSD %s (obnovitveni način) %s, z jedrom %s (preko %s) %s, z jedrom %s (preko %s, obnovitveni način) %s: NEUJEMANJE RAZPRŠIL
 %s: v redu
 %s: NAPAKA BRANJA
 %s: preveč argumentov
 %s: ukaz zahteva skrbniška dovoljenja\n %s: napaka: %s: podrobnosti: %s: neveljavna možnost -- '%c'
 %s: možnost '%c%s' ne dovoli argumenta
 %s: možnost '--%s' ne dovoli argumenta
 %s: možnost '--%s' zahteva argument.
 %s: možnost '-W %s' ne dovoli argumenta
 %s: možnost '-W %s' je dvoumna
 %s: možnost '-W %s' zahteva argument
 %s: možnost zahteva argument -- '%c'
 %s: možnost zahteva argument -- `%s'\n %s: neprepoznana možnost '%c%s'
 %s: neprepoznana možnost '--%s'
 %s: opozorilo: (32-bitni) (64-bitni) (NAPAKA PROGRAMA) Ni znane različice!? (NAPAKA PROGRAMA) Možnost bi morala biti prepoznana!? (na %s)  - Oznaka `%s' - Čas zadnje spremembe %d-%02d-%02d %02d:%02d:%02d %s --VEČ-- -h RAZPRŠILO [-c DATOTEKA [-p PRIPONA]] [DATOTEKA1 [DATOTEKA2 ...]] -l | -r | [-s] grubdev osdisk. 32-bitni zaščiten vmesnik je podprt
 16-bitni zaščiten vmesnik ni podprt
 32-bitni zaščiten vmesnik je podprt
 32-bitni zaščiten vmesnik ni podprt
 =VREDNOST  > obstojni pomnilnik RAM za ACPI dodeljiv RAM za ACPI Izklop ACPI je spodletel ADDR ADDR VREDNOST [MASKA] ADDR [VELIKOST] NASLOV1,MASKA1[,NASLOV2,MASKA2[,...]] NASLOV STREŽNIKDNS Upravljanje APM je onemogočeno.
 APM je izklopljen
 Upravljanje APM je omogočeno.
 Upravljanje APM je vklopljeno.
 ARGP_HELP_FMT: vrednost %s je manj ali enaka %s ASCII Sprejmi končanje vrstic CR/NL v slogu DOS Dejavni terminali vnosa: Dejavni terminali izhoda: Vmesnik `%s':
 Dodaj strežnik DNS Dodaj omrežni naslov. Dodaj omrežno pot. Napredne možnosti za %s Napredne možnosti za %s (s hipervizorjem Xen) Dovoli prekinitev s tipko ESC. Vprašaj po imenu datoteke za ponoven zagon računalnika. Predpostavi, da je vhod šestnajstiški. Predpostavi, da je vhod šifrirana fraza. Predpostavi, da je vhod surov. Poteka poskus odšifriranja glavnega ključa ... Izvaja se poskus nameščanja nalagalnika GRUB na disk z več oznakami razdelkov, ali z oznako zagonskega razdelka in datotečnega sistema. To še ni podprto. Izvaja se poskus nameščanja nalagalnika GRUB na disk z več oznakami razdelkov. Možnost še ni podprta. Izvaja se poskus nameščanja nalagalnika GRUB na disk brez razdelkov ali neposredno na razdelek. To je SLABA ideja. Razpoložljivi terminali vnosa Razpoložljivi terminali izhoda: BIOS_IZPIS [INT10_IZPIS] BLOK BAJT:BIT Način slike ozadja. Osnovna mapa za seznam razpršil. Zaženi v načinu BIOS. Zaženi operacijski sistem. Zaženi v enojni način. Zaženi s sporočili razhroščevanja. Zaženi s podrobno izpisanimi sporočili. Zaganjanje ` %s' Zaganjanje seznama ukazov Zaganjanje v slepem načinu Pot zagona: %s
 Pot zagona: ni na voljo
 Prelomi v GDB CGA  BARVA UKAZ [ARGUMENTI] Nedejavna CPE ne upočasni delovanja procesorja
 Nedejavna CPE upočasni delovanje procesorja
 Naprava CS5536 pri %d:%d.%d
 Ni mogoče omogočiti področja ROM. Spremeni nastavljene naprave. Spremeni vrsto razdelka Preverite tipko Alt. Preverite tipko Control. Preverite tipko Shift. Preveri zmožnosti CPE. Preveri razpršila datotek z datoteko seznama razpršil DATOTEK: Preveri, ali CPE podpira 64-bitni (dolgi) način (privzeto). Preverite stanje pomožnih tipk Preveri ali je uporabnik na SEZNAMU_UPORABNIKOV. Preveri nastavitveno datoteko skripta GRUB za napake skladnje. Počisti zaslon. Zastavica dejavnosti pogona na %d je počiščena.
 Ukazi: Primerja DATOTEKO s krajevno datoteko KRAJEVNO. Primerjaj datoteko `%s' z `%s':
 Primerjaj dve datoteki. Izračunaj UUID XNU naprave. Izračunaj ali preveri navzorno vsoto razpršila. Nastavitev zaporednih vrat. Nadaljuj zanke Pretvori pogoste vrste datotek pisav v PF2 Kopira DATOTEKO v krajevno datoteko KRAJEVNO. Kopira DATOTEKO na standardni izhod. Ni mogoče najti gonilnika FPSWA Ni mogoče najti fizičnega nosilca `%s'. Nekateri moduli morda manjkajo iz osnovnega odtisa. Ni mogoče naložiti sha256 Ni mogoče naložiti sha512 Ustvari strukture, podobne strukturam BIOS, za povratno združljivost z obstoječim operacijskim sistemom. Ustvari bločno datoteko praznega okolja. Trenutne vrste terminfo: NAPRAVA NAPRAVA [RAZDELEK[+/-[VRSTA]]] ... NAPRAVA mora biti naprava OS (na primer /dev/sda). IME_NAPRAVE MAPA MAPA [OSBundleRequired] STREŽNIK_DNS Orodje razhroščevanja za gonilnik datotečnega sistema. Določi odseke pomnilnika kot pokvarjene (badram). Program za odpakiranje je prevelik Določi vnos menija. Določi podrejeni meni. Izbriši omrežni naslov. Izbriši omrežno pot. Izbriši določeni pogon povratne zanke. Izbriše spremenljivke Določite gonilnik. Določitev UUID datotečnega sistema. Določitev oznake datotečnega sistema. Določi vrsto datotečnega sistema. Določi vrsto preslikave razdelkov. Naprava %s: ID naprave: %s
 ID naprave: ni na voljo Neposredna barva, maska: %d/%d/%d/%d  položaj: %d/%d/%d/%d Onemogoči ACPI. Onemogoči SMP. Onemogoči vse izhode zagona. Onemogoči/Omogoči SMART (0/1). Zavračanje nepravilno gnezdenega razdelka (%s, %s, %s%d) Statistika predpomniknka diska: zadetki = %lu (%lu.%02lu%%), zgrešeno = %lu
 Število diskov mora biti pred seznamom diskov.
 Prikaži različico FPSWA. Prikaži stanje zdravja SMART. Prikaži vrstico besedila. Pokaže seznam blokov DATOTEKE. Prikaži izpis na vseh konzolah. Prikaz način porabe. Prikaži uporabo tega ukaza in končaj. Prikaži to pomoč in končaj. Prikaži/nastavi trenutni datum in čas. Ne izpisuj sledeče nove vrstice. Ne izpisuj sporočil. Ne preizkušaj kateregakoli disketnega pogona. Ne uporabljaj APM za ustavljanje računalnika. Ne počni ničesar, uspešno. Ne počni ničesar, neuspešno. Ne prikazuj zagonskih diagnostičnih sporočil. Ne naloži preglednic gostitelja, navedenih v seznamu z vejico ločenih vrednosti. Ne zaženi znova, zgolj ustavi. Ne zaustavi po prvi napaki Ne posodobi polja EBDA. Možnost lahko odpravi napake in zastoje v delovanju na nekaterih sistemih BIOS, vendar jih naredi neučinkovite, ker operacijski sistem ne sprejema podatkov RSDP iz nalagalnika GRUB. ENVVAR ENVVAR [ENVVAR] ... NAPAKA: veljavne razporeditve tipkovnice ni bilo mogoče najti. Preverite vhod.
 ESC kadarkoli konča program. IZRAZ IZRAZ ] Pretečeni čas: %d.%03d sekund 
 Vgrajevanje ni mogoče. Nalagalnik GRUB je v tem primeru mogoče namestiti s seznami blokov. Seznami blokov so NEZANESLJIVI, zato je njihova uporaba odsvetovana. Posnemaj zaporedje pritiska tipk Omogoči tolmačenje leve poševnice kot ubežnega znaka. Vnesite geslo ZFS: Vstopi v KDB ob zagonu. Vstopi v običajni način. Vnesite šifrirno frazo za %s%s%s (%s): Vnesite geslo:  Vnesite uporabniško ime:  Napaka pri razčlenjevanju argumentov ukazne vrstice
 Oceni izraz. Končanje je spodletelo Končaj zaganjalnik GRUB. Izhod iz zank Zapusti običajni način. Izvozi spremenljivke. Izvozi preglednice različice 1 v OS. Izvozi preglednice različice 2 in 3 v OS. DATOTEKA DATOTEKA [ARG ...] DATOTEKA [ARGUMENTI ...] DATOTEKA | TEMPO [VIŠINA_TONA1 TRAJANJE1] [VIŠINA_TONA2 TRAJANJE2] ...  DATOTEKA ... DATOTEKA1 DATOTEKA2 IMEDATOTEKE UKAZ DATOTEČNISISTEM [SPREMENLJIVKA] DATOTEKA|poziv VRSTA Protokol FPSWA ni mogel najti vmesnika Predelava FPSWA: %x
 OD-DO[,OD-DO] OD[K|M|G] DO[K|M|G] FT_Init_FreeType je spodletel Zaganjanje tako privzetih kot povratnih vnosov je spodletelo.
 Drevesa `device-mapper' ni mogoče ustvariti uporaba zasilne možnosti : `%s' Datotečni sistem `%s' ne podpira vstavljanja Datoteki sta različni pri odmiku %llu: 0x%x [%s], 0x%x [%s]
 Datoteki se razlikujeta v velikosti: %llu [%s], %llu [%s]
 Do datotečnega sistema ni mogoč dostop Vrsta datotečnega sistema %s Zapolnite hibridni MBR pogona NAPRAVE GPT. Navedeni razdelki bodo del hibridnega zapisa MBR. Dovoljeni so do 3 razdelki. VRSTA je vrsta MBR. Znak + pomeni, da je razdelek dejaven. Dejaven je lahko le en razdelek. Končaj nalaganje posnemovalnika EFI. Najprej preizkusi napravo NAMIG, če se izvaja na ARC. V primeru, da se NAMIG konča z vejico, preizkusi tudi podrejene razdelke. Najprej preizkusi napravo NAMIG, če se trenutno izvaja na BIOS. V primeru, da se NAMIG konča z vejico, preizkusi tudi podrejene razdelke. Najprej preizkusi napravo NAMIG, če se trenutno izvaja na EFI. V primeru, da se NAMIG konča z vejico, preizkusi tudi podrejene razdelke. Najprej preizkusi napravo NAMIG, ali se trenutno izvaja na IEEE1275. V primeru, da se NAMIG konča z vejico, preizkusi tudi podrejene razdelke. Najprej preizkusi napravo NAMIG, če je podprt neposreden dostop do strojne opreme. V primeru, da se NAMIG konča z vejico, preizkusi tudi podrejene razdelke. Najprej preizkusi napravo NAMIG. V primeru, da se NAMIG konča z vejico, preizkusi tudi podrejene razdelke Popravi težavo z videom. Najden je %s na %s (%s)\n Najden je %s na %s\n Najden je GNU Mach: %s Najden je modul Hurd: %s Najdeno je jedro NetBSD: %s\n Najdeno je ozadje: %s\n Najden je odtis initrd: %s\n Najdena je mapa jedrnega modula: %s\n Najdeno je jedro FreeBSD: %s\n Najden je odtis linux: %s\n Najdena je tema: %s\n Napaka Freetype %d med nalaganjem pismenke 0x%x za U+0x%x%s Zamrzni varnostne nastavitve ATA do ponastavitve. petek Različica GNU GRUB %s Zagonski meni GRUB Z nalagalnikom GRUB še ni mogoče ustaviti tega računalnika! Posnemovalnik GRUB. NAPRAVAGRUB=NAPRAVAPLAN9 Smeti v ARGP_HELP_FMT: %s Ustvari razporeditev tipkovnice GRUB iz razporeditve konzole Linux. Ustvari geslo razpršila PBKDF2. Ustvari nastavitveno datoteko grub Ustvari samostojen odtis (ki vsebuje vse module) v izbrani obliki. Pridobi nadzorno vsoto crc32 DATOTEKE. Pridobi podatke o predpomnilniku diska. Pridobi/Nastavi parametre diskov ATA. RAZPRŠILO NAMIG Ustavi sistem z uporabo APM, če je mogoče. Ustavi računalnik. Ukaz ne deluje na vseh izvedbah programske strojne opreme. Upravljaj N bajtov v izhodni datoteki. Pozdravljen svet Hercules  ID ODTIS1 [ODTIS2 ...] TOČKA_PRIKLOPA POT_ODTISA UKAZI Uvozi ključ ovijanja ZFS shranjen v DATOTEKO. Nepravilna navidezna naprava: ni vrste na voljo Vstavi modul. Namesti GRUB na vaš pogon. Namestitev je končana. Ni poročil o napakah. Neveljaven povratni sklic Neveljavno ime razreda znaka. Neveljaven znak zbiranja Neveljaven ukaz %s.
 Neveljavna vsebina \{\} Neveljavna naprava `%s'.
 Neveljavno število diskov.
 Neveljaven predhodni logični izraz Neveljaven konec obsega Neveljavni logični izraz Uveljavi usmerjanje po nastavitvah uporabnika. ARGUMENTI JEDRA TIPKA Tipka za hiter zagon tega vnosa. Navidezna naprava leaf (datoteka ali disk) Opuščen parameter `ask' ni več podprt. Legenda: maska/položaj=rdeče/zeleno/modro/rezervirano Dolžina ustvarjenega razpršila Dolžina soli Izpiši strežnike DNS Izpiši naprave PCI. Natisni vse datoteke. Izpiši vse razpoložljive načine videa. V primeru podane ločljivosti so prikazani le načini, ki se z njo ujemajo. Izpiši naprave in datoteke. Izpiše naprave ali datoteke. Izpiši naprave. Izpiše datoteke v POTI. Navedi preslikavo pomnilnika, zagotovljenega s strani programske strojne opreme. Seznam podprtih načinov videa: Seznamov uporabnikov, ki lahko zaženejo ta vnos. Izpiše ali izbere vhodni terminal. Izpiše ali izbere izhodni terminal. Izpiše trenutne spremenljivke. Izpiše naložene pisave. Izpiši spremenljivke iz okoljske bločne datoteke. Naloži odtis 64-bitnega XNU. Naloži izpis nalagalnika BIOS. Naloži okolje FreeBSD. Naloži modul jedra FreeBSD (ELF). Naloži modul jedra FreeBSD. Naloži kernel.sys FreeBSD. Naloži Linux. Naloži NTLDR ali BootMGR. Naloži jedrni modul NetBSD (ELF). Naloži jedrni modul NetBSD. Naloži jedro Plan9. Naloži razširitev mape XNU. Naloži paket razširitve XNU. Naloži razširitev XNU. Naloži odtis XNU. Naloži ramdisk XNU. Na voljo bo kot md0. Naloži izpis `device-properties'. Naloži odtis PXE. Naloži razporeditev tipk. Naloži jedro multiboot 2. Naloži modul multiboot 2. Naloži jedro multiboot. Naloži modul multiboot. Naloži pozdravno sliko za XNU. Naloži odtis XNU v mirovanju. Naloži in začni posnemovalnik EFI. Naloži drugi zagonski nalagalnik. Naloži dodatno nastavitveno datoteko brez spreminjanja vsebine, vzemi pa vnose menija. Naloži dodatno datoteko z nastavitvami brez spreminjanja konteksta. Naloži dodatno datoteko z nastavitvami. Naloži drugo obremenitev coreboot Naloži sliko ozadja za dejavni terminal. Naloži gostiteljeve preglednice ACPI in preglednice navedene z argumenti. Naloži initrd. Naloži ramdisk kOpenBSD. Naloži jedro FreeBSD. Naloži jedro NetBSD. Naloži jedro OpenBSD. Naloži le preglednice gostitelja, navedene v seznamu z vejico ločenih vrednosti. Naloži isto datoteko na več načinov. Naloži spremenljivke iz okoljske bločne datoteke. Naloži ključi šifriranja zfs. Naložene pisave: Zaganjanje GNU Mach ... Nalaganje Linuxa %s ... Nalaganje Xen %s ... Nalaganje začetnega ramdiska ... Nalaganje jedra FreeBDS %s ... Nalaganje jedra Illumos ... Zaganjanje Hurd ... Potrjevanje veljavnosti MAC je spodletelo VNOS_MENIJA je število, naslov predmeta menija ali določilo predmeta menija. MODUL MODULI Zahteve po podpori za xorriso pošljite na <bug-xorriso@gnu.org>. Ustvari nosilec CD, disk, ključ USB ali disketni zagonljiv odtis z nalagalnikom GRUB. Naredi datoteko razporeditve tipkovnice GRUB. Naredi zagonljiv odtis GRUB. Ustvari navidezni pogon iz datoteke. Naredi razdelek dejaven Uredi preslikave pogona BIOS. Obvezni ali izbirni argumenti dolgih možnosti so obvezni ali izbirni tudi za morebitne ustrezne kratke možnosti. Upravljaj naprave PCI. Izmeri čas, ki ga uporabi UKAZ Pomnilnik je izčrpan Vrsta pomnilnika: DDR2. Vrsta pomnilnika: neznana. Določilo vnosa menija. Vnos menija ni določen. Vrsta vnosa menija. Podprt je enostaven način urejanja, podoben BASH. Za prvo besedo TABULATOR izpiše mogoča dokončanja ukazov. Povsod drugod TABULATOR našteje mogoča dokončanja naprav ali datotek. %s Podprt je enostaven način urejanja, podoben Emacs. Tipka TAB izpiše možnosti dopolnjevanja. Pritisnite tipki Ctrl-x ali F10 za zagon, Ctrl-c ali F2 za ukazno vrstico ali ESC za zavračanje urejanja in vrnitev v meni GRUB. ponedeljek Enobarvno Ali obstaja več kot ena naprava namestitve? Ali obstaja več kot en vnos menija? Priklopi šifrirno napravo. Priklopi vse nosilce z nastavljeno zastavico `boot'. Priklopi vse. Priklopi po UUID. Priklopi šifrirne naprave. IME IME [SPREMENLJIVKA] [NAMIGI] ŠTEVILO ŠTEVILO_SEKUND Ime	Sklicno število	Odvisnosti
 Lastni gonilniki diska so v uporabi. Zavračanje uporabe vmesnika programske strojne opreme diska. Omrežni protokoli: Novi MBR ja zapisan na `%s'
 Ni najdene naprave CS5536 Protokola FPSWA ni mogoče najti Ni navedenega ukaza.
 Nobena naprava ni navedena.
 Statistika predpomnjenja diskov ni na voljo.
 Pogoni niso bili preslikani Ni zaznanega datotečnega sistema Ni zadetkov Nobena pot ni določena.
 Ni določene naprave ali poti.
 Ni predhodnega logičnega izraza Drevo navideznih naprav ni na voljo Ne-verižni način 4 Ni dovolj parametrov za ukaz.
 Sedaj povežite oddaljen razhroščevalnik. Število ponovitev PBKDF2 OS disk #št ------> naprava GRUB/BIOS Napaka odpiranje datoteke OS %s: %s Možnost -- preklopi na lasten način ukazov xorriso. Možnosti: Iskanje izven obsega: %d
 Zamenjava izven obsega (%d, %d)
 Prepiši predvideno preslikavo naprav Plan9. RAZDELEK UKAZI POT Razpršilo PBKDF2 vašega gesla je %s
 VRATA VREDNOST VRAT [MASKA] Razčleni opuščeno nastavitev v novi vsebini. Razčleni opuščeno nastavitev v novi vsebini in vzame le vnose menija Razčleni opuščeno nastavitev v enaki vsebini. Razčleni opuščeno nastavitev v enaki vsebini in vzame le vnose menija Del št.: %s.
 Razdelek %d je zdaj dejaven.
 Razdelek %s: Slog razdelka `%s' ne podpira vstavljanja Pot: %s
 Pot: ni na voljo Izvedi UKAZE na razdelku.
Uporabi `parttool RAZDELEK help' za seznam razpoložljivih ukazov. Izvedi iskanje DNS Izvajanje samodejne nastavitve IPV6 Izvedi neposredne in povratne preslikave. Ravninsko Predvajaj melodijo. Za GRUB_DEFAULT ne uporabite starega naslova `%s', uporabite `%s' (za različice pred 2.00) ali `%s' (od različice 2.00 naprej) GUID zaloge vrednosti: %016llx
 GUID zaloge vrednosti: ni na voljo Ime zaloge vrednosti: %s
 Ime zaloge vrednosti: ni na voljo Stanje zaloge vrednosti: dejavno Stanje zaloge vrednosti: uničeno Stanje zaloge vrednosti: izvoženo Stanje zaloge vrednosti: naprava ARC stopnje 2 Stanje zaloge vrednosti: potencialno dejavna Stanje zaloge vrednosti: rezervirano za vročo rezervo Stanje zaloge vrednosti: ni na voljo Stanje zaloge vrednosti: nezačeto Mogoči argumenti so: Mogoči ukazi so: Mogoče naprave so: Mogoče datoteke so: Mogoči razdelki so: Mogoče stvari so: Prehiter konec logičnega izraza Pritisnite katerokoli tipko za nadaljevanje ... Pritisnite katerokoli tipko za zagon xnu Za zagon izbranega operacijskega sistema pritisnite vnosno tipko, za urejanje ukazov pred zagonom pritisnite tipko `e' , za ukazno vrstico pa pritisnite `c'. Za zagon izbranega operacijskega sistema pritisnite vnosno tipko, za urejanje ukazov pred zagonom pritisnite tipko `e' , za ukazno vrstico pritisnite `'c'. S pritiskom na ubežno tipko, se pojavi predhodni meni. Izpiši podrobnosti o pomnilniku. Izpiši podatke ZFS o NAPRAVI. Izpiši ZFS-BOOTFSOBJ ali ga shrani v SPREMENLJIVKO Izpiši seznam blokov. Izpiši in izvedi argument bloka. Izpiši povratno sled. Izpiši identiteto in nastavitve pogona. Izpiši velikosti v človeku berljivi obliki. Napravi poizvedbo o podatkih naprave za dano pot (ali napravo, če je podana možnost -d). strojna programska oprema za RAM Številka %d mesta RAM
 REGEXP NIZ Prisoten je odtis ROM. Preberi 16-bitno vrednost in NASLOVA. Preberi 16-bitno vrednost z VRAT. Preberi 32-bitno vrednost in NASLOVA. Preberi 32-bitno vrednost z VRAT. Preberi 8-bitno vrednost in NASLOVA. Preberi 8-bitno vrednost z VRAT. Beri le bajte DOLŽINE. Ponovni zagon je spodletel Znova zaženite računalnik. Ponovno vnesite geslo: Logični izraz je predolg Odstrani strežnik DNS Odstrani modul. Odstrani okoljsko spremenljivko. Odstrani vsa območja pomnilnika v navedenem obsegu. Poročila o hroščih pošljite na %s.
 Poročila o hroščih pošljite na <bug-grub@gnu.org>. Zahtevan je zaporedni terminal, vendar GRUB_SERIAL_COMMAND ni določen. Uporabljeni bodo privzeti parametri. Ponastavi vse preslikave na privzete vrednosti. Pridobitev podrobnosti o napravi. Vrni se iz funkcije. Vrni se na poziv IEEE1275. Zaženi `gdb %s %d' in nastavi ARGS.HOLD na nič.
 Zaženite `go' za nadaljevanje nalagalnika GRUB. SEKUND KRATKOIME KRATKOIME NASLOV KARTICE [NASLOV_STROJNE_OPREME] KRATKOIME NET [VMESNIK|gw PREHOD] VELIKOST VIR|-u UUID|-a|-b NIZ sobota Shrani vrednost branja v spremenljivko IME_SPREMENLJIVKE. Shrani spremenljivke v okoljsko bločno datoteko. Recite 'Pozdravljen svet'. Poišči naprave po UUID. Če je SPREMENLJIVKA navedena, bo prva najdena naprava nastavljena na spremenljivko. Poišči naprave po datoteki Poišči naprave po UUID datotečnega sistema. Poišči naprave po oznaki datotečnega sistema. Poišči naprave po datoteki, oznaki datotečnega sistema ali UUID datotečnega sistema. Če je določena možnost --set, je prva najdena naprava nastavljena na spremenljivko. V primeru, da ime spremenljivke ni navedeno, je uporabljena `korenska mapa`. Išči naprave po datotekah. Če je SPREMENLJIVKA navedena, bo prva najdena naprava nastavljena na spremenljivko. Išči naprave po oznakah. Če je SPREMENLJIVKA navedena, bo prva najdena naprava nastavljena na spremenljivko. Odsek %llu je že v uporabi nadzornika raid `%s', zato bo izpuščen. Pošljite zahtevo proizvajalcu, da podatkov ne shranjujejo na mestu zapisa MBR. Odsek %llu je že v uporabi programa `%s', zato bo izpuščen. Program lahko v prihodnosti povzroči težave z zagonom ali druge težave. Pošljite zahtevo programerjem, da podatkov ne shranjujejo na mestu zagonske sledi.  Izberite napravo z njenim položajem na vodilu. Izberite napravo po ponudniku in ID naprave. Nastavi napredno upravljanje porabe
(1=nizko, ..., 254=visoko, 255=izključeno). Nastavi samodejno akustično upravljanje
(0 = izklopljeno, 128 = tiho, ..., 254 = hitro). Nastavi OEMID podatkovnih struktur RSDP, XSDT in RSDT. Nastavi OEMTABLE ID podatkovnih struktur RSDP, XSDT in RSDT. Nastavi predelavo OEMTABLE podatkovnih struktur RSDP, XSDT in RSDT. Nastavi zastavico `skrito' v vrsti razdelkov Nastavi spremenljivko na vračanje vrednosti. Nastavi spremenljivko za prvo najdeno napravo. Nastavi vrednost okoljske spremenljivke. Nastavi barvo ozadja za dejavni terminal. Nastavi polje ustvarjalca podatkovnih struktur RSDP, XSDT in RSDT. Nastavi predelavo ustvarjalca podatkovnih struktur RSDP, XSDT in RSDT. Nastavi spremenljivko razhroščevalnega okolja. Nastavi pogon v pripravljenost. Nastavi pogon v način pripravljenosti. Nastavi parametre položajev. Nastavi korensko napravo. Nastavi zakasnitev pripravljenosti.
(0=izklopljeno, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Nastavi vrsto terminfo IZRAZA v VRSTA.
 Nastavi privzeti vnos zagonskega menija za GRUB le za naslednji zagon. Nastavi privzeti vnos menija zagona za GRUB. Nastavi naslov zaporednih vrat. Nastavi parnost zaporednih vrat. Nastavi hitrost zaporednih vrat. Nastavi zaustavitvene bite zaporednih vrat. Nastavi dolžino besed zaporednih vrat. Nastavi zaporedno enoto. Nastavi odtise za zagon iz NAPRAVE.

Tega programa ni priporočljivo zagnati neposredno. Ta se izvede preko ukaza grub-install. Nastavi geslo uporabnika (PBKDF2).  Nastavi uporabniško geslo (običajno besedilo). Nepriporočljivo in nevarno. Nastavi spremenljivko z vnosom uporabnika. Nastavi spremenljivke. Nastavljanje vrste razdelkov na 0x%x
 Zamakni parametre položajev ... Pokaži podrobnosti ACPI. Pokaži podrobnosti APM. Prikaži sporočilo pomoči. Prikaži dolg seznam s podrobnejšimi podatki. Pokaže vsebino DATOTEKE v šestnajstiškem zapisu. Pokaži naložene module. Pokaži vsebino pomnilnika. Pokaži surovo vsebino odseka ATA IDENTIFY. Pokaži surovo vsebino datoteke ali pomnilnika. Pokaži vsebino datoteke. Pokaži trenutne preslikave. Pokaži to sporočilo. Pokaži le preglednice različice 1. Pokaži le preglednice različic 2 in 3. Izklop je spodletel Simulira ukaz `initrd' grub-legacy Simulira ukaz `kernel' grub-legacy Simulira ukaz `modulenounzip' grub-legacy Simulira ukaz `password' grub-legacy Simulira ukaz `password' grub-legacy v načinu vnosa menijev Preskoči N bajtov iz izhodne datoteke. Preskoči bajte odmika na začetku datoteke. Mesto %d je odprto
 Najdenih je nekaj stvari Hurd, vendar ne dovolj za zagon. Navedite ime datoteke. Navedite razpršilo za uporabo. Navedite eno ali več datotek pisav za nalaganje. Določi število vhodnih datotek. Zaženi GDB na danih vratih Zaustavi nastavek GDB Shramba se ujema s sestavnim delom ŠTEVILO v IMENU_SPREMENLJIVKE Uspešno zaključeno nedelja Prepreči običajen izpis (opozorila ostanejo). Napaka skladnje v vrstici %u
 V ustvarjeni nastavitveni datoteki GRUB so zaznane napake
 skladnje. Prepričajte se, da v datotekah /etc/default/grub in
/etc/grub.d/* ni napak ali pa pošljite poročilo o hrošču s pripeto
datoteko %s. Prostor V/I nadzornika upravljanja vodila je na 0x%x
 CILJ Ciljna oblika ni določena (uporabite možnost -O). Terminal ima določeno geometrijo. Terminal je le ASCII [privzeto]. Terminal je logično urejen UTF-8. Terminal je vidno urejen UTF-8. Preizkusi podporo za USB. Preizkusi bit na BAJT:BIT v CMOS. Preizkusi, ali je REGEXP skladen z NIZEM. Preizkusi video podsistem v načinu WxH. Preizkusi video podsistem. Le besedilo Datoteki sta enaki.
 Osvetljen vnos bo v %ds samodejno izvršen. Ta vnos lahko zažene katerikoli uporabnik. četrtek Orodje za urajanje bloka okolja. Celotna velikost bliskovnega pogona: %d B.
 Sledeča povratna poševnica Pretvori 64-bitni UUID v zapis, primeren za XNU. Če je -l podan, ga obdrži v pisavi malih črk, kot bi to storil blkid. Preoblikuj sistemski datotečni sistem v datotečni sistem GRUB. Prevede niz s trenutnimi nastavitvami. torek UPORABNIŠKO GESLO USER PBKDF2_PASSWORD UPORABNIŠKO_IME[,UPORABNIŠKO_IME] UTF-8 Napaka med ustvarjanjem cevi: %s Ni mogoče določiti vašega okolja. Uporabiti je treba argument --target. Ni mogoča razvejitev: %s Pretoka iz %s ni mogoče odpreti: %s Ni mogoče pridobiti stanja zaloge vrednosti Razširi podatke. Razširi datoteko pred izračunom nadzorne vsote. Neznana vrsta naslova %d
 Neznan ukaz `%s'.
 Neznana vrsta stiskanja %s Neznano kodiranje Neznan dodaten argument `%s'. Neznana zmožnost pisave gsub 0x%x (%s)
 Neznana koda pritiska tipke 0x%02x
 Neznano določilo preiskovanja tipkovnice %s
 Neznana sistemska napaka Neznan način videa Neznana vrsta navidezne naprave: %s
 Razloži posnemovalnik EFI. Neujemajoči ( ali \( Neujemajoči ) ali \) Neujemajoči [ ali [^ Neujemajoči \{ Nepoznana možnost `%s'\n Neprepoznano stanje zaloge vrednosti Nepodprta vrsta naslova %d
 Nepodprto določilo pokritosti: %d
 Nepodprta vrsta naslova strojne opreme %d
 Nepodprta vrsta odtisa Nepodprta zastavica zamenjave: 0x%x
 Nepodprto določilo zamenjave: %d
 Nepodprta vrsta zamenjave: %d
 Uporaba: Uporaba: %s -o OUTPUT CKBMAP_ARGUMENTI ...\n Uporaba: %s NAPRAVA
 Uporaba: %s [VHODNA DATOTEKA[IZHODNA DATOTEKA]]
 Uporaba: %s [MOŽNOST] VNOS_MENIJA\n Uporaba: %s [MOŽNOST]\n Uporabi nosilec CDROM s skrbniškimi dovoljenji. Uporabi GDB oddaljeni razhroščevalnik namesto DDB. Uporabi NIZ kot telo vnosa menija. Uporabi kodno prevedeno skrbniško napravo. Uporabi zaporedno konzolo. Uporabite tipki %C in %C za izbiro poudarjenega vnosa. SPREMENLJIVKA VMESNIK ŠTEVILO OPIS IME_SPREMENLJIVKE Odštevanje s podrobnim izpisom. Različica %u.%u
32-bitni CS = 0x%x, dolžina = 0x%x, odmik = 0x%x
16-bitni CS = 0x%x, dolžina = 0x%x
DS = 0x%x, dolžina = 0x%x
 Navidezna naprava je degradirana Navidezna naprava je pokvarjena Navidezna naprava ni povezana Navidezna naprava je povezana Navidezna naprava je odstranjena OPOZORILO: na bolje ne bo nobena konzola OPOZORILO: za okolje določena namestitev ni izvedena OPOZORILO: nepodprti parametri zmožnosti pisave: %x
 ŠIRINAxVIŠINA. Počakajte navedeno število sekund. Čakaj na pritisk tipke po vsaki vrstici izhoda. Opozorilo: Opozorilo: neveljavna barva ozadja `%s'
 Opozorilo: neveljavna barva ospredja `%s'
 Opozorilo: skladenjska napaka (manjkajoča poševnica) v `%s'
 sreda Windows NT/2000/XP (nalagalnik) Windows Vista/7 (nalagalnik) Zapiši 16-bitno VREDNOST na NASLOV. Zapiši 16-bitno VREDNOST na VRATA. Zapiši 32-bitno VREDNOST na NASLOV. Zapiši 32-bitno VREDNOST na VRATA. Zapiši 8-bitno VREDNOST na NASLOV. Zapiši 8-bitno VREDNOST na VRATA. Zapisani bajti SPD: %d B.
 Xen hipervizor, različica %s YUV  Navesti je treba vsaj en ukaz.
 Možnosti `SystemPartition' in `OSLoader' bo treba nastaviti ročno. Vaše področje vstavljanja je nenavadno majhno, zato datoteke core.img v določeno področje ne bo mogoče vstaviti. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] DATOTEKA [--md5] PASSWD [DATOTEKA] [--no-mem-option] [--type=VRSTA] DATOTEKA [ARG ...] [-1|-2] [--exclude=PREGLEDNICA1,PREGLEDNICA2|--load-only=PREGLEDNICA1,PREGLEDNICA2] DATOTEKA1 [DATOTEKA2] [...] [-c DATOTEKA [-p PREDPONA]] [DATOTEKA1 [DATOTEKA2 ...]] [-d] IME_NAPRAVE DATOTEKA . [-e|-n] NIZ [-f DATOTEKA] [-f DATOTEKA] ime_spremenljivke [...] [-f|-l|-u|-s|-n] [--hint NAMIG [--hint NAMIG] ...] IME [-h|-p|-r] [DATOTEKA] [-l] GRUBUUID [IME_SPREMENLJIVKE] [-l|-h|-a] [DATOTEKA ...] [-m (stretch|normal)] DATOTEKA [NASLOV|comUNIT][,HITROST] [ARG] [KARTICA [NASLOV_STROJNE_OPREME]] [KARTICA] [ENVVAR=VREDNOST] [OKOLJSPRE] [PRITISKTIPKE1] [[PRITISKTIPKE2] ... [ŠTEVILO:]IME_SPREMENLJIVKE [ŠTEVILO] [MOŽNOSTI ...] [MOŽNOSTI] [MOŽNOSTI] DISK [MOŽNOSTI] DATOTEKA_ALI_NAPRAVA [MOŽNOSTI] DATOTEKE_PISAVE [MOŽNOST] ... [MODULI] [MOŽNOST] ...[POT|NAPRAVA] [MOŽNOSTI] [POT] [VZOREC ...] [SEZNAMUPORABNIKOV] [VREDNOST] ... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] IZRAZ [VRSTA]] [[leto-]mesec-dan] [ura:minuta[:sekunda]] [vodilo]:[mesto][.funk] [ponudnik]:[naprava] ukaz `cryptomount' je spodletel: %s ukaz `loopback' je spodletel: %s vrednost je bila dodeljena argumentu `%s', čeprav ne zahteva argumenta dostop je zavrnjen dodaj odsek NOTE za CHRP IEEE1275 naslov naslova ni mogoče najti poskus branja ali pisanja zunaj diska `%s' poskus branja ali pisanje izven razdelka poskus branja preko konca datoteke poskus iskanja izven datoteke izvaja se poskus branja odtisa jedra `%s 'iz nalagalnika GRUB ponovno se izvaja poskus branja odtisa jedra `%s 'iz nalagalnika GRUB razpoložljivi RAM razpoložljive vrste: base_addr = 0x%llx, dolžina = 0x%llx, %s
 base_addr = 0x%llx, dolžina = 0x%llx, vrsta = 0x%x
 datoteka bitne slike `%s' je nepodprte vrste blocklist DATOTEKA seznami blokiranja so neveljavni velikost blokov ni deljiva s 512 ni mogoče zlomiti 0 zank datotečnega sistema na %s ni mogoče določiti ni mogoče najti ukaza `%s' šifriranega nosilca `%s' ni mogoče priklopiti: %s ni mogoče odpreti `%s': %s ni mogoče odpreti datoteke %s, kazalo %d: napaka %d seznamov blokiranja ni mogoče pridobiti: %s ni mogoče stisniti odtisa jedra ni mogoče najti pogona GRUB za %s. Preverite datoteko device.map. ni mogoče najti naprave za %s (Ali je /dev priklopljen?) ni mogoče dobiti ukazne vrstice prevajalnika za pot `%s': %s Ni mogoče odpreti datoteke OS `%s': %s ni mogoče odpreti `%s': %s `%s' ni mogoče pravilno prebrati ni mogoče prebrati `%s': %s datoteke %s ni mogoče preimenovati v %s izvorne mape ni mogoče obnoviti ni mogoče iskati `%s': %s. ni mogoče stat `%s': %s ni mogoče zapisati za CD-ROM ni mogoče pisati v `%s': %s. Ni mogoče pisati v stdout: %s kartice ni mogoče najti cat DATOTEKA preverjanje potrditvene vsote je spodletelo cmp DATOTEKA KRAJEVNO comUNIT[,HITROST] spodletela primerjava pri odmiku %llu Povezava je zavrnjena Povezava je zakasnela pretvori v krepko pisavo osnovni odtis je prevelik (0x%x > 0x%x) neujemanje različice core.img ni mogoče samodejno nastaviti %s ni mogoče najti zahtevane naprave člana datotečnega sistema več naprav. stranke geli ni mogoče najti ni mogoče najti razreda geom `part' ni mogoče odpreti geom ni mogoče prebrati metapodatkov ELI UUID ni mogoče pridobiti ni mogoče pridobiti UUID geli naključnih podatkov za sol ni mogoče pridobiti ni mogoče poslati omrežnega paketa cp DATOTEKA KRAJEVNO crc DATOTEKA napaka šifriranja številka %d cygwin_conv_path() je spodletel izbriši preslikavo naprave, če že obstaja cilj je nedosegljiv število naprav presega omejitev onemogoči glajenje diska `%s' ni mogoče najti disk ne obstaja, zato bo uporabljena naprava razdelka %s diskovni modul za uporabo (biosdisk ali lastni). Ta možnost je na voljo le na cilju BIOS. velikost diskboot.img mora biti %u bajtov ne zaznaj datotečnih sistemov na NAPRAVI sestavni del imena domene je predolg ne posodobi stanja LED končano vstavi DATOTEKO kot zgodnjo nastavitveno datoteko vstavljanje ni mogoče, to pa je zahtevano za namestitev RAID in LVM vstavljanje ni mogoče, to pa je zahtevano za namestitev preko diska vnesite: boot, `e': možnosti, `c': ukazna vrstica blok okolja je premajhen napaka: %s.
 pričakuj odtise GRUB v mapi MAPA/%s namesto v mapi %s napaka branja odseka 0x%llx od `%s' napaka branja gesla napaka pisanja odseka 0x%llx na `%s' napak okvarjen RAM (BadRAM) datoteke`%s' ni bilo mogoče najti pričakovano je ime datoteke pričakovano je ime datoteke oziroma tempo in note datotečni sistem `%s' ne podpira oznak datotečni sistem `%s' ne podpira seznamov blokiranja odtis strojne programske opreme je prevelik vsili samodejno glajenje pričakovani so štirje argumenti fwstart.img se ne ujema z znano dobro različico. Nadaljujete na lastno odgovornost. ustvari odtis v VRSTI izpiši kratko sporočilo o uporabi pridobi ta seznam pomoči dani argument je sistemska naprava, ne pot grub-mkimage je kodno preveden brez podpore XZ grub > odloži za SECS sekund (privzeto 3600) hex DATOTEKA prezri črke bitne slike med nalaganjem nepravilno določilo mer terminala namesti odtise GRUB v mapi MAPA/%s namesto v mapi %s namesti tudi, kadar so zaznane težave. neveljavno geslo PBKDF2 neveljaven okoljsko odvisen ELF magic neveljavna od arhitekture neodvisna čarovnija ELF neveljavno določilo barve `%s' neveljaven blok okolja neveljavno ime datoteke `%s' Neveljaven obseg pisav neveljavna oblika vrstice: %s neveljaven parameter %s neveljavna vrednost preskoka %lld neveljavno ime spremenljivke `%s' Neveljavno določilo načina videa `%s' napaka ioctl GET_ARRAY_INFO: %s napaka ioctl GET_DISK_INFO: %s napaka ioctl RAID_VERSION: %s Pokaži omrežne naslove Pokaži omrežne kartice Pokaži omrežne poti ls POT Datoteka lzop je bila pokvarjena naredi pogon zagonljiv tudi kot disketo (privzeto za naprave fdX). Na nekaterih sistemih BIOS se lahko okvari. manjka simbol `%c' Manjka obvezna možnost za `%s' modul `%s' ni naložen modul ni naložen ime potrebuje odtis in točko priklopa Sistema APM ni mogoče najti podatkov DHCP ni mogoče najti možnosti DHCP %d ni mogoče najti možnosti DHCP ni mogoče najti zapisa DNS ni mogoče najti odgovor DNS ni prejet ni nastavljenega strežnika DNS brez `/' v kanoničnem imenu datoteke ukaz ni določen ključ odšifiranja ni na voljo ni določenega strežnika ni takšnega razdelka ni mogoče najti ustreznega video modula ni preglednice simbolov ni navedenega terminala brez zaključnega bita v odtisu jedra v datoteki jedra so bili najdeni podatki, ki niso poravnani z odsekom ni mapa ni osnovni razdelek ni običajna datoteka ni v telesu funkcije pričakovan je en argument drugi programi že uporabljajo vstavljeno področje, zato ni dovolj prostora za core.img. Taki programi pogosto poskušajo shraniti programe na način, ki se izogiba zaznavanju. Priporočamo vam, da to raziščete. primanjkuje pomnilnika shrani ustvarjen odtis v DATOTEKO[privzeto=stdout] določena mora biti izhodna datoteka izhod je ustvaril nastavitev v DATOTEKI [privzeto=stdout] zaznana je prekoračitev gesli se ne ujemata izvedi samostojno nastavite bootp fizičnega nosilca %s ni bilo mogoče najti. predhodno naloži določene module MODULE predčasen konec datoteke predčasen konec datoteke %s pritisnite tipko CapsLock pritisnite tipko Insert pritisnite tipko NumLock pritisnite tipko ScrollLock pritisnite tipko SysRq pritisnite levo tipko Alt pritisnite levo tipko Ctrl pritisnite levo tipko Shift pritisnite desno tipko Alt pritisnite desno tipko Ctrl pritisnite desno tipko Shift izpiši različico programa izpiši podatke o različici in končaj izpiši to sporočilo in končaj izpiši podrobna sporočila. napaka branja na odmiku %llu:%s relativna podmapa na omrežnem strežniku selitev 0x%x še ni podprta rezerviran RAM pridobi možnost DHCP in jo shrani v SPREMENLJIVKO. Če SPREMENLJIVKA obstaja, izpiši vrednost. korenska mapa strežnika TFTP zaznana je bila zanka poti shrani odtise ROM v MAPI [izbirno] shrani izhod v DATOTEKO [zahtevano] izbor kazala sloga pisave zaporednih vrat `%s' ni mogoče najti set [IME=VREDNOST ...] zakleni način zaklepa velikih črk nastavi zviševanje pisave nastavi zniževanje pisave nastavi ime družine pisave nastavi obseg pisave nastavi velikost pisave nastavi vhodno ime datoteke. Privzeto je STDIN nastavi način vstavljanja nastavi način zaklepa številčnice nastavi izhodno ime datoteke. Privzeto je STDOUT nastavi način premora določitev mape predpon [privzeta=%s] nastavi način zaklepa drsenja nastavi ime programa velikost razteg|običajno simbola `%s' ni bilo mogoče najti začasno terminala %s ni mogoče najti ali pa ga ne upravlja terminfo terminala `%s' ni mogoče najti Argument `%s' zahteva celo število vnos `%s' v datoteki device.map je neveljaven, zato bo prezrt. Pred nadaljevanjem je treba popraviti ali izbrisati to datoteko. ime pogona `%s' v datoteki device.map je nepravilno. Namesto tega bo uporabljen %s. Uporabite obliko [hfc]d[0-9]* (Npr. `hd0' or `cd') prvi sektor datoteke jedra ni poravnan z odseki. namestitvena naprava je odstranljiva. Ta možnost je na voljo le na sistemih EFI. vrsta razdelka 0x%x ni veljavna odseki jedra so preveč razdrobljeni velikost `%s' ni %u velikost `%s' je prevelika velikost `%s' je premajhna ta datoteka ELF ni prave vrste ta razdelek GPT ne vsebuje zagonskega razdelka BIOS. Vstavljanje ne bo mogoče. ta LDM nima vstavljenega razdelka, vstavljanje ne bo mogoče ta oznaka razdelka v slogu msdos nima oznake za MBR, zato vstavljanje ne bo mogoče. pričakovani so trije argumenti zakasnitev med odpiranjem `%s' zakasnitev med branjem `%s' zakasnitev: ni mogoče razrešiti naslova strojne opreme pregloboko gnezdenje simbolnih povezav prevajalnik `%s' za pot `%s' ima več besed, ki niso možnosti, vsaj `%s' in `%s' prevajalniku `%s' za pot `%s' so podane le možnosti in ni mogoče najti dela naprave ukazna vrstica prevajalnika je prazna za pot `%s' pričakovana sta dva argumenta vrsta ni mogoče določiti datotečnega sistema %s; varnostnega preverjanja ni mogoče izvesti neporavnana velikost naprave nepričakovan konec datoteke neznan argument `%s' Neznano stiskanje %d
 neznana vrsta naprave %s
 neznani datotečni sistem neznana vrsta naprave RAID `%s' neznana napaka logičnega izraza neznana vrsta cilja %s
 neznana vrsta terminfo `%s' neprepoznana možnost DHCP določila oblike `%s' neprepoznan omrežni naslov `%s' neprepoznani omrežni vmesnik `%s' neprepoznano število nerazrešljiv naslov %s unset [IME ...] nepodprta napaka HTTP %d: %s nepodprt odziv HTTP nepodprta različica RAID: %d.%d nepodprta oblika gzip nepodprta parnost zaporednih vrat nepodprta hitrost zaporednih vrat nepodprto število zaustavitvenih bitov zaporednih vrat nepodprta dolžina besede zaporednih vrat uporabi MAPO kot korensko mapo razdelka sistema EFI. Uporabi DATOTEKO kot zagonski odtis [privzeto=%s] Uporabi DATOTEKO kot odtis jedra [privzeto=%s] uporabi DATOTEKO kot preslikavo naprave [privzeto=%s] uporabi DATOTEKO kot xorriso [izbirno] uporabi datoteke GRUB v mapi DIR [privzeto=%s] uporabi datoteko določila tudi, če je UUID na voljo uporabi odtise in module v MAPI [privzeto=%s/<okolje>] spremenljivka `%s' ni nastavljena vidno urejen UTF-8 počakaj dokler se ne pripne razhroščevalnik ne bo nadaljevanja s seznami blokov napačna čarovnija ali različica ELI xnu_uuid NAPRAVA datoteka xz je pokvarjena ali pa so možnosti bloka nepodprte tega naslova ni mogoče izbrisati najprej je treba naložiti jedro vaš zagonski razdelek BIOS je premajhen. Vstavljanje ne bo mogoče. vaša datoteka core.img je nenavadno velika in je ne bo mogoče vstaviti v določeno področje. vaše področje vstavljanja je neobičajno majhno, zato datoteke core.img v določeno področje ne bo mogoče vstaviti.                                                                                                                       boot/grub/locale/sv.mo                                                                              0000600 0001750 0001750 00000106613 13417732100 0013661 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                                      p)  #   q)      )     )     )     )     )     *     *  .   &*  .   U*  %   *     *     *    *  +   +     +      +      ,  !   2,     T,  ,   q,     ,     ,  $   ,     ,  *   -     7-     ?-     O-     g-  
   -  	   -     -  '   -      -  (   .  (   *.  )   S.     }.     .     .     .     .  "   .     .     /  7   /     L/     U/     W/     \/     h/     z/     /  3   /     /     /     /      0     0      0     70     L0  -   d0  !   0  #   0     0     `1     {1     1     1     1     1     1     1     2     2     12     G2     L2     R2     a2     u2     2     2     2     2     2  	   2  #   2     3     73     J3     j3     3     3     3     3     3  !   3     4     4     !4  	   >4     H4     ]4     o4     4     4     4     4  
   4     4     4     5     5     ;5     R5     j5     5     5     5     5     5     6  '   06     X6     q6     6  
   6     6     6     6     6     	7  "   7     ?7     P7     a7     y7     7     7     7     7     7     7     7     7     7     
8     8     &8     D8     W8     m8     ~8     8     8     8     8  #   8     9     39     K9     ]9     d9     y9     9     9  P   9     :  	   :     (:     +:     J:     [:     w:     :     :     :     :     :     :     ;     ;     1;     ?;  !   S;  "   u;     ;     ;     ;  !   ;     <      <     9<     E<      \<     }<     <     <     <     <     <     <     =     0=  *   J=     u=     =     =     =     =  $   =     >     >     (>     =>     P>      l>     >     >     >     >     >  !   >     ?     &?     >?     O?     b?     x?     !@     (@     4@     R@  
   i@     t@     @     @     @     @     @     @     @     @     A     1A     NA     WA      nA     A     A     A     A     A     A     A  	   A     A     B  q   $B     B     B     B     B     B     C     C     :C     VC     pC     C     C     C     C     C     C     C  "   D     6D     ND  	   gD     qD     vD     D     D     D     D     D  )   D     E      E     =E     YE     tE      E     E     E     E     E     F     "F  0   7F     hF     }F     F     F     F  '   F     F     F     G     G     &G  
   8G     CG  <   ]G     G     G     G     G     G     G  0   G     H     1H     JH     aH     H     H     H     H     H     H     H     I     $I     DI     YI  '   mI     I     I  '   I  -   I     J  '   J  '   >J  .   fJ  	   J     J     J     J     J     K     &K  *   +K  B   VK  /   K     K     K  )   K     L     4L  	   CL     ML     kL     }L     L     L  	   L     L     L     L     L     M     M  
   M  	   (M     2M  !   8M  )   ZM     M     M     M     M  0   M  6   M     #N     1N     DN     SN  %   kN     N  &   N      N     N     O     O     2O     RO     iO     O     O     O     O     O     O     O     O     P  "   $P     GP     LP     XP     qP     P     P     P  +   P     P      Q  %   	Q     /Q     GQ     ^Q     vQ     Q     Q     Q     Q     Q     Q     R     R     R     ;R     HR     bR     zR     R     R     R     R  1   R     S     +S     CS     VS     dS     S     S     S     S     S     S      T     T     !T     0T     @T     QT     aT     rT     T  &   T     T     T     T     U     U     4U     IU  	   NU     XU  %   rU  7   U  /   U      V     V     9V     WV     nV  F   sV     V     V     V      W     W     $W  '   <W     dW     |W     W  !   W  j  W  #   7Y  *   [Y     Y     Y      Y  	   Y     Y     Z  2   Z  1   BZ  $   tZ     Z     Z    Z  (   [     [  '   \     +\  (   <\     e\  3   \     \     \  +   \     ]  2   (]     []     c]     p]  $   ]     ]  	   ]     ]  (   ]  !   ^  )   )^  )   S^  *   }^     ^     ^     ^     ^     ^     _     _     '_  7   6_     n_     v_     x_     |_     _     _     _  :   _     _     _     `     6`     E`     ^`     }`     `  /   `  *   `  )   a     :a  #   a  #   a     b     b     b     ;b  '   Zb  '   b     b     b     b     b     b     b     c     c     9c     Nc     gc     c     c  
   c  $   c     c     c  )   d     <d  $   Sd     xd     d     d     d     d  
   d     d     e  	   e     &e     =e     Ue     qe     e     e     e  	   e     e     e  '   e      !f     Bf     Vf  !   hf     f  "   f     f  $   f     g     $g  /   @g     pg      g     g     g  	   g  "   g      h     h     .h  "   Fh     ih     zh     h     h     h     h     h     h     h     i  	   i     i     )i     >i     Ei  #   ^i     i     i     i     i     i     i     	j      j  '   @j  !   hj     j     j     j     j     j     j  '   k  \   .k     k  	   k     k  -   k     k     k     l     l     3l     Hl     ]l     ol     l     l     l     l     l  (   l  (   m     Am     [m  !   tm  &   m      m      m     m     n  %   +n     Qn     qn     n     n     n     n     n      o  #   5o  *   Yo     o     o     o     o     o  (   	p     2p     Ep     \p     sp     p  $   p  !   p     p      q     q  $   q  !   3q     Uq     jq     q     q     q     q     r     r     r     r     r     r     s     ,s     1s     @s     Ts     ms     s     s     s     s     s     s  )   t     Et     Nt     bt     kt     pt     t     t     t     t     t  ~   t     pu     u     u     u     u     u  +   u  (   #v     Lv     hv     v     v     v     v     v     v  ]   w  l   `w     w  #   w     x     x     x     3x     ;x     Cx     Wx     vx  -   x     x  "   x  #   x  %   y  &   =y  %   dy     y  '   y     y     y     y     
z  3   %z     Yz     pz     z     z     z  0   z     z     {     {     #{     ({     9{     E{  ?   ]{     {     {     {     {     {     {  7   {     5|     R|     g|     ~|     |     |     |     |     |     
}     }      .}  #   O}     s}     }  1   }     }     }  "   }  5   ~     T~  %   ]~  &   ~  .   ~     ~     ~     ~  !         =     ^     y  #   ~  U     /        (     <  &   T     {                    ŀ     ր            	                  1     G  
   d     o     ~  	                )                  
       2   %  7   X                    Ƃ  ,          *   *  %   U     {            '   ȃ            $   *     O     W     e     z                    Ą  .   ބ       	     &         G     `     v  "     /               $             6     L     c     x                    Ն                 *        H     [     z               ɇ     ܇  %     6        P     `     z                 "   Έ                +     B     Z     u                         Ή            (     %   4  !   Z     |                    ؊  	   ݊       "     4   (  1   ]             !   Ћ            T        g     |                    ˌ  1     !        9      H  !   i     Q   u                                     f                =     B                    0   T           U      M        7   5   x     	                  _   g                                     ]       2     p            
               y             "                |  u                           r  -                      a  p      R                ?                            y               4  i    N      a   f          Q              o   A      J     <          Y      g   8           \  (                   E   c   w      d                      2      )  [     m                             D    r   %                             P   ^                                           {                t  }                     4          :           O                          |      >         b   V     %  c  W         ^                        O          H                            i     t       I                             X           6        +  Z                   +     K                 N    !    3      /          C  .  s                         X   d                      #           (  ?             ~         1   `   #      C     G  Y          $   [          _        l  e     6           $        &             
  q     L  I        x                              8      1                              \      M                     >           v     @       H         -                 q       j     {        E         w  @      o  9               7  '     k  h                                          )   V            /  0               s        h           Z                         ;              e                  D       :               K          '  A     	   =        B                    k   9  .   }         n                    *              T                 ,       v  <       S       j   ,     n       l                 "  F        3     5      R          m      L   ]                              F  *     !                  z                W  U  `  J                 P             ;      G     S          ~            &      z                              b                        total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID version: %u.%u
   No info available   or:   - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: option '--%s' requires an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- > ADDR ADDR [SIZE] ADDRESS DNSSERVER APM disabled
 APM enabled
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Ask for file name to reboot from. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Available input terminals: Available output terminals: BLOCK BYTE:BIT Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode CGA  COLOR COMMAND [ARGS] CS5536 at %d:%d.%d
 Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Clear the screen. Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute or check hash checksum. Configure serial port. Copy FILE to local file LOCAL. Copy FILE to standard output. Couldn't load sha256 Couldn't load sha512 DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete variables. Determine driver. Determine filesystem type. Device %s: Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Display FPSWA version. Display a line of text. Display output on all consoles. Display this help and exit. Display/set current datetime. Do not print messages. Do not probe any floppy drive. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't reboot, just halt. Don't stop after first error. ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d seconds 
 Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Evaluate an expression. Exit failed Exit from GRUB. Exit from normal mode. FILE FILE [ARG ...] FILE [ARGS...] FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FORMAT Falling back to `%s' Filesystem cannot be accessed Filesystem type %s Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Friday GNU GRUB  version %s GRUB Boot Menu Garbage in ARGP_HELP_FMT: %s Generate a grub config file Halts the computer.  This command does not work on all firmware implementations. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT Insert a module. Install GRUB on your drive. Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 List DNS servers List PCI devices. List all files. List devices and files. List devices or files. List devices. List files in PATH. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. Load 64-bit XNU image. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load XNU extension. Load XNU image. Load a PXE image. Load a keyboard layout. Load a splash image for XNU. Load another boot loader. Load another config file. Load background image for active terminal. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load the same file in multiple ways. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... MODULE MODULES Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manipulate PCI devices. Memory exhausted Memory type: DDR2. Memory type: Unknown. Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Monday Monochrome  More than one install device? Mount a crypto device. Mount all. Mount by UUID. Mount crypto devices. NAME NUMBER_OF_SECONDS Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No command is specified.
 No device is specified.
 No known filesystem detected No match No path is specified.
 No path or device is specified.
 Options: PARTITION COMMANDS PATH PORT PORT VALUE [MASK] Partition %d is active now. 
 Partition %s: Path: %s
 Path: unavailable Perform a DNS lookup Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Press any key to continue... Press any key to launch xnu Print Memory information. Print a block list. Reboot failed Reboot the computer. Reenter password:  Remove a DNS server Remove a module. Remove an environment variable. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Return from a function. Run `go' to resume GRUB. SHORTNAME SIZE SOURCE|-u UUID|-a|-b STRING Saturday Say `Hello World'. Search devices by a file. Set an environment variable. Set background color for active terminal. Set root device. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set user password (PBKDF2).  Set variables. Show ACPI information. Show APM information. Show a help message. Show a long list with more detailed information. Show loaded modules. Show the contents of a file. Show this message. Shutdown failed Specify filename. Specify one or more font files to load. Success Sunday Syntax error at line %u
 TARGET Test USB support. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. Thursday Tuesday USER PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown system error Unknown video mode  Unrecognized option `%s'\n Unsupported image format Usage: Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use serial console. WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to PORT. Write 8-bit VALUE to PORT. Xen hypervisor, version %s YUV  You need to specify at least one command.
 Your embedding area is unusually small.  core.img won't fit in it. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-h|-p|-r] [FILE] [-l|-h|-a] [FILE ...] [ARG] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [PATH] [PATTERN ...] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [vendor]:[device] access denied addr address not found attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: blocklist FILE can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d cannot compress the kernel image cannot open `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s cat FILE cmp FILE LOCAL connection refused couldn't open geom cp FILE LOCAL crc FILE cygwin_conv_path() failed disk `%s' not found diskboot.img size must be %u bytes done error: %s.
 failure to read password file `%s' not found filename expected generate an image in FORMAT give a short usage message grub-mkimage is compiled without XZ support grub> hex FILE install even if problems are detected invalid PBKDF2 password invalid file name `%s' invalid line format: %s invalid parameter %s invalid variable name `%s' list network addresses list network cards list network routes ls PATH module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DNS servers configured no command is specified no server is specified no such partition no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file out of memory output file must be specified overflow is detected passwords don't match physical volume %s not found press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. reserved RAM serial port `%s' isn't found set [NAME=VALUE ...] set the program name size temporary terminal `%s' isn't found the argument `%s' requires an integer the first sector of the core file is not sector-aligned the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unset [NAME ...] unsupported gzip format use FILE as the boot image [default=%s] variable `%s' isn't set xnu_uuid DEVICE you can't delete this address you need to load the kernel first Project-Id-Version: grub 2.0.0-pre4
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2012-04-02 20:47+0100
Last-Translator: Daniel Nylander <po@danielnylander.se>
Language-Team: Swedish <tp-sv@listor.tp-sv.se>
Language: sv
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8bit
               totalt minne: %d KiB
     Inget föredraget läge tillgängligt
     Föredraget läge: %ux%u
   EDID version: %u.%u
   Ingen information tillgänglig   eller:   - Total storlek är okänd  [FLAGGA...] %.*s: ARGP_HELP_FMT-parametern måste vara positiv %.*s: ARGP_HELP_FMT-parametern kräver ett värde %.*s: Okänd ARGP_HELP_FMT-parameter %ds %ds återstår. %s verkar innehålla ett %s filsystem som inte kan reservera plats för DOS-liknande uppstart. Installeras GRUB där kan det innebära att FILSYSTEMET FÖRSTÖRS om viktiga data skrivs över av grub-setup (flaggan --skip-fs-probe avaktivera denna kontroll, använd den på egen risk). %s stöds ännu inte av grub-mkconfig.\n %s, med Hurd %s %s, med Hurd %s (återställningsläge) %s, med Linux %s %s, med Linux %s (återställningsläge) %s, med Xen %s och Linux %s %s, med Xen %s och Linux %s (återställningsläge) %s, med Xen hypervisor %s, med kFreeBSD %s %s, med kFreeBSD %s (återställningsläge) %s, med kärnan %s (via %s) %s, med kärnan %s (via %s, återställningsläge) %s: OK
 %s: LÄSFEL
 %s: För många argument
 %s: Du måste köra detta som root\n %s: fel: %s: info: %s: ogiltig flagga -- "%c"
 %s: flaggan "--%s" kräver ett argument
 %s: flaggan "-W %s" är tvetydig
 %s: flaggan "-W %s" kräver ett argument
 %s: flaggan kräver ett argument -- "%c"
 %s: flaggan kräver ett argument -- "%s"\n %s: okänd flagga "%c%s"
 %s: okänd flagga "--%s"
 %s: varning: (32-bitars) (64-bitars) (PROGRAMFEL) Ingen version!? (på %s) - Etikett "%s" - Senaste ändringsdatum %d-%02d-%02d %02d.%02d.%02d %s --MER-- > ADR ADR [STORLEK] ADRESS DNSSERVER APM inaktiverad
 APM aktiverad
 ARGP_HELP_FMT: %s värdet är mindre än eller lika med %s ASCII Aktiva inmatningsterminaler: Aktiva utmatningsterminaler: Adapter "%s":
 Lägg till en DNS-server Lägg till en nätverksadress. Lägg till en nätverksrutt. Avancerade flaggor för %s Avancerade flaggor för %s (med Xen hypervisor) Fråga efter filnamn att starta upp från. Försöker att dekryptera huvudnyckeln... Försöker installera GRUB på en disk med flera partitionsetiketter eller både partitionsetikett och filsystem. Detta stöds ännu inte. Tillgängliga inmatningsterminaler: Tillgängliga utmatningsterminaler: BLOCK BYTE:BIT Starta upp ett operativsystem. Starta upp i enanvändarläge. Starta upp med felsökningsmeddelanden. Starta upp med informativa meddelanden. Startar upp "%s" Starta en kommandolista Startar upp i blindläge CGA  FÄRG KOMMANDO [ARG] CS5536 på %d:%d.%d
 Ändra konfigurerade enheter. Ändra partitionstyp Kontrollera Alt-tangent. Kontrollera Control-tangent. Kontrollera Shift-tangent. Töm skärmen. Kommandon: Jämför FIL med lokala filen LOKAL. Jämför filen "%s" med "%s":
 Jämför två filer. Beräkna eller kontrollera kontrollsumma. Konfigurera serieport. Kopiera FIL till lokala filen LOKAL. Kopiera FIL till standard ut. Kunde inte läsa in sha256 Kunde inte läsa in sha512 ENHET ENHET [PARTITION[+/-[TYP]]] ... ENHETSNAMN KAT KATALOG [OSBundleRequired] DNSSERVER Definiera en menypost. Definiera en undermeny. Ta bort en nätverksadress. Ta bort en nätverksrutt. Ta bort variabler. Fastställ drivrutin. Fastställ filsystemstyp. Enhet %s: Inaktivera ACPI. Inaktivera SMP. Inaktivera all utskrift under uppstart. Inaktivera/aktivera SMART (0/1). Visa FPSWA-version. Visa en rad text. Visa utskrift på alla konsoller. Visa denna hjälp och avsluta. Visa/ställ in aktuellt datum/tid. Skriv inte ut meddelanden. Leta inte efter någon diskettenhet. Gör ingenting, lyckas. Gör ingenting, misslyckas. Visa inte uppstartsmeddelanden för diagnostik. Starta inte om, stanna bara. Stoppa inte efter första felet. ESC när som helst avslutar. UTTRYCK UTTRYCK ] Förfluten tid: %d.%03d sekunder 
 Ange ZFS-lösenord:  Ange i KDB vid uppstart. Gå in i normalt läge. Ange lösenfras för %s%s%s (%s):  Ange lösenord:  Ange användarnamn:  Evaluera ett uttryck. Avslutning misslyckades Avsluta GRUB. Avsluta från normalt läge. FIL FIL [ARG ...] FIL [ARG...] FIL... FIL1 FIL2 FILNAMN KOMMANDO FILSYSTEM [VARIABEL] FORMAT Faller tillbaka på "%s" Filsystemet går inte att komma åt Filsystemstyp %s Hittade %s på %s (%s)\n Hittade %s på %s\n Hittade GNU Mach: %s Hittade Hurd module: %s Hittade NetBSD-kärna: %s\n Hittade bakgrund: %s\n Hittade initrd-avbildning: %s\n Hittade katalog för kärnmoduler: %s\n Hittade kärna för FreeBSD: %s\n Hittade linux-avbildning: %s\n Hittade tema: %s\n Fredag GNU GRUB  version %s GRUB uppstartsmeny Skräp i ARGP_HELP_FMT: %s Generera en konfigurationsfil för grub Stoppar datorn.  Detta kommando fungerar inte på alla implementationer av fast programvara. Hello World Hercules  ID AVBILDNING1 [AVBILDNING2 ...] MONTERINGSPUNKT Infoga en modul. Installera GRUB på din enhet. Ogiltigt kommando %s.
 Ogiltigt innehåll i \{\} Ogiltig enhet "%s".
 Ogiltigt diskantal.
 Lista DNS-servrar Lista PCI-enheter. Lista alla filer. Lista enheter och filer. Lista enheter eller filer. Lista enheter. Lista filer i SÖKVÄG. Lista eller välj en inmatningsterminal. Lista eller välj en utmatningsterminal. Lista aktuella variabler. Lista inlästa typsnitt. Läs in 64-bitars XNU-avbildning. Läs in kärnmodul för FreeBSD (ELF). Läs in kärnmodul för FreeBSD. Läs in kernel.sys för FreeDOS. Läs in Linux. Läs in NTLDR eller BootMGR. Läs in kärnmodul för NetBSD (ELF). Läs in kärnmodul för NetBSD. Läs in kärna för Plan9. Läs in XNU-utökning. Läs in XNU-avbildning. Läs in en PXE-avbildning. Läs in en tangentbordslayout. Läs in en startbild för XNU. Läs in en annan starthanterare. Läs in en annan konfigurationsfil. Läs in bakgrundsbild för aktiv terminal. Läs in initrd. Läs in ramdisk för kOpenBSD. Läs in kärna för FreeBSD. Läs in kärna för NetBSD. Läs in kärna för OpenBSD. Läs in samma fil på flera olika sätt. Inlästa typsnitt: Läser in GNU Mach ... Läser in Linux %s ... Läser in Xen %s ... Läser in initial ramdisk ... Läser in kärna för FreeBSD %s ... Läser in kärna för Illumos ... Läser in Hurd ... MODUL MODULER Gör en startbar avbildning av GRUB. Gör en virtuell enhet av en fil. Gör partition aktiv Manipulera PCI-enheter. Slut på minne Minnestyp: DDR2. Minnestyp: Okänt. Minimal Bash-liknande radeditering stöds. För det första ordet kan tabulator-tangenteten användas för att visa kompletteringsalternativ. I övriga fall visa tabulator-tangenten möjliga enheter eller filnamn för komplettering. %s Måndag Monokrom Fler än en installationsenhet? Montera en krypterad enhet. Montera alla. Montera efter UUID. Montera krypterade enheter. NAMN ANTAL_SEKUNDER Nätverksprotokoll: Ny MBR skrivs till "%s"
 Ingen CS5536 hittades Ingen FPSWA hittades Inget kommando har angivits.
 Ingen enhet har angivits.
 Inget känt filsystem hittades Ingen träff Ingen sökväg har angivits.
 Ingen sökväg eller enhet har angivits.
 Flaggor: PARTITIONSKOMMANDON SÖKVÄG PORT PORTVÄRDE [MASK] Partition %d är aktiv nu. 
 Partition %s: Sökväg: %s
 Sökväg: inte tillgänglig Genomför ett DNS-uppslag Använd inte gamla titeln "%s" för GRUB_DEFAULT, använd "%s" (för versioner före 2.00) eller "%s" (för 2.00 eller senare) Möjliga argument är: Möjliga kommandon är: Möjliga enheter är: Möjliga filer är: Möjliga partitioner är: Möjliga saker är: Tryck på en tangent för att fortsätta... Tryck på en tangent för att starta xnu Skriv ut minnesinformation. Skriv ut en blocklista. Omstart misslyckades Starta om datorn. Ange lösenordet igen:  Ta bort en DNS-server Ta bort en modul. Ta bort en miljövariabel. Rapportera fel till %s.
Skicka synpunkter på översättningen till <tp-sv@listor.tp-sv.se>.
 Rapportera fel till <bug-grub@gnu.org>.
Skicka synpunkter på översättningen till <tp-sv@listor.tp-sv.se>. Återgå från en funktion. Kör "go" för att återuppta GRUB. KORTNAMN STORLEK KÄLLA|-u UUID|-a|-b STRÄNG Lördag Säg "Hello World". Sök efter enheter med en fil. Ställ in en miljövariabel. Ställ in bakgrundsfärg för aktiv terminal. Ange rotenhet. Ställ in adress för serieporten. Ställ in paritet för serieporten. Ställ in hastighet för serieporten. Ställ in stoppbitar för serieporten. Ställ in ordlängd för serieporten. Ställ in serieenhet. Ställ in användarlösenord (PBKDF2).  Ställ in variabler. Visa ACPI-information. Visa APM-information. Visa ett hjälpmeddelande. Visa en lång lista med mer detaljerad information. Visa inlästa moduler. Visa innehållet av en fil. Visa detta meddelande. Avstängning misslyckades Ange filnamn. Ange en eller flera typsnittsfiler att läsa in. Lyckades Söndag Syntaxfel på rad %u
 MÅL Testa USB-stöd. Endast text Filerna är identiska.
 Markerat val kommer att startas upp automatiskt om %d sekunder. Torsdag Tisdag ANVÄNDARLÖSENORD ANVÄNDARNAMN[,ANVÄNDARNAMN] UTF-8 Kunde inte skapa rör: %s Kunde inte fastställa din plattform. Använd --target. Kunde inte grena process: %s Okänd adresstyp %d
 Okänt kommando "%s".
 Okänt komprimeringsformat %s Okänd teckenkodning Okänt systemfel Okänt grafikläge Okänd flagga "%s"\n Avbildningsformatet stöds inte Användning: Användning: %s ENHET
 Användning: %s [INFIL [UTFIL]]
 Användning: %s [FLAGGA] MENYPOST\n Användning: %s [FLAGGA]\n Använd CD-ROM som rot. Använd fjärrfelsökaren GDB istället för DDB. Använd seriekonsoll. BREDDxHÖJD. Vänta ett angivet antal sekunder. Vänta på tangenttryckning efter varje utskriftsrad. Varning: Varning: ogiltig bakgrundsfärg "%s"
 Varning: ogiltig förgrundsfärg "%s"
 Varning: syntaxfel (saknar snedstreck) i "%s"
 Onsdag Windows NT/2000/XP (inläsare) Windows Vista/7 (inläsare) Skriv 16-bitars VÄRDE till PORT. Skriv 8-bitars VÄRDE till PORT. Xen hypervisor, version %s YUV  Du måste ange minst ett kommando.
 Ditt utrymme för inbäddning är ovanligt litet. core.img kommer inte att få plats. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FIL [--md5] LÖSENORD [FIL] [-c FIL [-p PREFIX]] [FIL1 [FIL2 ...]] [-d] ENHETSNAMN FIL. [-e|-n] STRÄNG [-f FIL] [-f FIL] variabelnamn [...] [-h|-p|-r] [FIL] [-l|-h|-a] [FIL ...] [ARG] [FLAGGOR...] [FLAGGOR] [FLAGGOR] DISK [FLAGGOR] FIL_ELLER_ENHET [FLAGGA]... [MODULER] [FLAGGA]... [SÖKVÄG|ENHET] [SÖKVÄG] [MÖNSTER ...] [VÄRDE]... [BxH[xD]] [BxH] [[-a|-u|-v] [-g BxH] TERM [TYP]] [[år-]månad-dag] [timme:minut[:sekund]] [tillverkare]:[enhet] åtkomst nekas adr adressen hittades inte försöker läsa kärnavbildningen "%s" från GRUB försöker läsa kärnavbildningen "%s" från GRUB igen tillgängligt RAM tillgängliga format: blocklist FIL kan inte hitta kommandot "%s" kan inte montera krypterade volymen "%s": %s kan inte öppna "%s": %s kan inte öppna filen %s, index %d: fel %d kan inte komprimera kärnavbildningen kan inte öppna "%s": %s kan inte läsa "%s" korrekt kan inte läsa "%s": %s kan inte byta namn på filen %s till %s kan inte skriva till CD-ROM kan inte skriva till "%s": %s kan inte skriva till standard ut: %s cat FIL cmp FIL LOKAL anslutningen nekades kan inte öppna geom cp FIL LOKAL crc FIL cygwin_conv_path() misslyckades disken "%s" hittades inte storleken på diskboot.img måste vara %u byte färdigt fel: %s.
 misslyckades med att läsa lösenordet filen "%s" hittades inte filnamn förväntades generera en avbildning i FORMAT ge ett kort användningsmeddelande grub-mkimage har kompilerats utan stöd för XZ grub> hex FIL installera även om problem uppstår ogiltigt PBKDF2-lösenord ogiltigt filnamn "%s" ogiltigt radformat: %s ogiltig parameter %s ogiltigt variabelnamn "%s" lista nätverksadresser lista nätverkskort lista nätverksrutter ls SÖKVÄG modulen "%s" är inte inläst modulen är inte inläst namn behöver en avbildning och monteringspunkt ingen APM hittades inga DNS-servrar konfigurerade inget kommandot angivet ingen server har angivits ingen sådan partition finns ingen symboltabell ingen terminal angiven ingen terminering i kärnavbildningen data som inte är sektorjusterad hittades i kärnfilen inte en katalog inte en primär partition inte en vanlig fil slut på minne utmatningsfil måste anges stackspill upptäcktes lösenorden stämmer inte överens fysiska volymen %s hittades inte tryck CapsLock-tangenten tryck Insert-tangenten tryck NumLock-tangenten tryck ScrollLock-tangenten tryck SysRq tryck vänster alt tryck vänster ctrl tryck vänster shift tryck höger alt tryck höger ctrl tryck höger shift skriv ut programversion skriv ut versionsinformation och avsluta skriv ut detta meddelande och avsluta skriv ut informativa meddelanden. reserverat RAM serieporten "%s" hittades inte set [NAMN=VÄRDE ...] ställ in programnamnet stor temporär terminalen "%s" hittades inte argumentet "%s" kräver ett heltal första sektorn i kärnfilen är inte sektorjusterad sektorerna för kärnfilen är för fragmenterade storleken för "%s" är inte %u storleken på "%s" är för stor storleken på "%s" är för liten två argument förväntades typ kunde inte identifiera ett filsystem på %s; säkerhetskontroll kan inte genomföras okänt argument "%s" okänd komprimering %d
 okänd enhetstyp %s
 okänt filsystem unset [NAMN ...] gzip-formatet stöds inte använd FIL som uppstartsavbildning [standard=%s] variabeln "%s" är inte inställd xnu_uuid ENHET du kan inte ta bort denna adress du måste läsa in kärnan först                                                                                                                      boot/grub/locale/tr.mo                                                                              0000600 0001750 0001750 00000145202 13417732100 0013653 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                       R         <%      1  #   1     1     1  6    2     72     >2     ^2     v2     2  .   2  .   2  %   2     3     !3    03    54      =5     ^5  !   p5     5  ,   5     5  $   5     6  *   26     ]6     e6     u6  
   6  	   6     6  ,   6  ,   6  '   7  -   @7      n7  (   7  (   7  )   7     8     +8     K8     X8     a8  "   j8  4   8  7   8  1   8     ,9     K9  %   N9  '   t9  %   9  '   9     9     9     :     :     :     8:     F:  3   S:     :  $   :     :     :     :     :     ;  -   #;  !   Q;     s;  Z   ;     V<     q<     <     <     <     <     <     <     <     <     =     5=     L=  %   R=     x=     =     =     =     =     =     >     >     *>     E>  	   W>  #   a>     >     >     >     >     >     >     ?     0?  &   E?     l?  !   s?  ,   ?     ?     ?     ?  !   ?     @     #@     =@     O@     a@     |@     @     @  
   @     @     @     @     A  >   ,A  $   kA     A     A     A     A  +   A     #B     ?B  #   ]B     B     B  $   B     B     B  '   C  9   :C     tC     C     C     C     C  
   C     C     C  +   D     D     D     D     D     E  (   E     FE     ^E     jE     zE     E     E     E     E  7   E     E     F     F     $F     8F  2   NF     F  6   F  +   F     F     G     $G  !   G  H   H     `H     sH     H     H     H  #   H     H     I  )   !I     KI     RI     gI     I     I     I     I     I     I     I  '   I  P   J     ^J     }J     J     J  )   J     J     J     K     (K     =K     UK     kK     K  "   K     K     K     K     K     K  O   K     KL     cL     zL     L  %   L     L  !   L  "   M     &M     BM  +   YM     M     M     M  !   M     M     M     N      N     @N     [N     yN     N     N     N     N     N     O      O     9O  !   VO     xO  2   O     O  *   O  8   
P     CP     PP     hP     P  3   P  $   P  +   P     Q     *Q     ?Q     TQ     gQ      Q     Q     Q     Q     Q  s   Q     lR     R     R     R     R     R     R     qS     *T     1T     6T     NT     `T     sT     T     T     T     T  #   T     U     "U     +U  "   JU     mU     vU     U     U  "   U  #   U     U  	   U     U  )   V     >V     BV     HV  q   UV     V     V     V     W      W     9W     NW  g   kW     W     XX     rX  !   X  "   X  '   X     X     Y     Y     /Y     =Y     RY     eY     Y     Y     Y  -   Y  )   Y     Z     3Z     KZ     dZ     iZ     nZ     uZ  &   ~Z  )   Z  ^   Z     .[  $   H[  %   m[  ^   [  _   [  >   R\  D   \  !   \  '   \  -    ]     N]  )   n]     ]  )   ]  ,   ]     ^     ,^     E^     `^     {^  E   ^  $   ^     ^     _     0_     K_      j_     _  q   _     `  :   /`     j`     `     `     `     `     `  0   `     'a     <a  &   Ra     ya     a     a     a     a  -   a     !b     3b  '   Hb     pb     |b     b     b     b  0   b  !   b  "   c  #   %c     Ic     [c  !   zc     c     c  <   c     	d     d     d     d  0   <d  6   md     d     d     d     d     d     d  $   d     e     8e     Oe     de      xe     e     e     e     e     e     f     &f  '   ;f     cf  <   wf     f     f  m   f  1   =g     og  '   }g  -   g     g  '   g  '   h  .   ,h  	   [h     eh     h     h  *   h  B   h  /   #i     Si  .   ii  )   i     i  	   i     i  5   i     /j     Aj     Wj     rj     j     j     j     j     j     j  	   j     j     j     j     k     )k     Ck     Jk  
   Xk  
   ck  !   nk  )   k     k     k  0   k  6   l     Bl     Pl     cl      rl     l     l     l     l     l     l     m      m     3m     Mm     [m     dm     m  "   m     m     m  F   m  (   n     Bn     Nn     Tn  J   fn     n  $   n     n     n     n     o     'o     <o     To     qo  !   yo     o     o     o     o     o     o     p  1   'p     Yp     ip     p     p     p     p     p     p     p     q     q     &q     7q     Gq     Xq     jq  &   q     q     q  !   q     q     r     r     *r     8r     Ir     ]r     rr  w   wr  7   r  K   's  /   ss     s     s     s     s     t  F   t     ]t     st     t     t     t     t     t  #   u     7u     Pu     du     u      u  .   u  !   u    v  $   w     w     w  I   x     Xx  -   ax     x     x     x  /   x  =   y  *   Ay     ly  
   py  (  {y  ;  z     {      |      |     2|  *   M|     x|  #   |  &   |  5   |  
   }     }     *}  	   G}  
   Q}     \}  .   z}  0   }  0   }  1   ~      =~  0   ^~  /   ~  0   ~  !   ~  !        4     @     I  %   R  7   x  9     3             =  '   @  (   h  '     (          %        
       !   %     G     _  A   u       -                  "     8     M  4   m  (        ˂  a   c  #   Ń  &                       -     2     Q     q  %          !   Ʉ       9     8   *  "   c  )             ͅ                 &   9     `  	   q  3   {  +        ۆ  -        (     @  )   V            +        ԇ     ڇ  -     	   '     1     9  7   V                    Έ  #     #     #   ,  &   P  
   w            2     +     H     1   W  $     #     )   Ҋ       +        ?  $   ^  (          (     .           !   ;  +   ]  8                     -        ?     R  	   Z     d  ?        P     f                 7             	           0     E     Y     v     |  7        ͏     ֏            "   	  L   ,     y  A     /   ͐               4  2     h   Q          Ԓ                (  '   D     l       8        ӓ     ؓ  )           $   9  &   ^                      *     S   Ɣ  (        C     R     f  '   v       !     %   ڕ                .     F     `  5   y                    і       j     "   q  %             Η  F     #   3  &   W  )   ~       $   ǘ  0             <     Y  (   m  "             ə  '     !        1     N     k            *     %     (     #   /  )   S  $   }  (     G   ˛  *     ,   >  X   k     Ĝ     Ӝ            2   ,  &   _  /             ͝            $     %   :     `     u       ,     [   ɞ     %     @     U     p                   Q  	   q     {                 !                       %  7   C  ,   {            &   Ѣ                      =   2  >   p               ģ  <   ٣               !     5  !   Ѥ                    '     :  .   J     y                  +     -   G  ;   u          ŧ     ا               2     N     j       !     5     4        "     7  4   M                 	     1     -   Ω  j        g  ,     ,     k   ު  m   J  Q     N   
  )   Y  2     5     0     0         N  4   o  8     *   ݭ        -   )  !   W     y  V     1     ,     .   E  -   t  $     6   ǯ            '     I   ٰ  +   #     O     f                 3   ѱ          "  1   <  "   n  !             ǲ  !   ܲ  ,        +     >  B   ]  
     %        ѳ     ݳ       9     )   #  0   M  -   ~       %   ´  (             ,  A   =  	                    1     N        5     ;     N     j            /        ٶ               '  #   >     b             "     
     +          4   5     j  C        Ƹ     θ       ;   i            ;   ޹       &   "  &   I  @   p  
             ܺ       &     H   ;  /          8   ̻  +        1  
   @      K  <   l               Ӽ                         /     8     Q     b     p       "        ƽ                          %  &   1  '   X            >     E        *     >     Y  +   i  "             ̿     ݿ       '        %     ;      U     v  	     "          #               F     7   R  
               K          )     	   -     7     R     l                      !        
       !   '     I  #   d       )     -                       /     F     Z     o                                               "   )      L     m  4   }                          '     ?     Y     p     v  8     T   G  <                       %     :  V   ?                 $        
  $   &     K  +   k            "          %     7   ,     d          (        d   R           $    $  a   Q                  N         1   }                         ;                 A  6              Z   :           n     |       j                 8     y       M   '        S                  5  *  1                    7        ?                   7   3      *           D   
                         2           5           v       m             #  Y                _            Z                 :             +  l  {                      !          .                        I          ^  `  9  2  z    Q       ;  O  a                G          s  8        '       =                 /      R           q             y  1      %  ~      $            E                           i                    [              4               0        7  F  M      \  2                     f     V   /  |    
       H         t     w          G         D                          :   %            )              !                     k          I                 r              X   E   W         F     ~   r   B      T      K        e  L        U  p                           n                  W  9       C             +            >  <                 '   o          k       ^     @         !                                   O          \            b        C  `     D        L         /                 e                     6   b                         l   &                 -   t      i     ]     +         Q   (                                  U                     4             -                x               Y  4          d          N                                     P       ;     C     @    =                             s   "  R    G     H                    &   N           0                 P               J                        S   T    q    M     g       E        *  "                    f     3      ]   c          P  &  #  	                      )          >         I  0           <           >     }   A                         J             F           v         A   u                  K                @        B           	                  5       m             L                                      {            .               ,   ?  z   -  g  p        9  ,           h              8          ,        X             w         %       B  h             x   ?   j          K              o  [       6  )  O        u                  V  c   (         _  H  .            <          #                         =  	  3   
   J       "                       total memory: %d KiB
   EDID version: %u.%u
   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   - Partition start at %llu%sKiB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: error: %s: info: %s: invalid option -- '%c'
 %s: option '%c%s' doesn't allow an argument
 %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? - Last modification time %d-%02d-%02d %02d:%02d:%02d %s -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 > ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR1,MASK1[,ADDR2,MASK2[,...]] APM disabled
 APM enabled
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Add a DNS server Add a network address. Advanced options for %s Advanced options for %s (with Xen hypervisor) Ask for file name to reboot from. Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK Base directory for hash list. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting a command list COLOR CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check key modifier status. Clear the screen. Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute or check hash checksum. Configure serial port. Continue loops Copy FILE to local file LOCAL. Couldn't load sha256 Couldn't load sha512 Create a blank environment block file. DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] Debug tool for filesystem driver. Define a submenu. Delete a network address. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. ENVVAR ENVVAR [ENVVAR] ... ESC at any time exits. EXPRESSION EXPRESSION ] Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Enable interpretation of backslash escapes. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. FILE FILE [ARG ...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FPSWA revision: %x
 FROM[K|M|G] TO[K|M|G] Failed to boot both default and fallback entries.
 File size: %s
 Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found linux image: %s\n Found theme: %s\n Freeze ATA security settings until reset. Friday GNU GRUB  version %s Generate a grub config file Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World IMAGE_PATH COMMANDS Insert a module. Installation finished. No error reported. Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid regular expression Invoke user configuration routing. KiB KiB/s List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file without changing context. Load another config file. Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading the Hurd ... MAC verification failed MODULE Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Memory type: DDR2. Memory type: Unknown. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Monday NAME NAME [VARIABLE] [HINTS] NUMBER_OF_SECONDS Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No match No previous regular expression Not enough parameters to command.
 Options: PARTITION COMMANDS PORT PORT VALUE [MASK] Parse legacy config in new context Parse legacy config in same context Partition %s: Path: %s
 Perform a DNS lookup Perform both direct and reverse mappings. PiB PiB/s Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Press any key to continue... Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print a block list. Print and execute block argument. Print drive identity and settings. Print sizes in a human readable format. REGEXP STRING ROM image is present. Read only LENGTH bytes. Reboot failed Reboot the computer. Reenter password:  Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Reset all mappings to the default values. Retrieve device info. Return from a function. Run `go' to resume GRUB. SECS SIZE STRING Saturday Save read value into variable VARNAME. Save variables to environment block file. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Shift positional parameters. Show ACPI information. Show APM information. Show a help message. Show a long list with more detailed information. Show loaded modules. Show memory contents. Show raw contents of a file or memory. Show the contents of a file. Show the current mappings. Show this message. Shutdown failed Skip N bytes from output file. Skip offset bytes from the beginning of file. Specify filename. Specify hash to use. Specify one or more font files to load. Speed: %s 
 Start GDB stub on given port Success Sunday TARGET Target format not specified (use the -O option). Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. The files are identical.
 The highlighted entry will be executed automatically in %ds. Thursday TiB TiB/s Tool to edit environment block. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unrecognized option `%s'\n Unsupported address type %d
 Unsupported image format Usage: Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use GDB remote debugger instead of DDB. Use serial console. Use the %C and %C keys to select which entry is highlighted. VARNAME Verbose countdown. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Xen hypervisor, version %s You need to specify at least one command.
 Your embedding area is unusually small.  core.img won't fit in it. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [ADDR|comUNIT][,SPEED] [ARG] [CARD] [ENVVAR=VALUE] [ENVVAR] [NUMBER:]VARNAME [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] access denied address not found attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: blocklist FILE cannot compress the kernel image cannot read `%s' correctly cannot read `%s': %s card not found cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu connection refused connection timeout core.img version mismatch cp FILE LOCAL crc FILE device count exceeds limit disk `%s' not found diskboot.img size must be %u bytes don't update LED state done embedding is not possible, but this is required for cross-disk install enter: boot, `e': options, `c': cmd-line error: %s.
 false filename expected fwstart.img doesn't match the known good version. proceed at your own risk grub> hang for SECS seconds (default 3600) hex FILE invalid PBKDF2 password invalid file name `%s' invalid font range invalid parameter %s invalid skip value %lld ioctl RAID_VERSION error: %s ls PATH missing mandatory option for `%s' name no APM found no DNS servers configured no command is specified no such partition no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory one argument expected out of memory passwords don't match premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit read error at offset %llu: %s reserved RAM save ROM images in DIR [optional] set capslock mode set font family name set font range set font size set numlock mode set scrolllock mode set the program name size the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unknown argument `%s' unknown device type %s
 unknown filesystem unsupported RAID version: %d.%d unsupported gzip format unsupported serial port parity unsupported serial port speed unsupported serial port word length use COLOR for background use COLOR for label use COLOR for label background use COLOR for text will not proceed with blocklists xz file corrupted or unsupported block options you need to load the kernel first Project-Id-Version: grub 2.00+20130519
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-08-01 23:49+0200
Last-Translator: Volkan Gezer <vlkngzr@gmail.com>
Language-Team: Turkish <gnu-tr-u12a@lists.sourceforge.net>
Language: tr
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=1; plural=0;
X-Generator: Lokalize 1.5
               toplam bellek: %d KiB
   EDID sürümü: %u.%u
   Bilgi mevcut değil   VBE bilgisi:   sürüm: %d.%d  OEM yazılım gözden geçirmesi: %d.%d
   veya:   - %llu%sKiB konumunda bölümlee başlaması  - Toplam boyut %llu%sKiB  - Toplam boyut bilinmiyor  [SEÇENEK...] %.*s: ARGP_HELP_FMT parametresi pozitif olmalı %.*s: ARGP_HELP_FMT parametresi ile bir değer vermek gerekir %.*s: ARGP_HELP_FMT parametresi bilinmiyor %ds %ds kaldı %s, DOS-türevi başlangıç için yedek alan ayırmayan bir %s dosya sistemini içeriyor. Buraya GRUB yükleme, eğer değişken veri grub-setup (--skip-fs-probe bu denetimi etkisizleştirir, kendi seçiminizi yapın) tarafından üzerine yazılmışsa FILESYSTEM DESTRUCTION sonucunu verebilir. %s içeriyor gibi bir %s bölüm haritası DOS-stili başlatma için alan ayırması bilimeyen. GRUBu oraya yüklemek DOSYA SİSTEMİ BOZULMASI sonucunu ortaya çıkarabilir eğer değer verisi grub-yükle tarafından üstüne yazılmışsa (--skip-fs-probe  bu taramayı kapatır, risk kendi sorumluluğunuzdadır) %s, Hurd %s ile (kurtarma kipi) %s, Linux %s ile %s, Linux %s ile (kurtarma kipi) %s, Xen ile %s ve Linux %s %s, Xen %s ve Linux %s ile (kurtarma kipi) %s, kFreeBSD %s ile kFreeBSD ile %s, %s (kurtarma kipi) %s çekirdeği ile  %s (%s üzerinden) %s çekirdeği ile  %s (%s üzerinden, kurtarma kipi) %s: Tamam
 %s: OKUMA HATASI
 %s: Çok fazla argüman var
 %s: hata: %s: bilgi: %s: geçersiz seçenek -- %c
 %s: seçenek `%c%s' argümansız kullanılır
 %s: `--%s' seçeneği argümansız kullanılır
 %s: `%s' seçeneği bir argümanla kullanılır
 %s: `-W %s' seçeneği argümansız kullanılır
 %s: `-W %s' seçeneği belirsiz
 %s: `%s' seçeneği bir argümanla kullanılır
 %s: seçenek bir argümanla kullanılır -- %c
 %s: seçenek bir argüman gerektiriyor -- `%s'\n %s: `%c%s' seçeneği bilinmiyor
 %s: `--%s' seçeneği bilinmiyor
 %s: uyarı: (32-bit) (64-bit) (PROGRAM HATASI) Sürüm bilinmiyor!? (PROGRAM HATASI) Bu tanınan bir seçenek olmalıydı!? - Son değişiklik zamanı %d-%02d-%02d %02d:%02d:%02d %s -h HASH [-c DOSYA [-p ÖNEK]] [DOSYA1 [DOSYA2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit korunmuş arayüz destekleniyor
 16-bit korunmuş arayüz desteklenmiyor
 32-bit korunmuş arayüz destekleniyor
 32-bit korunmuş arayüz desteklenmiyor
 > ACPI kapatılması  başarısız oldu ADDR ADDR DEĞERİ [MASKE] ADDR1,MASKE1[,ADDR2,MASKE2[,...]] APM etkisizleştirildi
 APM etkinleştirildi
 ARGP_HELP_FMT: %s değeri %s değerinden küçük ya da ona eşit ASCII DOS tarzı CR/NL satır sonlarını kabul et. Etkin girdi uçbirimleri: Etkin çıktı uçbirimleri: Bir DNS sunucusu ekle Bir ağ adresi ekle. %s için gelişmiş seçenekler %s için gelişmiş seçenekler (Xen hypervisor ile) Yeniden başlatılacak dosya ismini sor. GRUB'u birden çok bölümlendirme kısmı veya bölümlendirme kısmı ve dosyası olan diske yükleme girişimi yapılıyor. Bu henüz sağlanmıyor. GRUB'u bölümlendirilmemiş bir diske veya bölüme yükleme çalışması. Bu KÖTÜ bir fikir. Kullanılabilir girdi uçbirimleri: Kullanılabilir çıktı uçbirimleri: B B/s BIOS_DUMP [INT10_DUMP] BLOK Hash listesi için temel dizin Bir işletim sistemini başlat. Tekli kipte başlat. Hata iletileriyle birlikte önyükle. Ayrıntılı olarak başlat. Bir komut listesini önyüklüyor RENK Kullanılmayan CPU görevleri işlemciyi yavaşlatmıyor
 Kullanılmayan CPU görevleri işlemciyi yavaşlatıyor
 ROM bölgesi etkinleştirilemiyor. Yapılandırılan aygıtları değiştir. Bölüm türünü değiştir Alt tuşunu denetle. Kontrol tuşunu denetle. Üst karakter tuşunu denetle. CPU özelliklerini kontrol et. Anahtar düzenleyici durumunu denetle. Ekranı temizle. Komutlar: DOSYA'yı YEREL yerel dosyası ile karşılaştır. `%s' dosyasını `%s' ile karşılaştır:
 İki dosyayı karşılaştır. Hash sağlamasını hesapla ya da kontrol et. Seri portu yapılandır Döngülere devam et. DOSYA'yı YEREL yerel dosyasına kopyala. Sha256 yüklenemedi Sha512 yüklenemedi Boş bir çevresel öbek dosyası oluştur. AYGIT AYGIT [BÖLÜM[+/-[TÜR]]] ... AYGIT bir OS aygıtı olmalı (ör /dev/sda). AYGIT_ADI DİZİN DIRECTORY [OSBundleRequired] Dosya sistemi sürücüsü için hata ayıklama aracı. Bir alt menü tanımla. Bir ağ adresi sil. Değişkenleri sil. Sürücü belirleyin. Dosya sistemi UUID'sini belirleyin. Dosya sistemi etiketini belirleyin. Dosya sistemi türünü belirleyin. Bölme haritası türünü belirleyin. Aygıt %s: ACPI'i etkisizleştir. SMP'i etkisizleştir. Tüm önyükleme çıkışlarını etkisizleştir. SMART'ı etkisizleştir/etkinleştir (0/1). Disk önbellek istatistikleri: isabet = %lu (%lu.%02lu%%), kaçan = %lu
 Disk sayısı disk listesinden önce gelmelidir.
 Metnin bir satırını görüntüle. Yasaklı DOSYA listesini gösterir. Tüm konsolların çıktısını göster. Enerji kipini göster. Bu komutun kullanımını göster ve çık. Bu yardımı göster ve çık. Şimdiki zamanı görüntüle/ayarla Yeni satır takibinden çıktı üretme. İletileri yazdırma. Hiçbir disket sürücüsünü inceleme. Bilgisayarı durdurmak için APM kullanmayın. Hiçbir şey yapma, başarılı. Hiçbir şey yapma, başarısız. Önyükleme tanısal iletilerini gösterme. Virgülle ayrılmış ana makine tablolarını yükleme. Yeniden başlatma, sadece kapat. İlk hatadan sonra durma. ORTAM_DEĞİŞKENİ ORATM_DEĞİŞKENİ [ORATM_DEĞİŞKENİ] ... ESC her an mevcut. ANLATIM ANLATIM ] İçe gömme mümkün değil. Bu kurulumsa GRUB sadece blocklist kullanarak yüklenebilir. Bununla birlite blocklist sağlıksızdır ve kullanılmamaları tavsiye edilir. Sola eğik çizgi boşlukları açıklamalarını etkinleştir. ZFS parolası girin:  Başlangıçta KDB'de gir. Normal kipe gir. Parola gir:  Kullanıcı adı gir:  Konut satırı argümanlarını ayrıştırmada sorun.
 Bir anlatım değerlendir. Çıkış başarısız GRUB'dan çık. Döngülerden çık. Normal kipten çık Değişkenleri dışa aktar. DOSYA DOSYA [PARAMETRELER ...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  DOSYA... DOSYA1 DOSYA2 DOSYA ADI KOMUTU FPSWA revizyon: %x
 BAŞLANGIÇ[K|M|G] BİTİŞ[K|M|G] Varsayılan ve son çare girdilerinin hiçbiri ile sistem başlatılamadı.
 Dosya boyutu: %s
 Dosyalar şu denkleştirmede farklı: %llu: 0x%x [%s], 0x%x [%s]
 Dosya boyutları farklı: %llu [%s], %llu [%s]
 Dosya sistemine ulaşılamadı Dosya sistemi türü %s AYGIT sürücü GPT'nin MBR hibritini doldur. Belirli bölüm mbr hibritinin bir parçası olacaktır. 3 bölüme kadar izin verilir. TÜR bir MBR türüdür. + bölümün etkin olduğunu gösterir. Sadece bir bölüm etkin olabilir. EFI modülatörünün yüklenmesini sonuçlandır. Öncelikle cihazın İPUCU'nu deneyin. Eğer İPUCU virgül ile biterse ayrıca alt bölümleri deneyin. Video problemini düzelt. Bulunan Hurd modülü: %s Bulunan NetBSD çekirdeği: %s\n Bulunan arka plân: %s\n Bulunan initrd imajı: %s\n Bulunan çekirdek modülü dizini: %s\n Bulunan linux imajı: %s\n Bulunan tema: %s\n Sıfırlanana kadar ATA güvenlik ayarlarını dondurun. Cuma GNU GRUB sürümü %s Bir grub yapılandırma dosyası oluştur DOSYA nın crc32 kontrol değeri Disk önbelleği hakkında bilgi al. ATA disk değiştirgelerini al/ayarla. GiB GiB/s HASH İPUCU Sistemi durdur, mümkünse APM kullanarak. Bilgisayarı durdurur. Bu komut tüm aygıt yazılım uygulamalarında çalışmaz. Çıkış dosyasındaki N bayt'ı işle. Merhaba Dünya IMAGE_PATH KOMUTLAR Bir birim ekle. Kurulum tamamlandı. Hata bildirilmedi. Geriye başvuru geçersiz Geçersiz karakter sınıfı adı Geçersiz karşılaştırma karakteri Geçersiz komut %s.
 \{\} içeriği geçersiz Geçersiz aygıt `%s'.
 Geçersiz disk sayımı.
 Geçersiz düzenli ifade Kullanıcı yapılandırma yönlendirmesini çağır. KiB KiB/s DNS sunucuları listesi PCI aygıtlarını listele. Tüm dosyaları listele. Mümkün olan video modlarını listele.Eğer çözünürlük belirtilmişse sadece uyan modları göster. Aygıtları ve dosyaları listele. Aygıtları ya da dosyaları listele. Aygıtları listele PATH'teki dosyaları listele. Gömülü yazılım tarafından sağlanan bellek haritasını listele. Desteklenen video modları listesi: Bir girdi uçbirimi listele veya seç. Bir çıktı uçbirimi listele veya seç. Mevcut değişkenleri listele. Yüklenmiş yazı tiplerini listele. Ortam öbek dosyasından değişkenleri listele. 64-bit XNU kalıbını yükle. BIOS dökümünü yükleyin. FreeBSD env yükle. FreeBSD çekirdek birimini yükle (ELF). FreeBSD çekirdek birimini yükle. Linux'u yükle. NTLDR veya BootMGR'yi yükle. NetBSD çekirdek birimini yükle (ELF). NetBSD çekirdek birimini yükle. XNU uzantı dizinini yükle. XNU uzantı paketini yükle. XNU uzantısı yükle. XNU kalıbını yükle. Bir klavye düzeni yükle. Çoklu önyükleme 2 çekirdeğini yükle. Çoklu önyükleme 2 birimini yükle. Çoklu önyükleme çekirdeğini yükle. Çoklu önyükleme birimini yükle. XNU için bir açılış kalıbı kullan. EFI taklitçisini yükle ve başlat. Başka bir başlangıç yükleyici ekle. İçeriği değiştirmeksizin diğer yapılandırma dosyasını yükle. Başka bir yapılandırma dosyası yükle. Arka plan resmini aktif konsol için yükle. Ana makine ACPI tablolarını ve değişkenler tarafından belirtilen tabloları yükle. initrd yükle. FreeBSD çekirdeğini yükle. NetBSD çekirdeğini yükle. OpenBSD çekirdeğini yükle. Yalnızca virgülle ayrılmış tabloları yükle. Çoklu yollarla aynı dosyayı yükle. Ortam öbek dosyasından değişkenleri yükle. Yüklü yazı tipleri: GNU Mach Yükleniyor ... Linux Yükleniyor %s... Xen %s yükleniyor ... Başlangıç ramdiski yükleniyor... FreeBSD %s çekirdeği yükleniyor... Hurd yükleniyor ... MAC doğrulaması başarısız BİRİM BIOS sürücüsü eşleştirmelerini yönet. Uzun seçeneklerdeki argümanlar zorunlu olsun olmasın kısa seçeneklerde de geçerlidir. PCI aygıtlarını işlet. Bellek türü: DDR2. Bellek türü: Bilinmiyor. Menü girdisi türü. MiB MiB/s En küçük  BASH benzeri satır düzeni desteklenir. İlk kelime için, SEKME mümkün olan komutları listeler. Herhangi bir yerde bile SEKME ile var olan aygıt veya dosyalar listelenir. %s En düşük seviye Emac benzeri ekran düzenlemesi desteklenir. Liste tamamlamaları için SEKME tuşuna basın. Açılış yapmak için CTRL+X veya F10 tuşuna basın, komut satırı için CTRL+C veya F2 tuşuna basın veya ESC tuşu ile düzenlemeyi iptal edip GRUB menüsüne dönün. Pazartesi İSİM İSİM[ÖNTANIMLI][İPUCU] NUMBER_OF_SECONDS Ağ protokolleri: Yeni MBR `%s' konumuna yazıldı
 CS5536 bulunamadı FPSWA bulunamadı Hiçbir komut belirlenmedi.
 Hiçbir aygıt belirlenmedi.
 Kullanılabilir disk önbellek istatistiği bulunmuyor
 Hiçbir sürücü tekrardan eşleştirilmedi Eşleşme yok Önceki düzenli ifade yok Komut vermek için yeterli girdi yok.
 Seçenekler: BÖLÜM KOMUTLARI KAPI KAPI DEĞERİ [MASKE] Yeni bağlamdaki yapılandırma kalıntılarını ayrıştır Aynı bağlamdaki yapılandırma kalıntılarını ayrıştır Bölüm %s: Yol: %s
 Bir DNS araması yap Hem doğrudan hem de karşıt eşleştirmeleri çalıştır. PİB PiB/s Bir melodi yürüt. Lütfen GRUB_DEFAULT için eski `%s' başlığını kullanmayın, `%s' (2.00 sürümlerinden öncesi için) veya `%s' (2.00 veya sonrası için) kullanın. Olası bağımsız değişkenler: Olası komutlar: Olası aygıtlar: Olası dosyalar: Olası bölümler: Olası şeyler: Devam etmek için herhangi bir tuşa basın... Seçilen İşletim Sistemine girmek için Enter'a, önyüklemeden önce komutları düzenlemek için `e' tuşuna veya komut satırı için `c' tuşuna basın. Seçilen İşletim Sistemine girmek için Enter'a, önyüklemeden önce komutları düzenlemek için `e' tuşuna veya komut satırı için `c' tuşuna basın. Önceki menüye dönmek için ESC'ye basın. Bellek bilgilerini yazdır. Bir öbek listesi yazdır. Blok argümanını yazdır ve çalıştır. Sürücü kimliğini ve ayarlarını yazdır. Boyutları kullanıcının okuyabileceği biçimde bastır. REGEXP ARAMA METNİ ROM imajı hazır. Sadece LENGTH baytları oku. Yeniden başlatma başarısız Bilgisayarı yeniden başlat. Parolanızı tekrar girin:  Düzenli ifade çok büyük Bir DNS sunucusunu kaldır Birimi kaldır. Bir çevresel değişken kaldır. Belirtilen aralıktaki tüm hafıza bölgelerini sil. Tüm eşleştirmeleri öntanımlı değerlere getir. Aygıt bilgisini al. Bir fonksiyonla dön. GRUB'a devam etmek için `go' komutunu çalıştır. SN BOYUT DİZİ Cumartesi Okunan değeri VARNAME değişkeni içine kaydet. Ortam öbek dosyasına değişkenleri kaydet. Aygıtları UUID göre ara. Eğer DEĞİŞKEN belirli ise bulunan ilk aygıt değişken olarak ayarlanır. Dosyaya göre aygıtlar ara. Dosya sistemi UUID'sine göre aygıtlar ara. Dosya sistemi etiketine göre aygıtlar ara. Aygıtları dosya göre ara. Eğer DEĞİŞKEN belirli ise bulunan ilk aygıt değişken olarak ayarlanır. Aygıtları etikete göre ara. Eğer DEĞİŞKEN belirli ise bulunan ilk aygıt değişken olarak ayarlanır. Gelişmiş Güç Yönetimi'ni Ayarla
(1=düşük, ..., 254=yüksek, 255=kapalı). Otomatik Akustik Yönetimini Ayarla
(0=kapalı, 128=sessiz, ..., 254=hızlı). RSDP, XSDT ve RSDT'nin OEMID'sini ayarla. RSDP, XSDT ve RSDT'nin OEMTABLE kimliğini ayarla. RSDP, XSDT ve RSDT'nin OEMTABLE düzeltmesini ayarla. Döndürülen değere bir değişken ayarlayın. İlk aygıt bulunduğunda bir değişken ayarla. Bir çevresel değişken ayarla. RSDP, XSDT ve RSDT'nin oluşturucu alanını ayarla. RSDP, XSDT ve RSDT'nin oluşturucu düzeltmesini ayarla. Hata ayıklama ortamı değişkeni ayarla. Sürücüyü uyku kipine ayarla. Sürücüyü hazırda beklet durumuna ayarla. Pozisyonal parametreleri belirle. Kök aygıtı ayarla. Bekleme zaman aşımı ayarla
(0=kapalı, 1=5sn, 2=10sn, ..., 240=2dk, 241=30dk, ...). TERMİNAL'in terminfo tipini TÜR olarak ayarla.
 Dizisel bağlantı noktası adresini ayarla. Dizisel bağlantı noktası eşliğini ayarla. Dizisel bağlantı noktası hızını ayarla. Seri yuva durdurma bitlerini ayarla. Dizisel bağlantı noktası kelime uzunluğunu ayarla. Seri birimini ayarla. Kalıpları DEVICE'den önyükleme yapmak için yapılandır.

Normal olarak bu programı çalıştırmanız önerilmez. Bunu yerine grub-install Kullanın. Kullanıcı parolası ayarla (PBKDF2).  Kullanıcı parolasını ayarla (düz metin). Önerilmez ve güvensizdir. Değişkeni kullanıcı girdisi ile ayarla. Değişkenleri ayarla. Konumsal parametreler kaydır. ACPI bilgisini göster. APM bilgisini göster. Bir yardım iletisi göster. Daha ayrıntılı bilgi ile uzun bir liste göster. Yüklenen birimleri göster. Bellek içeriği göster. Bir dosya veya belleğin ham içeriğini göster. Bir dosyanın içeriğini göster. Güncel eşleştirmeleri göster. Bu iletiyi göster. Kapatma başarısız çıktı dosyasından N byte atla Dosyanın başlangıcındaki uzak bayta git. Dosya adı belirt. Kullanılacak hash'i belirtin. Yüklemek için bir ya da daha fazla yazı tipi dosyası belirtin. Hız: %s 
 GDB stub'ı belirtilen portta başlat Başarılı Pazar HEDEF Hedef biçimi belirtilmemiş (-O seçeneğini kullanın). Konsol sadece ASCII olarak tanımlıdır. Konsol mantıksal olarak UTF-8 olarak emredildi. Konsol görsel olarak UTF-8 olarak emredildi. USB desteğini sına. REGEXP'in METNE uygunluğunu test et. WxH kipinde video alt sistemini test et. Video alt sistemini sına. Dosyalar aynı.
 İşaretli girdi %ds içinde otomatik olarak çalıştırılacak. Perşembe TİB TiB/s Ortam bloğu düzenleme aracı. Diziyi kullanılan ayarları kullanarak çevirir. Daha fazla bilgi için `''%s --help' veya `%s --usage' komutlarını deneyin.
 Salı KULLANICI PAROLASI KULLANICI PBKDF2_ŞİFRESİ KULLANICIADI[,KULLANICIADI] UTF-8 Sıkıştırılmamış veri. Doğrulama yapılmadan önce dosyayı çıkart. %d bilinmeyen adres türü
 Bilinmeyen komut `%s'.
 Bilinmeyen sistem hatası Bilinmeyen video modu  Bilinmeyen sanal aygıt türü: %s
 EFI emülatörünü kaldır. `%s' tanımlanmamış seçenek\n %d desteklenmeyen adres türü
 Desteklenmeyen görüntü formatı Kullanım: Kullanım: %s [SEÇENEK] MENÜ_GİRDİSİ\n Kullanım: %s [SEÇENEK]\n DDB yerine GDB uzak hata ayıklayıcısını kullan. Sıralı konsol kullan. Vurgulanacak girdiyi seçmek için %C ve %C tuşlarını kullanın. VARNAME Geri sayımı ayrıntıla. Sürüm %u.%u
32-bit CS = 0x%x, uzunluk = 0x%x, başlangıç = 0x%x
16-bit CS = 0x%x, uzunluk = 0x%x
DS = 0x%x, uzunluk = 0x%x
 UYARI: yazı tipi özellik parametresi desteklenmiyor : %x
 GENİŞLİK X YÜKSEKLİK Belirlenen saniye kadar bekle. Her çıktı satırından sonra tuşa basılmasını bekle. Uyarı: Uyarı: geçersiz '%s' arkaplan rengi
 Uyarı: geçersiz '%s' ön plan rengi
 Uyarı: `%s' içerisinde söz dizimi hatası (eksik / işareti)
 Çarşamba Windows NT/2000/XP (yükleyici) Windows Vista/7 (yükleyici) Xen hypervisor, sürüm %s En az bir komut belirlemeniz gerekir.
 Yerleştirilmiş alan anormal küçüklükte. core.img sığmayacaktır. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--md5] ŞİFRE [DOSYA] [--no-mem-option] [--type=TÜR] DOSYA [PARAMETRELER ...] [-c DOSYA [-p ÖNEK]] [DOSYA1 [DOSYA2 ...]] [-e|-n] STRING [-f DOSYA] [-f DOSYA] değişken_adı [...] [-f|-l|-u|-s|-n] [--ipucu İPUCU[--ipucu İPUCU] ...] İSİM [-h|-p|-r] [DOSYA] [-l|-h|-a] [DOSYA ...] [-m (stretch|normal)] DOSYA [ADDR|comAYGIT][,HIZ] [ARG] [KART] [ORTAM_DEĞİŞKENİ=DEĞER] [ENVVAR] [NUMARA:]DEĞİŞKEN_ADI [SEÇENEKLER...] [SEÇENEKLER] [SEÇENEKLER] DİSK [SEÇENEKLER] DOSYA_VEYA_AYGIT [SEÇENEKLER] YAZITİPİ_DOSYALARI [SEÇENEK]... [MODÜLLER] [SEÇENEK]... [YOL|AYGIT] [YOL] [ÖRÜNTÜ ...] [KULLANICILİSTESİ] [DEĞER]... [[-a|-u|-v] [-g WxH] TERMİNAL [TÜR]] [[yıl-]ay-gün] [saat:dakika[:saniye]] erişim engellendi adres bulunamadı GRUB'daki çekirdek kalıp olan `%s' okunmaya çalışılıyor GRUB'daki çekirdek kalıp olan `%s' tekrar okunmaya çalışılıyor kullanılabilir RAM kullanılabilir biçimler: blocklist DOSYA çekirdek görüntüsü sıkıştırılamaz `%s' düzgün biçimde okunamıyor `%s' okunamadı: %s kart bulunamadı cmp DOSYA KONUMU comAYGIT[,HIZ] %llu. ofsette karşılaştırma hatası bağlantı reddedildi bağlantı zaman aşımı core.img sürüm uyuşmazlığı cp DOSYA LOKAL crc DOSYA aygıt sayısı sınırı aşıyor disk `%s' bulunamadı diskboot.img boyutu %u bayt olmalı LED durumunu güncelleme bitti gömme mümkün değil, fakat bu çapraz-disk yüklemesi için gerekli enter: önyükle, `e': seçenekler, `c': komut-satırı hata: %s.
 yanlış dosya adı gerekli fwstart.img bilinen iyi sürümle eşleşmiyor. kendi riskinizle devam edin grub> SANİYE saniye bekler (öntanımlı 3600) hex DOSYA PBKDF2 parolası geçersiz `%s' geçersiz dosya adı geçersiz yazı tipi aralığı %s geçersiz parametre geçersiz atlama değeri %lld ioctl RAID_VERSION hatası: %s ls PATH `%s' için zorunlu seçenek eksik isim hiçbir APM bulunamadı DNS sunucusu yapılandırılmadı hiçbir komut belirlenmedi böyle bir bölüm bulunmamaktadır uçbirim belirlenmedi bu çekirdek kalıpta sonlandırıcı yok non-sector-aligned verisi ana dosyada bulundu bir dizin değil bir argüman bekleniyor bellek yetersiz parolalar eşleşmiyor erken dosya sonu %s CapsLock tuşuna bas Insert tuşuna bas NumLock tuşuna bas ScrollLock tuşuna bas sol alt'a bas sol ctrl'ye bas sol shift'e bas sağ alt'a bas sağ ctrl'ye bas sağ shift'e bas program sürümünü yazdır sürüm bilgisini yazdır ve çık %llu ofsetinde okuma hatası: %s ayrılmış RAM ROM kalıplarını DİZİNe kaydet [isteğe bağlı] capslock durumunu ayarla yazı tipi ailesi adını ayarla yazı tipi aralığını ayarla yazı tipi boyutunu ayarla numlock durumunu ayarla scrollock durumunu ayarla program adını ayarla boyut device.map içindeki `%s' sürücü adı geçersiz. Bunun yerine %s kullanılıyor. Lütfen şu biçimi kullanın: [hfc]d[0-9]* (örn. `hd0' veya `cd') çekirdek dosyanın ilk bölümü bölüm-hizalı değil kurulum aygıtı kaldırılabilir. Bu seçenek sadece EFI üzerinde kullanılabilir. çekirdek dosyasının bölümleri çok fazla parçalanmış `%s'nin boyutu %u değil `%s' boyutu çok büyük `%s' boyutu çok küçük iki argüman gerekli tür dosya sistemini %s de kimliklendirmek imkansızdır; güvenlik denetimi yürütülemez bilinmeyen argüman '%s' %s bilinmeyen aygıt türü
 bilinmeyen dosya sistemi desteklenmeyen RAID sürümü: %d.%d desteklenmeyen gzip biçimi desteklenmeyen seri port benzerliği desteklenmeyen seri port hızı desteklenmeyen seri port sözcük uzunluğu arkaplan için RENK kullan etiket için RENK kullan arkaplan etiketi için RENK kullan metin için RENK kullan engelli listeleri ile devam etmeyecek xz dosyası bozuk veya desteklenmeyen blok seçenekleri önce kerneli yüklemelisiniz                                                                                                                                                                                                                                                                                                                                                                                               boot/grub/locale/uk.mo                                                                              0000600 0001750 0001750 00000471015 13417732100 0013651 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                            |'    N      Pi  #   Qi      ui     i     i     i  $   i     j  6   j     Pj     Wj  	   cj     mj     zj     j     j     j     j  .   j  .   k  %   Fk     lk     pk    k    l    m     n  8   n  '   n  7   o  F   Do  v   o  +   p     .p      ?p     `p  !   rp     p  ,   p     p     p  $   q     0q  *   Lq     wq     q     q     q     q  
   q  	   q     q     r  ,   r  ,   Fr  ,   sr  '   r  -   r      r  (   s  (   @s  )   is     s     s     s     s     s  "   s  4   t     Jt     Rt  7   _t     t     t  1   t     t     u  %   
u  '   0u  %   Xu  '   ~u     u     u     u     u     u     u     u     v     v     8v     Jv     Xv     hv     uv  3   v     v  $   v     v     v     w     !w     2w     Iw     ^w  -   vw     w  !   w     w     w     x  #   )x     Mx  `   x  Z   6y     y     y     y     y     y     y     y     y     z  0   )z  3   Zz     z     z     z     z     z     {     {     1{     G{     U{     l{     {{     {     {  %   {     {     {     {     |     |     6|     L|     [|     n|     |  *   |  3   |  1   |  1   (}  2   Z}     }      }     }  1   }     ~  #   <~     `~  "   {~  8   ~     ~     ~  	     #        4     R     e                 )                  2  "   P  P   s     Ā     ـ  H     &   7     ^     v  !   }  ,        ́     ؁     ܁  	     !     *   %     P  '   h                    т  $                   2     M     i       
     
          1   ˃                    1  3   M  >     $                       1     L     l  +             ȅ  o     #   V     z       $        Ն       '     9   3     m       z             &  8   :     s  
                       ܈     x  +             ى            "        :     K  (   \       #             ͊     ݊            "     0   9     j     o     ~  7        ŋ     ͋     ً                       0        J     ^     p       2     %   Ќ            *     6   E  +   |          ƍ     ٍ  !     d   ̎  e   1  d     i     o   f  H   ֐          2     H     Y     l                 #   ̑               &  1   8  )   j                      /                     5   4     j       K     &             4     I     f     j  D   p            '     P        8     W  	   c     m     p               4  '   Ŗ       +        (     9  )   U                    ϗ                 $   '     L     ^  "   y                 (                    "     +     -   A     o                      O   ʙ          0     H     _     m  %          )   ƚ  !     "        5     Q  +   h                    ʛ  !   ܛ               3     ?      V     w                    ל            4        L     k     }               ˝                  !   ;     ]  4   w  M     2        -     G  *   e  8        ɟ     ֟                    4  3   A  $   u  +        Ơ     ۠                    &      B     c                 D            ȣ     ϣ     ף  7     ;   .     j       !        ˤ       s        u                    Υ                    &     *     0     ٦                         ̧            '     
   C     N     ]     s     x                      H   Ѩ  L        g     z            %        ۩       #        2     O     l     u                 ̪       "     (        F     b  %   o       2               #     *   (     S     U     h  #   m            	     	     "     ;   ߬  #     <   ?     |            .     	          `        b  !   w  )        î     Ǯ     ͮ     ծ  q        T     h                         ί            "   !     D     \     v                    ϰ       #        !     >  g   Z     ±     G     a  -   ~       !          "     '     Q   >               Ƴ     ڳ                    8     U     r               ´      д                     :     U     i     z  -        ȵ       "     b     )   |               Զ  ,             5  	   :  "   D  %   g                 
          &   ·  )          5   &  ^   \       $   ո  %           ^   ӹ  _   2  }          )   ǻ  '     >     D   X  !     '     -     #        9  )   Y       )        ʽ  )     ,        >     ^     w            E     $     A   )  )   k               ο                )  q   >       :             &  `   5                                 0   1     b            )     &                  4     G  )   c       %     %     ,     '     :   >     y  -     0          .        6     H  '   ]  $     "                    *        /     7  )   >  o   h            6                    0         #  !   D  "   f  #                         !        4  
   J     U  <   o            %     >        A     J     N     T     t       d     *     (   0  ,   Y            0     6              (     6     K     _     e  0          !               $        9     R     i            $     "     $        "     ;     P      d                                             .  '   K     s       $     +     "           )   '     Q     c                 '                  .  <   B             %                         m   ,                           +     3   H  1   |       '     -          '     '   C  .   k  	                                 -     I     d                 *     ?        $  B   7  p   z       /   v            .     O      )   P     z       	          5                  '     =     X  :   r       1                  %     +     >     E     K     Z     c                      	                             #     6     P     f                 
     
     	          !     )             "     4     M     m  n     F     N   @       "               -     -     $   3  #   X  0   |  6                    (     1   <  )   n                           !   
     ,     @      \     }  %          &               0   .      _                 7     .        5  4   M  #                                 1     F  %   f                                          ,   :     g     v                           #              :  B   T                                   4  &   R     y                      &             $     ?     O  ;   c  V     +     "   "     E  &   _  !          r        2     7  /   U  H     F     w     N          (             9  I   E  )     $     ,     '        3  %   L     r     x            $     '     *        *     D     S  J   k                 -     +   /     [  $   a       "     +               -     J   =            %     "     9        F      ^  "                                       ,     ?     W     q            %                       +  %   H     n                      [        $  !   8     Z     s                                             !  /   ;  7   k  4     /             %  -   =     k  @          3             )     ;     X     h     ~  1                               	   6  	   @     J       1        L  0   j            !          "        (     4     @     V     o                                                       )  &   ?     f                      '     &        6  L   C  9          0          !   -     O     n                                        	  #     #   ;  $   _            &          !                  &     +     :  	   P  7   Z       D     ]     %   O  ,   u  [     ;     w   :  7     K     #   6 /   Z             &    U    @   ^ Q           
      +   5    a R   ~ L    .       M    d F   i                             8     K    l         2    !    #       /    C    [    l                         (   2 #   [                 )           %    = '   X '    '        0        	    ;	 -   Y	 8   	 !   	 '   	    

    "
 !   9
     [
 &   |
    
    
 .   
    
 !    B   = E    B      	 8    ?   U /    9        K       g j    	               ( 7   B %   z 0    5        E    F   d 7               W      9    S    !   N g   p        i 8   ]     2        3        =   6 #   t     6    1    T    .   i     "    5    n       r     7        i    X   \  i     L   ! j   l! >   ! M   " N   d" D   " 1   " 1   *#    \#    z#    # A   # X   # 	   9$    C$ I   W$    $    $ G   $ 3   %    L% S   O% X   % S   % X   P&    &    & D   & -   ' L   0'    }' *   '    ' ;   '    (    +(    A(    U(    m( I   (    ( K   ( >   ) @   ^)    )    ) +   ) /   * /   1* Q   a* B   * V   * W   M+ 4   + @   + H   ,   d,    -    Y. @   // B   p/    /    /    /    /    / 1   / 6   &0 `   ]0 \   0 D   1 ;   `1 \   1 ]   1 f   W2    2 2   2 J   3 &   \3 :   3 D   3    4 
   4 #   4 d   74 _   4 $   4 1   !5 :   S5 7   5 $   5 "   5 #   6 $   26 /   W6 r   6    6    7 i   8 j   }8 ;   8 ]   $9 <   9    9 <   C: V   : L   : i   $;    ;     < ?   7<    w< ?   < 2   < %   < -    = V   N= /   = ?   = J   > ;   `> X   > 7   > E   -?    s? 1   @ 1   N@    @ U   =A !   A    A 0   A X   A    PB    lB !   {B    B ]   B Y   C =   fC 8   C '   C "   D .   (D 3   WD 8   D    D "   D 8   E >   ?E :   ~E 6   E    E    F .   !F [   PF    F    F k   F 7   EG T   }G    G `   SH 6   H K   H )   7I 6   aI K   I A   I ^   &J U   J O   J    +K T   L 1   aL (   L X   L L   M L   bM l   M    N Z   N P   *O   {O !   P I   P    P *   Q 
   Q    Q )   Q 3   Q }   R O   S    S 3   |T &   T =   T .   U .   DU    sU 1   U n   U 1   2V <   dV 3   V    V    V 2   W &   7W b   ^W k   W    -X    6X     VX X   wX    X    X $   X ,   Y    BY    RY    _Y L   lY !   Y    Y    Y    Z `   #Z G   Z $   Z    Z q   [ W   [ L   [ 2   %\ )   X\   \ C   ^    b^    [_    U`    Na 6  Lb    c 2   gd "   d    d    d &   d &    e    Ge (   ee =   e '   e '   e    f n   <f c   f    g    !g    $g &   >g ^   eg    g ,   g !   
h    ,h ,   h 5   h y   i :   i B   i I   	j O   Sj    j 	   j    j    Uk    \k V   mk    k L   ^l    l 	   l    l =   l (   m \  :m K  n Q   o    5p ]   Qp    p 7   p R   q 8   Yq ;   q 8   q (   r &   0r 0   Wr 6   r N   r <   s 5   Ks ^   s    s    s    s G   t    Vt 	   ]t    gt K   tt h   t o   )u ,   u    u 3   u 5   v 4   Hv    }v 6   rw A   w 4   w 1    x H   Rx b   x A   x h   @y h   y j   z >   }z 5   z _   z 8   R{ %   { $   { 4   { ;   | 5   G| *   }|    | ,   | :   | 4   .} &   c} 3   } ?   } ?   } 0   >~ &   o~    ~ 6    &   R ?   y ,    0    *    .   B H   q H    L    P   P {        i    D   ( 1   m `    ~         [    (    '   # (   K $   t     E   : V    9   ׆ $    $   6 $   [ "    g    /    ,   ;     h     @       ͈ 5  T         9    u   ތ    T N    R   G N    ,    F      ] *   r X    "        +   7 1   c (           ܑ 	        )   +   8 9   d         D   Ȗ )    K   7 _             K     
   l ,   w     
       ǘ 9       !    ٙ $    ,            W    $   w 5    W   қ J   * ?   u        ˜ 8    R   # O   v    Ɲ <       ! *       ў 5    T   # Y   x    ҟ -    4    N   I     1       ͠ <   ֠     &       C    ^ _   q    ѡ h   h    Ѣ    q 1       ã m   ԣ    B     P    q    H I   h I        	           !    @    4 )   R    | -    '   ɧ '    1    :   K <    d   è -   ( 9   V "            ҩ             - O   N Q    P      A d  _ 3   ĭ 6    e   / +    E    B    R   J Y        .    8   ɰ .    *   1     \ H   } B   Ʊ H   	 B   R G    A   ݲ K    2   k i    3    !   < 4   ^ @    !   Դ     3    `   I #    ?   ε N       ] Q   & >   x )    :    q    T            W    L   `         
   ׹         Z    R   Y 2       ߺ    w 0   ( H   Y P          ƾ     4  8   m ]    m   { _    i   I 3    Q    M   9 M    Q    q   ' 7    T    H   & a   o e    T   7 9    G    P    3   _     S   .     ]    @   | D    F    Z   I M    >      1 C   6    z q    5   ~     J   o J    (    (   . 1   W =    \    c   $ F    ,    N    T   K '    9    /    8   2 =   k $    U    U   $ \   z W    }   / P    c    Y   b     t    %   O 6   u ]    Q   
 I   \     J    2   
 o   = 
        v       < 7   " 8  Z        ,    /    F m   O W    o    H    L    *    F   F @    _    J   . 4   y     -    o       a !   { r    R       c    p 	   w S    4    7   
    B W    \   i m    M   4 O    `    o   3     #    (    +       - U   3 }    A    D   I P         Z     +   [ (    5    #    @   
 ;   K 0    /    .    0    &   H H   o ,    C    C   ) C   m :    +    4    2   M 7    K    J    >   O E    G    7       T Q   n .    S    E   C 1    V    s    H    X    W   ( `    3        :   / #   j 2    3    >       4 ^    :   E >    :    8    @   3 v   t M       9 U   T v       ! H   ; P    q       G -   T *    F    B    F   7 B   ~ E    A    ,   I )   v     K    V    "   H    k     L   ?   E            A     {     =   | *            -    S   4     *            )    j   , '    [    8    8   T     .            4    #   $ M   H !    &                    5   7 .   m =    $    E    $   E 1   j     
        '                1   " O   T (    %    .    1   "	 .   T	    	    <
    
 !   b m        "    f   " _    C    U   - J    [        *     K #   l @    K    n    1    1        /    5   3 7   i 8    7    U    6   h O    /    T    >   t B    h    8   _ ?    /    3    p   < ]    4    t   @ L    F    9   I /    >    @    -   3 B   a J    ;    ;   + <   g ?    d    "   I    l \   y U    (   , )   U :    <    )    I   ! =   k J    4    W   )     8   L 7    I    ;    )   C .   m @    P    K   . '   z     8    !    S   
  +   ^  R          '     \   %!    !    a" G   " E   *# E   p# I   # B    $    C$    $ [   $ g   Y%    %    W&   &    ' *   ( T   ( 7   )    <) g   Q) F   ) I    * U   J* K   * 3   * X    +    y+ *   + %   + -   + <   + _   ;, }   , F   - <   `- @   -    - :   . Z   . 1   / `   O/ 8   /    / I   /    90 Y   F0 U   0 $   0 3   1 q   O1 o   1 /   12 E   a2 V   2 o   2 r   n3 *   3 Y   4 ]   f4 '   4 .   4 @   5 8   \5 4   5 2   5 4   5 2   26 /   e6 +   6 ;   6 6   6 L   47 (   7 '   7 &   7 %   7 >   8 ;   ^8 =   8 C   8    9 "   (9    K9 +   @: P   l: /   : (   : 
   ; E   !;    g; .   ; 0   ; /   ; '   < ,   9< 0   f< S   < Z   < X   F= S   = :   = "   .> Q   Q> 9   >    > 5   b?    ? "   4@ &   W@ E   ~@ *   @ (   @ M   A g   fA    A )   A '   B "   ;B .   ^B    B    B   B    D ]   D L   E g   OE )   E &   E F   F 4   OF G   F    F    F 0   F 3   )G *   ]G (   G )   G ,   G    H !   !H "   CH #   fH #   H $   H %   H >   H R   8I Q   I ;   I :   J 8   TJ 5   J P   J I   K *   ^K    K    4L 5   L G   L <   2M w   oM g   M 4   ON @   N %   N (   N 7   O 5   LO ?   O 2   O .   O m   $P m   P ^    Q 4   _Q '   Q j   Q *   'R H   RR *   R 0   R    R    S )   S    =S l   PS /   S    S    T U   xU ;   U    
V d   V     W e   W    ZX 4   Y V   @Y ,   Y 4   Y 0   Y 9   *Z    dZ |    [    }[ :   \ S   T\ X   \ z   ] i   |]    ]    ^ _   d_ :   _    _    ` 5   ` )   ` 0   ` +   -a '   Ya .   a .   a 7   a `   b :   xb *   b x   b =   Wc B   c #   c >   c    ;d X   Rd 4   d 5   d 0   e 3   Ge Q   {e u   e    Cf a   f /   4g 3   dg :   g 5   g u   	h V   h 6   h A   i r   Oi d   i m   'j e   j t   j B   pk D   k |   k v   ul M   l W   :m B   m 2   m E   n \   Nn F   n H   n    ;o q   Uo 9   o @   p    Bp    p    yq                                O            u  A        /   Z    *  +  +                 9    ]      P       !       	  E         m                 D    c     h         `      L  S     f      v             =            l      T        @          \                       k                    e            "                U        r  7       V  :      {    %        U           ?      N             G         {                             @  ^         I        #                                 &          `                         Y   b    u      '  B  )          S          Y          N      Y      j  @  D        0    z          T                    C        P    #                                        J    s      z          Q               H   }        c           e   !                             W     !   \    o         k       9      \  J  E              b            m       -    f                  	   w      5  X               C          4         W    >      Y           A          g         I          S  D                %               w      R        F       0      y    Q                 Z  g    a                  0     ;        )  X  W            X  J                         1     &       4  g    R                   _                    m            X         x        G  z       <      H  #                    R  7      k                      '           ^  /      ;          o  "  #                                                       3         q            Z      @      2                     j           K                  d               <                  1  `                         %         |  >  x             y  R        {              >           I             Q          r   "    .  v  h      3           q   y   :   r        ;            8                      	    P        M  M      z          f    e  p  y       <      2                  5        &                .     d  +  *         ~  4                 n  6    ,  D   W                       s                {            9     [        Q             J        p      0                b                W  u   ~                                  i     M  A    )    B                         :  -                         O          ,              L      z  w                  F                   a    r        M     |     [         >  F      	                       x  `         6   .  +           ,          U  
                  6      w       &  ?    J                         '    /        5              9  :  {       N                 /      6  ^            S    n                                       m    s  ~                                  I  [               |  V                       -           *  \    b     $  N    L  3     R            U                             o           K    _     B            3  P  L                                       ^  j  n                         K         F             
       |                           8        T          
  #  ,   (  =      i                            f              l  <  7  T   ]  x  d                        8  k                    t                           K                       2        +  q      K       '                   t  [    l  ;             X  C   G    F    %  -            *      _    j      Z  v            7    Q   B                     l   }  
  3      $                 C      e  @        P     h  E        a         h  
  "     V       N  ]                    2                      &  (   i                     :  d                 t        g    u           b                   x                             v      t                '  	  V        5    ?      f        U      g  c         1    s   )                          i                             H    =                          n      a    $                                6  j  (            !      \   .  ?                                                             y                             E     G          1                              $         k  m          -    E      [        I  .              |    }    ,    a   A    =                    `              ?             B                8            o  }                        Z                  2       i   ]           O          q                   $              e                          =      ;      w      0                    V    L      4                      ~  H  (            p  /  }         "     1  (                           l       )             >                       Y                 d              4    C  O               q  <            O                              c        h  G     9                                               o                                                                 D      u         t         5                   c               %  H      p                                             7    _           T    A                ~      v  s           r                         !  ^    p  _      ]  S      *  n    8       M                    total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s doesn't exist. Please specify --target or --directory %s doesn't look like an EFI partition.
 %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: not found %s: option '%c%s' doesn't allow an argument
 %s: option '%s' is ambiguous; possibilities: %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- --ppc PATH|--x86 FILE -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Bless DIR of HFS or HFS+ partition for PPC macs. Bless FILE of HFS or HFS+ partition for intel macs. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't create file: %s Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check if CPU supports Physical Address Extension. Check if FILE can be used as x86 multiboot kernel Check if FILE can be used as x86 multiboot2 kernel Check if FILE is ARM EFI file Check if FILE is BIOS bootsector Check if FILE is IA64 EFI file Check if FILE is hiberfil.sys in hibernated state Check if FILE is i386 EFI file Check if FILE is of specified type. Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find a free BootNNNN slot Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Default server is ${net_default_server} Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not apply any reed-solomon codes when embedding core.img. This option is only available on x86 BIOS targets. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enable/disable RTS/CTS. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Evaluate arguments as GRUB commands Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FONTS FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File size: %s
 File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Generating grub configuration file ... Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s Graft point syntax (E.g. /boot/grub/grub.cfg=./grub.cfg) is accepted HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS INSTALL_DEVICE must be system device filename.
%s copies GRUB images into %s.  On some platforms, it may also install GRUB into the boot sector. If FILENAME is `-', the default value %s is used.

There is no `delete' command; if you want to delete the whole environment
block, use `rm %s'. Import ZFS wrapping key stored in FILE. Incorrect VDEV Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s LOCALES Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List coreboot tables. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load DTB file. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load Truecrypt ISO. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load module. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... M MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MENU_ENTRY is a number, a menu item title or a menu item identifier. Please note that menu items in
submenus or sub-submenus require specifying the submenu components and then the
menu item component. The titles should be separated using the greater-than
character (>) with no extra spaces. Depending on your shell some characters including > may need escaping. More information about this is available
in the GRUB Manual in the section about the 'default' command.  MODULE MODULES Mac-style bless on HFS or HFS+ Mail xorriso support requests to <bug-xorriso@gnu.org>. Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NOT RUNNING:  NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Netboot directory for %s created. Configure your DHCP server to point to %s
 Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OPTIONS FILE OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Option -- switches to native xorriso command mode. Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] PUBKEY_ID Paletted  Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot into firmware setup menu. Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Render Apple .disk_label. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING STRING ... Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Script `%s' contains no commands and will do nothing
 Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set bit at BYTE:BIT in CMOS. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting GRUB_TIMEOUT to a non-zero value when GRUB_HIDDEN_TIMEOUT is set is no longer supported. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show CBMEM console content. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show the contents of a file. Show the current mappings. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Skip signature-checking of the environment file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Switch to native disk drivers. If no modules are specified default set (pata,ahci,usbms,ohci,uhci,ehci) is used Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 T TARGET THEMES Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This VDEV is a RAIDZ%llu
 This VDEV is a mirror This entry can be booted by any user. This requires setting GRUB_DEFAULT=saved in %s/default/grub.\n Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Transform syslinux config into GRUB one. Translate SET1 characters to SET2 in STRING. Translate to lower case. Translate to upper case. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown platform `%s-%s' Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized compression `%s' Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME VDEV element number %d isn't correct
 VDEV element number %d:
 VDEV with %d children
 Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. You've found a bug Your embedding area is unusually small.  core.img won't fit in it. Your xorriso doesn't support `--grub2-boot-info'. Some features are disabled. Please use xorriso 1.2.9 or later. Your xorriso doesn't support `--grub2-boot-info'. Your core image is too big. Boot as disk is disabled. Please use xorriso 1.2.9 or later. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [-s|--skip-sig] FILE SIGNATURE_FILE [PUBKEY_FILE] [-s|--skip-sig] PUBKEY_FILE [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [DIR] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTIONS] [SET1] [SET2] [STRING] [OPTION] SOURCE... [OPTION] [INSTALL_DEVICE] [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `%s' is not a local disk `cryptomount' command fails: %s `loopback' command fails: %s `nvsetenv' failed. 
You will have to set `boot-device' variable manually.  At the IEEE1275 prompt, type:
  %s
 `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format bless for ppc-based macs bless for x86-based macs blocklist FILE blocklists are incomplete blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't compress `%s' to `%s' can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s can't set %dx%d font size: Freetype error %d: %s cannot compress the kernel image cannot copy `%s' to `%s': %s cannot delete `%s': %s cannot find EFI directory cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot find locale `%s' cannot get translator command line for path `%s': %s cannot make temporary directory: %s cannot make temporary file: %s cannot open OS file `%s': %s cannot open `%s': %s cannot open directory `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu compress GRUB files [optional] connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. disk read fails at offset %lld, length %lld diskboot.img size must be %u bytes do not install bootsector do not probe for filesystems in DEVICE domain name component is too long don't update LED state don't update the `boot-device'/`Boot*' NVRAM variables. This option is only available on EFI and IEEE1275 targets. done embed FILE as an early config embed FILE as public key for signature checking embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enable ARCS (big-endian mips machines, mostly SGI) boot. Disables HFS+, APM, sparc64 and boot as disk image for i386-pc enable sparc boot. Disables HFS+, APM, ARCS and boot as disk image for i386-pc enabling %s support ... enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to copy Grub to the PReP partition failed to get canonical path of `%s' failed to read the sectors of the core image failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification initrd already loaded install FONTS [default=%s] install GRUB for TARGET platform [default=%s] install GRUB images under the directory DIR/%s instead of the %s directory install THEMES [default=%s] install device isn't specified install even if problems are detected install only LOCALES [default=all] install only MODULES and their dependencies [default=all] invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid argument invalid block size invalid color specification `%s' invalid device tree invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid modinfo file `%s' invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' invalid zImage ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no EFI routines are available for your platform no EFI routines are available when running in BIOS mode no IEEE1275 routines are available for your platform no SGI routines are available for your platform no `/' in canonical filename no command is specified no compression is available for your platform no decryption key available no hints available for your platform. Expect reduced performance no network card found no random number generator is available for your OS no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected only ipv4 only ipv6 other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found pre-load specified modules MODULES prefer ipv4 prefer ipv6 premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory as it will be seen on runtime [default=/]. root directory of TFTP server root directory of the syslinux disk [default=/]. route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the ID of bootloader. This option is only available on EFI and Macs. the PReP partition is not empty. If you are sure you want to use it, run dd to clear it: `%s' the argument `%s' requires an integer the chosen partition is not a PReP partition the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive %s is defined multiple times in the device map %s the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected EFI error unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported platform %s
 unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for label use COLOR for label background use COLOR for text use DIR as the EFI System Partition root. use DIR for PPC MAC install. use FILE as font (PF2). use FILE as font for label use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] use themes under DIR [default=%s] use translations under DIR [default=%s] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists write output to FILE [default=stdout]. wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub 2.02-pre1
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-12-20 17:49+0200
Last-Translator: Yuri Chornoivan <yurchor@ukr.net>
Language-Team: Ukrainian <translation-team-uk@lists.sourceforge.net>
Language: uk
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Generator: Lokalize 1.5
Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;
               загалом пам’яті: %d КіБ
     Пріоритетний режим недоступний
     Пріоритетний режим: %ux%u
   Некоректна контрольна сума EDID   Версія EDID: %u.%u
   Не вдалося ініціалізувати відеоадаптер   Дані недоступні   Дані VBE:   версія: %d.%d  мод. програмного забезпечення OEM: %d.%d
   або   (найлівіший)  (середній)  (найправіший)  - Розділ починається з %llu%s КіБ  - Розмір сектора: %u Б  - Загальний розмір %llu%s КіБ  - Загальний розмір невідомий  [ПАРАМЕТР...] %.*s: параметр ARGP_HELP_FMT має бути додатним %.*s: параметр ARGP_HELP_FMT потребує значення %.*s: невідомий параметр ARGP_HELP_FMT %dс Залишилося %d с. %s містить файлову систему %s. Невідомо, чи підтримується цією файловою системою надання місця для завантажувача у стилі DOS. Встановлення GRUB у цю файлову систему може призвести до РУЙНУВАННЯ ФАЙЛОВОЇ СИСТЕМИ, якщо важливі дані цієї системи буде перезаписано grub-setup (--skip-fs-probe вимикає цю перевірку, ви можете скористатися цим параметром, якщо вважаєте, що пошкодження є неможливими). %s містить карту розділів %s і LDM. Невідомо, чи є безпечною таке поєднання. Встановлення GRUB на цю карту розділів може призвести до РУЙНУВАННЯ ФАЙЛОВОЇ СИСТЕМИ, якщо важливі дані цієї системи буде перезаписано grub-setup (--skip-fs-probe вимикає цю перевірку, ви можете скористатися цим параметром, якщо вважаєте, що пошкодження є неможливими). %s містить карту розділів %s. Невідомо, чи підтримується цією картою розділів надання місця для завантажувача у стилі DOS. Встановлення GRUB на цю карту розділів може призвести до РУЙНУВАННЯ ФАЙЛОВОЇ СИСТЕМИ, якщо важливі дані цієї системи буде перезаписано grub-setup (--skip-fs-probe вимикає цю перевірку, ви можете скористатися цим параметром, якщо вважаєте, що пошкодження є неможливими). У %s не передбачено підтримки UUID %s не існує. Будь ласка, вкажіть --target або --directory %s не є розділом EFI.
 %s створює розкладку клавіатури для GRUB за допомогою ckbcomp\n %s вважається застарілим. Замість нього скористайтеся set gfxpayload=%s до команди linux.
 %s вважається застарілим. Режим VGA %d не розпізнається. Замість нього скористайтеся set gfxpayload=ШИРИНАxВИСОТА[xГЛИБИНА] перед командою linux.
 %s ще не підтримується grub-mkconfig.\n %s, з Hurd %s %s, з Hurd %s (режим відновлення) %s, з Linux %s %s, з Linux %s (режим відновлення) %s, з Xen %s і Linux %s %s, з Xen %s і Linux %s (режим відновлення) %s, з гіпервізором Xen %s, з kFreeBSD %s %s, з kFreeBSD %s (режим відновлення) %s, з ядром %s (за допомогою %s) %s, з ядром %s (за допомогою %s, режим відновлення) %s: НЕВІДПОВІДНІСТЬ ХЕШІВ
 %s: ГАРАЗД
 %s: ПОМИЛКА ЧИТАННЯ
 %s: занадто багато аргументів
 %s: вам слід віддати цю команду від імені адміністратора (root)\n %s: помилка: %s: інформація: %s: некоректний параметр — «%c»
 %s: не знайдено %s: додавання аргументів до параметра «%c%s» не передбачено
 %s: неоднозначний параметр «%s»; можливі варіанти: %s: додавання аргументів до параметра «--%s» не передбачено
 %s: до параметра «--%s» слід додати аргумент
 %s: додавання аргументів до параметра «-W %s» не передбачено
 %s: параметр «-W %s» не є однозначним
 %s: до параметра «-W %s» слід додати аргумент
 %s: до параметра слід додати аргумент — «%c»
 %s: параметр потребує аргументу -- «%s»\n %s: невідомий параметр «%c%s»
 %s: невідомий параметр «--%s»
 %s: попередження: (32-бітове) (64-бітове) (ПОМИЛКА ПРОГРАМИ) Невідома версія!? (ПОМИЛКА ПРОГРАМИ) Параметр має розпізнаватися!? (на %s) - Мітка «%s» - Час останньої зміни — %d-%02d-%02d %02d:%02d:%02d %s --БІЛЬШЕ-- --ppc ШЛЯХ|--x86 ФАЙЛ -h ХЕШ [-c ФАЙЛ [-p ПРЕФІКС]] [ФАЙЛ1 [ФАЙЛ2 ...]] -l | -r | [-s] пристрій_grub диск_ОС. ,5 Підтримується 16-бітовий захищений інтерфейс
 Не підтримується 16-бітовий захищений інтерфейс
 Підтримується 32-бітовий захищений інтерфейс
 Не підтримується 32-бітовий захищений інтерфейс
 =ЗНАЧЕННЯ > пам’ять для сталого сховища даних ACPI відновлювана пам’ять ACPI Помилка під час вимикання за допомогою ACPI АДРЕСА АДРЕСА ЗНАЧЕННЯ [МАСКА] АДРЕСА [РОЗМІР] АДРЕСА1,МАСКА1[,АДРЕСА2,МАСКА2[,...]] АДРЕСА СЕРВЕР_DNS APM вимкнено
 APM вільний
 APM увімкнено
 APM зайнятий
 ARGP_HELP_FMT: значення %s є меншим або рівним %s ASCII Приймати завершення рядків CR/NL у стилі DOS. Активні термінали введення даних: Активні термінали виведення даних: Адаптер «%s»:
 Додати сервер DNS Додати мережеву адресу. Додати мережевий маршрут. Додаткові параметри для %s Додаткові параметри для %s (з гіпервізором Xen) Дозволити перервати за допомогою ESC. Запитати про назву файла для перезавантаження. Вважати вхідні дані шістнадцятковим значенням. Вважати вхідні дані паролем. Вважати вхідні дані необробленими. Спроба розшифрування основного ключа... Спроба встановлення GRUB на диск з декількома мітками розділів або з міткою розділу і файловою системою. У поточній версії ще не передбачено такої можливості. Спроба встановлення GRUB на диск з декількома мітками розділів. У поточній версії ще не передбачено такої можливості. Спроба встановлення GRUB на диск без розділів або на певний розділ диска. Вам НЕ ВАРТО виконувати подібні маніпуляції. Доступні термінали введення даних: Доступні термінали виведення даних: Б Б/с ДАМП_BIOS [ДАМП_INT10] БЛОК БАЙТ:БІТ Режим фонового зображення. Базовий каталог списку хешів. Схвалити КАТАЛОГ розділу HFS або HFS+ для Mac на основі PPC. Схвалити ФАЙЛ розділу HFS або HFS+ для Mac на основі Intel. Завантажити систему, засновану на BIOS. Завантажити операційну систему. Завантажити систему у режимі єдиного користувача. Завантаження з показом діагностичних повідомлень. Показувати докладні повідомлення під час завантаження. Завантаження «%s» Завантаження списку команд Завантаження системи у «сліпому» режимі Шлях завантаження: %s
 Шлях завантаження: недоступний
 Перервати роботу і перемкнутись на GDB CGA  КОЛІР КОМАНДА [ПАРАМЕТРИ] Режим бездіяльності процесора не уповільнює процесор
 Режим бездіяльності процесора уповільнює процесор
 CS5536 за адресою %d:%d.%d
 Не вдалося створити файл: %s Не вдалося увімкнути область ROM. Змінити налаштовані пристрої. Змінити тип розділу Перевірити стан Alt. Перевірити стан Ctrl. Перевірити стан Shift. Перевірити можливості ЦП. Перевірити хеші файлів за допомогою списку хешів у файлі ФАЙЛ. Перевірити, чи процесор підтримує 64-бітовий режим (long) (типова поведінка). Перевірити, чи передбачено у процесорі підтримку розширення фізичних адрес (PAE). Перевірити, чи можна використовувати ФАЙЛ як ядро multiboot x86 Перевірити, чи можна використовувати ФАЙЛ як ядро multiboot2 x86 Перевірити, чи є ФАЙЛ файлом ARM EFI Перевірити, чи є ФАЙЛ завантажувальним сектором BIOS Перевірити, чи є ФАЙЛ файлом IA64 EFI Перевірити, чи є ФАЙЛ файлом hiberfil.sys у стані призупинення роботи системи Перевірити, чи є ФАЙЛ файлом i386 EFI Перевірити, чи належить ФАЙЛ до вказаного типу. Перевірити стан модифікатора клавіатури. Перевірити, чи є запис користувача у СПИСКУ_КОРИСТУВАЧІВ. Виконує перевірку файла налаштування скриптів GRUB на синтаксичні помилки. Спорожнити екран. Занулено активний прапорець на %d. 
 Команди: Порівняти ФАЙЛ з ЛОКАЛЬНИМ_ФАЙЛОМ. Порівняння файла «%s» з «%s»:
 Порівняти два файла. Обчислити UUID XNU пристрою. Обчислити або перевірити хеш контрольної суми. Вказати послідовний порт. Продовжити виконання команд циклу Перетворити типові формати шрифтів на PF2 Копіювати ФАЙЛ у ЛОКАЛЬНИЙ_ФАЙЛ. Копіювати ФАЙЛ до стандартного виведення даних. Не вдалося виявити драйвер FPSWA Не вдалося знайти вільного слоту BootNNNN Не вдалося знайти фізичний том «%s». Можливо, у основному образі не вистачає якихось модулів. Не вдалося завантажити sha256 Не вдалося завантажити sha512 Створити BIOS-подібні конструкції для зворотної сумісності з вже встановленими операційними системами. Створити блоковий файл порожнього середовища. Поточні типи terminfo: ПРИСТРІЙ ПРИСТРІЙ [РОЗДІЛ[+/-[ТИП]]] ... ПРИСТРІЙ має бути пристроєм ОС (наприклад, /dev/sda). НАЗВА_ПРИСТРОЮ КАТАЛОГ КАТАЛОГ [OSBundleRequired] СЕРВЕР_DNS Інструмент діагностики драйвера файлової системи. Позначити діапазони пам’яті як пошкоджені (badram). Розпакувальний є занадто великим Типовим сервером є ${net_default_server} Визначити запис меню. Визначити підменю. Вилучити адресу у мережі. Вилучити мережевий маршрут. Вилучити диск зворотної петлі. Вилучити змінні. Визначити драйвер. Визначити UUID файлової системи. Визначити мітку файлової системи. Визначити тип файлової системи. Визначити тип карти розділів. Пристрій %s: Ід. пристрою: %s
 Ід. пристрою: недоступний Безпосередній колір, маска: %d/%d/%d/%d  позиція: %d/%d/%d/%d Вимкнути ACPI. Вимкнути SMP. Вимкнути виведення всіх повідомлень під час завантаження. Вимкнути або увімкнути SMART (0/1). Відкидаємо помилково вкладений розділ (%s,%s,%s%d) Статистичні дані дискового кешу: відповідники = %lu (%lu %02lu%%), помилки = %lu
 Перед списком дисків слід вказати кількість дисків.
 Показати дані щодо версії FPSWA. Показати дані щодо працездатності за SMART. Показати рядок тексту. Показати список блоків ФАЙЛа. Показувати повідомлення у всіх консолях. Показати дані щодо режиму живлення. Показати довідку з цієї команди і завершити роботу. Показати ці довідкові дані і завершити роботу. Показати або встановити поточну дату і час. Не застосовувати коди Ріда-Соломона, якщо виконується вбудовування core.img. Цим параметром можна скористатися лише для BIOS x86. Не виводити кінцевий символ завершення рядка. Не показувати повідомлень. Не шукати на дискетах. Не використовувати APM для вимикання комп’ютера. Нічого не виконувати, успішне завершення. Нічого не виконувати, невдале завершення. Не показувати діагностичні повідомлення при завантаженні. Не завантажувати таблиці комп’ютера, вказані за допомогою списку значень, відокремлених комами. Не виконувати перезавантаження, просто вимкнути. Не зупиняти виконання після першої помилки. Не оновлювати EBDA. Може допомогти у разі помилок чи підвисань для деяких BIOS, але ні на що не впливає, якщо операційна система не отримує RSDP від GRUB. ЗМІННА_СЕРЕДОВИЩА ЗМІННА_СЕРЕДОВИЩА [ЗМІННА_СЕРЕДОВИЩА] ... ПОМИЛКА: не знайдено відповідної розкладки клавіатури. Перевірте вхідні дані.
 Щоб вийти, натисніть ESC. ВИРАЗ ВИРАЗ ] Витрачено часу: %d.%03d с 
 Витрачено часу: %d.%03d секунд 
 Вбудовування неможливе. GRUB можна встановити на таку конфігурацію лише з використанням списків блоків (blocklists). Використання списків блоків може ПРИЗВЕСТИ ДО НЕСТАБІЛЬНОЇ РОБОТИ, не радимо ними користуватися. Імітувати натискання послідовності клавіш Увімкнути обробку екранування за допомогою символу зворотної похилої риски. Увімкнути або вимкнути RTS/CTS. Введіть пароль до ZFS:  Увійти до KDB під час завантаження. Увійти у звичайний режим. Введіть пароль до %s%s%s (%s):  Введіть пароль:  Введіть ім’я користувача:  Помилка під час спроби обробки параметрів командного рядка
 Обчислити значення виразу. Обробити аргументи як команди GRUB Не вдалося завершити роботу Вийти з GRUB. Вийти з циклів Вийти зі звичайного режиму. Експортувати змінні. Експортувати таблиці версії 1 до операційної системи. Експортувати таблиці версії 2 або 3 до операційної системи. ФАЙЛ ФАЙЛ [ПАРАМЕТР ...] ФАЙЛ [ПАРАМЕТРИ...] ФАЙЛ | ТЕМП [ТОН1 ТРИВАЛІСТЬ1] [ТОН2 ТРИВАЛІСТЬ2] ...  ФАЙЛ... ФАЙЛ1 ФАЙЛ2 НАЗВА_ФАЙЛА КОМАНДА ФАЙЛОВА_СИСТЕМА [ЗМІННА] ФАЙЛ|prompt ШРИФТИ ФОРМАТ Протоколу FPSWA не вдалося знайти інтерфейс Модифікація FPSWA: %x
 З-ДО[,З-ДО] З[K|M|G] ДО[K|M|G] Помилка FT_Init_FreeType Не вдалося завантажити типовий та резервний записи.
 Не вдалося створити ієрархію «device-mapper» Повертаємося до «%s» Розмір файла: %s
 У файловій системі «%s» не передбачено підтримки вбудовування Розбіжність виявлено за адресою %llu: 0x%x [%s], 0x%x [%s]
 Не збігаються розміри файлів: %llu [%s], %llu [%s]
 Файлова система недоступна Тип файлової системи %s Заповнити гібридний запис MBR пристрою GPT ПРИСТРІЙ. Вказані розділи будуть частиною гібридного запису MBR. Можна використовувати до 3 розділів. ТИП є типом MBR. «+» означає, що розділ є активним. Активним може бути лише один розділ. Завершити завантаження емулятора EFI. Спершу спробувати пристрій ПІДКАЗКА у разі використання ARC. Якщо запис ПІДКАЗКА завершується комою, також спробувати вкладені розділи. Спершу спробувати пристрій ПІДКАЗКА у разі використання BIOS. Якщо запис ПІДКАЗКА завершується комою, також спробувати вкладені розділи. Спершу спробувати пристрій ПІДКАЗКА у разі використання EFI. Якщо запис ПІДКАЗКА завершується комою, також спробувати вкладені розділи. Спершу спробувати пристрій ПІДКАЗКА у разі використання IEEE1275. Якщо запис ПІДКАЗКА завершується комою, також спробувати вкладені розділи. Спершу спробувати пристрій ПІДКАЗКА у разі підтримки безпосереднього доступу до обладнання. Якщо запис ПІДКАЗКА завершується комою, також спробувати вкладені розділи. Спершу спробувати пристрій ПІДКАЗКА. Якщо запис ПІДКАЗКА завершується комою, також спробувати пошук на вкладених розділах. Виправити проблему з відео. Виявлено %s на %s (%s)\n Виявлено %s на %s\n Виявлено GNU Mach: %s Виявлено модуль Hurd: %s Виявлено ядро NetBSD: %s\n Виявлено тло: %s\n Виявлено образ initrd: %s\n Виявлено каталог модулів ядра: %s\n Виявлено ядро FreeBSD: %s\n Виявлено образ linux: %s\n Виявлено тему: %s\n Помилка Freetype %d під час спроби завантаження гліфа 0x%x для U+0x%x%s Зафіксувати параметри безпеки ATA до перезавантаження. п’ятниця Г GNU GRUB, версія %s Меню завантаження GRUB GRUB ще невідомий спосіб вимикання цього комп’ютера! Імітатор GRUB.   ПРИСТРІЙ_GRUB=ПРИСТРІЙ_PLAN9 Мотлох у ARGP_HELP_FMT: %s Створити клавіатурну розкладку GRUB на основі розкладки для консолі Linux. Створити хеш пароля PBKDF2. Створити файл налаштувань grub Створити окремий образ (що містить всі модулі) у вибраному форматі Створюємо файл налаштувань grub... Визначити контрольну суму crc32 ФАЙЛа. Отримати відомості щодо дискового кешу. Отримати або встановити параметри диска ATA. ГіБ ГіБ/с Можна використовувати синтаксичні конструкції приєднання (наприклад /boot/grub/grub.cfg=./grub.cfg) ХЕШ ПІДКАЗКА Вимкнути систему, якщо можливо, за допомогою APM. Завершує роботу комп’ютера. Ця команда працює не для всіх реалізацій мікропрограм. Обробити N байтів з файла виведених даних. Привіт, світе Hercules  ІД ОБРАЗ1 [ОБРАЗ2 ...] ТОЧКА_МОНТУВАННЯ АДРЕСА_ОБРАЗУ КОМАНДИ Значенням параметра ПРІСТРІЙ_ДЛЯ_ВСТАНОВЛЕННЯ має бути назва файла системного пристрою.
%s копіює образи GRUB до %s. На деяких платформах також може бути встановлено GRUB до сектора завантаження. Якщо буде вказано НАЗВУ_ФАЙЛА «-», буде використано типове значення, %s.

Команди «delete» не передбачено. Якщо вам потрібно вилучити увесь блок середовища,
скористайтеся командою «rm %s». Імпортувати ключ ZFS, що зберігається у ФАЙЛі. Некоректний VDEV Некоректний віртуальний пристрій: тип недоступний Вставити модуль. Встановити GRUB на ваш пристрій. Встановлення завершено. Помилок не виявлено. Некоректне зворотне посилання Некоректна назва класу символів Некоректний символ порівняння Некоректна команда %s.
 Некоректний вміст \{\} Некоректний пристрій «%s».
 Некоректна кількість дисків.
 Помилка у попередньому формальному виразі Некоректне завершення діапазону Помилка у формальному виразі Виконати налаштування маршрутизації користувачем. К ЯДРО АРГУМЕНТИ КЛАВІША Клавіша для завантаження цього пункту. КіБ КіБ/с ЛОКАЛІ Віртуальній пристрій-лист (файл або диск) Підтримки застарілого параметра «ask» вже не передбачено. Позначення: маска/позиція=червоний/зелений/синій/додатковий Довжина створеного хешу Довжина солі Показати список серверів DNS. Показати список пристроїв PCI. Показати список всіх файлів. Показати список доступних відеорежимів. Якщо буде вказано роздільну здатність, у списку залишаться лише режими, які їй відповідають. Показати список таблиць coreboot. Показати список пристроїв і файлів. Список пристроїв або файлів. Показати список пристроїв. Показати список файлів у каталозі ШЛЯХ. Показати карту пам’яті, надану мікропрограмою (firmware). Список підтримуваних відеорежимів: Список користувачів, які можуть завантажувати цей пункт. Показати список або вибрати термінал для введення даних. Показати список або вибрати термінал для виведення даних. Показати список поточних змінних. Список завантажених шрифтів. Показати список змінних з блокового файла оточення. Завантажити 64-бітовий образ XNU. Завантажити дамп BIOS. Завантажити файл DTB. Завантажити середовище FreeBSD. Завантажити модуль ядра FreeBSD (ELF). Завантажити модуль ядра FreeBSD. Завантажити kernel.sys FreeDOS. Завантажити Linux. Завантажити NTLDR або BootMGR. Завантажити модуль ядра NetBSD (ELF). Завантажити модуль ядра NetBSD. Завантажити ядро Plan9. Завантажити образ ISO з Truecrypt. Завантажити каталог розширення XNU. Завантажити пакунок розширення XNU. Завантажити розширення XNU. Завантажити образ XNU. Завантажити диск у пам’яті XNU. У операційній системі буде показано як md0. Завантажити дамп «device-properties». Завантажити образ PXE. Завантажити розкладку клавіатури. Завантажити ядро multiboot 2. Завантажити модуль multiboot 2. Завантажити ядро multiboot. Завантажити модуль multiboot. Завантажити вітальне зображення для XNU. Завантажити образ XNU приспаної системи. Завантажити і ініціалізувати емулятор EFI. Завантажити інший інструмент завантаження. Завантажити інший файл налаштування, використати лише пункти меню. Завантажити інший файл налаштування без зміни контексту, використати лише пункти меню. Завантажити інший файл налаштування без зміни контексту. Завантажити інший файл налаштування. Завантажити інші дані coreboot Завантажити зображення тла для активного термінала. Завантажувати таблиці ACPI комп’ютера і таблиці, вказані параметрами. Завантажити initrd. Завантажити диск даних оперативної пам’яті kOpenBSD. Завантажити ядро FreeBSD. Завантажити ядро NetBSD. Завантажити ядро OpenBSD. Завантажити модуль. Завантажувати лише таблиці, вказані за допомогою списку значень, відокремлених комами. Завантажити файл у декілька способів. Завантажити змінні з блокового файла оточення. Завантажити ключ шифрування zfs. Завантажені шрифти: Завантаження GNU Mach… Завантаження Linux %s… Завантаження Xen %s… Завантаження початкового диска у оперативній пам’яті… Завантаження ядра FreeBSD %s… Завантаження ядра Illumos... Завантаження Hurd… М Помилка під час перевірки MAC-адреси ПУНКТ_МЕНЮ є номером, назвою пункту меню або ідентифікатором пункту меню. ПУНКТ_МЕНЮ є номером, заголовком пункту меню або ідентифікатором пункту меню. Будь ласка, зауважте, що для пунктів
у підменю та підпідменю слід вказувати компонент підменю, а потім компонент меню.
Заголовки слід відокремлювати символом «більше» (>) без додаткових пробілів.
Залежно від використаної командної оболонки, можливо доведеться екранувати
деякі з символів >. Докладніше про це можна дізнатися з підручника з GRUB,
розділ щодо команди «default».  МОДУЛЬ МОДУЛІ Схвалення у стилі Mac на HFS або HFS+ Запити щодо підтримки xorriso слід надсилати на адресу <bug-xorriso@gnu.org>. Створити придатний до завантаження образ GRUB на компакт-диску, карті пам’яті або дискеті. Створити файл розкладки клавіатури для GRUB. Створити придатний до завантаження образ GRUB. Створити віртуальний диск на основі файла. Зробити розділ активним Керувати відображеннями BIOS пристроїв. Обов’язкові і додаткові аргументи до довгих форм запису параметрів є також об’язковими або додатковими для всіх відповідних скорочених форм запису. Керувати пристроями PCI. Виміряти час, використаний на виконання КОМАНДИ Пам’ять вичерпано Тип пам’яті: DDR2. Тип пам’яті: невідомий. Ідентифікатор пункту меню. Не вказано пункт меню. Тип запису меню. МіБ МіБ/с Передбачено підтримку декількох BASH-подібних команд редагування рядків. Натискання клавіші TAB під час введення першого слова призведе до показу можливих варіантів завершення команди. Для інших слів натискання TAB призведе до показу списку можливих варіантів завершення назви пристрою або файла. %s Передбачено підтримку декількох команд Emacs-подібного редагування рядків. Натискання клавіші TAB призводить до показу списку можливих варіантів завершення, натискання Ctrl-X або F10 — до завантаження, Ctrl-C або F2 — до переходу у режим командного рядка, ESC — до відкидання внесених змін і повернення до меню GRUB. Не вистачає аргументів
 Не вказано файла вхідних даних
 понеділок Чорно-білий  Декілька пристроїв для встановлення? Декілька пунктів меню? Змонтувати пристрій з шифруванням даних. Змонтувати всі томи зі встановленим прапорцем «boot». Змонтувати всі. Змонтувати за UUID. Змонтувати пристрої з шифруванням даних. НАЗВА НАЗВА [ЗМІННА] [ПІДКАЗКИ] НЕ ЗАПУЩЕНО:  ЧИСЛО КІЛЬКІСТЬ СЕКУНД Назва	К-ть посилань	Залежності
 Використовуються типові драйвери диска. У використанні інтерфейсу мікропрограми диска відмовлено. Створено каталог завантаження з мережі, %s. Налаштуйте ваш сервер DHCP так, щоб його було спрямовано на %s
 Мережеві протоколи: Новий MBR записано до «%s»
 Не виявлено CS5536 FPSWA не знайдено Статистичні дані часу завантаження недоступні
 Не вказано команди.
 Не вказано жодного пристрою.
 Статистичні дані щодо кешу на диску недоступні
 Не було перепризначено жодного пристрою Виявлено невідому файлову систему Не знайдено Не вказано шлях.
 Не вказано шляху або пристрою.
 Не виявлено попереднього формального виразу Ієрархія віртуальних пристроїв недоступна Неланцюжковий 4  Недостатньо параметрів команди.
 Зараз, будь ласка, встановіть зв’язок з віддаленого засобу діагностики. Кількість ітерацій PBKDF2 ПАРАМЕТРИ ФАЙЛ Диск ОС #num ------> пристрій GRUB/BIOS Помилка під час спроби відкриття файла ОС, %s: %s Параметр -- перемикає у режим типових команд xorriso. Параметри: Пошук поза діапазоном: %d
 Заміна поза діапазоном (%d, %d)
 Перевизначити вгадану карту пристроїв Plan9. П КОМАНДИ РОБОТИ З РОЗДІЛАМИ ШЛЯХ Хеш PBKDF2 вашого пароля дорівнює %s
 ПОРТ ПОРТ ЗНАЧЕННЯ [МАСКА] ІД_ВІДКР_КЛЮЧА З палітри  Обробити застарілі налаштування у новому контексті Обробити застарілі налаштування у новому контексті, використати лише записи меню Обробити застарілі налаштування у тому самому контексті Обробити застарілі налаштування у тому самому контексті, використати лише записи меню Номер частини: %s.
 Розділ %d зараз є активним. 
 Розділ %s: У стилі розділів «%s» не передбачено підтримки вбудовування Шлях: %s
 Шлях: недоступний Виконати КОМАНДИ обробки розділу.
Скористайтеся командою «parttool РОЗДІЛ help», щоб ознайомитися з доступними командами. Виконати пошук DNS Виконати автоматичне налаштовування IPV6 Виконати прямі і зворотні відображення. ПіБ ПіБ/с Площинний  Відтворити звук. Будь ласка, не користуйтеся застарілим заголовком «%s» для GRUB_DEFAULT, скористайтеся «%s» (у версіях до 2.00) або «%s» (у 2.00 та новіших версіях) GUID сховища: %016llx
 GUID сховища: недоступне Назва сховища: %s
 Стан сховища: недоступне Стан сховища: активне Стан сховища: знищено Стан сховища: експортоване Стан сховища: пристрій ARC рівня 2 Стан сховища: потенційно активне Стан сховища: зарезервовано для гарячого резервування Стан сховища: недоступне Стан сховища: неініціалізоване Можливі параметри: Можливі команди: Можливі пристрої: Можливі файли: Можливі розділи: Можливі елементи: Неочікуване завершення формального виразу Натисніть будь-яку клавішу, щоб продовжити... Натисніть будь-яку клавішу, щоб запустити xnu Натисніть Enter, щоб почати завантаження позначеної ОС. Натисніть «e», щоб змінити команду до завантаження системи, «c» — щоб перейти у режим командного рядка. Натисніть Enter, щоб почати завантаження позначеної ОС. Натисніть «e», щоб змінити команду до завантаження системи, «c» — щоб перейти у режим командного рядка. Esc — повернутися до попереднього меню. Показати дані щодо пам’яті. Вивести дані ZFS щодо ПРИСТРОЮ. Вивести ZFS-BOOTFSOBJ або записати його значення в ЗМІННУ        Показати список блоків. Вивести і виконати блоковий параметр. Вивести дані зворотного трасування. Показати профіль пристрою та його параметри. Показати розміри у зручному для читання форматі. Визначити дані щодо пристрою за вказаним шляхом (або пристроєм, якщо вказано параметр -d). пам’ять з таблицями coreboot пам’ять з кодом мікропрограми Слот пам’яті з номером %d
 ФОРМАЛЬНИЙ_ВИРАЗ РЯДОК Виявлено образ ROM. Прочитати 16-бітове значення за АДРЕСОЮ. Прочитати 16-бітове значення з ПОРТу. Прочитати 32-бітове значення за АДРЕСОЮ. Прочитати 32-бітове значення з ПОРТу. Прочитати 8-бітове значення за АДРЕСОЮ. Прочитати 8-бітове значення з ПОРТу. Прочитати лише ВКАЗАНУ кількість байтів. Не вдалося перезавантажити Перезавантажитися до меню налаштовування мікропрограми. Перезавантажити комп’ютер. Повторіть пароль:  Регістр %x з %x:%02x.%x дорівнює %x
 Занадто об’ємний формальний вираз Вилучити сервер DNS Вилучити модуль. Вилучити змінну середовища. Вилучити всі ділянки пам’яті у вказаному діапазоні. Показати Apple .disk_label. Повідомляйте про вади на адресу %s.
 Про вади повідомляйте на адресу <bug-grub@gnu.org>. Надіслано запит щодо послідовного термінала, але не визначено GRUB_SERIAL_COMMAND. Буде використано типові параметри. Відновити типові значення всіх відображень. Отримати відомості щодо пристрою. Повернутися з функції. Повернутися до запрошення IEEE1275. Віддайте команду «gdb %s %d» і встановіть нульове значення ARGS.HOLD.
 Віддайте команду «go», щоб відновити роботу GRUB. СЕК СКОРОЧЕНА_НАЗВА СКОРОЧЕНА_НАЗВА КАРТКА АДРЕСА [АПАРАТНА_АДРЕСА] СКОРОЧЕНА_НАЗВА МЕРЕЖА [ІНТЕРФЕЙС| gw ШЛЮЗ] РОЗМІР ДЖЕРЕЛО|-u UUID|-a|-b РЯДОК РЯДОК ... субота Надати змінній НАЗВА_ЗМІННОЇ прочитане значення. Зберегти змінні до блокового файла оточення. Повідомити «Привіт, світе». У скрипті «%s» не міститься команд. Його виконання не призведе до жодних наслідків.
 Шукати пристрої за UUID. Якщо вказано ЗМІННУ, їй буде надано значення першого знайденого пристрою. Шукати пристрої за файлом. Шукати пристрої за UUID файлової системи. Шукати пристрої за міткою файлової системи. Шукати пристрої за файлом, міткою файлової системи або унікальним ідентифікатором файлової системи (UUID). Якщо вказано параметр --set, змінній буде надано значення першого знайденого пристрою. Якщо назви змінної не буде вказано, буде використано назву «root». Шукати пристрої за файлом. Якщо вказано ЗМІННУ, їй буде надано значення першого знайденого пристрою. Шукати пристрої за міткою. Якщо вказано ЗМІННУ, їй буде надано значення першого знайденого пристрою. Сектор %llu вже використано контролером raid «%s»; пропускаємо його. Будь ласка, надішліть виробникові пристрою для зберігання даних прохання не зберігати дані у області MBR. Сектор %llu вже використано програмою «%s»; пропускаємо його. Вказана програма може призвести до проблем з завантаженням або інших проблем у роботі системи. Будь ласка, попросіть авторів програми не зберігати дані у області завантаження. Виберіть пристрій за його розташуванням на каналі. Вибрати пристрій за ідентифікаторами виробника і пристрою. Налаштувати Advanced Power Management
(1=мін, ..., 254=макс, 255=вимкн). Налаштувати Automatic Acoustic Management
(0=вимкн, 128=тихо, ..., 254=швидко). Встановити OEMID у RSDP, XSDT та RSDT. Встановити ідентифікатор OEMTABLE у RSDP, XSDT та RSDT. Встановити модифікацію OEMTABLE у RSDP, XSDT та RSDT. Встановити прапорець «hidden» у типі розділу Встановити змінну для повернутого значення. Встановити для змінної значення першого знайденого пристрою. Встановити змінну середовища. Встановити колір тла для активного термінала. Встановити біт за адресою БАЙТ:БІТ у CMOS. Встановити поле програми для створення у RSDP, XSDT та RSDT. Встановити версію програми для створення у RSDP, XSDT та RSDT. Встановити зневаджувальну змінну середовища. Перевести пристрій у режим сну. Перевести пристрій у режим очікування. Встановити значення позиційних параметрів. Вказати кореневий пристрій. Встановити затримку переходу у режим очікування
(0=вимкн, 1=5с, 2=10с, ..., 240=20хв, 241=30хв, ...). Встановити значення типу terminfo ТЕРМІНАЛА ТИП.
 Встановити типовий пункт меню завантаження для GRUB лише для наступного завантаження. Встановити типовий пункт меню завантаження для GRUB. Вказати адресу послідовного порту. Вказати парність послідовного порту. Вказати швидкість послідовного порту. Вказати кількість стоп-бітів послідовного порту. Вказати довжину слова послідовного порту. Вказати номер послідовного порту. Визначення образів для завантаження з ПРИСТРОЮ.

За типових умов вам не слід запускати цю програму безпосередньо. Скористайтеся краще grub-install. Встановити пароль користувача (PBKDF2).  Визначити пароль користувача (незашифрованим). Небезпечно і не рекомендується. Визначити значення змінної за введеними користувачем даними. Встановити значення змінних. Підтримки встановлення ненульового значення для GRUB_TIMEOUT, якщо встановлено GRUB_HIDDEN_TIMEOUT, не передбачено. Встановлення типу розділу у значення 0x%x
 Зсунути значення позиційних параметрів. Показати дані щодо ACPI. Показати відомості APM. Показати вміст консолі CBMEM. Показати довідкове повідомлення. Показати довгий список з додатковими відомостями. Показати вміст файла ФАЙЛ у шістнадцятковому форматі. Показати список завантажених модулів. Показати вміст пам’яті. Показати вміст сектора ATA IDENTIFY без обробки. Показати вміст файла або пам’яті без обробки. Показати вміст файла. Показати поточні відображення. Показати це повідомлення. Показати лише таблиці версії 1. Показати лише таблиці версії 2 і 3. Не вдалося вимкнути Імітувати команду «initrd» попередньої версії grub Імітувати команду «kernel» попередньої версії grub Імітувати команду «modulenounzip» попередньої версії grub Імітувати команду «password» попередньої версії grub Імітувати команду «password» попередньої версії grub у режимі пункту меню Пропустити N байтів з файла виведених даних. Пропустити вказану кількість байтів на початку файла. Пропустити перевірку підписів файла середовища. Відкрито слот %d
 Виявлено деякі частини Hurd, але їх недостатньо для завантаження. Вказати назву файла. Вказати хеш для використання. Вказати один або декілька файлів для завантаження. Вкажіть розмір для кожної з дій щодо читання Вказати кількість файлів вхідних даних. Швидкість: %s 
 Запустити заглушку GDB на вказаному порті Зупинити роботу заглушки GDB Зберегти компонент з номером НОМЕР до змінної НАЗВА_ЗМІННОЇ. Успіх неділя Придушити звичайні повідомлення (показувати лише попередження). Перемкнутися на природні драйвери дисків. Якщо модулів не вказано, використовується типова послідовність (pata,ahci,usbms,ohci,uhci,ehci). Синтаксична помилку у рядку %u
 Виявлено синтаксичні помилки у файлі налаштувань GRUB.
Переконайтеся, що у файлах /etc/default/grub і /etc/grub.d/*
немає помилок, будь ласка, створіть звіт щодо вади з
долученням файла %s. Простір введення-виведення контролера каналу керування системою починається з 0x%x
 Т ПРИЗНАЧЕННЯ ТЕМИ Формат призначення не вказано (скористайтеся параметром -O). Термінал має відповідні геометричні параметри. У терміналі можна використовувати лише ASCII [типове значення]. Термінал з логічним впорядкуванням UTF-8. Термінал з візуальним впорядкуванням UTF-8. Перевірка підтримки USB. Тестувати біт за адресою БАЙТ:БІТ у CMOS. Тестувати швидкість читання файла. Перевірити відповідність ФОРМАЛЬНОГО ВИРАЗУ РЯДКУ. Перевірити відеопідсистему у режимі ВxШ. Перевірити відеопідсистему. Лише текст  Вміст файлів є тотожним.
 Обробку позначеного пункту буде автоматично виконано за %d с. Цей VDEV є RAIDZ%llu
 Цей VDEV є дзеркалом Систему цього пункту може завантажувати будь-який користувач. Потребує встановлення GRUB_DEFAULT=saved у %s/default/grub.\n четвер ТіБ ТіБ/с Інструмент для редагування блоку середовища. Загальний об’єм запису: %d Б.
 Кінцевий символ похилої риски Перетворити 64-бітове значення UUID у формат, що відповідає XNU. Якщо вказано -l, залишати літери малими, як у даних blkid. Перетворити назву файла у системі на назву у GRUB. Перетворити налаштування syslinux на налаштування GRUB. Виконати у РЯДКУ перетворення символів з НАБОРУ1 до НАБОРУ2. Перетворити на символи нижнього регістру. Перетворити на символи верхнього регістру. Перекладає рядок відповідно до поточних параметрів. Виконайте команду «%s --help» або «%s --usage», щоб дізнатися більше.
 вівторок ПАРОЛЬ КОРИСТУВАЧА КОРИСТУВАЧ ПАРОЛЬ_PBKDF2 КОРИСТУВАЧ[,КОРИСТУВАЧ] UTF-8 Не вдалося створити канал передавання даних: %s Не вдалося визначити вашу платформу. Скористайтеся параметром --target. Не вдалося створити розгалуження: %s Не вдалося відкрити потік даних з %s: %s Не вдалося отримати дані щодо стану сховища Розпакувати дані. Розпакувати файл до обчислення контрольної суми. Невідомий тип адреси, %d
 Невідома команда «%s».
 Невідомий формат стискання %s Невідоме кодування Невідомий додатковий параметр «%s». Невідома деталь шрифту gsub, 0x%x (%s)
 Невідомий код клавіші 0x%02x
 Невідома назва клавіші, %s
 Невідома платформа, «%s-%s» Невідома системна помилка Невідоме відео режим Невідомий тип віртуального пристрою: %s
 Вивантажити емулятор EFI. Неврівноважена послідовність ( або \( Неврівноважена послідовність ) або \) Неврівноважена послідовність [ або [^ Неврівноважена послідовність \{ Невідоме стискання, «%s» Нерозпізнаний параметр «%s»\n Нерозпізнаний стан сховища Непідтримуваний тип адреси, %d
 Непідтримувана специфікація покриття: %d
 Непідтримуваний тип апаратної адреси, %d
 Непідтримуваний формат зображень Непідтримуваний прапорець заміни: 0x%x
 Непідтримувана специфікація заміни: %d
 Непідтримуваний тип заміни: %d
 Використання: Використання: %s -o ВИВЕДЕННЯ АРГУМЕНТИ_CKBMAP...\n Використання: %s ПРИСТРІЙ
 Використання: %s [ВХІДНИЙ_ФАЙЛ [ВИХІДНИЙ_ФАЙЛ]]
 Використання: %s [ПАРАМЕТР] ПУНКТ_МЕНЮ\n Використання: %s [ПАРАМЕТР]\n Використовувати компакт-диск як кореневу теку. Використати віддалений інструмент зневаджування GDB замість DDB. Використати РЯДОК як текст пункту меню. Використовувати вбудований кореневий пристрій. Використовувати консоль на послідовному порті. Скористайтеся клавішами %C і %C для позначення пункту. ЗМІННА ІНТЕРФЕЙС НОМЕР ОПИС НАЗВА_ЗМІННОЇ Елемент номер %d VDEV є помилковим
 Елемент номер %d VDEV:
 VDEV з %d дочірніми об’єктами
 Докладний зворотний відлік. Перевідкрити від’єднаний підпис. Версія %u.%u
32-бітовий CS = 0x%x, довжина = 0x%x, відступ = 0x%x
16-бітовий CS = 0x%x, довжина = 0x%x
DS = 0x%x, довжина = 0x%x
 Віртуальний пристрій має погіршені характеристики Дефектний віртуальний пристрій Віртуальний пристрій недоступний Віртуальний пристрій доступний Віртуальний пристрій вилучено УВАГА: консоль не буде доступною ОС УВАГА: не було виконано специфічного для платформи встановлення УВАГА: непідтримувані параметри шрифту: %x
 ШИРИНАxВИСОТА. Очікувати протягом вказаної кількості секунд. Очікувати на натискання клавіші після кожного виведеного рядка. Попередження: Попередження: помилковий колір тла «%s»
 Попередження: некоректний колір тексту «%s»
 Попередження: синтаксична помилка (немає похилої риски) у «%s»
 середа Windows NT/2000/XP (завантажувач) Windows Vista/7 (завантажувач) Записати 16-бітове ЗНАЧЕННЯ за АДРЕСОЮ. Записати 16-бітове ЗНАЧЕННЯ до ПОРТу. Записати 32-бітове ЗНАЧЕННЯ за АДРЕСОЮ. Записати 32-бітове ЗНАЧЕННЯ до ПОРТу. Записати 8-бітове ЗНАЧЕННЯ за АДРЕСОЮ. Записати 8-бітове ЗНАЧЕННЯ до ПОРТу. Записаних байтів SPD: %d Б.
 Гіпервізор Xen, версія %s YUV  Вам слід вказати принаймні одну команду.
 Вам слід встановити «SystemPartition» і «OSLoader» вручну. Вами виявлено ваду Ваша область вбудовування є надзвичайно малою. core.img не вміститься у цій області. У вашому xorriso не передбачено підтримки «--grub2-boot-info». Деякі з можливостей вимкнено. Будь ласка, скористайтеся xorriso 1.2.9 або новішою версією. У вашому xorriso не передбачено підтримки «--grub2-boot-info». Основний ядра образ є надто великим. Завантаження у форматі диска вимкнено. Будь ласка, скористайтеся xorriso 1.2.9 або новішою версією. [--append|--remove] [ТЕРМІНАЛ1] [ТЕРМІНАЛ2] ... [--force|--bpb] ФАЙЛ [--md5] ПАРОЛЬ [ФАЙЛ] [--no-mem-option] [--type=ТИП] ФАЙЛ [ПАРАМЕТР ...] [-1|-2] [--exclude=ТАБЛИЦЯ1,ТАБЛИЦЯ2|--load-only=ТАБЛИЦЯ1,ТАБЛИЦЯ2] ФАЙЛ1 [ФАЙЛ2] [...] [-c ФАЙЛ [-p ПРЕФІКС]] [ФАЙЛ1 [ФАЙЛ2 ...]] [-d] НАЗВА_ПРИСТРОЮ ФАЙЛ. [-e|-n] РЯДОК [-f ФАЙЛ] [-f ФАЙЛ] назва_змінної [...] [-f|-l|-u|-s|-n] [--hint ПІДКАЗКА [--hint ПІДКАЗКА] ...] НАЗВА [-h|-p|-r] [ФАЙЛ] [-l] UUID_GRUB [НАЗВА_ЗМІННОЇ] [-l|-h|-a] [ФАЙЛ ...] [-m (stretch|normal)] ФАЙЛ [-s ПОЗИЦІЯ] [-d ПРИСТРІЙ] [-s ПОЗИЦІЯ] [-d ПРИСТРІЙ] [-v ЗМІННА] РЕГІСТР[=ЗНАЧЕННЯ[:МАСКА]] [-s РОЗМІР] НАЗВА_ФАЙЛА [-s|--skip-sig] ФАЙЛ ФАЙЛ_ПІДПИСУ [ФАЙЛ_ВІДКРИТОГО_КЛЮЧА] [-s|--skip-sig] ФАЙЛ_ВІДКРИТОГО_КЛЮЧА [АДРЕСА|одинОБМІНУ][,ШВИДКІСТЬ] [ПАРАМЕТР] [КАРТКА [АПАРАТНА_АДРЕСА]] [КАРТКА] [КАТАЛОГ] [ЗМІННА_СЕРЕДОВИЩА=ЗНАЧЕННЯ] [ЗМІННА_СЕРЕДОВИЩА] [КОМБІНАЦІЯ_КЛАВІШ1] [КОМБІНАЦІЯ_КЛАВІШ2] ... [МОДУЛЬ1 МОДУЛЬ2 ...] [НОМЕР:]НАЗВА_ЗМІННОЇ [ЧИСЛО] [ПАРАМЕТРИ...] [ПАРАМЕТРИ] [ПАРАМЕТРИ] ДИСК [ПАРАМЕТРИ] ФАЙЛ_АБО_ПРИСТРІЙ [ПАРАМЕТРИ] ФАЙЛИ_ШРИФТІВ [ПАРАМЕТРИ] [НАБІР1] [НАБІР2] [РЯДОК] [ПАРАМЕТР] ДЖЕРЕЛО... [ПАРАМЕТР] [ПРІСТРІЙ_ДЛЯ_ВСТАНОВЛЕННЯ] [ПАРАМЕТР]... [МОДУЛІ] [ПАРАМЕТР]... [ФАЙЛ|ПРИСТРІЙ] [ПАРАМЕТРИ] [ШЛЯХ] [ШАБЛОН ...] [СПИСОК_КОРИСТУВАЧІВ] [ЗНАЧЕННЯ]... [ШxВ[xГ]] [ШxВ] [[-a|-u|-v] [-g ВxШ] ТЕРМІНАЛ [ТИП]] [[рік-]місяць-день] [години:хвилини[:секунди]] [канал]:[слот][.функція] [виробник]:[пристрій] «%s» не є локальним диском помилка команди «cryptomount»: %s помилка команди «loopback»: %s помилка «nvsetenv». 
Вам слід встановити значення змінної «boot-device» вручну. У полі запиту IEEE1275 введіть:
  %s
 Не знайдено «obppath» у батьківських каталогах «%s», немає засобу визначення назв IEEE1275 спроба надання аргументу «%s» певного значення, хоча цей аргумент не потрібен доступ заборонено додати сегмент НОТАТКА для відкритої мікропрограми CHRP IEEE1275 адреса адресу не знайдено спроба читання або запису області поза межами диска «%s» спроба читання або запису блоку даних поза розділом спроба читання даних за кінцем файла спроба встановлення позиції поза межами файла спроба читання основного образу «%s» з GRUB повторна спроба читання основного образу «%s» з GRUB доступна пам’ять доступні формати: некоректний підпис базова_адреса = 0x%llx, довжина = 0x%llx, %s
 базова_адреса = 0x%llx, довжина = 0x%llx, тип = 0x%x
 підтримки формату растрового зображення «%s» не передбачено схвалити для Mac на основі PPC схвалити для Mac на основі x86 blocklist ФАЙЛ списки блоків є неповними списки блоків є некоректними розмір блоку не є кратним до 512 розгортання 0 циклів неможливе не вдалося стиснути «%s» до «%s» не вдалося визначити тип файлової системи на %s не вдалося знайти команду «%s» не вдалося змонтувати шифрований том «%s»: %s не вдалося відкрити «%s»: %s не вдалося відкрити файл %s, індекс %d: помилка %d не вдалося отримати список блоків не вдалося отримати список блоків: %s не вдалося встановити розмір шрифту %dx%d: помилка Freetype %d: %s не вдалося стиснути образ ядра не вдалося скопіювати «%s» до «%s»: %s не вдалося вилучити «%s»: %s не вдалося знайти каталог EFI не вдалося знайти диск GRUB для %s. Перевірте правильність device.map не вдалося знайти пристрій для %s (чи змонтовано /dev?) не вдалося знайти локаль «%s» не вдалося отримати рядок команди відображення для шляху «%s»: %s не вдалося створити тимчасовий каталог: %s не вдалося створити тимчасовий файл: %s не вдалося відкрити файл ОС %s: %s не вдалося відкрити «%s»: %s не вдалося відкрити каталог «%s»: %s не вдалося правильно прочитати «%s» не вдалося прочитати %s: %s не вдалося перейменувати файл %s на %s не вдалося відновити початковий каталог не вдалося виконати seek для «%s»: %s не вдалося виконати stat для «%s»: %s запис на компакт-диск неможливий не вдалося виконати запис до «%s»: %s не вдалося виконати запис до стандартного виведення: %s не знайдено картки cat ФАЙЛ помилка під час спроби перевірки контрольної суми виберіть режим стискання для основного образу cmp ФАЙЛ ЛОКАЛЬНИЙ_ФАЙЛ одинОБМІНУ[,ШВИДКІСТЬ] помилка порівняння у позиції %llu стискати файли GRUB [необов'язкове] у з'єднанні відмовлено перевищено час очікування на з’єднання перетворити на напівжирний стиль основний образ є занадто великим (0x%x > 0x%x) невідповідність версій core.img не вдалося виконати автоматичне налаштування %s не вдалося знайти пристрою з потрібним вам номером у файловій системі, що зберігається на декількох пристроях не вдалося знайти споживача geli не вдалося знайти клас «part» geom не вдалося відкрити дані щодо геометрії не вдалося прочитати метадані ELI не вдалося отримати UUID не вдалося отримати UUID geli не вдалося отримати випадкові дані не вдалося отримати випадкові дані для солі не вдалося надіслати пакет даних мережею cp ФАЙЛ ЛОКАЛЬНИЙ_ФАЙЛ crc ФАЙЛ помилка шифрування з номером %d помилка cygwin_conv_path() вилучити карту пристроїв, якщо вона вже існує призначення недоступне перевищено обмеження на кількість пристроїв вимкнути гінтінґ не знайдено диска «%s» диска не існує, повертаємося до пристрою розділу %s модуль диска, який слід використовувати (biosdisk або native). Цим параметром можна скористатися лише у системі призначення з BIOS. спроба читання даних з диска зазнала невдачі на позиції %lld, довжина %lld розмір diskboot.img має дорівнювати %u байтів не встановлювати сектор завантаження не шукати файлові системи на ПРИСТРОЇ компонент назви домену є занадто довгим не змінювати стан блоку індикаторів не оновлювати змінні NVRAM «boot-device»/«Boot*». Цим параметром можна скористатися лише для EFI і IEEE1275. виконано вбудувати ФАЙЛ як файл попереднього налаштування вбудувати ФАЙЛ як відкритий ключ для перевірки підписів вбудовування неможливе, але без нього не обійтися під час встановлення на RAID та LVM вбудовування неможливе, але без нього не обійтися під час встановлення на декілька дисків увімкнути завантаження ARCS (для комп’ютерів mips зі зворотним порядком байтів, зокрема SGI). Вимикає образи завантаження HFS+, APM, sparc64 і boot для i386-pc. увімкнути завантаження sparc. Вимикає дискові образи HFS+, APM, ARCS і boot для i386-pc вмикаємо підтримку %s ... enter: завантаження, «e»: параметри, «c»: кмд-рядок занадто малий блок середовища помилка: %s.
 шукати образи GRUB у каталозі КАТАЛОГ/%s замість каталогу %s не вдалося скопіювати Grub до розділу PReP не вдалося отримати канонічний шлях «%s» не вдалося прочитати сектори основного образу помилка під час читання сектора 0x%llx з «%s» не вдалося прочитати пароль помилка під час спроби запису сектора 0x%llx до «%s» false помилка у пам’яті (BadRAM) файл «%s» не знайдено слід вказати назву файла слід вказати файл або ритм і ноти у файловій системі %s не передбачено підтримки міток у файловій системі %s не передбачено підтримки списків блоків (blocklists) образ мікропрограми є занадто великим примусовий автоматичний гінтінґ мало бути вказано чотири аргументи fwstart.img не належить до випробованої версії. Подальше користування може призвести до помилок. створити образ у форматі ФОРМАТ отримати коротке повідомлення щодо використання показати ці довідкові дані вказаний аргумент є системним пристроєм, а не шляхом grub-mkimage зібрано без підтримки XZ grub> затриматися на СЕК секунд (типово, на 3600) hex ФАЙЛ ігнорувати растрові штрихи під час завантаження некоректне визначення розмірностей термінала initrd вже завантажено встановити ШРИФТИ [типово %s] Встановити GRUB для платформи ПРИЗНАЧЕННЯ [типове значення — %s] встановити образи GRUB у каталозі КАТАЛОГ/%s замість каталогу %s встановити ТЕМИ [типово %s] не вказано пристрою для встановлення. встановити, навіть якщо буде виявлено проблеми встановити лише вказані ЛОКАЛІ [типово буде встановлено всі] встановити лише вказані МОДУЛІ та їхні залежності [типово усі] некоректний пароль PBKDF2 некоректна залежна від архітектури позначка у ELF некоректна незалежне від архітектури позначка у ELF некоректний аргумент некоректний розмір блоку некоректне визначення кольору, «%s» некоректна ієрархія пристроїв некоректний блок середовища некоректна назва файла, «%s» некоректний діапазон шрифту некоректний формат рядка: %s некоректний файл modinfo, «%s» некоректний параметр, %s некоректне значення пропуску %lld некоректна назва змінної, «%s» некоректна специфікація відеорежиму, «%s» некоректний образ zImage Помилка GET_ARRAY_INFO ioctl: %s Помилка GET_DISK_INFO ioctl: %s Помилка RAID_VERSION ioctl: %s образ ядра є надто великим (0x%x > 0x%x) показати список мережевих адрес показати список мережевих карток показати список мережевих маршрутів ls ШЛЯХ файл lzop пошкоджено уможливити завантаження з пристрою, як з дискети (типова поведінка для пристроїв fdX). Може призвести до непрацездатності з деякими BIOS. не вистачає символу «%c» не вказано обов’язкового параметра для «%s» модуль «%s» не завантажено модуль не завантажено назва слід вказати образ і точку монтування не знайдено APM не знайдено даних щодо DHCP не знайдено параметра %d DHCP не знайдено параметрів DHCP не знайдено запису DHCP не отримано відповіді DNS не налаштовано серверів DNS на вашій платформі не передбачено процедур EFI у режимі BIOS не можна використовувати процедури EFI на вашій платформі не передбачено процедур IEEE1275 на вашій платформі не передбачено процедур SGI у повній назві немає символу «/» не вказано команди на вашій платформі не передбачено стискання не вказано ключа розшифрування підказок для вашої платформи не передбачено. Швидкодія може зменшитися. мережевої картки не знайдено у вашій операційній системі не передбачено засобу створення псевдовипадкових чисел не вказано сервера такого розділу немає не знайдено відповідного відеорежиму немає таблиці символів не вказано терміналів у основному образі немає мітки завершення у базовому файлі виявлено невирівняні за секторами дані не є каталогом не є основним розділом не є звичайним файлом поза кодом функції очікувався один аргумент лише ipv4 лише ipv6 область вбудовування використано іншим програмним забезпеченням. Для core.img залишилося недостатньо місця. Подібне зберігання даних часто пов’язане зі спробою приховати втручання у систему. Рекомендуємо вам виконати докладніше розслідування цього інциденту. нестача пам'яті вивести створений образ до файла ФАЙЛ [типовий=stdout] має бути вказано файл для виведення даних вивести створені налаштування до файла ФАЙЛ [типово=stdout] виявлено переповнення паролі не збігаються виконати автоматичне налаштування bootp не знайдено фізичного тому %s попередньо завантажити вказані МОДУЛІ перевага ipv4 перевага ipv6 завчасне завершення файла завчасне завершення файла %s натиснути клавішу CapsLock натиснути клавішу Insert натиснути клавішу NumLock натиснути клавішу ScrollLock натиснути SysRq натиснути лівий alt натиснути лівий ctrl натиснути лівий shift натиснути правий alt натиснути правий ctrl натиснути правий shift вивести дані щодо версії програми показати дані щодо версії і завершити роботу показати це повідомлення і завершити роботу показати докладні повідомлення. не знайдено відкритого ключа %08x помилка читання з позиції %llu: %s прочитати текст з файла ФАЙЛ. відносний підкаталог на мережевому сервері зміну розташування 0x%x ще не реалізовано зарезервована пам’ять отримати значення параметра DHCP і зберегти його до ЗМІННОЇ. Якщо ЗМІННОЮ є -, вивести значення. кореневий каталог, так, як його буде показано під час роботи [типово /]. кореневий каталог сервера TFTP кореневий каталог диска syslinux [типово /]. виявлено циклічну маршрутизацію зберегти образи ROM до каталогу КАТАЛОГ [необов’язковий параметр] зберегти виведені дані до ФАЙЛа [обов’язковий параметр] встановити індекс гарнітури не знайдено послідовного порту «%s» set [НАЗВА=ЗНАЧЕННЯ ...] встановити режим capslock встановити верхню межу шрифту встановити нижню межу шрифту встановити назву гарнітури шрифту встановити діапазон шрифту встановити розмір шрифту встановити назву файла вхідних даних для 32-бітової частини. встановити назву файла вхідних даних для 64-бітової частини. встановити назву файла вхідних даних. Типовим є STDIN. встановити режим вставлення встановити режим numlock встановити назву файла для виведення даних. Типовим є STDOUT. встановити режим паузи встановити каталог префікса [типовий=%s] встановити режим scrolllock встановити назву програми розмір stretch|normal не знайдено символ «%s» тимчасова термінала %s не знайдено або terminfo не працює з цим терміналом не знайдено термінала «%s» ідентифікатор інструмента завантаження. Цим параметром можна скористатися лише у системах з EFI і на Mac. розділ PReP не є порожнім. Якщо вам справді хочеться ним скористатися, віддайте команду dd, щоб спорожнити його: «%s» разом з аргументом «%s» слід вказати ціле число вибраний розділ не є розділом PReP запис device.map «%s» є некоректним. Будь ласка, виправте його або вилучіть ваш device.map диск %s визначається декілька разів у карті пристроїв %s назва диска «%s» у device.map є некоректною. Використовуємо замість неї %s. Будь ласка, використовуйте формат [hfc]d[0-9]* (наприклад «hd0» або «cd») перший сектор базового файла не вирівняно за секторами пристрій для встановлення є портативним. Цим параметром можна скористатися лише у системах з EFI. тип розділу 0x%x є некоректним сектори основного файла занадто фрагментовані розмір «%s» не дорівнює %u розмір «%s» є занадто великим розмір «%s» є занадто малим тип цього файла ELF не є належним ця мітка розділу GPT не містить розділу для завантаження BIOS, — вбудовування неможливе у цього LDM немає розділу для вбудовування, — вбудовування неможливе ця мітка розділу у форматі msdos не містить проміжку після MBR, — вбудовування неможливе мало бути вказано три аргументи перевищення часу очікування на відкриття «%s» перевищення часу очікування під час читання «%s» перевищення часу очікування: не вдалося визначити апаратну адресу занадто високий рівень вкладеності символічних посилань у відображенні «%s» для шляху «%s» вказано декілька слів, непов’язаних з параметрами, принаймні «%s» і «%s». у відображенні «%s» для шляху «%s» вказано лише параметри, не вдалося знайти частину визначення пристрою для шляху «%s» рядок команди відображення є порожнім мало бути вказано два аргументи тип не вдалося визначити файлову систему на %s; виконання перевірки безпеки неможливе невирівняний об’єм пристрою неочікувана помилка EFI несподіваний кінець файла невідомий аргумент, «%s» невідоме стискання %d
 невідомий тип пристрою %s
 невідома файлова система невідомий тип пристрою RAID, «%s» невідома помилка під час обробки формального виразу невідомий формат призначення %s
 невідомий тип terminfo, «%s» непридатне до розпізнавання визначення формату параметра DHCP, «%s» нерозпізнана адреса у мережі, «%s» нерозпізнаний інтерфейс мережі, «%s» нерозпізнане число непридатна до визначення адреса %s unset [НАЗВА ...] непідтримуване повідомлення про помилку HTTP, %d: %s непідтримувана відповідь HTTP непідтримувана версія RAID: %d.%d Непідтримуваний формат gzip непідтримувана платформа %s
 непідтримувана парність послідовного порту непідтримувана швидкість передавання даних послідовним портом непідтримуване значення кількості бітів зупинки роботи з послідовним портом непідтримуваний розмір слова (word) послідовного порту використати КОЛІР для тла використати КОЛІР для мітки використати КОЛІР для тла мітки використати КОЛІР для тексту використати КАТАЛОГ як кореневий каталог системного розділу EFI. використовувати КАТАЛОГ для встановлення PPC MAC. використати ФАЙЛ (PF2) як шрифт. використати ФАЙЛ як шрифт для мітки використати ФАЙЛ як образ для завантаження [типове значення=%s] використати ФАЙЛ як образ теки ядра [типове значення=%s] використовувати ФАЙЛ яка карту пристрою [типове значення=%s] використовувати ФАЙЛ як xorriso [необов’язковий параметр] використовувати файли GRUB у каталозі КАТАЛОГ [типове значення=%s] використати РЯДОК як назву продукту використати РЯДОК як версію продукту використовувати файл ідентифікатора, навіть якщо доступним буде UUID використовувати образи і модулі у КАТАЛОЗІ [типово=%s/<платформа>] використовувати теми у КАТАЛОЗІ [типово %s] використовувати переклади у КАТАЛОЗІ [типово %s] значення змінної «%s» не встановлено візуально впорядковане UTF-8. зачекати на долучення зневадника         не буде продовжено з використанням списків блоків вивести дані до файла ФАЙЛ [типово stdout] помилкова контрольна сума або версія ELI xnu_uuid ПРИСТРІЙ файл xz пошкоджено або вказано непідтримувані параметри блоку ви не можете вилучити цю адресу спочатку вам слід завантажити ядро розміри вашого розділу для завантаження BIOS є занадто малими, — вбудовування неможливе ваш файл core.img є доволі великим. Його не вдасться записати до області вбудовування. ваша область вбудовування є надзвичайно малою. core.img не вміститься у цій області.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    boot/grub/locale/vi.mo                                                                              0000600 0001750 0001750 00000343605 13417732100 0013653 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                       v     #    |G      H_  #   I_      m_     _     _     _  $   _     _  6   `     H`     O`  	   [`     e`     r`     `     `     `     `  .   `  .   a  %   >a     da     ha    wa    |b    c     d  7   d  F   d  v   "e  +   e     e      e     e  !   	f     +f  ,   Hf     uf     f  $   f     f  *   f     g     !g     )g     9g     Qg  
   qg  	   |g     g  ,   g  ,   g  ,   g  '   )h  -   Qh      h  (   h  (   h  )   h     i     <i     \i     ii     ri  "   {i  4   i     i     i  7   i      j  1   )j     [j     zj  %   }j  '   j  %   j  '   j     k     k      k     >k     Sk     hk     mk     k     k     k     k     k     k     k  3   k     )l  $   /l     Tl     ll     l     l     l     l     l  -   l     m  !   4m     Vm     km     m  #   m     m  `   Hn  Z   n     o     o     ;o     =o     Ao     Xo     ^o     go     ~o     o     o     o     o     o     p     (p     ?p     Up     cp     zp     p     p     p  %   p     p     p     p     q     .q     Dq     Sq     fq     wq  *   q  3   q     q  "   	r  8   ,r     er     wr  	   r  #   r     r     r     r     s     3s     Js  )   Ys     s     s     s  P   s     /t     Dt  H   Yt  &   t     t     t  !   t  ,   
u     7u     Cu     Gu  	   du  !   nu  *   u     u     u     u     u     v  $   ,v     Qv     cv     uv     v     v     v  
   v  
   v     v  1   w     @w     Nw     [w     tw  3   w  >   w  $   x     (x     ?x     \x     tx     x     x  +   x     x     y  #   )y     My     dy  $   y     y     y  '   y  9   z     @z     Yz  z   wz     z     z  8   {     F{  
   ]{     h{     u{     {     {     K|  +   h|     |     |     |  "   |     |     }  (   }     @}     X}     d}     t}     }     }  "   }  0   }     ~     ~     ~  7   $~     \~     d~     p~     ~     ~     ~  0   ~     ~     ~            2   .  %   a            *     6     +        9     W     j  !   ;  d   ]  e     d   (  i     o     H   g          Ã     ك                    -     D  #   ]                 1   Ʉ  )        %     ,     .     C  /   R                 5   Ņ            K   6                    І     Ԇ     چ     ߆  '     P        ]     |  	                    '   ȇ  +             -  )   I     s               È     ؈            $        @     R  "   m                 (        ԉ     ؉  "   މ  +     -   -     [     t                 O                  4     K     Y  %   m       )     !   ܋  "        !     =  +   T                 !        ی                     3     T     o                    Ѝ  4             4     F     ^     y               Ǝ        !        &  4   @  M   u  2   Ï            *   .  8   Y                    ΐ       3     $   1  +   V                         ϑ                     =     R     T  D   l       7     ;        ,     L  !   k            s   Ó     7     O     l     }                    ה                         T     g     {                    Ɩ  '   ݖ  
                  5     :     R     V     h  H        Η                 %        B     \  #   u               Ә     ܘ                 3     T  "   a  (          %   ə       2   	     <     E  #   ^  *                    #   ǚ            	     	     "     ;   9  #   u  <        ֛            .     	   ?     I  `   [       !   ќ  )             !     '     /  q   <               ٝ                    (     =     \  "   {               О                    )     B  #   W     {       g                    -   ؠ       !        <  "   M  '   p  Q                        4     B     X     u               ̢                     *     K     `      s               ã     ԣ  -        "     <  "   P  b   s  )   ֤                .  ,   I     v       	     "     %                         &     )   8     b  ^   u     Ԧ  $     %        9  ^     _   K  }        )  )     '   
  >   2  D   q  !     '   ت  -      #   .     R  )   r       )     )     ,        :     Z     s            E     $      A   %  )   g               ʭ                %  q   :       :   ɮ          "     1     Q     n                 0   ̯               0  )   F  &   p               ϰ       )        (  %   8  %   ^  ,     '     :   ٱ       -   3     a  .   q            '   ǲ  $     "        7     C     `  *   n            )     o   ҳ     B     [  6        L     N  0   U        !     "   ɵ  #             "     @     V  !   u       
          <   Ҷ  %     >   5     t     }                      d   ӷ  *   8  0   c  6        ˸     Ӹ               
       0   *     [  !   n            $                       2     C  $   `  "     $        ͺ                     ,     >     P     b     o            '               $      +   E  "   q       )        ż     ׼               *  '   >     f            <                        /  m   J          Ӿ                  +   :  3   f  1        ̿  '   ڿ  -        0  '   9  '   a  .     	                            /     K     g                      *     ?     B   B  p          /               .     O     )   [            	          5                  2     H     c  :   }                                             8     N     _     e  	   r     |                                     
     
     	        %  !   +  )   M     w                 F     N   !     p  "   ~            -     -     $     #   9  0   ]  6                    (     1     )   O     y       !                     %        4  &   H     o             7     .      4   /     d                      %             !     6     M     f                 ,                       "     5     H  #   ]            B                  4     G     b     y  &                              &   (     O     g            ;     V     "   9  &   \  !                    /     H     F   X  w     N     (   f            I     $     '   &     N  %   g                      $     '     *        E     _     n  J                    -     +   J     v  $   |       "     +     J     %   D     j        "                             +     >     V     k       %                    %        D     [     n            [          !        0     I     ]     b                                             .     F     b     x                           1        6     F     ^     q               ^  1   l       0               !        :     W     m                                                       .     @  &   V     }                      '     &   &     M  L   Z            !                  ,     I     ^     p                      #     #     $        0     @  &   Q     x  !                              	     7        >  %   X  [   ~  w     7   R  K     #     /        *     E     c  &     U     @     Q   ?                 +          R     L   q  .               F   	     P     f     }                                    &  2   A  !   t  #                                 /     O     g       (     #             
          =  )   P     z       '     '     '        %  0   D     u       -     8             -  !   D      f            .          !     B   !  E   d  B         6     2     #   ;  *   _       6     "     H      
   I     T     a     w  +          "     &          ;   -  ?   i  1                              }  >     \        4  9        !  ,   3     `  -   s       8               0   +  #   \  =                         Z     
   m  	   x  (     8     :     8     8   X  9     +     9     3   1  8   e  ,     ,             	       F     H   b  
          :     	    E    )   R    | 2    9    2    9       Y    e 5   g     "        $        3   /    c                 5        8    3   F (   z              #        <   7    t ?    *    <       9 %   V    |    1     *   3    ^    {    }         	        (    ;    (   '	 5   P	 /   	 /   	    	 1   
 /   6
 #   f
 3   
    
    
    
    
 F   
 ?   9    y !    3    $           !    ; $   S [   x L    /   ! O   Q L        .       . .   6 ,   e     (                 :   , /   g ,    7    r       o     W    3       /    M +   Z B                     ;    4   N %                 "    7   %    ] '   o ,    -    .    -   !    O    ` #   t ?        
    2       " S   ; L    >    /    .   K $   z '    A    )   	 <   3 /   p (    0    $    /    =   O *    1    F    ^   1 7    +            0    Y    !   h         %    %            G       <    V "   s ,            F    $   9    ^    t     )        -    5    	   D    N    i V                         3     J  6   Y                      P     .   J!    y!    ! 8   ! H   ! C   3" >   w"     " 3  " /   $    ;$    $    ~%    &    & |   ' '    (    ((    G(    a(    z(    (    (    ( 1   ( &    )    G)    e) /   }) G   ) 
   )     *    *    * 8   4*    m*    * (   * \   * )   !+    K+ `   g+ .   + (   + &    ,    G,    K,    Q,    V, A   _, o   , #   -    5- 	   I-    S- !   V- !   x- >   - >   -    . !   (. @   J.    .    . )   .    . -   / %   3/ '   Y/ )   /    / *   / H   /    90    ;0    M0 K   ^0    0    0 5   0 E   0 <   01 "   m1    1    1 "   1 %   1 {   	2     2 +   2 .   2    3 0   3 I   K3 6   3 N   3 4   4 5   P4 #   4 #   4 <   4    5    #5 $   ;5 )   `5 #   5    5    5    5 )   5 #   6    ?6 (   X6    6    6    6 @   6 #   7    17    B7 9   ^7 8   7 7   7 4   	8 !   >8    `8 -   ~8 ,   8 Q   8 i   +9 L   9 (   9 E   : ?   Q: L   :    :    :     ;    ';     G; [   h; :   ; 7   ;    7<    Q<    j<    <    < &   < ,   < )   =    1=    F=     H= y   i=    = J   = ]   7> +   > 0   > -   > 0    ? .   Q?    ? !   L@ "   n@    @    @ )   @    @ *   @    )A    <A    @A *  FA V  qB    C    C 	   C    D ,   D "   ?D    bD @   D    D    D    D    E    E    "E    'E #   7E    [E    E %   E    F    4F D   KF    F    F E   F 3   G 5   DG    zG    G 3   G 2   G 2   H ,   BH #   oH 4   H    H -   H $   I G   9I    I !   I 4   I 5   I    J    J    5J =   EJ    J +   J    J    J @   J \   K @   lK ]   K    L '   #L    KL 4   [L    L #   L    L    RM +   _M A   M    M    M    M    M    M    N    N    N    N %   O &   )O "   PO /   sO 3   O -   O (   P )   .P !   XP "   zP "   P    P !   P    Q *   Q 1   IQ 5   {Q    Q    tR "   bS .   S 6   S    S /   	T    9T 8   QT E   T    T    WU    uU    U ,   U    U +   U %   V +   ?V %   kV *   V $   V    V     V ;   W     VW    wW %   W #   W    W #   W &   X 6   AX    xX    X /   X    X B   rY #   Y    Y !   Y A   Z (   SZ    |Z    Z ;   Z ,   Z 
   Z    [    [     [ /   ,[ 6   \[ (   [    [    a\ 3   ~\ 4   \    \    ]    p^    ^ 0  _ -   ` 2   a o   Ma p   a '   .b 6   Vb =   b /   b 1   b 8   -c    fc ?   c 8   c A   c (   ?d *   hd *   d    d    d k   d 0   ae x   e 8   f .   Df 3   sf -   f 7   f 3   g    Ag    ag $   h A   6h /   xh    h ,   h $   h    i    &i ;   Ci .   i ?   i F   i 0   5j )   fj L   j >   j .   k /   Kk !   {k .   k 4   k    l /   l /   Hl 6   xl 1   l V   l +   8m -   dm    m ]   m    m #   n 9   9n 1   sn ,   n    n 2   n    o 9   ,o    fo    so T   o    o     mp   p S   q    q    q K   q 6   Er ;   |r 7   r 4   r !   %s $   Gs (   ls -   s 3   s '   s    t #   2t X   Vt L   t L   t 
   Iu    Tu    Xu .   ^u 5   u !   u    u F   v 3   v }   #w    w    w     w )   w    x .   x R   Fx    x /   x 4   x    y 5   -y %   cy    y #   y    y -   y 9   z *   Nz &   yz     z    z :   z    { $   8{ /   ]{ $   {    { +   { *   { )   | I   I| 7   | &   | @   | E   3} @   y}    } :   }    ~ 0    ~ 6   Q~    ~    ~ /   ~ 5   ~ ?   ' +   g <             !    !    {   A %                 %   ? [   e l    W   . 
    :    8   ̂     5    =   H O    	   փ          (    "   F (   i "    '    !   ݄     #       8 5   = N   s H            /   Q          ;    ]    =   V !           ƈ     Ո 5       ,    C    _    z      P        %   %    K #   Z    ~ "                               *    = ,   U #        /                       9 	   I    S #   Y +   }         (   ݌ %    f   , l         $       A    M 0   m '    5   Ǝ <    0   9 <   j     *        )    =    P   X     "    /        B   , (   o 7       Б >    .   . ,   ] #    J    ?    J   9 +        '   ϓ      0    2   I    | 2       Δ "    1   	    ;    T -   b ,           ֕ &    !       < !   Y #   { #        Ö f    2   K (   ~     :        '    ;   9    u         ,        4    )   ; :   e     !    N   љ q     +    :    #    %    	   C 7   M J    k   Л    <     `    7        $    E Q   Q 8    (   ܞ      %   &    L    P %   d     '    7   ǟ B       B     \    }         2   7    j O    Y   ء    2 5   8    n M   | G   ʢ @    9   S     4    A   ڣ '    #   D '   h )    (    *        ,   - &   Z 8           ٥     *       ?    ^ &   z         1  Ӧ     +   ! %   M    s     #        "   Ѩ &    #        ? ,   ` &    G        '    #   :    ^ !   x 6       Ѫ     +   
 `   6     &    !   ݫ           7    T ;   e 4    A   ֭ 
       # (   > +   g &    )                        7    C    S    d    v         "    4   ϯ 1    #   6 #   Z "   ~ !    5   ð 9       3 l   B &    6   ֱ -    .   ;    j /           ϲ            *    C    a 9   z 9    :       )    B 9   ]     0               "    1 &   I    p Z   v /   ѵ 0    r   2     ]   f Y   ķ )    ;   H !    "    "   ɸ 3    b     [    p   ߹    P (   e $    ?    '            T   2             .     #   O     s ,    &    +    5    +   J '   v &    I   ž 1    +   A    m )        D   ¿ 7    *   ? .   j =    7    <    =   L                 ?    ,   $ 5   Q F    <    H    4   T J    (    6    H   4 T   } %        ?    +   U .        C    )   
 -   4 x   b H    `   $                w         g        X            S       U  ^  |                    2  e  K  H  ^    1                          /  6    C              "                              O         F  r   O      b  '      ^      Q  A      G     
  ,                                                      s                        y  L    I    '   /    =          l   l  5          ;      z   <  .          ^  v              J             H  Q    J       4            O  w  8  o    Q        
       m                     2  3       4       g                 (         X  &           0            8            e      Z   j      r      !  Q         A  ,              6   K  2      n  ]      )     y                   c              d    d  h  s     @      P  ;            &    ?     3  n  q        /  v     R  m              )   [   @        >      -  s    v      s    S  ,       f          Z  0                 @    T    {            i      
         i  J          M       Z        $  N  *     0          o                     5            9   !  _  ?                 N          {      #  "    *  1    7  Y           -              N   P   #  m  f           O     p              `  -                        I       W             7  r  Y    }  )              w      h       ?           _                                      u    E  ]               5                                j  k  |   ,  L      k      G  P  ]       
           j  [     [           (  !                                                                     	  +              @               k    O    z     9  ]              4        *  b       1    )                    %                                      v       ,  V               E   L                                 M  &                    \        ;                            '    0      F      a                 q  ?                          n                        %                (  Z     A      )                          :    {   c       5     W      l  ;   T      Y  (  Z                <    b   7   f      M  +            S    0            9  t          B            <     D          5          S  u     B  3             3           }  @  `                       /            H                  9  z  =                     L          /   1             \                      -       [                    !                {              7  I   &    9         A      U      K  M                 e                        `  m    _   `                          e            _  |          :        I          >            (                 i            Y      b      j   p    n                 e      
  _  4          >  q   P  E    g                 K       *  %        X                }                           o  a  N  -      %     x          H   	                1           4      z      V         t         "   =                        W                       c                                   \                            ?         d        X                               6  .    f      :   E  s              	            H          S      g        K  D            }               o                       D                         a    J    ^   G  $                  i    j                p          ~          T           L  G          c                                   +           k        Y             l           C        q          *   8        <         T      q                 N     <  !             2   h  8        p                  6      y                     ~                          :  B       u    D              8                 #      l    F  w        V          x      u      W      R                 3    P            E      V   >                g      k                             .    b                               U                    r        m              =  2  "            c  y      A   G               R             B    a      \  ]  C  W      $      M                            V  \              >     .                                 p   	        v      F      n        +    :  d  6      x             J      t  "                    I            U                                            C        t          h          B  D  .                     ;        x               %      U                Q      C   	         F                              o  [  7    a      =                   #        r    $      R          `       &  R    T                    #  |        '  d      '            i   u  +     h        t            ~           f  $  X              ~                   total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
   or:   (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown  [OPTION...] %.*s: ARGP_HELP_FMT parameter must be positive %.*s: ARGP_HELP_FMT parameter requires a value %.*s: Unknown ARGP_HELP_FMT parameter %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s generates a keyboard layout for GRUB using ckbcomp\n %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s is not yet supported by grub-mkconfig.\n %s, with Hurd %s %s, with Hurd %s (recovery mode) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with Xen hypervisor %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: Too many arguments
 %s: You must run this as root\n %s: error: %s: info: %s: invalid option -- '%c'
 %s: option '%c%s' doesn't allow an argument
 %s: option '%s' is ambiguous; possibilities: %s: option '--%s' doesn't allow an argument
 %s: option '--%s' requires an argument
 %s: option '-W %s' doesn't allow an argument
 %s: option '-W %s' is ambiguous
 %s: option '-W %s' requires an argument
 %s: option requires an argument -- '%c'
 %s: option requires an argument -- `%s'\n %s: unrecognized option '%c%s'
 %s: unrecognized option '--%s'
 %s: warning: (32-bit) (64-bit) (PROGRAM ERROR) No version known!? (PROGRAM ERROR) Option should have been recognized!? (on %s) - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ARGP_HELP_FMT: %s value is less than or equal to %s ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add a DNS server Add a network address. Add a network route. Advanced options for %s Advanced options for %s (with Xen hypervisor) Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear the screen. Cleared active flag on %d. 
 Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File size: %s
 File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Found %s on %s (%s)\n Found %s on %s\n Found GNU Mach: %s Found Hurd module: %s Found NetBSD kernel: %s\n Found background: %s\n Found initrd image: %s\n Found kernel module directory: %s\n Found kernel of FreeBSD: %s\n Found linux image: %s\n Found theme: %s\n Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Garbage in ARGP_HELP_FMT: %s Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a grub config file Generate a standalone image (containing all modules) in the selected format Get crc32 checksum of FILE. Get disk cache info. Get/set ATA disk parameters. GiB GiB/s HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS Import ZFS wrapping key stored in FILE. Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Invalid back reference Invalid character class name Invalid collation character Invalid command %s.
 Invalid content of \{\} Invalid device `%s'.
 Invalid disk count.
 Invalid preceding regular expression Invalid range end Invalid regular expression Invoke user configuration routing. K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt List DNS servers List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List coreboot tables. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading kernel of Illumos ... Loading the Hurd ... M MAC verification failed MENU_ENTRY is a number, a menu item title or a menu item identifier. MODULE Mail xorriso support requests to <bug-xorriso@gnu.org>. Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make GRUB keyboard layout file. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options. Manipulate PCI devices. Measure time used by COMMAND Memory exhausted Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry not specified. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? More than one menu entry? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No match No path is specified.
 No path or device is specified.
 No previous regular expression No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Option -- switches to native xorriso command mode. Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] PUBKEY_ID Paletted  Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Please don't use old title `%s' for GRUB_DEFAULT, use `%s' (for versions before 2.00) or `%s' (for 2.00 or later) Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Premature end of regular expression Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read only LENGTH bytes. Reboot failed Reboot into firmware setup menu. Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Regular expression too big Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Render Apple .disk_label. Report bugs to %s.
 Report bugs to <bug-grub@gnu.org>. Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used. Reset all mappings to the default values. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the default boot menu entry for GRUB, for the next boot only. Set the default boot menu entry for GRUB. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show CBMEM console content. Show a help message. Show a long list with more detailed information. Show contents of FILE in hex. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show the contents of a file. Show the current mappings. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Slot %d opened
 Some Hurd stuff found, but not enough to boot. Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Store matched component NUMBER in VARNAME. Success Sunday Suppress normal output (warnings remain). Switch to native disk drivers. If no modules are specified default set (pata,ahci,usbms,ohci,uhci,ehci) is used Syntax error at line %u
 Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
%s file attached. System management bus controller I/O space is at 0x%x
 T TARGET Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This entry can be booted by any user. This requires setting GRUB_DEFAULT=saved in %s/default/grub.\n Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Trailing backslash Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Translates the string with the current settings. Try '%s --help' or '%s --usage' for more information.
 Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown gsub font feature 0x%x (%s)
 Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown system error Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unmatched ( or \( Unmatched ) or \) Unmatched [ or [^ Unmatched \{ Unrecognized option `%s'\n Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported image format Unsupported substitution flag: 0x%x
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s -o OUTPUT CKBMAP_ARGUMENTS...\n Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Usage: %s [OPTION] MENU_ENTRY\n Usage: %s [OPTION]\n Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Windows NT/2000/XP (loader) Windows Vista/7 (loader) Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Written SPD bytes: %d B.
 Xen hypervisor, version %s YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. Your embedding area is unusually small.  core.img won't fit in it. Your xorriso doesn't support `--grub2-boot-info'. Some features are disabled. Please use xorriso 1.2.9 or later. Your xorriso doesn't support `--grub2-boot-info'. Your core image is too big. Boot as disk is disabled. Please use xorriso 1.2.9 or later. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [vendor]:[device] `cryptomount' command fails: %s `loopback' command fails: %s `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 bitmap file `%s' is of unsupported format blocklist FILE blocklists are invalid blocksize is not divisible by 512 can't break 0 loops can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s cannot compress the kernel image cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot get translator command line for path `%s': %s cannot open OS file `%s': %s cannot open `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot restore the original directory cannot seek `%s': %s cannot stat `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit disable hinting disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. diskboot.img size must be %u bytes do not probe for filesystems in DEVICE domain name component is too long don't update LED state done embed FILE as an early config embed FILE as public key for signature checking embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enable ARCS (big-endian mips machines, mostly SGI) boot. Disables HFS+, APM, sparc64 and boot as disk image for i386-pc enable sparc boot. Disables HFS+, APM, ARCS and boot as disk image for i386-pc enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 expect GRUB images under the directory DIR/%s instead of the %s directory failed to get canonical path of `%s' failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists firmware image is too big force autohint four arguments expected fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT give a short usage message give this help list given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> hang for SECS seconds (default 3600) hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification install GRUB images under the directory DIR/%s instead of the %s directory install even if problems are detected invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid block size invalid color specification `%s' invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. missing `%c' symbol missing mandatory option for `%s' module `%s' isn't loaded module isn't loaded name need an image and mountpoint no APM found no DHCP info found no DHCP option %d found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no `/' in canonical filename no command is specified no decryption key available no network card found no server is specified no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body one argument expected other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified output generated config to FILE [default=stdout] overflow is detected passwords don't match perform a bootp autoconfiguration physical volume %s not found premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print program version print the version information and exit print this message and exit print verbose messages. public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%x is not implemented yet reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory of TFTP server route loop detected save ROM images in DIR [optional] save output in FILE [required] select face index serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory [default=%s] set scrolllock mode set the program name size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the argument `%s' requires an integer the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the first sector of the core file is not sector-aligned the installation device is removable. This option is only available on EFI. the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected end of file unknown argument `%s' unknown compression %d
 unknown device type %s
 unknown filesystem unknown kind of RAID device `%s' unknown regexp error unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for label use COLOR for label background use COLOR for text use DIR as the EFI System Partition root. use FILE as font (PF2). use FILE as font for label use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] variable `%s' isn't set visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists wrong ELI magic or version xnu_uuid DEVICE xz file corrupted or unsupported block options you can't delete this address you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub-2.00+20130519
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2013-05-23 08:25+0700
Last-Translator: Trần Ngọc Quân <vnwildman@gmail.com>
Language-Team: Vietnamese <translation-team-vi@lists.sourceforge.net>
Language: vi
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=1; plural=0;
X-Poedit-SourceCharset: UTF-8
X-Generator: Poedit 1.5.5
               tổng dung lượng bộ nhớ: %d KiB
     Không có chế độ mong chờ sẵn dùng
     Chế độ mong muốn: %ux%u
   tổng kiểm tra EDID không hợp lệ   phiên bản EDID: %u.%u
  Gặp lỗi khi khởi tạo bộ điều hợp video  Không có thông tin sẵn dùng   ttin VBE:   phiên bản: %d.%d  phiên bản phần mềm OEM: %d.%d
   hoặc:  (cực tả) (đa phương tiện) (cực hữu)  - Phân vùng bắt đầu tại %llu%sKiB  - Kích thước cung từ %uB  - Tổng kích thước %llu%sKiB  - Không hiểu tổng kích thước  [TÙY_CHỌN...] %.*s: tham số “ARGP_HELP_FMT” phải là số dương %.*s: tham số “ARGP_HELP_FMT” yêu cầu một giá trị %.*s: Không hiểu tham số “ARGP_HELP_FMT” %ds còn lại %ds. Có vẻ là %s chứa một hệ thống tập tin %s mà (theo thông tin hiện thời) không dành riêng sức chứa cho sự khởi động kiểu DOS. Vì thế việc cài đặt GRUB vào đó có thể gây ra HỆ THỐNG TẬP TIN BỊ HỦY nếu dữ liệu quan trọng bị ghi đè bởi tiến trình cài đặt GRUB (grub-setup). Tuỳ chọn “--skip-fs-probe” tắt hàm kiểm tra này: hãy tự chịu trách nhiệm khi sử dụng nó. Có vẻ là %s chứa một ánh xạ phân vùng %s và LDM cái mà (theo thông tin hiện thời) không biết có phải là tổ hợp an toàn hay không. Vì thế việc cài đặt GRUB vào đó có thể gây ra BỘ PHÁ HỦY HỆ THỐNG TẬP TIN nếu dữ liệu quan trọng bị ghi đè bởi tiến trình cài đặt GRUB (grub-setup) (tuỳ chọn “--skip-fs-probe” tắt hàm kiểm tra này, hãy tự chịu trách nhiệm khi sử dụng nó) Có vẻ là %s chứa một ánh xạ phân vùng %s mà (theo thông tin hiện thời) không dành riêng chứa cho bộ khởi động kiểu DOS. Vì thế việc cài đặt GRUB vào đó có thể gây ra BỘ PHÁ HỦY HỆ THỐNG TẬP TIN BỊ HỦY nếu dữ liệu quan trọng bị ghi đè bởi tiến trình cài đặt GRUB (grub-setup) (Tuỳ chọn “--skip-fs-probe” tắt hàm kiểm tra này, hãy tự chịu trách nhiệm khi sử dụng nó) %s không hỗ trợ UUIDs %s tạo giao diện bàn phím cho GRUB sử dụng ckbcomp\n %s đã lỗi thời. Sử dụng set gfxpayload=%s trước lệnh linux để thay thế.
 không tán thành sử dụng %s. Chế độ VGA %d không được chấp nhận. Sử dụng đặt gfxpayload=RỘNGxCAO[xSÂU] trước câu lệnh linux để thay thế.
 %s vẫn chưa được hỗ trợ bởi grub-mkconfig.\n %s, với Hurd %s %s, với Hurd %s (chế độ phục hồi) %s, với Linux %s %s, với Linux %s (chế độ phục hồi) %s, với Xen %s và Linux %s %s, với Xen %s và Linux %s (chế độ phục hồi) %s, với bộ ảo hóa Xen %s, với kFreeBSD %s %s, với kFreeBSD %s (chế độ phục hồi) %s, với kernel %s (thông qua %s) %s, với kernel %s (thông qua %s, chế độ phục hồi) %s: KHÔNG KHỚP MÃ BĂM
 %s: OK
 %s: LỖI ĐỌC
 %s: Quá nhiều đối số
 %s: Bạn phải chạy chương trình này với tư cách siêu người dùng (root)\n %s: lỗi: %s: ttin: %s: tùy chọn không hợp lệ -- %c
 %s: tùy chọn “%c%s” không cho phép đối số
 %s: tùy chọn “%s” chưa rõ ràng; khả năng là: %s: tùy chọn “--%s” không cho phép đối số
 %s: tùy chọn “--%s” yêu cầu một đối số
 %s: tùy chọn “-W %s” không cho phép đối số
 %s: tùy chọn “-W %s” vẫn mơ hồ
 %s: tùy chọn “-W %s” yêu cầu một đối số
 %s: tùy chọn yêu cầu một đối số -- %c
 %s: tùy chọn yêu cầu một tham số -- “%s”\n %s: không nhận ra tùy chọn “%c%s”
 %s: không nhận ra tùy chọn “--%s”
 %s: cảnh báo: (32-bit) (64-bit) (LỖI CHƯƠNG TRÌNH) Không có phiên bản nào được biết!? (LỖI CHƯƠNG TRÌNH) Tùy chọn vẫn chưa được thừa nhận!? (trên %s) - Nhãn “%s” - Sửa đổi cuối cùng %d-%02d-%02d %02d:%02d:%02d %s --THÊM-- -h BĂM [-c TẬP-TIN [-p TIỀN-TỐ]] [TẬP-TIN1 [TẬP-TIN2 ...]] -l | -r | [-s] grubdev đĩa_chứa_HĐH. .5 giao diện bảo vệ 16-bit được hỗ trợ
 giao diện bảo vệ 16-bit không được hỗ trợ
 giao diện bảo vệ 32-bit được hỗ trợ
 giao diện bảo vệ 32-bit không được hỗ trợ
 =GIÁ-TRỊ > RAM cho APCI sử dụng ở chế độ ngủ đông ACPI có thể cải tạo RAM Tắt máy kiểu ACPI gặp lỗi ĐỊA_CHỈ ĐỊA_CHỈ GIÁ_TRỊ [BỘ_LỌC] ĐỊA-CHỈ [KÍCH-THƯỚC] ĐCHỈ1, MẶT-NẠ1[,ĐCHỈ2, MẶT-NẠ2[,...]] ĐỊA-CHỈ MÁY-CHỦ-DNS APM bị tắt
 APM đã bị bỏ gắn
 APM được bật
 APM được gắn
 ARGP_HELP_FMT: giá trị %s nhỏ hơn hay bằng %s ASCII Chấp nhận kiểu xuống dòng kiểu-DOS là CR/NL. Thiết bị cuối đầu vào đang kích hoạt: Thiết bị cuối đầu ra sẵn có: Bộ tiếp hợp “%s”:
 Thêm máy chủ DNS Thêm một địa chỉ mạng. Thêm một định tuyến mạng. Tùy chọn nâng cao cho %s Các tùy chọn cấp cao cho %s (với bộ ảo hóa Xen) Cho phép ngắt bằng ESC. Yêu cầu tên tập tin từ đó cần khởi động lại. Coi đầu vào dạng thập lục phân. Coi đầu vào là passpharse (mật khẩu cho tập tin). Coi đầu vào dạng thô. Đang thử giải mã khóa chủ... Đang thử cài đặt GRUB vào một đĩa với đa nhãn phân vùng, hoặc cả hai nhãn phân vùng và hệ thống tập tin. Tính năng này chưa được hỗ trợ. Đang thử cài đặt GRUB vào một đĩa với nhiều nhãn phân vùng. Đặc tính này vẫn chưa được hỗ trợ. Đang thử cài đặt GRUB vào một đĩa không có phân vùng hoặc một phân vùng. Đây là một ý kiến TỒI. Thiết bị cuối đầu vào sẵn có: terminal xuất sẵn dùng: B B/s BIOS_DUMP [INT10_DUMP] KHỐI BYTE:BÍT Chế độ ảnh nền/ Thư mục cơ sở cho danh sách băm. Khởi động hệ thống ở chế độ BIOS cơ bản. Khởi động một hệ điều hành. Khởi động vào chế độ người dùng đơn. Khởi động với thông điệp gỡ lỗi. Khởi động với thông điệp chi tiết. Đang khởi động “%s” Đang khởi động một danh sách câu lệnh Khởi động trong chế độ khuyết tật Đường dẫn khởi động: %s
 Đường dẫn khởi động: không sẵn sàng
 Ngắt vào GDB CGA  MÀU LỆNH [CÁC-ĐỐI-SỐ] CPU ở trạng thái Idle không giảm tốc độ xử lý xuống
 CPU ở trạng thái Idle giảm tốc độ xử lý xuống
 CS5536 tại %d:%d.%d
 Không thể cho phép vùng ROM. Thay đổi các thiết bị được cấu hình. Thay đổi kiểu của phân vùng Kiểm tra phím Alt. Kiểm tra phím Control. Kiểm tra phím Shift. Kiểm tra có các tính năng CPU. Kiểm tra mã băm của các tập tin với mã băm được liệt kê trong TẬP-TIN Kiểm tra xem CPU có hỗ trợ chế độ 64-bit (long) (mặc định). Kiểm tra trạng thái về phím bổ trợ. Kiểm tra xem tài khoản có ở trong DANH-SÁCH-NGƯỜI-DÙNG hay không. Kiểm tra tập tin cấu hình “GRUB script” xem có lỗi gì không. Xoá màn hình. Đã xóa bỏ cờ hoạt động trên %d. 
 Lệnh: So sánh TẬP-TIN với tập tin CỤC-BỘ. So sánh tập tin “%s” với “%s”:
 So sánh hai tập tin. Tính toán XNU UUID của thiết bị. Tính hay kiểm tra mã băm. Cấu hình cổng nối tiếp. Tiếp tục vòng lặp Chuyển đổi định dạng phông chữ chung sang PF2 Sao chép TẬP-TIN tới tập tin CỤC-BỘ. Xuất TẬP-TIN ra đầu ra tiêu chuẩn. Không thể cấp phát điểu khiển (driver) FPSWA Không thể tìm thấy vùng vật lý “%s”. Một số mô-đun có lẽ đã bị thếu trong ảnh lõi. Không thể tải sha256 Không thể tải sha512 Tạo cấu trúc giống-BIOS để tương thích ngược với các HĐH sẵn có. Tạo khối môi trường có nội dung trắng. Kiểu terminfo hiện tại: THIẾT_BỊ THIẾT_BỊ [PHÂN_VÙNG[+/-[KIỂU]]] ... THIẾT-BỊ phải là một thiết bị OS (ví dụ /dev/sda). TÊN-THIẾT-BỊ TMỤC THƯ_MỤC [bó_HĐH_yêu_cầu] MÁY-CHỦ-DNS Công cụ gỡ lỗi cho ổ đĩa hệ thống tập tin. Khai báo vùng bộ nhớ bị hỏng (hỏng ram). Tập tin đã giải nén quá lớn Định nghĩa một mục menu. Định nghĩa menu con Xóa một địa chỉ mạng. Xóa một định tuyến mạng. Xóa ổ đĩa (loopback) vòng ngược đã chỉ ra. Xóa các biến. Quyết định trình điều khiển. Quyết định UUID hệ thống tập tin. Quyết định nhãn hệ thống tập tin. Quyết định kiểu hệ thống tập tin. Quyết định kiểu sơ đồ phân vùng. Thiết bị %s: IDThiết bị: %s
 ID thiết bị: không sẵn sàng Màu trực tiếp, mặt nạ: %d/%d/%d/%d  vtrí: %d/%d/%d/%d Tắt ACPI. Tắt SMP. Tắt tất cả các kết xuất khởi động. Bật/tắt SMART (0/1). Đang bỏ qua phân vùng lồng nhau một cách không thích hợp (%s,%s,%s%d) Thống kê bộ nhớ đệm đĩa: hits = %lu (%lu.%02lu%%), misses = %lu
 Số lượng đĩa phải đứng trước danh sách đĩa.
 Hiển thị số thứ tự phiên bản FPSWA Hiển thị trạng thái sứa khỏe SMART. Hiển thị một dòng văn bản. Hiển thị blocklist của TẬP-TIN. Hiển thị kết xuất trên tất cả các bàn giao tiếp. Hiển thị chế độ nguồn điện. Hiển thị cách sử dụng lệnh này, sau đó thoát. Hiển thị trợ giúp này, sau đó thoát. Hiển thị/đặt giờ hiện thời. Đừng xuất ra ký tự dòng mới theo sau. Đừng hiển thị thông điệp. Không tìm thấy bất kỳ đĩa mềm nào. Đừng dùng APM để tạm dừng lại chạy máy tính. Không làm gì, một cách thành công. Không làm gì, một cách không thành công. Đừng hiển thị các thông điệp chẩn đoán khởi động. Đừng tải các bảng chủ chỉ rõ trong danh sách định giới bằng dấu phẩy. Đừng khởi động lại, chỉ tạm dừng lại. Không dừng lại sau lỗi đầu tiên. Đừng cập nhật EBDA. Có thể sửa chữa trường hợp thất bại hoặc bị treo trên một số BIOS nào đó, nhưng mà làm cho nó mất hiệu lực khi HĐH không nhận RDSP từ GRUB. BIẾN_MÔI_TRƯỜNG BIẾN_MÔI_TRƯỜNG [BIẾN_MÔI_TRƯỜNG]... LỖI: không tìm thấy bố cục bàn phím hợp lệ nào. Kiểm tra đầu vào.
 Phím ESC lúc nào cũng thoát. BIỂU_THỨC BIỂU_THỨC ] Thời gian đã qua: %d.%03d giây 
 Thời gian đã qua: %d.%03d giây 
 Không thể nhúng được. GRUB chỉ cài đặt được vào cài đặt này bằng cách sử dụng danh sách cấm. Tuy nhiên, danh sách cấm vẫn không đáng tin và cách dùng của chúng thì khó khăn. Mô phỏng chuỗi phím gõ Hiệu lực khả năng biên dịch ký tự thoát xuyệc ngược. Nhập mật khẩu ZFS:  Vào KDB khi khởi động. Vào chế độ thông thường. Gõ cụm từ mật khẩu cho %s%s%s (%s): Nhập mật khẩu:  Gõ tên người dùng: Gặp lỗi khi phân tích cú pháp của tùy chọn dòng lệnh.
 Ước lượng một biểu thức. Thoát ra gặp lỗi Thoát khỏi GRUB. Thoát khỏi vòng lặp Thoát từ chế độ thông thường. Xuất các biến. Xuất ra bảng phiên bản một cho HĐH. Xuất ra bảng phiên bản 2 và 3 tới cho HĐH. TẬP-TIN TẬP-TIN[ĐỐI-SỐ ...] TẬP-TIN [THAM-SỐ...] TẬP-TIN | TEMPO [CAO-ĐỘ-1 TRƯỜNG-ĐỘ-1] [CAO-ĐỘ-2 TRƯỜNG-ĐỘ-2] ...  TẬP-TIN... TẬP-TIN1 TẬP-TIN2 TÊN-TẬP-TIN LỆNH HỆ-THỐNG-TẬP-TIN  [BIẾN] TẬP-TIN|dấu-nhắc ĐỊNH-DẠNG Giao thức FPSWA không thể tìm thấy giao diện Phiên bản FPSWA: %x
 TỪ-ĐẾN[,TỪ-ĐẾN] TỪ[K|M|G] ĐẾN[K|M|G] FT_Init_FreeType gặp lỗi Gặp lỗi khi khởi động cả hai mục mặc định và “fallback”.
 Gặp lỗi khi tạo cây “device-mapper” Quay trở lại “%s” Kích thước tập tin: %s
 Hệ thống tập tin “%s” không hỗ trợ nhúng Các tập tin khác nhau tại khoảng bù %llu: 0x%x [%s], 0x%x [%s]
 Các tập tin khác nhau ở kích thước: %llu [%s], %llu [%s]
 Không thể truy cập được đến hệ thống tập tin Hệ thống tập tin kiểu %s Tô đầy MBR pha (hybrid) của “THIẾT_BỊ” ổ đĩa GPT. Các phân vùng đã chỉ ra sẽ thuộc về MBR hybrid. Cho phép đến 3 phân vùng. “KIỂU” là một kiểu MBR. “+” có nghĩa là phân vùng đó vẫn hoạt động. Chỉ một phân vùng có thể hoạt động. Hoàn thành việc tải bộ mô phỏng EFI. Trước tiên thử thiết bị GỢI-Ý nếu hiện tại chạy trên ARC. Nếu GỢI-Ý kết thúc bằng dấu phẩy, cũng thử cả phân vùng con Trước tiên thử thiết bị GỢI-Ý nếu hiện tại chạy trên BIOS. Nếu GỢI-Ý kết thúc bằng dấu phẩy, cũng thử cả phân vùng con Trước tiên thử thiết bị GỢI-Ý nếu hiện tại chạy trên EFI. Nếu GỢI-Ý kết thúc bằng dấu phẩy, cũng thử cả phân vùng con Trước tiên thử thiết bị GỢI-Ý nếu hiện tại chạy trên IEEE1275. Nếu GỢI-Ý kết thúc bằng dấu phẩy, cũng thử cả phân vùng con Trước tiên thử thiết bị GỢI-Ý nếu truy cập phần cứng trực tiếp được hỗ trợ. Nếu GỢI-Ý kết thúc bằng dấu phẩy, cũng thử cả phân vùng con Trước tiên thử thiết bị GỢI-Ý. Nếu GỢI-Ý kết thúc bằng dấu phẩy, cũng thử cả phân vùng con Sửa chữa vấn đề ảnh động. Tìm thấy %s trên %s (%s)\n Tìm thấy %s trên %s\n Tìm thấy GNU Mach: %s Tìm thấy mô-đun Hurd: %s Tải hạt nhân NetBSD: %s\n Tìm thấy nền: %s\n Tìm thấy ảnh initrd: %s\n Tìm thấy thư mục mô-đun hạt nhân: %s\n Tìm thấy hạt nhân FreeBSD.: %s\n Tìm thấy ảnh linux: %s\n Tìm thấy theme: %s\n Lỗi Freetype %d đang tải 0x%x cho U+0x%x%s Làm đông đặc cài đặt bảo mật ATA đến khi đặt lại. Thứ sáu G GNU GRUB phiên bản %s Menu Khởi động GRUB GRUB chưa hiểu làm cách nào để tắt máy này! Bộ mô phỏng GRUB. GRUBDEVICE=PLAN9DEVICE Gặp rác trong “ARGP_HELP_FMT”: %s Tạo bố cục bàn phím GRUB từ một (giao diện bàn điều khiển) console Linux Tạo mã băm mật khẩu kiểu PBKDF2 Tạo tập tin cấu hình Tạo ảnh đĩa dạng gộp (chứa toàn bộ các mô-đun) theo định dạng đã chọn Lấy tổng kiểm tra crc32 của TẬP-TIN. Lấy thông tin về bộ đệm đĩa. Lấy/đặt các tham số đĩa ATA. GiB GiB/s BĂM GỢI-Ý Tạm dừng lại chạy máy tính, nếu có thể, dùng APM. Tạm dừng máy tính. Câu lệnh này không có tác động trên mọi phần thực thi của firmware. Lấy N byte từ tập tin xuất. Chào thế giới! Hercules  ID ẢNH1 [ẢNH2 ...] ĐIỂN-GẮN ĐƯỜNG-DẪN-ẢNH CÁC-LỆNH Nhập vào khóa bao bọc ZFS được lưu trong TẬP-TIN. Thiết bị ảo không hợp lệ: kiểu không sẵn dùng Chèn mô-đun. Cài GRUB vào đĩa của bạn. Cài đặt đã hoàn thành. Không có lỗi nào phát sinh. Sai tham chiếu ngược Sai tên lớp ký tự Ký tự đối chiếu không hợp lệ Lệnh %s không hợp lệ.
 Nội dung của “\{\}” không hợp lệ Thiết bị không đúng “%s”.
 Số lượng đĩa không hợp lệ.
 Sai biểu thức chính quy đi trước Sai kết thúc phạm vi Biểu thức chính quy không hợp lệ Gọi chức năng định tuyến tùy theo cấu hình người dùng. K KERNEL C_T_CHỌN BÀN-PHÍM-PHÍM Phím được bấm từ bàn phím để khởi động nhanh mục này. KiB KiB/s Thiết bị ảo còn lại (tập tin hoặc đĩa) Tham số cũ “ask” hiện tại không còn được hỗ trợ. Lời ghi chú: mặt-nạ/vị-trí=red/green/blue/reserved Độ dài của mã băm tạo ra Độ dài của salt Liệt kê máy chủ DNS Liệt kê cạc thiết bị PCI. Liệt kê tất cả các tập tin. Liệt kê các chế độ video sẵn có. Nếu độ phân giải màn hình chỉ đưa ra một thì dùng luôn nó. Liệt kê bảng “coreboot” Liệt kê các thiết bị và tập tin. Liệt kê các thiết bị hoặc tập tin. Liệt kê thiết bị. Liệt kê các tập tin nằm trong THƯ-MỤC Liệt kê các sơ đồ vùng nhớ được cung cấp bởi firmware. Liệt kê các chế độ video được hỗ trợ: Liệt kê những tài khoản được phép khởi động từ mục này. Liệt kê hoặc chọn một terminal đầu vào. Liệt kê hoặc chọn một terminal kết xuất. Liệt kê các biến sẵn dùng. Liệt kê phông chữ đã tải: Liệt kê các biến từ tập tin khối môi trường. Tải ảnh XNU 64-bit. Tải bản đổ BIOS. Tải env (môi trường?) FreeBSD. Tải mô-đun hạt nhân FreeBSD (ELF). Tải mô-đun hạt nhân FreeBSD. Tải FreeDOS kernel.sys. Tải Linux. Tải NTLDR hoặc BootMGR. Tải mô-đun hạt nhân FreeBSD (ELF). Tải mô-đun hạt nhân FreeBSD. Tải hạt nhân Plan9. Tải thư mục phần mở rộng XNU. Tải gói mở rộng XNU. Tải phần mở rộng XNU. Tải ảnh XNU. Tải đĩa RAM XNU. Hệ điều hành (OS) sẽ là “md0”. Tải “device-properties” dump. Tải ảnh PXE. Tải bố cụ bàn phím. Tải một hạt nhân đa khởi động (multiboot) 2. Tải một mô-đun đa khởi động 2 (multiboot 2). Tải một hạt nhân đa khởi động (multiboot). Tải một mô-đun đa khởi động (multiboot). Tải một ảnh splash cho XNU. Tải ảnh ngủ-đông XNU. Tải vào khởi tạo bộ mô phỏng EFI. Tải một bộ tải khởi động khác. Tải một tập tin cấu hình khác nhưng chỉ thay đổi các mục menu. Tải một tập tin cấu hình khác mà không thay đổi ngữ cảnh nhưng lấy các mục menu. Tải một tập tin cấu hình khác mà không thay đổi ngữ cảnh. Tải một tập tin cấu hình khác. Tải một vùng tải lõi-khởi-động (coreboot payload) khác. Tải ảnh nền cho thiết bị cuối đang hoạt động. Tải các bảng ACPI chủ và các bảng được đối số chỉ rõ. Tải initrd. Tải đĩa RAM kOpenBSD. Tải hạt nhân của FreeBSD. Tải hạt nhân của NetBSD. Tải hạt nhân của OpenBSD. Chỉ tải chỉ bảng đã chỉ ra trong danh sách định giới bằng dấu phẩy. Tải cùng một tập tin theo nhiều cách khác nhau. Tải các biến từ tập tin khối môi trường. Tải khóa mã hóa zfs. Phông chữ đã tải: Đang tải GNU Mach ... Đang tải Linux %s ... Đang tải Xen %s ... Đang tải đĩa RAM khởi tạo ... Đang tải hạt nhân của FreeBSD %s ... Đang tải hạt nhân của Illumos ... Đang tải Hurd ... M Lỗi thẩm tra MAC gặp lỗi MENU_ENTRY là một con số, một tiêu đề của mục của menu hoặc một định danh một mục của menu. MÔ-ĐUN Gửi thư yêu cầu hỗ trợ về xorriso tới <bug-xorriso@gnu.org>. Tạo ảnh đĩa GRUB có thể khởi động được cho CD-ROM, đĩa, usb, đĩa mềm. Tạo tập tin bố cục bàn phím GRUB. Tạo ảnh có thể khởi động của GRUB. Tạo thiết bị ảo từ một tập tin. Không thể làm cho phân vùng hoạt động Quản lý các sự ánh xạ ổ đĩa BIOS. Tham số là bắt buộc hay tham số chỉ là tùy chọn cho các tùy chọn dài cũng đồng thời là bắt buộc hay không bắt buộc cho các tùy chọn ngắn tương ứng với nó. Điều khiển thiết bị PCI. Đo thời gian sử dụng LỆNH Hết bộ nhớ Kiểu bộ nhớ: DDR2. Kiểu bộ nhớ: Chưa được biết. Định danh mục menu. Điểm vào menu chưa được chỉ ra. Kiểu mục menu. MiB MiB/s Hỗ trợ chức năng chỉnh sửa dòng kiểu-BASH dạng tối giản. Đối với từ đầu tiên thì phím TAB liệt kê các từ gợi ý là tên các lệnh. Ở thời điểm khác, phím TAB liệt kê các từ liên quan đến tên thiết bị hay tập tin có được. %s Cũng hỗ trợ chức năng chỉnh sửa màn hình kiểu Emacs cực tiểu. Phím TAB liệt kê các từ gợi ý có thể điền vào. Bấm tổ hợp phím Ctrl-x hoặc F10 để khởi động lại, Ctrl-c hoặc F2 để vào chế độ dòng lệnh hoặc ESC để hủy các sửa đổi và trở về trình đơn GRUB. Thiếu đối số
 Thiếu tập tin đầu vào
 Thứ hai Đơn sắc Nhiều hơn một thiết bị cài đặt? Có nhiều hơn một mục menu? Gắn thiết bị mã hóa. Gắn toàn bộ các vùng có cờ “boot” được đặt. Gắn tất cả. Gắn sử dụng UUID. Gắn thiết bị mã hóa. TÊN TÊN [BIẾN] [HINTS] SỐ SỐ_CÁC_GIÂY Tên	Số Ref	Phần-phụ-thuộc
 Đĩa dạng nguyên bản đã được sử dụng. Từ chối sử dụng giao diện đĩa firmware (phần mềm nhúng). Các giao thức mạng: MBR mới được ghi vào “%s”
 Không tìm thấy CS5536 Không tìm FPSWA nào Không có thống kê thời gian mồi máy nào sẵn sàng cả
 chưa chỉ ra lệnh nào.
 Chưa ghi rõ thiết bị.
 Không có thống kê bộ nhớ đệm đĩa nào sẵn sàng cả
 Chưa có thiết bị nào được ánh xạ cả Không hiểu hệ thống tập tin đã tìm thấy Không khớp Chưa ghi rõ đường dẫn.
 Chưa ghi rõ đường dẫn hoặc thiết bị.
 Không có biểu thức chính quy trước đây Không có cây thiết bị ảo nào sẵn dùng Chế độ video “Non-chain 4” 256 màu Không đủ tham số cho lệnh.
 Xin hãy kết nối đến bộ gỡ lỗi từ xa. Số lần lặp của PBKDF2 đĩa OS #số ------> thiết bị GRUB/BIOS Tập tin OS “%s” lỗi mở: %s Tùy chọn -- chuyển tới chế độ lệnh xorriso nguyên gốc. Tùy chọn: Ngoài phạm vi tìm kiếm: %d
 Ngoài phạm vi thay-thế (substitution) (%d, %d)
 Ghi đè ánh xạ gợi ý của thiết bị Plan9. P PHÂN_VÙNG CÁC_LỆNH ĐƯỜNG_DẪN Mã băm kiểu PBKDF2 của mật khẩu của bạn là %s
 CỔNG ĐỊA-CHỈ-CỔNG GIÁ-TRỊ [MẶT-NẠ] ID_KHÓA_CÔNG Ghi màu Phân tích cấu hình theo kiểu cũ trong ngữ cảnh mới Phân tích cấu hình theo kiểu cũ trong ngữ cảnh mới chỉ với các mục nemu Phân tích cấu hình theo kiểu cũ trong cùng ngữ cảnh Phân tích cấu hình theo kiểu cũ trong cùng ngữ cảnh nhưng chỉ các mục menu Số của phần: %s.
 Phân vùng %d được kích hoạt. 
 Phân vùng %s: Kiểu phân vùng “%s” không hỗ trợ nhúng Đường dẫn: %s
 Đường dẫn: không sẵn sàng Thực hiện LỆNH trên phân vùng.
Sử dụng “parttool PHÂN-VÙNG help” để biết danh sách các lệnh có thể dùng. Tra tìm DNS Thực hiện tự động cấu hình IPV6 Ánh xạ bằng cả hai cách trực tiếp và ngược lại. PiB PiB/s Phẳng Phát một giai điệu. Đừng sử dụng tiêu đề cũ “%s” cho GRUB_DEFAULT, sử dụng “%s” (cho các phiên trước 2.00) hoặc “%s” (cho 2.00 hoặc mới hơn) GUID kho ZFS: %016llx
 GUID kho ZFS: chưa sẵn sàng Tên kho ZFS: %s
 Tên kho ZFS: chưa sẵn sàng Trạng thái kho ZFS: hoạt động Trạng thái kho ZFS: đã phá hủy Trạng thái kho ZFS: đã xuất Trạng thái kho ZFS: thiết bị ARC mức 2 Trạng thái kho ZFS: có khả năng kích hoạt Trạng thái kho ZFS: dự trữ để dành Trạng thái kho ZFS: chưa sẵn sàng Trạng thái kho ZFS: chưa khởi tạo Các đối số có thể dùng: Các câu lệnh có thể chạy: Các thiết bị có thể dùng: Các tập tin có thể dùng: Các phân vùng có thể dùng: Các thứ có thể dùng: Kết thúc sớm biểu thức chính quy Bấm bất cứ phím nào để tiếp tục... Hãy nhấn phím bất kỳ để khởi động xnu Bấm phím Enter để khởi động HĐH được chọn, phím “e” để chỉnh sửa câu lệnh trước khi khởi động, hoặc phím “c” để truy cập đến dòng lệnh. Bấm phím Enter để khởi động HĐH được chọn, phím “e” để chỉnh sửa câu lệnh trước khi khởi động, phím “c” để truy cập đến dòng lệnh. Phím ESC để trở về trình đơn trước. Hiển thị thông tin bộ nhớ Hiển thị thông tin ZFS về THIẾT-BỊ. Hiển thị ZFS-BOOTFSOBJ hoặc lưu nó vào BIẾN In ra một danh sách cấm. Hiển thị và thực thi đối số khổi. Hiển thị backtrace. In ra sự nhận diện và cài đặt về ổ đĩa. In kích cỡ theo một định dạng cho người đọc được. Thông tin thiết bị thăm dò được cho đường dẫn đã cho (hoặc thiết bị, nếu tùy chọn -d được chỉ ra). RAM giữ mã bảng coreboot RAM giữ mã firmware Khe cắm RAM số %d
 BTCQ CHUỖI

BTCQ: Biểu thức chính quy Ảnh ROM có hiện diện. Đọc giá trị 16-bit từ ĐỊA-CHỈ. Đọc giá trị 16-bit từ CỔNG. Đọc giá trị 32-bit từ ĐỊA-CHỈ. Đọc giá trị 32-bit từ CỔNG. Đọc giá trị 8-bit từ ĐỊA-CHỈ. Đọc giá trị 8-bit từ CỔNG. Đọc chỉ DÀI byte. Khởi động lại gặp lỗi Khởi động lại vào trình đơn cài đặt firmware Khởi động lại máy tính. Nhập lại mật khẩu:  Thanh ghi %x của %x:%02x.%x là %x
 Biểu thức chính quy quá lớn Gỡ bỏ máy chủ DNS Gỡ bỏ một mô-đun nào đó. Gỡ bỏ một biến môi trường. Gỡ bỏ mọi vùng nhớ trong vùng chỉ định. Render Apple .disk_label. Hãy thông báo lỗi cho %s.
 Hãy thông báo lỗi cho  <bug-grub@gnu.org>. Đã yêu cầu thiết bị cuối nối tiếp nhưng không chỉ ra GRUB_SERIAL_COMMAND. Tham số mặc định sẽ được sử dụng. Đặt lại mỗi sự ánh xạ thành giá trị mặc định. Lấy thông tin về thiết bị. Trả về từ hàm. Quay lại dấu nhắc IEEE1275. Chạy “gdb %s %d”, và đặt ARGS.HOLD thành số không.
 Chạy “go” để phục hồi GRUB. GIÂY TÊN-NGẮN TÊN-NGẮN THẺ ĐỊA-CHỈ [ĐỊA-CHỈ-PHẦN-CỨNG] TÊN-NGẮN MẠNG [GIAO-DIỆN| gw GATEWAY] KÍCH-CỠ NGUỒN|-u UUID|-a|-b CHUỖI Thứ bảy Lưu giá trị đọc vào biến TÊN_BIẾN. Lưu các biến vào tập tin khối môi trường. Lời ví dụ “Chào thế giới”. Quét các thiết bị theo UUID (mã nhận diện duy nhất). Chỉ rõ BIẾN thì thiết bị được tìm thứ nhất được đặt thành một biến. tìm thiết bị theo tên. Tìm thiết bị theo UUID hệ thống tập tin. Tìm thiết bị theo nhãn hệ thống tập tin. Tìm thiết bị theo tập tin, nhãn hoặc UUID của hệ thống tập tin. Nếu chỉ ra --set, thì thiết bị đầu tiên tìm được sẽ đặt cho một biến. Nếu không có biến được chỉ ra, “root” sẽ được dùng. Quét các thiết bị theo tập tin. Chỉ rõ BIẾN thì thiết bị được tìm thứ nhất được đặt thành một biến. Quét các thiết bị theo nhãn. Chỉ rõ BIẾN thì thiết bị được tìm thứ nhất được đặt thành một biến. Rãnh ghi (Sector) %llu đã sẵn được sử dụng bởi thiết bị điều khiển raid “%s”; đừng dùng nó.  Xin hãy hỏi nhà sản xuất đừng ghi dữ liệu vào khe MBR Rãnh ghi %llu đã đang được sử dụng bởi chương trình “%s”; tránh xa nó ra.  Phần mềm này có thể  gây ra  vấn đề  khởi động hoặc các vấn đề khác trong tương lai.  Xin hãy yêu cầu tác giả của nó đừng ghi dữ liệu vào rãnh khởi động Chọn thiết bị theo vị trí trên bus. Chọn thiết bị theo nhà sản xuất và ID. Đặt sự quản lý điện năng cấp cao (Advanced Power Management)
(1=thấp, ..., 254=cao, 255=tắt). Đặt sự tự động quản lý âm thanh (Automatic Acoustic Management)
(0=tắt, 128=im, ..., 254=nhanh). Đặt OEMID của RSDP, XSDT và RSDT. Đặt mã số OEMTABLE ID của RSDP, XSDT và RSDT. Đặt bản sửa đổi OEMTABLE của RSDP, XSDT và RSDT. Đặt cờ “ẩn” trong kiểu phân vùng Đặt một biến để trả lại giá trị. đặt biến cho thiết bị đầu tiên tìm thấy. Đặt biến môi trường. Đặt màu nền cho thiết bị cuối đang hoạt động. Đặt trường trình tạo của RSDP, XSDT và RSDT. Đặt bản sửa đổi trình tạo của RSDP, XSDT và RSDT. Đặt biến môi trường gỡ lỗi. Đặt ổ đĩa thành chế độ ngủ. Đặt ổ đĩa thành chế độ chờ. Đặt tham số vị trí. Đặt thiết bị gốc. Đặt thời hạn trạng thái chờ
(0=tắt, 1=5giây, 2=10giây, ..., 240=20phút, 241=30phút, ...). Đặt kiểu terminfo của TERM  thành TYPE.
 Đặt mục menu mặc định sẽ khởi động cho GRUB, chú ý là chỉ áp dụng cho lần khởi động sau. Đặt mục menu khởi động mặc định cho GRUB. Đặt địa chỉ của cổng nối tiếp. Đặt tính chẵn lẻ của cổng nối tiếp. Đặt tốc độ của cổng nối tiếp. Đặt các bit dừng của của cổng nối tiếp. Đặt chiều dài từ của cổng nối tiếp. Đặt đơn vị nối tiếp. Cài đặt các ảnh để khởi động từ THIẾT-BỊ.

Bạn không nên chạy chương trình này trực tiếp.  Sử dụng lệnh grub-install để thay thế. Đặt mật khẩu (dạng PBKDF2). Đặt mật khẩu người dùng (chữ rõ). KHÔNG AN TOÀN ! Đặt biến dùng đầu vào người dùng. Đặt các biến. Đặt kiểu của phân vùng thành 0x%x
 Dịch chuyển tham số vị trí. Hiện thông tin ACPI. Hiển thị thông tin APM. Hiển thị nội dung thiết bị điều khiển CBMEM. Hiển thị một thông điệp trợ giúp. Hiển thị một danh sách dài chứa thông tin bổ sung. Hiển thị thông tin của TẬP-TIN ở dạng thập lục phân. Hiển thị các mô-đun đẫ được tải. Hiển thị nội dung của bộ nhớ. Hiển thị nội dung của rãnh ghi IDENTIFY (nhận diện) kiểu ATA. Hiển thị nội dung của một tập tin hay vùng nhớ. Hiển thị nội dung của một tập tin. Hiển thị các sự ánh xạ hiện thời. Hiển thị thông điệp này. Chỉ hiển thị các bảng phiên bản 1. Chỉ hiển thị các bảng phiên bản 2 và 3. Tắt máy gặp lỗi Mô phỏng lệnh “initrd” kiểu-grub-cũ Mô phỏng lệnh “kernel” kiểu-grub-cũ Mô phỏng lệnh “modulenounzip” kiểu-grub-cũ Mô phỏng lệnh “password” kiểu-grub-cũ Mô phỏng lệnh “password” kiểu-grub-cũ trong chế độ mục trình đơn Bỏ qua N byte từ tập tin đầu vào. Bỏ qua các byte bù từ đầu tập tin. Khe %d mở
 Một số thành phần Hurd được tìm thấy, nhưng không đủ để khởi động. Ghi rõ tên tập tin. định rõ kiểu băm cần dùng Chỉ định một hay nhiều phông chữ cần tải. Chỉ ra kích thước cho từ thao tác đọc Ghi rõ số lượng tập tin đầu vào. Tốc độ: %s
 Khởi chạy “GDB stub” trên cổng đã cho Dừng “GDB stub” Lưu các thành phần so khớp SỐ trong TÊN-BIẾN. Thành công Chủ nhật Loại bỏ kết xuất thông thường (để lại các thông tin cảnh báo). Chuyển sang các ổ đĩa thật. Nếu không chỉ ra mô-đun nào thì tập hợp mặc định (pata,ahci,usbms,ohci,uhci,ehci) được dùng Lỗi cú pháp trên dòng %u.
 Các lỗi cú pháp đã được phát hiện trong tập tin cấu hình GRUB đã tạo.
Hãy chắc chắn rằng không có lỗi nào trong tập tin /etc/default/grub
và /etc/grub.d/* hoặc báo cáo tập tin lỗi này bằng cách đính
kèm tập tin %s. Bộ điều khiển truy xuất bus hệ thống thấy cổng V/R là tại 0x%x
 T ĐÍCH Định dạng đích chưa được chỉ ra (sử dụng tùy chọn -O). Thiết bị cuối có hình thái được chỉ ra. Thiết bị cuối ở dạng chỉ-ASCII [mặc định]. Thiết bị cuối là kiểu UTF-8 thứ-tự-lôgíc Thiết bị cuối là kiểu UTF-8 thứ-tự-ảo Thử khả năng hỗ trợ USB. Thử bit tại BYTE:BIT trong CMOS. Kiểm tra tốc độ đọc tập tin. Kiểm tra xem BTCQ có khớp với CHUỖI. Thử hệ thống video phụ ở chế độ WxH. Thử hệ thống phụ ảnh động. Chỉ-chứa-chữ Các tập tin là đồng nhất.
 Mục nhập được tô sáng sẽ được tự động thực hiện trong %d giây. Mục này có thể khởi động được bởi bất kỳ người nào. Cái này yêu cầu cài đặt GRUB_DEFAULT=saved trong %s/default/grub.\n Thứ năm TiB TiB/s Công cụ sửa khối biến môi trường. Kích thước tổng cộng bộ nhớ flash: %d B.
 Có dấu chéo ngược theo sau Chuyển dạng UUID 64-bit sang một định dạng thích hợp với XNU. Nếu tùy chọn -l được đưa ra giữ nó ở chữ thường như được thực hiện bởi lệnh blkid. Chuyển đổi kiểu tên tập tin hệ thống thành kiểu GRUB. Dịch chuỗi với các cài đặt hiện tại. Hãy thử câu lệnh “%s --help” (trợ giúp) hoặc “%s --usage” (cách sử dụng) để xem thêm thông tin.
 Thứ ba NGƯỜI_DÙNG MẬT_KHẨU TÀI-KHOẢN MẬT-KHẨU-PBKDF2 TÊN_NGƯỜI_DÙNG[,TÊN_NGƯỜI_DÙNG] UTF-8 Không tạo được đường ống pipe: %s Không thể xác định được nền tảng của bạn. Sử dụng --target. Không thể fork: %s Không thể mở dòng dữ liệu từ %s: %s Không thể lấy trạng thái kho ZFS nhận về dữ liệu không nén. Giải nét tập tin trước khi tổng kiểm tra. Không hiểu kiểu địa chỉ %d
 Không hiểu lệnh “%s”.
 Chưa biết định dạng nén %s Không hiểu bảng mã Không hiểu tham số mở rộng “%s”. Không hiểu đặc điểm phông chữ gsub 0x%x (%s)
 Không hiểu mã quét bàn phím 0x%02x
 Không hiểu mã quét bàn phím %s
 Không biết lỗi hệ thống Không hiểu chế độ video Kiểu thiết bị ảo chưa được biết đến: %s
 Hạ tải mô phỏng EFI. Chưa khớp “(” hoặc “\(” Có ký tự lẻ đôi “)” hoặc “\)” Chưa khớp “[” hoặc “[^” Chưa khớp “\{” Không chấp nhận tùy chọn “%s”\n Không thừa nhận trạng thái kho ZFS Không hỗ trợ kiểu địa chỉ %d
 Đặc tả thù hình của phông chữ không được hỗ trợ: %d
 Không hỗ trợ kiểu địa chỉ phần cứng %d
 Không hỗ trợ định dạng ảnh Cờ thay-thế (substitution) không được hỗ trợ: 0x%x
 Đặc tả thay-thế (substitution) không được hỗ trợ: %d
 Kiểu thay-thế (substitution) không được hỗ trợ: %d
 Cách dùng: Cách dùng: %s -o KẾT-XUẤT CÁC-THAM-SỐ-CKBMAP...\n Cách dùng: %s THIẾT-BỊ
 Cách dùng: %s [TẬP-TIN-VÀO [TẬP-TIN-RA]]
 Cách dùng: %s [CÁC-TÙY-CHỌN] ĐIỂM-VÀO-MENU\n Sử dụng: %s [TÙY_CHỌN]\n Dùng CD-ROM làm gốc. Dùng bộ gỡ lỗi GDB từ xa thay cho DDB. Sử dụng CHUỖI như là phần thân mục menu. Sử dụng thiết bị gốc dựng sẵn (compiled-in root). Dùng bàn giao tiếp kiểu nối tiếp. Dùng phím %C và %C để chọn mục được tô sáng. BIẾN GAIO-DIỆN SỐ MÔ-TẢ TÊN-BIẾN Đếm ngược với chi tiết. Thẩm tra chữ ký đính kèm. Phiên bản %u.%u
32-bit CS = 0x%x, dài = 0x%x, khoảng-bù = 0x%x
16-bit CS = 0x%x, dài = 0x%x
DS = 0x%x, dài = 0x%x
 Thiết bị ảo đã bị gỡ bỏ Thiết bị ảo bị hỏng Thiết bị ảo đã offline Thiết bị ảo đang online Thiết bị ảo đã bị gỡ bỏ CẢNH BÁO: không có thiết bị console (bàn điều khiển) nào sẵn sàng cho OS CẢNH BÁO: không có cài đặt platform-specific (nền-tảng-đặc-thù) nào được thực hiện CẢNH BÁO: các tham số đặc điểm phông chữ không được hỗ trợ: %x
 RỘNGxCAO Đợi trong vòng một số các giây được ghi rõ. Đợi cú bấm phím sau khi kết xuất mỗi dòng. Cảnh báo: Cảnh báo: gặp màu nền không đúng “%s”
 Cảnh báo: gặp màu tiền cảnh không đúng “%s”
 Cảnh báo: gặp lỗi cú pháp (dấu xuyệc còn thiếu) trong “%s”
 Thứ tư Windows NT/2000/XP (bộ tải) Windows Vista/7 (bộ tải) Ghi GIÁ-TRỊ 16-bit vào ĐỊA-CHỈ. Ghi GIÁ-TRỊ 16-bit vào CỔNG. Ghi GIÁ-TRỊ 32-bit vào ĐỊA-CHỈ. Ghi GIÁ-TRỊ 32-bit vào CỔNG. Ghi GIÁ-TRỊ 8-bit vào ĐỊA-CHỈ. Ghi GIÁ-TRỊ 8-bit vào CỔNG. Ghi byte SPD: %d B.
 Bộ ảo hóa Xen, phiên bản %s YUV  Bạn cần phải chỉ ra ít nhất một lệnh.
 Bạn sẽ phải đặt thủ công “SystemPartition” và “OSLoader”. Bạn có một core.img quá nhỏ mà không chứa được core.img. xorriso của bạn không hỗ trợ “--grub2-boot-info”. Một số tính năng bị tắt. Hãy dùng xorriso 1.2.9 hay mới hơn. xorriso của bạn không hỗ trợ “--grub2-boot-info”. Ảnh lõi của bạn quá lớn. Tính năng coi Boot như là đĩa bị tắt. Hãy dùng xorriso 1.2.9 hay mới hơn. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] TẬP-TIN [--md5] MẬT-KHẨU [TẬP-TIN] [--no-mem-option] [--type=KIỂU] TẬP-TIN [THAM-SỐ ...] [-1|-2] [--exclude=BẢNG1,BẢNG2|--load-only=BẢNG1,BẢNG2] TẬP_TIN1 [TẬP_TIN2] [...] [-c TẬP-TIN [-p TIỀN-TỐ]] [TẬP-TIN1 [TẬP-TIN2 ...]] [-d] TÊN-THIẾT-BỊ TẬP-TIN. [-e|-n] CHUỖI [-f TẬP-TIN] [-f TẬP-TIN] tên_biến [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] TÊN [-h|-p|-r] [TẬP-TIN] [-l] GRUBUUID [TÊN-BIẾN] [-l|-h|-a] [TẬP-TIN ...] [-m (stretch|normal)] TẬP-TIN [-s VỊ-TRÍ] [-d THIẾT_BỊ] [-s VỊ-TRÍ] [-d THIẾT-BỊ] [-v BIẾN] THANH-GHI[=GIÁ-TRỊ[:MẶT-NẠ]] [-s CỠ] TÊN-TẬP-TIN [ĐCHỈ|comĐƠN-VỊ][,TỐC-ĐỘ] [ ĐỐI-SỐ] [CARD [ĐỊA-CHỈ-PHẦN-CỨNG]] [CARD] [BIẾN-MÔI-TRƯỜNG=GIÁ-TRỊ] [BIẾN_MÔI_TRƯỜNG] [PHÍM-GÕ-1] [PHÍM-GÕ-2] ... [MÔ-ĐUN1 MÔ-ĐUN2 ...] [SỐ:]TÊN-BIẾN [SỐ] [CÁC-TÙY-CHỌN...] [CÁC_TÙY_CHỌN] [TÙY_CHỌN ...] ĐĨA [TÙY_CHỌN ...] TẬP_TIN_HAY_THIẾT_BỊ [CÁC_TÙY_CHỌN] [TẬP_TIN_FONT] [TÙY-CHỌN]... [MÔ-ĐUN] [TÙY_CHỌN]... [ĐƯỜNG DẪN|THIẾT_BỊ] [C_T_CHỌN] [ĐƯỜNG_DẪN] [MẪU ...] [DANH-SÁCH-NGƯỜI-DÙNG] [GIÁ-TRỊ]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] TERM [KIỂU]] [[năm-]tháng-ngày] [giờ:phút[:giây]] [bus]:[slot][.func] [nhàsảnxuất]:[thiếtbị] lệnh “cryptomount” gặp lỗi: %s lệnh “loopback” gặp lỗi: %s không tìm thấy “obppath” trong thư mục cha của “%s”, không tìm thấy tên IEEE1275 một giá trị đã được gán cho tham số “%s” trong khi nó lại không yêu cầu đối số truy cập bị từ chối thêm đoạn NOTE cho CHRP IEEE1275 địachỉ không tìm thấy địa chỉ đang thử đọc hay ghi ngoài đĩa “%s” thử đọc hay ghi ngoài phân vùng thử đọc sau phần cuối thật của tập tin thử di chuyển vị trí ngoài phạm vi của tập tin đang thử đọc ảnh lõi “%s” từ GRUB đang thử đọc ảnh lõi “%s” từ GRUB lần nữa RAM sẵn dùng các định dạng có thể sử dụng: chữ ký sai base_addr = 0x%llx, dài    = 0x%llx, %s
 địa-chỉ-cơ-sở = 0x%llx, dài = 0x%llx, kiểu = 0x%x
 tệp tin bitmap (ảnh bít) “%s” không được hỗ trợ định dạng blocklist TẬP-TIN danh sách cấm không hợp lệ kích thước khối không chia hết cho 512 Thoát khỏi vòng lặp 0 chưa xác định được kiểu hệ thống tập tin trên %s không thể tìm thấy lệnh “%s” không thể gắn vùng được mã hóa “%s”: %s không thể mở “%s”: %s không thể mở tập tin “%s”, mục lục %d: lỗi %d không thể lấy về “danh sách cấm” không thể lấy về danh sách cấm: %s không thể nén ảnh hạt nhân không tìm thấy ổ đĩa GRUB cho %s.  Kiểm tra tập tin device.map không tìm thấy thiết bị cho %s (/dev đã gắn chưa?) không thể gắn hệ thống tập tin cho đường dẫn “%s”: %s không thể mở tập tin OS “%s”: %s không thể mở “%s”: %s không thể đọc “%s” cho đúng không thể đọc “%s”: %s không thể đổi tên tập tin %s thành %s: không thể phục hồi thư mục nguyên gốc không thể seek “%s”: %s không thể lấy trạng thái về “%s”: %s không thể ghi CD-ROM không thể ghi vào “%s”: %s không thể ghi vào đầu ra tiêu chuẩn: %s không tìm thấy card  cat TẬP-TIN Xác minh mã tổng kiểm tra không đạt chọn kiểu nén sẽ dùng cho ảnh lõi cmp TẬP-TIN NỘI-BỘ comĐƠN-VỊ][,TỐC-ĐỘ] so sánh gặp lỗi tại offset %llu Kết nối đã bị từ chối quá lâu không trả lời chuyển sang phông chữ đậm ảnh lõi quá lớn (0x%x > 0x%x) không khớp phiên bản core.img không thể tự cấu hình %s không thể tìm thấy thiết bị số cần thiết của hệ thống tập tin đa-thiết-bị không tìm thấy người tiêu dùng “geli” không tìm thấy lớp geom “part” không thể mở geom không thể đọc “ELI metadata” (siêu dữ liệu) không thể lấy UUID không thể lấy về “geli UUID” không thể nhận về dữ liệu ngẫu nhiên cho salt không thể gửi gói mạng cp TẬP-TIN CỤC-BỘ crc TẬP-TIN số của lỗi cryptographic (mã hóa) %d cygwin_conv_path() gặp lỗi xóa ánh xạ thiết bị nếu nó đã sẵn có không kết nối được đến đích số lượng thiết bị đã đạt đến giới hạn tắt gợi ý không tìm thấy đĩa “%s” đĩa không tồn tại, do đó quay trở lại phân vùng thiết bị %s mô-đun đĩa sử dụng (biosdisk hoặc native). Tùy chọn này chỉ dùng được trên đích là BIOS. Kích cỡ diskboot.img phải là %u byte. không thăm dò hệ thống tập tin trên THIẾT-BỊ thành phần tên miền quá dài không cập nhật trạng thái LED đã xong coi TẬP-TIN nhúng như là cấu hình trước đó nhúng TẬP-TIN như là khóa công dành cho việc xác minh chữ ký không thể nhúng được, nhưng mà chức năng này được yêu cầu cho cài đặt RAID hay LVM không thể nhúng được, nhưng mà chức năng được yêu cầu khi cài đặt cross-disk
* cross-disk: thư mục /boot ở trên một đĩa nhưng MBR lại trên một cái khác bật mồi máy ARCS (máy mips big-endian, phần lớn là SGI). Tắt HFS+, APM, sparc64 và mồi máy như là ảnh đĩa cho i386-pc bật mồi máy sparc. Tắt HFS+, APM, sparc64 và mồi máy như là ảnh đĩa cho i386-pc vào: boot, “e”: tùy chọn, “c”: dòng-lệnh khối môi trường quá nhỏ lỗi: %s.
 cần ảnh GRUB nằm dưới thư mục T-MỤC/%s thay vì tại thư mục %s gặp lỗi khi lấy đường dẫn canonical của %s lỗi đọc sector 0x%llx từ “%s” đọc mật khẩu thất bại lỗi ghi sector 0x%llx từ “%s” sai RAM hỏng (BadRAM) không tìm thấy tập tin “%s” cần tên tập tin cần tên tập tin hoặc tempo+notes Hệ thống tập tin “%s” không hỗ trợ nhãn hệ thống tập tin “%s” không hỗ trợ danh sách cấm ảnh firmware quá lớn ép buộc tự-động-gợi-ý cần bốn đối số fwstart.img không khớp với bất kỳ phiên bản tốt nào. Bạn phải tự chịu trách nhiệm khi thực hiện nó tạo ảnh theo ĐỊNH-DẠNG hiển thị cách sử dụng dạng ngắn gọn hiển thị trợ giúp này đưa ra tham số là thiết bị hệ thống, không phải đường dẫn grub-mkimage được biên dịch mà không được hỗ trợ bởi định dạng XZ grub> treo trong vòng GIÂY giây (mặc định là 3600) hex TẬP-TIN bỏ qua vẽ phông chữ có sẵn, bắt vẽ lại khi nó được tải đặc tả kích thước thiết bị cuối (terminal) không đúng cài ảnh GRUB dưới thư mục DIR/%s thay cho thư mục %s cài đặt ngay cả khi nhận thấy có trục trặc sai mật khẩu PBKDF2 sai số màu nhiệm ELF phụ-thuộc-kiến-trúc số màu nhiệm ELF độc-lập-kiến-trúc không hợp lệ kích thước khối không hợp lệ sai đặc tả màu sắc “%s” khối môi trường không hợp lệ tên tập tin “%s” không hợp lệ phạm vi phông chữ không hợp lệ định dạng dòng không hợp lệ: %s tham số không hợp lệ %s giá trị nhảy qua %lld không hợp lệ tên biến “%s” không hợp lệ đặc tả chế độ video “%s” không hợp lệ lỗi ioctl GET_ARRAY_INFO: %s lỗi ioctl GET_DISK_INFO: %s lỗi ioctl RAID_VERSION: %s ảnh của nhân quá lớn (0x%x > 0x%x) liệt kê địa chỉ mạng liệt kê các card mạng Liệt kê các định tuyến mạng ls ĐƯỜNG-DẪN tập tin lzop bị sai hỏng làm cho đĩa cũng có khả năng khởi động giống như đĩa mềm (mặc định cho các thiết bị fdX). Có lẽ nó không phải lúc nào cũng có hiệu quả trên các BIOS nhưng lại hữu dụng khi cài đặt nó trên một đĩa cứng không có khả năng khởi động. thiếu ký hiệu “%c” thiếu giá trị cho tùy chọn “%s” mô-đun “%s”chưa được tải mô-đun chưa được tải tên cần một ảnh và điểm-gắn không tìm thấy APM Không tìm thấy thông tin DHCP Không tìm thấy tùy chọn %d DHCP Không tìm thấy tùy chọn DHCP Không tìm thấy bản ghi DNS không nhận về đáp ứng nào từ DNS chưa cấu hình máy phục vụ DNS không có “/” trong tên tập tin kiểu canonical (đầy đủ) chưa chỉ ra lệnh không có khóa giải mã sẵn dùng không tìm thấy card mạng nào chưa chỉ ra máy chủ không có phân vùng như vậy không tìm thấy chế độ video nào thích hợp không có bảng ký hiệu chưa xác định terminal ảnh lõi không chứa dấu chấm dứt trong tập tin lõi tìm được dữ liệu không phải được sắp hàng theo rãnh ghi không phải một thư mục không phải là phân vùng cơ sở không phải tập tin thường không trong thân hàm cần thiết một đối số có phần mềm khác đã sử dụng vùng nhúng, và ở đây không đủ không gian để lưu core.img. Những phần mềm như thế thường cố gắng lưu dữ liệu theo cách không thăm dò trước. Chúng tôi khuyến nghị bạn nên điều tra rõ ràng. hết bộ nhớ xuất ảnh đã tạo ra TẬP-TIN [mặc định=stdout] tập tin đầu vào cần phải được chỉ ra xuất cấu hình đã tạo ra TẬP-TIN [mặc định=stdout] bị tràn mật khẩu không khớp thi hành tự động cấu hình bootp không tìm thấy phân vùng vật lý %s gặp kết thúc tập tin quá sớm gặp kết thúc tập tin %s quá sớm bấm phím CapsLock bấm phím Insert bấm phím NumLock bấm phím ScrollLock bấm SysRq bấm alt trái bấm ctrl trái bấm shiff trái bấm alt phải bấm ctrl phải bấm shiff phải in ra phiên bản chương trình hiển thị ra thông tin phiên bản rồi thoát hiển thị trợ giúp này, sau đó thoát ra hiển thị thông tin chi tiết. không tìm thấy khóa công %08x lỗi đọc tại offset %llu: %s đọc văn bản từ TẬP-TIN. thư mục con tương đối trên máy chủ mạng tái định vị 0x%x vẫn chưa được thực hiện RAM dự trữ phục hồi tùy chọn DHCP và ghi nó vào BIẾN. Nếu BIẾN là - thì sẽ hiển thị giá trị. thư mục gốc của máy chủ TFTP tìm thấy điều kiện tìm đường (route loop) ghi lại ảnh ROM vào TMỤC [tùy chọn] ghi kết xuất vào TẬP-TIN [bắt buộc] chọn chỉ số cho font không tìm thấy cổng nối tiếp “%s” set [TÊN=GIÁ-TRỊ ...] đặt chế độ capslock  đặt kích cỡ phông lớn đặt kích cỡ phông nhỏ đặt tên phông chữ đặt phạm vi phông chữ đặt kích cỡ phông đặt tên tập tin đầu vào cho bộ phận 32-bit. đặt tên tập tin đầu vào cho bộ phận 64-bit. đặt tên tập tin đầu vào. Mặc định là STDIN đặt chế độ chèn đặt chế độ numlock đặt tên tập tin đầu ra. Mặc định là STDOUT đặt chế độ tạm dừng đặt thư mục tiền tố [mặc định=%s] đặt chế độ scrolllock đặt tên chương trình kích-thước biến-đổi|thường không tìm thấy ký hiệu “%s” tạm không tìm thấy thiết bị cuối %s hoặc không nắm được nó bằng terminfo không tìm thấy thiết bị cuối “%s” tham số “%s” yêu cầu một số nguyên mục device.map “%s” không hợp lệ. Lờ nó đi. Xin hãy sửa lại hoặc xóa device.map của bạn ổ đĩa có tên “%s” trong ánh xạ thiết bị không chính xách. Sử dụng %s để thay thế. Xin hãy sử dụng dạng thức [hfc]d[0-9]* (vdụ “hd0” hoặc “cd”) rãnh ghi thứ nhất của tập tin lõi không phải được sắp hàng theo rãnh ghi thiết bị đã cài đã bị gỡ bỏ. Tùy chọn này chỉ sẵn dùng trên EFI. kiểu phân vùng 0x%x không hợp lệ trong tập tin lõi, các rãnh ghi bị phân mảnh quá “%s” không có kích cỡ %u “%s” có kích cỡ quá lớn “%s” có kích cỡ quá nhỏ tập tin ELF không phải là một kiểu đúng Nhãn phân vùng GPT này không có phân vùng khởi động BIOS; nên không nhúng được LDM này không có Embedding Partition (phân vùng nhúng; việc nhúng là không thể Nhãn phân vùng kiểu MSDOS (msdos-style) không có chỗ trống nằm sau MBR; nên không nhúng được cần ba đối số gặp lỗi quá giờ khi mở “%s” lỗi quá giờ khi đọc “%s” quá lâu: không thể phân giải địa chỉ phần cứng liên kết mềm lồng nhau quá sâu lệnh gắn “%s” cho đường dẫn “%s” có nhiều từ không phải là tùy chọn, ít nhất “%s” và “%s” bộ dịch “%s” cho đường dẫn “%s” chỉ được đưa cho các tùy chọn, không thể tìm thấy đường dẫn thiết bị lệnh gắn hệ thống tập tin bị trống rỗng cho đường dẫn “%s” hai đối số kiểu không nhận ra được một hệ thống tập tin trong %s nên không thực hiện tiến trình kiểm tra tính an toàn kích thước thiết bị chưa căn chỉnh kết thúc tập tin đột xuất không hiểu tham số “%s” kiểu nén chưa được biết đến %d
 không hiểu kiểu thiết bị: %s
 không hiểu kiểu hệ thống tập tin không hiểu kiểu của thiết bị RAID “%s” lỗi biểu thức chính quy chưa biết không hiểu định dạng đích %s
 không hiểu kiểu terminfo “%s” không chấp nhận đặc tả định dạng tùy chọn DHCP “%s” không thừa nhận địa chỉ mạng “%s” không nhận ra giao diện mạng“%s” không thừa nhận số không thể phân giải địa chỉ %s unset [TÊN ...] đáp ứng trả lời lỗi HTTP không được hỗ trợ %d: %s đáp ứng trả lời HTTP không được hỗ trợ không hỗ trợ phiên bản RAID: %d.%d định dạng gzip không được hỗ trợ không hỗ trợ tính chẵn lẻ của cổng nối tiếp không hỗ trợ tốc độ của cổng nối tiếp không hỗ trợ bit dừng của của cổng nối tiếp không hỗ trợ chiều dài từ của cổng nối tiếp dùng MÀU cho nền dùng MÀU cho nhãn dùng MÀU cho nền nhãn dùng MÀU cho chữ sử dụng TMỤC như là gốc phân vùng hệ thống EFI. dùng TẬP-TIN như là phông chữ (PF2). sử dụng TẬP-TIN như là phông dành cho nhãn sử dụng TẬP-TIN như là ảnh khởi động [mặc định=%s] sử dụng TẬP-TIN như là ảnh lõi [mặc định=%s] sử dụng TẬP-TIN như là ánh xạ thiết bị [mặc định=%s] sử dụng TẬP-TIN như là xorriso [tùy chọn] sử dụng các tập tin GRUB trong thư mục TMỤC [mặc định=%s] dùng CHUỖI như là tên sản phẩm Sử dụng CHUỖI như là phiên bản sản phẩm sử dụng tập tin định danh thậm chí cả khi UUID sẵn dùng sử dụng các ảnh và mô-đun dưới TMỤC [mặc định=%s/<nền tảng>] biến “%s” chưa được đặt kiểu UTF-8 thứ-tự-ảo chờ cho đến ghi bộ gỡ lỗi được tiếp hợp vào sẽ không xử lý với danh sách cấm sai số mầu nhiệm hoặc phiên bản ELI xnu_uuid THIẾT-BỊ tập tin zx sai hỏng hoặc không hỗ trợ tùy chọn khối bạn không thể xóa địa chỉ này bạn cần phải tải kernel trước đã BIOS Boot Partition (phân vùng khởi động BIOS) quá nhỏ; nhúng là điều không thể thực hiện được Bạn có một core.img quá lớn. Nó không vừa với vùng nhúng vùng nhúng của bạn nhỏ một cách bất thường. Nó không chứa được core.img.                                                                                                                            boot/grub/locale/zh_CN.mo                                                                           0000600 0001750 0001750 00000072653 13417732100 0014240 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                       ]               8     9     O     S    b    g     o  !          ,          $         '   *   C   
   n   	   y   7                                 !  $   !     <!     T!  !   m!     !  Z   "     r"     "     "     "     "     "     "     #     4#     K#     f#     u#     #     #     #     #  	   #  #   #     $     $     ?$     V$     e$  &   $     $  !   $  ,   $     %     %     %  !   .%     P%     b%     t%     %     %     %     %  
   %     &     &     &     5&     Q&     i&     &  +   &     &  #   &     '     ''  $   F'     k'     '  '   '  9   '     (     (     :(     A(     U(  
   l(     w(     (  +    )     L)     b)     u)     )  (   )     )     )     )     )     *     !*     &*     5*     =*     I*     Z*  2   p*     *     *     *  !   +  H   +     ,  )   #,     M,     b,     ~,     ,     ,  '   ,  P   ,     -     =-     @-     T-     e-     z-     -  "   -     -     -  O   -     :.     R.     i.  %   }.  !   .  "   .     .     /  +   /     G/     ^/     n/  !   /     /     /     /      /     0     0     ;0     W0     k0     {0     0     0     0     0     0  !   1     :1  2   T1     1  *   1  8   1     2     2     *2     A2  3   Y2  $   2  +   2     2     2     3     3      73     X3     m3     t3     3     3     3     f4     5     75     I5     c5  "   |5     5     5     5     5  "   5  #   5     6  )   '6     Q6     ^6     v6     6     6     6     6     6     7  !   7  "   87  '   [7     7     7     7     7     7  -   7  )   8     G8     ]8     u8  &   |8  )   8  ^   8     ,9  $   F9  %   k9  ^   9  _   9  >   P:  D   :  !   :  '   :  -   ;     L;  )   l;     ;  )   ;  ,   ;     
<     *<     C<     ^<     y<  E   <  $   <     <     =     .=     I=      h=     =  q   =     >  :   ->     h>     >     >     >     >  0   >     ?     ?     :?     U?     h?  -   ?     ?     ?  '   ?  !   @  "   &@  #   I@     m@     @  !   @     @  <   @     A  0   3A     dA     rA     A  $   A     A     A     A  '   A     B     !B     )B     <B  '   JB  -   rB  '   B  '   B  .   B  *   C  B   JC  /   C     C  .   C  )   D     ,D  	   ;D     ED  5   cD     D     D     D     D     D     D     D     E     E     .E  
   <E  
   GE  !   RE  )   tE  0   E  6   E     F      F     6F     QF     `F     |F     F     F  "   F  F   F     G     $G     -G     EG     MG     cG  1   G     G  7   G  /   H     ;H     VH     tH  F   H  z  H     TJ     dJ     kJ     |J     mK     XL     fL     L  '   L     L     L     L  (   M     8M     GM  -   VM  &   M     M     M  '   M     M  '   M     N     2N     HN     gN  Z   N     VO     lO     O  !   O     O     O     O     O  $   P     1P     PP     bP     uP     P     P  	   P  	   P  $   P     P  !   Q     (Q     >Q     KQ  $   jQ     Q      Q  D   Q     Q     	R     R  !   'R     IR     bR     rR     R     R     R     R     R     R     S     S     1S     NS  !   [S  !   }S  $   S     S     S     S  !   T      1T     RT     nT     T  8   T     T  $   T     U     $U  &   DU  	   kU     uU     U     V     V     0V     FV     VV     iV     V     V     V     V     V     V     V  	   V     W     W     $W  4   :W     oW     W     W     `X  P   ~X     X  8   X     Y  "   ,Y  #   OY  	   sY     }Y  #   Y  &   Y  $   Y     Y     Y     	Z     Z     2Z     NZ     eZ     Z     Z  T   Z     [     [  !   3[     U[  $   t[  $   [     [     [  !   [     \     .\     D\  #   ]\     \     \     \  "   \     \     ]     (]     @]     U]     p]     ]     ]     ]     ]     ]  #   ^     6^  /   R^     ^  $   ^  -   ^     ^     _     _     6_  8   O_  '   _     _     _     _     _     `     "`     ?`     O`     V`     r`     `     `     7a     a     a     a     b     *b  	   Ab     Kb     Yb     `b  !   tb  $   b     b  $   b     b     c     c     #c     3c     Cc     Sc     cc     yc     c  $   c  *   c     c     d     0d     Id     Yd  -   ud  !   d     d     d  	   d  &   d     %e  ]   >e     e  $   e  $   e  o   e  ]   of  L   f  L   g  +   gg  1   g  ;   g  !   h  *   #h     Nh  4   jh  :   h     h  !   h  !   i     :i     Pi  W   ci  5   i     i  !   j     /j     Kj     jj     j  r   j     k  7   -k  $   ek     k     k     k     k     k     k     l     #l     9l  !   Ll  !   nl     l     l  *   l  !   l  '   m  *   7m     bm  6   wm  )   m     m  7   m     )n  $   En     jn     xn     n  !   n     n     n  	   n  *   n     o     .o     6o     Io     Zo  /   uo  !   o  !   o  -   o  %   p  3   =p  +   qp     p  5   p  /   p     q     -q     9q  ;   Uq     q     q     q     q     q     q     r     r      r     9r     Fr     Ur  %   ^r     r  /   r  5   r     
s     s     4s     Os     gs     s  
   s     s  )   s  0   s     t  
   &t     1t     It     Qt     gt  '   t  )   t  $   t  !   t     u     :u     Ru  @   ju               W     !   E  X                                  )   J                                   H                     ]             
    a                     +         [      A             y   =                     )  8                     Y   {   *          Q          K                 q   ,            M                5                x      :     /  +                   2                          9          C  7                _            #  3       l      5              }   0         u         K                    -             6         &  Z          V  "           z   Z  C   @        $                                                                  .  U   F   P         8                    V       :         1    c          %          0           v         Q      4   I  &                 (         $                '               !       w   b                   "           <  ;   M   \       r          S     O     P       D                6   E       7   G              @  [  k   ]  4     T  L   `   d           S                    <             N         W   R         >             s   
            ^       *             I      h          -        X   D                      3  N   A  #         G      F                         '     ?   o       p         ,       g      J   f   B  \    L                |   R       ?  Y         %      =                j       e   B         ;            t               2  U         1   T      n   H   >    	                O      m                   9             ~             (   .          /   i         	                 - Total size unknown %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: error: %s: info: - Last modification time %d-%02d-%02d %02d:%02d:%02d %s -l | -r | [-s] grubdev osdisk. ADDR ADDR VALUE [MASK] ADDR1,MASK1[,ADDR2,MASK2[,...]] ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Ask for file name to reboot from. Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: BLOCK Base directory for hash list. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting a command list Change configured devices. Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check key modifier status. Clear the screen. Commands: Compare FILE with local file LOCAL. Compare two files. Compute or check hash checksum. Configure serial port. Continue loops Copy FILE to local file LOCAL. Create a blank environment block file. DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] Debug tool for filesystem driver. Define a submenu. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Display a line of text. Display blocklist of FILE. Display output on all consoles. Display the usage of this command and exit. Display this help and exit. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. ENVVAR ENVVAR [ENVVAR] ... ESC at any time exits. EXPRESSION EXPRESSION ] Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Enable interpretation of backslash escapes. Enter in KDB on boot. Enter normal mode. Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Exit from GRUB. Exit from loops Exit from normal mode. Export variables. FILE FILE [ARG ...] FILE... FILE1 FILE2 FILENAME COMMAND FROM[K|M|G] TO[K|M|G] Failed to boot both default and fallback entries.
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Freeze ATA security settings until reset. GNU GRUB  version %s Get crc32 checksum of FILE. Get/set ATA disk parameters. HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. ID IMAGE_PATH COMMANDS Insert a module. Invalid command %s.
 Invalid device `%s'.
 Invalid disk count.
 Invoke user configuration routing. List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List devices and files. List devices or files. List files in PATH. List memory map provided by firmware. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file without changing context. Load another config file. Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading the Hurd ... MODULE Manage the BIOS drive mappings. Manipulate PCI devices. Menu entry type. Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. NAME [VARIABLE] [HINTS] NUMBER_OF_SECONDS No command is specified.
 No device is specified.
 Not enough parameters to command.
 Options: PARTITION COMMANDS PORT PORT VALUE [MASK] Parse legacy config in new context Parse legacy config in same context Partition %s: Perform both direct and reverse mappings. Play a tune. Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Press any key to continue... Print a block list. Print and execute block argument. Print drive identity and settings. Print sizes in a human readable format. REGEXP STRING Read only LENGTH bytes. Reboot the computer. Remove a module. Remove an environment variable. Remove any memory regions in specified range. Reset all mappings to the default values. Retrieve device info. Return from a function. STRING Save read value into variable VARNAME. Save variables to environment block file. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Show ACPI information. Show APM information. Show a help message. Show a long list with more detailed information. Show loaded modules. Show the contents of a file. Show the current mappings. Show this message. Skip N bytes from output file. Skip offset bytes from the beginning of file. Specify filename. Specify hash to use. Specify one or more font files to load. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. The highlighted entry will be executed automatically in %ds. Tool to edit environment block. Translates the string with the current settings. USER PASSWORD USER PBKDF2_PASSWORD UTF-8 Uncompress file before checksumming. Unknown command `%s'.
 Unload EFI emulator. Usage: Use GDB remote debugger instead of DDB. Use serial console. VARNAME Verbose countdown. WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 You need to specify at least one command.
 Your embedding area is unusually small.  core.img won't fit in it. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [ARG] [ENVVAR=VALUE] [ENVVAR] [NUMBER:]VARNAME [OPTIONS...] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [PATTERN ...] [USERLIST] [VALUE]... [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again blocklist FILE cannot compress the kernel image cannot read `%s' correctly cmp FILE LOCAL compare fail at offset %llu cp FILE LOCAL crc FILE device count exceeds limit diskboot.img size must be %u bytes embedding is not possible, but this is required for cross-disk install error: %s.
 hex FILE invalid skip value %lld ls PATH no terminal specified no terminator in the core image non-sector-aligned data is found in the core file read error at offset %llu: %s the first sector of the core file is not sector-aligned the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small unable to identify a filesystem in %s; safety check can't be performed Project-Id-Version: grub 1.97+20110101
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2011-12-04 21:02+0800
Last-Translator: Aron Xu <happyaron.xu@gmail.com>
Language-Team: Chinese (simplified) <i18n-zh@googlegroups.com>
Language: zh_CN
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
  - 总量未知 %d 秒 剩余 %d 秒。 %s 中似乎包含一个不为 DOS 引导保留空间的 %s 文件系统。在此处安装 GRUB 可能导致 grub-setup 覆盖重要数据从而损坏文件系统(--skip-fs-probe 参数可以禁用这个检查，使用该选项风险自负) %s 中似乎包含一个不为 DOS 引导保留空间的 %s 分区。在此处安装 GRUB 可能导致 grub-setup 覆盖重要数据从而损坏文件系统(--skip-fs-probe 参数可以禁用这个检查，使用该选项风险自负) %s，Linux %s %s，Linux %s (恢复模式) %s，Xen %s 和 Linux %s %s，Xen %s 和 Linux %s (恢复模式) %s，kFreeBSD %s %s，kFreeBSd %s (恢复模式) %s，%s 内核(通过 %s) %s，%s 内核(通过 %s，恢复模式) %s：错误： %s：信息： - 最近更改 %d-%02d-%02d %02d:%02d:%02d %s -l | -r | [-s] grub设备 系统磁盘 地址 地址 值 [掩码] 地址1,掩码1[,地址2,掩码2[,...]] ASCII 接受 DOS 风格的 CR/NL 行结尾。 活动输入终端： 活动输出终端： 从指定文件重新启动。 正在试图将 GRUB 安装至有多个分区标签的磁盘，或同时有分区标签和文件系统的磁盘。这样的操作尚未被支持。 正在试图将 GRUB 安装至未分区的磁盘或一个分区。这是一个坏主意。 可用输入终端： 可用输入终端： 块 哈希列表文件所在目录。 引导操作系统。 以单用户模式启动 显示调试信息。 启动时显示完整信息。 正在按照命令列表进行引导 更改此前配置的设备。 检查 Alt 键。 检查 Ctrl 键。 检查 Shift 键。 检查 CPU 特性。 检查修饰键状态。 清屏。 命令： 比较指定文件与本地文件。 比较两个文件。 计算或校验哈希校验和。 配置串行端口。 继续循环 复制文件到本地位置。 创建一个空的环境块文件。 设备 设备 [分区[+/-[类型]]] ... 指定的设备必须是一个操作系统设备(例如 /dev/sda)。 设备名称 DIR 目录 [OSBundleRequired] 文件系统驱动调试工具。 定义一个子菜单。 删除变量。 指定驱动。 指定文件系统 UUID。 指定文件系统卷标。 指定文件系统类型 指定分区表类型。 设备 %s： 禁用 ACPI。 禁用 SMP。 禁用所有引导输出。 禁用/启用 SMART (0/1)。 显示文本 显示指定文件的块列表。 在所有控制台显示输出。 显示此命令的用法并退出。 显示此帮助并退出。 末尾不输出额外空行。 安静模式。 不检测任何软盘驱动器。 不使用 APM 关闭计算机。 未进行操作，成功。 未进行操作，失败。 不显示引导对话消息。 不载入指定的主机表(多个表用逗号分隔)。 直接关机。 第一次出现错误时不停止。 环境变量 环境变量 [环境变量] ... 任何时候按下 ESC 均可退出。 表达式 表达式 ] 无法嵌入。在此次安装中 GRUB 只能通过使用块列表安装。但是块列表是不可信赖的，不推荐使用。 启用反斜杠转义 启动后进入 KDB。 进入普通模式。 输入口令： 输入用户名： 解析命令行参数出错
 执行该表达式。 退出 GRUB。 退出循环 退出普通模式。 导出变量。 文件 文件 [参数 ...] 文件... 文件1 文件2 文件名 命令 从[K|M|G] 到[K|M|G] 引导默认启动项和会滚启动想均失败。
 无法访问文件系统 文件系统类型 %s 重写指定 GPT 设备的混合 MBR，指定的分区会成为混合 MBR 的一部分(不超过三个)。类型指 MBR 类型，+ 代表该分区是活动分区(只能有一个活动分区)。 完成载入 EFI 模拟器。 首先尝试设备 HINT，如果 HINT 以逗号结尾则同时尝试其子分区 修正显示问题 禁止更改 ATA 安全设置直到此设置被重置。 GNU GRUB  %s 版 计算文件的 CRC32 校验和。 获取或设定 ATA 磁盘参数。 哈希值 线索 优先使用 APM 关闭计算机。 关机(在某些计算机上无效)。 处理输出文件中的 N 字节。 ID IMAGE_PATH 命令 插入一个模块。 无效命令%s。
 无效的设备“%s”。
 磁盘计数无效。
 使用用户配置路径。 列出 PCI 设备。 列出全部文件。 列出可用显示模式。如果已指定分辨率，则只显示匹配的模式。 列出设备和文件。 列出设备或文件。 列出 PATH 变量中的文件。 列出默认的内存映射。 列出或选择一个输入终端。 列出或选择一个输出终端。 列出当前变量。 列出已加载的字库。 显示环境变量文件内容。 载入 64 位 XNU 镜像。 载入 BIOS 转储。 载入 FreeBSD 环境。 载入 FreeBSD 内核模块(ELF)。 载入 FreeBSD 内核模块。 载入 Linux。 载入 NTLDR 或 BootMGR。 载入 NetBSD 内核模块(ELF)。 载入 NetBSD 内核模块。 载入 XNU 扩展目录。 载入 XNU 扩展包。 载入 XNU 扩展。 载入 XNU 内核镜像。 载入一个键盘布局。 载入 multiboot 2 内核。 载入 multiboot 2 模块。 载入 multiboot 内核。 载入 multiboot 模块。 载入引导画面。 载入并初始化 EFI 模拟器。 载入其他引导程序。 载入另外的配置文件(不改变环境)。 载入另外的配置文件。 为活动终端加载背景图像。 载入 ACPI 主机表和用户指定的表。 载入 initrd。 载入 FreeBSD 内核。 载入 NetBSD 内核。 载入 OpenBSD 内核。 只载入指定的主机表(多个表用逗号分隔)。 以多种方式载入同一个文件。 载入环境变量文件。 载入 GNU Mach ... 载入 Linux %s ... 载入 Xen %s ... 载入初始化内存盘... 载入 FreeBSD 内核 %s ... 载入 Hurd ... 模块 管理 BIOS 设备映射。 操作 PCI 设备。 菜单项类型。 支持最小化的类 Bash 行编辑。对于第一个单词 Tab 列出可用的命令名补全；对于其他位置 Tab 列出可能的设备或文件。%s 支持最小化的类 Emacs 屏幕编辑。Tab 列出可补全项，Ctrl-x 或 F10 进行引导，Ctrl-c 或 F2 进入命令行，ESC 放弃编辑并返回菜单。 名称 [变量] [提示] 秒数 没有指定命令。
 没有指定设备。
 命令参数不够。
 选项： 分区 命令 端口 端口 值 [掩码] 在新环境下解析旧版配置 在相同环境下解析旧版配置 分区 %s： 同时进行直接和保留映射。 播放测试声音。 可用参数： 可用命令： 可用设备： 可用文件： 可用分区： 可用事物： 按任意键继续... 显示块列表。 输出并执行块参数。 显示硬盘识别信息和设置。 使用易读的格式显示文件大小。 正则表达式 字符串 读取指定长度(字节)。 重新启动计算机。 删除模块。 删除一个环境变量。 删除指定范围内的全部内存区域。 重置所有映射为默认值。 获取设备信息。 从一个函数返回。 字符串 将读取的值存入变量 VARNAME。 保存变量到文件。 按 UUID 搜索。如果指定了变量，找到的第一个设备会被保存到变量中。 按文件搜索设备。 按文件系统 UUID 搜索设备。 按文件系统卷标搜索设备。 搜索含有指定文件的设备。如果指定了变量，找到的第一个设备会被保存到变量中。 按卷标搜索。如果指定了变量，找到的第一个设备会被保存到变量中。 设置高级电源管理模式
(1=最低，...，254=最高，255=关闭)。 设置硬盘声音管理模式
(0=关闭，128=静音，...，254=高速)。 设置 RSDP，XSDT 和 RSDT 中的 OEMID。 设置 RSDP，XSDT 和 RSDT 中的 OEMTABLE ID。 设置 RSDP，XSDT 和 RSDT 中的 OEMTABLE 版本信息。 设置用于返回值的变量。 为找到的第一个设备设置变量。 设置一个环境变量。 设置 RSDP，XSDT 和 RSDT 中的制造商信息。 设置 RSDP，XSDT 和 RSDT 中的制造商版本信息。 设置调试环境变量。 设置驱动器为休眠模式。 设置驱动器为等待模式。 设定位置参数。 设置根设备。 设置等待时间
(0=关闭，1=5秒，2=10秒，...，240=20分，241=30分，...)。 设置指定终端的 terminfo 为指定的类型。
 设置串行端口地址。 设置串行端口奇偶校验。 设置串行端口速度。 设置串行端口停止位。 设置串行端口字长。 设置串行单元。 设置从指定设备引导所使用的镜像。

您通常不应直接使用此程序，请换用 grub-install。 设置用户命令(PBKDF2)。 设置用户口令(纯文本)(不推荐且不安全)。 将用户输入值保存到变量。 设置变量。 显示 ACPI 信息。 显示 APM 信息。 显示帮助消息。 列出详细信息。 显示已加载的模块。 显示文件内容。 显示当前映射。 显示此消息。 跳过输出文件的 N 字节。 跳过文件头部偏移字节。 指定文件名。 指定要使用的哈希值。 指定一个或多个要加载的字库。 终端仅使用 ASCII [默认]。 终端使用按逻辑排序的 UTF-8。 终端使用按可视性排序的 UTF-8。 测试 USB 支持。 测试正则表达式是否匹配相应的字符串。 在 WxH 模似下测试显示子系统。 测试显示子系统。 高亮显示的启动项将在 %d 秒后自动执行。 编辑环境块的工具。 使用当前设置翻译字符串。 用户 口令 用户 PBKDF2_PASSWORD UTF-8 检查校验和前解压文件。 未知命令 %s。
 卸载 EFI 模拟器。 用法： 使用 GDB 远程调试工具替代 DDB。 使用串行终端。 VARNAME 显示倒计时。 宽度x高度。 等待指定时间(秒)。 每输出一行后暂停(按任意键继续)。 警告：无效的背景色 `%s'
 警告：无效的前景色 `%s'
 警告：%s 中有语法错误(缺少斜杠)
 您至少需要指定一个命令。
 您的嵌入区域过小，无法装入 core.img。 [--append|--remove] [终端1] [终端2] ... [--md5] 口令 [文件] [--no-mem-option] [--type=类型] 文件 [参数 ...] [-c 文件 [-p 前缀]] [文件1 [文件2 ...]] [-e|-n] 字符串 [-f 文件] [-f 文件] 变量名 [...] [-f|-l|-u|-s|-n] [--hint 线索 [--hint 线索] ...] 名称 [-l|-h|-a] [文件 ...] [-m (stretch|normal)] 文件 [参数] [环境变量=值] [环境变量] [数字:]变量名 [选项...] [选项] 磁盘 [选项] 文件或设备 [模式 ...] [用户列表] [值]... [[-a|-u|-v] [-g WxH] 终端 [类型]] [[年-]月-日] [时:分[:秒]] 正在尝试从 GRUB 读取核心镜像“%s” 正在尝试再次从 GRUB 读取核心镜像“%s” blocklist 文件 无法压缩内核镜像 无法正确读取“%s” cmp 文件 本地文件 在 %llu 处比较失败 cp 文件 本地文件 crc 文件 设备计数超过限制 diskboot.img 的大小必须为 %u 字节 无法嵌入，但在跨盘安装时是必须的 错误：%s。
 hex 文件 无效的跳过值 %lld ls PATH 没有指定终端。 核心镜像中没有终止符 核心文件中发现未对齐的扇区 在偏移 %llu 处发生读取错误：%s 核心文件的第一扇区未对齐 核心文件的扇区碎片太多 “%s”的大小不是 %u “%s”的尺寸太大 “%s”的尺寸太小 无法在 %s 中识别文件系统，无法执行安全性检测                                                                                      boot/grub/locale/zh_TW.mo                                                                           0000600 0001750 0001750 00000074242 13417732100 0014266 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                       a     $    ,                                    !           ,   0      ]   $   r         *      
      	      7         +!     J!     O!     a!     !  $   !     !     !  !   !     !  Z   "     "     "     #     #     =#     W#     n#     #     #     #     #     #     #     	$     !$     <$  	   N$  #   X$     |$     $     $     $     $  &   $     %  !   "%  ,   D%     q%     }%     %  !   %     %     %     %     %     &     -&     H&  
   f&     q&     &     &     &  $   &     &     &     '  +   9'     e'  #   '     '     '  $   '      (     (  '   6(  9   ^(     (     (     (     (     (  
   )     )     )  +   )     )     )     
*     *  (   ,*     U*     m*     }*     *     *     *     *  7   *     +     
+     +     '+  2   =+     p+     +     +  !   r,  H   ,     ,  )   ,     -     /-     K-     h-     m-  '   r-  P   -     -     
.     .     /.     D.     Z.  "   o.     .     .  O   .     /     /     3/  %   G/  !   m/  "   /     /     /  +   /     0     (0     80  !   J0     l0     0     0      0     0     0     1     !1     51     E1     ]1     x1     1     1     1  !   1     2  2   2     Q2  *   k2  8   2     2     2     2     3  3   #3  $   W3  +   |3     3     3     3     3      4     "4     74     >4     ^4     v4     4     05     5     6     6     -6  "   F6     i6     r6     6     6  "   6  #   6     6  )   6     7     (7     @7     W7     m7     7     7     7     7  !   7  "   8  '   %8     M8     [8     s8     8     8  -   8  )   8     9     '9     ?9  &   F9  )   m9  ^   9     9  $   :  %   5:  ^   [:  _   :  >   ;  D   Y;  !   ;  '   ;  -   ;     <  )   6<     `<  )   }<  ,   <     <     <     =     (=     C=  E   T=  $   =     =     =     =     >      2>     S>  q   h>     >  :   >     2?     P?     _?     |?     ?     ?  0   ?     ?     @     !@     <@     O@  -   n@     @     @  '   @  !   @  "   A  #   0A     TA     fA  !   A     A  <   A     A  0   B     KB     YB     nB  $   tB     B     B     B  '   B     B     C     C     #C  '   1C  -   YC  '   C  '   C  .   C  *   D  /   1D     aD  .   wD  )   D     D  	   D     D  5   E     =E     SE     nE     E     E     E     E     E     E     E     E  
   E  
   F  !   F  )   /F  0   YF  6   F     F      F     F     G     G     +G     GG     UG     ^G  "   yG  F   G     G     G     G     H     H     .H  1   NH     H  7   H  /   H     I     !I     ?I  F   ]I      I  }  I     CK     VK     ]K  7  nK  4  L     M  #   M     N  .   4N     cN  &   {N      N  /   N     N     O  3   O      EO     fO     kO     }O     O  '   O     O     O  '   P  r   +P  `   P     P     Q     7Q     =Q     \Q     rQ     Q     Q     Q     Q     Q     R     R     (R  !   =R     _R  	   oR  $   yR     R  '   R     R     R  $   R     !S     @S  !   GS  .   iS     S     S     S  *   S     S     T     T     )T     DT     `T     |T     T     T     T     T     T  +   T     'U     @U  !   _U  $   U     U     U     U  !   U  #   V     :V  !   YV  !   {V  B   V  $   V  $   W     *W     1W  #   EW  
   iW     tW     W     X     0X     GX     ]X     mX  %   X     X     X     X     X     X     Y     Y  7   Y     MY     UY     aY     rY  .   Y     Y     Y     Y      Z  P   Z     ;[  ,   Q[     ~[  (   [  !   [     [     [  .   [  E   \  !   [\     }\     \     \     \     \     \     
]     ]  Q   5]     ]     ]     ]  '   ]  !   ]  !   ^     A^     Z^  !   v^     ^     ^     ^  $   ^     _     '_     7_  #   S_     w_     _     _     _     _     _     `     (`     E`     ``     {`  #   `  $   `  -   `     a  *   .a  6   Ya     a     a     a     a  ?   a  $   +b  !   Pb     rb     b     b     b  %   b     c     c  !    c     Bc     Wc     mc     !d     d     d     e     %e     <e  	   \e     fe     ye     ~e     e  !   e     e  3   e     f     %f     ;f     Qf     gf     }f     f     f     f     f     f  *   g     Ag     Og     mg     }g     g  0   g  *   g     g     h     (h  #   /h  !   Sh  `   uh     h  '   h  '   i  `   Bi  `   i  :   j  =   ?j  &   }j  ,   j  6   j     k  *   'k     Rk  /   hk  2   k     k     k     l     %l     ;l  Q   Nl  .   l     l     l     m     m     9m     Xm  k   nm  !   m  <   m  !   9n     [n     kn     n     n     n  *   n     n     o     o     >o  !   To  '   vo     o     o  -   o  !   o  !   p  !   <p     ^p  *   sp  &   p     p  1   p     q  $   /q     Tq     bq     wq  -   }q     q     q  	   q  '   q     r     'r     /r     ?r     Or  '   hr  '   r  '   r  4   r  %   s  /   ;s     ks  .   s  )   s     s  	   s     s  5   t     Gt     ]t     xt     t     t     t     t     t     t     t     t  
   u  
   u  !   u  )   9u  ,   cu  2   u     u     u     u     v     v     %v     Dv     Rv     [v  )   tv  B   v     v     v     v     w     w     -w  3   Lw  )   w  0   w     w     w     x     -x  =   Ex     x     d   `                      X         ^       j   V      F   O              '   4                       `  T  ~             	  #            )       P     >             	   =        '          _     8   a           7        (         
                       J                 u   =                    B  C  +  E             [        1                 F                    q   $    H   ;  @   %                   G                          3     t   i                        v          ]                   h   L   2       !                                      {          9  R                          0       ]  .   4      *               n   U   -           o         }                U       -  ,                                 8  l      Z              .          M        |          /                     y   Q   !   :      z             :                    x      ?            e                       I      0           )  E            s   P              
      ,                       C   6  6         $   K              <       2        "      X  5   w   >   &                p   \   G                        ;                L  Q      I      [                  m         <         S  b   7                 _              N          *            r      N        T                      @     H              B           %  A     K      &      +            J   A  Y   c             k              #                        ?               Y  3           "  a            5         D   1         M             ^  O                f   Z  g   R       9           \    W                (                   V  D  W   S       /        - Total size unknown %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s, with Linux %s %s, with Linux %s (recovery mode) %s, with Xen %s and Linux %s %s, with Xen %s and Linux %s (recovery mode) %s, with kFreeBSD %s %s, with kFreeBSD %s (recovery mode) %s, with kernel %s (via %s) %s, with kernel %s (via %s, recovery mode) %s: error: %s: info: - Last modification time %d-%02d-%02d %02d:%02d:%02d %s -l | -r | [-s] grubdev osdisk. ADDR ADDR VALUE [MASK] ADDR1,MASK1[,ADDR2,MASK2[,...]] ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Ask for file name to reboot from. Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: BLOCK Base directory for hash list. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting a command list Change configured devices. Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check key modifier status. Clear the screen. Commands: Compare FILE with local file LOCAL. Compare two files. Compute or check hash checksum. Configure serial port. Continue loops Copy FILE to local file LOCAL. Create a blank environment block file. DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] Debug tool for filesystem driver. Define a submenu. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition map type. Device %s: Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Disk count must precede disks list.
 Display a line of text. Display blocklist of FILE. Display output on all consoles. Display the usage of this command and exit. Display this help and exit. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. ENVVAR ENVVAR [ENVVAR] ... ESC at any time exits. EXPRESSION EXPRESSION ] Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Enable interpretation of backslash escapes. Enter in KDB on boot. Enter normal mode. Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Exit from GRUB. Exit from loops Exit from normal mode. Export variables. FILE FILE [ARG ...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FROM[K|M|G] TO[K|M|G] Failed to boot both default and fallback entries.
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Finalize loading of EFI emulator. First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Freeze ATA security settings until reset. GNU GRUB  version %s Get crc32 checksum of FILE. Get/set ATA disk parameters. HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. IMAGE_PATH COMMANDS Insert a module. Invalid command %s.
 Invalid device `%s'.
 Invalid disk count.
 Invoke user configuration routing. List PCI devices. List all files. List available video modes. If resolution is given show only modes matching it. List devices and files. List devices or files. List files in PATH. List memory map provided by firmware. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file without changing context. Load another config file. Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Loading GNU Mach ... Loading Linux %s ... Loading Xen %s ... Loading initial ramdisk ... Loading kernel of FreeBSD %s ... Loading the Hurd ... MODULE Manage the BIOS drive mappings. Manipulate PCI devices. Menu entry type. Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. NAME [VARIABLE] [HINTS] NUMBER_OF_SECONDS No command is specified.
 No device is specified.
 Not enough parameters to command.
 Options: PARTITION COMMANDS PORT PORT VALUE [MASK] Parse legacy config in new context Parse legacy config in same context Partition %s: Perform both direct and reverse mappings. Play a tune. Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Press any key to continue... Print a block list. Print and execute block argument. Print drive identity and settings. Print sizes in a human readable format. REGEXP STRING Read only LENGTH bytes. Reboot the computer. Remove a module. Remove an environment variable. Remove any memory regions in specified range. Reset all mappings to the default values. Retrieve device info. Return from a function. STRING Save read value into variable VARNAME. Save variables to environment block file. Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM  to TYPE.
 Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Shift positional parameters. Show ACPI information. Show APM information. Show a help message. Show a long list with more detailed information. Show loaded modules. Show the contents of a file. Show the current mappings. Show this message. Skip N bytes from output file. Skip offset bytes from the beginning of file. Specify filename. Specify hash to use. Specify one or more font files to load. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. The highlighted entry will be executed automatically in %ds. Tool to edit environment block. Translates the string with the current settings. USER PASSWORD USER PBKDF2_PASSWORD UTF-8 Uncompress file before checksumming. Unknown command `%s'.
 Unload EFI emulator. Usage: Use GDB remote debugger instead of DDB. Use serial console. VARNAME Verbose countdown. WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 You need to specify at least one command.
 [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [ADDR|comUNIT][,SPEED] [ARG] [ENVVAR=VALUE] [ENVVAR] [NUMBER:]VARNAME [OPTIONS...] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [PATTERN ...] [USERLIST] [VALUE]... [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again blocklist FILE cannot compress the kernel image cannot read `%s' correctly cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu cp FILE LOCAL crc FILE device count exceeds limit diskboot.img size must be %u bytes embedding is not possible, but this is required for cross-disk install error: %s.
 hex FILE invalid skip value %lld ls PATH no terminal specified no terminator in the core image non-sector-aligned data is found in the core file read error at offset %llu: %s the first sector of the core file is not sector-aligned the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small unable to identify a filesystem in %s; safety check can't be performed will not proceed with blocklists Project-Id-Version: grub 1.97+20110101
Report-Msgid-Bugs-To: bug-grub@gnu.org
POT-Creation-Date: 2013-12-24 21:18+0100
PO-Revision-Date: 2011-07-25 02:26+0800
Last-Translator: Cheng-Chia Tseng <pswo10680@gmail.com>
Language-Team: Chinese (traditional) <zh-l10n@linux.org.tw>
Language: zh_TW
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
  - 總大小未知 %d 秒 剩下 %d 秒。 %s 似乎包含 %s 檔案系統，該檔案系統不知道是否為 DOS 式開機所保留的空間。如果那裡存有富價值的資料，將 GRUB 安裝在那裡可能會導致「檔案系統摧毀」，資料會被 grub-setup 覆寫 (加上 --skip-fs-probe 可以停用本檢查，但請自行承擔風險) %s 似乎包含 %s 分割區映射，該映射不知道是否為 DOS 式開機所保留的空間。如果那裡存有富價值的資料，將 GRUB 安裝在那裡可能會導致「檔案系統摧毀」，資料會被 grub-setup 覆寫 (加上 --skip-fs-probe 可以停用本檢查，但請自行承擔風險) %s，採用 Linux %s %s，採用 Linux %s (復原模式) %s，採用 Xen %s 與 Linux %s %s，採用 Xen %s 與 Linux %s (復原模式) %s，採用 kFreeBSD %s %s，採用 kFreeBSD %s (復原模式) %s，採用內核 %s (透過 %s) %s，採用內核 %s (透過 %s，復原模式) %s：錯誤： %s：資訊： - 上次修改時間 %d-%02d-%02d %02d:%02d:%02d %s -l | -r | [-s] grubdev osdisk。 ADDR ADDR VALUE [MASK] ADDR1,MASK1[,ADDR2,MASK2[,...]] ASCII 接受 DOS 風格的 CR/NL 列結尾。 使用中輸入終端機： 使用中輸出終端機： 詢問要從何重新開機的檔名。 正試圖安裝 GRUB 至有多分割區標籤，或有分割區以及檔案系統的磁碟上。這尚未支援。 正試圖安裝 GRUB 至無分割的磁碟，或是某分割區上。這是個「壞」主意。 可用的輸入終端機： 可用的輸出終端機： BLOCK 雜湊清單的基礎目錄。 啟動作業系統。 啟動單人模式。 以除錯訊息開機。 以冗長訊息開機。 正在啟動指令清單 變更已設定的裝置。 檢查 Alt 鍵。 檢查 Ctrl 鍵。 檢查 Shift 鍵。 檢查 CPU 功能。 檢查按鍵的修飾鍵狀態。 清除畫面。 指令： 比較 FILE 與本地檔案 LOCAL。 比較兩個檔案。 計算或檢查雜湊校驗計算碼。 設定序列埠。 繼續迴圈 複製 FILE 至本地檔案 LOCAL。 建立空白環境區塊檔。 DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE 必須為 OS 裝置 (例：/dev/sda)。 DEVICE_NAME DIR DIRECTORY [OSBundleRequired] 檔案系統驅動程式的除錯工具。 定義子選單。 刪除變數。 判斷驅動程式。 判斷檔案系統 UUID。 判斷檔案系統標籤。 判斷檔案系統類型。 判斷分割對應類型。 裝置 %s： 停用 ACPI。 停用 SMP。 停用所有開機輸出。 停用/啟用 SMART (0/1)。 磁碟計數必須在磁碟清單之前。
 顯示文字的一列。 顯示 FILE 的區塊檔案。 顯示輸出於所有主控臺。 顯示本指令的用法並離開。 顯示本幫助並離開。 不要輸出曳尾換列。 不要列印訊息。 不要探測任何軟碟裝置。 不要使用 APM 來關閉電腦。 什麼事都不做，成功。 什麼事都不做，未成功。 不要顯示開機診斷訊息。 不要載入用半形逗號隔開的列表所指定的主控表。 不要重新開機，關機就好。 在第一個錯誤後不要停止。 ENVVAR ENVVAR [ENVVAR] ... 任何時刻的 ESC 都能離開。 EXPRESSION EXPRESSION ] 不可能內嵌。GRUB 在本設置中僅能藉由區塊清單來安裝。然而，使用區塊清單不僅「不可靠」甚至令人挫折。 啟用反斜線跳出解譯。 開機時進入 KDB。 輸入一般密碼。 輸入密碼： 輸入使用者名稱： 解析指令列引數時發生錯誤
 評估表述式。 離開 GRUB。 離開迴圈 離開一般模式。 輸出變數。 FILE FILE [ARG ...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FROM[K|M|G] TO[K|M|G] 無法啟動預設條目以及後備條目。
 無法存取檔案系統 檔案系統類型 %s 填入 GPT 裝置 DEVICE 的混合式 MBR。指定的分割區會成為混合式 MBR 的一部分。最多允許 3 個分割區。TYPE 為 MBR 類型。+ 代表分割區為 active，僅有一個分割區能有 active 標籤。 終止 EFI 模擬器的載入。 先嘗試裝置 HINT。若 HINT 以半形逗號結尾，也會嘗試子分割區 修正視訊問題。 凍結 ATA 安全設定直至重設為止。 GNU GRUB 版本 %s 取得 FILE 的 crc32 校驗計算碼。 取得/設定 ATA 磁碟參數。 HASH HINT 關閉系統，如果可能的話使用 APM。 關閉電腦。這個指令不是對所有的韌體實作都有用。 處理輸出檔的 N 位元組。 IMAGE_PATH COMMANDS 插入模組。 無效指令 %s。
 無效的裝置「%s」。
 無效的磁碟計數。
 喚起使用者組態路由。 列出 PCI 裝置。 列出所有檔案。 列出可用的視訊模式。若有給定解析度，僅顯示符合的模式。 列出裝置與檔案。 列出裝置或檔案。 列出 PATH 內的檔案。 列出韌體提供的記憶體映射。 列出或選取輸入終端機。 列出或選取輸出終端機。 列出目前的變數。 列出已載入的字型。 從環境區塊檔列出變數。 載入 64 位元 XNU 映像。 載入 BIOS 傾印。 載入 FreeBSD env。 載入 FreeBSD 內核模組 (ELF)。 載入 FreeBSD 內核模組。 載入 Linux。 載入 NTLDR 或 BootMGR。 載入 NetBSD 內核模組 (ELF)。 載入 NetBSD 內核模組。 載入 XNU 擴充目錄。 載入 XNU 擴充套件。 載入 XNU 擴充。 載入 XNU 映像。 載入鍵盤配置。 載入 multiboot 2 內核。 載入 multiboot 2 模組。 載入 multiboot 內核。 載入 multiboot 模組。 為 XNU 載入 splash 影像。 載入並初始化 EFI 模擬器。 載入另一個開機載入程式。 載入另一個組態檔而不變更情境。 載入另一個組態檔。 為使用中終端機載入背景映像。 載入主控 ACPI 表以及透過引數指定的表。 載入 initrd。 載入 FreeBSD 內核。 載入 NetBSD 內核。 載入 OpenBSD 內核。 僅載入用半形逗號隔開的列表所指定的主控表。 以多種方式載入相同檔案。 從環境區塊檔載入變數。 正在載入 GNU Mach ... 正在載入 Linux %s ... 正在載入 Xen %s ... 正在載入初始 ramdisk ... 正在載入 FreeBSD %s 的內核 ... 正在載入 Hurd ... MODULE 管理 BIOS 裝置映射關係。 處理 PCI 裝置。 選單條目類型。 支援最基本的類 BASH 列編輯。對於輸入的第一個單詞，TAB 可以列出可能的指令補完。其他地方的 TAB 可以列出可能的裝置或檔案補完。%s 支援基本的類 Emacs 編輯畫面。TAB 鍵可以列出補完。按下 Ctrl-x 或是 F10 可以開機，Ctrl-c 或 F12 可以取得指令列，而 ESC 可以放棄編輯並返回 GRUB 選單。 NAME [VARIABLE] [HINTS] NUMBER_OF_SECONDS 未指定指令。
 沒有指定裝置。
 指令缺少足夠的參數。
 選項： PARTITION COMMANDS PORT PORT VALUE [MASK] 於新情境解析舊式組態 於相同情境解析舊式組態 分割區 %s： 執行直接映射關係以及反轉映射關係。 播放音調。 可能的參數有： 可能的指令有： 可能的裝置有： 可能的檔案有： 可能的分割區有： 可能的東西有： 按下任意鍵繼續... 列印區塊清單。 列印執行區塊引數。 列印裝置識別與設定。 以人類可理解的格式列印大小。 REGEXP STRING 僅讀取 LENGTH 位元組。 重新開機。 移除模組。 移除環境變數。 移除任何指定範圍內的記憶體區域。 將所有映射關係重設為預設值。 擷取裝置資訊。 從函式回傳。 STRING 儲存讀取值至變數 VARNAME。 儲存變數至環境區塊檔。 透過 UUID 搜尋裝置。若有指定 VARIABLE，變數會被設為第一個找到的裝置。 透過檔案搜尋裝置。 透過檔案系統 UUID 搜尋裝置。 透過檔案系統標籤搜尋裝置。 透過檔案搜尋裝置。若有指定 VARIABLE，變數會被設為第一個找到的裝置。 透過標籤搜尋裝置。若有指定 VARIABLE，變數會被設為第一個找到的裝置。 設定進階能源管理
(1=低，...254=高，255=關)。 設定自動聽覺管理
(0=關，128=安靜，...254=快)。 設定 RSDP、XSDT、RSDT 的 OEMID。 設定 RSDP、XSDT、RSDT 的 OEMTABLE ID。 設定 RSDP、XSDT、RSDT 的 OEMTABLE 修訂版本。 設定要傳回值的變數。 將變數設為第一個找到的裝置。 設定環境變數。 設定 RSDP、XSDT、RSDT 的建立者欄位。 設定 RSDP、XSDT、RSDT 的建立者修訂版。 設定除錯環境變數。 設定裝置為睡眠模式。 設定裝置為待機模式。 設定位置參數。 設定根裝置。 設定待機逾時期
(0=關，1=5秒，2=10秒，...240=20分，241=30分...)。 將 TERM 的 terminfo 類型設定為 TYPE。
 設定序列埠位址。 設定序列埠同位。 設定序列埠速度。 設定序列埠停止位元。 設定序列埠單詞長度。 設定序列單位。 設置要從 DEVICE 啟動的裝置。

您應該不能直接執行這個程式。請改用 grub-install。 設定使用者密碼 (PBKDF2)。 設定使用者密碼 (純文字)。不建議且不安全。 以使用者輸入設定變數。 設定變數。 推移位置參數。 顯示 ACPI 資訊。 顯示 APM 資訊。 顯示幫助訊息。 顯示有更多詳細資訊的長清單。 顯示載入的模組。 顯示檔案的內容。 顯示目前的映射關係。 顯示這個訊息。 跳過輸出檔的 N 位元組。 跳過檔案開頭的偏移位元組。 指定檔名。 指定要使用的雜湊。 指定一個或多個要載入的字型檔。 終端機僅為 ASCII [預設]。 終端機為邏輯排序 UTF-8。 終端機為視覺排序 UTF-8。 測試 USB 支援。 測試 REGEXP 是否能比對到 STRING。 以 WxH 模式測試視訊子系統。 測試視訊子系統。 被突顯的條目會在 %d 秒內自動執行。 編輯環境區塊的工具。 以目前設定值來翻譯字串。 USER PASSWORD USER PBKDF2_PASSWORD UTF-8 在處理校驗計算碼前解壓縮檔案。 未知指令「%s」。
 卸載 EFI 模擬器。 用法： 使用 GDB 遠端除錯器取代 DDB。 使用序列主控臺。 VARNAME 冗長倒數。 WIDTHxHEIGHT。 等候指定的秒數。 在每列輸出後等候按鍵按壓。 警告：無效的背景色彩「%s」
 警告：無效的前景色彩「%s」
 警告：語法錯誤 (遺失正斜線) 於「%s」
 您必須指定至少一個指令。
 [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-e|-n] STRING [-f FILE] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [ADDR|comUNIT][,SPEED] [ARG] [ENVVAR=VALUE] [ENVVAR] [NUMBER:]VARNAME [OPTIONS...] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [PATTERN ...] [USERLIST] [VALUE]... [[-a|-u|-v] [-g WxH] TERM [TYPE]] [[year-]month-day] [hour:minute[:second]] 正試圖從 GRUB 讀取核心映像「%s」 正試圖從 GRUB 再次讀取核心映像「%s」 blocklist FILE 無法壓縮內核映像 無法正確讀取「%s」 cmp FILE LOCAL comUNIT[,SPEED] 比較偏移 %llu 處的失敗 cp FILE LOCAL crc FILE 裝置計數超出限制 diskboot.img 大小必須為 %u 位元組 不可能內嵌，但是這對於跨磁碟安裝來說是必要的 錯誤：%s。
 hex FILE 無效的跳過值 %lld ls PATH 未指定終端機 核心映像內沒有終止器 在核心檔內找到非磁區對齊形式的資料 讀取偏移 %llu 處時發生錯誤：%s 核心檔的第一磁區不是磁區對齊形式 核心檔的磁區過於零散 「%s」的大小不是 %u 「%s」的大小過大 「%s」的大小過小 無法辨識 %s 內的檔案系統；無法執行安全檢查 不會繼續處理區塊清單                                                                                                                                                                                                                                                                                                                                                               boot/grub/fonts/unicode.pf2                                                                         0000600 0001750 0001750 00011610120 13417732100 0014620 0                                                                                                    ustar   grub                            grub                                                                                                                                                                                                                   FILE   PFF2NAME   Unknown Regular 16 FAMI   Unknown WEIG   normal SLAN   normal PTSZ    MAXW    MAXH    ASCE    DESC    CHIX 8                #     M     w                       	  I   
  s                         E     o                         A     k                         =     g                        !     "  %   #  2   $  D   %  W   &  j   '  }   (     )     *  ¦   +  ·   ,     -     .     /     0     1     2     3  0   4  B   5  T   6  f   7  x   8  Ê   9  Ü   :  î   ;  ú   <     =     >     ?     @     A     B  +   C  =   D  O   E  a   F  s   G  ą   H  ė   I  ĩ   J  ĺ   K     L     M     N     O     P  '   Q  9   R  M   S  _   T  q   U  ń   V  Ŗ   W  ũ   X  Ż   Y     Z     [     \     ]     ^  "   _  /   `  :   a  F   b  V   c  i   d  y   e  ƌ   f  Ɯ   g  ƭ   h     i     j     k     l  	   m     n  +   o  ;   p  K   q  ]   r  o   s     t  Ǐ   u  Ǡ   v  ǰ   w     x     y     z     {     |     }     ~  -     :     d     Ȏ     ȸ               6     `     Ɋ     ɴ               2     \     ʆ     ʰ               .     X     ˂     ˬ                *     T     ~     ̨               &     P     z     ͤ     ͮ     ͺ                              !     ,     @     O     `     m     x     Ό     Η     Σ     ε                                        $     3     D     V     h     z     ό     ϡ     ϶                    
          0     E     Z     o     Є     З     Ъ     н                         "     7     L     a     o     т     ї     Ѭ                               %     8     K     ^     q     ҅     Җ     Ҩ     һ                              *     <     O     b     u     ӈ     ӛ     Ӯ                         	          /     D     V     k        Ԓ    ԧ    Ի                  	     
  3    H    [    p    Ճ    ՘    խ                        $    9    L    _    q    ֆ    ֙    ֮               !    "    #  +  $  @  %  U  &  j  '  ~  (  ג  )  ק  *  ׺  +    ,    -    .    /    0  +  1  >  2  M  3  _  4  r  5  ؉  6  ؞  7  س  8    9    :    ;     <    =  %  >  :  ?  M  @  _  A  p  B  ك  C  ٔ  D  ٩  E  ټ  F    G    H    I    J     K  2  L  D  M  X  N  k  O  ڀ  P  ړ  Q  ڪ  R  ڿ  S    T    U    V    W     X  3  Y  H  Z  [  [  p  \  ۃ  ]  ۘ  ^  ۫  _  ۾  `    a    b    c    d    e  6  f  I  g  \  h  m  i  ܂  j  ܕ  k  ܩ  l  ܼ  m    n    o    p    q  $  r  9  s  L  t  _  u  t  v  ݉  w  ݠ  x  ݵ  y    z    {    |  	  }    ~  1    D    T    h    {    ލ    ޟ    ޱ                        !    3    E    W    i    {    ߍ    ߡ    ߳                             3    D    V    i    }                                    $    6    F    X    j    |                                     '    9    I    [    m                                                 7    L    a    t                                    -    B    U    j    }                                $    4    I    ]    r                                    +    >    P    f    z                                    /    B    V    i    ~                                  *    =    T    i    ~      	    
                      &    9    P    e    z                                    -    ?    O    c     w  !    "    #    $    %    &    '    (  
  )    *  /  +  D  ,  W  -  l  .    /    0    1    2    3    4    5    6    7  +  8  <  9  P  :  c  ;  w  <    =    >    ?    @    A    B    C    D     E  3  F  E  G  Z  H  m  I    J    K    L    M    N    O    P    Q    R  &  S  6  T  I  U  Y  V  j  W    X    Y    Z    [    \    ]    ^    _    `    a  ,  b  >  c  N  d  `  e  p  f    g    h    i    j    k    l    m    n  
  o    p  0  q  C  r  U  s  g  t  y  u    v    w    x    y    z    {    |    }    ~  '    7    G    W    g    y                                        %    6    H    Y    l    ~                                
        +    :    N    `    p                                    $    9    K    ]    q                                                '    3    @    K    V    a    n    {                                            
             +    6    A    N    Y    f    s                                                        &    4    B    P    a    r                                                    #    /    <    I    U    a    m    y                                                        	  $  
  1    =    J    W    b    n    {                                                
        "    .     <  !  G  "  S  #  _  $  j  %  v  &    '    (    )    *    +    ,    -    .    /    0    1  	  2    3    4  ,  5  8  6  C  7  N  8  \  9  m  :  y  ;    <    =    >    ?    @    A    B    C    D    E     F    G    H  %  I  0  J  ;  K  H  L  W  M  e  N  r  O  ~  P    Q    R    S    T    U    V    W    X    Y    Z  #  [  0  \  >  ]  J  ^  V  _  a  `  l  a  x  b    c    d    e    f    g    h    i    j    k    l  	  m    n  "  o  /  p  ;  q  L  r  \  s  o  t    u    v    w    x    y    z    {    |     }    ~       ,    A    V    k                                    	     	 #    	 8    	 M    	 d    	 |    	     	     	     	     	     	     	     	    	     	1    	C    	V    	h    	z    	    	    	    	    	    	    	    	    	#    	5    	H    	[    	n    	    	    	    	    	    	    	    	
    	    	-    	=    	O    	a    	s    	    	    	    	    	    	    	    	    	    	    	+    	;    	K    	^    	p    	    	    	    	    	    	    	    	    	    	-    	@    	V    	l    	    	    	    	    	    	    	    	    	    	     	.    	@    	P    	e    	w    	    	    	    	    	    	    	    	    	    	%    	8    	J    	Z    	k    	}    	    	    	    	    	    	    	    	    	    	2    	D    	V     	h    	|    	    	    	    	    	    	    		  	  		  
  		'    		:    		M    		b    		v    		    		    		    		    		    		    		    	
    	
#    	
5    	
G    	
[    	
m    	
    	
    	
    	
     	
  !  	
  "  	
  #  	
  $  	  %  	%  &  	7  '  	L  (  	^  )  	q  *  	  +  	  ,  	  -  	  .  	  /  	  0  	  1  	  2  	  3  	'  4  	7  5  	I  6  	Y  7  	j  8  	z  9  	  :  	  ;  	  <  	  =  	  >  	  ?  	  @  	  A  	  B  	  C  	0  D  	B  E  	U  F  	e  G  	x  H  	  I  	  J  	  K  	  L  	  M  	  N  	  O  	  P  	  Q  	!  R  	4  S  	G  T  	Z  U  	j  V  	z  W  	  X  	  Y  	  Z  	  [  	  \  	  ]  	  ^  	
  _  	   `  	1  a  	D  b  	U  c  	h  d  	z  e  	  f  	  g  	  h  	  i  	  j  	  k  	  l  	
  m  	  n  	.  o  	C  p  	W  q  	j  r  	{  s  	  t  	  u  	  v  	  w  	  x  	  y  	  z  	  {  	)  |  	<  }  	S  ~  	h    	    	    	    	    	    	    	    	    	    	    	+    	N    	f    	}    	    	    	    	    	    	    	    	    	    	0    	E    	X    	k    	}    	    	    	    	    	    	    	    	    	%    	8    	K    	\    	q    	    	    	    	    	    	    	    	    	    	,    	;    	P    	c    	y    	    	    	    	    	    	    	    	    	    	.    	@    	Q    	h    	~    	    	    	    	    	    	    	    	    	+    	=    	R    	e    	s    	    	    	    	    	    	    	    	    	"    	2    	G    	Z    	q    	    	    	    	    	    	    	    	    	!    	6    	I    	[    	k    	    	    	    	    	    	    	    	    	%    	<    	Q    	d    	w    	    	    	    	    	    	    	    	     	    	/    	B    	V    	j    	}    	    	    	  	  	  
  	    	    	     	    	"    	5    	F    	X    	h    	{    	    	    	    	    	    	    	    	    	'    	9    	J    	\     	l  !  	  "  	  #  	  $  	  %  	  &  	  '  	  (  	  )  	)  *  	>  +  	S  ,  	h  -  	}  .  	  /  	  0  	  1  	  2  	  3  	  4  		  5  	  6  	.  7  	A  8  	T  9  	g  :  	z  ;  	  <  	  =  	  >  	  ?  	  @  	  A  	  B  	   C  	 !  D  	 3  E  	 F  F  	 X  G  	 l  H  	   I  	   J  	   K  	   L  	   M  	   N  	   O  	!  P  	!  Q  	!&  R  	!8  S  	!K  T  	!\  U  	!n  V  	!  W  	!  X  	!  Y  	!  Z  	!  [  	!  \  	!  ]  	!  ^  	!  _  	"  `  	"  a  	"%  b  	"6  c  	"G  d  	"Z  e  	"m  f  	"~  g  	"  h  	"  i  	"  j  	"  k  	"  l  	"  m  	"  n  	#  o  	#&  p  	#9  q  	#K  r  	#]  s  	#p  t  	#  u  	#  v  	#  w  	#  x  	#  y  	#  z  	#  {  	$  |  	$  }  	$%  ~  	$5    	$J    	$[    	$m    	$    	$    	$    	$    	$    	$    	$    	%    	%    	%    	%0    	%E    	%Z    	%o    	%    	%    	%    	%    	%    	%    	%    	%    	%    	%    	&
    	&    	&!    	&-    	&9    	&G    	&U    	&a    	&m    	&y    	&    	&    	&    	&    	&    	&    	&    	&    	&    	&    	&    	'    	'    	'"    	'.    	':    	'F    	'Q    	']    	'j    	'u    	'    	'    	'    	'    	'    	'    	'    	'    	'    	'    	'    	'    	(
    	(    	($    	(1    	(F    	([    	(p    	(    	(    	(    	(    	(    	(    	(    	)    	)    	)/    	)=    	)M    	)^    	)o    	){    	)    	)    	)    	)    	)    	)    	)    	*    	*    	*(    	*9    	*J    	*[    	*n    	*    	*    	*    	*    	*    	*    	*    	+    	+    	+/    	+=    	+I    	+V    	+k    	+    	+    	+    	+    	+    	+    	+    	,    	,(     	,=    	,g    	,    	,    	,    	,    	-    	-.    	-M  	  	-b  
  	-s    	-    	-    	-    	-    	-    	-    	-    	-    	.    	.    	.'    	.5    	.E    	.Q    	.\    	.j    	.{    	.    	.    	.    	.     	.  !  	.  "  	.  #  	/  $  	/  %  	/'  &  	/6  '  	/I  (  	/T  )  	/d  *  	/s  +  	/  ,  	/  -  	/  .  	/  /  	/  0  	/  1  	/  2  	/  3  	0  4  	0  5  	0-  6  	0=  7  	0O  8  	0_  9  	0o  :  	0  ;  	0  <  	0  =  	0  >  	0  ?  	0  @  	0  A  	0  B  	1
  C  	1  D  	1,  E  	1?  F  	1N  G  	1_  H  	1u  I  	1  J  	1  K  	1  L  	1  M  	1  N  	1  O  	1  P  	1  Q  	1  R  	1  S  	2  T  	2  U  	2   V  	2,  W  	27  X  	2E  Y  	2Q  Z  	2\  [  	2i  \  	2v  ]  	2  ^  	2  _  	2  `  	2  a  	2  b  	2  c  	2  d  	2  e  	2  f  	3  g  	3!  h  	33  i  	3E  j  	3W  k  	3h  l  	3s  m  	3~  n  	3  o  	3  p  	3  q  	3  r  	3  s  	3  t  	3  u  	3  v  	4  w  	4!  x  	47  y  	4K  z  	4\  {  	4m  |  	4}  }  	4  ~  	4    	4    	4    	4    	4    	4    	5	    	5    	5-    	5=    	5M    	5_    	5o    	5    	5    	5    	5    	5    	5    	5    	5    	6    	6    	6/    	6@    	6P    	6b    	6u    	6    	6    	6    	6    	6    	6    	6    	7    	7    	7*    	7=    	7O    	7a    	7s    	7    	7    	7    	7    	7    	7    	7    	8
    	8    	80    	8C    	8X    	8o    	8    	8    	8    	8    	8    	8    	8    	9    	9!    	94    	9C    	9V    	9e    	9r    	9    	9    	9    	9    	9    	9    	9    	:     	:    	:'    	:7    	:H    	:[    	:n    	:    	:    	:    	:    	:    	:    	:    	:    	:    	;    	;    	;#    	;2    	;\    	;    	;    	;    	;    	;    	;    	;    	;    	;    	;    	<    	<-    	<;    	<I    	<T    	<_    	<p    	<    	<    	<    	<    	<    	<    	<    	<    	=    	=    	=*    	=?    	=Q    	=d    	=s    	=     	=    	=    	=    	=    	=    	=    	=    	=    	>
  	  	>  
  	>(    	>>    	>Q    	>q    	>    	>    	>    	>    	>    	>    	?    	?:    	?L    	?^    	?v    	?    	?    	?    	?    	?    	@    	@'     	@E  !  	@]  "  	@{  #  	@  $  	@  %  	@  &  	@  '  	@  (  	A  )  	A-  *  	AB  +  	AV  ,  	An  -  	A  .  	A  /  	A  0  	A  1  	A  2  	A  3  	B  4  	B  5  	B'  6  	B3  7  	B?  8  	BK  9  	BV  :  	Ba  ;  	Bm  <  	By  =  	B  >  	B  ?  	B  @  	B  A  	B  B  	B  C  	B  D  	B  E  	B  F  	B  G  	C  H  	C  I  	C  J  	C,  K  	C:  L  	CO  M  	Cd  N  	C  O  	C  P  	C  Q  	C  R  	C  S  	C  T  	D  U  	D  V  	D$  W  	D4  X  	DF  Y  	DV  Z  	Dk  [  	D|  \  	D  ]  	D  ^  	D  _  	D  `  	D  a  	D  b  	D  c  	E  d  	E!  e  	E6  f  	EG  g  	EV  h  	Eh  i  	E|  j  	E  k  	E  l  	E  m  	E  n  	E  o  	E  p  	E  q  	F  r  	F,  s  	FA  t  	FP  u  	Fa  v  	Ft  w  	F  x  	F  y  	F  z  	F  {  	F  |  	F  }  	F  ~  	G    	G$    	G7    	GC    	GP    	G^    	Gm    	Gz    	G    	G    	G    	G    	G    	G    	G    	G    	G    	H     	H    	H    	H*    	H9    	HH    	HV    	Hd    	Hs    	H    	H    	H    	H    	H    	H    	H    	H    	I    	I    	I$    	I1    	I>    	IL    	IZ    	If    	Iq    	I}    	I    	I    	I    	I    	I    	I    	I    	I    	I    	J    	J    	J0    	JE    	JZ    	Jo    	J    	J    	J    	J    	J    	J    	K    	K    	K)    	K;    	KL    	K[    	Kj    	Kx    	K    	K    	K    	K    	K    	K    	K    	K    	L    	L    	L'    	L8    	LI    	LX    	Lg    	Lx    	L    	L    	L    	L    	L    	L    	L    	L    	M    	M    	M+    	M9    	MJ    	M[    	Mj    	My    	M    	M    	M    	M    	M    	M    	M    	M    	M    	N    	N    	N&    	N1    	N<    	NH    	NT    	Ne    	Nw    	N    	N    	N    	N    	N    	N    	N     	O    	O    	O-    	OB    	OW    	Ol    	O    	O    	O  	  	O  
  	O    	O    	O    	P    	P)    	P>    	PS    	Ph    	P}    	P    	P    	P    	P    	P    	P    	Q    	Q%    	Q:    	QO    	Qd    	Qy    	Q     	Q  !  	Q  "  	Q  #  	Q  $  	Q  %  	R  &  	R!  '  	R6  (  	RK  )  	R`  *  	Ru  +  	R  ,  	R  -  	R  .  	R  /  	R  0  	R  1  	S  2  	S  3  	S2  4  	SG  5  	S\  6  	Sq  7  	S  8  	S  9  	S  :  	S  ;  	S  <  	S  =  	T  >  	T  ?  	T.  @  	TC  A  	TX  B  	Tm  C  	T  D  	T  E  	T  F  	T  G  	T  H  	T  I  	U   J  	U  K  	U*  L  	U?  M  	UT  N  	Ui  O  	U~  P  	U  Q  	U  R  	U  S  	U  T  	U  U  	U  V  	V  W  	V&  X  	V;  Y  	VP  Z  	Ve  [  	Vz  \  	V  ]  	V  ^  	V  _  	V  `  	V  a  	V  b  	W  c  	W"  d  	W7  e  	WL  f  	Wa  g  	Wv  h  	W  i  	W  j  	W  k  	W  l  	W  m  	W  n  	X	  o  	X  p  	X3  q  	XH  r  	X]  s  	Xr  t  	X  u  	X  v  	X  w  	X  x  	X  y  	X  z  	Y  {  	Y  |  	Y/  }  	YD  ~  	YY    	Yn    	Y    	Y    	Y    	Y    	Y    	Y    	Z    	Z    	Z+    	Z@    	ZU    	Zj    	Z    	Z    	Z    	Z    	Z    	Z    	Z    	[    	['    	[<    	[Q    	[f    	[{    	[    	[    	[    	[    	[    	[    	\    	\#    	\8    	\M    	\b    	\w    	\    	\    	\    	\    	\    	\    	]
    	]    	]4    	]I    	]^    	]s    	]    	]    	]    	]    	]    	]    	^    	^    	^0    	^E    	^Z    	^o    	^    	^    	^    	^    	^    	^    	_    	_    	_,    	_A    	_V    	_k    	_    	_    	_    	_    	_    	_    	_    	`    	`(    	`=    	`R    	`g    	`|    	`    	`    	`    	`    	`    	`    	a    	a$    	a9    	aN    	ac    	ax    	a    	a    	a    	a    	a    	a    	b    	b     	b5    	bJ    	b_    	bt    	b    	b    	b    	b    	b    	b    	c    	c    	c1    	cF    	c[    	cp    	c    	c    	c    	c    	c    	c  	   	d  	  	d  	  	d&  	  	d1  	  	d=  	  	db  	  	d  	  	d  	  	d  		  	d  	
  	e  	  	e6  	  	eZ  	  	e|  	  	e  	  	e  	  	e  	  	f  	  	fE  	  	fl  	  	f  	  	f  	  	f  	  	f  	  	g   	  	gB  	  	gb  	  	g  	  	g  	  	g  	  	g  	  	h  	   	h.  	!  	hP  	"  	hp  	#  	h  	$  	h  	%  	h  	&  	h  	'  	i  	(  	i4  	)  	iV  	*  	ix  	+  	i  	,  	i  	-  	i  	.  	i  	/  	j  	0  	jA  	1  	jc  	2  	j  	3  	j  	4  	j  	5  	j  	6  	k  	7  	k/  	8  	kQ  	9  	ks  	:  	k  	;  	k  	<  	k  	=  	k  	>  	k  	?  	k  	@  	l  	A  	l)  	B  	l6  	C  	lC  	D  	lO  	E  	l[  	F  	lg  	G  	ls  	H  	l  	I  	l  	J  	l  	K  	l  	L  	l  	M  	l  	N  	l  	O  	m  	P  	m(  	Q  	mK  	R  	mV  	S  	ma  	T  	mm  	U  	my  	V  	m  	W  	m  	X  	m  	Y  	m  	Z  	n   	[  	n$  	\  	nH  	]  	nl  	^  	n  	_  	n  	`  	n  	a  	n  	b  	o   	c  	o/  	d  	o?  	e  	oL  	f  	o^  	g  	oo  	h  	o  	i  	o  	j  	o  	k  	o  	l  	o  	m  	o  	n  	p  	o  	p.  	p  	pD  	q  	pQ  	r  	p\  	s  	p  	t  	p  	u  	p  	v  	p  	w  	p  	x  	p  	y  	q  	z  	q  	{  	q+  	|  	qM  	}  	qo  	~  	q  	  	q  	  	q  	  	q  	  	q  	  	q  	  	r  	  	r   	  	rB  	  	rf  	  	r  	  	r  	  	r  	  	s  	  	s+  	  	sN  	  	sc  	  	sx  	  	s  	  	s  	  	s  	  	s  	  	t	  	  	t.  	  	tP  	  	tq  	  	t  	  	t  	  	t  	  	t  	  	u  	  	u6  	  	uX  	  	uy  	  	u  	  	u  	  	u  	  	v  	  	v-  	  	vO  	  	vr  	  	v  	  	v  	  	v  	  	v  	  	w  	  	w.  	  	wP  	  	wr  	  	w  	  	w  	  	w  	  	w  	  	x  	  	x$  	  	x9  	  	xN  	  	xq  	  	x  	  	x  	  	x  	  	x  	  	y  	  	y  	  	y+  	  	y<  	  	y]  	  	y|  	  	y  	  	y  	  	y  	  	y  	  	y  	  	y  	  	y  	  	y  	  	z  	  	z(  	  	zF  	  	zj  	  	zv  	  	z  	  	z  	  	z  	  	z  	  	z  	  	z  	  	{
  	  	{  	  	{4  	  	{K  	  	{`  	  	{u  	  	{  	  	{  	  	{  	  	{  	  	{  	  	|   	  	|G  	  	|_  	  	|n  	  	|  	  	|  	  	|  	  	|  	  	|  	  	|  	  	}  	  	}*  	  	}F  	  	}b  	  	}{  	  	}  	  	}  	  	}  	  	~  	  	~  	  	~3  	  	~F  	  	~^  	  	~|  	  	~  	  	~  	  	~  	  	~  	  	~  	  	  	  	  	  	,  
   	A  
  	V  
  	b  
  	m  
  	z  
  	  
  	  
  	  
  	  
	  	  

  	8  
  	b  
  	w  
  	  
  	  
  	  
  	  
  	   
  	  
  	*  
  	N  
  	t  
  	  
  	  
  	  
  	  
  	  
  	"  
  	>  
  	Z  
  	x  
  	  
   	  
!  	  
"  	  
#  	  
$  	*  
%  	H  
&  	f  
'  	  
(  	  
)  	  
*  	  
+  	  
,  	  
-  	-  
.  	K  
/  	i  
0  	  
1  	  
2  	  
3  	  
4  	  
5  		  
6  	%  
7  	C  
8  	X  
9  	v  
:  	  
;  	  
<  	  
=  	  
>  	  
?  	  
@  	  
A  	+  
B  	7  
C  	E  
D  	Z  
E  	o  
F  	  
G  	  
H  	  
I  	  
J  	  
K  	  
L  	  
M  	  
N  	  
O  	  
P  	.  
Q  	C  
R  	O  
S  	d  
T  	y  
U  	  
V  	  
W  	  
X  	  
Y  	  
Z  	  
[  	$  
\  	D  
]  	f  
^  	{  
_  	  
`  	  
a  	  
b  	  
c  	  
d  	  
e  	  
f  	.  
g  	D  
h  	X  
i  	k  
j  	  
k  	  
l  	  
m  	  
n  	  
o  	  
p  	  
q  	  
r  	(  
s  	F  
t  	j  
u  	  
v  	  
w  	  
x  	  
y  	  
z  	  
{  	  
|  	  
}  	'  
~  	<  
  	Q  
  	f  
  	{  
  	  
  	  
  	  
  	  
  	  
  	  
  	  
  	  
  	&  
  	A  
  	X  
  	n  
  	  
  	  
  	  
  	  
  	  
  	  
  	6  
  	X  
  	h  
  	}  
  	  
  	  
  	  
  	  
  	  
  	  
  	  
  	  
  	+  
  	:  
  	J  
  	]  
  	x  
  	  
  	  
  	  
  	  
  	  
  	  
  	  
  	  
  	'  
  	=  
  	P  
  	c  
  	t  
  	  
  	  
  	  
  	  
  	  
  	  
  	  
  	  
  	%  
  	:  
  	O  
  	Z  
  	i  
  	v  
  	  
  	  
  	  
  	  
  	  
  	  
  	  
  	  
  	  
  	  
  	  
  	0  
  	C  
  	X  
  	d  
  	y  
  	  
  	  
  	  
  	  
  	  
  	  
  	  
  	-  
  	B  
  	W  
  	l  
  	  
  	  
  	  
  	  
  	  
  	  
  	  
  	  
  	+  
  	<  
  	Q  
  	f  
  	|  
  	  
  	  
  	  
  	  
  	  
  	  
  	  
  	&  
  	8  
  	M  
  	k  
  	  
  	  
  	  
  	  
  	  
  	  
  	  
  	  
  	(  
  	=  
  	R  
  	g  
  	|     	    	    	    	    	    	    	    	    	   	  	4  
  	H    	]    	p    	    	    	    	    	    	    	    	    	'    	<    	N    	`    	s    	    	    	    	    	    	     	  !  	
  "  	  #  	3  $  	F  %  	Z  &  	m  '  	  (  	  )  	  *  	  +  	  ,  	  -  	  .  	
  /  	!  0  	6  1  	H  2  	]  3  	r  4  	  5  	  6  	  7  	  8  	  9  	  :  	  ;  	  <  	+  =  	6  >  	F  ?  	R  @  	`  A  	n  B  	|  C  	  D  	  E  	  F  	  G  	  H  	  I  	   J  	  K  	*  L  	C  M  	b  N  	n  O  	  P  	  Q  	  R  	  S  	  T  	  U  	  V  	  W  	$  X  	7  Y  	L  Z  	a  [  	v  \  	  ]  	  ^  	  _  	  `  	  a  	  b  	  c  	  d  	.  e  	C  f  	X  g  	n  h  	  i  	  j  	  k  	  l  	  m  	  n  	  o  	  p  	   q  	5  r  	H  s  	]  t  	r  u  	  v  	  w  	  x  	  y  	  z  	  {  	  |  	  }  	/  ~  	D    	Y    	n    	    	    	    	    	    	    	    	    	&    	;    	R    	g    	|    	    	    	    	    	    	    	"    	A    	U    	j    	    	    	    	    	    	    	    	    	(    	=    	R    	g    	    	    	    	    	    	    	    	    	.    	C    	X    	g    	w    	    	    	    	    	    	    	    	1    	G    	h    	}    	    	    	    	    	    	    	    	    	    	/    	D    	T    	c    	w    	    	    	    	    	    	    	    	3    	H    	]    	r    	    	    	    	    	    	    	    	    	,    	A    	V    	k    	    	    	    	    	    	    	    	    	#    	9    	O    	k    	    	    	    	    	    	    	    	%    	C    	g    	}    	    	    	    	    	    	$    	9    	N     	c    	x    	    	    	    	    	    	    	  	  		  
  	"    	>    	U    	i    	~    	    	    	    	    	    	    	    	'    	=    	L    	b    	u    	    	    	    	    	     	  !  	  "  	1  #  	L  $  	a  %  	|  &  	  '  	  (  	  )  	  *  	  +  	  ,  	  -  	)  .  	G  /  	c  0  	  1  	  2  	  3  	  4  	  5  	  6  	  7  	  8  	6  9  	O  :  	k  ;  	  <  	  =  	  >  	  ?  	  @  	  A  	  B  	  C  	  D  	  E  	   F  	5  G  	C  H  	R  I  	l  J  	  K  	  L  	  M  	  N  	  O  	  P  	  Q  	  R  	  S  	&  T  	;  U  	P  V  	\  W  	i  X  	~  Y  	  Z  	  [  	  \  	  ]  	  ^  	  _  	  `  	0  a  	J  b  	b  c  	q  d  	  e  	  f  	  g  	  h  	  i  	  j  	  k  	  l  	  m  	,  n  	>  o  	U  p  	k  q  	  r  	  s  	  t  	  u  	  v  	  w  	  x  	  y  	&  z  	1  {  	@  |  	Q  }  	]  ~  	o    	    	    	    	    	    	    	    	    	    	.    	D    	Z    	s    	    	    	    	    	    	    	    	'    	@    	\    	p    	    	    	    	    	    	    	    	6    	M    	h    	z    	    	    	    	    	    	    	    	$    	9    	R    	m    	    	    	    	    	    	    	    	(    	=    	U    	l    	    	    	    	    	    	    	    	    	    	-    	;    	L    	Z    	o    	    	    	    	    	    	    	    	.    	=    	R    	g    	|    	    	    	    	    	    	    	     	    	*    	?    	T    	i    	~    	    	    	    	    	    	    	    	(    	8    	J    	[    	o    	    	    	    	    	    	    	    	    	&    	;    	P    	e    	z    	    	    	    	    	    	    	    	"     	7    	L    	a    	m    	{    	    	    	    	  	  	  
  	    	%    	8    	M    	b    	}    	    	    	    	    	    	    	"    	9    	M    	e    	{    	    	    	    	    	     	  !  	  "  	!  #  	6  $  	L  %  	b  &  	x  '  	  (  	  )  	´  *  	  +  	  ,  	  -  	  .  	  /  	1  0  	G  1  	\  2  	o  3  	Ä  4  	Û  5  	î  6  	  7  	  8  	  9  	  :  	  ;  	2  <  	G  =  	\  >  	r  ?  	Ā  @  	Đ  A  	Ġ  B  	Į  C  	Ľ  D  	  E  	  F  	  G  	  H  	  I  	+  J  	@  K  	\  L  	v  M  	Œ  N  	ş  O  	Ŵ  P  	  Q  	  R  	  S  	  T  	  U  	2  V  	G  W  	\  X  	j  Y  	  Z  	Ɣ  [  	Ʃ  \  	ƾ  ]  	  ^  	  _  	  `  	  a  	+  b  	G  c  	W  d  	h  e  	}  f  	ǒ  g  	Ǡ  h  	Ǹ  i  	  j  	  k  	  l  	  m  	)  n  	:  o  	M  p  	b  q  	{  r  	Ȓ  s  	Ȫ  t  	Ȼ  u  	  v  	  w  	  x  	  y  	,  z  	D  {  	`  |  	z  }  	ɑ  ~  	ɬ    	    	    	    	    	    	'    	<    	U    	v    	ʗ    	ʸ    	    	    	    	    	*    	D    	^    	z    	˒    	ˮ    	    	    	    	#    	8    	M    	b    	y    	̐    	̣    	̷    	    	    	    	    	3    	N    	m    	͎    	ͪ    	ͽ    	    	    	    	(    	@    	W    	r    	·    	Ο    	ι    	    	    	    	    	&    	=    	T    	k    	}    	ϑ    	Ϧ    	ϻ    	    	    	    	    	#    	7    	N    	d    	w    	Ќ    	С    	ж    	    	    	    	    	    	%    	3    	A    	P    	_    	m    	т    	ѐ    	ѥ    	ѷ    	    	    	    	    	5    	O    	]    	r    	҇    	Ҝ    	ұ    	    	    	    	    	    	/    	D    	Y    	n    	Ӄ    	Ә    	ӭ    	    	    	    	    	
    	    	4    	I    	^    	s    	Ԉ    	ԝ    	Բ    	    	     	    	    	    	%    	5    	E    	U    	e    	t  	  	Մ  
  	Ք    	դ    	յ    	    	    	    	    	
    	    	+    	<    	L    	\    	l    	|    	֋    	֛    	֪    	ֺ    	    	    	     	   !  	  "  	   #  	0  $  	?  %  	P  &  	`  '  	q  (  	׀  )  	ב  *  	ע  +  	״  ,  	  -  	  .  	  /  	  0  	  1  	  2  	   3  	/  4  	B  5  	N  6  	Z  7  	f  8  	r  9  	}  :  	؈  ;  	ؓ  <  	ب  =  	ؽ  >  	  ?  	  @  	  A  	  B  	  C  	)  D  	<  E  	O  F  	`  G  	r  H  	~  I  	ى  J  	ٕ  K  	٢  L  	ٮ  M  	ٺ  N  	  O  	  P  	  Q  	  R  	   S  	  T  	!  U  	2  V  	C  W  	S  X  	d  Y  	u  Z  	چ  [  	ڕ  \  	ڦ  ]  	ڻ  ^  	  _  	  `  	  a  	  b  	$  c  	9  d  	N  e  	c  f  	x  g  	ۍ  h  	ۢ  i  	۷  j  	  k  	  l  	  m  	  n  	   o  	5  p  	J  q  	_  r  	t  s  	܉  t  	ܞ  u  	ܳ  v  	  w  	  x  	  y  	  z  	  {  	1  |  	F  }  	[  ~  	p    	݅    	ݚ    	ݯ    	ݿ    	    	    	    		    	    	/    	?    	T    	g    	|    	ޑ    	ޡ    	޶    	    	    	    	
    	    	/    	?    	R    	c    	x    	߈    	ߘ    	߫    	߾    	    	    	    	    	    	1    	A    	V    	f    	{    	    	    	    	    	    	    	    	    	    	*    	7    	E    	Y    	e    	r    	~    	    	    	    	    	    	    	    	    	    	    	'    	:    	M    	b    	w    	    	    	    	    	    	    	    	    	    	    	!    	1    	@    	R    	c    	t    	    	    	    	    	    	    	    	
    	    	4    	I    	^    	s    	    	    	    	    	    	    	    	    	0    	E    	Z    	o    	    	    	    	    	    	    	    	    	,    	A    	V    	k    	    	    	    	     	    	    	    	    	@    	P    	_    	u    	  	  	  
  	    	    	    	    	    	    	    	    	    	6    	H    	X    	q    	    	    	    	    	    	     	    	    	*     	7  !  	F  "  	U  #  	e  $  	u  %  	  &  	  '  	  (  	  )  	  *  	  +  	  ,  	  -  	  .  	  /  	.  0  	?  1  	O  2  	a  3  	r  4  	  5  	  6  	  7  	  8  	  9  	  :  	  ;  	  <  	  =  	  >  	)  ?  	7  @  	E  A  	V  B  	f  C  	w  D  	  E  	  F  	  G  	  H  	  I  	  J  	  K  	  L  	  M  	'  N  	;  O  	K  P  	\  Q  	l  R  	}  S  	  T  	  U  	  V  	  W  	  X  	  Y  	  Z  	  [  	  \  	/  ]  	F  ^  	W  _  	h  `  	x  a  	  b  	  c  	  d  	  e  	  f  	  g  	  h  	  i  	  j  	!  k  	2  l  	G  m  	X  n  	m  o  	  p  	  q  	  r  	  s  	  t  	  u  	  v  	  w  	  x  	$  y  	:  z  	R  {  	_  |  	k  }  	x  ~  	    	    	    	    	    	    	    	    	    	    	    	*    	6    	E    	U    	j    	    	    	    	    	    	    	    	    	    	    	"    	7    	G    	W    	f    	v    	    	    	    	    	    	    	    	    	    	    	$    	3    	D    	T    	d    	x    	    	    	    	    	    	    	    	    	    	    	#    	3    	E    	V    	f    	u    	    	    	    	    	    	    	    	    	    	3    	[    	y    	    	    	    		    	    	.    	H    	a    	v    	    	    	    	    	    	    	    	    	+    	@    	U    	j    	    	    	    	    	    	    	    	    	'    	<    	Q    	f    	{    	    	    	    	    	    	    	    	#    	8    	M    	b    	w    	    	    	    	    	    	    	
    	     	4    	J    	[    	l    	    	    	    	    	  	  	  
  	    	    	3    	H    	^    	r    	    	    	    	    	    	    	    	    	    	/    	@    	T    	g    	{    	    	     	  !  	  "  	  #  	  $  		  %  	  &  	7  '  	O  (  	`  )  	v  *  	  +  	  ,  	  -  	  .  	  /  	  0  	  1  	
  2  	  3  	#  4  	1  5  	=  6  	K  7  	W  8  	c  9  	p  :  	|  ;  	  <  	  =  	  >  	  ?  	  @  	  A  	  B  	  C  	  D  	0  E  	A  F  	P  G  	_  H  	n  I  	  J  	  K  	  L  	  M  	  N  	  O  	  P  	  Q  	  R  	)  S  	:  T  	K  U  	[  V  	l  W  	{  X  	  Y  	  Z  	  [  	  \  	  ]  	  ^  	  _  
   `  
   a  
   b  
 3  c  
 @  d  
 P  e  
 ]  f  
 l  g  
   h  
   i  
   j  
   k  
   l  
   m  
   n  
   o  
   p  
  q  
%  r  
2  s  
@  t  
N  u  
\  v  
m  w  
~  x  
  y  
  z  
  {  
  |  
  }  
  ~  
    
+    
;    
P    
d    
p    
    
    
    
    
    
    
    
    
    
    
    
    
"    
2    
A    
Q    
`    
p    
    
    
    
    
    
    
    
    
    
)    
A    
U    
i    
}    
    
    
    
    
    
    
    
    
$    
5    
H    
\    
o    
    
    
    
    
    
    
    
     
    
"    
5    
G    
Z    
l    
}    
    
    
    
    
    
    
    
    
,    
A    
V    
k    
    
    
    
    
    
    
    
    
    
%    
5    
G    
V    
d    
t    
    
    
    
    
    
    
    
    
	    
	    
	1    
	D    
	V    
	f    
	x    
	    
	    
	    
	    
	    
	    
	    

    

    

&    

6    

G    

Y    

k    

{    

    

    

    

    

    

    

     
    
    
$    
3    
B    
Q    
`    
o    
~  	  
  
  
    
    
    
    
    
    
    
    
    
#    
5    
G    
Y    
k    
}    
    
    
    
    
    
    
	     
  !  
-  "  
?  #  
R  $  
e  %  
x  &  
  '  
  (  
  )  
  *  
  +  
  ,  
  -  
  .  
  /  
0  0  
A  1  
R  2  
c  3  
t  4  
  5  
  6  
  7  
  8  
  9  
  :  
  ;  
  <  
  =  
$  >  
5  ?  
D  @  
U  A  
e  B  
v  C  
  D  
  E  
  F  
  G  
  H  
  I  
  J  
  K  
  L  
&  M  
4  N  
F  O  
V  P  
g  Q  
y  R  
  S  
  T  
  U  
  V  
  W  
  X  
  Y  

  Z  
  [  
2  \  
G  ]  
\  ^  
q  a  
  b  
  c  
  d  
  e  
  f  
  g  
  h  
  i  
  j  
  k  
  l  
3  m  
F  n  
U  o  
d  p  
{  q  
  r  
  s  
  t  
  u  
  v  
  w  
  x  
  y  
2  z  
I  {  
b  |  
}  }  
  ~  
    
    
    
    
    
%    
;    
Q    
f    
    
    
    
    
    
    
	    
    
5    
Q    
j    
    
    
    
    
    
    
	    
    
)    
B    
]    
s    
    
    
    
    
    
    
    
    
    
'    
<    
K    
[    
l    
{    
    
    
    
    
    
    
    
    
    
    
-    
<    
K    
\    
l    
}    
    
    
    
    
    
    
    
    
    
    
1    
B    
U    
g    
y    
    
    
    
    
    
    
    
    
$    
8    
L    
_    
q    
    
    
    
    
    
    
    
    
    
+    
<    
N    
`    
s    
    
    
    
    
    
    
    
    
    
     
/    
@    
S    
e    
u    
    
    
    
    
    
    
    
    
$    
9     
N    
c    
~    
    
    
    
    
    
  	  
"  
  
=    
X    
m    
    
    
    
    
    
    
/    
H    
f    
    
    
    
    
    
 	    
 %    
 D    
 _    
 z     
   !  
   "  
   #  
   $  
!  %  
!  &  
!7  '  
!P  (  
!s  )  
!  *  
!  +  
!  ,  
!  -  
!  .  
"  /  
"  0  
"7  1  
"L  2  
"g  3  
"  4  
"  5  
"  6  
"  7  
"  8  
"  9  
#  :  
#)  ;  
#E  <  
#]  =  
#y  >  
#  ?  
#  @  
#  A  
#  B  
#  C  
$  D  
$+  E  
$D  F  
$]  G  
$v  H  
$  I  
$  J  
$  K  
$  L  
$  M  
%  N  
%9  O  
%N  P  
%c  Q  
%|  R  
%  S  
%  T  
%  U  
%  V  
%  W  
&  X  
&)  Y  
&D  Z  
&Y  [  
&z  \  
&  ]  
&  ^  
&  _  
&  `  
&  a  
'  b  
')  c  
'C  d  
'W  e  
'q  f  
'  g  
'  h  
'  i  
'  j  
'  k  
(
  l  
("  m  
(>  n  
(Z  o  
(r  p  
(  q  
(  r  
(  s  
(  t  
)   u  
)  v  
)8  w  
)T  x  
)s  y  
)  z  
)  {  
)  |  
)  }  
)  ~  
*    
*9    
*X    
*n    
*    
*    
*    
*    
*    
+
    
+(    
+F    
+[    
+z    
+    
+    
+    
+    
+    
,    
,&    
,;    
,S    
,f    
,|    
,    
,    
,    
,    
,    
-    
-4    
-O    
-k    
-    
-    
-    
-    
-    
.    
.    
./    
.H    
._    
.{    
.    
.    
.    
.    
.    
/    
/.    
/C    
/a    
/    
/    
/    
/    
/    
0     
0!    
0B    
0]    
0~    
0    
0    
0    
0    
1    
1#    
1F    
1k    
1    
1    
1    
1    
1    
2    
2    
28    
2Q    
2l    
2    
2    
2    
2    
2    
3    
3    
35    
3J    
3_    
3z    
3    
3    
3    
3    
3    
4    
4+    
4I    
4g    
4    
4    
4    
4    
4    
5    
5'    
5@    
5U    
5n    
5    
5    
5    
5    
5    
6    
6)    
6D    
6_    
6w    
6    
6    
6    
6    
6    
7    
7,    
7D     
7d    
7    
7    
7    
7    
7    
8    
8/    
8R  	  
8f  
  
8    
8    
8    
8    
8    
8    
9    
9!    
96    
9Q    
9e    
9    
9    
9    
9    
9    
9    
:    
:%    
:>    
:V    
:k     
:  !  
:  "  
:  #  
:  $  
:  %  
;  &  
;  '  
;4  (  
;R  )  
;o  *  
;  +  
;  ,  
;  -  
;  .  
<  /  
<%  0  
<F  1  
<\  2  
<x  3  
<  4  
<  5  
<  6  
<  7  
<  8  
=  9  
=)  :  
=B  ;  
=[  <  
=p  =  
=  >  
=  ?  
=  @  
=  A  
=  B  
>  C  
>  D  
>3  E  
>O  F  
>f  G  
>|  H  
>  I  
>  J  
>  K  
>  L  
>  M  
?  N  
?)  O  
?A  P  
?\  Q  
?u  R  
?  S  
?  T  
?  U  
?  V  
?  W  
@  X  
@'  Y  
@C  Z  
@d  [  
@  \  
@  ]  
@  ^  
@  _  
@  `  
@  a  
@  b  
A  c  
A  d  
A"  e  
A3  f  
AC  g  
AR  h  
A_  i  
As  j  
A  k  
A  l  
A  m  
A  n  
A  o  
B  p  
B  q  
B9  r  
BP  s  
Bf  t  
B  u  
B  v  
B  w  
B  x  
B  y  
B  z  
C  {  
C0  |  
CG  }  
Ce  ~  
Cz    
C    
C    
C    
C    
D     
D!    
D9    
DR    
Dj    
D    
D    
D    
D    
D    
E    
E!    
E=    
EY    
Ed    
Ep    
E}    
E    
E    
E    
E    
E    
E    
E    
E    
F    
F#    
F8    
FM    
Fb    
Ft    
F    
F    
F    
F    
F    
F    
F    
G    
G    
G+    
G>    
GP    
Gb    
Gt    
G    
G    
G    
G    
G    
G    
G    
H    
H    
H*    
H=    
HO    
Ha    
Hs    
H    
H    
H    
H    
H    
H    
H    
I    
I    
I-    
I?    
IQ    
Id    
Iw    
I    
I    
I    
I    
I    
I    
I    
J    
J    
J0    
JC    
JV    
Ji    
J|    
J    
J    
J    
J    
J    
J    
J    
K    
K#    
K5    
KH    
K[    
Ko    
K    
K    
K    
K    
K    
K    
K    
L    
L    
L)    
L;    
LM    
L`    
Ls    
L    
L    
L    
L    
L    
L    
M    
M    
M-    
MB    
MW     
Ml    
M    
M    
M    
M    
M    
M    
M    
N  	  
N'  
  
N:    
NM    
Nb    
Nv    
N    
N    
N    
N    
N    
N    
O    
O    
O.    
OC    
OU    
Og    
O|    
O    
O    
O    
O    
O     
O  !  
O  "  
O  #  
P  $  
P  %  
P  &  
P*  '  
P6  (  
PB  )  
PM  *  
P[  +  
Ph  ,  
P  -  
P  .  
P  /  
P  0  
P  1  
P  2  
P  3  
Q  4  
Q'  5  
Q<  6  
QQ  7  
Qd  8  
Qw  9  
Q  :  
Q  ;  
Q  <  
Q  =  
Q  >  
Q  ?  
R  @  
R  A  
R/  B  
RA  C  
RV  D  
Rk  E  
R}  F  
R  G  
R  H  
R  I  
R  J  
R  K  
R  L  
R  M  
S  N  
S  O  
S3  P  
SJ  Q  
S^  R  
Su  S  
S  T  
S  U  
S  V  
S  W  
S  X  
S  Y  
T  Z  
T  [  
T/  \  
TF  ]  
T]  ^  
Tq  _  
T  `  
T  a  
T  b  
T  c  
T  d  
T  e  
U	  f  
U  g  
U,  h  
U@  i  
UT  j  
Uj  k  
U  l  
U  m  
U  n  
U  o  
U  p  
U  q  
U  r  
V  s  
V  t  
V%  u  
V9  v  
VM  w  
Va  x  
Vu  y  
V  z  
V  {  
V  |  
V  }  
V  ~  
V    
W    
W!    
W8    
WO    
Wc    
Wq    
W    
W    
W    
W    
W    
W    
W    
X    
X    
X(    
X;    
XP    
Xa    
Xt    
X    
X    
X    
X    
X    
X    
Y    
Y    
Y1    
YH    
Y\    
Yp    
Y    
Y    
Y    
Y    
Y    
Y    
Y    
Z    
Z    
Z'    
Z:    
ZO    
Z`    
Zs    
Z    
Z    
Z    
Z    
Z    
Z    
[    
[    
[0    
[G    
[[    
[o    
[    
[    
[    
[    
[    
[    
[    
[    
\	    
\    
\,    
\>    
\N    
\`    
\r    
\    
\    
\    
\    
\    
\    
\    
\    
]
    
]    
]'    
]5    
]E    
]X    
]h    
]z    
]    
]    
]    
]    
]    
]    
]    
^     
^    
^"    
^4    
^D    
^T    
^f    
^x    
^    
^    
^    
^    
^    
^    
^    
^    
_    
_!    
_4    
_E    
_X    
_m    
_~    
_    
_    
_    
_    
_    
_    
`    
`#    
`7    
`N     
`e    
`y    
`    
`    
`    
`    
`    
`    
`  	  
a  
  
a    
a     
a/    
aM    
al    
a    
a    
a    
a    
a    
a    
b    
b&    
b=    
bQ    
be    
by    
b    
b    
b    
b    
b     
b  !  
c  "  
c#  #  
c7  $  
cN  %  
ce  &  
cv  '  
c  (  
c  )  
c  *  
c  +  
c  ,  
c  -  
d  .  
d  /  
d+  0  
d?  1  
dS  2  
dg  3  
d{  4  
d  5  
d  6  
d  7  
d  8  
d  9  
d  :  
e  ;  
e'  <  
e>  =  
eU  >  
ei  ?  
ev  @  
e  A  
e  B  
e  C  
e  D  
e  E  
e  F  
e  G  
e  H  
e  I  
f  J  
f"  K  
f3  L  
fD  M  
fW  N  
fh  O  
f  P  
f  Q  
f  R  
f  S  
f  T  
f  U  
f  V  
g  W  
g  X  
g,  Y  
gC  Z  
gW  [  
gn  \  
g  ]  
g  ^  
g  _  
g  `  
g  a  
g  b  
g  c  
h  d  
h(  e  
h<  f  
hS  g  
hg  h  
h~  i  
h  j  
h  k  
h  l  
h  m  
h  n  
h  o  
i  p  
i  q  
i0  r  
iD  s  
iX  t  
il  u  
i  v  
i  w  
i  x  
i  y  
i  z  
i  {  
j  |  
j  }  
j#  ~  
j1    
jO    
ji    
j    
j    
j    
j    
j    
k    
k    
k(    
k9    
kJ    
k^    
kr    
k    
k    
k    
k    
l    
l&    
lK    
ll    
l    
l    
l    
l    
l    
l    
m    
m    
m(    
m9    
mJ    
mZ    
mk    
m}    
m    
m    
m    
m    
m    
m    
m    
n    
n)    
n@    
nT    
nk    
nz    
n    
n    
n    
n    
n    
n    
o     
o    
o"    
o5    
oH    
o[    
on    
o    
o    
o    
o    
o    
o    
o    
p    
p"    
p6    
pI    
p\    
po    
p    
p    
p    
p    
p    
p    
p    
q
    
q    
q1    
qD    
qW    
qj    
q~    
q    
q    
q    
q    
q    
q    
r    
r    
r.    
rA    
rT    
rg    
rz    
r    
r    
r    
r    
r    
r    
s    
s    
s)    
s=    
sJ    
s^    
sr    
s    
s    
s    
s    
s    
s    
s    
t    
t     
t3    
tG    
t[    
tn    
t     
t    
t    
t    
t    
t    
t    
t    
u    
u  	  
u*  
  
u>    
uQ    
ud    
ux    
u    
u    
u    
u    
u    
u    
u    
v    
v    
v.    
vB    
vV    
vj    
v~    
v    
v    
v    
v     
v  !  
w  "  
w  #  
w-  $  
w>  %  
wO  &  
w`  '  
wq  (  
w  )  
w  *  
w  +  
w  ,  
w  -  
w  .  
w  /  
x  0  
x  1  
x'  2  
x8  3  
xI  4  
xZ  5  
xo  6  
x  7  
x  8  
x  9  
x  :  
x  ;  
x  <  
y
  =  
y(  >  
yF  ?  
yd  @  
y  A  
y  B  
y  C  
y  D  
y  E  
y  F  
z  G  
z  H  
z'  I  
z;  J  
zO  K  
ze  L  
z{  M  
z  N  
z  O  
z  P  
z  Q  
z  R  
{  S  
{)  T  
{C  U  
{]  V  
{w  W  
{  X  
{  Y  
{  Z  
{  [  
{  \  
|
  ]  
|$  ^  
|>  _  
|X  `  
|r  a  
|  b  
|  c  
|  d  
|  e  
|  f  
}  g  
}(  h  
}B  i  
}\  j  
}v  k  
}  l  
}  m  
}  n  
}  o  
}  p  
}  q  
~  r  
~@  s  
~e  t  
~  u  
~  v  
~  w  
~  x  
  y  
  z  
0  {  
E  |  
Z  }  
o  ~  
    
    
    
    
    
    
    
    
2    
J    
b    
z    
    
    
    
    

    
*    
J    
^    
r    
    
    
    
    
    

    
$    
>    
N    
l    
    
    
    
    
    
    
    
#    
8    
O    
b    
u    
    
    
    
    
    
    
    
    
1    
H    
X    
o    
    
    
    
    
    
    
    
#    
:    
J    
a    
t    
    
    
    
    
    
    
    
    
(    
?    
P    
c    
n    
{    
    
    
    
    
    
    
    
    
2    
I    
`    
p    
    
    
    
    
    
    
    
'    
H    
_    
v    
    
    
    
    
    
    
    
    
    
4    
K    
b    
w    
    
    
    
    
    
    

    
    
4    
I    
^    
s    
     
    
    
    
    
    
    
)    
A    
V  	  
k  
  
    
    
    
    
    
     
    
.    
A    
L    
W    
c    
x    
    
    
    
    
    
    
    
     
5     
J  !  
c  "  
|  #  
  $  
  %  
  &  
  '  
  (  
  )  
  *  
)  +  
<  ,  
T  -  
l  .  
x  /  
  0  
  1  
  2  
  3  
  4  
  5  
  6  
  7  
3  8  
H  9  
]  :  
r  ;  
  <  
  =  
  >  
  ?  
  @  
  A  
  B  
"  C  
5  D  
J  E  
\  F  
s  G  
  H  
  I  
  J  
  K  
  L  
  M  
  N  
  O  
5  P  
K  Q  
i  R  
{  S  
  T  
  U  
  V  
  W  
  X  
  Y  
  Z  
  [  
&  \  
;  ]  
P  ^  
e  _  
z  `  
  a  
  b  
  c  
  d  
  e  
  f  
!  g  
?  h  
]  i  
{  j  
  k  
  l  
  m  
  n  
  o  
  p  
-  q  
F  r  
[  s  
f  t  
q  u  
  v  
  w  
  x  
  y  
  z  
  {  
  |  
  }  
.  ~  
C    
X    
m    
    
    
    
    
    
    
    
    
.    
A    
V    
k    
    
    
    
    
    
    
    
    
-    
B    
W    
l    
    
    
    
    
    
    
    
    
*    
B    
Y    
p    
    
    
    
    
    
    

    
"    
=    
U    
n    
    
    
    
    
    
    
(    
9    
F    
S    
`    
n    
y    
    
    
    
    
    
    
"    
6    
S    
v    
    
    
    
    
    
    
    
    
    
    
    
    
9    
E    
V    
i    
x    
    
    
    
    
    
    
    
*    
?    
Q    
f    
    
    
    
    
    
    
    
(    
=    
R    
g    
|    
    
    
    
    
    
    
    
    
    
    
    
(    
=    
R    
g    
|    
     
    
    
    
    
    
    
    
)    
7  	  
F  
  
]    
h    
    
    
    
    
    
    
1    
L    
g    
}    
    
    
    
    
    
    
    
-    
B    
W     
l  !  
  "  
  #  
  $  
  %  
  &  
   '  
  (  
8  )  
J  *  
b  +  
u  ,  
  -  
  .  
  /  
  0  
  1  
  2  
   3  
  4  
&  5  
8  6  
G  7  
V  8  
f  9  
t  :  
  ;  
  <  
  =  
  >  
  ?  
  @  
  A  
  B  
0  C  
C  D  
O  E  
e  F  
|  G  
  H  
  I  
  J  
  K  
  L  
  M  
  N  
3  O  
K  P  
^  Q  
n  R  
|  S  
  T  
  U  
  V  
  W  
  X  
  Y  
  Z  
  [  
   \  
3  ]  
D  ^  
Z  _  
k  `  
|  a  
  b  
  c  
  d  
  e  
  f  
  g  
  h  
'  i  
=  j  
R  k  
b  l  
{  m  
  n  
  o  
  p  
  q  
  r  
  s  
  t  
  u  
-  v  
=  w  
X  x  
j  y  
  z  
  {  
  |  
  }  
  ~  
    
    
    
%    
3    
D    
U    
f    
z    
    
    
    
    
    
    
     
3    
E    
W    
h    
x    
    
    
    
    
    
    

    
    
=    
S    
h    
    
    
    
    
    
    
    
     
5    
C    
S    
m    
y    
    
    
    
    
    
    
    
$    
9    
N    
c    
x    
    
    
    
    
    
    
    
     
5    
J    
_    
t    
    
    
    
    
    
    
    
    
1    
F    
[    
p    
    
    
    
    
    
    
    
    
-    
B    
W    
l    
    
    
    
    
    
    
    
    
)    
>    
S    
h    
}    
    
    
    
    
    
    
    
%    
:    
O    
d    
y    
    
    
    
    
    
    
    
!    
6    
K    
`    
u     
    
    
    
    
    
    
    
#    
7  	  
K  
  
_    
u    
    
    
    
    
    
    
    
    
2    
F    
[    
n    
    
    
    
    
    
    
    
     
(  !  
5  "  
C  #  
P  $  
^  %  
p  &  
  '  
  (  
  )  
  *  
  +  
  ,  
  -  
  .  
  /  
.  0  
C  1  
Q  2  
]  3  
i  4  
u  5  
  6  
  7  
  8  
  9  
  :  
  ;  
  <  
  =  
  >  

  ?  
  @  
4  A  
J  B  
_  C  
t  D  
  E  
  F  
  G  
  H  
  I  
  J  
  K  
  L  
)  M  
?  N  
S  O  
i  P  
}  Q  
  R  
  S  
  T  
  U  
  V  
  W  
  X  
  Y  
  Z  
  [  
,  \  
9  ]  
L  ^  
Y  _  
l  `  
  a  
  b  
  c  
  d  
  e  
  f  
  g  
  h  
  i  
  j  
  k  
.  l  
?  m  
N  n  
a  o  
v  p  
  q  
  r  
  s  
  t  
  u  
  v  
  w  
  x  
  y  
-  z  
B  {  
W  |  
l  }  
  ~  
    
    
    
    
    
    
    
)    
?    
U    
k    
}    
    
    
    
    
    
    
    
#    
8    
I    
\    
t    
    
    
    
    
    
    
    
+    
>    
R    
c    
t    
    
    
    
    
    
    
    
    
8    
M    
b    
w    
    
    
    
    
    
    
    
    
    
    
)    
8    
G    
V    
f    
v    
    
    
­    
½    
    
    
    
    
#    
5    
K    
X    
e    
z    
Ï    
ä    
ù    
    
    
    
    
    
0    
D    
Z    
m    
ą    
ġ    
Ĵ    
    
    
    
    
!    
@    
Z    
m    
Ň    
Š    
ŵ    
    
    
    
    
$    
C    
b    
ƅ    
ƨ    
    
    
     
    
/    
I    
\    
s    
ǈ    
Ǣ    
ǹ    
    
    
    
/    
R    
q     
Ȑ    
Ƞ    
ȴ    
    
    
    
    
    
  	  
*  
  
:    
J    
`    
v    
ɉ    
ɟ    
ɴ    
    
    
    
     
    
%    
<    
G    
R    
_    
m    
z    
ʏ    
ʤ    
ʶ     
  !  
  "  
  #  
  $  
  %  
.  &  
C  '  
X  (  
m  )  
˂  *  
˗  +  
ˬ  ,  
  -  
  .  
  /  
   0  
  1  
*  2  
?  3  
T  4  
i  5  
~  6  
̓  7  
̨  8  
̽  9  
  :  
  ;  
  <  
  =  
&  >  
;  ?  
P  @  
e  A  
z  B  
͏  C  
ͤ  D  
͹  E  
  F  
  G  
  H  
  I  
"  J  
7  K  
L  L  
a  M  
v  N  
΋  O  
Π  P  
ε  Q  
  R  
  S  
  T  
	  U  
  V  
3  W  
H  X  
]  Y  
r  Z  
χ  [  
Ϝ  \  
ϱ  ]  
  ^  
  _  
  `  
  a  
  b  
/  c  
D  d  
Y  e  
n  f  
Ѓ  g  
И  h  
Э  i  
  j  
  k  
  l  
  m  
  n  
+  o  
@  p  
U  q  
j  r  
  s  
є  t  
ѩ  u  
Ѿ  v  
  w  
  x  
  y  
  z  
'  {  
<  |  
Q  }  
f  ~  
{    
Ґ    
ҥ    
Һ    
    
    
    
    
#    
8    
M    
b    
w    
ӌ    
ӡ    
Ӷ    
    
    
    

    
    
4    
I    
^    
s    
Ԉ    
ԝ    
Բ    
    
    
    
    
    
0    
E    
Z    
o    
Մ    
ՙ    
ծ    
    
    
    
    
    
,    
A    
V    
k    
ր    
֕    
֪    
ֿ    
    
    
    
    
(    
=    
R    
g    
|    
ב    
צ    
׻    
    
    
    
    
$    
9    
N    
c    
x    
؍    
آ    
ط    
    
    
    
    
     
5    
J    
_    
t    
ى    
ٞ    
ٳ    
    
    
    
    
    
1    
F    
[    
p    
څ    
ښ    
گ    
    
    
    
    
    
-    
B    
W    
l    
ہ    
ۖ    
۫    
    
    
    
    
    
)    
>    
S    
h    
}    
ܒ    
ܧ    
ܼ    
    
    
    
     
%    
4    
B    
O    
\    
j    
݀    
ݙ    
ݰ  	  
  
  
    
    
    
'    
@    
\    
l    
ވ    
ޟ    
޻    
    
    
    
    
"    
4    
G    
[    
}    
ߓ    
ߪ    
߽     
  !  
  "  
  #  
  $  
   %  
2  &  
E  '  
W  (  
i  )  
|  *  
  +  
  ,  
  -  
  .  
  /  
  0  
  1  
  2  
1  3  
C  4  
Y  5  
e  6  
r  7  
  8  
  9  
  :  
  ;  
  <  
  =  
  >  
#  ?  
2  @  
E  A  
`  B  
  C  
  D  
  E  
  F  
  G  
  H  

  I  
   J  
6  K  
L  L  
d  M  
y  N  
  O  
  P  
  Q  
  R  
  S  
  T  
  U  
  V  
2  W  
B  X  
X  Y  
k  Z  
  [  
  \  
  ]  
  ^  
  _  
  `  
  a  
  b  
  c  
-  d  
=  e  
K  f  
X  g  
f  h  
t  i  
  j  
  k  
  l  
  m  
  n  
  o  
  p  
  q  
  r  
  s  
  t  
  u  
,  v  
9  w  
G  x  
U  y  
`  z  
m  {  
z  |  
  }  
  ~  
    
    
    
    
    
    
    
    
,    
@    
Q    
b    
w    
    
    
    
    
    
    
    
    
&    
9    
H    
]    
p    
    
    
    
    
    
    
    
    
    
-    
D    
Q    
^    
k    
w    
    
    
    
    
    
    
    
    
    
+    
<    
M    
^    
o    
    
    
    
    
    
    
    
    
    
1    
F    
[    
p    
    
    
    
    
    
    
    
    
-    
B    
W    
l    
    
    
    
    
    
    
    
    
)    
>    
S    
h    
}    
    
    
    
    
    
    
    
%    
:    
O    
d    
y    
    
    
    
    
    
    
    
!    
6    
K    
`    
u    
    
    
    
    
    
    
    
    
2    
G    
\    
q    
     
    
    
    
    
    
    
    
    
/  	  
B  
  
W    
g    
x    
    
    
    
    
    
    
    
    
    
/    
A    
U    
i    
}    
    
    
    
    
     
  !  
  "  
  #  
   $  
3  %  
B  &  
N  '  
Z  (  
k  )  
w  *  
  +  
  ,  
  -  
  .  
  /  
  0  
  1  
  2  
  3  
  4  
  5  
*  6  
5  7  
C  8  
N  9  
c  :  
x  ;  
  <  
  =  
  >  
  ?  
  @  
  A  
  B  
  C  
  D  
  E  
)  F  
:  G  
M  H  
\  I  
l  J  
{  K  
  L  
  M  
  N  
  O  
  P  
  Q  
  R  
  S  
.  T  
A  U  
T  V  
g  W  
z  X  
  Y  
  Z  
  [  
  \  
  ]  
  ^  
  _  
  `  
&  a  
9  b  
L  c  
_  d  
s  e  
  f  
  g  
  h  
  i  
  j  
  k  
  l  
  m  
#  n  
7  o  
J  p  
_  q  
s  r  
  s  
  t  
  u  
  v  
  w  
  x  
  y  
	  z  
  {  
!  |  
.  }  
9  ~  
J    
U    
c    
x    
    
    
    
    
    
    
    
     
5    
J    
_    
t    
    
    
    
    
    
    
    
    
1    
F    
[    
p    
    
    
    
    
    
    
    
    
-    
B    
W    
l    
    
    
    
    
    
    
    
    
)    
>    
S    
h    
}    
    
    
    
    
    
    
    
%    
:    
O    
d    
y    
    
    
    
    
    
    
    
!    
6    
K    
`    
u    
    
    
    
    
    
               2     G     \     q                                          .    C    X    m                                     *    ?    T    i    ~                                &    ;    P    e    z                                     $    4    C    S    b  	  r  
                                               1    @    L    X    h    x                           !    "    #    $    %  .  &  @  '  P  (  a  )  r  *    +    ,    -    .    /    0    1    2     3    4    5  /  6  >  7  M  8  \  9  k  :  z  ;    <    =    >    ?    @    A    B    C    D    E  (  F  8  G  I  H  X  I  g  J  w  K    L    M    N    O    P    Q    R    S  	  T  	  U  	'  V  	3  W  	E  X  	T  Y  	d  Z  	s  [  	  \  	  ]  	  ^  	  _  	  `  	  a  	  b  	  c  
  d  
  e  
,  f  
<  g  
M  h  
]  i  
l  j  
}  k  
  l  
  m  
  n  
  o  
  p  
  q  
  r    s    t  0  u  B  v  T  w  e  x  x  y    z    {    |    }    ~          	        5    H    Z    m                                        &    8    K    b    u                                         /    >    O    ^    m    |                                            #    7    J    \    k    {                                    
        )    9    I    X    d    p    }                                                    !    /    <    I    U    d    s                                                         .    ;    I    V    k                                    (    =    R    g    |                                $    9    E     R    g    y                          	    
      -    @    S    g    z                                    0    C    U    h    z                   !    "    #    $    %  )  &  =  '  Q  (  f  )  y  *    +    ,    -    .    /    0    1    2  -  3  @  4  S  5  f  6  y  7    8    9    :    ;    <    =    >    ?  $  @  9  A  L  B  `  C  s  D    E    F    G    H    I    J    K  	  L    M  0  N  E  O  Z  P  n  Q    R    S    T    U    V    W    X    Y  '  Z  :  [  M  \  ^  ]  s  ^    _    `    a    b    c    d    e    f     g  5  h  I  i  _  j  s  k    l    m    n    o    p    q    r    s  %  t  7  u  J  v  \  w  o  x    y    z    {    |    }    ~          !    5    J    ^    s                                        2    H    \    q                                      !     5     F     W     h     {                                  !    !    !,    !A    !X    !m    !    !    !    !    !    !    !    "    ")    "@    "U    "h    "|    "    "    "    "    "    "    #    #    #0    #D    #Y    #n    #    #    #    #    #    #    #    $    $!    $3    $H    $\    $q    $    $    $    $    $    $    %    %    %-    %D    %Y    %p    %    %    %    %    %    %    &
    &    &/    &D    &X    &o    &    &    &    &    &    &    '
    '!    '6    'M    'c    'x    '    '    '    '    '    '    (	    (    (*    (=     (O    (b    (u    (    (    (    (    (    (  	  )  
  )    )4    )K    )b    )y    )    )    )    )    )    )    *    *    *.    *C    *Z    *q    *    *    *    *    *     *  !  +  "  +!  #  +6  $  +K  %  +`  &  +u  '  +  (  +  )  +  *  +  +  +  ,  +  -  ,  .  ,+  /  ,B  0  ,Y  1  ,h  2  ,w  3  ,  4  ,  5  ,  6  ,  7  ,  8  ,  9  -   :  -  ;  -.  <  -E  =  -\  >  -s  ?  -  @  -  A  -  B  -  C  -  D  -  E  .   F  .  G  .(  H  .=  I  .T  J  .k  K  .  L  .  M  .  N  .  O  .  P  .  Q  /  R  /  S  /*  T  /=  U  /P  V  /c  W  /x  X  /  Y  /  Z  /  [  /  \  /  ]  /  ^  0  _  0)  `  0A  a  0V  b  0k  c  0  d  0  e  0  f  0  g  0  h  0  i  1  j  1  k  15  l  1M  m  1e  n  1}  o  1  p  1  q  1  r  1  s  1  t  1  u  2  v  2!  w  20  x  2?  y  2R  z  2e  {  2x  |  2  }  2  ~  2    2    2    2    3	    3    33    3H    3]    3s    3    3    3    3    3    4    4    41    4I    4^    4s    4    4    4    4    4    4    5    5#    5;    5S    5k    5    5    5    5    5    5    6    6&    6=    6U    6m    6    6    6    6    6    7	    7#    7=    7P    7b    7w    7    7    7    7    7    7    8    8    81    8D    8O    8Z    8e    8q    8~    8    8    8    8    8    8    9    9%    9<    9S    9f    9r    9~    9    9    9    9    9    9    :    :    :)    :<    :O    :f    :}    :    :    :    :    :    :    :    ;	    ;    ;3    ;F    ;Z    ;q    ;    ;    ;    ;    ;    ;    ;    <	    <    <5    <H    <_    <t    <    <    <    <    <    <    =    =    ='      =<     =F     =P     =Z     =d     =n     =x     =     =   	  =   
  =     =     =     =     =     =     =     =     =     =     >     >     >     >-     >:     >E     >P     >[     >f     >s     >     >      >   !  >   "  >   #  >   $  >   %  >   &  >   '  ?   (  ?   )  ?:   *  ?d   +  ?   ,  ?   -  ?   .  @   /  @6   0  @@   1  @T   2  @h   3  @t   4  @   5  @   6  @   7  @   8  @   9  @   :  @   ;  @   <  @   =  A    >  A   ?  A   @  A)   A  A5   B  AD   C  AU   D  A`   E  Ar   F  A   G  A   H  A   I  A   J  A   K  A   L  A   M  A   N  B   O  B   P  B$   Q  B5   R  BM   S  B_   T  Bk   U  Bw   V  B   W  B   X  B   Y  B   Z  B   [  B   \  B   ]  B   ^  B   _  C   e  C   f  C&   g  C;   h  CP   i  Ce   j  Cz   k  C   l  C   m  C   n  D"   o  DL   p  Dv   q  D   r  D   s  D   t  D   u  D   v  D   w  D   x  D   y  E   z  E   {  E"   |  E-   }  E9   ~  EE     EQ     E_     En     E{     E     E     E     E     E     E     E     E     F     F     F     F$     F0     FE     FT     Fc     Fr     F     F     F     F     F     F     F     G     G#     G8     GM     Gb     Gw     G     G     G     G     G     G     G     H     H      H3     HC     HW     Hi     H|     H     H     H     H     H     H     I
     I     I4     II     I^     Is     I     I     I     I     I     I     J     J     J0     JE     JZ     Jo     J     J     J     J     J     J     K     K     K,     KA     KN     K[     Kg     Kr     K     K     K     K     K     K     K     K     K     L     L.     LU     L|     L     L     L     L     L     M     M/     M:     MF     MW     Mi     Mv     M     M     M     M     M     M     M     N     N     N+     N@     NU     Nj     N     N     N     N     N  !   N  !  N  !  O  !  O  !  O3  !  OE  !  OW  !  Oi  !  O{  !	  O  !
  O  !  O  !  O  !  O  !  O  !  P   !  P  !  P%  !  P8  !  PM  !  P`  !  Pt  !  P  !  P  !  P  !  P  !  P  !  P  !  P  !  Q  !  Q#  !  Q5  !   QI  !!  QX  !"  Qg  !#  Qv  !$  Q  !%  Q  !&  Q  !'  Q  !(  Q  !)  Q  !*  Q  !+  R  !,  R  !-  R/  !.  RB  !/  RR  !0  Ra  !1  Rs  !2  R  !3  R  !4  R  !5  R  !6  R  !7  R  !8  R  !9  S  !:  S  !;  S'  !<  SC  !=  SX  !>  Sp  !?  S  !@  S  !A  S  !B  S  !C  S  !D  S  !E  S  !F  T  !G  T)  !H  T9  !I  TJ  !J  T^  !K  Tq  !L  T  !M  T  !N  T  !O  T  !P  T  !Q  T  !R  U   !S  U  !T  U'  !U  U9  !V  UK  !W  U]  !X  Uo  !Y  U  !Z  U  ![  U  !\  U  !]  U  !^  U  !_  U  !`  V   !a  V  !b  V   !c  V3  !d  VF  !e  VY  !f  Vm  !g  V  !h  V  !i  V  !j  V  !k  V  !l  V  !m  V  !n  W  !o  W  !p  W*  !q  W8  !r  WJ  !s  W]  !t  Wp  !u  W  !v  W  !w  W  !x  W  !y  W  !z  W  !{  W  !|  X  !}  X  !~  X#  !  X6  !  XG  !  XY  !  Xk  !  X  !  X  !  X  !  X  !  X  !  X  !  X  !  Y  !  Y&  !  Y;  !  YP  !  Ye  !  Yz  !  Y  !  Y  !  Y  !  Y  !  Y  !  Y  !  Y  !  Y  !  Z  !  Z  !  Z"  !  Z4  !  ZF  !  ZU  !  Zd  !  Zs  !  Z  !  Z  !  Z  !  Z  !  Z  !  Z  !  Z  !  Z  !  Z  !  [	  !  [  !  [)  !  [9  !  [I  !  [X  !  [k  !  [}  !  [  !  [  !  [  !  [  !  [  !  [  !  [  !  [  !  \  !  \   !  \/  !  \>  !  \K  !  \X  !  \e  !  \r  !  \  !  \  !  \  !  \  !  \  !  \  !  \  !  \  !  \  !  ]  !  ]"  !  ]2  !  ]B  !  ]T  !  ]g  !  ]y  !  ]  !  ]  !  ]  !  ]  !  ]  !  ]  !  ]  !  ]  !  ]  !  ^  !  ^  !  ^-  !  ^<  !  ^K  !  ^\  !  ^m  !  ^|  !  ^  !  ^  !  ^  !  ^  !  ^  !  ^  !  ^  !  ^  !  _  !  _&  !  _;  !  _P  !  _e  !  _|  !  _  !  _  !  _  !  _  !  _  !  _  !  `   !  `  !  `(  !  `7  !  `H  !  `Z  !  `l  !  `  !  `  !  `  "   `  "  `  "  `  "  `  "  `  "  a	  "  a  "  a-  "  a@  "	  aP  "
  ab  "  ap  "  a  "  a  "  a  "  a  "  a  "  a  "  a  "  a  "  b  "  b  "  b-  "  b?  "  bN  "  bZ  "  bf  "  b|  "  b  "  b  "  b  "  b  "   b  "!  b  ""  b  "#  c  "$  c  "%  c   "&  c/  "'  cA  "(  cR  ")  cc  "*  cs  "+  c  ",  c  "-  c  ".  c  "/  c  "0  c  "1  d  "2  d  "3  d1  "4  dF  "5  dV  "6  df  "7  dr  "8  d  "9  d  ":  d  ";  d  "<  d  "=  d  ">  d  "?  d  "@  d  "A  d  "B  e  "C  e  "D  e+  "E  e<  "F  eL  "G  e]  "H  ep  "I  e~  "J  e  "K  e  "L  e  "M  e  "N  e  "O  e  "P  e  "Q  e  "R  f  "S  f   "T  f2  "U  f?  "V  fL  "W  fY  "X  fj  "Y  fz  "Z  f  "[  f  "\  f  "]  f  "^  f  "_  f  "`  f  "a  g  "b  g  "c  g&  "d  g6  "e  gF  "f  gV  "g  gh  "h  gz  "i  g  "j  g  "k  g  "l  g  "m  g  "n  g  "o  g  "p  h	  "q  h  "r  h/  "s  h?  "t  hO  "u  hb  "v  hu  "w  h  "x  h  "y  h  "z  h  "{  h  "|  h  "}  h  "~  i  "  i  "  i+  "  i<  "  iM  "  i\  "  ik  "  i}  "  i  "  i  "  i  "  i  "  i  "  i  "  i  "  j	  "  j  "  j-  "  j<  "  jK  "  j[  "  jk  "  jz  "  j  "  j  "  j  "  j  "  j  "  j  "  j  "  k   "  k  "  k"  "  k3  "  kD  "  kU  "  kf  "  kv  "  k  "  k  "  k  "  k  "  k  "  k  "  k  "  l  "  l  "  l(  "  l;  "  lN  "  la  "  lr  "  l  "  l  "  l  "  l  "  l  "  l  "  l  "  l  "  l  "  m  "  m  "  m&  "  m5  "  mE  "  mT  "  mg  "  mz  "  m  "  m  "  m  "  m  "  m  "  m  "  m  "  m  "  m  "  n  "  n  "  n'  "  n8  "  nI  "  nY  "  ni  "  ny  "  n  "  n  "  n  "  n  "  n  "  n  "  n  "  n  "  o  "  o"  "  o2  "  oD  "  oV  "  oi  "  o|  "  o  "  o  "  o  "  o  "  o  "  o  "  o  "  p  "  p   "  p1  "  pC  "  pU  "  pb  "  pn  "  p  "  p  "  p  "  p  "  p  "  p  "  p  "  q  "  q&  "  q;  "  qR  "  qg  "  qw  "  q  "  q  #   q  #  q  #  q  #  q  #  q  #  q  #  r	  #  r  #  r'  #	  r7  #
  rG  #  rW  #  rg  #  rs  #  r  #  r  #  r  #  r  #  r  #  r  #  r  #  r  #  r  #  s  #  s  #  s)  #  s6  #  sN  #  s`  #  sl  #  sx  #  s  #   s  #!  s  #"  s  ##  s  #$  s  #%  s  #&  s  #'  s  #(  t   #)  t  #*  t  #+  t0  #,  t?  #-  tR  #.  tb  #/  tr  #0  t  #1  t  #2  t  #3  t  #4  t  #5  t  #6  t  #7  t  #8  u  #9  u  #:  u+  #;  u?  #<  uS  #=  ug  #>  u{  #?  u  #@  u  #A  u  #B  u  #C  u  #D  u  #E  v  #F  v  #G  v,  #H  v@  #I  vT  #J  ve  #K  vx  #L  v  #M  v  #N  v  #O  v  #P  v  #Q  v  #R  v  #S  w  #T  w%  #U  w:  #V  wM  #W  wa  #X  wv  #Y  w  #Z  w  #[  w  #\  w  #]  w  #^  w  #_  w  #`  x  #a  x  #b  x.  #c  x?  #d  xN  #e  x_  #f  xu  #g  x  #h  x  #i  x  #j  x  #k  x  #l  x  #m  x  #n  y  #o  y  #p  y+  #q  y@  #r  yP  #s  y`  #t  yn  #u  y  #v  y  #w  y  #x  y  #y  y  #z  y  #{  y  #|  z  #}  z&  #~  z7  #  zN  #  z`  #  zt  #  z  #  z  #  z  #  z  #  z  #  {  #  {%  #  {C  #  {c  #  {  #  {  #  {  #  {  #  {  #  |  #  |  #  |0  #  |E  #  |T  #  |n  #  |  #  |  #  |  #  |  #  |  #  }  #  }"  #  }0  #  }D  #  }X  #  }f  #  }z  #  }  #  }  #  }  #  }  #  }  #  }  #  }  #  ~
  #  ~  #  ~*  #  ~<  #  ~N  #  ~`  #  ~l  #  ~w  #  ~  #  ~  #  ~  #  ~  #  ~  #    #    #  +  #  7  #  C  #  N  #  Y  #  d  #  o  #    #    #    #    #    #    #  #  #  ?  #  ]  #  {  #    #    #    #    #    #    #  D  #  U  #  a  #  n  #  }  #    #    #    #    #    #    #    #    #  3  #  E  #  W  #  k  #    #    #    #    #    #    #    #  	  #  ,  #  A  #  V  #  k  #    #    #    #    #    #    #    #    #  (  #  =  #  R  #  g  #  |  #    #    #    #    #    #    #    $   $  $  5  $  H  $  [  $  n  $    $    $    $    $	    $
    $    $    $    $     $  1  $  B  $  T  $  g  $  z  $    $    $    $    $    $    $    $    $  #  $  3  $  C  $  S  $   c  $!  s  $"    $#    $$    $%    $&    $'    $(    $)    $*    $+  -  $,  B  $-  W  $.  l  $/    $0    $1    $2    $3    $4    $5    $6    $7  )  $8  >  $9  S  $:  h  $;  }  $<    $=    $>    $?    $@    $A    $B    $C    $D  *  $E  ;  $F  I  $G  Y  $H  m  $I    $J    $K    $L    $M    $N    $O    $P    $Q  $  $R  9  $S  N  $T  c  $U  x  $V    $W    $X    $Y    $Z    $[    $\    $]     $^  5  $_  J  $`  _  $a    $b    $c    $d    $e  "  $f  I  $g  p  $h    $i    $j    $k    $l  +  $m  N  $n  q  $o    $p    $q    $r    $s     $t  C  $u  h  $v    $w    $x    $y    $z  !  ${  F  $|  k  $}    $~    $    $    $  $  $  I  $  n  $    $    $    $    $  '  $  <  $  V  $  p  $    $    $    $    $    $    $  2  $  Q  $  t  $    $    $    $    $  !  $  D  $  g  $    $    $    $    $    $  7  $  Z  $  }  $    $    $    $  	  $  ,  $  O  $  r  $    $    $    $    $  !  $  D  $  g  $    $    $    $    $    $  =  $  d  $    $    $    $     $  '  $  N  $  u  $    $    $    $    $  8  $  _  $    $    $    $    $  "  $  I  $  p  $    $    $    $    $  /  $  R  $  u  $    $    $    $    $  $  $  G  $  j  $    $    $    $    $    $  <  $  _  $    $    $    $    $    $  1  $  T  $  w  $    $    $    $    $  %  $  F  $  g  $    $    $    $    $    $  4  $  \  $    $    $    $    $  $  $  L  $  t  $    %     %    %    %    %    %    %    %    %    %	  *  %
  6  %  B  %  P  %  _  %  n  %  ~  %    %    %    %    %    %    %    %    %  
  %    %  )  %  8  %  H  %  Z  %  l  %    %     %!    %"    %#    %$    %%    %&    %'     %(  4  %)  H  %*  \  %+  p  %,    %-    %.    %/    %0    %1    %2    %3  	  %4    %5  .  %6  A  %7  T  %8  g  %9  y  %:    %;    %<    %=    %>    %?     %@    %A  4  %B  N  %C  h  %D    %E    %F    %G    %H    %I    %J    %K  8  %L  R  %M  ]  %N  i  %O  u  %P    %Q    %R    %S    %T    %U    %V    %W    %X    %Y    %Z  "  %[  2  %\  B  %]  R  %^  c  %_  u  %`    %a    %b    %c    %d    %e    %f    %g    %h  +  %i  =  %j  P  %k  j  %l    %m    %n    %o    %p    %q    %r    %s    %t  (  %u  3  %v  >  %w  I  %x  T  %y  _  %z  k  %{  v  %|    %}    %~    %    %    %    %    %    %    %     %  >  %  `  %    %    %    %    %    %  0  %  F  %  X  %  f  %    %    %    %    %  
  %    %  *  %  <  %  N  %  x  %    %    %    %    %  2  %  \  %  m  %  ~  %    %    %    %    %    %    %    %    %    %    %  ,  %  :  %  H  %  V  %  c  %  p  %    %    %    %    %    %    %    %    %    %    %  	  %    %  %  %  2  %  A  %  P  %  \  %  h  %  v  %    %    %    %    %    %    %    %    %    %    %  /  %  @  %  Q  %  b  %  s  %    %    %    %    %    %    %    %  	  %    %  !  %  -  %  9  %  G  %  U  %  d  %  s  %    %    %    %    %    %    %    %    %    %    %    %  -  %  <  %  K  %  Z  %  i  %  {  %    %    %    %    %    %    %    %    %    %    &   #  &  8  &  F  &  W  &    &    &    &    &    &	    &
    &    &    &    &  (  &  8  &  I  &  Z  &  k  &  |  &    &    &    &    &    &    &  =  &  K  &  Y  &  g  &  u  &    &     &!    &"    &#    &$    &%    &&  +  &'  ;  &(  M  &)  ]  &*  n  &+    &,    &-    &.    &/    &0    &1    &2  -  &3  H  &4  c  &5  ~  &6    &7    &8    &9    &:    &;    &<    &=  +  &>  =  &?  O  &@  `  &A  p  &B    &C    &D    &E    &F    &G    &H    &I    &J    &K  &  &L  7  &M  J  &N  ]  &O  m  &P    &Q    &R    &S    &T    &U    &V    &W    &X    &Y  %  &Z  5  &[  K  &\  _  &]  p  &^    &_    &`    &a    &b    &c    &d    &e    &f    &g  %  &h  8  &i  M  &j  \  &k  n  &l    &m    &n    &o    &p    &q    &r    &s  "  &t  J  &u  r  &v    &w    &x    &y    &z  :  &{  b  &|    &}    &~    &    &    &  *  &  ?  &  T  &  i  &  ~  &    &    &    &    &    &    &  '  &  ;  &  O  &  c  &  w  &    &    &    &    &    &    &  ;  &  P  &  l  &    &  ¯  &    &    &  !  &  6  &  K  &  l  &    &  Ö  &  ð  &    &    &    &    &  2  &  I  &  Z  &  k  &  y  &  Č  &  Ġ  &  ĳ  &    &    &    &    &  !  &  4  &  P  &  c  &  u  &  ņ  &  ŗ  &  Ũ  &  Ź  &    &    &    &    &  ,  &  J  &  m  &  Ƃ  &  Ɨ  &  Ƭ  &    &    &    &     &    &  *  &  ?  &  T  &  i  &  ~  &  Ǔ  &  Ǩ  &  ǽ  &    &    &    &    &  &  &  ;  &  P  &  e  &  z  &  ȏ  &  Ȥ  &  ȹ  &    &    &    &    &  "  &  7  &  L  &  a  &  v  &  ɋ  &  ɠ  &  ɵ  &    &    &    &  	  &    &  3  &  H  &  ]  &  r  &  ʇ  &  ʜ  &  ʱ  &    &    &    &    &    &  /  &  D  '   Y  '  n  '  ˍ  '  ˫  '    '    '    '  %  '  L  '	  q  '
  ̈  '  ̝  '  ̲  '    '    '    '  0  '  L  '  d  '  |  '  ͗  '  Ͷ  '    '    '    '  4  '  [  '  ΂  '  Ω  '    '    '  
  '   +  '!  R  '"  y  '#  Ϡ  '$    '%    '&    ''  =  '(  d  ')  y  '*  К  '+    ',    '-    '.  $  '/  E  '0  h  '1  ь  '2  ѯ  '3    '4    '5     '6  G  '7  g  '8  Ҏ  '9  ҵ  ':    ';    '<  *  '=  Q  '>  x  '?  ӟ  '@    'A    'B    'C  7  'D  ^  'E  ԁ  'F  Ԥ  'G    'H    'I    'J  <  'K  c  'L  Պ  'M  ՟  'N  տ  'O    'P    'Q    'R  (  'S  D  'T  Y  'U  n  'V  փ  'W  ֣  'X  ָ  'Y    'Z    '[    '\    ']    '^  4  '_  Q  '`  f  'a  {  'b  מ  'c  ׹  'd    'e    'f    'g  =  'h  b  'i  r  'j  ؂  'k  ؔ  'l  ئ  'm  ظ  'n    'o    'p    'q    'r    's  )  't  8  'u  K  'v  ^  'w  م  'x  ٬  'y    'z    '{  !  '|  H  '}  o  '~  ږ  '  ڽ  '    '    '  2  '  Y  '  ۀ  '  ۧ  '    '    '    '  C  '  j  '  ܑ  '  ܸ  '    '    '  -  '  T  '  {  '  ݢ  '    '    '    '  (  '  =  '  R  '  l  '  އ  '  ޡ  '  ޼  '    '    '  !  '  <  '  W  '  r  '  ߗ  '  ߼  '    '    '    '  )  '  D  '  ^  '  x  '    '    '    '     '  "  '  7  '  Y  '  ~  '    '    '    '    '    '    '  ,  '  K  '  f  '  ~  '    '    '    '    '    '    '    '  )  '  :  '  K  '  \  '  t  '    '    '    '    '    '    '    '  "  '  3  '  I  '  X  '  g  '    '    '    '    '    '    '    '  !  '  1  '  A  '  P  '  d  '    '    '    '    '    '  #  '  6  '  F  '  V  '  i  '  |  '    '    '    '    '    '    '  	  '  "  '  :  '  N  '  b  '  u  '    '    '    '    '    '    '    (   $  (  5  (  F  (  W  (  h  (  y  (    (    (    (	    (
    (    (    (    (    (  #  (  4  (  E  (  V  (  g  (  x  (    (    (    (    (    (    (    (     (    (  "  (  3  (   D  (!  U  ("  f  (#  w  ($    (%    (&    ('    ((    ()    (*    (+    (,    (-  !  (.  2  (/  C  (0  T  (1  e  (2  v  (3    (4    (5    (6    (7    (8    (9    (:    (;    (<     (=  1  (>  B  (?  S  (@  d  (A  u  (B    (C    (D    (E    (F    (G    (H    (I    (J    (K    (L  0  (M  A  (N  R  (O  c  (P  t  (Q    (R    (S    (T    (U    (V    (W    (X    (Y    (Z    ([  /  (\  @  (]  Q  (^  b  (_  s  (`    (a    (b    (c    (d    (e    (f    (g    (h    (i    (j  .  (k  ?  (l  P  (m  a  (n  r  (o    (p    (q    (r    (s    (t    (u    (v    (w    (x    (y  -  (z  >  ({  O  (|  `  (}  q  (~    (    (    (    (    (    (    (    (  
  (    (  ,  (  =  (  N  (  _  (  p  (    (    (    (    (    (    (    (    (  	  (    (  +  (  <  (  M  (  ^  (  o  (    (    (    (    (    (    (    (    (    (    (  *  (  ;  (  L  (  ]  (  n  (    (    (    (    (    (    (    (    (    (    (  )  (  :  (  K  (  \  (  m  (  ~  (    (    (    (    (    (    (    (    (    (  (  (  9  (  J  (  [  (  l  (  }  (    (    (    (    (    (    (    (    (    (  '  (  8  (  I  (  Z  (  k  (  |  (    (    (    (    (    (    (    (    (    (  &  (  7  (  H  (  Y  (  j  (  {  (    (    (    (    (    (    (    (    (    (  %  (  6  (  G  (  X  (  i  (  z  (    (    (    (    (    (    (    (    (    )   $  )  8  )  L  )  d  )  |  )    )    )    )    )	    )
    )    )  $  )  8  )  L  )  `  )  t  )    )    )    )    )    )    )    )    )  $  )  7  )  J  )  ]  )  p  )    )    )     )!    )"    )#    )$    )%  :  )&  X  )'  v  )(    ))    )*    )+    ),    )-  2  ).  S  )/  t  )0    )1    )2    )3    )4    )5  !  )6  7  )7  M  )8  c  )9  s  ):    );    )<    )=    )>    )?    )@    )A    )B  *  )C  F  )D  b  )E  ~  )F    )G    )H    )I    )J    )K   	  )L     )M   .  )N   @  )O   P  )P   _  )Q   o  )R   ~  )S     )T     )U     )V     )W     )X     )Y    )Z    )[  )  )\  <  )]  M  )^  _  )_  r  )`    )a    )b    )c    )d    )e    )f  
  )g  !  )h  8  )i  O  )j  f  )k  y  )l    )m    )n    )o    )p    )q    )r  	  )s  !  )t  9  )u  Q  )v  n  )w    )x    )y    )z    ){    )|    )}    )~  '  )  :  )  M  )  ^  )  j  )  y  )    )    )    )    )    )    )    )    )    )    )  /  )  ?  )  O  )  _  )  q  )    )    )    )    )    )    )    )    )  ,  )  H  )  a  )  z  )    )    )    )    )    )    )  3  )  Q  )  ^  )  k  )    )    )    )    )    )    )  =  )  [  )  p  )    )    )    )    )    )  	   )  	  )  	*  )  	?  )  	T  )  	i  )  	  )  	  )  	  )  	  )  	  )  
  )  
  )  
6  )  
P  )  
j  )  
  )  
  )  
  )  
  )  
  )    )  ;  )  \  )  x  )    )    )    )    )    )    )    )    )    )  ,  )  ;  )  Q  )  g  )  w  )    )    )    )    )    )    )    )  6  )  T  )  l  )    )    )    )    )    )    )    )  #  )  7  )  K  )  _  )  s  )    )    )    )    )    )    )    )    )    )  .  )  B  )  `  *   s  *    *    *    *    *    *    *    *  9  *	  W  *
  q  *    *    *    *    *    *    *     *  ?  *  W  *  o  *    *    *    *    *    *    *    *  3  *  K  *  _  *  o  *     *!    *"    *#    *$    *%    *&    *'    *(    *)    **  %  *+  1  *,  ?  *-  M  *.  _  */  q  *0    *1    *2    *3    *4    *5    *6    *7    *8  %  *9  :  *:  Z  *;  z  *<    *=    *>    *?    *@    *A    *B    *C    *D  1  *E  H  *F  _  *G  n  *H  }  *I    *J    *K    *L    *M    *N    *O    *P    *Q  ,  *R  C  *S  Z  *T  t  *U    *V    *W    *X    *Y    *Z    *[    *\  9  *]  S  *^  m  *_    *`    *a    *b    *c    *d    *e    *f  ,  *g  ;  *h  L  *i  a  *j  v  *k    *l    *m    *n    *o    *p    *q    *r    *s    *t    *u  +  *v  :  *w  J  *x  Z  *y  o  *z    *{    *|    *}    *~    *    *    *    *  /  *  C  *  X  *  m  *    *    *    *    *    *    *    *  #  *  :  *  Q  *  f  *  {  *    *    *    *    *    *    *    *    *  -  *  A  *  W  *  m  *    *    *    *    *    *    *    *    *  0  *  B  *  T  *  j  *    *    *    *    *    *    *    *    *  3  *  L  *  e  *  ~  *    *    *    *    *    *     *  :  *  T  *  i  *  ~  *    *    *    *    *    *    *    *     *   *  *   D  *   V  *   h  *   {  *     *     *     *     *     *  !  *  !  *  !+  *  !>  *  !Q  *  !d  *  !w  *  !  *  !  *  !  *  !  *  !  *  !  *  "  *  "  *  "+  *  "B  *  "X  *  "p  *  "  *  "  *  "  *  "  *  "  *  "  *  #  *  #  *  #*  *  #;  *  #L  *  #]  *  #n  *  #  *  #  *  #  *  #  *  #  *  #  *  #  *  $  *  $&  *  $<  *  $T  *  $g  *  ${  *  $  +   $  +  $  +  $  +  $  +  $  +  %  +  %+  +  %?  +  %S  +	  %m  +
  %  +  %  +  %  +  %  +  %  +  %  +  &  +  &&  +  &;  +  &R  +  &i  +  &  +  &  +  &  +  &  +  &  +  &  +  '  +  '0  +  'S  +  '_  +  'k  +   '  +!  '  +"  '  +#  '  +$  '  +%  (  +&  (#  +'  (4  +(  (H  +)  (\  +*  (j  ++  (y  +,  (  +-  (  +.  (  +/  (  +0  (  +1  (  +2  )  +3  )'  +4  ):  +5  )M  +6  )`  +7  )s  +8  )  +9  )  +:  )  +;  )  +<  )  +=  )  +>  )  +?  *  +@  *  +A  *5  +B  *L  +C  *h  +D  *  +E  *  +F  *  +G  *  +H  *  +I  +  +J  +(  +K  +D  +L  +[  +M  +r  +N  +  +O  +  +P  +  +Q  +  +R  +  +S  ,  +T  ,  +U  ,7  +V  ,L  +W  ,a  +X  ,v  +Y  ,  +Z  ,  +[  ,  +\  ,  +]  ,  +^  ,  +_  -	  +`  -  +a  -3  +b  -H  +c  -]  +d  -r  +e  -  +f  -  +g  -  +h  -  +i  -  +j  -  +k  .  +l  .  +m  ./  +n  .D  +o  .Y  +p  .n  +q  .  +r  .  +s  .  +t  .  +u  .  +v  .  +w  /  +x  /  +y  /+  +z  /@  +{  /U  +|  /j  +}  /  +~  /  +  /  +  /  +  /  +  /  +  /  +  0  +  0'  +  0<  +  0Q  +  0f  +  0{  +  0  +  0  +  0  +  0  +  0  +  0  +  1  +  1#  +  18  +  1M  +  1b  +  1w  +  1  +  1  +  1  +  1  +  1  +  1  +  2
  +  2  +  24  +  2I  +  2^  +  2s  +  2  +  2  +  2  +  2  +  2  +  2  +  3  +  3  +  30  +  3E  +  3Z  +  3o  +  3  +  3  +  3  +  3  +  3  +  3  +  4  +  4  +  4,  +  4A  +  4V  +  4k  +  4  +  4  +  4  +  4  +  4  +  4  +  4  +  5  +  5(  +  5=  +  5R  +  5g  +  5|  +  5  +  5  +  5  +  5  +  5  +  5  +  6  +  6$  +  69  +  6N  +  6c  +  6x  +  6  +  6  +  6  +  6  +  6  +  6  +  7  +  7   +  75  +  7J  +  7_  +  7t  +  7  +  7  +  7  +  7  +  7  +  7  +  8  +  8  +  81  +  8F  +  8[  +  8p  +  8  +  8  +  8  +  8  +  8  +  8  +  9  +  9  +  9-  +  9B  +  9W  +  9l  +  9  +  9  +  9  +  9  +  9  +  9  +  9  +  :  +  :)  ,   :>  ,  :O  ,  :b  ,  :u  ,  :  ,  :  ,  :  ,  :  ,  :  ,	  :  ,
  :  ,  ;	  ,  ;  ,  ;/  ,  ;>  ,  ;Q  ,  ;i  ,  ;|  ,  ;  ,  ;  ,  ;  ,  ;  ,  ;  ,  ;  ,  <  ,  <  ,  <'  ,  <:  ,  <M  ,  <a  ,  <t  ,  <  ,   <  ,!  <  ,"  <  ,#  <  ,$  <  ,%  =   ,&  =  ,'  =&  ,(  =?  ,)  =X  ,*  =t  ,+  =  ,,  =  ,-  =  ,.  =  ,/  =  ,0  =  ,1  =  ,2  >  ,3  >  ,4  >#  ,5  >4  ,6  >C  ,7  >S  ,8  >d  ,9  >u  ,:  >  ,;  >  ,<  >  ,=  >  ,>  >  ,?  >  ,@  >  ,A  >  ,B  ?  ,C  ?  ,D  ?*  ,E  ?;  ,F  ?L  ,G  ?]  ,H  ?p  ,I  ?  ,J  ?  ,K  ?  ,L  ?  ,M  ?  ,N  ?  ,O  ?  ,P  ?  ,Q  @  ,R  @  ,S  @,  ,T  @;  ,U  @K  ,V  @[  ,W  @l  ,X  @  ,Y  @  ,Z  @  ,[  @  ,\  @  ,]  @  ,^  @  ,_  @  ,`  A  ,a  A%  ,b  A6  ,c  AI  ,d  A[  ,e  An  ,f  A  ,g  A  ,h  A  ,i  A  ,j  A  ,k  A  ,l  A  ,m  B
  ,n  B  ,o  B/  ,p  BA  ,q  BV  ,r  Bh  ,s  B{  ,t  B  ,u  B  ,v  B  ,w  B  ,x  B  ,y  B  ,z  B  ,{  C  ,|  C  ,}  C"  ,~  C0  ,  CE  ,  CZ  ,  Cn  ,  C  ,  C  ,  C  ,  C  ,  C  ,  C  ,  C  ,  C  ,  D  ,  D  ,  D-  ,  DB  ,  DU  ,  Dg  ,  Dw  ,  D  ,  D  ,  D  ,  D  ,  D  ,  D  ,  D  ,  D  ,  E  ,  E!  ,  E4  ,  EC  ,  EY  ,  El  ,  E  ,  E  ,  E  ,  E  ,  E  ,  E  ,  E  ,  E  ,  F  ,  F  ,  F3  ,  FE  ,  F\  ,  Fq  ,  F  ,  F  ,  F  ,  F  ,  F  ,  F  ,  F  ,  F  ,  G  ,  G  ,  G0  ,  G@  ,  GQ  ,  G_  ,  Gk  ,  Gw  ,  G  ,  G  ,  G  ,  G  ,  G  ,  G  ,  H  ,  H  ,  H,  ,  H=  ,  HM  ,  H\  ,  Hp  ,  H  ,  H  ,  H  ,  H  ,  H  ,  H  ,  H  ,  I
  ,  I  ,  I+  ,  I;  ,  IL  ,  I\  ,  Iq  ,  I  ,  I  ,  I  ,  I  ,  I  ,  I  ,  I  ,  J  ,  J  ,  J,  ,  J>  ,  JS  ,  Jf  ,  Jx  ,  J  ,  J  ,  J  ,  J  ,  K  ,  K  ,  K/  ,  KD  ,  KY  ,  Kn  ,  K  ,  K  ,  K  ,  K  ,  K  ,  K  ,  L  ,  L  ,  L+  ,  L@  ,  LS  ,  Ld  ,  Lu  ,  L  ,  L  ,  L  -   L  -  L  -  L  -  L  -  L  -  M  -  M  -  M-  -  M?  -	  MN  -
  M^  -  Mp  -  M  -  M  -  M  -  M  -  M  -  M  -  M  -  M  -  N  -  N+  -  N>  -  NN  -  N^  -  No  -  N  -  N  -  N  -  N  -  N  -  N  -   N  -!  N  -"  O  -#  O  -$  O/  -%  O>  -&  OT  -'  Oi  -(  O~  -)  O  -*  O  -+  O  -,  O  --  O  -.  O  -/  P  -0  P&  -1  P2  -2  PC  -3  PT  -4  Pe  -5  Pv  -6  P  -7  P  -8  P  -9  P  -:  P  -;  P  -<  P  -=  P  ->  Q  -?  Q  -@  Q0  -A  QA  -B  QR  -C  Q`  -D  Qr  -E  Q  -F  Q  -G  Q  -H  Q  -I  Q  -J  Q  -K  Q  -L  Q  -M  R   -N  R  -O  R   -P  R,  -Q  R>  -R  RJ  -S  RX  -T  Rg  -U  Rx  -V  R  -W  R  -X  R  -Y  R  -Z  R  -[  R  -\  R  -]  R  -^  S  -_  S   -`  S1  -a  S@  -b  SO  -c  S\  -d  Sp  -e  S~  -f  S  -g  S  -h  S  -i  S  -j  S  -k  S  -l  T  -m  T%  -n  T:  -o  TO  -p  T[  -q  Tp  -r  T  -s  T  -t  T  -u  T  -v  T  -w  T  -x  U  -y  U  -z  U-  -{  UB  -|  UW  -}  Ul  -~  U  -  U  -  U  -  U  -  U  -  V  -  V!  -  V<  -  VR  -  Vm  -  V  -  V  -  V  -  V  -  V  -  W  -  W'  -  WC  -  W^  -  W|  -  W  -  W  -  W  -  W  -  X  -  X8  -  XM  -  Xb  -  Xw  -  X  -  X  -  X  -  X  -  X  -  X  -  Y  -  Y.  -  YN  -  Yi  -  Y  -  Y  -  Y  -  Y  -  Y  -  Z  -  Z  -  Z;  -  ZT  -  Zo  -  Z  -  Z  -  Z  -  Z  -  Z  -  [  -  [  -  [@  -  [X  -  [m  -  [  -  [  -  [  -  [  -  \  -  \#  -  \@  -  \U  -  \p  -  \  -  \  -  \  -  \  -  \  -  ]  -  ]+  -  ]B  -  ]Z  -  ]s  -  ]  -  ]  -  ]  -  ]  -  ]  -  ^  -  ^*  -  ^Q  -  ^p  -  ^  -  ^  -  ^  -  ^  -  _   -  _  -  _7  -  _P  -  _k  -  _  -  _  -  _  -  _  -  _  -  _  -  _  -  _  -  `   -  `  -  `  -  `)  -  `6  -  `B  -  `O  -  `\  -  `h  -  `v  -  `  -  `  -  `  -  `  -  `  -  `  -  `  -  `  -  `  -  `  -  a  -  a  -  a)  -  a7  -  aE  -  aS  .   ab  .  ao  .  a|  .  a  .  a  .  a  .  a  .  a  .  a  .	  a  .
  a  .  b   .  b  .  b  .  b*  .  bM  .  bY  .  bj  .  b|  .  b  .  b  .  b  .  b  .  b  .  b  .  c  .  c  .  c%  .  c6  .  cD  .  cR  .  cc  .   ct  .!  c  ."  c  .#  c  .$  c  .%  c  .&  c  .'  c  .(  c  .)  c  .*  d
  .+  d  .,  d(  .-  d7  ..  dI  ./  d[  .0  dg  .1  ds  .2  d  .3  d  .4  d  .5  d  .6  d  .7  d  .8  e  .9  e  .:  e0  .;  eE  .<  eZ  .=  eo  .>  e  .?  e  .@  e  .A  e  .B  e  .C  e  .D  f  .E  f  .F  f,  .G  fA  .H  fV  .I  fk  .J  f  .K  f  .L  f  .M  f  .N  f  .O  f  .P  f  .Q  g  .R  g(  .S  g=  .T  gR  .U  gg  .V  g|  .W  g  .X  g  .Y  g  .Z  g  .[  g  .\  g  .]  h  .^  h$  ._  h9  .`  hN  .a  hc  .b  hx  .c  h  .d  h  .e  h  .f  h  .g  h  .h  h  .i  i  .j  i   .k  i5  .l  iJ  .m  i_  .n  it  .o  i  .p  i  .q  i  .r  i  .s  i  .t  i  .u  j  .v  j  .w  j1  .x  jF  .y  j[  .z  jp  .{  j  .|  j  .}  j  .~  j  .  j  .  j  .  k  .  k&  .  k:  .  kU  .  kz  .  k  .  k  .  k  .  k  .  k  .  l  .  l-  .  l<  .  lL  .  lt  .  l  .  l  .  l  .  m  .  m(  .  mO  .  mk  .  m  .  m  .  m  .  m  .  m  .  n  .  n&  .  nA  .  ng  .  n  .  n  .  n  .  n  .  n  .  o  .  o&  .  o<  .  oR  .  oh  .  o  .  o  .  o  .  o  .  o  .  p  .  p0  .  pF  .  p[  .  pl  .  p  .  p  .  p  .  p  .  q
  .  q2  .  qS  .  q{  .  q  .  q  .  q  .  q  .  r  .  r  .  r>  .  rT  .  rj  .  r  .  r  .  r  .  r  .  s  .  s0  .  sW  .  s  .  s  .  s  .  s  .  t  .  t  .  tD  .  tk  .  t  .  t  .  t  .  t  .  u  .  u8  .  u^  .  u  .  u  .  u  .  u  .  v  .  v)  .  vA  .  vi  .  v  .  v  .  v  .  w  .  w)  .  wM  .  wu  .  w  .  w  .  w  .  x  .  x9  .  xa  .  x  .  x  .  x  .  y  .  y)  .  y>  .  yS  .  yh  .  y}  .  y  .  y  .  y  .  y  .  y  .  y  .  z  /   z%  /  z3  /  z?  /  zN  /  zi  /  z  /  z  /  z  /  z  /	  z  /
  {!  /  {H  /  {k  /  {  /  {  /  {  /  {  /  {  /  |  /  |9  /  |Z  /  |v  /  |  /  |  /  |  /  |  /  }	  /  }.  /  }Q  /  }v  /  }  /  }  /   }  /!  }  /"  ~$  /#  ~L  /$  ~g  /%  ~  /&  ~  /'  ~  /(  ~  /)    /*  C  /+  k  /,    /-    /.    //    /0    /1  7  /2  W  /3  |  /4    /5    /6    /7    /8  7  /9  V  /:  o  /;    /<    /=    />    /?    /@  ?  /A  e  /B    /C    /D    /E    /F  +  /G  P  /H  i  /I    /J    /K    /L    /M    /N  @  /O  f  /P    /Q    /R    /S    /T    /U  B  /V  f  /W    /X    /Y    /Z    /[  '  /\  L  /]  q  /^    /_    /`    /a    /b  /  /c  W  /d  ~  /e    /f    /g    /h    /i  -  /j  L  /k  t  /l    /m    /n    /o    /p  '  /q  N  /r  p  /s    /t    /u    /v    /w  5  /x  Y  /y  ~  /z    /{    /|    /}    /~  2  /  X  /    /    /    /    /    /  )  /  J  /  q  /    /    /    /    /  ,  /  T  /  w  /    /    /    /    /  2  /  V  /  |  /    /    /    /    /  1  /  Y  /    /    /    /    /    /  B  /  j  /    /    /    /    /  (  /  P  /  r  /    /    /    /    /  4  /  \  /    /    /    /    /    /  A  /  h  /    /    /    /    /  '  /  M  /  u  /    /    /    /    /  '  /  J  /  p  /    /    /    /  	  /  1  /  Y  /    /    /    /    /    /  8  /  `  /    /    /    /    /  %  /  :  /  O  /  d  /  y  /    /    /    /    /    /    /    /  !  /  6  /  K  /  `  /  u  /    /    /    /    /    /    /    /    /  2  /  G  /  n  /    /    /    /  
  /  1  /  X  /    /    /    /    /    /  0  /  E  /  Z  0   o  0  y  0    0    0    0    0    0    0    0	  -  0
  D  0  [  0  r  0    0    0    0    0    0    0    0    0  /  0  @  0  W  0  n  0    0    0    0    0    0    0    0     0!    0"  )  0#  ?  0$  \  0%  z  0&    0'    0(    0)    0*  	  0+    0,  !  0-  -  0.  9  0/  D  00  P  01  `  02  v  03    04    05    06    07    08  7  09  _  0:    0;    0<    0=    0>    0?  #  0@  9  0A  N  0B  f  0C    0D    0E    0F    0G    0H    0I  	  0J     0K  <  0L  X  0M  x  0N    0O    0P    0Q    0R    0S  "  0T  ;  0U  Y  0V  t  0W    0X    0Y    0Z    0[    0\     0]  @  0^  \  0_  z  0`    0a    0b    0c    0d    0e    0f  <  0g  X  0h  v  0i    0j    0k    0l    0m    0n    0o  7  0p  S  0q  s  0r    0s    0t    0u    0v    0w  $  0x  B  0y  U  0z  k  0{    0|    0}    0~    0    0    0  1  0  M  0  i  0    0    0    0    0    0    0    0  4  0  O  0  o  0    0    0    0    0    0    0  2  0  P  0  g  0    0    0    0    0    0    0    0    0    0    0     0  3  0  L  0  `  0  y  0    0    0    0    0    0    0    0  ;  0  W  0  v  0    0    0    0    0    0    0  9  0  X  0  p  0    0    0    0    0    0    0  1  0  L  0  m  0    0    0    0    0    0    0  .  0  D  0  ^  0  z  0    0    0    0    0    0    0  *  0  A  0  Z  0  s  0    0    0    0    0    0    0  '  0  F  0  e  0  |  0    0    0    0    0    0    0  !  0  5  0  F  0  ]  0  v  0    0    0    0    0    0     0    0  1  0  I  0  `  0    0    0    0    0    0    0  %  0  1  0  >  0  M  0  ^  1   y  1    1    1    1    1    1    1    1  4  1	  P  1
  o  1    1    1    1    1    1  %  1  =  1  P  1  p  1    1    1    1    1    1    1  9  1  V  1  t  1    1    1    1     1!    1"    1#  =  1$  Y  1%  z  1&    1'    1(    1)    1*    1+    1,  6  1-  Y  1.  z  1/    10    11    12    13    14  	  15    16  7  17  U  18  l  19    1:    1;    1<    1=    1>    1?  !  1@  =  1A  Y  1B  q  1C    1D    1E    1F    1G    1H    1I  $  1J  ?  1K  Z  1L  s  1M    1N    1O    1P    1Q    1R    1S    1T  3  1U  L  1V  b  1W  {  1X    1Y    1Z    1[    1\    1]  1  1^  R  1_  s  1`    1a    1b    1c    1e    1f  	  1g  #  1h  >  1i  X  1j  r  1k    1l    1m    1n    1o    1p    1q  .  1r  M  1s  k  1t    1u    1v    1w    1x    1y    1z  :  1{  U  1|  o  1}    1~  ¦  1    1    1    1    1  0  1  O  1  p  1  Î  1  é  1    1    1    1  3  1  V  1  w  1  ă  1  Ĝ  1  ı  1  ļ  1    1    1    1    1    1    1  ,  1  =  1  O  1  `  1  r  1  Ņ  1  Ř  1  ŭ  1  ſ  1    1    1    1  2  1  P  1  p  1  Ɛ  1  Ʈ  1    1    1    1    1  ;  1  Z  1  z  1  ǖ  1  ǹ  1    1    1    1    1  .  1  >  1  O  1  d  1  y  1  Ȏ  1  ȣ  1  ȸ  1    1    1    1    1    1  1  1  G  1  ^  1  w  1  ɐ  1  ɬ  1    1    1    1  "  1  5  1  O  1  j  1  ʇ  1  ʓ  1  ʟ  1  ʯ  1    1    1    1    1    1  /  1  C  1  S  1  f  1  }  1  ˞  1  ˼  1    1    1    1  2  1  K  1  `  1  u  1  ̊  1  ̟  1  ̴  1    1    1    1    1    1  2  1  G  1  X  1  i  1  z  1  ͉  1  ͚  1  ͫ  1  ͼ  1    1    1    1    1    1  &  1  <  1  L  2   _  2  ΂  2  Υ  2    2    2    2  1  2  T  2  w  2	  Ϛ  2
  Ͻ  2    2    2  &  2  I  2  l  2  Џ  2  в  2    2    2    2  >  2  a  2  ф  2  ѧ  2    2    2    2  3  2  X  2  }  2  Ҥ  2   ҹ  2!    2"    2#  (  2$  M  2%  r  2&  ӗ  2'  Ӽ  2(    2)    2*  +  2+  P  2,  u  2-  Ԛ  2.  Կ  2/    20  	  21  .  22  S  23  x  24  ՝  25    26    27    28  1  29  V  2:  {  2;  ֠  2<    2=    2>    2?  4  2@  Y  2A  ~  2B  ף  2C    2D    2E    2F    2G  ,  2H  A  2I  V  2J  k  2K  ؀  2L  ؕ  2M  ت  2N  ؿ  2O    2P    2Q    2R  *  2S  O  2T  t  2U  ٙ  2V  پ  2W    2X    2Y  -  2Z  R  2[  w  2\  ڜ  2]    2^    2_    2`  0  2a  S  2b  v  2c  ۙ  2d  ۼ  2e    2f    2g  %  2h  H  2i  k  2j  ܎  2k  ܱ  2l    2m    2n    2o  =  2p  `  2q  ݃  2r  ݦ  2s    2t    2u    2v  2  2w  U  2x  x  2y  ޛ  2z  ޾  2{    2|    2}  '  2~  J  2  k  2  ߎ  2  ߳  2    2    2  "  2  G  2  l  2    2    2    2    2    2  D  2  i  2    2    2    2    2    2  C  2  h  2    2    2    2    2  !  2  F  2  i  2    2    2    2    2     2  F  2  k  2    2    2    2    2     2  E  2  j  2    2    2    2    2    2  B  2  e  2    2    2    2    2    2  C  2  h  2    2    2    2    2  !  2  F  2  k  2    2    2    2    2    2  ;  2  \  2  }  2    2    2    2    2  *  2  O  2  m  2    2    2    2    2    2  '  2  H  2  i  2    2    2    2    2    2  /  2  P  2  q  2    2    2    2    2    2  7  2  X  2  y  2    2    2    2    2    2  ?  2  `  2    2    2    2    2    2  &  2  G  2  h  2    2    2    2    2    2  .  2  O  2  p  2    2    2    3     3    3  .  3  S  3  t  3    3    3    3    3	  !  3
  B  3  c  3    3    3    3    3    3  7  3  X  3  y  3    3    3    3    3  6  3  ]  3    3    3    3    3    3  ,  3   M  3!  t  3"    3#    3$    3%    3&  $  3'  E  3(  c  3)    3*    3+    3,    3-    3.  7  3/  ^  30    31    32    33    34    35  5  36  T  37  |  38    39    3:    3;    3<  +  3=  P  3>  u  3?    3@    3A    3B    3C     3D  A  3E  b  3F    3G    3H    3I    3J    3K  *  3L  O  3M  w  3N    3O    3P    3Q    3R    3S  ;  3T  \  3U    3V    3W    3X    3Y  
  3Z  0  3[  T  3\  x  3]    3^    3_    3`    3a  ,  3b  P  3c  v  3d    3e    3f    3g    3h  4  3i  Z  3j    3k    3l    3m    3n      3o   J  3p   t  3q     3r     3s     3t     3u    3v  ;  3w  W  3x  u  3y    3z    3{    3|    3}  (  3~  K  3  q  3    3    3    3     3    3  @  3  _  3  ~  3    3    3    3    3  !  3  F  3  b  3  }  3    3    3    3    3  &  3  G  3  j  3    3    3    3    3    3    3  /  3  F  3  d  3    3    3    3    3    3  8  3  W  3  |  3    3    3    3  	  3  *  3  K  3  j  3    3    3    3    3  	  3  	  3  	B  3  	`  3  	  3  	  3  	  3  	  3  
  3  
%  3  
J  3  
i  3  
  3  
  3  
  3  
  3    3  "  3  9  3  Y  3    3    3    3    3    3  #  3  ?  3  `  3  ~  3    3    3    3    3    3  ;  3  Z  3  |  3    3    3    3    3    3  .  3  O  3  r  3    3    3    3    3    3  <  3  ]  3  ~  3    3    3    3    3  )  3  L  3  o  3    3    3    3    3    3  C  3  h  3    3    3    3    3  !  3  F  3  k  3    3    3    4     4  &  4  M  4  u  4    4    4    4    4  0  4	  W  4
  z  4    4    4    4    4  <  4  a  4    4    4    4    4  %  4  I  4  p  4    4    4    4    4  5  4  ]  4    4    4     4!    4"    4#  G  4$  o  4%    4&    4'    4(    4)  4  4*  \  4+    4,    4-    4.    4/  $  40  L  41  r  42    43    44    45    46  7  47  _  48    49    4:    4;    4<  %  4=  M  4>  u  4?    4@    4A    4B    4C  9  4D  _  4E    4F    4G    4H    4I  %  4J  M  4K  u  4L    4M    4N    4O    4P  9  4Q  a  4R    4S    4T    4U    4V   '  4W   O  4X   w  4Y     4Z     4[     4\  !  4]  !?  4^  !g  4_  !  4`  !  4a  !  4b  "  4c  "-  4d  "U  4e  "}  4f  "  4g  "  4h  "  4i  #  4j  #C  4k  #k  4l  #  4m  #  4n  #  4o  $  4p  $3  4q  $[  4r  $  4s  $  4t  $  4u  $  4v  %#  4w  %K  4x  %s  4y  %  4z  %  4{  %  4|  &  4}  &;  4~  &c  4  &  4  &  4  &  4  &  4  ''  4  'O  4  'w  4  '  4  '  4  '  4  (  4  (?  4  (g  4  (  4  (  4  (  4  )  4  )-  4  )U  4  )}  4  )  4  )  4  )  4  *  4  *C  4  *k  4  *  4  *  4  *  4  +  4  +3  4  +[  4  +  4  +  4  +  4  +  4  ,#  4  ,K  4  ,s  4  ,  4  ,  4  ,  4  -  4  -;  4  -c  4  -  4  -  4  -  4  -  4  .'  4  .N  4  .v  4  .  4  .  4  .  4  /  4  /5  4  /X  4  /  4  /  4  /  4  /  4  0  4  0C  4  0j  4  0  4  0  4  0  4  0  4  1  4  1A  4  1h  4  1  4  1  4  1  4  2  4  2+  4  2S  4  2z  4  2  4  2  4  2  4  3  4  3;  4  3c  4  3  4  3  4  3  4  4  4  4(  4  4O  4  4s  4  4  4  4  4  4  4  5
  4  50  4  5V  4  5z  4  5  4  5  4  5  4  6  4  68  4  6^  4  6  4  6  4  6  4  6  4  7  4  7@  4  7f  4  7  4  7  4  7  4  7  4  8&  4  8N  4  8t  4  8  4  8  4  8  4  9  4  92  4  9X  4  9~  4  9  4  9  4  9  5   :  5  :>  5  :d  5  :  5  :  5  :  5  ;  5  ;(  5  ;N  5	  ;t  5
  ;  5  ;  5  ;  5  <  5  <6  5  <^  5  <  5  <  5  <  5  <  5  =$  5  =I  5  =o  5  =  5  =  5  =  5  >	  5  >/  5  >S  5  >y  5  >  5  >  5   >  5!  ?  5"  ?7  5#  ?_  5$  ?  5%  ?  5&  ?  5'  ?  5(  @%  5)  @K  5*  @q  5+  @  5,  @  5-  @  5.  A  5/  A4  50  AW  51  Az  52  A  53  A  54  A  55  B  56  B,  57  BR  58  Bu  59  B  5:  B  5;  B  5<  C  5=  C7  5>  C[  5?  Cz  5@  C  5A  C  5B  C  5C  D  5D  D8  5E  D_  5F  D  5G  D  5H  D  5I  D  5J  E"  5K  EI  5L  Ep  5M  E  5N  E  5O  E  5P  F  5Q  F3  5R  FZ  5S  F  5T  F  5U  F  5V  F  5W  G  5X  GC  5Y  Gk  5Z  G  5[  G  5\  G  5]  H	  5^  H1  5_  HX  5`  H~  5a  H  5b  H  5c  H  5d  I  5e  IC  5f  Ii  5g  I  5h  I  5i  I  5j  I  5k  J$  5l  JJ  5m  Jo  5n  J  5o  J  5p  J  5q  K  5r  K+  5s  KS  5t  Kv  5u  K  5v  K  5w  K  5x  L  5y  L(  5z  LN  5{  Lu  5|  L  5}  L  5~  L  5  M  5  M5  5  M[  5  M  5  M  5  M  5  M  5  N  5  N;  5  N`  5  N  5  N  5  N  5  N  5  O   5  OF  5  On  5  O  5  O  5  O  5  P  5  P+  5  PP  5  Pv  5  P  5  P  5  P  5  Q  5  Q9  5  Q_  5  Q  5  Q  5  Q  5  Q  5  R"  5  RJ  5  Rq  5  R  5  R  5  R  5  S	  5  S/  5  ST  5  S{  5  S  5  S  5  S  5  T  5  T<  5  T`  5  T  5  T  5  T  5  T  5  U   5  UE  5  Uj  5  U  5  U  5  U  5  V  5  V)  5  VO  5  Vt  5  V  5  V  5  V  5  W  5  W5  5  WZ  5  W  5  W  5  W  5  W  5  X  5  X;  5  X^  5  X  5  X  5  X  5  X  5  Y  5  YC  5  Yk  5  Y  5  Y  5  Y  5  Z  5  Z*  5  ZR  5  Zx  5  Z  5  Z  5  Z  5  [  5  [8  5  [^  5  [  5  [  5  [  5  [  5  \  5  \F  5  \l  5  \  5  \  5  \  5  ]  5  ]'  5  ]M  5  ]u  5  ]  5  ]  5  ]  5  ^  5  ^5  5  ^[  5  ^  5  ^  5  ^  5  ^  5  _  5  _E  5  _j  5  _  5  _  5  _  5  `  5  `,  6   `Q  6  `w  6  `  6  `  6  `  6  a  6  a9  6  aa  6  a  6	  a  6
  a  6  b  6  b'  6  bO  6  bw  6  b  6  b  6  b  6  c  6  c=  6  cc  6  c  6  c  6  c  6  c  6  d&  6  dL  6  dt  6  d  6  d  6  d  6  e  6   e+  6!  eN  6"  eq  6#  e  6$  e  6%  e  6&  f  6'  f)  6(  fQ  6)  fy  6*  f  6+  f  6,  f  6-  g  6.  g>  6/  gf  60  g  61  g  62  g  63  h  64  h-  65  hT  66  h|  67  h  68  h  69  h  6:  i  6;  i?  6<  ig  6=  i  6>  i  6?  i  6@  j  6A  j.  6B  jV  6C  j~  6D  j  6E  j  6F  j  6G  k  6H  kE  6I  km  6J  k  6K  k  6L  k  6M  l  6N  l5  6O  l]  6P  l  6Q  l  6R  l  6S  l  6T  m#  6U  mK  6V  ms  6W  m  6X  m  6Y  m  6Z  n  6[  n;  6\  nc  6]  n  6^  n  6_  n  6`  o  6a  o*  6b  oR  6c  oz  6d  o  6e  o  6f  o  6g  p  6h  pA  6i  pi  6j  p  6k  p  6l  p  6m  q  6n  q/  6o  qW  6p  q  6q  q  6r  q  6s  q  6t  r  6u  rF  6v  rn  6w  r  6x  r  6y  r  6z  s  6{  s6  6|  s^  6}  s  6~  s  6  s  6  s  6  t&  6  tN  6  tv  6  t  6  t  6  t  6  u  6  u=  6  ue  6  u  6  u  6  u  6  u  6  v&  6  vN  6  vv  6  v  6  v  6  v  6  w  6  w=  6  we  6  w  6  w  6  w  6  x  6  x,  6  xT  6  x|  6  x  6  x  6  x  6  y  6  yD  6  yl  6  y  6  y  6  y  6  z  6  z4  6  z\  6  z  6  z  6  z  6  z  6  {"  6  {J  6  {r  6  {  6  {  6  {  6  |  6  |6  6  |^  6  |  6  |  6  |  6  |  6  }"  6  }I  6  }o  6  }  6  }  6  }  6  ~  6  ~3  6  ~[  6  ~  6  ~  6  ~  6  ~  6  #  6  K  6  s  6    6    6    6    6  ;  6  c  6    6    6    6    6  *  6  R  6  z  6    6    6    6    6  ?  6  g  6    6    6    6    6  /  6  W  6  }  6    6    6    6    6  E  6  m  6    6    6    6    6  4  6  \  6    6    6    6    6  $  6  L  6  t  6    6    6    6    6  <  6  d  6    6    7     7    7  )  7  Q  7  y  7    7    7    7    7	  @  7
  h  7    7    7    7    7  /  7  W  7  ~  7    7    7    7    7  E  7  m  7    7    7    7    7  5  7  ]  7    7    7     7!    7"  %  7#  M  7$  u  7%    7&    7'    7(    7)  =  7*  e  7+    7,    7-    7.    7/  ,  70  T  71  |  72    73    74    75    76  D  77  l  78    79    7:    7;    7<  4  7=  \  7>    7?    7@    7A    7B  $  7C  L  7D  t  7E    7F    7G    7H    7I  <  7J  _  7K    7L    7M    7N    7O  &  7P  N  7Q  v  7R    7S    7T    7U    7V  >  7W  f  7X    7Y    7Z    7[    7\  .  7]  V  7^  ~  7_    7`    7a    7b    7c  E  7d  m  7e    7f    7g    7h    7i  4  7j  \  7k    7l    7m    7n    7o  $  7p  L  7q  t  7r    7s    7t    7u    7v  ;  7w  c  7x    7y    7z    7{    7|  )  7}  Q  7~  y  7    7    7    7    7  A  7  i  7    7    7    7  	  7  1  7  Y  7    7    7    7    7    7  D  7  k  7    7    7    7    7  (  7  M  7  r  7    7    7    7    7  5  7  ]  7    7    7    7    7    7  G  7  n  7    7    7    7    7  .  7  U  7  }  7    7    7    7    7  5  7  U  7  y  7    7    7    7    7  :  7  `  7    7    7    7    7  %  7  K  7  s  7    7    7    7    7  1  7  W  7    7    7    7    7    7  >  7  d  7    7    7    7    7  %  7  M  7  u  7    7    7    7    7  1  7  W  7  }  7    7    7    7    7  =  7  e  7    7    7    7    7  -  7  U  7  }  7    7    7    7    7  =  7  c  7    7    7    7     7  &  7  N  7  v  7    7    7    7    7  9  7  a  7    7    7    7    8   #  8  I  8  q  8    8    8    8    8  3  8  [  8	    8
    8    8    8    8  G  8  o  8    8    8    8  	  8  1  8  Y  8    8    8    8    8    8  G  8  m  8    8    8    8   	  8!  1  8"  Y  8#    8$    8%    8&    8'  !  8(  I  8)  q  8*    8+    8,    8-    8.  3  8/  [  80  w  81    82    83    84    85  7  86  _  87    88    89    8:    8;    8<  E  8=  k  8>    8?    8@    8A    8B  )  8C  O  8D  u  8E    8F    8G    8H    8I  3  8J  [  8K    8L    8M    8N    8O    8P  C  8Q  k  8R    8S    8T    8U    8V  -  8W  S  8X  {  8Y    8Z    8[    8\    8]  ;  8^  c  8_    8`    8a    8b    8c  +  8d  S  8e  {  8f    8g    8h    8i    8j  A  8k  i  8l    8m    8n    8o    8p  /  8q  W  8r    8s    8t    8u    8v    8w  F  8x  n  8y    8z    8{    8|    8}  4  8~  \  8    8  ¬  8    8    8  $  8  L  8  t  8  Ü  8    8    8    8  <  8  d  8  Č  8  Ĵ  8    8    8  ,  8  T  8  |  8  Ť  8    8    8    8  D  8  l  8  Ɣ  8  Ƽ  8    8    8  4  8  \  8  Ǆ  8  ǫ  8    8    8  "  8  J  8  r  8  Ș  8    8    8    8  ,  8  S  8  y  8  ɡ  8    8    8    8  >  8  f  8  ʍ  8  ʳ  8    8    8  #  8  I  8  q  8  ˗  8  ˿  8    8    8  2  8  Y  8  ́  8  ̩  8    8    8     8  H  8  o  8  ͗  8  ͽ  8    8    8  5  8  ]  8  ΃  8  Ϋ  8    8    8    8  G  8  o  8  ϗ  8  Ͽ  8    8    8  5  8  [  8  Ё  8  Ч  8    8    8    8  G  8  o  8  ї  8  ѿ  8    8    8  7  8  _  8  ҇  8  ү  8    8    8  '  8  O  8  w  8  ӟ  8    8    8    8  ?  8  g  8  ԏ  8  Է  8    8    8  /  8  W  8    8  գ  8    8    8    8  ?  9   e  9  ֌  9  ֱ  9    9     9  (  9  O  9  w  9  ן  9	    9
    9    9  ?  9  g  9  ،  9  س  9    9    9  *  9  R  9  z  9  ٢  9    9    9    9  >  9  e  9  ڍ  9  ڵ  9    9    9  -  9   T  9!  {  9"  ۡ  9#    9$    9%    9&  @  9'  h  9(  ܐ  9)  ܸ  9*    9+    9,  -  9-  U  9.  }  9/  ݤ  90    91    92    93  D  94  l  95  ޔ  96  ޼  97    98    99  4  9:  \  9;  ߄  9<  ߫  9=    9>    9?  !  9@  I  9A  q  9B    9C    9D    9E    9F  9  9G  a  9H    9I    9J    9K    9L  %  9M  K  9N  s  9O    9P    9Q    9R    9S  7  9T  _  9U    9V    9W    9X    9Y  '  9Z  O  9[  w  9\    9]    9^    9_    9`  ?  9a  g  9b    9c    9d    9e    9f  .  9g  V  9h  ~  9i    9j    9k    9l    9m  F  9n  n  9o    9p    9q    9r    9s  4  9t  \  9u    9v    9w    9x    9y  "  9z  I  9{  q  9|    9}    9~    9    9  8  9  `  9    9    9    9    9  '  9  O  9  w  9    9    9    9    9  ?  9  g  9    9    9    9    9  /  9  W  9    9    9    9    9    9  G  9  o  9    9    9    9    9  6  9  ^  9    9    9    9    9  &  9  N  9  v  9    9    9    9    9  <  9  d  9    9    9    9     9  (  9  P  9  x  9    9    9    9    9  @  9  h  9    9    9    9    9  -  9  U  9  }  9    9    9    9    9  ;  9  a  9    9    9    9    9  '  9  O  9  w  9    9    9    9    9  =  9  e  9    9    9    9    9  +  9  S  9  w  9    9    9    9    9  =  9  e  9    9    9    9    9  )  9  Q  9  y  9    9    9    9    9  >  9  d  9    9    9    9    9  ,  9  T  9  |  9    9    9    9    9  D  9  l  9    9    9    :   
  :  2  :  Z  :    :    :    :    :     :  D  :	  l  :
    :    :    :     :   2  :   Z  :     :     :     :     :  "  :  J  :  r  :    :    :    :    :  <  :  d  :    :    :    :     :!  ,  :"  T  :#  |  :$    :%    :&    :'    :(  D  :)  l  :*    :+    :,    :-    :.  4  :/  \  :0    :1    :2    :3    :4  $  :5  L  :6  t  :7    :8    :9    ::    :;  <  :<  d  :=    :>    :?    :@     :A  (  :B  P  :C  x  :D    :E    :F    :G  	  :H  	@  :I  	h  :J  	  :K  	  :L  	  :M  
  :N  
0  :O  
X  :P  
  :Q  
  :R  
  :S  
  :T     :U  H  :V  p  :W    :X    :Y    :Z    :[  8  :\  ^  :]    :^    :_    :`    :a  &  :b  N  :c  v  :d    :e    :f    :g    :h  >  :i  f  :j    :k    :l    :m    :n  .  :o  V  :p  ~  :q    :r    :s    :t    :u  F  :v  n  :w    :x    :y    :z    :{  4  :|  \  :}    :~    :    :    :  $  :  L  :  t  :    :    :    :    :  :  :  b  :    :    :    :    :  *  :  R  :  z  :    :    :    :    :  B  :  j  :    :    :    :  
  :  2  :  Z  :    :    :    :    :  "  :  H  :  n  :    :    :    :    :  4  :  \  :    :    :    :    :  $  :  L  :  t  :    :    :    :    :  3  :  [  :    :    :    :    :  #  :  K  :  r  :    :    :    :    :  8  :  `  :    :    :    :     :  (  :  O  :  w  :    :    :    :    :  ?  :  g  :    :    :    :    :    :  B  :  j  :    :    :    :      :   %  :   H  :   n  :     :     :     :  !  :  !,  :  !P  :  !w  :  !  :  !  :  !  :  "  :  "8  :  "`  :  "  :  "  :  "  :  "  :  #  :  #D  :  #k  :  #  :  #  :  #  :  $  :  $)  :  $Q  :  $y  :  $  :  $  :  $  :  %  :  %8  :  %^  ;   %  ;  %  ;  %  ;  %  ;  &  ;  &G  ;  &o  ;  &  ;  &  ;	  &  ;
  '  ;  '*  ;  'P  ;  'x  ;  '  ;  '  ;  '  ;  (  ;  (3  ;  (Y  ;  (~  ;  (  ;  (  ;  (  ;  )  ;  )?  ;  )e  ;  )  ;  )  ;  )  ;  *  ;  *(  ;   *P  ;!  *x  ;"  *  ;#  *  ;$  *  ;%  +  ;&  +8  ;'  +^  ;(  +  ;)  +  ;*  +  ;+  +  ;,  ,$  ;-  ,L  ;.  ,r  ;/  ,  ;0  ,  ;1  ,  ;2  -  ;3  -:  ;4  -b  ;5  -  ;6  -  ;7  -  ;8  .  ;9  .)  ;:  .Q  ;;  .y  ;<  .  ;=  .  ;>  .  ;?  /  ;@  /<  ;A  /d  ;B  /  ;C  /  ;D  /  ;E  0  ;F  0*  ;G  0Q  ;H  0y  ;I  0  ;J  0  ;K  0  ;L  1  ;M  1A  ;N  1i  ;O  1  ;P  1  ;Q  1  ;R  2  ;S  2-  ;T  2U  ;U  2}  ;V  2  ;W  2  ;X  2  ;Y  3  ;Z  3D  ;[  3l  ;\  3  ;]  3  ;^  3  ;_  4  ;`  44  ;a  4\  ;b  4  ;c  4  ;d  4  ;e  4  ;f  5  ;g  5F  ;h  5n  ;i  5  ;j  5  ;k  5  ;l  6  ;m  66  ;n  6^  ;o  6  ;p  6  ;q  6  ;r  6  ;s  7&  ;t  7N  ;u  7v  ;v  7  ;w  7  ;x  7  ;y  8  ;z  8<  ;{  8d  ;|  8  ;}  8  ;~  8  ;  9  ;  9,  ;  9T  ;  9|  ;  9  ;  9  ;  9  ;  :  ;  :D  ;  :l  ;  :  ;  :  ;  :  ;  ;  ;  ;4  ;  ;\  ;  ;  ;  ;  ;  ;  ;  ;  ;  <$  ;  <L  ;  <t  ;  <  ;  <  ;  <  ;  =  ;  =<  ;  =d  ;  =  ;  =  ;  =  ;  >  ;  >,  ;  >T  ;  >|  ;  >  ;  >  ;  >  ;  ?  ;  ?C  ;  ?k  ;  ?  ;  ?  ;  ?  ;  @  ;  @3  ;  @[  ;  @  ;  @  ;  @  ;  @  ;  A!  ;  AI  ;  Aq  ;  A  ;  A  ;  A  ;  B  ;  B9  ;  Ba  ;  B  ;  B  ;  B  ;  B  ;  C'  ;  CO  ;  Cw  ;  C  ;  C  ;  C  ;  D  ;  D?  ;  Dg  ;  D  ;  D  ;  D  ;  E  ;  E/  ;  EW  ;  E  ;  E  ;  E  ;  E  ;  F  ;  FG  ;  Fo  ;  F  ;  F  ;  F  ;  G  ;  G5  ;  G]  ;  G  ;  G  ;  G  ;  G  ;  H%  ;  HM  ;  Hu  ;  H  ;  H  ;  H  ;  I  ;  I=  ;  Ie  ;  I  ;  I  ;  I  ;  J  ;  J-  ;  JU  ;  J}  ;  J  ;  J  ;  J  ;  K  ;  KE  ;  Km  ;  K  ;  K  ;  K  ;  L  ;  L5  ;  L]  ;  L  ;  L  ;  L  ;  L  <   M%  <  MM  <  Mu  <  M  <  M  <  M  <  N  <  N=  <  Ne  <	  N  <
  N  <  N  <  O  <  O-  <  OU  <  O}  <  O  <  O  <  O  <  P  <  PE  <  Pm  <  P  <  P  <  P  <  Q  <  Q5  <  Q]  <  Q  <  Q  <  Q  <  Q  <   R  <!  RG  <"  Ro  <#  R  <$  R  <%  R  <&  S  <'  S7  <(  S_  <)  S  <*  S  <+  S  <,  S  <-  T'  <.  TO  </  Tw  <0  T  <1  T  <2  T  <3  U  <4  U=  <5  Ue  <6  U  <7  U  <8  U  <9  V  <:  V-  <;  VS  <<  V{  <=  V  <>  V  <?  V  <@  W  <A  WC  <B  Wi  <C  W  <D  W  <E  W  <F  X	  <G  X1  <H  XY  <I  X  <J  X  <K  X  <L  X  <M  Y!  <N  YI  <O  Yq  <P  Y  <Q  Y  <R  Y  <S  Z  <T  Z5  <U  Z[  <V  Z  <W  Z  <X  Z  <Y  Z  <Z  ["  <[  [G  <\  [l  <]  [  <^  [  <_  [  <`  \  <a  \3  <b  \[  <c  \  <d  \  <e  \  <f  \  <g  ]#  <h  ]K  <i  ]s  <j  ]  <k  ]  <l  ]  <m  ^  <n  ^9  <o  ^a  <p  ^  <q  ^  <r  ^  <s  _  <t  _)  <u  _Q  <v  _y  <w  _  <x  _  <y  _  <z  `  <{  `@  <|  `h  <}  `  <~  `  <  `  <  a  <  a*  <  aR  <  az  <  a  <  a  <  a  <  b  <  b@  <  bh  <  b  <  b  <  b  <  c  <  c-  <  cT  <  c|  <  c  <  c  <  c  <  d  <  dA  <  di  <  d  <  d  <  d  <  e  <  e,  <  eT  <  e|  <  e  <  e  <  e  <  f  <  fC  <  fk  <  f  <  f  <  f  <  g
  <  g2  <  gZ  <  g  <  g  <  g  <  g  <  h!  <  hI  <  hq  <  h  <  h  <  h  <  i  <  i9  <  ia  <  i  <  i  <  i  <  i  <  j$  <  jL  <  js  <  j  <  j  <  j  <  k  <  k7  <  k^  <  k  <  k  <  k  <  k  <  l%  <  lM  <  lr  <  l  <  l  <  l  <  m  <  m6  <  m^  <  m  <  m  <  m  <  m  <  n"  <  nG  <  no  <  n  <  n  <  n  <  o  <  o4  <  o\  <  o  <  o  <  o  <  o  <  p"  <  pJ  <  pq  <  p  <  p  <  p  <  q  <  q7  <  q^  <  q  <  q  <  q  <  q  <  r!  <  rI  <  rq  <  r  <  r  <  r  <  s  <  s5  <  s]  <  s  <  s  <  s  <  s  <  t#  <  tK  <  ts  <  t  =   t  =  t  =  u  =  u:  =  ub  =  u  =  u  =  u  =  v   =	  v(  =
  vO  =  vu  =  v  =  v  =  v  =  w  =  w:  =  wa  =  w  =  w  =  w  =  w  =  x&  =  xN  =  xu  =  x  =  x  =  x  =  y  =  y:  =  yb  =  y  =   y  =!  y  ="  y  =#  z$  =$  zL  =%  zt  =&  z  ='  z  =(  z  =)  {  =*  {8  =+  {`  =,  {  =-  {  =.  {  =/  {  =0  |#  =1  |K  =2  |s  =3  |  =4  |  =5  |  =6  }  =7  }9  =8  }a  =9  }  =:  }  =;  }  =<  }  ==  ~%  =>  ~L  =?  ~t  =@  ~  =A  ~  =B  ~  =C    =D  :  =E  b  =F    =G    =H    =I    =J  *  =K  Q  =L  v  =M    =N    =O    =P    =Q  =  =R  c  =S    =T    =U    =V    =W  +  =X  S  =Y  {  =Z    =[    =\    =]    =^  B  =_  j  =`    =a    =b    =c  	  =d  1  =e  X  =f    =g    =h    =i    =j    =k  G  =l  o  =m    =n    =o    =p    =q  5  =r  ]  =s    =t    =u    =v    =w  %  =x  M  =y  u  =z    ={    =|    =}    =~  :  =  b  =    =    =    =    =  (  =  N  =  v  =    =    =    =    =  =  =  e  =    =    =    =    =  ,  =  T  =  |  =    =    =    =    =  C  =  k  =    =    =    =    =  3  =  [  =    =    =    =    =     =  F  =  n  =    =    =    =    =  4  =  \  =    =    =    =    =  #  =  K  =  q  =    =    =    =    =  7  =  _  =    =    =    =    =  '  =  N  =  v  =    =    =    =    =  ;  =  c  =    =    =    =    =  +  =  S  =  {  =    =    =    =    =  C  =  k  =    =    =    =    =  -  =  U  =  }  =    =    =    =    =  E  =  m  =    =    =    =    =  4  =  [  =    =    =    =    =  "  =  J  =  r  =    =    =    =    =  8  =  `  =    =    =    =     =  (  =  P  =  x  =    =    =    =    =  @  >   h  >    >    >    >    >  0  >  X  >    >    >	    >
    >     >  H  >  p  >    >    >    >    >  8  >  _  >    >    >    >    >     >  H  >  p  >    >    >    >    >  6  >   ^  >!    >"    >#    >$    >%  &  >&  N  >'  q  >(    >)    >*    >+    >,  4  >-  \  >.    >/    >0    >1    >2  $  >3  L  >4  t  >5    >6    >7    >8    >9  9  >:  a  >;    ><    >=    >>    >?  )  >@  Q  >A  y  >B    >C    >D    >E    >F  @  >G  h  >H    >I    >J    >K    >L  0  >M  X  >N    >O    >P    >Q    >R     >S  H  >T  p  >U    >V    >W    >X    >Y  8  >Z  `  >[    >\    >]    >^     >_  (  >`  P  >a  x  >b    >c    >d    >e    >f  @  >g  e  >h    >i    >j    >k    >l  )  >m  Q  >n  y  >o    >p    >q    >r    >s  ?  >t  f  >u    >v    >w    >x    >y  +  >z  S  >{  {  >|    >}    >~    >    >  C  >  k  >    >    >    >    >  3  >  [  >    >    >    >    >  #  >  K  >  s  >    >    >    >    >  :  >  b  >    >    >    >    >  )  >  Q  >  y  >    >    >    >    >  @  >  h  >    >    >    >    >  /  >  W  >  }  >    >    >    >    >  ;  >  b  >    >    >    >    >  #  >  K  >  s  >    >    >    >    >  :  >  _  >    >    >    >    >    >  E  >  f  >    >    >    >    >  -  >  T  >  |  >    >    >    >    >  C  >  k  >    >    >    >  	  >  0  >  W  >  ~  >    >    >    >    >  D  >  i  >    >    >    >  	  >  1  >  Y  >    >    >    >    >     >  H  >  m  >    >    >    >    >  4  >  \  >    >    >    >    >  $  >  K  >  s  >    >    >    >    >  9  >  a  >  È  >  ð  >    ?     ?  %  ?  M  ?  t  ?  Ĝ  ?    ?    ?    ?  ;  ?	  b  ?
  Ō  ?  Ŵ  ?    ?    ?  ,  ?  T  ?  |  ?  Ƥ  ?    ?    ?    ?  D  ?  l  ?  ǔ  ?  ǻ  ?    ?  	  ?  1  ?  X  ?  Ȁ  ?  Ȩ  ?    ?     ?!    ?"  E  ?#  l  ?$  ɔ  ?%  ɸ  ?&    ?'    ?(  .  ?)  V  ?*  ~  ?+  ʦ  ?,    ?-    ?.    ?/  E  ?0  m  ?1  ˕  ?2  ˽  ?3    ?4    ?5  3  ?6  Z  ?7  ̂  ?8  ̪  ?9    ?:    ?;  "  ?<  J  ?=  q  ?>  ͙  ??    ?@    ?A    ?B  9  ?C  a  ?D  Ή  ?E  α  ?F    ?G    ?H  )  ?I  Q  ?J  v  ?K  Ϟ  ?L    ?M    ?N    ?O  >  ?P  f  ?Q  Ў  ?R  ж  ?S    ?T    ?U  .  ?V  T  ?W  x  ?X  ў  ?Y    ?Z    ?[    ?\  5  ?]  ]  ?^  ҃  ?_  Ң  ?`    ?a    ?b    ?c  >  ?d  f  ?e  ӌ  ?f  ӱ  ?g    ?h    ?i  (  ?j  P  ?k  x  ?l  Ԡ  ?m    ?n    ?o    ?p  >  ?q  e  ?r  Ս  ?s  յ  ?t    ?u    ?v  -  ?w  U  ?x  }  ?y  ֥  ?z    ?{    ?|    ?}  E  ?~  m  ?  ו  ?  ׽  ?    ?    ?  5  ?  ]  ?  ؅  ?  ح  ?    ?    ?  %  ?  M  ?  u  ?  ٝ  ?    ?    ?    ?  =  ?  e  ?  ڍ  ?  ڵ  ?    ?    ?  -  ?  U  ?  }  ?  ۥ  ?    ?    ?    ?  E  ?  m  ?  ܕ  ?  ܽ  ?    ?    ?  5  ?  ]  ?  ݅  ?  ݭ  ?    ?    ?  %  ?  M  ?  u  ?  ޝ  ?    ?    ?    ?  =  ?  e  ?  ߍ  ?  ߵ  ?    ?    ?  -  ?  U  ?  }  ?    ?    ?    ?    ?  E  ?  m  ?    ?    ?    ?    ?  5  ?  ]  ?    ?    ?    ?    ?  %  ?  M  ?  u  ?    ?    ?    ?    ?  =  ?  e  ?    ?    ?    ?    ?  -  ?  U  ?  }  ?    ?    ?    ?    ?  E  ?  i  ?    ?    ?    ?    ?  "  ?  F  ?  l  ?    ?    ?    ?    ?  ,  ?  T  ?  z  ?    ?    ?    ?    ?  B  ?  j  ?    ?    ?    ?  
  ?  2  ?  Z  ?    ?    ?    ?    ?    ?  C  ?  j  @     @    @    @    @  )  @  P  @  w  @    @    @	    @
    @  =  @  e  @    @    @    @     @  &  @  K  @  q  @    @    @    @    @  %  @  J  @  o  @    @    @    @    @  $  @   J  @!  k  @"    @#    @$    @%    @&  (  @'  N  @(  t  @)    @*    @+    @,    @-  1  @.  W  @/  }  @0    @1    @2    @3    @4  ;  @5  ^  @6    @7    @8    @9    @:    @;  B  @<  h  @=    @>    @?    @@    @A  (  @B  N  @C  t  @D    @E    @F    @G  	  @H  1  @I  Y  @J    @K    @L    @M    @N    @O  ?  @P  d  @Q    @R    @S    @T    @U    @V  D  @W  j  @X    @Y    @Z    @[    @\  #  @]  H  @^  p  @_    @`    @a    @b    @c  0  @d  V  @e  |  @f    @g    @h    @i    @j  9  @k  a  @l    @m    @n    @o    @p    @q  F  @r  l  @s    @t    @u    @v    @w  ,  @x  T  @y  |  @z    @{    @|    @}    @~  :  @  `  @    @    @    @     @  (  @  N  @  v  @    @    @    @     @   ;  @   c  @     @     @     @    @  '  @  O  @  w  @    @    @    @    @  ;  @  b  @    @    @    @    @  &  @  M  @  u  @    @    @    @    @  ;  @  b  @    @    @    @    @  '  @  O  @  v  @    @    @    @    @  >  @  f  @    @    @    @    @  ,  @  T  @  |  @    @    @    @    @  A  @  i  @    @    @    @  	  @  	,  @  	T  @  	|  @  	  @  	  @  	  @  
  @  
B  @  
g  @  
  @  
  @  
  @    @  +  @  R  @  z  @    @    @    @    @  ?  @  g  @    @    @    @    @  '  @  O  @  w  @    @    @    @    @  =  @  c  @    @    @    @    @  *  @  R  @  y  @    @    @    @    @  @  @  h  @    @    @    @    @  0  @  X  @    @    @    @    @     A   H  A  n  A    A    A    A  
  A  2  A  Z  A    A	    A
    A    A  "  A  J  A  r  A    A    A    A    A  :  A  b  A    A    A    A    A  *  A  R  A  z  A    A    A    A    A   B  A!  j  A"    A#    A$    A%  
  A&  2  A'  X  A(    A)    A*    A+    A,    A-  F  A.  n  A/    A0    A1    A2    A3  6  A4  ^  A5    A6    A7    A8    A9  "  A:  J  A;  r  A<    A=    A>    A?    A@  8  AA  `  AB    AC    AD    AE    AF  '  AG  O  AH  v  AI    AJ    AK    AL    AM  >  AN  f  AO    AP    AQ    AR    AS  .  AT  V  AU  ~  AV    AW    AX    AY     AZ   F  A[   n  A\     A]     A^     A_  !  A`  !6  Aa  !^  Ab  !  Ac  !  Ad  !  Ae  !  Af  "&  Ag  "N  Ah  "v  Ai  "  Aj  "  Ak  "  Al  #  Am  #>  An  #f  Ao  #  Ap  #  Aq  #  Ar  $  As  $.  At  $T  Au  $|  Av  $  Aw  $  Ax  $  Ay  %  Az  %D  A{  %l  A|  %  A}  %  A~  %  A  &  A  &3  A  &[  A  &  A  &  A  &  A  &  A  '!  A  'I  A  'q  A  '  A  '  A  '  A  (  A  (9  A  (a  A  (  A  (  A  (  A  )  A  ))  A  )Q  A  )y  A  )  A  )  A  )  A  *  A  *@  A  *h  A  *  A  *  A  *  A  +  A  +/  A  +V  A  +~  A  +  A  +  A  +  A  ,  A  ,F  A  ,n  A  ,  A  ,  A  ,  A  -  A  -6  A  -^  A  -  A  -  A  -  A  -  A  .&  A  .N  A  .v  A  .  A  .  A  .  A  /  A  />  A  /f  A  /  A  /  A  /  A  0  A  0.  A  0V  A  0~  A  0  A  0  A  0  A  1  A  1D  A  1l  A  1  A  1  A  1  A  2  A  21  A  2Y  A  2  A  2  A  2  A  2  A  3   A  3H  A  3p  A  3  A  3  A  3  A  4  A  46  A  4^  A  4  A  4  A  4  A  4  A  5%  A  5L  A  5t  A  5  A  5  A  5  A  6  A  6;  A  6c  A  6  A  6  A  6  A  7  A  7*  A  7R  A  7z  A  7  A  7  A  7  A  8  A  8A  A  8i  A  8  A  8  A  8  A  9  A  90  A  9W  A  9  A  9  A  9  A  9  B   :  B  :F  B  :n  B  :  B  :  B  :  B  ;  B  ;6  B  ;^  B	  ;  B
  ;  B  ;  B  ;  B  <&  B  <N  B  <v  B  <  B  <  B  <  B  =  B  =>  B  =f  B  =  B  =  B  =  B  >  B  >.  B  >V  B  >~  B  >  B  >  B  >  B   ?  B!  ?F  B"  ?n  B#  ?  B$  ?  B%  ?  B&  @  B'  @6  B(  @^  B)  @  B*  @  B+  @  B,  @  B-  A&  B.  AN  B/  Av  B0  A  B1  A  B2  A  B3  B  B4  B>  B5  Bf  B6  B  B7  B  B8  B  B9  C  B:  C.  B;  CV  B<  C~  B=  C  B>  C  B?  C  B@  D  BA  DF  BB  Dn  BC  D  BD  D  BE  D  BF  E  BG  E6  BH  E^  BI  E  BJ  E  BK  E  BL  E  BM  F&  BN  FN  BO  Fv  BP  F  BQ  F  BR  F  BS  G  BT  G>  BU  Gf  BV  G  BW  G  BX  G  BY  H  BZ  H.  B[  HV  B\  H~  B]  H  B^  H  B_  H  B`  I  Ba  IF  Bb  In  Bc  I  Bd  I  Be  I  Bf  J  Bg  J6  Bh  J^  Bi  J  Bj  J  Bk  J  Bl  J  Bm  K&  Bn  KN  Bo  Kv  Bp  K  Bq  K  Br  K  Bs  L  Bt  L>  Bu  Lf  Bv  L  Bw  L  Bx  L  By  M  Bz  M.  B{  MV  B|  M~  B}  M  B~  M  B  M  B  N  B  NF  B  Nn  B  N  B  N  B  N  B  O  B  O3  B  O[  B  O  B  O  B  O  B  O  B  P#  B  PK  B  Ps  B  P  B  P  B  P  B  Q  B  Q9  B  Qa  B  Q  B  Q  B  Q  B  R  B  R(  B  RP  B  Rx  B  R  B  R  B  R  B  S  B  S@  B  Sh  B  S  B  S  B  S  B  T  B  T0  B  TX  B  T  B  T  B  T  B  T  B  U   B  UH  B  Up  B  U  B  U  B  U  B  V  B  V8  B  V`  B  V  B  V  B  V  B  V  B  W'  B  WN  B  Wx  B  W  B  W  B  W  B  X  B  X=  B  Xe  B  X  B  X  B  X  B  Y  B  Y)  B  YQ  B  Yw  B  Y  B  Y  B  Y  B  Z  B  Z=  B  Zd  B  Z  B  Z  B  Z  B  [  B  [*  B  [Q  B  [w  B  [  B  [  B  [  B  \  B  \>  B  \f  B  \  B  \  B  \  B  ]  B  ]+  B  ]S  B  ]y  B  ]  B  ]  B  ]  B  ^  B  ^>  B  ^f  B  ^  B  ^  B  ^  B  _  B  _.  B  _U  B  _}  B  _  B  _  B  _  B  `  B  `E  B  `m  B  `  B  `  B  `  B  a  B  a5  B  a]  B  a  B  a  B  a  C   a  C  b$  C  bL  C  bt  C  b  C  b  C  b  C  c  C  c<  C	  cd  C
  c  C  c  C  c  C  d  C  d*  C  dP  C  dx  C  d  C  d  C  d  C  e  C  e<  C  ed  C  e  C  e  C  e  C  f  C  f)  C  fQ  C  fy  C  f  C  f  C   f  C!  g  C"  g@  C#  gh  C$  g  C%  g  C&  g  C'  h  C(  h0  C)  hX  C*  h  C+  h  C,  h  C-  h  C.  i   C/  iH  C0  ip  C1  i  C2  i  C3  i  C4  j  C5  j8  C6  j`  C7  j  C8  j  C9  j  C:  j  C;  k$  C<  kL  C=  kt  C>  k  C?  k  C@  k  CA  l  CB  l;  CC  lc  CD  l  CE  l  CF  l  CG  m  CH  m*  CI  mR  CJ  mz  CK  m  CL  m  CM  m  CN  n  CO  nA  CP  n`  CQ  n  CR  n  CS  n  CT  n  CU  o  CV  oB  CW  oe  CX  o  CY  o  CZ  o  C[  o  C\  p  C]  pD  C^  pl  C_  p  C`  p  Ca  p  Cb  q  Cc  q.  Cd  qV  Ce  q}  Cf  q  Cg  q  Ch  q  Ci  r  Cj  rB  Ck  rj  Cl  r  Cm  r  Cn  r  Co  s
  Cp  s2  Cq  sX  Cr  s  Cs  s  Ct  s  Cu  s  Cv  t   Cw  tH  Cx  tp  Cy  t  Cz  t  C{  t  C|  u  C}  u8  C~  u`  C  u  C  u  C  u  C  u  C  v"  C  vH  C  vm  C  v  C  v  C  v  C  w  C  w.  C  wV  C  w~  C  w  C  w  C  w  C  x  C  xB  C  xi  C  x  C  x  C  x  C  y	  C  y1  C  yY  C  y  C  y  C  y  C  y  C  z  C  zF  C  zl  C  z  C  z  C  z  C  {  C  {3  C  {[  C  {  C  {  C  {  C  {  C  |#  C  |K  C  |s  C  |  C  |  C  |  C  }  C  }9  C  }a  C  }  C  }  C  }  C  }  C  ~#  C  ~K  C  ~r  C  ~  C  ~  C  ~  C    C  6  C  ^  C    C    C    C    C  %  C  M  C  u  C    C    C    C    C  9  C  a  C    C    C    C    C    C  A  C  i  C    C    C    C    C  -  C  T  C  |  C    C    C    C    C  A  C  i  C    C    C    C    C  ,  C  T  C  |  C    C    C    C    C  A  C  i  C    C    C    C    C  /  C  W  C    C    C    C    C    C  C  C  j  C    C    C    C  
  C  2  D   Z  D    D    D    D    D    D  F  D  n  D    D	    D
    D    D  3  D  [  D    D    D    D    D  "  D  I  D  p  D    D    D    D    D  6  D  ^  D    D    D    D    D  "  D   J  D!  r  D"    D#    D$    D%    D&  5  D'  ]  D(    D)    D*    D+    D,  #  D-  K  D.  s  D/    D0    D1    D2    D3  9  D4  a  D5    D6    D7    D8    D9  %  D:  M  D;  t  D<    D=    D>    D?    D@  ;  DA  c  DB    DC    DD    DE    DF  +  DG  S  DH  {  DI    DJ    DK    DL    DM  C  DN  k  DO    DP    DQ    DR    DS  ,  DT  T  DU  |  DV    DW    DX    DY    DZ  B  D[  h  D\    D]    D^    D_    D`  /  Da  U  Db  }  Dc    Dd    De    Df    Dg  C  Dh  k  Di    Dj    Dk    Dl    Dm  3  Dn  [  Do    Dp    Dq    Dr    Ds  #  Dt  K  Du  s  Dv    Dw    Dx    Dy    Dz  ;  D{  c  D|    D}    D~    D    D  +  D  S  D  {  D    D    D    D    D  C  D  k  D    D    D    D    D  3  D  [  D    D    D    D    D    D  7  D  _  D    D    D    D    D  &  D  N  D  v  D    D    D    D    D  >  D  f  D    D    D    D    D  -  D  U  D  }  D    D    D    D    D  E  D  m  D    D    D    D    D  4  D  \  D    D    D    D    D  #  D  K  D  r  D    D    D    D    D  :  D  b  D    D    D    D    D  )  D  Q  D  y  D    D    D    D    D  A  D  i  D    D    D    D  	  D  1  D  Y  D    D    D    D    D     D  H  D  p  D    D    D    D    D  7  D  _  D    D    D    D    D  '  D  O  D  w  D    D    D    D    D  ?  D  g  D    D    D    D    D  /  D  W  D    D    D    D    D    D  G  D  o  D    D    D    E     E  7  E  _  E    E    E    E    E  '  E  O  E	  w  E
    E    E    E    E  ?  E  g  E    E    E    E    E  .  E  V  E  ~  E    E    E    E    E  F  E  n  E    E    E    E     E!  6  E"  ^  E#    E$    E%    E&    E'  &  E(  N  E)  v  E*    E+    E,    E-    E.  >  E/  f  E0    E1    E2    E3    E4  .  E5  V  E6  ~  E7    E8    E9    E:    E;  F  E<  n  E=    E>    E?    E@    EA  5  EB  ]  EC    ED    EE    EF    EG  %  EH  M  EI  u  EJ    EK    EL    EM    EN  =  EO  e  EP    EQ    ER    ES    ET  -  EU  U  EV  }  EW    EX    EY    EZ    E[  E  E\  m  E]    E^    E_    E`    Ea  5  Eb  ]  Ec    Ed    Ee    Ef    Eg  %  Eh  M  Ei  u  Ej    Ek    El    Em    En  =  Eo  e  Ep    Eq  µ  Er    Es    Et  -  Eu  U  Ev  }  Ew  å  Ex    Ey    Ez    E{  E  E|  m  E}  ĕ  E~  Ľ  E    E    E  5  E  ]  E  Ņ  E  ŭ  E    E    E  %  E  M  E  u  E  Ɲ  E    E    E    E  ;  E  a  E  ǉ  E  Ǳ  E    E    E  )  E  Q  E  y  E  ȡ  E    E    E    E  A  E  i  E  ɑ  E  ɵ  E    E    E  -  E  T  E  |  E  ʤ  E    E    E    E  ;  E  c  E  ˊ  E  ˰  E    E    E  &  E  L  E  t  E  ̜  E    E    E    E  8  E  _  E  ͇  E  ͯ  E    E    E  '  E  O  E  w  E  Λ  E    E    E    E  9  E  a  E  ω  E  ϱ  E    E    E  )  E  Q  E  w  E  П  E    E    E    E  =  E  e  E  э  E  Ѵ  E    E    E  *  E  R  E  z  E  Ң  E    E    E    E  A  E  i  E  ӏ  E  Ӷ  E    E    E  *  E  R  E  z  E  Ԣ  E    E    E    E  B  E  j  E  Ւ  E  պ  E    E    E  /  E  V  E  ~  E  ֦  E    E    E    E  D  E  l  E  ה  E  ׼  E    E    E  3  E  [  E  ؃  E  ث  F     F    F  #  F  K  F  r  F  ٘  F    F    F    F	  8  F
  `  F  ڈ  F  ڰ  F    F    F  &  F  N  F  v  F  ۞  F    F    F    F  >  F  f  F  ܎  F  ܶ  F    F    F  .  F  T  F  z  F  ݢ  F     F!    F"    F#  B  F$  j  F%  ޒ  F&  ޸  F'    F(    F)  0  F*  V  F+  ~  F,  ߦ  F-    F.    F/    F0  D  F1  l  F2    F3    F4    F5    F6  4  F7  \  F8    F9    F:    F;    F<  "  F=  J  F>  r  F?    F@    FA    FB    FC  :  FD  b  FE    FF    FG    FH    FI  *  FJ  R  FK  z  FL    FM    FN    FO    FP  B  FQ  j  FR    FS    FT    FU  
  FV  2  FW  Z  FX    FY    FZ    F[    F\  "  F]  J  F^  r  F_    F`    Fa    Fb    Fc  8  Fd  `  Fe    Ff    Fg    Fh     Fi  (  Fj  P  Fk  x  Fl    Fm    Fn    Fo    Fp  @  Fq  h  Fr    Fs    Ft    Fu    Fv  -  Fw  U  Fx  }  Fy    Fz    F{    F|    F}  C  F~  k  F    F    F    F  	  F  1  F  W  F  ~  F    F    F    F    F  E  F  m  F    F    F    F  
  F  2  F  Z  F    F    F    F    F     F  G  F  o  F    F    F    F    F  7  F  _  F    F    F    F    F  '  F  O  F  w  F    F    F    F    F  ?  F  g  F    F    F    F    F  -  F  R  F  z  F    F    F    F    F  >  F  f  F    F    F    F    F  (  F  P  F  w  F    F    F    F    F  ?  F  g  F    F    F    F    F  -  F  U  F  }  F    F    F    F    F  C  F  j  F    F    F    F    F  -  F  S  F  {  F    F    F    F    F  :  F  b  F    F    F    F    F  )  F  Q  F  y  F    F    F    F    F  ?  F  g  F    F    F    F    F  -  F  T  F  |  F    F    F    F    F  C  F  k  F    F    F    F   
  F   2  F   Z  G      G     G     G     G     G  H  G  p  G    G    G	    G
    G  8  G  `  G    G    G    G    G  '  G  O  G  w  G    G    G    G    G  >  G  f  G    G    G    G    G  -  G  U  G   }  G!    G"    G#    G$    G%  E  G&  j  G'    G(    G)    G*    G+  .  G,  Q  G-  w  G.    G/    G0    G1    G2  >  G3  f  G4    G5    G6    G7  	  G8  	*  G9  	Q  G:  	y  G;  	  G<  	  G=  	  G>  
  G?  
@  G@  
e  GA  
  GB  
  GC  
  GD    GE  *  GF  R  GG  z  GH    GI    GJ    GK    GL  A  GM  h  GN    GO    GP    GQ    GR  /  GS  W  GT    GU    GV    GW    GX    GY  G  GZ  o  G[    G\    G]    G^    G_  7  G`  _  Ga    Gb    Gc    Gd    Ge  '  Gf  O  Gg  w  Gh    Gi    Gj    Gk    Gl  6  Gm  ^  Gn    Go    Gp    Gq    Gr     Gs  G  Gt  o  Gu    Gv    Gw    Gx    Gy  5  Gz  ]  G{    G|    G}    G~    G    G  G  G  o  G    G    G    G    G  4  G  Z  G    G    G    G    G     G  H  G  p  G    G    G    G    G  5  G  ]  G    G    G    G    G  %  G  M  G  u  G    G    G    G    G  =  G  e  G    G    G    G    G  -  G  U  G  }  G    G    G    G    G  E  G  m  G    G    G    G    G  5  G  ]  G    G    G    G    G  %  G  M  G  u  G    G    G    G    G  =  G  e  G    G    G    G    G  -  G  U  G  }  G    G    G    G     G   E  G   m  G     G     G     G  !  G  !5  G  !\  G  !  G  !  G  !  G  !  G  "  G  "E  G  "l  G  "  G  "  G  "  G  #  G  #3  G  #[  G  #  G  #  G  #  G  #  G  $!  G  $I  G  $n  G  $  G  $  G  $  G  %  G  %2  G  %Z  G  %  G  %  G  %  G  %  G  &"  G  &I  G  &p  G  &  G  &  G  &  G  '  G  '7  G  '^  G  '  G  '  G  '  G  '  H   ($  H  (J  H  (q  H  (  H  (  H  (  H  )  H  )6  H  )]  H	  )  H
  )  H  )  H  )  H  *%  H  *L  H  *s  H  *  H  *  H  *  H  +  H  +:  H  +a  H  +  H  +  H  +  H  ,  H  ,)  H  ,Q  H  ,y  H  ,  H  ,  H  ,  H   -  H!  ->  H"  -f  H#  -  H$  -  H%  -  H&  .  H'  .,  H(  .S  H)  .{  H*  .  H+  .  H,  .  H-  /  H.  /C  H/  /k  H0  /  H1  /  H2  /  H3  0  H4  01  H5  0Y  H6  0  H7  0  H8  0  H9  0  H:  1!  H;  1I  H<  1q  H=  1  H>  1  H?  1  H@  2  HA  29  HB  2a  HC  2  HD  2  HE  2  HF  2  HG  3%  HH  3M  HI  3u  HJ  3  HK  3  HL  3  HM  4  HN  4=  HO  4e  HP  4  HQ  4  HR  4  HS  5  HT  5+  HU  5S  HV  5{  HW  5  HX  5  HY  5  HZ  6  H[  6C  H\  6k  H]  6  H^  6  H_  6  H`  7  Ha  73  Hb  7[  Hc  7  Hd  7  He  7  Hf  7  Hg  8#  Hh  8K  Hi  8s  Hj  8  Hk  8  Hl  8  Hm  9  Hn  9;  Ho  9c  Hp  9  Hq  9  Hr  9  Hs  :  Ht  :+  Hu  :S  Hv  :{  Hw  :  Hx  :  Hy  :  Hz  ;  H{  ;C  H|  ;k  H}  ;  H~  ;  H  ;  H  <  H  <3  H  <Y  H  <  H  <  H  <  H  <  H  =   H  =H  H  =p  H  =  H  =  H  =  H  >
  H  >1  H  >V  H  >}  H  >  H  >  H  >  H  ?  H  ?>  H  ?f  H  ?  H  ?  H  ?  H  @  H  @*  H  @O  H  @v  H  @  H  @  H  @  H  A  H  A7  H  A_  H  A  H  A  H  A  H  A  H  B$  H  BL  H  Bs  H  B  H  B  H  B  H  C  H  C:  H  Cb  H  C  H  C  H  C  H  C  H  D$  H  DI  H  Do  H  D  H  D  H  D  H  E  H  E+  H  ES  H  E{  H  E  H  E  H  E  H  F  H  F<  H  Fb  H  F  H  F  H  F  H  F  H  G!  H  GG  H  Gm  H  G  H  G  H  G  H  H  H  H5  H  HZ  H  H  H  H  H  H  H  H  H  I  H  IB  H  Ij  H  I  H  I  H  I  H  J
  H  J2  H  JY  H  J  H  J  H  J  H  J  H  K  H  KG  H  Ko  H  K  H  K  H  K  H  L  H  L5  H  L]  H  L  H  L  H  L  H  L  H  M$  H  MK  H  Mq  H  M  H  M  H  M  H  N  H  N4  H  N\  H  N  H  N  H  N  H  N  H  O!  H  OI  H  Oq  I   O  I  O  I  O  I  P  I  P8  I  P_  I  P  I  P  I  P  I	  P  I
  Q'  I  QO  I  Qw  I  Q  I  Q  I  Q  I  R  I  R>  I  Rf  I  R  I  R  I  R  I  S  I  S.  I  SV  I  S~  I  S  I  S  I  S  I  T  I  TC  I  Tk  I   T  I!  T  I"  T  I#  U	  I$  U1  I%  UY  I&  U  I'  U  I(  U  I)  U  I*  V  I+  VG  I,  Vo  I-  V  I.  V  I/  V  I0  W  I1  W6  I2  W^  I3  W  I4  W  I5  W  I6  W  I7  X&  I8  XN  I9  Xv  I:  X  I;  X  I<  X  I=  Y  I>  Y<  I?  Yd  I@  Y  IA  Y  IB  Y  IC  Z  ID  Z,  IE  ZT  IF  Z|  IG  Z  IH  Z  II  Z  IJ  [  IK  [D  IL  [l  IM  [  IN  [  IO  [  IP  \  IQ  \4  IR  \\  IS  \  IT  \  IU  \  IV  \  IW  ]$  IX  ]L  IY  ]t  IZ  ]  I[  ]  I\  ]  I]  ^  I^  ^<  I_  ^d  I`  ^  Ia  ^  Ib  ^  Ic  _  Id  _,  Ie  _T  If  _|  Ig  _  Ih  _  Ii  _  Ij  `  Ik  `D  Il  `l  Im  `  In  `  Io  `  Ip  a  Iq  a4  Ir  a\  Is  a  It  a  Iu  a  Iv  a  Iw  b$  Ix  bL  Iy  bv  Iz  b  I{  b  I|  b  I}  c  I~  c<  I  cd  I  c  I  c  I  c  I  d   I  d(  I  dP  I  dx  I  d  I  d  I  d  I  e  I  e<  I  ed  I  e  I  e  I  e  I  e  I  f  I  f9  I  f]  I  f  I  f  I  f  I  f  I  g  I  g5  I  gY  I  g}  I  g  I  g  I  g  I  h  I  h1  I  hU  I  hy  I  h  I  h  I  h  I  i	  I  i-  I  iQ  I  iu  I  i  I  i  I  i  I  j  I  j)  I  jM  I  jq  I  j  I  j  I  j  I  k  I  k%  I  kI  I  km  I  k  I  k  I  k  I  l   I  l%  I  lK  I  lp  I  l  I  l  I  l  I  m  I  m'  I  mJ  I  mp  I  m  I  m  I  m  I  n  I  n,  I  nR  I  nw  I  n  I  n  I  n  I  o  I  o4  I  oZ  I  o  I  o  I  o  I  o  I  p  I  p;  I  pa  I  p  I  p  I  p  I  p  I  q  I  qD  I  qj  I  q  I  q  I  q  I  r   I  r&  I  rL  I  rr  I  r  I  r  I  r  I  s
  I  s0  I  sV  I  s|  I  s  I  s  I  s  I  t  I  t@  I  th  I  t  I  t  I  t  I  u  I  u0  I  uX  I  u  I  u  I  u  I  u  I  v   J   vH  J  vp  J  v  J  v  J  v  J  w  J  w6  J  w^  J  w  J	  w  J
  w  J  w  J  x%  J  xL  J  xt  J  x  J  x  J  x  J  y  J  y<  J  yd  J  y  J  y  J  y  J  z  J  z+  J  zS  J  zz  J  z  J  z  J  z  J  {  J   {B  J!  {j  J"  {  J#  {  J$  {  J%  |
  J&  |2  J'  |Z  J(  |  J)  |  J*  |  J+  |  J,  }!  J-  }I  J.  }o  J/  }  J0  }  J1  }  J2  ~  J3  ~7  J4  ~_  J5  ~  J6  ~  J7  ~  J8  ~  J9  '  J:  O  J;  w  J<    J=    J>    J?    J@  9  JA  ]  JB    JC    JD    JE    JF  #  JG  K  JH  s  JI    JJ    JK    JL    JM  ;  JN  c  JO    JP    JQ    JR    JS  +  JT  S  JU  {  JV    JW    JX    JY    JZ  A  J[  i  J\    J]    J^    J_    J`  /  Ja  W  Jb    Jc    Jd    Je    Jf    Jg  G  Jh  o  Ji    Jj    Jk    Jl    Jm  7  Jn  _  Jo    Jp    Jq    Jr    Js  '  Jt  O  Ju  w  Jv    Jw    Jx    Jy    Jz  ?  J{  g  J|    J}    J~    J    J  /  J  W  J    J    J    J    J    J  G  J  o  J    J    J    J    J  7  J  _  J    J    J    J    J  '  J  M  J  u  J    J    J    J    J  =  J  e  J    J    J    J    J  ,  J  T  J  |  J    J    J    J    J  B  J  j  J    J    J    J    J  0  J  X  J    J    J    J    J    J  E  J  m  J    J    J    J    J  /  J  W  J    J    J    J    J    J  A  J  g  J    J    J    J    J  .  J  V  J  ~  J    J    J    J    J  E  J  l  J    J    J    J  	  J  1  J  Y  J    J    J    J    J    J  B  J  j  J    J    J    J  	  J  1  J  Y  J    J    J    J    J     J  H  J  p  J    J    J    J    J  7  J  ^  J    J    J    J    J  "  J  J  J  r  J    J    J    J    J  3  J  X  J    J    J    K     K    K  B  K  j  K    K    K    K  	  K  1  K	  V  K
  ~  K    K    K    K    K  E  K  l  K    K    K    K  
  K  2  K  Y  K    K    K    K    K    K  E  K  m  K    K    K     K!    K"  3  K#  Y  K$    K%    K&    K'    K(     K)  H  K*  o  K+    K,    K-    K.    K/  6  K0  ^  K1    K2    K3    K4    K5  $  K6  L  K7  t  K8    K9    K:    K;    K<  <  K=  d  K>    K?    K@    KA    KB  ,  KC  T  KD  |  KE    KF    KG    KH    KI  @  KJ  h  KK    KL    KM    KN    KO  0  KP  X  KQ    KR    KS    KT    KU     KV  H  KW  p  KX    KY    KZ    K[    K\  8  K]  `  K^    K_    K`    Ka     Kb  (  Kc  P  Kd  x  Ke    Kf    Kg    Kh    Ki  @  Kj  h  Kk    Kl    Km    Kn    Ko  ,  Kp  R  Kq  z  Kr    Ks    Kt    Ku    Kv  >  Kw  e  Kx    Ky    Kz    K{    K|  ,  K}  S  K~  {  K    K    K    K    K  C  K  k  K    K    K    K  
  K  2  K  Z  K    K    K    K    K  "  K  I  K  p  K    K    K    K    K  7  K  _  K    K    K    K    K  &  K  N  K  u  K    K    K    K    K  <  K  c  K    K    K    K    K  *  K  Q  K  y  K    K    K    K    K  A  K  i  K    K    K    K    K  0  K  X  K    K    K    K    K    K  G  K  o  K    K    K    K    K  7  K  _  K    K    K    K    K  "  K  J  K  q  K    K    K    K    K  8  K  `  K    K    K    K     K  '  K  O  K  w  K    K    K    K    K  <  K  d  K    K    K    K    K  '  K  O  K  w  K    K    K    K    K  >  K  f  K    K  ¶  K    K    K  .  K  V  K  ~  K  æ  K    K    K    K  E  K  m  K  ĕ  K  Ľ  K    K    K  5  K  ]  K  Ņ  L   ŭ  L    L    L  %  L  M  L  s  L  ƛ  L    L    L	    L
  8  L  `  L  Ǌ  L  ǲ  L    L    L  *  L  O  L  w  L  ȟ  L    L    L    L  ?  L  g  L  ɏ  L  ɷ  L    L    L  -  L  U  L  }  L   ʥ  L!    L"    L#    L$  C  L%  k  L&  ˓  L'  ˻  L(    L)  	  L*  1  L+  Y  L,  ̀  L-  ̧  L.    L/    L0    L1  F  L2  n  L3  ͖  L4  ;  L5    L6    L7  2  L8  Z  L9  ΁  L:  Ω  L;    L<    L=  !  L>  I  L?  p  L@  ϗ  LA  Ͽ  LB    LC    LD  9  LE  a  LF  Љ  LG  б  LH    LI     LJ  '  LK  O  LL  w  LM  ў  LN    LO    LP    LQ  ;  LR  c  LS  ҋ  LT  ҳ  LU    LV    LW  +  LX  S  LY  w  LZ  ӟ  L[    L\    L]    L^  ?  L_  g  L`  ԏ  La  Է  Lb    Lc    Ld  /  Le  W  Lf  }  Lg  ե  Lh    Li    Lj    Lk  E  Ll  i  Lm  ֑  Ln  ֹ  Lo    Lp  	  Lq  0  Lr  X  Ls  ׀  Lt  ר  Lu    Lv    Lw    Lx  F  Ly  n  Lz  ؕ  L{  ؼ  L|    L}    L~  4  L  \  L  ل  L  ٬  L    L    L  $  L  L  L  t  L  ڛ  L    L    L    L  :  L  b  L  ۊ  L  ۲  L    L    L  *  L  R  L  z  L  ܢ  L    L    L    L  B  L  j  L  ݒ  L  ݺ  L    L  
  L  2  L  Z  L  ނ  L  ު  L    L    L  "  L  J  L  r  L  ߚ  L    L    L    L  8  L  `  L    L    L    L     L  (  L  P  L  x  L    L    L    L    L  >  L  f  L    L    L    L    L  .  L  U  L  }  L    L    L    L    L  C  L  k  L    L    L    L  	  L  1  L  Y  L    L    L    L    L  !  L  I  L  q  L    L    L    L    L  5  L  ]  L    L    L    L    L  %  L  M  L  u  L    L    L    L    L  =  L  e  L    L    L    L    L  -  L  U  L  }  L    L    L    L    L  E  L  m  L    L    L    L    L  5  L  ]  L    L    L    L    L  %  L  M  M   u  M    M    M    M    M  =  M  e  M    M    M	    M
    M  -  M  U  M  }  M    M    M    M    M  B  M  j  M    M    M    M    M  0  M  X  M    M    M    M    M     M  H  M   p  M!    M"    M#    M$    M%  7  M&  _  M'    M(    M)    M*    M+  '  M,  O  M-  w  M.    M/    M0    M1    M2  ?  M3  g  M4    M5    M6    M7    M8  /  M9  W  M:    M;    M<    M=    M>    M?  G  M@  o  MA    MB    MC    MD    ME  7  MF  _  MG    MH    MI    MJ    MK  '  ML  O  MM  w  MN    MO    MP    MQ    MR  =  MS  c  MT    MU    MV    MW    MX  )  MY  Q  MZ  y  M[    M\    M]    M^    M_  ?  M`  f  Ma    Mb    Mc    Md    Me  *  Mf  R  Mg  y  Mh    Mi    Mj    Mk    Ml  @  Mm  h  Mn    Mo    Mp    Mq    Mr  /  Ms  W  Mt    Mu    Mv    Mw    Mx     My   F  Mz   n  M{     M|     M}     M~    M  6  M  ^  M    M    M    M    M  $  M  L  M  t  M    M    M    M    M  <  M  d  M    M    M    M    M  *  M  R  M  z  M    M    M    M    M  B  M  j  M    M    M    M    M  0  M  V  M  |  M    M    M    M    M  D  M  l  M    M    M    M    M  4  M  [  M    M    M    M    M  	#  M  	K  M  	s  M  	  M  	  M  	  M  	  M  
  M  
  M  
,  M  
A  M  
V  M  
k  M  
  M  
  M  
  M  
  M  
  M    M  !  M  =  M  Y  M  u  M    M    M    M    M    M    M  9  M  U  M  q  M    M    M    M    M    M    M  5  M  Q  M  m  M    M    M    M    M    M    M  1  M  M  M  i  M    M    M    M    M    M    M  -  M  I  M  e  M    M    M    M    M    M    M  )  M  E  M  a  M  }  M    M    M    M    M  	  M  %  M  A  M  ]  M  y  N     N    N    N    N    N  7  N  ^  N  }  N    N	    N
    N    N  9  N  `  N    N    N    N    N    N  C  N  k  N    N    N    N    N  +  N  R  N  y  N    N    N    N    N   7  N!  ^  N"    N#    N$    N%    N&  "  N'  I  N(  q  N)  }  N*    N+    N,    N-    N.    N/  7  N0  [  N1    N2    N3    N4    N5    N6  ?  N7  M  N8  a  N9    N:    N;    N<    N=  #  N>  J  N?  r  N@    NA    NB    NC    ND    NE  -  NF  U  NG  }  NH    NI    NJ    NK    NL  +  NM  O  NN  w  NO    NP    NQ    NR    NS  :  NT  b  NU    NV    NW    NX    NY  *  NZ  K  N[  j  N\  {  N]    N^    N_    N`    Na  3  Nb  W  Nc  |  Nd    Ne    Nf    Ng     Nh   8  Ni   `  Nj     Nk     Nl     Nm     Nn  !  No  !?  Np  !g  Nq  !  Nr  !  Ns  !  Nt  "  Nu  "+  Nv  "S  Nw  "w  Nx  "  Ny  "  Nz  "  N{  #  N|  #:  N}  #`  N~  #  N  #  N  #  N  #  N  $$  N  $L  N  $t  N  $  N  $  N  $  N  $  N  %  N  %>  N  %f  N  %  N  %  N  %  N  %  N  &   N  &G  N  &n  N  &  N  &  N  &  N  '  N  '*  N  'Q  N  'v  N  '  N  '  N  '  N  (  N  (3  N  (X  N  (}  N  (  N  (  N  (  N  )  N  ).  N  )R  N  )z  N  )  N  )  N  )  N  *  N  *B  N  *j  N  *  N  *  N  *  N  +
  N  +2  N  +Z  N  +  N  +  N  +  N  +  N  ,"  N  ,J  N  ,r  N  ,  N  ,  N  ,  N  ,  N  -  N  -E  N  -m  N  -  N  -  N  -  N  .
  N  .2  N  .X  N  .  N  .  N  .  N  .  N  /   N  /H  N  /n  N  /  N  /  N  /  N  0  N  02  N  0Y  N  0  N  0  N  0  N  0  N  1!  N  1G  N  1o  N  1  N  1  N  1  N  2  N  24  N  2\  N  2  N  2  N  2  N  2  N  3  N  3F  N  3n  N  3  N  3  N  3  N  4  N  44  N  4\  N  4  N  4  N  4  N  4  N  5   N  5H  N  5n  N  5  N  5  N  5  N  6  N  66  N  6]  N  6  N  6  N  6  N  6  O   7%  O  7M  O  7t  O  7  O  7  O  7  O  8  O  8:  O  8b  O	  8  O
  8  O  8  O  9  O  9*  O  9R  O  9z  O  9  O  9  O  9  O  :  O  :B  O  :j  O  :  O  :  O  :  O  ;
  O  ;2  O  ;Z  O  ;  O  ;  O  ;  O  ;  O   <"  O!  <J  O"  <r  O#  <  O$  <  O%  <  O&  =  O'  =:  O(  =b  O)  =  O*  =  O+  =  O,  =  O-  >&  O.  >N  O/  >v  O0  >  O1  >  O2  >  O3  ?  O4  ?<  O5  ?d  O6  ?  O7  ?  O8  ?  O9  ?  O:  @&  O;  @L  O<  @t  O=  @  O>  @  O?  @  O@  A  OA  A8  OB  A^  OC  A  OD  A  OE  A  OF  A  OG  B$  OH  BL  OI  Bt  OJ  B  OK  B  OL  B  OM  C  ON  C:  OO  Cb  OP  C  OQ  C  OR  C  OS  D  OT  D*  OU  DR  OV  Dz  OW  D  OX  D  OY  D  OZ  E  O[  EB  O\  Ej  O]  E  O^  E  O_  E  O`  F  Oa  F0  Ob  FX  Oc  F  Od  F  Oe  F  Of  F  Og  G  Oh  GE  Oi  Gm  Oj  G  Ok  G  Ol  G  Om  H  On  H3  Oo  H[  Op  H  Oq  H  Or  H  Os  H  Ot  I!  Ou  II  Ov  Iq  Ow  I  Ox  I  Oy  I  Oz  J  O{  J9  O|  Ja  O}  J  O~  J  O  J  O  K  O  K'  O  KO  O  Kw  O  K  O  K  O  K  O  L  O  L?  O  Le  O  L  O  L  O  L  O  M  O  M+  O  MS  O  M{  O  M  O  M  O  M  O  N  O  NC  O  Ni  O  N  O  N  O  N  O  O  O  O-  O  OU  O  O}  O  O  O  O  O  O  O  P  O  PE  O  Pm  O  P  O  P  O  P  O  Q  O  Q1  O  QY  O  Q  O  Q  O  Q  O  Q  O  R!  O  RI  O  Rq  O  R  O  R  O  R  O  S  O  S9  O  Sa  O  S  O  S  O  S  O  S  O  T%  O  TM  O  Tu  O  T  O  T  O  T  O  U  O  U;  O  Uc  O  U  O  U  O  U  O  V  O  V+  O  VS  O  V{  O  V  O  V  O  V  O  W  O  WB  O  Wf  O  W  O  W  O  W  O  X  O  X*  O  XR  O  Xx  O  X  O  X  O  X  O  Y  O  Y@  O  Yh  O  Y  O  Y  O  Y  O  Z  O  Z0  O  ZX  O  Z  O  Z  O  Z  O  Z  O  [   O  [H  O  [p  O  [  O  [  O  [  O  \  O  \8  O  \`  O  \  O  \  O  \  O  ]   O  ]&  O  ]N  O  ]v  O  ]  O  ]  O  ]  O  ^  O  ^>  O  ^f  O  ^  O  ^  P   ^  P  _  P  _.  P  _V  P  _~  P  _  P  _  P  _  P  `  P	  `D  P
  `l  P  `  P  `  P  `  P  a
  P  a2  P  aZ  P  a  P  a  P  a  P  a  P  b  P  bD  P  bl  P  b  P  b  P  b  P  c  P  c0  P  cV  P  c~  P  c  P   c  P!  c  P"  d  P#  dD  P$  dl  P%  d  P&  d  P'  d  P(  e  P)  e4  P*  e\  P+  e  P,  e  P-  e  P.  e  P/  f$  P0  fL  P1  ft  P2  f  P3  f  P4  f  P5  g  P6  g<  P7  gd  P8  g  P9  g  P:  g  P;  h  P<  h,  P=  hT  P>  h|  P?  h  P@  h  PA  h  PB  i  PC  iD  PD  il  PE  i  PF  i  PG  i  PH  j  PI  j2  PJ  jZ  PK  j  PL  j  PM  j  PN  j  PO  k"  PP  kH  PQ  kp  PR  k  PS  k  PT  k  PU  l  PV  l8  PW  l`  PX  l  PY  l  PZ  l  P[  l  P\  m&  P]  mN  P^  mv  P_  m  P`  m  Pa  m  Pb  n  Pc  n<  Pd  nd  Pe  n  Pf  n  Pg  n  Ph  o  Pi  o,  Pj  oT  Pk  oz  Pl  o  Pm  o  Pn  o  Po  p  Pp  pB  Pq  pj  Pr  p  Ps  p  Pt  p  Pu  q
  Pv  q2  Pw  qZ  Px  q  Py  q  Pz  q  P{  q  P|  r"  P}  rJ  P~  rr  P  r  P  r  P  r  P  s  P  s:  P  sb  P  s  P  s  P  s  P  t  P  t*  P  tR  P  tx  P  t  P  t  P  t  P  u  P  u>  P  uf  P  u  P  u  P  u  P  v  P  v.  P  vV  P  v~  P  v  P  v  P  v  P  w  P  wF  P  wl  P  w  P  w  P  w  P  x  P  x4  P  x\  P  x  P  x  P  x  P  x  P  y$  P  yL  P  yt  P  y  P  y  P  y  P  z  P  z<  P  zb  P  z  P  z  P  z  P  {  P  {*  P  {R  P  {z  P  {  P  {  P  {  P  |  P  |B  P  |j  P  |  P  |  P  |  P  }
  P  }2  P  }Z  P  }  P  }  P  }  P  }  P  ~"  P  ~J  P  ~r  P  ~  P  ~  P  ~  P    P  :  P  b  P    P    P    P    P  *  P  R  P  z  P    P    P    P    P  B  P  j  P    P    P    P  
  P  2  P  Z  P    P    P    P    P  "  P  J  P  r  P    P    P    P    P  :  P  b  P    P    P    P     P  (  P  P  P  x  P    P    P    P    P  @  P  h  P    Q     Q    Q    Q  /  Q  W  Q    Q    Q    Q    Q	    Q
  G  Q  o  Q    Q    Q    Q    Q  7  Q  _  Q    Q    Q    Q    Q  '  Q  O  Q  w  Q    Q    Q    Q    Q  ?  Q  g  Q    Q     Q!    Q"    Q#  /  Q$  W  Q%    Q&    Q'    Q(    Q)    Q*  G  Q+  o  Q,    Q-    Q.    Q/    Q0  7  Q1  _  Q2    Q3    Q4    Q5    Q6  '  Q7  O  Q8  w  Q9    Q:    Q;    Q<    Q=  ?  Q>  g  Q?    Q@    QA    QB    QC  ,  QD  S  QE  z  QF    QG    QH    QI    QJ  <  QK  d  QL    QM    QN    QO    QP  ,  QQ  O  QR  s  QS    QT    QU    QV    QW  4  QX  \  QY    QZ    Q[    Q\    Q]     Q^  H  Q_  p  Q`    Qa    Qb    Qc    Qd  8  Qe  `  Qf    Qg    Qh    Qi    Qj    Qk  G  Ql  l  Qm    Qn    Qo    Qp    Qq  +  Qr  Q  Qs  x  Qt    Qu    Qv    Qw    Qx  ?  Qy  g  Qz    Q{    Q|    Q}    Q~  /  Q  W  Q    Q    Q    Q    Q    Q  <  Q  `  Q    Q    Q    Q    Q    Q  @  Q  g  Q    Q    Q    Q    Q    Q  2  Q  Z  Q    Q    Q    Q    Q    Q  %  Q  J  Q  q  Q    Q    Q    Q  
  Q  1  Q  X  Q    Q    Q    Q    Q    Q  @  Q  g  Q    Q    Q    Q    Q    Q  >  Q  c  Q    Q    Q    Q    Q  %  Q  L  Q  r  Q    Q    Q    Q    Q  9  Q  a  Q    Q    Q    Q    Q  '  Q  O  Q  w  Q    Q    Q    Q    Q  <  Q  d  Q    Q    Q    Q    Q  (  Q  P  Q  u  Q    Q    Q    Q    Q  8  Q  `  Q    Q    Q    Q    Q  '  Q  O  Q  w  Q    Q    Q    Q    Q  =  Q  e  Q    Q    Q    Q    Q  )  Q  P  Q  w  Q    Q    Q    Q    Q  =  Q  d  Q    Q    Q    Q    Q     Q  C  Q  g  Q    Q    Q    Q    Q    Q  @  Q  c  R     R    R    R    R     R  '  R  N  R  v  R    R	    R
    R    R  4  R  Z  R  ~  R    R    R    R    R  <  R  b  R    R    R    R    R    R  E  R  i  R    R    R    R    R   )  R!  Q  R"  w  R#    R$    R%    R&    R'  3  R(  Y  R)    R*    R+    R,    R-    R.  =  R/  c  R0    R1    R2    R3    R4  #  R5  I  R6  o  R7    R8    R9    R:    R;  1  R<  W  R=  }  R>    R?    R@    RA    RB  9  RC  _  RD    RE    RF    RG    RH    RI  ;  RJ  a  RK    RL    RM    RN    RO  !  RP  G  RQ  m  RR    RS    RT    RU    RV  -  RW  S  RX  y  RY    RZ    R[    R\    R]  ;  R^  a  R_    R`    Ra    Rb    Rc    Rd  E  Re  k  Rf    Rg    Rh    Ri    Rj  +  Rk  S  Rl  {  Rm    Rn    Ro    Rp    Rq  ;  Rr  c  Rs    Rt    Ru    Rv    Rw  !  Rx  G  Ry  m  Rz    R{    R|    R}  	  R~  1  R  W  R  }  R    R    R    R    R  ?  R  e  R    R    R    R    R  +  R  Q  R  y  R    R    R    R    R  ;  R  c  R  Ë  R  ó  R    R    R  )  R  Q  R  y  R  ġ  R    R    R    R  7  R  ]  R  Ń  R  ū  R    R    R    R  C  R  i  R  Ə  R  Ƶ  R    R    R  )  R  O  R  u  R  Ǜ  R    R    R    R  3  R  [  R  ȃ  R  ȫ  R    R    R    R  A  R  i  R  ɏ  R  ɵ  R    R    R  '  R  M  R  s  R  ʙ  R  ʿ  R    R    R  1  R  S  R  y  R  ˡ  R    R    R    R  =  R  c  R  ̉  R  ̯  R    R    R  !  R  G  R  m  R  ͓  R  ͹  R    R    R  /  R  S  R  y  R  Ρ  R    R    R    R  =  R  e  R  ύ  R  ϳ  R    R    R  #  R  I  R  o  R  З  R  п  R    R    R  7  R  ]  R  х  R  ѭ  R    R    R  #  R  K  R  s  R  қ  R    R    R    R  1  R  W  R  {  R  ӟ  S     S    S    S  9  S  _  S  ԅ  S  Ԫ  S    S    S	    S
  @  S  f  S  Ռ  S  ղ  S    S    S  &  S  L  S  r  S  ֘  S  ־  S    S    S  +  S  S  S  y  S  נ  S    S    S  	  S  ,  S  O  S   r  S!  ؕ  S"  ظ  S#    S$    S%  !  S&  D  S'  g  S(  ي  S)  ٭  S*    S+    S,    S-  <  S.  _  S/  ڂ  S0  ڥ  S1    S2    S3    S4  :  S5  `  S6  ۆ  S7  ۫  S8    S9    S:    S;  7  S<  Z  S=  }  S>  ܣ  S?    S@    SA    SB  4  SC  [  SD  ݃  SE  ݫ  SF    SG    SH  #  SI  K  SJ  s  SK  ޛ  SL    SM    SN    SO  7  SP  _  SQ  ߄  SR  ߬  SS    ST    SU  $  SV  L  SW  t  SX    SY    SZ    S[    S\  <  S]  R  S^  z  S_    S`    Sa    Sb    Sc  8  Sd  \  Se    Sf    Sg    Sh    Si    Sj  ,  Sk  D  Sl  i  Sm    Sn    So    Sp    Sq    Sr  D  Ss  g  St    Su    Sv    Sw    Sx  "  Sy  H  Sz  n  S{    S|    S}    S~    S  -  S  S  S  y  S    S    S    S    S  <  S  c  S    S    S    S    S  &  S  M  S  t  S    S    S    S    S  7  S  ^  S    S    S    S    S  !  S  H  S  o  S    S    S    S    S  2  S  Y  S    S    S    S    S    S  D  S  k  S    S    S    S    S  /  S  V  S  }  S    S    S    S    S  A  S  i  S    S    S    S    S  )  S  Q  S  y  S    S    S    S    S  8  S  _  S    S    S    S    S  &  S  N  S  u  S    S    S    S    S  8  S  ^  S    S    S    S    S  #  S  K  S  r  S    S    S    S    S  4  S  \  S    S    S    S    S  #  S  K  S  s  S    S    S    S    S    S  @  S  c  S    S    S    S    S    S  :  S  ^  S    S    S    S    S    S  D  S  k  S    S    S    S    S    S  C  S  b  T     T    T    T    T    T  C  T  a  T    T    T	    T
    T    T  A  T  b  T    T    T    T    T    T  D  T  i  T    T    T    T    T    T  A  T  f  T    T    T    T    T   %  T!  K  T"  p  T#    T$    T%    T&    T'  -  T(  P  T)  u  T*    T+    T,    T-     T.   5  T/   [  T0     T1     T2     T3     T4    T5  ?  T6  e  T7    T8    T9    T:    T;  #  T<  G  T=  m  T>    T?    T@    TA    TB  +  TC  J  TD  o  TE    TF    TG    TH    TI  0  TJ  W  TK    TL    TM    TN    TO    TP  7  TQ  [  TR    TS    TT    TU    TV    TW  ;  TX  `  TY    TZ    T[    T\    T]    T^  =  T_  `  T`    Ta    Tb    Tc    Td    Te  @  Tf  f  Tg    Th    Ti    Tj    Tk  	  Tl  	C  Tm  	d  Tn  	  To  	  Tp  	  Tq  	  Tr  
  Ts  
D  Tt  
j  Tu  
  Tv  
  Tw  
  Tx  
  Ty  !  Tz  G  T{  l  T|    T}    T~    T    T  "  T  E  T  k  T    T    T    T    T  '  T  J  T  p  T    T    T    T    T  .  T  V  T  |  T    T    T    T    T  8  T  ^  T    T    T    T    T    T  A  T  f  T    T    T    T    T  !  T  H  T  n  T    T    T    T    T  -  T  S  T  y  T    T    T    T    T  :  T  ^  T    T    T    T    T    T  B  T  h  T    T    T    T    T  "  T  G  T  l  T    T    T    T    T  '  T  M  T  s  T    T    T    T    T  6  T  [  T    T    T    T    T    T  8  T  ]  T    T    T    T    T    T  ?  T  e  T    T    T    T     T  &  T  L  T  r  T    T    T    T    T  &  T  N  T  t  T    T    T    T    T  -  T  T  T  z  T    T    T    T    T  7  T  ]  T    T    T    T    T    T  C  T  h  T    T    T    U     U  )  U  O  U  w  U    U    U    U     U   3  U	   V  U
   ~  U     U     U     U  !  U  !<  U  !b  U  !  U  !  U  !  U  !  U  "%  U  "K  U  "n  U  "  U  "  U  "  U  #  U  #.  U  #V  U  #{  U  #  U   #  U!  #  U"  $  U#  $:  U$  $`  U%  $  U&  $  U'  $  U(  $  U)  %  U*  %B  U+  %j  U,  %  U-  %  U.  %  U/  &  U0  &'  U1  &M  U2  &q  U3  &  U4  &  U5  &  U6  '
  U7  '0  U8  'V  U9  '|  U:  '  U;  '  U<  '  U=  (  U>  (<  U?  (c  U@  (  UA  (  UB  (  UC  (  UD  )"  UE  )G  UF  )m  UG  )  UH  )  UI  )  UJ  *  UK  *&  UL  *L  UM  *q  UN  *  UO  *  UP  *  UQ  +  UR  +.  US  +S  UT  +{  UU  +  UV  +  UW  +  UX  ,  UY  ,;  UZ  ,c  U[  ,  U\  ,  U]  ,  U^  ,  U_  -  U`  -E  Ua  -m  Ub  -  Uc  -  Ud  -  Ue  .  Uf  .,  Ug  .R  Uh  .x  Ui  .  Uj  .  Uk  .  Ul  /  Um  /8  Un  /^  Uo  /  Up  /  Uq  /  Ur  /  Us  0  Ut  0D  Uu  0j  Uv  0  Uw  0  Ux  0  Uy  1  Uz  1'  U{  1L  U|  1t  U}  1  U~  1  U  1  U  2  U  21  U  2W  U  2|  U  2  U  2  U  2  U  3  U  39  U  3_  U  3  U  3  U  3  U  3  U  4  U  4A  U  4i  U  4  U  4  U  4  U  5   U  5%  U  5J  U  5p  U  5  U  5  U  5  U  6  U  63  U  6[  U  6~  U  6  U  6  U  6  U  7  U  7:  U  7`  U  7  U  7  U  7  U  7  U  8  U  8A  U  8i  U  8  U  8  U  8  U  9  U  9*  U  9P  U  9w  U  9  U  9  U  9  U  :  U  :8  U  :^  U  :  U  :  U  :  U  :  U  ;  U  ;B  U  ;j  U  ;  U  ;  U  ;  U  <  U  <+  U  <S  U  <y  U  <  U  <  U  <  U  =  U  =9  U  =_  U  =  U  =  U  =  U  =  U  >  U  >B  U  >j  U  >  U  >  U  >  U  ?  U  ?,  U  ?R  U  ?x  U  ?  U  ?  U  ?  U  @  U  @7  U  @\  U  @  U  @  U  @  U  @  U  A  U  A>  U  Ad  U  A  U  A  U  A  U  B   U  B%  U  BM  U  Bu  U  B  U  B  U  B  U  C  U  C5  U  C[  U  C  U  C  U  C  U  C  U  D  U  D@  U  Df  U  D  U  D  U  D  U  E   V   E&  V  EL  V  Er  V  E  V  E  V  E  V  F	  V  F1  V  FY  V	  F  V
  F  V  F  V  F  V  G  V  GC  V  Gi  V  G  V  G  V  G  V  H  V  H+  V  HN  V  Hu  V  H  V  H  V  H  V  I  V  I6  V  I^  V  I  V  I  V  I  V   I  V!  J  V"  JC  V#  Jh  V$  J  V%  J  V&  J  V'  K  V(  K)  V)  KO  V*  Ku  V+  K  V,  K  V-  K  V.  L  V/  L3  V0  L[  V1  L  V2  L  V3  L  V4  L  V5  M  V6  MB  V7  Mj  V8  M  V9  M  V:  M  V;  N  V<  N-  V=  NU  V>  Nz  V?  N  V@  N  VA  N  VB  O  VC  O:  VD  O`  VE  O  VF  O  VG  O  VH  O  VI  P   VJ  PF  VK  Pk  VL  P  VM  P  VN  P  VO  Q  VP  Q,  VQ  QQ  VR  Qw  VS  Q  VT  Q  VU  Q  VV  R  VW  R6  VX  R^  VY  R  VZ  R  V[  R  V\  R  V]  S   V^  SH  V_  Sp  V`  S  Va  S  Vb  S  Vc  T  Vd  T/  Ve  TW  Vf  T}  Vg  T  Vh  T  Vi  T  Vj  U  Vk  U?  Vl  Ue  Vm  U  Vn  U  Vo  U  Vp  U  Vq  V#  Vr  VI  Vs  Vq  Vt  V  Vu  V  Vv  V  Vw  W  Vx  W1  Vy  WY  Vz  W  V{  W  V|  W  V}  W  V~  X  V  XB  V  Xh  V  X  V  X  V  X  V  X  V  Y#  V  YJ  V  Yr  V  Y  V  Y  V  Y  V  Z  V  Z5  V  Z[  V  Z  V  Z  V  Z  V  Z  V  [  V  [D  V  [j  V  [  V  [  V  [  V  \  V  \,  V  \R  V  \s  V  \  V  \  V  \  V  ]  V  ]4  V  ]Z  V  ]  V  ]  V  ]  V  ]  V  ^  V  ^C  V  ^i  V  ^  V  ^  V  ^  V  _  V  _+  V  _S  V  _{  V  _  V  _  V  _  V  `  V  `?  V  `g  V  `  V  `  V  `  V  a  V  a+  V  aQ  V  av  V  a  V  a  V  a  V  b  V  b6  V  b\  V  b  V  b  V  b  V  b  V  c!  V  cG  V  cm  V  c  V  c  V  c  V  d  V  d0  V  dX  V  d  V  d  V  d  V  d  V  e  V  e>  V  ed  V  e  V  e  V  e  V  e  V  f  V  f8  V  f[  V  f~  V  f  V  f  V  f  V  g  V  g)  V  gL  V  go  V  g  V  g  V  g  V  g  V  h  V  hB  V  he  V  h  V  h  V  h  V  h  V  i  V  i8  V  i[  V  i~  V  i  V  i  V  i  V  j
  V  j-  V  jP  V  js  V  j  V  j  V  j  V  j  W   k"  W  kF  W  ki  W  k  W  k  W  k  W  k  W  l  W  l<  W	  l_  W
  l  W  l  W  l  W  l  W  m  W  m4  W  mW  W  mz  W  m  W  m  W  m  W  n	  W  n-  W  nQ  W  nu  W  n  W  n  W  n  W  o  W  o(  W  oO  W  ow  W   o  W!  o  W"  o  W#  p  W$  p7  W%  p]  W&  p  W'  p  W(  p  W)  p  W*  q$  W+  qK  W,  qr  W-  q  W.  q  W/  q  W0  r  W1  r6  W2  r^  W3  r  W4  r  W5  r  W6  r  W7  s   W8  sH  W9  sm  W:  s  W;  s  W<  s  W=  t  W>  t.  W?  tV  W@  t~  WA  t  WB  t  WC  t  WD  u  WE  uE  WF  um  WG  u  WH  u  WI  u  WJ  v
  WK  v2  WL  vZ  WM  v  WN  v  WO  v  WP  v  WQ  w   WR  wH  WS  wo  WT  w  WU  w  WV  w  WW  x	  WX  x1  WY  xX  WZ  x}  W[  x  W\  x  W]  x  W^  y  W_  yC  W`  yk  Wa  y  Wb  y  Wc  y  Wd  z	  We  z/  Wf  zV  Wg  z}  Wh  z  Wi  z  Wj  z  Wk  {  Wl  {D  Wm  {l  Wn  {  Wo  {  Wp  {  Wq  |  Wr  |3  Ws  |[  Wt  |  Wu  |  Wv  |  Ww  |  Wx  }  Wy  }E  Wz  }m  W{  }  W|  }  W}  }  W~  ~  W  ~5  W  ~]  W  ~  W  ~  W  ~  W  ~  W  "  W  J  W  r  W    W    W    W    W  6  W  ^  W    W    W    W    W  #  W  J  W  r  W    W    W    W    W  4  W  \  W    W    W    W    W  #  W  K  W  s  W    W    W    W    W  9  W  ^  W    W    W    W    W     W  H  W  o  W    W    W    W    W  3  W  [  W    W    W    W    W  #  W  K  W  s  W    W    W    W    W  :  W  a  W    W    W    W    W  (  W  N  W  t  W    W    W    W    W  ;  W  c  W    W    W    W    W  *  W  R  W  z  W    W    W    W    W  A  W  g  W    W    W    W    W  +  W  S  W  z  W    W    W    W    W  B  W  j  W    W    W    W  	  W  1  W  Y  W    W    W    W    W  !  W  G  W  n  W    W    W    W    W  5  W  ]  W    W    W    W    X   !  X  I  X  q  X    X    X    X    X  6  X  ]  X	    X
    X    X    X     X  H  X  p  X    X    X    X    X  6  X  ^  X    X    X    X    X  !  X  I  X  q  X    X    X    X     X!  9  X"  `  X#    X$    X%    X&    X'  '  X(  O  X)  w  X*    X+    X,    X-    X.  =  X/  e  X0    X1    X2    X3    X4  *  X5  R  X6  z  X7    X8    X9    X:    X;  A  X<  i  X=    X>    X?    X@    XA  /  XB  V  XC  }  XD    XE    XF    XG    XH  D  XI  i  XJ    XK    XL    XM    XN  .  XO  V  XP  }  XQ    XR    XS    XT    XU  D  XV  l  XW    XX    XY    XZ    X[  4  X\  \  X]    X^    X_    X`    Xa  #  Xb  K  Xc  s  Xd    Xe    Xf    Xg    Xh  8  Xi  `  Xj    Xk    Xl    Xm    Xn  &  Xo  N  Xp  v  Xq    Xr    Xs    Xt    Xu  =  Xv  e  Xw    Xx    Xy    Xz    X{  +  X|  S  X}  {  X~    X    X    X    X  C  X  k  X    X    X    X  
  X  2  X  Z  X    X    X    X    X  !  X  I  X  q  X    X    X    X    X  8  X  `  X    X    X    X     X  (  X  P  X  x  X    X    X    X    X  =  X  e  X    X    X    X    X  ,  X  S  X  {  X    X    X    X    X  B  X  j  X    X    X    X    X  0  X  X  X    X    X    X    X    X  F  X  n  X    X    X    X    X  5  X  ]  X    X    X    X    X  #  X  K  X  s  X    X    X    X    X  ;  X  b  X    X    X    X     X  (  X  P  X  x  X    X    X    X    X  <  X  d  X    X    X    X    X  ,  X  T  X  |  X    X    X    X    X  C  X  k  X    X    X    X  	  X  1  X  Y  X    X    X    X    X     X  G  X  o  X    X    X    X    X  5  X  \  X    X    Y     Y    Y  $  Y  L  Y  q  Y    Y    Y    Y    Y	  9  Y
  a  Y    Y    Y    Y    Y  )  Y  Q  Y  y  Y    Y    Y    Y    Y  :  Y  `  Y    Y    Y    Y    Y    Y  F  Y  n  Y    Y     Y!    Y"    Y#  6  Y$  ^  Y%    Y&    Y'    Y(    Y)  &  Y*  M  Y+  u  Y,    Y-    Y.    Y/    Y0  =  Y1  e  Y2    Y3    Y4    Y5    Y6  ,  Y7  T  Y8  |  Y9  ¤  Y:    Y;    Y<    Y=  D  Y>  l  Y?  Ô  Y@  û  YA    YB  	  YC  1  YD  Y  YE  ā  YF  ĩ  YG    YH    YI  !  YJ  I  YK  q  YL  ř  YM    YN    YO    YP  9  YQ  a  YR  Ɖ  YS  Ʊ  YT    YU    YV  )  YW  Q  YX  y  YY  ǡ  YZ    Y[    Y\    Y]  @  Y^  h  Y_  Ȑ  Y`  ȸ  Ya    Yb    Yc  0  Yd  W  Ye    Yf  ɧ  Yg    Yh    Yi    Yj  G  Yk  o  Yl  ʗ  Ym  ʿ  Yn    Yo    Yp  7  Yq  ^  Yr  ˆ  Ys  ˮ  Yt    Yu    Yv  &  Yw  L  Yx  t  Yy  ̜  Yz    Y{    Y|    Y}  ;  Y~  c  Y  ͈  Y  Ͱ  Y    Y    Y  $  Y  K  Y  s  Y  Κ  Y    Y    Y    Y  5  Y  \  Y  τ  Y  Ϭ  Y    Y    Y  $  Y  K  Y  r  Y  К  Y    Y    Y    Y  8  Y  `  Y  ч  Y  ѯ  Y    Y    Y  '  Y  O  Y  v  Y  ҝ  Y    Y    Y    Y  <  Y  d  Y  ӌ  Y  Ӵ  Y    Y    Y  ,  Y  S  Y  {  Y  ԣ  Y    Y    Y    Y  A  Y  g  Y  Վ  Y  ն  Y    Y    Y  ,  Y  T  Y  |  Y  ֤  Y    Y    Y    Y  A  Y  i  Y  ב  Y  ׹  Y    Y    Y  -  Y  U  Y  }  Y  إ  Y    Y    Y    Y  E  Y  m  Y  ٕ  Y  ٽ  Y    Y    Y  4  Y  \  Y  ڄ  Y  ګ  Y    Y    Y  "  Y  J  Y  r  Y  ۚ  Y    Y    Y    Y  :  Y  b  Y  ܊  Y  ܲ  Y    Y    Y  *  Y  R  Y  y  Y  ݡ  Y    Y    Y    Y  @  Y  g  Y  ގ  Y  ޶  Y    Y    Y  +  Y  S  Y  {  Y  ߡ  Y    Y    Y    Y  A  Y  i  Y    Y    Y    Y    Y  /  Y  V  Z   ~  Z    Z    Z    Z    Z  E  Z  l  Z    Z    Z	    Z
    Z  4  Z  Z  Z    Z    Z    Z    Z  !  Z  G  Z  o  Z    Z    Z    Z    Z  7  Z  _  Z    Z    Z    Z    Z  &  Z  N  Z   t  Z!    Z"    Z#    Z$    Z%  ;  Z&  c  Z'    Z(    Z)    Z*    Z+  +  Z,  S  Z-  {  Z.    Z/    Z0    Z1    Z2  C  Z3  k  Z4    Z5    Z6    Z7    Z8  /  Z9  W  Z:    Z;    Z<    Z=    Z>    Z?  G  Z@  n  ZA    ZB    ZC    ZD    ZE  6  ZF  \  ZG    ZH    ZI    ZJ    ZK  $  ZL  L  ZM  t  ZN    ZO    ZP    ZQ    ZR  <  ZS  d  ZT    ZU    ZV    ZW    ZX  ,  ZY  T  ZZ  |  Z[    Z\    Z]    Z^    Z_  C  Z`  k  Za    Zb    Zc    Zd    Ze  3  Zf  [  Zg    Zh    Zi    Zj    Zk  #  Zl  K  Zm  r  Zn    Zo    Zp    Zq    Zr  8  Zs  `  Zt    Zu    Zv    Zw    Zx  #  Zy  K  Zz  s  Z{    Z|    Z}    Z~    Z  ;  Z  c  Z    Z    Z    Z    Z  +  Z  R  Z  z  Z    Z    Z    Z    Z  B  Z  j  Z    Z    Z    Z  	  Z  1  Z  Y  Z    Z    Z    Z    Z     Z  H  Z  p  Z    Z    Z    Z    Z  6  Z  ^  Z    Z    Z    Z    Z  %  Z  M  Z  u  Z    Z    Z    Z    Z  <  Z  d  Z    Z    Z    Z    Z  *  Z  R  Z  y  Z    Z    Z    Z    Z  A  Z  i  Z    Z    Z    Z    Z  0  Z  X  Z    Z    Z    Z    Z      Z   H  Z   p  Z     Z     Z     Z    Z  8  Z  `  Z    Z    Z    Z     Z  (  Z  P  Z  x  Z    Z    Z    Z    Z  @  Z  h  Z    Z    Z    Z    Z  0  Z  X  Z    Z    Z    Z    Z    Z  G  Z  o  Z    Z    Z    Z    Z  7  Z  _  Z    Z    Z    Z    Z  '  Z  O  Z  w  Z    Z    Z    Z    Z  ?  Z  g  Z    Z    Z    Z  	  Z  	,  [   	T  [  	|  [  	  [  	  [  	  [  
  [  
C  [  
k  [  
  [	  
  [
  
  [    [  3  [  [  [    [    [    [    [  #  [  K  [  s  [    [    [    [    [  ;  [  c  [    [    [    [    [  +  [   S  [!  {  ["    [#    [$    [%    [&  C  ['  k  [(    [)    [*    [+  
  [,  2  [-  Z  [.    [/    [0    [1    [2  "  [3  I  [4  q  [5    [6    [7    [8    [9  9  [:  a  [;    [<    [=    [>    [?  )  [@  Q  [A  y  [B    [C    [D    [E    [F  A  [G  i  [H    [I    [J    [K  	  [L  1  [M  Y  [N    [O    [P    [Q    [R    [S  B  [T  e  [U    [V    [W    [X    [Y  +  [Z  S  [[  {  [\    []    [^    [_    [`  =  [a  d  [b    [c    [d    [e    [f  ,  [g  T  [h  |  [i    [j    [k    [l    [m  C  [n  j  [o    [p    [q    [r  	  [s  0  [t  X  [u    [v    [w    [x    [y     [z  H  [{  o  [|    [}    [~    [    [  7  [  M  [  u  [    [    [    [    [  ;  [  c  [    [    [    [    [  +  [  S  [  {  [    [    [    [     [   A  [   h  [     [     [     [  !  [  !0  [  !X  [  !  [  !  [  !  [  !  [  "  [  "F  [  "n  [  "  [  "  [  "  [  #  [  #4  [  #[  [  #  [  #  [  #  [  #  [  $#  [  $K  [  $s  [  $  [  $  [  $  [  %  [  %;  [  %c  [  %  [  %  [  %  [  &  [  &+  [  &S  [  &{  [  &  [  &  [  &  [  '  [  'C  [  'k  [  '  [  '  [  '  [  (  [  (3  [  ([  [  (  [  (  [  (  [  (  [  )#  [  )J  [  )r  [  )  [  )  [  )  [  *  [  *:  [  *b  [  *  [  *  [  *  [  +  [  +*  [  +R  [  +z  [  +  [  +  [  +  [  ,  [  ,B  [  ,j  [  ,  [  ,  [  ,  [  -
  [  -2  [  -Z  [  -  [  -  [  -  [  -  [  ."  [  .J  [  .r  [  .  [  .  [  .  [  /  [  /:  [  /b  [  /  [  /  [  /  [  0  [  0(  [  0P  [  0w  [  0  [  0  [  0  \   1  \  1<  \  1d  \  1  \  1  \  1  \  2  \  2,  \  2T  \	  2|  \
  2  \  2  \  2  \  3  \  3C  \  3k  \  3  \  3  \  3  \  4  \  4,  \  4T  \  4w  \  4  \  4  \  4  \  5  \  52  \  5Z  \  5  \  5  \  5  \   5  \!  6"  \"  6J  \#  6r  \$  6  \%  6  \&  6  \'  7  \(  7:  \)  7b  \*  7  \+  7  \,  7  \-  8   \.  8(  \/  8P  \0  8x  \1  8  \2  8  \3  8  \4  9  \5  9@  \6  9h  \7  9  \8  9  \9  9  \:  :   \;  :'  \<  :N  \=  :u  \>  :  \?  :  \@  :  \A  ;  \B  ;2  \C  ;Y  \D  ;  \E  ;  \F  ;  \G  ;  \H  <  \I  <=  \J  <d  \K  <  \L  <  \M  <  \N  <  \O  =#  \P  =H  \Q  =o  \R  =  \S  =  \T  =  \U  >  \V  >-  \W  >R  \X  >z  \Y  >  \Z  >  \[  >  \\  ?  \]  ?;  \^  ?`  \_  ?  \`  ?  \a  ?  \b  ?  \c  @"  \d  @J  \e  @p  \f  @  \g  @  \h  @  \i  A  \j  A7  \k  A_  \l  A  \m  A  \n  A  \o  A  \p  B  \q  BD  \r  Bc  \s  B  \t  B  \u  B  \v  B  \w  C  \x  C>  \y  Cc  \z  C  \{  C  \|  C  \}  C  \~  D  \  D@  \  Df  \  D  \  D  \  D  \  D  \  E  \  E;  \  Ea  \  E  \  E  \  E  \  E  \  F  \  F@  \  Ff  \  F  \  F  \  F  \  G   \  G&  \  GL  \  Gt  \  G  \  G  \  G  \  H  \  H/  \  HW  \  Hy  \  H  \  H  \  H  \  I  \  I3  \  IV  \  I~  \  I  \  I  \  I  \  J  \  J;  \  J`  \  J  \  J  \  J  \  J  \  K  \  K=  \  Kb  \  K  \  K  \  K  \  L   \  L%  \  LK  \  Lo  \  L  \  L  \  L  \  M	  \  M/  \  MU  \  My  \  M  \  M  \  M  \  N  \  N+  \  NS  \  Ny  \  N  \  N  \  N  \  O  \  O=  \  O]  \  O  \  O  \  O  \  O  \  P  \  P>  \  Pf  \  P  \  P  \  P  \  P  \  Q'  \  QM  \  Qr  \  Q  \  Q  \  Q  \  R  \  R,  \  RR  \  Rx  \  R  \  R  \  R  \  S  \  S8  \  S^  \  S  \  S  \  S  \  S  \  T   \  TH  \  Tn  \  T  \  T  \  T  \  U  \  U/  \  US  \  U{  \  U  \  U  \  U  \  V  \  V;  \  Vc  \  V  \  V  \  V  \  V  \  W%  ]   WK  ]  Wo  ]  W  ]  W  ]  W  ]  X  ]  X2  ]  XY  ]  X  ]	  X  ]
  X  ]  X  ]  Y  ]  YE  ]  Yk  ]  Y  ]  Y  ]  Y  ]  Z  ]  Z+  ]  ZS  ]  Zy  ]  Z  ]  Z  ]  Z  ]  [  ]  [8  ]  [`  ]  [  ]  [  ]  [  ]  [  ]   \$  ]!  \J  ]"  \r  ]#  \  ]$  \  ]%  \  ]&  ]  ]'  ]6  ](  ]^  ])  ]  ]*  ]  ]+  ]  ],  ]  ]-  ^  ].  ^D  ]/  ^d  ]0  ^  ]1  ^  ]2  ^  ]3  ^  ]4  _   ]5  _H  ]6  _n  ]7  _  ]8  _  ]9  _  ]:  `
  ];  `2  ]<  `Z  ]=  `  ]>  `  ]?  `  ]@  `  ]A  a  ]B  aC  ]C  ak  ]D  a  ]E  a  ]F  a  ]G  b	  ]H  b1  ]I  bY  ]J  b  ]K  b  ]L  b  ]M  b  ]N  c  ]O  cG  ]P  co  ]Q  c  ]R  c  ]S  c  ]T  d  ]U  d,  ]V  dT  ]W  dy  ]X  d  ]Y  d  ]Z  d  ][  e  ]\  eA  ]]  ei  ]^  e  ]_  e  ]`  e  ]a  f  ]b  f-  ]c  fS  ]d  fy  ]e  f  ]f  f  ]g  f  ]h  g  ]i  g>  ]j  gf  ]k  g  ]l  g  ]m  g  ]n  h  ]o  h*  ]p  hO  ]q  hu  ]r  h  ]s  h  ]t  h  ]u  i  ]v  i8  ]w  i`  ]x  i  ]y  i  ]z  i  ]{  i  ]|  j$  ]}  jL  ]~  jt  ]  j  ]  j  ]  j  ]  k  ]  k4  ]  k\  ]  k  ]  k  ]  k  ]  k  ]  l!  ]  lG  ]  lo  ]  l  ]  l  ]  l  ]  m	  ]  m1  ]  mW  ]  m  ]  m  ]  m  ]  m  ]  n  ]  nE  ]  nm  ]  n  ]  n  ]  n  ]  o  ]  o1  ]  oX  ]  o|  ]  o  ]  o  ]  o  ]  p  ]  p>  ]  pf  ]  p  ]  p  ]  p  ]  q  ]  q(  ]  qP  ]  qx  ]  q  ]  q  ]  q  ]  r  ]  r<  ]  rb  ]  r  ]  r  ]  r  ]  s   ]  s(  ]  sN  ]  sv  ]  s  ]  s  ]  s  ]  t  ]  t<  ]  td  ]  t  ]  t  ]  t  ]  u  ]  u*  ]  uR  ]  uz  ]  u  ]  u  ]  u  ]  v  ]  v@  ]  vh  ]  v  ]  v  ]  v  ]  w  ]  w,  ]  wT  ]  w|  ]  w  ]  w  ]  w  ]  x  ]  x@  ]  xh  ]  x  ]  x  ]  x  ]  x  ]  y  ]  y;  ]  yc  ]  y  ]  y  ]  y  ]  y  ]  z!  ]  zB  ]  zi  ]  z  ]  z  ]  z  ]  z  ]  {  ]  {C  ]  {k  ]  {  ]  {  ]  {  ]  |  ]  |!  ]  |@  ]  |a  ]  |  ]  |  ]  |  ]  |  ]  }!  ]  }H  ]  }p  ]  }  ]  }  ]  }  ^   ~  ^  ~%  ^  ~I  ^  ~m  ^  ~  ^  ~  ^  ~  ^    ^  -  ^	  S  ^
  y  ^    ^    ^    ^    ^  7  ^  ]  ^    ^    ^    ^    ^    ^  C  ^  i  ^    ^    ^    ^    ^  $  ^  J  ^  r  ^    ^     ^!    ^"    ^#  *  ^$  R  ^%  x  ^&    ^'    ^(    ^)    ^*  4  ^+  Z  ^,    ^-    ^.    ^/    ^0    ^1  C  ^2  k  ^3    ^4    ^5    ^6    ^7  -  ^8  S  ^9  {  ^:    ^;    ^<    ^=    ^>  ?  ^?  e  ^@    ^A    ^B    ^C     ^D  &  ^E  N  ^F  t  ^G    ^H    ^I    ^J    ^K  8  ^L  `  ^M    ^N    ^O    ^P    ^Q  $  ^R  L  ^S  r  ^T    ^U    ^V    ^W    ^X  8  ^Y  ^  ^Z    ^[    ^\    ^]    ^^    ^_  F  ^`  n  ^a    ^b    ^c    ^d  
  ^e  0  ^f  X  ^g    ^h    ^i    ^j    ^k    ^l  B  ^m  j  ^n    ^o    ^p    ^q    ^r  0  ^s  W  ^t  ~  ^u    ^v    ^w    ^x    ^y  E  ^z  m  ^{    ^|    ^}    ^~    ^  &  ^  L  ^  t  ^    ^    ^    ^    ^  ;  ^  c  ^    ^    ^    ^    ^  *  ^  R  ^  z  ^    ^    ^    ^    ^  A  ^  i  ^    ^    ^    ^    ^  0  ^  X  ^    ^    ^    ^    ^     ^  H  ^  p  ^    ^    ^    ^    ^  7  ^  _  ^    ^    ^    ^    ^  &  ^  N  ^  v  ^    ^    ^    ^    ^  >  ^  f  ^    ^    ^    ^    ^  -  ^  U  ^  }  ^    ^    ^    ^    ^  E  ^  m  ^    ^    ^    ^    ^  4  ^  \  ^    ^    ^    ^    ^  $  ^  L  ^  t  ^    ^    ^    ^    ^  <  ^  d  ^    ^    ^    ^    ^  ,  ^  T  ^  |  ^    ^    ^    ^    ^  D  ^  l  ^    ^    ^    ^    ^  4  ^  \  ^    ^    ^    ^    ^  $  ^  L  ^  t  ^    ^    ^    ^    ^  <  ^  d  ^    ^    ^    ^     ^  (  ^  P  ^  x  ^    ^    ^    ^    _   :  _  a  _    _    _    _    _  %  _  M  _  u  _	    _
    _    _    _  =  _  e  _    _    _    _    _  -  _  N  _  o  _    _    _    _     _  %  _  I  _  q  _    _    _    _     _!  +  _"  P  _#  v  _$    _%    _&    _'    _(  >  _)  c  _*    _+    _,    _-    _.    _/  G  _0  o  _1    _2    _3    _4    _5  *  _6  Q  _7  y  _8    _9    _:    _;    _<  ?  _=  f  _>    _?    _@    _A    _B  -  _C  U  _D  |  _E    _F    _G    _H    _I  @  _J  h  _K    _L    _M    _N    _O  -  _P  U  _Q  q  _R    _S    _T    _U    _V  -  _W  U  _X  }  _Y    _Z    _[    _\    _]  D  _^  l  __    _`    _a    _b    _c  )  _d  Q  _e  x  _f    _g    _h    _i    _j  <  _k  d  _l    _m    _n    _o    _p  *  _q  R  _r  y  _s    _t    _u    _v    _w  )  _x  Q  _y  y  _z    _{    _|    _}    _~  ?  _  g  _    _    _    _    _  /  _  W  _    _    _    _    _    _  C  _  k  _    _    _    _    _  3  _  [  _    _    _    _    _  #  _  K  _  s  _    _    _    _    _  ;  _  c  _    _    _    _    _  )  _  Q  _  y  _    _    _    _    _  ?  _  g  _    _    _    _    _  /  _  W  _    _    _    _    _    _  G  _  o  _    _    _    _    _  7  _  _  _    _  ¯  _    _    _  $  _  :  _  a  _  É  _  ï  _    _    _  "  _  J  _  o  _  Ĕ  _  Ļ  _    _  
  _  /  _  W  _    _  ŧ  _    _    _    _  A  _  i  _  Ƒ  _  ƹ  _    _    _  .  _  V  _  }  _  ǥ  _    _    _    _  B  _  j  _  Ȓ  _  Ⱥ  _    _  	  _  1  _  Y  _  Ɂ  _  ɩ  _    _    _  !  _  I  _  q  _  ʙ  _    _    _    _  8  _  `  _  ˈ  _  ˰  _    _    _  '  `   N  `  v  `  ̝  `    `    `    `  <  `  d  `  ͌  `	  ʹ  `
    `    `  *  `  R  `  z  `  Ρ  `    `    `    `  >  `  f  `  ώ  `  ϴ  `    `    `  +  `  S  `  {  `  У  `    `    `    `   @  `!  g  `"  я  `#  ѷ  `$    `%    `&  -  `'  U  `(  }  `)  Ҥ  `*    `+    `,    `-  D  `.  l  `/  Ӓ  `0  Ӻ  `1    `2  	  `3  1  `4  Y  `5  ԁ  `6  ԩ  `7    `8    `9    `:  G  `;  o  `<  Ֆ  `=  ս  `>    `?    `@  5  `A  ]  `B  ք  `C  ֪  `D    `E    `F  "  `G  J  `H  r  `I  ך  `J    `K    `L    `M  9  `N  a  `O  ؉  `P  ذ  `Q    `R    `S  %  `T  M  `U  u  `V  ٜ  `W    `X    `Y    `Z  :  `[  b  `\  ڈ  `]  ڰ  `^    `_    ``  '  `a  O  `b  w  `c  ۟  `d    `e    `f    `g  ;  `h  `  `i  ܈  `j  ܭ  `k    `l    `m  #  `n  K  `o  s  `p  ݚ  `q    `r    `s    `t  7  `u  ^  `v  ޅ  `w  ު  `x    `y    `z  "  `{  J  `|  p  `}  ߘ  `~    `    `    `  7  `  ]  `    `    `    `    `     `  H  `  p  `    `    `    `    `  6  `  ^  `    `    `    `    `  &  `  N  `  v  `    `    `    `    `  ;  `  c  `    `    `    `    `  *  `  Q  `  y  `    `    `    `    `  ?  `  g  `    `    `    `    `  ,  `  T  `  |  `    `    `    `    `  C  `  k  `    `    `    `    `  .  `  V  `  ~  `    `    `    `    `  E  `  k  `    `    `    `    `  5  `  ]  `    `    `    `    `  $  `  K  `  s  `    `    `    `    `  :  `  b  `    `    `    `    `  *  `  R  `  z  `    `    `    `    `  ?  `  f  `    `    `    `    `  ,  `  T  `  {  `    `    `    `    `  C  `  k  `    `    `    `  
  `  2  `  Z  `    `    `    `    `  !  `  I  `  q  `    `    a     a    a  9  a  a  a    a    a    a     a  (  a	  P  a
  x  a    a    a    a    a  ?  a  g  a    a    a    a    a  -  a  S  a  {  a    a    a    a    a  B  a  j  a    a    a     a!  
  a"  2  a#  Z  a$    a%    a&    a'    a(  "  a)  I  a*  q  a+    a,    a-    a.    a/  6  a0  ^  a1    a2    a3    a4    a5  #  a6  K  a7  s  a8    a9    a:    a;    a<  :  a=  b  a>    a?    a@    aA    aB  )  aC  O  aD  w  aE    aF    aG    aH    aI  =  aJ  e  aK    aL    aM    aN     aO   -  aP   U  aQ   }  aR     aS     aT     aU    aV  E  aW  m  aX    aY    aZ    a[    a\  5  a]  ]  a^    a_    a`    aa    ab  %  ac  M  ad  u  ae    af    ag    ah    ai  <  aj  d  ak    al    am    an    ao  *  ap  R  aq  y  ar    as    at    au    av  A  aw  i  ax    ay    az    a{  	  a|  1  a}  Y  a~    a    a    a    a     a  H  a  p  a    a    a    a  	  a  	5  a  	]  a  	  a  	  a  	  a  	  a  
$  a  
L  a  
t  a  
  a  
  a  
  a    a  ;  a  b  a    a    a    a    a  )  a  Q  a  y  a    a    a    a    a  A  a  i  a    a    a    a  	  a  1  a  X  a    a    a    a    a    a  F  a  n  a    a    a    a    a  5  a  ]  a    a    a    a    a  %  a  M  a  u  a    a    a    a    a  =  a  e  a    a    a    a    a  -  a  U  a  }  a    a    a    a    a  D  a  l  a    a    a    a    a  3  a  [  a    a    a    a    a  "  a  J  a  r  a    a    a    a    a  :  a  b  a    a    a    a    a  *  a  R  a  z  a    a    a    a    a  B  a  j  a    a    a    a  
  a  2  a  Z  a    a    a    a    a  "  a  J  a  r  a    b     b    b    b  9  b  a  b    b    b    b    b	  '  b
  M  b  u  b    b    b    b    b  ;  b  c  b    b    b    b    b  )  b  Q  b  y  b    b    b    b     b   ;  b   c  b     b      b!     b"  !  b#  !+  b$  !S  b%  !{  b&  !  b'  !  b(  !  b)  "  b*  "C  b+  "k  b,  "  b-  "  b.  "  b/  #  b0  #3  b1  #[  b2  #  b3  #  b4  #  b5  #  b6  $#  b7  $G  b8  $i  b9  $  b:  $  b;  $  b<  %  b=  %)  b>  %Q  b?  %y  b@  %  bA  %  bB  %  bC  &  bD  &9  bE  &_  bF  &  bG  &  bH  &  bI  &  bJ  '#  bK  'K  bL  's  bM  '  bN  '  bO  '  bP  '  bQ  (%  bR  (K  bS  (s  bT  (  bU  (  bV  (  bW  )  bX  )7  bY  )_  bZ  )  b[  )  b\  )  b]  )  b^  *%  b_  *M  b`  *u  ba  *  bb  *  bc  *  bd  +  be  +;  bf  +c  bg  +  bh  +  bi  +  bj  ,  bk  ,'  bl  ,M  bm  ,u  bn  ,  bo  ,  bp  ,  bq  -  br  -=  bs  -e  bt  -  bu  -  bv  -  bw  .  bx  .-  by  .U  bz  .}  b{  .  b|  .  b}  .  b~  /  b  /C  b  /k  b  /  b  /  b  /  b  0  b  03  b  0[  b  0  b  0  b  0  b  0  b  1!  b  1I  b  1q  b  1  b  1  b  1  b  2  b  27  b  2_  b  2  b  2  b  2  b  2  b  3'  b  3O  b  3w  b  3  b  3  b  3  b  4  b  4?  b  4g  b  4  b  4  b  4  b  5  b  5-  b  5U  b  5}  b  5  b  5  b  5  b  6  b  6E  b  6m  b  6  b  6  b  6  b  7  b  75  b  7]  b  7  b  7  b  7  b  7  b  8%  b  8M  b  8u  b  8  b  8  b  8  b  9  b  99  b  9a  b  9  b  9  b  9  b  :  b  :)  b  :Q  b  :y  b  :  b  :  b  :  b  ;  b  ;A  b  ;i  b  ;  b  ;  b  ;  b  <  b  <-  b  <U  b  <}  b  <  b  <  b  <  b  =  b  =A  b  =i  b  =  b  =  b  =  b  >  b  >/  b  >W  b  >  b  >  b  >  b  >  b  ?  b  ?E  b  ?m  b  ?  b  ?  b  ?  b  @  b  @5  b  @]  b  @  b  @  b  @  b  @  b  A%  b  AM  b  Au  b  A  b  A  b  A  b  B  b  B;  b  Bc  b  B  b  B  b  B  b  C  b  C+  c   CS  c  C{  c  C  c  C  c  C  c  D  c  DC  c  Dk  c  D  c	  D  c
  D  c  E  c  E/  c  EW  c  E  c  E  c  E  c  E  c  F  c  FE  c  Fm  c  F  c  F  c  F  c  G  c  G5  c  G]  c  G  c  G  c  G  c  G  c  H#  c   HK  c!  Hs  c"  H  c#  H  c$  H  c%  I  c&  I9  c'  Ia  c(  I  c)  I  c*  I  c+  J  c,  J)  c-  JQ  c.  Jy  c/  J  c0  J  c1  J  c2  K  c3  K=  c4  Ke  c5  K  c6  K  c7  K  c8  L  c9  L-  c:  LU  c;  L}  c<  L  c=  L  c>  L  c?  M  c@  ME  cA  Mm  cB  M  cC  M  cD  M  cE  N  cF  N3  cG  NY  cH  N  cI  N  cJ  N  cK  N  cL  O!  cM  OG  cN  Oo  cO  O  cP  O  cQ  O  cR  P  cS  P3  cT  P[  cU  P  cV  P  cW  P  cX  P  cY  Q#  cZ  QK  c[  Qs  c\  Q  c]  Q  c^  Q  c_  R  c`  R7  ca  R_  cb  R  cc  R  cd  R  ce  R  cf  S'  cg  SO  ch  Sw  ci  S  cj  S  ck  S  cl  T  cm  T=  cn  Te  co  T  cp  T  cq  T  cr  U  cs  U-  ct  UU  cu  U}  cv  U  cw  U  cx  U  cy  V  cz  VE  c{  Vm  c|  V  c}  V  c~  V  c  W  c  W5  c  W]  c  W  c  W  c  W  c  W  c  X%  c  XM  c  Xu  c  X  c  X  c  X  c  Y  c  Y9  c  Ya  c  Y  c  Y  c  Y  c  Z  c  Z)  c  ZQ  c  Zv  c  Z  c  Z  c  Z  c  [  c  [<  c  [d  c  [  c  [  c  [  c  \  c  \,  c  \T  c  \|  c  \  c  \  c  \  c  ]  c  ]B  c  ]j  c  ]  c  ]  c  ]  c  ^
  c  ^0  c  ^X  c  ^~  c  ^  c  ^  c  ^  c  _  c  _F  c  _n  c  _  c  _  c  _  c  `  c  `6  c  `^  c  `  c  `  c  `  c  `  c  a&  c  aN  c  av  c  a  c  a  c  a  c  b  c  b>  c  bf  c  b  c  b  c  b  c  c  c  c.  c  cV  c  c~  c  c  c  c  c  c  c  d  c  dF  c  dn  c  d  c  d  c  d  c  e  c  e6  c  e^  c  e  c  e  c  e  c  e  c  f&  c  fN  c  fv  c  f  c  f  c  f  c  g  c  g>  c  gb  c  g  c  g  c  g  c  g  c  h&  c  hL  c  ht  c  h  c  h  c  h  c  i  c  i8  c  i`  c  i  c  i  c  i  c  j   c  j(  c  jP  c  jx  c  j  c  j  c  j  d   k  d  k@  d  kf  d  k  d  k  d  k  d  l  d  l.  d  lV  d	  l~  d
  l  d  l  d  l  d  m  d  mB  d  mj  d  m  d  m  d  m  d  n
  d  n2  d  nZ  d  n  d  n  d  n  d  n  d  o"  d  oJ  d  or  d  o  d  o  d  o  d   p  d!  p:  d"  pb  d#  p  d$  p  d%  p  d&  q  d'  q(  d(  qP  d)  qx  d*  q  d+  q  d,  q  d-  r  d.  r@  d/  rh  d0  r  d1  r  d2  r  d3  s  d4  s.  d5  sV  d6  s~  d7  s  d8  s  d9  s  d:  t  d;  tF  d<  tn  d=  t  d>  t  d?  t  d@  u  dA  u6  dB  u^  dC  u  dD  u  dE  u  dF  u  dG  v&  dH  vN  dI  vv  dJ  v  dK  v  dL  v  dM  w  dN  w>  dO  wf  dP  w  dQ  w  dR  w  dS  x  dT  x.  dU  xV  dV  x~  dW  x  dX  x  dY  x  dZ  y  d[  yD  d\  yl  d]  y  d^  y  d_  y  d`  z  da  z4  db  z\  dc  z  dd  z  de  z  df  z  dg  {$  dh  {L  di  {t  dj  {  dk  {  dl  {  dm  |  dn  |<  do  |d  dp  |  dq  |  dr  |  ds  }  dt  }*  du  }R  dv  }z  dw  }  dx  }  dy  }  dz  ~  d{  ~@  d|  ~h  d}  ~  d~  ~  d  ~  d    d  0  d  X  d    d    d    d    d    d  F  d  n  d    d    d    d  
  d  2  d  Z  d    d    d    d    d  "  d  J  d  r  d    d    d    d    d  :  d  b  d    d    d    d    d  *  d  R  d  z  d    d    d    d    d  B  d  j  d    d    d    d  
  d  2  d  Z  d    d    d    d    d  "  d  J  d  r  d    d    d    d    d  8  d  `  d    d    d    d     d  (  d  P  d  x  d    d    d    d    d  B  d  j  d    d    d    d    d  0  d  X  d    d    d    d    d     d  H  d  p  d    d    d    d    d  8  d  `  d    d    d    d     d  (  d  P  d  x  d    d    d    d    d  =  d  e  d    d    d    d    d  -  d  U  d  }  d    d    d    d    d  C  d  k  d    d    d    d    d  3  d  [  d    d    d    e     e  #  e  K  e  s  e    e    e    e    e  ;  e	  c  e
    e    e    e    e  +  e  S  e  {  e    e    e    e    e  A  e  i  e    e    e    e  	  e  1  e  Y  e    e    e    e     e!  !  e"  I  e#  q  e$    e%    e&    e'    e(  9  e)  a  e*    e+    e,    e-    e.  )  e/  Q  e0  y  e1    e2    e3    e4    e5  A  e6  i  e7    e8    e9    e:    e;  -  e<  U  e=  }  e>    e?    e@    eA    eB  A  eC  i  eD    eE    eF    eG  	  eH  1  eI  Y  eJ    eK    eL    eM    eN  !  eO  I  eP  q  eQ    eR    eS    eT    eU  9  eV  a  eW    eX    eY    eZ    e[  )  e\  Q  e]  y  e^    e_    e`    ea    eb  =  ec  e  ed    ee    ef    eg    eh  -  ei  U  ej  }  ek    el    em    en    eo  E  ep  m  eq    er    es    et    eu  5  ev  [  ew    ex    ey    ez    e{  #  e|  K  e}  s  e~    e    e    e    e  ;  e  c  e    e    e    e    e  +  e  S  e  {  e    e    e    e    e  C  e  k  e    e    e    e    e  .  e  V  e  ~  e    e    e    e    e  D  e  l  e    e    e    e    e  3  e  [  e    e    e    e    e  #  e  K  e  s  e    e    e    e    e  9  e  a  e    e    e    e     e  (  e  P  e  u  e    e    e    e    e  ;  e  b  e    e    e    e    e  *  e  R  e  z  e    e    e    e    e  B  e  j  e    e    e    e  
  e  2  e  Z  e    e    e    e    e  "  e  J  e  r  e    e    e    e    e  :  e  b  e    e    e    e    e  $  e  I  e  o  e    e    e    e    e    e  ?  e  e  e    e    e    e    e  !  e  F  e  n  e    e    e    e    e  #  e  I  e  n  e    e    e    e    e  ,  e  T  f   z  f    f    f    f    f  5  f  Z  f  {  f    f	    f
    f    f  =  f  ]  f  ~  f    f    f    f    f  5  f  Y  f    f    f    f    f    f  =  f  e  f    f    f    f    f     f!  C  f"  h  f#    f$    f%    f&     f'  '  f(  M  f)  s  f*    f+    f,    f-    f.  (  f/  M  f0  u  f1    f2    f3    f4    f5  1  f6  V  f7  ~  f8  £  f9    f:    f;    f<  7  f=  \  f>  Â  f?  ç  f@    fA    fB    fC  >  fD  e  fE  ċ  fF  Į  fG    fH    fI    fJ  F  fK  i  fL  Ő  fM  Ŵ  fN    fO    fP  &  fQ  L  fR  k  fS  Ɛ  fT  ƶ  fU    fV    fW  )  fX  O  fY  t  fZ  ǚ  f[    f\    f]    f^  0  f_  V  f`  |  fa  Ȣ  fb    fc    fd    fe  9  ff  _  fg  Ʌ  fh  ɫ  fi    fj    fk    fl  E  fm  k  fn  ʐ  fo  ʸ  fp    fq    fr  .  fs  S  ft  {  fu  ˡ  fv    fw    fx    fy  =  fz  b  f{  ̈  f|  ̮  f}    f~    f  $  f  J  f  p  f  ͖  f  ;  f    f  
  f  2  f  Z  f  ΁  f  Ω  f    f    f    f  ?  f  d  f  ϊ  f  ϰ  f    f    f  !  f  I  f  o  f  Е  f  л  f    f    f  .  f  T  f  y  f  ѡ  f    f    f    f  9  f  _  f  ҅  f  ҫ  f    f    f    f  C  f  j  f  Ӑ  f  Ӷ  f    f    f  (  f  P  f  v  f  Ԟ  f    f    f    f  5  f  [  f  Ճ  f  թ  f    f    f    f  B  f  h  f  ֎  f  ֶ  f    f    f  )  f  O  f  u  f  כ  f  ׿  f    f    f  4  f  Z  f  ؀  f  إ  f    f    f    f  ;  f  c  f  ً  f  ٳ  f    f    f  )  f  Q  f  w  f  ڜ  f    f    f    f  8  f  `  f  ۅ  f  ۭ  f    f    f  #  f  K  f  s  f  ܙ  f    f    f    f  7  f  ^  f  ݆  f  ݮ  f    f    f  $  f  B  f  a  f  ޅ  f  ޭ  f    f    f    f  C  f  k  f  ߓ  f  ߻  f    f  
  f  *  f  J  g   r  g    g    g    g    g  6  g  ^  g    g    g	    g
    g    g  D  g  l  g    g    g    g    g  /  g  U  g  }  g    g    g    g    g  ?  g  d  g    g    g    g    g  ,  g   R  g!  z  g"    g#    g$    g%    g&  <  g'  d  g(    g)    g*    g+    g,  ,  g-  T  g.  z  g/    g0    g1    g2    g3  A  g4  i  g5    g6    g7    g8    g9  )  g:  Q  g;  y  g<    g=    g>    g?    g@  =  gA  e  gB    gC    gD    gE    gF  -  gG  U  gH  }  gI    gJ    gK    gL    gM  C  gN  k  gO    gP    gQ    gR    gS  1  gT  W  gU    gV    gW    gX    gY    gZ  F  g[  n  g\    g]    g^    g_    g`  4  ga  \  gb    gc    gd    ge    gf  !  gg  I  gh  q  gi    gj    gk    gl    gm  7  gn  _  go    gp    gq    gr    gs  '  gt  O  gu  w  gv    gw    gx    gy    gz  ?  g{  g  g|    g}    g~    g    g  /  g  W  g    g    g    g    g    g  A  g  i  g    g    g    g  	  g  1  g  Y  g    g    g    g    g  !  g  I  g  q  g    g    g    g    g  9  g  a  g    g    g    g     g  (  g  P  g  x  g    g    g    g    g  >  g  f  g    g    g    g    g  .  g  V  g  ~  g    g    g    g    g  F  g  l  g    g    g    g  
  g  2  g  Z  g    g    g    g    g  "  g  J  g  r  g    g    g    g    g  :  g  b  g    g    g    g     g   (  g   P  g   x  g     g     g     g    g  >  g  e  g    g    g    g    g  )  g  O  g  u  g    g    g    g    g  =  g  e  g    g    g    g    g  ,  g  T  g  |  g    g    g    g    g  D  g  j  g    g    g    g  
  g  2  g  Z  g    g    g    g    g  "  g  H  g  o  g    g    g    h     h  7  h  _  h    h    h    h    h  	'  h  	O  h	  	w  h
  	  h  	  h  	  h  
  h  
?  h  
g  h  
  h  
  h  
  h    h  -  h  U  h  }  h    h    h    h    h  D  h  l  h    h    h    h     h!  3  h"  [  h#    h$    h%    h&    h'  #  h(  K  h)  s  h*    h+    h,    h-    h.  ;  h/  c  h0    h1    h2    h3    h4  +  h5  S  h6  {  h7    h8    h9    h:    h;  A  h<  i  h=    h>    h?    h@  	  hA  1  hB  Y  hC    hD    hE    hF    hG  !  hH  I  hI  q  hJ    hK    hL    hM    hN  9  hO  a  hP    hQ    hR    hS    hT  '  hU  O  hV  u  hW    hX    hY    hZ    h[  9  h\  a  h]    h^    h_    h`    ha  )  hb  Q  hc  y  hd    he    hf    hg    hh  ?  hi  g  hj    hk    hl    hm    hn  /  ho  W  hp    hq    hr    hs    ht    hu  G  hv  o  hw    hx    hy    hz    h{  3  h|  [  h}    h~    h    h    h  "  h  I  h  q  h    h    h    h    h  9  h  a  h    h    h    h    h  '  h  O  h  w  h    h    h    h    h  ?  h  g  h    h    h    h     h   /  h   W  h     h     h     h     h  !  h  !E  h  !k  h  !  h  !  h  !  h  "  h  "3  h  "[  h  "  h  "  h  "  h  "  h  ##  h  #K  h  #s  h  #  h  #  h  #  h  $  h  $;  h  $c  h  $  h  $  h  $  h  %  h  %)  h  %Q  h  %y  h  %  h  %  h  %  h  &  h  &A  h  &i  h  &  h  &  h  &  h  '	  h  '1  h  'Y  h  '  h  '  h  '  h  '  h  (!  h  (I  h  (q  h  (  h  (  h  (  h  )  h  )9  h  )a  h  )  h  )  h  )  h  *  h  *)  h  *Q  h  *y  h  *  h  *  h  *  h  +  h  +?  h  +g  h  +  h  +  h  +  h  ,  h  ,/  h  ,W  h  ,  h  ,  h  ,  h  ,  h  -  h  -G  h  -o  h  -  h  -  h  -  h  .  h  .7  h  ._  h  .  h  .  h  .  h  .  h  /&  h  /N  h  /v  h  /  h  /  i   /  i  0  i  0>  i  0f  i  0  i  0  i  0  i  1  i  1,  i	  1R  i
  1z  i  1  i  1  i  1  i  2  i  2B  i  2j  i  2  i  2  i  2  i  3
  i  32  i  3Z  i  3  i  3  i  3  i  3  i  4   i  4H  i  4p  i  4  i  4  i   4  i!  5  i"  58  i#  5`  i$  5  i%  5  i&  5  i'  6   i(  6(  i)  6P  i*  6x  i+  6  i,  6  i-  6  i.  7  i/  7@  i0  7h  i1  7  i2  7  i3  7  i4  8  i5  80  i6  8X  i7  8  i8  8  i9  8  i:  8  i;  9   i<  9H  i=  9p  i>  9  i?  9  i@  9  iA  :  iB  :8  iC  :`  iD  :  iE  :  iF  :  iG  ;   iH  ;(  iI  ;P  iJ  ;x  iK  ;  iL  ;  iM  ;  iN  <  iO  <@  iP  <h  iQ  <  iR  <  iS  <  iT  =  iU  =0  iV  =X  iW  =  iX  =  iY  =  iZ  =  i[  >   i\  >H  i]  >p  i^  >  i_  >  i`  >  ia  ?  ib  ?8  ic  ?`  id  ?  ie  ?  if  ?  ig  ?  ih  @&  ii  @N  ij  @v  ik  @  il  @  im  @  in  A  io  A>  ip  Af  iq  A  ir  A  is  A  it  B  iu  B.  iv  BV  iw  B~  ix  B  iy  B  iz  B  i{  C  i|  CF  i}  Cn  i~  C  i  C  i  C  i  D  i  D6  i  D^  i  D  i  D  i  D  i  D  i  E&  i  EL  i  Et  i  E  i  E  i  E  i  F  i  F<  i  Fd  i  F  i  F  i  F  i  G  i  G,  i  GT  i  G|  i  G  i  G  i  G  i  H  i  HD  i  Hl  i  H  i  H  i  H  i  I  i  I4  i  I\  i  I  i  I  i  I  i  I  i  J$  i  JL  i  Jt  i  J  i  J  i  J  i  K  i  K<  i  Kd  i  K  i  K  i  K  i  L  i  L,  i  LT  i  L|  i  L  i  L  i  L  i  M  i  MD  i  Ml  i  M  i  M  i  M  i  N  i  N4  i  N\  i  N  i  N  i  N  i  N  i  O"  i  OJ  i  Or  i  O  i  O  i  O  i  P  i  P:  i  Pb  i  P  i  P  i  P  i  Q  i  Q)  i  QQ  i  Qy  i  Q  i  Q  i  Q  i  R  i  RA  i  Ri  i  R  i  R  i  R  i  S	  i  S1  i  SY  i  S  i  S  i  S  i  S  i  T!  i  TI  i  Tp  i  T  i  T  i  T  i  U  i  U8  i  U`  i  U  i  U  i  U  i  V   i  V(  i  VP  i  Vx  i  V  i  V  i  V  i  W  i  W@  i  Wh  i  W  i  W  j   W  j  X  j  X0  j  XX  j  X  j  X  j  X  j  X  j  Y   j	  YH  j
  Yp  j  Y  j  Y  j  Y  j  Z  j  Z8  j  Z`  j  Z  j  Z  j  Z  j  [   j  [(  j  [P  j  [x  j  [  j  [  j  [  j  \  j  \@  j  \h  j  \  j  \  j   \  j!  ]  j"  ]0  j#  ]X  j$  ]  j%  ]  j&  ]  j'  ]  j(  ^   j)  ^H  j*  ^p  j+  ^  j,  ^  j-  ^  j.  _  j/  _8  j0  _`  j1  _  j2  _  j3  _  j4  `   j5  `(  j6  `P  j7  `x  j8  `  j9  `  j:  `  j;  a  j<  a@  j=  ah  j>  a  j?  a  j@  a  jA  b  jB  b0  jC  bX  jD  b  jE  b  jF  b  jG  b  jH  c   jI  cH  jJ  cp  jK  c  jL  c  jM  c  jN  d  jO  d8  jP  d`  jQ  d  jR  d  jS  d  jT  e   jU  e(  jV  eP  jW  ex  jX  e  jY  e  jZ  e  j[  f  j\  f@  j]  fh  j^  f  j_  f  j`  f  ja  g  jb  g0  jc  gX  jd  g  je  g  jf  g  jg  g  jh  h   ji  hH  jj  hp  jk  h  jl  h  jm  h  jn  i  jo  i8  jp  i`  jq  i  jr  i  js  i  jt  j   ju  j(  jv  jP  jw  jx  jx  j  jy  j  jz  j  j{  k  j|  k@  j}  kh  j~  k  j  k  j  k  j  l  j  l0  j  lX  j  l  j  l  j  l  j  l  j  m   j  mH  j  mp  j  m  j  m  j  m  j  n  j  n8  j  n`  j  n  j  n  j  n  j  o   j  o(  j  oP  j  ox  j  o  j  o  j  o  j  p  j  p@  j  ph  j  p  j  p  j  p  j  q  j  q0  j  qX  j  q  j  q  j  q  j  q  j  r   j  rH  j  rp  j  r  j  r  j  r  j  s  j  s8  j  s`  j  s  j  s  j  s  j  t   j  t(  j  tP  j  tx  j  t  j  t  j  t  j  u  j  u@  j  uh  j  u  j  u  j  u  j  v  j  v0  j  vX  j  v  j  v  j  v  j  v  j  w   j  wH  j  wp  j  w  j  w  j  w  j  x  j  x6  j  x^  j  x  j  x  j  x  j  x  j  y&  j  yN  j  yv  j  y  j  y  j  y  j  z  j  z>  j  zf  j  z  j  z  j  z  j  {  j  {.  j  {V  j  {~  j  {  j  {  j  {  j  |  j  |F  j  |n  j  |  j  |  j  |  j  }  j  }6  j  }^  j  }  j  }  j  }  j  }  j  ~&  j  ~N  j  ~v  j  ~  j  ~  j  ~  j    j  >  j  f  j    j    k     k    k  .  k  V  k  ~  k    k    k    k    k	  F  k
  n  k    k    k    k    k  6  k  ^  k    k    k    k    k  &  k  N  k  v  k    k    k    k    k  >  k  f  k    k    k     k!    k"  .  k#  V  k$  ~  k%    k&    k'    k(    k)  B  k*  j  k+    k,    k-    k.  
  k/  2  k0  Z  k1    k2    k3    k4    k5    k6  F  k7  n  k8    k9    k:    k;    k<  6  k=  ^  k>    k?    k@    kA    kB  &  kC  N  kD  v  kE    kF    kG    kH    kI  <  kJ  d  kK    kL    kM    kN    kO  ,  kP  T  kQ  |  kR    kS    kT    kU    kV  D  kW  l  kX    kY    kZ    k[  
  k\  2  k]  Z  k^    k_    k`    ka    kb     kc  G  kd  l  ke    kf    kg    kh    ki  3  kj  [  kk    kl    km    kn    ko    kp  F  kq  k  kr    ks    kt    ku  	  kv  1  kw  Y  kx    ky    kz    k{    k|    k}  B  k~  j  k    k    k    k    k  .  k  V  k  ~  k    k    k    k    k  D  k  l  k    k    k    k    k  3  k  [  k    k    k    k    k     k  H  k  p  k    k    k    k    k  5  k  ]  k    k    k    k    k  !  k  I  k  q  k    k    k    k    k  9  k  a  k    k    k    k    k  &  k  N  k  v  k    k    k    k    k  :  k  b  k    k    k    k    k  '  k  O  k  w  k    k    k    k    k  >  k  f  k    k    k    k    k  ,  k  T  k  {  k    k    k    k    k  A  k  i  k    k    k    k    k  ,  k  Q  k  r  k    k    k    k    k  4  k  Z  k    k    k    k    k    k  D  k  l  k    k    k    k  
  k  2  k  Z  k    k    k    k    k     k  H  k  p  k    k    k    k    k  3  k  Z  k    k    k    k    k  "  k  J  l   r  l    l    l    l    l  :  l  `  l    l    l	    l
     l  (  l  P  l  x  l    l    l    l    l  /  l  W  l    l    l    l    l    l  G  l  o  l    l    l    l    l  7  l   _  l!    l"    l#    l$    l%  '  l&  O  l'  w  l(    l)    l*    l+    l,  ?  l-  g  l.    l/    l0    l1    l2  /  l3  W  l4    l5    l6    l7    l8  	  l9  1  l:  X  l;  ~  l<    l=    l>    l?    l@  A  lA  h  lB    lC    lD    lE    lF  ,  lG  T  lH  y  lI    lJ    lK    lL    lM  8  lN  `  lO    lP    lQ    lR    lS  #  lT  J  lU  q  lV    lW    lX    lY    lZ  4  l[  [  l\    l]    l^    l_    l`    la  B  lb  i  lc    ld    le    lf    lg  -  lh  T  li  w  lj    lk    ll    lm    ln  7  lo  ]  lp    lq    lr    ls    lt  $  lu  L  lv  t  lw    lx    ly    lz    l{  9  l|  a  l}    l~    l    l     l  (  l  M  l  u  l    l    l    l    l  9  l  a  l    l    l    l    l  $  l  L  l  q  l    l    l    l    l  5  l  [  l    l    l    l    l    l  F  l  n  l    l    l    l    l  2  l  Y  l    l    l    l    l    l  B  l  h  l    l    l    l    l  +  l  S  l  z  l    l    l    l    l  =  l  d  l  Ì  l  ò  l    l    l  !  l  F  l  n  l  Ė  l  Ľ  l    l  	  l  .  l  T  l  {  l  Š  l    l    l    l  @  l  f  l  Ǝ  l  Ƶ  l    l    l  +  l  S  l  y  l  ǡ  l    l    l    l  >  l  c  l  ȋ  l  Ȳ  l    l    l  &  l  N  l  t  l  ə  l    l    l    l  7  l  _  l  ʆ  l  ʭ  l    l    l  #  l  H  l  o  l  ˗  l  ˿  l    l    l  4  l  \  l  ̂  l  ̪  l    l    l     l  H  l  p  l  ͕  l  ͽ  l    l    l  3  l  X  m     m  Χ  m    m    m    m  F  m  m  m  ϒ  m  Ϸ  m	    m
    m  /  m  W  m    m  Ф  m    m    m    m  A  m  h  m  ѐ  m  Ѹ  m    m    m  /  m  W  m    m  ҧ  m    m    m    m  B  m   j  m!  Ӓ  m"  Ӻ  m#    m$  
  m%  1  m&  Y  m'  Ԁ  m(  Ԩ  m)    m*    m+     m,  G  m-  n  m.  Փ  m/  ջ  m0    m1    m2  /  m3  U  m4  }  m5  ֥  m6    m7    m8    m9  <  m:  a  m;  ׇ  m<  ׯ  m=    m>    m?  $  m@  L  mA  t  mB  ؜  mC    mD    mE    mF  :  mG  b  mH  ي  mI  ٲ  mJ    mK    mL  '  mM  O  mN  w  mO  ڟ  mP    mQ    mR    mS  <  mT  d  mU  ۋ  mV  ۰  mW    mX    mY  %  mZ  M  m[  s  m\  ܛ  m]    m^    m_    m`  :  ma  b  mb  ݊  mc  ݯ  md    me    mf  "  mg  J  mh  o  mi  ޗ  mj  ޿  mk    ml    mm  3  mn  Z  mo  ߂  mp  ߩ  mq    mr    ms    mt  F  mu  n  mv    mw    mx    my    mz  5  m{  ]  m|    m}    m~    m    m    m  F  m  n  m    m    m    m    m  /  m  T  m  x  m    m    m    m    m  :  m  b  m    m    m    m     m  %  m  M  m  s  m    m    m    m    m  ;  m  c  m    m    m    m    m  '  m  L  m  s  m    m    m    m    m  7  m  _  m    m    m    m    m  $  m  L  m  s  m    m    m    m    m  8  m  ]  m    m    m    m    m     m  H  m  p  m    m    m    m    m  5  m  \  m    m    m    m    m  "  m  I  m  p  m    m    m    m  	  m  1  m  X  m  ~  m    m    m    m    m  B  m  j  m    m    m    m    m  ,  m  Q  m  x  m    m    m    m    m  ?  m  f  m    m    m    m    m  ,  m  T  m  |  m    m    m    m    m  C  m  k  m    m    m    m    m  -  m  U  m  |  m    m    m    m    m  A  m  h  m    n     n    n    n  .  n  V  n  ~  n    n    n    n	    n
  A  n  g  n    n    n    n    n  +  n  S  n  z  n    n    n    n    n  =  n  e  n    n    n    n    n  +  n  S  n  {  n     n!    n"    n#    n$  B  n%  j  n&    n'    n(    n)    n*  *  n+  P  n,  x  n-    n.    n/    n0    n1  <  n2  c  n3    n4    n5    n6    n7  $  n8  L  n9  t  n:    n;    n<    n=    n>  :  n?  a  n@    nA    nB    nC    nD   &  nE   K  nF   s  nG     nH     nI     nJ    nK  ;  nL  c  nM    nN    nO    nP    nQ  '  nR  N  nS  u  nT    nU    nV    nW    nX  ;  nY  a  nZ    n[    n\    n]    n^  '  n_  O  n`  t  na    nb    nc    nd    ne  6  nf  ^  ng    nh    ni    nj    nk    nl  F  nm  n  nn    no    np    nq  	  nr  /  ns  W  nt    nu    nv    nw    nx    ny  F  nz  m  n{    n|    n}    n~  	  n  	2  n  	W  n  	  n  	  n  	  n  	  n  
  n  
G  n  
o  n  
  n  
  n  
  n    n  2  n  Z  n    n    n    n    n    n  F  n  n  n    n    n    n    n  3  n  [  n    n    n    n    n     n  E  n  l  n    n    n    n    n  0  n  X  n    n    n    n    n    n  F  n  m  n    n    n    n    n  4  n  Y  n    n    n    n    n    n  G  n  l  n    n    n    n    n  -  n  U  n  }  n    n    n    n    n  D  n  l  n    n    n    n  	  n  1  n  Y  n    n    n    n    n    n  D  n  l  n    n    n    n    n  0  n  X  n    n    n    n    n    n  F  n  n  n    n    n    n    n  3  n  [  n    n    n    n    n  "  n  I  n  q  n    n    n    n    n  7  n  ]  n    n    n    n    n  %  n  L  n  t  n    n    n    o     o  :  o  b  o    o    o    o     o  (  o  P  o	  x  o
    o    o    o    o  <  o  d  o    o    o    o     o   *  o   P  o   x  o     o     o     o  !  o  !=  o  !e  o  !  o  !  o  !  o   "   o!  "(  o"  "P  o#  "x  o$  "  o%  "  o&  "  o'  #  o(  #?  o)  #g  o*  #  o+  #  o,  #  o-  $  o.  $/  o/  $W  o0  $~  o1  $  o2  $  o3  $  o4  %  o5  %C  o6  %k  o7  %  o8  %  o9  %  o:  &  o;  &/  o<  &V  o=  &~  o>  &  o?  &  o@  &  oA  '  oB  'D  oC  'k  oD  '  oE  '  oF  '  oG  (  oH  (3  oI  (Z  oJ  (  oK  (  oL  (  oM  (  oN  )!  oO  )I  oP  )n  oQ  )  oR  )  oS  )  oT  *  oU  *4  oV  *[  oW  *  oX  *  oY  *  oZ  *  o[  +   o\  +G  o]  +o  o^  +  o_  +  o`  +  oa  ,  ob  ,4  oc  ,\  od  ,  oe  ,  of  ,  og  ,  oh  -  oi  -C  oj  -j  ok  -  ol  -  om  -  on  .  oo  .,  op  .S  oq  .{  or  .  os  .  ot  .  ou  /  ov  /=  ow  /d  ox  /  oy  /  oz  /  o{  0  o|  0,  o}  0S  o~  0{  o  0  o  0  o  0  o  1  o  1<  o  1d  o  1  o  1  o  1  o  2  o  2)  o  2Q  o  2y  o  2  o  2  o  2  o  3  o  3=  o  3d  o  3  o  3  o  3  o  4  o  4*  o  4O  o  4t  o  4  o  4  o  4  o  5  o  59  o  5a  o  5  o  5  o  5  o  6   o  6(  o  6P  o  6w  o  6  o  6  o  6  o  7  o  7=  o  7d  o  7  o  7  o  7  o  8   o  8(  o  8P  o  8x  o  8  o  8  o  8  o  9  o  9?  o  9g  o  9  o  9  o  9  o  :  o  :.  o  :V  o  :~  o  :  o  :  o  :  o  ;  o  ;E  o  ;l  o  ;  o  ;  o  ;  o  <  o  <4  o  <\  o  <  o  <  o  <  o  <  o  =#  o  =K  o  =s  o  =  o  =  o  =  o  >  o  >6  o  >^  o  >  o  >  o  >  o  >  o  ?%  o  ?M  o  ?u  o  ?  o  ?  o  ?  o  @  o  @<  o  @d  o  @  o  @  o  @  o  A  o  A)  o  AQ  o  Ax  o  A  o  A  o  A  o  B  o  B>  o  Bf  o  B  o  B  o  B  o  C  o  C,  o  CT  o  C|  o  C  o  C  o  C  o  D  o  DC  o  Dk  p   D  p  D  p  D  p  E
  p  E2  p  EZ  p  E  p  E  p  E  p	  E  p
  F!  p  FH  p  Fp  p  F  p  F  p  F  p  G  p  G8  p  G`  p  G  p  G  p  G  p  H   p  H(  p  HP  p  Hx  p  H  p  H  p  H  p  I  p  I?  p  Ig  p   I  p!  I  p"  I  p#  J  p$  J,  p%  JT  p&  Jz  p'  J  p(  J  p)  J  p*  K  p+  KB  p,  Kj  p-  K  p.  K  p/  K  p0  L
  p1  L2  p2  LZ  p3  L  p4  L  p5  L  p6  L  p7  M   p8  MG  p9  Mo  p:  M  p;  M  p<  M  p=  N  p>  N7  p?  N]  p@  N  pA  N  pB  N  pC  N  pD  O%  pE  OM  pF  Ou  pG  O  pH  O  pI  O  pJ  P  pK  P<  pL  Pd  pM  P  pN  P  pO  P  pP  Q  pQ  Q,  pR  QT  pS  Q|  pT  Q  pU  Q  pV  Q  pW  R  pX  RD  pY  Rl  pZ  R  p[  R  p\  R  p]  S  p^  S4  p_  S\  p`  S  pa  S  pb  S  pc  S  pd  T"  pe  TJ  pf  Tr  pg  T  ph  T  pi  T  pj  U  pk  U9  pl  Ua  pm  Ur  pn  U  po  U  pp  U  pq  V  pr  V6  ps  V\  pt  V  pu  V  pv  V  pw  V  px  W!  py  WI  pz  Wq  p{  W  p|  W  p}  W  p~  X  p  X7  p  X]  p  X  p  X  p  X  p  X  p  Y"  p  YI  p  Yq  p  Y  p  Y  p  Y  p  Z  p  Z7  p  Z_  p  Z  p  Z  p  Z  p  Z  p  ['  p  [O  p  [w  p  [  p  [  p  [  p  \  p  \?  p  \g  p  \  p  \  p  \  p  ]  p  ]-  p  ]U  p  ]{  p  ]  p  ]  p  ]  p  ^  p  ^A  p  ^i  p  ^  p  ^  p  ^  p  _  p  _/  p  _W  p  _  p  _  p  _  p  _  p  `  p  `E  p  `m  p  `  p  `  p  `  p  a  p  a5  p  a[  p  a  p  a  p  a  p  a  p  b!  p  bI  p  bq  p  b  p  b  p  b  p  c  p  c9  p  ca  p  c  p  c  p  c  p  c  p  d'  p  dO  p  dw  p  d  p  d  p  d  p  e  p  e<  p  ed  p  e  p  e  p  e  p  f  p  f,  p  fT  p  f|  p  f  p  f  p  f  p  g  p  gC  p  gk  p  g  p  g  p  g  p  h  p  h3  p  h[  p  h  p  h  p  h  p  h  p  i#  p  iK  p  is  p  i  p  i  p  i  p  j  p  j;  p  jc  p  j  p  j  p  j  p  k  p  k+  p  kS  p  k{  p  k  p  k  p  k  p  l  q   l?  q  lg  q  l  q  l  q  l  q  m  q  m.  q  mV  q  m|  q	  m  q
  m  q  m  q  n  q  nC  q  nk  q  n  q  n  q  n  q  o  q  o0  q  oX  q  o  q  o  q  o  q  o  q  p   q  pH  q  pp  q  p  q  p  q  p  q  q  q   q4  q!  q\  q"  q  q#  q  q$  q  q%  q  q&  r!  q'  rG  q(  ro  q)  r  q*  r  q+  r  q,  s  q-  s3  q.  s[  q/  s  q0  s  q1  s  q2  s  q3  t#  q4  tK  q5  ts  q6  t  q7  t  q8  t  q9  u  q:  u:  q;  ub  q<  u  q=  u  q>  u  q?  u  q@  v'  qA  vO  qB  vw  qC  v  qD  v  qE  v  qF  w  qG  w?  qH  wg  qI  w  qJ  w  qK  w  qL  x  qM  x/  qN  xW  qO  x  qP  x  qQ  x  qR  x  qS  y  qT  yG  qU  ym  qV  y  qW  y  qX  y  qY  z  qZ  z4  q[  z[  q\  z  q]  z  q^  z  q_  z  q`  {   qa  {H  qb  {p  qc  {  qd  {  qe  {  qf  |  qg  |6  qh  |[  qi  |  qj  |  qk  |  ql  |  qm  }#  qn  }I  qo  }q  qp  }  qq  }  qr  }  qs  ~  qt  ~7  qu  ~_  qv  ~  qw  ~  qx  ~  qy  ~  qz  '  q{  O  q|  w  q}    q~    q    q    q  =  q  e  q    q    q    q    q  -  q  U  q  |  q    q    q    q    q  >  q  f  q    q    q    q    q  .  q  V  q  ~  q    q    q    q    q  E  q  m  q    q    q    q    q  5  q  ]  q    q    q    q    q  %  q  M  q  u  q    q    q    q    q  =  q  e  q    q    q    q    q  -  q  U  q  }  q    q    q    q    q  E  q  m  q    q    q    q    q  5  q  ]  q    q    q    q    q  %  q  M  q  u  q    q    q    q    q  =  q  e  q    q    q    q    q  -  q  U  q  }  q    q    q    q    q  E  q  l  q    q    q    q    q  4  q  \  q    q    q    q    q  $  q  L  q  t  q    q    q    q    q  :  q  b  q    q    q    q    q  *  q  R  q  z  q    q    q    q    q  B  q  j  q    q    q    r   
  r  2  r  Z  r    r    r    r    r  "  r  J  r	  r  r
    r    r    r    r  :  r  b  r    r    r    r    r  *  r  R  r  z  r    r    r    r    r  B  r  j  r    r    r    r   
  r!  2  r"  Z  r#    r$    r%    r&    r'  "  r(  J  r)  r  r*    r+    r,    r-     r.  (  r/  P  r0  x  r1    r2    r3    r4    r5  <  r6  b  r7    r8    r9    r:    r;  *  r<  R  r=  y  r>    r?    r@    rA    rB  8  rC  `  rD    rE    rF    rG     rH  $  rI  L  rJ  t  rK    rL    rM    rN    rO  :  rP  b  rQ    rR    rS    rT    rU  *  rV  R  rW  z  rX    rY    rZ    r[    r\  ?  r]  W  r^  }  r_    r`    ra    rb    rc  C  rd  i  re    rf    rg    rh  	  ri  1  rj  W  rk    rl    rm    rn    ro    rp  E  rq  k  rr    rs    rt    ru    rv  3  rw  [  rx    ry    rz    r{    r|  #  r}  K  r~  s  r    r    r    r    r  :  r  b  r    r    r    r    r  *  r  R  r  z  r    r    r    r    r  @  r  h  r    r    r    r    r  .  r  V  r  ~  r    r    r    r    r  F  r  n  r    r    r    r    r  6  r  ^  r    r    r    r    r  &  r  N  r  v  r    r    r    r    r  +  r  S  r  {  r    r    r    r    r  @  r  h  r    r    r    r    r  -  r  T  r  |  r    r    r    r    r  B  r  j  r    r    r    r    r  .  r  U  r  |  r    r    r    r    r  A  r  i  r    r    r    r    r  .  r  T  r  |  r    r    r    r    r  @  r  h  r    r    r    r    r  .  r  V  r  |  r    r    r    r    r  B  r  j  r    r    r    r  
  r  2  r  Z  r    r    r    r    r  !  r  F  r  m  r    r    r    r    r  4  r  \  s     s    s    s    s  !  s  I  s  q  s    s    s	    s
    s  8  s  `  s    s    s    s    s  &  s  M  s  s  s    s    s    s    s  8  s  `  s    s    s    s    s  '  s  O  s   v  s!    s"    s#    s$    s%  <  s&  c  s'    s(    s)    s*     s+  (  s,  P  s-  u  s.    s/    s0    s1    s2  <  s3  c  s4  Ê  s5  ò  s6    s7     s8  (  s9  M  s:  u  s;  ĝ  s<    s=    s>    s?  ;  s@  c  sA  ŋ  sB  Ű  sC    sD    sE  '  sF  O  sG  w  sH  Ɵ  sI    sJ    sK    sL  ?  sM  f  sN  ǎ  sO  Ƕ  sP    sQ    sR  .  sS  V  sT  ~  sU  Ȧ  sV    sW    sX    sY  E  sZ  m  s[  ɕ  s\  ɽ  s]    s^    s_  4  s`  \  sa  ʄ  sb  ʬ  sc    sd    se  $  sf  L  sg  t  sh  ˛  si    sj    sk    sl  :  sm  b  sn  ̊  so  ̱  sp    sq    sr  )  ss  Q  st  x  su  ͠  sv    sw    sx    sy  @  sz  h  s{  ΐ  s|  θ  s}    s~    s  /  s  V  s  }  s  ϥ  s    s    s    s  E  s  l  s  Д  s  м  s    s    s  )  s  P  s  w  s  ќ  s    s    s    s  3  s  Y  s    s  Ҧ  s    s    s    s  @  s  g  s  ӎ  s  ӵ  s    s    s  -  s  U  s  |  s  Ԥ  s    s    s    s  A  s  i  s  Ռ  s  ձ  s    s    s  (  s  O  s  w  s  ֜  s    s    s    s  :  s  a  s  ׉  s  װ  s    s    s  &  s  M  s  u  s  ؜  s    s    s    s  2  s  W  s  |  s  ٤  s    s    s    s  >  s  f  s  ڍ  s  ڴ  s    s     s  (  s  P  s  s  s  ۚ  s    s    s    s  :  s  b  s  ܊  s  ܲ  s    s    s  '  s  O  s  w  s  ݞ  s    s    s    s  <  s  c  s  މ  s  ޱ  s    s     s  (  s  P  s  x  s  ߟ  s    s    s    s  >  s  e  s    s    s    s    s  *  s  O  s  w  s    s    s    s    s  =  s  d  s    s    t     t    t  )  t  Q  t  y  t    t    t    t    t	  =  t
  e  t    t    t    t    t  ,  t  S  t  {  t    t    t    t    t  A  t  i  t    t    t    t    t  /  t  W  t    t    t     t!    t"    t#  E  t$  m  t%    t&    t'    t(  
  t)  1  t*  Y  t+    t,    t-    t.    t/     t0  H  t1  p  t2    t3    t4    t5    t6  3  t7  Z  t8    t9    t:    t;    t<    t=  G  t>  o  t?    t@    tA    tB    tC  4  tD  \  tE    tF    tG    tH    tI    tJ  E  tK  m  tL    tM    tN    tO    tP  4  tQ  \  tR    tS    tT    tU    tV  "  tW  J  tX  r  tY    tZ    t[    t\    t]  7  t^  ^  t_    t`    ta    tb    tc  #  td  I  te  q  tf    tg    th    ti    tj  5  tk  \  tl    tm    tn    to    tp  "  tq  J  tr  r  ts    tt    tu    tv    tw  8  tx  `  ty    tz    t{    t|    t}  '  t~  O  t  v  t    t    t    t    t  <  t  d  t    t    t    t    t  *  t  R  t  z  t    t    t    t    t  A  t  h  t    t    t    t    t  .  t  V  t  ~  t    t    t    t    t  E  t  m  t    t    t    t  
  t  2  t  Z  t    t    t    t    t  !  t  I  t  q  t    t    t    t    t  5  t  \  t    t    t    t    t  #  t  K  t  s  t    t    t    t     t   :  t   b  t     t     t     t     t  (  t  P  t  x  t    t    t    t    t  @  t  g  t    t    t    t    t  /  t  V  t    t    t    t    t     t  H  t  p  t    t    t    t    t  8  t  `  t    t    t    t     t  (  t  P  t  x  t    t    t    t    t  9  t  a  t    t    t    t    t  $  t  K  t  r  t    t    t    t  	  t  	8  t  	]  t  	  t  	  t  	  t  	  t  
  t  
F  u   
n  u  
  u  
  u  
  u  
  u  1  u  V  u  z  u    u	    u
    u    u  B  u  i  u    u    u    u    u  -  u  U  u  }  u    u    u    u    u  ?  u  g  u    u    u    u    u  /  u   V  u!  {  u"    u#    u$    u%    u&  B  u'  j  u(    u)    u*    u+     u,  (  u-  G  u.  o  u/    u0    u1    u2    u3    u4  8  u5  X  u6  |  u7    u8    u9    u:    u;  .  u<  U  u=  |  u>    u?    u@    uA    uB  6  uC  \  uD    uE    uF    uG    uH    uI  :  uJ  `  uK    uL    uM    uN    uO    uP  F  uQ  m  uR    uS    uT    uU  	  uV  )  uW  O  uX  w  uY    uZ    u[    u\    u]  3  u^  [  u_    u`    ua    ub    uc    ud  ;  ue  a  uf    ug    uh    ui    uj  #  uk  K  ul  s  um    un    uo    up    uq  6  ur  Y  us    ut    uu    uv    uw     ux  G  uy  m  uz    u{    u|    u}    u~  +  u  S  u  {  u    u    u    u    u  >  u  e  u    u    u    u    u  *  u  O  u  w  u    u    u    u     u   <  u   d  u     u     u     u  !  u  !,  u  !T  u  !|  u  !  u  !  u  !  u  "  u  "D  u  "l  u  "  u  "  u  "  u  #  u  #4  u  #\  u  #  u  #  u  #  u  #  u  $$  u  $L  u  $t  u  $  u  $  u  $  u  %  u  %<  u  %d  u  %  u  %  u  %  u  &  u  &,  u  &T  u  &|  u  &  u  &  u  &  u  '  u  'D  u  'l  u  '  u  '  u  '  u  (  u  (4  u  (\  u  (  u  (  u  (  u  (  u  )$  u  )L  u  )t  u  )  u  )  u  )  u  *  u  *<  u  *d  u  *  u  *  u  *  u  +  u  +,  u  +T  u  +|  u  +  u  +  u  +  u  ,  u  ,D  u  ,l  u  ,  u  ,  u  ,  u  -  u  -4  u  -\  u  -  u  -  u  -  u  -  u  .$  u  .L  u  .t  u  .  u  .  u  .  u  /  u  /<  u  /d  u  /  u  /  u  /  u  0  u  0,  u  0T  u  0|  u  0  u  0  u  0  u  1  u  1D  v   1l  v  1  v  1  v  1  v  2  v  24  v  2\  v  2  v  2  v	  2  v
  2  v  3$  v  3L  v  3t  v  3  v  3  v  3  v  4  v  4<  v  4d  v  4  v  4  v  4  v  5  v  5,  v  5T  v  5|  v  5  v  5  v  5  v  6  v  6D  v   6l  v!  6  v"  6  v#  6  v$  7  v%  74  v&  7\  v'  7  v(  7  v)  7  v*  7  v+  8$  v,  8L  v-  8t  v.  8  v/  8  v0  8  v1  9  v2  9<  v3  9d  v4  9  v5  9  v6  9  v7  :  v8  :,  v9  :T  v:  :|  v;  :  v<  :  v=  :  v>  ;  v?  ;D  v@  ;l  vA  ;  vB  ;  vC  ;  vD  <  vE  <4  vF  <\  vG  <  vH  <  vI  <  vJ  <  vK  =$  vL  =L  vM  =t  vN  =  vO  =  vP  =  vQ  >  vR  ><  vS  >d  vT  >  vU  >  vV  >  vW  ?  vX  ?,  vY  ?T  vZ  ?|  v[  ?  v\  ?  v]  ?  v^  @  v_  @D  v`  @l  va  @  vb  @  vc  @  vd  A  ve  A4  vf  A\  vg  A  vh  A  vi  A  vj  A  vk  B$  vl  BL  vm  Bt  vn  B  vo  B  vp  B  vq  C  vr  C<  vs  Cd  vt  C  vu  C  vv  C  vw  D  vx  D)  vy  DQ  vz  Dy  v{  D  v|  D  v}  D  v~  E  v  E7  v  EZ  v  E|  v  E  v  E  v  E  v  F  v  F7  v  FY  v  F  v  F  v  F  v  F  v  G  v  G?  v  G_  v  G  v  G  v  G  v  G  v  H  v  HD  v  Hj  v  H  v  H  v  H  v  H  v  I'  v  IL  v  Ip  v  I  v  I  v  I  v  J
  v  J0  v  JV  v  J|  v  J  v  J  v  J  v  K  v  K:  v  Kb  v  K  v  K  v  K  v  K  v  L"  v  LJ  v  Lr  v  L  v  L  v  L  v  M  v  M:  v  Mb  v  M  v  M  v  M  v  N  v  N*  v  NR  v  Nz  v  N  v  N  v  N  v  O  v  O7  v  O\  v  O  v  O  v  O  v  O  v  P  v  P@  v  Pg  v  P  v  P  v  P  v  Q  v  Q*  v  QR  v  Qy  v  Q  v  Q  v  Q  v  R  v  R=  v  Re  v  R  v  R  v  R  v  S  v  S(  v  SO  v  Sv  v  S  v  S  v  S  v  T  v  T9  v  T^  v  T  v  T  v  T  v  T  v  U#  v  UJ  v  Ur  v  U  v  U  v  U  v  V  v  V+  v  VP  v  Vu  v  V  v  V  v  V  v  W  v  W1  v  WU  v  W{  v  W  v  W  v  W  v  X  v  X8  v  X^  w   X  w  X  w  X  w  X  w  Y  w  Y9  w  Y_  w  Y  w  Y  w	  Y  w
  Y  w  Z  w  ZB  w  Ze  w  Z  w  Z  w  Z  w  Z  w  [  w  [>  w  [d  w  [  w  [  w  [  w  [  w  \  w  \D  w  \l  w  \  w  \  w  \  w  ]  w   ],  w!  ]Q  w"  ]w  w#  ]  w$  ]  w%  ]  w&  ^  w'  ^5  w(  ^X  w)  ^}  w*  ^  w+  ^  w,  ^  w-  _  w.  _8  w/  _]  w0  _  w1  _  w2  _  w3  _  w4  `  w5  `9  w6  `_  w7  `  w8  `  w9  `  w:  `  w;  a  w<  aB  w=  ag  w>  a  w?  a  w@  a  wA  b  wB  b(  wC  bL  wD  br  wE  b  wF  b  wG  b  wH  c  wI  c*  wJ  cO  wK  ct  wL  c  wM  c  wN  c  wO  d  wP  d0  wQ  dV  wR  d{  wS  d  wT  d  wU  d  wV  e  wW  e9  wX  e\  wY  e  wZ  e  w[  e  w\  e  w]  f  w^  f@  w_  ff  w`  f  wa  f  wb  f  wc  f  wd  g'  we  gL  wf  gr  wg  g  wh  g  wi  g  wj  h  wk  h.  wl  hT  wm  hz  wn  h  wo  h  wp  h  wq  i  wr  i4  ws  iW  wt  i}  wu  i  wv  i  ww  i  wx  j  wy  j9  wz  j_  w{  j  w|  j  w}  j  w~  j  w  k  w  kE  w  km  w  k  w  k  w  k  w  l  w  l.  w  lT  w  ly  w  l  w  l  w  l  w  m  w  m8  w  m`  w  m  w  m  w  m  w  m  w  n!  w  nG  w  nm  w  n  w  n  w  n  w  o   w  o&  w  oL  w  ot  w  o  w  o  w  o  w  p  w  p0  w  pX  w  p  w  p  w  p  w  p  w  q  w  q<  w  qd  w  q  w  q  w  q  w  q  w  r'  w  rO  w  ru  w  r  w  r  w  r  w  s  w  s2  w  sZ  w  s  w  s  w  s  w  s  w  t  w  tA  w  tg  w  t  w  t  w  t  w  u   w  u(  w  uN  w  ut  w  u  w  u  w  u  w  v  w  v1  w  vW  w  v  w  v  w  v  w  v  w  w  w  w>  w  wd  w  w  w  w  w  w  w  w  w  x$  w  xJ  w  xr  w  x  w  x  w  x  w  y  w  y7  w  y_  w  y  w  y  w  y  w  y  w  z#  w  zK  w  zq  w  z  w  z  w  z  w  {  w  {3  w  {[  w  {  w  {  w  {  w  {  w  |#  w  |K  w  |s  w  |  w  |  w  |  w  }  w  }4  w  }[  w  }  w  }  w  }  w  }  w  ~  w  ~@  w  ~g  x   ~  x  ~  x  ~  x    x  ,  x  T  x  |  x    x    x	    x
    x  A  x  h  x    x    x    x    x  .  x  U  x  |  x    x    x    x    x  B  x  i  x    x    x    x    x  +  x  S  x   {  x!    x"    x#    x$    x%  6  x&  ^  x'    x(    x)    x*    x+  #  x,  J  x-  q  x.    x/    x0    x1    x2  7  x3  ^  x4    x5    x6    x7    x8    x9  B  x:  j  x;    x<    x=    x>    x?  -  x@  U  xA  {  xB    xC    xD    xE    xF  >  xG  f  xH    xI    xJ    xK    xL  ,  xM  T  xN  {  xO    xP    xQ    xR    xS  @  xT  g  xU    xV    xW    xX    xY  '  xZ  N  x[  v  x\    x]    x^    x_    x`  9  xa  a  xb    xc    xd    xe    xf  )  xg  P  xh  u  xi    xj    xk    xl    xm  <  xn  c  xo    xp    xq    xr    xs  &  xt  N  xu  v  xv    xw    xx    xy    xz  =  x{  d  x|    x}    x~    x    x  (  x  P  x  x  x    x    x    x    x  ?  x  g  x    x    x    x    x  +  x  R  x  z  x    x    x    x    x  A  x  i  x    x    x    x  	  x  0  x  X  x    x    x    x    x    x  F  x  n  x    x    x    x  
  x  2  x  X  x    x    x    x    x    x  C  x  j  x    x    x    x  	  x  1  x  X  x    x    x    x    x    x  F  x  n  x    x    x    x  
  x  1  x  Y  x    x    x    x    x     x  H  x  p  x    x    x    x    x  7  x  _  x    x    x    x    x  $  x  L  x  s  x    x    x    x    x  :  x  `  x    x    x    x    x  '  x  O  x  w  x    x    x    x    x  <  x  d  x    x    x    x    x  ,  x  T  x  |  x    x    x    x    x  C  x  j  x    x    x    x  	  x  1  x  Y  x    x    x    y     y     y  H  y  p  y    y    y    y    y  8  y	  `  y
    y    y    y    y  &  y  N  y  v  y    y    y    y    y  =  y  e  y    y    y    y    y  +  y  R  y  z  y    y    y     y!    y"  ?  y#  g  y$    y%    y&    y'    y(  .  y)  Q  y*  y  y+    y,    y-    y.    y/  @  y0  h  y1    y2    y3    y4    y5  /  y6  W  y7    y8    y9    y:    y;    y<  3  y=  Y  y>    y?    y@    yA    yB    yC  C  yD  i  yE    yF    yG    yH  	  yI  1  yJ  Y  yK    yL    yM    yN    yO    yP  G  yQ  o  yR    yS    yT    yU    yV  5  yW  ]  yX    yY    yZ    y[    y\  $  y]  L  y^  t  y_    y`    ya    yb    yc  8  yd  `  ye    yf    yg    yh     yi  '  yj  O  yk  w  yl    ym    yn    yo    yp  ?  yq  g  yr    ys    yt    yu    yv  /  yw  W  yx    yy    yz    y{    y|    y}  E  y~  m  y    y    y    y    y  3  y  [  y    y    y    y    y  #  y  K  y  s  y    y    y    y    y  ;  y  c  y    y    y    y    y  +  y  S  y  {  y    y    y    y    y  C  y  k  y    y    y    y    y  3  y  [  y    y    y    y    y  #  y  K  y  s  y    y    y    y    y  ;  y  c  y    y    y    y    y  +  y  S  y  {  y    y    y    y    y  2  y  Z  y  Â  y  ê  y    y    y  "  y  J  y  r  y  Ě  y    y    y    y  8  y  `  y  ň  y  Ű  y    y    y  &  y  N  y  v  y  ƞ  y    y    y    y  >  y  f  y  ǎ  y  Ƕ  y    y    y  .  y  V  y  |  y  Ȥ  y    y    y    y  D  y  l  y  ɔ  y  ɼ  y    y    y  4  y  \  y  ʄ  y  ʬ  y    y    y  $  y  L  y  t  y  ˜  y    y    y    y  :  y  b  y  ̊  y  ̲  y    y    y  *  y  P  y  x  z   ͠  z    z    z    z  @  z  h  z  ΐ  z  θ  z    z	    z
  .  z  V  z  }  z  ϥ  z    z    z    z  C  z  k  z  Б  z  й  z    z  	  z  1  z  Y  z  с  z  ѩ  z    z    z  !  z  I  z  q  z   ҙ  z!  ҿ  z"    z#    z$  7  z%  _  z&  Ӈ  z'  ӯ  z(    z)    z*  '  z+  O  z,  w  z-  ԟ  z.    z/    z0    z1  ?  z2  g  z3  Տ  z4  շ  z5    z6    z7  /  z8  W  z9    z:  ֧  z;    z<    z=    z>  G  z?  o  z@  ח  zA  ׿  zB    zC    zD  7  zE  _  zF  ؇  zG  د  zH    zI    zJ  '  zK  O  zL  w  zM  ٟ  zN    zO    zP    zQ  ?  zR  g  zS  ڏ  zT  ڷ  zU    zV    zW  /  zX  W  zY    zZ  ۧ  z[    z\    z]    z^  G  z_  o  z`  ܗ  za  ܿ  zb    zc    zd  7  ze  _  zf  ݇  zg  ݯ  zh    zi    zj  '  zk  O  zl  w  zm  ޟ  zn    zo    zp    zq  ?  zr  g  zs  ߏ  zt  ߷  zu    zv    zw  .  zx  V  zy  ~  zz    z{    z|    z}    z~  E  z  m  z    z    z    z    z  5  z  ]  z    z    z    z    z  %  z  M  z  u  z    z    z    z    z  =  z  e  z    z    z    z    z  ,  z  T  z  |  z    z    z    z    z  D  z  l  z    z    z    z    z  4  z  \  z    z    z    z    z  $  z  L  z  t  z    z    z    z    z  <  z  d  z    z    z    z    z  ,  z  T  z  |  z    z    z    z    z  D  z  l  z    z    z    z    z  4  z  \  z    z    z    z    z  $  z  L  z  s  z    z    z    z    z  ;  z  c  z    z    z    z    z  *  z  R  z  z  z    z    z    z    z  >  z  f  z    z    z    z    z  .  z  V  z  ~  z    z    z    z    z  B  z  j  z    z    z    z  
  z  2  z  Z  z    z    z    z    z  !  z  I  z  q  z    z    z    z    z  8  z  `  {     {    {    {    {  &  {  N  {  v  {    {    {	    {
    {  >  {  f  {    {    {    {    {  .  {  V  {  ~  {    {    {    {    {  E  {  m  {    {    {    {    {  5  {  ]  {     {!    {"    {#    {$  #  {%  K  {&  s  {'    {(    {)    {*    {+  :  {,  b  {-    {.    {/    {0    {1  *  {2  R  {3  z  {4    {5    {6    {7    {8  B  {9  j  {:    {;    {<    {=  	  {>  0  {?  X  {@    {A    {B    {C    {D      {E   H  {F   p  {G     {H     {I     {J    {K  8  {L  `  {M    {N    {O    {P     {Q  (  {R  P  {S  x  {T    {U    {V    {W    {X  @  {Y  h  {Z    {[    {\    {]    {^  0  {_  X  {`    {a    {b    {c    {d     {e  H  {f  p  {g    {h    {i    {j    {k  7  {l  _  {m    {n    {o    {p    {q  '  {r  O  {s  w  {t    {u    {v    {w    {x  ?  {y  g  {z    {{    {|    {}  	  {~  	/  {  	V  {  	~  {  	  {  	  {  	  {  
  {  
F  {  
n  {  
  {  
  {  
  {    {  6  {  ^  {    {    {    {    {  &  {  N  {  v  {    {    {    {    {  >  {  f  {    {    {    {    {  -  {  U  {  }  {    {    {    {    {  E  {  m  {    {    {    {    {  5  {  ]  {    {    {    {    {  %  {  M  {  u  {    {    {    {    {  =  {  e  {    {    {    {    {  -  {  U  {  }  {    {    {    {    {  D  {  l  {    {    {    {    {  4  {  \  {    {    {    {    {  $  {  L  {  t  {    {    {    {    {  <  {  d  {    {    {    {    {  +  {  S  {  {  {    {    {    {    {  C  {  k  {    {    {    {    {  3  {  [  {    {    {    {    {  "  {  J  {  r  {    {    {    {    {  :  {  b  {    {    {    {    {  *  {  R  |   z  |    |    |    |    |  B  |  j  |    |    |	    |
  	  |  1  |  Y  |    |    |    |    |   !  |   I  |   q  |     |     |     |  !  |  !9  |  !a  |  !  |  !  |  !  |  "  |  ")  |  "Q  |   "y  |!  "  |"  "  |#  "  |$  #  |%  #A  |&  #i  |'  #  |(  #  |)  #  |*  $	  |+  $1  |,  $Y  |-  $  |.  $  |/  $  |0  $  |1  %!  |2  %I  |3  %q  |4  %  |5  %  |6  %  |7  &  |8  &9  |9  &a  |:  &  |;  &  |<  &  |=  '  |>  ')  |?  'Q  |@  'y  |A  '  |B  '  |C  '  |D  (  |E  (A  |F  (i  |G  (  |H  (  |I  (  |J  )	  |K  )1  |L  )Y  |M  )  |N  )  |O  )  |P  )  |Q  *!  |R  *I  |S  *q  |T  *  |U  *  |V  *  |W  +  |X  +9  |Y  +a  |Z  +  |[  +  |\  +  |]  ,  |^  ,)  |_  ,Q  |`  ,y  |a  ,  |b  ,  |c  ,  |d  -  |e  -A  |f  -i  |g  -  |h  -  |i  -  |j  .	  |k  .1  |l  .Y  |m  .  |n  .  |o  .  |p  .  |q  /!  |r  /I  |s  /q  |t  /  |u  /  |v  /  |w  0  |x  09  |y  0a  |z  0  |{  0  ||  0  |}  0  |~  1'  |  1M  |  1u  |  1  |  1  |  1  |  2  |  2=  |  2c  |  2  |  2  |  2  |  3  |  3+  |  3S  |  3y  |  3  |  3  |  3  |  4  |  4A  |  4i  |  4  |  4  |  4  |  5  |  5/  |  5W  |  5}  |  5  |  5  |  5  |  6  |  6E  |  6m  |  6  |  6  |  6  |  7  |  75  |  7[  |  7  |  7  |  7  |  7  |  8#  |  8K  |  8q  |  8  |  8  |  8  |  9  |  98  |  9`  |  9  |  9  |  9  |  :   |  :(  |  :P  |  :x  |  :  |  :  |  :  |  ;  |  ;@  |  ;h  |  ;  |  ;  |  ;  |  <  |  <0  |  <X  |  <  |  <  |  <  |  <  |  =   |  =H  |  =p  |  =  |  =  |  =  |  >  |  >8  |  >`  |  >  |  >  |  >  |  ?   |  ?(  |  ?P  |  ?x  |  ?  |  ?  |  ?  |  @  |  @@  |  @h  |  @  |  @  |  @  |  A  |  A0  |  AX  |  A  |  A  |  A  |  A  |  B   |  BH  |  Bp  |  B  |  B  |  B  |  C  |  C8  |  C`  |  C  |  C  |  C  |  D   |  D(  |  DL  |  De  |  D  |  D  |  D  |  D  |  E"  }   EH  }  Eo  }  E  }  E  }  E  }  F  }  F4  }  F\  }  F  }	  F  }
  F  }  F  }  G!  }  GI  }  Gq  }  G  }  G  }  G  }  H  }  H8  }  H`  }  H  }  H  }  H  }  H  }  I$  }  IL  }  It  }  I  }  I  }  I  }  J  }   J:  }!  Jb  }"  J  }#  J  }$  J  }%  K  }&  K&  }'  KM  }(  Kq  })  K  }*  K  }+  K  },  L  }-  L4  }.  L\  }/  L  }0  L  }1  L  }2  L  }3  M  }4  M>  }5  Mf  }6  M  }7  M  }8  M  }9  N  }:  N*  };  NR  }<  Nz  }=  N  }>  N  }?  N  }@  O  }A  O?  }B  Of  }C  O  }D  O  }E  O  }F  P  }G  P,  }H  PR  }I  Px  }J  P  }K  P  }L  P  }M  Q  }N  Q?  }O  Qg  }P  Q  }Q  Q  }R  Q  }S  R  }T  R,  }U  RT  }V  R{  }W  R  }X  R  }Y  R  }Z  S  }[  S@  }\  Sh  }]  S  }^  S  }_  S  }`  T  }a  T+  }b  TS  }c  Ty  }d  T  }e  T  }f  T  }g  U  }h  UA  }i  Ui  }j  U  }k  U  }l  U  }m  V  }n  V+  }o  VQ  }p  Vy  }q  V  }r  V  }s  V  }t  W  }u  W@  }v  Wh  }w  W  }x  W  }y  W  }z  X  }{  X+  }|  XS  }}  X{  }~  X  }  X  }  X  }  Y  }  YC  }  Yk  }  Y  }  Y  }  Y  }  Z	  }  Z1  }  ZY  }  Z  }  Z  }  Z  }  Z  }  [!  }  [I  }  [q  }  [  }  [  }  [  }  \  }  \8  }  \_  }  \  }  \  }  \  }  \  }  ]&  }  ]M  }  ]u  }  ]  }  ]  }  ]  }  ^  }  ^<  }  ^b  }  ^  }  ^  }  ^  }  _   }  _(  }  _P  }  _x  }  _  }  _  }  _  }  `  }  `@  }  `f  }  `  }  `  }  `  }  a  }  a.  }  aV  }  a~  }  a  }  a  }  a  }  b  }  bF  }  bn  }  b  }  b  }  b  }  c  }  c6  }  c^  }  c  }  c  }  c  }  c  }  d&  }  dN  }  dv  }  d  }  d  }  d  }  e  }  e<  }  ec  }  e  }  e  }  e  }  f  }  f+  }  fS  }  f{  }  f  }  f  }  f  }  g  }  gA  }  gi  }  g  }  g  }  g  }  h  }  h0  }  hX  }  h  }  h  }  h  }  h  }  i  }  iG  }  io  }  i  }  i  }  i  }  j  }  j6  }  j^  }  j  }  j  }  j  }  j  }  k&  }  kN  }  kv  }  k  }  k  }  k  }  l  }  l=  }  ld  }  l  }  l  ~   l  ~  m  ~  m,  ~  mS  ~  m{  ~  m  ~  m  ~  m  ~  n  ~	  nB  ~
  nj  ~  n  ~  n  ~  n  ~  o  ~  o/  ~  oW  ~  o}  ~  o  ~  o  ~  o  ~  p  ~  pC  ~  pk  ~  p  ~  p  ~  p  ~  q  ~  q3  ~  q[  ~  q  ~  q  ~   q  ~!  q  ~"  r!  ~#  rI  ~$  rp  ~%  r  ~&  r  ~'  r  ~(  s  ~)  s8  ~*  s`  ~+  s  ~,  s  ~-  s  ~.  t   ~/  t(  ~0  tP  ~1  tx  ~2  t  ~3  t  ~4  t  ~5  u  ~6  u@  ~7  uh  ~8  u  ~9  u  ~:  u  ~;  v  ~<  v/  ~=  vW  ~>  v  ~?  v  ~@  v  ~A  v  ~B  w  ~C  wG  ~D  wo  ~E  w  ~F  w  ~G  w  ~H  x
  ~I  x2  ~J  xZ  ~K  x  ~L  x  ~M  x  ~N  x  ~O  y"  ~P  yJ  ~Q  yr  ~R  y  ~S  y  ~T  y  ~U  z  ~V  z:  ~W  zb  ~X  z  ~Y  z  ~Z  z  ~[  {  ~\  {*  ~]  {R  ~^  {z  ~_  {  ~`  {  ~a  {  ~b  |  ~c  |B  ~d  |j  ~e  |  ~f  |  ~g  |  ~h  }
  ~i  }2  ~j  }Z  ~k  }  ~l  }  ~m  }  ~n  }  ~o  ~"  ~p  ~J  ~q  ~r  ~r  ~  ~s  ~  ~t  ~  ~u    ~v  :  ~w  b  ~x    ~y    ~z    ~{    ~|  *  ~}  R  ~~  z  ~    ~    ~    ~    ~  A  ~  i  ~    ~    ~    ~    ~  0  ~  X  ~    ~    ~    ~    ~    ~  @  ~  h  ~    ~    ~    ~    ~  0  ~  X  ~    ~    ~    ~    ~     ~  H  ~  p  ~    ~    ~    ~    ~  #  ~  K  ~  s  ~    ~    ~    ~    ~  :  ~  a  ~    ~    ~    ~    ~  %  ~  L  ~  t  ~    ~    ~    ~    ~  8  ~  `  ~    ~    ~    ~    ~  %  ~  L  ~  t  ~    ~    ~    ~    ~  ;  ~  b  ~    ~    ~    ~    ~  $  ~  L  ~  t  ~    ~    ~    ~    ~  7  ~  _  ~    ~    ~    ~    ~  &  ~  N  ~  v  ~    ~    ~    ~    ~  ;  ~  c  ~    ~    ~    ~    ~  '  ~  O  ~  w  ~    ~    ~    ~    ~  >  ~  f  ~    ~    ~    ~    ~  .  ~  V  ~  ~  ~    ~    ~    ~    ~  D  ~  l  ~    ~    ~    ~    ~  4  ~  \                     "    J    r          	    
      9    a                    '    O    v                    <    d                    ,    T     |  !    "    #    $    %  C  &  k  '    (    )    *    +  3  ,  [  -    .    /    0    1  #  2  K  3  s  4    5    6    7    8  ;  9  b  :    ;    <    =    >  *  ?  R  @  z  A    B    C    D    E  B  F  j  G    H    I    J  
  K  2  L  Z  M    N    O    P    Q  "  R  E  S  V  T  k  U    V    W    X    Y  $  Z  K  [  p  \    ]    ^    _    `  /  a  R  b  w  c    d    e    f    g  4  h  [  i    j    k    l    m    n  E  o  m  p    q    r    s    t  /  u  W  v  {  w    x    y    z    {  :  |  b  }    ~              !    F    l                    /    V    ~                    F    n                    6    ^                    &    N    v                    =    e                    -    U    }                    E    m                    5    ]                    %    M    u                    4    \                         C    i                    ,    S    {                    8    ^                    &    M    u                    4    \                        E    m                    3    [                        A    i                    /    W    ~                     >    f              	    
  .    U    }                    >    f                    .    V    ~                    D    j       !    "    #  
  $  2  %  Z  &    '    (    )    *  "  +  J  ,  r  -    .    /    0    1  :  2  b  3  Ê  4  ñ  5    6     7  '  8  O  9  w  :  ğ  ;    <    =    >  =  ?  e  @  ō  A  ŵ  B    C    D  ,  E  T  F  |  G  Ƥ  H    I    J    K  B  L  j  M  Ǒ  N  ǹ  O    P    Q  .  R  U  S  }  T  Ȥ  U    V    W    X  C  Y  k  Z  ɓ  [  ɻ  \    ]    ^  3  _  V  `  ~  a  ʦ  b    c    d    e  E  f  m  g  ˕  h  ˽  i    j    k  5  l  ]  m  ̅  n  ̭  o    p    q  %  r  M  s  u  t  ͝  u    v    w    x  =  y  e  z  ΍  {  ε  |    }    ~  -    U    }    ϥ                E    m    Е    н        	    0    X        ѧ                D    l    Ҕ    Ҽ            )    Q    q    ә                7    ^    ԅ    Ԭ            $    K    s    ՚                6    ^    ֆ    ֮            &    N    t    ל                <    d    ،    ذ             $    J    r    ٚ                '    N    v    ڞ                8    `    ۈ    ۰            $    K    q    ܙ                9    `    ݅    ݭ            $    L    p    ޗ    ޿            7    _    ߇    ߯            $    I    q                    9    ^                         H    p                     8    `                    $    L  	  t  
                  7    _                    '    O    w                    =    d                   !  +  "  R  #  z  $    %    &    '    (  A  )  i  *    +    ,    -  	  .  0  /  X  0    1    2    3    4    5  E  6  l  7    8    9    :  
  ;  2  <  Z  =    >    ?    @    A  !  B  I  C  p  D    E    F    G    H  8  I  `  J    K    L    M    N  '  O  M  P  t  Q    R    S    T    U  ;  V  c  W    X    Y    Z    [  *  \  Q  ]  y  ^    _    `    a    b  ?  c  g  d    e    f    g    h  .  i  V  j  ~  k    l    m    n    o  B  p  j  q    r    s    t    u  /  v  V  w  ~  x    y    z    {    |  B  }  i  ~                  /    W    ~                    E    m                    5    ]                    $    K    s                    9    a                     (    P    x                    ?    g                    /    W                        G    n                      6     ]                        %    M    u                    <    d                    ,    T    |                    C    k                    3    [                    #    K    j                    (    O    k                    ,    T    |                	    	A    	i    	    	    	    
    
&    
J    
r     
    
    
        4    Z    |          	    
      C    k                	    1    Y                    !    I    q                    7    _       !    "    #    $  #  %  K  &  s  '    (    )    *    +  ;  ,  c  -    .    /    0    1  )  2  Q  3  y  4    5    6    7    8  =  9  e  :    ;    <    =    >  )  ?  Q  @  y  A    B    C    D    E  ?  F  g  G    H    I    J    K  /  L  W  M    N    O    P    Q    R  G  S  o  T    U    V    W    X  7  Y  _  Z    [    \    ]    ^  '  _  O  `  w  a    b    c    d    e  ?  f  g  g    h    i    j    k  /  l  W  m    n    o    p    q    r  =  s  d  t    u    v    w    x  ,  y  T  z  h  {    |    }    ~      /    W                        G    o                      7     _                        !%    !L    !t    !    !    !    "    ";    "c    "    "    "    #    #*    #R    #z    #    #    #    $    $B    $j    $    $    $    %
    %2    %Z    %    %    %    %    &     &G    &o    &    &    &    '    '6    '^    '    '    '    '    ("    (J    (r    (    (    (    )    ):    )b    )    )    )    *    *)    *Q    *y    *    *    *    +    +>    +f    +    +    +    ,    ,.    ,U    ,}    ,    ,    ,    -    -D    -l    -    -    -    .    .3    .[    .    .    .    .    /#    /K    /s    /    /    /    0    0;    0c    0    0    0    1    1*    1R    1z    1    1    1    2     2@    2h    2    2    2    3    3/    3W    3  	  3  
  3    3    4    4F    4n    4    4    4    5    55    5]    5    5    5    5    6$    6L    6t    6    6    6    7     7:  !  7b  "  7  #  7  $  7  %  8  &  8)  '  8Q  (  8y  )  8  *  8  +  8  ,  9  -  9@  .  9h  /  9  0  9  1  9  2  :  3  :0  4  :X  5  :  6  :  7  :  8  :  9  ;   :  ;H  ;  ;p  <  ;  =  ;  >  ;  ?  <  @  <8  A  <`  B  <  C  <  D  <  E  <  F  =&  G  =L  H  =t  I  =  J  =  K  =  L  >  M  ><  N  >d  O  >  P  >  Q  >  R  ?  S  ?+  T  ?S  U  ?{  V  ?  W  ?  X  ?  Y  @  Z  @C  [  @k  \  @  ]  @  ^  @  _  A  `  A3  a  A[  b  A  c  A  d  A  e  A  f  B#  g  BK  h  Bs  i  B  j  B  k  B  l  C  m  C;  n  Cc  o  C  p  C  q  C  r  D  s  D+  t  DR  u  Dz  v  D  w  D  x  D  y  E  z  EA  {  Ei  |  E  }  E  ~  E    F	    F1    FY    F    F    F    F    G     GH    Gp    G    G    G    H    H8    H`    H    H    H    I     I(    IP    Ix    I    I    I    J    J?    Jg    J    J    J    K    K.    KV    K~    K    K    K    L    LE    Lm    L    L    L    M    M5    M]    M    M    M    M    N$    NL    Nt    N    N    N    O    O;    Oc    O    O    O    P    P+    PS    P{    P    P    P    Q    QC    Qk    Q    Q    Q    R    R3    RZ    R    R    R    R    S"    SJ    Sr    S    S    S    T    T:    Tb    T    T    T    U    U*    UR    Uz    U    U    U    V    VA    Vi    V    V    V    W    W0    WX    W    W    W    W    X     XG    Xo    X    X    X    Y    Y7    Y_    Y    Y    Y    Y     Z'    ZO    Zw    Z    Z    Z    [    [?    [g  	  [  
  [    [    \    \/    \W    \    \    \    \    ]    ]G    ]o    ]    ]    ]    ^    ^7    ^_    ^    ^    ^    ^     _'  !  _O  "  _w  #  _  $  _  %  _  &  `  '  `?  (  `g  )  `  *  `  +  `  ,  a  -  a/  .  aW  /  a  0  a  1  a  2  a  3  b  4  bG  5  bo  6  b  7  b  8  b  9  c  :  c7  ;  c_  <  c  =  c  >  c  ?  c  @  d&  A  dN  B  dv  C  d  D  d  E  d  F  e  G  e=  H  ee  I  e  J  e  K  e  L  f  M  f-  N  fU  O  f}  P  f  Q  f  R  f  S  g  T  gE  U  gm  V  g  W  g  X  g  Y  h  Z  h5  [  h]  \  h  ]  h  ^  h  _  h  `  i%  a  iM  b  iu  c  i  d  i  e  i  f  j  g  j<  h  jd  i  j  j  j  k  j  l  k  m  k,  n  kT  o  k|  p  k  q  k  r  k  s  l  t  lD  u  ll  v  l  w  l  x  l  y  m  z  m4  {  m\  |  m  }  m  ~  m    m    n$    nK    nr    n    n    n    o    o:    ob    o    o    o    p    p*    pR    pz    p    p    p    q    qB    qj    q    q    q    r	    r1    rY    r    r    r    r    s!    sI    sq    s    s    s    t    t9    ta    t    t    t    u     u(    uP    ux    u    u    u    v    v@    vh    v    v    v    w    w0    wX    w    w    w    w    x     xH    xp    x    x    x    y    y8    y`    y    y    y    y    z'    zO    zw    z    z    z    {    {?    {g    {    {    {    |    |/    |W    |    |    |    |    }    }F    }n    }    }    }    ~    ~6    ~^    ~    ~    ~    ~    %    M    t                    :    b                    *    R    z                     B    j                
    2    Z  	    
              "    J    r                    :    b                    *    R    z                   !  B  "  j  #    $    %    &  
  '  2  (  Z  )    *    +    ,    -  "  .  J  /  r  0    1    2    3    4  :  5  b  6    7    8    9    :  *  ;  R  <  z  =    >    ?    @    A  B  B  j  C    D    E    F  
  G  2  H  Z  I    J    K    L    M     N  H  O  p  P    Q    R    S    T  8  U  `  V    W    X    Y     Z  (  [  P  \  x  ]    ^    _    `    a  @  b  h  c    d    e    f    g  0  h  X  i    j    k    l    m     n  H  o  p  p    q    r    s    t  7  u  _  v    w    x    y    z  &  {  N  |  v  }    ~              =    e                    -    U    }                    E    m                    5    ]                    %    M    u                    =    e                    -    U    }                    E    m                    5    ]                    %    M    u                    =    e                    -    U    }                    E    m                    5    ]                    %    M    u                    =    e                    -    U    }                    E    m                    5    \                    $    L    t                     <    d                    ,    T  	  |  
                  C    k                    3    [                    #    K    s                   !  ;  "  c  #    $    %    &    '  +  (  S  )  {  *    +    ,    -    .  C  /  k  0    1    2    3    4  3  5  [  6    7    8    9    :  #  ;  K  <  s  =    >    ?    @    A  ;  B  c  C    D    E    F    G  +  H  S  I  {  J    K    L    M    N  A  O  g  P    Q    R    S    T  -  U  U  V  }  W    X    Y    Z    [  A  \  i  ]    ^    _    `    a  -  b  U  c  }  d    e    f    g    h  E  i  m  j    k    l    m    n  -  o  U  p  {  q    r    s    t    u  =  v  d  w    x    y    z    {  +  |  R  }  y  ~                  :    b                    %    M    u                    :    `                    $    K    s                    9    a        ±             (    P    w    Þ                >    f    Ď    ĵ            -    T    z    Ţ                B    j    Ƒ    ƹ        	    /    U    |    Ǥ                @    h    Ȑ    ȸ            .    V    }    ɥ                D    j    ʒ    ʺ        	    1    Y    }    ˥                D    l    ̔    ̼            4    \    ̈́    ͬ            "    I    m    Ε    ν            3    Y    ρ    ϩ                 H    p    Ж    м            4    \    ф     Ѭ            !    I    q    ҙ          	    
  7    ]    Ӆ    Ӭ            $    L    r    Ԛ                9    a    Չ    ձ            %    M    u     ֝  !    "    #    $  <  %  d  &  ׌  '  ״  (    )    *  *  +  R  ,  z  -  آ  .    /    0    1  A  2  i  3  ّ  4  ٹ  5    6    7  /  8  W  9  |  :  ڤ  ;    <    =    >  D  ?  l  @  ۔  A  ۼ  B    C    D  3  E  [  F  ܃  G  ܫ  H    I    J  #  K  K  L  s  M  ݛ  N    O    P    Q  ;  R  c  S  ދ  T  ޳  U    V    W  *  X  Q  Y  y  Z  ߡ  [    \    ]    ^  A  _  g  `    a    b    c    d  /  e  W  f    g    h    i    j    k  E  l  m  m    n    o    p    q  5  r  ]  s    t    u    v    w    x  G  y  o  z    {    |    }    ~  6    ^                    &    N    u                    =    e                    -    U    }                    E    l                
    2    Z                    !    I    q                    9    a                    )    Q    x                    <    d                    +    S    {                    C    k                    3    [                    #    K    s                    :    b                     (    N    v                    >    f                    .    V    ~                    E    m                    4    \                    $    L     t                    <    d          	    
      *    P    x                    @    h                    0    X                         H     p  !    "    #    $    %  5  &  ]  '    (    )    *    +   %  ,   K  -   s  .     /     0     1    2  ;  3  c  4    5    6    7    8  +  9  S  :  {  ;    <    =    >    ?  C  @  i  A    B    C    D    E  .  F  V  G  ~  H    I    J    K    L  F  M  n  N    O    P    Q    R  6  S  ^  T    U    V    W    X  &  Y  N  Z  v  [    \    ]    ^    _  >  `  f  a    b    c    d  	  e  	  f  	@  g  	h  h  	  i  	  j  	  k  
  l  
.  m  
V  n  
~  o  
  p  
  q  
  r    s  F  t  n  u    v    w    x  
  y  2  z  Z  {    |    }    ~      "    J    p                    8    `                     (    P    x                    <    d                    *    P    x                    @    h                    0    V    |                    D    l                    4    \                    $    L    t                    <    d                    ,    R    z                    @    h                    0    X                         H    p                    8    `                     (    P    x                    @    h                    .    V    ~                      F     n                   !     !4    !\    !    !    !    !    "#    "K    "s  	  "  
  "    "    #    #9    #a    #    #    #    #    $'    $O    $w    $    $    $    %    %?    %g    %    %    %    &     &/  !  &W  "  &  #  &  $  &  %  &  &  '  '  'G  (  'o  )  '  *  '  +  '  ,  (  -  (7  .  (_  /  (  0  (  1  (  2  (  3  )'  4  )O  5  )w  6  )  7  )  8  )  9  *  :  *?  ;  *g  <  *  =  *  >  *  ?  +  @  +/  A  +W  B  +  C  +  D  +  E  +  F  ,  G  ,G  H  ,o  I  ,  J  ,  K  ,  L  -  M  -7  N  -_  O  -  P  -  Q  -  R  -  S  .'  T  .O  U  .w  V  .  W  .  X  .  Y  /  Z  /?  [  /g  \  /  ]  /  ^  /  _  0  `  0/  a  0W  b  0}  c  0  d  0  e  0  f  1  g  1E  h  1m  i  1  j  1  k  1  l  2  m  25  n  2]  o  2  p  2  q  2  r  2  s  3%  t  3M  u  3s  v  3  w  3  x  3  y  4  z  4;  {  4c  |  4  }  4  ~  4    5    5)    5?    5b    5    5    5    6     6(    6P    6x    6    6    6    7    7<    7c    7    7    7    8    8*    8Q    8y    8    8    8    9    9<    9d    9    9    9    :    :)    :P    :x    :    :    :    ;    ;@    ;g    ;    ;    ;    <    <,    <T    <|    <    <    <    =    =D    =l    =    =    =    >	    >1    >Y    >    >    >    >    ?     ?G    ?n    ?    ?    ?    @    @1    @U    @}    @    @    @    A    AB    Aj    A    A    A    B    B,    BR    Bz    B    B    B    C    CB    Ch    C    C    C    D    D0    DT    D|    D    D    D    E    ED    El    E    E    E    F    F4    F\    F    F    F    F    G$    GL    Gt    G    G    G    H    H:    Hb    H    H     H    I    I    IB    Ih    I    I    I    J  	  J,  
  JT    J|    J    J    J    K    KA    Ki    K    K    K    L    L)    LP    Lw    L    L    L    M    M:    Mb    M     M  !  M  "  M  #  N'  $  NO  %  Nw  &  N  '  N  (  N  )  O  *  O=  +  Oe  ,  O  -  O  .  O  /  P  0  P,  1  PS  2  P{  3  P  4  P  5  P  6  Q  7  Q?  8  Qe  9  Q  :  Q  ;  Q  <  R  =  R+  >  RQ  ?  Rw  @  R  A  R  B  R  C  S  D  S=  E  Se  F  S  G  S  H  S  I  T  J  T,  K  TT  L  T|  M  T  N  T  O  T  P  U  Q  UB  R  Ui  S  U  T  U  U  U  V  V  W  V.  X  VV  Y  V|  Z  V  [  V  \  V  ]  W  ^  WB  _  Wh  `  W  a  W  b  W  c  X  d  X.  e  XV  f  X~  g  X  h  X  i  X  j  Y  k  YF  l  Ym  m  Y  n  Y  o  Y  p  Z
  q  Z2  r  ZZ  s  Z  t  Z  u  Z  v  Z  w  ["  x  [J  y  [r  z  [  {  [  |  [  }  \  ~  \:    \b    \    \    \    ]    ])    ]Q    ]y    ]    ]    ]    ^    ^?    ^f    ^    ^    ^    _    _,    _T    _|    _    _    _    `    `B    `j    `    `    `    a    a/    aW    a    a    a    a    b    bF    bn    b    b    b    c    c3    c[    c    c    c    c    d#    dK    ds    d    d    d    e    e;    ec    e    e    e    f    f*    fN    ft    f    f    f    g    g<    gd    g    g    g    h    h+    hS    h{    h    h    h    i    iA    ii    i    i    i    j	    j0    jX    j    j    j    j    k     kH    kp    k    k    k    l    l6    l]    l    l    l    l    m$    mL    mt    m    m    m    n    n;    nb    n    n    n    o    o)    oQ    oy    o    o    o    p    p@     ph    p    p    p    q    q/    qW    q    q  	  q  
  q    r    rG    ro    r    r    r    s    s5    s]    s    s    s    s    t%    tM    tu    t    t    t    u    u<     ub  !  u  "  u  #  u  $  v  %  v*  &  vR  '  vz  (  v  )  v  *  v  +  w  ,  wB  -  wj  .  w  /  w  0  w  1  x	  2  x1  3  xY  4  x  5  x  6  x  7  x  8  y   9  yH  :  yo  ;  y  <  y  =  y  >  z  ?  z7  @  z_  A  z  B  z  C  z  D  z  E  {&  F  {M  G  {u  H  {  I  {  J  {  K  |  L  |:  M  |b  N  |  O  |  P  |  Q  }  R  }*  S  }R  T  }z  U  }  V  }  W  }  X  ~  Y  ~A  Z  ~i  [  ~  \  ~  ]  ~  ^  	  _  1  `  Y  a    b    c    d    e  !  f  I  g  q  h    i    j    k    l  9  m  a  n    o    p    q    r  )  s  Q  t  y  u    v    w    x    y  A  z  i  {    |    }    ~  	    1    Y                         H    p                    8    `                     (    P    x                    @    h                    0    X    m                
    1    X    }                    ?    e                    &    N    s                    7    ^                         H    m                    /    T    |                    ?    e                    &    N    v                    =    e                    ,    T    z                    B    i                    *    P    w                    >    c                    *    R    y                     @    h                    )  	  Q  
  y                    ?    g                    (    P    x                    @    g               !    "  +  #  S  $  {  %    &    '    (    )  @  *  h  +    ,    -    .    /  +  0  S  1  y  2    3    4    5    6  >  7  f  8    9    :    ;    <  ,  =  T  >  |  ?    @    A    B    C  B  D  j  E    F    G    H    I  +  J  S  K  z  L    M    N    O    P  A  Q  e  R    S    T    U    V  ,  W  S  X  z  Y    Z    [    \    ]  ?  ^  f  _    `    a    b    c  +  d  R  e  y  f    g    h    i    j  @  k  h  l    m    n    o    p  /  q  W  r  ~  s    t    u    v    w  A  x  i  y    z    {    |    }  -  ~  U    }                    =    e                    -    U    }                    E    m                    5    ]                    %    H    j                    +    R    z                    ?    f                    *    R    x                    ;    c                    &    N    r                    6    ^                    !    I    q                    7    _                    '    O    v                    <    d                    )    Q    y                    =    d                    +    Q    y                    @    g                    -     T    x                    =    e      	    
          ,    T    |                    A    i        µ            -    U    }    å                 4  !  V  "  y  #  ġ  $    %    &    '  ?  (  e  )  ō  *  ŵ  +    ,    -  -  .  S  /  {  0  ƣ  1    2    3    4  C  5  k  6  Ǔ  7  Ǻ  8    9    :  *  ;  P  <  x  =  Ƞ  >    ?    @    A  7  B  ]  C  Ʌ  D  ɭ  E    F    G  "  H  J  I  q  J  ʙ  K    L    M    N  9  O  a  P  ˅  Q  ˬ  R    S    T    U  E  V  m  W  ̕  X  ̼  Y    Z    [  4  \  \  ]  ͂  ^  ͪ  _    `    a     b  H  c  p  d  Θ  e    f    g    h  8  i  `  j  ψ  k  ϰ  l    m     n  (  o  P  p  x  q  Р  r    s    t    u  @  v  h  w  ѐ  x  Ѹ  y    z    {  0  |  X  }  Ҁ  ~  Ҩ                 H    p    Ә                8    `    Ԉ    ԰             (    P    x    ՠ                @    h    ֐    ָ            0    X    ׀    ר                 H    p    ؘ                8    `    و    ٰ             (    P    x    ڠ                >    d    ۋ    ۲            )    Q    x    ܠ                8    `    ݈    ݯ            &    N    v    ޞ                =    c    ߊ    ߱            %    M    t                    8    _                    #    K    s                    9    a                    $    L    t                    ;    b                    &    M    r                     5    [                  	  #  
  K    p                    7    _                    '    O    v                    :    a           !    "     #  '  $  O  %  w  &    '    (    )    *  ?  +  g  ,    -    .    /    0  .  1  V  2  ~  3    4    5    6    7  A  8  i  9    :    ;    <    =  -  >  U  ?  |  @    A    B    C    D  C  E  k  F    G    H    I  	  J  0  K  X  L    M    N    O    P    Q  F  R  m  S    T    U    V  
  W  2  X  Z  Y    Z    [    \    ]     ^  H  _  o  `    a    b    c    d  7  e  _  f    g    h    i    j  $  k  L  l  s  m    n    o    p    q  8  r  _  s    t    u    v    w  &  x  N  y  v  z    {    |    }    ~  >    f                    -    U    z                    B    j                    0    X                         H    p                    7    _                     '     O     w                       ?    g                    -    U    }                    E    m                    3    [                    #    K    s                    ;    c                    *    R    z                    >    f                	    	.    	V    	~    	    	    	    
    
F    
l    
    
    
        4    \                    $    L    t                    <    b                     (    P     x                    @    h          	    
      0    X                         H    p                    8    `                     (    P     x  !    "    #    $    %  >  &  f  '    (    )    *    +  .  ,  V  -  ~  .    /    0    1    2  F  3  n  4    5    6    7    8  6  9  ^  :    ;    <    =    >  &  ?  N  @  v  A    B    C    D    E  >  F  f  G    H    I    J    K  .  L  V  M  ~  N    O    P    Q    R  F  S  n  T    U    V    W    X  6  Y  ^  Z    [    \    ]    ^  &  _  N  `  v  a    b    c    d    e  >  f  f  g    h    i    j    k  .  l  T  m  |  n    o    p    q     r   D  s   l  t     u     v     w  !
  x  !2  y  !Z  z  !  {  !  |  !  }  !  ~  "     "H    "p    "    "    "    #    #8    #`    #    #    #    $     $(    $P    $x    $    $    $    %    %@    %h    %    %    %    &    &0    &X    &    &    &    &    '     'J    'r    '    '    '    (    (:    (b    (    (    (    )    )*    )R    )z    )    )    )    *    *@    *h    *    *    *    +    +)    +N    +u    +    +    +    ,    ,4    ,[    ,    ,    ,    ,    -    -=    -d    -    -    -    -    .    .D    .k    .    .    .    /    /*    /O    /v    /    /    /    0    05    0\    0    0    0    0    1    1D    1i    1    1    1    2    2(    2O    2v    2    2    2    3    39    3`    3    3    3    3    4!    4F    4k    4    4    4    5    5,    5S    5{    5    5     5    6    6C    6j    6    6    6    7    7.  	  7U  
  7|    7    7    7    8    8A    8h    8    8    8    9    9*    9O    9v    9    9    9    :    :5    :Z    :    :     :  !  :  "  ;  #  ;E  $  ;l  %  ;  &  ;  '  ;  (  <  )  <+  *  <R  +  <y  ,  <  -  <  .  <  /  =  0  =8  1  =`  2  =  3  =  4  =  5  =  6  >#  7  >K  8  >p  9  >  :  >  ;  >  <  ?  =  ?1  >  ?X  ?  ?  @  ?  A  ?  B  ?  C  @  D  @E  E  @m  F  @  G  @  H  @  I  A  J  A-  K  AT  L  Ay  M  A  N  A  O  A  P  B  Q  B7  R  B^  S  B  T  B  U  B  V  B  W  C"  X  CI  Y  Cq  Z  C  [  C  \  C  ]  D  ^  D3  _  D[  `  D  a  D  b  D  c  D  d  E!  e  EF  f  En  g  E  h  E  i  E  j  F  k  F4  l  F[  m  F  n  F  o  F  p  F  q  G  r  GF  s  Gn  t  G  u  G  v  G  w  H  x  H4  y  H[  z  H  {  H  |  H  }  H  ~  I!    IH    Io    I    I    I    J    J4    J\    J    J    J    J    K"    KJ    Kr    K    K    K    L    L1    LV    L{    L    L    L    M    M2    MZ    M    M    M    M    N    N?    Nd    N    N    N    N    O$    OJ    Oq    O    O    O    P    P6    P^    P    P    P    P    Q!    QF    Qk    Q    Q    Q    R    R+    RS    Ry    R    R    R    S    S:    Sb    S    S    S    S    T'    TO    Tw    T    T    T    U    U:    U^    U    U    U    U    V"    VJ    Vr    V    V    V    W    W3    W[    W    W    W    W    X    XE    Xj    X    X    X    Y     Y'    YO    Yw    Y    Y    Y    Z    Z<    Zd    Z    Z    Z    Z    ['    [O    [w    [    [    [    \    \:    \b    \    \     \    \    ]$    ]K    ]s    ]    ]    ]    ^  	  ^5  
  ^]    ^    ^    ^    ^    _     _G    _o    _    _    _    `    `6    `[    `    `    `    `    a    aE    al    a     a  !  a  "  b
  #  b1  $  bY  %  b  &  b  '  b  (  b  )  c  *  cD  +  cl  ,  c  -  c  .  c  /  d
  0  d2  1  dZ  2  d  3  d  4  d  5  d  6  e  7  eC  8  ek  9  e  :  e  ;  e  <  f  =  f3  >  f[  ?  f  @  f  A  f  B  f  C  g!  D  gH  E  gp  F  g  G  g  H  g  I  h  J  h7  K  h^  L  h  M  h  N  h  O  h  P  i#  Q  iJ  R  iq  S  i  T  i  U  i  V  j  W  j8  X  j_  Y  j  Z  j  [  j  \  j  ]  k%  ^  kL  _  kt  `  k  a  k  b  k  c  l  d  l;  e  lc  f  l  g  l  h  l  i  m  j  m+  k  mS  l  m{  m  m  n  m  o  m  p  n  q  n@  r  nh  s  n  t  n  u  n  v  o  w  o/  x  oW  y  o  z  o  {  o  |  o  }  p  ~  pF    pm    p    p    p    q    q4    q\    q    q    q    q    r$    rK    rs    r    r    r    s    s7    s^    s    s    s    s    t$    tL    tt    t    t    t    u    u<    uc    u    u    u    v    v+    vS    vz    v    v    v    w    w@    wh    w    w    w    x    x/    xW    x    x    x    x    y    yF    yn    y    y    y    z    z4    z\    z    z    z    z    {$    {L    {t    {    {    {    |    |:    |b    |    |    |    |    }$    }K    }c    }    }    }    }    ~#    ~K    ~q    ~    ~    ~        7    _                    $    L    r                    8    `                    &    N    v                    <    d                    ,     T    |                    B    j      	    
      
    2    Z                        F    n                    6    ^                    $     L  !  t  "    #    $    %    &  8  '  `  (    )    *    +     ,  (  -  P  .  w  /    0    1    2    3  =  4  e  5    6    7    8    9  -  :  U  ;  }  <    =    >    ?    @  A  A  g  B    C    D    E    F  /  G  W  H    I    J    K    L    M  E  N  m  O    P    Q    R    S  3  T  [  U    V    W    X    Y  #  Z  K  [  s  \    ]    ^    _    `  ;  a  c  b    c    d    e    f  )  g  Q  h  y  i    j    k    l    m  =  n  e  o    p    q    r    s  )  t  Q  u  x  v    w    x    y    z  @  {  h  |    }    ~          0    X                        D    l                    4    \                    #    K    s                    9    a                    )    Q    y                    A    i                	    1    Y                        G    o                    7    ^                    $    L    t                    ;    c                    +    S    {                    C    k                    0    X                         H    p                    8    `                     (    P    x                    @    h                    0    X                         F    n                    5    ]  	    
              %    M    u                    =    e                    ,    T    |                   !  C  "  k  #    $    %    &    '  3  (  [  )    *    +    ,    -  !  .  G  /  m  0    1    2    3    4  5  5  ]  6    7    8    9    :  %  ;  M  <  u  =    >    ?    @    A  =  B  e  C    D    E    F    G  +  H  S  I  {  J    K    L    M    N  A  O  i  P    Q    R    S  	  T  1  U  Y  V    W    X    Y    Z  !  [  I  \  q  ]    ^    _    `    a  9  b  a  c    d    e    f    g  )  h  Q  i  y  j    k    l    m    n  A  o  i  p    q    r    s    t  0  u  X  v    w    x    y    z    {  G  |  o  }    ~              7    _                    '    M    u                    =    e        µ            -    U    }    ã                C    k    ē    Ļ            2    Z    ł    ũ            !    I    q    ƙ                9    a    ǉ    Ǳ            )    Q    y    ȡ                A    i    ɑ    ɹ        	    1    Y    ʀ    ʨ                 H    o    ˗    ˿            7    _    ̇    ̯            '    O    w    ͟                >    f    Ύ    ζ            .    V    ~    Ϧ                F    n    Ж    о            6    ^    ц    Ѯ            &    N    v    Ҟ                >    f    ӎ    Ӷ             .    V    ~    Ԧ                F  	  n  
  Ֆ    վ            4    \    ք    ֬            $    L    t    ל                <    d    ،    ش           !  ,  "  T  #  |  $  ٤  %    &    '    (  D  )  l  *  ڔ  +  ڼ  ,    -    .  4  /  \  0  ۄ  1  ۬  2    3    4  "  5  J  6  r  7  ܚ  8    9    :    ;  :  <  b  =  ݊  >  ݲ  ?    @    A  *  B  R  C  z  D  ޢ  E    F    G    H  B  I  j  J  ߒ  K  ߺ  L    M  
  N  2  O  Z  P    Q    R    S    T  !  U  I  V  q  W    X    Y    Z    [  9  \  a  ]    ^    _    `    a  )  b  Q  c  y  d    e    f    g    h  A  i  i  j    k    l    m  	  n  1  o  Y  p    q    r    s    t  !  u  I  v  q  w    x    y    z    {  9  |  a  }    ~              )    Q    y                    +    S    {                    <    b                    &    N    t                    <    c                     (    N    v                    :    `                     '    N    u                    <    d                    +    Q    x                    8    `                    '    N    u                    :    b                    '    O    w                    :    b                    )    Q    y                    @    h                    -    U    }                    E    m                    5    ]                          G    o              	    
  6    ^                    &    L    t                    :    b                      *     R     z        !     "     #    $  >  %  e  &    '    (    )    *  -  +  T  ,  |  -    .    /    0    1  B  2  j  3    4    5    6  
  7  1  8  Y  9    :    ;    <    =     >  G  ?  o  @    A    B    C    D  7  E  _  F    G    H    I    J  %  K  M  L  u  M    N    O    P    Q  =  R  e  S    T    U    V  	  W  	,  X  	S  Y  	{  Z  	  [  	  \  	  ]  
  ^  
C  _  
k  `  
  a  
  b  
  c    d  3  e  [  f    g    h    i    j  !  k  I  l  p  m    n    o    p    q  6  r  ^  s    t    u    v    w  &  x  M  y  t  z    {    |    }    ~  ;    b                        8    [    ~                
    +    O    r                    %    F    j                        >    b                        5    Y    }                    0    T    x                    +    O    s                    '    O    s                    '    K    o                    #    G    k                        C    g                        C    g                        >    b                        :    ^                        6    Z    ~                    2    V    z                 
     .     R     v                   !    !*    !N     !r    !    !    !    "    "&    "J    "n    "  	  "  
  "    "    #"    #F    #j    #    #    #    #    $    $B    $f    $    $    $    $    %    %>    %b    %    %    %     %  !  &  "  &3  #  &X  $  &~  %  &  &  &  '  &  (  '  )  ';  *  'a  +  '  ,  '  -  '  .  '  /  (  0  (C  1  (i  2  (  3  (  4  (  5  (  6  )!  7  )G  8  )l  9  )  :  )  ;  )  <  *  =  *)  >  *O  ?  *u  @  *  A  *  B  *  C  +  D  +1  E  +W  F  +|  G  +  H  +  I  +  J  ,  K  ,9  L  ,^  M  ,  N  ,  O  ,  P  ,  Q  -  R  -?  S  -e  T  -  U  -  V  -  W  -  X  .!  Y  .F  Z  .k  [  .  \  .  ]  .  ^  /  _  /)  `  /O  a  /u  b  /  c  /  d  /  e  0  f  02  g  0X  h  0}  i  0  j  0  k  0  l  1  m  17  n  1]  o  1  p  1  q  1  r  1  s  2  t  2A  u  2g  v  2  w  2  x  2  y  2  z  3!  {  3G  |  3l  }  3  ~  3    3    4    4'    4L    4r    4    4    4    5	    5/    5T    5z    5    5    5    6    68    6^    6    6    6    6    7    7@    7f    7    7    7    7    8$    8J    8p    8    8    8    9    9.    9T    9z    9    9    9    :    :8    :^    :    :    :    :    ;    ;?    ;e    ;    ;    ;    <    <)    <Q    <y    <    <    <    =    =;    =c    =    =    =    >     >(    >P    >x    >    >    >    ?    ?>    ?d    ?    ?    ?    @    @,    @T    @|    @    @    @    A    AD    Al    A    A    A    B    B4    B\    B    B    B    B    C"    CJ    Cr    C    C    C    D    D9    D`    D    D    D    D    E&    EN    Ev    E    E    E    F    F:    Fa    F    F    F    G    G)    GQ     Gy    G    G    G    H    H?    Hg    H    H  	  H  
  I    I-    IU    I}    I    I    I    J    JD    Jl    J    J    J    K    K4    K\    K    K    K    K    L"    LJ     Lr  !  L  "  L  #  L  $  M  %  M:  &  Mb  '  M  (  M  )  M  *  N  +  N*  ,  NR  -  Nz  .  N  /  N  0  N  1  O  2  OB  3  Oj  4  O  5  O  6  O  7  P
  8  P2  9  PZ  :  P  ;  P  <  P  =  P  >  Q!  ?  QI  @  Qq  A  Q  B  Q  C  Q  D  R  E  R9  F  Ra  G  R  H  R  I  R  J  S  K  S)  L  SQ  M  Sy  N  S  O  S  P  S  Q  T  R  TA  S  Ti  T  T  U  T  V  T  W  U	  X  U1  Y  UY  Z  U  [  U  \  U  ]  U  ^  V!  _  VI  `  Vo  a  V  b  V  c  V  d  W  e  W4  f  WZ  g  W  h  W  i  W  j  W  k  X!  l  XI  m  Xq  n  X  o  X  p  X  q  Y  r  Y9  s  Ya  t  Y  u  Y  v  Y  w  Z  x  Z'  y  ZO  z  Zw  {  Z  |  Z  }  Z  ~  [    [?    [g    [    [    [    \    \-    \U    \}    \    \    \    ]    ]C    ]k    ]    ]    ]    ^    ^3    ^[    ^    ^    ^    ^    _#    _K    _q    _    _    _    `    `7    `_    `    `    `    `    a'    aO    aw    a    a    a    b    b?    bg    b    b    b    c    c/    cW    c    c    c    c    d    dG    do    d    d    d    e    e7    e_    e    e    e    e    f'    fM    fu    f    f    f    g    g=    ge    g    g    g    h    h-    hU    h}    h    h    h    i    iE    im    i    i    i    j    j5    j]    j    j    j    j    k#    kK    kq    k    k    k    l    l7    l_    l    l    l    l    m%    mL    mt    m    m    m    n    n8    n`    n    n    n    n    o&     oN    ov    o    o    o    p    p4    p\    p  	  p  
  p    p    q!    qH    qp    q    q    q    r    r5    r]    r    r    r    r    s!    sH    so    s    s    s    t     t7  !  t_  "  t  #  t  $  t  %  t  &  u  '  uG  (  um  )  u  *  u  +  u  ,  v  -  v4  .  v[  /  v  0  v  1  v  2  v  3  w"  4  wJ  5  wr  6  w  7  w  8  w  9  x  :  x8  ;  x`  <  x  =  x  >  x  ?  y   @  y(  A  yP  B  yx  C  y  D  y  E  y  F  z  G  z<  H  zd  I  z  J  z  K  z  L  {  M  {*  N  {R  O  {y  P  {  Q  {  R  {  S  |  T  |?  U  |g  V  |  W  |  X  |  Y  }  Z  },  [  }R  \  }z  ]  }  ^  }  _  }  `  ~  a  ~?  b  ~g  c  ~  d  ~  e  ~  f    g  .  h  V  i  ~  j    k    l    m    n  E  o  m  p    q    r    s    t  4  u  \  v    w    x    y    z    {  ?  |  g  }    ~              ,    S    z                    A    h                    /    W                        D    l                    .    V    ~                    B    i                    0    W    ~                    ?    g                    +    R    w                    9    a                    &    M    t                    :    b                    (    O    w                    =    e                    *    R    z                    3    [                    !    I    q                    9    a                    )    Q    y                    A    i                 	    1    Y                  	  !  
  I    q                    8    `                     (    P    x                    @    h           !    "    #  0  $  X  %    &    '    (    )     *  H  +  p  ,    -    .    /    0  8  1  `  2    3    4    5     6  (  7  P  8  x  9    :    ;    <    =  @  >  h  ?    @    A    B    C  0  D  X  E    F    G    H    I     J  H  K  p  L    M    N    O    P  8  Q  `  R    S    T    U     V  (  W  P  X  x  Y    Z    [    \    ]  @  ^  h  _    `    a    b    c  0  d  H  e  p  f    g    h    i    j  6  k  ]  l    m    n    o    p  %  q  M  r  t  s    t    u    v    w  8  x  ^  y    z    {    |    }  &  ~  N    u                    =    e                    *    R    z                    @    g                    /    W                        G    o                    7    _                    '    O    w                    3    [                    #    K    r                    6    ^                    &    N    u                    ;    b                     (    N    v                    :    b                    *    R    y                    :    b                    )    Q    x                    ?    g                    -    T    |                    B     j                
    1    Y          	    
          G    o                    6    ]                    !    I    q                    8     `  !  Ç  "  ï  #    $    %  &  &  M  '  t  (  ě  )    *    +    ,  ;  -  c  .  ŉ  /  ű  0    1    2  )  3  Q  4  x  5  Ɵ  6    7    8    9  =  :  e  ;  Ǎ  <  ǵ  =    >    ?  +  @  S  A  {  B  ȣ  C    D    E    F  A  G  h  H  Ɏ  I  ɶ  J    K    L  .  M  V  N  ~  O  ʦ  P    Q    R    S  D  T  l  U  ˓  V  ˻  W    X    Y  3  Z  [  [  ̃  \  ̪  ]    ^    _  "  `  J  a  r  b  ͚  c    d    e    f  :  g  b  h  Ί  i  β  j    k    l  *  m  O  n  v  o  Ϟ  p    q    r    s  8  t  `  u  І  v  Э  w    x    y  "  z  H  {  n  |  і  }  Ѿ  ~          /    W        Ң                ?    g    ӏ    ӷ            .    V    }    ԥ                D    l    Ք    ռ        
    2    Y    ց    ֩                F    m    ו    ׽            5    ]    ؅    ح            #    J    r    ٚ                9    a    ډ    ڱ            )    Q    y    ۡ                @    g    ܏    ܷ            /    W        ݧ                G    n    ޖ    ޾            5    ]    ߅    ߭            !    I    q                    9    a                    )    Q    y                    A    i                	    1    Y                    !    I    q                     9    a                    )    Q  	  y  
                  A    i                	    1    X                         H    p                   !  8  "  `  #    $    %    &    '  "  (  G  )  l  *    +    ,    -  	  .  1  /  Y  0  z  1    2    3    4    5  A  6  i  7    8    9    :  	  ;  1  <  Y  =    >    ?    @    A  !  B  I  C  q  D    E    F    G    H  5  I  ]  J    K    L    M    N  "  O  J  P  r  Q    R    S    T    U  6  V  ]  W    X    Y    Z    [  "  \  J  ]  r  ^    _    `    a    b  4  c  [  d    e    f    g    h  #  i  J  j  r  k    l    m    n    o  9  p  a  q    r    s    t     u  (  v  P  w  x  x    y    z    {    |  >  }  e  ~                  +    S    {                    >    d                    +    R    z                    @    h                    0    X                         H    p                      6     ^                        %    M    t                    ;    c                    +    S    {                    C    k                
    2    Y    }                    E    m                    5    ]                    %    M    u                	    	=    	e    	    	    	    
    
,    
T    
|    
    
    
        ?    g                    /    W                        F    n                     6    ^                  	  &  
  M    u                    =    e                    ,    T    |                    A    i           !    "  	  #  1  $  Y  %    &    '    (    )    *  G  +  n  ,    -    .    /    0  3  1  [  2    3    4    5    6  "  7  J  8  r  9    :    ;    <    =  8  >  `  ?    @    A    B    C  %  D  L  E  t  F    G    H    I    J  :  K  b  L    M    N    O    P  )  Q  Q  R  y  S    T    U    V    W  A  X  i  Y    Z    [    \  	  ]  1  ^  Y  _    `    a    b    c  !  d  I  e  p  f    g    h    i    j  7  k  _  l    m    n    o    p  '  q  O  r  w  s    t    u    v     w   ?  x   g  y     z     {     |  !  }  !.  ~  !T    !|    !    !    !    "    "D    "l    "    "    "    #    #2    #Z    #    #    #    #    $    $G    $o    $    $    $    %    %5    %]    %    %    %    %    &%    &M    &u    &    &    &    '    '=    'e    '    '    '    (    (-    (U    (}    (    (    (    )    )C    )k    )    )    )    *	    *1    *W    *    *    *    *    +    +G    +o    +    +    +    ,    ,7    ,_    ,    ,    ,    ,    -'    -O    -w    -    -    -    .    .;    .c    .    .    .    /    /+    /S    /{    /    /    /    0    0C    0k    0    0    0    1    13    1[    1    1    1    1    2    2C    2j    2    2    2    3    3/    3W    3    3    3    3    4    4E    4k    4    4    4    5    53    5[     5    5    5    5    6#    6K    6s    6    6  	  6  
  7    7:    7b    7    7    7    8    8'    8O    8w    8    8    8    9    9=    9e    9    9    9    :    :-    :U     :}  !  :  "  :  #  :  $  ;  %  ;E  &  ;m  '  ;  (  ;  )  ;  *  <  +  <3  ,  <[  -  <  .  <  /  <  0  <  1  =!  2  =I  3  =q  4  =  5  =  6  =  7  >  8  >7  9  >_  :  >  ;  >  <  >  =  >  >  ?%  ?  ?M  @  ?u  A  ?  B  ?  C  ?  D  @  E  @;  F  @c  G  @  H  @  I  @  J  A  K  A+  L  AS  M  A{  N  A  O  A  P  A  Q  B  R  BC  S  Bk  T  B  U  B  V  B  W  C	  X  C1  Y  CY  Z  C  [  C  \  C  ]  C  ^  D!  _  DI  `  Do  a  D  b  D  c  D  d  E  e  E7  f  E]  g  E  h  E  i  E  j  E  k  F%  l  FM  m  Fu  n  F  o  F  p  F  q  G  r  G=  s  Ge  t  G  u  G  v  G  w  H  x  H-  y  HU  z  Hy  {  H  |  H  }  H  ~  I    IA    Ii    I    I    I    J	    J1    JY    J    J    J    J    K!    KI    Kq    K    K    K    L    L5    L]    L    L    L    L    M$    MJ    Mr    M    M    M    N    N8    N`    N    N    N    O     O(    OP    Ov    O    O    O    P    P>    Pf    P    P    P    Q    Q.    QV    Q~    Q    Q    Q    R    RF    Rn    R    R    R    S    S6    S\    S    S    S    S    T$    TL    Tr    T    T    T    U    U:    Ub    U    U    U    V    V*    VR    Vz    V    V    V    W    W@    Wh    W    W    W    X    X0    XV    X~    X    X    X    Y    YD    Yl    Y    Y    Y    Z    Z3    Z[    Z    Z    Z    Z    [#    [K    [s    [    [    [    \    \;    \c    \    \    \    ]    ]+     ]S    ]{    ]    ]    ]    ^    ^C    ^k    ^  	  ^  
  ^    _    _3    _[    _    _    _    _    `!    `I    `q    `    `    `    a    a9    aa    a    a    a    b    b)     bM  !  bu  "  b  #  b  $  b  %  c  &  c9  '  ca  (  c  )  c  *  c  +  d  ,  d)  -  dQ  .  dy  /  d  0  d  1  d  2  e  3  e?  4  eg  5  e  6  e  7  e  8  f  9  f+  :  fS  ;  f{  <  f  =  f  >  f  ?  g  @  gC  A  gk  B  g  C  g  D  g  E  h	  F  h1  G  hY  H  h  I  h  J  h  K  h  L  i  M  iG  N  im  O  i  P  i  Q  i  R  j  S  j5  T  j]  U  j  V  j  W  j  X  j  Y  k%  Z  kI  [  kq  \  k  ]  k  ^  k  _  l  `  l9  a  la  b  l  c  l  d  l  e  m  f  m%  g  mM  h  mu  i  m  j  m  k  m  l  n  m  n=  n  nc  o  n  p  n  q  n  r  o  s  o+  t  oS  u  o{  v  o  w  o  x  o  y  p  z  p?  {  pf  |  p  }  p  ~  p    q    q-    qU    q}    q    q    q    r    rE    rm    r    r    r    s    s4    s\    s    s    s    s    t$    tL    tt    t    t    t    u    u<    ud    u    u    u    v    v,    vT    v|    v    v    v    w    wD    wl    w    w    w    x    x4    x\    x    x    x    x    y"    yJ    yr    y    y    y    z    z:    zb    z    z    z    {    {*    {R    {z    {    {    {    |    |B    |j    |    |    |    }    }0    }X    }    }    }    }    ~    ~D    ~l    ~    ~    ~        3    [                    !    I    o                    7    _                    &    N    v                    >    f                    .    V    ~                     =    e                    +    S  	  y  
                  >    d                     (    P    x                    @    h                   !  ,  "  T  #  |  $    %    &    '    (  B  )  j  *    +    ,    -    .  0  /  X  0    1    2    3    4     5  H  6  p  7    8    9    :    ;  8  <  `  =    >    ?    @    A  &  B  L  C  t  D    E    F    G    H  <  I  d  J    K    L    M    N  ,  O  T  P  |  Q    R    S    T    U  D  V  l  W    X    Y    Z    [  4  \  \  ]    ^    _    `    a  "  b  J  c  r  d    e    f    g    h  3  i  Y  j    k    l    m    n  !  o  I  p  q  q    r    s    t    u  9  v  a  w    x    y    z    {  )  |  Q  }  y  ~                  A    i                	    1    Y                    !    H    p                    8    `                     (    P    x                    @    h                    0    O    y                    C    k                        3    K    a    y                        E    m                    "    7    L    a    v                            	        3    H    ]    r                                    /    D    Y    n                                    +    @    U    j                                    '    <    Q    f    {                                 -    E    ]    s              	    
          	    "    8    M    c                                )    ?    R    j                       !    "    #    $  2  %  E  &  [  '  q  (    )    *    +    ,    -    .    /    0  -  1  C  2  V  3  l  4    5    6    7    8    9    :    ;  ,  <  A  =  Z  >  p  ?    @    A    B    C    D    E  	  F    G  3  H  I  I  \  J  p  K    L    M    N    O    P    Q    R  #  S  :  T  Q  U  j  V    W    X    Y    Z    [    \    ]  +  ^  B  _  Z  `  {  a    b    c    d    e    f     g    h  )  i  ?  j  Z  k  q  l    m    n    o    p    q    r    s  -  t  F  u  \  v  o  w    x    y    z    {    |    }    ~       9    N    e    }                                9    T    i                                -    C    \    r                        	         8    O    k                                    /    C    X    q                                 /    F    _    u                                 /    C    a    z                                3    I    ]    s                                ,    @    V    l                                1    H    ]    y                                4    J    b    y                            *    B    Y    p                                 0    I    _    w                  	    
      )    ?    R    e                                +    C    Y    t                        
     !  !  5  "  I  #  b  $  x  %    &  ¨  '    (    )    *    +    ,  7  -  R  .  m  /  Ä  0  Ú  1  ð  2    3    4    5    6  *  7  A  8  Z  9  p  :  ć  ;  ģ  <  Ļ  =    >    ?    @  #  A  >  B  T  C  g  D  z  E  ō  F  Ŧ  G  ż  H    I    J    K    L  +  M  D  N  Z  O  q  P  Ɗ  Q  Ơ  R  Ʒ  S    T    U    V    W  '  X  >  Y  Y  Z  p  [  ǈ  \  ǜ  ]  Ƕ  ^    _    `    a    b  4  c  F  d  _  e  u  f  ȋ  g  Ȥ  h  Ⱥ  i    j    k    l    m  5  n  N  o  d  p  ɂ  q  ə  r  ɵ  s    t    u    v    w  /  x  M  y  f  z  ~  {  ʔ  |  ʬ  }    ~              #    <    R    j    ˆ    ˞    ˵                    4    R    k    ́    ̔    ̬                    !    7    P    k    ̓    ͙    Ͷ                    &    =    U    j    ΂    Π    ι                    0    G    [    q    Ϗ    ϩ    Ͻ                &    A    Y    m        Е    Ш    м                    !    <    S    n    х    ѝ    ѳ                        /    E    ^    t    Ґ    Ҭ                    *    >    P    h        ӓ    ӫ                        7    M    d    }    ԝ    Զ                    1    I    _    r    Պ    ա    պ                    0    I    ]    t    ֐    ֨                         9    P    e    {    ו  	  ׬  
                      .    G    ^    t    ؋    ؟    ض                    (    ?    X    n    ن    ٚ     ٶ  !    "    #    $    %  '  &  9  '  O  (  h  )  ~  *  ږ  +  ڭ  ,    -    .    /    0  %  1  F  2  b  3  x  4  ۓ  5  ۪  6    7    8    9    :     ;  :  <  Q  =  h  >  ܄  ?  ܝ  @  ܵ  A    B    C    D  
  E  #  F  9  G  K  H  i  I  ݃  J  ݚ  K  ݬ  L    M    N    O    P  &  Q  ?  R  X  S  p  T  ބ  U  ޖ  V  ެ  W  ޿  X    Y    Z    [    \  0  ]  H  ^  c  _  z  `  ߖ  a  ߮  b    c    d    e    f  #  g  4  h  J  i  `  j  s  k    l    m    n    o    p    q    r  (  s  C  t  Z  u  q  v    w    x    y    z    {    |    }  /  ~  M    f    y                                2    F    X    t                                0    G    _    z                                4    J    e    |                                *    =    N    b                                '    :    P    f                                $    <    R    k                                (    ;    N    _    r                                 0    F    ]    t                                %    ;    T    j                                    '    ;    P    b    v                                (    >    W    m                                 $    8    I    _    x  	    
                      &    <    S    l                                     *    A    U    k           !    "    #    $    %  	  &  "  '  8  (  N  )  g  *  }  +    ,    -    .    /    0    1    2  3  3  O  4  g  5  ~  6    7    8    9    :    ;    <    =  0  >  I  ?  _  @  v  A    B    C    D    E    F  	  G  "  H  <  I  T  J  l  K    L    M    N    O    P    Q    R  )  S  E  T  ]  U  s  V    W    X    Y    Z    [    \    ]  1  ^  G  _  \  `  w  a    b    c    d    e    f    g    h  *  i  B  j  _  k  {  l    m    n    o    p    q    r  &  s  =  t  Q  u  q  v    w    x    y    z    {    |    }  =  ~  V    o                                    6    L    e    {                                -    D    [    t                                -    C    V    t                        	         6    Q    h    ~                            #    =    T    l                                (    ?    S    j    ~                                   0     F     Y     o                                  
        :    Q    g    }                                .    I    `    y                            *    A    W    p                                    4    J    ]    q                                 -    E    [    o              	    
              #    <    R    h                                    1    J    `    w                   !    "    #    $  3  %  S  &  n  '    (    )    *    +    ,    -  	  .  	  /  	3  0  	F  1  	\  2  	r  3  	  4  	  5  	  6  	  7  	  8  
  9  
  :  
1  ;  
G  <  
`  =  
  >  
  ?  
  @  
  A  
  B  
  C    D    E  5  F  O  G  f  H  y  I    J    K    L    M    N    O  !  P  B  Q  ^  R  y  S    T    U    V    W    X  	  Y    Z  2  [  I  \  ]  ]  q  ^    _    `    a    b    c    d    e  &  f  <  g  O  h  f  i    j    k    l    m    n    o    p  ,  q  C  r  [  s  y  t    u    v    w    x    y    z    {  6  |  L  }  a  ~  w                                &    :    N    b    t                                    1    C    V    h    z                                    (    ;    I    W    h    ~                                    .    E    W    h    y                                
        0    @    S    g    ~                                 !    6    K    `    u                                    2    G    \    q                                    .    C    X    m                                     *    ?    T    i    ~                                &    ;    P    e    z                             !    ;    W    s      	    
                           8    T    p                                (    A    Z    q               !    "    #    $  *  %  B  &  \  '  v  (    )    *    +    ,    -    .    /  7  0  Q  1  k  2    3    4    5    6    7    8     9     :   +  ;   I  <   c  =   }  >     ?     @     A     B     C     D  !  E  !&  F  !@  G  !Z  H  !n  I  !  J  !  K  !  L  !  M  !  N  "   O  "  P  "4  Q  "N  R  "l  S  "  T  "  U  "  V  "  W  "  X  "  Y  #  Z  #(  [  #?  \  #V  ]  #n  ^  #  _  #  `  #  a  #  b  #  c  #  d  $  e  $&  f  $B  g  $Z  h  $t  i  $  j  $  k  $  l  $  m  $  n  %  o  %*  p  %>  q  %Z  r  %r  s  %  t  %  u  %  v  %  w  %  x  %  y  &  z  &%  {  &9  |  &S  }  &g  ~  &    &    &    &    &    '    '    '5    'Q    'k    '    '    '    '    '    '    (    (    (3    (O    (i    (    (    (    (    (    )     )    )9    )T    )o    )    )    )    )    )    *	    *%    *C    *W    *l    *    *    *    *    *    *    +    +#    +:    +Q    +e    +y    +    +    +    +    +    +    ,    ,    ,3    ,M    ,g    ,    ,    ,    ,    ,    -    -    -6    -Q    -l    -    -    -    -    -    -    .    .(    .9    .N    .h    .    .    .    .    .    .    /	    /!    /3    /J    /`    /v    /    /    /    /    /    0    0'    0E    0_    0y    0    0    0    0    0    0    1    1-    1I    1`    1w    1    1    1    1    1    2    2$    2;    2W    2s    2    2     2    2    2    3    3-    3G    3a    3{    3  	  3  
  3    3    3    4
    4    4)    4<    4Z    4q    4    4    4    4    4    5    5!    58    5R    5l    5    5    5     5  !  5  "  5  #  6  $  6%  %  69  &  6N  '  6c  (  6z  )  6  *  6  +  6  ,  6  -  6  .  6  /  7  0  7)  1  7>  2  7S  3  7h  4  7}  5  7  6  7  7  7  8  7  9  7  :  7  ;  8  <  8%  =  8:  >  8O  ?  8d  @  8y  A  8  B  8  C  8  D  8  E  8  F  8  G  8  H  9  I  9  J  9$  K  96  L  9H  M  9c  N  9z  O  9  P  9  Q  9  R  9  S  9  T  9  U  9  V  :  W  :   X  :0  Y  :B  Z  :R  [  :e  \  :v  ]  :  ^  :  _  :  `  :  a  :  b  :  c  ;  d  ;!  e  ;:  f  ;O  g  ;h  h  ;}  i  ;  j  ;  k  ;  l  ;  m  ;  n  ;  o  <  p  <%  q  <J  r  <`  s  <  t  <  u  <  v  <  w  <  x  <  y  =  z  =  {  =-  |  =B  }  =N  ~  =Z    =f    =r    =    =    =    =    =    =    >	    >    >0    >C    >Y    >m    >    >    >    >    >    >    >    ?    ?    ?-    ?C    ?W    ?l    ?    ?    ?    ?    ?    ?    ?    @    @)    @>    @S    @h    @}    @    @    @    @    @    @    A    A%    A:    AO    Ad    Ay    A    A    A    A    A    A    B    B!    B6    BK    B`    Bu    B    B    B    B    B    B    C    C    C2    CG    C\    Cq    C    C    C    C    C    C    D    D    D.    DC    DX    Dm    D    D    D    D    D    D    E     E    E*    E?    ET    Ei    E~    E    E    E    E    E    E    F    F&    F;    FP    Fe    Fz    F    F    F    F    F    F    G    G"    G7    GL    Ga    Gv    G    G    G    G     G    G    G    H    H    H    H*    H6    HC  	  HQ  
  H_    Hm    H{    H    H    H    H    H    H    H    H    H    I    I    I&    I2    I>    IJ    IX    If    Iq    I|     I  !  I  "  I  #  I  $  I  %  I  &  I  '  I  (  J  )  J'  *  JC  +  JU  ,  Jf  -  Jw  .  J  /  J  0  J  1  J  2  J  3  J  4  K   5  K  6  K/  7  KH  8  K^  9  Kv  :  K  ;  K  <  K  =  K  >  K  ?  K  @  L  A  L!  B  L4  C  LF  D  LX  E  Lk  F  L~  G  L  H  L  I  L  J  L  K  L  L  L  M  M   N  M  O  M,  P  MB  Q  MU  R  Mh  S  M|  T  M  U  M  V  M  W  M  X  M  Y  M  Z  N  [  N"  \  N2  ]  NG  ^  NY  _  Nm  `  N~  a  N  b  N  c  N  d  N  e  N  f  N  g  O  h  O  i  O*  j  O9  k  OJ  l  O[  m  On  n  O  o  O  p  O  q  O  r  O  s  O  t  P
  u  P#  v  P;  w  PT  x  Po  y  P  z  P  {  P  |  P  }  P  ~  P    P    Q    Q    Q(    Q;    QM    Q_    Qp    Q    Q    Q    Q    Q    Q    Q    Q    Q    R    R#    R8    RM    Rb    Rw    R    R    R    R    R    R    S
    S    S4    SI    S^    Ss    S    S    S    S    S    S    T    T    T0    TE    TZ    To    T    T    T    T    T    T    U    U    U,    UA    UV    Uk    U    U    U    U    U    U    U    V    V(    V=    VR    Vg    V|    V    V    V    V    V    V    W    W$    W9    WN    Wc    Wx    W    W    W    W    W    W    X    X     X5    XJ    X_    Xt    X    X    X    X    X    X    Y    Y    Y1    YF    Y[    Yp    Y    Y    Y    Y    Y    Y    Z    Z    Z-    ZB    ZW    Zl    Z    Z    Z    Z    Z    Z    Z    [    [     [;    [Y    [w    [    [    [    [    [    \  	  \,  
  \J    \h    \t    \    \    \    \    ]
    ](    ]F    ]d    ]    ]    ]    ]    ]    ^    ^6    ^T    ^r    ^    ^     ^  !  ^  "  _
  #  _(  $  _7  %  _J  &  _l  '  _x  (  _  )  _  *  _  +  _  ,  _  -  _  .  _  /  `  0  `&  1  `;  2  `P  3  `e  4  `z  5  `  6  `  7  `  8  `  9  `  :  `  ;  a  <  a"  =  a7  >  aL  ?  aa  @  av  A  a  B  a  C  a  D  a  E  b  F  b!  G  b>  H  b[  I  bx  J  b  K  b  L  b  M  b  N  c	  O  c&  P  cC  Q  c`  R  c}  S  c  T  c  U  c  V  c  W  d  X  d#  Y  d@  Z  d]  [  dz  \  d  ]  d  ^  d  _  d  `  e  a  e$  b  e=  c  eZ  d  ew  e  e  f  e  g  e  h  e  i  f  j  f  k  f;  l  fX  m  fu  n  f  o  f  p  f  q  f  r  g  s  g  t  g0  u  gM  v  gl  w  gx  x  g  y  g  z  g  {  g  |  g  }  g  ~  h    h    h1    h=    hK    h`    hv    h    h    h    h    h    h    i
    i"    i7    iL    ia    iv    i    i    i    i    i    i    j	    j    j3    jH    j]    jr    j    j    j    j    j    j    k    k    k-    kB    kW    kl    k    k    k    k    k    k    l     l    l*    l?    lT    li    lx    l    l    l    l    l    l    l    m    m    m+    m;    mK    m[    ml    m~    m    m    m    m    m    m    n    n    n2    nG    nS    nb    nu    n    n    n    n    n    n    n    o    o    o(    o=    oR    og    o|    o    o    o    o    o    o    p    p$    p9    pN    pc    px    p    p    p    p    p    p    q    q     q5    qJ    q_    qt    q    q    q    q    q    q    r    r     r1    rI    ra    rv    r    r    r    r    r  	  r  
  s    s&    s>    sS    sk    s    s    s    s    s    s    t    t    t1    tH    t]    tp    t    t    t    t    t     t  !  u  "  u&  #  u>  $  uT  %  ul  &  u  '  u  (  u  )  u  *  u  +  u  ,  u  -  u  .  u  /  u  0  v  1  v  2  v)  3  vB  4  vU  5  vj  6  v  7  v  8  v  9  v  :  v  ;  v  <  w  =  w   >  w8  ?  wN  @  wg  A  w}  B  w  C  w  D  w  E  w  F  w  G  x  H  x  I  x  J  x)  K  x5  L  x@  M  xL  N  xX  O  xd  P  xo  Q  x{  R  x  S  x  T  x  U  x  V  x  W  x  X  x  Y  y  Z  y  [  y1  \  yF  ]  y[  ^  yp  _  y  `  y  a  y  b  y  c  y  d  y  e  z  f  z  g  z/  h  zD  i  zY  j  zn  k  z  l  z  m  z  n  z  o  z  p  z  q  {  r  {  s  {+  t  {@  u  {U  v  {j  w  {  x  {  y  {  z  {  {  {  |  {  }  {  ~  |    |'    |<    |Q    |f    |{    |    |    |    |    |    |    }    }#    }8    }M    }b    }w    }    }    }    }    }    }    ~
    ~    ~4    ~I    ~^    ~s    ~    ~    ~    ~    ~    ~            0    E    Z    o                                    ,    A    V    k                                    (    =    R    g    |                                $    9    N    c    x                                     5    J    _    t                                    1    F    [    p                                    -    B    W    l                                    )    >    S    h    }                                 1    G    \    u  	    
                           8    S    t                        	    '    E    ]    u                   !    "    #  ,  $  A  %  X  &  q  '    (    )    *    +    ,    -    .    /    0  !  1  2  2  A  3  L  4  ]  5  u  6    7    8    9    :    ;    <    =    >  !  ?  6  @  K  A  `  B  v  C    D    E    F    G    H    I    J  )  K  @  L  Y  M  d  N  r  O    P    Q    R    S    T    U    V  )  W  >  X  W  Y  s  Z    [    \    ]    ^    _    `    a    b  #  c  8  d  M  e  b  f  w  g    h    i    j    k    l    m  
  n    o  4  p  I  q  ^  r  s  s    t    u    v    w    x    y    z    {  0  |  E  }  Z  ~  o                                    ,    A    V    k                                    (    =    R    g    |                                $    9    N    c    x                                     5    J    _    t                                    1    F    [    p                                    -    B    W    l                                    )    >    S    h    }                                %    :    O    d    y                                !    6    K    `    u                                    2    G    \    q                                     .    C    X    m                  	    
               *    ?    T    i    ~                                &    ;    P    e    z               !    "    #    $    %  "  &  7  '  L  (  a  )  v  *    +    ,    -    .    /    0  	  1    2  3  3  H  4  ]  5  r  6    7    8    9    :    ;    <    =    >  /  ?  D  @  Y  A  n  B    C    D    E    F    G    H    I    J  +  K  @  L  U  M  j  N    O    P    Q    R    S    T    U    V  '  W  <  X  Q  Y  f  Z  {  [    \    ]    ^    _    `    a    b  #  c  8  d  M  e  b  f  w  g    h    i    j    k    l    m  
  n    o  4  p  I  q  ^  r  s  s    t    u    v    w    x    y    z    {  0  |  E  }  Z  ~  o                                    ,    A    V    k                                    (    =    R    g    |                                $    9    N    c    x                                     5    J    _    t                                    1    F    [    p                                    -    B    W    l                                    )    >    S    h    }                                %    :    O    d    y                                !    6    K    `    u                                    2    G    \    q                                     9    Y    y                      	  9  
  Y    y                        9    Y    y                        9    Y    y                       !  /  "  M  #  k  $    %    &    '    (    )    *  =  +  [  ,  y  -    .    /    0    1    2  -  3  K  4  i  5    6    7    8    9    :  !  ;  A  <  a  =    >    ?    @    A    B  !  C  A  D  a  E    F    G    H    I    J  !  K  A  L  a  M    N    O    P    Q    R  !  S  A  T  a  U    V    W    X    Y    Z    [  3  \  Q  ]  o  ^    _    `    a    b    c  #  d  A  e  _  f  }  g    h    i    j    k    l  1  m  O  n  m  o    p    q    r    s    t    u  7  v  U  w  s  x    y    z    {    |    }    ~  9    U    q                            ;    W    s                        #    A    _    }        ¹                1    O    m    Ë    é                !    ?    ]    {    ę    ķ                -    I    e    Ń    ş    Ž                /    K    g    ƅ    ơ    ƽ                /    M    k    Ǉ    ǣ    ǿ                1    O    m    ȋ    ȩ                !    ?    ]    {    ə    ɷ                /    M    k    ʉ    ʧ                    =    [    y    ˔    ˲                *    H    f    ̄    ̢                    8    V    t    ͒    Ͱ            
    (    F    d    ΂    Π    ξ                 >    ^    ~    Ϟ    Ͼ                >  	  ^  
  ~    О    о                >    ^    ~    ў    Ѿ                >    \    z    Ҙ    Ҷ                 .  !  L  "  j  #  ӈ  $  Ӧ  %    &    '     (    )  <  *  Z  +  x  ,  Ԗ  -  Դ  .    /    0    1  ,  2  J  3  h  4  Ն  5  բ  6  վ  7    8    9    :  2  ;  P  <  l  =  ֈ  >  ֤  ?    @    A    B    C  2  D  N  E  j  F  ׆  G  פ  H    I    J    K    L  4  M  P  N  l  O  ؈  P  ئ  Q    R    S    T    U  9  V  W  W  u  X  ٓ  Y  ٱ  Z    [    \    ]  )  ^  G  _  e  `  ڃ  a  ڡ  b  ڿ  c    d    e    f  7  g  U  h  s  i  ۑ  j  ۯ  k    l    m    n  %  o  C  p  a  q    r  ܝ  s  ܻ  t    u    v    w  3  x  Q  y  o  z  ݍ  {  ݫ  |    }    ~      #    A    _    }    ޛ    ޹                1    M    i    ߅    ߣ    ߿                3    O    k                            1    O    m                            3    Q    o                        #    A    _    }                        1    O    m                        !    ?    ]    {                        '    E    c                            )    E    a    }                        +    G    c                            /    M    k                            =    [    y                        -    K    i                            8    V    t                     
    (    F    d                  	    
      6    T    r                        &    D    `    |                        *    F    b    ~       !    "    #    $    %  (  &  D  '  b  (    )    *    +    ,    -    .  *  /  F  0  d  1    2    3    4    5    6    7  .  8  J  9  f  :    ;    <    =    >    ?    @  ,  A  H  B  d  C    D    E    F    G    H    I  .  J  J  K  f  L    M    N    O    P    Q  $  R  D  S  d  T    U    V    W    X    Y  $  Z  D  [  d  \    ]    ^    _    `    a  $  b  D  c  d  d    e    f    g    h    i  "  j  @  k  ^  l  |  m    n    o    p    q    r  0  s  N  t  l  u    v    w    x    y    z     {  >  |  \  }  z  ~                      .    L    l                        ,    L    l                        ,    L    l                        ,    L    l                          &     D     b                                 4    R    p                        $    B    `    ~                        0    L    h                            2    N    j                            2    P    n                            4    R    p                        $    B    `    ~                        2    P    n                    	    	"    	@    	^    	|    	    	    	    	    

    
(    
F    
b    
~    
    
     
    
        (    D    `    |          	    
          *    F    b    ~                        2    P    n                        "    @    ^     |  !    "    #    $    %    &  0  '  N  (  l  )    *    +    ,    -    .    /  ;  0  Y  1  w  2    3    4    5    6    7  +  8  I  9  g  :    ;    <    =    >    ?    @  9  A  W  B  u  C    D    E    F    G    H  )  I  I  J  i  K    L    M    N    O  	  P  )  Q  I  R  i  S    T    U    V    W  	  X  )  Y  I  Z  i  [    \    ]    ^    _  	  `  )  a  I  b  i  c    d    e    f    g    h  !  i  ?  j  ]  k  {  l    m    n    o    p    q  /  r  M  s  k  t    u    v    w    x    y    z  =  {  [  |  y  }    ~                  )    E    c                            +    G    e                            -    K    g                            ,    J    h                            :    X    v                        *    H    f                              8     V     r                        !    !&    !D    !b    !    !    !    !    !    "    "4    "R    "p    "    "    "    "    #    #$    #B    #`    #~    #    #    #    #    $    $*    $H    $f    $    $    $    $    $    %    %,    %H    %d    %    %    %    %    %    &    &.    &J    &f    &    &    &    &    &    '    '4    'R    'p    '    '    '    '    (    ($    (B    (`    (~     (    (    (    (    )    )2    )P    )n    )  	  )  
  )    )    *    *     *<    *X    *v    *    *    *    *    +    +"    +>    +Z    +x    +    +    +    +    ,    ,"     ,@  !  ,^  "  ,z  #  ,  $  ,  %  ,  &  ,  '  -  (  -$  )  -@  *  -^  +  -|  ,  -  -  -  .  -  /  -  0  .  1  .0  2  .N  3  .l  4  .  5  .  6  .  7  .  8  /  9  /   :  />  ;  /\  <  /z  =  /  >  /  ?  /  @  /  A  0  B  0.  C  0L  D  0j  E  0  F  0  G  0  H  0  I  0  J  1  K  19  L  1W  M  1u  N  1  O  1  P  1  Q  1  R  2  S  2)  T  2G  U  2e  V  2  W  2  X  2  Y  2  Z  2  [  3  \  37  ]  3U  ^  3s  _  3  `  3  a  3  b  3  c  4  d  4!  e  4=  f  4[  g  4y  h  4  i  4  j  4  k  4  l  5  m  5#  n  5?  o  5[  p  5w  q  5  r  5  s  5  t  5  u  6	  v  6%  w  6A  x  6]  y  6y  z  6  {  6  |  6  }  6  ~  7    7#    7A    7]    7{    7    7    7    7    8	    8%    8C    8_    8{    8    8    8    8    9    9)    9E    9a    9}    9    9    9    9    :    :/    :O    :o    :    :    :    :    ;    ;/    ;O    ;o    ;    ;    ;    ;    <    </    <O    <o    <    <    <    <    =    =/    =O    =o    =    =    =    =    >    >#    >A    >_    >}    >    >    >    >    ?    ?1    ?O    ?m    ?    ?    ?    ?    @    @!    @?    @]    @{    @    @    @    @    A    A7    AW    Aw    A    A    A    A    B    B7    BW    Bw    B    B    B    B    C    C7    CW    Cw    C    C    C    C    D    D7    DU    Ds    D    D    D    D    E	    E'    EE    Ec    E    E    E    E    E    F    F5    FS    Fq     F    F    F    F    G    G%    GC    Ga    G  	  G  
  G    G    G    H    H+    HI    He    H    H    H    H    H    I    I+    IG    Ic    I    I    I    I    I    J     J-  !  JI  "  Je  #  J  $  J  %  J  &  J  '  J  (  K  )  K5  *  KS  +  Kq  ,  K  -  K  .  K  /  K  0  L  1  L%  2  LC  3  La  4  L  5  L  6  L  7  L  8  L  9  M  :  M3  ;  MQ  <  Mo  =  M  >  M  ?  M  @  M  A  N  B  N  C  N;  D  NY  E  Nu  F  N  G  N  H  N  I  N  J  O  K  O!  L  O=  M  O[  N  Ow  O  O  P  O  Q  O  R  O  S  P  T  P#  U  PA  V  P]  W  Py  X  P  Y  P  Z  P  [  P  \  Q  ]  Q%  ^  QC  _  Qa  `  Q  a  Q  b  Q  c  Q  d  Q  e  R  f  R3  g  RQ  h  Ro  i  R  j  R  k  R  l  R  m  S  n  S#  o  SA  p  S_  q  S}  r  S  s  S  t  S  u  S  v  T  w  T1  x  TO  y  Tj  z  T  {  T  |  T  }  T  ~  U     U    U<    UZ    Ux    U    U    U    U    V    V,    VJ    Vh    V    V    V    V    V    W    W:    WX    Wv    W    W    W    W    X    X4    XT    Xt    X    X    X    X    Y    Y4    YT    Yt    Y    Y    Y    Y    Z    Z4    ZT    Zt    Z    Z    Z    Z    [    [2    [P    [n    [    [    [    [    \    \"    \@    \^    \|    \    \    \    \    ]    ]0    ]N    ]l    ]    ]    ]    ]    ^    ^     ^>    ^\    ^x    ^    ^    ^    ^    _    _&    _B    _^    _z    _    _    _    _    `    `$    `@    `\    `z    `    `    `    `    a
    a&    aB    a^    a|    a    a    a    a    b    b-    bK    bi    b    b    b    b    b    c    c;    cY    cw    c    c    c    c    d    d+     dI    dg    d    d    d    d    d    e    e7  	  eU  
  es    e    e    e    e    f	    f'    fE    fc    f    f    f    f    f    g    g5    gS    gq    g    g    g    g     h  !  h#  "  h?  #  h[  $  hy  %  h  &  h  '  h  (  h  )  i	  *  i%  +  iA  ,  i]  -  i{  .  i  /  i  0  i  1  i  2  j  3  j%  4  jC  5  ja  6  j}  7  j  8  j  9  j  :  j  ;  k	  <  k'  =  kE  >  kc  ?  k  @  k  A  k  B  k  C  k  D  l  E  l5  F  lS  G  lq  H  l  I  l  J  l  K  l  L  m  M  m%  N  mC  O  ma  P  m  Q  m  R  m  S  m  T  m  U  n  V  n3  W  nQ  X  no  Y  n  Z  n  [  n  \  n  ]  n  ^  o  _  o9  `  oU  a  oq  b  o  c  o  d  o  e  o  f  o  g  p  h  p7  i  pS  j  po  k  p  l  p  m  p  n  p  o  q  p  q  q  q9  r  qU  s  qq  t  q  u  q  v  q  w  q  x  r  y  r#  z  rA  {  r_  |  r}  }  r  ~  r    r    r    s    s1    sO    sm    s    s    s    s    t    t!    t?    t]    t{    t    t    t    t    u    u,    uJ    uh    u    u    u    u    u    v    v:    vX    vv    v    v    v    v    w    w*    wH    wf    w    w    w    w    w    x    x6    xR    xn    x    x    x    x    y     y    y8    yT    yp    y    y    y    y    y    z    z8    zV    zt    z    z    z    z    {     {    {:    {V    {r    {    {    {    {    |    |     |<    |X    |t    |    |    |    |    }    }    }:    }X    }v    }    }    }    }    ~    ~     ~<    ~Z    ~z    ~    ~    ~    ~        :    Z    z                        :    Z    z                        :    Z    z                         4    R    p              	    
      $    B    `    ~                        2    P    n                        "    B    b           !    "    #    $  "  %  B  &  b  '    (    )    *    +    ,  "  -  B  .  b  /    0    1    2    3    4  "  5  B  6  b  7    8    9    :    ;    <    =  8  >  V  ?  t  @    A    B    C    D  
  E  (  F  F  G  d  H    I    J    K    L    M    N  6  O  T  P  r  Q    R    S    T    U    V  "  W  >  X  \  Y  x  Z    [    \    ]    ^    _  $  `  @  a  ^  b  z  c    d    e    f    g    h  &  i  D  j  `  k  |  l    m    n    o    p  
  q  (  r  F  s  d  t    u    v    w    x    y    z  6  {  T  |  r  }    ~                  &    D    b                            4    R    n                            8    T    p                            6    R    p                             8    T    r                        &    D    b                            4    R    p                        $    B    `    ~                        /    M    k                            =    [    y                        -    K    i                            ?    _                            ?    _                            ?    _                            ?    _                             3    Q    o                  	    
  #    A    _    }                        1    O    m                            9    U    s           !    "    #    $    %  ;  &  W  '  s  (    )    *    +    ,    -  !  .  =  /  Y  0  u  1    2    3    4    5    6     7  >  8  \  9  z  :    ;    <    =    >    ?  .  @  L  A  j  B    C    D    E    F     G    H  <  I  Z  J  x  K    L    M    N    O    P  ,  Q  H  R  f  S    T    U    V    W    X    Y  8  Z  V  [  t  \    ]    ^    _    `  
  a  (  b  F  c  d  d    e    f    g    h    i    j  6  k  T  l  r  m    n    o    p    q     r    s  <  t  X  u  t  v    w    x    y    z    {    |  :  }  V  ~  r                             <    X    t                    
    (    F    d                            6    T    r                        &    D    b                            .    L    h                            0    N    j                            4    P    l                            4    R    p                        $    B    `    ~                        2    P    n                        "    @    [    y                        -    K    i                            ;    Y    w                        +    I    g                            1    O     k                            1    M  	  i  
                          3    O    k                            3    Q    o                       !    "  5  #  Q  $  m  %    &    '    (    )    *    +  7  ,  S  -  o  .    /  §  0    1    2    3  %  4  E  5  e  6  Å  7  å  8    9    :    ;  %  <  E  =  e  >  ą  ?  ĥ  @    A    B    C  %  D  E  E  e  F  Ņ  G  ť  H    I    J    K  %  L  E  M  c  N  Ɓ  O  Ɵ  P  ƽ  Q    R    S    T  5  U  S  V  q  W  Ǐ  X  ǭ  Y    Z    [    \  %  ]  C  ^  a  _    `  ȝ  a  Ȼ  b    c    d    e  3  f  Q  g  o  h  ɍ  i  ɭ  j    k    l    m  -  n  M  o  m  p  ʍ  q  ʭ  r    s    t    u  -  v  M  w  m  x  ˍ  y  ˭  z    {    |    }  -  ~  M    m    ̍    ̭                +    I    g    ͅ    ͣ                    9    W    u    Γ    α                )    G    e    σ    ϡ    Ͽ                7    U    q    Ѝ    Щ                    ;    W    s    я    ѫ                    9    U    s    ґ    ү                    ;    W    u    ӓ    ӱ                )    G    e    ԃ    ԡ    Կ                7    U    s    Ց    կ            	    '    E    c    ց    ֟    ֽ                /    K    i    ׇ    ף    ׿                1    M    i    ؅    ء    ؽ                3    O    k    ه    ٣    ٿ                7    U    s    ڑ    گ            	    '     E    c    ہ    ۟    ۽                5  	  S  
  q    ܏    ܭ                %    @    ^    |    ݚ    ݸ                0    N    l    ފ    ި               !     "  >  #  \  $  z  %  ߘ  &  ߶  '    (    )    *  .  +  L  ,  j  -    .    /    0    1  
  2  *  3  J  4  j  5    6    7    8    9  
  :  *  ;  J  <  j  =    >    ?    @    A  
  B  *  C  J  D  j  E    F    G    H    I    J  &  K  D  L  b  M    N    O    P    Q    R    S  4  T  R  U  p  V    W    X    Y    Z    [  $  \  B  ]  `  ^  ~  _    `    a    b    c    d  2  e  N  f  j  g    h    i    j    k    l    m  4  n  P  o  l  p    q    r    s    t    u    v  2  w  P  x  n  y    z    {    |    }    ~      4    R    m                        !    ?    ]    {                        /    M    k                            =    [    y                        +    I    g                            9    W    u                        )    G    e                            1    O    k                            3    Q    m                            7    S    o                            9    W    u                        )    G    e                            7    U    s                    	    '    E    a    }                        +    G    c                             )    E    c                      	    
  +    G    e                            5    S    q                        %    C    a               !    "    #    $  3  %  Q  &  o  '    (    )    *    +    ,     -  >  .  \  /  z  0    1    2    3    4    5  .  6  L  7  j  8    9    :    ;    <       =      >    <  ?    Z  @    x  A      B      C      D      E     F   (  G   D  H   b  I   ~  J     K     L     M     N     O   *  P   F  Q   d  R     S     T     U     V     W     X   ,  Y   J  Z   f  [     \     ]     ^     _     `     a   ,  b   H  c   d  d     e     f     g     h     i     j   .  k   J  l   f  m     n     o     p     q     r     s   .  t   L  u   j  v     w     x     y     z     {     |   0  }   P  ~   p                              0     P     p                         	     	0     	P     	p     	     	     	     	     
     
0     
P     
p     
     
     
     
     
     (     F     d                                   6     T     r                              &     D     b                                   8     X     x                              8     X     x                              8     X     x                              8     X     x                              ,     J     h                                   :     X     v                              *     H     f                                   2     N     l                                   4     P     l                                    6     R     n                      	     
        :     X     v                              *     H     f                                   8     V     t             !     "     #   
  $   (  %   D  &   `  '   |  (     )     *     +     ,     -   *  .   F  /   b  0   ~  1     2     3     4     5     6   (  7   F  8   d  9     :     ;     <     =     >     ?   *  @   H  A   f  B     C     D     E     F     G     H   8  I   V  J   t  K     L     M     N     O    
  P    (  Q    F  R    d  S      T      U      V      W      X   !  Y   !6  Z   !T  [   !r  \   !  ]   !  ^   !  _   !  `   "  a   "#  b   "A  c   "_  d   "}  e   "  f   "  g   "  h   "  i   #  j   #1  k   #O  l   #m  m   #  n   #  o   #  p   #  q   $  r   $!  s   $?  t   $]  u   ${  v   $  w   $  x   $  y   $  z   %  {   %5  |   %U  }   %u  ~   %     %     %     %     &     &5     &U     &u     &     &     &     &     '     '5     'U     'u     '     '     '     '     (     (5     (U     (s     (     (     (     (     )	     )'     )E     )c     )     )     )     )     )     *     *5     *S     *q     *     *     *     *     +     +%     +C     +a     +     +     +     +     +     ,     ,+     ,I     ,g     ,     ,     ,     ,     ,     -     --     -I     -e     -     -     -     -     -     .     ./     .K     .g     .     .     .     .     .     /     /2     /P     /n     /     /     /     /     0     0"     0@     0^     0|     0     0     0     0     1     10     1N     1l     1     1     1     1     2     2     2<     2Z     2x     2     2     2     2     3     3,     3J     3h     3     3     3     3     3     4     4:     4X     4v     4     4      4     4     5     5*     5H     5d     5     5     5  	   5  
   5     6     6.     6J     6f     6     6     6     6     6     7     7,     7H     7f     7     7     7     7     7     8     8.     8J      8h  !   8  "   8  #   8  $   8  %   8  &   9  '   9:  (   9X  )   9v  *   9  +   9  ,   9  -   9  .   :  /   :*  0   :H  1   :f  2   :  3   :  4   :  5   :  6   :  7   ;  8   ;8  9   ;V  :   ;t  ;   ;  <   ;  =   ;  >   ;  ?   <  @   <"  A   <>  B   <\  C   <z  D   <  E   <  F   <  G   <  H   =  I   =$  J   =@  K   =\  L   =x  M   =  N   =  O   =  P   =  Q   >
  R   >&  S   >B  T   >^  U   >z  V   >  W   >  X   >  Y   >  Z   ?
  [   ?(  \   ?F  ]   ?d  ^   ?  _   ?  `   ?  a   ?  b   ?  c   @  d   @6  e   @T  f   @r  g   @  h   @  i   @  j   @  k   A  l   A&  m   AD  n   Ab  o   A  p   A  q   A  r   A  s   A  t   B  u   B1  v   BO  w   Bm  x   B  y   B  z   B  {   B  |   C  }   C!  ~   C?     C]     C{     C     C     C     C     D     D/     DM     Dk     D     D     D     D     E     E     E=     E[     Ew     E     E     E     E     F     F%     FA     F]     Fy     F     F     F     F     G     G#     G?     G[     Gy     G     G     G     G     H	     H%     HA     H]     H{     H     H     H     H     I	     I'     IE     Ia     I}     I     I     I     I     J     J'     JC     J_     J{     J     J     J     J     K     K)     KE     Ka     K}     K     K     K     K     L     L;     L[     L{     L     L     L     L     M     M;     M[     M{     M     M     M     M     N     N;     N[     N{     N     N     N     N     O     O9     OW     Ou     O     O     O     O     P     P)     PG     Pe     P     P     P     P     P     Q     Q7     QU     Qs     Q     Q     Q     Q     R	     R'     RE      Rc     R     R     R     R     S     S#     SC     Sc  	   S  
   S     S     S     T     T#     TC     Tc     T     T     T     T     U     U#     UC     Uc     U     U     U     U     V     V     V=      V[  !   Vy  "   V  #   V  $   V  %   V  &   W  '   W-  (   WK  )   Wi  *   W  +   W  ,   W  -   W  .   W  /   X  0   X;  1   XY  2   Xw  3   X  4   X  5   X  6   X  7   Y  8   Y+  9   YG  :   Yc  ;   Y  <   Y  =   Y  >   Y  ?   Y  @   Z  A   Z-  B   ZI  C   Ze  D   Z  E   Z  F   Z  G   Z  H   Z  I   [  J   [+  K   [I  L   [g  M   [  N   [  O   [  P   [  Q   [  R   \  S   \-  T   \K  U   \i  V   \  W   \  X   \  Y   \  Z   \  [   ]  \   ];  ]   ]Y  ^   ]w  _   ]  `   ]  a   ]  b   ]  c   ^  d   ^+  e   ^I  f   ^g  g   ^  h   ^  i   ^  j   ^  k   ^  l   _  m   _9  n   _W  o   _u  p   _  q   _  r   _  s   _  t   `  u   `!  v   `?  w   `]  x   `y  y   `  z   `  {   `  |   `  }   a  ~   a#     a?     a[     aw     a     a     a     a     b	     b%     bA     b]     by     b     b     b     b     c     c+     cI     cg     c     c     c     c     c     d     d9     dW     du     d     d     d     d     e     e)     eG     ee     e     e     e     e     e     f     f4     fR     fp     f     f     f     f     g     g$     gB     g`     g~     g     g     g     g     h     h2     hP     hn     h     h     h     h     i     i"     i@     i`     i     i     i     i     j      j      j@     j`     j     j     j     j     k      k      k@     k`     k     k     k     k     l      l      l@     l`     l     l     l     l     l     m     m8     mV     mt     m     m     m     m     n
     n(     nF     nd     n     n     n     n     n     o     o6     oT     or     o     o     o     o     p     p$     p@     p\      pz     p     p     p     p     q
     q&     qB     q^  	   q|  
   q     q     q     q     r     r&     rD     rb     r~     r     r     r     r     s
     s(     sC     sa     s     s     s     s     s      t  !   t3  "   tQ  #   to  $   t  %   t  &   t  '   t  (   u  )   u#  *   uA  +   u_  ,   u}  -   u  .   u  /   u  0   u  1   v  2   v1  3   vO  4   vm  5   v  6   v  7   v  8   v  9   w  :   w  ;   w=  <   w[  =   wy  >   w  ?   w  @   w  A   w  B   x  C   x-  D   xK  E   xi  F   x  G   x  H   x  I   x  J   x  K   y  L   y;  M   yY  N   yw  O   y  P   y  Q   y  R   y  S   z  T   z%  U   zA  V   z_  W   z}  X   z  Y   z  Z   z  [   z  \   {	  ]   {'  ^   {C  _   {_  `   {{  a   {  b   {  c   {  d   {  e   |  f   |)  g   |E  h   |a  i   |}  j   |  k   |  l   |  m   |  n   }  o   }-  p   }K  q   }i  r   }  s   }  t   }  u   }  v   }  w   ~  x   ~;  y   ~Y  z   ~w  {   ~  |   ~  }   ~  ~   ~          +     I     g                                   7     S     o                                   9     U     q                                   9     W     u                                   ;     W     u                              )     G     e                                   7     U     s                         	     '     E     c                                   2     P     n                              "     @     ^     |                              0     N     l                                   8     T     r                                    :     V     r                                    <     X     t                                   :     X     t                                     <     Z     v            	     
             "     @     \     x                              &     F     f                              &     F     f        !     "     #     $     %   &  &   F  '   f  (     )     *     +     ,     -   &  .   F  /   f  0     1     2     3     4     5     6   :  7   X  8   v  9     :     ;     <     =     >   *  ?   H  @   f  A     B     C     D     E     F     G   8  H   V  I   t  J     K     L     M     N     O   .  P   N  Q   n  R     S     T     U     V     W   .  X   N  Y   n  Z     [     \     ]     ^     _   .  `   N  a   n  b     c     d     e     f     g   .  h   N  i   l  j     k     l     m     n     o      p   >  q   \  r   z  s     t     u     v     w     x   .  y   L  z   j  {     |     }     ~                   <     Z     x                              $     B     `     |                         
     &     B     ^     z                              (     D     `     |                              .     L     j                                    <     Z     x                              ,     J     h                                   6     R     p                                    8     T     r                                   :     X     t                                    <     Z     x                              ,     J     h                                   :     X     v                              *     H     f                                   5     S     q                               %     C     a                 	     
             3     Q     o                              +     K     k                              +     K     k             !     "     #     $   +  %   K  &   k  '     (     )     *     +     ,   +  -   I  .   g  /     0     1     2     3     4     5   9  6   W  7   u  8     9     :     ;     <     =   )  >   G  ?   e  @     A     B     C     D     E     F   7  G   U  H   s  I     J     K     L     M     N     O   =  P   Y  Q   u  R     S     T     U     V     W     X   ;  Y   W  Z   s  [     \     ]     ^     _     `   !  a   =  b   Y  c   u  d     e     f     g     h     i   &  j   D  k   b  l     m     n     o     p     q     r   4  s   R  t   p  u     v     w     x     y     z   $  {   B  |   `  }   ~  ~                            0     N     l                                    >     \     z                              .     L     j                                    :     V     r                                    <     X     t                                   <     Z     x                                    >     \     z                              .     L     j          ¦                          <     Z     x     Ö     ô                    ,     J     h     Ć     Ģ     ľ                    2     P     l     ň     Ť                         2     N     j     Ɔ     Ƥ                         4     P     l     ǈ     Ǧ                         :     X     v     Ȕ     Ȳ                    *     H     f      Ʉ     ɢ                         8     V     t  	   ʒ  
   ʰ                    %     C     a          ˝     ˻                    3     Q     o     ̍     ̫                    #      A  !   _  "   }  #   ͛  $   ͹  %     &     '     (   1  )   M  *   i  +   ΅  ,   Σ  -   ο  .     /     0     1   3  2   O  3   k  4   χ  5   ϥ  6     7     8     9     :   1  ;   O  <   m  =   Ћ  >   Ч  ?     @     A     B     C   3  D   Q  E   m  F   щ  G   ѥ  H     I     J     K     L   7  M   S  N   o  O   ҋ  P   ҧ  Q     R     S     T     U   5  V   Q  W   o  X   Ӎ  Y   ӫ  Z     [     \     ]     ^   7  _   S  `   q  a   ԑ  b   Ա  c     d     e     f   1  g   Q  h   q  i   Ց  j   ձ  k     l     m     n   1  o   Q  p   q  q   ֑  r   ֱ  s     t     u     v   1  w   Q  x   q  y   ב  z   ױ  {     |     }     ~   -     K     i     ؇     إ                         ;     Y     w     ٕ     ٳ                    +     I     g     څ     ڣ                         9     Y     y     ۙ     ۹                    9     Y     y     ܙ     ܹ                    9     Y     y     ݙ     ݹ                    9     Y     y     ޙ     ޹                    1     O     m     ߋ     ߩ                    !     ?     ]     {                              /     M     k                                   9     U     s                                   ;     W     u                                   =     [     w                              !     ?     ]     {                              /     M     k                                   =     [      y                              -     K     i  	     
                            3     O     k                                   1     M     i                                 !   3  "   O  #   k  $     %     &     '     (     )     *   =  +   [  ,   y  -     .     /     0     1     2   -  3   K  4   i  5     6     7     8     9     :     ;   ;  <   Y  =   w  >     ?     @     A     B   
  C   (  D   F  E   d  F     G     H     I     J     K     L   6  M   T  N   r  O     P     Q     R     S     T   &  U   D  V   b  W     X     Y     Z     [     \     ]   6  ^   V  _   v  `     a     b     c     d     e   6  f   V  g   v  h     i     j     k     l     m   6  n   V  o   v  p     q     r     s     t     u   6  v   V  w   v  x     y     z     {     |     }   ,  ~   J     h                                   :     X     v                              *     H     f                                   2     P     l                                   4     R     n                                   8     T     p                                   7     U     s                         	     '     E     c                                   5     S     q                              %     C     _     }                        !     ! 1    ! O    ! m    !     !     !     !     !    !!    !?    !]    !{    !    !    !    !    !    !/    !M    !k    !    !    !    !    !    !    !5    !S    !o    !    !    !    !    !    !    !5    !Q    !m    !    !    !    !    !    !     !7    !S    !o    !    !    !    !    !    !!  	  !?  
  !]    !{    !    !    !    !    !    !/    !M    !k    !    !    !    !    !    !    !=    ![    !y    !    !    !     !  !  !	  "  !	)  #  !	E  $  !	c  %  !	  &  !	  '  !	  (  !	  )  !	  *  !
  +  !
+  ,  !
G  -  !
e  .  !
  /  !
  0  !
  1  !
  2  !
  3  !  4  !-  5  !K  6  !g  7  !  8  !  9  !  :  !  ;  !  <  !  =  !-  >  !K  ?  !i  @  !  A  !  B  !  C  !  D  !  E  !  F  !;  G  !Y  H  !w  I  !  J  !  K  !  L  !  M  !  N  !+  O  !I  P  !g  Q  !  R  !  S  !  T  !  U  !  V  !  W  !9  X  !W  Y  !r  Z  !  [  !  \  !  ]  !  ^  !  _  !&  `  !D  a  !b  b  !  c  !  d  !  e  !  f  !  g  !  h  !4  i  !R  j  !p  k  !  l  !  m  !  n  !  o  !  p  !$  q  !B  r  !`  s  !~  t  !  u  !  v  !  w  !  x  !  y  !*  z  !H  {  !f  |  !  }  !  ~  !    !    !    !    !,    !H    !d    !    !    !    !    !    !    !.    !J    !f    !    !    !    !    !    !    !.    !J    !h    !    !    !    !    !    !    !0    !L    !h    !    !    !    !    !    !    !2    !N    !j    !    !    !    !    !    !    !<    !\    !|    !    !    !    !    !    !<    !\    !|    !    !    !    !    !    !<    !\    !|    !    !    !    !    !    !<    !\    !z    !    !    !    !    !    !.    !L    !j    !    !    !    !    !     !    !<    !Z    !x    !    !    !    !    !    !,    !J    !h    !    !    !    !    !     ! $    ! D    ! d    !     !     !     !     !!    !!$    !!D    !!d    !!    !!    !!    !!    !"    !"$    !"D    !"d    !"    !"    !"    !"    !#     !#$    !#B    !#`    !#~    !#    !#    !#    !#    !$  	  !$2  
  !$P    !$n    !$    !$    !$    !$    !%    !%"    !%@    !%^    !%|    !%    !%    !%    !%    !&    !&0    !&N    !&l    !&    !&    !&     !&  !  !&  "  !'  #  !'6  $  !'R  %  !'n  &  !'  '  !'  (  !'  )  !'  *  !'  +  !(  ,  !(4  -  !(P  .  !(l  /  !(  0  !(  1  !(  2  !(  3  !(  4  !)  5  !)6  6  !)R  7  !)n  8  !)  9  !)  :  !)  ;  !)  <  !*  =  !*"  >  !*@  ?  !*^  @  !*|  A  !*  B  !*  C  !*  D  !*  E  !+  F  !+0  G  !+N  H  !+l  I  !+  J  !+  K  !+  L  !+  M  !,  N  !,   O  !,>  P  !,\  Q  !,z  R  !,  S  !,  T  !,  U  !,  V  !-  W  !-(  X  !-F  Y  !-b  Z  !-  [  !-  \  !-  ]  !-  ^  !-  _  !.  `  !.*  a  !.H  b  !.d  c  !.  d  !.  e  !.  f  !.  g  !.  h  !/  i  !/.  j  !/J  k  !/f  l  !/  m  !/  n  !/  o  !/  p  !/  q  !0  r  !00  s  !0N  t  !0l  u  !0  v  !0  w  !0  x  !0  y  !1  z  !1   {  !1>  |  !1\  }  !1z  ~  !1    !1    !1    !1    !2    !2.    !2L    !2j    !2    !2    !2    !2    !3     !3    !3<    !3W    !3u    !3    !3    !3    !3    !4    !4)    !4G    !4e    !4    !4    !4    !4    !4    !5    !57    !5U    !5s    !5    !5    !5    !5    !6	    !6'    !6E    !6c    !6    !6    !6    !6    !7    !7!    !7A    !7a    !7    !7    !7    !7    !8    !8!    !8A    !8a    !8    !8    !8    !8    !9    !9!    !9A    !9a    !9    !9    !9    !9    !:    !:    !:=    !:[    !:y    !:    !:    !:    !:    !;    !;-    !;K    !;i    !;    !;    !;    !;    !;    !<    !<;    !<Y    !<w    !<    !<    !<    !<    !=    !=+    !=I    !=e    !=    !=    !=    !=    !=    !>    !>/    !>K    !>g    !>    !>    !>    !>    !>    !?    !?-    !?I    !?g    !?    !?    !?    !?    !?    !@    !@/    !@K    !@i    !@    !@    !@     !@    !@    !A    !A8    !AV    !At    !A    !A    !A  	  !A  
  !B
    !B(    !BF    !Bd    !B    !B    !B    !B    !B    !C    !C6    !CT    !Cr    !C    !C    !C    !C    !D    !D$    !DB    !D`    !D~     !D  !  !D  "  !D  #  !D  $  !E  %  !E2  &  !EP  '  !En  (  !E  )  !E  *  !E  +  !E  ,  !F  -  !F"  .  !F@  /  !F^  0  !F|  1  !F  2  !F  3  !F  4  !F  5  !G  6  !G,  7  !GH  8  !Gf  9  !G  :  !G  ;  !G  <  !G  =  !G  >  !H  ?  !H.  @  !HJ  A  !Hh  B  !H  C  !H  D  !H  E  !H  F  !H  G  !I  H  !I0  I  !IN  J  !Ij  K  !I  L  !I  M  !I  N  !I  O  !I  P  !J  Q  !J2  R  !JP  S  !Jn  T  !J  U  !J  V  !J  W  !J  X  !K  Y  !K"  Z  !K@  [  !K^  \  !K|  ]  !K  ^  !K  _  !K  `  !K  a  !L  b  !L0  c  !LN  d  !Ll  e  !L  f  !L  g  !L  h  !L  i  !M  j  !M   k  !M>  l  !M\  m  !Mx  n  !M  o  !M  p  !M  q  !M  r  !N  s  !N&  t  !NB  u  !N^  v  !Nz  w  !N  x  !N  y  !N  z  !N  {  !O  |  !O$  }  !O@  ~  !O\    !Oz    !O    !O    !O    !O    !P
    !P&    !PB    !P^    !P|    !P    !P    !P    !P    !Q    !Q.    !QL    !Qj    !Q    !Q    !Q    !Q    !R     !R    !R<    !RZ    !Rx    !R    !R    !R    !R    !S    !S,     !SJ  ¡  !Sh  ¢  !S  £  !S  ¤  !S  ¥  !S  ¦  !S  §  !T  ¨  !T7  ©  !TU  ª  !Ts  «  !T  ¬  !T  ­  !T  ®  !T  ¯  !U	  °  !U'  ±  !UE  ²  !Uc  ³  !U  ´  !U  µ  !U  ¶  !U  ·  !U  ¸  !V  ¹  !V5  º  !VS  »  !Vq  ¼  !V  ½  !V  ¾  !V  ¿  !V    !W    !W#    !W?    !W[    !Wy    !W    !W    !W    !W    !X	    !X%    !XA    !X]    !X{    !X    !X    !X    !X    !Y    !Y%    !YC    !Ya    !Y}    !Y    !Y    !Y    !Y    !Z	    !Z'    !ZC    !Z_    !Z{    !Z    !Z    !Z    !Z    ![    ![)    ![E    ![a    ![}    ![    ![    ![    ![    !\    !\'    !\E    !\c    !\    !\    !\    !\    !\    !]    !])    !]G    !]g    !]    !]    !]    !]    !^    !^'     !^G    !^g    !^    !^    !^    !^    !_    !_'    !_G  	  !_g  
  !_    !_    !_    !_    !`    !`'    !`G    !`g    !`    !`    !`    !`    !a    !a!    !a?    !a]    !a{    !a    !a    !a    !a    !b     !b/  !  !bM  "  !bk  #  !b  $  !b  %  !b  &  !b  '  !c  (  !c  )  !c=  *  !c[  +  !cy  ,  !c  -  !c  .  !c  /  !c  0  !d  1  !d/  2  !dO  3  !do  4  !d  5  !d  6  !d  7  !d  8  !e  9  !e/  :  !eO  ;  !eo  <  !e  =  !e  >  !e  ?  !e  @  !f  A  !f/  B  !fO  C  !fo  D  !f  E  !f  F  !f  G  !f  H  !g  I  !g/  J  !gO  K  !go  L  !g  M  !g  N  !g  O  !g  P  !h  Q  !h%  R  !hC  S  !ha  T  !h  U  !h  V  !h  W  !h  X  !h  Y  !i  Z  !i3  [  !iQ  \  !io  ]  !i  ^  !i  _  !i  `  !i  a  !j  b  !j#  c  !jA  d  !j_  e  !j}  f  !j  g  !j  h  !j  i  !j  j  !k  k  !k+  l  !kI  m  !ke  n  !k  o  !k  p  !k  q  !k  r  !k  s  !l  t  !l-  u  !lK  v  !lg  w  !l  x  !l  y  !l  z  !l  {  !l  |  !m  }  !m1  ~  !mM    !mi  À  !m  Á  !m  Â  !m  Ã  !m  Ä  !m  Å  !n  Æ  !n3  Ç  !nQ  È  !no  É  !n  Ê  !n  Ë  !n  Ì  !n  Í  !o  Î  !o#  Ï  !oA  Ð  !o_  Ñ  !o}  Ò  !o  Ó  !o  Ô  !o  Õ  !o  Ö  !p  ×  !p1  Ø  !pO  Ù  !pm  Ú  !p  Û  !p  Ü  !p  Ý  !p  Þ  !q  ß  !q!  à  !q?  á  !q[  â  !qw  ã  !q  ä  !q  å  !q  æ  !q  ç  !r	  è  !r%  é  !rA  ê  !r]  ë  !ry  ì  !r  í  !r  î  !r  ï  !r  ð  !s  ñ  !s#  ò  !s?  ó  !s]  ô  !s{  õ  !s  ö  !s  ÷  !s  ø  !s  ù  !t	  ú  !t%  û  !tA  ü  !t_  ý  !t}  þ  !t  ÿ  !t    !t    !t    !u    !u1    !uO    !um    !u    !u    !u    !u    !v    !v!    !v?    !v]    !v{    !v    !v    !v    !v    !w    !w/    !wM    !wk    !w    !w    !w    !w    !w    !x    !x:    !xX    !xv    !x    !x    !x    !x    !y    !y*    !yH    !yf    !y    !y    !y    !y    !y    !z    !z8    !zV    !zt    !z    !z    !z    !z    !{    !{,    !{L    !{l    !{    !{    !{    !{    !|    !|,    !|L     !|l    !|    !|    !|    !|    !}    !},    !}L    !}l  	  !}  
  !}    !}    !}    !~    !~,    !~L    !~l    !~    !~    !~    !~    !    !     !>    !\    !z    !    !    !    !    !    !.     !L  !  !j  "  !  #  !  $  !  %  !  &  !   '  !  (  !<  )  !Z  *  !x  +  !  ,  !  -  !  .  !  /  !  0  !&  1  !B  2  !`  3  !~  4  !  5  !  6  !  7  !  8  !
  9  !(  :  !D  ;  !`  <  !|  =  !  >  !  ?  !  @  !  A  !  B  !*  C  !F  D  !b  E  !~  F  !  G  !  H  !  I  !  J  !  K  !+  L  !I  M  !g  N  !  O  !  P  !  Q  !  R  !  S  !  T  !9  U  !W  V  !u  W  !  X  !  Y  !  Z  !  [  !  \  !)  ]  !G  ^  !e  _  !  `  !  a  !  b  !  c  !  d  !  e  !5  f  !S  g  !q  h  !  i  !  j  !  k  !  l  !  m  !%  n  !C  o  !a  p  !  q  !  r  !  s  !  t  !  u  !  v  !3  w  !Q  x  !o  y  !  z  !  {  !  |  !  }  !  ~  !#    !A  Ā  !_  ā  !{  Ă  !  ă  !  Ą  !  ą  !  Ć  !  ć  !)  Ĉ  !E  ĉ  !a  Ċ  !}  ċ  !  Č  !  č  !  Ď  !  ď  !  Đ  !'  đ  !C  Ē  !_  ē  !}  Ĕ  !  ĕ  !  Ė  !  ė  !  Ę  !  ę  !)  Ě  !E  ě  !a  Ĝ  !  ĝ  !  Ğ  !  ğ  !  Ġ  !  ġ  !  Ģ  !3  ģ  !Q  Ĥ  !o  ĥ  !  Ħ  !  ħ  !  Ĩ  !  ĩ  !  Ī  !#  ī  !A  Ĭ  !_  ĭ  !}  Į  !  į  !  İ  !  ı  !  Ĳ  !  ĳ  !1  Ĵ  !O  ĵ  !m  Ķ  !  ķ  !  ĸ  !  Ĺ  !  ĺ  !  Ļ  !  ļ  !9  Ľ  !U  ľ  !s  Ŀ  !    !    !    !    !    !    !;    !W    !s    !    !    !    !    !    !!    !=    !Y    !u    !    !    !    !    !    !!    !?    !]    !{    !    !    !    !    !    !/    !M    !k    !    !    !    !    !    !    !=    ![    !y    !    !    !    !    !    !-    !H    !f    !    !    !    !    !    !    !8    !V    !t    !    !    !    !     !
    !(    !F    !d    !    !    !    !    !  	  !  
  !6    !T    !r    !    !    !    !    !     !    !<    !X    !t    !    !    !    !    !    !    !:    !V    !r    !     !  !  !  "  !  #  !  $  !   %  !<  &  !X  '  !t  (  !  )  !  *  !  +  !  ,  !  -  !   .  !>  /  !\  0  !x  1  !  2  !  3  !  4  !  5  !  6  !"  7  !>  8  !Z  9  !v  :  !  ;  !  <  !  =  !  >  !  ?  !$  @  !@  A  !\  B  !x  C  !  D  !  E  !  F  !  G  !  H  !2  I  !R  J  !r  K  !  L  !  M  !  N  !  O  !  P  !2  Q  !R  R  !r  S  !  T  !  U  !  V  !  W  !  X  !2  Y  !R  Z  !r  [  !  \  !  ]  !  ^  !  _  !  `  !2  a  !P  b  !n  c  !  d  !  e  !  f  !  g  !  h  !"  i  !@  j  !^  k  !|  l  !  m  !  n  !  o  !  p  !  q  !0  r  !N  s  !l  t  !  u  !  v  !  w  !  x  !  y  !   z  !>  {  !\  |  !z  }  !  ~  !    !  ŀ  !  Ł  !  ł  !:  Ń  !Z  ń  !z  Ņ  !  ņ  !  Ň  !  ň  !  ŉ  !  Ŋ  !:  ŋ  !Z  Ō  !z  ō  !  Ŏ  !  ŏ  !  Ő  !  ő  !  Œ  !:  œ  !Z  Ŕ  !z  ŕ  !  Ŗ  !  ŗ  !  Ř  !  ř  !  Ś  !6  ś  !T  Ŝ  !r  ŝ  !  Ş  !  ş  !  Š  !  š  !  Ţ  !&  ţ  !D  Ť  !b  ť  !  Ŧ  !  ŧ  !  Ũ  !  ũ  !  Ū  !  ū  !4  Ŭ  !R  ŭ  !p  Ů  !  ů  !  Ű  !  ű  !  Ų  !  ų  !$  Ŵ  !B  ŵ  !^  Ŷ  !z  ŷ  !  Ÿ  !  Ź  !  ź  !  Ż  !  ż  !(  Ž  !D  ž  !`  ſ  !|    !    !    !    !    !
    !&    !B    !`    !~    !    !    !    !    !    !(    !D    !b    !    !    !    !    !    !    !4    !R    !p    !    !    !    !    !    !$    !B    !`    !~    !    !    !    !    !    !2    !P    !n    !    !    !    !    !    !    !8    !V    !t    !    !    !    !    !     !    !:    !V    !r    !    !    !     !    !    !     !<    !X    !t    !    !    !  	  !  
  !    !$    !B    !`    !~    !    !    !    !    !    !2    !P    !n    !    !    !    !    !    !"    !@    !^    !|     !  !  !  "  !  #  !  $  !  %  !-  &  !K  '  !i  (  !  )  !  *  !  +  !  ,  !  -  !  .  !;  /  !Y  0  !w  1  !  2  !  3  !  4  !  5  !  6  !+  7  !I  8  !g  9  !  :  !  ;  !  <  !  =  !  >  !  ?  !9  @  !W  A  !w  B  !  C  !  D  !  E  !  F  !  G  !7  H  !W  I  !w  J  !  K  !  L  !  M  !  N  !  O  !7  P  !W  Q  !w  R  !  S  !  T  !  U  !  V  !  W  !7  X  !W  Y  !w  Z  !  [  !·  \  !  ]  !  ^  !  _  !1  `  !O  a  !m  b  !Ë  c  !é  d  !  e  !  f  !  g  !!  h  !?  i  !]  j  !{  k  !ę  l  !ķ  m  !  n  !  o  !  p  !/  q  !M  r  !k  s  !ŉ  t  !ŧ  u  !  v  !  w  !  x  !  y  !;  z  !W  {  !s  |  !Ƒ  }  !ƭ  ~  !    !  ƀ  !  Ɓ  !!  Ƃ  !=  ƃ  !Y  Ƅ  !u  ƅ  !Ǔ  Ɔ  !ǯ  Ƈ  !  ƈ  !  Ɖ  !  Ɗ  !  Ƌ  !=  ƌ  ![  ƍ  !y  Ǝ  !ȕ  Ə  !ȱ  Ɛ  !  Ƒ  !  ƒ  !  Ɠ  !!  Ɣ  !?  ƕ  !Z  Ɩ  !x  Ɨ  !ɖ  Ƙ  !ɴ  ƙ  !  ƚ  !  ƛ  !  Ɯ  !,  Ɲ  !J  ƞ  !h  Ɵ  !ʆ  Ơ  !ʤ  ơ  !  Ƣ  !  ƣ  !  Ƥ  !  ƥ  !:  Ʀ  !X  Ƨ  !v  ƨ  !˔  Ʃ  !˲  ƪ  !  ƫ  !  Ƭ  !  ƭ  !*  Ʈ  !H  Ư  !f  ư  !̄  Ʊ  !̠  Ʋ  !̾  Ƴ  !  ƴ  !  Ƶ  !  ƶ  !6  Ʒ  !T  Ƹ  !r  ƹ  !͐  ƺ  !ͮ  ƻ  !  Ƽ  !  ƽ  !  ƾ  !&  ƿ  !D    !b    !΀    !Ξ    !μ    !    !    !    !4    !R    !p    !ώ    !Ϭ    !    !    !    !    !<    !X    !v    !Д    !а    !    !    !    !     !>    !Z    !v    !ђ    !Ѯ    !    !    !    !$    !@    !\    !x    !Ҕ    !Ұ    !    !    !    !&    !D    !b    !Ӏ    !Ӟ    !Ӽ    !    !    !    !4    !R    !p    !Ԏ    !Ԭ    !    !    !    !$    !B    !`    !~    !՜     !պ    !    !    !    !2    !N    !j    !ֆ    !֤  	  !  
  !    !    !    !4    !P    !l    !׈    !צ    !    !    !    !    !2    !P    !n    !،    !ب    !    !    !    !    !4     !R  !  !n  "  !ٌ  #  !٪  $  !  %  !  &  !  '  !"  (  !@  )  !^  *  !|  +  !ښ  ,  !ڸ  -  !  .  !  /  !  0  !0  1  !N  2  !l  3  !ۊ  4  !ۨ  5  !  6  !  7  !  8  !   9  !>  :  !\  ;  !z  <  !ܘ  =  !ܳ  >  !  ?  !  @  !  A  !+  B  !I  C  !g  D  !݅  E  !ݣ  F  !  G  !  H  !  I  !  J  !9  K  !W  L  !u  M  !ޓ  N  !ޱ  O  !  P  !  Q  !  R  !)  S  !G  T  !e  U  !߃  V  !ߡ  W  !߿  X  !  Y  !  Z  !  [  !1  \  !O  ]  !k  ^  !  _  !  `  !  a  !  b  !  c  !  d  !3  e  !Q  f  !m  g  !  h  !  i  !  j  !  k  !  l  !  m  !7  n  !S  o  !o  p  !  q  !  r  !  s  !  t  !  u  !  v  !5  w  !Q  x  !o  y  !  z  !  {  !  |  !  }  !  ~  !    !7  ǀ  !S  ǁ  !q  ǂ  !  ǃ  !  Ǆ  !  ǅ  !  ǆ  !  Ǉ  !  ǈ  !9  ǉ  !W  Ǌ  !s  ǋ  !  ǌ  !  Ǎ  !  ǎ  !  Ǐ  !  ǐ  !  Ǒ  !=  ǒ  !]  Ǔ  !}  ǔ  !  Ǖ  !  ǖ  !  Ǘ  !  ǘ  !  Ǚ  !=  ǚ  !]  Ǜ  !}  ǜ  !  ǝ  !  Ǟ  !  ǟ  !  Ǡ  !  ǡ  !=  Ǣ  !]  ǣ  !}  Ǥ  !  ǥ  !  Ǧ  !  ǧ  !  Ǩ  !  ǩ  !=  Ǫ  !]  ǫ  !}  Ǭ  !  ǭ  !  Ǯ  !  ǯ  !  ǰ  !  Ǳ  !3  ǲ  !Q  ǳ  !o  Ǵ  !  ǵ  !  Ƕ  !  Ƿ  !  Ǹ  !  ǹ  !#  Ǻ  !A  ǻ  !_  Ǽ  !}  ǽ  !  Ǿ  !  ǿ  !    !    !    !1    !O    !m    !    !    !    !    !    !%    !E    !e    !    !    !    !    !    !%    !E    !e    !    !    !    !    !    !%    !E    !e    !    !    !    !    !    !%    !E    !e    !    !    !    !    !    !    !7    !U    !s    !    !    !    !    !	    !'    !E    !c    !    !    !    !    !    !    !5    !S    !q    !     !    !    !    !    !    !;    !Y    !w    !  	  !  
  !    !    !    !!    !=    !Y    !u    !    !    !    !    !    !#    !?    ![    !w    !    !    !    !    !	    !'     !E  !  !c  "  !  #  !  $  !  %  !  &  !  '  !  (  !5  )  !S  *  !q  +  !  ,  !  -  !  .  !  /  !  0  !%  1  !C  2  !a  3  !  4  !  5  !  6  !  7  !  8  !  9  !1  :  !M  ;  !i  <  !  =  !  >  !  ?  !  @  !  A  !  B  !3  C  !O  D  !k  E  !  F  !  G  !  H  !  I  !  J  !  K  !3  L  !Q  M  !o  N  !  O  !  P  !  Q  !  R  !  S  !  T  !5  U  !S  V  !q  W  !  X  !  Y  !  Z  !  [  !  \  !%  ]  !C  ^  !a  _  !  `  !  a  !  b  !  c  !  d  !  e  !3  f  !Q  g  !o  h  !  i  !  j  !  k  !  l  "   m  " #  n  " A  o  " _  p  " }  q  "   r  "   s  "   t  "   u  "  v  ".  w  "L  x  "j  y  "  z  "  {  "  |  "  }  "   ~  "    "<  Ȁ  "Z  ȁ  "x  Ȃ  "  ȃ  "  Ȅ  "  ȅ  "  Ȇ  "  ȇ  ",  Ȉ  "J  ȉ  "h  Ȋ  "  ȋ  "  Ȍ  "  ȍ  "  Ȏ  "  ȏ  ""  Ȑ  "B  ȑ  "b  Ȓ  "  ȓ  "  Ȕ  "  ȕ  "  Ȗ  "  ȗ  ""  Ș  "B  ș  "b  Ț  "  ț  "  Ȝ  "  ȝ  "  Ȟ  "  ȟ  ""  Ƞ  "B  ȡ  "b  Ȣ  "  ȣ  "  Ȥ  "  ȥ  "  Ȧ  "  ȧ  ""  Ȩ  "B  ȩ  "`  Ȫ  "~  ȫ  "  Ȭ  "  ȭ  "  Ȯ  "  ȯ  "  Ȱ  "2  ȱ  "P  Ȳ  "n  ȳ  "  ȴ  "  ȵ  "  ȶ  "  ȷ  "	  ȸ  "	"  ȹ  "	@  Ⱥ  "	^  Ȼ  "	|  ȼ  "	  Ƚ  "	  Ⱦ  "	  ȿ  "	    "
    "
0    "
N    "
l    "
    "
    "
    "
    "
    "    "6    "T    "p    "    "    "    "    "    "    "6    "R    "n    "    "    "    "    "     "    "8    "T    "p    "    "    "    "    "    "    "=    "[    "y    "    "    "    "    "    "-    "K    "i    "    "    "    "    "    "    ";    "Y    "w    "    "    "    "    "    ")    "G     "e    "    "    "    "    "    "    "7    "U  	  "s  
  "    "    "    "    "	    "'    "E    "c    "    "    "    "    "    "    "5    "Q    "m    "    "    "    "    "     "  !  "7  "  "S  #  "o  $  "  %  "  &  "  '  "  (  "  )  "  *  "5  +  "S  ,  "q  -  "  .  "  /  "  0  "  1  "  2  "  3  "7  4  "U  5  "s  6  "  7  "  8  "  9  "  :  "	  ;  "'  <  "E  =  "c  >  "  ?  "  @  "  A  "  B  "  C  "  D  "5  E  "S  F  "q  G  "  H  "  I  "  J  "  K  "  L  "%  M  "C  N  "a  O  "  P  "  Q  "  R  "  S  "  T  "  U  "+  V  "I  W  "g  X  "  Y  "  Z  "  [  "  \  "  ]  "  ^  "-  _  "I  `  "e  a  "  b  "  c  "  d  "  e  "  f  "  g  "/  h  "K  i  "g  j  "  k  "  l  "  m  "  n  "  o  "  p  "3  q  "Q  r  "o  s  "  t  "  u  "  v  "  w  "  x  "#  y  "A  z  "_  {  "}  |  "  }  "  ~  "    "  ɀ  "   Ɂ  " 1  ɂ  " O  Ƀ  " m  Ʉ  "   Ʌ  "   Ɇ  "   ɇ  "   Ɉ  "!  ɉ  "!  Ɋ  "!<  ɋ  "!Z  Ɍ  "!x  ɍ  "!  Ɏ  "!  ɏ  "!  ɐ  "!  ɑ  ""  ɒ  "",  ɓ  ""J  ɔ  ""h  ɕ  ""  ɖ  ""  ɗ  ""  ɘ  ""  ə  ""  ɚ  "#  ɛ  "#:  ɜ  "#X  ɝ  "#v  ɞ  "#  ɟ  "#  ɠ  "#  ɡ  "#  ɢ  "$  ɣ  "$*  ɤ  "$H  ɥ  "$d  ɦ  "$  ɧ  "$  ɨ  "$  ɩ  "$  ɪ  "$  ɫ  "%  ɬ  "%.  ɭ  "%J  ɮ  "%f  ɯ  "%  ɰ  "%  ɱ  "%  ɲ  "%  ɳ  "%  ɴ  "&  ɵ  "&,  ɶ  "&H  ɷ  "&f  ɸ  "&  ɹ  "&  ɺ  "&  ɻ  "&  ɼ  "&  ɽ  "'  ɾ  "'.  ɿ  "'J    "'h    "'    "'    "'    "'    "'    "(    "(2    "(N    "(j    "(    "(    "(    "(    "(    ")    ")0    ")L    ")h    ")    ")    ")    ")    ")    "*    "*2    "*N    "*j    "*    "*    "*    "*    "+    "+(    "+H    "+h    "+    "+    "+    "+    ",    ",(    ",H    ",h    ",    ",    ",    ",    "-    "-(    "-H    "-h    "-    "-    "-    "-    ".    ".&    ".D    ".b    ".    ".    ".    ".     ".    "/    "/4    "/R    "/p    "/    "/    "/    "/  	  "0  
  "0$    "0B    "0`    "0~    "0    "0    "0    "0    "1    "12    "1P    "1p    "1    "1    "1    "1    "2    "20    "2P    "2p    "2    "2     "2  !  "2  "  "3  #  "30  $  "3P  %  "3p  &  "3  '  "3  (  "3  )  "3  *  "4  +  "40  ,  "4P  -  "4p  .  "4  /  "4  0  "4  1  "4  2  "5  3  "5*  4  "5H  5  "5f  6  "5  7  "5  8  "5  9  "5  :  "5  ;  "6  <  "68  =  "6V  >  "6t  ?  "6  @  "6  A  "6  B  "6  C  "7
  D  "7(  E  "7F  F  "7d  G  "7  H  "7  I  "7  J  "7  K  "7  L  "8  M  "84  N  "8P  O  "8l  P  "8  Q  "8  R  "8  S  "8  T  "8  U  "9  V  "96  W  "9R  X  "9n  Y  "9  Z  "9  [  "9  \  "9  ]  "9  ^  ":  _  ":6  `  ":T  a  ":r  b  ":  c  ":  d  ":  e  ":  f  ":  g  ";  h  ";8  i  ";V  j  ";t  k  ";  l  ";  m  ";  n  ";  o  "<
  p  "<(  q  "<F  r  "<d  s  "<  t  "<  u  "<  v  "<  w  "<  x  "=  y  "=6  z  "=T  {  "=r  |  "=  }  "=  ~  "=    "=  ʀ  ">  ʁ  ">&  ʂ  ">D  ʃ  ">b  ʄ  ">  ʅ  ">  ʆ  ">  ʇ  ">  ʈ  ">  ʉ  "?  ʊ  "?,  ʋ  "?J  ʌ  "?f  ʍ  "?  ʎ  "?  ʏ  "?  ʐ  "?  ʑ  "?  ʒ  "@  ʓ  "@,  ʔ  "@H  ʕ  "@d  ʖ  "@  ʗ  "@  ʘ  "@  ʙ  "@  ʚ  "@  ʛ  "A  ʜ  "A.  ʝ  "AJ  ʞ  "Af  ʟ  "A  ʠ  "A  ʡ  "A  ʢ  "A  ʣ  "A  ʤ  "B  ʥ  "B6  ʦ  "BT  ʧ  "Br  ʨ  "B  ʩ  "B  ʪ  "B  ʫ  "B  ʬ  "C  ʭ  "C&  ʮ  "CD  ʯ  "Cb  ʰ  "C  ʱ  "C  ʲ  "C  ʳ  "C  ʴ  "C  ʵ  "D  ʶ  "D4  ʷ  "DR  ʸ  "Dp  ʹ  "D  ʺ  "D  ʻ  "D  ʼ  "D  ʽ  "E  ʾ  "E!  ʿ  "E?    "E]    "E{    "E    "E    "E    "E    "F    "F/    "FM    "Fk    "F    "F    "F    "F    "G    "G    "G=    "G[    "Gy    "G    "G    "G    "G    "H    "H-    "HM    "Hm    "H    "H    "H    "H    "I    "I-    "IM    "Im    "I    "I    "I    "I    "J    "J-    "JM    "Jm    "J    "J    "J    "J    "K    "K-    "KM    "Km    "K    "K    "K    "K    "L    "L%    "LC    "La    "L    "L    "L    "L    "L     "M    "M3    "MQ    "Mo    "M    "M    "M    "M    "N  	  "N#  
  "NA    "N_    "N}    "N    "N    "N    "N    "O    "O-    "OI    "Og    "O    "O    "O    "O    "O    "P    "P/    "PK    "Pi    "P    "P     "P  !  "P  "  "P  #  "Q  $  "Q1  %  "QO  &  "Qk  '  "Q  (  "Q  )  "Q  *  "Q  +  "Q  ,  "R  -  "R0  .  "RN  /  "Rl  0  "R  1  "R  2  "R  3  "R  4  "S  5  "S   6  "S>  7  "S\  8  "Sz  9  "S  :  "S  ;  "S  <  "S  =  "T  >  "T.  ?  "TL  @  "Tj  A  "T  B  "T  C  "T  D  "T  E  "U   F  "U  G  "U<  H  "UZ  I  "Uv  J  "U  K  "U  L  "U  M  "U  N  "V  O  "V*  P  "VH  Q  "Vf  R  "V  S  "V  T  "V  U  "V  V  "V  W  "W  X  "W8  Y  "WV  Z  "Wt  [  "W  \  "W  ]  "W  ^  "W  _  "X
  `  "X(  a  "XF  b  "Xd  c  "X  d  "X  e  "X  f  "X  g  "X  h  "Y  i  "Y.  j  "YL  k  "Yj  l  "Y  m  "Y  n  "Y  o  "Y  p  "Y  q  "Z  r  "Z0  s  "ZL  t  "Zh  u  "Z  v  "Z  w  "Z  x  "Z  y  "Z  z  "[  {  "[2  |  "[N  }  "[j  ~  "[    "[  ˀ  "[  ˁ  "[  ˂  "[  ˃  "\  ˄  "\8  ˅  "\V  ˆ  "\t  ˇ  "\  ˈ  "\  ˉ  "\  ˊ  "\  ˋ  "]
  ˌ  "](  ˍ  "]F  ˎ  "]d  ˏ  "]  ː  "]  ˑ  "]  ˒  "]  ˓  "]  ˔  "^  ˕  "^6  ˖  "^T  ˗  "^r  ˘  "^  ˙  "^  ˚  "^  ˛  "^  ˜  "_  ˝  "_$  ˞  "_@  ˟  "_\  ˠ  "_z  ˡ  "_  ˢ  "_  ˣ  "_  ˤ  "_  ˥  "`
  ˦  "`&  ˧  "`B  ˨  "`^  ˩  "`|  ˪  "`  ˫  "`  ˬ  "`  ˭  "`  ˮ  "a  ˯  "a&  ˰  "aD  ˱  "ab  ˲  "a~  ˳  "a  ˴  "a  ˵  "a  ˶  "a  ˷  "b
  ˸  "b(  ˹  "bD  ˺  "bb  ˻  "b  ˼  "b  ˽  "b  ˾  "b  ˿  "b    "c    "c4    "cR    "cp    "c    "c    "c    "c    "d    "d$    "dB    "d`    "d~    "d    "d    "d    "d    "e    "e2    "eP    "en    "e    "e    "e    "e    "f    "f    "f=    "f[    "fy    "f    "f    "f    "f    "g    "g-    "gK    "gi    "g    "g    "g    "g    "g    "h    "h;    "hY    "hw    "h    "h    "h    "h    "i    "i%    "iA    "i_    "i}    "i    "i    "i    "i    "j	    "j'    "jC    "j_     "j{    "j    "j    "j    "j    "k    "k)    "kE    "ka  	  "k}  
  "k    "k    "k    "k    "l    "l'    "lE    "la    "l    "l    "l    "l    "l    "m    "m)    "mG    "mc    "m    "m    "m    "m    "m     "n  !  "n-  "  "nI  #  "ne  $  "n  %  "n  &  "n  '  "n  (  "n  )  "o  *  "o3  +  "oS  ,  "os  -  "o  .  "o  /  "o  0  "o  1  "p  2  "p3  3  "pS  4  "ps  5  "p  6  "p  7  "p  8  "p  9  "q  :  "q3  ;  "qS  <  "qs  =  "q  >  "q  ?  "q  @  "q  A  "r  B  "r3  C  "rS  D  "rs  E  "r  F  "r  G  "r  H  "r  I  "s	  J  "s'  K  "sE  L  "sc  M  "s  N  "s  O  "s  P  "s  Q  "s  R  "t  S  "t5  T  "tS  U  "tq  V  "t  W  "t  X  "t  Y  "t  Z  "u  [  "u%  \  "uC  ]  "ua  ^  "u  _  "u  `  "u  a  "u  b  "u  c  "v  d  "v;  e  "v[  f  "v{  g  "v  h  "v  i  "v  j  "v  k  "w  l  "w;  m  "w[  n  "w{  o  "w  p  "w  q  "w  r  "w  s  "x  t  "x;  u  "x[  v  "x{  w  "x  x  "x  y  "x  z  "x  {  "y  |  "y;  }  "yY  ~  "yw    "y  ̀  "y  ́  "y  ̂  "y  ̃  "z  ̄  "z+  ̅  "zI  ̆  "zg  ̇  "z  ̈  "z  ̉  "z  ̊  "z  ̋  "z  ̌  "{  ̍  "{9  ̎  "{W  ̏  "{u  ̐  "{  ̑  "{  ̒  "{  ̓  "{  ̔  "|  ̕  "|)  ̖  "|G  ̗  "|e  ̘  "|  ̙  "|  ̚  "|  ̛  "|  ̜  "|  ̝  "}  ̞  "}/  ̟  "}M  ̠  "}i  ̡  "}  ̢  "}  ̣  "}  ̤  "}  ̥  "}  ̦  "~  ̧  "~/  ̨  "~K  ̩  "~g  ̪  "~  ̫  "~  ̬  "~  ̭  "~  ̮  "~  ̯  "  ̰  "1  ̱  "M  ̲  "i  ̳  "  ̴  "  ̵  "  ̶  "  ̷  "  ̸  "  ̹  "9  ̺  "W  ̻  "u  ̼  "  ̽  "  ̾  "  ̿  "    "    ")    "G    "e    "    "    "    "    "    "    "7    "U    "s    "    "    "    "    "    "#    "?    "]    "y    "    "    "    "    "	    "%    "A    "_    "{    "    "    "    "    "	    "'    "E    "a    "}    "    "    "    "    "    ")    "G    "e    "    "    "    "    "    "    "7    "U    "s    "    "    "    "    "	    "'    "E     "c    "    "    "    "    "    "    "5    "S  	  "n  
  "    "    "    "    "    ""    "@    "^    "|    "    "    "    "    "    "0    "N    "l    "    "    "    "    "     "   !  ">  "  "\  #  "z  $  "  %  "  &  "  '  "  (  "  )  "8  *  "X  +  "x  ,  "  -  "  .  "  /  "  0  "  1  "8  2  "X  3  "x  4  "  5  "  6  "  7  "  8  "  9  "8  :  "X  ;  "x  <  "  =  "  >  "  ?  "  @  "  A  "6  B  "T  C  "r  D  "  E  "  F  "  G  "  H  "  I  "&  J  "D  K  "b  L  "  M  "  N  "  O  "  P  "  Q  "  R  "4  S  "R  T  "p  U  "  V  "  W  "  X  "  Y  "  Z  "$  [  "B  \  "`  ]  "|  ^  "  _  "  `  "  a  "  b  "  c  "*  d  "F  e  "b  f  "~  g  "  h  "  i  "  j  "  k  "  l  "(  m  "D  n  "`  o  "~  p  "  q  "  r  "  s  "  t  "  u  "*  v  "F  w  "b  x  "  y  "  z  "  {  "  |  "  }  "  ~  "1    "O  ̀  "m  ́  "  ͂  "  ̓  "  ̈́  "  ͅ  "  ͆  "!  ͇  "?  ͈  "]  ͉  "{  ͊  "  ͋  "  ͌  "  ͍  "  ͎  "  ͏  "/  ͐  "M  ͑  "k  ͒  "  ͓  "  ͔  "  ͕  "  ͖  "  ͗  "  ͘  ";  ͙  "Y  ͚  "w  ͛  "  ͜  "  ͝  "  ͞  "  ͟  "  ͠  "+  ͡  "I  ͢  "g  ͣ  "  ͤ  "  ͥ  "  ͦ  "  ͧ  "  ͨ  "  ͩ  "9  ͪ  "W  ͫ  "u  ͬ  "  ͭ  "  ͮ  "  ͯ  "  Ͱ  "  ͱ  "'  Ͳ  "C  ͳ  "_  ʹ  "}  ͵  "  Ͷ  "  ͷ  "  ͸  "  ͹  "  ͺ  ")  ͻ  "E  ͼ  "a  ͽ  "  ;  "  Ϳ  "    "    "    "    ")    "G    "e    "    "    "    "    "    "    "+    "I    "g    "    "    "    "    "    "    "9    "W    "u    "    "    "    "    "    ")    "G    "e    "    "    "    "    "    "    "7    "U    "s    "    "    "    "    "    "    "=    "Y    "u    "    "    "    "    "    "    ";    "W    "s    "    "    "    "    "     "!    "=    "Y    "u    "    "    "    "    "	  	  "'  
  "E    "c    "    "    "    "    "    "    "5    "S    "q    "    "    "    "    "    "%    "C    "a    "    "    "     "  !  "  "  "  #  "0  $  "N  %  "l  &  "  '  "  (  "  )  "  *  "  +  "   ,  ">  -  "\  .  "z  /  "  0  "  1  "  2  "  3  "  4  ".  5  "L  6  "j  7  "  8  "  9  "  :  "  ;  "   <  "  =  ":  >  "V  ?  "r  @  "  A  "  B  "  C  "  D  "  E  "   F  "<  G  "X  H  "t  I  "  J  "  K  "  L  "  M  "  N  "  O  "<  P  "Z  Q  "x  R  "  S  "  T  "  U  "  V  "  W  "   X  ">  Y  "Z  Z  "v  [  "  \  "  ]  "  ^  "  _  "  `  "$  a  "@  b  "\  c  "x  d  "  e  "  f  "  g  "  h  "  i  ""  j  ">  k  "\  l  "z  m  "  n  "  o  "  p  "  q  "  r  "$  s  "@  t  "^  u  "~  v  "  w  "  x  "  y  "  z  "  {  ">  |  "^  }  "~  ~  "    "  ΀  "  ΁  "  ΂  "  ΃  ">  ΄  "^  ΅  "~  Ά  "  ·  "  Έ  "  Ή  "  Ί  "  ΋  ">  Ό  "^  ΍  "~  Ύ  "  Ώ  "  ΐ  "  Α  "  Β  "  Γ  "8  Δ  "V  Ε  "t  Ζ  "  Η  "  Θ  "  Ι  "  Κ  "
  Λ  "(  Μ  "F  Ν  "d  Ξ  "  Ο  "  Π  "  Ρ  "  ΢  "  Σ  "  Τ  "6  Υ  "T  Φ  "r  Χ  "  Ψ  "  Ω  "  Ϊ  "  Ϋ  "  ά  "&  έ  "F  ή  "f  ί  "  ΰ  "  α  "  β  "  γ  "  δ  "&  ε  "F  ζ  "f  η  "  θ  "  ι  "  κ  "  λ  "  μ  "&  ν  "F  ξ  "f  ο  "    "    "    "    "    "&    "F    "f    "    "    "    "    "     "    "<    "Z    "x    "    "    "    "    "    ",    "J    "h    "    "    "    "    "    "    ":    "X    "v    "    "    "    "    "
    "&    "B    "`    "|    "    "    "    "    "    "(    "D    "b    "~    "    "¶    "    "    "    "*    "H    "d    "À    "Ü    "ø    "    "     "    ",    "J    "h    "Ć    "Ĥ    "    "    "  	  "  
  ":    "X    "v    "Ŕ    "Ų    "    "    "    "*    "H    "f    "Ƅ    "Ƣ    "    "    "    "    "8    "V    "r    "ǎ    "Ǫ     "  !  "  "  "  #  "   $  "<  %  "X  &  "t  '  "Ȑ  (  "Ȭ  )  "  *  "  +  "  ,  "  -  ":  .  "V  /  "t  0  "ɒ  1  "ɰ  2  "  3  "  4  "  5  "   6  "<  7  "X  8  "v  9  "ʔ  :  "ʲ  ;  "  <  "  =  "  >  "*  ?  "H  @  "f  A  "˄  B  "ˢ  C  "  D  "  E  "  F  "  G  "8  H  "V  I  "t  J  "̒  K  "̰  L  "  M  "  N  "
  O  "(  P  "F  Q  "d  R  "͂  S  "͠  T  ";  U  "  V  "  W  "  X  "3  Y  "Q  Z  "o  [  "΍  \  "Ϋ  ]  "  ^  "  _  "  `  "#  a  "A  b  "_  c  "}  d  "ϛ  e  "Ϲ  f  "  g  "  h  "  i  "1  j  "O  k  "m  l  "Ћ  m  "Щ  n  "  o  "  p  "  q  "#  r  "C  s  "c  t  "у  u  "ѣ  v  "  w  "  x  "  y  "#  z  "C  {  "c  |  "҃  }  "ң  ~  "    "  π  "  ρ  "#  ς  "C  σ  "c  τ  "Ӄ  υ  "ӣ  φ  "  χ  "  ψ  "  ω  "#  ϊ  "C  ϋ  "c  ό  "ԃ  ύ  "ԡ  ώ  "Կ  Ϗ  "  ϐ  "  ϑ  "  ϒ  "7  ϓ  "U  ϔ  "s  ϕ  "Ց  ϖ  "կ  ϗ  "  Ϙ  "  ϙ  "	  Ϛ  "'  ϛ  "E  Ϝ  "c  ϝ  "ց  Ϟ  "֟  ϟ  "ֽ  Ϡ  "  ϡ  "  Ϣ  "  ϣ  "5  Ϥ  "S  ϥ  "q  Ϧ  "׏  ϧ  "׭  Ϩ  "  ϩ  "  Ϫ  "  ϫ  "  Ϭ  "=  ϭ  "Y  Ϯ  "w  ϯ  "ؕ  ϰ  "ر  ϱ  "  ϲ  "  ϳ  "  ϴ  "!  ϵ  "?  ϶  "[  Ϸ  "w  ϸ  "ٓ  Ϲ  "ٯ  Ϻ  "  ϻ  "  ϼ  "  Ͻ  "%  Ͼ  "A  Ͽ  "]    "y    "ڕ    "ڱ    "    "    "    "$    "B    "`    "~    "ۜ    "ۺ    "    "    "    "2    "P    "n    "܌    "ܪ    "    "    "    ""    "@    "^    "|    "ݚ    "ݸ    "    "    "    "0    "L    "j    "ވ    "ަ    "    "    "     "    "<    "Z    "x    "ߖ    "ߴ    "    "    "    ",    "J    "h    "    "    "    "    "    "    ":    "X    "v    "    "    "     "    "    ""    "@    "\    "x    "    "    "  	  "  
  "    ""    ">    "Z    "v    "    "    "    "    "    "$    "@    "\    "x    "    "    "    "    "    ",    "J    "h     "  !  "  "  "  #  "  $  "  %  "  &  ":  '  "X  (  "v  )  "  *  "  +  "  ,  "  -  "  .  "*  /  "H  0  "f  1  "  2  "  3  "  4  "  5  "  6  "  7  "2  8  "P  9  "l  :  "  ;  "  <  "  =  "  >  "  ?  "  @  "4  A  "R  B  "n  C  "  D  "  E  "  F  "  G  "  H  "  I  "8  J  "T  K  "p  L  "  M  "  N  "  O  "  P  "  Q  "  R  "8  S  "V  T  "t  U  "  V  "  W  "  X  "  Y  "
  Z  "(  [  "F  \  "d  ]  "  ^  "  _  "  `  "  a  "  b  "  c  "6  d  "T  e  "r  f  "  g  "  h  "  i  "  j  "  k  "&  l  "D  m  "_  n  "}  o  "  p  "  q  "  r  "  s  "  t  "1  u  "O  v  "m  w  "  x  "  y  "  z  "  {  "  |  "!  }  "?  ~  "]    "{  Ѐ  "  Ё  "  Ђ  "  Ѓ  "  Є  "  Ѕ  "/  І  "M  Ї  "k  Ј  "  Љ  "  Њ  "  Ћ  "  Ќ  "  Ѝ  "  Ў  "5  Џ  "S  А  "o  Б  "  В  "  Г  "  Д  "  Е  "  Ж  "  З  "5  И  "Q  Й  "m  К  "  Л  "  М  "  Н  "  О  "  П  "  Р  "7  С  "S  Т  "o  У  "  Ф  "  Х  "  Ц  "  Ч  "  Ш  "  Щ  "7  Ъ  "U  Ы  "s  Ь  "  Э  "  Ю  "  Я  "  а  "  б  "  в  "9  г  "U  д  "q  е  "  ж  "  з  "  и  "  й  "  к  "  л  ";  м  "W  н  "s  о  "  п  "    "    "    "	    ")    "I    "i    "    "    "    "    "	    ")    "I    "i    "    "    "    "    "	    ")    "I    "i    "    "    "    "    "	    ")    "I    "g    "    "    "    "    "    "    "9    "W    "u    "    "    "    "    "    ")    "G    "e    "    "    "    "    "    "    "7    "U    "s    "    "    "    "    "    "1    "Q    "q     "    "    "    "    #     # 1    # Q    # q    #   	  #   
  #     #     #    #1    #Q    #q    #    #    #    #    #    #/    #M    #k    #    #    #    #    #    #    #=    #[     #y  !  #  "  #  #  #  $  #  %  #  &  #-  '  #K  (  #i  )  #  *  #  +  #  ,  #  -  #  .  #  /  #;  0  #Y  1  #u  2  #  3  #  4  #  5  #  6  #  7  ##  8  #?  9  #[  :  #w  ;  #  <  #  =  #  >  #  ?  #  @  #!  A  #=  B  #Y  C  #w  D  #  E  #  F  #  G  #  H  #  I  ##  J  #?  K  #[  L  #y  M  #  N  #  O  #  P  #  Q  #	  R  #	-  S  #	K  T  #	i  U  #	  V  #	  W  #	  X  #	  Y  #	  Z  #
  [  #
;  \  #
Y  ]  #
w  ^  #
  _  #
  `  #
  a  #
  b  #  c  #+  d  #I  e  #g  f  #  g  #  h  #  i  #  j  #  k  #  l  #3  m  #O  n  #m  o  #  p  #  q  #  r  #  s  #  t  #  u  #5  v  #Q  w  #m  x  #  y  #  z  #  {  #  |  #  }  #  ~  #7    #S  р  #o  с  #  т  #  у  #  ф  #  х  #  ц  #  ч  #;  ш  #Y  щ  #w  ъ  #  ы  #  ь  #  э  #  ю  #  я  #+  ѐ  #I  ё  #g  ђ  #  ѓ  #  є  #  ѕ  #  і  #  ї  #  ј  #9  љ  #W  њ  #u  ћ  #  ќ  #  ѝ  #  ў  #  џ  #  Ѡ  #)  ѡ  #D  Ѣ  #b  ѣ  #  Ѥ  #  ѥ  #  Ѧ  #  ѧ  #  Ѩ  #  ѩ  #4  Ѫ  #R  ѫ  #p  Ѭ  #  ѭ  #  Ѯ  #  ѯ  #  Ѱ  #  ѱ  #$  Ѳ  #B  ѳ  #`  Ѵ  #~  ѵ  #  Ѷ  #  ѷ  #  Ѹ  #  ѹ  #  Ѻ  #2  ѻ  #P  Ѽ  #n  ѽ  #  Ѿ  #  ѿ  #    #    #    #.    #N    #n    #    #    #    #    #    #.    #N    #n    #    #    #    #    #    #.    #N    #n    #    #    #    #    #    #*    #H    #f    #    #    #    #    #    #    #8    #V    #t    #    #    #    #    #
    #(    #F    #d    #    #    #    #    #    #    #6    #R    #n    #    #    #    #    #     #    #8    #T    #p     #    #    #    #    #    #    #6    #T    #r  	  #  
  #    #    #    #     #    #8    #V    #q    #    #    #    #    #     # %    # C    # a    #     #     #     #     #     #!     #!3  !  #!Q  "  #!o  #  #!  $  #!  %  #!  &  #!  '  #"  (  #"#  )  #"A  *  #"_  +  #"}  ,  #"  -  #"  .  #"  /  #"  0  ##  1  ##/  2  ##M  3  ##k  4  ##  5  ##  6  ##  7  ##  8  #$  9  #$  :  #$=  ;  #$[  <  #$y  =  #$  >  #$  ?  #$  @  #$  A  #%  B  #%-  C  #%K  D  #%i  E  #%  F  #%  G  #%  H  #%  I  #%  J  #&  K  #&5  L  #&S  M  #&o  N  #&  O  #&  P  #&  Q  #&  R  #&  S  #'  T  #'7  U  #'U  V  #'q  W  #'  X  #'  Y  #'  Z  #'  [  #'  \  #(  ]  #(;  ^  #(W  _  #(s  `  #(  a  #(  b  #(  c  #(  d  #)  e  #)  f  #)=  g  #)[  h  #)y  i  #)  j  #)  k  #)  l  #)  m  #*  n  #*-  o  #*K  p  #*i  q  #*  r  #*  s  #*  t  #*  u  #*  v  #+  w  #+;  x  #+Y  y  #+w  z  #+  {  #+  |  #+  }  #+  ~  #,    #,+  Ҁ  #,I  ҁ  #,e  ҂  #,  ҃  #,  ҄  #,  ҅  #,  ҆  #,  ҇  #-  ҈  #-/  ҉  #-K  Ҋ  #-g  ҋ  #-  Ҍ  #-  ҍ  #-  Ҏ  #-  ҏ  #-  Ґ  #.  ґ  #.-  Ғ  #.I  ғ  #.g  Ҕ  #.  ҕ  #.  Җ  #.  җ  #.  Ҙ  #.  ҙ  #/  Қ  #//  қ  #/K  Ҝ  #/i  ҝ  #/  Ҟ  #/  ҟ  #/  Ҡ  #/  ҡ  #/  Ң  #0  ң  #09  Ҥ  #0W  ҥ  #0u  Ҧ  #0  ҧ  #0  Ҩ  #0  ҩ  #0  Ҫ  #1  ҫ  #1)  Ҭ  #1G  ҭ  #1e  Ү  #1  ү  #1  Ұ  #1  ұ  #1  Ҳ  #1  ҳ  #2  Ҵ  #27  ҵ  #2U  Ҷ  #2s  ҷ  #2  Ҹ  #2  ҹ  #2  Һ  #2  һ  #3  Ҽ  #3$  ҽ  #3B  Ҿ  #3`  ҿ  #3~    #3    #3    #3    #3    #4    #42    #4P    #4n    #4    #4    #4    #4    #5    #5"    #5@    #5^    #5|    #5    #5    #5    #5    #6    #6,    #6H    #6f    #6    #6    #6    #6    #6    #7    #7.    #7J    #7h    #7    #7    #7    #7    #7    #8    #80    #8N    #8j    #8    #8    #8    #8    #8    #9    #90    #9L    #9h    #9    #9    #9    #9    #9    #:    #:2    #:N    #:j    #:    #:    #:     #:    #:    #;    #;2    #;P    #;n    #;    #;    #;  	  #;  
  #;    #<    #<4    #<T    #<t    #<    #<    #<    #<    #=    #=4    #=T    #=t    #=    #=    #=    #=    #>    #>4    #>T    #>t    #>     #>  !  #>  "  #>  #  #?  $  #?4  %  #?T  &  #?t  '  #?  (  #?  )  #?  *  #?  +  #@  ,  #@,  -  #@J  .  #@h  /  #@  0  #@  1  #@  2  #@  3  #@  4  #A  5  #A:  6  #AX  7  #Av  8  #A  9  #A  :  #A  ;  #A  <  #B  =  #B*  >  #BH  ?  #Bf  @  #B  A  #B  B  #B  C  #B  D  #B  E  #C  F  #C<  G  #C\  H  #C|  I  #C  J  #C  K  #C  L  #C  M  #D  N  #D<  O  #D\  P  #D|  Q  #D  R  #D  S  #D  T  #D  U  #E  V  #E<  W  #E\  X  #E|  Y  #E  Z  #E  [  #E  \  #E  ]  #F  ^  #F<  _  #F\  `  #F|  a  #F  b  #F  c  #F  d  #F  e  #G  f  #G0  g  #GN  h  #Gl  i  #G  j  #G  k  #G  l  #G  m  #H  n  #H   o  #H>  p  #H\  q  #Hz  r  #H  s  #H  t  #H  u  #H  v  #I  w  #I.  x  #IL  y  #Ij  z  #I  {  #I  |  #I  }  #I  ~  #I    #J  Ӏ  #J6  Ӂ  #JR  ӂ  #Jp  Ӄ  #J  ӄ  #J  Ӆ  #J  ӆ  #J  Ӈ  #J  ӈ  #K  Ӊ  #K8  ӊ  #KT  Ӌ  #Kp  ӌ  #K  Ӎ  #K  ӎ  #K  ӏ  #K  Ӑ  #L   ӑ  #L  Ӓ  #L:  ӓ  #LV  Ӕ  #Lr  ӕ  #L  Ӗ  #L  ӗ  #L  Ә  #L  ә  #M  Ӛ  #M   ӛ  #M>  Ӝ  #M\  ӝ  #Mz  Ӟ  #M  ӟ  #M  Ӡ  #M  ӡ  #M  Ӣ  #N  ӣ  #N.  Ӥ  #NL  ӥ  #Nj  Ӧ  #N  ӧ  #N  Ө  #N  ө  #N  Ӫ  #O   ӫ  #O  Ӭ  #O<  ӭ  #OZ  Ӯ  #Ox  ӯ  #O  Ӱ  #O  ӱ  #O  Ӳ  #O  ӳ  #P  Ӵ  #P,  ӵ  #PH  Ӷ  #Pd  ӷ  #P  Ӹ  #P  ӹ  #P  Ӻ  #P  ӻ  #P  Ӽ  #Q  ӽ  #Q.  Ӿ  #QJ  ӿ  #Qf    #Q    #Q    #Q    #Q    #Q    #R    #R,    #RJ    #Rh    #R    #R    #R    #R    #R    #S    #S.    #SL    #Sj    #S    #S    #S    #S    #T     #T    #T<    #TZ    #Tx    #T    #T    #T    #T    #U    #U,    #UJ    #Uh    #U    #U    #U    #U    #U    #V    #V:    #VX    #Vv    #V    #V    #V    #V    #W	    #W'    #WE    #Wc    #W    #W    #W    #W    #W    #X    #X5    #XS    #Xq    #X    #X    #X     #X    #Y    #Y%    #YC    #Ya    #Y    #Y    #Y    #Y  	  #Y  
  #Z    #Z9    #ZY    #Zy    #Z    #Z    #Z    #Z    #[    #[9    #[Y    #[y    #[    #[    #[    #[    #\    #\9    #\Y    #\y    #\    #\     #\  !  #\  "  #]  #  #]9  $  #]Y  %  #]w  &  #]  '  #]  (  #]  )  #]  *  #^  +  #^+  ,  #^I  -  #^g  .  #^  /  #^  0  #^  1  #^  2  #^  3  #_  4  #_9  5  #_W  6  #_u  7  #_  8  #_  9  #_  :  #_  ;  #`  <  #`)  =  #`G  >  #`e  ?  #`  @  #`  A  #`  B  #`  C  #`  D  #a  E  #a/  F  #aM  G  #ak  H  #a  I  #a  J  #a  K  #a  L  #a  M  #b  N  #b1  O  #bM  P  #bi  Q  #b  R  #b  S  #b  T  #b  U  #b  V  #c  W  #c3  X  #cO  Y  #ck  Z  #c  [  #c  \  #c  ]  #c  ^  #c  _  #d  `  #d6  a  #dT  b  #dr  c  #d  d  #d  e  #d  f  #d  g  #e  h  #e&  i  #eD  j  #eb  k  #e  l  #e  m  #e  n  #e  o  #e  p  #f  q  #f4  r  #fR  s  #fp  t  #f  u  #f  v  #f  w  #f  x  #g  y  #g"  z  #g@  {  #g^  |  #g|  }  #g  ~  #g    #g  Ԁ  #g  ԁ  #h  Ԃ  #h0  ԃ  #hN  Ԅ  #hl  ԅ  #h  Ԇ  #h  ԇ  #h  Ԉ  #h  ԉ  #i  Ԋ  #i   ԋ  #i>  Ԍ  #i\  ԍ  #iz  Ԏ  #i  ԏ  #i  Ԑ  #i  ԑ  #i  Ԓ  #j  ԓ  #j.  Ԕ  #jL  ԕ  #jh  Ԗ  #j  ԗ  #j  Ԙ  #j  ԙ  #j  Ԛ  #j  ԛ  #k  Ԝ  #k2  ԝ  #kN  Ԟ  #kj  ԟ  #k  Ԡ  #k  ԡ  #k  Ԣ  #k  ԣ  #k  Ԥ  #l  ԥ  #l0  Ԧ  #lL  ԧ  #lj  Ԩ  #l  ԩ  #l  Ԫ  #l  ԫ  #l  Ԭ  #l  ԭ  #m  Ԯ  #m2  ԯ  #mN  ԰  #ml  Ա  #m  Բ  #m  Գ  #m  Դ  #m  Ե  #n  Զ  #n   Է  #n>  Ը  #n\  Թ  #nz  Ժ  #n  Ի  #n  Լ  #n  Խ  #n  Ծ  #o  Կ  #o.    #oL    #oj    #o    #o    #o    #o    #p     #p    #p<    #pZ    #px    #p    #p    #p    #p    #q    #q&    #qB    #q`    #q~    #q    #q    #q    #q    #r
    #r(    #rD    #r`    #r|    #r    #r    #r    #r    #s    #s*    #sF    #sb    #s~    #s    #s    #s    #s    #t    #t,    #tJ    #th    #t    #t    #t    #t    #t    #u    #u:    #uX    #uv    #u    #u    #u    #u    #v    #v*    #vH    #vf    #v     #v    #v    #v    #v    #w    #w5    #wS    #wq    #w  	  #w  
  #w    #w    #x    #x%    #xC    #xa    #x    #x    #x    #x    #x    #y    #y3    #yQ    #yo    #y    #y    #y    #y    #z    #z#    #zA     #z_  !  #z{  "  #z  #  #z  $  #z  %  #z  &  #{  '  #{)  (  #{E  )  #{a  *  #{}  +  #{  ,  #{  -  #{  .  #{  /  #|  0  #|'  1  #|C  2  #|_  3  #|}  4  #|  5  #|  6  #|  7  #|  8  #}  9  #})  :  #}E  ;  #}a  <  #}  =  #}  >  #}  ?  #}  @  #}  A  #~  B  #~+  C  #~I  D  #~e  E  #~  F  #~  G  #~  H  #~  I  #~  J  #  K  #+  L  #G  M  #c  N  #  O  #  P  #  Q  #  R  #  S  #  T  #-  U  #I  V  #e  W  #  X  #  Y  #  Z  #  [  #  \  #  ]  #?  ^  #_  _  #  `  #  a  #  b  #  c  #  d  #  e  #?  f  #_  g  #  h  #  i  #  j  #  k  #  l  #  m  #?  n  #_  o  #  p  #  q  #  r  #  s  #  t  #  u  #=  v  #[  w  #y  x  #  y  #  z  #  {  #  |  #  }  #-  ~  #K    #i  Հ  #  Ձ  #  Ղ  #  Ճ  #  Մ  #  Յ  #  Ն  #;  Շ  #Y  Ո  #w  Չ  #  Պ  #  Ջ  #  Ռ  #  Ս  #  Վ  #+  Տ  #I  Ր  #g  Ց  #  Ւ  #  Փ  #  Ք  #  Օ  #  Ֆ  #'  ՗  #G  ՘  #g  ՙ  #  ՚  #  ՛  #  ՜  #  ՝  #  ՞  #'  ՟  #G  ՠ  #g  ա  #  բ  #  գ  #  դ  #  ե  #  զ  #'  է  #G  ը  #g  թ  #  ժ  #  ի  #  լ  #  խ  #  ծ  ##  կ  #A  հ  #_  ձ  #}  ղ  #  ճ  #  մ  #  յ  #  ն  #  շ  #1  ո  #O  չ  #m  պ  #  ջ  #  ռ  #  ս  #  վ  #  տ  #!    #?    #]    #{    #    #    #    #    #    #/    #K    #g    #    #    #    #    #    #    #1    #M    #i    #    #    #    #    #    #    #/    #M    #k    #    #    #    #    #    #    #1    #O    #m    #    #    #    #    #    #!    #?    #]    #{    #    #    #    #    #    #/    #M    #k    #    #    #    #    #    #    #=    #[    #y     #    #    #    #    #	    #%    #C    #a    #}  	  #  
  #    #    #    #    #'    #C    #_    #{    #    #    #    #    #    #)    #E    #a    #}    #    #    #    #    #     #/  !  #M  "  #k  #  #  $  #  %  #  &  #  '  #  (  #  )  #=  *  #[  +  #y  ,  #  -  #  .  #  /  #  0  #  1  #-  2  #K  3  #i  4  #  5  #  6  #  7  #  8  #  9  #  :  #8  ;  #V  <  #t  =  #  >  #  ?  #  @  #  A  #
  B  #(  C  #F  D  #d  E  #  F  #  G  #  H  #  I  #  J  #  K  #6  L  #T  M  #r  N  #  O  #  P  #  Q  #  R  #  S  #&  T  #D  U  #e  V  #  W  #  X  #  Y  #  Z  #  [  #%  \  #E  ]  #e  ^  #  _  #  `  #  a  #  b  #  c  #%  d  #E  e  #e  f  #  g  #  h  #  i  #  j  #  k  #%  l  #E  m  #e  n  #  o  #  p  #  q  #  r  #  s  #  t  #=  u  #[  v  #y  w  #  x  #  y  #  z  #  {  #  |  #-  }  #K  ~  #i    #  ր  #  ց  #  ւ  #  փ  #  ք  #  օ  #;  ֆ  #Y  և  #w  ֈ  #  ։  #  ֊  #  ֋  #  ֌  #  ֍  #+  ֎  #G  ֏  #c  ֐  #  ֑  #  ֒  #  ֓  #  ֔  #  ֕  #  ֖  #-  ֗  #I  ֘  #e  ֙  #  ֚  #  ֛  #  ֜  #  ֝  #  ֞  #  ֟  #-  ֠  #K  ֡  #i  ֢  #  ֣  #  ֤  #  ֥  #  ֦  #  ֧  #  ֨  #/  ֩  #J  ֪  #h  ֫  #  ֬  #  ֭  #  ֮  #  ֯  #  ְ  #  ֱ  #:  ֲ  #X  ֳ  #v  ִ  #  ֵ  #  ֶ  #  ַ  #  ָ  #  ֹ  #*  ֺ  #H  ֻ  #f  ּ  #  ֽ  #  ־  #  ֿ  #    #    #    #8    #V    #t    #    #    #    #    #
    #(    #F    #d    #    #    #    #    #    #    #6    #T    #r    #    #    #    #    #    #&    #D    #b    #    #    #    #    #    #    #.    #J    #h    #    #    #    #    #    #    #0    #L    #h    #    #    #    #    #    #    #2    #N    #j    #    #    #    #    #    #    #6     #T    #r    #    #    #    #    #    #&    #D  	  #b  
  #    #    #    #    #    #    #4    #R    #p    #    #    #    #    #    #$    #@    #\    #x    #    #    #    #     #
  !  #&  "  #B  #  #^  $  #z  %  #  &  #  '  #  (  #  )  #  *  #$  +  #B  ,  #`  -  #~  .  #  /  #  0  #  1  #  2  #
  3  #&  4  #D  5  #b  6  #  7  #  8  #  9  #  :  #  ;  #  <  #4  =  #R  >  #p  ?  #  @  #  A  #  B  #  C  #  D  #$  E  #B  F  #`  G  #~  H  #  I  #  J  #  K  #  L  #  M  #2  N  #P  O  #n  P  #  Q  #  R  #  S  #  T  #  U  #  V  #=  W  #[  X  #y  Y  #  Z  #  [  #  \  #  ]  #  ^  #-  _  #K  `  #i  a  #  b  #  c  #  d  #  e  #  f  #  g  #;  h  #Y  i  #w  j  #  k  #  l  #  m  #  n  #  o  #'  p  #E  q  #a  r  #  s  #  t  #  u  #  v  #  w  #  x  #)  y  #G  z  #c  {  #  |  #  }  #  ~  #    #  ׀  #  ׁ  #-  ׂ  #I  ׃  #e  ׄ  #  ׅ  #  ׆  #  ׇ  #  ׈  #  ׉  #  ׊  #+  ׋  #G  ׌  #e  ׍  #  ׎  #  ׏  #½  א  #  ב  #  ג  #  ד  #-  ה  #I  ו  #g  ז  #Ã  ח  #ß  ט  #û  י  #  ך  #  כ  #  ל  #/  ם  #M  מ  #i  ן  #ą  נ  #ġ  ס  #Ľ  ע  #  ף  #  פ  #  ץ  #(  צ  #=  ק  #R  ר  #g  ש  #|  ת  #ő  ׫  #Ŧ  ׬  #Ż  ׭  #  ׮  #  ׯ  #  װ  #  ױ  #$  ײ  #9  ׳  #N  ״  #c  ׵  #x  ׶  #ƍ  ׷  #Ƣ  ׸  #Ʒ  ׹  #  ׺  #  ׻  #  ׼  #  ׽  #   ׾  #5  ׿  #J    #_    #t    #ǉ    #Ǟ    #ǳ    #    #    #    #    #    #1    #F    #[    #p    #ȅ    #Ț    #ȯ    #    #    #    #    #    #-    #B    #W    #l    #Ɂ    #ɖ    #ɫ    #    #    #    #    #    #)    #>    #S    #h    #}    #ʒ    #ʧ    #ʼ    #    #    #    #    #%    #:    #O    #d    #y    #ˎ    #ˣ    #˸    #    #    #    #    #!    #6    #K    #`    #u    #̊     #̟    #̹    #    #    #    #!    #;    #U    #o  	  #͉  
  #ͣ    #ͽ    #    #    #    #%    #?    #Y    #s    #΍    #Χ    #    #    #    #    #)    #C    #]    #w    #ϑ    #ϫ    #     #  !  #  "  #  #  #-  $  #G  %  #a  &  #{  '  #Е  (  #Я  )  #  *  #  +  #  ,  #  -  #1  .  #K  /  #e  0  #  1  #љ  2  #ѳ  3  #  4  #  5  #  6  #  7  #5  8  #O  9  #i  :  #҃  ;  #ҝ  <  #ҷ  =  #  >  #  ?  #  @  #  A  #9  B  #S  C  #m  D  #Ӈ  E  #ӡ  F  #ӻ  G  #  H  #  I  #	  J  ##  K  #=  L  #W  M  #q  N  #ԋ  O  #ԥ  P  #Կ  Q  #  R  #  S  #  T  #'  U  #A  V  #[  W  #u  X  #Տ  Y  #թ  Z  #  [  #  \  #  ]  #  ^  #+  _  #E  `  #_  a  #y  b  #֓  c  #֭  d  #  e  #  f  #  g  #  h  #/  i  #I  j  #c  k  #}  l  #ח  m  #ױ  n  #  o  #  p  #  q  #  r  #3  s  #M  t  #g  u  #؁  v  #؛  w  #ص  x  #  y  #  z  #  {  #  |  #7  }  #Q  ~  #k    #م    #ٟ    #ٹ    #    #    #    #!    #;    #U    #o    #ډ    #ڣ    #ڽ    #    #    #    #%    #?    #Y    #s    #ۍ    #ۧ    #    #    #    #    #)    #C    #]    #w    #ܑ    #ܫ    #    #    #    #    #-    #G    #a    #{    #ݕ    #ݯ    #    #    #    #    #1    #K    #e    #    #ޙ    #޳    #    #    #    #    #5    #O    #i    #߃    #ߝ    #߷    #    #    #    #    #9    #S    #m    #    #    #    #    #    #	    ##    #=    #W    #q    #    #    #    #    #    #    #'    #A    #[    #u    #    #    #    #    #    #    #+    #E    #_    #y    #    #    #    #    #    #    #/    #I    #c    #}    #    #    #    #    #    #    #3    #M    #g    #    #    #    #    #    #    #    #7    #Q    #k    #     #    #    #    #    #    #!    #;    #U    #o  	  #  
  #    #    #    #    #    #%    #?    #Y    #s    #    #    #    #    #    #    #)    #C    #]    #w    #    #    #     #  !  #  "  #  #  #-  $  #G  %  #a  &  #{  '  #  (  #  )  #  *  #  +  #  ,  #  -  #1  .  #K  /  #e  0  #  1  #  2  #  3  #  4  #  5  #  6  #  7  #5  8  #O  9  #i  :  #  ;  #  <  #  =  #  >  #  ?  #  @  #  A  #9  B  #S  C  #m  D  #  E  #  F  #  G  #  H  #  I  #	  J  ##  K  #=  L  #W  M  #q  N  #  O  #  P  #  Q  #  R  #  S  #  T  #'  U  #A  V  #[  W  #u  X  #  Y  #  Z  #  [  #  \  #  ]  #  ^  #+  _  #E  `  #_  a  #y  b  #  c  #  d  #  e  #  f  #  g  #  h  #/  i  #I  j  #c  k  #}  l  #  m  #  n  #  o  #  p  #  q  #  r  #3  s  #M  t  #g  u  #  v  #  w  #  x  #  y  #  z  #  {  #  |  #7  }  #Q  ~  #k    #    #    #    #    #    #    #!    #;    #U    #o    #    #    #    #    #    #    #%    #?    #Y    #s    #    #    #    #    #    #    #)    #C    #]    #w    #    #    #    #    #    #    #-    #G    #a    #{    #    #    #    #    #    #    #1    #K    #e    #    #    #    #    #    #    #    #5    #O    #i    #    #    #    #    #    #    #    #9    #S    #m    #    #    #    #    #    #	    ##    #=    #W    #q    #    #    #    #    #    #    #'    #A    #[    #u    #    #    #    #    #    #    #+    #E    #_    #y    #    #    #    #    #    #    #/    #I    #c    #}    #    #    #    #    #    #    #3    #M    #g    #    #    #    #    #    $     $     $ 7    $ Q    $ k    $      $     $     $     $     $    $!    $;    $U    $o  	  $  
  $    $    $    $    $    $%    $?    $Y    $s    $    $    $    $    $    $    $)    $C    $]    $w    $    $    $     $  !  $  "  $  #  $-  $  $G  %  $a  &  ${  '  $  (  $  )  $  *  $  +  $  ,  $  -  $1  .  $K  /  $e  0  $  1  $  2  $  3  $  4  $  5  $  6  $  7  $5  8  $O  9  $i  :  $  ;  $  <  $  =  $  >  $  ?  $  @  $  A  $9  B  $S  C  $m  D  $  E  $  F  $  G  $  H  $  I  $	  J  $#  K  $=  L  $W  M  $q  N  $  O  $  P  $  Q  $  R  $  S  $	  T  $	'  U  $	A  V  $	[  W  $	u  X  $	  Y  $	  Z  $	  [  $	  \  $	  ]  $
  ^  $
+  _  $
E  `  $
_  a  $
y  b  $
  c  $
  d  $
  e  $
  f  $
  g  $  h  $/  i  $I  j  $c  k  $}  l  $  m  $  n  $  o  $  p  $  q  $  r  $3  s  $M  t  $g  u  $  v  $  w  $  x  $  y  $  z  $  {  $  |  $7  }  $Q  ~  $k    $    $    $    $    $    $    $!    $;    $U    $o    $    $    $    $    $    $    $%    $?    $Y    $s    $    $    $    $    $    $    $)    $C    $]    $w    $    $    $    $    $    $    $-    $G    $a    ${    $    $    $    $    $    $    $1    $K    $e    $    $    $    $    $    $    $    $5    $O    $i    $    $    $    $    $    $    $    $9    $S    $m    $    $    $    $    $    $	    $#    $=    $W    $q    $    $    $    $    $    $    $'    $A    $[    $u    $    $    $    $    $    $    $+    $E    $_    $y    $    $    $    $    $    $    $/    $I    $c    $}    $    $    $    $    $    $    $3    $M    $g    $    $    $    $    $    $    $    $7    $Q    $k    $     $    $    $    $    $    $!    $;    $U    $o  	  $  
  $    $    $    $    $    $%    $?    $Y    $s    $    $    $    $    $    $    $)    $C    $]    $w    $    $    $     $  !  $  "  $  #  $-  $  $G  %  $a  &  ${  '  $  (  $  )  $  *  $  +  $  ,  $  -  $1  .  $K  /  $e  0  $  1  $  2  $  3  $  4  $  5  $   6  $   7  $ 5  8  $ O  9  $ i  :  $   ;  $   <  $   =  $   >  $   ?  $!  @  $!  A  $!9  B  $!S  C  $!m  D  $!  E  $!  F  $!  G  $!  H  $!  I  $"	  J  $"#  K  $"=  L  $"W  M  $"q  N  $"  O  $"  P  $"  Q  $"  R  $"  S  $#  T  $#'  U  $#A  V  $#[  W  $#u  X  $#  Y  $#  Z  $#  [  $#  \  $#  ]  $$  ^  $$+  _  $$E  `  $$_  a  $$y  b  $$  c  $$  d  $$  e  $$  f  $$  g  $%  h  $%/  i  $%I  j  $%c  k  $%}  l  $%  m  $%  n  $%  o  $%  p  $%  q  $&  r  $&3  s  $&M  t  $&g  u  $&  v  $&  w  $&  x  $&  y  $&  z  $'  {  $'  |  $'7  }  $'Q  ~  $'k    $'    $'    $'    $'    $'    $(    $(!    $(;    $(U    $(o    $(    $(    $(    $(    $(    $)    $)%    $)?    $)Y    $)s    $)    $)    $)    $)    $)    $*    $*)    $*C    $*]    $*w    $*    $*    $*    $*    $*    $+    $+-    $+G    $+a    $+{    $+    $+    $+    $+    $+    $,    $,1    $,K    $,e    $,    $,    $,    $,    $,    $-    $-    $-5    $-O    $-i    $-    $-    $-    $-    $-    $.    $.    $.9    $.S    $.m    $.    $.    $.    $.    $.    $/	    $/#    $/=    $/W    $/q    $/    $/    $/    $/    $/    $0    $0'    $0A    $0[    $0u    $0    $0    $0    $0    $0    $1    $1+    $1E    $1_    $1y    $1    $1    $1    $1    $1    $2    $2/    $2I    $2c    $2}    $2    $2    $2    $2    $2    $3    $33    $3M    $3g    $3    $3    $3    $3    $3    $4    $4    $47    $4Q    $4k    $4     $4    $4    $4    $4    $5    $5!    $5;    $5U    $5o  	  $5  
  $5    $5    $5    $5    $6    $6%    $6?    $6Y    $6s    $6    $6    $6    $6    $6    $7    $7)    $7C    $7]    $7w    $7    $7    $7     $7  !  $7  "  $8  #  $8-  $  $8G  %  $8a  &  $8{  '  $8  (  $8  )  $8  *  $8  +  $8  ,  $9  -  $91  .  $9K  /  $9e  0  $9  1  $9  2  $9  3  $9  4  $9  5  $:  6  $:  7  $:5  8  $:O  9  $:i  :  $:  ;  $:  <  $:  =  $:  >  $:  ?  $;  @  $;  A  $;9  B  $;S  C  $;m  D  $;  E  $;  F  $;  G  $;  H  $;  I  $<	  J  $<#  K  $<=  L  $<W  M  $<q  N  $<  O  $<  P  $<  Q  $<  R  $<  S  $=  T  $='  U  $=A  V  $=[  W  $=u  X  $=  Y  $=  Z  $=  [  $=  \  $=  ]  $>  ^  $>+  _  $>E  `  $>_  a  $>y  b  $>  c  $>  d  $>  e  $>  f  $>  g  $?  h  $?/  i  $?I  j  $?c  k  $?}  l  $?  m  $?  n  $?  o  $?  p  $?  q  $@  r  $@3  s  $@M  t  $@g  u  $@  v  $@  w  $@  x  $@  y  $@  z  $A  {  $A  |  $A7  }  $AQ  ~  $Ak    $A    $A    $A    $A    $A    $B    $B!    $B;    $BU    $Bo    $B    $B    $B    $B    $B    $C    $C%    $C?    $CY    $Cs    $C    $C    $C    $C    $C    $D    $D)    $DC    $D]    $Dw    $D    $D    $D    $D    $D    $E    $E-    $EG    $Ea    $E{    $E    $E    $E    $E    $E    $F    $F1    $FK    $Fe    $F    $F    $F    $F    $F    $G    $G    $G5    $GO    $Gi    $G    $G    $G    $G    $G    $H    $H    $H9    $HS    $Hm    $H    $H    $H    $H    $H    $I	    $I#    $I=    $IW    $Iq    $I    $I    $I    $I    $I    $J    $J'    $JA    $J[    $Ju    $J    $J    $J    $J    $J    $K    $K+    $KE    $K_    $Ky    $K    $K    $K    $K    $K    $L    $L/    $LI    $Lc    $L}    $L    $L    $L    $L    $L    $M    $M3    $MM    $Mg    $M    $M    $M    $M    $M    $N    $N    $N7    $NQ    $Nk    $N     $N    $N    $N    $N    $O    $O!    $O;    $OU    $Oo  	  $O  
  $O    $O    $O    $O    $P    $P%    $P?    $PY    $Ps    $P    $P    $P    $P    $P    $Q    $Q)    $QC    $Q]    $Qw    $Q    $Q    $Q     $Q  !  $Q  "  $R  #  $R-  $  $RG  %  $Ra  &  $R{  '  $R  (  $R  )  $R  *  $R  +  $R  ,  $S  -  $S1  .  $SK  /  $Se  0  $S  1  $S  2  $S  3  $S  4  $S  5  $T  6  $T  7  $T5  8  $TO  9  $Ti  :  $T  ;  $T  <  $T  =  $T  >  $T  ?  $U  @  $U  A  $U9  B  $US  C  $Um  D  $U  E  $U  F  $U  G  $U  H  $U  I  $V	  J  $V#  K  $V=  L  $VW  M  $Vq  N  $V  O  $V  P  $V  Q  $V  R  $V  S  $W  T  $W'  U  $WA  V  $W[  W  $Wu  X  $W  Y  $W  Z  $W  [  $W  \  $W  ]  $X  ^  $X+  _  $XE  `  $X_  a  $Xy  b  $X  c  $X  d  $X  e  $X  f  $X  g  $Y  h  $Y/  i  $YI  j  $Yc  k  $Y}  l  $Y  m  $Y  n  $Y  o  $Y  p  $Y  q  $Z  r  $Z3  s  $ZM  t  $Zg  u  $Z  v  $Z  w  $Z  x  $Z  y  $Z  z  $[  {  $[  |  $[7  }  $[Q  ~  $[k    $[    $[    $[    $[    $[    $\    $\!    $\;    $\U    $\o    $\    $\    $\    $\    $\    $]    $]%    $]?    $]Y    $]s    $]    $]    $]    $]    $]    $^    $^)    $^C    $^]    $^w    $^    $^    $^    $^    $^    $_    $_-    $_G    $_a    $_{    $_    $_    $_    $_    $_    $`    $`1    $`K    $`e    $`    $`    $`    $`    $`    $a    $a    $a5    $aO    $ai    $a    $a    $a    $a    $a    $b    $b    $b9    $bS    $bm    $b    $b    $b    $b    $b    $c	    $c#    $c=    $cW    $cq    $c    $c    $c    $c    $c    $d    $d'    $dA    $d[    $du    $d    $d    $d    $d    $d    $e    $e+    $eE    $e_    $ey    $e    $e    $e    $e    $e    $f    $f/    $fI    $fc    $f}    $f    $f    $f    $f    $f    $g    $g3    $gM    $gg    $g    $g    $g    $g    $g    $h    $h    $h7    $hQ    $hk    $h     $h    $h    $h    $h    $i    $i!    $i;    $iU    $io  	  $i  
  $i    $i    $i    $i    $j    $j%    $j?    $jY    $js    $j    $j    $j    $j    $j    $k    $k)    $kC    $k]    $kw    $k    $k    $k     $k  !  $k  "  $l  #  $l-  $  $lG  %  $la  &  $l{  '  $l  (  $l  )  $l  *  $l  +  $l  ,  $m  -  $m1  .  $mK  /  $me  0  $m  1  $m  2  $m  3  $m  4  $m  5  $n  6  $n  7  $n5  8  $nO  9  $ni  :  $n  ;  $n  <  $n  =  $n  >  $n  ?  $o  @  $o  A  $o9  B  $oS  C  $om  D  $o  E  $o  F  $o  G  $o  H  $o  I  $p	  J  $p#  K  $p=  L  $pW  M  $pq  N  $p  O  $p  P  $p  Q  $p  R  $p  S  $q  T  $q'  U  $qA  V  $q[  W  $qu  X  $q  Y  $q  Z  $q  [  $q  \  $q  ]  $r  ^  $r+  _  $rE  `  $r_  a  $ry  b  $r  c  $r  d  $r  e  $r  f  $r  g  $s  h  $s/  i  $sI  j  $sc  k  $s}  l  $s  m  $s  n  $s  o  $s  p  $s  q  $t  r  $t3  s  $tM  t  $tg  u  $t  v  $t  w  $t  x  $t  y  $t  z  $u  {  $u  |  $u7  }  $uQ  ~  $uk    $u    $u    $u    $u    $u    $v    $v!    $v;    $vU    $vo    $v    $v    $v    $v    $v    $w    $w%    $w?    $wY    $ws    $w    $w    $w    $w    $w    $x    $x)    $xC    $x]    $xw    $x    $x    $x    $x    $x    $y    $y-    $yG    $ya    $y{    $y    $y    $y    $y    $y    $z    $z1    $zK    $ze    $z    $z    $z    $z    $z    ${    ${    ${5    ${O    ${i    ${    ${    ${    ${    ${    $|    $|    $|9    $|S    $|m    $|    $|    $|    $|    $|    $}	    $}#    $}=    $}W    $}q    $}    $}    $}    $}    $}    $~    $~'    $~A    $~[    $~u    $~    $~    $~    $~    $~    $    $+    $E    $_    $y    $    $    $    $    $    $    $/    $I    $c    $}    $    $    $    $    $    $    $3    $M    $g    $    $    $    $    $    $    $    $7    $Q    $k    $     $    $    $    $    $    $!    $;    $U    $o  	  $  
  $    $    $    $    $    $%    $?    $Y    $s    $    $    $    $    $    $    $)    $C    $]    $w    $    $    $     $  !  $  "  $  #  $-  $  $G  %  $a  &  ${  '  $  (  $  )  $  *  $  +  $  ,  $  -  $1  .  $K  /  $e  0  $  1  $  2  $  3  $  4  $  5  $  6  $  7  $5  8  $O  9  $i  :  $  ;  $  <  $  =  $  >  $  ?  $  @  $  A  $9  B  $S  C  $m  D  $  E  $  F  $  G  $  H  $  I  $	  J  $#  K  $=  L  $W  M  $q  N  $  O  $  P  $  Q  $  R  $  S  $  T  $'  U  $A  V  $[  W  $u  X  $  Y  $  Z  $  [  $  \  $  ]  $  ^  $+  _  $E  `  $_  a  $y  b  $  c  $  d  $  e  $  f  $  g  $  h  $/  i  $I  j  $c  k  $}  l  $  m  $  n  $  o  $  p  $  q  $  r  $3  s  $M  t  $g  u  $  v  $  w  $  x  $  y  $  z  $  {  $  |  $7  }  $Q  ~  $k    $    $    $    $    $    $    $!    $;    $U    $o    $    $    $    $    $    $    $%    $?    $Y    $s    $    $    $    $    $    $    $)    $C    $]    $w    $    $    $    $    $    $    $-    $G    $a    ${    $    $    $    $    $    $    $1    $K    $e    $    $    $    $    $    $    $    $5    $O    $i    $    $    $    $    $    $    $    $9    $S    $m    $    $    $    $    $    $	    $#    $=    $W    $q    $    $    $    $    $    $    $'    $A    $[    $u    $    $    $    $    $    $    $+    $E    $_    $y    $    $    $    $    $    $    $/    $I    $c    $}    $    $    $    $    $    $    $3    $M    $g    $    $    $    $    $    $    $    $7    $Q    $k    $     $    $    $    $    $    $!    $;    $U    $o  	  $  
  $    $    $    $    $    $%    $?    $Y    $s    $    $    $    $    $    $    $)    $C    $]    $w    $    $    $     $  !  $  "  $  #  $-  $  $G  %  $a  &  ${  '  $  (  $  )  $  *  $  +  $  ,  $  -  $1  .  $K  /  $e  0  $  1  $  2  $  3  $  4  $  5  $  6  $  7  $5  8  $O  9  $i  :  $  ;  $  <  $  =  $  >  $  ?  $  @  $  A  $9  B  $S  C  $m  D  $  E  $  F  $  G  $  H  $  I  $	  J  $#  K  $=  L  $W  M  $q  N  $  O  $  P  $  Q  $  R  $  S  $  T  $'  U  $A  V  $[  W  $u  X  $  Y  $  Z  $  [  $  \  $  ]  $  ^  $+  _  $E  `  $_  a  $y  b  $  c  $  d  $  e  $  f  $  g  $  h  $/  i  $I  j  $c  k  $}  l  $  m  $  n  $  o  $  p  $  q  $  r  $3  s  $M  t  $g  u  $  v  $  w  $  x  $  y  $  z  $  {  $  |  $7  }  $Q  ~  $k    $    $    $    $    $    $    $!    $;    $U    $o    $    $    $    $    $    $    $%    $?    $Y    $s    $    $    $    $    $    $    $)    $C    $]    $w    $    $    $    $    $    $    $-    $G    $a    ${    $    $    $    $    $    $    $1    $K    $e    $    $    $    $    $    $    $    $5    $O    $i    $    $    $    $    $    $    $    $9    $S    $m    $    $    $    $    $    $	    $#    $=    $W    $q    $    $    $    $    $    $    $'    $A    $[    $u    $    $    $    $    $    $    $+    $E    $_    $y    $    $    $    $    $    $    $/    $I    $c    $}    $    $    $    $    $    $    $3    $M    $g    $    $    $    $    $    $    $    $7    $Q    $k    $     $    $    $    $    $    $!    $;    $U    $o  	  $  
  $    $    $    $    $    $%    $?    $Y    $s    $    $    $    $    $    $    $)    $C    $]    $w    $    $    $     $  !  $  "  $  #  $-  $  $G  %  $a  &  ${  '  $  (  $  )  $  *  $  +  $  ,  $  -  $1  .  $K  /  $e  0  $  1  $  2  $  3  $  4  $  5  $  6  $  7  $5  8  $O  9  $i  :  $  ;  $  <  $  =  $  >  $  ?  $  @  $  A  $9  B  $S  C  $m  D  $  E  $  F  $  G  $  H  $  I  $	  J  $#  K  $=  L  $W  M  $q  N  $  O  $  P  $  Q  $  R  $  S  $  T  $'  U  $A  V  $[  W  $u  X  $  Y  $  Z  $  [  $  \  $  ]  $  ^  $+  _  $E  `  $_  a  $y  b  $  c  $  d  $  e  $  f  $  g  $  h  $/  i  $I  j  $c  k  $}  l  $  m  $  n  $  o  $  p  $  q  $  r  $3  s  $M  t  $g  u  $  v  $  w  $µ  x  $  y  $  z  $  {  $  |  $7  }  $Q  ~  $k    $Å    $ß    $ù    $    $    $    $!    $;    $U    $o    $ĉ    $ģ    $Ľ    $    $    $    $%    $?    $Y    $s    $ō    $ŧ    $    $    $    $    $)    $C    $]    $w    $Ƒ    $ƫ    $    $    $    $    $-    $G    $a    ${    $Ǖ    $ǯ    $    $    $    $    $1    $K    $e    $    $ș    $ȳ    $    $    $    $    $5    $O    $i    $Ƀ    $ɝ    $ɷ    $    $    $    $    $9    $S    $m    $ʇ    $ʡ    $ʻ    $    $    $	    $#    $=    $W    $q    $ˋ    $˥    $˿    $    $    $    $'    $A    $[    $u    $̏    $̩    $    $    $    $    $+    $E    $_    $y    $͓    $ͭ    $    $    $    $    $/    $I    $c    $}    $Η    $α    $    $    $    $    $3    $M    $g    $ρ    $ϛ    $ϵ    $    $    $    $    $7    $Q    $k    $Ѕ     $П    $й    $    $    $    $!    $;    $U    $o  	  $щ  
  $ѣ    $ѽ    $    $    $    $%    $?    $Y    $s    $ҍ    $ҧ    $    $    $    $    $)    $C    $]    $w    $ӑ    $ӫ    $     $  !  $  "  $  #  $-  $  $G  %  $a  &  ${  '  $ԕ  (  $ԯ  )  $  *  $  +  $  ,  $  -  $1  .  $K  /  $e  0  $  1  $ՙ  2  $ճ  3  $  4  $  5  $  6  $  7  $5  8  $O  9  $i  :  $փ  ;  $֝  <  $ַ  =  $  >  $  ?  $  @  $  A  $9  B  $S  C  $m  D  $ׇ  E  $ס  F  $׻  G  $  H  $  I  $	  J  $#  K  $=  L  $W  M  $q  N  $؋  O  $إ  P  $ؿ  Q  $  R  $  S  $  T  $'  U  $A  V  $[  W  $u  X  $ُ  Y  $٩  Z  $  [  $  \  $  ]  $  ^  $+  _  $E  `  $_  a  $y  b  $ړ  c  $ڭ  d  $  e  $  f  $  g  $  h  $/  i  $I  j  $c  k  $}  l  $ۗ  m  $۱  n  $  o  $  p  $  q  $  r  $3  s  $M  t  $g  u  $܁  v  $ܛ  w  $ܵ  x  $  y  $  z  $  {  $  |  $7  }  $Q  ~  $k    $݅    $ݟ    $ݹ    $    $    $    $!    $;    $U    $o    $މ    $ޣ    $޽    $    $    $    $%    $?    $Y    $s    $ߍ    $ߧ    $    $    $    $    $)    $C    $]    $w    $    $    $    $    $    $    $-    $G    $a    ${    $    $    $    $    $    $    $1    $K    $e    $    $    $    $    $    $    $    $5    $O    $i    $    $    $    $    $    $    $    $9    $S    $m    $    $    $    $    $    $	    $#    $=    $W    $q    $    $    $    $    $    $    $'    $A    $[    $u    $    $    $    $    $    $    $+    $E    $_    $y    $    $    $    $    $    $    $/    $I    $c    $}    $    $    $    $    $    $    $3    $M    $g    $    $    $    $    $    $    $    $7    $Q    $k    $     $    $    $    $    $    $!    $;    $U    $o  	  $  
  $    $    $    $    $    $%    $?    $Y    $s    $    $    $    $    $    $    $)    $C    $]    $w    $    $    $     $  !  $  "  $  #  $-  $  $G  %  $a  &  ${  '  $  (  $  )  $  *  $  +  $  ,  $  -  $1  .  $K  /  $e  0  $  1  $  2  $  3  $  4  $  5  $  6  $  7  $5  8  $O  9  $i  :  $  ;  $  <  $  =  $  >  $  ?  $  @  $  A  $9  B  $S  C  $m  D  $  E  $  F  $  G  $  H  $  I  $	  J  $#  K  $=  L  $W  M  $q  N  $  O  $  P  $  Q  $  R  $  S  $  T  $'  U  $A  V  $[  W  $u  X  $  Y  $  Z  $  [  $  \  $  ]  $  ^  $+  _  $E  `  $_  a  $y  b  $  c  $  d  $  e  $  f  $  g  $  h  $/  i  $I  j  $c  k  $}  l  $  m  $  n  $  o  $  p  $  q  $  r  $3  s  $M  t  $g  u  $  v  $  w  $  x  $  y  $  z  $  {  $  |  $7  }  $Q  ~  $k    $    $    $    $    $    $    $!    $;    $U    $o    $    $    $    $    $    $    $%    $?    $Y    $s    $    $    $    $    $    $    $)    $C    $]    $w    $    $    $    $    $    $    $-    $G    $a    ${    $    $    $    $    $    $    $1    $K    $e    $    $    $    $    $    $    $    $5    $O    $i    $    $    $    $    $    $    $    $9    $S    $m    $    $    $    $    $    $	    $#    $=    $W    $q    $    $    $    $    $    %     % '    % A    % [    % u    %     %     %     %     %     %    %+    %E    %_    %y    %    %    %    %    %    %    %/    %I    %c    %}    %    %    %    %    %    %    %3    %M    %g    %    %    %    %    %    %    %    %7    %Q    %k    %     %    %    %    %    %    %!    %;    %U    %o  	  %  
  %    %    %    %    %    %%    %?    %Y    %s    %    %    %    %    %    %    %)    %C    %]    %w    %    %    %     %  !  %  "  %  #  %-  $  %G  %  %a  &  %{  '  %  (  %  )  %  *  %  +  %  ,  %	  -  %	1  .  %	K  /  %	e  0  %	  1  %	  2  %	  3  %	  4  %	  5  %
  6  %
  7  %
5  8  %
O  9  %
i  :  %
  ;  %
  <  %
  =  %
  >  %
  ?  %  @  %  A  %9  B  %S  C  %m  D  %  E  %  F  %  G  %  H  %  I  %	  J  %#  K  %=  L  %W  M  %q  N  %  O  %  P  %  Q  %  R  %  S  %  T  %'  U  %A  V  %[  W  %u  X  %  Y  %  Z  %  [  %  \  %  ]  %  ^  %+  _  %E  `  %_  a  %y  b  %  c  %  d  %  e  %  f  %  g  %  h  %/  i  %I  j  %c  k  %}  l  %  m  %  n  %  o  %  p  %  q  %  r  %3  s  %M  t  %g  u  %  v  %  w  %  x  %  y  %  z  %  {  %  |  %7  }  %Q  ~  %k    %    %    %    %    %    %    %!    %;    %U    %o    %    %    %    %    %    %    %%    %?    %Y    %s    %    %    %    %    %    %    %)    %C    %]    %w    %    %    %    %    %    %    %-    %G    %a    %{    %    %    %    %    %    %    %1    %K    %e    %    %    %    %    %    %    %    %5    %O    %i    %    %    %    %    %    %    %    %9    %S    %m    %    %    %    %    %    %	    %#    %=    %W    %q    %    %    %    %    %    %    %'    %A    %[    %u    %    %    %    %    %    %    %+    %E    %_    %y    %    %    %    %    %    %    %/    %I    %c    %}    %    %    %    %    %    %    %3    %M    %g    %    %    %    %    %    %    %    %7    %Q    %k    %     %    %    %    %    %    %!    %;    %U    %o  	  %  
  %    %    %    %    %     % %    % ?    % Y    % s    %     %     %     %     %     %!    %!)    %!C    %!]    %!w    %!    %!    %!     %!  !  %!  "  %"  #  %"-  $  %"G  %  %"a  &  %"{  '  %"  (  %"  )  %"  *  %"  +  %"  ,  %#  -  %#1  .  %#K  /  %#e  0  %#  1  %#  2  %#  3  %#  4  %#  5  %$  6  %$  7  %$5  8  %$O  9  %$i  :  %$  ;  %$  <  %$  =  %$  >  %$  ?  %%  @  %%  A  %%9  B  %%S  C  %%m  D  %%  E  %%  F  %%  G  %%  H  %%  I  %&	  J  %&#  K  %&=  L  %&W  M  %&q  N  %&  O  %&  P  %&  Q  %&  R  %&  S  %'  T  %''  U  %'A  V  %'[  W  %'u  X  %'  Y  %'  Z  %'  [  %'  \  %'  ]  %(  ^  %(+  _  %(E  `  %(_  a  %(y  b  %(  c  %(  d  %(  e  %(  f  %(  g  %)  h  %)/  i  %)I  j  %)c  k  %)}  l  %)  m  %)  n  %)  o  %)  p  %)  q  %*  r  %*3  s  %*M  t  %*g  u  %*  v  %*  w  %*  x  %*  y  %*  z  %+  {  %+  |  %+7  }  %+Q  ~  %+k    %+    %+    %+    %+    %+    %,    %,!    %,;    %,U    %,o    %,    %,    %,    %,    %,    %-    %-%    %-?    %-Y    %-s    %-    %-    %-    %-    %-    %.    %.)    %.C    %.]    %.w    %.    %.    %.    %.    %.    %/    %/-    %/G    %/a    %/{    %/    %/    %/    %/    %/    %0    %01    %0K    %0e    %0    %0    %0    %0    %0    %1    %1    %15    %1O    %1i    %1    %1    %1    %1    %1    %2    %2    %29    %2S    %2m    %2    %2    %2    %2    %2    %3	    %3#    %3=    %3W    %3q    %3    %3    %3    %3    %3    %4    %4'    %4A    %4[    %4u    %4    %4    %4    %4    %4    %5    %5+    %5E    %5_    %5y    %5    %5    %5    %5    %5    %6    %6/    %6I    %6c    %6}    %6    %6    %6    %6    %6    %7    %73    %7M    %7g    %7    %7    %7    %7    %7    %8    %8    %87    %8Q    %8k    %8     %8    %8    %8    %8    %9    %9!    %9;    %9U    %9o  	  %9  
  %9    %9    %9    %9    %:    %:%    %:?    %:Y    %:s    %:    %:    %:    %:    %:    %;    %;)    %;C    %;]    %;w    %;    %;    %;     %;  !  %;  "  %<  #  %<-  $  %<G  %  %<a  &  %<{  '  %<  (  %<  )  %<  *  %<  +  %<  ,  %=  -  %=1  .  %=K  /  %=e  0  %=  1  %=  2  %=  3  %=  4  %=  5  %>  6  %>  7  %>5  8  %>O  9  %>i  :  %>  ;  %>  <  %>  =  %>  >  %>  ?  %?  @  %?  A  %?9  B  %?S  C  %?m  D  %?  E  %?  F  %?  G  %?  H  %?  I  %@	  J  %@#  K  %@=  L  %@W  M  %@q  N  %@  O  %@  P  %@  Q  %@  R  %@  S  %A  T  %A'  U  %AA  V  %A[  W  %Au  X  %A  Y  %A  Z  %A  [  %A  \  %A  ]  %B  ^  %B+  _  %BE  `  %B_  a  %By  b  %B  c  %B  d  %B  e  %B  f  %B  g  %C  h  %C/  i  %CI  j  %Cc  k  %C}  l  %C  m  %C  n  %C  o  %C  p  %C  q  %D  r  %D3  s  %DM  t  %Dg  u  %D  v  %D  w  %D  x  %D  y  %D  z  %E  {  %E  |  %E7  }  %EQ  ~  %Ek    %E    %E    %E    %E    %E    %F    %F!    %F;    %FU    %Fo    %F    %F    %F    %F    %F    %G    %G%    %G?    %GY    %Gs    %G    %G    %G    %G    %G    %H    %H)    %HC    %H]    %Hw    %H    %H    %H    %H    %H    %I    %I-    %IG    %Ia    %I{    %I    %I    %I    %I    %I    %J    %J1    %JK    %Je    %J    %J    %J    %J    %J    %K    %K    %K5    %KO    %Ki    %K    %K    %K    %K    %K    %L    %L    %L9    %LS    %Lm    %L    %L    %L    %L    %L    %M	    %M#    %M=    %MW    %Mq    %M    %M    %M    %M    %M    %N    %N'    %NA    %N[    %Nu    %N    %N    %N    %N    %N    %O    %O+    %OE    %O_    %Oy    %O    %O    %O    %O    %O    %P    %P/    %PI    %Pc    %P}    %P    %P    %P    %P    %P    %Q    %Q3    %QM    %Qg    %Q    %Q    %Q    %Q    %Q    %R    %R    %R7    %RQ    %Rk    %R     %R    %R    %R    %R    %S    %S!    %S;    %SU    %So  	  %S  
  %S    %S    %S    %S    %T    %T%    %T?    %TY    %Ts    %T    %T    %T    %T    %T    %U    %U)    %UC    %U]    %Uw    %U    %U    %U     %U  !  %U  "  %V  #  %V-  $  %VG  %  %Va  &  %V{  '  %V  (  %V  )  %V  *  %V  +  %V  ,  %W  -  %W1  .  %WK  /  %We  0  %W  1  %W  2  %W  3  %W  4  %W  5  %X  6  %X  7  %X5  8  %XO  9  %Xi  :  %X  ;  %X  <  %X  =  %X  >  %X  ?  %Y  @  %Y  A  %Y9  B  %YS  C  %Ym  D  %Y  E  %Y  F  %Y  G  %Y  H  %Y  I  %Z	  J  %Z#  K  %Z=  L  %ZW  M  %Zq  N  %Z  O  %Z  P  %Z  Q  %Z  R  %Z  S  %[  T  %['  U  %[A  V  %[[  W  %[u  X  %[  Y  %[  Z  %[  [  %[  \  %[  ]  %\  ^  %\+  _  %\E  `  %\_  a  %\y  b  %\  c  %\  d  %\  e  %\  f  %\  g  %]  h  %]/  i  %]I  j  %]c  k  %]}  l  %]  m  %]  n  %]  o  %]  p  %]  q  %^  r  %^3  s  %^M  t  %^g  u  %^  v  %^  w  %^  x  %^  y  %^  z  %_  {  %_  |  %_7  }  %_Q  ~  %_k    %_    %_    %_    %_    %_    %`    %`!    %`;    %`U    %`o    %`    %`    %`    %`    %`    %a    %a%    %a?    %aY    %as    %a    %a    %a    %a    %a    %b    %b)    %bC    %b]    %bw    %b    %b    %b    %b    %b    %c    %c-    %cG    %ca    %c{    %c    %c    %c    %c    %c    %d    %d1    %dK    %de    %d    %d    %d    %d    %d    %e    %e    %e5    %eO    %ei    %e    %e    %e    %e    %e    %f    %f    %f9    %fS    %fm    %f    %f    %f    %f    %f    %g	    %g#    %g=    %gW    %gq    %g    %g    %g    %g    %g    %h    %h'    %hA    %h[    %hu    %h    %h    %h    %h    %h    %i    %i+    %iE    %i_    %iy    %i    %i    %i    %i    %i    %j    %j/    %jI    %jc    %j}    %j    %j    %j    %j    %j    %k    %k3    %kM    %kg    %k    %k    %k    %k    %k    %l    %l    %l7    %lQ    %lk    %l     %l    %l    %l    %l    %m    %m!    %m;    %mU    %mo  	  %m  
  %m    %m    %m    %m    %n    %n%    %n?    %nY    %ns    %n    %n    %n    %n    %n    %o    %o)    %oC    %o]    %ow    %o    %o    %o     %o  !  %o  "  %p  #  %p-  $  %pG  %  %pa  &  %p{  '  %p  (  %p  )  %p  *  %p  +  %p  ,  %q  -  %q1  .  %qK  /  %qe  0  %q  1  %q  2  %q  3  %q  4  %q  5  %r  6  %r  7  %r5  8  %rO  9  %ri  :  %r  ;  %r  <  %r  =  %r  >  %r  ?  %s  @  %s  A  %s9  B  %sS  C  %sm  D  %s  E  %s  F  %s  G  %s  H  %s  I  %t	  J  %t#  K  %t=  L  %tW  M  %tq  N  %t  O  %t  P  %t  Q  %t  R  %t  S  %u  T  %u'  U  %uA  V  %u[  W  %uu  X  %u  Y  %u  Z  %u  [  %u  \  %u  ]  %v  ^  %v+  _  %vE  `  %v_  a  %vy  b  %v  c  %v  d  %v  e  %v  f  %v  g  %w  h  %w/  i  %wI  j  %wc  k  %w}  l  %w  m  %w  n  %w  o  %w  p  %w  q  %x  r  %x3  s  %xM  t  %xg  u  %x  v  %x  w  %x  x  %x  y  %x  z  %y  {  %y  |  %y7  }  %yQ  ~  %yk    %y    %y    %y    %y    %y    %z    %z!    %z;    %zU    %zo    %z    %z    %z    %z    %z    %{    %{%    %{?    %{Y    %{s    %{    %{    %{    %{    %{    %|    %|)    %|C    %|]    %|w    %|    %|    %|    %|    %|    %}    %}-    %}G    %}a    %}{    %}    %}    %}    %}    %}    %~    %~1    %~K    %~e    %~    %~    %~    %~    %~    %    %    %5    %O    %i    %    %    %    %    %    %    %    %9    %S    %m    %    %    %    %    %    %	    %#    %=    %W    %q    %    %    %    %    %    %    %'    %A    %[    %u    %    %    %    %    %    %    %+    %E    %_    %y    %    %    %    %    %    %    %/    %I    %c    %}    %    %    %    %    %    %    %3    %M    %g    %    %    %    %    %    %    %    %7    %Q    %k    %     %    %    %    %    %    %!    %;    %U    %o  	  %  
  %    %    %    %    %    %%    %?    %Y    %s    %    %    %    %    %    %    %)    %C    %]    %w    %    %    %     %  !  %  "  %  #  %-  $  %G  %  %a  &  %{  '  %  (  %  )  %  *  %  +  %  ,  %  -  %1  .  %K  /  %e  0  %  1  %  2  %  3  %  4  %  5  %  6  %  7  %5  8  %O  9  %i  :  %  ;  %  <  %  =  %  >  %  ?  %  @  %  A  %9  B  %S  C  %m  D  %  E  %  F  %  G  %  H  %  I  %	  J  %#  K  %=  L  %W  M  %q  N  %  O  %  P  %  Q  %  R  %  S  %  T  %'  U  %A  V  %[  W  %u  X  %  Y  %  Z  %  [  %  \  %  ]  %  ^  %+  _  %E  `  %_  a  %y  b  %  c  %  d  %  e  %  f  %  g  %  h  %/  i  %I  j  %c  k  %}  l  %  m  %  n  %  o  %  p  %  q  %  r  %3  s  %M  t  %g  u  %  v  %  w  %  x  %  y  %  z  %  {  %  |  %7  }  %Q  ~  %k    %    %    %    %    %    %    %!    %;    %U    %o    %    %    %    %    %    %    %%    %?    %Y    %s    %    %    %    %    %    %    %)    %C    %]    %w    %    %    %    %    %    %    %-    %G    %a    %{    %    %    %    %    %    %    %1    %K    %e    %    %    %    %    %    %    %    %5    %O    %i    %    %    %    %    %    %    %    %9    %S    %m    %    %    %    %    %    %	    %#    %=    %W    %q    %    %    %    %    %    %    %'    %A    %[    %u    %    %    %    %    %    %    %+    %E    %_    %y    %    %    %    %    %    %    %/    %I    %c    %}    %    %    %    %    %    %    %3    %M    %g    %    %    %    %    %    %    %    %7    %Q    %k    %     %    %    %    %    %    %!    %;    %U    %o  	  %  
  %    %    %    %    %    %%    %?    %Y    %s    %    %    %    %    %    %    %)    %C    %]    %w    %    %    %     %  !  %  "  %  #  %-  $  %G  %  %a  &  %{  '  %  (  %  )  %  *  %  +  %  ,  %  -  %1  .  %K  /  %e  0  %  1  %  2  %  3  %  4  %  5  %  6  %  7  %5  8  %O  9  %i  :  %  ;  %  <  %  =  %  >  %  ?  %  @  %  A  %9  B  %S  C  %m  D  %  E  %  F  %  G  %  H  %  I  %	  J  %#  K  %=  L  %W  M  %q  N  %  O  %  P  %  Q  %  R  %  S  %  T  %'  U  %A  V  %[  W  %u  X  %  Y  %  Z  %  [  %  \  %  ]  %  ^  %+  _  %E  `  %_  a  %y  b  %  c  %  d  %  e  %  f  %  g  %  h  %/  i  %I  j  %c  k  %}  l  %  m  %  n  %  o  %  p  %  q  %  r  %3  s  %M  t  %g  u  %  v  %  w  %  x  %  y  %  z  %  {  %  |  %7  }  %Q  ~  %k    %    %    %    %    %    %    %!    %;    %U    %o    %    %    %    %    %    %    %%    %?    %Y    %s    %    %    %    %    %    %    %)    %C    %]    %w    %    %    %    %    %    %    %-    %G    %a    %{    %    %    %    %    %    %    %1    %K    %e    %    %    %    %    %    %    %    %5    %O    %i    %    %    %    %    %    %    %    %9    %S    %m    %    %    %    %    %    %	    %#    %=    %W    %q    %    %    %    %    %    %    %'    %A    %[    %u    %    %    %    %    %    %    %+    %E    %_    %y    %    %    %    %    %    %    %/    %I    %c    %}    %    %    %    %    %    %    %3    %M    %g    %    %    %    %    %    %    %    %7    %Q    %k    %     %    %    %    %    %    %!    %;    %U    %o  	  %  
  %    %    %    %    %    %%    %?    %Y    %s    %    %    %    %    %    %    %)    %C    %]    %w    %    %    %     %  !  %  "  %  #  %-  $  %G  %  %a  &  %{  '  %  (  %  )  %  *  %  +  %  ,  %  -  %1  .  %K  /  %e  0  %  1  %  2  %  3  %  4  %  5  %  6  %  7  %5  8  %O  9  %i  :  %  ;  %  <  %  =  %  >  %  ?  %  @  %  A  %9  B  %S  C  %m  D  %  E  %  F  %  G  %  H  %  I  %	  J  %#  K  %=  L  %W  M  %q  N  %  O  %¥  P  %¿  Q  %  R  %  S  %  T  %'  U  %A  V  %[  W  %u  X  %Ï  Y  %é  Z  %  [  %  \  %  ]  %  ^  %+  _  %E  `  %_  a  %y  b  %ē  c  %ĭ  d  %  e  %  f  %  g  %  h  %/  i  %I  j  %c  k  %}  l  %ŗ  m  %ű  n  %  o  %  p  %  q  %  r  %3  s  %M  t  %g  u  %Ɓ  v  %ƛ  w  %Ƶ  x  %  y  %  z  %  {  %  |  %7  }  %Q  ~  %k    %ǅ    %ǟ    %ǹ    %    %    %    %!    %;    %U    %o    %ȉ    %ȣ    %Ƚ    %    %    %    %%    %?    %Y    %s    %ɍ    %ɧ    %    %    %    %    %)    %C    %]    %w    %ʑ    %ʫ    %    %    %    %    %-    %G    %a    %{    %˕    %˯    %    %    %    %    %1    %K    %e    %    %̙    %̳    %    %    %    %    %5    %O    %i    %̓    %͝    %ͷ    %    %    %    %    %9    %S    %m    %·    %Ρ    %λ    %    %    %	    %#    %=    %W    %q    %ϋ    %ϥ    %Ͽ    %    %    %    %'    %A    %[    %u    %Џ    %Щ    %    %    %    %    %+    %E    %_    %y    %ѓ    %ѭ    %    %    %    %    %/    %I    %c    %}    %җ    %ұ    %    %    %    %    %3    %M    %g    %Ӂ    %ӛ    %ӵ    %    %    %    %    %7    %Q    %k    %ԅ     %ԟ    %Թ    %    %    %    %!    %;    %U    %o  	  %Չ  
  %գ    %ս    %    %    %    %%    %?    %Y    %s    %֍    %֧    %    %    %    %    %)    %C    %]    %w    %ב    %׫    %     %  !  %  "  %  #  %-  $  %G  %  %a  &  %{  '  %ؕ  (  %د  )  %  *  %  +  %  ,  %  -  %1  .  %K  /  %e  0  %  1  %ٙ  2  %ٳ  3  %  4  %  5  %  6  %  7  %5  8  %O  9  %i  :  %ڃ  ;  %ڝ  <  %ڷ  =  %  >  %  ?  %  @  %  A  %9  B  %S  C  %m  D  %ۇ  E  %ۡ  F  %ۻ  G  %  H  %  I  %	  J  %#  K  %=  L  %W  M  %q  N  %܋  O  %ܥ  P  %ܿ  Q  %  R  %  S  %  T  %'  U  %A  V  %[  W  %u  X  %ݏ  Y  %ݩ  Z  %  [  %  \  %  ]  %  ^  %+  _  %E  `  %_  a  %y  b  %ޓ  c  %ޭ  d  %  e  %  f  %  g  %  h  %/  i  %I  j  %c  k  %}  l  %ߗ  m  %߱  n  %  o  %  p  %  q  %  r  %3  s  %M  t  %g  u  %  v  %  w  %  x  %  y  %  z  %  {  %  |  %7  }  %Q  ~  %k    %    %    %    %    %    %    %!    %;    %U    %o    %    %    %    %    %    %    %%    %?    %Y    %s    %    %    %    %    %    %    %)    %C    %]    %w    %    %    %    %    %    %    %-    %G    %a    %{    %    %    %    %    %    %    %1    %K    %e    %    %    %    %    %    %    %    %5    %O    %i    %    %    %    %    %    %    %    %9    %S    %m    %    %    %    %    %    %	    %#    %=    %W    %q    %    %    %    %    %    %    %'    %A    %[    %u    %    %    %    %    %    %    %+    %E    %_    %y    %    %    %    %    %    %    %/    %I    %c    %}    %    %    %    %    %    %    %3    %M    %g    %    %    %    %    %    %    %    %7    %Q    %k    %     %    %    %    %    %    %!    %;    %U    %o  	  %  
  %    %    %    %    %    %%    %?    %Y    %s    %    %    %    %    %    %    %)    %C    %]    %w    %    %    %     %  !  %  "  %  #  %-  $  %G  %  %a  &  %{  '  %  (  %  )  %  *  %  +  %  ,  %  -  %1  .  %K  /  %e  0  %  1  %  2  %  3  %  4  %  5  %  6  %  7  %5  8  %O  9  %i  :  %  ;  %  <  %  =  %  >  %  ?  %  @  %  A  %9  B  %S  C  %m  D  %  E  %  F  %  G  %  H  %  I  %	  J  %#  K  %=  L  %W  M  %q  N  %  O  %  P  %  Q  %  R  %  S  %  T  %'  U  %A  V  %[  W  %u  X  %  Y  %  Z  %  [  %  \  %  ]  %  ^  %+  _  %E  `  %_  a  %y  b  %  c  %  d  %  e  %  f  %  g  %  h  %/  i  %I  j  %c  k  %}  l  %  m  %  n  %  o  %  p  %  q  %  r  %3  s  %M  t  %g  u  %  v  %  w  %  x  %  y  %  z  %  {  %  |  %7  }  %Q  ~  %k    %    %    %    %    %    %    %!    %;    %U    %o    %    %    %    %    %    %    %%    %?    %Y    %s    %    %    %    %    %    %    %)    %C    %]    %w    %    %    %    %    %    %    %-    %G    %a    %{    %    %    %    %    %    &     & 1    & K    & e    &     &     &     &     &     &    &    &5    &O    &i    &    &    &    &    &    &    &    &9    &S    &m    &    &    &    &    &    &	    &#    &=    &W    &q    &    &    &    &    &    &    &'    &A    &[    &u    &    &    &    &    &    &    &+    &E    &_    &y    &    &    &    &    &    &    &/    &I    &c    &}    &    &    &    &    &    &    &3    &M    &g    &    &    &    &    &    &    &    &7    &Q    &k    &     &    &    &    &    &	    &	!    &	;    &	U    &	o  	  &	  
  &	    &	    &	    &	    &
    &
%    &
?    &
Y    &
s    &
    &
    &
    &
    &
    &    &)    &C    &]    &w    &    &    &     &  !  &  "  &  #  &-  $  &G  %  &a  &  &{  '  &  (  &  )  &  *  &  +  &  ,  &  -  &1  .  &K  /  &e  0  &  1  &  2  &  3  &  4  &  5  &  6  &  7  &5  8  &O  9  &i  :  &  ;  &  <  &  =  &  >  &  ?  &  @  &  A  &9  B  &S  C  &m  D  &  E  &  F  &  G  &  H  &  I  &	  J  &#  K  &=  L  &W  M  &q  N  &  O  &  P  &  Q  &  R  &  S  &  T  &'  U  &A  V  &[  W  &u  X  &  Y  &  Z  &  [  &  \  &  ]  &  ^  &+  _  &E  `  &_  a  &y  b  &  c  &  d  &  e  &  f  &  g  &  h  &/  i  &I  j  &c  k  &}  l  &  m  &  n  &  o  &  p  &  q  &  r  &3  s  &M  t  &g  u  &  v  &  w  &  x  &  y  &  z  &  {  &  |  &7  }  &Q  ~  &k    &    &    &    &    &    &    &!    &;    &U    &o    &    &    &    &    &    &    &%    &?    &Y    &s    &    &    &    &    &    &    &)    &C    &]    &w    &    &    &    &    &    &    &-    &G    &a    &{    &    &    &    &    &    &    &1    &K    &e    &    &    &    &    &    &    &    &5    &O    &i    &    &    &    &    &    &    &    &9    &S    &m    &    &    &    &    &    &	    &#    &=    &W    &q    &    &    &    &    &    &    &'    &A    &[    &u    &    &    &    &    &    &    &+    &E    &_    &y    &    &    &    &    &    &     & /    & I    & c    & }    &     &     &     &     &     &!    &!3    &!M    &!g    &!    &!    &!    &!    &!    &"    &"    &"7    &"Q    &"k    &"     &"    &"    &"    &"    &#    &#!    &#;    &#U    &#o  	  &#  
  &#    &#    &#    &#    &$    &$%    &$?    &$Y    &$s    &$    &$    &$    &$    &$    &%    &%)    &%C    &%]    &%w    &%    &%    &%     &%  !  &%  "  &&  #  &&-  $  &&G  %  &&a  &  &&{  '  &&  (  &&  )  &&  *  &&  +  &&  ,  &'  -  &'1  .  &'K  /  &'e  0  &'  1  &'  2  &'  3  &'  4  &'  5  &(  6  &(  7  &(5  8  &(O  9  &(i  :  &(  ;  &(  <  &(  =  &(  >  &(  ?  &)  @  &)  A  &)9  B  &)S  C  &)m  D  &)  E  &)  F  &)  G  &)  H  &)  I  &*	  J  &*#  K  &*=  L  &*W  M  &*q  N  &*  O  &*  P  &*  Q  &*  R  &*  S  &+  T  &+'  U  &+A  V  &+[  W  &+u  X  &+  Y  &+  Z  &+  [  &+  \  &+  ]  &,  ^  &,+  _  &,E  `  &,_  a  &,y  b  &,  c  &,  d  &,  e  &,  f  &,  g  &-  h  &-/  i  &-I  j  &-c  k  &-}  l  &-  m  &-  n  &-  o  &-  p  &-  q  &.  r  &.3  s  &.M  t  &.g  u  &.  v  &.  w  &.  x  &.  y  &.  z  &/  {  &/  |  &/7  }  &/Q  ~  &/k    &/    &/    &/    &/    &/    &0    &0!    &0;    &0U    &0o    &0    &0    &0    &0    &0    &1    &1%    &1?    &1Y    &1s    &1    &1    &1    &1    &1    &2    &2)    &2C    &2]    &2w    &2    &2    &2    &2    &2    &3    &3-    &3G    &3a    &3{    &3    &3    &3    &3    &3    &4    &41    &4K    &4e    &4    &4    &4    &4    &4    &5    &5    &55    &5O    &5i    &5    &5    &5    &5    &5    &6    &6    &69    &6S    &6m    &6    &6    &6    &6    &6    &7	    &7#    &7=    &7W    &7q    &7    &7    &7    &7    &7    &8    &8'    &8A    &8[    &8u    &8    &8    &8    &8    &8    &9    &9+    &9E    &9_    &9y    &9    &9    &9    &9    &9    &:    &:/    &:I    &:c    &:}    &:    &:    &:    &:    &:    &;    &;3    &;M    &;g    &;    &;    &;    &;    &;    &<    &<    &<7    &<Q    &<k    &<     &<    &<    &<    &<    &=    &=!    &=;    &=U    &=o  	  &=  
  &=    &=    &=    &=    &>    &>%    &>?    &>Y    &>s    &>    &>    &>    &>    &>    &?    &?)    &?C    &?]    &?w    &?    &?    &?     &?  !  &?  "  &@  #  &@-  $  &@G  %  &@a  &  &@{  '  &@  (  &@  )  &@  *  &@  +  &@  ,  &A  -  &A1  .  &AK  /  &Ae  0  &A  1  &A  2  &A  3  &A  4  &A  5  &B  6  &B  7  &B5  8  &BO  9  &Bi  :  &B  ;  &B  <  &B  =  &B  >  &B  ?  &C  @  &C  A  &C9  B  &CS  C  &Cm  D  &C  E  &C  F  &C  G  &C  H  &C  I  &D	  J  &D#  K  &D=  L  &DW  M  &Dq  N  &D  O  &D  P  &D  Q  &D  R  &D  S  &E  T  &E'  U  &EA  V  &E[  W  &Eu  X  &E  Y  &E  Z  &E  [  &E  \  &E  ]  &F  ^  &F+  _  &FE  `  &F_  a  &Fy  b  &F  c  &F  d  &F  e  &F  f  &F  g  &G  h  &G/  i  &GI  j  &Gc  k  &G}  l  &G  m  &G  n  &G  o  &G  p  &G  q  &H  r  &H3  s  &HM  t  &Hg  u  &H  v  &H  w  &H  x  &H  y  &H  z  &I  {  &I  |  &I7  }  &IQ  ~  &Ik    &I    &I    &I    &I    &I    &J    &J!    &J;    &JU    &Jo    &J    &J    &J    &J    &J    &K    &K%    &K?    &KY    &Ks    &K    &K    &K    &K    &K    &L    &L)    &LC    &L]    &Lw    &L    &L    &L    &L    &L    &M    &M-    &MG    &Ma    &M{    &M    &M    &M    &M    &M    &N    &N1    &NK    &Ne    &N    &N    &N    &N    &N    &O    &O    &O5    &OO    &Oi    &O    &O    &O    &O    &O    &P    &P    &P9    &PS    &Pm    &P    &P    &P    &P    &P    &Q	    &Q#    &Q=    &QW    &Qq    &Q    &Q    &Q    &Q    &Q    &R    &R'    &RA    &R[    &Ru    &R    &R    &R    &R    &R    &S    &S+    &SE    &S_    &Sy    &S    &S    &S    &S    &S    &T    &T/    &TI    &Tc    &T}    &T    &T    &T    &T    &T    &U    &U3    &UM    &Ug    &U    &U    &U    &U    &U    &V    &V    &V7    &VQ    &Vk    &V     &V    &V    &V    &W    &W<    &Wd    &W    &W    &W  	  &W  
  &X&    &XM    &Xs    &X    &X    &X    &Y    &Y:    &Yb    &Y    &Y    &Y    &Y    &Z'    &ZO    &Zw    &Z    &Z    &Z    &[    &[?    &[g     &[  !  &[  "  &[  #  &\  $  &\.  %  &\V  &  &\~  '  &\  (  &\  )  &\  *  &]  +  &]E  ,  &]m  -  &]  .  &]  /  &]  0  &^  1  &^5  2  &^]  3  &^  4  &^  5  &^  6  &^  7  &_$  8  &_L  9  &_t  :  &_  ;  &_  <  &_  =  &`  >  &`<  ?  &`d  @  &`  A  &`  B  &`  C  &a  D  &a+  E  &aS  F  &a{  G  &a  H  &a  I  &a  J  &b  K  &bA  L  &bi  M  &b  N  &b  O  &b  P  &c	  Q  &c1  R  &cX  S  &c~  T  &c  U  &c  V  &c  W  &d  X  &dF  Y  &dn  Z  &d  [  &d  \  &d  ]  &e  ^  &e8  _  &e_  `  &e  a  &e  b  &e  c  &e  d  &f%  e  &fM  f  &fu  g  &f  h  &f  i  &f  j  &g  k  &g:  l  &gb  m  &g  n  &g  o  &g  p  &h   q  &h(  r  &hO  s  &hw  t  &h  u  &h  v  &h  w  &i  x  &i?  y  &if  z  &i  {  &i  |  &i  }  &j  ~  &j.    &jV    &j~    &j    &j    &j    &k    &kC    &kj    &k    &k    &k    &l    &l,    &lS    &lz    &l    &l    &l    &m    &mB    &mj    &m    &m    &m    &n
    &n2    &nZ    &n    &n    &n    &n    &o     &oG    &oo    &o    &o    &o    &p    &p6    &p^    &p    &p    &p    &p    &q#    &qK    &qs    &q    &q    &q    &r    &r;    &rb    &r    &r    &r    &s    &s*    &sR    &sy    &s    &s    &s    &t    &t;    &tc    &t    &t    &t    &u    &u+    &uS    &uz    &u    &u    &u    &v    &vB    &vj    &v    &v    &v    &w    &w/    &wW    &w    &w    &w    &w    &x    &xG    &xo    &x    &x    &x    &y    &y6    &y^    &y    &y    &y    &y    &z     &zH    &zo    &z    &z    &z    &{    &{3    &{[    &{    &{    &{    &{    &|#    &|K    &|s    &|    &|    &|    &}    &}9    &}a    &}    &}    &}    &~    &~)     &~O    &~u    &~    &~    &~    &    &<    &d    &  	  &  
  &    &    &,    &Q    &v    &    &    &    &    &:    &b    &    &    &    &    &"    &I    &p    &    &    &    &
     &2  !  &Z  "  &  #  &  $  &  %  &  &  &  '  &C  (  &k  )  &  *  &  +  &  ,  &  -  &.  .  &U  /  &j  0  &  1  &  2  &  3  &  4  &  5  &B  6  &g  7  &  8  &  9  &  :  &  ;  &$  <  &I  =  &l  >  &  ?  &  @  &  A  &  B  &/  C  &V  D  &{  E  &  F  &  G  &  H  &  I  &:  J  &O  K  &v  L  &  M  &  N  &  O  &  P  &9  Q  &`  R  &  S  &  T  &  U  &  V  &!  W  &F  X  &m  Y  &  Z  &  [  &  \  &  ]  &*  ^  &=  _  &P  `  &u  a  &  b  &  c  &  d  &  e  &6  f  &]  g  &  h  &  i  &  j  &  k  &  l  &1  m  &F  n  &[  o  &p  p  &  q  &  r  &  s  &  t  &   u  &H  v  &p  w  &  x  &  y  &  z  &  {  &%  |  &H  }  &p  ~  &    &    &    &    &7    &_    &    &    &    &    &'    &O    &w    &    &    &    &    &?    &g    &    &    &    &    &)    &P    &x    &    &    &    &    &@    &h    &    &    &    &    &+    &O    &v    &    &    &    &    &;    &`    &    &    &    &     &(    &P    &x    &    &    &    &    &?    &g    &    &    &    &    &-    &U    &}    &    &    &    &    &D    &l    &    &    &    &
    &2    &Z    &    &    &    &    &!    &I    &q    &    &    &    &    &4    &\    &    &    &    &    &    &    &'    &<    &Q    &f    &{    &    &    &    &    &    &    &    &#    &8    &M    &b    &w    &    &    &    &    &    &    &
    &    &4    &I    &^    &s    &    &    &    &    &     &    &    &    &+    &>    &Q    &d    &w    &  	  &  
  &    &    &    &    &
    &    &4    &I    &^    &s    &    &    &    &    &    &    &    &    &-    &B    &O    &a     &q  !  &  "  &  #  &  $  &  %  &  &  &  '  &  (  &-  )  &E  *  &T  +  &h  ,  &|  -  &  .  &  /  &  0  &  1  &  2  &  3  &  4  &  5  &#  6  &1  7  &A  8  &V  9  &g  :  &s  ;  &  <  &  =  &  >  &  ?  &  @  &  A  &  B  &  C  &  D  &,  E  &=  F  &R  G  &c  H  &v  I  &  J  &  K  &  L  &  M  &  N  &  O  &  P  &  Q  &  R  &,  S  &<  T  &M  U  &]  V  &o  W  &  X  &  Y  &  Z  &  [  &  \  &  ]  &  ^  &  _  &  `  &  a  &)  b  &<  c  &M  d  &_  e  &p  f  &  g  &  h  &  i  &  j  &  k  &  l  &  m  &  n  &  o  &'  p  &:  q  &L  r  &`  s  &p  t  &  u  &  v  &  w  &  x  &  y  &  z  &  {  &  |  &  }  &  ~  &"    &2    &C    &S    &d    &t    &    &    &    &    &    &    &    &    &    &)    &>    &O    &a    &r    &    &    &    &    &    &    &    &    &0    &C    &W    &j    &~    &    &    &    &    &    &    &    &    &    &%    &4    &E    &T    &d    &s    &    &    &    &    &    &    &    &    &    &0    &E    &Z    &o    &    &    &    &    &    &    &    &    &,    &A    &V    &k    &    &    &    &    &    &    &    &    &(    &=    &R    &g    &|    &    &    &    &    &    &    &    &"    &5    &J    &b    &v    &    &    &    &    &    &    &    &    &    &&    &4    &C    &T    &e    &w    &    &    &    &    &    &    &    &%    &9    &P    &f    &z    &    &    &    &    &     &    &    &    &"    &5    &I    &_    &q    &  	  &  
  &    &    &    &    &    &    &     &4    &J    &`    &s    &    &    &    &    &    &    &    &    &.    &A    &V     &o  !  &  "  &  #  &  $  &  %  &  &  &  '  &  (  &&  )  &<  *  &P  +  &e  ,  &|  -  &  .  &  /  &  0  &  1  &  2  &   3  &  4  &)  5  &:  6  &M  7  &b  8  &s  9  &  :  &  ;  &  <  &  =  &  >  &  ?  &  @  &  A  &5  B  &L  C  &_  D  &r  E  &  F  &  G  &  H  &  I  &  J  &  K  &  L  &  M  &  N  &+  O  &A  P  &T  Q  &h  R  &|  S  &  T  &  U  &  V  &  W  &  X  &  Y  &  Z  &  [  &&  \  &9  ]  &L  ^  &^  _  &n  `  &~  a  &  b  &  c  &  d  &  e  &  f  &  g  &  h  &  i  &&  j  &;  k  &N  l  &a  m  &t  n  &  o  &  p  &  q  &  r  &  s  &  t  &  u  &  v  &   w  &7  x  &N  y  &d  z  &y  {  &  |  &  }  &  ~  &    &    &    &     &    &)    &?    &W    &j    &}    &    &    &    &    &    &    &    &    &/    &A    &T    &h    &{    &    &    &    &    &    &    &    &    &)    &9    &J    &[    &l    &    &    &    &    &    &    &    &    &    &$    &9    &K    &c    &z    &    &¢    &¾    &    &    &    &-    &K    &a    &t    &Ç    &Ú    &ê    &ÿ    &    &    &    &    &    &5    &G    &\    &p    &Ą    &ė    &Ī    &Ľ    &    &    &    &    &    &'    &8    &H    &[    &l    &}    &Ŏ    &š    &Ŷ    &    &    &    &    &    &&    &8    &K    &a    &q    &Ƃ    &ƒ    &Ʀ    &Ƹ    &    &    &    &    &4    &H    &^    &s    &Ǆ    &Ǚ    &ǩ    &Ǻ    &    &    &    &
    &    &/    &@    &Q    &d    &{    &ȕ    &ȴ    &     &    &    &    &$    &7    &K    &^    &s    &ɇ  	  &ɝ  
  &ɴ    &    &    &    &    &"    &7    &M    &`    &u    &ʆ    &ʘ    &ʪ    &ʾ    &    &    &    &/    &B    &W    &j    &     &˓  !  &˩  "  &˼  #  &  $  &  %  &  &  &  '  &(  (  &>  )  &T  *  &h  +  &x  ,  &̊  -  &̜  .  &̻  /  &  0  &  1  &  2  &)  3  &H  4  &[  5  &q  6  &̓  7  &͗  8  &ͳ  9  &  :  &  ;  &  <  &	  =  &  >  &+  ?  &P  @  &u  A  &Ί  B  &Ο  C  &δ  D  &  E  &  F  &  G  &  H  &  I  &2  J  &G  K  &\  L  &q  M  &φ  N  &ϛ  O  &ϰ  P  &  Q  &  R  &  S  &  T  &"  U  &9  V  &Q  W  &g  X  &~  Y  &Л  Z  &а  [  &  \  &  ]  &  ^  &  _  &,  `  &J  a  &`  b  &v  c  &я  d  &ѣ  e  &  f  &  g  &  h  &  i  &'  j  &K  k  &n  l  &҉  m  &Ҩ  n  &  o  &  p  &  q  &  r  &9  s  &R  t  &k  u  &Ӎ  v  &Ӧ  w  &Ӿ  x  &  y  &  z  &  {  &*  |  &H  }  &e  ~  &|    &ԝ    &Ժ    &    &    &    &'    &H    &e    &}    &՜    &ճ    &    &    &    &    &%    &:    &O    &d    &y    &֎    &֧    &    &    &    &    &&    &B    &a    &|    &ד    &ק    &    &    &    &'    &E    &d    &    &؝    &ط    &    &    &    &5    &W    &x    &ٙ    &ٶ    &    &    &	    &*    &J    &b    &y    &ڗ    &ڹ    &    &    &    &%    &B    &`    &~    &ۜ    &ۺ    &    &    &    &)    &?    &a    &܁    &ܖ    &ܫ    &    &    &    &    &    &)    &G    &a    &    &ݝ    &ݿ    &    &    &    &7    &X    &ނ    &ާ    &    &    &     &    &@    &j    &ߔ    &߾    &    &    &<    &f  	  &  
  &    &    &    &8    &b    &    &    &    &    &    &    &    &    &    &%    &:    &G    &\    &q    &    &    &     &  !  &  "  &  #  &  $  &  %  &  &  &  '  &  (  &/  )  &D  *  &Y  +  &n  ,  &  -  &  .  &  /  &  0  &  1  &  2  &  3  &  4  &  5  &  6  &'  7  &8  8  &H  9  &X  :  &h  ;  &x  <  &  =  &  >  &  ?  &  @  &  A  &  B  &  C  &  D  &/  E  &F  F  &R  G  &_  H  &r  I  &  J  &  K  &  L  &  M  &  N  &  O  &  P  &  Q  &  R  &  S  &  T  &#  U  &0  V  &<  W  &I  X  &T  Y  &_  Z  &k  [  &w  \  &  ]  &  ^  &  _  &  `  &  a  &  b  &  c  &  d  &  e  &  f  &  g  &  h  &$  i  &0  j  &>  k  &K  l  &X  m  &m  n  &  o  &  p  &  q  &  r  &  s  &  t  &  u  &  v  &  w  &  x  &$  y  &3  z  &F  {  &Q  |  &a  }  &n  ~  &    &    &    &    &    &    &    &    &	    &    &.    &C    &V    &i    &y    &    &    &    &    &    &    &    &    &    &    &(    &8    &I    &Z    &l    &}    &    &    &    &    &    &    &    &    &
    &    &1    &@    &P    &^    &m    &}    &    &    &    &    &    &    &    &    &    &'    &;    &L    &^    &n    &~    &    &    &    &    &    &    &    &    &    &     &0    &A    &R    &d    &u    &    &    &    &    &    &    &    &    &    &    &.    &@    &S    &c    &u    &    &    &    &    &    &    &    &    &    &!    &/    &=    &N    &`    &p    &    &    &    &    &    &    &    &    &    &    &    &-    &=    &P    &d    &v    &    &    &    &    &    &    &     &(    &=    &L    &Z    &v    &    &    &    &  	  &  
  &    &    &3    &>    &J    &U    &u    &    &    &    &    &    &    &(    &A    &\    &u    &    &    &    &    &     &  !  &  "  &'  #  &B  $  &^  %  &y  &  &  '  &  (  &  )  &  *  &  +  &  ,  &8  -  &S  .  &s  /  &  0  &  1  &  2  &  3  &	  4  &$  5  &@  6  &^  7  &|  8  &  9  &  :  &  ;  &  <  &  =  &$  >  &8  ?  &D  @  &P  A  &\  B  &q  C  &  D  &  E  &  F  &  G  &  H  &  I  &  J  &  K  &-  L  &F  M  &U  N  &l  O  &  P  &  Q  &  R  &  S  &  T  &  U  &  V  &  W  &"  X  &:  Y  &O  Z  &f  [  &y  \  &  ]  &  ^  &  _  &  `  &  a  &  b  &  c  &  d  &%  e  &1  f  &<  g  &O  h  &a  i  &t  j  &  k  &  l  &  m  &  n  &  o  &  p  &  q  &  r  &  s  &'  t  &=  u  &Q  v  &j  w  &  x  &  y  &  z  &  {  &  |  &  }  &
  ~  &!    &7    &K    &a    &y    &    &    &    &    &    &    &    &$    &9    &M    &`    &t    &    &    &    &    &    &    &    &    &2    &F    &Y    &p    &    &    &    &    &    &    &    &    &    &    &    &'    &5    &C    &Q    &^    &l    &{    &    &    &    &    &    &    &    &    '      '     '     ' ,    ' :    ' I    ' W    ' e    ' s    '     '     '     '     '     '     '     '     '     '    '    '.    'C    'O    ']    'k    'y    '    '    '    '    '    '    '    '    '    '    '+    '@    'K    'W    'b    'w    '    '    '    '    '    '    '    '    '?    'T    '`    'n    '|    '    '    '    '    '    '    '    '
    '    '4    'I    '^    's    '    '    '    '    '0@ &  'C@ (  'S@ *  'c@ +  's@ ,  '@ -  '@ .  '@ 3  '@ 4  '@ 5  '@ 6  '@ 7  '@ 8  '@ 9  '@ :  '@ A  ',@ B  '<@ C  'L@ D  ']@ E  'm@ F  '{@ G  '@ J  '@ y  '@ z  '@ {  '@ ~  '@   '@   '@   '@   '@   '+@   ';@   'K@   ']@   'o@   '@   '@   '@   '@   '@   '@   '@   ' @   ' "  ' #  '3 $  'G %  '] &  'r '  ' (  ' )  ' *  ' +  'ǀ ,  'ـ -  ' .  ' /  '	 0  '	 1  '	/ 2  '	@ 3  '	S 4  '	d 5  '	x 6  '	 7  '	 8  '	 9  '	 :  '	̀ A  '	 B  '	 C  '
 D  '
 E  '
* F  '
: G  '
L H  '
\ J  '
m q  '
} y  '
 z  '
 {  '
 ~  '
ǀ   '
؀   '
   '
   '   '   '.   '?   'R   'c   't   '   '   '   'À   'ր   '   '   '   '$   '<   'Q   'a   't   '   '   '   '   'Ԁ   '   '   '   '   '. &  'A (  'S *  'd +  'u ,  ' -  ' .  ' 3  ' 4  ' 5  ' 6  ' 7  ' 8  ' 9  ' :  '# A  '4 B  'F C  'X D  'j E  '| F  ' G  ' J  ' y  ' z  ' {  ' ~  '   '   '   '*   '9   'J   '[   'l   '   '   '   '   '   '   '   '   '   '.   '>DATA         JQPZQɞ      UU         9R2_Rq     UU         ;$1$q%     UU         {$y$y%     UU         yHzIHy     UU         zMR{SzO     UU         1(z1(I     UU         sss߀     UU         x x y     UU         E@|A@DA     UU         A A }     UU         E@DA@A     UU         } } A     UU         =A =     UU         <9x     UU         =@8A@y     UU         r9 J9 s     UU         qJ	q     UU         qJ	q     UU         qJq     UU         qJq     UU         ITjYJS     UU         4S1q     UU         {$y9$y9     UU         3%ĴGĤ4     UU         }}Q}     UU         :]R2]Rq     UU         yyP{     UU         y y@C     UU         9 Y@;     UU         q q@K     UU         I I@3     UU        
         c  
    $I/@  
    L|   
    c*SA)S  
    8#b         )I$    I)@     %QRD       G                  
       
    1(aaH  
    #(B'  
    zA   
    zA8a  
    b/   
     A  
    9 a  
    B!@  
    zaza  
    za|A	     <  	  5  	              	       
    zAA @  
    9kg@  
    1$a  
    aa  
    z`!  
    (aa  
        
         
    z`xa  
    aa  
    B'  
    > @D  
    )(
$  
        
    a  
    iYc  
    zaa  
    a      y
(PZ  
    aH  
    z```a  
     @   
    aa  
    
$H   
    a  
    0Ē  
    "   
    B     I$p  
     A    I$    	 1(@        
       z_      .a      z ^      ]a7@      z^      O!    آ      .a@      ! !>    @0!C&   
    
$  
    aB'      &L2d      aa      za^  
  an   
  v8a      `       z^  
    !>B       a      RI#      &L2d      1(a  
  a3A      !?    r%"R0        ĤJD     c&0         sKs߀     UU         qRsRB]     UU         IRz]PI     UU         sRsr     UU         KR[RK     UU         t%t     UU         K[K߀     UU         91Rs     UU         yyR{     UU         K yI9     UU         Ky	I1     UU         EĐD     UU         rrC݀     UU         rrC̀     UU         ! ! 	!     UU         91Ps     UU         91Bs     UU         qJq݀     UU         rELrEDA     UU         r]BrMPA     UU         ; 1q9     UU         9B9Ӏ     UU         EUQŰE     UU         ;R3r     UU         {R{z     UU         9P2MBq     UU         3"%c     UU         92	q݀     UU         9AH;     UU          ! !     UU         1IP3     UU         r!`r B!     UU         3P{J     UU        
      
    !$   
    @}     'I  
    ?   
      
    z       
     <BB<     p_  	    $$$      A       
     <BB<         
 V  	    G      tBC     tB    
 *     c    }EQG         8     .H     tc  	    D%$  
    GP՞  
    GPQp  
    ĔВ՞  
    @a      `` 1$a       1$a      1  1$a      f` 1$a      I  1$a      1# 1$a  
    >D$H<    z`!      ``                  1          I          `!B|      6 !B|      d!B|      !B|  
     x
(PD      f` iYc      `` zaa       zaa      1  zaa      f` zaa      I  zaa     #    أZi      `` aa       aa      1  aa      I  aa       0Q"( @       "   
    r(a      `` z_       z_      1  z_      f` z_      I  z_      1# A~ct      }$K$  
  z ^      `` z^       z^      1  z^      I  z^      !	      6 !	      d!	      !	      dba^      f` aa      `` za^       za^      1  za^      f` za^      I  za^     0 ?    
  喚qz       `` a       a      1  a      I  a     a3A    =T!     I  a3A      x I(aa      x 7@      1$a      A~ct    0$(_B 0  
  yP:       z`!       z ^      1  z`!      1  z ^        z`!        z ^      H z`!      H z ^       (aa      Hca  
     x
(PD      <'QB
3      x ?>       x               z^                  z^        
  z^ `      H         H z^      1  z`xa    1 v(q      z`xa    آ        z`xa     v(q    z`xa    v(q      1  aa      b@ a  
     BBBB~BBBB      APB      f` |AA      f` 0AA      !O       !>      |AA      0AA    B'0    ! !>A      ! !B|      aB  
    aA    @1Z      H $H             B"$D      @E$D       )8H      3          6 !B|          aB'ɀ      H          !B|  
     (   
    aB'  
     @" @  
    a
fP'       iYc       aa     BŊ)RF   
   \
(P!      H iYc      H aa       aa  
    aa`  
  aa`      x aax      x a      zaa      za^      g B
(O       g B
  
    o"D$H      m&L$       aH       `      |
"B   
   \
 !      H aH      H `        z```a       z^      1  z```a      1  z^    z```a  
  z^      H z```a      H z^     @ C     !>B       H`  @       I!B  
     @   
    !>B       f` aa      f` a      x !aax      x !a7@      aa      act      1# aa      1# a      g PB
(O       g PB
3    aa  
  
(P:      1  a      0 2dɓ&K`      0 0Q"( @     1  a3A      H 0Q"( @        B        !?        B         !?      H B       H !?      4DDD@       A(PBp  
     }FH"x  
     a  
    .a  
    yQE      y^  
    zAa      H @#  
    H @  
     x
(PD  
     yJ$H$p  
    A~a  
    ]a  
  za#	  
    A|A  
    1(AaH  
    z`r!    >@ C     O!	      $H.D1  
    RHH       YeX  
    B   
    O'  
    Z(
$      b"((@  
    aO'  
    IBĒ  
    &L2dɒ     "DɒI"G   
  aa  
    zaa      آ('   	    آ(p    nYeYeA  
  nYeYY  
    }F @    s$H"d   
    $O$D  
    zA!      zFb^  
    B    E(!0    !>B `  
    "@       O!     @ 0      4H"D#  
    4H"D  
    $aH  
    ab  
    cDA    $H  
    x       !!?  
    !8A  
    r   
  r   
  |!  
    zB   
    xA      ^  
    !>B!  
  aJ0             m      !O!  
          
 hѥJJ      

hҥRp      
HhҥRp  
    0`ɓ    80`!     a #!!!!!!  
    &N6l͛(    &F:lٳ&I!    =2dɓ&I!      H 1$a      H z_       !B|       !	      H zaa      H za^      H aa      H a      xaa      xact      aa      Haa      Haa      HHaa      ``aa      ``Haa      zA^      x1$a      xA~ct      x 1$a      xA~ct      x $"D      x "_ȑ%  
    y
O    $H<	      H z`xa    Hv(q      H )(
$       
$    zaa  
  za^ `    x aax    x a      H !8A    H |!8A    $`     
    FTT  
    B4T       @z4iRQ       z`xa    v(q  
    I%Ye     aJ0       ``!iX      ``.a@      0Ēa      H      ` $H"D      ` D"K    v(喚qF     z9e^       D !B
(@       D @B      z@1$a      z@z_       D  |       D P@	      z@        z@z^       D  @       D !      z@|AA      z@0AA       D PB
'       D PB	      z@zaa      z@za^       D P|$(@       D P@       z@aH      z@`        D (PB
'       D (PB      z@aa      z@a    z```a  
  z^     @ @    !>B    
    zAA      zFd      H!a      H a  
  aa    СB   
    (aIa      LdF.    B B  
  !?       Ja  
    a        
  z^      xzaa      xza^      xfaa      xfaax      a^  
    a      x zaa      x za^      |H @    xaS4^    b"""3H  
  (P      ,q  
  B!         BdɓuP  
   UvL2n        4d_B     yT0b      U
0B   
    AA      0D  
  y
<  
  !0 p  
    zAA@      zAA  
    yQyQE  
     D$_"Dp  
    0I$    /䒏?   
   yW!}   
    > @D     $     q$H"D 0  
  i2$H&4  
    yQDE      YxA  
       
  DDp      a^      v8a9Y      an      r.a      zA^  	  z j^    #I"D10      #I"D1      z^      zA^      s O"8      z^      z^^      s#"8      zn^  
   C    dH&4	  
  v8a7A      z _  
  RHH      0Č    a@      r.a@      r.a      ! !>      I#      B  
    0Ava  
    0A    DDDD0    `@E#H`      &L2d  
  &L2d  	  &L2d  	  ,d$H  	  $H"D      i8a      z^      o"D$7      }2d    !2dɒ@      A  
    Aa  	   @&4  
  `    	  ` `      z`       zAA      ~a      b~  
  z~    B!	    B!	  	  B    AA  
    B!              DH      (a      a)      0ĒJa      m&L2d  
  z,a      A  
   A|  	   	   
  |!8A  
  |!8Y  
    zAA@  
    z`@   
    A a  
  z        zm^      ~~      z]^      w	"<      c1      '`  
  ERQ       ?    dH"Lh   
    zAA@  
    z`@>        @4Ta     @4VE     @4XU@  
    @	!Bx    'ĉ$HC     @
*Zx     a"4hѣD  
    '  
     )(      &L ɓ%  
    a   
  Re@  
  ȑ"D     -     tal      `     a      C6     $ƀ          j     ^      *      %)      k               ,     4C     zA8      z pA      HB     !$     Q          i              	      <                         <               ,     4C     !O     B      !>B          	     
     	 i`        
 f`    
 g            #          %     |           |        B!B      ~!B      B!B      B!B      B!~      !|                	      b        "    *"        i`    	     	 "@    	 %)     f`     <     @           p      $             !     
     
 *     
 1(@    
 f`               
     
     
 0     i     	 i    
 %)     
 #     
     
     
 "@    	 2^    
 z@    
 l    
     
     
         *     <         
 @     T    q    K         !>B                       0    i        F                  %    #     1(@        z@    f`                        f`                c      0@                 m$@    
     	 i     
      
     
 *     
 l    
     	 !+    0                     	 ۈ      n     	 f`    E    ]      UU   9B*9ŀ A ! A    
 E@    
 r0    
 zL    `    *          J*Q    
              ukP    	 ">"                       
 c8    
 }        	 |c6    	 t}    	 C.    	 tc     	 c    	 xp    	     	      	 &H    	     	 OD0    	 T@    
 i  
    !       B   
     &L   
    kR!      6H    6H  
    8喚q       2eJr    ZZZP    ZZZP          zA^      z,^      zM4^        ZZZP    ZZZP    ZZZP    ZZZP    ZZZP         	 !	       1$a     ]                 aa       |AA    ZZZP       zaa    ZZZP       0Q"( @      `
";      !	!B  
    1$a  
    aa  
         
     DHA  
        
    B   
    aa  
    zaa  
    B'  
    )(
$  
     DHA  
    a  
    iYc  
      x    
    zaa  
    $H"D  
    a      ZZZP  
    B  
     @   
    "   
    !2d  
    0Ē  
    &L/   
    }0Q)      !B|      H 0Q"( @         b(d         z |      aa@      $F       "aa      fX)Y    r(a       c$PA  
    91(a      z^    DB  
  aa  
    1$RH      I#      RQ  
    AĒ  
  a;a       bJ0     x^      za^      $I$  
  zan   
  =       "$H"8             a^  
  M&L2d   
  0Ē  
  &L2d       E2d       DDDC      I  a^        aax        aax       @ &L    )(
$  
    9b(a  
    H!"Dp  
    m$@p       i" @      li" @    !2dɒ@      2d  
  C
0    zaa  
  za^0  
    r(       ~8  
     H    	  aB  
    A@     ">"   
    9%9IF`  	  e!     IIIIII7>@  	  &L-  
    fXaA      lc!  
    eA  	    iDY  
    zAa      zR1  
     å$$$BB~      J1(      .a  	    .ax  
    8!Bp  	     K0      Ē!#  	  za  
    x    @!C   
    1(aaH      :!A      \    aq     .a  
    z`!  
    a    eJ"E     YQEVC   
    zAa  
    z`!  
    zA4a      ``?>       I      
    @H"X            
    9  D  
    z```a  
    B'      !B|  
        
     xHHHNIIII  
    "Ddɓ8  
    @H"D       9(
$      ``!9eq      	0Q"(P@   
    0   
    1$  
     a  
    aa  
            """BB  
        
    %R*$  
    zAx A  
    8喚q      H!9eq  
    9(
$  
    <I$QF  
    a  
    aa  
    zaa  
    aa  
    a    
    z`!  
     @   
    "       L2d @  
    0Ē    
(PB  
    aA  
    &L2dɓ       
    @H"x  
    aYe  
     a  
    r A|A  
    ii`  
    ~a|Q      z_       a^      ~~          	  <I(P      z^      %QÊ      z^^      9eq      H 9eq      J0H      <I%a      <a      a      za^      aa  
  a        z ^       @  
  0C   
  !2d       1(a  
  
(P      aA      &L2d  
         @$H      yYy      >~      r _      yf      ~a|a      `` z^      I  z^    AAQE               9>N      z^      ! !>      !>    @0!C&        xHHNIII      "G2d  
    AAfQE       J0H      `` 9eq    RH!   
  c!   
    m2dɒ      E2d  
    !H"x  
    AAQE  
    &(P      &$  
     DMI$      P&d  
    "J]I$      R.d  
    |AI$      |d  
    FիT      FWIj    Hǡ^     H  
    &L/     &L/  
    zaa      z^  
    $E
 @      IQB      D q"DPA       D $(P     AB͛5kT@  
  SfZ*$     L0`%  
  L0`|       y`&L-      yP`ɓ&K`        `&L-        P`ɓ&K`    z` x   
  z`      $2"&     
      	 S     
     
      
 0L      


         )(
      !1    8     l     H`(ѥJK(`     H` ѥJK0A   
    CAQM      CE  
    b    
  a\           
        
    >@ @      >@     a  	   a    %R*$  
  %QÊ    zAx A  
  z^^    9(
$A  
  J0H  
    O*T      R!A  
    A"$D      GC	!  
     #$(00($"!       $(0($"!    
/СB  
  
PC  
    $O"D      'ȑ"D    "Dɓ$`  
  "Dd    9&iX  	  9	    z`!  
  z`^ `     @0 @  
   @  
    "   
  b!   
    ">       b    	"C$  
  	!	!C     """"""""?  
   """"""?    
(Q  
  
(΁  
    aI$      iA  
    .a      a  
    i|	$`      _ F    i|	$a  
  _ F0  
    B'      	2U*8qR2@      D d8qT     9(aF  
  J0a`    <H"D"E@  
  <H"HC    aaF  
  a`    
/СB@  
  
PC    a7A0  
  aC     6kVB@  
  5PC  
    $\      1$a      A~ct      I  1$a      I  z_  
    >D$H<      }$K$              z^  
    1(AaH      zA^      I  1(AaH      I  zA^      H 	2U*8qR2@      H 	2U8L      I  zAx A      I  z^^  
    !8A  
  |!8A      x !9eq      x #Yi@      I  8喚q      I  9eq      I  zaa      I  za^  
    zaa      z^      I  zaa      I  z^      H^  
    HA      | (( A     x !$0      H 0Q"(P@     I  0C       g 0Q"(P@     g P$0`       I  a7A      I  aA        
   8`      I  aYe      I  yYy      0  
  !BF     0ĒB  
  1(a   
    3      (a      _a7@      Av8a7@      #ȑ"ŋ5       F"D5  
    q CB
      q CB    q C  
  q C  
     <$$$$%%EE       <$$$$EE  
    $Obŋ      'ȑb  
    z`xa      z ^  
     @D8       @"D  
    z y       zB^    <I$QFF  
  <I%a`  
     QJJDDJJQ       QJDDJQ  
     ᒔ  
   ┘⁀  
     (HH       ~((IF    y
(PZ  
  v8a  
    a      &L2d  
    )h
$      JH     pPPP^QQ  
   pPP^QQ       
       ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  
    $H"G  
    z`    
    q$H  
    q @  
    !    9QD#@    > @    z` @  
    q$$@   
     G"D  
            @  
    2c@   
    ġaH  
    a_  
    !000  
    9QD䬑    q @  
    #Ja  
    $H"D  
    9aAD    "Dp       a  
    zaa  
    9QD#  
    }&L"D    9QD#@  
    q$x"D  
    aa    $H"<  
    z```a  
    z`    
    zazA  
    H!   
    #Zֵq   
    I8   
    zaa  
    q"CD    ZZZP    ZZZP    
 i    
      /      <         
 tj`    
 e     ZZZP      &L2d  	  a   
  i2$H  
  $H"G  	    ?q  
  i2$H    ?B  
  aa  
  $$@   
    #"D    a   
  !B    2dɍ   
     #"D    aaA  
    .a  
    a  
  $H"D  
    D$H&4  
    $H"D  
  B!   
    z!a  
    q  @      aa  
    B!   
  &L2d  
    q$ @      $H"G      a    $H"D p      6L2l  
  aa   
  v8a7A      DDG    "T2dɲ@      D @      za^    q"CD@  
    H"D    ZZZP     <         ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    !    	 0     <<<    
     
         	 #     	 JR     	 Ā    d        
 r     	 r     	 2'B      	 BB$    	 U@      V        '    d    '     .D    ha`    	 Ā    	 U    @    
 d    
 '         	 Mk     	 i                            0                   
     
                  
     
   	        
     
       ]     
     
   	    興    @    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  	    IZH  	     @  	    `Ab  	        	    QEQD  	    I   	    B   	    QEQD  	    Xaa         AA@  	    AA      >"0  	     D$H>  	    0`    I$  	    q  	    ab  	     $H"D    aA@  	    aA    eLB   	     A    RIDA   	    AA  	    &L2d  	    }QEQ    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  	    D$H"  	    D @     D    	 *     	 %)     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     UU         	?       UU        *5       UU                 UU      $ EDI       ZZZP    ZZZP    ^!  N( 0       @"B0@
0      B   
   T"   
   @!@ 
 
   0 `$ @ @     o           p7      @	$     	 V 	    	  
    D	@     	 $, 
         	 @     (((h          
 <     L              l    ZZZP    ZZZP      B  	   }     ZZZP     x  
          qI$     bI<`    I$q    19$           	^        F.     ( F  	      $ax     N     N      ?!       a     @    A
F   
    B    T        J"C       ft   	      c3H`     AY~     A$Y~  	  1$B!x     I^  	    P A~     A P   
  BH  	   (ax  
  @
H            ^  
    H $T     REF^      Aa'    pB  	      Fbp 
 	    h)
A     O)    
Y"    
Y"    	 <<            ,<    	 <     JH    <     	m     i    	      
 q    q   	     	      	 `    
     	 @    	 !          	 g     	 i    ZZZP     ]   	   D"  	   B  	   I  	   B1!x  	   1$R0  	    @@  	   "  	    ABA  	   0$ƀ  
   e")                #Ȁ     	^     		A|          _!     D AA     AA D    
 q     HB     @	<$     fКH	<$     @H	  	   A $ax  	      $ax    	^ @  
    ( F(@  	   P  $ax    	^   	   P  $ax    	^ 
    18      8     N    $DN     8    *DN    *N  
   A @       aB      a      A @     P ~      a   	      a  	   P  a  	   P  a    A  `    "( @ $     A
gB    A
F@     A    I
F@  
  $ B      A)    $@  A)  
      oH    TP       JB @      fu
         Α!     IPY~      Đ9      P     P      8ax   
   @P  
  P   
   @P  
     $T        EN      A      0 0  ? _      i$  
    E$Ta      Q    REF^   
     A  
     a  
    Pc       A@      A        @! =      "( @ (        AAFbx       H @(     Aax     Fbp       	a              FbxP        $a'      !eMJ       ?B
  
   hhi     !x      1      P ^     GF    O    D bI<`    !E!	$B     O)    @O)    ( $
F     @ bI<`    
Y"     U"$G     B )d^     $
F   	  "p    	  "p      P  
  a           F    	 B] 
   	 DG      	 S    	 L#     	  H!       	   	       UU 00        ACqR%dLGaACP @     	 v    	 i`    
      	 ~D 	        
     	     	      	      	 _       UUUT*UPAB    	 "     "            	   @ a    ( 	!     ]   	   D"  	   B  	   I  	   1,9Y   	    DH     9030  	   "  	    ABA  	   0$ƀ         J"S   	      c3J`     I^  
  xUU    87Ye 
    )Ff  	 	   .: 8     	                    0       0     0         0      0    I/  0                            @ p     3  3      ZZZP    	 ?0          <  @p    	 o(           8 `       8 `   
   a   
   a      >A  
    <2,  
   ߶d  	    ` >     p  ?@! H      p  ?@- H     36           ;D!F R     0ɂL a     
    80     `  @     p?> < 0 @     xg0  
  xg0         00`  	   B l   	     b /4         0 <          A?       ?a     ?       # 0"|0      @   @     0   0@      
   ~p`FH    	      ʟ              iH    i    
 "     
 Y    C        0     >    >     	    
!HB 	   %	"       
     
     
         
         
 B         	 *          ht].	    	 >J    ZZZP    ZZZP 
   <aB03`x        0~ `           d   /      	^ @        	^      	^ @
     F  	       (    	^ B     B 	^  
  PB D    N    Aļ @   	   a
D       
  ( oH    P@       1$B!x    P 1$B!x     P  
  P P      A  
    @A     A             p
B  
  @        Aļ Fbp      B @        <$'       A
F     1  A)       %Jޑ!    &N    &*      @CO 
*V     A A
F      xB D     KI$     u
P!    ( 8^    *T#H    I#,     bI<`     bI<`  
  C	   
  SD	     A$      X J"C       P %Jޑ!      E$QY/      %@      $        *i       $aB       Uj      Id            Y      %RH      H      H     B       B       "|D@      B            `/        Hd      IA      UjA      ,P      I      A  	     *D   
      ( J!      "I             B       F        0        `/       @       J       Z     Y      Y      PB       %RH    
 *          *     "d    	 @    	 E@    	 *0     
 "#0    
 #3    	 L$    
 i`      %RH    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  
    1$RH  
    0H #  
    cB   
    
    
    O$  
    !!@  
     )(   
     )(   
    tc!   
          1(aH  
     A       "      c      B  
    tc'  	    !     
    E(!@  
    
    
    !F1  
     
    5      Zi  
    !>B!   
    I$$I      a      b  
    QE$  
    
    bI$|A@  
    B!       "  
    !   
  b!@  
    
    
    !!   
    !   
    B  
    C  
    !O!          
 %h          
 "    
      
 @    	 !?                Ġ     R0  
  tc  	   8R(5`8      @p               ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    	 [#                | D 0l<      9 f!C`Ny      90fcCfNy0           00 @              00 @         A@ 	       A@ 	     9e9!           8 tcc0x |       p  0000`   `          0000`   `        0000`   `           @0000`   `        L x L3f2vc       !L3f2vc      @ AL3f2vc       L3f2vc      3#'      	;8:8               8x           ` `  d``        8x          <xp` D,8d                 00        !!!                     `8p                  ` `  	0     	                 30<ax 0           (      sF01`a                           8         11111        xx       a<`1`              8x              @             @        8:11         0 0 p111p       0 0 p111p          88x              X88                        ZZZP    ZZZP     	     ?  N    
 00       <b1000000000 	   xB!`0`0        r&@    hp    q    
 L    
     
     	 p.G   
 ?000    x?    ? 	   xz`0`0        ZZZP    ZZZP       ` B A0$ Gy     
           
     
 *     ZZZP    ZZZP    ZZZP         @      	;8:8                                          ` ` 0       11111	      8x         3K(3C0          p110` <   <    HD    HC        {     <Nr<    sL` 	   q @ X8      <3.<     a	p 		p    C>hXx    <| #3      ;F$F	 C  
 
     y8     8dba 8H      tb          @L 0`v       ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP                      |><0000                   xx      ZZZP    	 2^      d0     i`i`    ZZZP      @CGGc, l0|        n@fFfOfOfEfAfaf3f "           `<0<00 `?  |         ?;8O<          C CC8cl!0         S SS8SlI($    @<.gy<f`;p`    @   3    ZZZP    ZZZP     0Ç80	      @ 6g60lbp     ZZZP    ZZZP     ``Ã`1      @lpg`0       ` `d<b0b<nl       @31Ly0c~0      >}Ŏ8afa      08 8      <@(Ǵ`3         0        8h `      FLLO$f, ,0d      f ff<f0f<f~  "     6~99c`0           `p0`            `#0:0       C CC8cl!0        `p0`     aYp3 `          ACCCc!0    < ǉ &<~0`        x````0    `c8 @         ?<8x 8      ZZZP    0?|v 0 `        8xdbbn0l?` `          x x 8        BGGFc 0     x8       0000000  0        xx8    ZZZP       >>cfAA@|<    ZZZP    ZZZP    ZZZP    p<xc    0 ` @     x x 8      8f<        `<0<00 `?  |    ZZZP    ZZZP            <0 ?    
  5c0      |  0 `      ?A@            b         q    ZZZP    ZZZP  	   !8     Bp    ZZZP    ZZZP  
    0`@@@X8       p  0`@@@X8          8\`8    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    p    ZZZP    ZZZP    ZZZP    ZZZP      CC8cl#1            0x80      ZZZP      x     @<.gy<f`;sf     |y͞|y͞    |] 
   5     ZZZP    ZZZP 
     <a 	     @   
      8p `    F8Î84@b     &cx    f10a     hʍs@60a 	   <?0ls`      ?`c0      ` < <4#>d         xx x 8         xx8 @ 	    |0    0 ``| 	     @@`  	   8/&,       |>co     @    0<řfx `  
   `<?  	   pB     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     \          UP    ZZZP  	     8d0     	    ? $$d93 #          < B B @ DDBAB D BA       x /"@	 !@          ?            ?     ZZZP    ZZZP    ZZZP    ZZZP                          8d0        ZZZP    ZZZP             ?          H H 8d0      
        ` `   
      0    
          	  	    		!0   	        @  	              	        !!  	        
     0@&   @  	             	     @ @     
       @    
          p         	
   
      `P     
        0 0   
     00    
         0 ?     
     p   	      @      ZZZP  
     p   
           !   
     p   
       0    
        
        
           ZZZP  	      @
 @  
       @
 L     ZZZP  	        0    
          ZZZP  
          
           ZZZP    ZZZP        ZZZP     l@@l      xB ! p@       x            ZZZP    ZZZP    ZZZP    ZZZP    
     
 '    ZZZP    ZZZP    
     
 H        ZZZP    ZZZP    ZZZP        ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     p                 	              @     ZZZP           ! c`     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP 
 	   D
`   
    pt  	   | 	   >  '   
    E
#Dp  
    @ @@8 	     ?    
    <Ba0@ 
 
   ? @  
    #4 @ @     z       
                  ?       `%ЩO        ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     \              ZZZP      @| D@@      ""	"q "*      tdp 	    A.D"ȄD      <BB"     < 	ȂH$HBB%      @(
(B      B(!d0          @| D@@    ZZZP       <$G$8P         @| D@@           ""	"q "*     ZZZP         ""	"q "*        8  > ""	"q "*      F^     @ ( 
    a$@$@ 	    rA F$2* 	    b0!p     @G P 	    sBa0,
     $IFH(Ā 	    bI 
    a$@<@     pBdB.     'F.     
N 	    phL%|    
AJI1 ,@ @      <DE" 	    bIDa
     t!B.     `dt         ZZZP 
    A(B @     H`p  0      " B      8DDH|D P 	     
 	    Da
     #    ZZZP 	    2! " 
    "H$q @    ZZZP     tt 
    a$I!0D     Ĥt     >8B!( 	    D!I$e~    ZZZP    ZZZP         t .     I*      dB(   
  bIAAB        r&@    xp    hhp     0    ZZZP    
    
 
    
   AAB    ZZZP   
   AAB   	    (         ZZZP    ZZZP      `  Bx A	0d"hp! x     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     @RPRP     B(!d0  p    l 
   l$H    ZZZP    ZZZP 
 	   D
`   
    pt  	   |  	 	     !	B  
 
    D AD 
    A(B @ 
   8 ?  
 
    b$`A  
   A @Bx      A@>    ZZZP    0 @ D9q       ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     \     U      VP    ZZZP     l2FH D}     l,dPu 
    (ZQ 
    'ZQ 
    (	S$H     AJDQ 	    1 KE$a     r#    ZZZP    ZZZP     1aDC 
    (y$     ZZZP    ZZZP     M&H      )%bBDHq      
 0      9QqI1     9EqI1 	    PjF&     )dD     <BrH0 	    +EPP     <BJJ2 	    R0A0d 
    MM     9EpH0     8(  	    00ZJip 	 
    00
IPp  	    TqB 
    (` 	    0B.} 
    (	`     0a 	    > 0(h    ZZZP 	    <`r
}     9dYaC 	    07J!t 
    ()Q(  	   "@p       "`t}     <BrJ1    ZZZP     ?
 bRI     ?
 dBH    ZZZP 	    07Jt 	    <Xr"a 	    <dsJ} 
    >PX^d 
   (	` 0    ZZZP    ZZZP      	      	    	    @`   	 
  .I     z{    a#    JX^    A	    ZZZP    ZZZP  	    h`        @`    @	 $ `     ZZZP    ZZZP  	    ` `  @2`       x X
 ( 
@)         ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    
      zB      ZZZP    ZZZP    ZZZP    ZZZP 	   00ZJip   	   00
IPp     ZZZP      HA3BY 
 	   H2$ @  
  r#    ABi/    AB     ZZZP    ZZZP 
 	   D
`   
    <B@   
    <By0@ 
    ;FYD  
    B$$DDD8 
 	   $E(   
    <B1	r0@  
    <Br0@  
    @      s       b 
  	    OHa}    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     U       	 ``i	    ZZZP 
    Idi_%     BD&AGWP! 
 
   >HISR 
    Zք      xH1 @       p&~ՠ8*     ZZZP    ZZZP    ZZZP     @GHG    @GHG       }E !    ZZZP    ?
 ;)eK&x    ?
 ;)eK&zB?     < _ͪի<        D_    ZZZP    ZZZP    ZZZP     2xșa 
    ADG    ZZZP  	   }E !    ZZZP     '䈐ʢ)ɀ? 	    @     ZZZP    ZZZP    ZZZP      ;DHʨDH      D_ O      ZZZP    ZZZP    ZZZP     D"@ O       =!IIRJ     c    ZZZP    ZZZP    ZZZP      	    d2      
   ;EDQE '      8H#$d     91 N"IHD 	   Db1F#G     8("d?  	    Db#F"1pp  
    8$EX%)%~       ;$IIIF     8l&
L)2Re$        ZZZP    ZZZP    ZZZP    ZZZP     )JR   
  tb!B    	 tl         f~    ZZZP    ZZZP    ZZZP      1(aYY      2mY& 
     =veY%    ZZZP      0Hd      0HH0      0H*J䪔dJ         ZZZP    ZZZP     0@%)a&'     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     *JʪJ    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     1(a      D_     p@"            ȈDB"     '"!DB:0
      D@'     @GHG  	   DP*	>      H 	@	 	     1F#b.     o"DH"$D    @" h @<     8@"$?      pDB"D"!      ?@:RTURXTԀ@?    y	p       @1&^YUY'  
     >A䢔c>       y
^	?     @<K@ DH        ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     *H     i  	   V@    ZZZP     1K$٘ P     0I" ! 	 
    wDb  @     	 <EK  
     @E#  
     @`"E@       dDD$&I- 
    l$ B    ZZZP 
       \ 
 	   		 @bg  
    w"( \    ZZZP 	    `H$" 	    0$	D] 
    _H @     H`D 
 	   `$"Z      F1     	&a	`n 	    bI'"  
     4  !'!       4  !'!  	    bL"      $RJII)t  
 
    l$(   
     $+ `D'x     (2`      B$@ D Ȥ       B$@ D Ȥ      1JK       
 l0  	   )0d     (0d  	   (0d 
     @`d    ZZZP 
       \ 
       \      a"@!%!       hÉHB)0        ` 	 	f       @``		f     (0`     1K(ߘ P     1  !       $@     ZZZP 
     @ <pf&p     <2q$       p  N
b3  
    @   \       E `    ZZZP    ZZZP    ZZZP     `         
 2O    	 BfGx     a`     %     a[`     PA*    ZZZP    
 `    	              @    ZZZP 
   
 ߈    	  `	o
 @ 
   
     	 |     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     d    @    ZZZP      P 4  !'! 	    $X@@@".    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP      I>$$D[`     lJY(@!  	   lI@     l-    ZZZP    ZZZP     1(a     <BB$           zN^     BB<BB< 	     F@`HE     p  @     8Dq|     ! !@A     ?  ~      ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  
    y
(O`          c!     &L@ 
         8@  	   ``` 
    0$    ZZZP    ZZZP     i     Vj    ZZZP     1K$ P     0'" P 	 
    wDb  @        cBgB#      F*I#      FRFIq%RJb  
     y$"hD!Z` 
    l$ B    ZZZP     | 0 @*!  	   @   DQx     8R@!    ZZZP     `	 @(!  
   0 `	 @(!     B/bI@(!  
   D|     8D(!J 
    " "       ?   @D'       g遐b @(!  
     0 X=!	qC        0 X=!	p"C  
    c$)@     8 9(bLI1u  
 
    m$      @( #0  	   Pd|  	      *Q1  
      *q5     1ĢA) 	 
     6$   
   R`|   	   P`l  
   P`|  
 
    A    ZZZP  
   ? @J"!     ? @J"!      a"@!%!      cB@!%!   
     	P&8K  	     (D&1Iq  	   P`|     1K)R 
    I`       0	@H     ZZZP  	    `*Qx 
 
   !  
    QXJ3@ 
 
    C `` 	 
    #I     ZZZP    ZZZP         ^     J     	 ir 	    `H
 @     B`  	 
   K,     wp   	  bH`    ZZZP 
   
      $ O   P @ @     $ O      p    ZZZP      $ O   	   0      0/  	   0    
 Aߞ    	     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     V"     wp    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     1K) Q    ZZZP  
     @ @bqqfb     c?)N" " D p 	   lI 0    lN
     ZZZP    ZZZP     1(a     <BB$     D @ 
    x%	!r"I     bB<BB<      g	>DG  
    |	  @     $p 
 
    @#$(
A     ?  ~      ZZZP          qF(    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     i  	   V@    ZZZP      0'h*G&  
     2!M|  >    1JC(e! / ?     tTUb\&@        y*K/     qUVP`7 	    cJx|     1JS*eK&    ZZZP  
     \KX%(   
    
 Q	  
      sUUJ       ZZZP 
    D
|(     8dI!A     8R%a+X &ɀ      p     <
`CFD,     0Ap      WbE@     1ĢAAN        BB      !J0_     }")"`G      <$F)0$PI l     1S+
^RʖT     } _      zax     1$	 l     bRVJY*$Đl     3dɄIIJ     3	b     !!!     >AN     $CQ     ;CQ$    ZZZP       p      q     3ɄIIO     >A^ 
    ?(Fd     F(	L#<     <b
B(C` 	    > 0     0) ` 
 
    ?( @ 	    Db)#B      <!     !"AxIH      SW9_      6Hb#F"I        $K    ZZZP    ZZZP    ZZZP      ("      i     i     iq     iD  
  iD   
 ! A^ 	    @      ZZZP  	    tc֩      i莖      mM    ZZZP  	    p		H       `		`  	    p
 H     
 
 J^    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     Uj    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  
    0Ē@#@$@#    1S+
^RʖT     {ܞT`    {ܞTp<    ZZZP    ZZZP     zax  
    BA     <      6H"!DB"	     0>I 
    ?(Id(    61%(b!"R!  @      8L 8 	     b1       bJF  
  	 			    	   ;B@D      7	"XbB)  
    @`  
      @X'd      ԥ	aO)2     ZZZP    ZZZP    ZZZP     7""B)       `lԑD%Y*UJH      ԥ	aL)(  	     '	H      F())L`      %	aL))$       D )L    ZZZP    ZZZP     i  	   i`    ZZZP 
   P5 D @     J0 PI        J(!B 0    JH'A 0 	    > 2 	    @TBRA  	    	 O     XIP_&h  	    a@
&{!'Iq      B  w-b  	   8qRHg9@  	    q6)@F? 	    	C K⁀PG     )(2A        $   dp񄁳p|  	    冚 (B=      @9a3
x  
     @ljRBw     ZZZP    ZZZP    ZZZP      `#7r  	   l       '
8Dq  
    a$   
   B`DGp     8qR(Hg9&A 	 
   |AAA        e|
        @P    	     q@>0``ɶl     9X@fm  @      88H1     0       vEGBVb& 	    ~@.|      @ 
0  
   `DGp      C
0  
      x0ƪNl   
   q"TDGp      `#7      B0    $z  
   ? `DGp  	     I BPI    ZZZP    8 0     0(m0h       ,|      l     `䈂G  	   VS  	   VP	2 	    (E     A    ZZZP     >"rDc !    ZZZP    ZZZP     ?
0@D|      'Ă%D 
 	   1d?  
    a$ D     `䈂wG     6A['     ; c     ZZZP    ZZZP    ZZZP     舀    ZZZP    ZZZP    ZZZP    ZZZP     i  
    JI$      BDC 	   
 @`(  	   
 Ba(` 	   `_    ZZZP 	   `^`    ZZZP  	 	   0!Ć      J        	  @           J$      @  		        	  @		      @
	     H    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP   
  J[      H      
IUQ*EX     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP      zQEQ      S.      QEN      zma      jXma      QEv            zM4QF      r %  	    t1p  	    EQ8      s,Xw  	  fUe]  	  zQE,  	  zQEw4  
  |a      QEQ      SV/^w      e)TR      zm^a      jXm^a      zQEY      VQEQ      |<&      $)      S.  	    s1p      ӦL2d  	    N2dl      ӥL2d  	    N2dl      zQEq      QEv      Y^      |<c  	  zQEY      zMMY  	  zQEq      tBc  	    a      ŉ  	    #I2d      4eQ  	    V2dl      zq  	    ,XB      B!         	       tB!       DA@    	 z    	 ~0    	 vp    	 v0                ZZZP    ZZZP    ZZZP    ZZZP    UUUW             )K{      }@0      r* 0      ؠ 0  
  tB!@  
  ېAA@    	 ~          |     QW0     ]               	 t      zm      za      zmt  	    	kax      jYe@  	    i|  	    4i|      bA^  	    mYu      թn  	    ZI2      b      ABz0`    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     QEq     zBjQ    ZZZP     zYY    ZZZP    ZZZP    29\     zMLA    ZZZP    z!	@    ZZZP    ZZZP     fY^    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     zaQ     JaQ    QEY@      J*T    ZZZP     FQEn     Fa^     AFa^  	    fl      0`&K`      CE2d      4P&K`    ZZZP     EQEn     AfQ^     z^    ZZZP     zAR    ZZZP     zA^    ZZZP    ZZZP     v(b      IIIIII1    ZZZP     zct     fh^    B           Ë     iQ       a!@     T     %     T                 ZZZP     }     f`    u# '     ZZZP    ZZZP          )K{     bdL       r*         @0    ZZZP    ښQA!     ZZZP          ʸ     QW0     ]          	 U     ZZZP    ZZZP     za     zmt     ta{  
   bEQF  	   i|  	   נi|  
   Ri`  
  QEA  
  Za1JY     fYeT    ZZZP    ZZZP  	    UUUUUU&  	    UUUUU].    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  
   15ir     ")N@       k%Ѐ4H``0H       k%Ѐ|dH      1N1     N     1N1       9      f`6!   	   zB9      u0QF    	     	       UT      Ҕ)JR      UT      T       0AA     RKX @               i`     灥	     p0 A      "$"J$JD	W)`%          %``$     P     i     EV      PUj               KI(     9a     2      zB9@     z'     $     E#     Br$G      O   	   A     8$       Y      yC      y!AB     $4       E:Ȁ     Rs$W@     O   	   A!!     uSM3@     :4    	   Ng     UQ     03    i    
 g*             J%S        QB4
       A          ""!     4DDH     ~W(P @     &l0@     'M @      'M'NbD     <     | D$G      | C2[      <    ZZZP     qq @     80             x	0 @      x	NbD            @     G     <@@      <GNbD     CLA     f`@     f/`@     >`@      >gNbD     %l@  	     	   l  	   >B    >B>s @     c&x'I     8e*sP     0@     q$     &L          sH`@     D$@     ((      ENP`@     <s @     &9l@    ~W(P.Rz"      !@@    R @      > 1      ZZZP    ZZZP    ZZZP    ZZZP     j                     N    ~BN     @   C               @      F         2	        `@      D      (      E     U   	   i`     :`    8             b+    
 RK    2H    q 
    	 DI`          PAO     m$      V[      	ԩK    ZZZP    ZZZP    ZZZP    ZZZP     YA     &l      'Ȑ  	  ''1"     <       |"s     |!      <@    ZZZP      qq       80       /"       x     x@     <C        @            <  @    <#'1     &d     f0      O'0      >0   	  >3'1"     k0      x(LD       |%-     8    8 Ĉ    .    8e9@            qA@@    C.$          sI`@    $@    Ob      .0       <s @      &6 @  	  ~W(W)@    c&x      &KP`@          ZZZP               8G      tb     8RJ     8MY*   
   PAH>    5@ɔTQ*    TJAQ*@     `  3&UQE
DLk8       5@$$ D         (Ag(	     @a D SI  C      @ad$!dD	C!$      @	GPH``đ	!HC     ZZZP     %`     	    `D  	   > "<      zB91   	           `"`     B<    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP      =C     <BB<     <BB$      `HB!@     <O      <BB<      1P@Ā 	    <!!PH  
     8Q&QAD 	    pA LG`?     qȂA  	     8" !`> p      8΁e     pȰ| 
    p"I H<      7bDC
PH>       1JB       1JB`     y

`     87Q 	          BB<     L1Q     Ev(  
    c% !d&0     E       
B` 	    <!(F       1
B`     8(  
    c$ !e&0      JB`      8ơ|      p$CPI     ;B   	   w"  "$HA      8QA @ 	    pD DC D`? 	    pD*@C?     <O      <BB<       8(0` Ȣ9 #        k6k2   	  r(AAA     i`    
 i    	 tk     p    )p     4    	 !     uwW     	 H    	 ty&     
 U    	 U      UP    ]     
 i  
  R      `             "    '     c!!B2  	    6 0
     y0      B.  	   9bq  	   r(8!@     uj.     ta*N.     tB"!&     82U     tgIB.               1'!      	rJ


j|  	    !Ve"f@       0@ @)W
Up     8(      ((      Q0Q     Q0Q     9     8Dl      .          r/!x    qĖ    y
O$H 	   xbB!     <BB<    I
O@R    X    !     $     8)N
     @    i興     $     zA    I
(O@x     $P  
   UI<     ĩ     $     T     T     r"p     ;b$#	HE$    D D      ȈB       EU    	 ta     
 Q    	 Tc      <BB     A=B<     <BE      8R!0      8R!0     8B!22         1ĢG0     qD\p     FB}\p    FB}\p       EFG      pȂA|q    8, C    h    B!      tX&E    	 tQ     	 U    U  	  UY@      U      E\U     U    	  U         8(   	  Ut@     za     eB     B      D:1     CQIf     P      y
@      !B          z^J@    ZZZP    ZZZP    ZZZP    ZZZP     E!C 	    A CF	DA `        @     i$I      @  
     HDp  
    b!@  
      @B     "Dp  
     0DdHP`      !B  
    -m@  
   @H"8        @ŉ      ~1b  
     q$H"E       ĉ$H"Dp      QE3A@  
      P2dH  
    !	F1    a @  
     q$H"F  
     }&L   
    !	O!   
    zaa  
    Lcm@  
    lc1  
    !1@    9`!D  
    A~Yd    a<H   
  zP @    c     B
D   
     "@  
    "        ȁA'   
    lc!@  
     E   
     $HK    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP        
   )B:1  	  dGF1p  	  m&L  	  tb1p  	  tb1p  
   bI$`QD     m&L@     tc   	  B1p  	  UVP  
   tb1  
   |!z1     m&L@  
    1  	  edQ8  
   <ɂ  
   !J1  	  ^ax  	  ؒAQ8  	  m&L@@<    B)C  	  m&LP  8  	  Lc1p  
   ؒAQD  
   dLz1  	  cF1p  
   B1    nI ȢJ0     AgDQD  
   !z1  
  !>C1  
   L1  
   m1     tb  	  DA1p     \  
   r(	    AGV!   	  tB""p  	  cB1p  	  r(pR0     tc     <`     |!    ZZZP    ZZZP    ZZZP           D                $N                    W^     ! 	    "     tc      !      $T     8CX@                $$$     9#                                               pp                A                    HH     >DdD     DO$\     L|*     DO$D     ~H/!%J     H      耉           	    ?p           #     "@)     #@)     #     #D     "$D     "\<T     "!     !D     #(      E@     #     #@     #((     !)( 
     @ 
    	AP@     ,     $( 	    
/     s      q"$D     qq     q1&'ė     pHHq     pDE"E?     qF(     s
"D"     /H@     q"'ć     s*%D>     tc      ! 	    ,     *b     0p     R0     p P     ` Q( 	      
    8  60p     Q 
    Ox!     00Ē0     |B>     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP                       	  $H   	  $y$@   	  $   	  $y'@      ?      @  #       H@ '  
     @D     	 H?       
 
    @ @A  
    H@ '"	Ȃ@ 
 
    @ @AD     D       
      @ @ @ @            p(?  	    @   #@          @         @$  	       D  
        _   
 	               8 @  
       p     	     @   G   
    H@$ @  
    H@$ @           ?         @ HD      )/?  	     @ H?             @          	       H@$   	       G'      (@
 P@: P     ?   
       @ $	    
      @  !   	    (@
 PH] (       @  $!'       (@
 PH] (@
     D?   	      @ B!       ?       ?           G    	  I'I    	  II   	        @B  
         _                 """           !      	   	     @ 	B 
    !    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP        	     D" 
     AJ@       	       
     #2              	     |0 	     }0x 	     }x 
     O
@ 	     =x 
     į*
 
     2              
     $OJ@ 	     .      *b      tc        AD@ 	                       $$$      9#       A>	 O     <DDD                  @      "HA                        !$
                     ?            RHa!      )$$z       )$$z               ?~0      DO D      (A            _9/                         "D      "$J       DE"E       "H}      _9/                          _9/         
     'A@      #@)      #      "$D 	     
/      s       sDb#      p葉p      qp      !      p"D"      pDE"E?      Q      $<B<      8       8N>      8N"      8N>      9#    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP      |8      003`8       f|<03?      g<o`      g<oh 	     n3c      g100        xacፆ0> p       0`Ǐ0      0 <10c       0 <10      0`0      0 <10      <>gc      0 0|~Ƽn`    0 <10  
      0ٶ<3       0   `3<30       0   `3? 
      0ٶ0       `  ̆g' 
     0 ٶ<3 
      0ٶ      0   `  08p     ?DY      ?F,3&|xx      ?Q!D          ?Qq   @      ?Q!D         (s 0       (s       ?E
(}    ? 
 	   L<3l<   	   Ml3<f><       ̃330÷ 0  ? 
     ̳<3w 0      ̌  
     ̳<30  
     <3wp    ̃330÷ 0   08p      8p? 
     p` 	           08  
      `8 9      ?~ 
     ?<{ 0 ?    p0p        xǏ0       >a1?xc        >a10       x0 
     1c1g      ``xǏ       xǃ  
   1c`0 	     c1`      >0c?c63c0      >0c0c0c6? 	     c`      >0c0c>c6> 	     ?c1f0 	     c0      c`0 
      ~l< 0 
      ~l<0 
      ~l< ? 
      ~l< 
      ~l<> 
     00<6~ 0 
     `0<6~ 0 
   `0<6~       0͙c7     ZZZP        0 ͙3~? 0 `  
    ~l< 0?` 
    ~l< 3?        0l3 0      ZZZP    ZZZP 
     a0<6~ 0 
     a0<6~ 3 
     a0<6~ ? 
     a0<6~ 
     a~l<>      ` `3f  
     `,3͟0    ZZZP      a0͙c7     ZZZP      a~ 0 `36f~0 `  
   a0<6~ 0?` 
   a0<6~ 3?       a <3`~ 0      ZZZP    ZZZP      8<xǏ      8ca3       8ca10      8<x      8ca10       10ca1      8<x  
   8c1``~0 	     c1`       >0c?c63c0       >0c0c0c6? 	     c1`       >0c0c>c6>      0  8ol` 	     c1      c`0       ` `0` ` `       ` `0`f `       ` `0` ``~       ` `0`        ` `0` |`|       `c ` `      `0` ` `     ` `0` ` `      `gcc ` `      `gcc ~``      `gcc ``~      `gcc       `gcc |`|      a?c        0i`c ` `    `gcc ` `              0 ?00 0        0 0 00?      00        0 0 >0>      <o                  `kp      ZZZP       0 ?  3 00     0~  `0      0 0 03       ```       ZZZP    ZZZP      1c      f       ` 	     x8      <8y      0      n 00  	   x8 
     a0 0`      a1  `       a1         00 |  
     a0 0l 
     a`>`       17 |     00 | ~`      `70      `<ppc       `<pp      `ǌ0      `<pp      wǏ0      `Ǐ  	     c?c08f3 	     g?3c1`      p?31`      p?01~ 	     g?3c`      p?01| 	     g76c1` 	     g?3c0       0p0ǘc0       `?0fn3    ZZZP      0<30?30     11~0    p?0f       c?1`3    ZZZP    ZZZP      `ca10         ` ?f1c          ` 0`1c      `c`0        ` 0`1c      c030303      `ca0     ZZZP        ~  `~kn```    ZZZP        ~       3` 0      ` 0` 0`         ~ c``````    ZZZP    ZZZP     ?<Ǚs  	     ?3;q       ?<ݟ`f      ?<ݟ`0       ?<ݟ`f      ?3y{p?      ?<ݟ`0       ;}3ٌw` `         c`      0003`       >00 3 	     >1l3      >003      ~`      <f~<p    ZZZP      Ǐ<Ǐ0      ca??xc       ca?0      Ǐ?0      ca?0 
     p=cc1c      Ǐ?ǃ  
   1c?c`0      pٱ      pͶl3~?`3       pͶl3~0f3      pٱ      pͶl3~0φf3       pͶl3f0       pٱ    pٱ      8<x<0`      8lx0?30 
     8c13      8<y88 
     8c173x    06sσ`       8cg;0         6?c?  ` 
     !f `      b`| ?0`      3``      >bf|0      1`       6` `` 	     Fc`0     3``0      8|`0       b`| ?0`       p c      >bf|0       >A> 0{ 
     ?0 	     #1a0      p a0 
     x3C0x a       <0x?~00       30 ?a3 
     x30f      33a      331a 
     x30`      <0x` p      }0`0      | `c0  
     |1`00      y0`y  
     |1`00 	     f`0       Cx0`     Cx7       |` ` ~      ZZZP      |` `l0       y0g 
   |1`0`       |l0`       ZZZP    ZZZP      ~ |       >a00  
     1` ?      ~ <C<p 
     1`> 	     ? `      Cx0` 	   ?f0 	 
    >5<O'  
    >Xd&y0ɆL   
    >Xd&0ɞO 	     >5<O&`      >Xd&0L|      ?3f<0   	     >5<O'`0     >kɌɀ~0  
     #F<m[ʳ|  
     ?b`0?38ڴʲ  
     ?b`0000ڰʳ      #03J̫> 0@  
     ?b`?970ڼʲ       c9'0 @>       CF3Jq@>     #03J̫> 0 ~      <ff<~      f`<?<0      f`<0<?      <f<~      f`<><>       `~ca      <f<~     ``x0`0  
    <ff<~  
    f`<?<0  
    f`<0<?      <ff<~  
    39xx  
    39`      <ff<~    398 `      c`      003`        ~00 0 00?       ~       ~00 0 >0>      ~`      <f~<p      a9< `  
      `00_ 	   #  
      `01 
   @020       @``|    >gCl 
     ? 0c 
   @02a 
     a3 0 0 
     a3 ? 0 
     a3 0 ? 
     a3 0  
     a3 0> 
     a30 0 
     a3`0  
   a3 0 0p 
   00;    pqQ   @ @      `g `xً?    ZZZP    ZZZP    ZZZP    ZZZP      
 
   "H1 L           0 0         	          0?        c   
     
    	   c  	   c1|    ~ ~f```` ~    ~ <ffff< ~ 	   c 	   0 	   0 
   m 0`    ~  ff~fd8 ~    ~  ~ 
    -3  
    mfٶ9 
   mc`    ~ >f> ~ 
   m `    ~ >kn`f> ~    o ?6 `0 	   ``8     ~ <f|`000 ~    7 ?a 0    ZZZP    ZZZP    ZZZP      ?Dş7       ?,</q @ @       ?E
(}  `        ?)X|x  `     
    8cq0  
    8lc`` 	   8>1f3   
     >0cQ0c   
    @Q`lǏ0  
    ,3 xǇ 
   `<uy `  
   >3 \0`0      af`k0       af``|a0  
   a3 0`       a k` `                  <      <             0 0       0;             @  	    3<0    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  
    $QEQK  
    O$D  
    $@   
    8 $4hѫX  
    a"D3H  	    ! B  
    y
B  
    8ia  
    U}C  
    a3A  
    1$a  
    > @D  
        
     J(  
    yyEA   
    D'ȑ  
    	<#  
         
    0"D-ٴ  
    e  
    QDr(  
    zi    
    z`ia  
    a  
    s,A  
    0(
(p  
    fYeye  
    aa  
    p"a  
    
(I  
    zaa  
    A'Dx  
    z`xa  
    a"D"B       a@  
    B   
    9A  
    a"DSH  
    $@  
    aYe  
    JKRI$  
    Ε"E
(P@  
    5hѢ  
    z z#  
    $O"Dp  
    $H N鳘  
    b/   
    AQG  
    8 @wtp  
    7x!B  
    (b"p  
    AD  
    V6r  
    y
|B  
    @"8  
     AE  
     AE  
    
$H   
    z```a  
    m'	$HP@  
    0DUjժ  
    1( !  
     !  
    z`!  
    D$0  
    Ijͳ	$H`  
    a    
    y
<B  
    D"
0@      szD   
    )(
$  
    #ȡBDp  
    a"TX"ʐ  
    qd'D  
    EV:,H٫  
    zya  
    EV0`Dp  
    I0q  
    z8a  
    $7dTP  
    9Qyqe`  
    8CFe`      z`a@  
    a"TX.H  
    aa    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP      $E
 @      P@
((?       AB"E        
((?      
$         ")(       I  ")(       
$       
$       1IFI0@       RQE      $E*T @      $E
 @       EJ"E       AR"E        *T((?        
((?  	    `*$   	   (`      )Q$P      @$őC       A  ƙ")(   	   ,"B  	   0X
      ad       AHP`@       RQE     &K`     T@     "     H     !          8     ,     i     I$          ]     
      !>B      @      ("(P       H
D      (pHJ0       @RQE      $E
 @      P@
((0@       AB"E        
((0@      !         @!B       I  @!B       I!       	!       !B @       B      $E*T @      $E
 @       EJ"E       AR"E        *T((0@        
((0@  	     $(    	          !AA      @A   	   $  	    (      A$P       A@@@@      I B     HB          ِ      0`      PAP`0@      80`       P`0@      0  @3       !       $H!       0$(P3      0 (@3      a  @`8        s@      "D4h"Dp      $Hbĉ      D4H"D      q$HbD        $HѢD$@       @"E$H       80@       @@B#       @ G       @
         A
 8      80`@@       qP@        A        E
(P 8     :!       ,H"D      s,H"D       @        @      tc!B      ">!@      tcB       ! >!@      B\      @!      P 	袉      !Cь\      B      D@      q$W       D @      q$_0 @        $h @        @"       0g"Dp       @^ĉ        @<#       @
$H        @/"Dp      |ĉ       @x#        @$H        @
/Q"Dp     `     `      s,G       s,O @       
(@D      <D      tc!B      "0!@      tcB       ! 0!@      B1\      @!c      P (      !B\      B#      D @      q$P       D @      q$X0 @        $h @        @"       0`"Dp       @Bĉ        @#       @
$H        @("Dp      `ĉ       @@#        @$H        @
(Q"Dp     `     `      B!B      "B!@      !B       !B!@      B!~      @!B      P        !B>      B!|      > @       P       >@
 @      0 @       (P @        @        0`       @B        @'       @
 @        @( @      `       @@        @        @
(P @          4C          i$  
    zAB      $H!  
    P@$H      "D   	     $H`      $H?  	     a"D  	    $ a"D      a"D  	    @	$H~      (P      TB       PB      c&D  	     
  	    @2$H|  	     	$H~     AB     
#     /      !  
    P@ @         	      @`      ?  	     ` @  	    $ ` @      a  	    @ @~              @       @       {   	      	     @0 @@      /       @   	    ( @|  	            @      C  	      	     @0 @|     A     <<0            !!B      P         Br       @"!@      B       @!:!@      P 9        !pAB      B       @	      '       G @       Q< @         `8@        @       ! @       P@         `         @8        @
      <        @(P8 @          @        @
!A     bH     z     $           b     $     I1         @0A$ @@ @         @$ @"         A!0" x"        A!0" @"      a"D	$0      $HH!        a"D"D       /@        ` @}       a0        @|!      PH
      AB$H(P@      (X(P@      PB$HPA        PbDPA       @AB!B       3 @@       @`          @@       @ s       @      AB@               @ @r @      A A       !CA@      B @                A  @        A @      A      $A       !          !B               ?B          (7 @      `@        @A@               7       @`           @@@@@@       @        @       B         @A         @A        @
      H     RP     !>B            $G       D      D   	     "D      q$H       @"G      r       B"!@      !pA      :!!B      tB8B      B       qH @        !: @      q           b       c%$E
 @      P@
(),@       AB"e%        
(),@      AA@@@AA        

        Q                  
        !     U@      c'0`      &<0`      80`%      80`&0       P`,@       P`y1      a1  @3       	!       e2  @`8        c)@       a#P@        A      3e       &L2`      82dɓ&H      0 >@3      a @`8     ;      VZ`      82jիV      0!"D3      ay$'@`8      q$G
       D       $H @       (@D       @B$H        "Dp       @ x#     F      aa@            (0"H @         aE<  @         0"H @         `0 @x D          0H	  <"      bA   D        @ 1  x"     iR@      tcLb      tcRb      R\      e*Sь\      q$@
       D      (@D       "Dp        )$/BH  @          ` :@!$    @          /BH  @          ` @! A " D           / B@         ` B@ $  " D           A	H  @       a"CA      c)R @       zedA@      zi        Ae       	      "D      ~$0       0"D      ~$?     ~
      	 0  	     P @`    ?     ` @    a    @ @~      A@      A>       @@@@G@       @>@       @       @       CA        @>       G       1A       @       '_      ?      :@      !       B~      !C>      B!B      f        AYY       &@      YYA@       @        @*       H       @      .bŊ      ѣ       ,W @      F @       '
 @       AB"E      (!       !       *!       !RE @      $E
 @       AB"E      Ia       ia       Ia       !J$ @      %RG @       AÇ*U&H      !       K!       k!       !C @      %G @       AÇ*}&H      B_0        @@B_,A        @@@_A       aD      aa#       1(aa      (aa/       (aa/       (aa/       =aa      ;aa#       1(aa8@      (QDQ/       (QTQ/        
P      =bH      a#       1(aa@       H$H"K       HJ"K       
PB       >$H"D     !	      &L2dɒ      (L2dɓ&H       AA/        A'A/       `AgAn       =        &L2dɒ      (L2dɓ'      (aa/       (aa/        ?      =aa      2dɒ      (L2dɻH      (QGQ/       (QWQ/        
֡      =b            a#       1(aA@                            a      $ɒ      (L @       AA#        A$A#        /      1        ia#       1(aeV@  	     Afbp  	     Ifbp  	     M~bp  	    9a<  
      &R  
     Bx  
    <)AA       ɚC      $ɚS      &[      ɘ      8(̘"N      D( @A"      8DE9"A     !
d$ @     !
 &@     !
 6@     8 `I$&PC 
     B"  
     8"  
    !MD!   
    !MD   
    !ME   
    BUA 
      !B p 
   8&  
     @CD@p  
     @CDBp  
     @CDFp  
    >!E @@p       Ɗ(        8(       8        H8        i        :΀ 	 	     q,8  	 	  $    	     @\bb\  	     @\b			b\  	     @\bb\  	     :FF:       	6                 !  @          !@@          ! @         @          $H"DP@       Q$H"D 
 	     @  
 	    A  
 	    A  
 	     _   @       ?       #( @       R$H"DP@       Q$H"T 
 	    `  
 	    a  
 	    a  
 	     _ @      (	"$D"DDl     "$D"DH
       O      	 O        O       ' @   @       ("$D"DDl     "$D"Ȋ    	 O      # O      c O       '@H$@      !Z8q      ("$D"DDl     "$D"Ȋ|    P O      Q# O      Pc O       '@X
,@       ("$D"DDl     "$D"DH|    @ O      A# O      @c O       ' @@       (*䈑"DDl     "$DdȊ|    H O      I O      H O       '@"	@       ĈA(          aE @         ` :@! A          Hh:Ћ* T H    @           B/@P  @          Hh( P@@ " D           @/@A         HhBЃ * T H  " D           A B P  @      ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP                                 @@@@@@       





       PPPPPP                        @@@@@@      





      PPPPPP       @ @                @@  
 
       PP@@

        PP

@@**      TT

PP**U@U@                      @@@@      



      PPPP      @@  @@         @@@@           	@@     	 	 $H      PPPP                                 C      @    ZZZP    ZZZP    ZZZP     K$ @      * @      
$aa     ɓ&L2@     
$ma     ѓ&L2@     !J11@     !J1@     ),Q!@     4@      $@      ),Q!@     "B0P     ʘ    Y5      HM,aD       H(aD      HBDHP@  	          @BDHP@     
$ @      j$ @      B"8 @      "(Q(0@     "*(Q(0@     )(ʘ!@     <dǃ0@     2c0@      DGU$@     I%I$      D$@     !b!@      D$@         I%I$  	    ADDA      @Tp@       @CQ @      BeLB     0P"B       @ELP@     %R @       HBHB    !ιB          I%       @*     qT @      ʘ!B     b!      %S*`    #*fT!@     %YS*`     
$ @BDHP@     Zd0@     0@     %R @     I$    
$        @BDHxp       Q(     DPADP@     ZdɓV<p@      Q((     
8$   @           DGU$@         @ T`A       @8qR2@     %R*8qR2@     VM\p@      @8qR2@         qT"J     ʘB     @I2D8 @             	    8pF8     0P( @      QÂpR@      ARdɓ%Q     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  	   _ A@       D@  	   >A|  	    @   	   }$@D
@$@D0     <@|       :P@> @       X |  	 	   >$2      	   @H 1$@   	   @(R8  	     N`A@   	     Vd A@     ZZZP  	   @    @  	 	   @Ò   	    0x"A"H!B`      ra0              ]     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  	     	H   	     		I   	   A  	    DT&"  	 	   ఘ 	 	     
 	   #RJS   	    $  H
    	   7]AAA  	     A$B    	     	   0"$!B!B"<   	    Q	! 
     
 	   #P)jg  	   `F" @
 0   	    @4P@I!): 
 	   P$D	    
     	              	   B! 
 	   D!!"     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  	     p.AA>        p.AA> >   	    	 	          	   @A  	   ? >   	   #ď$Q"D(>|  	    /   	        	   !B~      @~ 
     @?A?  	   	"!"$C<@ 
     
   F!@  
 	    }Db      > @|     	    @    	          ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP      V$ A@.     
     0	 @  8     EDTE   	   dD @A@`    B @  @  @      9P      @   @D  @         @h@D          @     	     F$ AAA   
   @@C  	     Fy& A@   	     d@B@     ZZZP  
      $@BDV, @  	   a  ?p  	    @)"A	HC    ZZZP    
         ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  	   v@  
   	ȡD'!  	   v@  	   fu"DH"     @@Ѫl 
 	    "^zF  
   1IDDTlD  	   qQ"(dU"    mF#h #     p&axQU@     :$H 	 	   wD`( `Ň~  	   l (!cUR`  	   p葉Ȑ  	   葉Ȑ  	   v@¢     1NJJFB~ 
 	   ?
I   	 	   vD4*&c  	   9x* 	 	   a0$	>      1I 	 	   wD`0A 	 	   ;"H C!p 	 	   a0$>   	   Fub(E"  	   !	R`  	   xpB(E"À     PG$I 	 	   vD$V  
 	   a1EP>  
 	   `L∲*   	   cЇ"P<  
    | T9 J`  	   d! Tq  	   d! Tq  	   	Lb!EJ2s     J`G       GL@LDL|  	   q ar  	   v@<B9C= 	 	   pD!r     td<B9C= 	   a0$	>1    aC B> aG 	   wD`0AQ 
   w"(
*
;  	   0q[ 	   wD`0 F  
   q9  
   ~~  
   q xrz     UU %ED1)(%  p>x      UU %ED1)(%  )D>}D   
 
  |B!@    
 p    
 s    
 r    
 
z            v      E   
        Pp         >  	    I      \R)L       F 
(  
     F  0 p           4 `         i`  	   V@         
      v@    
     
 qD    
 qD4    
 '@ 	   
 yê    	  \ 
         UU                t\  	   9YA  	   Me  	   i`i`    |z
d  @   @   _      TQQQ1  	   8MZ`8      q RDP8   	   |E$`     t`L    
 <B    ZZZP    ZZZP  	   }0`| 	 	   > &       N#`jA0   	   {ІCi!  
 
    @#$     `~@~ 	 	    	">        (@JP% 
     @# h*)  	    ' b  `    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     i`     "            $Z     T                 "      )H     2!    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP      DBA         s       s  9            ? 88"   8              
    P#x 
 
   P#x  ?          UU <ED8)(    1|      UU <ED8)(   x 8A|      UU <ED8)(   x 8x           ZZZP     `a     #ƀ`a     `e@      `e@       2`a     @        !b  	   & P     @      qd    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP 
     0 8  	     0 00>   
    @ `?
 8 
 
    00  
     00 0 
    00 0  
    00 p,  
    00 0        0   
   |0  x 
     @      C 
 	   C0   	    *[0      CA     `S 	    `      90  	   "A"8 
    ?ъbXf`  	   6l߃     3     M0`     O3     ~8     1#              	   7  	   7      @ `| ^      	`      
?`@ ^` `     >`      ~8|0     0 
 	    00  
 
    /`?  
 	    00        ?0#1  < 
 	    0<  
     01|@<      ##C#     ##C# 
 
   00    	     p 0   	     Op 0  
    	?     >A     ?9     Cc     C     3     ?0     Ν4`                    >  	   > 
`      #`      ;[     c     @     >p     <  	     #4a|   	   ~8r  	   #      @  6@$   
   `` p1A       P  
     @ 
    !  
 	   AqF`  	 	   
"'1      s  
      ``F `     
     P       rO1  
    	` 
          S     rW5 0     33      > p0  āR     O0      baaf``  
    <3 5     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP 
    By@     ii     B$$B     DP     qFD    r(Q	ȡD/       c)IJP&1B8!! 
      0 0   
     @   	     | `   
    (_0   @  	   cc     M<`      ~80  	   7bك  	   0`     <`     `     	0     cę¦    	   A p           `       fa^  
    `     ?9M0 
    ?ƙg`     @ p   
 	    0L+
0        3FP 	      @`2FC   
    0dƠj@` `  
    `2      8+bb  
    !"?`Q`      @`0   
    0` ` ` `     $ P        P      :泀     s      1> e0      	 %@  	   0@     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP 	 
    H(DBAN  
    A 
 
    ?B!BJL` 	 
   HHOPD"  	 
    H$: @  
   PVD	 "  	 
   A P(T@  
    @𜀁B<  
   		    ~ ~   	 
   	bJ@  
   >AA> 	 
    # 	 
    A   
   1AA1AAA"  
    A  
     
  `!JF0 	 	    wDB!F#w  	 
   	E   
   qA  
   !!A    A@  
    $E  
   v
@ 	 
    T2L @ 
 
   " "   
   l͡@  
   q 	 
   >!!	
      ZZZP    ZZZP    ZZZP     `    
 |D    `  
   VR  
 
  J[$@     `  
@   @     `	  -	  $@         
 a     B"   
 "    CE3@    ZZZP    ZZZP    ZZZP    ZZZP     !      i    i`   	 t@   
  US   
  S4  
 
  UNA@            
 *              ZZZP    ZZZP    ZZZP    ZZZP 	 
      4&!     ZZZP    ZZZP    ZZZP  
   i 	 
   "J%! @     
   80`Dp  
   B< 	 
   
B"	@  
   y
Bx  
   ` ( @   
   <,(!EJx    8!EJx     
   bH0$"" 	 
   `($(   
   Q2      R      R     c       h"ƀ      H"ƀ     a@      7L6t      L6     A@           6L6       
   6L6       
   L6t   
   I				   
  R   
   H"Ɓ     Yi@  
     
     
       p      
     
       ۈ      
     
   H"Ɓ    ZZZP    ZZZP     "Da      2cE     :c͠     %UM     2aE    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    fa
     fa
 	    6$00  
   9A5#A 	   cBb1 > ` 	 
   > 0A      <BB$     <BB<  
   r(aa  
   ff 	    ]0D"ȄB"   
   9a`A     }(P
 	    c@`0" 	 
   wDb1F#    r(aa 	   cBb1+ C     <e(PL	 	    > 0  
   8Dp 
     B " 
 
   r!HRHV_` 	   cBb18 C 	   wD`04xnPG  
   ff 	   " 0} `(#     0`' 	 
    cBb1 xB  
 
    1EHLĎ  	    xB Ĕ  
   <BB< 	    cHb1K 	    cBb1  
   9A`aD 	 
   " 0A   
   q"4P     FAax 	    
 D`(# 	     6$00   <!       8#Iy	 	     > 0
   	     ~@A      ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP   
  bVbV     i     i`     i`     (      i      Jm  
    i     "(     uk  
    %Qy   
  bQEB   
  YeB   
  bYeB     ,,,,4   	  qVر^   
  bY}WB  
   tc'I     <B	  
   tax'I 	   " 0}  ` 	 
   6$08  
   9A`Y 	 
   " 0     i     i    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  
   <BB< 	 
    @G$ B   
   9UTaH  
   tBA@  
   pt 	 
   6$08     9 $N  
   6	"@F8     
     H @!  0  
   8 ADp    ZZZP    ZZZP    ZZZP    ZZZP  
    `	 pH0     `	 pH0    	   B @G$J&    tjL 	   M4 @  	   wDb9D $& @     !	*G%3A    J$ @    .fЄ  	   6d\- $& @     }y1h I1@     _EL    p葩	p 	0      p葩Tp 	0      r)jR
F( & h        q(R&*2@ & h        pH$	Hp 	0       IP'         }y1h}y1h    Jf ERAD 	   $& @  Rh3 	   $& @   wDb9D    LDI<    I1@A"	     Jf$dUD 	   HL @ l`Z.    I1@ ALZ;    Jf D    `     I    `     H    	 L  @   ZB    	 L  @   v&BɊ̐    `     IP'    `     IP'      ei  
    m @             9lĀ 
      m   
     q6&6        
     m       q8       'c     q9"  
 	   m l  
 	   di8  
     m     Am8      @s{ǎ    Am9$      #;q       pc       Am8       066     Am8$       Am<q    
          &1   
 !̓      cd    ZZZP    ZZZP               #    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP 	   
 De)     
 V    
 E    
   	   TI      9J)H1      8 rID2PRQ  	   F$2 D   	    F̩"(!(!&     	   D0@A  	   'A  
 	   @Ry    	    @B      	   FI

S" 	 0   	    F (.)!BI     `a  	    Fũ+(.("B<  	    F$    	    F̩"(!(!F       GR_U     GA @     G5EJ*QRR     FuQJTR     F$0@ 
    CũQ     xhEYEV9     G0@         F©"("("B<      FƩ)()()()2  	   F$  8      F$"8      @j R&Q 
    @h&F`      @        GRHU!Tx 
    G%G@ 
    CE9X     A	 R&Q 
    GQ 
    AR!G     B4<       FRTAR@     A!y*Q     ~BQ
"C     @HDRRd 
    CDQF      FR)HR@ 
    G!G      G*($9     @R*?@ 
    ARũQ      @BT	R@    
  "         
 a    
 u#  	  22`  	  *DJ    A|       &|     $$P            F)             a"
Dp  	   i$D       :[2A   	   ` @	 (           8 @ 0  0	          
 	T  
    H$     H     tbB  	   GS_UX @       G(|DD  	   GRHU)Tx   
 	   AR)G"  
 	   G)G"  
 	   ARխQ@      C"rD M    ZZZP    ZZZP    ZZZP    ZZZP     i  	     ( :6*E	p  	   FI

S" 	 0   	    F$       e    xJ2     `a      F#RH      B4<      @F'% c       0HHHHa 	      F̩*(*(*(*
?J
r     i     c)2   	   B A  	   @
(A A     0M        	   b!  	   22`     E           a     	T  	   *DJ  	    FRTAQBr    TJH     d    d    	 a>B           "    	 p#@    
 Q         	 tk      "     i`      D      U8          "D           BI         ZZZP    ZZZP    ZZZP    
 2d    
 "T     )T     	B<     B     Aq?      H      P F     @Q       	B<     " @     ?HB$!B     'A     AP     > D!1     A?  	    dK     F( 
     @!I! 
     I"/     DDC     "? 
    H@O 
     H@O     @DL$DS      "B       	!bK      xB      A     t(O      " @ 
    B     !r""<  	    @ 0
b^     A>    0x    
 T@    @      K     8EÀ          
     DCD!    ZZZP    ZZZP    ZZZP     <"E	"H      "DG"HQ3      <BB<     'A     A?      'H     '      $ @B        A2      A 
    >@I*D`     xA2     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP 	 	          ~@c(a     &IB< 
    !(!S#0     D/B"d     A     
 
    `d  
    ȄR$       @ @      @      @.1.@@     ~~ 	    	H$F 	       	    `Ϡ 
    D 
 	    BO  	    !)d8(     0(      $ZB$ 	    $     ?DH0 
    $A"|     @DH      @ D@     &b 	 	    @@  	    "(1( 
    !"          0(  	    @@"XR      ATO      7iUJ  	    ~PAA=     R     X     j      "%      j  	           @      !B0   
 b@AA#     "    
 i          B    
 <H`    
 V    
 bF           BY$      i 	     ,a        ZZZP    ZZZP    ZZZP                    DRID@ 
 	   R$!	D"@     "     J@     |0@0     |!     "\@|     BFJRb 	     $	<     R      1$      d8A     ZZZP    ZZZP    ZZZP 	    = @ 	    =  |  	   <B@ @      tc1\      ƙc @      1$!#       fY_!       = 
g#       !䢉##       f @      B!#       j[r #       9 ji#       9%a      zaa      9 '#       9!2$      aqH        $h*TɣI       JaD       (aaƩ       %aaR@       e&(PxBH`      r QF@      J(       D0`U      !HcT@       x
"B"0      JaD        8$H"       Q*8@       EVL0`       0((P%0      r B       <b$$$%%F<       Y*L2dɒ       =$(`Dp       8D

""~      1(G$G#       aa)        4L2dɓ)`       c& @xBH`       H`U            	         a$0           d!              ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP      "1      =I?I'       }$H$       x'<      z ^      c>       yyE^      !B      zN^    B      B      RQ      AC      w1      Z1      za^     zA^      }/      }(    @1_      m$H2d      b.     tb      \      ~       ~_%a      I~_       @      a^       A      ?0O       @      "      m8a      !?      !^  
    zB0   	     8Il               DH      $H"      ~       &L      <I$q     "1     =I?I'     c>      x'<     c>     !B     B?     z      a     B     B     RQ     !B     w1     sZq     Z1     za^     b.     ~      ~(a      @     a^     m8a     z_     a^     fX)Y      }$H$     !>     B/     z^     zA^     z`r^     zN^     آ  	   B           &L2d  
   aa      za^     zA^    	 tb     \  
   an      !>B     a      A     &L2d     RI#  	    8Il  	   r(n     c$PA     9J^  
   M&L2d      Ē!#  
  ! '    `     a7@    RH   	  r(n    c$0     tc8     M&L/    Ē!#       n       (c$H"d      
8F"D1      Ou       |JJJ{JJ      X&{"  
  X=ș,@      X9       I9        <B@3B4  
     ! `       ~Y?    z^AȢ@     a  
  ! G        $"0q*!"!      	      	  
  XH,@      DH      H    PB    СB    O!&   	  y$H܉    
$F    aB/`  
  *TR  
  (P  
  (,`  
  YPA#   
  y
     <q  
  RI3M`  
  %!H`  
  !?`  
  r )`  
  q#ȑ&4     F"D#   
  y
!<  
  y
!<  
  z^^#  
 
  x! @!HQ 0         
  zA~    B!1   
   l  
  !8^@     an     taE     tae     ɔ1\     tB     	     !O  	   y  	   c!      G     DC     B     	  	   G&d     B  	   I$       
   &L2d     &L2d  
   ,d$H!  	   $H"     sZq     1(#   	   !Z      iB  	   B  
     G`     DH     Q$H     c.     RQ      "           O            !     "D    	 )    	 I    Ç    
     
 /     
     
  @     
 =      
      
 "                 q     
 f    	 Ġ    H     I`     
 e%0     iQ$           	 %     	 %̖     	 zd     xr@    	 y`         	 yq    	 x`    	     	 .    	     	     
 c    	 k8    	      dA    	 xa     2Q     	 h    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    	 *"    (      Q:$  
  z_7D(@        >~a      .a    aa    .a    aa    .ax     z`!     z ^        <ab      $]a7@    (aa    ]a7@     (aa    ]a7@x    (aa    ]a7D     (aa$    ]a7LH       G        @ x                x         
  z^1       f  
  z^f`    D?> #     D z^        ?>        2!B      x'    b'z^       #c      .a@    c1@@    .a@      H !a      H  a    aa0    .aH     `    8`	C    |AAf    @AG٘      *!B|      0!O      B!J0"      B )("    )(
$    
$    )(
$    
$          aB'@    x  ?     B!	          aB'          aB'       B!<a       dɓ&L       a;ma       i2dɓ&H    a  
  &L2d        qƚe8       .a@    iYc  
  aa @    iYc  
  aa    iYc  
  aa1       Ffzaa      !a      Hfzaa      Hfaax       Gzaa      @ xa      zaa       xa      B>~     B an         >~      .a        >~(        .      aH  	  `     x(a @    x      aH  
  `         ax            z```a  
  z^ @      HB z```a      @B```ax      z```a      J```ax     ax              @         B|!A     @      !>B @     @     !>B      @         $b    aa  
  a@    aaf  
  af`    aa  
  a)      Ffaa      !aa      Haa      Ha      e0("(P@      f` RI#    
$H    
  b(       @!m<         2dɓ&K`      B!m<       2dɓ&K`      H !m<      D 2dɓ%       5       2dɓ%    c{@@  
  &L2d         D"       Tb      H !$1$      H !#J@       ( @      !aLAx      @B       @B     B   
  !? @    B   
  !?    .a@x      O!0      P@ dɓ&L     a       AA~ct      @4DDD@      F!      >F!      ~ha  
    91(a    "1@@  
  z_        1$a       A~ct      "!E"袊       "A~ct      BEQE      BA~ct      E"袊       QD@B(΀      fb/       2AD@B(΀    "E*1c    @z_ @      ")Q      B"pa      A")Q      @8a       
"D$H      B"pa       2
"D$H      f`!xa    F?c    H7@         
  z^        A         A        f`?>       f`      "        "a!x      B        Ba!x      b        V       fb        fb     >      @z^ @       O!B|      A0!O    B'@    ! !>     zaa  
  za^ @       Azaa       Aaax      "zaa      "aax      Bzaa      Baax      bzaa      Va      fbaa      fba    !Haax     @za^ @      A1D$H       A1D#      @@P1D$H       @@P1D#        Q1D$H         A .cD$G       e0D$G       e0  .cD$G     h"D#     h"D     aa  
  a @       Aaa       Aact       D$H        Dc@      D$H       Dc@        QD$H         A 1cD$ƀ      e0D$H       e0  1cD$ƀ    ,h"D#     ,h"D       @@@0Q"( @     @ a    "    
  a3Ax@       0Q"( @      Aa      e0( @     f` a3A  
     B
(Q  
     l$$~$$$$$  
    BA(a      F.    J(A  
  J(A      ` fX)Y      a fX)Y      HfX)Y      DfX)Y      I fX)Y      E fX)Y       e0 J$@       e0 J$@        !B
(@        !B
(@       Т !B
(@       ! !B
(@       Ȣ@!B
(@       !@!B
(@       e1	B
(@       e1	B
(@      0B z^      0 z^      h@z^      i"@z^      dz^      e"z^    ZZZP    ZZZP         |         |       Т  |       !  |       Ȣ@ |       !@ |    ZZZP    ZZZP    0B aa    0 aa    h@aa    i"@aa    daa    e"aa    f`.aA    f` @.aA        (P~
(@        (P~
(@       Т (P~
(@       ! (P~
(@       Ȣ@(P~
(@       !@(P~
(@       e1P~
(@       e1P~
(@      	$0      	$0      Ң!0      Ԓ!0      ʤ!0      ̔!0      f`  `      f` @  `         @        @       Т  @       !  @       Ȣ@ @       !@ @       e1 @       e1 @      0B za^      0 za^      h@za^      i"@za^      dza^      e"za^    ZZZP    ZZZP        PB
'        PB
'       Т PB
'       ! PB
'       Ȣ@PB
'       !@PB
'    ZZZP    ZZZP      0B a^      0 a^      h@a^      i"@a^      da^      e"a^      f`aa      f` Haa    ZZZP       @ AA""    ZZZP       АH AA""    ZZZP       ȐP AA""    ZZZP       d`@ A""      @P`ɓ&K`        P`ɓ&K`      hQP`ɓ&K`      hP`ɓ&K`      dQ P`ɓ&K`      dP`ɓ&K`      e0 "&L-      e0 "&L-       @ >AAAAA"w       @ >AAAAA"w       P >AAAAA"w       АH >AAAAA"w       P >AAAAA"w       ȐP >AAAAA"w      e0AB      e0B      A fX)Y      ! fX)Y        z^       z^      aa     aa      	$0      R	$0        za^       za^        a^       a^       @@P`ɓ&K`       @P`ɓ&K`    ZZZP    ZZZP    ` fX)YA    a fX)YA    HfX)YA    DfX)YA    I fX)YA    E fX)YA    f`! (    f`@(      !B
(D      !B
(D     Т !B
(D     ! !B
(D     Ȣ@!B
(D     !@!B
(D     e1	B
(D     e1	B
(D    0B aaE    0 aaE    h@aaE    i"@aaE    daaE    e"aaE    f`.aY    f` @.aY      (P~
(H      (P~
(H     Т (P~
(H     ! (P~
(H     Ȣ@(P~
(H     !@(P~
(H     e1P~
(H     e1P~
(H    0 P`ɓ&Ka     0@@P`ɓ&Ka     hQP`ɓ&Ka     hP`ɓ&Ka     dQ P`ɓ&Ka     dP`ɓ&Ka     e0 "&L-    e0 "&L-     @ >AAAAA"w     @ >AAAAA"w     P >AAAAA"w     АH >AAAAA"w     P >AAAAA"w     ȐP >AAAAA"w     d` @"AAA"w     d`@ "AAA"w      ' fX)Y  
    e(    A fX)YA  
  fX)YA    ! fX)YA    ZZZP      f`(V@    f`(VP`      1$a      x I(aa        !B
(@       A !B
(@    1$a                   f`    
 f`3      aaE  
  aaE     aaE    ZZZP    f`.aA    f`.aQd         |       A  |        (P~
(@       A (P~
(@    aa     Ң     ʤ     f`      \!0  
    DDDC          `         `    ZZZP    ZZZP      f`        f`3        \!B|      !O         @       A  @    ZZZP     Ԓ     ̔     f` @      a^      x !a        aa       aa    0B zan     0 zan       f`!a      f`3aax      D0Q"( @       |H @       @ AA""       @ AA""        P|     	       	           ZZZP    ZZZP     @@P`ɓ&Ka   
  E2d0     @P`ɓ&Ka     ZZZP      e0(0dɓ%    e0(0dɓ%        PB
'       A PB
'       @ >AAAAA"w       @ >AAAAA"w    }0Q)@`     h         ZZZP                                                                                                                                     m           k                   F(     b    b     (      pB @    pBUP      w                        $               ;3݊sр UU       @  ;3݊sр UU        ÞBQÞB^      UU        JR      UU        JQ^BQÐ      UU        ÌBSÒBL      UU        JR      UU        
     BH*UU  
     @L0*UU*     6H      3fD      ?~T     !      f"      ~*    "  
    %)$  
    "R       
      
    zYEA @              z    !R      p@]        
         Ip    $  
    z @        QIa @      b( 
       DD      z(P@     {׀            %QRD   	  :@  	   z@ ax    %QRD %QRD   
    0      q    z      󊤀            33ffDD      "        	                  >J  	      
    @          ZZZP    ZZZP    ZZZP    ZZZP    ZZZP          yq< UU       @@A yq< UU       က  9}E UU         ! 9}E UU       "q*" <y"q< UU       "q*"q <y"q< UU     "         ZZZP    ZZZP     /@     !     ta     B"     tb     tb     !>B           >     j     X     c    "    .H    tBC    tB    /@    !    ta    B"    tb    tb    !>B            >    j    X    ZZZP    tB͠    tcE    tc    #J    tC    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  
    z/   
    jM9  
    9`(d  
     ?   >      
    @}  
    ٲdӤ  
    D_&D  
    b͒ɓ8  
    "\Ε)I8  
    D_6D      [mo    v8a7@x  
    >C$`  
     B"$D  
     @     "D͝ @    r(Pʲ       |BBB|@@@@@     +   
     $$BBBBB  
     <B0@B<     (^     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    
 !    
 /  
             	 <    	 fP    	 !     	 /     i          {    
 @    
 T     a D H  	  C        `  `  `        A@@@@@A D P @      aEI       	 $BB$      `  `      ;hZhZo     8@  A #(       $$      m     @      @                         )J)J)@    !          !     /    	 HH    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  	    aFAD  	    aFAeA  
    <ƅ
(Pbx       a"C D$0  
        	    aA  	    aA  
    ~ r!  
    I<A       a"C  @  	  u'x  
     u4Tc  
     w6>66vg  
    Fhѣ  
    ,(0       "D    2!ʕ0  
    "@p       <pf      1$QA  
     HHHJMIII6  
    F͚iӣ  
     з  
     <BB<  
    F(P  
    i(    8ʍ4hlx      4oTI  
     33><66v  
    F7T  
    ab    pO_I      qU1      RZR_      [UQQ       0JRT$(xP  
    QI)%$    xBC  
    }0Q  
    T(0`  	   {L0x      Aq       RQ      1# 1$a  
    ]FhѢ    =7      {<      2eE  
    9"  
    zBGA   
    AA  
     c6*****jI      0P      4JS.q  	      @?  
    e  	     @  	    00       /@  
        F('đ*E      QJ)E(K  
  `*	" $	@   
    V(P  
    )E(RQN8 
 
    T	C  
    aA  
    AA  
    AA  
      @ 
 
    ?
b%QT*? 
 
    P	>J       <}
/  	     $     "(S       n   
    "Dp  
    i%$!B
     
     B"AF      B      ""T"n    ZZZP    ZZZP    ZZZP  
    GPR`  
    ĔR`  
    GP`  
    Ĕ`  
    Ĕ`  
     "BB  
    GPp  
    гp  
    GPRp  
    ĔУRp  
    УRp  
    䔤Rp  
    GP   
    $\  
    $I$K  
    RJ*U  
    J*S&M  
    "
  
     JJJJJ222  
     UUUU%%%%  
     UUUU  
    R*U  
    #"E  
    RD*U  
    VTjի  
    AG  
    58  D  
    $QEQK  
    Ɖfʕ*U  
    H,\  
    I $K  
    Tʕ*U  
    @*TM      "   
    ҥ2e  
    
[jK  
      UUU  
    @I*U        
    ĉ*U  
    
[Rի  
    Y$\      58   
    СBLl      RJ  
    ZeYe`  
    &UUUYK 	 
    >$5ZV9I   
     AA      r A+      : @Ft  
      @$8        FqIeUeIqF      $rVI    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     !      #B     /     !	W      $BB$  	   #B      
$     <1IB      E     )(  	   O
  	    @/             x       $HH$  	   #GT       $$  	   !	W      ""      (     %$     #B|     /     	W  
    #B'     E      AA      U/      ARE       $ZB$  	    ,JJ,  
    	,A8@  
    "<!@  
     *B   
    B>A   
    !RO           BT      !q       x     0@      C1@     ^ia     a     !                 .@     /     !      ]      $@      /       $t%.$      ! !       !        $~$$$      /!       $$$~$     !!      /   	      	    ,~~,  	    @?      !      "(     ~     R      $~~$     "mD     *      <Rա      Z     BK      }      _        BH       B  
    #B|!   
    !>Oq          
    #!         
    ! Bq           ?      0__0  
    Qr
(p        
    8PB;(       Qr
8       Q4H"E      Q4H"E      qVJ*UO      QWtX"D$O      QWtX"D8?     [   	    劐  	    
N      ")Jڈ      "    
     $.5$$$$t$           $DD$      $""$     $"H     %PP%      
@
@     %"("R        ``             F @  
    $E
   
    i  
    9A=b  
    AA     $$       :,(   
     B"  
    $E
       ~?  
  G$|@      ~|        
   'I        
      
    $H"D  
    D$H"E  
    B       	    @     p@ @  
     B   
     A     %\GT     i     o     @:(0`@    S!L:(0`@    SB:(0`@     nI     m&K`             !C      
K      b(a@  
      
    0N0,0  
      
    I$YI        DH      "      zaa      a^    HB!J`    TB
(PJ      ***********    HB:qJ`    TB|PJ      ***~~***    !      vp     Q}TQ     0 <     0        <     0 <     0?     0< 0     0?<     0     f`          e%0     a"H          AA           f`   	    GfO     f`  ?  	    fa?O      GfA      f`  	    Gfل     f`     f`f     e%0 ~      z     30      30      0  ?  
   0? 0  
    ? 0  
   0?        /      =     $  	   1$      z  ?  	   1(@   	   #    
      
   _      $ ?   	   Ҫ      bA   ?      O       	    OO                 
     
       ,#    O  	     	$HH$	  	     H$	$H  
    ii  
    I^G@    !LFQ1H    %Ce    AA      ,       f      f    Ava      ,f   
    3   
    3000    A0s4    M3C  	     	      
      
       
    f`  
     f`  	     	   E$     ~      A  
    GI@  
     $~       ~ ?      A?    GI      $~#   	  ~ ?  	  A?   
    ee  
    aa  
    ii           A       ?      A?     a     a     8O*      8(      8      8,(      8(      8MY(      8M(      8      8(      &O2     0          0     ?      @      @       @?                          ((       RJTR      (袊       	$$       I$OH              ꪪ   	     	   b `     M           M           E}     E           0   
    B!       T     F      #(      <O      1IG  
    PDHA  
    
$H(   
    zaa  
    aa     "           'ܠ     $UD     븀          ʸ                     B      PDH      ~      E~     }Z@     V/  
    !ֵ@  
    I$$I   	      	    (     *                               
    B3  
    03     QF3C_    I0sO    A?I$O    A?QEO  	   ?  	  A?  
  Gf@  
  Gf@    va     ل  	    A  	    M,  
  A@  
  M,@  
            
           
           	    @  	 	   ?  ?     ~ 	 	   ?  ? 	        	    | 	     ?  ?? 	 	   ?  ?  	      O    	 	    0       	    ?    	   A 	 	          :,(       А      1(a     "                >*                                    x                           $O     8     8      8
"       8(        A_ @      $$$$$$     EUGQ      ?     ((((8TD8(((  
    $0Ē{    	     	             vI$@     $I&     z                 @@p           VM_     x    "DB!    D"$H      ?UU?  
   q6<8q8       %f      0{      00  
    l$H  	       pp       b70      b7          #   
     @  
    c1      `      L?ɓ      M\pqՓ      n      p`       2d8 @     8[   
       @  
     @        Xh      2bŇ      {8lǃ             @ @       @_ @      ?Ƀ      Ƀ        
     @  
    !V!       8ի&      5j  
     AJ  
    qP       &2dɓ&O  
    >B!   
    !?Z!       MZ      xՓ&  
     AJ        @?Tp@      &L2dvO  
    !     	    !  	    QE |      tc  	    8(   
    8MY0`      L0`     8OQ      0`ɓ      H @      *Q     }      ь\      H   "
#  
    &L2d8        $(> @     I   f    I  @!B      "@     |Bg   
    8&{"Dp  
    Aل@  
    c       Ld&      MZdɃ&     f`D     f`(Q      DD0  
  zan       (L2d  	    fXV@  	    z<  	    DD0  
    (2d      fX)Y            D        `  P    `	        x? 
 
    D
!8p      !B;!@       8$G@ADP@      p @:T       p@=(:t   	   
 {@      B/ 	   :F#       $ OР!BB          @ @      8LqULG@      ( (Dd      &A1(Dd      &0!`   
    @>PGE  
      
    ! 	 	    (
(  	 	    
(
( 	 	    /(  	 	    
/(      9  	    @ "      0`    b       d' @_4	}       'o  Ɇ	<        @y 	D# 
 #  	    ?#Y$F$*?    ;1c1c         1c1a    1c1`        1c1    1c1c         1c1c    1c1`        1c1    6    333$#33    c        3333330    BL    3333333l              c001     000`    v 0 `   `        `  ` 06       @              @  
     X(                     	               
    !B   
    !B     8D!DH @     8D!DH @      8D!DH A     8
PI	""DP @    8
PI	""DP @     8
PI	""DP      @# 1 @      @# 1 @       @# 1 A     @    @       @    A    AAA    AAA        0 `      |@ DF!/  /`         q                
#             

"#                     @        `      `      @ G             8@      @8         (               D       "  	      H@
 P 	   
)E            D     0@!H       $ H :4p@@@A @    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     RJ$     s&K)$     wLX$$     L|$     ~OI!$     jak     cL(4     Pz% 
    !     DH     B     "(B     C      {FA'     yEȅ     {O>     yDyDp     (.3     4e(N3     4e(3      (~0     'RK-ꔤ     h"ĉ$     t|'      fLKc     0o     tK)8     2 ( 	    <p 	    s,p 	    8p 	    $p 	    wBY@     Pz%  
    (I$        	   K$ <     (        z`@ A     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  
    9JR   
    B1@  
    c!   
    !B~1@  
    kR     븀     }}  
       
    ^
(P@  	    ۷nݻv  
     P((
    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     0`"$0P`@>"       0`">$P`a "       0`">$P`a# E >"       0`"$P(`!C?       0`"$Q c# E >"       0`">$Q b #E >"       0`"$P`A"       0`">$Qb#E >"       0`">$Qb# E >"       0`"G%Q"bDĉ%$R"      D1F!bF!P     D& bA(YP     D& b	&(P     D1%b!P     D+b	&(P     DI+b&(P     D&!b!"P     D&(b&(P     D&(b	&(P     EI&dI&P      @0 `@(      @!B0`A!B(      @!B0`AC !Bx(      A
H0b A(      @ @1pc!C !Bx(      @!B1 b!C!Bx(      @ A0` A(      @!B1a!C!Bx(      @!B1b0áC !Bx(      @$LH1"bDĉ&$LH(      @F A1b#F A(      @#HL2da$HL?(      @#HL2d0 &HL(      @ B
2$dH#'@(      @'H 2\d	 &HL(      @#HL 2@dɉ$&HL(      @'HL2d!!B(      @#HL!2Bdx	$&HL(      @#HL!2Bd &HL(      @8-X(Qa"EA-[(     !    	   xB! @  `@@ G 	   xB! @@!C 
   
H ?  	   @ ሄC 	   xB!ሄB!C 
      @ @ 	   xB!B@B!C 	   xB!D"0!C     #!)HBB$!!	HBB           	     #B  `" @	$      #B    B	$       
(PB$ $A?@$     '
@	 $ \	$ 	$      #B	$ \	$ B	$      'JA @         #B	$ $ B	$      #B	$ F  B	$     qQ"@ȈD$ H|    01 ( `!aF!{`@    01 )b1b	&1`@    01 ( `! d&!x`@    01(`F#dF#v`@    01 ( `AgA`@    01(,` `p`@    01 ( `!g?d	O    01 )b9bF!`@    11( ``A8`@    11( ``AbAF    01 )b"c#`@    01(`` `p`@    01 ( `$dFI`@    01 ( `ybF!`@    01 ( `AdFA`@    01 ( `qb	&1b\    01 ( `F#dF#t`@    01 ( `yb `@    01 ( ` a& |`@    01 ( `> `	8`@    01 ( `FcbF#`@    01 ( `v Da
`@    01 ( `vH"bQFH`@    01 ( `!H`!`@    01 ( `AaAp`@    01 ( ``A`@     0`"$DPaCc"       0`"|$DPaCE~"       0`"$BPa "       0`"|$DPa#E|"       0`"$BPa "       0`"$BPa p"       0`"$BPa q#E"       0`"w$DPaCw"       0`"$P `@"       0`"$P` A"8"       0`"s$DPa@	s"       0`"p$@Pa ~"       0`"c$lPaP¡Cw"       0`"c$DPa¡C	c"       0`"$DQb#E"       0`"|$DPap"       0`"$DQb#E"       0`"|$DPa	q"       0`"$DPa C "       0`"$P `@"       0`"w$DPa!C"       0`"c$DPaA"       0`"c$TPaP¡C""       0`"w$DP`w"       0`"w$DP`"       0`"$P`  "      D AcFAP     E1b	&1P     D ! d!xP     DF#dFAP     D !g |P     D, `pP     D 1!cT
/    E1bF!P     D`A8P     D`AVB&    E"ca!P     D` `pP     D $dFIP     D qbF!P     D  b	& |P     D qb	&1R(    D F#dF#tP P    D yb P     D  `f |P     D > `	8P     D FcbF!P     D v Da
P     D v"dѕF"P     D "P`"P     D AaApP     D !`!P       CD"!!!!!D"C     {    ?{    ?s=    a    s=    ?c=    ?{}    ?s=    ?q=    v     #L2P
P
L2#     #L2P
EP
L2#     #L2P
EEP
L2#     #L2P
ŠP
L2#     #L2P
ɡEP
L2#     #L2P
EP
L2#     #L2P
ɠEEP
L2#     #L2P
EEP
L2#     #L2P
EŠEP
L2#     #L2P
iiP
L2#                                                        T          	    	    	  1c  	  c  	   B!  	   !  	   1c  	   1c       	        1c  	   1c      B?  	    B?      1  	    1            1cB!    B!1c    1c1c    1c!    B!1c    1c1c     B?B!     B?B!     1B!     B?1c     11c     1B!     B?1c     11c  	     	     	     	     	     	     	     	           	      	      	            	      	      	                                                                                                                       mm  
    	  )JR  
  /JR   
   ~!@  	   QEQE  
   EQEP  	        )JR  	   )JR  	    B      QEQ  	    QE_A        )JR)JR    )JR)JR     BB!     QEQ}QEQE     QE_AQEQE  
      	     
      	             	                       	  4  	   !      B\     C       @@     @@       BB$$$$BB                                                  UU          UU                            
                             
                                 DF"!Db"DF"!Db"     UUUUUUUUUUUUUUUU                                                                                                                                           0     }0_      ۰          VZ     W_     NNZr     M<     W]]u                                    ?~      ?B     0Ǟ     0Ē     1     1/                      ˼               0     0           #      <0     q40     ?     =          M     q      QE      QUE      8٨   
   0Ē0     8(      ( 
      8ڭZ      8MY(      8      8ˏ,      8<x      8      8(      8|(      8<      70               ۽      ۽          4          ,     C     8         1    <     8           tc      y     y     q          &L?     P%P     0ƚ     0Ŗ      <BB<      a      y      g      Y       <RB<       <BR<       <BJ<       <JB<     )(      E    
$    a                    1IG      % H       v~     8     /$P(
PI!Gx      D"E
A0!     #Ȁ     #%M   	     8      X       <BB<      $$fB      Bf$$     )0  	    $Ha$H`     }     }0      0      	,\`        
    TJ@     @$ A       $IH$ X       @DD `0       |     |o'F         f<m'%<`      |          D     }`     c      iq       ~ZZB  
    $H      EA|W@A      @@@@9""C
 "      ?# kD p@       tTO  	    #   
    8N"r  	    #       8"O"   	    !@@!      ` *KIi,NC     '-W'qT        9y>c      }&L      )}?  
           
           
      |     
      |     
           
           
      |     
      |         wϤ  
    <BB<  	    <BB<  	    <~~<     s  
    QF3  
    (0p      ]  	    tc   
   !>B:1     +"8  
    ]1  
    AYRI   	    ֩b8     YIII>>  
    a   
    ETA       $H   
    B
}      }&C d  	     ""te  
    zj     8p  
    J*T      *
"   
    $Q     V V  	    $      rMpQ"E      sHA  	    H  
    Q$Hw      aQ      1$I(      rM>}      swϟ        
    q&ώ            1y  
     p  	    m&(  
    !J!   
    8pp  
     (0`p  	    m  
    !!   
    8Pup       QIIIR~  
      
    aEA       q       q       J0      	@    	$$@  
    ( DDP  
    8PF(      	(	D (0I$e%x< @      A #!	 /߀       A c."	 /߀       A #. 	 /߀       A S 	 /߀       A s 	 /߀       A 3"H	 /߀       A s.!	 /߀       A   	 /߀      8| 80O$=< @     zݽ     0`"$EH@%BRI$<D!,      $I&I)@0       D#<  	 	   `0 	 	   `4 	 	   h0 	 	   h 	 	   h 	 	   h,      $@f(@0       $Lfc(@0              s                                |       |      xax        x       2_|>~|'tC" @  @       D   B"      
     	   8$>$A@        "!EJI      ??C      D9?uư8 @                              cȢX(lغ        "(D>S⨃`@ 6 S<        "  `$0 @B     ZZZP    ZZZP     (@ 	 ID""     !C!   	    ;(DwA        `tGeCD0 8  
   08%J,@8     8DD88  
     
 D      ( @           qP"     8H(C      8(      8       tc       ;(Dw     8       ptDc   
        '`       @ ( P@DA  	   8G  	   r A>   
   QE|   
   󊤈|         '@O(       $
$"'   
  98Ä|@      B$$B       DB        B"      
)_    ZZZP    ZZZP    ZZZP  	    a{V      a{^ڕia    =?jM     =?jՋFZrp8    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP      8        p?{      pg > l         pfG @ĮEe0    ZZZP     0`"$~Qc1><0"       2`"$PpaEq          >8x  0         ;c17 ?    ZZZP    ZZZP     0H $>~$HD         p?qsQH \       0	P(E
PY0      ?R?@J       #RQN(
L        f! <        > 8   
    	  (          wp? < 0      @\q      pq       6c`60al@     >cp>>ps$       * T@ * T        > | > |          8 p??~   8 p        > |?| > |   	    p8      L`@ ?yL`      =x.     88p8          "P+" D P @        8!O>  |         > 8#O>8 > |        ?>8s=0>         1qq1          > |? > 8 p @        
 " D@`0` " ( P @     ZZZP        
 GM     ? =3c         8}        
8D	O        qtDq
(E        uuEhPE         3ˡc        DG8><'/,<        /9  8         /9珂>  8         5  @         ݁݂  @        fBiWSAM|u0!3CP @         wwt8@         @16lwws86        ;?        2`?'? & @      	 H fo.T$H         #X`;8 8 p @      os<y?{`|        o9#^=y?{`|        C?|          ?0}Ǐ        $T6scO$(G      xM=5TG       =|ߏ/2      	sre9d           
I3&1L *          
.I3ল1L.*       	  f#;[nb3$|H     "yC-2	G       .|      '_}}|          a c
$9p @        a wd9p @     ZZZP    h@ p@:<x     ZZZP     xxx?     ?xxxO     xxx     ?xxxo    ZZZP    ZZZP    ZZZP       8"8;" 8       ZZZP              
   |p  
   8σ  
    ||pp  
    88Ϗ    ZZZP    ZZZP       # !<0c  	   ?p p 	     w       <x       8???        ;?'~     a#~O?~O	7O      l!    c336H    s0    s;    ca0    cf3    sp    8q98    xǞ<<xx     Ǟ<    *I$    I%@    =01    00c     ?_      ?}s      ?}s      ?oc      ?s      ?}s      ?}      ?}s      ?}s      ?nw۳      0`"$Pp``"       0`">$Q`?"       0`">$Q`c?>"       0`"$Pla1?"       0`"$Qcc?>"       0`">$Qcc?>"       0`"$P`a0"       0`">$Qcc?>"       0`">$Qc ?>"       0`"'$Sclٍe7g"       ?ߏ?      ?ss      ?s=s      ?ߓgs      ?=s      ?=s      ?      ?s=s      ?s=s      ? I'O3        ~     ZZZP    ZZZP    ZZZP      < 8   	     80          8?8#    	        p                      `      @           `  0 `    	       ` W_     	       bW_     	       `        !x      ?X      ?x         # c         0 @        g߿`   	     @ ?   @  	      o 8   	    0 / 8        0 #( `|? x           ? /?                       @@@          @ ` P@@@ x p      ZZZP         p x@@@ P ` @    ?8 p   㿞~        0H!?       p~x@ <     c      <"x_ @      8O|?  	     !!a~        |p         `<   	     @<0p @      0pσ>   	    a~8`  	      '  ?"      ZZZP      )(      @(I
RQS       !B| 
    ?	`d  
     &AX  
    tb!A  
    tb        R"     @ $       " @?  
    I.H    ZZZP     @       @      ZZZP    ZZZP    ZZZP 	 	    
((         DJ 	 
    b1F#I       A      $   
    (RI#1$0>  
    |I$HĒJ  
    	$#BI
03p 	      @  	      @        (?~
߂       (AP      @                @    U$K       P$_"(P@       (@0 ,@D@
             A @ 
         
  D @  (           @ " |  @       " D   " D        )JR)O      JR)J_      $HB!      B!$H      RP      E
(QJ)E(    j!    eUUVH    *I$    I%@      @lFUJT*P@      *PBU*V*`(   
   " @x  
   @XD !      
$@                                /        @                      GA                /       @     " O H        DKUxD    
    @  
    @  
    @  
    @  
   8@  
   8@  
   8@  
   8@  
    @  
    @  
    @  
    @  
   8@  
   8@  
   8@  
   8@  
   1 @  
   1 @  
    @  
    @  
   18@  
   18@  
   8@  
   8@  
   1 @  
   1 @  
    @  
    @  
   18@  
   18@  
   8@  
   8@  
   c@  
   c@  
   c@  
   c@  
   {@  
   {@  
   {@  
   {@  
   c@  
   c@  
   c@  
   c@  
   {@  
   {@  
   {@  
   {@  
   1c@  
   1c@  
   c@  
   c@  
   1{@  
   1{@  
   {@  
   {@  
   1c@  
   1c@  
   c@  
   c@  
   1{@  
   1{@  
   {@  
   {@       p       p       p       p      8p      8p      8p      8p       p       p       p       p      8p      8p      8p      8p      1 p      1 p       p       p      18p      18p      8p      8p      1 p      1 p       p       p      18p      18p      8p      8p      cp      cp      cp      cp      {p      {p      {p      {p      cp      cp      cp      cp      {p      {p      {p      {p      1cp      1cp      cp      cp      1{p      1{p      {p      {p      1cp      1cp      cp      cp      1{p      1{p      {p      {p                                  8      8      8      8                                  8      8      8      8      1       1                     18      18      8      8      1       1                     18      18      8      8      c      c      c      c      {      {      {      {      c      c      c      c      {      {      {      {      1c      1c      c      c      1{      1{      {      {      1c      1c      c      c      1{      1{      {      {                                  8      8      8      8                                  8      8      8      8      1       1                     18      18      8      8      1       1                     18      18      8      8      c      c      c      c      {      {      {      {      c      c      c      c      {      {      {      {      1c      1c      c      c      1{      1{      {      {      1c      1c      c      c      1{      1{      {      {      (+"      (
+(R      B @       ! D      AI      R 
P      @	 '         " O @   	   !	   	   #B|  	     
jPT*
@ 	     *
BPUk                             z                    Q o
P        
         qP @       @     #Ђ     #B     Q 
P     QЊP     Q(ҊP       /                $/  $             "               ""     .       (      @
 0       x 
   (         	  @    	 `        P	    @	 `       `	 @     	 P        `	    @	         ? :d	@ 0 !@       | 
@ 	 X<      @A 0 B@p<       h @@ `B$	@,        A	   @(      A	 @ @(       | 
@ @	 X<       | 
@ 	 X<      | 
@ @	 H       !   P 0      ? :d	@  !@      ? :d	@   @!@     8H   @       * @ #        @
8  
 	    @ P/    
 	     #       "      DU?     /     0     @8      /      @         0       8$@H        8Ą@H   
     /  ? @    
         @ ?  @  
        ?@    	            	        >          "(B!        GDDq       #ꐄtb               /         !B%@      #(B!L@       /      $@      "       .I5     @                    R!@      !B)       	           P       B!@      !B	      
        $          !B!>      B!L@              ? (       #(B!>      B%@  	             	     "1B!D"  	     /      	     "B!D          /                   /                                       /         	     "1(B!D" 	     "B!D1               ~  /        8   /          8           #    
      #  D@  	    `!?   	        	    `0`    	   ?     ?      ?H  ? 	        ?   	   A @@  	   / 	    cJB @  	      BR  
    kZֵ@     o  
    i i    =$)((<    $Q$RQD    6jc    eUUVl    5YS    ʩ    5YS1    ʩ    I$    I'        ?        Y    NhA     A!g"     "@0      0 b     @p)b    L.!C(.
0    6c    wwwwl               H @A   
        
      
@  
     @ @H0@D@       0       0 D0X     0'#H
@   
            
     @   @       @ @ @ @ @     @   @              =     (@0@" B?     <
@L `"        G@@ ` %      A@$ &H x     @ @FTA$DP @       ,)"B        @ PD$AF_@ @        "B),    	 	     2&
> 	     > (,&#! 	     
 
	h(+ 	     d4 	     d4  	     /  	 	    >$1F">  	 	    > 2LR>  	 	    > 2&
>  	 	    > 1F>  	 	    >$1>  	 	          H#b@D|  	   
J#b)#@      9HAh,ND|       9OoND|       C@f1@D|       F3`a@D|   	    > 	(J    	    >O       #b8      `	      YSeM%0       "dLq0      ZAh-             
 P@"A$     (@  A "        
 " D	F"8$ _         
 " D@' 	   X#h1cƌX0  	    bX
F(5  	    PjA`                                                          *"*"    ((    """(""""       x( 	     E     G       `@d	`        	   0          0C       $ 	 HĀ$ 	        L$#H? $       $ 	?C?$ 	         ` 	    ?      |C y8     G>	Op8  	   8       p>8p@    8(Tp@    8Tp@      |#0`!      |#!      | ADPQ!      | A!      | (0`8!      | 8!      #  
    B@      B!   
    B@        A          @      (SB      T@              CA     |?'C 8            @`@D|       BC!DD|       Hb`|       B< 	     `0F 	     `0 	     `0`       -  BIHJ@@      &@$A2@- H       ( 
  	 
    " 	   @0($"@       HI	$$BI	$$D     $@> @     $@| @     $@"0@     $@(Pp@       Hb"H>        $@
8@     $@
0@     `    $@*Dp@     $@*D@  	   C( @    $@*8H     $@*T@     $@
*Tp@     > 0 @     $@ D ?      <l     vadp@    iq` 
      DD"  
      	   "   	   "   	    f` G    !>B       f  	   CA    !>G|     c|          >      >   	  8$K" 8  	  8H8           "*            	 	    "
"*""("   	  8@@8  	  Q!Q    @D LQ1FD#     @?DQhBEK %? A  	 	   > 0">        (@  ID/        (@  A/         (@  c""(%               Vg  
     $	@$	@/      <B      B<       B<       <B 	     > 0h 	     b0  	      	    i	`            i	`       &K`       m&L      BBBBBBBB$  
   $BBBBBBB 	     oZ-Eh 	     hZ-E     $!*"JB1) 	      AA@`  	       0D
       @(A	"RJR&D      2%)%"HA@
@   	    	hd&DI)	  	    	I$&Bdh	  
 
    `("	   
 
     @0	B@`  	    
 *
      8
PI	""DP      0""HI@       @("@P       0 "	@
@  	     ? PD" P 	     
B"	? 	   
B"	? 	     "
  	   ?" 	   PH"!P( ?       `4 4      0A4             ?     
C?P     *?       f      f        f`?       f?  	   P ?   	    1(@f`  	    f`  	     G  	     G                 ?~      {     H      I     	 	   HS` 	 	   e	0`  
    `$  @   
         
  1!  
  `001  
  1&!  
  `401    @cC`0    `!ac      `0    C     ``  qq    ``  qq    1	     `00 !      ``uq@    ``uq@     f      ``F`    ``  q     ``  q      f     ``F`	 f ``     6|    l`|    f     ``F`  
  11 0  
  `61  
  11!0  
  `61     c@`0    c     11!a`    `61   
  q 0@0    q  00    q 0@0      q 00   	 	    lȃ0f 	 	    3`0`   	   1c@c0  	    A     0
0   	     0 	     0& 2` 	 
  0  	 
  0& 2`  	 	     ` 	 	     o0`  	      `? 	      o0` ?     #ǀ ? 	        ? 	      8` ? 	     ?  	    8`?  	        ? 	      8` ? 	     ?  	    8`?  	        (c8 	      8` Qp 	     (x@  	    8`Q@  	     c0 c c B   	   1       ? L	        2 @      ~ ||A       A       ~ |J@      A!H  
    0  
    a>~  	    ~ |  	    A    ? @         @    
  ~ |ff`  
  Aff`    ~ |      A    
               
      @   @  	     ?`0 	     @0 	 
    ?`0  	 
    @0       ~ |      A      ~ |      A      (@
      (
 	 
    >$1F#@ 	     (F#b1 	   (F#b1@ 	 
    BA@FcQI_  	 
     F#I   	     	      	      	    LAp  
 	          	     P P P P 
 	     @  @  	     P _ _ P P  	    
 
  
   	    ? @ 	     	 	      	 
    @P(
  	 
    
@P( 
     @ 
        
    !	F!   
    tb!   
    !Bы  
    Bы  
     (PB(P  
    $$$$$u$$$  
    &L2dɓ$  
    $BI!$$             `0g`0      0Ds1      1!`    `0011   
    	!$I	"HIBH@  
  &L2dɓ$  
    		$$HH        
    m      "Ȃ 
         B
! " (        
 " "(!        ( (         _        @        q8p       8pÇ|p@      >σ        ~>8        >>?       8?              q       @  8 @        @       ? * p         
    
 
   
 
   
 
  > 
 
   
 
  ~  
 
  qx  
 
    
 
                        `  `  `                 ?       @(@$ B    a@ ```        
    ?            q        QE        p>8p@       P$PQ"(P@     #       #8      "(               :         10      1$a$0     !Ј!          ?@           !
Ш!     "!OU        (AA(@     (B((     (@(     (@/(       UP         /"      !E/R!D     (@/(     (B/"(     )EE/R)D     (A(      /P         ?          p""p      
      p" p    	    ` a B a           $ $                      @ C O   @            
    / D@       ""      
     ' "          p" p        /     ZZZP    ZZZP    ZZZP       @
'   
   8  
   @(xA	"R      x       A@H ` h     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  
    !O֤!   
     &L @  
     EUDH"Dp  
     a"C)  
     8$H6  
    tBp!       Fd  
     8
#(   	      PU"  
     |Lp  
     |L"  
     EP`Dp  	    beef  
      
     8$Oժ  
    ҦT`@>RJF0  
     <D( @  
    t^/  
     >T^D @  
     a  
     8*"  
     VZjժ  
     Hl$'$$lH      2dTp@  
      @S  
     }V0dժ  
     $H2dɒ  
     &LDp  
     qj


  
     DDp  
     &L2dɓ 
 
     P$p  
     ~ϓ)B  
     P$Oɓ     !!dP`!   
    Ye0   
     D"8  
     $A  
     Q4"D  
    p	ð	   
    py 	  
     8$pD DD  
     $$$$$$  
     C\(  
    IP  
     _l  
    J馚    ZZZP      !	Ԅ      kB       EUDH       a"Cd       8"      tN.       Q-      8,        PU"       |L       |LȠ       EH      D-jh            1$zR      ҥw      8~      t^.      }UU      !>       8       VZj       Ii2M$  
    2U         @T       }VL2j      Q]Y]      kF.       cFB       DOH      kZֿ 
      s⨑      }_       Q2     !!dP`lxH@      kjS      .`F      S7AB       Q4>      p; ;       p{       8$DN       P
      F'<      T      eZq      Ji    ZZZP  
    A8CA  
    a8'  
     @ |  
    yQyA     aH       9F<TdL  
     }0P    ((0A    ,((    E(H    $(H    B A  
  !?  
    58aaL    aB  
    aRH    ZZZP       HHH00  
     ,J6l      VJ*(  
      K$0  
    G       !  	    M&L2d|       q'b      1$ 
f       }5j      B?    !j     T     ZZZP    ZZZP  
      8HDDJ1        8DDJ1  
    ((      F>  
             !B  
              `B  
     < !fx       <  
     x@       x     A@  
       
    aa      a  
     $$%$$$       $%$$  
    $D      $  
    )(H      )(H  
     `$B       @@C  
     Y0`      1  
     2bÃ      sZq     0  
   ~  
     80`lp       8(  
     BBBBBBBBB      $I$    a    
  a    
    9`l      9`  
      @         @  
     D(       D(      Rdɒ       Rd|p@  
    	!$      !B       T8  
     T8  
     E&L2dɒ       E&L2d       G     !>  	   B      @  
       ?          
   ADG      BO             
              
                 <D? @   
   <D? @       T!Rdɓ&L-       T!Rdɓ&K`       0x  	     Fcp    "$D  
  "$D  
     <bb~       <b~  
    zY!B       zYB     yO  
   y 	   D$ @     
  !!"@@@  
            !B?  
    !B	      B^      4""""`      4"""`      @"   
    _   
     BBBBBBBBB      I$I$  
     T2        bC       <Ƞc       <ȠD  
    AE      A  
     &IQb$X@       &Ir$X     @$O @   
   @$O @  
  )(H     ֺ     TTTTTTT       G6E#)g#@     <D @     <D+TÊ       ?m$[    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  
     ٱ!"D	$  
    1!  
    c!A@  
     6lDH       D!  	   @!@    
     A@     ĉ@P     $H@  	    GF1p     $H 
   EDQ@       I$ 
     ED_      A    q 
     EDQ      !>R  
    a1@      H"$D             	 
    F#@    !	JR     _A 
    @QED_ 
   ED_@  
      @        $H    Q|A  	  Q|ax         QE 	 
    F#@ 
   EDQ4     P&    QE  	   "!@      H"$D  
    !           B/B    _@ 	 
    BF#@    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP      i       8(        8O*        A                     ׬@      "F1      b)D  	        	    AA      1$I#   	   PC
       
$1A  
            !       8L*        :,(            $B      !	1       A      0 0       
$0 
    0  	    *"   	    B       P@1  	   (P(  	  ٙ  	        	    	    G          &`  
    i i       8(        8      c  
      
              8ۨ        :,(   	    <4#)<  	  !O        A  	    <5#)<  	    	$I       "F?      c?      *"       %QU&H      ʘ       %QU&H    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    	     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP          x 860|~1c        4Q <     >Cl `  C  
      `<}`       `o37 `  
 	     c6`  
   1cx0  
   `1c?00       ?` 00       0燰 > 3  
      <{1` 	 
     `0      b|M?`        ͉6@a0     06@a0      m=1       `نU`7@6 p       |`f? `      00`1      <? 03pjp ?Ç        >6 |00     0 |     8p0`     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP      37c`      3 c01    3 c61      37 `      3 c21 
     0`<}1c      ?3 xό    ZZZP 
    0?0?0 
    0?00 
     0?0??  
   0?0?p80  
    0?0?>     3 `٘0     `6w@0`~`     ZZZP     30?3 0     30?3 0  	    30?3 ?      30?3  0     30?3̃>      30?3 0     30?3      ZZZP  
     Ȍ  
     Ȉ     Ȍ      2`oU   d   
     Ȉ  
     3`oMG( P   
     2`oG;  <     ZZZP 
     a0<6~ 0  
     a0<6~03  
   a0<6~ 30 
   a0<6~8  
     a0<6~ 2      ` lٛ6?  ` 
     aHg0     ZZZP 	     c1f3 
     ٷofmf` 
   ٷofaf| 	     c0 
     ٷofagٖ| 
     3030 	     c1`0     ZZZP       0Ü?0g0c0c0c       0sc 8 86|1c       0sc 8 860|`1c`       0Ü?0g0c 0 0       0sc 8 80`1c        0Ü?0<0c0c0c       0Ü?0g0c ` `    ZZZP 	     a`      ap  `    ap  ` 	   a       ap  |      ~< 	     a`0    ZZZP         	     	 H     8~    	 ]Z    	 i)`    	 ʐ    	 <iD    	     	     
 i    	     	     
 r0    	 B     	      /    	 q    	 k_         	 i`    
 #@    	 ayp    	 ip     #     J     $    	 i    	     	 "Z     T      }UP               H     !     H     !     B     
B      9	$      9$      r !     c                      p                                                  "        "      	    (BH       3   
     !)       
+~     H       0!d               0` 2c      c&0              33?330          33            33?     ~ |     A    %$I$$     $$I%$      0 0      0 0      0 0           
    z`@       i`     i    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP 	    p        |~   @   @                	   @  @       @          H P ` @    $AA    @ D"`       @@  ! R    
    !    	 C1c      @  	  HH 	   
 DRA     
 0	@          @	 " D!B! >    @ !@! DAp          @ " $P     @ ?@! DAp      HH       @ $ @ '         @      ?              AUAA      
BI%       AAF3AE        $@   D`    ZZZP     ?  BH " !       	  	   `0`0      @ 
D"	 ( @ 8        H@!B         ( 		\        $"B       B$ P $AAA P        $$`      D"        "B( @    Q$PARqDA       "       D
J )(	B                       !uQE@    	 &Dȟ           @ B          A>AVQA     @ A DE  @@     "|$~ RI     B	GC       DCdL    	 &Dȟ     `ZRV!1	iK  @      " D  @!$P            @     @           ?     @D         @         "             O!        @   	      O!     
P@X     8?   0 `       	  CA       	  CA       	  CA        !B >"!d      @?AZQDA     D $I     	  $Ȑ!"BD)#Ҁ$ O       @@"D%  $ &p      @@D_$!?HB      1$3I(S R        A A@    	 $D"DI(       @@ @  #DHP         @ @?    @            @          @                x    @    A               x      1   
 ʙ      y @C       ?@  ? !@A A              A         B   
  " B C     @?   0 `    
   `     e*JQuHB         A$E$	%)$H"        ?          ?   	@"       D"!	H	  @     ?@ ABER!E I"T        @   $ D @             Q?@ B      /"|      )~>"> ($*2       @I  @C      DA?          @  @          ~@	 ?@@       B?
 $JA P@       ?(B?B!   ?      @BB  @       @ $Q))IRS        @  AD pp     @ " ?D@     @!!	B       A D px?@@       A D p&@ A          %HGBT%B       G ? !B!"B       @?D@"@@       @ "D@# $PQ       !(PJ
H
֠_߂      BD ! @       ?(B?B! @@    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP                  	    @           0   0 @ & g    $I$P       ?                                         P@	 " 1 x     "  "  "!           0 P   @ @B            @ " D   " x @         
 @  @           A@A@AH@>      @
 P  (@
 P    AAAA       A AH     @     @  
    
&  _          @                            ?       @     ,F @    aax      ?@        @                  @@~       ?  @@B    	 a          `?      `   0 `           G  @    /         @                B@   D       @?A@D 
 #`  	   "	I          @@ !           @@  #`     ? @     A               @
 @      @  / @    P @         D!   @         P @	 " D$P      ? H?      @        BCa!? @          !(AB
P         DDD""""B!D"       ?      @          @"     (     Ca!0O       ?   @               A !@              @            x      $ ( P @@@    @! @!@! @        	 #        D@            
           `@ ; 0 8     aq( @          $H @      $D@ @ `      @ G @                @              ? @! H a           @  <        @   F       @ 2$              p? @   @ A            @   @@0      ?   `@	 " 8 	     `0`?        (@KP       BA@`       ?  h
@H#0             "H@  "           ?@ " D ?       ?@	a   0      A @ @! H       " D@D"@        }@ $         ?      ?    @ 		\     @ @       P          P	 " Da|@ @       B# @E (  P       8$D"D "D @      @@0`bI @   B       0@  f 
  ,      A       @ A !     @@@       " @
       A @  @         @@  @@A          ? H D            @  `@      y $D	 $ JA*e        @  @AD#        @ A  A       !B A  D         BD!BD!BH! X    C!0      ?@ R          ?@	   ( @    @        8"Db@      @ `        "" D@F       ?H!"BD	$$HH!"O 
          
0@ BP @           @  "          @ H$ @             @B4    @      @	ŀX        O@@DA @        @	 @ !            @ $         @`	
$D	  @@      BD H`	@@D @      ?DR"B  @     ` " ?D!B      `DYSV!2p     @!H             AD$0"$N,A@ @      @! D? `8 @@      H"$"H"$"H @    ` ?  ? * "(         @@          @!          @IX     !@  !@ 
   ```        @? @ ?               @ ?@! B       0 @@!RJH @         ?@ &@D      !	Dr@p @     @ ?D"! @      @$J*dJ           x!A    @       !!	HB@!@           	"D$I!$BH      8  P! @@(         a#H`P A A         "Ȉ""DD $ @    ?@B"z        '!	O@                     @@daD P_ P@               ` "      @PXhbQ!, P @      x"0 ( d!q     	?@O A        	(H$"P@          ? #D         @@" @	 $ 0        @
3  
       !!   @             @      ?@  @$I@)a      x 88? #D                 
(	"<0! B       ~  $H @      ?B!C!B     ?       
 "    I R ?       @    $ D"    X            @        " I x2C      	 ! 7@?B         )	J)HJP!B%      ? ?"  
     @D >>@D       H"$"H>$"       @" |  ?   @       ?@   @        @D  @" D       A B ?   @@     @  @  @F      ?@xB
J/B*	5p@      ? @)"BC	 P$a"PC       H13 !h@P      C          ~ 8 L  @     ?B  TX @    ?>"#   @
          	?A$I      ?@0  G8  # p     b{؄ 0 `   @    (e8_ G@?     @B LDo       D! ~     ~!1
G" "&      ? ?RI$      D
R"ʕ2E!.EA       $ @P1C)b      %1Q`1!  H8         A.0Zc$QP      @! ~  @?D@ 0      > 8 Dp
d*p<F     ?B*BX @ ? Ha     @HQG$!KIC!J    $O@	ȑ>|$OA	    RR /"IHF        C !DBAA 1Á     >  ȥF")
B`      ?@@  !!       %M @       G	T1!"Bʆc      $?@"} /PJ?         Gπ=>
m) H@     ; U HD$J    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP               *                   *      "      "  *         *       *        "   "    *          " "     *          " " *    *         "   *    *         "       *        
    "     *          "   *    *         " "         ZZZP    ZZZP    ZZZP    ZZZP          1    i     "D$Q       0`$P8`@Ɓ"  "@ p  	 
  "P  
      @d&	@`     (  0
 `       @@@@@@@    A     $$$HH!"@    !"BD$I"I             AAA    
(PB
     (PB
/?    c9|    qcw          ` ` ` 
          H!    !H    
$I$H"$H_    "D$?    a    UUUUUUh            										     8A     
 f"    
 wfD    wfD     ?ـ@         <<<L0@ 
    <<3<@0     10      33flx8lx      0 b  
     0   ?              ?   O       ` 000 03     i     	 i    	 i    i                  pp    0  A 
    AHD  @ @    @@ @             @        __AA!     

"$DE

PP"$DPP`A           ?       @      @! B ? @! B       " D@"?" D@"   	   "       #b8     "H@             m q  !  m       :dի    ZZZP 
   Eaj$0       ,> $T1`$ 	     @05   	   @$D(    
   @0       	 
   @@@pHC        pt @B> 
 
  A3/&
c        !pA0-"1        y! J@       B<DB&@  	   π@?( p     G x @ 0     B @ 
    @"XH @       @@`A      
P(G   
                    ""       ? 
      Nz @~          rz   @   
      @ @P"0p 
     $! @ @P"0p      p	  @    P	`| & @          |       H(!!K  |     '  >8    8    '!@@ @  @       @px<@" @A       "	A< b@ D@     &G `8$        @cG F8!    
   . @ 0p  	   ɂ`          @0 @  0        xxy   @ @ @        t<D"      	      8@       B$B88       (~@"A <     &8	           |*#!$A$         !0#Q#      "dH0       (t $#$Tp      P(@B<0Dp       4P2@B<0Dp       #BP"A          O
 @@A         $DbA*@!       8 @ @  @        8R@@  @        9RC  @      @B       @@B   	    !$   0       x $"      8PH@BF(        4FQ҂dG<0Dp  	     !D9>!З       x  DL          '	  B       !x9B"RA& 
   @		DA 
 
  xD`        !a@    
 
  zqq     CRIaE$<       	xp 
      @ @Zx      `၁0    LRaaAAAA 
   #@ 	CD       (l A0B$`a   
   F@ 	@  	 
  @        0P)1       &@ p4e!      BA8 9bp    , !;@H ?          "A(     A @   @   	    3	&  
    A(     ZZZP    ZZZP    
 )@    	 i    
 )@    	 i          	0 	   0 @@        	   B@@    
   $ @   
   	    @@@ @   
  AB 
    @P! @   	     < {  	     @ ~   
  |$D      @@H! 
    B|BB$R       PD@ P       '@xp @      !	P@ ^    	    	""	      "	Q"  @         @sH       "	Q$    @  
 	    @ >p      @G @        D>@ @       )!Q	>}    
     `   @ &        L$BL @  `0  
 
   C  P"0p      Py@  @ D        @c0          "	QbG   	   @P$       )T!!   @   
    |!"1       BA
 RPA   `       ?        W >    @     "QB      Q"            HJ!H$@         G      @       	GS <|   @      !@  	   BPDB       @A               
     C90L      <@ h4؄ @     @      A"@      @
"@ @        0@ a@!!    	       @ 
      @ǁ @ ~ 
     %@ǁ @ ~ 	     @           	W   @  @        `	   @  @       P$@    	    @	 (	 H    	    	 H	H   
    B| P$Q@0       PD P$DDH@ @     `F P$DDH@ @  	   τ @d       @0`       @ 
     
A    
   C  @  	 	   	> @         G@  @  	    9      G         @q 	     @   
   G 9p@     
(P        @H	"$D"b  	      B"  
 	    "x   	   PD"  
      @     @D @       $ @ 	   @    
 
     @       BA
H|<!  @ @   	  q!F  	  @ #<D      @	    @ @ @       A@"Ǡ" Ϣ            @zx @ |        @ q   @       o          `        	0 
    @ @ @    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP       @    D @     ? @" 
#        `       @ @ @ @ @     ?BA!!@$E @           @         @   (     "A!!@     ""DDDD""             @     ?@   @          
(PÛ @    B"!          @            DB"D?      (( @       @  @   @ @       2b 
   ADR @                       ! 
   P"H              @ ?        x @  "      !@B       D@B  B  
          	     D$"_ 	   @D! P
     D      
   @   @ @        	 H@"`|         @    	 H@ $ 	 BB            	  P   
    ( `       ?@B !B     H@ $ 	 BB       @   @  @       !	HBB       ZZZP    ZZZP    ZZZP  
   '          	   Ȅ !@B  
    `"0(HD               qA  
     @ 8#!  x # x     ! @  C     @Ap?  
   O , @G  	    /H !<  
   ($8   	   AB
ߠ(9  	    ` @ #B9  	   H"8|  	    ~  @H@HFJ;  	    @~8 @8@DFD88  
   G"@?  	     `(@        QEEQEE  
   B|!DE"|      `   P B  	    @@! JRB 	 
   (A   
   @#   P ,  	    ! *"         B  
   @# @     	   C@  
   @!            <  ! B   	  @     6I$$I$@   	 G>@     6I$I<I$@    0ADA@    #			I						    0AAA@    #		I	I				        O           >          2 $!!H~~$       @  A         "DO    	       @       @  P?      @ 	 	 y			      @   =   	   " D  @           @   @     	 I$H      @       ~ @ @ @ @#B?  	     @ A B        ( ( D D#      PHHT@T@b<A  	   H 8|      |H
H
HBTNb3  	     @""#;  	      '#"88  
    (_OE(~@  	   ABD!DE"E  
    AB"H""     '@$@'D  @$ A  
     B"~BBB~B       	$! BD}   	    BHHyIBJBz"L  	    2HHyIPJPzRL/  	    	%>DG       	$OА! BD}      P _! @     RE$^zI @  	    		  A@A  	    ,  R(|  	    ! BD   
    D!Q!B  	    	(("DAB  
    ("!@_  
   00@G!Ha!       ( `0      0 $	%B!B(
	      0  A"E!"BD
	    @! I?  @!  
     @8  8"D"D"D8  
      A@|         D}          @#	 I$y	 	      @  A"!}       @  R!!!        2 $?UȢEr(D$       @   =!!!      ]     AA    ZZZP          !S           ~    
      ? 	    e4x       	                   A 	    ?̖ 	     @  	         !TIM     ($B       @   L	      BR	L	     
(PÛdƀ    " D@@D&"`        @B         @B 0D           
          @?            D0 
   P"H   &                A  P "p       HBB$!!		@      I$@I$@I#    D@B 	 F  
   B '     0`DA 0A`  @    ?4,c          @      B![9      !      A(e      >"      ~@      ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     @    I$j 	   @  @  H          ` ?       
      @ @ @ 
    @ @ 
    @           @   @  @A     @ ?     @     	
     @    @        DBAB   	      @     | 
       @ @ 
     @   p                   ABAB        
      @ @             @     
      @ @ @ @       !J0    $I$     !! @ 
 
    @ @?                   @ ?    @ 	   @  @ 0      @           @    
 @ 
    @ @ @   	   ?    (?    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  	  vRB    @A$0        	        	    $	D$  	  ' |      `      P  
     
P` 
 	    x@  	   w Ap     Q 
 	  $ H%
      E% 	     `0
?    01 ( g& `	& `@    01 ( b b? `@    01 ( `@ d@`@    01 ( g& d@`@    01 ( `@d	& `@    01 ( d	&@d	&@`@    01 (`A
(a&@X `@    01 ( aF@d	&!x`@    01 ( oPaAA`@    01 (|``F `@    01 ( g& `	& `	@    01 ( g@d@`@    01 ( ` b`@    01 ( a aF!a@    01(oсF	DbF`@H    01(hF`@H    01(oѠFF`@H    01(oсFF`@H    01(`F'葾F`@H    01(hF'葾F`@H    01(bFQGF`@H    01(gF'葢Fq`@H    01(oF⑑F`@H    01(`G⑑F`@H    01(oсGGF`@H    01(oѠFF`@H    01(oрF'䑗`@H    01)`QFy`@H     0
(1lF#      0
g"ZMfJ  F      0
F4i$1 (      ZZZP      
   0o    D       
  0 `    D       J  0c &  D       
 Di%K   D       J 0Dg#F D       
7` CF L D       
!0O`D       
$H0a !# 6L  D       
0H`!C!, D       
7`@ D      0L 0a&!L F      0
H1(d@A  F      0
0aPđ#"&, F      0
 `¡#b6L F      0

"6`@F F      0
3`@ F      0
?A1c#F?A F      0%3f!),B F      0
 ~1eF# F      0!D1>c!C!_ F      0
!20`@&L? F      05c#F G F      0*xL2FgI &IM	 F      0$M10c(QV$P F      0*$LI!h@&L F      0JLDpj AC @ F      0jBZ*k!C  F      0* `A F      0JP3e?JM F      0
B1l q	 F      0
/"Y1aF F      0
'D1$bHV3,H F      0>L2b	F*MT F      0Bj8qS1B F      0
1cF  F      0"3`@ F     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  
    H"$>" "     @ &0D`#@F "       @ (A`9A "       @ (A`A "       @ )0R`	@&J "       @ (0P`A "       @ (P`EA "       @ (A`	#@F "       @ (Q`EA "       @ (Q`=A "       @ (Qc"EEq "       @ &0Dc#DFs "       @ (Ac9Es "       @ (AcEq "       @ )0Rc>	D&pJ "       @ (0PcEq "      D  `	& P     D @ d@P     D @ d P     D & d@P     D &@d	& P     D 	&@d	&@P     DA
(aF P     D F@d	&!xP     D `F P     D `F P     D & `	& P     D @d@P     D  aP     D  aF!xP     DсF	$aFAP P    DFP P    DѠFFP P    DсFFP P    DF'葢FP P    DF'葢FP P    DDF1'QFP P    DF'葢FqP P    DFQP P    DQP P    DсF	FP P    DѠFFP P    DрF'䑗P P    EQFyP P    EР]'YQhՁVD_~     GM6T-` XP     F0`"       @{bÀ{ A      @   0o  
 "       @  0 `  
 "       @  0c 
 "       @Ԕ)2Rdy &ʀ       @ 0 c#F       D  a * "      D@faBP      @$H0a# &* "       D0H`!C!*       0A`"     @ A0a	&JB      @H1(d@A        B0aPđ#"&*"       B `¡#b6J"       B
"6`@F       B3`@       &2	Lg     P%3f!)*B"       D ~1eF#"       `!D1>c!C!
_       H!20`@&J?       P5c#F G"       @1xT2FgI &IK	"       @GH0ba|QUV$P       d1$TI!h@&J"       ITD1chU&&Js      GH`XAR&0p     Da!	       `/E?IbU6P       W$TO3k"ũF#
y      GEZhEPB      a!D0bC A
        AA			@#     HBj8qS1
B"       @ZA0a ? J"      @  0 `@ "       B0>`@      ",`"     @00`P#
"       D 0aA!
       B 0a#HF!"      GhA_      @ ` F"J     Ĕ?`AQ      |(7j߁?JK       BB1l q	
      E%ab!^     E>I&I$gVUYT      B$O12f֑"X       @ (Pc<EEq "       @ (Ac	#DFp "       @ (QcEEq "       @ (Qc"=Eq "       @ #HoE	 "       @ !F4o#F "       @ #Ho9	 "       @ #Ho	 "       @ $I4o	&J "       @ 'H4o	 "       @ #HoE	 "       @ 'Ho	#F "       @ #HoE	 "       @ #Ho=	 "       @ g"EEq "       H"AD$ H"A@    !!A%     %b     %     %b     %b     !AAA%B     %b     %b      }RQI}%RQI}%RQIE&^h     }QD}DQD}DQDE^     }RQA}$PB}DQHE"^     a;
/B(@B      6Z/BP!Jd" D p  
    a"( !  
    r(DaFDaK     %@&
0a
 @A     $A1A
@A     %H&A0	DDA     $G0A
@A     %A1!
(@A     %A&1(@A     $yO0}$@A     $}B&!2@A     $DD4!
@A     %@&0@A     $IO0@A     $!L0
@A     %@F0!
$$@A     %B&0
 @A     %D&!0
@A     $}B&11Q
@A     @0!
@A     %%E&!0
@A     $O0!
@A     $AB0 @A     %@0!
@A     $=N 0=
 @A     %@F20a
$$@A     %@F0ARDA     $@&0
@A     $QBF!6	
 @A     %Ip2
@A     %@&0	DDA     $AED0J @A     %A*2IJP@A     %@&0!@A     $F0
@A     $!B1J~@A     $@&0Q
@A     $AC0
 @A     	%B&
0A
DBA     $G0
@A     $@&?0	J~@A     $O0	DLA     $IBF0@A     $E(IX@A     $D!1
P@A     %O&A2@A     %H&A0	DDA     H%D$7
DBA     %@&0!@A     %@&?0	@A    ZZZP     RL"@     >0        )C!RA`  	a`    | D0C   }QD @      (  @    
 
       8  ( |   A$
 0 @     b       @        (a
!    @ 0      | P|  @"x)H$( `      !    IH	     Pi0           P	 0    @      @HDID@ 	 	       @IH  `    @II  	 	         A}(A)               @$"@$               @>   @   >I         @              @  !  	 	       @D!   @z@I >  `       @              ||   A2tRt '@A     @Ң$z   @*E@       ||      	*U`	b      @$|@"       @       @$|@"   " D!$F        < $D0  AJIPAI@I8O    @I	`   @ /  @    @             @	@	_     @      	 (
      PPEB@@ @IH	Qa`      |P A   	G$       D$p    A$
 0 @    @H@d8      @     @H@d8  @ @ P @      @$A        @          p$   @   	      	       @P`       `
      @                      R` @ 0       PDIH @  
  `       JI     @	$"da       JI       P   @         	HA       A%,      ?5,h   (B*Eb      5?L	 0      @@
      	 x          8A  @     (@
T     | 0 0@  " )* A      !a   P       **   @ (O       	`   @ 0       @ xPH  `  @ xH`    ()@$        @
 P     P    @0  @      @J@P   
      
R     @  @       
P      @      $
@        @         !")*LPF   AQ       AJX    @            
 `      `    !)*A   !   (         
 `    
 
         
 `    @ 0      @QB@ @I	`      @QB@   
 
        	U !     H     @	E!Q  x       |!A     @ W""
\ap       ` 0  o    `     $ `     HH0HH 0`   RHIՈ          @   >I        		$Q ! Q @      @0(0            @AFQTA`    @ P @  	        @ P @    
 
       QO    @ 0     	 Y @AFQTA`    	 	             "D֎-*@,x              ( (|* * ,    D	`     	     @      @@@DH0P`    B     P&  @ ` @      C$ H"G"}") HU        " ""  @U     C$  "!|( @ʠU     C$  G"|") HU     D$ H"G"|"! JU     G  @""|") HU     C$ @""}") HU     G  "A|$  
U     C$ H"G"}") HU     C$ H"G"|") HU     !0"R!H/RJ%/RJ@U     !D!O"D$O"D@U     !0"B!O"D"$"PB@U     !0"B!/"B
$/RJ@U     !H"R!H/B
$/B
5@U     !xP!@"B
$/RJ@U     !0"P!@"RJ%/RJ@U     !x"B!O"H"$"H"@U     !0"R!H/"RJ%/RJ@U     !0"R!H/"B
$/RJ@U      c$$$DDDU U      b">""""B"B>B" *U U      c!>!"!"B"B>B" * U      c #" @@@U U      d$' @@@ U      D!P@e&PB        @ tz2@a      J!DQ!
(`          *R
d蔢RZ8        0B")RC  
  {H! Hn          #V
UQuP         x!@#TR
DjU          8!@#TR
DjU       	HBB$!!	HC      
 		RHTHxUU
        0ߩ-WڤImu֖(rp       @G

((PB"/      BU! o)
)/&)     **?w:'*  D(D$ D$Dz_      @ (O"`A          @ "("$bA      @ ""/"EP^          @ Њ*"jA        R HDQP"Ѓ      `!#h!І"H`      
hq(d
(`      xH`!sHa!]>           'QB@*(ӎ        
  )6Rb:)*2z      @P!@ @          @$"@$"@      ~  'H D@        	HE")"1{`     **        FJBTdB!8        	`$        A"D"IHQDc       Ai
K"E)$R       rA)%xgE"I)C       I $KI!D$I %      "PB)(DL          RJI)$K,l      BtR2HI!(̝       R"I	((Ц#L      8  !5	(IBJP      Rb&)1I  
   "EJI(Q$ɀ        ѪZZZ      8%`+X
U         MDVBЬEa+P       <  < *TRJ*TR@          x  4"TRDJ           Ȉ          |  !4DTASBEHJU        <  < *TRJ*TR@          8  4"TRDJ         p  Ȉ          <  !4DTASBEHJU       
%@* T @!D @       ^Bz@U<	 !!D @       @@!8       B	S8d@Џ#F       Cd
8b@ď#F$H       qB$	8g@ď#F$         @7%8cёFE4m      LR*UP;@` BA       <M|UU`;H@D   
  (aA	AB7        HbAȁD$1  
  "x(D	H^ހ        HjAQʁT5     @A(H"SK         @d$QB"      ($H"D(QC؈         @ ԊU"E*P       `A")"R!HB        45HI")RD    DD@+(Jk&K	 $        DD@+(Jj&H"$     "D	QD%JH!#H         DD@*JjJ*$       #F	QQ"%PJе$@       #G9URIJ	$@      H 
H* DHc       qd*U AD)L^      aEATREKU    QS       8r$`A@'        @  vp!`C
7      p @  v
MR"CHN         <   "@D
!       	$'HQ!!BA	2    <   a҂*a           졈8      Ha!H! H!           $!!	~B       	
"$
00PP      Pb&:*V2IPb        OD"ADBa`       `     bHI!$~I      `   !xHA!@     ` @  q)R(Q w        `     $ `	B          걪       0@ J*DJ+           Ī$$$$$$      Ha!`!`!  
  %H"TSH"U         #)FRܥJa#F!      Ha!	 $(`!      xZ@D      <   adhbRD"       B"EKȤSHU"DD     $AD@T!QH@V      $ADAVT!QH@V       H"AD H"AD     a!AA    aa            a    !!AAA    aa    aa    LT(EKQRT/D     DdQ"HED$Q"OD     LT(EHDR"D     LT(E3QBP/D     RT(E{QBP/D     ^T"EsQBP/D     LTEsQRT/D     ^PHEHDR"D     LT(E3QRT/D     LT(E3QBP/D      c>RJE)K)DJa)̐@     b>X"D$#ȉB%"`?ܐ@     c>RJD)IB%"a	?ސ@     c>RJD)3)@
a)̐@     dRJE){)@
`)@     gPBE	$s)@
a)̐@     c>RJE	$s)DJa)̐@     gB
D)$ȉB%"`?Ȑ@     c>RJE)3)DJa)̐@     c>RJE)3)@
a)̐@     c>RJE)RK)RJe)@     b>X"D$H#ĉ$H"d=@        @&RD	Hb$IɔMx       @ " D  @ " D ?      !BD"HHP B          @ ?   @X"$E         A       @                      @B   B@        @!@        ! BL   `        
 " 0   0D          (                 `          ?    `          \	 E@" C    ""            A D pp   @ 8          0 0	 #       $H
,ņ  8      ?ࠀ>1  `       @!          ~@	    0D            `      $!?HB ?p '      @     A	/PG      d  8      " $T$F`   `          D            8     @! QOPB  p G     @(I 	I$TH "Y(!T       DĭPP p G      AA   (8!    D>>C 0  '     A") DD"<        OϪU
(@_H Q       </	IA?	   8      	$$p!      @G>
D)SA_Ҋ)"Q      S}QDr=k      ;D$O
	`       B  a@  ( @     |Ą
  @@

      $$HH!'䄉	HH!"BHBB          B!B@D`        D!E!AB            " D@"PD         'H!>B       D $1           $̂a      'DATADDAGD        
 " 
bc8  p       @! ( @!@B!
       /	$(H! B@""D      " ?(U(@A@B      !  @ A P@       /! F@)$ H  "@D       ?C!@ E@      " F!* @!@B!
     	  '@? (  @ A D      "@D"U" DA$Q      @ ?DLR$J( "@D     . A")!B A!
      ( A2U)$H%PJQ@F       /  ( "@D""DE      / ( @/A P@     @! (P!@D@(I     @! H#?@ADEDQ      _ ADi$RQI$AI      H"	%}h$$K!D	HB      $ A%H$PH      	  $ $H( | A        (! F@(H! B@"BE      " BЃ?@@?     @! $H) @D!""D(       /P! B"Rt%(JP"RDJA     @@ 	$)J%$RH"
     B
('Ji)$JI)$      ( ?D)| $@H @      @ _P 'AA
$       I!$$$&$  @DI$D     @@/AF)" B@     @!  @ I@ADCP@     @!  TH?āH?ā        A@ " D@( p      " !?L+!E!"B        A($"HD!A	      @("&( "JA0     " DA/YI"EI!B      /A?A/@`A1      $@ARI/E(QB(I	!      ?R$I$RH$O A$M%H#@      /II%LQ*"R_I%D	TH     @?*" C$      $8IHd#H\!B$I
      /A?S!B B     @ I"J"V!B B     8'?D(" _	!
     *!*R(c  @G       ^JI)$Ji)$CIJ$b     	  $x&"LD"$Hh}J     	 $@{"D)*UP̑"D     $B  R"$DH""DD      /ࠄ@RQDIDR     @@/! F)$'H%A     8'A?*V##@@?P@      ( A? @)@ 
"      )H%&( "J `      @@?A	f+#D !
     @"(( E !QB<      $ HADR%|R"$D_"      /Q""̈S  @ B A	      (?("HG?      ! ?@)'H!? B	     	 (  (h!`DA
B$E       "@J)` _I      @ ERR%H/DD     	  /%&~L 'Qґ?"DE     'A? *"$I`?"8       '(& WE
A     	  '_ (D#_QD!A     $$QQ>Y'$@OQ"}ITG     @??A(  OA>
        D?         '_$(" OA	 D      _ L
IR(F ""DD       @}"MUW*U U"E     @(I!,Q#@?      @$ / '@  	     H) I! ?IQ$#@I      AD Di}$DQIE%AI      _DI%E$DI$D     	?AF~((! G!_       @z)P'I@A$yDa!     	('H'$)T("I T)      ! 4( @!
2c     @@$`1 ) /xB!)B      " O5BUQT"EP *J      /B!쒙)S$O(Q&Bx)a     @%@@F>D( _I       /xJQ5LkT !B)bR      )Rq~I'$I(Q QE	"     *VH* S$SЄ	DI     $@DADI!TD       " A)P!@N{(P     @@??(H"H0     	 'xADF )"(GЈB"
      /P1"W2R?&HJ!"BW	      )HJ"(S @G?I      ( I Q"DA!B	       /R%"@!+DH     @ @_B"LO2S!~D!{I	      DAD#&?#$TAI     /DA>DS$WA      /xTQ<HES @  "      " HKXO$_TRU     >/I	B?P #@ B?J}      /xB%")LHQ'T@?D      	@)!4L)֒%H_!
     	$ ?R)('H!*RE
c      D/b" G=JD     @/@$Q"@G*
bR      #xT=BIUQP'A@{      <xB!TR,U	">_!UbyKH     @!@DABl U.@ I$JJ     @ @_%BOR%|J*EQL<     'A!(%(Np9ZB     P'UQ?ULUS  O D     (_"" U/UT     $(~A)򪍽/"(_|UBʨ     @+dIMm6ZD _!/$>A~     $ O1P&dC@!}Ȣ     E3QP>  GJUpY         ? @ B B      } @ υ
( S@(       >|D"$Gυ

((PQ)*Rh@      @ 3_
%(RQ$AA(       'B"?*(QPA@       
 " 0              
 " C0( 
  ` p        
 " 7      `(&I5U` @       
 " #4E?B!      $? H    P     @ @      ?DB" '  @      @  B1H1f0       #Ȉ""||"/AA     dD2!d?  @     	 %@    F      CA  @?A$8 E      ?@ B"H?@ALa     ?@ B! yX=$Jʔb     E_@
O$K         @ @@@@   @        A        
d(( Q,2@(       @@ >>"'Ȁ      D!BOB$(aSF$L"     @ G  @@        @ A!D ?        A@A	     @ O  ~	R!B? B           A!B A     G@A}P_IER_I$P@      A"D!A	      @   A	      ? "!%@	"$DI      C@ @ 
B A6     GJAEP_IER_IE$P@      A? @$G? @      @ DP'        @ ^'B@	@`b3L)@       @  E
R%Ȉ/DD     !$@{
d$P!BH       $A?A I$hQ$BT'J!     GH" IHD       H ! D"T@      ?@B<
&wЄ)T$      F$0(b#        B	$ B	$ C @     BD!BD:PAA        	"%A	$@BPE		@B     " H$"H"H"!`        $ _$ D!BB     @O$BO RH%"	@    D $A"	L` B      R	$ B	%$RAO@     @HIa&HD!'HI!HB      @HA&@	>$"H"!@      $ @	 %PIA@     $JI*$ @I$@I@B      B	%PIA%PIAPB      @HQ&"@$ PIAPB      $J]&"E	`     @HIB&JI)?JO$)`B      ?D&0LdHGB      D!%D$HD!P     $_$@HA&DIa      _A%_鈥"JP)~Q@      HI).H).K )`B     $dI$J@	"_H"P"      B	>&oo>	@     P PI RJꔪRz"VB     	'H	?jJT*eb      |!B$ H!AB        D	%TRUIU%,`"      He) @	_A      PIIu$RJI#$ `"     @PI%PI$ G	*$B      PUIw$PB]A%rE	|P      @U)e%TI`JYID(H"     >_H<QH%PIZLB      He) $ R	H>@      G	+'"BHI&"JI"D     $_$ `)?$ B	*$D      !)RQĥIPR%?J 7`     *%$JHI&"JI"D      _A% %_$F     (TI!%z
O!$HIH     P_TEH% ԉj	`"     !CD U) @0      ()J_	$*'HpP$Q     I'Au҈J"\*UR"      iIZHI
_@P"     	(hI@ݑREIy |IHQJB     "H$PzE	%ܑBE	PAE      T PRJ+V*-h*2      +TT $I'@       ^J%J^) %RUIU^@     .Ry%4C)SIB     BPD)P)HIĄ`B     RJ/>"|  @0      @	UGAI\)$^z     !B/B
w$(Kސ!~     !HE@ @0     DBH	!7H"K-Rb      8 $ BD"      @đDI$HJF !        @	|$RAID
D      @đDI$HJF    @      $ HC/R_	RIH5$TP"      @"$HD	&H"dG     B $BI	$BI	$EJD      8B	>$"H"D*D     ?   !      < H($ ~HD"        @@$IU'vL̘1b      <| J뤨ZɪD!BB    AA$QA	GUL@?@B
0      !"B_ɉ%$RPI}DD    A?T?&	? LB{F%@D     !CD U)@0      !BK@UWUZ?~@
"       HJ$o*D      "E(e$&@Oq>e*     "  CHD$I$J       CR$U%TJ7J      @IQYADAD"      @ȁ_A GDU      @ȁB O*&II*          B #$P       0C! A     @     HA!H  	H)<Ă*     Q'R~'@GQϽJTg     ""@j #" #    D!Љb%HRB	D"C     P&\u',    %PII$RAYEf    %TII$VAYIf     	$DDI!     )$)D/B ?    !22;行+"!H     	 @$RaI$#     B	!V)G $!     @AADDBD!D"        H @@ " C       + @       @      !#$4QB     @        @ $$I>H@    P        @@p# X@         ?OB        điD!D$DbH      ?A 
"
BC _A        ?@ ?"D/B A!"      ?@  /A @      ?@ ?DD"$DO       ?@  'H $@H      ?@  "D A	        ?A  @B&Tȁ(`      ?A 
"
  OA A!      ?@ !"	"'H"$DH      ?A A@ _$*       ?@  B	 /@  !J       ?E Ĉ$@H"D       ?A Ȁ/@ I$O       ?@ !B!
R/@!0D8"      ?B  Bs	 'PQ*H       ?D" E(_(($8K      ?HA  ^P"`c     ?@ *ND @_B#     ?@ AW_˪U>D QITo     @ D @ D      @@A	?~* #0A     A D#@@? H}	         @@A	?~ `p"	B      ! (?IQ=$EB	EQD     ?  H@  " 
 " 0     ? @y  f8@  0       B @ ?   " 8`         A D pp     ? B"BD
5(j!TBIr      @~*SJ*RHA     A@B@QD# A D pp       !(
O	I(,PG"EA      < A(OȀ?B(QC"	!A      @ O  @@       $H"$"H"%	$       " "" B%" @       @@   @   A0    d$ H2@$ @ @     ȉ"$"L*$#ȉ"A	$ q       @%BA	$BA% @       %bI$ BE$D      'H	 $HO!$@     @	$$"RII&"D"$?@      x$ B	'E$H @@     @!%
`"$BE$P @       "2	Db#F      <$BA<$BA|$ D@     O$@E	$PBE$$DC       @ 	$8HpQ"$          I%)QDe)'YAA     P H"$"HBA	@     	$BA	?BA$ @?    	$ _$DI! ?     @<!' H2Ad A     $ @	%H"$@     O D	$~J/)%(@"     |"$Gπ                    F@A     ?dY
eT_@e       O	%RPIA%PIB=LH @A     $"(   $I8DQ      p?  H?@@     $$BI$ _$         $L
B	'D"$$!?B     =))IKRR<% 0`     x% _@% WPB	$!B    |$$&]ۚL|$$$!     P/Q	DJ]OE%$!PA     
$(RJe)_Je)    	$ RJe)ҙJA)P@      d         @
$DJQ$zI$$@?    ) 
@)!$D@         D @  DK!">      O	DD   &HO     " H	 O    ȑ,DQ      &$HO@@@0c8" D      ) 
H)?C  @     |#   A  `      ( '"TReITRD$Є!    O%JA)B_dQT       a&HL B$        	$B$I D      ? BBA? @         A D@ ?       OI%$B	$b?%         	@%|P	PKIRH	%!@       !$BH%"   &HO      _!"D(   &HO      ? ȑ,DQ           &HO        H  &HO    ) A	%GҙQAP@      )"%'$
  l     @(H)_d _$D         	GK2&$" J        @
*UIU#ET)"ZIÀ     ? D %@? ?    I%VSDe9W9TA! @     CeqFQYdD@@      @ 	?I$I$ Ä$       8D%BTaeH/  ?    I$@IG˩ D       zR)zR*KԔ"W@u@
      ( '"@ze)Rz8D!     @?B_$G1%( @1     @:P)@@$  3     A
"$J#AIE (         @   K)K J@    / IH|@ >EȘD1    ȢY| @$'H     " e$0,         $DF
>"E &HO    ! D H& ȑ,DQ     䈑D	?d %    I!$O!$I  @     BBJR)KA_     ) 
H)? 	$ @      %Sx%"zP_@$ ~      !%DI!%"_U%TPA      @ 	?%H	+D " D      "A
R%$J0AC
$     ODG$DA8P	 D@    	$
H)?)   @      ~	
?!B @ 0       &RLyR%%Kɔ&Wht	  $       @ %
JJjխKT{ДC    ҙJeO %	? @      @$VA'H/? ?    )PQe@@    ԩRJD	' @      ?$>I2LS*tD"    ODA	?JO% @      He!P	G'Щz( H@    I
%F_DeG	!A         O" (     xD$$<x   (aC
P      ?_@%@YD%@"	     ?䁔
O$DA/$ @       8	*$J#$$ A       )*RoL A/Ä$     $4JY$ 	$ @	       BHQ&#_U%TPA      {E#(Q_#! B       	?A$I!KĤQ) a      CI'I@%(@?     %SxQD!     ODDII/? "     x<<#(%IB}(@      @)$ROI}I A?A%     P/I)?I/%@	      <)*D2J$#5P>	@     BBJRH AC
$      #|IR$H A/ 
 "        	~$H      /$ A	$BA H@      N)?Z.
@"      A@'  "DQ    BЉDB ȑ,DQ     A "(O"H DK!">    8N!/>Zk媖^!k$B"    PNTV; +)$@K        ( H2DD*U     h	(
"h(      >C=UZUjUUWuaI D     E
_$DA/$ @     􄯧DJRTL $? @    JdB$)?      ZMzy$BB/P @      {*TI!%z@ @@     A B i ? p      8$R_$TJQ$DP <       @ (W"E!*(R A     @ ?Á3? "DQ    H	.DZRk"K(S    	Q	R'A      	'_'_I%      {E	"%@ %@     	'|ye<I)'̤I A      #EY"4$YV#@R A     HOf`)wdT\GPU      @JdO
%O H     	
I}V"EJU+Y@    	
BH(
D(Q     
:+ޡC@      	J](TR꠪
P?      	Kʤ	"$(KA' I       W)K)z^J#Q       
3)JvUkV_S}P"E@    ?I>j	B	!P     A%ܔPI$ JpA      J_	?%HA        䄒Rs^$RTP     $B	$ĕG$DP <      Z_STCȅ"@HD     @D0\)"HU' D@a      @? (WOE      
ȉ* KE   I       
I9KʚQ$wU '     #|IR %JR)KޔR       B5(P@A_?      (j*h .      Zqk_ר-jP!D     *J'(SOے5?@HA	!      @5kUUWMV      !/B  	'?	܈>      >N*j
"
      } AUW
}~#P!eDE     8@F?I*P!'@DK!">     {)Q_eU__eUUA     ?i"+h      ?%^yJ%F_ %(      ?"J)jDR?Mb 	     	K){ҔH$C ?D       ! O r~WT      x%. 
*O.+Ay*     GE jIUW-UP!ZCb     c.A)"P>Bg     Q)Gu~@       `?F$0(b#!        a&0LBd%       b#"1d#A        a(Ć5E̬De@        `"E-h       d0IdKA        c2	̂g G    rUXUb%Z        o2d8%|F"Y;0      @ADDBhF!"      #@ $ @@ (         @@?DH"RD) (@@     " D@?v" D@(2@C      xGx  |O(@     !B Aߑ"D!B N! B     ! HA!DN       A $?HIA B	~(D@      #D!_ "@D@ A     ! D  	D B.H      " B@$H <O         @@_$"HO.H E        G"?H #D!NHBB     @ #DM     ?      !BH	%I<     ?     @ A H$*HD.H%        {)?    ?     " O	" B
"       AD'!!?       Aux>     ?     ! BP/"$DPЎ!(E@A       G	"?DH""D)^0(@@     @ GЂA@$R  H 
      @B "D AP>PA      @@@@_   @@ (        #D!ߠA  @G       @ "A	!@#A AȎ(BA      ! C/ߐ)J!D 
      !B ߠA A@	("@       pG D" O	!      "$DPDT  @G        G!B  'AANDI@        @@@D_  A A"HHA?!      'A _Ą	X0%PA.(D (        @@?H"DDx׎IBD     P A@_UT"uW   A       C?@"DA!Q       !OA"D!r'   A       @G!?$"HEnH$       OxR)   Ox.R*#      @$ A	$I'JW$DTCB	!      " G_ߠ! CN) f      "HD!߀@#EPH*U       ~   @?A$xR @ @      )BQD?   ?          ?     @ G!? @O"        G"? !CH E       <OߤI 'H^/@@       G!B?I  O."R        GA?JH  @N 6     ! ""_	DA%L":DĖx  @      O߄ !D?       ( HOߤ"Hp'	           ?@ ` @      @C{R"CH?A        G!ߠ @O
$     ! A<I%?{Ȕ)#D<IҞ-(j@"     x}3$(L    ?     !$BH!"_)H*DqҎ%V       AB""Fd۾"(D@       ^|	(P^W
D(       @@$?O"EN_(        @H AAQ	) a     (H>I0  ?       GA%?JH(#DD"(D@     "HDQ:$$/D@NQH"      @@Q_A	#D$Q @       G Ȁ  CH      ! Gߤ" p  ɀ     %AW
IE  ?       _QO}$B*UPDDA"I	!     "D yBT_D%@  A       |@#B"-O+~         =*
_)R!D @       y?y>pTR0  @      @@@B"^O2!~D!I       @$ ]u%H,A$* QA      ! C!?(d "D /Ȑ?B      '@  	%J("h?      @@ "H?@?@@ @       G	 ?B)#BI T)     !(CTOȉ"DA!E A      AB?JH #DN) 0     'H@)"_߄	%J._ȑA       O/R^I$ KRI_B	     #D!$I /UTUCQ       @@:$U#ET A     "H0oJDɉ)(G P @     !O !OAxYAa     !C؄)?ORu$
O7?d}DU      !舻"de EC      @O!ʪ!OGbR         DG! C?        D? B>
@#        88 "   ?        ?$08     @E!BDG@Q  p       @@!B @@      @±bd        @ B/|N$D@`       QIIvAOtMRUU]	H!q       C)$$IN '¥@BDH`       C/ O'B?"`       D`  @! B         D` AA        , 0  D`     ?     
 " 0       $D)(
  D`       DD   I @       " 2	 ?    @       " 1HB
          ( p      " 7?@@?       @@ @A@AA       !$BH%"  D`      " C14@        " 3        " 0) } !Aʜc      " 2 `_?       " 2	~@qSDQ$B      ?"z z( p      " 0 ? !"      #ttQSE@     ! B!BQ"L 
"      B pb A p8     H A~ B@HPAA$AP      #@	$ @!(        #A OĄ	$$H B!B        @@	 @$  !@       'B@	$$ @a!A      !B/D!B$"H% D      xGx$ |(a       GO'$BDĠB	E!      @A?HI$E RD)B     @ A O($P@(aC         G$	$$H Ra!       G!OU%$HPʠRb      #@@	R%"D       8C	 $ B!       @@	%"H      ! G%TRUU%SDU)U)x5A       @@	H$$HĐ"I%       @ A/؄	($!       GB"_@%'DA)_A       @@A H!ID	")(@       G D@I}%$RDE(B       A y)JR)JS%Mi		DA      #AOI^
$ @!(       ?B!!   8       @I$RII%$DI)%_A     } B  C!  8       #D/D($P@(`      @ C/Dމ%J$PB(a     BB_$ (_      #@D*'@!       8GU%T`      A#A*
A p8     @ @@	(Q%0@B0@      'B Oτ	"|$8!       #AOI"$         @@	D%| @       @ GЂO@% H
       'A@ĪU%T0"H       !B OȄ	I%@BHa       @@	I IE"I)"SP@@      @@AOH$I$A@?	@       @@	I%$T A      !B/D? $ (a     ( H@	HY$Т"(!(        '@ĤI%$H ,      &B A p8      #@ Đ!B$ "!     !@ЀOIPI!'T	#I%@     @ CO	6$@        !B Oτ	%$Ha@      @@!/ R"$B 	
 b       @BOʄ$         @@	ҀI !@	(@      @ @GȄ	$ @!       G 4 RII%$D)%R@C     @! GO߄	~%`B!      @ $JT	("A p8      #D/ĠA%@      '@Ą	$B B     ! COI%$H A     ! A|	)_REJ%J) )@R     @ @OD	  ' @(`       CI%@) `      C"_A%%$DI(Q(@       G JR)K[%II%)JRk       DNЅOʄ %H      !B A{"D)S*UQL
"D@      "HD/Ā	 $@ "H? B     !AA	$ @	$`     @ @OD %HE        @OȄ%$(a      !B/Đ!~$@R(aB       @@	"$J# AG	      !B Ȅ	 %H      @ @OD	D% B 6     "D A%JU*UU/Jb,*U       #DD% "Ƞ       #D/ĤI$ H!a       '@ĠA%"Ȁ!"        " P"@       BH!	/) %J%II%)QR     'A/Ȅ	%$"蠡E       "HD/Đ	 $ H" A     HOe$ A p8       @O  %!     ! CARSJ%%K%	DAC     @ @OD	 %H        @@d$H!'@A      xGP%,HbH       @@@	$*$K BCIDR@      @)A%J%JC.CR!      APO  Đ"I%       ! I$KfTI1%$I       @Oʄ%H      #@A p8      A	g@$I="D	I$O@       O!\J}*UU+Q"_J     @ @OȄ	"%"Ȥ       A$I	'T$@"?       @@$  ")Qa" <       SAeD?T"A p8     !$D!	/A$ K$I! )@R        G/I%~H"!2C     !A!  "$PI*        GĀA~|D !FB        GĢ%| "HȠ"     'D	|$ē!"      !B/Ā	%!!       "HD/Ā	 %∈      @H_?DB$D@       @#8D/ĠA$B!B     !OO	"&  H       OO %`      @ 
%| 	R!      A R%JK GC!~@      @AO)$N'!LA#80C       x@$	y% HQ      @@@	Ҕ) Ha4G      @@@ 	?҄'J}$I$IHA"     !B!>OUY+UI/D!>BJ"I@     !B!>I/R'IQB$	D!       @!	/%HQ#EQcI?A@     !R?H*'       G!}R)R')JQB8Ҕ)@a      $DOȄ% @!     !$BH!/I)RJ$Iq%	V      #DD%$ 򈈺!     !B(I$%TI)"I$ T)       GA) $I#D	@       GI $I"	G#AA       GI %I%/y@!*@       O1OT$BV-Q_$BIJII!       G		J%*𔂡      @A DR9J$@	
"A      
$(A p8     "EP_Du.
T+UQ*BVB     ! C!?d  Ȑ?B      "HB$	"D$ "Ȥ       GЊ!~ PI*       OI$]*T*T)%_9  
$I     !$Ba߿*@$      BG8AIR%J'H IBA      @_? 
+P99_QU˒U      @ U$ JE"1IC	Q)`     !O!I 'L#D!?B@      @O	%JA'@*
bR@     !D /D%I$!_#?R     $_8nު
VH      !HE@      #DyJRHI"!O("     %(O|!=RQJ'H IBA     $DIȨ)w@K]WpZ5A"R*VB@|     !BH	/URUK OS"A     "        @         P!& 8    !B     !@  @@
      >|D!0B!B?ߡR!C!       ?"I   @      I~$O1HD!B$QB       HA!?I1%A@	TD        C* T|	P#"T      A#@>~ D O      !O ?A0@ B         # Ȉ  ||@@     ! O r~WT          0                   0  @   p        0         @         0@@   $ 0       C  ?  '@           @  @? 0 ` 	 !       @P4Y "         0  D!$ 0        @   @@(          0 @?         @P          @ H  p      A 

G  A D pp      ~C @ Ѐ <       C?DAD      G    ?          G @          | "x)_          A S$I A1A	      "DG          A?~ 8`iSDQ$B        O <x@!D ?           F       B$          O""D|BEA       G @?H>        O	D" p        !       BD	IT< BRDI"      $$@ ?@ 0       RQ  ?      @     $@2       #D?A&"*!       BH#A
DA       '	R0V)_D#        Cτ>@ACHA#       !?A+S"O        @"ϒQ? D|P EQA       C  o 	      IJLHID@@0      ,_䈉?U< 
CĈ*"      L
;#BDJ$	,        @ 	HH$H!0@          	"$$HH!!BA(P      ?@ C   ! ! B        ?H!  !0?   (       ?    |  (       !" DBp      " ! @A!CF"?     "(#@AOET(PEQ
     "D#AA
_Ԥ)@Gx`       C
( P@E) Q        @@/څ
,)$THB) Q       @@
>) T@O) Q        @@	/҅$
~)PR@ATBЩ Q       @@
D*XPB") Q        C!Ѕ?
 )RG) Q       C	/ȅ
(HQCBi Q      (@H	!?A(|PB"E/Q#      @@I})RB" Q        CE?(pQPQ) Q        @@ȅ)(RPIBR        CE? )"R(!L") Q       @@@/E?@+TVJI!       @
@)T@_) Q      @Q	/J? (|P @I2RTC      ?@  $D@&     ?@  @_(        ?@ % D@%B)       ?@ 
"D(_@) a     ?@ 	@ @_A&     ?@   HA	        ?@ 	$P E@IDT(       ?@"  /"H
       ? (`"  –H
?     ?@#$`"@@b       ?@A'H  A      ? O (Db8      ? O " (B*	$H
      ? /0"-P^
TBQ)@      ?@ x!~DT!&     ?@  @Bq"$uȈ     ?Ȣ$(I, HQ?DH@     ?@bG?$TY$Ё/DH!      $""G
)MF' A         ?@"B
,i r$U       ?Ȉ/-ؠ" _c     ? /,A	@")(@@     ?@ sB '8D vDb#R        !B!B?     ?      B!C P0@! (        !B     
 " 0      B!C    
 " `      H"*H".I$!       "B?          "
+B
.@       D!   @Q$ D      ?   @ ? B!B        B!C@ @  `    C       !B    ?     ?       (  !B!     !B!  @ `      O @(B/      ! B
*
.@        ?0      A@&5IM_p        B	$J*$z. @      >"*".
P0      B!C@ @? @   p     	J*D.Ƞ@       B!C  @     ?      "B?     VD1 @      J*RJ. @       B!C  !  D`      B!  @   (       ? @ X*H B        (@H
D*U%TRԌ E@A       
*J.ʄG       B!    @@A D pp      p?  H B!        *". B      R**
*        @5}-Qjt\@    !"	 
*~B
@        B
j.H BB      A(QʱjTԇ!PB        @$J*j9B
@      P"
*YjJ.D         @@@U$*T!PB        8J*"
@       ""*.H$A     ! B	BJ*RRd[      ?
꠪
n
 0@      @x*U%*@T Q%܌ 
 b     @
D*"
 ?     B?$
*
.@         @@
P"  (        B!   #     !@ЀJU*P!W,@%        B! P        #(D$/H        B!  @   A      E?}UjY     ȒD&AUjuܠ    !B	J * ?      @0 H AA@!#      B! "}!sA>D    |@'!T U򐔅%E     ? +
 ?     "Rj˨.P @      B!   "B(!       G	Z5UVܠ @@      B! "H?@ALa      B!     ~@	       !B(Q5$jJդZEȬ /H      B!   D@M T&9C       B!@@fb08 p       	   "   ?      	 Q  ? @   (       @"$
ꪮʨ
*     C'K)"S
0  BG       $*.(
@0     ?*f.H @       	(!^? A D pp       "*
 ?     *jJ.(Ƞ@       	  ( ` q       G	 
 TP  A     !A! 
*T!PB@JA      "*.ʤJ       GAJj!PBÌ$       @*UU"PŬ$@      B! 	    ?      ?	$A	@HA    !BDB*
. ?       @* T Q        ~@9UZUjUUVmI D      	!??"  <    ?I)?A BG       B!τ">KAEBA      
 
P	 T@       "*"ꪮʨJ&      AJUTDU% B        a' "      @AJ5TĮ'QE, 0     !B!>IWWUL	!      @@@J}#U-\@@     ~&ň@@C     ?%?@TA       GI *TRJ        B!	? |P@E
Rd       GI5{}#T樍@@     @(
*       @@5O*UTUڬM     !  >>      8      B!D?!>D AAA      	DH@! Lp      A 
$*TR  ɀ    ! J+RJ        	    o 	     ?"O@P~       _Ċ	ZUkP\T BJ      G!5? UAQFU̵@@       B!D>PC/D'	    / _I1_	4Zz	Db     A  @@x!'Ă      @A Dj9T  A      B!w#AO       GU? US,f4     !DBQ*|UEWʢ,@     !H

@     " E|	)RRLK@    !	j
꠮      " B*"
M
"NP|!B     jRJT@$0      @@U~*U~U̠ U       G*U!W\@1 a     ! t;       GjU}UwUTEԌ$       GU;"UW%@1  a     'H"* +UUV       CW@?"       G!]$QWE (     !TBHy
IT},@A       A   	 @$$$PG            ~          }" F@<A  ? D      |!B AϜ @  D8     ||  @@   ||  @@       " (Q? >D A!B  
   (
      $DDa  @ @ C     ?   !@?A    B?JI*$J	(%B        
 " #0A" D@$ @       Ԧ5)MBjq          !B" @      @>|J*DJ.E!R        DB*.$ B     @>
*
.(!B      @
>(*jDJ.D!B!	     @>TJjJ*.  	      @ $@@?"DH   @     r>@
DJ.D!B!	     B*(:.       =#II!L !B" @      ""(|_ B!(@ @    $A$A8b$      @(*j 
. "      OQ$(LEB!(@ @      ">
 RJ.T!PR%I     >j&n#     @B*$"n 0    ! 
* .$L      $>RJ*RJ."tR    ! >"ꤪJ.(! "I      G'r*U9WEĂ
DȠ     B
*"?ȁ     @(*jJ꤮ D        ~ڀ*~
ꐮ~!"D      ?@@  b3؈$ @      BB*J.1#	      @A@GJu *U*UWUҢ=DHd     !AGxU*TUޢ%DHd    !
* EE$"B	D"      >>"*ꨮ""O"       G
*TRJ?      @IdO)
$P#%D     !BDR
J* B      <>
*#       @<_LU*IRC    ! >ꊫ.l"
(     @?*
n"02H    !BDJ*'""    !BT"*@
.T!PR%I     ! B wҪUQ*BUzPI	Q@       HJU>TE!B	        CU?T%S:      A ĊRUJPB!~       OHԚUA+}TT% "        G*U@RUڨ"$DNe     !B* *)PE      A#P	>A$ID      PDW*U!S
$      >OJ+T PB?J}     @?J*~
ꐮ~!	B      @@@ZUjT$RD?"     !HBJ)*TkRBsH	!     ! O r~WT%D       >O5UwUޮ2/	      #PH ""DJ(ߨ@      BA_B%$DR    "I+"R ?"I+"R ?     I B]WH!(B(QQaA        	@ A(` ?          @           $ P@B#        	? AA(4S        	 $@O!A(Q        $DA '       D	$$0FOA4           	$H DB!        "E@ADEH   @        @1B   @          #D! A#         	'H!?  '        ǉ)R$IH5R$B       
"(_B:@         HO?          	'I!"B        B" $DH?H L        $DH
$         BHh# X4D `        	'H ?@H       	$O	""BB          "D! ADO         /B ABB        Ĉ$DHG          O?@B       $ 7H?D!         ?L<T*BP       (?@ A"}         '	T4HK<#"YB        A
T*UPWD"
        D #D!
"L         @Bq""uȈB       
c} 'IH%"zH%B        ?B("P_O"I<D      Ĉ 'H$  @      (BSOJ?A      ? "G!	         D	R% X A$I!        B"DR$"J!{$"         	$P?I !I!$      >D9C)>bD       H!( 	IIH      A(
/U(QHDD      !(W!_Ĥ!      A} 'IH=U!A      !  $DO?B}        pe'*_q}T %R       "IB'H"""D      !@ $H	 @       ()DRz
PB       @HB""$@        @DD.BF@       $!@("B=c @       @B  @"D	(!R     CH$B	<.B
.*      !P$E< A(P AB         @  (     ! B@! AA      @ 0AB"AD        @  y @ J       #	%PIA%䐒BI	$' H       A! B   H@@$R@AA     C C @(@"1       #H $K CH$I@! T?      (P'D!z @(@P`Ȁ        @O/"D AD$I@EA      !" H  P A(H(Q!(      |π(          < G 
 *E0     / ɒ @      !@!@D@O@P  @ $H A      @ B A y$H J?A      #䐒BI	 ? !      !@D^BR)PD@)*"       	C @!      A@'@ 
 @@" L@2       A I!!@@" H@     GBR}	0IHB     $I<I AN$K4
      !@OH*U x @'A 
        x"H@dH A 'H%Q      !@/A   A'H A      /D@  C$$OA$I      'H'H? !z/Q*EH      <_H>CȄ<RH"i%"     ! cOP#?B @/C$     *_[Q)y'H@?B      _1nުBP ('      ? A̀""         xyTTHI}|QR       	 @D!x/          AD pp p 0 <       "DG$F@	DD!D      @!  A D$`
O       @D@ !H!       @C@""f@8       B!$o>D @A0       	G$_	 PQ
0     |B)H"_ 	|I"     A D HTg B !H!      DI(L$*!pPD1       OP! @@(      @A PA!@B!
     @APP!@D@(I     @ I$LQD@ H       "J0LIQ&DDI@     @AQDYDDI$D      / HJ( LRJQ)DH!D     @B P'H A A	     /ĉ
Y$IHJD)R$$I"     (H@IQ%'PD!"EEA      D!
DADBP! B@""D       @@ P#D!B      @ )X	2(N @     " B/IIEI!B     	BAAR!'AD     @ ?1$TQDA	     PAy$D2PQ Ax!D2     " B!
E!B"A     8A*CP/D@$	      $"<II	0H!"B|Ic     $ B	D2|R"$D_"     " B{"D1JQL"D     <I	D @W" GA%6	     xGQ"HG       D!D Q"GA      II!QDP"IA6      @OĢ)R$DH""DD      H	B*R%K/E"B     @	$TQ%$DA !*"QE"<      @ Q#DB?"     $ BT7ʠ@(QDB%      " 5IU	1TEP *J      " 3DO? "     (  1DA!B	      @??@BE3 G!        ")*R0 EP P@     *)I	5_K!T$	G      @ @%IO	2|J*EQL<     @ $"1 @          @   P ""D$)a       @EUTQDID!D"      !  8p ""D$)a       'D!J"(DP @A     @A?UH dAAD@       A ? ""D$)a      ? ( "@0      ?@! cBH`C1%2C      @ @@
 (~!B!B 
       @@
($"HD      B  D$)a       8G
Q(D"PDE
A      O 
+@!@B!
       @
 )B%JA       '@@ȅQ
"I0 B@!     &C@
A( "B 
b     ! B@EP J!B A!
     !B A"(D!B A>D     } B  C "@0        !$BH>JE  D$)a      ! CA
(P8C 0        ?@ D$)a        @@(@#J!B?B       @@
"(" @G     @ A ʈ8(pP"I "      !B EWaBH("PD A!J      @DI%T DDI$D     @ @@* (  @@(       @?D$I      BBP?@@?     ?@!B	  D$)a      ! DH
_Ʉ"D A!J     !Bp˅Q
bDH" D@"_      (@H?D(Q$EP!$IA     @ @@
A)! B@""D      @ @O@
H @ _ "D      @"BD	$? ""D$)a      H@%AD0 D$)a       H2Z%iTRH%!AJ     @ _
*"DB E     AA   @""D$)a        @O*Ԉ @DF     @ @@
B)" F 
b      @@
R"'@
(      8G
@(|"E!BO
      !B A"(D/@ AB       @b 88  J"d       CD(%B } "D0       @D !@QJ"d       @GB
   @G       O 
((*,D@B
     " ( g!	"P D D$)a       'HԀ}%J((@D     	  GH
 @! B J"d      '@ B(  D A	        %Q@@@f0	#      '@@F #D!B        _$I)$RHO A$M%H#@      @D@):PQLJ"d     !B 
,(R!`DQ"DD      @ B|(  OA A	     @ OD
H%$RHȑB     P A Hh!E@ADBDP@      @ @(P HD!B$I      p"DH$@0 D$)a      DA=TUUDQ!DHD"       @O_$!D A"
      'H( @AABD     @! _)$H'I A?D     @ O
B(#D !       R)H_J"d      'H  )/@@      'IHT$H "@D       @GB
"HB!F 
b     'B%T" 'D 
l     @ OEDH$(K$P@     P Ax!T2P Ax!D2       C	"_JB" ""D$)a      @ @G )   G!B        JI)4Ji)JI)$LS     @@_
J5$
D! D$)a       DƁTRU*d!BDB
     "_AB("D  B	      G#"G(B$PD@D$)a      ! B@JҔ)%(JP B	       1|` D"}P@J"d      "D0       xO !J@( BABDE     @ OQ
A$I A<
     @ @OPJ #DB E       $ C!E` `	      !$"HFKR"~H U"      "DJ(  'B A6     " D 8!5JhRE$I($HB       @G!J(@ @B(QE       @Bq*TR"'HA	      '@ B
uԨU%HN
       'Hb* H#DB E       N*	R$$NHD      !@ 
TH*"pIP"      #H 
 (h!`DA
B$E       '@S$ "G! E      'H
)B|$@OJ     !B@
)J&H B@	      " 0A 	       @Q@DGEDR~D( @ D$)a      "HDJ( 'HQ/AD     ?A I
" H J"d      '@ʠA(#D! "      !!_ 
|( BJ"d     @ OEE
H@&T !~      "HBI)@/B Af     @ @_~( $H B@	      @J B @OA       @OʈD$$DDABDD(      BđUWTJG$EUB      | D D ? ?  CAIO     &\HT 'DA6	      'HA)w($PKA"E        @A @	       O"_ՠRJH%BEDL(       @|HҜ%J<K¤II"       O	/D5iJ5JT%RR$I      D $ &H2        I(F0IId     
JR$~ B@TT9!       /	*D($  D$)a        @GB
 H O)BR       ( HDD+U)$	       Oʤ@P" G*UE 
      '@B
 H#DB?"      'I A)@%M!'@       @! _"D D$)a        HJQ>"DA!B	       @OA $	@/?	     @ $ ?B`J"d     @ @OP%L/       "*dHDIB|      "EPJ S$D@B$I      @ A d*OI%LA_(      @ @O
Ԕ)$ JH)E4G     "B ?(S GB*U       '@@
Ԁ #DB      'B ʕ*)!PG?      @@񈊤P('A hB!~     |  ?@p<;	      'IH) "HDB       #@J) #DB? 	       Ox=BP OA"     /@@ޅA
zIP'I@A$yDa!      O!)S$O(Q&Bx)a      'IH   G      "(GH$)T("I T)     >D(I>(Dp	       N@*#Z)JR8J A3I       O<I<I5
J	*c$I     !B 񈊻D #@ $P@      A$*OĄ
 |Q	4	     "HG%_$I
BQD<     @@'
}"TUBQb@     
 gp!W $ &H2      !O!D(QD@"8     <!7, f(PI'T8P 	         CI%C     1HBfHCP_	     "E6#)R*_Ȅ>"D8     $DIȢZw"B@I      "G*)$OH)Bj     ! :
 )"!O!B	     AA  >( MCT%|        @_	?(S@O?J}       O<I4 ҙ%KdI/J$I     !JPJC{c)jԣD! A     '{)7_iR_IU%UI      ]QQCՂ* T`"R     "HEЌ!Z](Qt%QĀ     %(O|!jQ"G DB       O%#B(R_hDx}U
     '@B5(P UT I	U    " @   0G      H ""DP >	P!     "PD" ?  @ H   @      @  "D AP>PA     @B "D"DR$PA     @B "D AP>PA      H Z"DdS#(I_     (I $8PH1BA      H "DP@>	@!      )HA$I%$RH!2EdA     (H>A> $P !BA       Q$Bx@$RP2IJ      (I H)Y$Q!)E`A      )HIR>H~$Q!(E_A     (I?A%!Pa$EOA      @'Azex SdԩUR        " G @$O A$K(`        /*D")@         " G "D@DE"6	        #  A !#         /KH"     @D!BDD!@ H      @DADEADAG H       @DADDD!D"      @DEI$ĝDM(@      @ADEAtDADHB      G DC   D@      " G? 
 `@ A T       @@
$bKD     @ A/
 @aCB!      xGx
 `O"T     @ @@ 
~aB!B       #@ OȂB
`SA AA
        HR"J2WR)H"!P       @ /DT1)PAJ( A      "@BB`A(Q" T      @@@$ H0 !B "      xO@RHeJ A*B$       (@HD2%P!$iA       A y$JH)2SŤi	(D!     @ @G/B?@
|bD@"PT      ! B@"ZHe#J@-"T      ""
9(  8 @ P        @O$J2DSAQ         O>D
dI@!"RTđ    D>% @8>  (       'H@_ĤIe'Jh!B       @đ"D@ 8 @ P       xG?
 |aKBAEA     " B"H1AĀ$H(        B / E1)HHB"(         @@D!
`GCA1       @ID4GIIE&      "@DD	paSB!BDT     @ @@A0 B@""T       "@DD	a#B@""T      >J2'"H#     @ @O!PbE@%JU      8G?@
|bE!BO        O /_D5UʨQ*WD!     @ C/?@1EEPA"HT       '@?U
TbEPB(E     }" F@  8         |B!	"T8 @ P       AADEwDAGH      @ AĂ
 cJ`"T       xO D	 `CD!""T(      8Q߀ >EA!       @ /0 ABDEh       KO% p   @      !NP$
JaN`
T      '@@ƂȈ cD!B      @! GO߂!~g@`A1      #@
DeR A>D     @ @O߂!B
 g@ (       #DB? 
g@ A
       DNЅOʂ$ bDB       'A BD	X0eSA!"D(        @O?
`BA)1@      GDI$GEIt]D]DA     ! CBI"0A !*QU      !B OBDE bCD*L      <#@?	0%AABT     @ O?B
cD !        @O$
`CAABT     @ @O 
 `@@(        DIDK4QIE%AR     !OOʂ
$bE0!B E     !B A{"D3ʨQL"(D      DВ')0`8>  (      @ @_Of1	D !      'HĄ	E`O!?@     @ OD bG! E     @ OЂO@1T !~      !!@@A~<DAG
    ?QA? @         '@*U
Tb[@A      "HD/ 0 EH*A     ! B/$Dϊ2pQ)Dbh!      !IH"QDbIA6       @OȂd
 g@      @ @OȂ dC@      @$A?A	t	4˨Q*B]jA      'D \*4 O)BR        '!"*$J/!*1

'!!
N     @ A 3I $?        @BҢ6C!?B     'D|
c@?
"     ! O?$cD!B 
      'IH"{Ā2#DIHQ(@T     @ A "O2A@OA%      'HB*2K/U"B       @O c@"$       "HD/  bD
       'H 
`@ A       O	/$IJ54T%RR$i     !D$Q>ρI'4AϤQ"}iTG     ! B !$? 7JD        OA$O	?H4 A'H)       B!O+Kʐ2+T%Tj     ! G$
bOA	f     @ B"
jKDB$     @'|HH"UD dGH""DT     @ @OD"2HJ!$'      #DB?
`CO	"T      E qQ@0B*U+       @@ 2		B1(a     @ @O/@D2 O!_ V@       D%/JD)R6A"h     " B<I }D
7$IqD")D!     @ @OOBHD$
`B(0@      @A!20 !     !B 	4EI+      @ @O?
D`GA
     !B A~	4IϐA~$$hG     ! _BJ*3դK0?E     @! G/ 
bG*UT     !OOς
`CO      @ @ORef@!B$     'B Ȃ{"
 `@ B      !OOȂ2#dJ""DT     !
?@     ʩ*ʑ>| @          HRK5WR}IU%DEP     "B 	 0!À;BI+Q@      @@?D$	p5p5Re(,       @@?D$	p_4Q6KE%(&     @ @O cD$     "DYJ>"TD$b      @@@$H7#0(       "HD?I
$cA !*"QU       'A@"JD(dGH""DT     "B$I 	$H7P+B)iRC      #@B?0DB?      @ @O_B?0EB (B?B      @A@a7?0x%")D      'A/Ȃ?U
`_A
      @G!?7]Ȉ""uĪU$"     /BPD5D ?$     $ OxOBdGH
$      O1<_H4Q<ID%"      #DoB$
`CO*BJU      "D y)OD 7  !"(        G?A)P7@{(( P     !B D 3 $P@     ,x"$7׀	$?@     @ !RBIRj)?R@(Id      #@"50QL       '@ B?I0DB?      $DOb2!?#耦     !O*a#OBqT%      @("	7 !/$)       !OA?@D 0j$       '%R_MU2'ZKQ      OA>E	A0B*U+       @Oϐ? 42"(i0     !JH* 4EI+      @ @O

(aD$       @%Ĕ 5%P-"Q **)       OP!~ Dy$$iI     !O! R0)"*Ri
c     'IHW"I DB?)       !HO!>UU5U(QB<JU$Q     !B$IȤi2ͤQ6(YkŠ     ! G$
bO(nԔ;     "G/
DaDQI0     'B Ȃ{"c@T=     $ I<0OEH1ڼI,$-K!	     ! B|!KHH4|P*       BG8ADR2 DB!     !C)?OR	e4ʘ*BT/i!     "H0oJDɉ)8(P @     !@D؉oDu1		 `     "Gy/UER1@B"D     !OAϠ 4xI+      'DJE3ŤO<P     !_A=DP3@Q?D(      !E(y5RJ3 B	(f#     'IH%/{Ĕ3@Q?D(      !C؄)_y
O9IШ[B~)Q     "G/I	#6ʨ*nĈ"      @OI$1	?      "HG/UEU3@O*     "HG/UEU3 OQ"       "" "("#1H      @!BA?/"RDhE&       BA?"D>@`      #@$I"D ࢡI!     !@GB
*DTA@       @PR(P@A % A      @A !~D A@A      P@!
B"?" D!@A A      @!D  ? "D)@Q e Q A       #@!B%"JDQ@! EA     ( P@EHTR)PAH҉I!D      B(F  A D pp     8$"@ߤ"B)"#I(A      P@A?((PP@R!@       { "DQ@< A      @PW؀ R>(DPA"        H@B?" D@J!EA      !C ? "D @A       C@$I"E$HI!E$CA      AAOQAR<(P @x
A       GB
"]E A!%Q@A     @!BH(DH@A A      A	?"%D~!D	%$QA     #@!	""??ID$@EA     !Bq"?D(PBQ@A     !@@
"TYJA     "D AyB3"wEUB!EA      >x@? DP A       A!?IDTpQL%
A     !x ! " D|P! A      @PW؂R(Q$C        A$II(Q?)PpAP	!     $ HA!D_?RB(QB"      "D#AB""E F! A     $"HD ?" EQJE*CA     #@@	".ID B	%"A      "E  "~DGE!A      CDH R(QC)      DP  G
*EaJ%
A      @ !"!D!GȑA    P"X"$"H? % L(A     @A |'ȀRR	K*R	HA       A$O芑RTPCA     < @C'"@DDEQ_      C	OȂ?RJ(Q(C@     ( B	" DDC1
Q     "(#x@$*EP %      #pH*uԈR"G\UB1       @G!"%?
"(ܠOy
A     > @G	
*DB!A       EPaB ?"EAG	 A     > @Q_E|RQ      'xB  +UJVUQ      A D pp ?   @       A D pp@T$F`      A CO?I$)$"HOB	 A     D I@  !  @     D I	   $        @
(SAP	        "RB#@@@       B@"DB A        @"|A <      "DB >D'@       $D
?I@'BAy     ANY:UTU A AB@     ! O r~WT            "D
*$THQ "@HB         3H >D#DP!         y$$"H!B$Q      	%J$H%#@"      |" A$I	$OQ B      "	T.$JH(_ B      	$
Hߩ$RH"ET "         @@"PDA(Q!A       B ~ B@        @A@OD@H> $ O!$BHBE        @G $IH)b*"(       ##$B!J         ##$B!J B        @ C/?@%DJQ*BT(UO      ! " G?%JP)B^
D      ! C	?I%JH?PHED      ! C $I q$I      ! " GW'TJQ*BTED     ! " O?DN)RHI"     ! " G
%TK?HE    @G@D      >!F"?HbCA       @@! A      "0"!"@(       @@            @@   B$p              @@                       + @@        @"!>!"($@     D!DP? # "?    (
/"("~I$p     I!$!$HO?$   ?     |%BQ	D=BPB%	TPd	     @	/$A	=
DI$(BB1    H"D(?" $(B     @RR!B!B!          D@ qp `       @$BA	=BB	$D
_ @    '!	O            %@      >DR!_CĄ!     @CCU
%6)R H>D       "H   I @      %b/%DI!<h@         @@       $ H@!B	          @HQ D     <'@2Le|@           B D (        ""
8( @A@A         ?@      %_A=R	H"T@`           ""("(       @B_@f@=@        ?@  ĉ	L  _"Ā      /~$$ HD>@        'ϑ"D=Α"D'"D H    )	BO$h	@         @؀      @ 	?	%$ I$?      @A  a8 /Ϥ D	 D    @A
(EI!
(E3?      @   {)J_/JR    PeDY|EUYUeUFW@B    I$@OFK<D       @	/TB_@}TYQeEPAA    @$"X"O"$"O        H/? @I=@          (@B(B      	/$JI/?B_D}P@A     ?@ C ? !Rx         @/A (      ?@ C "" @ 
`    )PQe_@@     $"o$JI)(@     I!$I?$ TRJ(?    	$ʩ*ZA( @@        ?@D0p     Y	<"H?RI@(         ?   $D     P/I/?I)=@	     ?@C O<AE| "F     	? %RDP@    ĉȒ" $HI?<!       ?L}Rx
!&DLqR"D    ODJ_
$D
TY=@!    ?O $_<TH      
RJR
<bK&"AI      D"DI!<jI!$H@!      #|)MRz
c0OO A      :e(j=TRJ)HAU JB)     @JO=U^Q^UPUB     _A%
_@}UT(     $I{ʔ/*RTOH)      @Cd9 $y/zB/)R      @A!/ ?@@     O %FUYN}@	?H ?     @ H)?D	?H?@     @DI %ZʮIJ$ I"'H"     #DRzx* AT T)    	[	5(Y?$      OA*&DHP     ꔶ))z*/D/R8     IJeΒR{ H@     ?@ C" IUP    $HY?I	?@     ?@ C" @f|0T	     #D"'T-j_*L    $^=
O U QB=     @?A >>EE       A        	K){Ҕx$B_?D       <$dJRSx* Z     ?@ C?"}!D?@        *w!z]ÒQ       !!  D`     (P|"GB	C  @@      @ 
A>UTT         y /R	'x@!BD      !"BD$$HH D!AM      @x@/@	A$yA"B"E       A$OD%H 'H$I L     {E(QDR9zE(Q)怀      y$BH	J%}0A%M(U#@      y (Ba	%xH/BH(D        I"OB%L"$I$I%L      /ED $@H"EDRJ     @ Љ?2BH"R	     <I Īw =I  $@J"     􄯧JJ      /"@L$
K"RGDL     !'zUDO $I(Q$U)       @?"BC
/TRDAH"       @@)RU"FH(        @A BBU"@       'B@$T"B@D!A        O  T @         ?@@#X! @?  I @      @ B OB HT"B@""D      @ A Ă	$WB"
      CA    @?
$ @      " D@?@U D AA
       @@T B@       @D$T @     @A "p!> * #0A      O DIS"NVUIY)DH!D       @@?T @      " 0A * #0A       @@TpRB!BDD      GBD#@UWDADA       @A OB DTB A!
      xOB*WB@(        @@T A AB@      !PB/gQ BDB"C       T$F`  !"BD?       @A@OB@L T D!B        @@T@ A
     ! CxU"JD)a      <Gb/TURE ABJ      ( H@IU$RD!"EEA      AAU2	  ?! "H        @DT@O!BE	     @" D ?1 \&B       "@DDT"B@""D      @DNUU%TDeDA      (HR)]jZ)H"IJ"      BāK)NVJY/DH!D       G/B$IU @? D     @ COAU$JD!A	     @ @O T@O "D        		!P@T&8C       OI$D8JiC&IIE      <G" UB A
     ( HO?IUJDB$I       @BOʂ.T @       'A BDXU0RA!"D(       GĈ_}HBkBV	R"$DI*"     !$BH!OD$ ;hCBE0      'DO҂=JU(DQ}D	     QD"^/@ !BU$D0      #D B*_UTD@         A /BDUB A>D       DG/BUD@A     %J/RcT BG       DāWNUUEYD}@     "_/B@TB!B 
     "HDB$ T@A" D
     ! CO?IU$A@	BDD     'B rV8B@
BĠ       @OȂ$U$D"D       "HBO̀VJ(Q/@D       DNЅOʂ$ U
DB      @ @O^HV"J@*YE)	      'HBIVH@)"E?       GD 8n?HF!Z$I	      #@ "ULVrVL$"@D      @OB T
K!%D       @f1 H     #@I!T@B A     @ @O?PUCȄ"*D      * #2A@a        @A@OBQLT @      'A DTFA !%"DP@       @OȂ  T @!"DD(      !B AM5bD"B"HA      O!O	8i-BV!B!	B     ! B<Dz;*kDI%DJh      /A RzV*KД)BR	     ! B$$"L0T&8C      '@@ƂȜT EPB*       @@Ih@$P@       @BҢV
C!?B      xGPU,JDaB$      'A@*UUB@       "D@+ȚQ&EHaB _      xGUJG       '@*UUTZ@A	     !OOςU$@       @Q@DGEDR~D( @T&8C      O!"8kF*Q(B"I!      'IH  WD  B 
      YJD$HT&8C      #D/ AT @$
?      'H /BTWJJ!2@        E<IU$"H)l3Gi%J(      "@BBbDUDC!B?B      @OA;.jmD։!B<I     !OO΀P AA
$      gĈ ~@ * #0A     !xBOdHU"G%Q     }A/	
U$ I @       I!)7 @?Lp     @ B"SJDB$       @OHM#T OD)      @! G/B?@U @Q*D      #DB?"RBF 
b       G/ U@!(QE       'pDOӢ5Mɝ T BO
$     @ @OB?P @B      !DȂ? SޠIHQ%"DRB      '@ ̢)VFH""DD     'B(_ȢzL)TBG?(        O	/$IJ5lJV%RR$I       G/B$UUDH*Dd     !OO?P A@	DD     BđTGӈMJRG$EUB      DNH(	D:mN"A)BRA     "XD/$IT B 
"	     " B@=G9ZjEJ"JDi&     $@DI }$#TmSOI!$DI
"     P O"CDU@ B?A     D HHU"D!BP       @!䔉8iOQB       T$`  y*U$IT%R      #BO6T D!D     @@?āO VEMY,đUQDF3     ! Dx%/jD0lIJ-"ID	%      	$Oϒ""ZT&8C      #DB?*TWRB     "B A=@EjERBJ
@       N (D	@:mJ2"DD"     "EPO ;lE@B$I        @OdNDQ$FDABDD(       !By         @@@!I:mEKA$     @ @OЂVL/     P Ox
(TPB@       @ $IjD")$B	D       |@'xUFH/B       O$@8jG*UE 
     @ B/Є!~a%/	!       DA	I9&jDV)B"
?       E yDu%8RoE
)DP%D     "B!>O;h-OV!$BH	"      !!@g
@IT&8C      @"O"	"4|P Lp       ^|	<hQ^Q
B(       O/9jG	"      @A@a7?9hOz%")D     |  ?@p<;H8     "@Dq?zjUD )D	"       @O*UT A !*"QE"<       JID]mNIU&LEI     !B!OrH	9h	O!BYE*I!     "B!I;lO*Q<BH)     $ OxOBDU@  A	       @O )TPD
      !OO"DUTF@      O %/LDD8iGK)"RD      A<I
'jSOI U$I      #ERPO  # Lq      'A ̐HURD"     @ %PR^%"J!	RQEH2PT       'IHJLs TB A?A	     !_!"jQ@I        @G
**  ⢩)"      #ʊ**||  ⢩)"     !OA>D;iD+	      ! BxQ>D$8i=JJ)rD	?       'A@JLU$RO
$       '_(U~%Hಢ%"A      #@"5TPL      @ A "OV I !%     QT H! _C     @ A "~VJ"      #EP!UEHD     #J HT DB?"     "EPUDB?A      D@ ! D@H8     !B D k@$P@     "EԂA4*UJQ:BT
     !OO̀DU$B (>D     !OAτ9jIG!      !IH?"QLTIA6     !(CTOȍ5bDA!EA      @G!?;hEJI*U       _Ȋ/T8o@"TDI      @!1*U~  T&8C      D@2@@lCH8     'B  T@ B*       /PB~VJ(BB      (I˪jD$DO@     $$DRJWMA6ID     P# Bx_Ȣ:LRTPLAI0       OP!~4 Dy$$II       G	 $*9i%D	"$     "Hp!DE9
oU!UbyH      O$y'yDI%lI&yQDJ%1       @ /$jEv(d
?       D@ࠟ|
 Lp     !B$IȤ;ijMQ6(YKŐ     QT	HI #      @  C"߹jK^bA3ʉ$     !B	oQiIB	b2!     ! B|!.SKi#J-       @OkHUBW$     @Q Gψ>"BL|T&8C      $DObU"G=JD     #JP >DTO/QD      N|A*D@:mSJI2E$(       E()#߀QLQ5jCI      "H0oDɍ)7hG P@     'J y"~9j	G! D     "HEЌ!7_]5teQƀ     !Oτ 9iOA)8H     % OxOBPUGAD      OA&DMjKaG!OP      A!U9oB~!+R"     %J(A)rMToD~C(0     "B!UDމiOQ*]DTH     !_Q'/UKRj]މ	I      " D<OyIOoI>I$	#I    "AE2
 Q"aA    @A?L)"$"H%'        @A/Ѐ  )@RhQ A      @  $H )Dd!       @P(	$ HB"HAA       @#D$$H !BD!B      (@PT+Е*T!PEԎȱ!         C$/P%J!Q@$H      AH$?)R! D!       @ !  O(!      @ CH_ | B"HA        A$(P?B  D$H!       @ )0D$  Q@(!       @ ! !A@!       P@!?( PBTȑ!@       @@00D$I!$IG(A     @ CHPQH  @CH
A	       A (?P!hE"(A      !@ (P!~ !BB A      AC%P]  ABH@A    C?D/$#%$PB!A      
@B T*U 
ALZ A      AC] A!ܠABA      A$"  | B$Ȉ       @ $P*#A@!     " D@Y5HHG  A	B(        C$'P%JT HB*h@A      @P7Ђ!$@       C($WB AHV"H*B1     C
$(G(
 H"":R(      CA/Ȁ?HB!BBB A      !B C1U"PJ A      !B 7D_"HHHQ       A(P B$HB     AHDH| H@AA       @AT/D%"DG҄(BA    AQD?L/ |  TJ%      A$TD/D!TqIRC      (@K !TDa?       A$[)0 <@ A     !@ ?$? !DHxA      @ )D#@! E袑      @Q! H!tBE҈(      " DCށt5P  #ADA      @؀$P?  AHQA       A(PHJJ pGHqA     ?!B"Y b	?! D     B!C: ȥ"G9KZa     HH"z
p1'"@E
WPj      AS%PDD!$DUA            @" D       ~      ' H  x          G  !" ( ` p        G  ? B@         @!BB$I	 "DD      ""
8( @  8       #@ K )R"AG'X&J      @ @OU)P AO         G%ˠ(QQ@ A     ?R(IH/(RL     2 " H        H!<HY!"DA!X@     @@DH!J
( @A       !@O2 @$&         #A'BRJT$HH)$dP"        ?ǀ"e	) "@D
        #A'D"eE*$IAEBA        C?"e*$H!D @       C#d) "@D$"P      @ C"GA"e*@$H(`       ?' "e("NA1A      a='i5h*P	D%@R        C"$jC1& 
bC        Ce*P$OA
@      @ CPG w)jS62h"P      @ C@G h!2@$*L         C JhQ2 "@      RÔ $H?A       !@Ǥk"e%+ C
$     !äI4 IB)a       sB:HҀ%>k4H(AaEAA        C	"Ǆ e*$I!D
"A       K	"ǀ e*$O
       A@""(g(@ O@        ""G%"k0"$P     A  D%l7*A*U      @ @AL a        $i3$D?"@       B?"e*'H!AA      B|R j)4@/$A      #Ǥ"e*  _      &'z%k49A$y@     D1#HD J@I"      @ $G~%~j5* UE      @?? KQ]\rTb(    I"IH"")`
@       !#D 
~D(P)Ba        !'@Ȁ>~	D$AAAE0         A  ~EH!E"B     x"Dh ("QDQP`        $B ~|D @A      $I"AA~ETQKE"B      $?!~$@!E        GĀA~ D@A<         $A >~E@DA"      !!@g
AI1`       !!@g
HI?蠀>1      !!@g
@I@A4     A#@>~ EqJ
$      >p@H
ʀ*$JB!A       @B ? O hN      ; A!B:Ġ " C      pG8?">GP!Ā      9À8 <{ÀB#D     Hx!Bǈx< H|!B(Q      8A@|8#@" C      8A!,(:KȐ C      @9" G%J yQ" DE      (8Ij:k0!  C      !=@!B     <;	"
8 y!B E     
Hu.#. ".?&a     <;	"	8 x;!J       9G?B yB$DPG     @8AT9SĨ1  C     @ARW > @       |!B/B   ~  @@     9S yS$P      P8)$H9#@ C     C*?@!B     "D*T?@A"BH      AF/
$c ~  @@     	#? <!P1"J     !Ð =UQ*UD     P	,:KbG!x!$p      C>1<"F     @	C%^=y!*BW       @AGAo8>D8@D      wA
8l'!rB?H      $H;! ǉ8$ xxqB A       w! 8  yKQ%")d!H      
U!#\@~=	!$C     (	T9A8 xC%Q      (H9Aǒ8$~ y#5Dj     RPAC\ "U>!*BQDG     t#y)BG8("x$>H       I܄c<<H =U¨Q*     EPQ?U<!J     $t)GL"HvӉ!R$dlH      HSUH ?$BI      8CĄ	$?H BADRhQA         ЈCDA         	$
ЀB	PQA         UBRLIUQ         
  AHA       '@$ 	 @ 	 $?     !" DD	"D IA$        @@A 	@ $H     @! !v.X(P$I !"P@      $H$D	"DPA     #B`!B*E!HA!A        @  @$ @       @@@@ @  $ 	        AB  "D@$1I     #$ H"	D	QĠA$BH        B@DI
"AAB        A O	"RD'@         A B H!
 @ACA	       /@	4EȄ        B B@BD/A         B D ( HDACA	      @@A TP"I$       !D`AA$DAH"P      A D !BDAC
"      @xO  @ $C"D     'QDaGDE' @        @@A H$*K	"D%       @@B  OA!B	      @@A DH
"@
(     B D@}"	PJ#A$"HC       'JD*U	TPB        @@A 
"
 @B DȀ      @@A  *"D        @^(萐	RB+"HE       !!BD ?            @A PH*c(`     #"ED6  A      @A "$BC	"$DI       @A D ( R ' D@      (@H@?D$%S!$IA      @BYp(DH
"HA	      A B@bD8"Q"D       BDp!	D#A!B      B D@/UIEI!B     @" D)) * "@       H H@	$D	 
?     ! @)(D!B!
?      @O (*/AB      @@A
 Ca'$H      A(D(JQ!
     ' A!A!B       $ARIE+QB(I	!     /) RD$y$
H' I&$       $BHI HH$ CBE0     @|@#(EH
$EΈ"DB      '@ 4AIIDD  "       @- #1A  `!       B G@? "{	T	      #$H$D?  !""$       #$H 	DP)"RET@       @_ @@        @@@O	!"#"     'RRaIF%K)$RI$$ @        @ ( HA"H	I      @@A '$$H       @@PB *HXQ"x@?      8GA *#@C?P @      I@T(DBxB!IB      ĩB%@?ȁ#?     B_H $I&3A	$"HC       B+U#A!_Ȁ      @ O)MA!B
     B D@" D! A      P D 	*+쀖$	Fa       N@D$
NI
$"	T     BD@ _	"DI      @@@O	!"@/
$       B_H '! 0     # AAE! B        @wJ>*TIS4C* H      @@@O (Ј	Ek%BRE$      '(RL$TPE y$$I$I$       @- #1A ?HD     # G D? !(E!B$K       !B MnU-TVUJA      @pO ?D	@""DD       @A D B)@   	     D(DTUEUT^HE"AB      @@OH	 H$$I	$      AD*|R"$D_"       ~)$H_$P @      @@_A}  OB$DP @      $@D@? @     @^ @JRT/	H%"       @@@_PH$JK/E@       @_)E	 B#A"     #$I$IH AH(R       A GHA'DIB|     B_H  @/
$      B _	$HG       # AD%)JB A!       '(W _D 	" D       @x_ 	\H:DD     B @ 0
T0D㒡	B"EH(        @_ !蔑OQB       @ J**@     !!EHED`b3$* "	B       <%DI'ȑ"D'     #$ K$/P	 AA        wEZUSA*+       8GA *
#D! A      BD d}%T@%U%RDI$D D      ! A/	 %G`B	A     B+T#A!_Ȁ      DEAUTEQ5}UTUYE@      @@@_ ?B " D@      @A O(?@	@"R$J>       DNHTWD
N#A)BR A     $DI (?A $! $@H      @A OH?A I	      @ _LHJ$1JbEL      D^ H{
d_S!BH       D H.?#"?     'P@aD!J%PI)Q       OHRJ(Q'@OG%J%J     D$QPQ'@OQ"}ITG      @_(
" @B
"      @|_BHJ?K¤II"     H'E*)THI:ɤHK        IHREA IK"H      @@PB@(,(Pb< GQ)DR      A _DC"D        A(wЪ*KSiB)Ha     'R{)GDE$GIIE$P@      A$QH!TE'A!
?      !A/	*T%tGaBBA        {!*R@+$"PD8       @@@_?Є|D$DH"      x $*HX"%BL|      ! 
A+QB"I!     @~_ $HH	""}Ĉ        @z J*J#(R%
A     B_H  A
JH'      @@@O$I$H$UDJ       T*UH
?(c)z+R      @$@Hz/Q?QI      @A@D@Hh'! D      PI)B' RI%$H     H ')$_{E"E/       !" I=)R %^eJD)+T       !" I=" %ܕWjfD" D     #$OD? @'(Q&(     'RJa@/ࠄ ! @@     	9'QD)D%KIH"     ')$^|$yE%GʄI1@$A      I$^xyQ<II'$I$I      B _DH       @ _QD}$B*S/DDI"I	!     {ȩ "       OBP)D#!?$       @?A)@'Ĩ	?       @@_$(AhB!~       B OJHPXX!"%$HP @      B _xi("P`GÁ!?%D
Q @     CD/R?H8%T@#쀖$	Fa     )Qb¥IRT)Qb¥IRT      @OA  	_ A     DPP3P[?$*     A@_?	$P_ A      H K	 UEwI)$RHB       
H#'KR/dRH      Ȏ	`!*BG"R$JB |     P_Du.
KQ*BV      @	H + JK/B$I     @_(5	 H!B>BH     G@B5 'Ȉ?DD       >!D@+$#jEQA     '!RJH "IĐQA      @_(U@B*U       CQ _ ~E(DQ@     OD@  'U" D~       @A$GR$ x@#쀖$	Fa     OD H"
| OI      B _? @DB	"      @ _!8Ba?@D     R@RUD +UTUD        @@OB RDJ$      @OBhD@G!       @ _$_D}*(("_ԠUU     @DI(4L%K !      Ȋ T(@"TDI       U@*Ъ)TD$B'Ȃ      @	=JPR9(PXAb       _I^R=*[WfT=R     DO<M2<OB)	      (IR/OQ?BHI	!      "B# "B~!pA!B       @A@D@H_I P	T@%"Ĕ)     )Q!IP
Q
5DTB A     D _xHH$	"      @P],LTiB*)R$Bc     'P B	 "IU%T      DI $I UW}UKQ     y~(D /K>D*      B OH?A	_EJ(     NTDS8B"/@!QEC      8!x
P8?RIR%IJ%      !'I %$dO	A      !'I*%To@I%R     {)OEE$QIm%AA     BH0dJHɁ)( P @      xQ'<^˦IEO      B(DPD_*ԔIR EA     H*!@G!B?      	x!C)%W) 
G@TBB     OT@Q)R/Q/DQ     )I%_K!T$	G       E>*WxIUR *(W.wuED      DI$R*J>B U
         ?"BH1*BFE`?      QQ@т T`"R      @@@_HO
|J*EQL<     !@D-P =ȪU"IU     ?"E| UA7_ʤV
     ?P P%z.zTWjT=B     CEP 	ҪU/A     D {Д*RH(_D}     * 8-*t+PBU	      (SGA?@@GL9     D *RDB?      UI[P}J$)*
     A _PIB?I*}"K     '*%M*4*WrAA      })&8ꪰA?UTUL      A A/)+}T&SjUIjSR     DOH?RB#$     GH"$UCU/C$QRB     Tz
A)TB"      ?B!B%
R"D)!T        " DA Da ! BL     ?      " " 0     B?Ud(e(@A
$A!      #@BI  @@AB@      #@ B$ @@AB(@        @@R+$THȑR"F)HP(PB        V#A`   $B$HH        @@R+DHP AABIPD       +   " " 0      BYx" DA D`       @@
Hp!PBI"RHDP@     ! B@WJTI"$II^F(PB      Q	  DA D8      ! Lxe+JT)R%MiRIDA     !B E"HD!B!DBH>@D       @@_H8!PDWB@      GDIU%gdI$GJI%%`      G @  T8       @A%TH$ |A	M"A@     O @/@  HH@       @@*(HQ%0RADBHHP0@@     BAZGdIDJy%     @ G%JJI'E)JRTJPR      #@ H!hBIBRHD(       #@BHD%R!DBH>@D      ?ࠀ>!  	B"       B %T H  @OAEAC      #D%J?H$DIITRp@P     "BD  ? " D D8       @OBԀ  @_B(@       UHIEQA? GA A      G 4T!gdIDJ%%`C     ~|	G	 " " 0      "D!D;  ?@"8      #D%$IH 'AEBRHDP@      DCu?  " DA D`       G%_ H @@_B@      @@/$dIRzD!B!`       @OH$$#DOB(P       # ?D(T% H%$      @ 4HD A  	B"      !DB%EH !HBIBEAA      #@J? I" @GI"RHJ@       @A@EJ_T HT"GJUHA@      #DPK? H""DEIH_P@     @p"C
$ " DA D`     @#8D%] AH  @GAB       "D!D8@! @     "HDJ$H 'HQRoAP     ! C𪥭JKI""AE"jQQ@      @<Z%D$DI'ʑ&E	'     "$ PGE"*UQD(      }D_DEWȄ@bd!(@     /QHA%S" " 0     @!D@+?AH @OCJ     !B@
xI*$IQ^eHHAd     @ @O_ H $GAB(@       H!E?pP$q  	B"      @EQ$@@
	"F     @ @OH $'@BEAA       GV_Q~" E!?D     $ E%JH~"E	KT(P      @K`A"0p  I`     ~'P" " 0      @? 7 T8      O_ !DA@        GĀA~|D HJ@      +PB	E5,HT(IH        !@"J	(/Q0@	B"      #D@(_H|" DAJU(RPB      $DOQI #@OB@     'J$yQ  " D D8     ! G_$H" ODBIP      !!@g
@I * p     !OE@?AH#@_EAA     ! 'T@u>	(@ * p     ! _RIJ  GHB_~@       AW	
D$$E<      @ @OJ$UH 'I	ToAP      B?!BD!HH !"     !N!JiR%JO)>U):S"     ?DloĒ	?H$I DE      ?B
)  A !DDX      #DeJ$H @O@jHJQ      /A	"HG! 	B"      'IH
JTs 'B!DBAA      #DJ? H'BOB@     'B CH"GA@       |AB$hHE!~DD@( p     ! GUK*ȪT"_@UHP      A "}}
(4S@8T8      O_Ȓ'@OPH@      @@6O(Q" G%%       @A@EJ_T H "EQNHUA      '@ ň I%J)Wbh?A     P$EPI #@_J$     OB Gm)	@_ * p      !$CX	""D=  	B"      @@@J6T%@ I?AA     "D y)JV )RR'IH!R@      #H
?AHP'AANE{@(     #B H*#DOPH"@     H&Kߒ$?~@ * p     !Oj!$"   * p     !B9VTү'B<I*	"D      <C%JI!ITE$"      @OZkHH&@WI_Ȥ     !C؄)?JҖRu$
OԐ1?e}TU     "GE!H%(NqTyZ@B      AcL! NpyH*\     (Q́)$>H BG	"!"     /IA&T~X*T8       !A >         ""!@ $ 	       @"  P!?@     (!WOʒ?*@RD)      (I
"HO"D1!$D     @ @B$@08 _Ѐ!>BD
     @ @B$@08?   @      @ @B$@08!       		AA@B 	AB
"B      DI$DIA" HI!$O!      H A/P'ʁ" I!B      @H#DG(< HA"BHAC     I A$I @<I!$BH"B     Ia'H'H <I'HH?BB     !"BTO$ z%"BD)"R      A$O!xpQ"I$IDRD     D'B$O y"JG)R$C     P%RB!x  _$     @E'(
z}#EqB("DD     	!?P$Đ!y!?R$R     @" #       ~	'HHI)("$HJBB        R!~"B!TB! B       A	"!A A      DTI}%DDI'ĕDI$H E     #D	"?D" D@!B       A@
$%ID       G'J$ID " D?      !!BBGЊ 
B A!
     !"BG"$	'@@       !@B*@ DAC "D      !C
$$KbKDЉA" D?      @!C	"H!A A       AABȊ$	@ A          ?   @        A@
$ D!B       GTI}%DI'UcDA      A#AD	 "  @       9G
?@}E!BO
       =G* B A
      A% F0 "  @        B"' d ~!AOA	     @ CG
$6	AC?      "D'!~	#@        'A'JP%@`CB(QE        AO $B@	"DD       AO
䀊`#@(      @ AO
?AAD!""D(      ~G	 ?   @      @"ǀ @"  @       #DJ?"CF 
b     !C򊧭JK	"bA !*QE       'H$IG?      #DJ? #EEH D      AF/
$c "  @       #DB(_}!D@"RD
     @ O
?H	AD$      "yEG
&@ecJA#"@	0     @ AOЊ$L/     @ AOG
䈉}#J(Q/@D      #DJ?DAA"$0     !OGϊ$AO      B#*#$OP
	 "  @      /@B
z$	PgI@A$yDa!     P$ER$	 c@A       AG!$l@ 	D      '@J?I	DB? 	     } @"?%BLF@       "IB
"`FB
D      '@
 !@  Bwĩ	      #@*5@B*U     %UKrGJDdbG!      %UKrGJDdaC        O}jt;̊!/)f      P$I P(I@B B      <	""DR!$DH@)Ta      8	 "R!$DHB      @ 	"$P"E "       @	$I$S A !T       @@	""PA!D@AA      H}2JD)2RIHE"T@      CE1P3C 0(        @	" P!D@A@       @@ 	"PA A       BT!DQ  QDDA@       @I$I$W BA      !)$BI$bI	$$A     EQB!B
"(  A 
       H)JBRT)HR!ZU
"        @PE BA      A
"7I ((&       @"I?IPA @!T     EP@@B A)
$H J?A        @b#D8R%TL"D      @B	#HQ!"DD!"T      ERDH$)<B$U 
         D"IQ$DW     GPAOQ ( $H J?A      EP@@OQ$)$$E 
À     EP BII$$$ )B A 
       p"I'DR%D(       BH(`I !(RQBEȂ!       "I?AP!DB!TC       AAO/D	2$JK%)"$       DЅB$ R	$OA       "I!@W"$H@       )IbT!P#JT      Px"b2PP!|_ T2     !OaE3RD	< OA A(!       @ RI _       II"R!E QU       H ")" U)LQ!QT      %@A?At
	4UPA]jA      B	?AR)$TOA 
      @@@Bi "*TW)TRAHd      G%@Ā	@2BHB*")      5"Q R	$I A
"       )IH/HjW0IBE A       H	 RI$O        GĀA~|D PA@      	" W!A !QU"<     !!H!$5 7
RJB      A@?
*0B*( P      AAOAR<@1"D@ (B!      !/P/BR	
4 TRC?I(       I?$S!_:     $$PA/C$      @B)&Q,DC 0     JB
bP& AA        	 S$OA?"      A%	2HQ*i$      y/I!
*
3I $I(!      	/B!)dO(Q&Bx) a     GTII^?I)$ _
       	DR!$DOT)      _ )3"OA$U(D#      (!I 	2H@!B)      O?H5TD@"("      JQ)R 	2 H RR$      /TA>EA0 JA*U+      AI%4L	2J_!("     JB$Z!'H"Ѐ        H :jUVQR% B     c$J}	w3UH@)$      _"3Bo?D(      	#D)?FRudOԐ1?b}lU     IJ E)3jMAsh	!     !_%?D	1"_!?(R      E>jWvUUJ j)UTwsE(!D     R{ WB?3H)?D^JQ        C !B.? @        D!BD!BQG  @      @@AGĄDAA         !E"D"<        D@T" tO!        @   @p         @ ?@ @. H          ? 
 " 0     @@ϤI$"Ht	D         /C	D@   "?     A A~D!r'D        C!A 
 b        S!?  A@ A       B!> @!@BA       A $ GO           S8!PD."(        DA*DD  "?        C AB D'B N!      DADDADGA@        C$"HD       D@O "@t&         @@)" @p        H"R)H"өxBP       D@(QD"D@?        C"$Ȉ#@@ F     DD]}TEQDUttP      ?"D/B N!      @"C    "?       {   "xD*L         C@AB@D>>  '@Ȝ       @!" H }"G\@        C@AB@_  @G        ;?@|"E.HO         C	$	   BHNA 0      A!?I>$#A@PD        C?I @ANHD@         C@AB__ @D."(@(       D  'p       "D>:# D`     @ O!Ht       @  !? D">B!F 
b      I	  @ (       i"$D~"rET"      I=$J~"TD:@@        {?*>T!PB      	!R~I"D OI        @ B|$#Hʎ$P @     @"ǀ @ "?      @ C?I|!BHH        @ CD !CH E      I=J~)#DO% B)     !~	! IQxIBDP      !BDDI  B@*L       }HU#A)^J(@"B      @ C $Ȁ} #FIU(BT      @ D	 !B# E       @ C  $G A      H )^ @O
$     #A="IW"EԊNJBh      B>|D GNH        B?A}!B(QϮH 
        @
T#DH       KB$ 'H^/A@     y"UDA}$$GNH@      ~RG	  	      C?
>* G͎*( P      #_$" ON	 @     HG!ϕ*	!Pw?        C>k !@  
       @ C^~I) @        #qUDQ>Bz$@ IQ @      @ $$O>"EN_(         {"  @ H         
BɄ}>"DA!B        B?$#A :       B$~E OԆ)^*@"B     GA	J  w 3     /A"0G	.N!      Q?	} $C      D ҪUJ]#8쪢I      =1~Q #D' A        [d0   "?     ?B
)  _?
      ! =L|
#@QN8      O?"w?        #$" Ox%(N@     A!'>~a H     *!HH"x%G P       # }"DA!B      >*!A ĎHq@%     
 gp!W "?     $ ?R}J#DN6I@     $KrDU~'@ Q|A        #"/H"E$Ԟ/@ A      Wq$BDDI!@	        Gb	!B J@     H?!U=/"<IPLW      >*****(*(*(*()(IIIIJ`      8CA
**TTHB!J#%M      8CO*T|I%$J/M     89âE
**TTIB%*'M      8CA
*T0qIR)
"%M	       AWH*RPD"	FCĀ     <;I**TIIE!
%%MA     
O?UTJU
f      ;OU5]THB%J2eM	     |R"@
 *~STIERIFCĀ     8
?+TTABŕJg(       9%Gʈ* T|IR%j?% M     	$9SH**>T IR%J*M#     t#
1-TԮeSB%}΢      B "("PD A1HA      @ʑ*DJ.
P1@      !A	$O$I$%2j$A
D"      !  $$I0!,Dj`"     ~H"G?T$I!%RLa      ?D@Pp           =#II!L           ~!R" EPB      ? I!$RQ!DWXQ@      !O$>A0!BjH"      Q?90!TDB"      Aǔ)RTyB$Y@       ~|BDBDBDBt~LBDBDBB~      ? ĈG"  ?$&      % D$~!0!@JE"     }" F@<A    ?I
BĆ       I$T%$Y,Qa      Q$1"D*P      
B
*UXY"FUdҀ       B O
$]0" AJYP     ~)IT1!UTB      ! $|!0B'A
D"       }C            ! ?
$|!3!$DJL"      A J?IX! B-b       IJ$X('@EA     DC $         
I*QT! R`      !I	T`$~1"GY_     |QGT%Z%X,Qa     >D@	?,J^B5	        !"$ q$U3%TJYj     %I ?$ 2%TJYj      BGJ
"X!B%MO     D   $~1R"EZe"      B	O%$^1z"E*YW     B#*#$OP
         PR
 >T B"Y,H      ! 
.$2 BP      ")TؤI"E%]f҉       $X BGC     " (
.AX!'AEMPR     ?B
)  ?I	
R      (
 XE"C5DR     IA$|1R#EJ_"     $G	$H IN     
 U$/R@$~1
#D*C     %Q$>$ 1R#EJ_"     
bp!('?@        HO$(>*        C!E_ @!H#     I 2J.8#@%G     ! O r~WT IN      E"UX֐A#DRR     " EO$>E0!B*H     "D#ARO")Q F$	_      @!Bbo    #     H O	?%HT!BFĕOJR (     K/R) $y$O       !RBʒD>H@!B       "   ?HP"D@x     (P"Cc>J8 F
      G   B       >!Q
F?HjCRA     @*B
>*D( @     *
>H"*I&(!      *D
~H"*H&(A      ?B!!      @      >W?IMRjT@      =#II!L ?B!!     !HTD!  DADA    F(  0C      *&>J*$ @      @+B
JZ*($@       @I*U?ITQ"G         @HU$IW'H@       'E>)STWH@!     ꁬFZ~jUF!@    J*+B>TH       UI4( ?B!!       %_UBTSW:HJ@!     E_?>UR       @HJ5TĮ'QG( 0     _5U~P(       A!'>~aB      "$DO %')?ࠀ     BQ*kT PCJ@*C      @?I >>TTD  @     "EODTSn;     w|)TRq
W*wPUBU7        	 A	2HB @       	 
 2 @ B @       	 
 0@A P@@       	
0"DF       	
 7A         	 
0H  $@P        	
1`I@BDEPP@@       	
	"4HBBDQ       	|	 3J B"I       	!D1<
J B"I       	
 7D@F       	 J	3
P"DQ@B       	
 0@H B AA       	
I	$3A "DD@       	|	H2"J@BL5HI        @ !B       	
	0E@BDEP@        	
"2OB AA       	
2 "I @@       	

"4D_"DDB       	|	 3C$@        	
	$3I  AA         '!?@B       	!B	2hB AA       	
D	$4&BOB@       $DȪ
$@        
B:8rIP)$BA       	
H
 0@DDQ       	 @7JR"JD%B       	 
)
R4JS"@DB       	
 ?A         	 K	
7ԨiPD F       	

"0 OB AA       	
#)2RRH$S        	?
B 7_B
B       	 
	3_"@DB       	
?A @        	 
4DA         	
4R"BB       		$3OF       r
LD?I ¤M@        	JL
5>@           	?~3_"?"8C       	
 2HUP
"L       D/ @@        $)$:I D       	
O	 ?EBAN        	
1L@"        	TD?&JHD@       		$2Hc$@       

"
`A IT        	
2
O@        	 
w	
?Ԡ*H BBB       	
?OB AA       	?I	$3_I        (?"A"}@       	x1P]`5D@        	$?OB?AA       	?@	2 MP_*Q@       	BJ6O"?@A        1*?X"AYBHAA       	
	2@ G       	?I	$3_""RA       #D"$JE"I@D       $;BD	D       C?*Q$BHH       DO$()rF       	
T	$4FH  G       	0>@ BHBD       yhg! A      jCTQ 
%D       	 ~1__Q~       	I%܂?*F#        Ԉ 'Ȃ "IT@       r`>5"WuDQT        ~=Ja*BXHH       B-("PHH       IH1$D3I       ((JI@       )R$^!"DHȖ#       	?A	3_D>@        U
7Ԣ*DP!@       I*s8 Q$I@         B) ߺQTI@       A$H%"A$I       ?@ <
RI)A 
$bR@       	{)	J4O"?@A       B"TR$"ʒ!{$       ?DLdO?@HB      {!JkUe BB      ?@   T/xA I       

" oyR!{""H        I*~!|BQ"P      ?A DT/P@DDA      ?BcI@?       ALUb_DDQXB	LQ      }I,QI$gX@!        `O RG      ?$I	UQc[A$OPD        Ԉ"'URUSQ      yMIiTH["IlE      dEI'J?UI      "u}HR"ePA      !UZ$(hG! C        ?U /VF      -Ȋ"i^*B	_ʠ      }QLUi!_Iw      ?T	gz\ $D     $? H         <>B!"B!"G@     A!Ć$1!HbC'!     $HB	H"D$I'șA       ?  H
(ȐBp    Hbć蠂? @     ?AKHeS(~A@      D	o"$ȉ"      Q"O"%H"$#ȉ?      !!@g
@I	     @<_ dB_ %T      D}f_yHwR)B%҉J    "HDDIU_%CT)      @ ĒE
?TBhQIbbDDQd    A'rM	!B	BAf       !IJ?*B|IbD)Hd      ! B	/Ғ$$~XI2UD	%"QA       @CI*$*~THBBQAA      `p  BBH`O>         G	%$A~HB!QA     # B BBH`O>      #@(~tIREI QA     *T!SER
 B%JJgI)RdA      #A')02~<IH%BQA       CUR*UB-HBgA	E$A       #@I%Q~HBIQEA     DH G	/$~ }I"EH%QA     |!$@?UBKb$BB$     $ EO>EdBOQ      "I_>D%UVąQE         @ ?H!"BD     ?@    !"BD     @@@AL@a  @ "BD?        G @   "BD?     D   ?H!"BD      !(@"@  "BD?      2` D?        <8  "BD?      4#*hL "BD      E	ew  "BD?        COH   D?      ' @?  "@ 	     ! G?"E$ D?     }A)
$*b  "BD?      p? 1 O!> 	     ')JJR%$6 `G  	     ! C!Ȫ)#&t 	      ' @>DO     A'>DB'	    "@(
 (@       @ G$G$      HB!(A!G@D `    H"TR$H>(!>( @@     "C#B!"B!       " H"$&H"TV(P@    Db#G1H~CE     >| H2Ad $
 !    !>B?"""D     %I	$$B	$P"HA    ĉ$H"DH"D<      "d&N|&J2|DP    ?@C C@      <'TE2ILf#" !@     ?I"TB # # #      "$'ȩ;$"H"$L!      "H#舒"H" ""       %+ĩH"_dI6HB    HbCĆ$1!HbCĄ     @""((
( ?     $~C	$A	
$(D@      	$DRQFf<ĕ#       @	J"BB        "C"B!"RF1       @$	$H) 
H ?     "$ȉ"$" $P@     <$C$BO 
H ?     $#	$P2P9$H@?      ' 	/HI!$H@%      $9$ _A%P@     $9$ B	$ B      @ "C(|&!"!@     	?$ J*$RD     / H"R)HR J    ) eC$O 
H ?     ?$C	6''B	>$ B        ? I)$HII%@@
      @C$A	$TJQ     	$$"RI$ B	< ?     @$$BA	D@      %A%R	H"T@`     O$?YeDY!dH@"    G@A$       @%C	$JUY$(D@      *(`B0 @A@A     @?)? D	 $
@      	@%|P	PJUIR=H%!@      w$DI%RUIU$T        " ?@@      ĉ	~$$OȲ.JD/R$QB    ??DE!	       
O$TJQ      B/ȡ"AO ??     @C$B	"d@@     @?C$(A	%BA      I$A	< J*?     9%$_I%$B@      2;  ?@@     @B5 ß       H"G5A?@@    I"$PMO!<!      
O)%I/$A	8RI @    @	?H)?!        'DA%tJ	+UTO]BA      )? P?BA       
%R <Ȑ`    ODS	?JI)D@     I?$@	R@"     I!$!<O!< @     ҙDe)PDS<@     <$ D	RP     )PQ}_@@     @	/$I$_$"C 3     @	/$	 H) B     x$I?B_$JI ?    )?A	_<Ȑ`    ' KP>      @KD"B	$ZzIDB    (!TB?>H$      UHIEQ        ( AEQ? P!?@    O%%H	?BA       'C'R_$Re0 P    ҙ{)PD}FRI}EP@     #D$@$E%RJOJ@     C$K$F_%D@      DDe}FWQeEPAA    II%Q	 Z)H>      %xWP~
g    OD	?A	?B      ?L}^H
!&DLqR"D     $#$I)$J%A      }
"*_J}."THB    )5JO<B_ =R"    O %GYNe@	?H ?     P/()@dHwRU@A     T1fQ $H' A        @Cd9 $I/zB/)R       "\$RHy"}'y      @?Isq %"D"A    ҙJeO 
O  @@    ODK
$D
TY%D@!      @@^EK'H$       ʩ*_ <
O|J @     $}I
/HTO$UQ     
bp!('?@?@@      T)^ I%HRR      OO ީ@%RI$^@I     ʩ?A	DO=@       D	ˢUZwC@I     )5	?JEdA     HO$ ԩLJRIm%$RPH    ?!$ ԩRR_D%RTDc     %tC
UE?@@      I/MD8@     #)?DI$"_/? R     	K){ޔH$B_?D        <IޔH)^$OyjH    ҙ{)	?I	? D@     D	˨-wz@]]kpUց?DT      A D
"F($R      |H _Ć"(D!B E?         AG	!I(Q% B@!?        x"Bd?H1!G%Q      $"Q"$ 0BbBT      ! _%0@Gʂ$      !""? ?1IG	      '"?D3DYI0     )|%"1Q2H BB       TDA	 CJ!$!       _IQ&D DJI%%      H@#E-R~H"E!JRVPA        @@  #DH"PH@       C% A~"GBIPD       @@"~( @@_B@      A ~Q4 BQYE(@      @ @@A (  @@       @D#bB4>D     E"
"2(PH@H        P&$D&"@        @@2dIA""     A@ H@B          C2d!H@?       P  <2"dEH!$H          I @       J!B(_!          @  D2gH@A"ȄA       ; 2dI!$CȄ      @ !J2(dN        #A)(ZeHJ!*BT(@       AaB2e)JP!(CЄJ      D"ǤH2 J@AT0@        C@ADBO2 eH "#؄       $@2e)JH1$(         ; eJ`a($B      DI!$RYIT2XA%@      #@D$2fI$A$$H      B)f'  Q       }" F@<A    @L       @ C A3dIA""      A#AD          #@"D2e}J A(B        B	R^EɊ*T)@"B       A2eHA$$H       @#!DD          CA
.d!K!      @ C  2 dH 'D? B     @@ 2$JHH       !B	^"Ȋ$*JW"@
"      ?*2UgIP-Sd        'A?)JR/R@G@!        !)
3d!HH%C"     HDG2H""          C$JPABTD0@@         CABHD^~$PA"TQA         C 2eJH?         C$I$ʪ"EGIDA         GB
$ 	$OI          C/D' 3     A BY@H!BD?     DG2 KaU$2@C     )?HRJ*Ԡ A@       @ C  ?A$ EGID@(       @D$2e%K!       !D!2BdI/!         !?2d!K)Ҥ      'P$2OK eJ/D      GRä KPD?A       # ?B$$"Oǐ!      @CAB_h %*T)RRIHd     A@GU2 H@B     ^H*Hq)RD(        A!$d/dXHО}#$      G"ǄH2 H@B      @ C $ B	 A      {ޑ%"jH0TIZ'IJ%      $O? eJ/ E@       BI'I' E         # !2BdH ($H      UHIEQ        @"H?@dI  
UW@       R^"Uʑ'*U)@     (Q<QeH A'       @ C%ޔ)K*JVA4G      CzJjU!WR%A       #
%|!'H	R    􄯧DJRTL ? h     !)Ei
_ԩ)dRG"E    _$ @?UUH2@      !)	kTTQRGDa     #A=$@ERQJGJ@     [S)I'D? B      #A%(蜄i_!jG"h A      "eJ(
UWA      @!?jW\_'uʪU"        ? 2eJH!Ą    OD@?Db ?       *"C8$5PC  3     D8A2KU"D      PPD? 2eJ/R3        H^% $"Oǐ?        !?(d J+PȐ?B      @!%H!"E$@       ' ]ujUʨ-Q
'**QA       # iRHB!
B         Rc%EA/C$        Hw)mTUP
I `     'I	ܤkiRJR(YCŀ      Q2$%TE _IR     $ ?R%J-RGI@     #8HkP<VRJO       @$iR@@
bR       @ C*2e#I"̄0      @? kP9_RU˒U     H B)$j-JGs@	!     y=D^U+UWN@       !>HDTPQBE{(      C!PIS=_J}"C      @  B	*"B A         @@T)A 
b      " DGȐ""vU* D@"2DC         @@ U(@A@A	      B! O"TRADQ       H"E'@RUI*E         @>	DNIU&WDI$DA        @@B$IQ%'@A	       G~I	$DIU&UQcDA      " $ /!A        xG T!+D!B        #D B?  W(@@        '@ !BU( D A	        !NWĠ$JT!N`
D        @@TA(@B(QE         @O$U%+D"D      @ GQB)HhWI
	D)      !B' U*DB         @G U*PDA
      !O@xP!'@A	      S)(RP ~| H2PT       'HRDU*DB         @AG@BDD~TQ(@B(QE         G   W(@@        <O $IP!'HQ/@D        DN@$ U*HDB$     @@A@GA_b *jUWQ=DHd     @PDOґ=@HjTy%$JI         G ?@T+A B%       'H  U(@ A	     @A ā?RJkP B!~       #DB?U%+A :	      @ @O B$UP!'I/AD        @O DQ$Vp!      A B wҡUBQBzlP I	Q@     |  ?@p<; D       '@B^T+D ? 	      !D'B2DU}* EH
"     @@ȁ
C	UkYP !        '@ĔU+DB?"     AB?ȑBToR<I*"D     G@5 nUT I	U      ;B         B /BT
D! BE      ;8 AP(       QA < T@@!B     @q? LA8QDd@      @ _~U D!B       8CߦY9$iT" D?      8{ǀ8 AP      8C߄5AADA	       B@HT"BH	"      ; AB8QQ$AA
     @8C ~8	R!B 
      8C?DH9RV," DB      8CO9 AT$       sD!L!8SHd!D!E      p?  H @      9#@	_H6BL"
      8~5	R!B?B      pLA9TPdADA      ~ "f20|   @       8C߄9EPA	     9#@_$:%RD""D      ;I9TV4!B       wSLU9UUUUaDA     (8K?I9$QT!"EEA      8C!_I9AP"D     8ψQDJ7*UQ,Q" D        <8| L0     9A1P5WA!~     }" F@<A  p *!@      @8!_J9U,QJD֊R      8C 8 AW      8#@?H4!DA(A     "BD   p *!@       " $ h/	* "B       ; A9JQ$A	      @8C : }OB"F      9A!I9$QD	DD      9!߀9T DB      8AO4J$P      ;?I9RD" D
      ;!ߠF98T"DD       ; AB9W䄁	"D     8{ !"_@ ;D$
b     9#	9 T ~       t>E_
mTʪ!*B
     9'ĐA_D$ 9ET"$D      ;D9!U"HD!      8C9$T"D      ;?I!4@B$A      8CI:RABDE      ;!ߠA8 %WT*Dd      :K ߈D5R$A
D ?     9_? 9T" D     8{ǀ?*T;QB      @8C ?B8 P       ;  8PD	      @0":B@DB	      ;!ߠA4 @$
?      ;ߠA9T! "      8C?D 9	W! E      8!ߠ ;AP      8{ǀP9,ITaB$      ;_ :"EUL D     9A9$IW!B$     @8C 9T$!~     ;?I9	TB       8Cߑ8XP"?!      8C!߄ 9	T!B
"	     @8C A9PABDD(      	9 ?":UTB*       8#!@8QB%      8C@A
_ġ~8RB("      8#ߢ9|!U!BH
"      ;Đ!ߤU9Q
BQD<      :KĐ!߀ 9	T
      @8?>:~W!      rđWLJ:W$eUB       0A?HE#8 OD)      	9 ?4 AO*BJE       ; U9dTBD
     9A
":"AW
$      9AD4P@      ;Đ_9$A:	      ;@_ 9_
$      @8C_U4 I/AD      ;  6@	f      !!@g
@I| L0     J[M)UGA?B      ? ߕ*8QW?      ;Đa_5AO*BJE       ;P8W?      w!?J*kĪ-(    B 9$A  *&0     ; ?DR4 BB      
 :19TB?"     9  U9ܨA_
$     /"R_Im/ADU     	KUjRB+Q	B      wQ?"hǞ%zg      71Hq(?I9$B$"     s!?%?{iRϾIHT     2!:8 @ 	     r#y EPIoȢy"}	g     Hr B)kj
BsH	!     	$9SA2I9$R$A	      ?0AEWWD**       B       @        BB @1 "H        B"  ?@" D0      AD! @!B!  @       A@  # D`      ADA ? 	 " "#      AD  >DD"$Έ        AD?D@" @       A@   " G ?      A@ /@!"BD      A@  <H@!^       AA@ P!?@       BB ?H!"BD?      AC?         ADQ          @?@!        A!@   A	L      AB?~$H0
"      A@  /@ HB	F        ?@c<       AOq@3 i       AA"H	`02PH* 0         1 ><         p         p     @ BW%?A (P@A         
"$
" 	       ?@ C       ?I!'       ?~@C _ .?"8       $  >$0O<      AG $O{       ADHXAA.D       D?A&"*!       ?Q4p"PY!B
#       D!@@      AA(I$          /?B  !"        DDz AC}	      A	O@؀?      $D ?D@ @       D@fD      AO"D}HB9A       !z s$KД/BB#       A!_d6`       ϐ?PI  	        $y'IE        ȉ$I$        G?I$CEH               @        # @!"~$Q  t(@     @! "$P@ t( @?     P!# ""$DPq(@     !#@ "$$PpO          #D A?HDIAD<)Pa       #B@"6EH AG         O "D~I	R!\? B         @G""DDIAD!\_       @! 
"$%PDu/         D
*  'bAI$T@B       #D A?DI yDL       H A'	" H	B\? B      @ @O  D I@B(          @G A	DIEE҅A\DP(        @! G A?IDI!DB      }A/	
U$     ?      H! 1       9_SERu     ! @O"kD KAGH*C      @ DP  ! @@      @ DP B       @ DP     ?      @~"D(@  B ?@ #@!     @ DP  @`A$!B      @ }DH @  #D  ?      @@ !   D`     @ DP  @ AȜ      @ DP       @ DP"J BE!     @ DP@ @?     ?      @@     @      @ DP  @       @ DPP1 I!@       @~"D(@ @ 	
"$H       @ DP   " G ?     @ DP "# D`     @ DP ??B!"B      @~"D(@
1 @      @ DP ?B@ 8C     @ DP   ?@  @      @~"D(@  @'H!?     @ DP @A * #0A      @~"D(@  A @G     @ DP	0@      @ DP          @ DP  "}
$P`@      @ DP #H!B(     @ DP  C D`     @ DTD ? |   <     @ DP ? ?H!BC     @ DP| $@B      @~"D(@/?D !J       @~"D(CD I$IE!
B      @ DP           @~"D(@   #      @~"D(@       ?      @~"D(C  p_ |P ?      @~"D(A  ?B! $ G     @ DP|~ #tGB     @ DP   ?         @~"D(@@!B@V#8A     @ DPJ*QTEP%      @~"D(@(`?I!H	*     @ DP? @       @~"D(B?!@BIW"D      @ DP(I$I%QH@      @ DR @>EA@#      @~"D(@?A@ABL      @~"D(@ ?@ !@      @ DP߈R>E($PR       @@ A p8      @~"D(@ @DAD pp      @~"D(@OX       @~"D(A ?B !R$ !       @~"D(@   ?@@      @~"D(A"	 ?T&8C      @~"D(@  ? B     @ DT@T"EHJA      @~"D(AH	?A$I       @~"D(@@$HEC!J     @ DP?  JP      @~"D(Gψ>|@ ""!      @~"D(A         @~"D(@`z      @~"D(@AR	)GAIf      @~"D(@ ? H@     @ DP y #@E      @~"D(@   @@	      @~"D(@"DQTQ
Q!      @~"D(@~S  _!?"8      @|"EB>@@?@@      @~"D(@ ?        @@I!$~H	#B@E D      @~"D(@?  Dpg      @~"D(@
"$
" 	      @|"D  T$F`     @ DPDOH!BA< A      @~"D(A?"	0qSI>D      @~"D(A?ߤ$II$P      @~"D(BDq	DAD pp      @|"DBH ?@@ ET@      @~"D(@ B$Q)EQ	)a      @~"D(@B.$"H$Q"z_        @~"D(G  A$DKA       @~"D(A	>	$"3 JE@      @~"D(DDCDDQ?DD      @@?BJL"?      @~"D(B?~)"RG	C
       }$E?@@      @~"D(A$*~"w% E     @ DP@ CǄ      @~"D(AC#R""BBc      @~"D    BD      @~"D(A@?	#$&bC      @~"D*@C1   BD"D     @ TP ĒH ̂a      @~"DA?B	H0`s1X!~      @~"D(A C䈅?¤(HD@      @~"D(G b@3H  A	      @~"D(A"> ! 
@      @~"D(@yI'$$IL      @~BDP@ЀĒ(H(8C!B      @~"D(@ !@      @~"D(A$*1r	W! E      @~"D(G         @~"D(@?D@ 	IIH      @~"D(@""|/F       @|"DD @ $	D!      @~"D(@D*($BDB      @~"D(G	3Q3H*l'     @ DTH#A
DA      @~"D(A  $%       @~"DAOI$>HD"F      @~"D(BB	 ID!#A      @~"D(B Ñ:?T}PBEj#	      }TDA B??,         @~"D(A$%|"Ƞ"      @~"D(G	 (Vha$sFJ$Q        @~"D(GȈ""}|	(P%H8       @~"D(A$O@?L0      @~"D(A ߈?~"DA      @~"D(A>T ASA>D      @~"D(A P@* !"      }$D"H	 `3؈"      @~"D(A ?I~1$sP
$      @~BD@@	 >$<2"EDA?	      @~"D(@ %H        @~"D(@
?I%       @~"D(A!?~ "wA!      @~"D(A` 
$       @|"E@κ :        @~"D(C  @ $      @|"D %	R%HPP(`      @~"D(B
Ȑ #      @~"D @?@x!'Ă      @~"D(@ (_!"~8(! 

#      @|"D	d?~2@?"8      @~"D(B"	T" JyB5
QA      }$G $H@@        @|"D"
J  !>BD      @|"D  $D%       @~"D(DD?ϕ"I KFA	aA      @~"D*A$^R2DNT=      @|"D
R _A_C"D|G      @|"G$(LT)4$DKtA'I@x      @|"D 
C !&҂
c      @~"D(A Ā>Ddu*]Ā	      @~"D(C!? RA      @|"D2"* 鎒H	      }$D*
N)"LC      }$D"$#HJBR)II      @|"GDO>Dd~$IA'      @|"EDGD$F@@      @|"E!_ʀ?AD}B!A      @~"E(A  >DTWr]Ȁ      @|"D I~#
۰n      @~"D(BG?I$CEH      @~"D(G D>"3      @~"DIJ @f1U (8      @|"E"C/ߒ$?~H|      @~"D(AI. Dx!IB2@      @@"	|S@ G9QAD      @|"EH
;UP "
J      +Q? T@A       >W¨"?D9!TDA)Da     +T?DU"DH!B       BT%?8 A_     @" D#y A* #0A      zWB*9AP(        BP?9	T!B       "BTD?8!RD""D       B_?I9$YQąABD       O`'_DuTڪQ*WD!     }" F@<A 	  I @      @A	OAZAO8Whd!B!      p! CǄ  " $T$F`     ( JW?I9ITB$I     !S)J;	T 
     @ BW%?8pR!BDD      #T% ?G9T|"DD     H"U"E9?$;ȪU$A)
        "PB)?R9lU$QMD      D!"G!H" $T$F`      "JR?D9R$A
D ?      !JRE?A8 QRA	      #T% A8 %WT*Dd      DJU*X GLA9uUUUdUtDDB     !"Rb?9TD?@      #T% A8 P$
?      ADG
>q$JA      @ X"w|"(!`	?        @@A)rF"$DH       W%  ;AP        BW$ 8	S!%D     @#DB A* #0A      D@J'Dq|ҊDP	        HUH)DIw*Q*!	E      'PB?I8"P$
     #P%T9$EQ!*"QE"<      @@@DG}r")R/@H      ADG>r"f"$DH     }A/	
U$A* #0A      #T"Ő?? :P	f     @HB""$" $T$F`     !WE9$T A	      'QB" 9T       C_D?UsF:UH      'P8 TB       OU_)Du!?$       NSNrUؑ     <'TE?I9ITB$     !_E$9A_"_D       GUT? >$p"q	$H     HG/TQ%DD@ILp      'P 8 P Bwĩ	       GRJ~$s""       "WE%?9|U@
A     "B \Dwp<ʪ*Dt     !HB@G)>sjҚ
BsH	!      
UE?DTq C$B	?       G%_$]֑$rP׾A%(     !S"
?":UTU	     @ "_	$HI UH`A        @)R&YI%h	R*`?     @ B/$(P	 E !"J       # @ H %@J
       x!BH!@B
        #"D!BH E@       ! !AB$   @ H PP        A$I'HH @I
        @/B_	K@@H A       @!_8HP	%b*         @!_K@@H A      ? @"BQ(@      @ @/@ <HH @I*`C      @" $DE!	%"Q A      x!BxH!|B*`      GIAEQHII'PU@eUT@B       A$ODH@ A
       @@	EHI P @UX        #($P_ I!@Q
     ( Lh? !     @ @_> HH  EP         A$HH @I
       #($P_?HI@Q*`a      #(P?AIP
          D@=JI)P	E@ 
         ($P_ I%@
      ! 'T(>HA D
        ( HADJ%P(5E`A      #!B?HIS(P*`B      #!"B1H@B
 (       BBFH_TP      #A BRI#DB
      O@O  aDQ       @!$_?H!_        #)R?AI	R
        @A?K"JUDa       '!(DP?BI ~        '	B>)DR!H)H5`RB       @%$JHqP	%RJ`       B! A$	D!     @ H(DP K F
 b      GIAEHUIWPZAUT@B      #! D_ AH*Qa      ( H!B?IIHRJI        @ADD^_DK@$	*5`(      G@A,DB      @ +B"~D%HBR RE     @!>"D"%$      #)$_$IH!@B
      ! (o)JI_ꀠ
       #($_"DI 
%TJ_"     @ @ P H %PJ        qP$^sK @I
`       N()W\"UЪT     ! (Da?	IHBJ (        'BDLG! *5`P @     @ @D^ IPJE        @A$DP_@D>H!	%JJ      H"G5DG| !H       " &|0"R	       @_$IJ"JUDa       #AH$JI) J`     P q"M?i IPJE       !!!_
D%J1@J      #/P_? J#DH_`       '"_ AI%_ʀ "        @/"Lc@ | !H      8(Q?DIEUH"      'O^  KD(5D`     #!HD%EK	5P(U$I        @AĢ)JD(ڢ5D`      #!$O*IJ 
U*     !B	>)  (*T8       DD^D?H<U       #I$$IH$	U) a      .H^IK4(*U A       'ABJDHEY
 6      '$@ J(
Ԅ"	     !NT}DKT(Z5D`"      @)$U_ KH=@EE
 6        (W"I} 
*UH"       Q$^"K"$`       @AHE#H!/D)        #O^? HC%(:`RB      'IR  H!@$	
$!      x@$^%H! 	*U$      !DD
"J  PJ       '	RJDIPJ      !$DOI@_ʄ      ʩ*ʑ>|DB     @ @RReH  	*U$      'Q$J("       'Q^^yJK        @ @Ĕ)K *Ha4G      x$*{D" ?!R      'S^H JT*Z@       @@A$I	"Hpж5$$ H     ! Y$I G
 ɀ     ! B5IU	!TP?
J     BIGMb$DB     !$DHI%@
 A      'ABJDI%P/$      <¡B
 $C	/P?     P$QBH! $     !B!;D  
P@       @A$DP__D  IPH U     'R>zK9Jy       z(R/jb | !H     'Q_^ H(ꐕ!      #_>5HQ,ʀ       "T>HOʐ? B       O	"")"Ԉ     >/	D K/JJ}      '	RJD$K '"       'O H!  Uw     !DD;ĔJ($0     /!@RH)(*Ra
c     $yRHDEK*(ڨ_`     % ySD^PIE_ D     ! y@0DK/xJ g     !ED?HM!$T)      @Qk H"x`'I     '!^>{(HI@/)
$      "HD!O(.pZ B     @  '8WRU˒u     '!OI_ʄ      'Db9nܪ"       @  '!_]˒Q     $T^RDUJD+ZDa~       A _@Q@       @	EHIA'@I'A       @/B @ A       O HJ)HBT/@!@      '!$DO"|@8       '	?)DR!@	H<PRB     !! _ AA@<"P       x$_%@CA\DQ        @Ģ)BEѢ<DP      '_  CE<DP     % qQ@@
AU     (A
BQ1D        A	? AP(        A" ! !        @@	?	T%L        @@B$	P"E       @@@"@ AP(        @<	?PBG       C	BAP        @ )BB	PEL       @@@ ?	QB"      @x	?TQR       @@@		? S%L? B     A#@>~ Dx@A
      @%?J>)#UTB    &Dș0 `       @      @      ?DP"B%       @        @@DAL`  @     "(  @( 0
       D_  "D?@    Db#  @B@D`    Db#  !!	AB    Db#@ A @? @     "H
$ @       '	A      "(   !H$     Db# ?KB|$$? @     @ _BB        OX      	*"$@
  @|@!\1      Dq	DAD pp      	P?DI	      D?P!{Ih     D@ʠU@? "F        t  C!     Q\Mg          "~iUKO/    "/ S"䤫	?K      AB$~!AG     D H@%HD@     D@H!DA@AA     D H@qPB"DDP@     D H G"@ D@C $P      D KB*@@@     D I!	B!	D" 
@     DPHGB,A@	$PD     D@H! ?@EEPB$HP      D I$DI'Qc!A     D H@GAB__@D""$P(@       Nw" Ds# A	"P      ARD)~ I
	H)B     @?>I! A!B@     D@HA?	H@D(@      D H@$@ABDP@     D@H!? @O"@     D(HH$H@ 	@     D H! P@AC      AG">#@"*(QQ@       IO!J~s  !B?AA      B'B?1>S!!!~@      Hb$D}w#UA)$E     ~HD%RFdȒ$jId!B(a      ~DHѦ,@@ ?         $II&*Q,Qj      GqDTC1D|MTVQDEU@"      A܀*LވJ&
QB($Pj       Gq_UUS7UTMS_QDEUR"     ܑDIU$Q`|DQDETH     #"1MbF*"     ~DHѦ,@`02 d 0        wQeUS5DDMUVUDEUb"      !@*L߈R&Bȑ!$Mj      !E&1b(Qj      !x*"&"$DO"      QܠȀ &|Ԋ"'H"     |DR&dDOjQdA'S@       )H!BI%Jԑ/RDI$     I@F΄	*TliP%^       P߈&"/P"      GD}U7Q|MSQDAD"     DS`D@jd)5J       I܈y
H&HԾρ""Bj       iLH&	($PjA      )H!_ͤ%J!?H-$      UI4( >I QA$Q     D Iܠ*& !(_*"      @*( &R+Pj      $OIwLD5Rj[       G`}US9_MTV_DEQ"      ۸!.H"$/BR      @@       $!HA_? 0F&H      
"a   BD      ! H  @  ?         '@U%TPHE        GĪUReTJhPP       H	* " D D8     @ B@?~p@	" D?       DA!B~r"BDA      #D! @~r*Y'@E       A'!O~Du"I>D      !HBAA~ qPҢA	     @ @C	~ p )B?B       @O$$sԒ"D      !$DAOD$ rDԊ"$D      #DO? ~w"I
     P"HEW!
"~xq"
"      'IO?~ p@	       IG	?|rR       @@"QIWUUTEDC     !OA~p@	?
"	     B"O+~
rRB*y       GWԢ?" 睩%zg      IBA $@]
$H        |DO$|I$|DQPP      I!"Cĉ	$%H'DD"      A@ C	%RJ$L@       #y%$^I%$^$       !A$O	D=HpQ2,ADB     A I H D A!       ~ D@I$F`?@?A        *
_WȩSEKU:\!\B"B     $^]I%'R]IU5WrA
(P      #ĀJ"I !       $I"RH4, A      !A!BDGI_R <IT7ʬA*A      	,"HG%R<I5SȬA$I      /D}RUK7+\!B"B      AA/R	?"<(KA0      Y$I'$I<H 2#
"      I!$~H !@ @      AA/TWI<DII0       'IW(!<J 7$       Q/BJR)K7,      'ʤI? $H E@ATB      	IRKD9T`#mVE
     $AI"'RwH5W 	%P@     !/z@0RKޔ?{ҌJg      'P1JO      @@@A D s  @@      /@@O?R     < IA$	4X<I I$Q*      =H@!< H@!B
"        x@/BG	'x@A"HAE     B@EBQH      y!$BH @$y$"HHAE     <H 	(4PHI"I*@      =H!"CĄ	~D<I!$DH        xx!B	$ x@!BD       BI	$$PIA%BI	$%Tb!      y (`	  %x! B@U     =JP)C҄	J=*J,P
         x@/R'ĉ$PxA"IUD       x@%BJGIH&$xH BA0E      @H	?%HI$DRBI%B     {	""DG	!$yDQ$P`       x@/B	 ${$BED       x@?B	$pyP)"RHUD      @x@ B@	%Rz""LHD       @A @ $I!"BD	      <H  	T<JH1B
"       x A'I'$~$yH%BIQEA     <I!$Cτ	"D<I!$DH       =@I}<_IE=QIDP        x@/RG%$zH("PHED      xx!B$ {("PHD       x@$"T	$%x|	-"AD      @_B%"_@% _A%_A       x@A"H $ y!$BH>DD     =I!$Cτ	"|<Iy?D@"       !"BHbD$I8%RL	"DL       x@!$"_I$H$z A/AD       A$OD%HpQ"I$IDRL      @x""DG%$ z"B@!D       A _$H@A"TQSL      {%J'IB% x I*
TT&       y	$O	 yz%*SԠ)      yA/BG% {%RĕD     $I$OII$I$I$QM       JI*$ PIA%PI%QbB      "_,$RHa$IT)DR      z$Q.QIT% x@!B      =J(#Ā	 < H@!B
"      {!Oǈ x $"HD?&B      =J/D=KA$I*b      @x$BU	6$x@!D       @!D"EADHH        Hxy/BI$Hx!"BU      @x@ P	 $ x ("PHD       x@!Oǈ	D%$|D!_D     @B5 ß         x@"H%zP/BR
D     {"J'I$z"I	&      y "Oǀz""I$)&      {(jW)DRzrU,Q)怀      @x$"P	%z9(P(Uā     =J/	_=KA)DR      y/B$O%@$K"EDIDSL      OU&TRRI$_A%_A      @/B?B$I$"OĐ!       y$2BRGI$ %zD/R(Uā     =J/D =Ka(U*bC      !$"JDORB%HDA"TQSL      @"C? 	@@       x@!B  %z/@E     y	$OI $ {A$I	T'       x@!_ǈ	D%}!$BO"D|      \"E%U(SURJ$IX      Hz!?T	^%x@#J     <@K!(#$	H<pO|	-$A"      =H 'D?B<I'D@       x (P'@%{T'JU*C     <I!'"|<I!$~"      {	(_	d%{*UDIDf        x@!"B $z#DHD"      !I$?$ K#J$BL      /DD$I$ _	L     {ޔ)JR)JR){Ҕ5*RR	b&        x@"HD$y$BID       A/A $I	'H$AM       J%PI%PIA%HA     {ސ!
^	B!zR%*R)RB       /DDII'I$ EL      y%BA @$x %BJUJ      'ׄ	R& !"BQ	      ґIUԈRJJSUI"     <"H>< PI=PIDQR(@      x!/B$@y (a       $Rȏ?$ K)JJT)RRB       x@!BB%x*UH       A I$ KRJ(f     A#@>~ DDA&       zH)"_ǀ	 %z/H       !'Y$$I/DD R     $I(a$O)RJ)rR	V̀      !?DR%JK'HD!~L     Q_E* +TDOE$IX       @A/@J,QDL     =JH)#Ĉ	"< H!RJb       y%UD^Jy*UIDM      @A/DD҈}J"**TT@R     {ސ)JJW)R$y	'H$I?A       @x(BaI%zH/@J    !"Br??
      y$BH%${/@AE     {ޑ*_[S)y'HD?&B      {ޔ)J^	?I$y$ _	&        {?BG$ {/RH E        _O?%UKE/QUR     {/R $y	'A&         OO?$H/AL      "*NTzR) H _)$       /DD%J"e*[)DR     =J!Ą	D<PK?B
"       @/QDR9J _	
"M      )R/z%K9RDyL     :BCQ       @)R$L%JI?@	!N      {!/P% , h"ZjD      @y!'H	 %${/@"D      ""OO*$ K#DDM     !/B$I7HD&cL      B9(B^OR%J(_IBM     $)bVԿ*HA/C$     A? SAܞuZJ      )RK%ID%K䒉(N?        NO;"%H""_I1La     /zRDRJU+UTNR     /zRJRJR?DD	6M     H*@D)$Kj-JDsR	!      ""^/{($HIA/i$̀     	$b!I&@      SY(E!#$"AOȀA      GJ	D*DI%DT         ?@  @?       B`_"l%J$I        q!   !!!PA       BoAB$IT       A2'HH 6Ā2W(@ D      bD_?"m'Q       9!_!B|$$HO% D      sD!D!|HQ!DQ@     8=D}!B(DPQi     H: ^}A#J     >E! =B      ?I 0R	X,@A!?     @EJ$'@B"HBB       GH2?" Ȃ
"!!      C"&FJ"~(DPȡPEAE      @$I
$~HD!RBI(UC       !A!RD	(""HA`       @A(h" gPB BB      !C$J
""DdUB)SB!     @A3"RJ"     A"HFaB|I(Q"D!JL     A(b
K~GITҩDR(U?        A/B
"|dR"$HHB"       @A(` " e!TB(QBD      $I
$#d!RB$QB     P A-EK
,"fAR)(RR      B$F@B~DH^"DH D       A"$FHIEAQ¥DRHUD     AB/BJ~E QRĕD       A)R
 "e$IX HAB     @@APK w)JRjĤ	"R       @/PB"eH_"DB      @AB$FPJU ~ETʩWUHAD     D #$EO""|dW EBA      C
+P*U ~~DRHH%DD       'B
 "|dR"'HB$      @!(P*@~EBU
T(UR"         O "d AR%(RRB     @@AQK%|DI"D	6M      GQKH}KTҤIR     A"^$wIDz$IH5L     @@)JUJEHTTOU%D      COK? }HB*4RRB     A!Y$|ID	fO      @!PD}M|I(_L     B!zUFK"|K~"D!JL      G
RJRI	I L     E!zUKu%|RO	ԤIP%LD     @BK?I|I        @P >|DH$$L      BI/D
"~G	W$_ȠD     AH}JTRDJMa     @@AP >|DH$$L      C$F~E	W$_ȑAE     BjKU|K	z$IAM     @HD1R }
  ( PE      @ CEQ
)*RTB $Q       !B'O!*~T ! $P      @ DQQRH(U      $ HC"!(ω!*THD$Q      D@HI1߮IR$(_      "!@%X|$'H                CA     H F         CA   ?      (        CA    @ @      CA    @ "$0 A@       CA   #@ @       @"   @?  0      CA   PA   p      CA    @      ?      CA    @BR	  0x       CA !@$_J       CA  @!     @       CA   `01  p      CA   A 
 $ "H       CA  	 #@      CA        @       CA   B ?@ #@!      CA    8~@	d'	H   @      CA    @C      CA    @ B       CA  @ ?B!B" @       CA     p 	 !      CA            @"  A  D`      CA      I @      !     CA        CA  
 0|A       CA        @       CA        (        CA   @(I "H       CA  Ѐ@0! $H     @"    A       @"  0>DP`@?     @" 	" DA "H      CA  a* #0A      CA @  P!?@      CA ??$ K!	(a       CA   ?B@ 8C      CA  @         CA  @$$HH!"BD?      CA    ?* #0A      CQ @ @  A!A      @" $I%J/(@      CA D $$HH"BD      CA  T*H!UB
      CA   ?  b!BC       CA g?@@      CA     ?        CA  @     (        CA   ? ?        @"  ?B! $ G      CA@| 3BHB      CA | $@B     @" |~ #tGB      CA  @ ""(!P@     @" "   I6      CA  ω$DPQ"$EP      !  @ #       CA AJ H!$QH      CA        IR     @"    @      @"?*Z
A"D
@      CA  @`b3     !  CA ~      CA D A/G!B	     @" /H$ A$ 
      !(@ @BD         CA  H ?         CA?  q "@H!A       CQ  D A(       CA DDF@IR     !   *$@o       !   ?	 H$I=#@      @" ?BDbD$!       CA   I A?	"G      CA AJ H!$QHɑ	     !    `? 
 D?      CI ?A@ABL      CA  B!_Ѐ!>BD
@      CA OX       CA $"DB!DDOQ@       CA  B/B!"B|      CA  @?A$YH E      @" "$" 	        D?@@@       CA D $$H!"O     A    0<I$C@@       CA b! !      @" cE6	      CA DH!      CI   ~@         CA  ?@ !@       CA F@	$KA"I %      CA HDHaAB

"     !$ @?  ?HG	 0     !  $$H   @     ! "tĎ	>* #0A     @"  	2
O	"D     @"  ?BEdID)a     !  @D$B ( p      CA   $(HP!B     @" ?$H B!"
      CEG  C~*'B!J     @"   "2      CI (Fo ?@ 2     ! @( p      CA o S F      ! AB)T$IQ"E!
&QHo     @"  | _ ?      CAI
`   <     !    ?DD	' A?     A <	0HHd8      CA  $HT&8C     !(@`A   @       CA ??BrT$!      ! AD? !B     !    $ 0      CA@?II%3O      ! !         A ?@@      CA <`⢥ERDD      CA H O"D     @"	>T"D@
0A     ! A@       CA  @ ?D  E$%       CArH$O$#     ! $  w  OA?      @""@H@d8D     @" .Q8G !*"      CA (` OƐ!~      !   ?H A"     ! ?    F     @" yI'$$IL     !  	3Q3H*l'      CA
> sP?     @" "(DB"H       CA?\A% C
      !   $HL`9Ā"      CA?~=B(B $      @" <I$$i/ E     A B"K  ?@`C D     !(@D? @      A  H`a ZR	     @"$*1r	W! E     @" ?! !"     ! (D        ! #@%D @       CA  > E	PH"     !  "? ?@!B8
J      @"?~1HrQ_I"     ! #@%T&8C     ! d=HI!C?@     @" ?"IB	%"A     !  
J)( p     @" QIDʎ$     !  !?"     !$B
  !B      CA N? >@D!OIR@D     !  ?U]
'H(      !$ G  ? B      CA!?~ "wA!      CA 	@؀?     @"ČP0B!< !"     A @ϒQ? D|P EQA     !  Ȉ""}|	$TI$I      !   0 $?     !    ю  @     A 	P PP
"@     ! G	 (Vha$sFJ$Q       A	?*H $#O?B      !  ?~@B
"     !  DI&L !Ar<     !   !Q 'U" D~     !  >) gU" D~      ! "$08O!0     @" ! |  CEQA     ! " ||
T&8C     ! A s$O!R"#     ! 	"*Q'H !     !   b	 j3 	     ! $k%@B 6     AA=} gJ%"zD%     !$@(_!%H     ! @R<	 _	"Ʉ     ! D @@      !$ $H@@       ! Ĉ?~$'H" !~     !    c䂯$     !(v!CE
      CA π>"D|$_Ȥ"     A  @?@x!'Ă      CA ?>DpW!$     A  I>D  @@@     !$  ?  #|     !(gDTPP@_a =  D     ! Pq	O!JBP9     ! ?B*@	f     !  b" <\A$ G     !(  !     A ?~I	HE $      A A?J $OA     ! 	$ A?A     A<T P	A%     ! D	 @QA@@      !  ITbH%? E     ! DO>GĈ"$}HQ#     !  4KY.A/      ! *
N)"LC     ! DO>>GĈ $I       CA !x$W     !  > WU"D~     ! W?IH%      A T$5XRPaCU%V     !  q>D%R#     A!_ʀ?AD}B!A     A 	#ʄ$J)'BH*D     A 	E1uSI$0     @"?U$  C ?	      !"=+K-)$AD pp     ! ?I|% OA?I     A O$ D&IS	8      A ȄUrDDS/B     !  ?UTQ/Jd     A >*-Q%$G"Ĥ@     !   ??BB	"O< B     !"%O? 	ВBb     !  I~#
۰n     A  ?H	 c䂯 T)     A@Є?B| O_T     A <H  %     !$-Ti$>	)D     AD?|   {@_*     A ?Ȫ!@I
R$@     ! "AE t3     A"Cf"@!Eǟ     ! "䈟d	H%#@?@     ! H >D#uRK      !  I. Dx!IB2@     AB!Ȑ?B% QT     ! D$A>>     (G*"||  UbB     !~qWT @     !(DEQW1>     ! "䈟d~%@A     ! H
;UP "
J     A *wTD'DO1Da     !PsZ T+[PO	       $>~  H08"@H@       $>~  GP@@       |/R%'
xR *DTI@C      AIH#@PIBI4I!     @O$TSH RJAIE&H      $>~! CA(lC     	 *N%Q@)x"$"i      $>~" O!B.BA     <A	$I$I %BJQJ#       !$IȞ$GD9R$*@d       $>~  _?AO      >HD)2SI%JIe@J#       |@"'x~" JOԈ@C       !D$Gx9"W*@d        !IϞ$G|!8BP*@d       ?/P@ABRH"     @<AE1))RNAqBEJe$     ?H0Q@/Q|"<II      <C%(K )Np
UJe      !^$G8BR*@d      < Aˎ\ @\*T       BB "(      #D!B$HP P@!
           " D@ !      #DCQ
d*}P D@<P       #A#ED*|B AȜ       @@EJJUH~$H@AD0      8GU
T*}PE A\Ȑ       C萢bQH D'    ?" 𐘋 @DC      @_IU%T_|!DEI'        C%HJ?*B|C!@        GB
*~|J!\P? B     @ @@E@*}RI!\      ""
((| D'      ACEH| @GD       G_IU%WRUI}%GE#       $ ?D@ !      @UTWUU}UEQE]@B       @   C!       <GPjT*}R"U NTHJ       #D_D*} D@     BAVWRUI}DEy        G@
8*| |G<DP     P ACMJ*,|ԢA@<RPD       @@RJI*}H@A\       'ATJĕ*X}0PA!<(       !@ЀJU*P!GI#]%      @x!'	* C!       A'z* T!@@A      ! GB*f#(@W!RB        GD|PBAUPJ     ! B ܚ5"jDB$iTJ     %!I(Q

!DC        G`J * }A@<RPC      I$HdJB?'       @@
"TCA!R
b       @GH}PDAҜ
        @@_ʤL*}$8D P     H A{BU|HG!BP     P!ESM*x| C       !BH
 +}@HDМ`        G`J"*D| B \P? B     ! Cb*U}DAȥQ<P     @ @OH
?* |C!P? B     B!>TR%O }DEA      !DB%E
*| HBAA     !OEH"*D|@Oʜ      #DPJ*}@@      @ r A?      'AC_ʪU*}@@     @ @GJJ*D}B AD6     AbOD+*Q~ C!       !BHJ!*|@ !@     !A *$IE0AD      A ʪUKU"BE#QQ      !xBE_H*} GҜQ       @(UE$? ?D@ !      APJ *!CI#]%      "D JU *THA D"       @CB
*B}G\      D " I0 "     ( HO_ʤ*}H@ Ȝ      ! BxJ*^ExU]D      @G|OԚ5UjT DD_=DP       @I_ B?'     ? 0~IB_    􄯧DJRTL'      @ I("^Ua| A?       G TC	USP       ICI
?}|E\       CA    J     #DCQJE*}"UPUHO&     !$BH*U)jDqRV       HJU>DAWB         GWʢ}|" VHSJ     @ CEa
I*}HDJ      @'I*%D1WcQ5      D *HbHĈ !        GET}HEhAԜ $    B  p	P? B        @@**@@A#=QQ        @@
$BHBA      (DHJTB!KP       CU? TCO]?"       PDW*U!C_A       BH$ԂCj       GWJ  BO]     !B JU TD	G|!TCX      '@RJI+| D\      'B#PJA*|H<P     @ @GEE
 *}DҐ=     A!'>~a A?     !A JJjTSGE#QQ       AǤH
 / @J~     !BԪ5 *)DIPө]j       C?kT@@A U     A!?Ĥ U C!        G5BU)BI^T)      @@@U)j B@(        A DJ~     (H "	_$T A?      AJRUKFԅ1[c-Q     !BH**TBA     @ ?Á3?>T"      D
@!9~B|@J~      'HB
*| #UPDT=       >H@J~     /R}jWԢ)_S}R;     ?"H@J~     "G*RU)GY#RQ
c     !HBJ)*TkBJcqP     ?H?
3>T"     ! D?A$@J~     $DQи?*(UuG!_à       |@%RJI*U"ETz         AER[*UUTE| &      0@Q
UvUXURy_@       @%_Q*U<UEy  A      @{RJD*UBU|?@!       AQ
I*UmWz_       " r~  DE!BL

      $ rP OB!*B\
      *:> "B"DM     ! _:>"B"DM      /: 	G?"DU      ( Ȇ1L     @        #G耑"DY* T@"BD        @?	DMIY&TRDM(@      PA |OXBPB@Q        ' '@!BX(P " D       #  B?HY!+P      @  BX)HTA!      ADЎ  dCE       @ @ "@  Y(@P(       ! G)$Z5HU A=%I       @ ' 8pUQ"I !"        GI	$GMIY&WRD @       # B?@YE*U"HD         @ B$IY%/PA	      @ @ AT!A@
"	      B A
GMIYTRDy@      @ @ AT! B@""D       "CH  dCE       ( H  IY%/PT!"EEA       #  X!(@W       %Q $ D@        D
* GMAYTPDDDB       A%K԰UP	P	       (o  $@1        # B? V3R A6	        @G@B@D>X!+P!
B      "$PADH7IU@B$D_        #   T!$DEЅABDD(        # '"$UHrUT$$@H       D
* GMIYvVRDI$DDB       G72V!"J      @ @ UT @O      @ @@D  R@	*L	       @ @ B Y+TB E      @ @PD w)RVi"H        w Bs[) R@	"D      @ @B?BY* T B        '?BIUA)$I?       '	O%${Ȕ)RWI%$JITS      H  DXI(W!D      ! 'A$DHB5DP@(QI       @  D U2W! E       x PY-*HTaB$       'GJET _A6	      'gҐA}T! @GA	       '  *UYU*XPA	     ! "'A/
5>T "EA       8耑?DYE*UBH
"      !P@ X!+T!B%      @ @B? Y+TB          @  Y*T!B
"	       ' 7P%DI[*TTQED      '䠄|X+P?
"	      ( H $Y*HP 	       ' B  W%IH""DD       ?AQHQ)a      @ @ >"Y(W!$       '	OҐT! @_        'BH V%TJQ.@      !$"H!D)H䶄RP	B+S       $D {Ȕ)TI%$JIVR      @ @@ň}V#%J(Q/@D       $ GA	4IY(Q.BLi!       '!J5*T!      ?@@  Xh9L      @ @@BHD$X	(R(0@       (
AɄ5>TA!B	        
?+.$@1        /HDA	}4T! "        _D}}@[}DI=%DDI       /AT$B]P$BIDI!       # Y+TB?"     !! "UDW0 W!        # (W0Wp=
(       $D
AUT(P@       # "5TQ!L       ''B* W$CA	      # ?kY(@W? U	     !"H TY%,P2c      ''"? TA!DMP5BD     "B G)%H
 b3?@EF      '0Op?IY%+R "     #$ҐJEVS _A6	      @/O	$7W)$OP      ''"{(HU"@O$      /GIDIjKW!OP     ""'UDމ_Q*]DTH     #$ԐBREUV&DKQ/DE~     D 
 " 0     D " " 0     "BD  ?ࠦA0     "BD @   ?       AO?*U(U&($PJA        !C|  (        "A?$BH!!BA$P      ~I'HDB$IA"I(aC      #D%_ AH"GBEPD      -$?	D2IH	BC     ~%JH?B"EA$R@C      Dh   F       !B(/! ~|	P$      !B!!~qD$       #'H>"DdQB"IRC     C
+*R
XaC      !B!~(
B	R$̇     C"(H>R)OR_aC     ~|$_$*D8J@DA      ! H>]EqQD	BC     " D">*DTAABIHC       I)W`>~DGI_C     |(QTJ"D A@	P!       ^*'WĨQ#D!ABIPRC     " (   DUERC    |$H> (/%?(XP       
'(>D%EG	BC     ! ?>BD	D"IC      #>AE!CbIOC      B/HQD>BDIBIPC     @ */Q@>~D	D"I_C     U
O?>BDC	%QC      /$DAG	CC     QW@?"B|@"DC       !'ʐ!>~Ą	EJ$     w  'wʨ?TDUERUR     !H@UBB"À      @"BIO)*| QEHJ        ' rH|	_HJ!*BT	h      ! Ȋ>>DT"	@       A#
>(TPBIPÀ      A#
> T "IHC"       $7ʤQ>T!AC      @@A@	U+| AWB
F       @A_I*~RERJQF      !'Wߊ>W!BAC       CH)ϠA*| %WSQ
QdƇ       CI)ϤI*| !QST*QF       HB"_^*}A_J      !$$Њ~> WTC       Q"ʊ>>UIPPB      !!
w>"UT2DP"      @yBHU*}pU3g
#       CJϪ
*"}AS#LJF      C"TYOUw**|bT{EJUFQ      C_8| TUJAF       CRJπ }	WIJFa      A)!
cR ?D       BI_
}ȬU#EKBG      G"@	Ϫw*D}!SOʒ?@         G  >/ B
$H/QE       %_ %PIA%@      B? @
0 H!DG        @@  )>R"E!B(        @!? A   !HQDL         @  < !"B
b       C _! HQ!DQ@      !A'@  >$  D@          G  >  AB"HA      ! '@ O@<@  "@D         @AGD "$DHB      " G/"v<!$BH/2RC      @ A  >D B!EA     0    ? O       #A'@ > "$DH       xG x>  }!B/Q       xG  >  A!B       @ AO H>  B"HA       8 ?Q<DQ$HEA       !B O!>B $$HO% D       '@ "= ""DD!         G   H !B$I/QD     B D  *NT):R
QD".DU        GI%_I%RQD!B        @?_I%RQIE%_A       |DD D|D D| |DDD|D       @ B >AB"HA       #D OH>A(Q/Qa         C O!>B 	"DDO       ( H  $ I<$Q$Hđ/CR!      @ C Oހ%>J 	R$DH/Q      ! G	O=H"JD"      @ @  / <H !""HD        !B O >P I%J/QG      ?   C              @  $=JE3
DDQ      }! C/"  ?        	H~    ? O       '@ U>TR*UOE         @"/A$EF        @ O?I<A @ă/R     	? @! 	 $~
D/߀B      !wbD<!$BH"_       ! GbD<8%RL"D     $!~H   ? O       @_UUTWQAEP@       @?^U%䔕ReIA       #  =  A I$O$        #DO > A?B         @  I<$U BA       #@ ϐ!>B "$D      ' ?D =$"HD!~       #  ? I=  ""DDRB        @ $< $OO 
        !B O?> !z$IO      !  @0O P 4I$O%         A' O >D"$DH> D      " DGO 8J(Q      @ @G    A!B        #A'@@""DD      @ @  $OO 
        !  =@I$H(`      B A^RUI        @ "<(A _       !C` >P$$HO? B       #" D<!%J/HR!       #D ϠA>  %R(QQd        @ O$< @A"TQQ           <  (QD         @$$$O/R        @ Q$OD
       ' 
   "DD6        @    A/C$      @ @PO  w)R2jD"R          " G%
J/HR!      ! <Q4"RY/      !"HO$<( 	**DDB       8?D<D%KOH"      @#8  A<  'A       x <P,I$MdO$         @     _/$        ' O < )J_/DR     @ G/P5@Rk  AD$       # D =/A
"          < $Q       P ?H|  ?       #*N<%L_҄       $D?>!$BO"      Ac$  _ 	G      @ @@OH@$< "L0@     !$$ $<A/C$        @
d@<D$E$EDODR(        ! Ā?R=J'HD!~        # <$OO?"      "!\T>wH|*
u`        @ O A=} ""GĂI 0      %Tw@OD@ =B/B$OE     @ N@ W_|U%GΈ&      @"Ģ	")|A         'GO w<( P!AOQR<      @! *D@9 _A      '' R<  _ɀ       !		/ =D%KO)?      !@$<A/Q_R       'G%/ <$OO?"      @@$]u:-Q
%*.QU      BEԀA<*TURET
        ' /B=))J^T)     D E
P9IJJ!?      #GO?$ (BOO?$      @  /?*<**GĈ" |      D%p*O]D	+RtO]҈     @@@@@.TDN?A      !@R=J%2[d-R      B'8G)OR=(_OB     C@@!!QQ       ' <  %ROT=      @8G   <" D@B       A"8D!_HA     @|^$\% J P     B _  	$'H!B 
      #"E(V)D "@T        @@G < @A !"QA        A8V"ETP3 T)      @HR HH!"RHIA      $ " /$ B	=        "T2PI$RII%$_A       3"f       H TBH  A	       @HT"HHD%RR'I       ! @ {$Q      IWB =JK'D	3     $?RAJ{-RDIR         A@         !@ "|!B
b        @(D"}DIBEA      !@ 'ʈ
"k|AD       $OȀ qO a     H,>N <t(!       !@I"} AEB^DP       I Ĉ |	G^? B     HH?> @u
,        @/"Lc    ?      ! '切x}*IR$PJ      !  H |	G^? B    ~A!Р~$G   ?"      !(WʨQ) |%IG>P?A      UHIEQ      BO I?g    ?     O舑*w DTpH@J     	(x5RJs"_F	0f      !@ 	D'L!4@A
       ?"$@D @3 i      %DA	"S	&$TI(A!@(        D@(DjUTA"HT      @HQG    @3 i       !@O҄hATT       A@O  ( hAT!""T(      @-!TJUL 7ޠEHJ     DE B?IL5$@
       !HD	&Ҁ@kUTB*U      !DR($kQ:       
+@mEJ#DT      !B!?(jIW      \G	VRkRȐ     % 
?Ҏ)JlMA6IT      "%"((HjAO$     GF_!(u)^t9ZB     @;WJ*4T)Qe!JLAH       `C2
8$PT1B 
      a
 D 
$Q!"B 
"	      c $F%2J
%PT*,X@
       CTH%D?@)EeJ!HT      @#P@O$"D)EdILEA     @@R H%? t"*Cf!R
b      `C𢄈 %PT/LR

      @CPA$tN)#<dK̤IU"     A?_DUtI(@oAA      CT@I(_)} dAJ!RT     A_DE4*#dj[!DT      CT O?4 *`Ỏf      BQ c$DP?*!@oC$      `CF2A}$R!'B 
I0     @CTOD?A(!HbI,     @A_R%$ +DdS$      AH?}H_DEW@)B    	)7@G@G@G        AB$GHQ> E!"A     | KA$"OD AFS       '>>D@ @       @A/>EA       P~^_IE%@I(B       !B/>BE!"$        (K>GI	B$Q?        A/D B
@    @ߢF4g !A     |	I""BE2CA        J?@@        @?P?@@      (I!I>EIDI@      @A A>EA	"$Q(@        BD       $GʈD B6A      @A/PI w)JRh	"b     @?~$3&g !A     }	QEJ"TH        A!Ȅ E	"ĠE@     y!$C	"I 򈄡_       ?P BK?@ C      r! ?@@      y(GH>E!Q@     {+$P%K"P     }AUHU"E,@BH      _"!ꔕ8QPE¡       AbOH(?  ?@@     y%*R$IB 1O      !J}P_E@A)HA    A?TQ
A          %EG!B<I	*UcB       I/">F @D      |/Rx=TKT0(_"|      y^'Kd8Q$I,U- J      yB
*T T"D@       A!_ʄ U	W"ĠE@      $H>TR%O UTPD)_A     }IRJ*TE	JTG          A_ʈDUR B"@|       !?
!TDA?       "]UVH$U"B       A%?
% TDA       "?
XaV|I$UC        C!

* TDJU*C     P!# <? ( PHQ@bK        #@?((P!DB       @!  ?( PD"        '@?I$ItG      #(hP B"+          ~(PAB         '?2(RDA         # ?~((PHA       P ACB
PqJDG      @!A~(QGK          (DPCK         # AB(QO       @!$?( P|A       8# H(Q0QH@      ! D B y$Iw% NG      ' >(DPB        @  ?"(PB"       8# ?^(QHIK@       @# ?(P@A          ! (|PCK        " ?R(QHD        #A!?v% G      C
 (|PHB         B "	?!|	u0 G        ?(XQ(IB        A ?(QA@        @G(TyJ	& G     ("K(DPCK       !NS	%Jا%rU(n T G       # A	? (QGK       "HDB?ATu҈% NBG      #@QBL Er%
"TG     "D#!?~@rR%$NBG      #D"?U|!uR%N G      !@?I	`w%N? G      #  )P@A       $C"?߄)~RJ@       @B?I$w%N%G      x!)(PBR       !<(QAB+       'H/T~	rjETP G      D	 /&?
@#     DP#?( P!HB       $$D$Aw
$G     !C! ?sE     @!GA%""pʎe8 G      '@ tN?"G     !
	?
@#     "HG!?*	Qw?G     0'{;(QH+       #BC:Ur*U	n|T G     "ES?Tw҂%NG       |@"??H v*$G     @ BA?(d t$NO G     H GA??~좙wUn$T G     @#D$tAG     #B#*tN?"G     $"IcB[~A aENDTG     $ Ha$B}	wT!zBI G       B# "?U uRN! G     'B#%"{( t?@G     | !\ A@        A$BANE!NC       }"%Gʂ.(PPA@       !BE%DI]%DTI]' @      =(QD!DBExa      ?@|]!DB<B@      y $JH":EĨ]FJ 	@!      | 	.$PHA"N!         A?B]$IDҜ         A/R/DHRF*+xB     |"$Gb@B\AB        A%DJODH$I@E80      "D$PXA2U'      (I!_I$QDEK "      =(QD!DBExi      'P/\ID< (         Q!_τ8\QD%<        @A D@]RI%\(      }B!RPAH         y!B \|IBEE A     |RQI}$DD]%DTI]'@     }	('$H] ADBԼ0@       A/B	\ AE\@      = B!@8      " $ 3 D         9(P@]!DB"      'T>\@A         )J(QDQDEQ       y!B\ D%\        @r(d/B"E8* H       A!BI]$YAE\@       @A?DA	!BB+x      >DDSaBU."PDB%	       }+ QRE"N$@JA       (I!_HY\B%< (         A%DJ @8     $I$OID%KQ       A&$R\HGEĜ "       =!Q/ B"E8
      ~	
A?'BH rO@@@       AB$DPOD>\ @%<D@(         T@$HE"Exခ      @A"I]PEBJA     {ސ%*D'JE SޠEJԜJ     }"/R"B."         !JQ*D!DAuuUTUQut@B      @!$"_䐏B)PO       AAƅTH   
@#     {A _"DD̩U^I" E@       PB/UOU]TER
 "      }j+"$D~Q2F ?@     |$ς]$QDBE\0@@      }
/*DTQ~!EJ% O        A'A$O	QEE҅E\D@(         !(`O"D\B\? B      !B<I$	!BB	8$ H      @)$ROI]!DB         E%DJ ]	G% E      {ޔ)
R@^)ORN!@D     }
/?H.Q%DB!       !bRA	} AO8A     }	(' .P$AB        A/Bd @˄8      =J.I/$]REJ<@
"      B?E]TD\       |/j\X1@҂
        %+RTĩ/ZEÈ AEKx        A"HODDC%K? B       ($_Ϡ]Q@ A       ($UOUDJxd       !$$D@AK%       _)A袑u"EJ(5I      y/@$O%	 @%K       $D@"DCE	8      |$H>| GWQGWP @      &@DA	4Iy*U.KDi!      @#ABB
?@@?@g     PJ>x A!@@?@g       y/R/y EKQ     ! D  ?@?@@?@g     {ޔ/zP"9 DSB"Ȝ      }܊R.?I]$@       	U$YU~U*JTa      *"T_*	BK? B     {	(_"_	^ N\!       "?TOD]|EH"      !zDtUB%      D	+RtO]ĈD	Ku*K     ]'ITO&BȀ      ElY"CvrVj0      	_<^Tr>M*"D     $Q'B!
QAG @      ABDDI~ UpI$rJ      ""^/{(HAOˤ8     /TORDUREKUDA~      @AB"ȈE0 BE%      QI}%D#EI%%_      @!B "BD1 BE%      D@$'谟"RD(2"HH%D     @@'"G@1@H%A     P@B*H",D1@I(eD      @A"Ȉ G2 @H
      @!B/"|DD1BA%     @z((_REK5RP(eB      @!(Ĉ@~D2 @H
      @"('切xE+4R^eJ      BII'  IdO䈑

       GJ^){ހJ#DiIRT@J      C/ "E4PH"     C/(_RD2HH      A!z@0^KoyRJ
g      E_IE0 B     @A?D_TED"      !BG	$>HT BG	""DC      !$BO	/U$IT$BO	""D@     ! BGAI?T A'!B?          G HT BG""D      !AG@>TAG
"	     @ @@ <>HT BG	""DC       8GQ>UDPDE
A       @@>TA'
b     @ A? >HT@DA$BA       @@τ>U@AGA	        @G/U T B @	      #A'AB>UAW"Ġ        @G/>$TPA"D       #D!OH>U@D")Da      @I%R_IUI$DA      " r>	_HO!B!J       @A!>$U|A!      #@GO,>TU(HH          GI>T @      }" F@  "   ?     ! C/U*UTTB D        C!O!>BTDB	1A       G!OA>UAG	"DC       #ʊ>>TT       @G">V"@G       @@@P_ *w)SoĢ"H       ??"?       C	/$QTB'        @@!>~TB 	!     "$GW/UK UDB      @ @G/@>UTF*UE(C      'H>UHG?      	 D@@      @ @OI>(TKA>D     !Ab {ƪS@Â
$     @! G!O@>U @Q*D      p? "?       @OϠ>UG!?A	        G/@>U"TEbUD3      $@E!>UDG"        C'?* }	f      Gτ T|HDB      $"HH!OU侄UPDA+S       G!ϱU>UTA!*"QE"<     y"¤@? "?       G$_H} TR.@       'IO=>UHG?     !@Bg߂:*WUDF      #B'?>UHG      D$HDҾU(DoQ"       G&?z}B$y     'B'τ T@B*      'B'O>T$D!B)De      #@/ߕ)>~T@
"X	      G'{"}T=      @C̢$|A       C"?5|֨܊R*UHU     %(O|'1jQ DB     !C؄/Ry*OIШB~Q     !@@*k| T?$     @ A >?@9! B?       C _#~!H"B     @ @@ ?B9'D       @A$GR$ x@@ @f 0x     I	@? AAƅTH      8@      _
F     ( *R)BVJDA        #+P ?U)dR!o%      ?@  D%DdUXDH     O!T  ?@  ĉC     #  @  @ E      #! B@	$H" H@      @ 9"$DHQ"B G      @A   <~"H AE     #! B@	$H" H@      B B@ B<D/@@     !"D !~"_      @xO " D<$$J(1!%       @_  A= B        @@@O@@? @@
      @A@D@@` < 	$H         (@H@ ?D<	$PHHBbJ #      @@O@	<  A       @A$I)$RH 
 #      @@@OA@<! B@

#     #$H ^@	'@ A E      O@" ܈ '@AB J #     #$JP` ^^	J$HPB     @G@? =
"$I A%     '! B@ ^@H! _      A{! 9j*Re$A!
 #      @}D9%R "(J #      @%@ A;!_A!
#      / @8  @OABDJ#      @@A@`8"G/PE? G       AM0z ?  #@ B? #     0Q9Z*TdA!
 #     ' I  	$OA?       @_ 	 
R  A 
#     '!RJ^
b& AA     $HI @Iy"PDA+SG       A@% _QE* #      x  B9z'H)B^ G      KU i @
D*YDB #      <  "G|!UBAG       ?9 $@DB"G     G@B5 'H"" #     D` H*<HDCRGG     ARJ@$< 'H"ʀ#      @OA   )'H  
D#     IH^ {(<	 4Os
 #     <|D$P"D$DVDB       }P!/DA A      ~|PA! E&A@        !BH!A*DbP!      ?>BDI"RI!"BD	D       ?>BD	#$I!"BD=O      ~R	($GC       %))ISBd%y@     ~AR	($GC        $|H'BE	#D $( P     @"d         OHH!@DQDE%PD       | (
B%	""DE`      AHRBJB)DJ(Q)"     !DB%*T)R)DBЅA

TH       !_H@DqJHR!        RH!GDJ/S       !DHAJ@D!JZIR!     ?@Dy"(ZDID	"       DI)"$) D A@        )BH!@R*D!JP!    $H>| ꤪK      @H
Ü    B O    I$UKH$FjR	!      }E$JD	DXJ!      =J 9K)
_Ҥ%HJUK*%4(      ""I%")?I"E$D     $I}$$D	) E" P      *|T)"LIR%"JDR
(    " Dy@K$dX      ?@DU"Q/DDD:       }I'A? "E$I`      E	$	Ѣ)GEHT H     "!/AR
_҂` AP     EA'	? UFUH
        ~x"C	)?RUT("B       }	'H%DE$E      |(
G>"EA<       KOz%*{Ҕ)KԥIJ*
H      }$$O	?I"D@Dy      "Y	I#E$Q
      | $II#@"EDh_     ?@I#E"_i~	"      )FR""I"EIA      BF&2I?@ED
(       "=HB""*?A$I	DH     A DA'A?
dHG!RT	h4P     "E<OԒ)NR|
'襱M>ED	(     $*=JB"*NRKA_
"     {JRB2
H$H BxH      !@P*J*W A($_Ǡ      #B}TRUIW%_AEPB      !PP'
x*W AH"        P@
D*WC("_à      !@OU*UTR"0D        AGB*I&
O)PB?A       AGB*U"EH!E?AA      IB|*U"E%0Q      (I@_URH"HAA      )HAD*U5	W(Q?A     (HP%SʤI+a<I	$O@      (@PSUHa"}	@       #BEVWUUWUT_AD      !@BOU_U$I	'H$Q?A     k
_`X      DPPOZuPj)SH$`     P'ʤI*W$IH         	8@_U	($PHA"      ACB*Ur%PRA     8' BC      SbJ%z*
X)
_     |P_A(?`        B/5A*U	"	($PHA"      ! @OU"}"	W)0B?A       |!B/B  BC      ! DUOU"}	$PH      |P GB*WWX*       EB/UB*A$0H!      IBOI*U$I
H,PP?       DO_*UDB*d      A@@UI* 

(PPAB     P UjU«wX*ࠀ       B/5OUqVX*\R      !J_UP|!B%I?A      ! DHE	("B?Ab      EAOU
X*U       E_dUή
X*U       EB/_U"}	($^A     DH/B?Uu]Wh"Y      !@ABOUU~
4PhA"      O*U#f*۸1D~      PAO5RUV*WC      )ܠG]U"/B?A     A[k)	HH?"B       )PAO_U>U	W E?AA     %HUUjԒ"$WȨI~      IBOPjU BOh-E     B*B|K!C      %a߿*أB/È$     /*TD$X>ID0      S-g?     I򘊩 O)*Tk-hq~       Tj3(     =JH/D< K!B
       @I!BD!BYNV!Px P       @!>'P#x        y(7"DD"&Uj̥8      @ !"D?(P RBą	#xC         (07$H Q"U|!       A$)'H!"RBą	<        @/W$$"J_%CE       GIAAADV!Pt"      x!W* BP8(          A/"| FQE<      @ ($ ?@D"URE#x      !H)~H$"JTȅ#xa      @AADUTEYWVAQwP       <(w/TR"U"ECʸ         ( 8  ~W#x       !!$DI BQECx       "H)$DD$FP 8       D!DBHEOJHHB(F B8 `     !@@FH0OP G&G%8        A$	 !&RJȥ 8!     'ĥ*D(DPH"U
Cȸ"(     !!8Dd1 ?      "H/ | #TBȅ8"       @!$H"U*U8J!      @_IG2F%"J8       C@"@"/UHrET$'@x     ! A<	$	!"RB	8$ H       @"$$#T#x        GHW(O_~ G%F#I8      ADO Q4@U'8      @ @1
W%D!R"E86!       q$	"wT"URΥC	 "     @ $D "
W%àE       @AGH( 2GhFGD(       GIUAV*DB*Pt     #(	W"W:#x     ').TzD) BW?8(        "H/ "JT       G@"FȢ)DD"'Dx       GH
g ?R8@U'8      @ 4?
""TB8       GHRH$_$D &/PB      D `pH     D>0c"H        (7?@"#VUcx3      AODHODE%8B      '	"!$"JWD      '/ #TC"          /א?  PB<U!)       #Ǆ$=x`pH      @#ABB
	`pH     #DKP?Rb E(G!F     "ESJXIIz%JJ֕+rV1       SAeD?T"`pH       @%D
.8"QE8      |	Ϥ+-`pH     !$D>D!T8        GABB?JH$AP
$     !BU"\YTNSBTa      "*c#P8A!     !B_"HHrH	O%FYG*I     !Q1U	"
TC       DNITkQ	R,JkRD1
     ?@UBUT/E!QQ     ').TzD) #P#        GIJ^%/{ȈDD͕V2gDx       GIB_%/ȥlE&)y ?     !D"
OUF$UQ     " DIStOOL'@x      AODHOHD(ՕF*_x     !JURoUN ~J"Sd      COD`pH     ,x"$7׀	$`pH      @1k "
[ĥCx ?       GB"B?J*D-(       CQW_ ~E(GQ@      @@A_ /?*C-8" |       GIJ^%/{Ȁ}E(_x     "EQZ_Du
KSBV       GH
_ /B)BM T)     !B)_JHR	OSBHq	!     '!!$?"JW% " ,      #EGII10`pH       GAB_%/ GM)R        GJRT?"G%z8g      @@A_H? DETx       GH
B wB *Uy       OP"nHUIy MRBAF	 !     #@GHH!	!EQ8       DEODb	B =Jx      @!]h_{dKrpC       GHVh$O}ȑwTDE%J8     $BN䪊ؾEHDTV'(x"     }T}@|(` 	       GB*N
oz'(@%'Ux       GA"(0@A         	P A@I#"D      B?AVQD%D"DDb      @@?( ~DB!
"       G	$$ @F 
       8H<"HD!RCHD       H!DZ)H!RJH!()@B     ! B<I>O"OIґFB      @ȁB DR,ȑ*RDB3      AD/?h	@"Ɛ? B      'WI"'A@XU1 A      @(GF       #Dy=(B@       |ACȄI! A C D@        @|   BAQ      >ATR
H*U!
$P@       |@  !@B$R?@        y!ނ	|%CRJOJ    D~?3`  @    D~? 1|`    D~?~0Pb$     D~?1<Db#V @    D~?7` @    D~?3$oĆB    D~?0A|f#Q"    D~?0}g      D~? 3Ld?  0    D~?A1Db#FB4    D~?7`?A0    D~?3LeS*     D~?2	̂g$YFa2    D~?7#F
"    D~?3`?     D~?>2!o0    D~?B &    D~?0A(eS*ZĆL    D~?Ob#!@0    D~?I2Ig  0    D~?-ecRĖ0C    D~?Dc&?0    D~?ІD8kD    D~?	?&0    D~?w2h;TFU4C    D~?"1DgsU\F"    D~?3o$ 0    D~?39Ld?PĖð    D~?A̒g$FI0C    D~?&2	̂gF    D~?&2	@gd]R    D~?"7g$"2    D~?Eo["2    D~?x0ATd_X"    D~?3b#?"1    D~?2b+}XWC    |}.ƪ1d?$=    D~?1Qg!&9[    D~?>2fK? Q4    D~?UVwZg61    D~?ʦ0AoC    D~?IU[vVݴG    @?F3M`?     @?  &I5U`     @?$I3hEZV     C$B	B!4B     /$BA	"B!(B      )$BA	B!(B      %I	$$"4P"A"     I
$"_bB!(B      >D
?`H#䈒"H&(A      G" ?&I2IL_ⓠ@"     $ 	$H")5$$(?A    "'@O2ILRb P    Dd#!ȖDQ@HtCB     _$$&I1LRtD$     $"	$P2084H?      	 L) B)
TBA"    #䈒$H$H"?4HH      	%(QJTɒ4D
 @    B
((*J0
     ))$JI)?B/(B       C$B	% 
(?    () 
H)?
/
(H&A     x("K	J $ DM!)Ȁ1#    (eB$/蠴
(?    $)~O b( hX      D	%!4       )?  H5B       	 
BI'B      C%B)$V#4TJ     Rd%$H1]UtD@ @     C$D?$!AX       ++# ze)Rz8D!     (Rdˈ"4R `     )?$"3#    A)#?$E%+4J	       II)$
$d=)T*$P      C ) (t!`     	#@f"B_(|H%!     C䈒?䊊((O"     C(B $)(B(    )	?I	$"5]UiU       ?d*	$(?     C(K$F_)H      #$*""+誴J&    P
O"Ċ@%wWUZUaw      "?O "?(TJ      ҙ*(J
%BO)H      C		*?A!JQb<     ߉A%
_@iUV(    I*&DHX     ҙ*(L
)BO5R	(`     I(Tʕ*\Rd4a     CJ]RR)Pu"($c     C ( %O)ҁa     	
JJ$
O 
      	d)V_(FX <     CDhC$BO*(Qb=    Љ*w%P")c     r%H"UUJU%}leR@      P@	?H$IA4I  @      PB R?H!B@	 @     P" G	?$HH"Bt  @     P BR??H@ @     P B9R?H(QBT  @     	  @$        P@'R
?"Ha"@	  @     P B R?H|B$I  @       $$6I A'I!?@     (H!)$bID!B$Ȑ       PR ? H>EA)Ƞ @     PBR?H B$I "@     (H!S򬅩H8!RD      P ')H!BCI "@     $(HI#L $BH"D$А        P 'R?HBAąI @     ~ H|a'B	E&a       _ DA B       (I	,H !FDa      ((HK쀩HU#DP?     ( K  DH#A      I T}"JEڍbJ 
 ?@     (PHL$H~$B
b      P 
&?>HĐCI "@      (IU\_"HA'B$q     ?
d~! Cτ"     ?@ \   ~   @@     ?@ \   " B      ?@ \    A      ?@ \  !B@(B!     ?@ \ @ H"N     ?@ \ 0c8      ?IA@ ?P     ?@ \  ~DHP"DH     ?@ \  ?@!"B|     ?@ \  C" &p     ?@ \  @_(       ?@ P!?@     ?@  ??@ @      ?@    F     ?@ \   8'B     ?@ \ $!@	     ?@ \  DQB
     ?@ \  >|D#HB     ?@  @@@     ?@  ~? ?DCH>      ?@ \ A      ?IAC?  JP     ?@ \   FRI%QH@      ?A@?AH     ?A C ?     ?@ \ @DB #     ?A _" |     ?@@       ?@ \Q <      ?@@		H  B #     ?@ \!$J     ?@ HG     ?@  @?WQ>a `      ?@ \ !>;D      @Z }D@R     ?IA_>>@A       ?@QIGI$*      ?IAD"HA/N?      ?B@	!$	?8       @ (o   URUR     ?@ D>EC	     ?@ B~( AC<     ?IBRGON?	      ?A OI%D""     ?@ B=wU	G%     ?@$SO@D"z     ?BD(pMbE?     ?I@  || #E_
>>     || #ʊ  || #ʊ      D#PG2?H|!$舕$     ||"    '        $! Np	$ H      ? 1 ||"      ||" !A     @D o<q      !@@Q*]!U%PJ         BA5R]LU"ET?`     | UJU*Ut"QOQ@A       @A5R]~UJUJ A      AAT*]!TBQ         @A B*]UT?`A      AAH]*TT       $C _IU&MW?`C      ! CIUUVQJ`      C/UTRUU_Ԡ       )HAi*$IT%RJ        C HݾETSʠ       @/5O]wUVR*_`      %@ UjUEV`     " DC$I   !B      " D	!$I@ ! B     " DA$I  G     (QG"H_AT$OQ " D     ( Q!DC ߀*TA'
"	     ( PyH""_DU$Eo     ( PCECB_HV$H@A0	     ( J!8CU!TD!E     " DC$Ix G!      ( P#AO*BU @!"?       (P?H"D*U DGA)Di     (@PC@C	*URI!B(      ( 
9DUIU%$DA     (P;J*T*UPE'ABN      ( PCA*UD!B      ( PCA*UD@A	     P G!>OĨ'P	      ( PC_I*U$T@A	     Q~$>OԲH"D$QB     ( PCADCB__*W@D!""D(      ( QD#!*~TCDD     PG%>KԨPP	      AET  "?     (@PC@ * T @B?B     ( QGÈ +U@HD(`     P@CPD >w)SoĢ"H     ( P#HB"*DT BB?B     P ?D~ՙT2"$DH     ( PCADU$DC     ( PCB UPDA
     ( S!@C+T DEABDD(      P "uUH
	      ( Q!DC DTCA	}     P@CBG_d >U*UWҢ=DHd     (@PCJC?R*U EAB
c     (@PCIB%*DUB'A6	     (Q?IN"$UREO"D
"     ( WA*UHG?     ( RKO? *UHD     ( P#D#?@TAB%     (QDC?"*DTCA	=     ( QCB *TTBO	"D$C     PH?T OR%$HRB     ( SO?H*UJQ*@D     ( TCE#*UDG"      P $DHU TR.@      P@C$I>$IUDJ      ( SDC*UG!A	     ( S	GÈ *~T@B(DR     (PRQB*T @A	     RG U\'⪦I     Q"=LT
WB8     (QDC*U$D A	     ( SQJ!UEOD     (PSQOB? *T D
      (W!A#*UHG! ?",     (PQK +UDEB/
?     Q$䒀?RUJB6IH     Q#z%0~҂=Jg     (PQK+UDE(
?     Q#'?DU "?R     Sޤz=D~TR/NH     R"B1DT(nȔ;      !A _U~D/B"B     @ A O	"}R"%O        !A !"~HB/B        ! !~|!@@?       @< ~"B!H!     ( I! ?I"}"IOI     !( _} EȅU/D     @ !"~|AB$
c      #*/@;@"}")PE      !$/!"~| #@	ϒT	      % _?I|!%O	      #/@? #|B$(55DRB     !I"
$|!%H	/D?A     @ !/@_?@|!ϤO	     D#Q"O2?H|!!     ? D9 ||"?      # c*(UܨWr
      ABC"
J% @D      9}
 @D      :}
1
%Q(5hWt
       "|A1%(Uܨwq
      (SOr
(Q'IG%|?A      =AH 1BQD.	?        @πD  |!BD!         AJ |iJ(_       @A ?D@!|ED_D        AE?| #DA"      I$Ј@!         ! JE%? %| CA         AB?|!B("         ! DE? ||DH""      @ 	JJ}HTO_%"      UI4(@@        @ AD  y$	R=     @ /P@ A	        GE?B(Qg䄐@       HBP?B!B@       C
>D(Q*"gȀ 
 "     ~ 'HHB)'D@     |!'H?>BD	w@       A C/P%~JT /I!    D?~
D)BD)~4(`@     ~  HFPHB!w@      !@C!~!D$O       !B!P!~$$"Oȉ!B      !HD	/P~%J)I !      |!'@B@'D@        GHPP?BdJ'@     G?
,Kꨲ% "    D?~
/ߠB$)P~  @      > (/蠢H      !B
G>D>  
`"     ~! H("Q|Q      D I@Ȑ!"~|QD"ɉ"!       B	?D0qR$ 
"      
|  QU"}T+"eQ      a@7 >~D/@""      $BI>QE! '
"      a@!
~$R$,O
!      @$R( "~|	        @Gʐ ~$"	
!b      !BIQ$D( G
"      )PGG;D(Q!G

"     ~"!TTQ( "|"UP%      " DA'Ȉ>>DD       " DAH3>wEU"'@"      !@Ȑ~tR%O!    ?**o (H>HH       !@OĐ!~ $$Oȉ!"       ^A)WĨQ#D!!G@J@b       !@OA~R%Oˉ!     " EAH>"E&'  "    $((J.>)I(     |!'DIBR	
$@      @AH>*D" "J"    }D>TR/*)HH       ^|"RR"}~S%(      T|%T_<%        @AÈ$DD"'@"     D I@!>~!*I*      |!_РB

℈@      0C !~iJ'ȉ!"     " (@GQDQ%WҐ

"      B!ʨ.>UDA%Wʠ*j "     DO!|~I/	!A       $OȐ?"|@E Q       !BI_$| ieBIR       } @H| S~      AB!Ȑ!~QR'	!      $|H#Ё?D(_"u|IPBQ      D}"KB"a#`      !@ʐ~"ĉ@      $G?IDA"@
y     BG26HO@E(      PCЀ!>~D$Oω
!"     ~ @| E      A B<?D)_/WRUJU(S I      !H$)j F    |@O*_F7|Aj_4@     ERW]R!H$E(# 	     ~!TO_>U|        " D!sTH" A*%      }$#(3$_ȄE}$EA      U?בTGVi$O <K # )     EU!UGA     ހ*TDUR_R0     "DDR*_H0      #DB(})TSEP     ހJEUT_R0      !BkJ"E*}QT$H`     ƀ"tE^*_J0      @A`GDTV`S  ?      *U(*URz*	$`      H"eRUETPJU$O ?      j
$N*}"ET{H`      (IoR
I>U(!VRe$O ?      k
(I*}(!WH`      %BoQ
E>UTj5$/ ?      @d'HJ>WU*% ?      D	RdJe>V)R( ?     D K	H}"}TSJI⁂     DQ4O_>Q($0       AaB
>(UTYJ) ?      !hJ*n}(IUH`       Aa_ʑQ><TP( ?      ;D\K(}*MTuRȁ      jeJU>DT )UJU# ?      %`A
U>US*"/ ?       !j'?@*}DU$H`      oG
I> WVB8Ϡ ?      |j _*}|U$L`       bH>DUP"""?       !j'?@*}DUH`       "h'Oq>UWR%5O ?     }	4Ӯ%TOU*}US螺p@       Aj'(_*}|!UO`     |b'Gʀ? T~UPUY/P@       gH >UUR0Ϡ ?      Jj'
/d*}!USH`     }A7_*}TPG`     Ii'_ʕ*?TQW?(?      @AbRJ>UUR0Ϡ ?      (o
/U*}TT$H(`       g@
 |T P5O ?      mWTUPQUWʪ.o ?     ?@ \ IHEH      	          Oĉ)%"O"$J$D2      @P("| BD%HL      ?@l&$OA?F!          #@?L?A       Q B~"D|ABAE       S(("P|ABE%RL     ! / ?Q DETY       h@PX& @F        S(4"d}DABD     <S("} ADBHULE       @/2_I>E$ 
A!     }PX& @F       )E2B>E"JYA      P@("}	DH%PLA      P/h""|	BD%HL!       @!?*>TE$IĂ
      @!H)/O"RJ%$"       @%%*>D A
        @/">DpQ$JY         A/">|DED
       R"Ш~"}HaDHT@      @Q"($#||	M"AB     |xB(f?L?A       #!$D A
      !! ?>D A
      ( H/"x>D> $Ya      Q"(A"}	DOPLB     Q ШB"|!BBDQL      A/"_>E  H       #(%?ߠG>Ez
YD       )E=I(U4+P      B !?L?A       !!$E/>E$I
Y@       @A$E_DR~<HPAQ[         @!?ߤ>EI$ʄ(        GIIS'R_IEuTT]IT_A      a'	$?L?A      BARGETEIPB       8"=O|!
`?        @"/ߢ D	$ʐ% D     !$E*>E$I
A!      "2%$_ϒ=Jq	RKbZ!     }A$'耣?L?A        @!">E򊤕J      H"!?)^<IA$     @ @(??@<IUU[(C     !?<H $+Q[" <      /%>DTBĕJY (      @$%/ߐ?>BDA B*Y        "H)%?߀ E	䈊      $@*%_<I|KP      RH?L?A      @ @()IHJUYJ      @ @$E <IZD      #/_?=H $0      '!5E?1SI"Đ!~       #!"?>EIʄ      '!(}R=J)
RDҚ) a       @!5_A?}D"Ă
I 0       !+ ?I>E$ Ĉ" |      #Q/"?D      '! R<I  ɠ      '!2?J=*K򒄭(     <'%%< IDX=     @ @1_)R I(       @ @$E?TMK?A!      Q+ =IDK/"?     ! "<ID&c      '! /?IJ%K_ڑ!      '!?$]ֽ$J 	␤B"Y     "'A/1D<Inڔ;      '!?$]ֽ$JP	B
$(       CPI !$C/?    
"K?ЀB$(~
$/B    &)+$I $(B$/B     D Q@ϐ!"~|$Oȉ!"     ?@3g !      !$_|!R_IE%      @GD}$E_Ȅ"     !
 RdI}uR_IE%QB      @G }QDR
"     |@#R_e$̂a     "   )$('   @      ~x"BG?,IT-RX(@      ~"BG	?$IT%TH(       9!$>T0AD      "$/R"$D~EQ
QA     |@=J*"TDVRA        ! C$$~H%RZQE!      !C򄈏A%}~H%RJQJ     <@	? UJU(
@       Q D$%TJB       Q $?$~ ERQA      !!CD$~"QJHA      @#$Oޒ%$J~
UTJ0PE        A!DOߒ$$~H%RJQ"      (I $~4URQE      ! C$~"QJP_        #	$ETP@       % K$I~*UUQE     ~BA)? T"P!        A#$Ē?$~ Q
D      ! {O$2>VPD0      @!Ò8$P~JTU1A       AGτ(}EPEA      OUT*}
Y*UH0EB      "GȊb)DP8UL"D     ?B  $$@D3      i@c%/(|ZJI     ~!BCI? TR($B      ~
EWiR.UUvT("B!       =#𔈯ɒ$~%RJA
      %#$I~&MW0RE$C       A В?$B~J_D      =#ʒ$*~UWB?      @-/Ji| PMDJ      |!OȒ$ ~W0PE?A      %"K?@~%WaB     ~ 
DR )TRRH$BA       +D$u~VPjYE      !!	$!~zU*B
c      *W*+TQZZU*QD      !SOʒ$ ~~"PJ$     ~%BG	?>UTEW!        A'D%TJQ"|      @AG
O(D}	R"EE6     ~B'I ?U&T)"       @!Ȓ$"~|BR*B
c      =#$(~&MV0RE?A     ~B'R?UUR)"        A'$$~"EWR?@     ~B' ?AU&T)"B!       !#Ȓ$ ~UZPE"B      PA?>HD C*UE       !#$~"ESB     ~|BR?"}TR($B       	C{%O(B}$AWJ      !_?P$_:      H'Dߒ!$~~_J"       O ~WI"       AOE
8|
YEU      'ފ	|%SUJJJ       !#$ I~&UZWE C     B#_Ũ}M
+T%QH        (Q!D$>~TUSEA      =J?(IQJOQ$      !#TOВ^ ~
P
PI        B#?(}
IW_Є       P#?$H~EWJ$     ~UG	H}UVQ/B      
bp!('?Q?D $      !zUVB%      ABJ?TOQ?A      !   _Qw©      "$/ʒ&$~
Y*PKB      ABҊ?Jh EVU     "%0h}RJg      !/?QG'?     J!P*uTZB      @ =S :_]ÒQ     ?B I$H~!UPH8      A@ _)?	t'&B 
"	     	"D$":*(PP%!DA      !	C%p%HDJ       A (?A A($QG       !BT"_	D%D_DR     |J"(|PJ"I*@       @D_ >D CDHA%     | /PR%"J|R $@J       P#_ >>DIDQ$A     |
T("||Q)DRR!       ACH䠄E	#DE$       ACH࠾D AB$      =àA>DH(U?A      !CI?`cD%4H(U"B       A%J (DPCE(U#       A;R bED$DH$$       AB  D AB        !@à>D }B(U      |"OSr"$}Hz$T
         !%H_ߠ>BDEI1$A     %SQ`ԾE AB        !`_ > ECI(UC       %AाID%KI(U$C       㠅B_~DHH%$D      A_ATx-_UEUTmDUQR     |	PP?" |U*$R*R!        AO  D	$OȐ%$D     |'H:
A}uWQ]ETT     |Hj"|X1"Y
      |"Q>" }R*UJ        E>DTCUHU$(      Ac#DPR?AA       B>EPH"$      QPाkDDH$>     |H*w|DU MJRJ      $O`DCJȕU%          ?@?@@E         ?@ ` p       'H$         #@Ȑ! ~T*I C       !Oϐ? Qd     P*]*}     >@0 #`  A D pp     >@0 #`  ! G `     >@0 #` DAD@p p      >@0 #`  D      >@0 #`  w!@     >@0 #`  C H      >@0 #` Da     ?@` $A   Ap  |?     >@0 #`       ?@` $A    ?     >@0 #`#G5c     >@0 #` R!F     ?@3g    ! A|     ?@3g ?A      ?@` $AB      >@0 #`(  &ʂ"     ?@` $A ?      ?@3g  'B B|@     >@0 #` AE        ?@3g   Ap<     >@ A    ? (     ?@` $A ?$ $T&8C     >@0 #`@D    |8#@7D)c     ?@3g          ?@3g  @b@H8     >L7@O  À     >߼$C  	     ?@3g  $"HUBBBc     ?@3g "??B@0     ~~@~~~~~? ?"(? >     >@0 #`!RQ$
?     ?@3g  1	dIp\&B     ?@3g       ?@3g$@!+O#     |' |H?S HI!/     ?@3g   FS 	,     ?@3g0 (     ?@3g @
HQHID@@0     ?@3g $*!Qd	     ?@3g ?@!C 	E_     ?@3g
$H*P*IJ     FAﰀaA?I1$c     FA o%+&
c`        CA ?"ETHI!E$CA      !  CDO"ETRH!E$CA      "ǀ	?A4%3$Y*Ya     @	"|#DRDI5%R       EH I/.ITI)'HC"     q</r?%  Ȉ      ? A ?H@JL ?      !BKO_$T hAd	       IDB$~ h!d)      @:B1*|D j a      C%ZϪU*}T#Xh a       'JI*} ᢥ+$H      PB% ??H@JL ?       BKT( idB       @yJ/9*N|!piTi@a      CPQ*}D"k	 a       I_)R~D@R&T     !$STIP_)"RDA#W(     @BDO*w| !iTia     @QBE/U|!tmI a      !CU_CR @AZT*Ï      OTGBh      BLrT}!Pj	 a       C)J)*R @AZT*Ï      !C)J)wR@UFT(       @BH$ A$*R@       @ )~!HCB*       @?O|PD         C H)~ AH D*         @!B ) ~@I H*       @AO*~| APD*       @"BIO)*| Q@Uꠀ      (@I!)~$QH5Ij      @"$~HI#@Q*        @DOQ$(Q$CEA       @ABQ+| P#@B*        @A_*}$ITD*        @E)
O)*R|R 5Pj      @@D	+*Z}IR@
5Pj       @AG
O)*R|PQ*       @A_"*~"AW D*        =I?}IIW|U	UI~I1! C      @!B")~!H@H A      @9JT*}PU#@UN        @A_*|pQR UDj        CBIU^
| A_ D*         @$(OД)B~	K  @*       A@	 *|IT"5D*         A"DI"*D|R#@Q*       @AE)
+|pQR UDj       H@"BI*$|HP@UP       AB$ה)R~IJ	R*       CB	"*T|U#B*       C@	ϐ!*~|	S  @*       C@	ϐ!*B|R @*      @y@)O *|A_ D*        AE	>/t|QR@
U*        @"(I~%K Pj?       @bBI'|HU#h*       A"Hﬕ*}TUS@j       AH	/ϐ)*J}	T@        A!HԪU~UK@E* D      J@D@	"!"    Bĥ c ("$P      ArG	O*
|)W#@R        C"@I*| IR
d       @%BOt}RWS@cj!      H@"O |	RUP B       @D	/$Q|R# A*        @AB | P 
5dj 0       A
$)~J
5Tj      H@zO	U|HW Bj      AH"/U}EQP5Dj      AHI!	*}IPUD*        @@A@	U+| AW D*       @@D)*g|S5PjA     $B$IK@H      P@G?*H|RC	_ @       BIA	ψD}R#@
Rj?      AόR}jUU֢/P*5j"B       A
&8ԨI~EJ5PjB      @!@*}AQKH     B)%DC"       CJD	ϒ_ |	S P D      ABDe+J|IR@Q*@      A=ϬRjIPB *A     ~ H|a'B	E&@D@	"!"      @yA	?*}IW D*       @! OA~ISUK       @@G *R}8RSURj        CKO_*}TTCB*      @@C	UT|RQK5H*       P'R@ }QU_3V@2     ! A=JJOU*}Ҫ%Vkj*      !BE((_$Q|* A      BYI)ϤI*| R#J*      D@I'ϔ)~ AI	b*       BII)π }	TJ*       @#OԠ>~DIUH $       C
H洛I*}$IWUI*!       @ABBI
Oա*~|RUh "       C_O*}$Qz*     ! Bt+WU_WU$I       @#ABB
BD@	"!"      GȔ">@UW UU d     "B!D$@*EUR@J*@      BIJ@	U?I|!WURj      "D$}JUjTW@|
      ! ByĔ"$IU%RJ@*YkC       @A"Hϔ)*~|IS Uj      D!Hϊ*}qUSR*       @!JI}HUk@i* $     !@Bd:*WURUF       G!+i*@UF#Dj      ArDI=U+|	RUP B     !B$Brj	U	_'@YU*I     $AQB!~}II? L      G$}RUW*W@8Ҫ) a      HBrBIOU| AS UH        @}O/H}TUS_ꈂc     !AA	τ*}!_Uqj     ! C,R>VUUJ*UT2       @ABDIOU * }ܪUSQ*       G_?IUSU?       @BI*| R P ~       G  !W Uw     ! BA\BX.*TJӠ"UF     !BT/|S P B     !BǼ? *)TO)Uj*       Aϼ_}WQ/pJ"I      G"OO +~R#_* |     <<ʊUU<<ʊUU       @AB"||R#x       @@A *B|Q#@8        @z(/Ut}%Uk8        @A!ψD}R#@8" |      @B/*}TTC      $yP"	}%/RH E     !BE((_$Q|/ A     @ AAOUjUU(#PxA      !?@  "     @!B" QJXQA     @! G!ߠ" w *U@      @! " G*U@     ?Ȁ'B	' G B     @! G!ߠR  *U`      !O?
@) SJ Q      @=$$ ~!@JU`A      )?H@!C@`        Њ?@(Q PU`       $"O@*IP*P@      @  !BUB      @!$ I*UTUD       P$$/P?@ A# ʨ@@      # ?@$I (j`@     @! G% H" G@jUP      DB   QK      B##?@  "      ?@@  ?$$H8     @! GH"_`)R @Ub      @ 'H! (" G UP     H@'H/ $y'@UR      @! " D"  UB     @!G'  G*x      @" $'@U@     }! C/B   K        |"/Ј?@(] @b@     @!B"ȒD ~!JHA     P@"" >~IJE A      !$$Oʐ? @| JQ@         
Ia |EX?      (S%_Е?*@TSڮq@      @	($_ȠP5T`P      ?H)?H	?WY@@       x"Đ?@DS ꠕJ@     @@$'Hޟ% J~	PJ5P`       @A (* "b ' *UB     ( H/?@BS@jUP      @A * TB @UP     @! H/$I'UR     $H@"'Ĉ $ JUP      @gH( l'@U@     @! G!  "*x     A C)N
#	?@@ $       "Ј1@E *UH      P I?A$Q 	5Uj      $!O?@ ʦH@    ? !  2K     !%O?@- c*UT      C%Gʈ* T~Z}`      ?@@D@x!'Ă      T	$@J`Db     AJ'(  ~@*UE@      @$_Ϡ }" G*UD       'P?@!JI@       $(/ϐ?@!S*T@        $O?@  J_@     A# I@B@       T*кU@]PUD     AB/H*~T@\@     ( H,$@H#@P@     H@'$ $y'*UR     P!-?@@D     $AI!ȤI I*Ub     !$K!?I@ @*UD         ϐ?>@D*x     ! $O/>A>#PE"A      @$'Ȑ? @! C*|      !D/P@  UJ     !$K/@ PUj     
@U"'(__ ~@JUH     (@QH# *U G*UD      !܂T*PU@+pB@       ![OI+Q@?@@D      C!ϐ?>@T C
|@     / R%"K/N@TEH       SAeD?T"?@@D     "**2"B?@@D      S)/P @|JUT@      !T*Є?*@R% C*UD@     "D{=UW^"z%"JERB     A$H |~IE A     B#*#$OP

 ?@@D      Ac'H   @      @C }@ JU(bO      (@J+~UPP     !

?@@D      A$Ȕ) ^~ZP       !$K"Đd@H#_     
@U"'(_@ ~~	*C     $L@%Έ2 *~E Uj     A/$~@C        'ʐ?*@|!*Ub      |A	$( (hZu@       /Ȑ"@d US@     @EJ$'@B~IEP     @!/H ~EPPF     (!TD/Ȑ?@ C
Q@      @!(h5~T*F@      @-oPI@Q@      !T/ @|PJUL@     AD#A'
dHC RUI`F       T? = EUa#Q     H@"G__  ~AHjE       A%W_*w~Ub0     DAD??@AI     "D##$OjU>CuRF     	""䊯 >AH     !I/TUP CEI     #E& UC %j      @!B OQ$I@$
h B         
E%ADa      !HTD!  I  	        'B D|
 ߨU$       $*OА?D%P@     A"%J.&U@@
Wjb     !$]/UPHy ~H JB     @ @x $c$I&2Y$`     !$yHA7(?`B      @{	?IB2%        y_Ϥcު7Y+       #yꤔc$"4/ @      "G$"O<!R      "G$"O<>DG     I RD?P!{Ih       "G$"O<*F#     =S *UU?T!xBA@      "G$"OD	O      "G$"O<JHH      "G @? C     PB󊪕dT x%B@b      Q"ʪU?TTyrEE˕U      "G !@_! $D      "G |$|!'JBY      PB*D?T(z*@K@     HR" *@xA!E     !PB"*(Py!E@
0     #AP+b$I*$zII!       @S򪫥b
%*J$|IB!E%0     HR""*DxE!EA      #AW+$*PyD!E      #AW">*pxEAE0      #AW+ *(PxEDA0A     #AP"*z	H!E?A      DI$UD""J
"`     @ EUD6TD@!

`     @ CP7@> TGB"JD     TK"* {A0      QR˪>*xAEAE0      #PK" *  y%DA0"     @p"S"IA @?WQ>a `      H zBBDTID!*J       I7_$QTD"/
`      "B_TAE (
       #
@_RU9DR)"
T`     !'ROPD TE
$ 
`A     H"zUUWy2UF+*B(Ua$      #+ IA$%ZJ"B     (SQB>*TyQ@0A     P#RUW TG/ꈂ

       @  
#"G!U`      H EOPD_ TD@J!j2     !BH$$Y)RhD"E     G _~Dp% UJ	      Ac$&0w܀}"I)D      'DF~I$$O	AM     ( PAB߄!>V	HO%"D     ( PAO*>TUtEBH
A#     ( P!@Є?> TBA
"     ( RII"T@RUOU"     ( SJ
>"UA"LO
"     ( SQJ>UI
"     8%R
J)U&@BNTFJH     8RJ?TBHN!TJ!      BG$DT#PAAB      @OʤU AQERRT      D#ʢ$DU"!U%TRh_"     ~|	  &c#H      ?8R) UDRNU&LA      BJ T!TUI2dTD      @C#*$DTQ VyMRA     @J$U"W9P2`T      E/SQU PAAB      PEWJ U"TUjR3       A$Y	$ @<*R       Z]%$B	$ |	 T`     }$#XEЉ!?<#@        C	$5LD!DAx     ?"%H       "HFB? px%URj@     %Z)(_߄!B=
?       ?@ ?)(J ?"      AI+_R!z (5Pj      $X%I$H= J	        P I5I$P ?@A      IIJ)T yO)RjK      xH!bD)(J ?"     %Z(_Є? ='ʩ5`#      @(UE$? *C ?$      "KnRR!z(5Pj?A      !BK+ "y$UH@"     }$Y)'? ~=WZ5`       	:KD?R!H{ /D*       AJRO> !y2Ij$      "K@?"| P{  'H@"      }I]U  {%URjD@      RI۰_k!x$UO@>     %WZy"*U=Wz`      @~"DIJL UX  $       CS]Њw*UTR]
      #ES
?w T#Pê8     | QEDSDx}!(@      EB$x}!(@     !B(__I~'A G|I A$I     D(s%ꨗ{wD( SWUʁ     @HB""$I?A'?"      C$O	s @     /F?~Gℂpc      #Ȑ?$(=       C O	" `>p       C$O	?A$a      #8";F
@!FHdH2D      "GqH"H Q$#i-A$l      Gp)PJ $#hDB$l      !Br(*B? "$i-RHl      )J	s,i?$I$i$MOl      "t/R }$i-Hl      &p/RI%'hRDl      !
/vX*Z %'jL2Rd       $BO	~EI _ȑ        DD "EI@	IB!      @$POހ%J
JW@?Q       A!GH $D"      | B$G@?I % _!"     D PDB HI
B      QP$kH_ϑB>      !BE
$ #J!_     
UY?@CN4      @@@J5TPD?A      Apk҂jUj3x       P BBU5A|U)\O     P AAO򂈕Q5A!U&D       P@/BU5ATUҪIE       P AGQ5A$ITF      PBQ5ADU	_     P ACBU5A|TB)H     !HTD!x	D
?"     qB*kR-dSȸ"      Ap*kTuFERh8     $PHA/BI5A<IT	H     !@H
5ֆz/     HqPds*@     r_jUVUn3xR     p"*EڪUmnx     qR * }SdS8       qE>ESdSȸ$      yp%*kNzUjS׸      p?k~WhS߸B     !q"eWb8C     !p/%kwVR-dSx      !wTWhS߸     Lq"*}Wjx     ޤz@*k'fU]nָ     || #
 |DHI      %H@
- *P      @CH0@~  ?( 0      O=

ԨR-UB5+?     A@{dUI[E|U     @
Ԩ
TB5+?     @'HE
TUVj:UT     P*( QWUQ     @T"P؆w  wpDO"&      |1 _U\;UUj#    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP       ?   ?       >>   >>       ?   ?       >>   >>       ?   ?       ?   >>       >>   >>       ?   >>       ?   ?       ?   ?       >>   ?       ?   >>       ?   ?       >>   ?       >>   >>       >>   >>       ?   ?       >>   >>       >>   ?       ?   >>       >>   ?       >>   ?       >>   >>       >>   ?       ?   ?       >>   ?       >>   ?       ?   >>       ?   >>       >>   ?       ?   >>       >>   >>       ?   >>       >>   ?       >>   >>       >>   ?       ?   ?       >>   ?       ?   >>       >>   >>       >>   ?       ?   ?       ?   ?       ?   >>       ?   >>       >>   >>       ?   >>       ?   >>       ?   ?       >>   >>       >>   ?       >>   >>       ?   >>       >>   ?       >>   ?       >>   >>       ?   >>       ?   ?       ?   >>       ?   ?       ?   ?       >>   >>       ?   ?       >>   >>               @             @       @              |>                @       ?           @        @           @                   @A 
          @	 
  ( p                                  @        @?          H     @       @ A  @@         @  RD`@         @                  A?     @         @?     @       ? @! B @ A     ? H@PA DAA           @?   @ d 0         @@  @@        4 D          $@H"Ĉ	 $@O        " D@"?" D@"       ~    @ A ?        A!BBDI  $ H      @ "DD
$P( " D ?      @ A 
(PE"(   ?      	 @DD!A(       @$HP> @   ?     ? @ @TB(           @   A      @ "'Ā Bq!@  ?        I$I$I?$ H          @          "Ȉ""||! B       "Ȉ""J)DR$ H      I R$    @            @D ""$D(Q@" D ?      "H $ D@         0`7 @       
 " B`       @  
   P"H @ @ @    Q$CAA     a!0@        @  $( P@`A            @          @     @      @DQDEDST}D@A0     $!? @`   @    D$?"Db#A     D$Q	$ I)$HO       @HQ@"  ?    @             0!"          D @(I$P        @@"  @A 
       @" ? A"A P           @ ?     ?      @ A! A         (Qd*UP!B(U	$      ""D@D    @     AA    
    @
 H   ` ` p        @  @           @ @  
 " 0     ?@B@@B  D    
    @ 0@          ?  @   B`        @@   B`                       @    B?        A  @   D`  	      $              @ 0       @B  @       ? @A      @         "H      @              @? 0 ` 	 !     @@ ! D$ (         A!dEA
$ @        |   @!             |   @!              0L A         A DD"$ @      p?   Hy(`$  @       ~ $?	  * #0A      ~ $N9#< I @                    @    @ _               `C@(  @           @ $P           	  @ `@       D Dh"D " C     A 
 @      A A   `     @ABI	$$BI	$'D     @A $H? @ (H@      	  ! A     0D         B "    0  '      @  "  @!      D I	   ?p '      @@ (  A	($_Ǡ    @A@AB	$ F	     
HI B?I!$I  '      @đDI'ґ ` ` G     '                0D      C$B ! 0  '       D@I  @  `       " $H    ! 0      @ B  >@D$'H     @A '"D(,  8      C			D  @<!J     G@A$  0 $       A"? AA!B     @?!	B 8 '     @ARDN`.   0 $       s#]_ʑR*]AR$ G      CA$  @ !B      "B	D ` ` G     ##$B!J 8      A@' p G     @ ?Á3? x G     @ B?>D@A" D?      !@DI"> "CE1$J       "!B @      CC0  !B!B      !A$!zBR1$eGр      @	$"( A BDz($`G     !@   (?  A$DC    	 $I$j     @                ? 	@     (     ? D @B   @            B ! @        B ! @       ! ?C @   
    ?                   ?       @             ?   @             ?          @         ?       @         ?         @             ?       ?      @@             @@      @ A! A      ?          ?            !B             ?         ?@@             @       " D$H( " D     @:BGI>             "	$$H " D      @@A	?~       ?      "Ǆ x " D     ? @  Q$IP(       
                  @               @ A"H        B  @A          H$
  (`      @ Aa`\       D 	$$HB P @           @     @             @           !BB!      "E                 @          ?  A             @          ?A H         ?@!          ?  A       @ S$H              ?  I!A           ?@  ?@          ?A?        B߁	2<%RL$@1        	  ?@@          "Ȑ"H!f	JA        @H }$@?      dMu	5J@H            @@ A@     B!ʐ!B         ( P    & 0   ?           (  	           B(	8 @       /A(@" D  "@D       @   @@            (    @         @! TDBD!D"       /(  @@(      ?@  @!@BA      $!F"(DP @A     @! @CDA@A     	  $ "D(" D@!"F       @$$H( " D@       $@"D(" D@"BD        
 " BB`  ? @            
 " d @ A        
  BB0  
 " `        "C
/BDAH"      @ A P(I@B B     @! @  DAH D        
 " B`     @        
 " d0< @@        
 " c   ` 0          
 " 0 @"B A          +@ A P@     @! ( @ A        @) &Y/$H$I` "@D        @?(! B@
b       @(! B@     @A$EDi$DDI$D H        
 " B` B!B!      / (? A "D          (  @@         
 " `              D$TBDAHB     / +@ A        ! /@ A        $  ~( B  "@D      " @VAAD@     "  ( @ @"D       
 " "B`   " (     @     @"D@"$AB"B "      @ %I("$DH(           @     D`       /   (   @         @! ( @ A       ) A "D(!@A 
"
     @" "*  B A BĀ      	 " ā TH DH!D       /AQb(D!PB`qA     x/  @)D%I@""     @! AFHL$H @@`       " ĉ$ȓ"T$H+D @     @"Q  '@       @! DUDQ@A      @("&D) $@H*"dD       'DATAGDAHAF      " D$HP  @_       @$D* /@     @"A" D@B
     ? +@!@BA     @! )@ A          A             / /@ A         /( @@       "@A *!B A!
      " B($O      !  @("D A A      @$I*"! D@A         
 " #0A #D  ?     @ AR"$DH"D         
!D A P@      !!F) @/A      @! I)$H'A "D      	 $ ғ
TI$IDD!HB      $@A )" B@       !  @**TA!>      !   |(" D@"BD       " A"(D'B  
       /D!$OP!E!B
"      ( /Q)D%PJ@H"F       ! (D!B A!      @! +$D@F     @! A( !@BA     "  ("D @"1E     @! 8(pP"I !"      8' " D@B
       /(hH$Q        /@F |(" D@!"BE      @! +@!@BA      " @(D$I B
"	       
 " 

d @ %QAA     " ((P!@D"DD      @! $FH*(@!@BA       
 " 3            ( A(J) $I@A0@       /	"LD'@         /   @! B A BĀ        
 " 0A	@   @      @! ( @/A      @! @ '@ 
     @! H)  @@       @")0 B@!      ( A$I)$H%PJDE      $  )D B!B 
     	 $ (@+@"@D(`     @"A "F B ?      @" $ I@ B@      	 $ āT!@D@     ! "D(!@B
"     @) P@TB	DEHB     @@ ?@M(    @          $!F ( "@D@ A     ! B) B A BĀ       $ I"L)RT$RPAR)!     @!  TH DH?ā     @! ( $H A A	     @"A P"I !DBP@      (! F) D$ID"F      H) A$̒)$H$I @      @% ( @?A        @)$Ji)$QɁ$     @"I	 @@
     @A'Di$DDI$D     @! DDUDQDEDA      $ A?B(#D A!       /D T$H"D@D      ! $)T(  A       "B!"BDR$H A)BbD       P@	/Ji)$JI)(*H@       4(D(A          /! F@)$@        /ࠄ#? O DH?ā     @!  # O H!?       /H(<"@D$       @$EDi$DDI$D@H      	$ A!B(#D A!~     @! +"E@ADCD        /! F@)$O!        @@  & (  @@(      @! H($*HD!B%     @! ?(  B A	      @ "&D)%I ""      /D!T GDADA      "@D)R,JR% J@)^'J      !  )" D@      x/"D) $ H@ QDɉ	       (  A        " @($@HB      @!  (*d!B      @! $I)$H/A 
"
     @! 8(pP"I "      @! ( $H! B@	       _B yI$H$O A 
      ! AB!DR%"JD	LBa	>      @@  &@("@G " D?        
 " 3     A        
 " `   A      @ I?HP /@A	      "@DL$R) _	"D     	  $ (P (|! B  @      D $>h"$"H"$      '@  W!D A      #A1(P8C 0      " &@(("HHB"(      @ BAT! @H""DD      (  )$O @       _DI$EDi$DDI$DL       ?>D($I@!"RDĉ       
 " `" $@I          ? (*d A!~     @! +@ A@AB       '! FE(#DA" D?       /P "_LR%TJQ*WD!        ā)TJQ/DO D       'AQ(P8OA A	     @!
 #J`"D      	  'Jl+'@'A       @" (  'H A A	     
$@)@ _        ?A(#D!B        
 " ;     @     " ACLDADA     @/ @ O       $ A?B("D ~     	" ?"(D/B A!
     @! (  'H A A	      ( A?A)D$H!Q      / ( @'H A A	      " OBA؀Q|"E($I      @" ( @ O       "@)F$(̒)$B@""D      A? "R!B 
"       @P$,P!\ B$H!      $ A@GL)$H  A	     @ R"'@
(     HI%$VIk$RII%$L"     @$IDS! B@	"$DI      @@/ A) $|OB"F       /P "@L Q$"HD!B$I      /AAP" @@      @@ B)" F 
b       "DED  I @      @ _Q $@O	R
D"     B%!	(,| `     @ _A} 'A       @)AH! B@""D      @|H"V%i&TRH%!AJ        I	 @?         @! /@@"     @) A "E@ADCD      @) D+"E@ADCD      @" ?R)J%(JP)BR      @??*"DB E     @@  &)!D 
"	     @/A	( @/A       @"@A?H($@@      _ Ji)$JI)$AI        A}  $I!H	*      _@I%@i}%RQI}$AI     @@  &)@ AD     (H + " D@D     " >T$O"D@     	 $@?"D(/@ A      /A(I/%I A A
     ! P(H*`d(`     	  $ }&JL)R)$JH)"K      @! _(* G"T     @! IT( !@BA      /B
)RR$IH%"JD       ! ?I)H$A A	      O "	&?   @I$     /
 () d        "5) /B@""D      @!)$H$I A
"
     _DI%UVUiU%TRUHA"AJ     / ((*,D@B
     @" |(  /A A	     ?A(ؖ" D@B
      @(@?D A9f     @ A?HMPP#HJ`(`      ( A?D))P      	  '_!R("I A?        A @)@ 
"      " A") " OA!~      ( A  (  A        ( /@)%HJ))a     @) A$8 @/A          A 	$H!B          +'D@
l      'B#O DH?ā      /ࠄ K)DP        ?A)'@ A"        ]BS!J A 
?      @) A?(((A       
$@?A)!@B"DE       @/̀  @(      ) H#? _DAHB     @/ЂA( " H(       /A?DLR"$DO
(     x/ !"F%@( !D 
b      " A/@)D _
"
     </~($/@ABDE(       ( A A( @$I$?      (#H\	HP!FP$%IQA     P! (h!E@ADBDP@     @" (  I@ADCP@      *A("(_%R AO      @) D+   OA A	      " ?!B+   OA A	     @" !? L"(B!F 
b      ( A? *"D(_@"D      H _R"'H?DD     /A )$IA!Q       #D!HBP$B#!(DP!     @RBR"*AD' HB     GpHE!VhE#RUIA)HB      _h ADi'DI$DEI     @@/@F? ( ! B@""D         !$( 'A        ( A?A)$ODE      _ LS BABDEH       _ х&dh   ""?     	(!D)'H A A	     x/ !$F% ) @_(      " C Р"@O"%DI       /Q""̈S @@      	  '")"D'JDE     @ _""̈P ?B  D 
      ( A ( !E@ADCD         A "H|!B$A
     @! DAB @Q$@@
"     @! I)$T1DBA     @@/ ? (   @ B       'Jl/'&@AAa0      ( A?  +@ 
"
     	"@F) 'AD     @ ̈S$DH      @ _?H!CAE      @ (@ @B(QE       "@  $ H          ?D	IT)$UHQbbE       ?@ {̔)RR&KX%"JD)     @! IR(!E@$      #|!BDQ#JI$H@     @"A}  I       ! GB*f(V FB`      @ @_ HBR'J)B!J      # \-XDщ#FI("H@      ( A?A)$H  "
     " DA>RX)(E$I*$JB      "@	$)ΐ! B@	$H     BA Qk B PK     @ _P /AAQ)a     	  'pF"(
"(V A"E	      /|R%RJY*U$O@%J%J     @??(H(G       "@	s)'8B@	      @ /$)$H'I A?D      'AQ.$I $I	     ? )'H  A	     ! \A!B,R%J )BR(QA     @ /!"F)"! D@     @!?H)D$xH IFD      $ ?@/$I@!Q      	  $ )&L$I!$BHD      $ !B("D AA
     " OaE-RDQ, @ B A     	 !dF@&W! E     /"*"  _       _'Di%TRn3$DEI      _ L@RR$MH	B"$DI     @! I)$T!E@$         Q?@#      $ A$FLB)D @B(QE       _DI'Di}%RQI}%     @@/@F?B(" D B      / !D+   O! B@	      "@)FR)%(JP B	     ! GB*f#(PPB"     @CCU
%6 )HRAE	!	      ^JI)'Ji$@I$AI     @H"V}hE!RHE!ĸAH     @)A
"("@$I 
"      _@I'RiI%$B	I%$     / )$$I       @?D(P A        ^JI)$Ji)$JI)$LS     @I!T A@i%RQIE%AI      '@!@B @U,@PB"     @/A$I A<
     	?A?B("D  B	      _DI%Di$QIE%AJ     #@@"   @!     ? ) I@ADCP@     	 $@" $H  A	     	@@$") 'H"Ā	      	$ ~# H DH?ā     @ _?	$#@$	?      $ HA}C숙RR$IPA$%A      @/ƠA*+T!_      @@  &B) #@      @$EA? $WI%D      _ L~ P '@ABDEP@      (!?D) $@K!(B?B     @?? $OA?A	      .p! Fs)! B@	"D     @ B  S$IH%"JD     @!?@)$A       8! **C/D@$	      ) A?I)@/C$      $PHBLHSI'U@B$D_      @ _؂RB(C!(
l      /P "̀S  H@=bCIh     @ S$DO
$      @ ̈P '@"P@     @?I} P" _"
     0/P(H%J@(]E      (!?@)'@  !
     @?A}  /A A$BP@     x/ !"F%@( BABDE     @" ( $I 
"
     @?? $I A$D      ?RI$IL&RJ'I$I.D$H     @?)'H  A      @" (  A  A	      !PA!G̈R*$THQ2BA     / @/B A	f     " _Q$"HD
"     >/B"" R"$DO"#䀉     	"@ x)*$IP%BH	d      ( (F_)~ 'I A#I	      /A̔)RR$H
"      x_R"'H      @ _?Ј"O)B?A      /xR$"HL R 'HH=BA	A      /ࠄDI*D@      /A ) _D      </$I( 'HQ/@D      (!?@)$$I D"     "_B@! GH"D       ( A?A) /A 'HP      ) A?I) /I !"R	     A$@) 'J**H     @@/ %H@!,       _"CD2"%JQ/DTUɰ      (   / 'RP!$BJ	      (!?@) 'H_	      )H= ( ! D  B 
     
 H.*&dL@$H B@	     @/ЂA(@&T !~      @$"0+"G!       /ࠄ#?  ^JE)R{)     /!D'I!%BI      $ HA}#HW(QPDA      x_P&\H:DD      _ ?AP /PP@     $>p& )'H B@	      *@)R)  _I      @" #? A@A       !@?JL  _A6	     	?A!~(/I@A0B@      < HA%-SH'UPB$H     ? " $H  A	     	"@	)J&H B@	       @Cq"?D?R.D@_B
        $ "G! E      ! _ ~S!`C@"d0      "HV)RLP  @O
$      	  /AA)'H !
      _ "	&? 'DI$D     " HA#"*E!B"A      " O$L,RB!(D 	"RJ>       ! ?R)z%(KД)BR	      $ A "GA     ??A)!HDQ)a     	 x?P9F"(L _
"     </P!R%K/E       )!?H)  @P!>      @(Q""   O%"JD)     /Q	"},Y$RHI ($HI     @ A̀S$O ""      /Q""̈S @_	B%"J     @@$@A_f )*T'IP=BH	d     	@$@A_f %T'I=BID`     @CCU
%6)PRAO*|     	 /`E'RD) 'H A?A	      H"?I)@/B Af     @!? ( I $?      @% ?('HQPE     @ _$؂P 'H""DD     @%@N(   _A	     @! _""DLRB'A A"'ĈJ     @,Q""üS @O!
l      |_!BHҜ%J<K¤II"     @??@'A BIQ@     @ ""*"V#DB?A     P?ƈ*"(@  !J      /P"_̠R%JH%BEDL(      	?A B(#D |      /B̔)S @@I       (  ̪)H%H (      'B?ԁH?āBA     	 ??"( $OAA	      /@$@UEUTP      _B B @OA     @ _?AQ#DB"     @ @_!_̄%H@("PE       _ ?AP 'H(_D     $N$B'؂R$(HO
$      <)A"( 'AD      _ @, S$BL)&2LRB     
   
)//B*(P     ! _)U#D@"D      @"$΂)'H P~     ?~( _!
        A"DED" */  @      /A ($+DB$I     $ HA}쨙)TR1(JPAR%A     @@/IF!(H$WA!~      |_"L%Q$@@DD      /ࠄ  BJDB)DB     	"@?)" GB      	  ( 1( !RJB     "D~"S O($"HD%     $H!} Z(Q$J$Q D1       _ "  P&hA`3B
D$I      @??(H(I $P@     "(_IBW$R(QBII     @%@N)$O$
      $ A #D !J      _ L|Q #D A "       @c!"B?^ $J#TDȉ"     ( H])_Ҥ"HD!*B      " OJMP#XA3"p       /Q?DL@Q'A$I	QA      D/?*" D@"      /P/BL	R$ K/RE?I     @?Ɣ*R  OA?A	     @ /!/Fb)"'A !R"FB|     @QDI Ji)'JI$LR     $"HH!"L)X*Dq%V     $ AH$$OP$J5
A     @?A?DLS B_A!"T      /P'H>R %JQ*]Ā	         (#DB?"      $@A?A4I'I(Q.BLi!     	 ( ?B( /D JB$D     @ _ULIUP %TDQ
"     /
 )'H $D     	  /pUFQB)z  OIQ@     @ /&FR(H%SA)f     " _Q$#@D     @/DA Q#D       #@A!O̐R~$I4"O	!      /A$@P" G*UE 
     %P_B* S$D@B$I       x_$*Ш"HX"%BL|      @'I!$Q"HG     " @[$OQ?ID      ?B?JLP '@ $P@     " R"'@       0@W!$R%H@!BD       x"!)F(Ė&!L@!80     $OB? RR$O        A}  |"EA        /B?JLW!DP?@     @@$@Af)'H  D	     $ ~AXW*UPEA     .D!BYR%JO)>R$:K"      /xR=BP !OA"     	 (@FH(@D-PDA
$      //@ B      8'B?A}Ԉ!@  "_D}      _( "S GP!~     @)  )'H  D	     	 ??R)$OA!*     )HJ"(S @G?
"     @/A Q!_ A     T+pAFDL )B(O!BE	     "d"T!(*WTUREt
U(Q     " _S$DO? "     @ _QLAU#D$Q@     * TA|SYQS%J ABRA      /HBLA}T#D! "      (_ _$`O8(BB      |_"Q"G	5R@L     H$UQ:$Q$/D@BQD"     x) **$I $I	     @ ̈R"'@DIB|     </A" "G|!UBA	     " ^"R"#D! A      )H= ("HG?     @ _"P!L|$H     $$~I $TH/DPUC"IJC     	  "&UL  G!      @/A"Q#DB?"     )$^y$yY<I$I$$I$I       ! ?
L%) 'IHQ7bJD      "@9@)ΐ! _RBFB|     @"@ObQ#D@ $I      /xD!)B{cjԣ  G!B?A     @$@ )$$O?      @$EA?IQ"G|!UBA	      #RdTU%$@@(`     @@/ &̔)$' KO?@      /B?JLQ"G|!UBA	      /B̔)S"HBI       ^JI$@i}%QI}%AI      ?@?DLW  O?DD       /R%"{RR$Ox%"{ĔH(?     /D! H"R|$ OI      " ^;D #@ $P@      ?DM S$O!?@     $H! )RR'@%       ^!%HR?$OTBq     !@_%"̔P '@ B?"(     .D	b!R)BD"R$JB|     <!!R(B R      _("P'B !/$	      /A !$_""Iۀ     @"@ODQ#D y$I$I      *P)F ) %H RR     @?@?@LES  G!       /A	 )'HB}     @$EA?@- Q#@ ""Ĉ     %_AT*'TJQ:BT
      *P?  $OBaQ     @!@Lao URr'@ B?A     @ B  S$IH!
QA     " ^;D '@$
?       'PA?Ԏę %H  _      ( ~ADR
"_Q<BH      )H1%&QL"IA6     /DAD%ROQ>BHI     !JDRV "HBI       _ )S"O DB      ( &B))"IH T)      /A,kQ  _?JD)     @?A? W(OA     @/A   @O? *      _
MUR+X@ !      /TA>EAS  GB*U       *X%B9S*PDqU
'     @! + %HQH*U      )JI? W"E($_@     /A?JL $CA)0      $ _UB*تQT/D$B'Ȃ      _""*RP #EP P@     *VH* S$D@I       /I!""숙R&H*nĈ     
H?!)$O!?!
     	$$?R)J$MA6ID     $I!$IP /UT}UKQ       |@?B,%$K/T=     @ @_$B_̑%JH)"A     /A?"(" I *`        ̔#DB?"      _%̔R %$KP-"Q 
)     ?|H!} ($O?@DD     B8(@)FR)'H BB	      >eKM(_W)~STR%$JR     ! OB?AA%HJ(?<     @/@? S$G2"i0      $x~"DP/QHD
*      $x~"̤Q"$_HXU
#      /Q,H"R&I)S$
H     H"_AU!#D? U     ?DAS$O?%UL      $@~)#X(_@}
(     $ IxMW <^ȦIEO     	 ?!?D)$ _!?R     @/@*wDS!OAbR     #J!8 T)RHA     
""@1D(#D (nĔ;       ^%"kLS$O?Q%;D      /R%"BR_/hDx}U
     (/|e!=1ZQ"G DB     *(~A)rMT/D|C(0     H"_ ""R$O?ȩ)     )H^ dRO'JȗQ*]D
*     (_""U[U/D@"IRB     @/I!ڪ!OAbR     @! B  @! $P      ! B  @ A$          " $@ B "H        @?  $ B`      ?      @!(       ?@! B  @! B$p        @H " A0    "$( (("(!     BDD$Q$IAOD D8      " D   @@ B "H       BD H  ? @ B"H      @ @ " A0         " H     @  ? " D0       ?(B! $ H ?        B! % H ?      ~  @"@D"$DQ     G A"	Ȃ  D G        ?E D8    ' 	 OD !G     ~  BD	(PP*Bd`A       ?(B! % H ?     <xH!"B|$H B$p      AA B H      A  " D0       @  I ~$I$"@(P      #@@D ( P@A$P       " $@I `  " DL     ;@( P@A$P      3"1  D8     SB /_ $(QPP      8AO $(HP@$P      PA?((PPBTQ!      $ _OE)   " D0      @A Q D(Q"@$P       @ !BBQ@UQ$      # OU"}RAW	 Q      #T咂?D)TRQS⢉           P @@ A@      ( B$
        0h          
 " `              Q$I$R$H"        
 c "$D!I     "  " @@@ ( @      	  B !  A              @@ @@A        @ A7      P @    @"A AAPB @ @      "              ?    @! ! @! @@        ? @ A0          @  
  D`         @        |   @!         AA @         @@ #"       @D	$HH'D      @$D @BH     @@@ALB`P`@  &HO      
# @`>" D        $ H$3 I @      C!          C!    A     CA38        D@B!D     D K_ꤟI*U$HGBI
!     `   0 `   @     `  0 `   @     ?@! O@! B         0Bd@X      `  `   @        @(" @@     ` F0ADd   @       !!B B 
     ?H!"BD?$$HH!"B@      ` F"1|b#   @     x$I A$I?$H$I A(D       !!	! B      ?~B `   @     b# "1Dc  @     	 $       	} %R     @@O?      AA??BO
     E_ B?>@       + B! $p?     
           @ A	           (@      @      @ 
        !B!B!C      @?    @         PA@1@AA       ?@@       @?@@DAL`  @        !| ! A      @ ߂
$((P @(        @B8ƀ4|P @         D5P7A`d3P @       /H""(|PA<H      ?
 % "X                
P(@QQ$"@H      A 04੢E(!          !       ?I"ID      "I"L      A BB       ? 00   `         ( &	    ` 0      @ O   @@       GB 
(A?H        @ X!QĐ!""$P @     GA   !B"	A       ADE$G @        ?"D/ 
"
     C@ @BPA AA
       GH  @@H B@B%        AD D #" ""?      @  I	#A
       @!
   A        ! @!EĈ!"B
"     CD D	 D@A(`      @?$H	@	""$H(        @D !!@	"$DI        H$*E)&HI"AB      @    G!B A      @@	  A          "/@?DP @      @  
"'
$         " 	""EDI      @  'ABDEP @      @ ?	$# B9f     GDADQ_IER_IE$@@     @@"	" G"Ȁ      P@@HI'@B$D_       <	@ $!P @          	#ABDEP @      @ ? #DB?A     GDA}DQRQI}$P      @  D	D$A%      @ ?I	$
$        @ |  AB*      $A?A t
	$˨Q*B]JA     GA@?JB)@@      @ ?"	D      @!@?  #!	     GA@?JB @O
$       @$Ƃ	"GP
~      G  
/  ! @@     A@B@QD#    @       @	  Ĉ+@"D      q~I '$(Q QE	 "     GIH ?G        ;D # $P@      @?@@E
$ Ȓb      @?@@E
$!T'      %@9*PDqU
'     *JT%KʔJ%/: $I      @?  )"	! D     @ A   @@(       @ A $(P  @@(            @@$P           @@$P      ?@!~B		"D!E)BT        ?@  " D@!B)d      !B@)R)H)("PHa@`?      ?@!B
J)(SP)T       ?@!~B $PAT        ?@!BB#HJPHU       ?@!B	"t$I)$U         BT ?B$P      ?@!B 	$$HO)"T|      8A   ?A H     ?@!BA	$$HO)"T|      %JD ?H!Bi+"XC      ?D!"B|	/B)T        %@ ?AH"BD|"     ?H!("_Њ)6TRࠀ      @]A2	@   D     CD/R?H8%T@?A "X     `   0       !P1Mp          	0Ao       # `        Db#F"1 `         $!!	B             @  !B!       KF,2QMp@     !FY$F1QMb        !ՖIb        @HQ@" D/B!B!     AAA@      A  
 @   	 C1b    AADADA
@      A A x0      @! B		""@ (0        @AO @A P @      @DyDDIDF!"      HI$(A	$(DI! @     @ O@& @$ H	@@      B	$ $ B	 B      B	$ $ D	 `     @A	BA	D$BA	AB        " "  G         OTRJI)$"D) Q@      P	$@	$@ID@      HI)$RHI䄒HI!Q`       D$H"$H"D"!`     P D	DI$HB)@"       @	 '"D$H"H#@      _	$$BI E	`     ?  P $H"H"E*XP      HI!$HI!$HI!Q`      B	$DHIR&(BA	@P      %"E	$ E	$!@      PII%$RII%$E		`"     `&2IMRj (      @D!%H"$I	 @     $H)"R_	RIH4$PP       @ DAMXFQDD!D"      HI!$HI?$HI'@      DI!$"`	?$HI!@      )
RTIRJJ)*RT+HaRB     `A'b	 a	`"      @D!%"BA	$"E	A@    D@D'() KP B     HII%BA	'BB	@P      PIA%D	$|DI!a      _$ $@HA	@        $ $@BPE	@B     @HIA&RII=$RH @     A	$C	$TJI	DAA      PUIU%TRU%TRUIUDQP      PIA%D	$DDI!a     H Ex$@z~	$HB)@"       A	$Hp) %B	<P     <B	'B	%PIAPB       @	?$O!$HI P      D	"%B)$ B	>P     $ H "G䄉	SJH!"BD*B      B	$ @	$ B	<P      E	"%@	@_A      D#bI'K	*$B       H>$"O"$z~B!@     @OD$A	$JI)&AA      	$BH	?ҤIJ4"P@      " $  @_! P@     @B	$B	 JIH"D      B	%RIM%(JI"B       $D_$$"I	Hp"      @߉$B
DJ	DG)@B      @HA&@	@HA@      %$J E	`     $RI$@OA&"E	@p    d$' IKP`       H"%&B	 JI"B      @d$`bpI""H"!`     B@	$$b	'J)J$B       I)I&HI) %B	.@     @ %	(I~HPD@     IɄI	AX      PI%_A%@	"	`"     P'0)O`SB      J*%tB	%B	>P    T&	0IL` (      B@R H(P BA$P       B	%RI$ JI B        $>HD!B A
     E!'(B	`J)"B     B  ߉$$JI)BI	$EIaB      PIA%B	"Jh)`B      @D!%@	$$H"H     H _$H@	?$O!HB     I2$HdA(@@  !      HI?$O$d$")HB     $H!"BD$$HO "@D      @	!$H@	 $HI!@     $|	$$Rr$$D$Qp     "H"$"H>$" `"     B H BD	SJH!"BD*B      $O	?	'H$ E     hb)o)`B     P) $J*jbJ1P       _	'BII$J$D      E	"%@Iy%$RIyQ@      J$Jb	 %JIb      @	 %PIA%JI"D     $R$P"RI%$b`"      D	('U%'TE)$AB      @HA&B	%$_P!PB      @d$`bpI""H>!`       O'BII$J$D      E	"%$_I%_(B      H)?BO$$T)PBD"      B	$ B	@_ɡHB      %RzĕIjS$pIP1B     ! B$$"L0 @0     $I'I$ _I$(( Q"     $RI$ B	%RUIUTQP      H)?I	)$"K"b      PIy%$逦*h)`B      _A%@	"鈆"`"     xQ"8HH(a       Q7B)R%$K"H      `)	%_'_APB     "H$P"PI _APB     $_ '_A%P$<P     0 JIDO!$OQDDB      _'J)$XRsIAB     DI
$"J/Ȓ"K"9g     _I%_"BA      UI3%TLĤ`"C)qx      AF/
$c   A
L     DDP IJ=JTRR$Uj"     PސM$BFIb0p      ()J_	 ' H(e
      g&D`	j @     IH@	%$RI$ G	*$B       C	RRu	'Jh݆R`b     "	!7H	?D$I *R"       
TQ&U
}*"TJ)RJ     	% %_I     BQIP"PI _APB      PUI$d)|RJ_))@B     	(SK?J)(R*YJ     <_HQ@%UIJM      @A$GR$ x@ @0     I
RU,B?H$P"_     /UT) $I$OB      _ 'ޙJ}$ G	*$B     'HP)O?
J)jSh(bZ      @HA&@	w%TR]"Qb"       OȉA&@	w%TR]"DYbB     $逤"H>$ RI$PB     T,o	?H$I " C     >UT $I'H"B       Q7@)wR%TK"$DURB     		'@DRK ?DB       Q$WĀ) 2w$iT2"DDQDF     E ^RJB_@
_@P"     >
(]Ģ)?҄'JD#@JR     RRSUe J)R'D""     	RHMjE%
{Ԕ)RP+QB     B#YDIfR4$Oߚ?|J*     
*JW_ȥ}J(oҀB     @ @AA@       @@$H "@	($R       @ ?JDBI!E"      @ B	$) D         @ ?ADDBG"      @ DI$DDI$D"Da        ?L `0?@ A(          H"$"HBE	JD      DAIAD <@   !       I	$$BI$ER       ?  I	$$BIQFE      B!"D"DaB      8B	'BD"      @ H DQ!"      !BDBQ	|%BQNG       $H
,ņ @0        $@QE
       BRJ%(RD
R      !""B`	>$"H"D*D       ~ B	$ E"E
        @Hb&"H>D     A_&0L"aHF@D       B RI%$JH*$eJ"      !B"`I %BD:      CA  Ѐ? @ A(      ""D@ `   @@0      " $  @D A(       8@P	^%H"TRFy*D    DA"
%"	OD!	P        @	$ B	D=
D       ? "`I$$PE"E
       B!"R	D !B%     # ?& o&!`       ? @	 %"PBE*D      OQ$(@B0   !       ?@"_		$HBr	D
D    B$M	DUQ@?@B
0        PIA%BE	%DJD      !	HJHI) %B	D=D      H @	 $"H"D*D       `<$CxD"      @ B "JDB%$J( $B"       RI$ JIF"     @?_&0LdH҇	P    BBBA      #B"d&H"&I%a       @@!I$I$QPP       CCOI $(QPBP$P        "> PII%$RQDJ     !$@HA&"J$DʌD     #@ PDA$ IP1J
"       "PI B	D=D        "P@	 $"H"D*D       B~ J	%RUQUE^Ҁ       ?J]& JIF"     " > RII%D"    "$#$rH	&"&	`      #}TRWIU%TUIUEUPB     !?}_I%_D?PB      #/H@	~%P~E	     @A >H/G	@B     " >H"'UbE      ADA?	4@`O)BE     R#B_Ā	%$JH"H     C߀'0ILEPD     (!"HB@	$YDD       I"ADID7BDJM      UHIEQ @@0     @ @AM`      !܁H3}TLĤ`"C)qDxB      #BUT@	$ B	*E%D     @GDLI*U@0       C@A%K/H     " > RI$ BD"    H}?$/
W A     I"H }$RI$ G	*E%BB       BH&I	?DD       "?I$D	('TbsIDJD     R#"@_B%"_BER      @G'e$	 %JQ+PJ     !$AS%BRDIE$)(_       CHx$$K)$b*"     !A_Ĥ%H@!C"       CRD@% J6B"     #?ȁ~R %"_BE	      !H/RQ$DTVJVJY     "D#A"_Ĥ'LD7`       ?%$RI$!B% D       GZĮ%H@ UJb       CR$U%TJ*l"      !(CUDU%KI5h     ""x"LD/Q(
0       CWH"$O,l     " GOJ	'J@)_"      @@  @   @        @ ?   @B  @      @ ?  #  @ @      @DA!"D% u       @ ?  A$A"@      @ ?  DD@        D$aD"HAB          @@ $0G          !BA	 A        @H!BA PB         !DDPD       @B O B         ~I	$~A@        D$gD&HIB      @ȁBD	$D	(@A`      @ ? F"$"))J*@S@      @@ D
D* _"      @BI@Db$"      @H? @$D      @ȁE"[ D       @ȑB& O"$"O"$+H      @"$XID@     @ D$PP^% JA	S@H J       @ D H?䈓H
      @^HQDJBTB      @!HAA]GDAD      @䔒ROM&H)(D2      @^JQDKBB     @(&  @ _      "A	0(@% R "D      @ " D @ "<Q     &	(I$&!XJeTW     >@DC ?"D^@	                      @#"A
  B,    "@<"hJ$(     @DI$DEI @      ' @        @ |!B(     # B!	$C      ' @	       #RLI"$HJ"      'DI$D @      /	 @B     $ (" $#    !/АK!RYEa#    /$%T	D"#    
D)BD?B
_1     	$D /    H?>! H!      	Ċ%I"''    (!3 'ґJ})ґ
T!?    !"K*R![b#    	$D DI-!    	"B$BI	?䀀     諸 	$DDI @?    	$D@I$ ?    3#{)'    (!38 /+R( ?    B	H@I$@I!!	?    	 @JI" "?     H$@D	r O    JI$JI"@d
2@          @        @     "" """B)      "B
 B        '@,    (!"h #" "     	$@I  `b`H ?    	$@	J$     ?" L#     	$" /<K)$           ?       @       @ A ?$( P@`A             @       @      @! B ? @! B       " D@"?" D@"        ! BDA     @       @! B  @A            @      @          H! A       BD H        @          H! A       I A$I?H$I A$I	$      !_  A       BAЄ!>     @       A $L"I$I"       @! @A @       B? B    @      A D     @        "    @       @@/D"$_|I$I%J     @!!   @         D $$ 0       	""O	H E      ""DA!!   @      "D#AB" B       P@߈"'H! !J     ! O r~WT   @      "       @! B > @! B           @    @   @       >!Db"D~!  @        @   	 H@          @?   @         @                @ $ H@       @ $$!""J
@       @ I%IDHRDS     @! @!E@?      C	$C% G$C        $ g      0`      2d        @ A         C0!gU@       BD!BD!¤	          |    $H A!"@H@     CĆ$1!zTA     C0!gU@          ! HA%"      |EHQ%E	O!DRP?@     $a#HG0Ee%I @         D!DADPI      CԖ!zTA       @БDaID}tH!0      " $  @_ A 	       D!BDJ/K        UEUTUQUEUTUUW         *#1A ?        HQDQ$PQD$H"H$        PB 
^)hRR" Q      ??	G #X	LC      wUT] E D@R@) D     Je)^Je)ޝBeM$b!       *E%DHIF!G*K%     (H>I0 @! @      ?@        @               !   @            ?@ ?A	$PH@ $@H       ?@    @@(        ?@ !B!B$@I$      ?@ Ax ?A 	(       ?@  @?A         ?@  ~!B!D@
$      ?@ ?B'@A!	       ?@ @ A !D       ?@ @!@BA	$     ?@   '@       ?@ |	 'H@ P     ?@ ?	 ~0A         ?@   "HHB2g       ?@ }%*X(Q@}(       ?@ ?H	 ?@"$DH      ?@?  @@	       ?@ ?" D@	       ?@ E"ETR*UH($HI      ?H !I	2H$IIG*       ?A ? "( @@       ?@ ""DD"'@?#     ?@$DO       ?@  B	 '@ (        ?@ 1{(
P)HR!zD B      ?@ >$/D!!      ?D A!B 'H"?@      ?B@	$H! B@	$ H      ?A ?A	$O$P@      ?@ D"E)(QH$I"      ?A ?@D @ND(       ?D DH*T$$HO      ?A@A(_"Ĉ        ?@ 1s!B'8MhQR)B       ?@ A(DHH*_ BDB      ?@ 	'HA |     ?A 	'H GB!      ?@! B/B/H@P!0D8"      ?@ H
T/PPIDb!     ?B 	"'@#     ?D A|!$O(!$DITP     ?@  B	'ZP!     ?@ QD/Q AED`     ?R 1$ϔ/(RPDQB      ?D AqV"A "A(~        I"R+UT]"EJ     ?@  $IH*      ?B ?I$#@"_H      "! G$O(Q<BN)@a     ?Q) BJ)@ ""Ȉ@      ?A @B@~!z%L     @ @   $        @  ! D@        @@  HHH@        " 1  !        ( H @            @              ?@@@  (         A   !$$?А       ? @"PE0 @       @@ A       !B!B           'ɀ               H#	 0 <       @D߀@`1b<       @D߀@`1?          @D߀@`1$I         A */҈B       ! !TqERL	        ?  @@   
 " 0     ?  H@   
 " 0     ?@ B 	" B
c#       @ "@ 0     		$"(( PAB$H@@@        	"D@D#      B
$("D"$@       ! B?  @@A D pp      ~  @ 
DA      !  HB"P@ c     ? @y  f8  > 0      !B @@A D pp       ;B A (Q(BH	
!     > 0  > 0     E"$DH"(OSB"H      A ?   " 8`      "E  ?@   p       S$WȂ(PAH	
!    @/@ ~) 
A0       :WQD"PDEBA      DX@@A D pp      !B'B ~!HB%D) A      $K
 !TDJJ       
 BB? A D pp      bH1" @H      > A(
O䊉*(RA"A     $H(A  D #r?c      `0           @   @@      @ ? ~"D"?@    ? "?@ 
@      !    B +     Db#F"1H@BE    bCĆ$1!bD       ?@B    B         ~CĆ$1!K~c         A( D  @      C	$$BI	$$#ȉB@" @    A	$BA	$BA  @      " "" "              @B     "!"H"0&"!        !B! D H ` p       @   P $@@        B B ?@@         ""?       @$BA	BA$ @         @@  ?  ? @          ?!!!      IA%"H"$PC	 P A     $@B	$PBE"$@     <!!	FB2|C" A    d &B2!|  (     ȉ"$"H"$#ЉBA	$ q      0 @ @	 $    !"B!"B!       "B!#B!" @      	$BA	C	  @              ?@@      $`	?$"C$?       ?L `0?@@      (aC
P0(
     @$ 
D)!%"@$      I$B	 	   
         
 " 3   ?@@          @        	 '0XD        $@$"D$   
     			       !B1 
   ?      |     /P! B@!       B!D H ` p     $ B	 B$       @ >1Db#      x$ B	$?B$!     	$ B	$"	          @$ZI,ҒJI%$D    	 $       )$(BA	$C	  @      $	$I"IOe  (      $BQ	$A$ @       $ R)I&(E$ @    I$DDI$DI         ?'@  ?`!@D     I$DDI$I! ?      A D p?@@     ? (   @@      $P"TI _$          	$$$ BE	< @     @D%FQ)u%BQD%DC       ""@$)a    ?@ A       AB@D$IAR @      $P"PI䈒"H"$ B    @$BCIRFQ  @         V#A`  ?@@     II%$RI%	@A     %RII%$_	$        $DH)@DI<D@E    @$JYI$M$$D	#       
 " #0A @       <$H	?䈒"H"$ B     '@	>$"H"$$       $ BI$$D       @  @$     $ B	$H"I$%$$ ?A     @%BA	$
DO	$( @1     >| H2A| $
 !     @P   
 " 0       @@    
 " 0     $RHf$BO$ @ 0       @ @ 1Db%KP  @@     %BI	$$B$P A    I"$BI IJD@`     $~
HIH& E$ @    ȉ"$`	$#ĉ  @     <'ȚE2IL~#" !@      >
$H"H*$Ȓ"x"$$      @$$I	D$B_$ @        A   ?@@       " D   @      "$"Pĉ"       <A# D2d0@    	 $      	@%|TIQ%DSԉPBA	C       ?@@!L! @   B       '"H"$"E$ @A       @@   @?
$ @       	 *"Bb ?@@       @@    ?        @P      "        " D   @         %B	'E$ @      $H"H$H"@~$        @	 $ A	$ D@     ) 
O$Cȉ" ! @     Oq$DDI%DO$D@A     <!/HFR2L}(@         0    	$ $PC	$ D        H"@	$BB$?     $ B	$PBE"$@    	A%DRD%҉Q     	D%BWDK)HB	IBB     ) JI)$K)
 $@    ? ? HBB       ?@C (b#   @     "@(H"D"" @      $P"PI"H*$      @?
H)"O d      ?
O $HO"$O     d/ OE/d   @     %B	$A$D @     $ B	$pJI>       )@Q	D%C	B	0@@    )@P	H%"ӉH!A      I)$HIIA       $P"RI@O$@       %RI%$RI@E     @8H_Ԧ4IM"zSDB     |%BQ	D%BPB%	Pd	     ?HB_'"IO  @    	 $ A	$K)DB @      )@
_$H#ĉ"@$ q       @$~A	$H)  ?    eK*YRʖT?e     OI%$I%$ROO%       H) 
H)?D      	$JEI%C	  @       @:FK@ ?@@     z%H"TR%H"TOQ%dH&D      %H&VS%H"TR%Ip     %B	'J*%$B       <'@O2IL|$ @    @I$RII%$I@  P       *T)RTRSER)!      DeQDe  @      	$ F)%"	    ?     H% R	$ B$P @    I!$@	@        II      |$JE)$A$ @          
 " 0 >E!CR   @    H) H) H         @$BA	%BB$D @    I!$HI!$I! ?    O!$HI!$O!$@?     ЉB%TReI'R     @	$%PZu\ҕJUU%QDO      @$JI)?BADeD          ?   ?@@     ?
o"*O $     	$DRQG #     %*DH"_dI4B     %RII%$$P@A     p$ $pJ*%$B        $T	$|D$~   @      8GFDR|!      @$D
_ d H/  ?     @ yAB$J
 #      $FAw$XREO%$H!      O$XI$RIO!$@%      '䄟HI!$xO!$@     |"$Gπ   @! $p    H	 $"H2%(PBAI$p     $>B	'B
$$         @$A	$H/  ?      @%RJe)RJe)"*H@     $ B	$@H"%  ?     %E	$$Ji/$h	@      O$@E	$RJIO%$D      $"e	$P2`?$         %`) $ A$ @        %`) $"I8$    N!)**+       ĉ$H"DH#ĉ       	$ H) H/         @@ ?@@       I!$HI!$I#  @      >E!     ?         /HB	H"D$I$A      %`)%B @    	$D
_dC  @?      @ 	I A/P
@"        hZ%iV^h%AB     @A '"D(,      /$ A	$BA @       I$B	 J*%$B       >|D"$Gϊ($P	$ 0         "$J"# 
 "      @%BA	? O  ?     @	$$BQ	%EO$H      $"e	$P2P?$@?      <$@I2I̒|' @     @<$ OAd A    O"$ B	$ B$P@A      @ CBI# $ 
 b     %D$JR%P      @(H)_d B$         <$B_$BO  ?     %I*D$̕*d$H$BB      P " D^PH))P!     %b)%DO!$h @    	 $
H)?         $X$rJ* "     ?~Bd  `     DeF_DeYQA@@     B L)S>p      Ĕ)"RI%$Ȕ " D @          aCA     ?@B   Db#~"     ĉ$HTRJ+`@    e+@W/ez@@     "$H"$" $@      $PdQU_ce       "C		$Ȝ~B `      @?BA	 BA? @       @ A#/HA      @! ?  D|R!'HA      @ 	?J"@ E      J).ꖪJ*J)"       {	AҼ%HJ%*SDP(`     <A/@W,}K+@     "@	A%"H$ @A    IA%PI%"щD0@     	@%BQ	_%C	      ĉ$H&dRJ3ĉ H ?      "$@b$JJ/(d       A)_$H$A      ""H*dǒBA @       @|$?BB?|%!@ @      䈔"@H"D         ""i*dBA @       ' D	/儚HO!$@%      $`9>$ $@ @    ȉ"$"Ry%	*$        &$HO     !0B(0      䂑B$lDO$D@!      @ HS$PHI*c䄈(`     $A)$$Q' @        "%F}(d~_@d8B     @	$$Ba	%@? ?    	??     	$BA	D D@A     	 $HI!$I H  ?     O 'J,S/I%)"7        ~@	   ? B@ 
        (Kܔ	HH&S %AQA     @?BA	$Jo)e%@%     @|S"IH2A|' B     QDRH AA      Ji*J)KA**     ) A	${	$P!       ?
wRJ*T^J B     <xH!"Cǀ  D  
 " 0     /~$$ HD&@       ) 
H)?
 H$A     JI	?BA @       @B_@f@% @       G@A$       L) 
OdNI)$AQ     %_A%RH @`      DeV_Y!dI_%dDD"    O%ǑDI $BA @       x$"JII $@"$H  
      x$"JII $ DO!% 1     x$II %"A	@         H 	I"$$@H    )?@	 $C	 @        HI!$_$ @        _)DRJ"E   F    /$H) B
$H$A       !D    ~@	       8$EI$DO$_B      O $ @ $ ?     )$DI'$@ A      =()KR2}#/HD"    ) 
H)?
O $D@@     $b9>$BB%@     $@$G1%( @1     ?@  	&@ @D     I!$_H"@      @DI @IA 	
 "      @%BA	$JU_$( @      @
$D
W$A%$D!        w$DII%ԑRUOU$        
O $ D$H$A      pdEDYdEN_UeA	@B    O$d
B	PB_襤h	@        D/A @D#      @ $I$8 A/       BBJR)J
_  @@      @I)$JI)?       A% H @        @?
O A% @      ĉ$HTRJ+ H ?     @?BA	BI'@        F!EA  ?@@       D)	ʪ+(Ȧ"O%(
!P    )@	I ( @`      @ 	?%@"D         H  &HO    	%@	?K)$ @    	/"I)"y             &HO    OD_@f"_B E    
$(RJe)W9`AP@     @	/TBO JI/$ @      @?
O B$?@      ĐB$I$I$ 
 "        E%L!$p@"PA       "$RJdH"HD `    JjSRԦ5)OCj      {*z*R{*H#      8$EI$!_$	       @ 	?%HI(Ă         $`9>$ _%$
      R)N%Q@%x	 $"I    ODG$DDO%  @      	 "  ?B	  @!    @$"X"O"$        ?j֤ZjEֵ^mUD@B    '!I
O }/@     @:P)@#ĉ H$     
_@%J_D%($@     D$H ?Ą " DA     b9%$_I=$@    O%DI H/  ?     @
_ d
O  "     $b9 %"A$
D(Q! |    O'*Q@%䔊R/H%(" @     %*TR*TR !     'RII%$G*$"!@       D $  3      	z$$Oɒ*Ԕ @$I        	I$$$        R$JB)$# RB>     ЉB%"P #Љ_ /       De}FQYQA}P      IJT)PD	Bx@!AB     @	'B %
_@ B    	$JCIV$SI@       @H)?I)=@       ? ? IPS}$$ 	H     ? ?KB|$$ 	H     @?B_$(A% @       "(z")r "      *       x$"JII $C$TH      %d!%O$ @       H)? @O% @          C  #D A?B    		        	"$J"           @A)A$$@ O     @e"TReIЉRAI	$' @     @B4 ,A       H"G5A      <(T2!}S*|@      @I
"%H"A$$
 "      <}$)BLB}(@       R@$JR-Kԉ@" DA     @:FI>  "$DH"       @@ O!>B       @A)BB    {*R*+( {*T %A    
#艿biɦD$       ĉ$H:P)@;ĉ H ?      @	D(R (~PBQ A     p	$D       #D	$$Iΐ!#D	  $ H    	%FQfeUW۹LDP@      쉢&h&j      J_D"D"'         $o$ B%@    @"(*(J.(      @A	 H/$H     @A	 H/? "     #D#'H	"#D :     !9IF4y#IHDS     /~$$@XO$@?       $? ?@!"B|     B/ޤ"ȢB8
P!       @ 	$H' E(ҔQ@     @eFQ_egY@@    ҙJe)A	$~I
         @	/$@	 %D$ B    O!%SHe)R_He!J      @D '	7L% D     O
$JI)?JO$         B)&)~J/*T	 )@A     
@	BI'@       ze)^K%*PRe-B      $$BI$ RO]%@$    )@BQ	CPB	'    )?@	䀓Y@!        " gP"@      ? BJO$h	@      "%@	%_"$B    N(VZN(	 $    ODDI$D_ $ ?     G!%HL@?     	/$JI)?B_DeP@A    II%RI$ 	H @@      @B_Qe)QDe}DEA       	!      )?H)$	 D  ?       @G    "$DH""    {D"֪UyUQ(B    @/u%FYK@P/@      !)H)>"_P@HA     ( +"*	&!QA     
O)%JI/$A8P	 @     ~
(_  @!BUILB!	(     ZL&VB_$TH1     ) JI)YQA}P@     I%@' @       h*K+*JiJh      D HO!$@?     O=RjI$O       
%R $ `    )@_H%D)D@A    	%*T^J+שRJ(@    N!(~Ja)Ī$hD	'    %BO$K @        @) ' /Ҕ J@)      $ Hi!cĤ@
@$A        ĠJR(
 "      x>H_$@H?%D!       !      ()I_e (      {)^Je)@Ke :     @	?)?!      <$A	?I/?      ?B@	?A@       |$B$P^QDeD      ҁL'RIy $$`     @?H)? A$ @      $_I%<WH$P     ? }~*1Q$!? @     
O $
O          	?A$H (Ԉ BA    "%@	ye%^M%*PIA`      ׄ^ $ D@      }dEDY}dINA @       ~ Dc  !>BD
      DBVOB%      ~	
 B!   @      @(RI)_dRDOD@!     $b9%PO%"Pa     W)RRIJBP/     B)OF(i	^hJ*      @ 	I%	'$       ( "jID
P!    OD@	?JI/?H	 ?     ""   0 ?       @$DDI $
I/$H    @?!	B(D1      @ 	I'} A/ ?     ")BB)*$J     "%@	x*^J* Jd     ?%"_ 
_  H)PD|     @	/$EI$$  3     ""  2          @@ ""||*!@         GĀA~ D DA"      ~%"WReLTP%\P%PEC     x$II?B_$H	 ?      H)? P_eEAA     I?A$I!䘀J  l     %PI%B	'@A      @ $I	'P~        ?@!"B|    HOI$PI$ ROI%?     @A	 O D	 T@     	%O   @@     J^)d*O       D	 $DI'ʤ@*U    Rh	j*h$D"    	?I	$$YUAU      ODRB$FO$TH       JO$B_$ ?     @?B_$@J(     #$DI  A      #Ä )I   I       @ 	?A$I$@"     	_ UIR%dID A      @)u҈KA/$
  l    )<P?)?!      <$dJDI>$Od     "_@f"B_$|@%     ?
O $O eUT      %B_J_$Pe0 P     /?$(B	$`? ?     OI $ KJ_" D@     /	%
D)!$\{!    O%O%H?@A      AEU D!z'E>D     O !O  BJd)@B    I!$HI?$ ԩRJ(?    | Q UjUڠ@     @	/$B_ $I/$ @       @I?A$H@"#$          @RBB/P        I!RDWP!$C	*      
Ԑ)PJI(_
      @|U ?H2? @A      @ 	?%Hi+ +      I?$Hy${)T %A     #_K%Sʤ@*A        ?@G	܈>      RQJUkU^t       QDREJ@)P! >      ?T5IUzUP/A     @$G$|O$ @ 0      T	?I!2@      _Hd DP      O$ E$Zx	DB     E!
$IR%K) R@    )?EI%SI?      N!+>$*J$&!      @! _"D       @A+@Q?     @HOb&H"$ ?      RI$ROO% 
)QEH     ODO 
O% @      $IeYJ"$@@"I     @GB
窨"
PIAhA     "%$A	%_A%"      D_De}FWQeEAA     ( +"jI椮TD4!     
e)RK Vje)
@      @?*JB
HO$     A%_@%_g2     J+ԩRJ3ʵU0      #$I$   D      #䐉JSP8D  p     @P*R)@      !@D(_A"     @De_D%B_@%!     %)EQ
I+U@"E     B%*JT S @DA(@        @$$$II'      %PI%H/ 6G      #E/B;@}܊)R.PE      
RJR
$bK"A@       %SxWdT!      $^$ @/         V5ujը3.B0!     	O"S@%wWYUAw      I	 $I 
UP*@       @$B_ $
O       A@ < ?        %SxRJ	"?     #$/Ԕ*R)M d 8     -~A)D@E      @ CI%JH+sԶ!$ H     ?*(Ң*)?)	     .J*>
* b     );JJwU}x_P$$
b      **U(IQYGҍ=JP     I?A$I)Gt 5     @	/%G$DA$ @     䪊hJ! q@      Dz#_ W5)}JzS^𔄤UR     FUZ(@"@  3      , "K(`a      ?@ $H        R
%IJ& D@      "* .	JI"    $ EI%REO?      ҙJeO   @@     :e(j%TRJ/HA  JB)     OI? '@*^P&(    .(* 䨢j"A    _[DQ %b/"  "      @$$J]( uU"    N$E)
($"     
_	_҄%JB_1PoAD      x&k騦"x$@     @$B_ $
O        +d-2|I4 ?     @?HIsq % "A     	u~I)'ʤI+U QA	 "      
O BI/$ @      ?媚J䪒J 	PE@      @ 	QRA%M$ $Q @      8A%}̈  _@}      @ $I? A      >|D !?      ҙJeO$K @      )@	?)?       UT)DRKA  R@B$    ҙ{Ny $DI @@     "BD R@HHA ) P!@>      #?RI$@! *      x$TEI$I/$H	 ?     d^ O D	 T@        )$I'P@D     {J+ަ2[( JA@      @$(@	?I/?      'M *$THDSUA"IBC     <N(ʩ*dda    I%Dj$ҙQA@    N(>
*"!     O %FUYNe@? ?     @C	bI$CȄ  $I     @$_@dO @      @Cd9 $I/{ )@     |$H>    ϑ"DH     @?H)?JEO$       @	/%RI)Dd
NH< @     %SxRj"       K¤RA%}L$$ "          #     \tI$(IGBO @         	Kʤ	"$(KA'
 "      JJj!UPҢ DA$      @CDIr$IT  R@    )@	w{I@      @'B $VQ9T      DDRK?       UK(DQ_%`YB
       @   Kޔ)K! QA       BOH$I $        OB)%"SB%       A'Y) P_ $ B      )URJrU(
 "     U/ Kd2OeP @     #;D   $P@     R*_ %W@%
@(     @	$'"@RJj"Q    ODI)?ATAA     >|D "?@``3 $DH       *BT @? z!*C׀ ?     $ )JR  %       " %
_@ ) D}     #|IR %H I$$     N*(*
*B"Q    ԩR %@j 0@     xiR(|     J+N+@      %Sx_H%-D      @Cd UJr @?A      @%F_De
W@%~@/     @$DDI?H/?@      !/B  	'?     $
O ODf@     (F+("*T	P> A      %#Tj__+`        @D@3 I       芢*"
I "       "%H"#$         N*_*?ND\BQ       #?*$  C!@      EQ?D@? ?    JdA	DJDd       JYGd J        JdD!%#"          >+諸JU)TPA     UdU@ʥI"RRe (    $HY	?I?@     B5(P % J@      $	 $~H _A~     "+ޢ"TRoUiUP-@L     %RjI*ԒPRAJ     6*)R*_˄> @8       $ $ KE/ D     ?) i + ?     JʪA)A     	++.iPA      @?$ K'  i0      @@3II'$@OP    HOEHi>$@? ?      <UJr   II     DJU*@"A?B     JꔭT"N @`     ?+I)!+     /ꈫJĞ)@    $^%
O   QB=     I?"%H"#$ *  `     J?A+AIJ+ ? <     @	'DR
_RJ      @@      D	ˢUZwC@  I     	/5A	?JEd      DJ.DB       @C >>     NQdRDOdT @$0    /kUVZ!iE^!kD*=G     
(JpA+@_|@ A        D@DD?P:     >E  0À@ |     @?+jFA      J]kVR^m   JB)    **DJU
@I     %_H~RWU%| /અ     ("Bg     'P/i?I}'ED	     {)ROeE&VQemAA      {*ԤQ%_KXU#     	*~hFj| B      #@ƐI$ $$HH!"      W)K)z^J#Q "~D      %H,C ?D       $RI]_D%> "    n!kR*u^T_R*       #P
Ȁ }HG?     :BCQ?      >|D  ?RIB	:@    *w)")C    {)R{ƔBD        @*w$DK/DbR       Ӥ[J%+PB?M"EW	     %Q"G!U] L    JD*Qjζ)$"D    D"e锧x=/RJe>LH      x>H**T0(@H     >#ҢA)ʩF@!    %^$HI	 ?    ?%)BD)B)@     |J#jժ_| 'D    O?$Hy$TsJ8B     >E @  A|     ')VUTDU!*@G     +E)*/Ԣ)_U@¨     Uw
_ԤRBQB&D     $JO$VWDHA    | Rj*+B
$N"H    ?!)ȢzV.       *"Jﴤ{KPU       D@䤏x@HLc    
P=)+ߦ2[(
@!     E 
v'+UD_u|R       # ""||PS Ȉ""      DSTuWj }TA(_ "     (SAG!*~|H# E?AB     ۄ-Zy*OIWӨ[@~	Q    @{TU&UdzUQ>D     ?"+ީJꔫި' $     dN^(BUeP     ?I)Uiܢ""'P      (*B~Z N) $     5R"^*@	_     `   0 `         `?FB3d  @     ` 0!`C         ` 0Bd@       Db#FB2 `      ` 1Md         `?7`@       ϙ"dL3  @       &"0(b#       ` 0Bd@X        aF"2!aC       `C0hC
        `CD1!`C
       ` &I3,`        a 1Db+         `Ŧ*2I-r        b# 1Db#       o 1QMp        `? o X        ? Ȗ(h    @b*V,aS       Db#F"1Db#       g  $1!dKA       Pb$(H3Œ,d{         ` 0Ao        `0ъLh        ?@@`     Db#F"1Db#!       `T&B1cc`       ` 7,`       `
&ABb        b# "0Ao         `s< h        ` O2Ao        `
&LaC      ` 2	Lg         o@7	j+`        a Lg         ` 0Ao         a҆1|0`C0       a؀9L~b       b# B~b G    o 0̂g         g٦1)L)bKj       ` I3Ld%        o'̂d?        F7      g -iK      aCt2LeS*      b@A5ȜLb       `? "0o       g̂g &C?    
`KޖLc[dX       hD[A)iK@        g2	o ?    @dA3Ld?'    b@A5|b        oJZR?dA\      o&2I̒`#F?    g2	cSiD       g o@[FA?    g"3eS*    `?$	3d? ?     g AkQ[     b#? 7}j+_Z ?    o&2IoF&?    Dd_X U2LeS?       g$	̂g FA?     oJ[0ADaC? ?     oJ[̂gYF1?      DLwdո;]X ?      "&95nA*2"                  ?     B  Bh!             @@  ?        O  @X (       ?@   p ?       @ACDAdA            @@ " A0      " B P!@D@ A     ?@ @ A           W A        #@	  @@ (       @ B ? @A ( @?      xO ? Y (@       C   @! C. H 
           ?      ?        GA " D ( @?      #D!_A " D ( @?       @@ߦY	$"hD( @?       A?  @@ @       xG	  @@       DDI'DI$DGI% A     @A? E!D@G      @ A  @ Y        DF`     ?      'A $D Y          @'DI$DGI% @     @ @@ 	  $ x            ?I!$"NE"      8G" D@B      ?@!           D
DI$Ix!AB      /D O%z'B "       @A@D!B N! B       @@O "@D$      <GD" D@N)@a      8GQD"PDE A        G H! B@("@        CAA !B A        @A@ #@N        @ A D A@ A     @A?DD@QG         O!@|" D@!(BA        @@I$#@(@     @ @@ ~!B.H      ! B@A
!B N!      @@@ALB`Pa@    ?      #D AJ"D NA      ! B _
 @!@BA        O4d!HtB         " D@%	I"     ?      A  |" D@(B@       A>!     ?      @ ?  @  ?      	 *"Bb    ?      x?@D"D@   ?     ?   D B        @ A _" BA      /B B$O     " """D         K$BE	    ?        G   A NH@       G"D"$DH.HHJ	      #D!_I$"HD@       G!_E #@? @       A D!@B
"       @BJD$B  ?       @@"?D"E!Ҏ""       @D!
  @O        " $ `A      ?      @'D$DG%        #D AB#D N!        G!_"G.           O~%R.H? B     @ @@ ?@"@G ( @?     "D AB#D N! ~       #@_* @@         @@"D.H        @xA)RH"E!N*H$       #D!_@D"E(H@        @A  #D.H        '@4D(Y        #D?DRJ"E^( @B       @@_I$'@ A     ! B@	_	H'BH"       "ҒrHI"$JM	@B        !   ?      8G@" D@"       C!
B!B"E!N?         @  B y$"HD!N  
      BDI$DGI      @ @@ ? H! B N      P A ? ~D"DN!E       xO"	 $ H@ Q@Ɂ	      8G"`D`(B        @A@ @ N       @ @@ ?   @@ (        A!Ba	B!(BP!N! J       xO_* @@ (       @ B  @A@ A        H@$         A ?߀! B@
     @CH8&   ?     !B ?(R!PD(L@       @@"G          @ y%?JH)"rD	 (     B~    ?     ! G! _E#DN( @?       G" _#D@Ў!(Q@      H!"_"  ?       G	/@H}"E) (@@      @DDAA      A BQP#XN A        @G!? #@?       @A '"D(,   ?      @@B)&>@N 0      @@A	?~   ?      @@@?B "@'0 
 b     D          |  
/A /     @BB!@ DAA     ! B@_$)$B@("@     !(BHD"PDN(Q        @D!
H! B@("@           ? !<?       #D@  s
$        'B ߠE	$@/A I      @ C! @D"EPN(H@       @@@   @@(@     !B ?  @O        #D ABD"D) a      Bx	T#X  @      8G@|"E.HO       '@ ߠA"G.          OA	" @@      @@   G!N A      ?@  Ad01        @"/H"R)N!@     @ @OA_	" B@        AE ?         !B "D'B N!      @B@ă9U("  ?     !B A"D'@ NH        GA	I$J"E0AĎ	      @@A} 'A         $ D@$"EP       @@   @@.(        D
D)?@ ?      "HD!߀#D ( @?      A H_%B!N! J       @@@?  $*"$DHQԮ H@      @ @@ ?	!D 
 "     @ @G  @G        'H A?	$ODA     @ @O@_  ! B@("@      ! B<I~_"!_I!HB      xG !_  @O (        #D!ߠA"G@     A$P1 ?"H( !\  @      #H "8D"J   ?      #D_   @p         @@@ _ȁ"GO!       ~ $N9#<  ?      "HD!߄DD$D@         '@ߤI$"HG
 ,      @A AB @$@@
"      ! C!$3	 #@         @A/B$B   ?     BBDIDG%!A      G 4#DIDG%@C     @ B !?D"B!v' 
 b       @@I$%T@ A      B!   b J3  @      #D!ߤI  @G      @ @G!_A"@D(`      !B!߀#D @B      (@H?B		$IPi)%BA      @8J!PJA ?       #@ _ 	#B N 6      D "   ?      xO !"_@  D@	        xO !	  D@	        H@"#D$HH      #D!_   @@      !BB $I!F0Aɞ("@C       B@	 !$BH        @!$BO	"$IP!Nx 
        G!B?  $H.KH!        "'JOEAA       @I)%2@I}%RQO}AA      AAƅTH	     ?       @@AB_DH~ P@@(QA      @ @O@_ "@D*L       @$A?)"RDQN@!       G!ߠ @p          OA	s"G8AĎ	      @DA?	"KIȎ$A ~     @ @OU	  @O        @A ""_"#A G?          @O߄ "G. E       @@@P_ w)"RFiĮ"@      #D A~"t'   B      @@  $IH.JH     ! GA!	 H@H (       @ @@ ?B	 #@       BHBȀ"E)^/@@      @@?I$#@ʎ$        @@O$#Hʎ$P @      "DD! "HtD  A      @A $$"HG!N?@      xO !"_@ BNHDA      ! B qD"
!B('*D"E       @O߈D$$DC?        B"9΁?      @@"G! A      @xI'BH      @   " xA     @  | BA!DA      #D_ @$Q((H@%      @ @G 	   G.H        AA @DAL`  @     @ @Oߠ  pG  (        @@A	#D!N< 
        G!  $BPN$I        |DCu?A        #$"_I8"$DJx$  ?      'H?I%H@)(A?      #D!ߤI 'ANHD@       " $ 3   ?      !D"J
  ?       @q" _s#A AĎ	"@     |
D$D  ?     !@B@"
" G"       CA   ? ?       G	R%?Ȉ"ET (@@      @@@_ !CH E       B           GI%?{Ȕ)"RGIҞ%(JATS       DI'DI}%RQO}     ! B ""DGŎEA       @@""BA!Ҏ
 b       'ň$J   ?      'H@/	 $ H@!      D|J  ?      #D!ߠA "$GP*@d      "HD!߀|" D@B       'H @ANHD@        !GI_!4~P  ?     !$"I!'	$RJOP     @ @O$'@ A      @DA?	"HH         Oߔ)R'@?       'H?"HG?         G_  #DD"(D@       @Oߤk$#@
$      #D!_I	%z/T/@@      E A?)R #@I       A Q#4@Qٮ(       ! B!O
>"D Ў"E A      H!T	$F"  ?     ! B/Dϊ"DpQҮ)Hb@     "HD_ 'H^/A@      #D!ߠA '@$ ?      @IdO)
$P#  ?     "$GP?DK "DH        '@ߪUT"Xp  A      #D_ ""DEH @      ! BxĬI%$BHH  _     !OA>D'D NH         AI%?QH BN 6      @A@AB_ *"TGQҮ=HHd       G!ߠ  @@       'IH= ! D  H 
          DD       G(__~" G!N#I       !!	_ ~|!HBA	1A     ~|'I-$b@  ?       "H#/ȡ"(N!       G!  " GQ.$HJ      @@O@!V!! ~       @@D	 !B. E       @  " #D! A        _!CO
"*UPDTEɐ      xG?"HG      #D!$IP!DYȎ"       @'A"q @_  @      G	)   ?      'IH? 	  @D$      @@?	"O/D?A       @$A?A	t	$KQN]BA       G"?@$"D!D"     ?BC`0  ?     !B D'T$G @@      !B
OȀ #@ !N$A#       GQ)_  'A N!       FpB:HȀ>#DHNaE A      @DH  G H 
      @ @O@_ #DH       }A/	
U$         @DABJ_#	"G! A        @""_"#@Ů$@      UHIEQ    ?        "  'JN)@B       I"ADI$E0O	      @ @OI("KN > D      "HD!߀ "D
        @O߄ #p $      " (CI/"B  ?      @ A+Q	%K!Nr 
       'Hߠ p   A     !B D%@  A      ! B !$2 'AԮJH       8G?*#TJʎ$       @!BDBDb	p "HH	  @      @@@!_߄%H@.PI      @ @Oߠ ${T/@@       O	@"a"&B`%DD(        Oߔ) @@I        O	O  &hA`3D
@$A        @@@B	Ȁ"  G! J      "@ @DAM`  @?     !  1(b0  @      H@O@"E(H?     #D 	~%J B     @! G!_@ #pT*@        'H"D p #@  @      GB?āH?ǁ@       G_  #EI"(D@     |  HI*H    @     "BA  D$GN*U      A 		H!HD)ʮI@P @     ! B _!B  GQԮ)HR     #@	_"G8( @      @@?A#DN"        O"_ߠ%JH%DADD(        #D AB 'JP)HR      B"=H2"TO.$HU D      @G|I%?UH #DD"(D@     ! #H/%"(G@	  @      	$Oϒ""Z  ?     ! C/?B  OJH$ D       H
BɄ>"DA!B        DD {Ȕ)#DI%(JAVR       D /xP       @@@%Ȕ)#D I֮)A4G       @@Ȁ"DҞ(d       G$_H "ET^.@      !R?H"   @       !Z*RA '     !OA A#p  A      '@_I"'p' 
       @@U_I	U %TDQ
"      AD 2>$TD @      #D_$#q:        O?B	T%I@)B     #DB? 	R$O       'A@_   O
$       @ "G!$@      @$A?A	4I'I(W.DDi!     |	H_Q@  ?     "EPO $D@N$I         #B ?"G?       "HDB=IH%"J_Ԑ)^c(A"       O/BD	$ Kԗ/RA?I      @#ABB
   ?      @AB%?&&AA.8 0      @@@$I$"HDU@B       C) ~(2+0 @     " B<I }_
'A$IqH"D      HQ@C $Hd  @     !OA @O       @@@BȈ}""E)^/@@      @@@BȔE#E)^/@@     @ @AL`  @      $DO
" D@"        O$@" G*UA 
       @A@AB~ #@ .Ȉ     !A"?Ȉ#@ .       !B A~	$HOG~ $@G      @@$*	 #DN.A      "xBPR)  @Oʎ$        O""}q$O&$AP%       B
)j.3X   @       @@?!!L|	 D     "B 	$GRNI'? ?      @@$?O" DQڮM      'IH="HG?        O߄'@ H        $GPI( T'H $
J"      IH"( @G?
 "       @G!τ "G!  D      #B ?"HG      <'DA?I	"HDH$       8G?A	}!@ ._H}     ?RP! @$HH  ?     "B A {
'A(QN"E     @B4 ( "!H! @     !A ?R#D D! *       @x!G4XShI @      (@H"_tH%PN*U      @""
"$|h"  @     @'b""|!B   @       GA%? !C        OH_A	}#D! "     ! B 5BU	T"EP*J       #@A?"G. A     !B $DO "       #@"? #p   B      H  "DA!B      'B ߕ*	!PG?       !BB_~('A ._         JI$@I}%QO}AA      B ""U_r%TH?
 "       @@O #DN.A      !#Do^?)!$  @     "H AD
"_QNH     *'YJՈ  @       O?!A@         @!%H?$OTDq       @A$GR$ z@  ?     ?xB!2
 RE   @      '@ _I	 #DH?      'AG}kJ%D  ?      BO2?H|   @     
bp!('?@  ?      @_?@_E  G!         @_?@_E$O!ߎ	T'      @@$?O" G.%       @@?JH @@@.R" c      @DA?@? #@ .Ȉ      @#B N1	 a     B_b} gB(Q	 @ @      <OUr'@ II      OA>	A  GN*U     " #U%V5XRPa  @       !(
OIJT"R @     !OA?	@!G*U     ?Q)DBD/Q(      @O   @O *      @Oϐ? $G. i0      #@"? '@H*U       @G!?  EHI*U     "   T>UP ?      @@@$B_ߑ	%JH)$_"      @@$_~~"E U     '{)'OIE&$QOmAA     "G!? @G? "        SA%KH       @ ߔ$!PDNaQ     @ Oϐ?>B@	
1 @     "B y EPI'Hy}g      >@(

*"!        O,H"&IS$H     @D*Wt]UR J(UwyE D      @O*wD!OGbR      'H -bW_$ O*?     !_A=J^P#D@?D       'IH 	dO'JȗQ]H*     >UPUC T>UP ?     '@B5'$Dx.D&     $DQи9'/(u  G!             ?                  @                 ? 	@   @       @ A( B A        H@!B H@!B B        !    @          ?@ @@         ?@ " D         ?@ ?A H             ?            #          ?@"AD?        !D!"C         AE ?                  !Dx!D ?      '@ߤ "G. E          Cǀ?         $>       B π?"BDD<       Oc#p# *        A? Ȓ      ?  !B	        $@   D`     ?@B@@B$%DQ"%0      @ A &J)"D(! BD`?        ?D pp ?  @        ?D pp   @        ?D pp" D@"       ?D ppA* "B       "E   " 8`       $@   D`      @@A G@Q  p        ĄGDQ  p          ?D pp      " DAIDTG @  ?$08       AD pp      ?0  @|     !O#\q)JD D pp     " OrJK-)H?88     9"'}Ȉ:.G  ")D pp     AD %Kz)ZSǜ")D pp     @ @H(D @      @A>@%DQ@         CA(Q)D	  D"H       @ǑD$TDDBHA     ?@!B A	$(Hi)T       @pA&D0      ?   @ ?  Ѐ         D BR)* D@F       @@_ȤR          @	J"BB   &HO       @A(*B%hJET B`       @H# D%J"RP@! L`       BA  "R DA`"     ! D  ?B A $ 08      @A 	  B X<       р  !       A)R'B?hDadB"`     " DC#Bh"E  `         @   " `        @       D`     ?   @@ A0         @   " "B`          @   " `         " D 
  D`           @  
 " `        "D
  D`       D`  @@0       Db#@ "        " D  @  
  D0       DF`     @        (  	               " $H  @   A`       D` @$@BH @       @ A P(I@B B      ! B! B  D`      " `?     (         "H  
  D`       D`# A   P @       ( ?@@       Dd	 @$I$H       " 3             "D)(
  D`       Do" D@ B         +   
 " 0      " 7  "B "         ?$D"# D`      " 0=! B DE      " #7?D@@ A ~      " 1| E!tC* @      " 7  ?@          D? ? B@         " 3     A       @? 	 b3?  @       	 /@  ( p       D`" D@"         ( p      " $  @H"        " #3     @      @?  o X       $((B( p      A#A*	 D`      " #7 @? @1 48      " C1  0         " #3	 AA       "E"Q@  D`     @H!
D 	 D`       Dc @      $ H@B	|E  D`      @Fo?D@@ ?          ?( p      " 0|$y!'Ȅ J     @"ǀ @ D`      " 4E?@@E@      " 2A@a       " 4$x$I $Q
"      "	 ( p      AE       " C7 ?     ?">D$y$CȀ%        " 0A ?H!"B|        B)(@(`      @UACTK?$""( p      !Bp%	R%HRP( p     >!I BdD( ( p       g $O{       ΄c /?B 0      " 0QyBw	R     @HB""$ D`      "_"}| D`      ΐc@/ ?@B      Ξa  ?@@B
eQA     ?H Uj  D8     ! O r~WT( p      !ETN I!% "         @  a 4  0        G/D"D$P A        O	$ @!(        @?"BJ	/$"DA)"      xG	$ @!       #@DB H@PABD@       @@ĦY%$h(a?     ! B Є	D$ @@        @@H"BDIQ AAAE@A      pGDCH@PAB$DP       !@O	$ @!(        @$RII%%$DI)% @      @@Ȅ	BHdPH@A$RP(P       @  " ">D@B"
"     @A?@IA$!D(B      @ D$HBDDBD$`         GO	%  (a?         @   0        G	$ @      @!B"DR"@B
"      @@I$ D( @      OBQ	$ D(B       @@$ĉ$P@aD      xG	$ @!        @@Ą	'@@!A     !B Ođ	"D' B!B      'B OȄ	"$ B B       @A@ȄD$ B B     @ @@Ȅ	"D$@ A     ! B@OȄI$  "H         G/DI%  (a?     @ @@$I@%  !         @@	$  b      A 	|% @(`       @RII%%'D(!B       xG	$ @ A       @A@Ȅ$ B!         C	$  BH        @@ODIH&$HB 0        G	4$D!       B!C  @ A p8     @ A Ą	$'       H@!_爁"DI!!BAB      #A OĄ	$ B        @@   8        @@IH%R((aB      8G	% @      ! B@OЄ$ B      " D@$v% @(aC      #@ 	$$@!(         !A  @   0       @@	$ @!       #@ $H$ @(`      @ @@	>$D"HJ       G	 @)Da       #D /D	J%P"H!      "@B$B(R(`        O	~%"H? B      P@! $~DĠB	E!       #D/D@%D(`       @RII%%'DI)%_A     ! B 	>$@ !        OD!QI$'DA)_A        C/D?B$"!     ! B $$H( (        !"JJ!> A p8     @ @@ 	%@         @@	B% "(        @DĤ	%@@!A        OO	J%(PB!
        @@	$pP"Ha        @@	$pP"H`       !??A p8     @ @@O	%R"H       @$RI%%$D)%           ?  B p8       !$DHB" A p8     #@8$pP"(       B^II%%$DI(B      <G	$          O	H%<@!      #D/DH%@(aa       @D/ʄ	$ @!       !B/D!%"耡
       _!"D( A p8       @A@Ȅ% B!        @@	%$H!        @@	H$"ĢRH!        @@ĄA$ "H? B       @@D%$H"HE       #EPDU%TPHE        @@DI%$ A     !B O	"D$ B!> D      #D OЄ	B% B!       @@	%"H       DO҄	B% HaA       @DĤ	$        p?  HA p8     Aux> A p8      #D A%!      #EPDU%TPHڠ&     !B 	"D$ B      !Bp	D% @!_       A AI$$̊$@)"`      #DפI@%J(Ґ(aB       ?   p8       B@	D%Hq!QB	#IDR@       @@	 $ "H         @@I!$DB 1       @A $I^%J(Ґ(aB      xG$ "H        @A /I ~$H% D     @ @@	A$@ "      8G@%|"HϠ      @ AĄ	 $`(a      A p8  #&FC	aa       A	a #AA	a      @@	% PB	"      ! C	?H$ !       #@Ȅ$ @       #DA%!      #D@Q%D!      ?@B߄*DA p8      '@ ĠA%"      @ IO	H$ @(`      BARII%$Dy)B       @OȄ ' H
       @@@)%H!D!	
"A     @AABB	$'D!(O!      H@%A@
A p8       O /_J*UU*UQ*WJ!       @A@ODI $ "H        @G!&H% D      #B OȄ	"$ B B     @ @@$$@       "@D	$ @(`      GDI$_I%%%Rc)A       @A/Ԅ	$%|"!      @ C/@%DPB(aO        @A@ODI$ @      @A '"D(,A p8      (@HI$$PĠ)EaA      ( H "$PDQ(EQQA     !B O	"D$ BH       @G	 $ @       " $T$F`A p8       GA	S$J0@	!      A 	5% @)"`       8CD% B!"       "E	! B p8       @G/Ĥ '  H
       #D O߄	B%`      D
D* PIA%$D)Q@B      #D/ĤI$ @!      (@HD%Pʠ)aA      D "A p8     !B 	,R$`R(`       xG /D	 $@!(       @ARW 9 8     ! CĐ)J%耡
        G/@%p8)a        @OA%@(`D       @OI%@BH`       #D/D$ @!        @O!OĈ 	P!      @ @G/DA%@`      #@ D	II$       "HDD $@(`       A!O@%D	"        _I%J)*RS?II%JTDH      '@@ƄȒ$ "H       @x/I%@$  	
 b       B ҁJO H3(`       G@%Hʠ	!)a       @@	$@@Qa        @A@ODI>$@"H      !B@D% ġ      $ H@B	|F A p8     !NP$J$`a!      pG D%       !B ĠA%@(`       #DD  %@!      ! COI%$@`D      'A Đ!$  "H       @O%KԈPʠ	P!       @0Q 	$H@]a       @!/R $ @	 A     @ @O  %  H        A!O@%	"      !BO%DJ%J)IDRA       G!O  %@	"        C/I?$K$EIIS0@R      BAĎ	_REI#JH)R"B      B DI$_I%u&DI)%Q@B       Oy)zR*K$I!CuI
      |DCu?A  8       xG	*T'P!      !OOȄ	"D$ !A      G!	r%J9'BA
IҠ       G	
_I)R HI)        @OĤ%@BH`      !BD? %(a      #@ O߄	$ DЅBH`(        #D@Ģ	D%  @       {GID^
!  8        N(/WJ*UU*U*`JB      ?DG @?        @/ $H!'H"D@      @@@	? $ K AD	#")R(@      @ @GЄ	 $  "H       DāDRNI'!DU*EA@       'HP)A p8      @x/I%@$ BIDa        @@	"$B 	
 b      @@@I w)Rh	"`       @O'B!1@       @@IN%"< ¤a"     ! B qJ"(
Q")V!*B"EA       @GȄ%PB!
      ! B@	% @      ! COI%$@H`D      #D/ĤI$ BH`       CI%!HA'B!C	@      !DB/	$ HB!A     @"? @A p8      A A<	$%H!!BA<		$@H       @@@Ā	T         GD%LG A!#%)RP@@       @q/Is% @	"`      "HBĈ	D% Ba ?     ! CO	%HH!(        G	RR¥I"	DI @     @ @OA%@"(`(       |	G	 A  8       @@@I  @	L!        @G"(%@!        GDR}J%J)(@R     @ @OD	B%  H        @@	$I$ BIDa      @! G/DI% @!       PDI@Rx(Ja       GDR(R@`       @@Ġ%H!        CI? %J# AG	#I&J@       @OĄ	 %"ȠE        @A@ODI %THA       "HD/Ā	%| @       AAƅTH
 B p      #D/ĠA$ $Pad      xG /D	$%@!       #A OĄ@% B!      #D/Ģ	D% "H_"      "&FJ#"  8      P A@DU%TP A      @@$)       !OOȄ	J%0@(a#@       G }J%UJ )@R    }(TUS@B r pq@     !A@D%$!       @@@	?I$I"IDI@     @ @OĠ '!(        !BD $R(a D       GAJRH _C	6A       @/"Lc B p       @@	Ң)J$EH")DR     !OOʄ	 $"H? B       G	){Ҁ%K$%HQ BA!     !A@AOi %JU'I=IIR`      '@Ĥ	 %"ȠE      !BHI$$H!'HS/AR      @@/ $I AO"	@      @@@ 
L%#D	#I%@       C!
R%$0@$     !O'  "     !OOτ	>D$ BH!      '@ĪU%TX A     @ @GȄ	$ BH`(         G$I"IG?@       G/@% ȐȄ"	     !AA?	x%*K$IQ%IHAd       @OĈ	D% B!" |     !OOȄ	%$H"H      @ COA% A       DG/ $H? B      "HD/Ā	$@PHU      |Q  8       @x$I"IG      !B A?>
DH@ I@        G/Ġ '@        OR%zJ%)K)IRA       B /豈	% B B     !B 	%$H	"       @@@I? $I#DI       "$GP$IK %H       @!%Xʰba`      GDIWQ%E%D_)E'      <O	O	 $@O"GC%	6A       @@A%!A     p !K
$"
A p8      #D/ĠA$ Ȥ ?     H"E Ԅ	^%@     @ O	 %"ȠE        @OĤk%$      #D$I@ $"Ȑ? B     ! A@O%SʤI AO
$      #D/ĤI$  P(`       @@@)?@$TƨUa(C       G) $I#DI E@      !B/D%%(RaB     !AA?	%JJ&H I@A     !<BH$$%RH(a
"       C!O!B$ PIR      @@ $ !?      ! B/Iϒ%J$qIQ)IbRA     `CH#XI(       @A@AOi %*JU'IQ=IHAd      @D?ψ?$RPa       ȑU'ԈRJJG$IU1"      @x /I%%H!'@	#I$@       GDA$ $Pad       @/ $"Qa        @@ $I#AIԒ0@       I"ADID7DD	L     !BO	B$I	#D!	|@       G	Ҫ%Hȕ 򨉉!       BH	 $I"ID	      @G|I)UR$ K$EH")DR     !J!*}/P/)RQ%BLH     x|!T?I
!J)	       !BÖ́	> $ PH       C	?H$ʨR@`      !OOđ	%H"蠡E        @/I%" $`      @@$h 	+!        @@@	?$QK5 BQ)@     "XD/ĤI$   "       @OĠ%" A      #D@Ĩ_%| @(`     !AA	?%H"GB	      @ @O	I($B!> D      'HĠ% A      UHIEQA p8       @ 	$ E A       @@ H#@)$        G	B%HC$E)
S%)R@      @ $T@Ha (     #@D	%8(a      @@@O	Ҁ"H!'B!JA     ! A<IIz%*K$%JI-Ij@      O!*OꪕU+R$I_QB$JUDP      5È`$H       G/Ґ K!C
#B@     !D ĤU% Had      @@@I<@$I"!DA? 	BA      #E 	%DH`      'A@D %         GIH% J%UJS.@       #DDD%@(0     $ D@{H
*U*Uq*j/Ѐ       C!ϐ? %J'@		fC     x}3$(LA p8       C! $I"	G?@        GĢ%| Hʠ       GI҉%~ ʐI)V       G!OI%JA%M#'@       |"AEQ! B rF      @@@O	҈}J#%J)S/@R     GO߂!
~HA        OϤ	@$J'@*UI 
@     !OOτ	%@Ȅ       '@DI$" 򐈑!
        BH)"$DH AG	#I&J@      '@ %H"      !OOτ	%@ "     !B!U*W")NQ*B"E@       Ox%/I$N'!LA#80C     !B 	% 	"       @@@I$HHb       @@)O%̐B"(        @OĄ	k % Ȁ
       @! _"D      !B!OUY*W"N!*BJ"I@       @OD	 %ЊH       @@@$I
*HT+qV6+$@H      @D$AFA p8      '@D$Ȅ!       A I*IU"_ I%R       A	D$ @	T)       N@*W_U}*U2"GʈB&      OĄ	$ H      !GOȄ%$ A     #R9ȥ(RJJU/H2,Ԡ`       GI){҈J$EIS2iDR       CoI$$@IJa       @@ I"	GIDS(        BH$        CI?%H#DI? A      @|/)R'P	5R@T@       OHIA}$  "#     !A(I 	2K$IQ$IR      H! 1        G	ҀH#DI      'B ĕ	*$P!       @A@a7? 
)P/yB%")J@      #D %H"        @@!$I,}@		D      '@A$ H      A "A p8       GI $I"IG?@     #A Ȅ8$ HA      !J!*}(
W")_QB	@!     " D%OR*UI/J(*U       <GOI%I"IDI$@       @A@ODI  %ܒP∈!U      @@@O	 $I#D	R=       B $I%$ !" |     !D!"}ꌕ)
Q/HQB$UDQ     " D!%OR*UI/J**U       #EP$!       @A$GR$ x@        GI^%H#D!? A      HA	
%P0В	D!        @@	/IUS I"	E
I @       G!J%*𒂭(       GQ  K$	OIaQ@      @	O?BD       G!Ϡ% 	2 C      G!	$I%#D	C     !A*I!!OIqR%     !B U%ܐ@      <G/RR(BRC      @$K"!_	C1	a      @@@I)R I"O (@       @@@$O}w+UT(R!/B
HB       G	JR$$K*!G"      @O 
 PA/@? *C      @G!?'H%IQI*U      !A OJR$R "Qa      !@D/L%֊H	!       @@@)$K#DI?"@      ETq$OIDR %"@$       C)5$H'@I*U@       O!"/ꈕ*V([*nʈB     ?Q) BJ)A BqN      @_? 
/X/DA
G     >ECQ
("A p8     B_b} gB(Q	'      ?RVU~HD}$JH5D      'B	%@ȑ        q>D%R#     !B KTOT/U@RV@     @!B Ȅ	 %$"       @@@$O}w+UT(RA)DDB       G	 	$*%I%$W	#$@     " Iؒ%/nʔ)+vT)I 
!B     #DO	Ґ%~D 	T=       G	ҔI#DI?"@     "KĒ5_RTBETK7UD)>R*Tz     #ET *U(_FC     !B9JTW"=NI*
"D     !B 
AVR%U[P2 
T)     !@@k$ H'By+R'I     ?@ \  ;UP <     "G/A%H`2	      @OϪwD'I/DA?bR@     #DyDRJ%UKS/NR     !HB O)(Sk"M
BsT	!     #DyJRJS _C	6A     !E(y5RJK$!_C		fC     ""GA	D$I#D(nҔ;      G!){($HI"AO)$       G!]֥$P@	(     #@ yJR%JQ'II))[g     ! O r~WT      'IH d*OW*WQ*]JH*     #DIRRUJ&EKS/DS~      G!){ҔJ#'J")NR           ?             @ `  @             ?     ( @      0	 (   !        @	 "  8A! B!J      ?  A B D          ~ @D @ A          C  @    @       @ PA/A P@       @! R9#D(A 
(        @        @             @       A D!D0A@A      @ $@ ?             @ !$"A$P         @ ?H!"BD     ?   C ?           @" A8"D A?B       H! BE1DA" T?       p?  H   @       	x/@)R
H"!B*D$        &B	
ac    @      ""D@ ` @   @        @ BH D   @         @=>  {

       ! @_E!0DCA1      "E	""    @       B!>"1D@ABDT(       h@  ~DC'Aa     
$B#@ AJ H      A@P ?  3@D!""T(      ~G	 ?         @ I ~!r߈JA     ?@ ?  _|EA"     ! AF@ A A        C|    @        0       (T]*UT#@	D     ! C|    @       |"AEQ  GP@@     
bp!('?@  @      >EGB    @      @/k  @GJ*C       !_B?0HQHB*      RJ/>"|    @     !HE@   @     /x=JJ"SB(6!     ! O r~WT   @         0         0        @         0   @ $P         A 	   @ A          0@ @! "H         @      @@         G  ?@  @ 
         G @     @        @  @ A B   P @        $ @  @a 2  L8        0 H  
  D`       @  @?
$ @         C     " A0        @        !          @   D`        @@  $ "#       @@(@
  ?       A CA         @ ~    @@        0 $HH$"H9         @       ?        @    @L        O >@A  $@_         0       A         C  @         @ !BB!        @   " G          CD"R2@$"H         C  @@?        @      "?       @ @
 " 0       @   D`       B@"@$P`?      GB?B!  @        A 88        G  ?@@  ?        G    ?       O _ D        G@?@ A  @        G @'H!?        @($`цBH       A$P 
$ @        B  " DL        C   B        	@@ }AHcC        G  #        C          H ?         G  A   @        A?2@A          C* #0A       G @        BA p       A$ @?@@        Oq@3 i        GD * #0A        G   !"B!        B"  `3؀       B $I$HH       B	$88!        G "~D)PF        DG    D@) F ?       C  ! B        A@S$H  A	       @ * #0A       '           A"D P P%
A      @B/" JD ?       G    ~@	         @ ?D@        "A(
"%B!        G  ~(Q@ED!       @  ?@@      HC @_! B        ?@@?@ C      A  A0	          C!        A!I$  "BD?       @D
I*YDEB      @B)$("( p       BD	 %RB       ~S  _!?"8      "@ @LAL` `         B" B	
       B          @$$H   @        ?~@C _ .?"8      
 % a !      ?@@        @Î:T,UPUBJ]A	            B      A   F      IB  ?H'  @         !?$~(S  )?"8       "#  p       !Q@!A       !??"  <       @?@G0`        "OĀ(OĉB      BD | 	'H>BD       _Ą	>$H'HD?BB       D	R`11 c        Ȅ?@@      J}  $I   @       D " 0"	B        "H	 `3؈"       BH ?@@ ET@       !  $D%       A   F      D?# I!	C       '

()  "	B       $D!H@! H       D    ?@@P:       $y'IE       G@ |%!@B      GI?P @?@@       O
>DC⢉%jRC     !$ >@/P      ߂?R ?@@       뤒KI.I$       @     @!    P @       ?
HB	D" 
          ?   ! B  (       ?      ! ! B        ?@ A D   ! ! B          B"   A B   P @        @@ $H(P @A@A        ? ?@!"D (        O J!(RK(@       #@? $(Q @@<
       !? CA B  (        !!?B  (        !CA"IPPA A      @@R ((P BA$P      $"P$W @H     @H)BIK!$BD!
      B  (        #  T$JH      "	   (       ?     "| CA B         @@ ?A(Q  B >
      (T!AG $(P !@
     !/B  	'?0         "B!B  @         B     H        $"(E      `        
 " #0A	  D!$@ @            @@ " D!$0 A@           D!@@ " D!$0 A@       B@          $H!    
  D          @? @DAD@ @        $H A       ?      HOD$$ 	H    @A2&Dș `,       $H A !QR)"      @DA@   ?@``3I !	B       " $ `           AEh  !A       | A%'@$AC       "D#ADJOH") F  `      #D% A( R$QH±	Rd          @ " $P      @@ @B Ha @ B"H        @  @ " $P       A ЅA
"$(HP!B) Q       @HD$$H!BA(P            " DL       @ (dH# $0S      $DAO	$ K @(         G
| (@P_) Q      @!_Ą	$ O @(         @@AOE@J"D(Q!HB Q        ?  " H       G! E$(@WJQ       A O 
^)hRR" Q       <C?I)$SO	       @  @"(DPBB)""TC       @
*)PaJ)
Q       AO >D(QDBR$      E Q
 *UP) Q        CA)SO∉       9REPJ )RQJ Q      #E9EPJ )RQJ Q      D  @"   @         ? GA              @ A  @ A      ?@! ! D@!B1        @! 	0'H	 (?        @ A	#A ` 0        ?@ !^ ( `?     ?"  "J$HJ      ?"   '䐒BQ@       ?"   
/HBIF)     ?@     @      ?@  	$DH%      ?@1$B@A@       ?@!@ _"@D      ? O  J(JH? @     ? O  DI$DDIDE@@     ?"  ""/T!P @     ?@!		$H?I B'@     ? H@(DK       ?@ @'A/     ?@ '@B      ?@  $$OP"(f     ?@@?C$       ?" $" "D"      ?@B?%Y""B     ? HH(	 @     ?@  
 /TB)`      ? O  @I$@IA(@@     y		(Q$Ip C       ?@"D" ""BB     ?@ A?@        ~!	'x@(P      ?~BB o<O @(       ? ."**N
       ?@ B,U(e$Q      ?@B"~AA"      ?@"
$YPҡ%H       ? O! H! HO=      ? /"/%W@Q      ?@ H"|$ OI#      ?@( G"        ?$"*	$(ȄG!3     ?@D/I       ?@A$H%X A$I!      ?Ȅ! Ji/G(     ?@@)rDQ"     ?@ RET)$pDD      ?@"BTR- k?J     ?@!$-iP"_!     ?@_D-tl($WH]     ?@I+LD?!b     ?@ /D
""FPTUdC     ?$"BR/M%GX@     ?@B?A"_|})EQ     Ca  @         !B!   @?         B!   @  `      Ca!0C        BB$!? @       
 " #0A!B!B!       B!B @A@      "B?                  BB    AX      	B*T/HjtA      ?B
*B
.@      
"
.@      ?J*
.      AF5Qdj#rA      H"*H".I$A       B
+B
.@       A@&5IMRjt       ?
*~
*        $!!	 `        HBB  p     B(B   @ O    !B!  A$A      BB5!OCr     <ꨪJ. @HA     <B
B.(@     '  `?`C2        DJ*2J.D@     !@CV%-Rkq	@    !!	 @ /  !	HB       DB*. @      B!  D@F      DJ+J.D@!      D*J.D@E        *H".I$A      @	B
*
J.(@1      B! P1          @
(*jꀮ       @
DJ.D@A     @@@ALB`P`@ B!       B!C    h" D        J*"J. ?    	1F@`,       J*J.H BB         0B!       B! (P% D@D	P     HDT@      !!	 '         "   D@  @     ! 
*>
.?Ȁ        @J*J.(Ƞ@       @ꐪB
*@       d0ALd?  @      B!   ? ? B@       !G5IMRjt@      @@@5 THQ"%L       &**. @HA      B!C@ @   @@A D  ?     HB ?!Q7        Dʑ*Dʑ.D@      "B?     (      ?"A?D UP     A@&5IM_t$A     ȒD5IM_p        @
(*j*.DȠ       @**D"
.A      B
*RF.@        A AJjIR&Mޜ @B     B~ !B!        
*(.I$A       p? @  @ B!      @
*J.D@?     @
** ?     A G5APjtA       
*
.$
P0      B!   A    @     ?BB_tA      B! P?   `         >"*".
P4      J**
.@      @ "!
(      @~
** ?    !B  '       C     !HnCY      B*(:.       BD@    B!B!        D
+B.       @D
jD.D@A     @
D
 ꠮ ?      B! P        A J*TPTL! ~       B! 88    @(0C    !D5IRjw@       *B
@        @@*T!S      !!	 G"	(H      ꪪʨ
 "     @	B" @      B! P0    @?       HjZn!@     @*n*Ƞ@       *.p      B!   ?   @@      @@@5UQ%ƌ 
 "     **ʄG         *
*        @B
.DȐ @       B!  @ 1          " B	$B p      B! P1'H       3Dș `,      "  _A$$?       "  D" @     @B* 
.D       @B*TB.(@       @Z=jJ+UV-\  @    ! ਢ*.H$A      <B*D
Z.D@!    ! "ꄪ*H         "E	""  !B!      	JJ.(@      rJ"*J*.HTPP      	  d
@8@!J1      	BJ
*Dʑ.D@ D       OIURTJS&MA       P"Bꤪ*H	 $     AHRBU5APjwB       G!J*"URL! ~       	@? @      D
+
.       EPH@OQ ( B$I J?      HB !	OGT       B! ?$!"B
"       *
*(Ƞ"A      @@@U* Q"E@HA?!              B!   A   @       (@H
D*UURԌ AA       1`  J !       *J*@       @@!* j"TCQ%Ҍ 
 b     @$B
+
 ?     @	B
JZ.(Ƞ@       #H "8D"J B!        *
 ?    !!	D$$A      B!?>H A 
"       AJ"AW,@       @@?I*RTQ¥Eʌ      @
(*j *T      BjIn$!A      @@@5BUS       B!    !A        @ ! !      @vTR*j * ?      A!J*"TΩUVL " D      B! D" DC@        H*"ʄO!     @	B*V.TH      @?(*ҩJ.P @       GRjR
@         * 
2@    !!	 ? @# oAh<?      B!   PE   @        GDj}U-ܨ@@     @ _BB       "*. _       B!   '     A1d$$      @
D
ڀ*ʨ
       B!(`?I!H	*       @@
"TCQ%Ҍ 
 b       G	B*IUEԜ A?      @x
**TTQR        @
 * "      @@@ 
 T PE  (        B! P $?     @*
.TH1        C! 5UjsUV @@     <$HJꄪ*H         	  1 ><     !@ЀJU* S
,% D     ?Jꤪ/         @A U$IW%L@      B!$~1HtQ
!     @*
.@ O       "  $H>|$O"DaB      J
@       HB ' $$O$E"1      B!@!!8F`      B! @H" tO!B    !|ș      @
D
*B.H@    !$$$Jj nD	?     ?	/BKP"     @?* 
.@       @A@AJu *U*UWUҬ@Hd      B!/DH$(EQQA      ~
*o%$	
D      B! @<
     !B
	j ?       *
꠮         @@@ 

*%S,@%        B!? yh%bJU ?     !B A#"*	U%LA        *.x	 T?      B! D" D@	       GAJjPL  6      *
 
         B! ?~ 0@sQ	"     !BDJ*D. ?      B!#H'      @? 
Jꄪ"*.@F`     !A
?TP 
 "      B!/@HD)PA     HA $H"B!      H8 $I5A@!B$      <O	J T@RL 6      @@@ 
 T T  (        8G?*TUZʌ       "H
ꡪnĄ!      B!D"D A" A      @IdO)
$P#B!      !BHU$T!W\A@      	 Dq	DAD pp      B! h" _@|%S       
*Fn     ? |~"1$!? @     ? ?
P      	 " 
       AI5QjRL  6     @8R*j
꠮        B! /DDUC(EQ1́      AJ!WL$      B! $(`z      B! B( @@A	      B!(`>D!CA      	    ~@	         BH
*IUA_%L  f       1`  J )2R      ?$	,@D	$A      <$HJJ*n      	" C1   BD"D     @
$JЪ~
.~ʈ
 O"     @?Ȉꊪʈ O"      UHIEQ !B!      !By*UAU%WL@@      @"$
 *      @G|I5UjT TF D@      @A *U?@TS\@       	   $I       @? * n!@      @!UBTSW:LJ@!      B!  ?BJL"?      @@@J"!W̈! J     @**@     "B	ʈ+
@A     ! ꊫ.lʨ
 (      @@@U!*TH	T
L! ~      @?*
8P	 D@      B!  ?@       @DAJU#+	W%̠A     D! 	 #ȉ
        G	B*UCT-\ @      !$BH!*U)jTuҌ V       B!"DETD`I$?     / $@>	/@!%       Ox%*UTĮ'QE, 0     @?ȈꊪnpRB      @@@ 
*U     !TB
UNk U#PB,@$K       	A	R?~@2c8̀b        ~G~G	B    #Z
 
@        @$J*J/     @(
*       " D}
*Ҫ_J,@HB    D!?I)?A      ACA(D!       A RUJPL! ~        GUHU UV\@       B!D*($BDB    D!@?䐖Bo$$BI ?      B!
> +Ć$     ?*
TP@@      @A@ $I@      I)j* ?      B! B \!DB)*      	  "_Īgr

W'    /T0̬OH5#      A!5$j Ve٬@@      !A5UjP,       x$TJ*H	 ?      B!.B(|@ RA      ADTR"E T)      @A@a7:*U_z,)@       ETq$JUDj UCX,@E      B!	$2cBE?	       BH$ԂSꬉ       	

()  "	B      @?J}ʑ.|@@$0    / |@?(Q"X@       OHUA+}TT%̠"     AGDUDR>E!!	      @*cTS% *      0	j8꠮ʨ       	 	D""UA|"DA       @@
!*T\~  D    !@ $0      	 ?>A        _QJ}$BURLA"I	!    ! !	ꀪ
 O"      *B+       
bp!('?@B!      **.ʠ
)3      	"AE  Lp      PDQ*U!S$     !A
**Q"Č@q@%    D! D>!"     @
D
ڀ* @*     A B"GĀ" |P!%|A     ! C)$ZVUUJ@T2    !
꠪n@       B >|=H     ! `a,b1̘x      !IBT	R b"        GQ *$WϨQ"uČ $ H      	 "	T" JyB5
QA    / H$EA
/S      ETq$JUDj U#PBÌ$       G !W@w      _	 _BQ	 B      	A?J $OA     !@D*LU֪UJ !       B!
C(
~  ܢIrA      >O	J+T PLJ}       C55T֨W@*U       	@
?pJ!C$OѐA       G!_U~U2AB     !0 $$R$H     A!$ >@/P     !A y 0jT}ҌJ g     ! ""T|Q%_	!A      ETq$JUDjQ        A)J[U5Wְ5l}@U      )NU__QD     !D *DUT", R     #DyJjƪSPL  6      	Ȁ? }x     A D??"J/'GQ      	a?IU%'"օ
D       Oz}jtYΪ%﬩  f      G!5{(THRB$     / 'ϑ"| 젒+     %(O|!=jQW@B     ! O r~WTB!     / y"+ϩ"DA     ! ""||"'	!A     !A JJUT%       xI#. J/)&EQ     #Dy 
@*U'Uf\Vy     !C؄)Zy*OIWҨL~	Q     !Oz}jtYΪ%﬩  f      	@ ~!~E򊨕QI      "$D$E"""DDD      !A"  A     BD!BD!BD!  `     BD!R)TBD!  `          " D@"PD       " """  ?        !$"HD@$	$$"HD     " B!T$F`     ""D@ !?* #0A    B!GD )%)JIJx             @          @   ! B     A  <   @        H        D@2T:#J!           @  @       "
JEE      }" D@<A  ? D       @O!CE! ( 0                      A PBA
xI       !!W
!PBA%PI      @ @       @H      HH      !!	HBB          |    (Q! R      E$P??@B

(O     @" DPS      B)"*O 	d!       *#1A ?         |#P>            " $ /L      "! @
 O ȢY#     |(Gρ ?      Ca!0XD           !B!	B   @      !	HBB@          ?HBB"  @        B$%! @       @ @Q	"D A" @      @"H"$"H"% @
    @$ ?&I2ILd$%!      ">"*."$A        O!  !B" @      _$BO$JI)$"P       >D*J.D"BE
      ?J*
."      @8T"@       3@?@?"DH   @       'DIDU(      @>F**.(! "I     @>B
Bn T"    ! "D"
+B.D!@       &B	
a !B" @      ! 	 !B" @      @>B
*J."H      >&**." BHA     A!5APjt A     @>~
**""?     B	> 
*>J*." BA       BB ?B!B" @      @$>
*
.(!B        ?   ?D@$ @      ' K        ?
**.H!"@J          ?D@$ @       >꠪
꠮""?      $Q(D  B!(@ @    y 'K      ""> J*D.D"BA
     @
>D
 ꠮""?      $  ?!	D@$ @       @ȑBD  B! @     B>'0IObإ|"!      	 AI   ?D@$ @      @B꠪J* B    "">*.H!$A      AHSU5APjw B       >
*""JJ0     "B/鸞K(S      ? C  !	B          "#A DD"$ @      !~H!D AB! @     	 AI   ?D@$ @      O ~
O %FA	?"H%       @@
+HSEԂE     ">J*DJ.D!B      >|ʐ+*.""0H     "Rj˨. PH      @@@U *w)SVmĢ"H     P(E( ?A?D@$ @      B>"H".H! @      " $ 3 !B" @       @
+ A_%B	f    !B?Dʑ*DJ.  B       @@
+ T%B$D       GDj}#Tf $@H        ~ڠj *B!"B     @?~R* *Ю~!"B     ! B'J*U>T"Ђ"EA     @B꠪
꠮  B       > *
꠮#     Ѐ @戱$ @      ?B

$@       G*@*U W_Ą
       >|J* *"H"?       
*Fn#      G	) %D        G*@*U$T%D
"      HB')*^TPBÂ
$      >
*#B      x|!T?I
!J)
%D        
*R
( "I     <~*
*"?ȁ       G
 TP A      @@@?TQ5PU٢$       I"OB%L"$I$I%L     5 BU1$_PTuA     @?j.%DR<      @AJ5TĮ'QE"80       C'ʐ?* UW	f     @ DAb*H       
> 
!P"TH        GoкBjUU֨=R9D     @>B*
꠮"    !BD꠪
. B       GQ_@A?"@     @>(
*'       
+꠮ @"DH0       GOҚ *TRJ?      PDW*U!SA     !A(O2+TUޢ$IH      A ڪU*ԪURD%H       xO'ʊ**VT%$I     @>(
*#     AQ䤻SYI"$B	D"     BIGRJ.B	D"      !$AP*>TPB?(       @A$GR$ z@%D     !B>|ꪪ
8!P"DH     ! C'd T/Đ?B     @>DJ*#B       G'5? UAQFU5DH    ?QA%?P@!       G !W Dwȩ     !O'
RU)W"*RI
c      @@@*UHUZТ*De     !BԪ5 *)TM)Dj     @D~Bʄ*Bꪮ "QJ=     #DҚDjUVR/NH     ?     ?       @        $ @       @         @!     @     ||  @@?  @A           ! A      @C  @@@         ?    @        @AGD @G     @ $ @ '        "A@@P     @AEBDBQ!"     $(WIMU~X      BA_
B B$P                             @"`G  (@P             @@ P @         @ B""         ! B AD@          @/A           $@Q D@I           B""        B		'0H@!R(a       D	0A    @       "$DH(P         @!E@$  @        @/H 
,!         ( _	b (          	  'H@!	$       D-B AB         ?( /@ P @       	$O! @	 "            @?B$(b          A AD'       @(_   @          !B$HDA'        	 $@O!A(Q        
$HH!!BA(P        ?@ O! D@!         "'H?DH@         D(QDD#        "D?A!D#        "	D%J A(Q(W         A	,i!"D@!
       	 F`9` 0        !@ "@DA#)dϐ        I!E!"B	
bC        " @/A  @@        "MA!Q           @'A/       	$J! F`I""DQ         ?@ A!" T         "D	4pIP)"b(B       "#@  "8!       I	$T1A /       ( _ P @       D	 A I	$         A%|L!DA%A       D/Q   @        Ȓ("dDI$Db0        ^	.D AW@"         $)$T8I        BE$DO?DHB       B"	!B B!        $R0!       $"HJ
$         $O@      AB  O! D!        H$_A?IP ?        "D" D@ $I        D/Q DI	$      " _!Ĉ""L       !Ȅ  O!?B"       H$ A *&!@       "#@ A A	E$QA       @)RHY"I
"A        	D'A D$I~E        (
"D.Q!D#       D 'H?DHB       HX#XBN        E)(_H}$I %D         O"&|NW$LH"       $;B@D	D        )
R) RB""F        $_I$       !(_!
%Ȉ      ;BD)&HA "$Ȉ        	'HA|O       BH!$?3I       ((_HI@       
eĈ"'@BF       DO 'H  $$        !HL%I|ԉI#H        
?B(QT$   B        a/@QI@1      {")~^ QDicRC      AA (_	         C?H(Q$DH      E* $_HD"       D/I N        (>*R hD      {Di&qb p        B*s( _	$I          H)$_Q$D        Ĉ"'B  B       #D@/Q(QD$PHp      
" _|       ?@D$PO'Ę_%" |      Hc$
H)(^PIE	"       "
/"_ Au'A       D^/QH%HHD      "D	S(*WTU"E*%@       @T/JA 	I"I       $;vB1C&RAB       D@/QDDD!      
"(_
KdH      1 T)_?A!        x $H|!dEK!"       ?$I	U  O/QH      yDD@/U|!TDQ""       %O!	T'       %O? 	b      wr%UJU*TPQUT
D      $DI'J?U	      AO&DNS$HO"      }%((_|QEb 8        r%"*_8!|D%R        _*UTPNQR      UCREW/@PU"/      }QDU) _Iw$       C/URKR_N       @     H ` @`?       %H$A$$	$HĐ         {A$O<	 A$         {A< A           COB$I<	$I$          C OB A<		$E       @ BA	< !      ()DR
        "@)DRN"       (*P)DRJ
("        @ A  @@        @@  @@     @ A ? @          ! A      ?@ A D    CA       @@ @!@A        ?  CA      @@@ALB`P`@@          @         1` @        "E"Q@  @       $ H@B	|D @        @D$CF@         @ /       @      H     @   @      H    ~@  >P      H  ? @  ~      H   @ A/H      H|   ~@  >P      $@!!bBINqTA     DP(@I@_a BEqD       @   
 @    B B@D@AE @      !@!!     ?               D!IH"!
I     C C  @( H      " ?  !B     @B!!	@B" @      !@ I &Y!A$h$I! T?     @B@@B(    ) J	(? ( 
G        >	H$ C (	$E     @B!!	@B" @     $ H(@#A@@$H(`    $ @(B'@	G       C !@(@"1      " H@aB A(P$ H@!J      <'H"D A $@H@)Ti       " O/@ A(H(Q!(       A@ _" C@! D@AA       	x/@TR!HB* V@A$      "B!yT  y$BA	G@    ( L(    @
      @(`` ! A_      ) ( /
AO      (
((*
!O       $ HG!B y$x_@      A o    
       "E  ?          GBR}0ABHB     A@$H`@(@     $ ~x P{(B
HR       $RGII  {! B 
        A@/@    A @_(       #Dy$P$@H@J0H@       A@/@ ?A A E@ADT(       !" H P!B"D/A AU     )HRJP){)HR*J)     !@OO$ A$ A      		y@ ""
" $"?c     /D}!TB(Q|4      /D}!B((Q|4       I% _)^ A@/C$     CH  OO$ A$ A       D ?1   p     A#@>~ DD     'IG yP$O@      @HQ@" ? |} B E 
"     H'I'*!xP'A        )R'HO!wzT*Wp
       	 ?@ OJ!*C+0@ E    AQ$SX%    @
       ! _O?!UCD/QUT     )H^?I y$ _
       'D@ A$$OA      'I'$ yH'I       (*P_ !z"H`     $QDPݡUCvD-UPaDT       A@_A_ޑ!HW!_)"$     !D?wU   A   8     /xRE@'@                   @      ?     %  @2d   0     !""@             BF@+ #1A      ?   @ ?!# I       @@ q@3 i      @C    !        @@ !C)b~,RQ      @@  ?D@D0     ?    g" "C      ?   I!8(J`A      @@ *BzpQQ$      @ *<qQT     ?   D	8JHA      EP"O?H #D     ~DPG2;Hn _䈉 
    @``        $H ""@	$DH	" B        '"DH	"(  @B`?      ?B!HR$HA!BD	$        !Bb.8'       @ !Bb.8'       P  
"DP >P        G	HR"kH)
RII-p      	DDIH  XHH!0      BE! ^HHD*$d?      ?I!tJ'H!D*UD	$R X      !BOL U"JB$P      @@@ A!  B> 0      AADR@"" DA0     (	"R/@? D 	P$       	AA@ A!_0     	"!  E@$      { RF	HA J)$KqL     DDFT!B     @!?I$ M!PF@D@     @!JX),RJI%DH       /"$O0E!B
"     @@@ ~P!B!B 
      @DI"X! D@A        DAA Q	" B@       OQ @@       H/Љ$H:[$*H"D	HB      @@!DR%I ""     xODR!$ H@ QDɉ	     @BI	S @@
      BAAHR'BH"
     @? W A         OHQ="@D$       D!D?BQ	#D A!       @D	DP!#@       @AAP'A       @AP/@@"      BAJR%(Jp! B@	     "J0>LR&O"D@      H!DARE$H!Q      	B! P! @O       ?ȁJ+)LRJQ/DO D      @OD	 PA'A        B!"P! GAIf      @G P! @G       D$A?  S @@       @D	$ P!"HDAA0     @  0 @ABDEP@      @	$P'A        @GP!"@D*L      B!Q!"xD*L      ODP	  @ 
?     @ ?IR0AA
$      @@O?  S @D!""D(       H!Ġ P/@@      BA<$P! B@	$H      @D	$ P!"@D*      @ 	U2rDO
$      @OAS$I A<
      HBDĀR%J(Q/@D     @_R	'H  A      B!DADEP!"@D*L       _DQQDYQIE%AJ     @A?I$UU!E@$       ( zH""KKI(]G
     @ 	?		$@$	?      " B?" D! A      ]BQ}* W!?       D$ AP'@$
?      /x$)HB 2 HH=BA	A     @@O!Ā S&UHU"FT     @"?K(!? WA@A      	  G Q! CA)f     </!		2K/E       OD S _D      @@ODĀ"P!'B !J	     xO $A%P!'@!B$     *"*}7O(Q%BL     <I	D" Q'AD      @	$ W @D$       /?JB0 @ $P@      /?B	2TI@)B      @_JS @P!>      5 BU	7Ң$DP"A     *"*}0
B(QB	!     ""Y2TNQ*BTa     @ 	)3 _"R$JB|     @DA $S$O?      " BK3ʤO(Q<BH%      @G!Q,|@ 	D     @!@bo U2r@ B?A     ( BD2
_Q<BH     5 B}	4R$DP"UA     5 B|CD0
@(Q B     	 Oy 0DS$Ox=Jg     @/*wD3OAbR     ODI"W! AUCDTd     )H%){0D@Q?D          @ 	$L A ~      AUAA       @	 	
BI0H@          OA
(@" D  "@D      @AQTDBD!D"     ?          @0       @!RT!BDAHB        O
(  @@(         OA)$ H  "@D      ?   A   "@0      ?H B@0 "@0         @     D$)a       O 
+@ A            @    ""D$)a       	  ! A    "@0       H  @B)"AC      #@
)  @@     ! D 
~( B  "@D      @ A D
H @!@B!
       @@(! B@          $?             ""D$)a         @@ (@! B ?        @@ʦY)ґ$"hD" D?       #D@
d(P" D@"BD          " TP!B |      ? ( H# E!	$@        A D p ""D$)a      @ @@񈊑"(D A@A       B!  ""D$)a        @@T"$DO      A    "D0       'BA'(BD"DA!E     ! B 
( @@            RB)c     @ BQ
AȈ" D@B
     !B ((P!@D"DD         O@
 H "@D""DE      @    ""D$)a       "@DȅQ
IJ"! D@A       @ A ($ B"
      '@ ȅJ
!D A P@     @ @@(0P A!      @ A 
+$D@F      xO
) $ H@ QD     ! OąI
"TD'@       @ A J( !@B"DE      @ A (P!@D@(I       @@
I($#@"D      @ BQ
Q  '@         
 " #0A @  D$)a         G@
   A AB@        D A*TR%$L(Q "        'B A"+"D A!         O
( @@      ! B J* @!@B!
      8G
" D@B
      A 
|(" D@"BD        B$""(  D$)a       " G@
? H  @ A D     @@@ALB`P`@ ""D$)a         _
(hH$Q        (  ""D$)a       @ AEJDA D$)a       'A D
 !@B"DE       'H A) $I@A0@       "D 
@+@"@D(`     @ BQ
A" E@B ?       'H 
)$O @      H$I AԒ)$H$I @      ! G!JE(#DA" D?       OD!TT GDADA      'H!J)$@H!"QD      '@
4(D(A        ! B T
(H>@ A         ?@    D$)a      @ A )$H/A 
"
     BPTI$DDI@      @D!P  @_        $H
,ņ   D$)a      ! B }5Jh*TI(!B)D@        O
H(<"@D$       @TTADDADA     @ A 
H($*HD!B%     @ A D
H $H! B@	        ""D$)a        @@("D!B       #D AB(#D A!         G!J("G!        @ BQ
I	 @@
     ?B!! "@0        @@T"'H""DD      xO
) $ H@ QDɉ	        ? D$)a        @A H  #D!B        @Dʤ( @A@A	     	     `3D$)a       _!"D(  ""D$)a       @   J"d      'A T(  A         @Dʤ( #@       !"J*!B }  D$)a       #D!J@(D"E"HD       /H 
()F _      ! B@J)H'BH"
        O*T)R%$J8 "@D       @A$)J%DSAQ      " "~h$$K!D	HB     @ A ʈ(  B A	     @ @@
"( @A ABA        B"  D$)a       '@
ԈR$J( "@D      'H!J(H! B@"BE      ( H@)$$PH1"EDA       P@(8!PDB       @@*Ĕ)%I ""     "D! D$)a        8 H   D$)a      @ <)"BDJ"d     @ @@@B*HX!PD!"BD(      @     D$)a         @

"(  D$)a      @ A 
+"E@ADCD         G!JA("@        /H 
l+'@'A       @ CA
(Ȗ> BA0     8A  ""D$)a      BP>T$O"D@     @ A D
/@@"       @@
(  #D!B      @ AϥD
 #J`"D       /B 
B(($J        'H )| $@H @      @ B@AʄH($@@      "D*T? "DB       @@*T"P$_|I$I%J      "E	""   ""D$)a      ! B@J$(̒)$B@""D     @ IEU
H! B@""D       '@  @O       !B!4Q@ D$)a      }" D@x  "D0      @ C!@(D"EPA"HD       '@ ʠA("G!         /B@ąI
IJ%(Jp! B@	     @ @@
A)!A@
"	       $DF
>"E  D$)a        "B(!$? ""D$)a        @O  B  B 
     ! B@ȅ_bDH8"EP"D        @  ""D$)a          @ J"d      @?ā[)TJQ/DO D      ( H@K " D@D      A#A* ""D$)a      @ _)  APA
"
      " D `*@UDQJ%TLhQ? D     @ A 
D(|* D@?@     # AJ+! D@$B     @ A 
$(R"J@AB!     @A '"D(, ""D$)a      @ B Ҕ)J%(JP)BR       H ADQ%B\""@D       @AX/TJQ)DH!D      H	"T  "D0       'H A)D$H!Q      ?B!BQ	? "D0      ! CA
(P$WA!~       @I5@i}RQI}$AI      xG
( #D!B      @" DD$I      @ B( @ O           D$)a      @ B(  'H A A	     ! D AJTB)! B@""D      !B "(D/B A!
     ?@  Ad00 "D0        ? ""D$)a       !?   D$)a       AE ?  "@0      @A*T	$D0A J"d      @ Ak	"HDE$H%      'HAJ $I@HA	      "HD!ʀ(#D " D?       DI5VZUiUTRUHA"AJ     @ @@
$)*$$HIP B@      'H%D
 HP #@     ! _
+ " D        ?B!@0 D$)a       '@ ƅB
Ԉ$DH""DD      GBP?ԁO DH!D      $HH
T@ O        DI4FDi1RdI$D      D
D*!WTADDDDB     ! B AJTB(#B@	"D       1` %  D$)a      @ B(  I@ADCP@      (@HT("EPA$KE	!      ~ D@I H!	 D$)a       D " ""D$)a      @ @_A
(̖#D A!~     !B@J) 'AD      #DJ (  @@      "@D
)   G!B        @@
I($%T@A	     D P@BE$$
$(PD	     H OD
I"$I$BH	      #D A)"D$O "@D       'H A)$ODE      " G_!RH"I A?     "B +Р"@O"%DI        @OB
Ԁ  @(      ! GEA
I"D'B"$D      ?H D(? "D0      @ @OB( '@ (        @O
I( @AABDD     @ B !T"(B!F 
b      #D!J (  @@        O"#ՈS@@       !B A)D _
"
      'A ʐ!)   G!B      @ $JT	, F  D$)a      !B/C$ D$)a       OA)$IA!Q       ?D@  ! J"d       B<
"H @	          ?@J"d     "D@)!@B"DE      GpDETU}TENQUEADDB     	  G%D*R	"D"B J"d     B$DD!ER$DIHQ0@D     "BD "@0           D	       ?@ 	     %J!(c  @G        G!C? ( S@@
"      !|J*TIR$DIHQ0@D     @ @O
 (  @D!""D(      ! B@
$)ΐ! B@	$H     @" D || D$)a        ?@	$O	      OQ
"J"  _       !B H
 K@"HD(`    D~?1AMEr+  @     @ @O!J)$'H%A      8G?*(V#@@?P@       !   J"d     @ @O@J?BH" D B        @O
"(( @@     @ A)$A       @ _$! _A9f     @ @@*B) #@       'A D)F A !%"DP@      @@ S$IH%"JD      Q"DD	 ""D$)a      BBPH9āH?ā      'H!) $@HA#DD      !B/
$(PBJ"d        QX W       'HT%J(Q/@D     @ @Oʠ(  @@(       'I A)@/C$      @ 	   D$)a      @ @O
A( @D!""D(      @ @OJw)R&Rh"D        CTTB	     @ B|( @'A A*         DH      !B A{"(DQJQL"D      $@@
)R$OPAD!      P D 	*	      !B/C$D  D$)a       "HBD
Ȅ+d A"D@     @$IA
("@$I 
"      #DJ (@$Q("HD%        $DH 	      @@ Q @@	"R$JB|      'HQ*Ԑ%J/@D       OxR)T  Ox"R	*#     ! CJI)""A !*QE      'H
T©"DB      !B 񈊑 "DB       "HBA
Ԁ%J(Q/@D      A A!B5RJ )BR(QA     ! B 
(#D@?@      !?	      B    "D0        ""@$)a  	*J4G      %CI	"" D$)a      'B 
)8'B@
BĠ      
 Cׄ!@@0c8D$)a      @ @O
 %J!(B?B      'H A)$H  "
      A !DQ$,F "00      G I$HH   D$)a        ?@G	      @b 88?D@	       O!_Մ)IRTH@A"BHD      ! Bq~!B)GB(QxQD$I     !A@J($#@?     "HDJ( "D!B!	     @ O "G! E     "HI !* )%IH%"QD      'H("HG?      "#@>DH D$)a       @H* +  O%"JD)     % J@
)  _I        G!ʠ(  @@        ()  	      #H*TD'@@(          D$)a       #DJ($@@       O	"}5iRHI ($HI     @ @O*Ԁ) &UHU"FT      'H
Ԅ)E  O!?@	      !IH*T"IA6      #D!ʠA( '@$
?      C!J%iP#GQ(D$I      @ E/$%((	       C'Ax"D( 	     @ @O@J? H#DB        'I A) /I !"R	     !B (Q$HG       By A+"(D  D$)a      @ G!( @O"       1 g$"H|!0	     @!@D@Aj)*T'IP=BH	d      '@ J( $DH""DD     </IE@
 H@" GA%6	     ! CA
A("H@A       A$O
"S( D$)a       " G_ H! CA)f       "   J"d      /A Ҕ)z%(KД)BR	      'B T$DA "DE	      O V	O$DI*D@       G!ʠ( W" GQI"$DJ      @
"+ #D! A       JI)7
?   "     " _
|(/H 0@       @IdO)
$P! D$)a      @ @O
B)H`#0X!~      @E?@@	     "   !H_А 	      | D D e%
# ?$08       O!_Մ)*RTtH@A"BHD	       'H Jߔ)~ 'I A#I	      '@T)B$L@A      ( HDL(U	      #D AB( 'JP)BR      ! CJK)""A !*QE       'I!Ȕ)  @P!>       'JPԥiJ H ! CA!
      #@A ("HD!B
"	     !B (Q$HD
"       @G%_ "D!B
"	      @A "#DURBA A"'ĈJ      !!@oR >   D$)a       #@("G!A	      GBP?ԁH?āBA     @ _@'A BIQ@     " (CI/"B D$)a      @ G>(~( G!       xO !J) '@!B$     ! G_$H" OA	f      #DJ( @O	"D        GR
$OI& WE
A      #D A #D !J     >|D#H   "@0        @A@ERJAH#D (BP?B      'A)B$E(Q%"D     @#AR#DB?A     @$I E H $H        AQ"K	"* D$)a       @@@IU!(PHDB!~     !OA
A(#D?       DAy""IH 	     'H@
?AJ+T@A	     ( HOʤ("H@ 	      " G_ HD#_QD!A     ?A  B	($HR$)Bd|      </IEH
"H 'AD     ?@B҄YjL-@J"d       _(GQ'@@@(A     ! B !:(P 'AJD       OՔ)S@@I       'E 
l+'@'I A?     <OD)TH9āH?ā      p!B(g" (| R8P	      <$H	      @~(P§@""Ĉ     !A@?
(*SG*(P     I1'@!p~	J"d     !B
CQ @ !B$I#       G!C1A(P  O%"JD       @@?A(QDB"      'Hʠ( @ A	     ?   A	       G!?(COx"R	*#     P OT)  G!        _?JUP @ $P@     !B  (QG?
"     @ HALbR
        O!3iUHdY1rDdI      CB'I$*R!D	      B JUPXA3"p      !R?H" J"d     " D}"*Ҫ_H}""DHB      $DO*" D@"       A "DEPJ"d     ?H@)@	3@ J"d      #B ("G?     !N!CiRJO)>R$:K"     !B!>IWGQB$	!      @@UUI)UP TDQ
"     #DJ )RR$O      #DJ (#DB?"     x!!0RNLQJ"d     (I𔁁
 + |$I$B?      
 AB&C$((  D$)a      @C ? !	       O|!$Cz)*SߤJ0a-BjH@      H iI"D !
?       'H JȔ) %TJQ.@      B!DUADFHI @1D D$)a      !OA( @O      %BW
IE D$)a       %@$HO!?	H      #H B( /D JB$D     ?B B"(Y  D$)a       '@JI("'@ 
     !OA)"&dJ""DD       OQ>EU)BR@ ?       'AT"DB        O/BU	R K/RE?I      "G  TA|O      @@@!_ՄH@%D(      P("|  " E@ 	     @GDDM"HJ"d      @G!$(QHG     @$E@
D)4OA?A	      ( H2DD*U	      @$A?A)4II(Q.BLi!      DA$)H"/"D} D$)a      CD@Q D8'BDJ"d      /xB!J(Ė&!L@!80     @! O!J┩)"'A !R"FB|      (P@|       |9@@	     @O_ I'H 	       ?%$RI$!B%%g      "HB*"(D @@      q'@D"} D$)a      @ A *) $IPM      !_ЄA
T ($@O"	     /A	"HG!	      @$K$I( D$)a      @((Gł%(QAJ"d      8G?A)}Ԉ@  "_D}     !@ *T  G!      ! B qUUQ(BQz@ I	Q@      @DA?I)QG|!UBA	     CD/R?H8%T@ D$)a      @'I 
 )'H  D	      @@ՈR"@DIB|     !@B@bQD@ $I       OHUA)}TD! "      %AW
IE D$)a       AR"K
*( D$)a       '@@
?AH/@ B        !!	      'IH("HG?      'A@e* H#D       N@*W)_Ҁ|J2"GĈ&     @B4 ( "!H!	     "B A {P
A(QB"E       OՔ)SHBI      ?Q A}"%Z"(QD	     $ OxAJ$DH
$       @G(,|@ 	D     <'DAI)"HDB$      #@A("G!A	      UP ( ?!A 	     %TKpAJT )B(O!BE	      #B ("HG      | C#DE(
	     @C!ϐ?"B|  D$)a      'I$y$yi<II$$I$I        JI4HiJI$AI      'H `K 'H I`      @@QUA)UD$Q@     ! B JU)QT"EP *J        Ox!)C{c)jԣ G!B?A      'A T%) 'IHQ7bJD     "B$I )$RHBP+B)IRC       @ !	      '@J )ޑ$/x@ *       O%#{)RROx%"{ĔH(?      @A$GR$ x@ D$)a       OEI
 I'HB}     !B 񈊻D '@$
?       @@ S$IH!
QA     'JPiJ I %H RR      #H  $ K/?B      /@ *T #DB?      "!@'P%J"}(J"d     !_A
ԔP"TI(!DIB|      @$ ]uRH,	A"*$QI      !D!"}Q
OQB$UQ      @A@ao URr@ B?A       GQ ) #DDaQ     !OAQHG!     "!@OI?$!W@	     "EC;!iҥB)R}$"Hz"     @ A *) 'I !%     #D!ʀ)RR'@%      *'YJՈJ"d     " G<)HS}5PS^Jȟ*"U䨉b       BO?H$I $$JId      B "#UURrTH
"     'AG}kJ%D D$)a        O?(SA@       @_?@UERO!T'      @@J 'H(_D     ! Gʤ(" Ox%"ND     @ @OʪU( 'A@U1A     A?
)
RdL `	     "D q#$UDTUS(B!     <'A!R(B R      @_TER$O Ȓb     ?Q)DBD/Q($B|     (B%>(DJ"d     !B A"+T"MتR*	L     BO'4 
q"HD D$)a      @$I!̔)֒%H_!
      >O	C?)P @ B?J}      @_? (WOA     !OAT $CA)0     $ JJS*PDqU
'     'B * )@!DMP5BD      ><	      @
U)URX@ !       @@@$C})wSUHA)DB      OA>E)AS GB*U      Dr&H0J"d      @O  @O? *      @O?@5QHG?$DO	P       O5k(Q _?JD)      @"#*RP EP P@       _!^CyjUW!^Ezq     "B 
)P#LB?F     #DC?")PB !**`     B'8H@iJRI'H BB	      " (_!"
      @@@$C_Ց)JH)"_Ā	"     'A JA+A%HJ(?<     
!A$$J$
 |Q	4	     "KĒ5SRhBEJWT)>R$Hz     /D Ҕ)('H!*RE
c     " B*"
M
"_P|	     'B H{"I#@T=     !B$ISi"MQ6(YKŐ     /D J +#D ?B     !B9UTүB<I*"D      @ ՔQ$PDBaQ     >E#BJʀ	      @O*w(DSOAbR     $HHJQ+QE.EB.I	!     '0BHq
I($#B "     'IH%#{ՔPD@Q?D      !_A=JUPPD@Q?D      "GE_!H%(Np9ZB     !@B  >T UE|R     ! O r~WT D$)a      (Q́)$>H BG$       O!>HDPOA.E{(     "HB #")RO?ȩ)     $Ox"@G     ? H>DP%g     A'>DPB     A'>DB' QIO       @ / @  4!\     @ @ D$"KA      !" H@(P     @@ @  
 AȜ       P ">D@P (	P!      P "(DHP (	P!      H "DP $	P!     @@@
HAB	DfP      P ""DDP(P!     @ B@"
D`A!J      H H	"D$PH#$IP!      H   ""DDP$I@!     @/`x@/`x      HP!"Bx$HP C(a!      H  ""DDP s/	H!     (HP/"$DP $%GрA     @B @<JHE!gXP      )J	> H^%JR0%aQA      ( H "t?@PT%(ERA     @C?$( ;.      P " DP !^!      (I^?B$Q A$EPQ              SA'' $P !	B!     @$$? ~DT!(E_A     " DS#G"%Q #(	_     ?(BH H!$~P>(%@Q     
(HT">H_$Q@A"EHA      (I jD )REQA       Q$"x$%Q@>	P!     H >$I$P @!BA     (HHIJH!$~P*%gш      )H^ $Q(P EBA      )Hr? ~$Q!(E_A      QA?Ҥ$~PA'HA      '@	tRJQBLI	!      (HJ1bO?	?B(QB%Oѐ     +LoI)$S@EPQA      (DJ1jĒ0)PdGFA     (<H@'@$Q؄1^A      *RLy`Ĥ)P@OBA     ( KiD@)UTKE_ѐA     (H H#@$Q +b      !PQ&bGx%Q@)	_᠁      P I?I$P!?H     w(IܒrHP $OA       @"D             ?    @         ? @# @             /@B@@       "D(Q!|@(P        " G @ _
""     ~ "Ȉ""||! B         " G ! H@          " G P _
""        ? D	(     8D"}!D!          /KI%$B         H	 (         /JII%'B       /JII%'B      ??"L        " G@@/B1D
Q           ?|IEI%EQ@        # 	'@ DD b         #$H! B@	H         #đ	$"Y)$DD#         @     @      AAF3AE        0 @	 "        B B!B      ! B $
Ha#B@""T      @AAEDD!D"     B B	 B        @D$H
 b#H@         O
 `C@(       @?"BA
/DAH"     @A@B  MH H       " B 
PaCD@ A       @@
 `C@       xO 
?`A "T        @@
a#B@
b     @A?H EAD@        G	 `C@       #@0!@@(       #@ 
 a@! B 
      #@0!@@      'B@$	a#B@T!A      /H O*D
aCA 
"       @@&Y$bkD" T?      @ B @?
`CA " T?       @ADEADAGH         O$
Ha#B@""T        @@
>g@"T       xG `C@     @ A ߂	
$HaA A
!T      @DEEQDD!D"        @@ @
 bD @       BāH`F2H DH!H      @?@ E DO H       #@@Ia'DH""T%      #A/B
aB!B      ! B@OЂ 
aB A!       @@$O
 bCD$      @ A O?
(P`B@	""TC       'BOȂ'
BDbDA!E     @ BQ  g@        8G?Q
DbSDEA       @A@Ȃ DaB A!B       @@A0a @         @@
`CA@A      xG `A@A     " D@?@
 cD AA     " D@""v
b#D@"2TC       xOD d#H@ QT     ! B B!
 @aCB!       GQD2PAH$j        @@$I
$c@"T      B! O"MDU        'HB"(  @        @@
aA 
b     @ B OB Ha#B@""T         O
`C@      @ @@
0P`A!        @@OBDH$`K@A0     ! B "HDAb'OQ " T     @ @@Ȃ"
D`A@A        G" D@bD"?@       GDAGEADAHAJ     @ A τ	$7B"      #D/B$I
bD " T?        @ 	BeJA        @@"D
P`A@	TD      N OȂ"0B A!        G  `A AB@         G Ha#B@""T        @@$DHRbF(" TB      B3ĉ$H"E$ȝ+D @      #@ $`C@(       8G*T
PbE ABH         O
hHdQ       !B OȂ Ā
aA 
"     " B@"$
H`?O      A  |
b#D@"BT       8G b#D@B      xG?
 g@(       'A  aCB"DU      $ H@BJ2HKPQH"V      @ A  ~1EE ""      A $HIA0	~$Dh      #D/B 
 bCD@ A       @@ c@A      #D /B%J
bSD!B       @ BA bF B ?      @ BAb#E@B ?      @A?HED]D@     @ @@" D@bD  @        #D/B!@
DbDA%Q      '@ĈRdJ( "@T        G/B A
b@        #@B*
`C@       @@B$
$bK_!B E     @ A H3%HD!B%       @@""D
DbDAEA       @A OB  bD!B      @ @@" x0 B@""T      @ B@3@A A10      #D OЂ?B
cD A!        @@B$I
$g@A     ! G/BE1DA" T?         _Oy$HdO A 
      #D/B?@
DbE"HT       HD!OȒ$2IĐ @(       xOD	 d#H@ QTɑ	       @D$`CA@A      '@42EA         xO 
`CA P        @@
paSB!BDT       @@	paSB!BDT       @@"DE2#DH""      GDI$GEI$D @      @DEI$DI$DA       @@
`CA        'H/BdCH!"QT      #D/B 
(P`A@	""T      " D }$JH)2SĤIE$T@     ! B@BHgBH"     ! B (>@`A       @ @@ 
`C@         G/B 
bG!         8G bcD`"B      #D O҂!BeI A?     @ A  3H! B@     @ @@ 1B A	      !B OaB(bSD A!J     "D ADJ2HQRH$j        @D/ʂ
 `CO      @DEADADA     @ BI	`@@
       &B	
ac  ?@      GDAGD!D"     !B O"
DaB A>D      #D ?A
bG          O
~eR!B?B     P A  ~1EDA!E        @@"@ 
DaCC "T      ! C$K
bKDЉA" T?        rJI2'JI ā	PB     BPFI1'DDI@       @D/B$0!@H""DT       @A OB DgB A!      OD!DD DADA      =~!@G@      '@
 `CO      8G @
b#D@"      !A OA2	H@2BDA     " DpB*U*UET
(L)         @@"D
bCD!$B_      !B (R0PD""LU'      @ _|H	`CD!""T(      @ A 0AA@AB        DIDDK4GDI$DT      "B  
  c@         @ @@"  3@@(      @ I ~1EE ""       O!
l'0A(        /B@Je+Jp! B@      #D O߂!B
DbD)a      xG
 cD!B      ( H@1! D@T       @@
  cD!B       #@ "vD-
T(bKH       !BpbDb#D@"_     !B O"
Dg@ AB      @"`s   @       " $ x?	 @        @A@OB@D
 `CG      @ A ^
j#G"T     $D$I$@?$
@     @ GЂO
@dR  B 
     @ CO6?BA0     @ G/BJ1	E(QJT֒R       @O?I
$b[AABT     @ A $
RbJ@AB!     !B "
DgB A!       @G/B?I
`C@"T       @A@OB@D
  cD!B       `p   ?@      <Gb/T
RbE ABJ        @@g@ A
       @G  `CG       #@Ȃ  `CG      @ IOHa#B@""T       'B  E$0AA I       #D@" `C$       "D" D? bDB     DB>~  (      @ @@"0D 
"     @ A  `A@AB       'HdO"D      ! GOP3OA A     @ @@A	aA@
"      @@A} 7  (       #Dע D@JbE(" TB      @ȑBD         ! B@B$
i'B@""T      @	$zH)6SʤI$@i     @ @@"0AAT     @ @@(
Qe3R@ABT0@      'D OЂ?B
bD ~     @ @OȂ |`CA " T?        @O
`G@A       @D0AO!BE     ""D@t  @      	dEU 9 @ P       "E x?   @       'B@E$Je3B@	      $D! O2)!B!*?      $ D@
$bEP        @@$)
T gA@A     ! B5	 gB@""T      @IDQHA?@      @(2	,AB("     ! G"7ABP@      _O6 D@B      'H/ 
P c@      '@/ `_A
      'A")ER!0ǢIH"TRB      @A AO @4A
"(&     ! B OBDB1	B@	"T      /IHB*2SIH%BTH      @@!O$8 0A+        @OĀ`#@(       '@$I
$bKG
,     !B@B gAD      'H @eKJ))a      #D/B? 
 `C@      $ D@BJDHb+XA B`    @$"Qs  <~  (       #@ BII
I c@       " G߂!R
bI A?      '@0OA!B      #D/ @
bE(Q'@U     ! B<I>D"1ϤIDB("      #D/ A1GTD      #D O߂ 	"DdO "@T        @B1 A *?       NOȂ%K0PJP       xO /B%@ 3D 
b     ! GO"DgB"$T        @@I
$eW@A     #@
$cD!      #L 3 `O       "@DD	 `G!B       'A ! `G!B       #A/0 G!HB?B     ( H@H
Y`B!""(        h@DK7DI$DEQ       DIDDK14RdI$D       @@(PbEH%"$       @A@OB_D
`CD!""T(       #D/B?
 b{D*L       xO /B% 0@_(       xO /B%@3 D@	      DITR!J7׉R%H$DT"      #DB? 
 `C@      D
D* GEADDHB      #D/ A
 `CG       GB@?Ł DH!H      !B/P~ g@
"       @O?I
`CAABDT       OI$IDJ1$IIE(      ! G/H1DD"DT     H _"dI$BH     @ @OB? 
 a#B@""T        B@ a'BH      @ B / E"2CF 
b       @O$I
$bKG?      #D/$I
 `CG       GBD!   DH?ȁ       @G/B?I
`COA6     !B  A
`A@	""T      !OOĀ"@gA!B       C"@A$ĝDIPA%H      8G?D
b#_	!     @ BA} `I       ! COI1%H_A      @A OI 3I$$ h        G/@p29"$i      @ @OB w)RfRh"T       @A@OB@D>
 c@!
B        @OD$dGC?       @A@OB_D
`C@B      @ @O/B2%H%A     'HRDbDB        JI)JK4@I$AQ      @@@ Ȅ	B7	ʐ)B!,J      @! O/B"3 D@     1QT(      HR}JE1RHE!ĸAP      #D/$I
 gAABDT      'H@B d#H@!       "HBkd A"T@      8G"D7 @""DT      A !
ODHB0E@(Qi       ! B@BRe+JP B      O $7I        @@		$3$)?        @G/B	
dGEЅABDT(        @Oʂ$aOAB       @OȂ   g@!"DT(        @A@OBDD~
P`CB(QU      #@I!0AB A     @ @OȂU0@O     @ @OB?B
bD B        @O`O!3      A A!B$5 )BR(Q(A      !B  @bKD(`     @ @OD eJ!(B?B      #@B? 	"`CG!B&J      @@  4H%"JD"       @O bG! E      'H_"ĈeWJ "@T       OxR) 0x"R)*$#     'B/Ԃ" gD 
l       @@ 1H@     @ @GЂ 	 `G!B      @ @O^He#J@*YU)	    "   <~  (       #D/ A
 b'GP*Td     @ OAdI A<
     ! C"DP!`EH" T     @ A/Ђ@
bG8" T     !OOȂ"
DaB  A     ! B@$0 B@	$H     ! B qD"
1(!*B"E!    B/ȡ"AO?  `        @G"
BaF 
b      _G2fI "J      /B@sg;B@	        @IRII5'B	I%$     </IO$7A P@      '@DD2TMؓ1""DT     !OOȂ
aOA       Np/Bsa#B@	"T      $@@)2SOPAT!      "DD/
 bKDAA     @ @OB  bCD*L      @ @O?A
`CD!""T(       xO /B%@3BABDU       O%/A 7
$       $B$IIb          'IH"{Ĕ)2SIH%"JUTS      OЂ @oB A	f      #DB? 
@dQ("HT%     @ @@"B0@      ! B bcD@?@     @! _䂈$HgI A?T     !B  1DB        _%/JD)T7PA.(1 A      DāDEQNF3ADUDAH       GD4G!"%$hP @     @@?āO (DRH"      "@D 2H B@      u$BD
"|!$BHQJ@      ~ @zx !      #DB? 
b'GQ T      @@$O2AĀ"HDE!       G	DH}2#d $@h       @A@OB_D RdIH%B     @ @OD$dKK%"     $@DI D"F7$I)DJ)$     !A@B$
$c@?      #@ P0AEPB*      ! D D	$f#@!00      #BO60!D!T     "HDB$
 bD!B!     ! @ $Ie3B@	      ! C! 6i`3B
D$i       !OOʂ aF!B?B       @O$k
$c@
$       @@?A
cD A     !AA?J2 D@!     !B@x*3դIP%BHd      @A@AOd *2UǨQ=DH!d     @#DB t   @      'A`A	} `COA       @OĢ)dGH""DT      " G"D g@!"~T       C!
H%21@
$      '@ B 
 dGH""DT      #D/$I
 gDB)a      #D/$I0@(       @@	2	(D#     @ @OB? 1DB       !OOȂ 
$bKG!B$      #D/ A
 g@$?     @#8D/ A
 `G       @x6]Ȉ:DD"     "B A=IW2ԊBJjh     ! CBK"0A !*QU      !OOς>
DgD AB        #D O߂ bGA     'HDB2JHB?B       G/ 
 `C@      @ @O"Ā fUHU"VT      #D Ђ? 1IPBH*     ! GOĀ)2D@A       B / 1B A?B     !G_"6D! A     @ @OB bDB       '@$ bG! E      'H B_~2!I A#I       G/@ 2_Ą*)     @ @OBH0a0X!~      @H"/  0%"JD)"      'IH"zD)2SHh%V      OЂ!DgI!%BI      !_ȄȢ}EU3G(QJ"T"B    B)%Q        @ @O 
 dG(      "$GP"2DK bDB       C!O%I3	Q(D$I     CS$,RTBy>  (      @ @OȂ $g@A      O OD*D@      'H
bKG?     " EW*2M A(       xG1HG     
'0AY        H"E Ԃ)^
`CO
$     !<O_ܢDI`COA      <O	O @7 B%*6!      @ B1} !*?        _I$ID&J7$I.D($ H     #@K
$c[D!$       @Oʂ$cDB       P Op"i 
cDB E      xO /B%0!@!B$      @$ 	$I7ʨQ$BTCj	!      'A P!
~ `GNЅAD(      % JxOB1%HDD      #D O߂!B
 gJP)BR      "D AB$2 B*h A     ! CA!H0Dy0(      " PI!RjI4r_IE%QQ      "HBI0AB Af     !B@B@	@`CB(QU      ! BxĬI5%H	D (_     $D!?% 2IĐ!B
$h     !OObKG!? E      @A@a4?~P0A!
2*R      @ @OI
(bKA>D     @ O?D5 D@"     BđTGEJ$EUB      <O_ĤLeJ *URC       G/I~2IĐ"*)2$C      GB@?Ł?āBE      ^A	DO6$A%$Rj"     ( HO$
bK@ 	      @~7""Ĉ"     "_OB1	D |     @ @OOĀ" gB !J     !B@?bGB        G!l'0A!B?        @G 
`O)BR      @! GO `COB$       G/ 
bG$T     @ G>2 G!       'H ĪHeH (     @#AЂ{RcDB?A     !@@ *0B*(P     "XD/$I
 cB 
"       G/ 
`S@A     @ @O 
 dKQ/@T     ! B >O	R5ϐ!B!(B      $@DI }$#T5SϼI!$Di
"     #B π)4I+       'B@ق 1D !~      @$A?	I4hQ$BT'j!     !B  "2EPB*      $@E/B
|bEBP        H!B	0)H$R      @ $ 4C̤)&2lRB      #DB? 
 `IHQ%"TRB     "DB'Ȃ$HO
$        @@@!Ą5@("PE (     x|9PI
#f ?@     ! Dx%/jD04H-"ID)%$     !B D5  A(!      'A@JE0!@O
$     <OD(DD2H9āH?ȁ      #D/BĀcDB E      'H/H2O_      @ /A2 AB(5$I     @ @OB?
 g@B       D /& @       G!OA 0%"JD        @A@OBAcD (BP?B       @O 
bG!?A       @OD4e@Ȑ      '@ B 
 eIH""DT     ! G$
bOA	 T      `p @C     @$E@ψD5ŰOP@     !OOʂ
"
"c@ABDT(      @ @O_B?@`A        rBD 	|!B(q@     @! G/B?@
 c@Q*T       O"/Ĉ)4"R$jB |      'D Ђ?C`HA	!      #@ 1G!A      'D Ђ?Co{B!R*#      @@?D$	"4=@A"T%(jR      'IH0!@_       xO /B%0!@!B$     @ @OB<@
b#D@ B     @ @Oʂ$D3GD A      (@H)	_2I!*B         HQDI7(Q*!)E!     @ @OЂ2L/     @ @_?Ą|dI$BH"       Ox%/D6'A"8(0#       @ODdVp!      !$BH"D)HDq%V(       O!?IU7dY1rDdi       G/@$2Đ!D*"(      (JOń>2H@!B      @ @OĂ^DI)`@     "EPO 4EB$I(        " OpBQBz4 OIQ@     !B!OIY7!*BD"I       DDK}4GQIE%AQ      H II2 !*?       "HB""D0@@      @ @OB$U
 gI/AT      #DB? 
cDB?"     @ @OĔ)dJH)U4G      'IB 
`F"%!      #DB?
$cA :     @! O/Bb"2A !R"VB|       O|!$Oz	*40a-Bjh@     @ A "O2	LA_(      @ A "O2J(B!       @O$2HJA      #H ϐ?B0D JB$D     " DגUE*HQ
$*W!B      $DOȂ?
b#D@"      'HJ*dI!      Ac'@P@@      E yDu%R7)DP%$D     " D:/H2EĈBRjC      O 2	H $T      @@@I$2IĐUDj       @! _"d@      @#ABB
?@    A?TQ
A @         #D Ђ? g@ 	f     " D}"
:H}""DH!B      'H BH eWJQ.@       @Ok
 `O 
      @$A?	4I7(Q.Bli!      '@B?I
"g@ 
     $$D$
`CO
$     " _gA 
"     @ AA<Lc @       I)J3" "*?     @!GO"6'L@!80       OQ>D	B7 ?+       'A@B*
 `O
$        N
/	>4UΨQ"       B ??"
(`G!       !!@g
@i?@      'A ĐH`SD"       O?D@5a`2?A(!     yA#5Gg ?@       _|U_UIEQ0A:(f'       _QO}$B:PDBE"I)!    AQ$SX%  @        !B!Y5UΨQ*BT"a      ETq$ODDH 2CȈ"DE!    OD@?Db      'I$y$I<I4$$I$i        JI@K}4GDI%AQ     @'I τ 2	H  D       Ox!)O{c	j0!B?A(!      '@Ā cDB       '@B $o{@ *     $!POς>
 `#D@     $!POς>
`CG?(      "E!	4UϨQ>BD"a       @G!1|@ 	D      #DB?0D$0     $Iq~I	'4(Q QE	 "      O!䒉)4(Q&Bx) a     !GOȂ
$cD A     $ OxOBD5 @  A     !A R3 B!(*      !B(I$T1)$ T)      "HBʂ$cI	        OHDA	}3! "+       @|/2	5R@l       #B  
bKG      #A Ȃ D`O/QT     !B(I>4SϨQ~#hI      B DP3Y،!"%$hP @      'A@" 
cD      'IH 1HG?     "B!I4(Q<BH)"      $GPI( T7 "
)J!"     @ _(7 OA!~     !B q/LJ4|%Tj      !GD1 D@T)      @@QDA	3$Q @      B I	}!3ĐB?)        " OOUT2P*J      8'Aǂx
 nsG8R      xO!
*3Đ!$I(!       G!Ϡ 4xQ<ME(% Q      O@eS!?B       Ox= 1A"("       N@*	_5}ʈ2"GĈ"&     P$EP0!@A     "D G$舄D 9B"h A     "B A {䔉
7(QB"E!     !OxOU3 D     'B *aSG?     " EA}'H*0UΨQ*RPA     ! GADD0 (!     D"HD"?B1	D 	D      EH?3'      H  2A!B)       @$ ]u5,	A"*$Qi       !D!"}䌉
1ϨQB$U$Q      $EB
AeWJ(P@       @A@OB_D 
 bEPU     !BQ~$	4Iϐ~B!(B       @@@ODO21Đ!{I)        O$k0""Ĉ#     'JPB  eH RR     @ A "	~eJ"       zJz1 P3     "_OB~(7 G!_       'IH?0G     P$EP0!@
$      O*D?!3J*D_H     <HF?  ?@      @DA?@% 3 ""Ĉ"     "D y)OD	 2IĐQE
"(&     #D!π)R7%.      $!@("B=c ?@     "E*7UʨQ:BT
       'JP  3OBaQ     'IH(3ӤOP.T1      @A@AOdT3$"RD"       O1/	2?6I!"BW)      !D B2D|bEH"     ! G$
bOx%"NT     'B B?A
cH"?T      @!%H?4	TBq,      >EGB  ?@     @! ODD9d@
"     @ A "O gI !%     'B ԂR
 c@ɐ     !B1_d5IϐQ>UD"q       Ox%zD)0%B*U+      "U AHR2)PADRE)Q$A       O'"䈉H*nĈ"      @
E	U;Y ! ("      @_? 8A'       Ox%/DH7@?D(       @O 0A? *#      G!Ϡ 4E? D!    C!E_?  `       @ Dw)T5А_I) `     
 gp!W o@      @о!G~Jb;HPRUj       O$k0?JD)"     ?Q) BJ)O?@`       _!^OyJ8	א!^Ez)q     $ JB9PDqU*'     'Bd
bCG?     !B(IR	4Q?BHi	!     @ @O)3DB?"     @ @OB)D bO(        JIHK}6q9$NQ     $@ERUK*_Ԅ)R(ĉ*
      "G" )dOH)Bj      @@@$Ođ	5H)"_Ā)"$       O!>HF5@!*((      'T/Ђ dOP=BHd     " DA}'H>0E*"W)J "     $$DRJ3MA6IT     "E A$$I7!DR$       O%/D	)0#<}"j(     !O!UE5UϨQ~BDҨe#1     ! GADD5%$B?A(!     $DIȢU_䔊w2CI+      'A O?AA5I(?(<'       @ /$2t(d*?      "B G)%H o@     "B 	3B?F!     #D!$I ?T}UkQ     !OO;ĔbH$0       @|?$	5%/T=     #B Ȃ*cDB?"     'B BDD
bKG!      @_	?0A?J}      'I@"ĥl2H "*     '@"	3@?D(        O,Ȅ"6)S$*H+     !B9DT7<I*"D     /PU_ J9$ER%Yj      @  	'`9_RU˒U     @ A B~~eJ U     ! Ox0E3ߤOx=Jg     @/RH$HdKW!R2C     @$IoBudWȂ      !JPJO{c	j0!B$(B#      @OI$1	)$OP$     '{)_K5R_IU%UQ     $HHBQEEB.i	!     $OxJD2S_A6      @O?DE5ʜ%B*I)      @OϪwD1Ab+R      $ _/D1 _!?R     %TKpOBDE0C      @/RHOcgI A$mT     "'B@D1D (nԔ;     "GO߂!7(Np9ZB       O"B_hDx}U*      @O?D 5蔑/WE5I(       O!>ȄD4QϼA.E{((     $D(A)
/2)|UB$     %(O|!=JQ2 DB!     !D?wU  ?@     %J(A)rMT?|C((0     "G/T0/"$(T!d     /@ %/kD4?Q%;D     " D<OyIO7<I$)#$I      @_)!<RR4ZEJj֩J     "HB /"	4?")     "H"/jĀ3B?(I#     $Ox5@G     'J<$/I 3B?(I#     !D 1	6e@!}袧      @O!ʪ1Ab+R           @@   p       @@	"D$P         @@"DHA"
b      #@?"tDPEA       C! ?wIGPA            @@   p        $@   D`    B	$@HIQ$D
$DA       @ !>D@! E 
A	      @ $FHIR($PH@"	!      @  'P>D@B!A     "@(H"D
 L       @ !D A@ A      @A !D A@A	       (@HD(_R($PH@"IB      @ !D$HA!E
"A        CAA'RH(Q B@	 !      >@(H"D""H     @ @>
$H"(B"1       @P(Q%(JPA()      !B$_ȤHR) R@D@0@      AD!?	D4`AB	A     @ A !D|B!EA      Py߀ ">DDP! A     #@A I$M$PpPA      @ D@$((P @"I !      @ Q!?D8QDA	      8@@? "D(IH
A      @@$O!DDB!EA#      @A_R>(DPA"       PA?"DID
A     @Ȁa$/!?D!@y
A	     @ AHH%RRHDPI!       A H?P(QhB"%&A     @(I !"IDT B	%A     $ HA}XW*UP|"EA      @P"DDAAQAE      !@@DH ( QB"E!A      CAOQ$(PpAP	!      @ GȂ(<PH@"I!@      @'Ј>DD@AA      @PWȂR(PAH	
!      AI_?R$(R<C	
!     D@H "D|PAA	"A      @PH R(Q$A"!      @PQR(PE A    "H")$KYI%$R	HA    BI$((ҺRJ*R	HA      (@PTJQ?U(QTGBI@       DB!
"" EDB!
"QA      !BB?" DT)D%	Q!A       @!DHR"(|PAEA     $ HA!D_?RB(QC"E"A      !$BH	"?EpQDA     !$BP$D$QAAEQ@A      CHH R~(P @x	
!     !x!?"zDQ(Є EA      A$B R (|PA" A     QR @I?$P<
A      !@D$JQ R("QTAR)!        AHHR)PA"IB     " DCOQ@}(QCR%A       A$OȀ@(RTA()
"     !@@
?%IDIDQ A      "G"?RD OE?AA      @AEHQDR)PBBaA     !$C ??ADBA< A     #@ B "E)K%!QAA      A$_?A(QBB<!       CB'I$I) ?@     @A(((RIK*RH(     "E
XURDRT&E AA     
 CAI($(P@GCA     !$G	?I$P@Ey      @<AP(<RI(TS@I"!      " |?@"URT? A      ?0  @|       C?"E D%       @G!%?" DEQQ!     "(#@A$*%P %       @G#먥) $QRQ!      !TzH}DQTQA       ATO"((Q@@	!      @PWȀ Rw(QTC"EQDA     I T}"JEڍbJ  B.!p>      ||!B	% _A$8LG     4!TCQb_ҀHyO
A     4!TCShIҀPx
A       @   D`      A D pp   @       A D px?@@       A D pp?@?A        A D pp H	*      @(GH $H(%JAT]a       " 88?@@      A D pp  _@Y
D       @@@G/A?A$)"@DH(`     @ "ǀ>>@A D pp     |!~B>_!B'DD      @@@G!?@$)#TFWUa(C     PAQ_EUuWRUI}TUXDA        C)fB$kj$T9A!     DOxDB*%TKURN`       >$I@H     " H  B                B@!R)@@      )!RB?$T@H       @#$@ !D !          !!"D
$>TBAC     PD
!HD
     >|D "@         P,IDiJ$  A !B@     "DCI" "F       "DGI?"HO!B!       @AGAOQ$>(E @     "DB 
?I$#@ AB@D      TG	HT|R#A(        |    @ A @       |    @#A@       ߒ$$HH!"BD"@     @@aA$@0`w   @   @     H8$H?DI!$BPB      @8
 $" tGB
       @	$ H$JH"R@$Q"       ;?DdI!$CЄ      8C?HT BG	"D	      *' $*H"$@      $ H	"D $BH"D$      " D	$$>HD'@DQb@      	$?߄$H!!RD
"       	D$~ID!B$Q     wUD AHQ AB      " DϤ$IA'AxB      	$"/A$JD"zH(Q       		hH#AD>"     TP@R}IU%TRI X    $"**     B
K*_ȩ}RH B       @   @@(          @G D$I!$DH"B      ! @<H$I A$I*bC         @ A$`H &B
"       ! C	$K'JH)RR(U?       ! D%$JH)$SJ"       ! C$KA AD        @'" O$IH)b*"(         A DЀ?  ?      ! C @$I!$BHBE      ! C!R$I$"HHEE      ! C<%H@?BU      ! C$H$I(!$BHH0@      ! C	?%JH)"SHD      ! C?I$I%"JJE#         $IP%DJbJ     B!@ 
`      ! C $xH$HU2G      ! C?	$I@%JO       ! C?H%H  A       ! C	
"&H  "HD      ! C!B$I %BKUH      ! C?P% H@!E"D     ! " G
$PIQ2E$ć        @GȄ %JP/BR
D     ! " G?B%H%BJUJ     ! " GD%K/PHED     @@ ")W|!G!
`-?      ##$B!J DK!">     ! " G?D'H)B^
D     ! " GȄ?"|$I!$B"D     !!(OH 2	+TQ^IR      <'DOI%JH/RHD     ! #H ?U$ K?BIE2     ! " G|IT'JH	/RHID     ! #H'?@%JK'HH D      !DOD H%rK'HH!D~      ! CD$TNPq)RTF?     ! " TI*dUHU$$B     ?   H " !        ?  BH " !       !>B/ b"J)I&p@      "B)B (&d!      }AR
A1TEԘ)1a  	   `0`0       @@              :8x _ 	?       @@      @      @"B!B!"B!      Db#F"1H~CE        b!CD        A!OȄ	"D$I$R@(P        ! &p   @@    ?    D    "B!B!>@         @@  ?    @        @@ 
 " 0     >A ?ADb#@    "B?"B!>@      	? C      O" H>"H" @      $H $H	 <  @     " /bI&(!       B!C ?   @@    	$ 	 B$         @@   " 8 p     #$H>D""$@      @%BI)$JOFA       @    C     "B1>!"B!       >A$?Ab@     @%BA	?JI)$RA       '  `?`C2           @ BA	$     x% P%DTIJ=(@"    )$D"DII%=P" 0@    OH !h8         < CA      @ "$~$"@(        #$>~
$(B
( E             D8     ? D`  @@    	?       bAPb    bC$1!bB  @     @8 !      "D(($H"D(@E     @"(*(~/耢       <'ȚE>ILf#" !@    ? #	@     @" D     @@      "@$D$H"D(@!      $DI)$B	$B
_ @    ?  @        @ @ @@              A       (  @@    "(/
/>          ? D DAE      @ AEDA   @@    	$De)T_`eP@    ?@C B       @$JI/$J_<(@      @ "B!B ""/@     @>&/DRb$     @"D
0>  ""      @"()(~ ("D!        @?_ A         @  h" D      @$BA	=EI$JQ       $T	<|D	$~D  @     'B	=G	*%$B          (CA      <'@O>ILd$ @     7@G@G@@    dC" S d       @A DAG!A        @@   D  @A           ? " G       @@        %*DH"_|I4B     H% R	< B	$P"P@    ?@C  `?HnCY     ) H($K(<        	 D@_"D*$D        @@  ?H!"BD     B2>(88"&       $FAw$XREI%<H!      ?@C @D% 	      @A !BG        @ H'        O$@E	<RJII%$FS        @@ DDHQ D     @ $H"$"I	%<D      %I*D<̕*d$H&HBB    ?  $(c2$     @"B!/"D @          D " "X     /HB	H"D$I&HA     	 $
H/?
O        @B! B!B!      @(H/_d B	<        #$H$H"(B"      @"G@   ?@@     	$_ _< ?      D         <A/@W,eK+@    b(b*X~P      "$H"$" <@         !  8      @ %BB"A"A@    	 '3Dș`    ĉ$HTRJ*T`@     A)_$H&HA      ""i*|BA	BA            $ @      D$A	=@       $b9><BB	%P@    ( "B!@       $@<G1%(BB1     ?%"_H"_$PFIC     IA%I%_$$D!    ?@CCB       ' @?  !       O$d
BPB_餼h	@      @A#  "%*%T     P/QDJUIU=H$-PA     / _H"R)HR J    G@A$ ?    &$I'䲓Jy)$H	 B    	$
D/ O       
O $ D<H$A      ? HI)<HII%@@
      @	$$BQ%@	? ?          /@ HB	F     ?%"_H"_$PFIC      %*TR*TRD!      P)R)'B         DI*A	BA      De}GT_Qe}P      "D?   @@         ?   @@!A       Ē	H$$I5i$O$I D     @	$eDO`BI)$@      @;)@"D$H$      Q"DD	?@@     @A	 H)?H "     @B5 ß  @@    ?   (aCP       (TH         DOH!BA< A    )?	$b_d!        BDQ' @A@A     b9=$_I%$B@       R@$zR-JdԉO"2DA     #D{"$Dy*UT̟" D       O 
O$TJQ      /~
$( (b(?     O %?"D"=H"$"H/     @?RDOD_<H$A      D|J?@@         @ "      
O <
O 
@       {	ҬIz%"JDR  _     #D"I$W%JOJBh     
R){Ҁ= Kޔ%(J^B          "   ?    %C$JO% @      "
(/(( @      C'K)"S
3?      %)DI }BA	D@     ($F*~      ODRA	?JI)D@      /~$<@XI$H@?      ?B@	?A	B_         @ ?    )?	$$BA? @      @IdO)
$P!     @B_Qe)QD}}DEA     @I/5JO<8P	 D@     x>H_$@H	?=D!      D HI!$H@?     I?$	䀓R@"       @ 	?%x	+DD" D      x$IO?B_<H	 ?    O%O=H	?BA         # DD
        $
O A	  @@     @?H/?A	8P	 D@     @	/$@ H)          ?  $I      O !O  BJ|)@B      !>π+ʪJ"H"     ? @$DRNI<E5PA     @?H/? DI$      )?	_$ `     ?D AqV  O!?@!      _Hd D	P      }A/	
U$    ?     {*TO!%z@	 @@    ODG%FYU}DEA    ?I)?A      A?DRKWD+ ?     @?H)?JEI$A       @ @ALa    ODO 
O=@      $KȔ)R)d$It%V     II%	 Z/H>      @$(@	?H)?A      $^$ @)          @fI0T$D    ODA?A	?     #D$@$E%RJOJ@     @$JO$F_=@       @ 	QRA%}$O$Q @      @H9 7H"ʀ#    ҙJe$JO% @      )?	 H/?H     AQ$SX% ?       @	/%RI)D|
NH>H @     $yx
!*DTOp"I!     @$O _ < ?     @$_@dO @      C/>IA@      O?D_$JO$ @       /
@oɒI*bH _     $ EI=REI?A      ?@CC?$@     ?@ 1s!Z2RD  D!        t         @$(@?I)?      @?HOsq = "A     ?"_"eO!<     )	?H/?      Ȣ}(|@DH       
O BI)<@     ʩ?	DO% @          	)ȰRQ>IU#     @?A >>DDD  @       Ȉ""}|d2p 0     $}y
/HTO$UQ     ?@ C" I     ߤA|*U*UTOT
      A'Y/ P	_ $ B      <)R(BR      *(DO
%BO=P	 @    	[	5 A?
!    ҙJeJO%BG0~     D@R$ {"Zj$        <Uzr _ II     
RJR$<K!'H"       I?"%x""I$*  `    I$)_RQ
(Q        Ȉ""@  ĉC      @ CI_ґ%*JW/_Ҁ"     @?A >>DE@H     BQdG<|@	 T@      #A$V%V[? T)      %x,Bo?D       %_H~RWU=| /અ      y/MD8@     G  }%*     #|EPe(_|}g         ?D>"3     IL*ڑ$_U@      ! O r~WT        )kR{/RQ3;D     H)"%z/A)     	K	%dzO*WT]R*    IT_UY_}U@       `   0       a! @     D F"1#G       !!@  4C      !!D P `88       !!@  4C     ?I"TB? # "?     @A  !JDD        G @       @"$?        !?           >"@          ""  A |8     # 	?     #K* 	?      AA   @@         ? >EAJ    |@?~(Q"X ?           ?> E"^HD       1 g
J?       @/J*8!P"DH      #DB? ~""DIH_Q      D@H*n%J%J!(_%"     PAԐ	?IP#@>     @X        @/" @     x  @	$$Hx!"BD)"f     >|$H>|$H>|$HB*XP      xA"H	A}$Hx!"BHJE     >EPR>EP*X        x@A"H%x!$BED       RII%$_$ RII%%_      P	&^II%$^II$B      H)"RDҒ%$JH)P	@        B	%$UIc%$UIc%QbB      PxA*MG	,$zA"I(UD     B DD!RQIED`      xA _Ǆ	'x@A"HAE      @x@("PGA%z@(P`Ā      #	H~0#P      @""H$ R"$JB&"R	
bO     ~	i~	j~P          >~D'HOE      DώJ   @      @x@ _Ǡ %xA?B(D       A('Ƞ"| !B"        _  0     " H"D$H>D$`      /DD$I$I/A	AM     x(R@RDyD""J	&     |' D         {!"	%zH!_Ȅ      >|ȑ>|aB>|ȑ>|aB      U+rdDODR %JB/B$IEM      ""_/? %H@E-REĵIRL     !/z@0RK/zRJg        pP	 " "(   @           @	"D!$P @           @
$ @           @?
$ @         pP	 " "(   @      "  " *"!"       @@ H	 @D#@       @@pP	 " "(   @        T$F`?  D        " D   @
$ @      @ A  TBBA       @D$HU "D@      @! @!A*D"@!      @ A@   I @      ?  A B   I @         D!G*Db!$     @AANTERD!D"     ! B $HT"B@""D       #D@"DU"D@"BD       B!"G!*Ԍb! B     " !"A0*"!"       'A @T
@! B 
       /A* TA A (        B!BP@* #0A      0  fA  D A      ! A(*PT!$D@A       ! B!DG I!A       'D/B"DTP@A      xGT B@      #@T B@(       #@T B@      #@  T@! B 
      'D/B"DTP@A       @*TE!@ `     DDI$DNIU%DDI$H E      #D@"dUP"D@"BD         O$HT"B@""D       #@OT B@(        T$F`   @        T$F`  ?@@       @O*(TQ!$D@
       @@U"B@      @DEMQREAD!D"     @A?H NATQD@      xO ?SA "D       @ A?* T!DBA       @@U"B@
b          * #0A     ?@  !E@ADEh        H!B< *@T A!B     @ B @?TBA " D?       G DC UW D@       @@T B@        @@&YU$jD" D?         GOUD " D?        B! * #0A        GT B@        ?D p\p  I!A        T$F`      ?      @$DNIU%TDI$G D         O?BT
D! B@
       "D  I @      ! B Ђ!DT BA@!
        @@ @TB ?       #@@IT&DH""D%      ODCTP D@       @@OBLHV$J@A0	       @D'H*U!"DD       #@ $HT"B@""D       A  |U"D@"BD        @@U$JD        OhQHQ        8 H!	  HH@       B! * #0A       @@   * #0A       T$F`  @@     @! CAH* T!DBA     ! B DWB@       @@$IU$@"D       #D/B$IUD " D?       !B OȂ ̀T
A 
"	     !@B/BeLU`BD"$DG       @ BVJA       ! BO	*U"$D@       #@ T$B@(       xG?P @(      ! B@OȂ$IT@B !B@       8G?QUDRDE
A     @  * #0A      'BOȂ'BUDDA!E      #B!#G!*b!"B     @A?HNTEPYD@     B?D$NTRD}@      #B OȂ"TB A!B	      xGxT ~O"D     " D@""vU"D@"2DC       AaDЎ * #0A        OUB@        Fx""LDU&Eh     @ @@ ~T
B!B 
     ! B@OЂ PB A!
     ! D OBL@U @ A        @@WBA@A	      #D OЂBUD A!J      8G U"D@B
      /B BQO         DOB*TQ!$D@A
     ! BO$*T'@@       @A@Ȃ(T @A      @ A B TBB"DE      x'A* T!DBA       @@8TRDB       @@"$LHURF(" DB      #D ׂ)RUHE@"(D      @ A !DTA@A	      8G*TUPE ABH      " D@" I @        @@TA 
b     " D@"DURIADB!        G T A AB@      @ GOȂLBT BO      N OȂ"TB A!
      'H OJV I@A0@       !	 `3  `        P A/?* T!DBA       GD9j%DJ"HDJ     @@DNUT	@ H        #D/B$IU$A@	"D     !BO T"B@ABD0@      ) !1Q  " &0D      @ BAU"E@B ?        G!OU9$jIERR@J      #D OԂ%JSD AA
       !*	@T&8C       @@*U"D!B?A       @@U
D!B       #@B*WB@      @ BA* U"D A?B       @A * #0A        G/B AU
@        GBG  WQD!D"      #D OЂ? TGA       J!B(_!  * #0A     " D }$J\)SDIE$T@     BHNIU%TDy$@     ! G/BEUDA" D?        @@TpRB!BDD     H"E OԂRUHE        $C"|  * #0A      * #0A       @@IU$D!"BD	       @@*DPB A!
       @@""DUDDAE
A        @@"@ DTBC "D      ! C$KWJDЉA" D?        @A@Ȃ$U
@ A      '@̈VRJ( "@D      #D/B?@UDE"HD      @ @@ BTA A      8#A pTઢE@ADCD        @D/ʂT BO     <'@*T! B (      @ A/؂J(TA      B~* #0A      G D@ N}UTYDE@       @@B$IU$@A	     !B OaBU(RD A!J      @DNAUTDADA      CA * #0A     !B O"DTB A>D      ! r?!0>! * #0A      ! "D) * #0A     @HC  I @       #@ 1TBDB(       OD!DNTGDADA     ! B@OЂ@ UD A!~        O~U
R!B?B      GDI$GNIU%WD @      @DNIU%WDI$DA      @$DNU%TD$@      #D ?AU
G        8G UbD`"B
     ! B (>T@A         @@B$U$JO!B E      @@@$ 8 k@B(       #@  WjBABD(       xODV "H@ QDɉ	       @D$WBA@A	      #D OЂ?BUD A!       * "h?@@  ?       #D/A?B*U	#D         8G*TUPE ABN      @ A HS$JD!B%      'H OHWBI@A0B@      ! B@JLIU&IH"DB     ! B@BHVBH"
       B%H * #0A     P A  ~UDDA!E      @DI$DT!TDI$D        _Oy$VHO A 
      * #3     A      @ @@ UB@        @O$JVFSAQ       ! Lx"JL)VRMh	D	     Aux> * #0A      #EPB*UUTEPB(E        O"JL)VRJ "Ā       #D/B (TPA@	""D       #@@RU"F@         @@$HT"BQbB      GDAGUQD!D"      * #0A?@@?     @ @@" HT"B A 
      #BODW&BG         OHU<BD$      @ @@ U$JD!B%     #D  @UDEPA"HD      ! B y$JHhA&i!
      !B/B!UD! 
      8G?HU<JD!BH
D     ""D@ `A   I!0A      #EPB*UUTEPBZ
&      !B ` `        #@ U(JHB"(      P A TD@"D     !OOȂ !TBAQB      !B (RTRD""LE'      @ A $HWBD!""D(        @@?AUD@
        @D$T @       xO DT BD!""D(       "B   T @         @ @@@"XTRD!"BD(       @/䐈9RiB*"HE      BAGNIUTDy@       @A@OB@LT BG       A#AD	 * #0A      #D?AU
G$       /B@JV*Jp! B@	     D  I @        @A/Ԃ$U~A!      A Of;h!C?      A@UBA@A	     @ G/BJUE(QJD֊R       @O?IU$ZAABD      xGT D!B      ~@   I @      !B "DTB A!
     8'		  * #0A     @ @@ATA@
"	      '@?AUD!B      !BpbDU"D@"_       H@$6H-9TjIRI"$(        R!DD * #0A     !$BH"L[T&BH	""D@       @G/B?IUB@"D       H@"HP"DA(A      'A")LR!TƢIH"DRB      "@DDTpRB!BDD     @ A _W"G"T     @ CO?IU$D " D?       '@?UUTEPB(E      'D OЂ?BUD ~     @ _AU
DB E     !HB~HU$JD")Da     !B O"DT@ AB      @ GЂO@UR  B 
     @ AĂ
 T
J`"D      ! C!RT
O!B E	      __=LJW*VQ(Q" D      O DDI?ΑVEJ)DH?ā     !B T BO        @@L!TFCA1	      'H OAVDH!Q       "D" L? U
DB      ( H@U "D@D     ! COPUWA!~     @B "E`aR)%bA      "E	""  * #0A     !(BHoDURDA(Q       I? #* #0A     ! D_UD A!J       @G T BG      ! B@B$V&B@""D       @D/ʂHT"B@""D      @ C/?@UDEPA"HD       #D "DU"D@         $$F  * #0A        <8* #0A     @ @@"TD 
"	      " $  @B \&B        @OUF@A	       * #0A       @OȂ  WB  B 
      '@Ȃ T BO        <OȄB&JT&Cȸ!B      O DH NVJY)DH!D      r  	f* #0A       ?	 * #0A      '@  AU
G!          @@ T D!B       AADNwUTDAGD        @A *UUTEPB*       'B  E$P@A I      @BBD#@UT	ADA     @ B@OHUB@     $D$I$@?UF$
@      @ A?  +TA A !     @ HHOЂ WD 
b     "D!OQ	*:TjBRB A	     ! B yDJ:hA&I!D
     P A P~AA"E      #A OĂ	UJA A	      ! B5T B@""D        @@?AU$JD!	!      D
D)@?T@@?      "HD/ TD " D?       @(8j	J.AB     !(DPϱLTU BO       @A@OB@N> P @      @H!
D * #0A        @@"DU|"D@B       '@/ T_A
      D AEDJHHhB*B B`      A% .E` * #0A      'H @VJJ))a      '@@ƂȜT D!B       #D/B?  WB@      'HDVD A!~      '@ /T A         @O΀Q"@(      @! D"(TJH      xG /B TBO(       @x/D%@8 kA!
b       h@D]oDI$DEI     BBWNIUDD$H!E      @OBPU T!B%     @ @G/B?AUBD(`      'A@{̔)VROx	D	     ! C!$3	 k@       I!0 	 b3,.!@       *!PG  ?      #A/TG!HB?B      #DB?  UB@       @O?IUBAABDD     #!"
RI<" I @      ( H@HYTB!""(        @B7aJ"A 
?       'A@*UU
DB       " G߂!RWI A?     ! B<I~D"8i_I!DB	      '@TOA!B	     @ @O߂!BT @ (      H"E OԂ9$WȢE A)
       D "* #0A      GB@?΁VO DH!D       @A@OB_LWBD!""D(        G/B?AUA |D       G/  U G" D?       "@DDT G!B       $HHDLT@O       Q AU%*V8kJR	B(       @A@OBDL>TBG!B      @ @GȂ
T BG      8G _UTEPHD      'A/BP%R@BB(QE       "D/!~*U	#@        '@$IU$JG
,	      #D/ AU
GDD       @G/B?WFH""     ! GO"VDB"$D        _ID5*bS_I%D	TH       @@IQ$V@A	     @CCU
%6 +PARBDD(       #@ O߂ AT@!(QE       ?@@  ?T&8C      GBD# TO DH?ā     @ @OB?  S"B@""D       D
D* GNAUDDDDB      "HD/DUDF@       "HD/ "DUA AJ	      A!D* #0A      AAU2	  P  @ 8       'A !T G!B      x#@Ă	B"* #0A      #D/$IT BG       '@ ߂!BUD A	        #@B? RB A6	       @G/$ WD  B 
     @ B / L"VBF 
b      #D/ @UE(Q'@E     !B@BU AD      (@HTWEPA$KE	!      'H"̈1VrVL""@D     ! B OBLBUB@	"D     @ @O!UPE@%JE      NOȂ%KTRJP       AAU2	 @ Q $H      'H/@pV8H""E       !xGB?b * #0A      pHER}\EkZUIA)HB      8G?DU"_	!
      AAU2	  	  ! A       "PDA/EE:mQKI"E$       @O$TD A"
       @@T@BB(QE        @@$)TUBABDE     $ D@UGAQ      @ BA} TI       !B  AUA@	""D       '@ O߂T@E 
"
     D!"G!H* #0A      !D?T&8C      xG?;hIG
$        @A@OB_L UTGB*A     ! D OBLBTDBB(QE        @O U
G! E       G/ T H"D        B \&B      "OOЂ?BUD  B	      @x/D%@8k@₡BDDI      #D/ AT &GP*Dd      'HȂ WBAABD      #DB? T@ A
     @"ǀ @* #0A     ! B@$T"B@	$H       @ODU$FC?      GЂ$T G!B      'HRLU
DB      @ @O?  WBD!""D(       !B  U@JD(`      8  B8Fp       C**TTp@ÅJ     @ @O/BV$H%A      'IH"{̔)VRIH%"JETS     @ @OB UDB E     !A!>DDH9jED$Q@      GDI$GNIUuUYD]DA      'H"DLV"J1""DD       @O$UBAABD      " $ 3* #0A      'H_"̈VVJ "@D      'H_"̐WJ/@D       @G/B	QFEЅABDD(      !B Ȃ U
DB       I!OQ	&8hEV!B(Q	"     ! G"WABP@     H AxLTHG!D      @"(G D* #0A     P$IH@LVOx%"JE      "DD/T JDAA      $@@)VROPAD!      "HBDUR A
D ?      @	G;2jF!"J      * #0A  BY$B       @A@OBDL~TPBB(QE       @9$oD!?	        @G"VBF 
b       @OUO!3	      'A_B)NP AH	B)
       O|%ʤ(:_lOV%RJD*      #D/$IT AABDD     @ A I$UTE@$        _%/JD):ToIRA.1A      DCu?  I @        @@ UJ@     @ @OB?BUD B      ! # 0P@* #0A      AAU2	    !0B(0       AAU2I@`b3           AAU2	 ?A H       Np/BsW"B@	"D     @ @OB w)VRRh"D     @ @O  U@@(       #@ O߂T FEЅABDD(      @ AHVDzH IFD      OЂ T@B A	f      @@A	kD!B<
      GDItDAUuEYD]H!E      #D O߂!~UD  B	      DāRS*N!WBDB
      B$#* #0A     @ @OȂUT BO     @ @O?AUBD!""D(      @ @@"BT @        @O?AUDB       ! B@bUD@?@      /B@sV:B@	       'H/DV BK!(B?B     @! G/B?IU"D@     ! B qD"8
iB*!*B"E      'A BDXU0RA!"D(      !$DOBL$ UFD"$D      A!O;jEV!B(	"     @ @G/B?HUBDBH
D     @ @OB T BD*L       AAU2	     C     D!~D# WH DH?ā      'IHJLVH "@D     "_OЂ $IQ2T@""DC       @A@OB_LUJDA	      #!_$F* #0A      Q"DD	* #0A       @G JTP"B@      D|J* #0A      __ТILETB(Q"D      'HDL}V"fH "@D     ! B@BRV*JP B	      'IH" T
J `       " D "L$IW&BHD       "HBDUDWAJ	       @A@OB_L VRIH%B     @ @OBH_WJJP(BP%D     @ @ODV$JK%"      @ Ă	$UJA A	      !A@B$U$@?     @ @OB?BUD !       O A+	_:RlIz)BD	     @ B"VB@@B	      "HD/ T@EPB*U       _I$ID&:JoI&I.D$H      " G UCA)f     @ G/ UBO"      #D/$IT DB)a      #DPB:IUܪ*DPp!E      'I"{̀WҤ&HP B	!      !IH"QLTIA6      @$A?	t:	lKQ*B]JA     "B A=IWjE֊BJJh     " _"|QH 0@      ! B/Dϊ9jDrQ)DbH      'H B_~V I A#I	     !DAU$D!B E     ! C! 8niAb3B
D$I      !B@x*WԤIP%BH	d       @ODUB A"|      <O$IT HQ/@D     @ @OBHT`2X!~       @Oʂ$UDB        'H/@ VH_	     @ @O"̀ WUHU"FT      '@ B  WFH""DD      'A@JLT _A6	      #D/B$IVJ(Q/@D      '@$ Q
G! E     !OOʂ TF!B?B      #D Ђ? U IPBH*     !_ȄȢ}LUWG(QJ"D"B     @ @OЂV H@!,       T$F`  y*U$IT%R      'HUJG?       @OȂdT @ 	     "HDB$(T
J(AB	     'A`A}T BOA	      #D/$IT @(        O!D}:mUK"_D     ! BxQD"8iM@
"     @ OD U
G! E      'IH"zL)VRHh%V       @@q/D?:nDB_B
        @/"L * #0A      O!O!	8k-FV!(B!	B      AAU2	  D        !OOʂT BG!B      ! B<I>$#DlSHI>E$H
"       @O$kU$@
$      'JPB  WCA!
     @ @O  SG(        @O̢)VFH""DD     !@D@Ob %VTI=BID`     !B@JVH B@	      O"DH/ΡVK(DJO!     ! CBK"TA !*QE      </IO @WGA%6	     @ @OB? UDB       !B 9$jID
"       @@?AUD A	     ! CARIjE&%DC     H"E Ԃ)^UBO
$      #D O߂ UGA      #DB? R"FEH D     @HQG  ?* #0A       DG/ T
JB?B      GD9BjEHD?B       @BoB$kU$DA	      @@	8j	KD      @$ 	$IoJQ$BTCJ	!     !OOȂ"DTBO
$     @ @GȂ
T$D!B%      '@ ųUVJN
      A C)N
"	?T&8C     "$GP"2LK U
DB       C!O%I8k	GQ(D$I      'D \*TO)BR       !A 
N%R0BG
$       G/  SB@        BHI9hAO!Bf       D	b"* #0A     @! G/ T2jBABD(      #@IU
DB       !B OȂ>DT IH%"JD)     @ @GB?DUJ@        O|!$O	*;lJ2a-BjH@      AAU2	 ?B!!     % JxOBU$JDD      #D O߂!BT JP)BR      @!@D@Ob *VTIP=BH	d     @ @GȂ
T @ABDD(       B(DJS)NVK)DH!D     D"HB ITB@     "D L/UTQ!B      #@B? WިA"D!      '@0_%LIWVDQED       G	B*jE/I"B      G/ UCA)f     !B  "VEPB*       'H/I~VHO!*2C     ( HO$UJ@ 	      'ABTBE(Q%"D      @@PA/$Hb;<hGQ)DR       !<OHBz*WҤ&JH-Bj     @ @OI(T
KA>D      !!@@_~ DB	E"      'B@ق UD !~       AGȈ ~@ * #0A     !OO
"R@ B      !B T BO*BJE        @ODQ4@Ȉ     @ @OO̀"T B !J	       HQDIoB*Q*!	E      #D@(_U|"D@"RD
     @ @O?"(WB@      'H U@ A	       @O T@"$      @ @O?QW4BP"      xO /B%T @!B$     "D$O'Ȃ:$hIO
$       #DB?TBO	"D       @AGEAA
B$      'HOEwV(RKA"E      @ @O_B?V@A       @ A "OV@BOA%      #D?HUJQ*@D     ! G$U@       @G UAHԄ0@      B/H52bUO
"$DUD      UI4(   * #0A      @ A+	m	K!*Br
     @ G>V~G!       @ AkAJQ)a       G!OA8 hO%"JD       @@@D9"jDJ"$	'     @'|HH"UL WFH""DD     "_OBUD |        ODVBK!(B?B     ! _WBH"D       "|D_LJUDApA       <O_̤LVJ *ERC       zH!_ǈ	D%$|D#JD      #DB?  SޠIHQ%"DRB       @G WO)BR      </IO" UAD      #D/B̀UDB E      "HD/  U
D
          ?@ `H8     @ @O  WKQ/@D      ^A	DO5fT&A%$RJ      |!ROdo
!JI	T&8C     <OD(DVH9āH?ā      '@ B  WIH""DD     " _V$H!"B 
     #D/QUDE?"      'H ̪HVȥH (        GU"WE
A     " (CI/"B* #0A     !OOUJG!? E     $@E/BU|EBP        @A@OBAUD (BP?B     !B@?TGB       @ ?TTA@BJD(       G/B?IUB!$D     |"$Gς~0pqQR)""      @ @OȂ>"UG!$      #@ U
G!A	     @! OOA@W"I !        @@ UBO
$          ?@H8     @ _߂Q> WKQ/@D     !OU$RAABD(        @O U
G!?A	      'A@"JL U
D!B
"	     H"E8ւ(Q T EPB*      ! G$UOA	 D       G/ UG$D      _ VHI $D      @ @OB<@U"D@ B	       H@/?ˈ9 jF,Dh"     !Ao{̔VRBO
$      'AԢJLU
DB      @ @O?DWGA
       K
U|"GR      'B Ȃ{" S
@ B        O/D	:l!K/RE?I     !R?H" Lp     " B<I }D8
oA&IqD"	D     }A/	
U$ I @      ! D|!$Oʄ	/Do@"a8BHC      '@B?IT"@ 
     " DUE8*oHQ
$*WB      @$A?	4IoI*Q.BLi!     @!GO"V&L@!80      $DOȂ?Q"D@"       H
OɄ9>jDA!B	       #A O)LRUD *J     "D$Y:oJ>"TDb     @HB""$* #0A     @ @O/@DVO!_ F@       @G/WBA !*"QE        O!?IUoHfY1rDdI      |@#B"-O+~* #0A     !B A9ZmUB:QD<ɑ!       G/ U$RD?      @@@!ĄmHB%D(      " D:/H;jEDBRJC     GO߂!
~HAT&8C     ! _RJWGA!~      #D Ђ? V@ 	f     !_OςUBO      @ @OO̈}V"J(Q/@D       @ODUVp!      !D	$E%/* #0A      !<OH"{̔)WҤ>JH-"jD"      N (ʉ_:m}J"2I$	     !$BH!/D)HjDq%V     @ @OB$UT I/AD     ! BxO
^jEz"DD      @ 9j	G!$H       @O$VJJA     $HEFESJD%H D`      HKjEI)d
?       #DB? UDB?"      '@ UDB?"        ODU|EB(_      #DB?DUBA"$0       @@̀VL(d     "xBP_)8 hAO
$      @ @OReP@!B$      #DB?U$A :	     $$D$UBO
$     !B!OIY:oB!*BD"I      `p   ' C$      @Ok UO 
      "HB""DTB@       'A@B* UO
$      @ @O̔)WJH)E4G       Ox%/D8n'AA"80     @ @OI$VHIUBF      @ A "OV J(B!      'H BH VVJQ.@       #B  U
G?     !OOȂV"fJ""DD     " _VA 
"
     @! G/ UG*UD     !OT@
$      !B< ҊDjE~!b"IH     'B ߂QT @     $ OxOBT BG        HQD)iOQT!E       G	J9*jD!     ! G$S"G"     " OVHI  "
       OQ>D	B:o@?      @! O/Bb"VA !R"FB|     !OOς>DWD       'A@JLT JDAA	       @OB U
EЊB       #@"5T @ B        _|U_UIE<Qh_A:f     /@@zVPI@A$yDa!      '@B U$z@ *     !(OH2WҤIP$ID     !GDU"D@T)      #D Ђ? R@IP&1      AƉT?"D|B!>A     P$EPT @A     !B/;lUH""(D     'B *TRG?      #D UDB?"     'H ߄	laO:(BB      O*cU@ *     !B$I<*8iUJ*r$	?       'IH UJG?     @ @OB?*UU&GB*      " GxOB U*GЈB"
      O*cU@A	     $'PBHTTƧH!
      O!䒉);lO*Q&Bx)a     ! GB*UT_B%D        JDR A	U"I     8'Aǂx PƮrG8R       @G!U~@ 	D      "HBʂ$UI	 
      'A@"JL(WFH""DD     #A Ȃ.8T DB.A     $Ox@LIV&KȔ)"fD      'IH"{̀}V"H/@D     <'DOIUJDB$      OT@ B       D@  ?@H8      @@QDA5D$Q@      #@"5T @ B      <O" 	G|!UBA	     "B A {䔉8
oA*QB"E     $!POς> U"D@      "HB""DTBO
$     !OO{̔)WޤIH%"D
"      'A 
L%T IHQ7bJD      /HBBA}WH  "       #@B?UWFO:UD       _QO}$BjURDBE"I!     ?Q A"%QJ$"Q *!@      'A@" UD       @O$UFOBTD<     $"HJBUL뜒W"DP(ID      'A ϴUĠ@!
2c     !D "$N PB`BD       N@*	_m}J2"GĈ&      @DT=8 oH""Ĉ      I  P88T&8C     ("#_?D~(!T&8C      #B  UJG      !@ "ULWG!       #@OU
G!A	     %TKpOBDLT B A!D      "(GH$TU(I T)     !OOς UJG!A	      'B O1SUD !~      '@B?TO     @'|JHdUDB?"      ETq$ODDH 9jCH"DE     @#DB?AT JB!       O /~DwmEK1*"HD      '@?AP@ B       N(	m%N(RDD     !$KP߭""T OD(      "E!	;lUOQ>BDa     !B(I>;lSOQ~#HI      @Eu_*]Uj@	DI     !B Ȃ> WޤIH%"JD)     !D@B?IP @ B?A      'IH"{̀}VJ((@D       G!O";hOzQ{R     " Dx+ϐȈ:ih^Z1 2
     $ EUD@"      "D{̔)WޠBO
$      '@ B?IT DB? 	      @_?DE;hG!        '@ B.UU@ *	     'JPB V H RR      $
 %h H8     !D!"䌉9
iOQB$UQ      "xDWIP6F%     !B!*OX!:$i?BƖ)$TI     ! G$UOx%"ND      'JP  W
OBaQ      /Ix"zNP@@      !BQ~$	;lIO~B!B     'B Ȃ$UJG!       GQ $;hA"q	$H     @ @GO UDR=       B /
IUBO)"_D     P$EPT @
$      #H d VK/?B      #@"5T D!$I      AƉTh" _@|%S     ! MQ"mDh@*Q9	      "HB""DTG!$     !#Do^?)!$ H8     D$HDҜU(DhQ"       @A$GR$ x@T&8C      @!%:?l	OTBq     !B(__I~oA"A|I$I$I     !B D o@$
?        DD
AjEV(P@      @A@ao U:ro@B?A     'IH(WҤOP.D1     " G<)H_}$P;m_Jʟ*"U䨉b      'A@" UDB?"     $!@((OE=D* #0A      #EP?TG?       @A@OB_L  UܪEPU	      @@O kDB.A     D PH UDEBP      !O*Q"OBqD%      _Ċ	_UKk@RT$JJ     'B ª5TT*M 
BQD<     !O V ~AaEA      '@ B.UU@  I	1       C_cETBO
$      @ Dw)5TeEҐ_I	`     !OA?@D ;hBj$ɨ      " D&/舑9>oSDQ:B$j       @O hAO? *      @_?7hOA     !B KHOlOVRV     #JPȂDTCA?A	     $DOULUVNOQ?QD      @ );jO DB     'BdUBG?	     D%KB]̈VD
Kq*B]Ĉ       @OȂ̀>VDH q*]Ā	       O!"/䈉:nH*nĈ     @ @OB)L UO(      $ D@zI:mJ
*E       @Oϐ? ;lG2"i0     'J ~T EPB*       >O	O	8 k@ B?J}      #@"5T @B*U      UI4(   BY$B     ?Q(IDT/Q,!#     /D Ђ?BQ*WA?
b     @ @OReSxBG!D       Ox%/)DH9oTB?D      'H@)/Ą	mJ
("_đ	A     #@?kUBG? U	      @
E	U:kY@!      !D(1*/DQoB
OJ       A<?OI$nSJI$(S)      $OPI(.kB" "       O$/~Dq:mJ*"E       JIH]}nq9$NI     @#D$SDA	     #@O!	!jEQ     B'8H@BRVH BB	      @@@$Ođ	mJJ)"_Ā	"       A8nEE$$G@     "   T>UPLp     #D!ϤI8 oUV}UKQ     !OO;ΔRH$0     #H B?IQTVG!       'I _~VH2EB     #B Ȃ*UDB?"       @|?$	m%K/T=     /D RT(H!*RE
c     'B Ȃ{"T@T=     !_O@"V|KQ*]Ā	      'IH"{̀}VH(_D     "G" )WҤOH)Bj      D@2PLp      '@̔UDB?"     ! BxϨ8jIZ1Y
     $DIȢU_䔊wjC@I        OA>Ԥ@lUKΔ.E
RJ     "D y)OD8(oAhB!~     !O!UE;mUOQ~BD҈e1     /D B*V|I/BD     'T/Ђ WԤOP=BH	d     @ @O/BHVZK*Be      'I@"̀VH/©     $D 8D;h=Nʖ)RDO     @ A B~~VJ U     $OxHLEWJ((_D       O,Ȅ":nI)S$
H       HCAD	'b|Ȉ1Lp     " Bx/Kd8i%OJ,U-	J#     /~R AJE
>hO!?@       '@ULWBNQ*u	     "Dp!$OR:oJ?B U
      @ Ĕ9$iQDBaQ     RJ/>"| T&8C       ^x-%KHk+D"I
     "B y EPIoHy"}	g     !B9DToB>I*"D     !OO?HU DT)      'HT EPT=      O=ȨjMV5+?     !@D؉oDu;i	D      !OAτ9mUN?DDU       O$k9h@URUKU     $OxJLVR_A6	     !HBB)4kB
BsH	!      %B
$h@)Lp     !\x!TR$=	j?_!UbyKH     %TKpOBDLTC       @OϪwD;iOAbR     "_ЪO7hWҠ~BI
     'B ?IV&G`B_đ	     $ _/DU"_!?R     $OxDLVVKQ/ND     !@D؉oDu;i	E	`     !E(y5RJkD"B	f     "GO߂!W*Np9ZB     "'B@DUD (nĔ;     $E(8 oI$yDQ     'B "{(HUBO$     $OxJLHU"O"      A ?B;iKCּ/RT=H1     !O9j!G Ds     "|#꒤Q?>E!C	
       O%/B:_oiDz}U
       OxJLVPIH)"[g     %(O|!=JQjG DB     ! O r~WTT&8C     "HB /"	:lO?ȩ)     $OxUBG     'IH 	d:OoJʗQ*]D
*     'J<$/{I kDB?I     'B "{̔V"J""ND     $OBRLUVFKQOF~     'H"/UKUoDB"IRB     !D 1	8neCB!}Ȣ     #@@!P	IkB>I*}"K      @O!ʪiOAbR     "|#꒤Q""DC	
     '@B8 nUV I	U     "OI>LDOgZ&y(B|Ģ          B!D   
 " `       A!
 A@A	       'PI!

 @Q@( A      @$$H !BD!@       @@(? hD$H!     ">
$H>B""($@      @Q (JQ"H  	@"HA     ">
I$$B (@       @@(@Q%J BR(QA       @D$@?B 	BQ A       BH$2P$"HIH!        @@C!\ AB!       @ ">	$ AADH!       !B$2PIT"H$Ƞ      B D@!D$I $A!@     @ ABH   B"HA      @@T*D*U!TEz A     @ #(PH   B"HA      $@K" D B$Ȉ     @A?**#*R(A     B!>Hd!B
"(L      @@#HGH>  @AA      CC/D$ pQD!     B H@`#$"("QBȂ!       @# P> #A!B      A"((Hz!(CDHA     " DC$'Ј>D BDH@     @QH  QDA      !@D$*D  DB"QA     @ #(WH  QB<A!      CC/Ѐ?   QD(!       @D03B!D$Ȑ       A)0?   QD(!     " DC$P"! F$      !$BH  "QJHCA      AC?%I!IDa      AD?tT%B?"芥*R
(A      ACUQ*  @<A!      C$$ ~!D$H!       A$/Ј?!T	GҀ(A      PA DJ"TOR(QYA     " (CD/D PER
A      C(P ")KҐ(QAA      A#*.U!@ETa       !@/P!(QGHA      @A/?@ UJQA     " DC!$!AO􂈈      " DC!$!AGxA      !B 20@U"UK A      AE$" ^!THB        C#?РI$"QJHCA       @@A/HH A!C򄈏A      <@@+'H@!BD A      @ $H !B	GHQ@A     !@ /А?$  D"H!A      CI'*uȈ""]JUB1      R@SD$PD "U"ܣB"HQDA      (@
'ȈH  DBC2Q    " P$!/D*@A)Q      @P7Ѐ w!TB"HQDA       AT$H}!TAQA       AT/"(!AOA     C$?$B*!; R*A     ( A4K)D;U#B"(Q@A     w @t**(!F2Q?     " DCt*	?"!C򄈏A         ~ " D  ?         ~ " D      @""D	 $@H">P       G ? "DA	 ` p       @  @ @N!A$~      @ _	$H!"r
 b       G ?  " G         G ?"DQ	$ ` p        +  ? " G      " D	ߒ!$BH	#t ?      #D   $ DG!"@       @@P@"G 
        G !:rD	<       G %H_Ў!*B      ~$IJ"$EJ"9"BD?      xG?(QIG       " D 	  _HP©
%QA      " D 	  _HX©*URA     ?D Aa
I"D$H'      #@ (QDX?"      D^	y D?	
     ?@ 1A5TI$'H/       O ?" Aw%KJ          B            @ 
D"	 ( @ 8      B!B* B!         {#d!(@ A@       ;e* $@HBB      ?!TTEQ%dTBD      "G#e)" B
bC       {d!(!@BAA      !Ch2B!@      !C߈B2$ B          CGI"e%/ BAA        CABGQ" e(  B!A        C	Ǥ"d!+ A       !@Ad)"D!D?@B      /" e)("PI!"D*@        CǪU"eU*%PJD*       A!QQEdPD}`       C#dq)P"I!DDP@      P dE( A$P      C	II4 A          { "G "d(@/A(@         CI"e%-T BAA      ( K?H"Yd("I!"$(@         CI"e(@!EADDP@      !@A"e+!@B	$PD      "><PYI$$D I0@        CA dE(H$EA         C"G	$i4D%ЅADDP(@       @ C  #d( 'H!D @      !@A"e+$OD        @$%$jI7) A?P      / PMQdRP`      "RR¥i2$D @     AG"e%+ A?@     ATRRT@ȅ        H!^"e(@/C
$        CDi55      "~8/Z/ D ( @     !Ј~2 (*P)H          "Ǡ"e(P _AC      @ CAG<@$i2 $@ BA     T
GNS %j#0@'!D$K@      B"e(@/A       G!"~d/" O%$PJ"      A@ "e%+$O AA      @"Ǡ"e* '@*UP     'I z%(k2P.AR%QJ#        "e+$OD?"@      DR& jI2?I         Ҁh3$D      I	?I4$@       ȄDP         	#Ȥ H'"          CABGQ " e*%PNUA      @ C)$k3$D?"@        Ҕi3$D?"@      BR%iK6%0a-Q     H B)$kk2-AsP	!     @ A @  0    H2DH	 *$H
 @`      q!B@ =A!b
"      #@ ?~D A@       p!B$Ȁ~ D|D!	E!        B@ ~*DTB@    BI	/ QJ%0S 0@       B~D `I!E       BC Dx!BQ@       BC D !BQ@     B Ha!"E$~>DĊCE
        AD ~~EDB!E     ?xB!Be@
*DTP (`      	$NP~D A<       	$NP~ D A<      A#@~|D@@A         GĈ  ~EQKE"B      A#E$Ԁ?~E@D!E!      !AD D(iAQ5      R|Is ]ҪUR܈       qD(>I$TKB	%"A      A:*UT]Ҫ`U+UF%DQ     x}3$IL?  D@     y"¤O br	     " D@D"D        " D@"?"D A          H@!B           ? "DD A (        ? @ A (         A      |ADZBT)B HE         "# 0     @ !ĈROꠥJI      ("A#`       A>!     @       A> !"B!s      *&>"*,!    B/(B !h8     A 1$N !BH!`>     (?#H!(?x?            @      8A
I"8C" C     8 C8 " C    AD`A	$Ϝ  > @      " D!	$@0x  ~  @@     @"$  > @     @8 :  C      w?U8T"v!  H     "D4k   x~       (Ip"HDy @(P       r"@G|"$tK "H       	9!B8"| yyB A      PpI8"PtC#B!H       9A(9'Hq  C      8AĐ!
p9SĐ C     @pAB?H! tC$H          ?@  _      8Q*8:KȈ C      	8G!~  yB!|        @D0=AT     @t"B
"9" @t!"
$"H     @8A 9 Q C      r"HG s$
H       E¨!
\ <E¨!*bD     ~ ? 0c88"     q#A<	8H q#y	$H       88! `{A"8N      @9!?M	a90 C     x..". |!|%Q      ;ĐC
R:  " C     ( <%HJ=+T)R      p!"o 8*#tQ"%dYH       ; ~ y(DR       9"ǈ8? y	 $B      p#/B!|r#Q%       {)=Ki"T     DIa?Ȇ!!L     %?I<A.BC     r#?A8#p$AH       |"AEQ  @xS?      $=@!C     ~(!	C=Q+PD    BIGRJ. > @     q#)G38$  s!?H       wA_$8  w! H      	8"G  yB/@       <{?)"b$      w G^!s! $      $ÀQ?UpQ$u     s!/G?I!Tu!H      w¨q
H< $O    	$wH* $(>%P     @? A@ A p     @? A@ ADp!    ( 		\      ~ 1B   @        'H/H!CA Q@               @  @            @ D           ?" H@	P            a 4@PX            " D@!PA           !B"D@           $I A$HQ!A          	!"@!IA           A AOA          BR	PQA          ?BR	PQA         ?!HC$iH         ЈB"A           8AƠaG           A_          $*!@pPQ          ?DP}B")_!          ?
 AT8OA         ?" @$ACAA         D @ A         ?@P#@ FA          ?$JB A         ? AIH          ?$ C@          !B8AD         ? AHEAA         H!!@ HaD!!          ?  GHI!!         ? GH!         $@AIIQA            A R          $U @ IR        @h	@"@DADp @       $"B     ? @  h	@@DAL`         D H@2h	@@DAL` @          @!d@$ @       @  B *X	("HH!
( O       B!DA `@$8BA P        B!BHA!"      	 *"Bb    D`        A @$ @      #$H$D A	(! 	 $?      B D "D"#A!$J        '@	!@        @@A  @@      @ ?B")"         "@D		$H AB@        @@A  !CA	     '! B	@	! B 
         
 c @$ @      #$ H 	@	        '@ `@ D! H       '$H$D	"DPA     '$J$D	"DPA      @FAH      $DE	$DD$H"D@B      A B $H!#A
 AI     #$ HD1
R	(" I A%        @@A  !CA	      ?(E(N @      @O ? $H      @@@@ @ "       # @D	 A(         A D  ~@Â $@H      @EDEDDI$D @       !B   @I!1A        'A	A        @O @        ! @@	!@       # A ! B 
       '" DD"! IR @     #$H$D A	  	 $?      A B !B	L#
"     ?    @ }
$        /A	 A        @@I &Y$HDa $@H     #  @  !! B 
        @@A  @@      A B !D  CA!     #@  ADI!'$I(!       @@A DA      @xO"D $#A QH     '" DD	" AB      #H `B(ā H#       _@aDE$@I'     ' A  A     B D@"D_AB      AA A 	 J#1A        @@@?DRR$) $@H     ȁP!H!       H( D$BH?!       @@A P!CA(I	      @@A H !CA	     '"DD	'AA!E       @xO  @D%A"	"      @A  `!#!B  @      @@BQ  '!         @A "D!C
"      A B !!C
"      @A  @"!B A	      "B$%)DB))? @      A B "D!
"
      A B $ /        @@DD
 O       B G@?   ! B H      B D@H  B!B A	     # DD" A(          I@A?	)!"DD
       @	 A
%!B       @xO  @D#A!	      @_ @ACA	       '@     !"@@       '@  H!!@"$        @A   |"#A!$BI       A D   BC	"$DI       @@A DI	PAC	"$DI        'H $ >D! I!$         @@%:*)"TDE) Q       AB (P!C	$DH       @@A I$H'!$H     '! B!B	A       B@D("H`EC"$DH      " K"`B%ND"'2H DP      @@A 8pP"!""$       #!B$D	!B      A C(HE!!
b      @- #1A   @@     ' A'H	" " D        
DI$DH!!B      @DED @      ? ( p@ Ɇ         D@H"(D $C*$dH      @@A HHHP$H@A `       @@A $H @$$H      @*"DH"D        D H@!Ҁ  '!B 	      @ Q =J-T*UQ$I(!
(      O@ Ȉ
"$EȈQ"B        DADH       @x_@I$
HI!$BHE       !" DD!
 	"	A6     !"D$I?I! AB         @@@  C?      #$ H$D%	J	QĠ!B      #$ H"	_	%Ĉ$"HE%       @@BA BD ?       @ D#A D@      #$H$D*U	$P R@        @PAD	HE!B       D $        @@A @!ÅABDe        @@A "ABDEH        @@A 8pPB!""$       #$H$D?A	!B       @- #1A           /A	~		!B? B        $  8"      B OD		dH\!$$@H       /@$ D<I	$"Iǐ! B         @@B @@CB10      A B (@(BKB$(       #  @  	 "IĈ"$(         AB @D$!"B
"      )H HI"4B      @DEDDI$D     'QDaDE$GDI'      @D	 D . ""?     'B`!AQ  # H" @      @@A  $!B A      @@A  $" D@     !" DDA  #!B        #@ a@ D'>H P      '(P$ D@H!!@B%       #H `B*PD)H"P         >D$"H"$      HDI H$В	$HD @     'PDaDEDE$RQI$@@      @@I ?H @A	      D H }(JR)R$IE$T@      A CH1PX0        	 J#1A       @BH H"?      @@A T_A!B	       @	D"E
%#ʄ!B0        @@A 8pP"!/$        B D (P |A  @      @$I	$@ADI$D       A(WQDII'I(B$IB     !"	~$P$K!D	@B      @xO@)RH%!B*D$       OB H
O#Q"
$@      BD H!BC!B!~       @@A  @!     ! XJa)DJE)%JH! B        _Ja)DJE)%'r`I$@@      @_ DHH @P @     # AD*A        B@D(RHL
 JC)^%I      x  @"       @xO"D $#A QHɁ	      @xO  @$A!D	       $   @       ' A	H	 AĀ$      @@BI	@A
       B G( H	$GˈQB $@H       @@@"(D%!"	"      @A  	B#A      BB HD
H#A)BbD      #$H$?@	"I"D%       #$H$	H	IĐ!$BH!@      (@H@?D$$S1$EHA      @@  @      @DI ?Ȉ @G     #H `C(D H" @      @A B	@B DȀ      @@@@ ( HA#!B      BD H/	D!B A      @$RQ@A @      #$H$?D	!@A(`      @? 	 b3,.!@       @@A $I$H/
"      @A	DCH,H       @@H`BÉA"BFHP @      @- #1A   !"BD?         %@      ""D@ ` @I!1A       B D@(PH$AD$JO       @@A' 	       #$H$D 		        @x_ D@@!"D%HP @     '(d 	 " D        @@I? ~D"!"
"     '$DD6 #?       '  @	  #     #$H$ A	"I`(`       B OH(IE!B A	
      @(  G!B A      @@@@	$J%'I"      A B $R*SA!     '(P'I(E$I$I @$      ' A$I	$I!B E       #  @$vH-T	("IȈ	      'PDaDEDE$RQI$@@      B OHA	Ѐ	|E($I       @xO  Ҁ  %"HD? B      @@A _*#"T      BD@	@@        	!0zP)RJI$@I     '(@P!O"
D$!B      @?āH?ȁ"?     / AȔ)
R$H%"HD       A DH_"!B!J       P "! DA(Q     /!@B?JH)
R$8 "@D       @@_$H$
$        @@A OA"       B D H@IP	D! A     #$H$    AA      @DI D	 BC	"$DI       AO
 )        @DI DBABDEH        B GJl'@G"        A GHQPXB A      ?ࠀ>	 J#1A       "$N!h @     'P@a}D_EE%R_I$P@      @@_	 @O	R
D"      @@B@H?H$C?       @@_ !ÅA
$       BD("H҉	$D"D@      @@I H BABDEH        @@B  @@	      @@OH	 @'       ' @@?@	" D       @@_?
BD E       @A  "
B#
"      @@A DH
"DO $	Ha     B D@"D_A	      @@B ?RJ%+Q)DR     '(P$?H:
%)P)"R Ā     #$ H"	D	!@       A B@)H$I'A$"H      A#AD	 	 J#1A      #$ H?@	      '$H$ A	"	pB        DI%[E[$HI!$ A      B D }(JP)RI'I)$K      BD@"D_A!B	      >D$"H#       DQ^cI'     ' B   A      !HH I"$A      '  @ A	"	!        ADHA!A      @O  @G!B A      @?A @? @      @@B   G!B A      @x_ AȼH
$JSA(P(`      @@_A} A        P@A@?JR)R'I%$JH      @_A D!B$II#     BD@?  
"      @@A IT ACA	      B OB	"@DP @      A.N R`     @H!
D@I!1A       A B5 /A$"H       @@A$H$!B
"      CD@WȪU
TJQ
%B	      @@A DH
"HBE       DEUTUEUT^UHA"AB      BPD("	$DS!$EHA      @@B |  OA	      @_HB#AB     K T)T^)H$D@      @@@O  $ 	       #$Q?(@?        @)D#A1B       @@A HIPHJc(`     ' @$  A
       #$H$"	D	@       x"I	D "H! 
       P@A h!ABDDHP @     #$H 	C	xB$       8 HdH\!B$I
       1	( @1      @@B(| @B A      @pO  	 DC B	     BD *YP$ˉ!F$Jo      #$H$D  "AT       D H@S験i
(JSA(B	A     B C @O"%DI        @@O @#P @     '  @ A	 !B      	  H"$A       @@@ODH !#A	"DHI?!     #$H$ 
"$E @$      H *"H?DD     #$H$D?  A      @_HBABDEH        @DI D	 @B A      @OH $B!Q      GHPH@H  A       '(Q?DH  A     / _"$DH
"'ĀF      @xO ($H%  C(       ' A  !B         pDETDE^UIA)@B     #$ H 	@	PPAH0      CL 3 @        AB( ' D@     BH(D	G!B A      ORHiQ BI#	$HD
$      @@@OBH$  C       B G_!R"!B?      # G D? 
# A6      @@A I	$TQGA	     BD QJ*BB!B      'PJaEFP_EE%R_IE$P@      B G"	"DGDI      @xO ("H%@ !!
b      @@OHE'IHB	     #H `B(ā D!@@     #$H$ A	"		"$F     BDH PHJ	D!D       @@B  @ABDEP @     'QDaGLE9%WDI$@@      @@_(Ȉ B D 
      '(P?@H  A      >/R$$DHD$!<BH       #  DDI
II #      ADR"!(!AxG B       @@D$  BKBA0     # E
$(IB	 !H	R(       @@@O@H
 @"     '@A GDE$G$DP@      @@OЂH B#/(        @8]JPJA 
?       .DD!O% P        P "Ј)FSp#$IJ      @ *"@
$       #!B$?!HB? B      !D!~@/D H"P       @DI H?((       AI$@HQ"T"       B D@/BD!B%B       A B H HPBCA	"H      @A D@H @	@@
"      @@@O( H '%	A     BD@?A!C	$DI       @@_?HCAE        @@O !#A	"HD     B_H  BO"D@
      @@A IRAÅA
$        H@H
	D#!
?     'QDa}DEDE}$WRGI$D@@     #H! C$GQI$P@     #$H$  
$EȈ%       B GB		$HD
"      A GHIf#@OB$DP @        ?A) GAP @      PEDEDI%AA      PEQEE^QI}$AA      @
@,P^!
BD(      # I$HHB	 !x	      @O !D @" D@       P)D D@      @@_	DP@        GB(" G!
l      Đ!P~Q"EMWUR&\H"B     '(@P/B $!@!       '!JTD)J 'H	B)     !" G @"IĠ(`       @_G2F!"J      @@@@ (B	 C	       P@*RMK	B"$DI     #@A!EUDE9%W2TI!$ @      @O 	$D!?	       @@_?I$ 
$       'QDaDE_EE%R_IE$@@      8GA *
COA$     #$H"	D!"HD!       @@B  @ A      @_  ABDEP @      GH"RR"D        @vTQ	$TD . ""?     OA (FVL	T$iHB        @@@O@H  BC	*L	       @O @O!B	f     #$OD?  A
        @DE@ WI%D      $$$ID DI$D       H$HU!B$ID     B@C ȈLB?A     B_H?B"!? B     #$H!	RBI II$      #$I$$I ABDd         {$     B D@{"D	JQL"D       @!TA@E^QIE%AA     'QDa}DE%RQI}$P      @@_?HH       #$O$?  AA     ! 	$? @I$      B GpH"
B+!*B"E      @@_?	$AB9f     @( C!B A	
      @@_'! A      @?AD? @      @@A?@$?        āT*D!H$
      ā(D!*H#       P~ ( @ABDEP @      @@@O( H$'%	A     PETDEԕ^UIU%D@B     'RJa)GJE)'JI)$     ')TR%TzE*_'@%%TDG     P@PH+IUCB$D_       A B@)HR%+Q? B     '(Q?DH  !B        @DIH
""@D!"
"      @$@@)R$Q BH!      @'8H$9@	 A$BA      A}@B I%I
      AB H $GBDDH(        @@B | @GB*      @@@ODH
D%K	$Q	       <OIH $ !P @      @@_	Ђ
BC!(
l      @@B  IK%"JD      @x_ (DHI@	       @_"
" @        @_(@H
 IåAJ$      @B@D"	 G"Ȁ       @_ 	G! A      @@B( 	@C	"R$JB |     '(R  AABd        @@A?HD${IJD       $ @N	 @        B O𤨉H$
B(D#	"RJ>       JE)@E{)$D      @@A I	$TAÅA
$      '(P?@H $!D!B$A      @@_? D! A      @A _$	$HG!B?H      AQGN PC     # A?
"
# AE$(         @- #1A )Qb¥IRT     B_H "{	$      `pD  #쀖$	Fa      @?$@_DI$T"       @@_I} PB#"      @
$P @ @B%
Q@     DH  A@@/A
l     B_H@ GH"D        A B@	$!#A<	$ H      @ _? $OB?A     E KTIU%^II%$D"     #H!?C$ 'R!H}        @@@_H	fC!!       @@D$ (BKRA0     DeEUeēUIU&DD       @@D$  D!@      # @$  $EЅABDd(         @@_? D!B$D      @?A DJ	 P"A      @@OAD!B<
       q~!BGB+QxQD$I      #$H$
"'Ȉ?$@      @A O("H"!#A?       <OB($B  ?
"       B*"H?       D(EUG^)H$D@      A$.$"H       A D D	$F#"00     #! A?
H%
0 A
$       B O
RH
"      A_
	 L! A      @$@@At
	KQ*B]JA     ' B?JH)
B$MA      @A@D@H_i 
*TOQ"}DUD     B _$! A      @_?A PP @     #$P@8! * #0A      @@@_HH"
| K$BE
6	     @ _$CD"*S/DTUɐ      @@_IG!       !@#TI/'J(DRB     #$H 		DH/B     #H! BI	!%RQI}$P@      @O!DG"%DI       #$I$$I ĀB)a      #$H$ A 'H%"JE      |	$@_DI%AA      E J@)R	 @I       OQ}(QRHI ($HI     'QG ?#"?"!      B _ D!B$
      B _	D	T'A D@       @A@D@Hh 	GA"      B DHTR
J!
B	      
  "     '~"HD	rH
'%L"E@      #H!?C$ G H       @  *"DH""DD     B _	$HD
"      @_ 	GA$BI      B D@"H	BEBH
j      D O(P O	?A$H      @@ DHIBT/+$xD       @$UH.?#"?     B _  ?
"     (BH^	IS$y$HA     '(A?		I?        @@_I @$P@       )D }@ B      D HHHPP	 \"$DH"     ')HR=  !  B 
        xA#)_#!B	     #H"`B+D/!$@      @ ЈU*rDO
$        @_ " D! A      @_H	 	G! A     @ )@I      81_҄%D"$DH"      @@_?KD      A OH  D        @@B($""R      @HQ(  O%"JD)     ' B?I(E<I$I$I$      ' B I@	 !       B"	$UL"D'     ' I$
 	"	! E       #$H$ 	Ă	"	!        B D (_B	GB*U     A **HQ>EDUD      @ ]B|J#!
?      B<DH(#DRHI>E$H
"     BD( B+"D8     'ȑF	'ĩ'ȑ"D'      @_)E	@@
"      @ITHDz
JS)B^%JJ     B_H!~/AB0D@      #$H$ A $?      DHN*(dR@$ D@      @@A ȀO ""      @?$ A @      @HQ( @ DCBU
"      !$I	$@_DI%R@A     '@?B	 $G$D@@     #$O?B D      B D@"IW%׊BJJh      @_(A(HO
"     #$OD?	A     'DA
!DEDE$G!!A      #$O$?@(IA      @x_ 
"H      CH  hAc3B
D$I       C\ D%)H'S(D$H     p !K
$A	 	 J#1A      AB@	J& D@     '!@B?JH) A     #$OD?  #("HD%        CH c@D"?      @-"B      <OIH  @"B%
6      @ E*RH/DD     A @ 	$IE3A		     B _? GAA      B OH?A @N˅
$P@      @@_?O)B?A      @_?A HBI     '( W)$RHI
%@/      BE($Hϒ	DsQ)DbH      @@@_!~ $ D@      L8P(qȀ @     HAII( H?DD      H)$ @	 "      '(P$?@!!H       ( HQ*_D      AOH Ѐ GB
$     B_(QTB'I*$ HB      @@OH? D!B$D      @HQ?
F3        (ID^-OU+QBPJ	!     B D %$J䀉/S,BT*EA      @DE@*
_A2      @DE ?'	!RPI      ')R$=DJ%05RD       ')R$${Ȁ $%H B      #"DD.HT
T!Q)D      GA`(!
A#"H     '!@RD
	 	"	B        D IBT#!B       @@@__ȄHC("PE      '(@Q/PHA
%%@I"&        @BO H#      @@O '	B1a     A@@ 
*G*( P     BD@@  T)      GH ?Q4 P"$       !@"BH8 #D    @       8GA *TJ
$       @@O	 @%"JD      @@_?HH!
$P @     B _D  A      @_(A%#AB(5I      BEITd DI$D     B _?" D"@     #"DD6 #Đ!D      'P  B	/ࠄ ! @@     AB@?"B      @ \@QK!*Br
      BD@ D	GB*U      @A$@PQU *TJ*UDA     #I?C) RUIU$       P Ј*"H! !J      JU }O+Q%BL     '!@B?JH  A
$      B(_H	B+Q*B#HI      B OH  '*UE 
       <OIH" GD     @ G RHa %$JH     B _@!C	#DI     '(_"$"
B!!3      I\@WȪ
*TNQ*Q	D      @I }0#TROI!$DI
"      @DI H?  D!	      @@_?hK+	        @BYp(DH
"@
     !D!~@/D H   @      @A OH?A	@!?
"     !,PP=DJ $)P$UQ      @@@OIH!H$B!~      '(W"L(EY%+Ԓ)D$       @@_?@GÁ!?DI	Q @      @@_PD	@A"$P@     'BaD!{!$R)I) !      #H!?C {!$Rɭ P     /$ HD%$sB) A     #$ K?U	dBD       B _(DH
BAAB'HI      )}PU_5TB
"       @_~ ""Ĉ     @^ QDIB)#5bR)"R       "BA      B H 8 AJD       @@B$҂	GP
~       @$@@AIKkQ$BT'J!     /  OD  %H""DD       @@_?A	DB"      @_?A H(_D     #H!?C! TCH"$      B G_ D#RH!A     AB@!	JNs!! B     D H@B$Bk*(BR)"R      @DI	  D      UHIEQ	 J#1A      Q c@@$*     DNH'Ђ
$HO
$       #$O$D D	#B E       ' O$D$y  	ǐ!B<        !A( @       >" $B@+Hq "@D       I"ODI$E4EDIDR(L       @_?AAKQ)a     D OxHH@OD! >     GHPH_H  B        '(R$/i$
~$ $@      @_$H	AAQ)a      @|_ (H%	@@DD       @A OH?A@"#!""        @_
 H'!$H     PB_ !DG!B$K       !AHI*$TD(Q      #"GD!'H	B)     B_H $HI'I+RddI     B _ 	  @	     #$ K?U	d "HD!       @@A D(
"<HCA"T%(JR      I RxJ1@ O%"JD       *T)( @O
$      DD D}訁)R1(SBR% A      @_H| $#A "      P9R-HIAT)  @     OA@)T"+T!EDA     D@HDDD*+TD"L      @@@O(?@D$"_ĠJ@     '(_"$I"IĐ       B G$rC('*
T$U      EP_H* D@B$I        @O
 	G!$H     @@@ I /)D	%TP      B OJIPXA3"p       DJEEQIE%AA      DDE}DQIE%AA       P
I*F""DD      BD IGQB$	!      @@A&IK1%"QDɉ      A~+>O!$BH	"       @@A D(q
I㔑%B
(       @*@ڒJ*#@)PJ>       @@@O%/Ą	     B ^;D D#A%$BI        OPBH	
 K/RE?I      @_ DAAQ)a     ADDUI$DEA      !!@g
@I#쀖$	Fa      B OB	
"H? $I     OA@%(JH  BDE(@        @ Pw)@SX)E
A       DDH ҈ '_Ą
     HI I ?I$ I       @@_Ȑ(HX!
$P @      AJJ Dq+RÁ       B OpUHQB	z@I	Q @      (JE)RIj%0DG      @!$)HG       xU@RT
?       *"@     OPT)uR(3,B2%      $H! P)PDq%V     GH?@&#TUS"$E@       @#ABB
		 J#1A       |!$@J/D@#a8BHC     '|"Eq
*'U¨E_       @_*I	@O)"_D      H$  B       A@_Ȕ
R@B?A     D] )E	
I+QB"E      @A O(/Hb"'"R$JB |     H W袑R
 K/PE?A      @?DP+B_A!"T      '( S$DH 
%UʨQ.@      @DE@HH!
$P @     B ^;D@@     'BJ`D""?"       OA('	"      @!0)@?     B _ '?
"      CH ?B /JD$ D     B _$ D       @! $*HC!BD      ;D@_A      H$( @_?      ||!B	%  AAI	      A~+HOA~$$HG       HJHф	>DA!B	       @{H*Jq*j/       @ eQUSB*A
     DOH? 
RO      @OA  '! D     B _(J+A?"      @@@__ȄHC%D(       '(_"$  $       @DEJE)JI$DR     B_ HQY
B!*BD"I      O>B@	?(/S¨!
BELA       @OD@ 	D        @HQ@%
Q @     BJ ArIB+Q*B"I!      @?%DR       B<_H}H
A'IqD"	D      } "_K}""DHB     ' I 	 #Q*D        @@_UHIU TDQ
"     '!RJH
b  B       @H_ԈDC"D      '(_!J*
$!      B _?  C;BIQ@     @HB""$	 J#1A      ')HR? 	$"IĐQ*$         IA/Ѐ!~
d$I*!      @HQ ADB#Q"     @@56+I$BO	"L     B_ U
B+Q*B"E       B O	H	TC?D      A  TE!@A"%
Q @      /DO+"UDʊ"     ')HR%$Q4 P"$        @HQ O!"zIh     BD D$
 /K,UE)EA     BD D%	R2S": A      @_  @     Q G?H("Bi  @     BU Y
TNQ*BTa     'BA!@j'QI$@     @B@Ob		DC $I      $GPBH TH"
	J"      A?PH(@DMS3B
$       @ Ј*"@DIB|      D  D"T@       B OHU	TES *J      ODH 
"$E @$     @B@OD	DI       xOI *
D!$I      @|_ ('	5R@L       @GA 
\H""uĪU"     '"T=1FQ #! A        "*"D! A      @A@D`8  /{%")D       O R(LHDFK)"RD       @9$@ IU%T     ')H^!JHs ' AA       A {(
A+QB"E     B _	DO? "     'R{)GDE}$'DI)%P@     'R{)G_E$DI}$P@     '!@B?JH	$!Q
$       @@_QHAD$Q @     A ETNE?#"?      B _(JI B'BI      '(_"$"D!  A       I0RP D D@      @DE@D	DCÁ!DI	 `     'RJa@/ऄK	 @       'B)G ?#"?'        <I0ROI$$HJ     # O $? B        @GI  '! D      @@D  "B     8B%H=$TH"D%@     #$H")_	!HD!        @ bЈ) V$DH"     E_ )	TOQ>BDa     '(UT'$DH A RDB$     GT(HG       !A!	VYI /?@D
      @@_ɐO{AUE"HD      H__`O;(BB      8GA I)HX!
$P @      @GD@ $$?	     B _JHU D! A      @DE@I	G!UBA	     'Q_a%G_EE%OIQ%     OE(VJH!	P)BZ     @@@$	 "S.QDu     JU }
B+QB	 !      H! 13쀖$	Fa       OHBHA}D! "      @GA  G!$       @ "(L$H     R[D ." ""     B_ IO+Q<BH)      !)+O+Q&Bx) a     A _?R$ B!*      #$OD? #$0      q~I'I+Q QE	 "      +TH""(D     +PH	""(D     #H! @JE)'DI$D @     G@B5 '        '!@^%$JH($EȈ""DD         \$HH	""}ǈ      @BI("|DC"*Bc     BPHJ"
I%J$I/     _D@*TPB       'R{)GDE}$GUI$DP@     'R{)G_EE%R_IE$P@     B ^;D D! A      .xP=@H	$	*J@       OQDH9
 _ D 
       ADP+ _       PE_EUt^UI}$RDA      DT=  H""Ĉ      @@A D(
K/B"	      @?@PE*O!T'     ')HR=
)
R'H=J$@     ! )*R@%       @DE@@) 	@""Ĉ     Q~0+HO~B!B      ')H_?        D NxTIY*>"TDQ"     OA@)T"?D B      A@_(Ȕ @B?"(     D OxHH  HD!*$     
bp!('?A	 J#1A      G@B5P#، 2       AD	$A$TAA     @DJ!	DO "       @@@_H"HO2~D!{I	       @@ao U*r@B?A      DR& HBI       @@B  IK!
QA     @ _TBIR*+?R@(I      IHJ"(@G?I       B _(UH
rTH
"     #%(JT  	"0`      B_pEROQ,UE$I"      @?@PE+ G!       DOH? 
R@!      @$_]u
H/	A"*$QI       A?Ԓđ H _       @OH	 	GB}      HI@
	PE3)D	       @^ H
?OTBq       @@A $(O '"%      H I	DA!B	      B ^;D @$P@      AD*
_Q<BH     ')HR? 
"KIxB        OT Ȋ
*H"M*(      GJP)H  %RR     DEH
A
%U(P@      @	 +DG!"8      @OA "	DB?"      @@_H$ H(_D     DIH	Д	TGQH1      (HK_HR!JB/         BxD$Q6J%     B ^;D @$
?       DFA
 UDC      A ?Д TI+!DIB|     BGX_Q~A#A|I$I$I     '"D$=!  I)`?      DO(?( 8"        q $ҨUDWUS(B!     B DD]H*"T+RZEA      @OD@
TIS%[U)P     '$QDH݅Uv$EؕQ7bDD      'PGAJE"{ %H@     ')HR? A!/? B      _D@ 	_!?⤤I        @_(*R ES P @     H*@D!"
"     H* +D@I      OD@@H Bj$ɨ        @GA  EKI*U     OD ?BE+B?b      GH   DO? D      @_
IU
X@!       @O@ ? G2"i0     G@B5 /%"JD      ARJHES       BD D$IB*(ȟS: A      @OA   @O? *      A  @O?DD      >OIH? @ B?J}     6 )**_˄>"D8      ĄsR%TR      OE D	DC"8      q GQE%J      OT@EA GB*U      @@A @(
RG1_      OD@?@G*U     (CTEH/ȕDA!EA     '!RJH$*!"      B(DH+ $)H"ET         )+O DB      8QqP$^@+Q|BpR!     PJ@{cjD! A     H*!@N˅
$P@       OP"H~%(DB     {)CEqDDI}%AA      % `"_.UD݉&     _D@		D_Ġ      '(_"$ /HI      O$RxyHQ%I'yQDJ%1      NUPQ@
DJ3DD
"     DȢUP𔒪wB@I      |!} (O?@DD       @|@B($K/T=     ')_$D_Ȥ
%@1RAD      @?AAHJ+?<     B _?LB?F      ADP+$Q'B?A     @ ^KI(_)~W<T)$RR     D OxHH 
RIK!R	      H*@	      @? )+G! D      @@@_H_ȑJK)"A     IHJP(Q DB?	        @	 w) O*UE 
       GIP8$	TIG)DR      @A|IT+HHB?I      @_Ȕ
 $KS-"Q 

)       OP RHI
 K?RE_J	     OD ?R('"*RI
c     KRXRPBEJWW)>R$Hz     B$_H	ФiMQ6(YKŀ     DOH?"B#!** `      @!*0*& O/QD     P_Du.
I+Q.BHu     ?P|K +RpQ      B|T SS"J-      @_LC?D       @	?+@O?J}      @@A $H~~% U     D Dx$Ȥ"$KXU#     !(H+{14JQ*"         	 ;_RU˒U      !8@SQʨ[|BQʮ     '(Vd$D}wU$@)$      @@O(
Q+QGE
     OE@	TN?DDU     R[D! D"T@       U଑Ҁ%U{eEP       A"K/H       x=@IUQPAC{        Д)$PDBaQ     )E)A | 	$JA;      ?!	 J_3<*"HD     B _xEPQHy"}	g     B_8HTB?I*"D     |!#R?"N)W0
E       ~B?@@GL9     ?P|K$+<RQ     B D|$#B_/5@     !(H+@5WTJQ*R     B5( _AUE"HD       ETKpHHDQB ?@     @ ]T/B5](֝'Z-hRRB     @ _L 	 Q((DTTR     	 D 
=ԪURDU     OD@
RJ(_ U      {){D#      HB_d	HGA?Ȃ      @T Q$|^URUKU     ')HJT%$?I	$# A      H @Q)EEB.I	!     @@A@DDh U.?I$RJ     D _(?D$#"?R     ATROQ>B(H!      @O@ *wDOAbR       @ORH	$G)$OP     {)_E^_IU%UA     y UQR+DCBD     B5( |_:"H"     OQDEB|)''B4*Rc      <OIHȔI!%By	jH     PGUPUHU O D     BGH!E+q9Z B     "  UUW      OB@H(yҔ'ǀ)DR     (( I$yD Q     IH^({ȔDCQ?D      
*)R@Q-π?(TE
      P@Y$( D Ē}&      @Q@%UW_D	     A=JPP(DCQ?D      DER&ZIHH     	?UpIT "}􊨥P?     @ _|$|@ *W"}T R     H*!F3IT      % kP+O?Q%;D     (|!=1RQG DB     ! O r~WT#쀖$	Fa     ?Up)T
 *"}(P      (%J"QRuJTH       OR HDPOA.E{(      %Wj> P!SGO       EJ(D)rMT/>E(0     HB_("
O?ȩ)     " jЀDB?I     OR$|HwB)'J)R#         	  URU˺%     @ _|$|@ ""}#P     G@B5'${>U$D&     I_U_IU)?@     J<^({Q DB?I     OD@JH)DOQ/DDU$      @OI 	ҪOAbR      DDQи<'$(u   "?@      DDIȨ,wt@I]Cp*I       ?@@H	||"'RUYY     ޠ$)EWHwJ T
     BU tU$W?>E)QH     ?9$0Ih_/>(GЅ     BUtTDW?Ԁ>EQJ     BEн|du] )B+b? H}        A"HB  " `     $$`       A"H!@ A0      "D!D8 @ B$p        OBH  @@AB(@        H"H) 
" B      @TEadDAJ!$"      BQIE)bD!DD!`        $dPA!D@        GBH  @@AB      ?     " " 0       @@BH  @@AB       "D!D8 CA         ? l8 " DA D`      O DH? ABD(P        @@R&YI$"hDIR(P?           ?  " DA D`     @A?Uh dAAJ$     " """D   " DA D`       @ BB@
  D`      @U%ddI$DJI%% `       #@@
I!$DIIb(P%@       !  	""E	 @     ! B@E$II@ B!D"PH@      @@@ALB`P`@ D@( p      'B E"K"D!HBP!        @@ "  " 0     @ @@H"HD AAAEAC     @ A !HD AAAEAA      !B E ԀH!A!BB"A     AYDdD
@&@"      @ A (JHH  ABHAA        GAH4"DHAB@       @A@ D!B!DBHBA      8G
?QHD"PDHQEBA      "DA	 , 0 " DA D`     @ A J(RI(@!@BDQ!B       @@BH  @@_B@       @@H8!PDQB@       @@EJKTHȐ$ H@@BA0A     " B@A"$HH <O@A@     @ A ń	H$ BEQ"B      A @ |H" DAHQ(P        @@B$IH$#@AB(P       CA  " DA D`      8G
 Ȉ" DAHQBB       ?   q " DA D`     @"J%(>B""($@       "D!D8@! Â	hB      @ A DH @'A	BD@      @ B
A" EAIPH?@      @ @@H0P AB"D@         G%J H"GH"@        GDIU%gdI$GJ$!         O
HH<"@DIR$        P@_H8!PDQB@        OE@=JH("PGIB@
@      OD!Tdd GJA%A     ! B@IKIH'BIDQB     P A  H~D"DIBaE@     ! C
$KH"HDIBR(P?         @@*@ HD!@CDH(P      @ B
I	 @AHJ@      @EIY%D DJI%%        @@
HB  @B"H(        #D P?AH"GHP       B! ?@)AJD     ! G%JEH#DIBQ(P?       #D*/TRȥJ"EJRP(PB       _BA	P@ C "$Da        ? * p       @A EPK  "DH"PH@      '@
ԈR$J)X`(@P       @@RK$IH$'@BEAA     @ A%XJH(&A@@@       @@CH"DH"PH@     @ @@ 
H @@AB       " D 
P H|! BGH @@           C  $$`      H    JJ@        OBH~%RD"HH?@B     @ _H|HI @DI"b(P(@         G%PK AH"@DH      #D%PK H(P AADI(P        GE)JH/D!HBP!B      xORK*H @@AB(@       8GR$HH  @BE"R(P(@       "B 
 H  #@@@        #@ C	!I #@AB      @ @@@AI!AABB"A       @A *UHT"EQJUH*      ! DH_Ʉ"D!HBPJ@       @A@EJ@TH  @GAB       B	$B S  $$`       D$HPP * p     !B H  @OAB@     @A*T	$D0A  HH@     ! B@bDH8"EQLQD@      "@DRDI! BADQ(P     ?@  " " 0            I)$        GE%JI"DIBPAB     ! B@J$H)$BADQ("P     ( H@I " DAH\P       @G
   @GAB       #DW T@ȽJ"E)KP(PB      ( H "dUPȡ(I)TA     @B ")DRAQA"EHA        @@BT!H DCXBA1A     !B E_"HD'@DBHH     ! CE
HP$WHBP~@       @A@EPK@TH  #DH"PH@       @@RK$IH"H@ABBH        '@  AH"GH"@         X*HE        !B EcH%R!DBH"@D      'H*DT"$I)TRp(@P     @ _P?J"DOPHE@      "D!D9 ?      @ @O@H @ OBD(P      @ A H$HR"JAQBB!@     @ GЂEEH@$RG@H
@      #DR?AH"GIR       '@_ AH$"HDJ"EAA      A 
5Q  OA)"P      !(DPű
TTȇ  @OAB@       @A@EJ@T>H  '@BH       A@_H @AABHAA     # BD$B)(@  * p      #D%"DH$PA@N@      @ A	2$Ъ!UD 	B"     H@%AD0D@( p      @EJP 'TI"SH%@      xG %TK H @OAB(@       'H`Ԁ}%J)Wh@P      D " D@( p     ( HOB?IH"HDORHI@      #@ JIIHI #@AB      !OE@?H)AB"@H
@       NE!O%J!IPP      @ @OJ? H ! BADQ("P      ! C)HJ!DH_耐
@          `  (  	B"     @ @G%PK?AH"@DHP`      NE%K%PJIPP       'A JDHX0$PAE"R(D(@      @ CEU6I @CA@     K HD%@D3      'IE
XT"$I	RdHIDp       A %RKHD%B!DBH>@D      H$, D@( p     @ $JU	D" DA D`       @GB$H"E)RRHJA     ? C H	          "@DRDI   GH"PH@      !B%O ȁ#D	H_PB      D
D*T!gdADJ%`B      "'!A?" DA D`      G  ? I"IH        #DPK? H  @@_B@     $ H@B	|D  D@( p     @ B % T"HB!F!RB
bC     !B@JH #AERD@       G?Dx$!HA  	B"     ?  `y=%Dy(P HD@      'A _!I   GH"PH@      'H*Ԉ1r%TLQb(@P      !B%HK?H  #D	HP(P       @A@EJDT>H @GH"PH@     @ A%BOȑ""DDIR(PO     ! CE
IH$"HOBEAC      !|J*BT!&IIQ`(@P      #D% @H"E)JRg@Q@      ?@A * 	"!"     @ @GP I   GH"PH@      AAƅTH	 " DA D`    D~?2ILh	D&@4      #D%_ AH "$GQHQPd     'HbRT"DOPH@     @ @O_ H  @A_B(@      !B  "DOPH@     @ @OHUI  @OAB@      @ʨJ*¨
* $$`        @@*J"H !@AB       E#DE(
         !$(D* p     @ @OPK w)R&RiDQP     	 " 0 B"$Da     ! D EJTBID @BThQQ@       O DVk $~G~%	$D      'IH*{Ԕ)R'IIRe(JQTS     @ @OH #DO@H
@     !OEJH$"E1L"PHE@      GBYD%~G%J%%%		`B      UHIEQ A "H       A A!6R%J )ER(QHA       @@ H"H@_B@     @ A%@H"G9HP(P      "D!D8
TRDAE@A      @	
GS2"F!"	JA     ! B 
bH#DAHQ@@     @ @OPK #DOPHE@      'HU*Ԉ%TJW`(@P       Px?D)
(! 	B"     @! G%RK?IH! DA_A@     >|D$DH " " 0      'HU*Ԑ%J	To@P      #DPK? H!B!_HBA     D!~Y	D% H J&?       @GJD 'BADQ(P      |	$OȐ!  DA D8       @A@EJDT~HP @BThQQ@      @ @ODI$$HKQe"D      'HBI%HATi(Q?     !OEO>HD'DJBXH      !OEOH$#@_B@       @OHdH '@A_ȄA      xGH"HGA_Ȅ       #DPQK:IȀ"(DQNpE@      'I*{ԀI$$HQ^`BA!      'H_H"HGA@       O!V}R%TK"_I       @O_$kH$#@CJ     @ @O@K? H#DOPH       #DJ?H$@@OB        G% H  @@OB       C!J%iP#GQ(I$I@     C I$>D  	B"      '@ J H $DH_b(DP     !OEJH$"HOAEAA     ? g * p      @@* (P!@@"	@      "HD%_ @#EQJUHU@     !HB$(="JHd!(/!     |Q%(*!DB| $B$HH      'A%?H ! CJ"RB@      '@_*UHT"X@_EAA      @$A?)tR	$KQ*E]RA      'A@JT) @@_B      |$OȐ?" " 0     >ECQ " " 0      #DJ?AH  '@H"H        O"E[H/K(J&
O!       @@#O耑~(  )B"      'Hb+ H#DOPHE@     H"E )^H @OCJ$      @ 8"Q'|B (!	`?       UI4( @ B       #A 
T%H0 @OCJ$     !OEH"HD @OCJ      A JAP!BH	AC     ҁL甒RII $$`     }DQD$O!D HD@      #D%_$IH 'DIQHa@      '@ AH#DH"_Ȁ"@     !B@
IJ&H_`H@A     !A _0RT!0D	E"IR(@        G!_ ( S" GQI%$IJA     $$J@	 XI$0p "$Da      @   @ 	B"     "$GPU+2TK "DOPH@      !B E>HD 'IIRe(JP)      #D%J$II%J)TRo@P      H!T	$D  * p      DEY%DdJ*J'`"      #D E!BH 'JQTiHR        @O
Ԣ)$DHWb(DP      #D% AH '@IS$B?      @ 
A(P 'H	BQ     @ @GP+?@H#TJWJP(C     !OE"HGI" E@       I!J+Q|"E(!E,IP@D        OD$@KT"hH?DB      ʑVhJ"$IUQ"        G*?@H"#TEIVhUP3      #D%$UH#AAJHQP<     ( HO_$H"H@!_H@      #DPK?H @ODIP     @#AP{Rȥ#DOPHA@     ! B P_ (PD"CUR!A      @UACTK?$"" * p       G% H @E"hQQ@       'I EqAH  /Re"JH        @G
 H OTiHR      @ @O H $KTRo@P     /TH}"J"> $B$HH       !B%O ȁ"GH_!@     d. (B(Q "$Da    !Ipи(c>""c      'IH*{Ԁ"$DIIRRh@P        G@!HB  GHP(P      xO %dK%I '@I"RH@      ~ 
J? B"      'H_ H @_@AA      @ 
?IT#AAFUHJP@(      UHIEQ" DA D`      B J(Q" G*UI 
@     @ @O
IH("KDBH>@D      #@ H"GH"_ȑAA     #@IKH"G9HP(P      @@L$Q"GP~@     @'|HH*UTH $DH_b(DP     |%("!DB| $B$HH       #DJ?*HT!PBOB@      'A@UK*H   OAJ        G%1UHT#@@UHPR     @ @OeԔ)$ JIViQ4G      'JPJyIJ  @OB      AD 2>$TD 	B"      'ATJT"DOPH@      @G!(Q"HG	F      (JE
ՄI>$HAWaB       $DOH?J" DAOQ      'AULk)T@ @G@P$A      Hk"EI)i?       "HDU*dK #DOR     B#*#$OP
  D@( p     ?B B"(Y  * p     @ @O%@ID$ OY"_ȠR@      C yVA+Q2"N<!IAA0     @ @OdI$H$IPUHR       ACA(D HH@     @C ? !T8       Ox%*VP&&AA%80C     !OEOH @GA"A      'H JHI %TJURn@      @  䈉$>$9W 	B"     @ B/Ѐ!~RR"ĉ!@      #D P? I'@OIfC      @H?S$O!%zQh     @ @OE
ԔE%J)TRo@P       G!ʠ( W$OxQ<MI%@Q     !@ b+UT  GH"_Ƞ@       Ox!)Jc)jԣ  G!E?AA       !  	"!"      '@@?AH'@OPH@      @A@aw; (Q  Ox%%)I@       O?VDP'B A 	"B      #@J?IU$DOQzUP     !(OH
2$IQ^dIP     !GEHH$#DO@AA      'IH} H"HGA@     'B _*I!PGA@      'A@e+ H#DOB@     "(GH$IT("Id@T)      QB BRb" A     PD R`@> A     #A  D  OPoQP      O_*cH#@!_P*@       OHTTA)}T#D! "      "B! P
'A(QEp"IA!     B ` @J()T&8C     !G
DH" DAOPT)      #@EH"GH"_ȑAA     "@Dq?z("TD )I	@"      @@
VA)U#D$Q@@      'A 
T%I 'IITRwhJP      @DA?I)Q#IxA
BB      #B  H"HGA_Ȅ        @G!H,|@_ID     $HEFESJD$H D@( p     <'DE_II"HDORH@     A "}|Ph_Hp 	B"      '@@K I$/x@!_P*@     'I$y$i<I$I$$I)Q       'IH*{Ԑ$$IIQe(PP     #$OD?  'RHP,AT8     QTRRd@A     %!'R?" " 0       O<I<6$
J	*c)Q      #DJ?I #DOB0      $@"IW	$(HP 	B"      UI4( ?        B "*VRr%TH?
	"F      'IHB?I GA@     
bp!('?A"(DA D`      '@ PK.UH#@!GB*A     !OE$H @OQb_P     !B ŀ
;UH @OCJ$      A^DRV "HB	I      D$HD
Ȏ("DiIRT"      "B B+*'B IRE     !D!"Q
!OQE$UDQ     'B ʪ5IT!(M!AJHQP<      'J JI*$KRm(     ! MQ"V @(Q9A       *
?!#䊒*HP?ԁ`     !O#\q)JD  |?      #@b+5HP!LG@@      <G*R"HRC     @ @GE
 H#DOBR=     @'AP{Rk"GH"_Ƞ@D       O|I$ʶ0R_$ID% 	T)      @A@ao URr'@ E?AA     ( I𠅏I$HAWaB      'JPJ I %H_RRD      '@ J.UH#@O@IA1      #@b+5H '@OUHU@     @AAD	''00 * p      '@ ň I$IISB*A     #@B?kH @GAUA      @G!?(S  EHI*U       @O  @O? *C         CI	"!"      'ATJT$H* GH_     !B A="+T"MتU*DL     'J u~ #EQJUH*      /I.AdMU$D@( p     %TKpEJDT I" @OCJ$      'I _I~%H_rQBă     "HF%H"HA_      "G%D!DURGI@0     ! ??"dHTB> )B"       @|?6)%$K/	T=     $$DRIJ$MRBvIP      @%
֔R %$KP-%Q J)     !N!>JiR%JO)>URȫ      @@@$J֑)%JH)%_ɀ"D     $DIȢUZw"B@	I      @ @O_
!B!GB        O,Ȗ"R&I)S$HK     @ A dK~I~%JW`UE     !OE
?HI #DOPT)       {J >DTCAJ     $OxHTE%J)Vh_P     !Oʄ Q!OA)8P     !O#\q)JD * p     "B y Pi'Hy"}g     "G%D!POEB_Ȅ     !JDVRR%CDBO*@b      '@ J;"I'B!_IH1@a      @A@AJv +U.@ I$RJ     $OxDT%TKURoNP     $E(H(P /I $yI@Q     'DJT$OR|PA      @@JP"_|} QSA      G!6{(PH!B@)$     'IH%*֔P#D@Q?D      'B RK?II*%HORH      Ac/<B@	$P     "HB *")R$O?	ЩB)     !OA=V)S$DOQ/DIUB$     $OJRTU&DKUROR~     'J<$*i #DE?IC     '@B(P .UT IUG     /IA&T~X*%1     "Eнyj](W)Bi(a? I}      |"D	 $ HA A@      D"        W%RJ*U T
 
 $?       A B ! @      @T"EJ:*HR	E	       A  !!O
          "Af      AЀ P       H@I  )*TU@          @ P       5ZQ*UTU
TZ_@$    A"/!$R@N!     @@@A DA @   D`     @@aA$@0` @% D       @@aA$@0`" D@      @@aA$@0c@@y@        @ @B$@08 xDACDz       0  f  
  (`       B BESD!HDP!      "
J )("  D`     B
J!j%      "@ @@@P      H@!_8IP)"b(B      H  B@J(JP)B@
B     H! _~ H@!BB     HJ!?T^H@#J      H@A"BJG~I'THB"      PBN	
 TRJID      P@I"GUC RJI D      A  @ !     9'HQ yDQ$H	EFA      H@%"J< H@!BB      DI$D	H"= HI!$O!     HHy/BH<HH!"BQ     @'I$OI y!$B_	D      A#A JxP!!BO ā     #JOK!"x!E$QSD       ""H$xy*$IT$RJĲ     y'A Py,I$MdI$D     @A'H/@ yU*WʩR(C     H%"_^ yA/C$      !'D$@x!CI%D     (I/AϤ yI "_	D      'I$ϱU yT!A$)QS"D<     @A/Pz%+TRS$K     $BKOE y%RKIOF&       OДy$OI?"D       " 
       A B   $ P0@      " D  @      @      "G" @     "!~"H0!"      @A}ADGD!D"         @B    @        A@&Y	%iD" D?       A A	"!A A         B @!     @       @|EEDQGD!D"       !@B$ @B ?      @ A@
$ ~	B!B 
     y'A	x!}/A !B     @!D!"D!@A A      A
 $|!D@"BD      B?}UIYD%ĕ"DDB     !"BD"D @@     P!"B<""E A!B       A@
$$H#BQbB      @?ԥ~JY)DU)H?ā     ! 		 ?   @        A@$	D!B       @}DDI'DI$DA       OG=$J)QGA 
       AD$$!@       !B'J!	D! 
      =G
"$D!D@A)Di        DD   @       " $ )	D   @        AABGJ@d!AG      @ AOJ?$!@(        A@
$	@ A
      /BB
	J)Jp! B@	     !B
$,RaDQ"DD       #@JI$II@          "  @       'A!	G!B       "AD
D$	G!B      ?@ 
@'Q         x#@Ă	B""  @      D!$GJH "  @      @ AGЊ$ 	G!B        AGȊ QDA
      'H
W*䈉UJ "@D       AO
?ADB         ? @QPB@      "IB$DR A
D ?     @ AO  @@(        AG
 JQ!B@       #D"Gߊ!$~D  B	      'I
*{	d'HP B	!      !]B}!W!?      #@"  @      A?ԁ~O U5ETUQDC     .	DJIfT!B A      #DJ?A)IOA	     @ AO  KQ/@D     BԑyUGDJ$EUB      "Gߊ $Dc_QD!A     !OG $kDB$I      UHIEQ?   @      @ AOJ?!@B        
I @D"@      @!GG*&aL@!80     ?B B"(Y D @       |"AEQ$I D @@     !O"L
`BPA8      #B" $IG      #AȊ.8DB.A     |	Ϥ+ D @      !O$*!OBqD%      'I"_	~H2EB      '@
䔉DB?"     $$DR	JdMA6ID      'JR"$gI %zg     @ AOJd eJ@(U     $OG"%b#I *`     /AǄ
 	oM@8D     H&Kߒ$?~@D @      |@#R_Qe"  @      !O}jt;̊!/)f     Q)Gu~@D @       @@@   " `     D
J )(	B       @ 
DA      D SD!HD!B)$H*          	"$HQ!"DD!"T       @ 	"$HQ!$E@!T       @"(PQ!"DH      A?)(BAb      EP@@A( B A 
         	"~P"H !@T      @!B" @QC"D!        @	 "@ R$H @      GA
DI$@( B@        "(PQA$I!DT        	 "|R!$DH!BT        @	"$RI$I      AA"T1"D@""iC      EP DAHB(P"@H

       AA!E 0BBA)$      @@"0PP!B        HP!"B HA"HAC      @ BI HQ!"DD!"T      D S@A( B A 
       EPAB$QB(
"D J        @ I(R(@QA"D!      x	" PA A        !)$BI$b        @ "8pPR)$b !      ERDI$Q$I)$J!@B@J I     EP @AA)*"B A 
       ?@ C 	
 " 0     EP @@)$J(a
        @$" S A         "IES$I@! T?      EJII$FI)$!@        	$"KRI$I@! T?       	yOA)R	H2J A*B$       @	I#	P DH       @IHW"LD"       @)"DDR$I@EA     ERDH$ P)H% J*G        "$RRrDI2%HJEA	PB      @@) HQ!"$H@       *0BI$bI       (HD"$TQ(T!ETA     ERD!HD!B)$ H@       D SDH$Q?A)$@ 
        !)$BAbA	$A       @"R	$H A         )@(RI(Q!(       @@)  PA A (      EP @OQ )$@ 
       ERD!OĐ!~)Hb$H0@       @@	"AQ!DB
"       B	"PT7H@!~       @I"$Y%"DD!"T       @	"  S$H A       A*'BI䤔by	      PIUT_%PJA*A       x	 S$H A       (H"I$WQ$H!EUA      AAOAR	0"B@(      ERD	KԐ1 B^)J%H*!HA       @
# S	*dg !T        @I$IRI A@A@        @	$)T W!DBA     DA(WҪU
5TUP%B)$      AB | 0 A A)!       	"P!_AP@      !(QH%	2 K@((A!      B![*V5$LH!J       AB  7I@ADCP @     !IH"DD0@O)        	",RQa$IP!DT      РBI"P W4I A%     E!~H/F+(B
HR      ERHDOQ$(  A 
         @	"I$UU BA      @@	?  P OA       @ " b"BQ&$R
b      @@"I?ARA$H(`     ERDOQ )  D@J H     D	~$O1JD!B$Q!B      B%"KUQ*IP       !DAERJDH0*XA B( `      'pHEQDQDE3NYUEADPB     ERGH$  ( B/A 
       ABA} 0I )       @@	?AS E@ADT(       !BA<	$	0"B@	($ H     @"ǀ @@C( p       @$bN"R=$KIU"      @ "I?IQ!$D_      B""DQ"$_A     @8)9@P! B@4BQ      D`($K"@     ( O_ʄ]PpQDQ!      AA?I	$5TE@$        # R	$OA       B ?ȁRO 2K(DRP"     	DA? 0D"Di     ERDOQ  )$`H*2HC     #B	#?#HE?)P     "$I W!E@ADt       @@	?  PA$I !T(       !.AD	2$
4EH"")T!     "~)	$( b
(?ȁ      AOA3ȤI A<(
       J	UHEE3VJQ*"\h"B      <B	"$P!$_P@        	b#S$DH?@     EP@AA( )%PJJ         @" R	'H  E      _ "
"0 _(        AB  7A  A(!     "	?IRI$OQD        @IRU)*TB     J?~Q%A@0      =DI>2#D4RQHE"h
"     DTHR@BD)D" J
	      `"A} PA'A A     "$I W$IA)a     .*DDU2HQ/IU       ERDO$Q$**(WР*AH       =/I	E  @7GA%*6!     I?TA O        AOE@1T !(~       B "$RI'I A$     Q@?SH!?
!      H! 6hbDA
B$i       +H@D*I!$D(Q!A      A(Q"%  0R!JB)"      <RbIPA/A A      
B%0PA/C$      ERGH$)"$OЀ*      ){ T%(H^B      D!E/	>2"K"E(!A      !?ȁRO 3MY5ETUZPC     @	"JV(_A@     "$(POA*UQDH(      H"T K(LRJ/ġ@      A _I2H   )       x "I%" W I A$      DA	$RO	6~&H@%"Rh#      (H$RI $_	     GT@OQ?A(@B/@       "I DS$OA E       A O 	2BA1(a     A,Q"%u҈0@H 
(l#     I?I$PUQUEU      ER DKQ/Q)"%PJ*J	      )$JH  Q	B$A!      ")DI>0"RAJ A     )\A(WҪ
*4TUPQ)D        "  Q$Q     	!_@7BD#Di     	DA  D	4JA*U+       A_?2hA +)        AB$Ƃ	2H P*~       @I?A RI"I      ERGHD J+'D
3	      O
 	2H $h     @HB""$@C( p      B	?AS _A         "R	'A      Dq>W5TDPB$I       @  _BEDC( p     	"D!>I2IPA$	$!       " $QQ$A        D?R!$DO"       B"R	'H A      JJJ!5PWТ!DU$      @D$AD@G(`     	U!Y
5TWPAT"a      B$S$OA      )IJ"(0@A 
"(&       H$S)j      EP@_1+*([*NH         "RI'A         @!"\} _D      A _QRA3O$Q @      9H%9@	1 PQ*h       9B?A}1_!_B}"     (KD? P DH(      	_! y
7*DPAp"I!!     	_!"}	
1HPA$U$Q       I?AS(j!?T     (R  R'B0`     EREQO?)R'BPH       !yD?3IP6j%      AALao U
r7OA?A(!      @  UQ*]""     '=R)HV}4Pe_Jȟ*"U䨩$b     $!~q&$ʨUoDTUS(B!     DD݉U3vDMؕQ7bDT       =/AU
r7_ )I$I      _"%*R 3R(P @      @@)"S$OA?"      d"RA'H      EP@OQk +B'JJ*C      /DA?@R 0Zj$       %D ?R	J3MA6Ih     GE!!2QQ(!      AA_$E_ґ5JW!_)"$     w)H 	?$ SGH(       AA$R~	~2J U%     	_9RT7Ң>NH"D     ( KD?JQDETKaJ     K%.kE)5SQ!       A/@*wD1D@b+R      DA=JRP3B_?D(      ZUʺ5լE3     H?!U	/<IPBW      )I^ d
O7ԪWP]B*(*     A/IqweUOQ>EI      ތx"RA'@           ?"  !         GB
HH(@ D@ `      '!!@AD_А      DED$O @   @      @!8!PHBI A            @@                                 @  B ? @! B>P        @  @ ?     ?       @@<#B         @ADDBG"      !@DH" xGD@        D@"D" DH!(A        @@ 8C ?      @?HDAAG      DI$DDI$DGI% A     @@  @p          !D	  @A@!      @@  @p         @ A B " t        @> @\ 
       @$I"$tD B      @ A! O (       #@A$I	@ B .H@       D @@          C @A@ A      @ C">D A@A        C@ D!B N! B     B A( z'D         #@A >!B AМ!      @ C?0P A/           C>  @@       D!D!B|AAP@      @  	$ B"       @  AB H! B@("@       @@ 8C ?       @ ?$H! tO          C@( #@A       @  !D A@ A     D AB"t'D E       #@""v" D@(2@C      @  > @'Aļ         @@)" @p       D!B$IT B@(BA        C@ |!B(@        C@$ @ A       P H	3|?H! B@ȼP!A      H ARH"E         A?"D!B O > D     @@!
O	  @p           C>"D!\        ! BE>#DA< P?      @ CB  @/(?        $$D  "?        C"$D}"E!Ҏ""      #A)$ZH"E AԞ=)A      PDI$DGI      DIDID8@        DEQ@B|!@@        D_ADDAA     B "d("Pt#J1 A      @ AJ"Pp' D         CB$>$"HO!\ E         C$> #@        $DD$DG%          C AB  "D.H       D AB"t'D      }$JH)"RDIҞE(T@     D!$H "@D@0@     IH%"J^R$IHҗ%$ZA
"       <I%$J~)"FW	 "        A@ B>Q"I'D(         C@ABB_   @.        " !HD"( (        @@( Hp?        C>  @A A\?        ?(>R!PD<LP         C!? #@?        @ C A	!A@
 "      @ ?>_#J Ȏ" T       @ !BJ	'E(^J@ւR        C!
H! B@<"P        CD	! B@("@        A%J	"DNA        A?">D/@ A\      DI%DITE1AA@        C!!BH% D      ?  @O       	)Hc!JD )@!       B1|P!DC! ~      !?H=:%(MP)\ Ā       CD	p!PB.HD@        @C?  
 " 0     D ~H"`t0@       AGDIDGy        D @D.H$      D AB"tD           C " _^J"E(( @B      #AD$|"I$A<"@        C@AB@D>  #D!\        H_%B!N! J         C   @G      @ CA	! B@("@       ( K?D}"$GPЎ!(AA      B(Q}_"I!NG       /DD}%TJQD`      @ 
 #J`<P       D)@@      @ KB| #A!̎
 b     ?>(!@@        !B)DT}E"BHN)H       Q	$J AaĎ
@     D!π 	  @w      @B> #AҼD        3Q |H EAԎ(]A     D   C$@?A       ( K?D}#EPԎ)(AA     AO@#z$$@!       /)J!D 
      DO#pD@ @      p!B'D"E(        DB #A@	("@     D!τ<"@t&           C@ABDD>> @G!\        @? "xDT         #  >   @ \? B      ( K?H>Y B!<(        B @"t !@A       @ C!B?A>"@DМ(`     HDB$ #@      ?I	!B@( @       { !B > @O(        @ C	!|!PBAʎ%JA     $I$ID>%!E$o$ R D       B0D>P! G.H%         K!DD$D@         B	RIE!CH(@"B      $KB		$"HD.H          C
}"D Ў!?       KA?A>$"HD!A       D* GDADG@B      @ A6	 @C?        @ C@D? | #A AĎ("@       @ C@D   B@*L       @!B?I>! D@       H x_H G.@      @ CU	  @O        "RH!BH         'A?>)"RDQN@!     "D>" E$H@!       > @AGD`        @ ?I}$%TAAʎ$      B   'B N 6     |	$OȐ!  "?      #@b#D@?@       P @B*U>T"EPA      qD"|
!B(!N"E     
""D>"@	"         @ C  }  @ .H        A!	 H@H (        @ ?H}"DDx׎IBD      @ A	#D!N< 
       Cǀ?  	      DB  #D`(2@C      B? "D( @     B?B|!B!  B        CD$$DC       @ CPD w)"RFiĮ"@     @  ""r	$"         @ C ? | #@@."(@(          # B"D! B H? B       G"|  BHC A     D]%D]TEQxABP@      #A	$} A A $ H     #A{"D}#JQ̞" D        @C?4c8   @        @C?  AaDЎ        @C? ?B! $ G     A~|  @O$@        C >"H@        @C?  I @      #A#!B|!D #<_        C@AB@D>> #@!\      @ C  ?A!@@."(@(          G! #JH? B     !$I|P!DY"      D?I!$C          ?$I|  G^/@@     E _ ~!BH!      $DHP~"u$       @ |"KAȎ" D       @ C@D? |!CH       DO  @t	 T     G!H  @G       ? ~!(G.H?      @/D	 'qD@@      GR #t@?A        ) A}"
E؊N.C@!      @ !?  @O"      @A B*U, @O       B!A!BH A     'P"2_K "DH        @ C |H!GAĎ       A? x}*#DQޮ%HHd       >Q4 BP<       C! @"TI((
"         C$k!$CÎ
$      @! 2'hBNHD(      	=@>"D(WD!@D      sB:HȀ}>#DHNaE A      <	B  |@'B N%6     $I$yD=%$I$i	  $       K!	"	$ }"EI%(Q@      I!$~"*N@"      B
|!$BH A      @CAB_d }*"TGQҮ=HHd        !   @@        G? 	 @GIҞ%(J@       @C?&p       @I%$UH| #DD"(D@      !B+UH"*GT~(q        @ CID!|H!DN! ~        ʄDDGGA  A      @A>  @O\$      D ~ %(zW)@      @!B?@ #@^*@         CD!4EĀȀ      Q	 !BN? B       UI4( ?   $ D?     @GϤH%TzT         	B"G8( @      @/BHA?*'   "?        #/D"D@.(H?B     A%$J~  GD@@       ?I%Dz}*#D$I-Hj          ""D}"#@Ů$@        C |!B.? A      @ $"GP~         @! C!      A#@>~ E@A<      HB Ɉ"Ht         { "$D%>  G.H$       "Ȑ #A .B       @ CAD<@|!B A? B      B

"|""@@
$        K ""D @G.H&J      HO!π"w$ A        B?I>"'@ М
      $K!"D)~*DqҎ%V       B|!@@      x}3$(L $?       G?~!B A"       @"/Db}""G.R(BB |      B>|D#A       @ C D$U|  G	Ԟ/A@      @ CA #D	@D     $$ @O
$     JD
>b F D       #A=$@E"EPNJ@     !>I"GQN$	!      #II"D Ў!?      B}""Fd۾"(D@        ? "G?        @ C ?|!$C  A      ! *} AP?       DUR(@/B G 3       ! ~D$N1NDA)      #%"LDD|!FK.RH       UD*!TB \%@       KDA	}|#D! "       T$$DGAPB     "$UH#@ .        "? >'@D        #$DP?" @@Î
$     !"@ 
RT%  H       K
$!C*         C( !BHDA(      $#D/% N@      @!?>'\H.uȪU"      A>$#DA        #DH?"       PQ?}  C A     G!τ "w@D@       <A?I	"HDH$       (KBɒ}$"~D!$?     y%${""DD"      $KrDUH'B QȮ(I@        C$!@DHT@<     ߡA|*'TJQNT
       <"R"HR      >EGB   "?      DR~ "HBI       @ $$O}" G.%      {Ȕ)#@@Î
$       K "">D  G!$      !"}䌉y
!OQC$UQ     $ ʾ*"|D ЎQ        $_H  CH?           "?I$#@  " |     (Q  "G0`     !=!=  @I `?       A
	}"PE0Ү)D       
$#DH?"       yBUI"| #@DT      @"4L}"EH!       @!?>  EHI*U     H!>UU%TB(QN<JUQ      @ C)>#CH?"           '@ \wЩ     /I.AdMU$ $ D      I
R%$D B        !r"~  CQʮH*     BҒB)(j  H      @ CB$T%@ H?A      @ ?@$R!G1       @Oτk  @w
@*C       򠄁d"@G?         #@ \*     !$I> /UTUCQ        ߔ#DH?"      D	UR䔊w"B@I       B;A)DR}"G HB      B!	!"EQ       P#xQ:DRP!LAI 0       *#DH?"       !?&$R~!BQ         #""$"Et(x?      @ C*>"!D̜(0      A*VD@z%RJI2E8(     9DT'B<I*"D     #y %0~#DyҎ=J g      @ $D~>~"E U     舖a$B}=wU$H@$     )$/!U-#""$:$D      y=DH"ET^/N@     y=JH"R@N 6     $_8nު
VH  H       D;"} G!?\1 a     "A1D|!Cn;      !%${(|H!B@$       @  @G!*sII     (!=1~Q"G HB     )Ry
O)HWШ[C~	Q      |"D	 $ JA*e@      @R"ED
*RD	FCĀ      ASb
*(RH	D	FCĀ     @T"EJ:*HR	E	FCĀ      ;EDJU* TAI J 
M	      9A
*T|!HB!
"%M	      	8JU? T|K%J2eM     @C'X
R~%HJq)BP)jH     	8uJ*TDI%
9eM!     p@QU6.ɐ0J         ~	 @@"      !@T A!B,P      B "("Pt'D1@A      p	T A!B,P      !bT!*%`,P     @@f0B P @          #"D%HJP(DPbb     ! B	/")(RP"XDԱ1@A     @@@ALDa           2 BI	*T3$H UP       !BGI$TH")Ea,P      !	<W""ECP      !@GIT I @,P      #B "D}HQ(DPQb      !"$/$1!DA
B"      #DH D}HQ(DPQb     B ID	$I0!$BJQ"     K	 	 BbF     @@Ȅ	>*DL"@(    H?  HI!T2HQ?UTX     >@	T !%T,P     B Ia"$?$(2!TBB"     BHD*MA@(      " $ 3           B
$ DIP(B)Jb       $? $ }0!B*H      AG
*XT B@|     " ErD"$降1"$DJQ"      " XU#MUUR    CS$,RTBA  ?$&     P
I?TB QP     B 
Ī_*M|!@(    @D?I'   ?$&      UHIEQ         !O!$~3 BʩYb"     " (BJXQ!EUE      $
?IXA'BMC       !" I$%2%TJY`      
G/@TU'uX@     ! D  ?@         ! 
*$|%3 DOJ"    >/('  ''      AGJDBXI"BMP     D I	$.I$1"$Gʨ_"       @R
?*UX FeR      @A$GR$ x@ IN       | _X}"E-Wȃ     A!'>~aIN    }(|'"E ?$&       J?JXE"EUURʃ     @@  @      P H"@D@!'H      AA @ "      D= "D
$H(_?A     9 A"D|"$DH> D     H!#D$Gxy"E'@d       " $ 3   #      " D  @@     ?     @")>B/"B!      !"BD"D @@<          D@$O O        " @'Q ?'       #@CN>("hAO
      "IDJ$ |@'A< P       A@R$>$#D                ?HBB$!?HBB @     ?B!C!B?B!	D( `?      @B!!	OB      # B?B!!J    da0C	`      n  !!C!J@      Ȓ	!!	BB"      IB  ?BC!J    C!0 @     a!?C    a! @      Ca0B       a!?        BB$!!	B      @Ca!C    !!	 @      @ ? $$I"ID@       C!   @   (      *#*""          $I$$I$I? $ O      ?B!!            jI&~I&jI&( A    "("""" ?!0C     @ * 
>@
*@$      " D@"    A         D A      *|J?B
*((@@     @A?Jd' D@    AB"" @!B!!B!     	TI~PD       '@ $IAI$)?Р     >AS?AjQ@      *꨾J*"1@HA     @*
>
*($@     O*DJ>DJ*D(@!     *@J>D*$@      " D@"@`h"       @*(*~DJ*D(@!     @OB>B*($@      " D@"  " BC           !BB       GDIU%dd$DJI%%`        G $IQIDI(       	 J#1A ?B!!     @RR
B
B!      ȉ?D C      *>J*3JB          ?B!!     @*J*J*
( "    #!ڗ@ !!	        ?,D@"     @*D
> *"      ? _'!	      @ @$I!BID(       	 N*UHTBRa      ?BCB#"(  l8     ' C     @ *B*|&"!@    '	 I@         1`   C!     @*B
*D @       HJ>TPTH! ~      @B
 B
B!      ?BC 0c8       " $T$F`" D@"     *
>QJʒ*D% @@      ~ D@I H?,D@"      ' @?  !         1` % C!     @*D
ڄ>
*F!       ꀭ*J*         @ %H* ~"TCQ'҈ 
 b     ?BC? C       (|$Q>B$!? @       1 gH% C!     ?BC ?  ?        CA
>$Q'H 
       ' @  ?DRK?      " $ 3  C!     -D*JkT PLDJ     @(*ҩJ*R @       @ CPU >w)SVoĨ "@       C!? ?BC ?     @	/*
DJ*B!     *B@Z~ID      *
*!      " D@"  %&JO)2RA     BA_EE/U       AWA_ʄUAJO      
T_
*bWV#\@       ?BC&Ѐ?     @*(
*!        K_$ԂSꨉ      I*$ RKI         '($ II'I(        O !W@w      |)NS}_YWEZ'H      " UT? ?     " UT $?       ~ " (?        !?? D        D  ?@@         A! ?I(]AAENDp         !! \QBEҮ%p       3D? B>
@c     @ ""B	>!sG        	 
   0 @    @        	 
B1 zD" D@
D       	 
 0@A P@@       	 
@	2`H " D@@        	 
!B0
BPB @@       	 
0 A P@@       	 
  0@A         	
  3"A@P       	
 	4B@
"L       	
0"D@@       	 
  0@A "@        	

"4DQ"DD@        	 
  7D  @       	 
	 2 H   @        	 
@1D B H       	?
03JD"$D*@       	
	"2HBAD       		
 0BD"$DQ       	 
	$2HO $@P        	
D	="D@BB       	
$0H_
"F       	
 4@PA$Q       	 
	4A@B@       	
D2A @        	"
D3bH*$dP        	?
B
8 H 
lG       	?@	2JH"$D*D       	
"D1RIBDD!H       	

"
;"H@"@@       	 
	2I BRR       	
  0@O        	 
2$JO @P       	

 7T@DFK       	 A2OB AA       	 
3ȤI B$
@       	
"D5ت"T@Q$W       	I	$?I  @        	
 4@PA$Q         '!?          	

"
0"@08C       	7@0        	 
	2
O"	!B       	
0bp8`0@       	 
	3H  A        	 

 0@A 
"F       	$I) B	"(EQ	D       	 
3JH""D 
@       	
?@0P B@B        @R$J%"IP       	 2A AA       	 
@1D  @@       	 
 7RaDB       	?@	2 IB'Q       	  2@I $H        	 

"7QDEH       	l3O        	

"0@O        	

"4D_       	 

4TP_DB       	"7_
"F       	 3BABaaC       	
 3
g" E@       	 

5*TP@DB       	BH`1BBi0C       

 3A @        	D	7A         	
 ?"@@!"T@       	
7
R B        	 
$H4&JP	        	 
 2BD@       	 
 	2O        	 
H2H_        ( ☁P@@       	4DQDDB$       	x1PQ"        ؒ("dĒI"DR0ɟ       	6H@  AA       	$*	2H  AA       	@2GBIfG       4DQDDB$       	JE?Ԧ*NPPE E@       	
 0@@ DQB|       	
I
8⠂A G       	!
$
4_DQ       	D1@  AA       !
"U
)2"DP" B@`       IB 7A D F       	ʈ
"7_BF       	
B2HI 
"F       	 
/
"5SdDB       	?A	3O𤢒DH*@       	{ʔ)4J^"JDH       	?@	 3BEB       	
	2"O?AA       	$J(2I J"F       		
H0:B@y$@H       
"5TUPUE*D@       !B&rR)(BA       	 
wI1$D"*DW	D       ?@ <
RI8GP@@       	

)
R7JR "B        H$A?IP ?       PTE!ϪQ*UHE@       	?I	$3"B       	
4E @       kX BB       	ʈ4DTP_DB       	
Ԉ;BH"D        	wꠕ]*5TUPuDB       |
2HB b8G        AB$D&!$B	P       	
D2A @        	$H4\$          D-PJ%Q@@       B  ! BC       I
4DQ@        1vA      !?dEO?G       	{"7A 
"F       	

c} 7J^"zD%B        /A4!_"B        (Ҫ_BU       	JE5TDPUE(E@       	?A	3$BD       "|1"_)aA       	J~(7GB_!~@        ("D.!DX        ?B("PO"I<D       	V 3OB?        ?R%Ȋ
"F       D ?A @DB       	{ʐ!4 ^"B
B#       	
?OB?AA       !@Ba2 O       IT	$4DB9fC       	IDp3OB?@       DQ؈"*"A"DA       	{"7D DQB|       'IHR       	ʔ)0@I "I@        I(2         'I"I$        )$D	7OB?AA       		3O_Ġ@        )R? !jB"JI       !(!
%Ȉ       	wʄi
6H_"ĈB       

	0D D        	eʈ
"7_BF       xoPO	@H      ?A 
R	'H  DA       
TP1p AA      ?@	d	O0æhq@       ܤH+"AW
R?@       	s$O4<B]B$IA      I`O$P@       ?B)02qDsA       	"
P7<T@Q%HA      ?DLaD"QHA       I(2IIT       D	R% "A$I       {LifqbpG       ? b	G!	@        ;Ԕ"?%Q@@       "*"ArUAA       !**QBpRA!       	{T)
8@RDDEB       R"$*QT"pHx
@          /BYfR       D/"N       "	3OF      ! dEOO      sʨb?jTqI*RR      }-UJUeQDBqN       D@/DBDD       	Oʠ?	B2
sOĩB       	E	6H P@      yMUiGRpAS	D       	
Ո2 H $I       	
R7B_"ĈB       UTDT$D	"!F      yMIhSȤO"I<IE6       $;v¢1C&RAB      }- dEO?@         (>*"hD       		3BDQB|       	?A 7J^DD@       }%$^""JHԖC        	{ʔ
R7
WШ_D}B      ?@ JJ P'H DeD@      ?Bj T/@  A      ?R	JhWIEQ      
a~ dOP<BJH       (;*QTYF       	" 3OB?J}       	
Ԋ	?4ȮI BwI         x $~!dCK"@      ?`AF?DHC      ?D@
RI'A EDB       /!UB̩US1A      AI}dK/@	?AH       eO!	TG'        
Q*ߺQ~QT1       eO? 	ВBb      A|"LIQj_T9RR!      ?d	&bK?TRB       ג%Tֶ! D       $sԐ'~}r"@      ?H @_$ _в?LA        tU%*zA|r@       =!4JR"CDB       (;*QH!D      ?UL g@%"(G      ꈍf
DkZIB(PK      ?b!OBC       !X*~r)WԥA      AOfENS$HOA"      @
Oi+^TyRDQ        r5"*:!|BR@      }-(h_|QEb8G      wʥM_jUw	*      ?RJJ)Q!'HA      UKRMWo@PU/      a|Sj_P}B"HDP       
/h_D}EHQ      ?DMʪj_|!?IВBb      WZ윊w`O?	@`      GJ윊w`Uԁ)"RS         &H$(  @@A D P @      @	"Bo     @       @	"Bg  , 0      @	"Bd  8  p8      @	"Bo@" 0      } 
"AE  @@        @AA1%H=@@M 
     @ `          ?@! B       !HBB$!!	HF     /(            @            @     $? HD D8     !P0L"a@@      ?J)(("    "0!@G@D            ?     t>@'蔢RJ%H"H#HȀA    ! =H&VS%H"TR%IA     @
>()(b ("D         $`  @      @>B!"%H"K      ' FĀ     =DI DI
$I     !D >~"H"$"H"$H        @DAO  @      @$$ 
/"      rJ"_$J*Fs$HWYP     @$>B1# (       
/" !#C       @@P!B~	
'P     
O $ D$H'șA      Г.&OAd% P     @! (((      Q"DD	      @$$@	 H)      @@C GC
?     @? $( (b@      @A%'ʈ(P AC#|#     @?H)? DI$	      @>B?"
/蠢      @HOb&H"$#ȉ?     @?((J%H      @?HIsq %#ĉ"A    !< EI%REI?	      x$TEI$I)$K)?      
O BI)$C     !Dy=(S)z*"䒓ҩjQ     xeRc$|ԉ      ?@@?~B
 @      C/H  @O	x    "HK=mJ[eFA	8S)D@     (R *VR%i	*    #ZA	5HY		?     <$|JRSx*)Z       D $H 
(L       C	B?B!HB`A	B$      @!)OR%BzI*b$D)Hd       @ BI!~H
@)  A      "D@$$$~~H"uO	%QA     ( H@"$I~T!H⢥I)%QA       B'%$Q~<IEA	%QAA     $H!A'I?$?~BID) A      #AI2R$>~DI@	8Q!A     #@G/Ҁ$?~BIBI<Q!A      "H@"$*~|IO%Q	A      "KB?*B|I`OB$     @#A?RJ~HHUOe%A     < @C)+'~@IREI%A      @C	?Ҡ>~ IDI%yA       G)7R~ IDI A      @C	?Ҫ~DIDI
"A       ?H!"BD	$$HH'        
  " B  !"BD?     ?  A B  ?H!"BD     ?   @   !"BD       + p@  ?H!"BD      E   !"BD       B!  "BD?     @@@ALB`P`@  "BD?       DDF`  !"BD?     ? >E(B "$  !"BD      p?  H!"BD?     @  @!"BD?     @A  $0!  "BD?      !"J*!B } "BD?           "BD?       00"BD?     @@ ? Xc< D	      AA@A|   !"BD?     @H"I	B   !"BD?       1`   "BD?         "BD?      B$J	(  D	      A,U*D( "BD?        @    D	     @A '"D(,  "BD?       		!P@"BD?      !!?B D?     4D?      JTD?      A G%D8(,  "BD?     ?   "h1D?       vO~@ 	     |	$OȐ! !"BD      @ s`1  	      ' @?$"BD?       QP
>D"BD?     ? H@
  ?H!"BD     x|!T?I
!J)"BD?      95*'Y0Q:B  "BD?      d>p(Hop! 	      EB$OA? 	R_      H! 1D?      @ "*O
("BD?     #$OD?  'RHP$C	      `p ?@?Q@݁	      @"C/$"~|  "BD?      DAR'A
QD	      `     A	<BA$BA$@     "B!B!>@      "B!B!>@                   @ " "@$"@$       ?@@?     ""!"@(     > $"H"$b       >A$1Ab@      #B!#G!*b!"!     @%C)$JOFA      "@D$H"D(@A     !$@O$@@
       $D)@DI$DH@E     @"C"B!#B!        |  /"H	 (     #H"D""$@     bCĆ$?!HbC @      DAI@  @!      "#舢""("*P0    @	 < A$ DO     "~)~ ~        <$(II%$"Q@HA     "">"("
$ %     $Hf$BI$BB 0      %I$ BE	$FQ      ?HB %/@K       "C"B!"F!@          P!?@    ' IH D$      R)H>R)H     	 $ A	<JQ)D~@       @"K(J?"($@     A	<BI'BI$$      $ҙrdI&HJeA	@B     @>&)1LRb       P/	DJQIE%H&QPA    Db# 	 B(        @"D"  ""     (
/>("~I$p      >/1ILRb@      (       @" (A'萢B
$ B      "   ?        @"C#%H"J1      @#C"%H"J1      %) $ A	$BA       @$   ''            ()>B)>0 @      "#舢""("*P4      =#II!L        @""!"($@     ((>+>      ""
8( @A@A     %H'֩S%H"TR%IxA    b#Ė$_@HbC      x$ 	"A	$@T      %	$A	$D
_     ")~,X~P      @RSB!B!       O$@	$RJII%$FS      @C B!B!     b(~*X~P      @$RS	%EI$JQ     "D
/~B/>@     @)?Ad*D@     H"|$H>D$x> @      >|R!_CĄ!     <$@I2I̒d' @     @Bሄ"$"!b2      ""("(       " $ /L?A      $)$$Q	'BA      O" "!"($@      %I+$*d$H&HBB    /" "B!B!      IA%PI="QD=0@       "Ȫ"*"2LB        " )DTP0@@      $Gw$XREI%$Ja        @? 0 @     >%C	$$BI	%B ( @     (B"$PD /@KP?     $$G1%(BB1     @~S}(1APbB    ( >B!@        $ D$H&HA     O%K)B_dQVQ      ( >B!@     @$K)Uf9BA	?BA     (~/~(~P       rJ#$J*Fs$HVFPP     ?%#H"_$PFIC     IA%PI=_$<D!    O$d	PB_餤jI@     DeQL}9VYD}@@     @%C)TC$TJQ      $P#I BII$"A      @	$eI`BI)$D@      %+ԩR*TRD!     @
$D $J?J      	;)ZdJ"HBB     @?C$G1%(BB1    '!I
O fKH@     ?H!  ?dAC     @%J_D%(d@    ЉB%"P "P_ /       @	 H)?H "     x>H	$$BI	%B ( @     8ER  @A@A     @%C)$VC$TJQ       I*A	BA       @	/$	D
Wّ$DRD@?       	I$$I$     @$#؉"O"$"O        ! BJ"      )$JI)? _<D@A      KD"D"'"@      @?C$FA	?BA      8D%CԙaeH) 
H ?     @:P)@"D<H$    I$@IFK<D        ?@   @      @)A	$$BU O      x$"KI $C$TJQ     d%$H>]d@ @     "%	x*^J*R Jd     CORKI2      ODS	 G0B
D B    He!P	G&Pz( H@    )?A	$<BA	?@     @(9?B_ $A     %BO$JO=@      P	/tC$JUIU%H&APA      	o"$H"         C)?D?J$BHB     e/@JT>ePD      /~$$@X)
H ?     	$"H?RI@(      $
O 
@     ) 
H)? A	$<@       %)I }BA	D@       "'  @@        3HH`@X     ~ H|a'B	E&       )P)(<P A     (H!O	)4^Qz1D      >$#"$K(R O"    OD	?JI)?JI ?      $I%eH	'UTR$I      @?	 H)$JB      Jd#%L"$"T      O !  BJdB)@B     A#@>~ DDA>     @ )Q	_B
d B     @)?H)?D@      @?C$@J*T     @)uވKA/H$
 l     K$B_$
H ?           $@2    ?C?C  !!     $
O A	  @@     I $HH)&RL_drA    	gWYeV]YUeUVUP@A     @$C $
O 
O      @$(	?H)?A      􄯧JJ      ?)?H	?VUP@@    	O"S@=wVUYU}w     OD 
O%D@      $JO$D@      $KȔ)^)d$It%V      @$K$JO%N      )*B_HeIPP@A    OD%FYUeFQEA    ?O <_<TH      @	/%$DA	$BA       )'HKE$IORBC     ! D  ?@?@@     @?	A	$FTP     R{)P_}QD}}P@    BIGMb$       @$ _ $
H ?    @?䈖#"$H"$U JB)      	Kʤ	"$(KA'A
"      
__҄%z(B_YoAD       K¤^A%}L$H$ "    )@	?H)?        <) 	'~R$OA      @ 	Q^A%M$O$Q @     $IK/*RTOH)    ҙ{)^eIT^eI&Y@A      $)K/*RTOx) a    $ I%REI?A      I%Dj<RQ}@     @$(	?I)?A      ?媚ʩJ IPE@      @DI%I	'~R$OA     @$C $
O 
O     R{)P_}ETY_}EP@    $ )$O%E@d      <)R(BR       @Cd UJr OO?A      A') P	_ d B     $ $ rUIU%"HU"      C$O	s  ?@@    }(|'"@H      >#>#  B      Sڤ߉DuN
+UTOV      Ĭi!$J"FA/R2BB |    / Je)A	8RI @     YGd J A        8%C5A	?@ *    JdD!="O"<       $H	?I	?D@    % %Ej\Dj       %I)@D "     IJ$
O 
O      #KdO/V@_V     I$U)_RQ	(Q      @ ")T_IP HA     |$Gρ _" |     A'ԙ?H)?@T@     $ʒ)?TY$G     	[	5HY	I ?     %߉H~RWU%|oઅ    ?!%+ 'O!$O!     #ĉ{{R{(RJAg    %$HI	I ?     !D?wU  ?@@    	{)ҙ%_Je&VRBg        $H?  (U
     H)"%J/A)     GE jIUV-U^5ZCb    Iԙ_UY_eUQ@       
 `B B P @        @	A"( 3@H
       @AB$)P	 "DH
    ?" 𐘋 @Dd$I>H      $IBA(Q"
G!J"B      H!O	? (Q	"GA?B     /z=?5AG	          @  
  D`         !  D`      ~
C  (	$E        ߑHF!BD!DE"|          @B@	 /AAA      T	$GGJ	$%`!      @x  AABHAA       C	?A"GHP       @@%
R%~!HBQDHHEA      @x~D%B!DBHBA       @@%R$9  @GAB        C	!B  BB"D       C	?I!@'B!HBM@      C.8 #DKUHA@     !A""UD  GH"_Ƞ@      Gd~"@GHȑA       G	KҚ?"G%zg         @ (  @@        @A BQ"D A         DDXbF$H>@      A"2D$I!$KД!        @  H@B       @@ H@B       ! BA$RH$I$I$@        {2eH@!$H      @  @>2 H$$@?      @@R$ H@!?      @  $OPdH!        A22T$I!$KД!           #@ 2@dI $@       @$IJ$D$B      @ B?H@$         CA
DOHf%HH C0      B"	G!2I"PD"         CD	2eH@A"ȄA        C$6O-2TdIP)#$(          C2gH@A"ȄA      @ C"2DdHA!A      D R2hJ	T$G        @?@  @      @ C   <2HdI A$$HC        #@	'HdI A$     I/:SI&K 	@!       @  DH2d!HA"ȄA        C@ DdI!$CȄB       @A3}dIH!"CȄJ     !D	!$IDQ$Є"`      AB2HP!$CЄA 
        #@$"v2eJ A($HC      B Bg2BHAE      B BDI!BP!        @ AOBd!H@!         C dK$C       @  H2d!H@?         C$I2e%K!$H     B 	"2d%(JP!JT1 A     D"GI2THAQ$BA        C@(dK C      !D*U2%$JQ,T@          C2d!H@"CD         C2dqIP)#DH        (2>dAH#        B B"2DI!BH      @@R$(HH!?      @!CҌJR%JP! B         #@$@ 2DdI@$$H      "$K2gJH)C$H?       ?"D2eJ A(CФHi     ""
8(   @        C2eJ(#D       @ C!D?@2e}JA)$H       #A	H%Hʐ"JD"      BGDJH@D        @ C 2eH@!      @ C 2BdH!"C       ?d	H "       &B	
ac           C$6O-2TdIP)#$(       @@"
G3 H@B          C@$eH!$C       ! DE2eK)C$H?      @@XQ"DD$@       #@$"D2eEJ)CA        C28dIP7         YAePIA=A        $Ye&RI=$       A/RRIJ5*SЄ      # eI!"B"       D H2$JH"$@J"      @CH0@~           C@  eH@!     DI!RYIROI%$        ;$H2d!H@%#$H(          #A"D$A$I'I_         DI$d"RII=$     @@ H@B        C@AD@O2d!H@!       CD3dqIP)#DH         C!
HdI A$$H         C  A'A	         C@  dI!$CȄ> D        YUe&UIe=A        C2 dK(#D         C!?>d!K!	       @ ! ?@2eEJQ*C$HO         #@O!2dHD8C1      @ A2DeI!$CȄ> D     D ~2HJ`T0@       	R$I^J)*RW)A"     B BDI!BP!       D'Y^JJP$!@A       ?"2DdO!$CЄ     A@GU2TK"PD?A       @ 
 dKa'H'I       A?"2DdO$CD     @A GI2$JHH          C$)2Td!OA"ȄA      5% "BD)"@      DH]=UVUiU%tI!       K! 2dK($H?       {2DeM!$CȄB      @ C?	$%Jʒ%2JD	"       BH"$$ H@B       D* YAePI=@B       CD3dH (#D        B%KȨQ*I	P       @ C!D?A2eJ@(Є`      @ CDH Ȑ!$BIIHA?!        C@AD_O2gH@)#$H(          G!D2eIA7         CI2e%MT"A       
,2RdI`)S$D@      @@DO!BP!       !!RY$_I%$        C$I2e%JH!       D "	        Q	$$JȔ.bD@      @ C	!$P%BJ	JA     @@G2$KD À      H A2dI $?       @ !_$IdI$I'$HB     D ~2KA BA      A% F0        DI!VY]ROI%@      QB""2I!BH "         C$H%*RW J      A
2JeM0A%$H#@        C?@e+J$I)SԤH       K!2DeELD/       @ A} Ȉ)"J	       K! e}J A/B      SȡBHHkIWAhG$J_      @A 'V2LTHhIQ
       ~G	  @L      I=JR)Kޔ)KҔ B)      @$%$H)"RG@       {?*2TgIP?       @ C (B%  A	      @ A?	2gHH/D(                @ C ? $ A$I')@(          C 	'H' E      #A{"D%˸5RL	" D      i"/DRJrU,        '_(9         @ C@H  A$I	L       "R^¥	$OI       D]!$PY]TRWOA"P@      H xOdIH!#H       K! eJP/C҄
      ! J""$        GB2H AA
        @ CU3dH@!       H  	 dI'D? B        C"$B&"R	
 b      @!D?I2eI A?         C@AD@O>2d!K)#D      P  R?2HdIA$  @       Q ?2$eIJЕ!*CԤHခ        C eJP/BR	
         C@AD_O 2eUJ*DA       @ CPH w)R2jD	"@      P @D*U2eUJQ?A     )?DRUJU+ A@       @ C 3dH (#D         C 	$I'I
 "      #!D%$̆! F' 0     @A GU2,H@H         Ȉ   @L       #A?)Re K?GI       @ C  $ 'A	 (         ? 2~dI(%#D       B	GzJ)P$!@A      G"ǐ"J	@$       B
$$I/A	 A      ȁ"2K-TS}UP@C      @ CB%H`18Oǐ! ~       #!z   @     HDG2 J@T0@     @A G2J@ A       B>$DȈ$JGI        sB:Hހ%>ˤI(]G	E A     	=@J)/SD@D     D I2S$@ D      DG2 H@RT      K!	"	( %)JQ)Q@     #	$Iʔ1"BD	       'A?Atj	TURG]BA      @ C 
$$I'I%         K	" %Ȑ!%JR A        C
$$OI          C?A2eK/A      ?R^IȦA/A	 A       ;?D2eEJ+DH"     .$DNU*UQSIA        @ C@H? $$OI        @ 	?D%!$BO	"         #?2 eJ*SפHB     @	$HdHU*T       @@ A2KH      DG_$KIdL     	!Rr%J*H B!      DKjU$|)$I	P     A?!iJTqD"!
 B      @I%(U^$ E(_)D@       ?!_ޤLJ*UǪARC        #"e}J *#DH"      @ CB	ހ" "Gǈ! J     G"?@_2J(#DB         !D$U2eH I.фHd        ""H%""E$@     #Á )iT_
I         	#  ~ @4DH"        2dAI (        C $	'H' A      @ CBH?$  OI        􈄡|>dK!	"        ?3dUKA&DH (     x|9PI
#f          K!  eJ/Ȅ      B @K	D@      C
"H$|%KIP     $B'܂j$XHC$          C?2BeH*D     EHR'Y2~I"HD!       ( K$$I "_	         { "$H%%  I'I$       @ CBHH^$$"L0@       D?I2d#O!?Є
     ?I)?A?       #qUHQB%z/B	IQ @      !	|%'%RJGJ       G {ޔ)ޔ)J^)JAVR     JO
bgH!!D          Cހʊ,Rd     HߡB=I\%RJP*Wc*A"        C*$ʪI*B	 A      @B%($&,BC' 0      (Q%O|%J)SDD(     HG"ǈ"2 HRDD@      GG 2 OBRDT@         2eK/D"       A{!
/B ?ĠA        ! I%K)2WgA5       G?&!$BO	"      $Kȑ!"H)\ZIr%
V       !!@g
@I       ?RebJ *WH!F       K
"2fKQ*ĪU      $KrHU^뤒!$RHI@       Ȩ OI        Wq$BHD^ %B/B'IE      #$HP'? A/C$     "(U^'H'         K¡HA}lSH" "     y=@REJ+T A@       ;"9@eI 0
UW@        K
$)j        *c$ _	 A     O?2J?        A2e%K/A      <A?I3eJH/D       #$2eJ ?ɀ        C?!$Ɉ} _	 D     I ?IdI$         ?B
)  _`AA     y=@^I%+T)f@      #1D$!$BO	T)        ?A2dO/D      $S>$A'A (         .8dK+DA      ! y蒝h
W)DRGp"I!        C@AD_O 2 eJQ.ȄU      @*D^9ʪ _	 A      DKҤ($jIW"       !"}茝i
QHRG$UQ     y!!2
I(      GǄDPKB       @OǄk2 JHRD$        D?A2dK*$H      yBU_"$ E$I	T       PQ?%  _$     
bp!('?@        K $"2DdH )#Ĥ      *ɒ!/DIq@%      G"Ǥ JH"_        &(z%Ȕ9RGy       >EGB        @"4L%ʤI?@	!       @ C)$$OI?"      ?!I/{@JA      	ނ(Q?IGK@      ! Ȉ OI*      !r"~ %RJI*     
 gp!W     @OǄk2 H@UD*C       ! (? %@E-REǵI@      (!(D}N@+PTU#EE@
h     #BJ^$R!E'QA        !?2eJH)#" ,     #$7HG&c       H )ORdKA,ĩHE      B;ޔʈ(
O	$0     
'I"| S	O'?@         #"/H%+T@ A     H	$  eJU/T    ?DG*ʪ} ? h      B;A)HR%(_IB     PGBǪ_2|J +QA!      $a?*ȢA/C$     "B G)%H       CZk$HA7I$       >QH]HWԠURGT       Wq$BHD^!Ȉ _)$      舖a$D}5w+UTAPJ      @Q Gψ>"BL|      #y %0^ޔ/zRJ g      @ CB?I%H(SIh"      ! /?IR%G`J_      Ck$ Ȟ"zN@'I      !%({($HA/i$       AB(yޔ%ʢ _IR     (!=1^Q(_IB     	K djOWԪWR]J*     ?       @ "         A>AVQA      B> B TR!B        @?"BA
/TRDAH"        @@ T!(@@       @A>?	H NATQD@         G B AU* D " D?        C""A"TJD*B         @@ &YU%*hD" D?        O>	DATP D@        @AG DT)B A!B	       xG T!(A@A	         G T!(@A@A	       <GȀ"DU* D@A)Da       8G  U* D@B
        @@ $OU!*@D$       @ @@ ~T)B!B 
       !B'@ ĀT)A 
"	       @>	DNIU&WD @       xG T!(@@         @@P!'@         O ~Q%R!B?B        @@ @T#J!B?B        @D $W(@A@A	       O~!DNTWDADA      P A'  ~UE*DA!E      !B'@aBU)*PD A!J        @@$JV%DSAQ        #D'@?BU	+D A!      @@x"Dj!T A QHɑ	     >|     *)R"@@
         @@Tq)PB!BDD      ! B(>TA(A          @@T!(@A AB?          @@ U*D!B        'H B@HT) B@"BE        @>	$DNU&TD$@      " D@H   ? !A        G ~@ NyU&TDy@D     AGEм  ? !A       ! B" T)HD""(       ! C xU#*HD)a       'A")DR!T"IH"DRB     !!B' T! @O       #D   T! @OA	      ! BGԐB$R)$B@""D     "BD            "@DDTq)PB!BDD      @ C ?@UE*EPA"HD         @AG@B@D T+D!B        '@  T! @O      ! )D   "	B         @@ T+D!B         @@ ?AU%*HD!	!       "@DDT( G!B      !!B' AU(A@	""D        #@B? V#B A6	       'H @V%HJ))a       (@OTW*EPA$KE	!     @ G""Ȉ1jsUT"$@H     AAGBj!WD        @O $T)D A"
       #D B?S$DIHQ0@D      ! C"DP!W(EH" D     !"O@?BU*D  B	       G~I	$GNIUvUQD]DA       #D $IP!'AABDD      @ @O UT @O        @G "RC!F 
b      !B'@P!$DEЅABDD(        	   D      AAU2	 ?   "	B!       G~I	tDAUvUQD]H!E     @@@j	W! A      @ C'Ah!TDBDDH(      !!AGB$U%+@?      @! O B"S! D@      @ O@@U&T !~       'H U*HG?       AG
UU+DB      A BxWȡ9B"iMP
"       'AG*UU(@@      @@'BBjSW8BJH!       #D B$IV%J(Q/@D        @@ ?AU+D A	     @ GB  kTD"$DH      </I@ @W* GA%6	     !"HDB$P!'HQ/AD     ! #H'߀ Vi)`DA
B$E        #D'? U+IPBH*       #D  AP'@$
?      @ G  U @O"      !O@"DT @O
$       #D $IT(@(       @ @G 
T%+D!B%      P Ow"i U+DB E     !!B' P! @O*BJE         @O  U*G!?A	      UI4( ? !A        #DB?"RC!F 
b      @ @O   S$KQ/@D         GȀ"U}* E!BH
"     @@<!_ȤLjU*IRC       #D?HU JQ*@D       #DB?  S IHQ%"DRB      ( HO $U*H@ 	       'IOҐ !VS*C"DRB      !O@>DW)D       O$L,iE   "	B      @@O i_ A     A$BHqBUH똒oR Q(IH     @ G"""DkQ!? A       'IOҐ U*HG?       'AG" U+D        B'ˠ"?IU%+@ "|     @HG
	jQU0)D	      @GW)B hW	      @GW)B jURR     @ GDHݙUkwTDR7dDH     @@O  hA_? *       'I'_~V%H2EB       '@B;"P'B 	B1a     @@A@@O_b Un` I$JJ     @ G|'܁+tHi?RD(R$
      E(O|'1JQjW DB     A JA}"H䚯iP<IP		      @ 1Md          0    !!	@` @       Er "$H      &        1`
($DI	           @
$ @       p?  H " DD      p?  H@ #0      AA  @TD(B        ~  H 	  D`      p?  H! B B        @@ T@A(      8{ ?;A"D       ;8 AP     @8 $9HQ$A
!D      p'LI9%TRdI$G D       ~  B * #0A      p?  H>    @      @8 _R(8@AR!
     8#A 
Hp"EARBDIP@       pLI9%WRd @     9#@A8R$A!
     8{ǀx4 }O"D      8 8 QAB@      :#@$H4=OĀ      8CA
_DH:$IPA0	      8C8Q$
b     8  |9!TD"BD      :#@?v9!TD"2DC      8?D9!TDA)Da     8{ǀ8 QDA	      8A $J6ESAQ       8C?9	T!B       8CĐ!
4 AO     8#@?D9DTAE
A      ;!_@9DUĊ"HD      8;88pQR!BDD      pLI9%WRdI$DA      ; AB9T$A!       ;@R5"E@       P8 ? ~9DTA!E      8C@9	P$A      8C8pQR!BDD      ;_*;AP      8C9	T!B        h/	* "B       8C_I9$PA	     9 >8@Q       8CĀߤ9AQDA	     8?D9!TDA)Di     @8 ߈8p5PI$!"       ; A9	W        8CH4"BQbB      8C 8 T!B       D _!BUBHA      9 ?8ID""(       ;D@9JU," DB      8C8P$A
     8{ǀ8 T!B       8C@A_D 8 T!B       wDI'I9%UUTcDA       R!DD > T&8C      ;8 AW       8C 8 T!B       1pbD9!DD"_     @8C  4@O"D       8C!$9}Q!      :CĀ8pQB!BDD      tDI?5J A      8C$?(Q51RDABD0@     (8KI9ITB$I     	8A0_P5 T!B%          ?@ ~ Lp     @8C!_A9AT(`     8?ǀ? 4!O     @8 !?D":BF$
b     9# A _DB9RD	"D      9!_? 4 D" D      wDI'LY9uVRdI$DA      ;_  5A@      ;ߤI9$IW
,	     	9@_9 QD     D/  T BG      8C@A_D;AT!""D(       t
D*#LA9TPdDDB     	9 ߠA9QD	""D       ; A@9A$A	       8C@A_D 9TWB*A      8C":"AG       wDI'LI9uUUUd]DA     9  9	TB       8C@A_D~4PAB(QE      @8Cߠ 5@D(      8$8 W!B      @9!_I5!DD     9A"D4B$ A	      8CA9TB       9#@9TD?@      w	.?DHj"抩2"$DH      pC"jB!
b      wI%?{Ȕ)jRǾI%$JITS      ;Đ!ߤI8 QąABDD       	   H8      wDIwA9uUUUd]H!E     @8CU8 AO     p'A?)jRĪQ BH!      @y!|pR #8      @8C A9AT!""D(       p? T$F`D     @8!?5AO"     9?ϨQDI4AOA     @8C?@5UF*UE(C      ;Ĉ? ~8RB%D     	 :_ߠ9SA)f      ; _? 9ET"$D      ;ߪU5DY@A	     	:'P?DK 9	TB      8{ǀ?9IW       9H%?D4IA6      ;H	ߒ_ 8	C!%D     ;!5$D!? E     8?ǀ? 9"ET"$DO     @9 ߀4	GBTD<     8 8TQDBJD(     8 _B:R9BAJD!     8'@_Z:!ǸaD      ;Đ_":BF$
b     @8C"9W!$      8Cߠ5	G!A	      w"?HjĢ_Ą
     ;	_9W<" D     @8C Q;4BT"     P8?D9PB?A         	'@T&8C     @8Cߠ 7KQ/@D     A#@>~ D@C
$     9A "D8SA	=      8Cߤ5@(      @8CI(8	KA>D      r#qU_QBzlI	Q@      8#ߢ5|!FLJ      8!ߠ5$eC1	     @qB%?n&A"80       
I 8OI       ;N5E_Ą
     |!$Bz	*l2a-BjH@      w	JH
bk!D      @yA	|pR 5D*       ; 9TB?"     @ B!Oǐ!~p!#ʉ$!     8{ !_8	W
BUD<     ?¤h@?DD      8C_ 9	UԊB       p? T&8?@@ $      w"?"Dk!? A      1A9$D A	     9#ߤ5@Ɉ     $2Iʨq_UD똒;!DT(ID      8Cߤ5EOBTD<      8C?9}@	D     P<P?8 @A     ; 88 TB.A     91D5!DDT)      ; ?9IW       s!? j@ǺQ&1     9@R_I8 PB?A     ȐA
	jP2)D	      P;P_ 9 T*R	3       0A!_UE 9	EԊB       :{Ā;IT6F%     p k"	B1a      ;"?8 @B*U     @t"4LjJ !     @8Cߩ7DB?"     p
_	UkX!       D HsOI"@     ?π	B?	 k B?J}      wDHݙUkvFR7dDH      7 d9AG?	     @pC$B_ߑ	mJ)"_Ā	"     ; _I9TUW!      @8C?D :JD(U       7q*u8 H(_D     A*wDiAbR      7Ĉ?JD;ĬO<P	     py5JHjPI)$[g     )|!=1JQj DB        0  @ @       B   @         BB ?@! "H        B  @ (         B  !" ( ` p       AE              B               B     @        BB 
$ @       AE @       AD <  D`      A@   @@
 dP @      AD!?!B! @@       B"R    D`      AD!@!     @       AD "D@$"F       AE
 $            AD?@@      A@>     C      AA _! B@      AA	|"H! B(J      AD  !BD
      AD	 $@H@$UA      AD!D?B!       AD 8~@	&II @      AD  >@! G!\ 
       ADA"@ @        AB $  @@/(       A@      @      AD ! !       A@   ?@  @      A!D?  D$)a       A!@ H  p      A@($`цBH       AA         A!@#H!B(      AG  #      A H ?         A	@@ }AHcC      AD  $SF       A@ ?' @       AE B(      AAD &x0@        AG I A?	"G      AGD?T$F`       A4PAEaC      A@
  @|@!\1      A!@ PE   @       AG?cI?      A@ >$"KD      AE @?%$& 0      A@?@ !@       QG         AG $I       A@ @@?       	D" p      I)A`>D!CA      AA$0        A!|~PC J      AD  ? !"           B      A	B?48P@A$       AA R	`gĠ      A@Î:T,UPUBJ]A	       @?@@         $%        !??"  <       TyRJN]$       D@f0!
	#       _Ą	>$H'HD?BB      A@ ~>"BD        *HC!	       """ Lp      ADDBA(B@        ! |  CEQA       	R0V)_D#      A@??Bt"	<D         aü|       

()  "	B       $D!@@       >?  !)BJQ       D">IAE
"A       ψ""|| ($PrA      $	?@@      $ }!(@       ω 	$ϐ       *9$"*d            @ " H  ?       #	 $"H$Q @t	("@C       @   $ P@q            ? @"       x'  #$ P@q        "#@р"$Q r
 "      @ A ?" DHHADA\A          ? ? B@        8#  8"$ P|q(@       N'@""EHB"AМ!      ! BG@ FHB"AМ!      ("H	,%
     ?      @ @
@QH&$PHpO 0     @" Q<I$Q$t ( @       @  "%Rx/H        @ @@!@ D IA@(        @!C%P tO         A D ?D@  @?          C  !"B$DP p?       A D   " DL       A D ?@@DD       A D ?@@@        C !"B$Qt/H? B        B'  b D~I AOA      @ B' ? b"DJBF"
b      @ @O@ !DB\HA?!       A D ?D@ @        @O ?IDIAAA\DP       #@>"E$S`qO          @@  DII@          G A""DDHB"Ȝ     ~G	    A D      @ C@?	DKI@\(         <O $IDH HQ@P       #DA? DJ"EEJ߼ P        'H ?@"E$JI"Ĝ"       "HD  "H@ER\*U       $@_"%TR@xB        '@A?IDH"@"М
      !!@  UBG!        'AW@  I	D\       O*cDI@"М*        '@ UĈJ*D@        #"" ?~B	BRD     !@`?|@        #"" >>DD₅EC     @ A DE  @@     @ }DH    ?         ?     @ }DH    @      @ }DH   @(I "H     @ DP      @      @ }DH @:#@" D      @ DP       @      @ DP@ @    @        @ }DH    ?     ?     @ DP@ ? @1 "H      @ DP ?  '@ 
      @ DP  CA       @ DP `01  p     @ DP !B  $ H      @ DP        @      @ DP @( F     @ DP L	A       @ DP > $@H!AA     @ DP  A  `      @ DP   0(       @ DP !E!AB 
     @ DP      " DA0     @ DP $BI	" B       @@      A "H      @ DP   D`     @ DPP1          @ DP D<A@"HE      @ DP ~    @@     @ DP " D@IL ?     @ DP 	!B A!	a     @ DP D@ qp `       @ }DH @    B      @ DP @A    @      @~"D(@ B?B!  @      @ DP !BB!     @ DP  @! H       @ DP HM!BĄ     @ DP        @ DP	 $@H@$UA     @ }DH             @ DP ?@@?     @ DP?A       @~"D(@/! ~@B        @~"D(@ P@CA      @ DP   ~ A*      @ DP	0"B@      @~"D(@ 	$II A$Q	      @ DP @@DAL`  @      @ DP
 0|A      @ DP ?@@  ?     @ DP.! ( F%0D       @~"D(C! B! B  PC%8D      @ DPP1   @     @ DP  $   @        @ DP ~DEC"
	"a      @~"D(@D$(B
       @ DP @	?B A       @ DP @      @ DP ?"D$I"$DHB"     @ DP ? ? B@        @ DP ~$!JH" D@     @ DP  !  D`     @ DP? BD	r$ 0@     @ DP    O! B       @ DPD	$@H         @~"D(@$ D ?  @	        @ DP ?B!B   @     @ DP?	"@E$pS ?     @ }DH  $HH!"BD?     @ DP  D A"
 #      @~"D(@ 88     @ DP      @     @ DT$$HH"BD     @ DTI4CȜ) $$@H      @ DPB/B!"B     @ DP($`цBH      @ DP @A " H     @ DP D@      @ DP B " D ^$ @      @~"D(@ @         @~"D(@ @     (        @@ H  p     @ DP~>$DH"$HHB     @ DPP0    @?      @~"DA /H?A A       @ DP ?	""DD B`      @ DP$@0A B
c      @~"D(@   A       @ DP |# E@!(BA      @ DP O!"B|
     @ DP  CA       @ DPP        @~"D(A ? D `A@(      @ DP ??B!*"C      @ DPdEH?DD      @ DP  ?~: A!      @ DP  ?* #0A      @~"D(Bb L   @       @~"D(@	$II$I!B%      @ DP"H   !       @ DP _A!@       @@ A* #0A      @~"D(@?   @      @ DP?>!AP.H0
       @@ !A      @ DP ~$"Hw T@      @@$Iq!RD
      @@   A	L     @ DP ?        @@ _ " D0     @ DP?@@DD     @ DPP       @ DP@?BC!J     @ DP (_!     @ DP ?@ C     @ DP " A!"IJ#@      @~"D(@  @   A     @ DP  " DAIDTP@     @ DR~>$DH"$E%      @ DP @dQ      @ DP?$!"B
"     @ DP"H?@@     @ DP @G B 
 #     @ DP RQ D`      @~"D(@| "x)_        @ DP        @ DP~$THO
"
      @~"D(A    @       @~"D(@ BD (       @ DP  A 	       @~"D(G ?B p0      @~"D(A  !B p     @ DP  ( p     @ DPP7ـ@      @ DPq"	B       @~"D(A $HH!"BD      @@ A       @ DP RQ T$F`      @~"D(@ ""D|BEA      @@?DD  @     @ DPB!       @~"D(@ BD$H  >      @~"D(@ B/B!"B|      @~"D(B"CB ON A      @~"D(A ??B0!BE     @ DR(>I XB      @~"D(@! _ Bd8@ <      @~"D(GB ?	$IA A       @~"D(A Ĉ%Hz!+BU      @~"D(@ !^ ~R      @~"D(@?C!@       @~&E @  ?@@      @~"D(G          @~"D(A   B"T      @~"D(C  " &*!@      @ DR$!JH'B       @~"D(@@?A     @ DP?~ iU$1      @|"D ?@A      @~"D(C2!_Ў!*B!      @~"D(CPD"E"*RBc     @ DP^ H	"D       @~"D(@ϾTP:&ABJ4      @~"D(@ @         @ DP"}!sA>D      @~"D(A$ @@ALa     @ DP?cI?      }$D  	!$I  @      @~"D(@  ?@       @@ =!%EI!0>      @@ $I,"I       @@  (   @       @~"D(BAB * N%	      @~"D(C     X8      @~"D(@  @/I D	      @~"D(A ?"~8 @w?      @~"D(C	  A $ 08       @~"D(@ ?B  @      @>(!?? !)BR%B       @~"D(@          @~"D(A? >HD!CA
      @~BDP@   ?@@        @~"D(@)H'I       @|"D $h?   @     @ DP ??B1rT"!~      @~"D)A$!  W"@	"DD      @~"D(C" _DD     @ DR/@HD)PA      @~"D(A-         @@"||$GЈ      @ DT? yh%bJU ?     @ DP@ ?      @~"D(A	<BH%@I@       @~"D(G  @ALa      @~"D(@#H'       @~"D(C  /D A	 _      @|"D@?D@ @      @~"D(@	 ?A$I$H E!      @~"D(A          @ DP !"~DB$EKI        @@?  @      @~"D(AB 	  ?      @~"D(C! /P@D#      @~"D(@?ID%S@?B      @~"D(@!B H	*      @|"D@     %T&9      @~"D(@  _I"$ID      @~"D(@ @<
       @~"D(G"dT$F`     @ DP$	!"@ B     @ DP  I AUCDD	      @~"D(@Q#I D	      @~"D(@)Rb@A	     @ DP"T|E1DA `      @ DRD"D A" A      @~"D(A 	2uIZ!+BU	      @~"D(A"    X8      @@Fo ?@ 2      @~"D(A$0       }$D   !       @~"D(@ @?    	      }$DD?A#      }$DDH@!  >>      }$D E( %C      @|"D   $I       @~"D(CH<"@\$H       @~"D(@ ߀?~@!LX
      @~"D(A b	 b3 	"!"      @~"D*G "       @~"D(B CDA?       @~"D(@PA/H  	      @~"D(A?48P@A$       @~"D?DF9      }$E ?@@      @~"D(C?B        @~"D(@ @ ?D  E$%      @ DP$HT&8C      @|"D$?  >      @~"D(@@A@a       @~"D(G	D1U/BIQ @      @|"D?"}$I)$SO       @~"D+ (Q!CĀ
<$      @~"D(G"d @      @~"D(@lF8C?@@ G      @~BDP@  !@@      @~"D(@H	?P%  "BD?     @ DR  \OA"Ea      @~"D(A $Q"%DI       @~"D(@	P?DI	       @~"D(A>>@A        @~"D(C!?CI        @~"D(B?Q4p"PY!B
#      @~"D(A"DETD`I$?       @|"G?@ ? I$%       @~"D(B?8p@'A #      }$DA	R?~@2c8̀b       @~"D(A ̄a     @ DR>"w	      @~"D(G$?   "	B       @~"D(A #DD " DD      @~"D(A@DB%M.Q      @~"D(C	 B5A      }$GB!0      }$E @?@@      @~"D(A'HD`@$
?      @~"D(G B^)ykK"       @~"D)@H`a ZR	      }$E  $O       @~"D(@?A  O      @~BDP@  P BDA      @~"D(B? @y!_"D      @~"D(C $^A ȂD      @~"D*B$  w  OA?       @~"D(@  0A      @~"D(A!Qs	      @~"D(@I!@%"A      @~"D(C!??"  <      @~"D(A	~H  wA!~      @~"D(@Ȉ"$BB	F      @~"D(@I!$CA      @~"D(G   $@2      }$D?2      @~"D(@ OD.IBPKDA0      @~"D(G   $@2      @~"D(B"~$I$ _%      @~"D(@@ʮ" _~9"DD "       @~"D@
	Iu$PLp      @~"D(C "? ?@!B8
J       }%DB}$#DBDX      @~"D(GȈ? ) $#      @~"D(B N? >@D!OIR@D      @~"D(B?A$!C  $D      @~"D(G

()  "	B       @~"D(CQ  "   ?      @|"GD	?@@@       @~"D)C "  	      @~"D(GȈ""||	?A$I       @~"D(CH"?|A"$D0      }$D @??@@      @|"ED  ?@@      @~"D(@  o 	      @~"D(@	@؀?      @|"D"??BC      @~"D(Gψ>!B>|"      @~"D(@U
("       @~"D(C$?(H       }$EB%Hz!	R"      @~"D(@B%Hx`#0H!~p      @~"D(G"
J"@f      @~"D(@?~PEЀ      @~"D(ADqE?A	      @~"D(@	>AE	D      @~"D(A	$x<IB$ҒBB      @~"D(@	=JID      @~"D(@A"|| A      @~"D(@ !^I"RЄB      @~"D(A">T \>D      @~"D(B ??|wP
$       @~"D"  O? C      @~"D(BA?I<I%/"JA#      @|"D'  B      @~"D(Gg ?A0A      @~"D(B!z s$KД/BB#      @~"D(BD)o!$!      @~BDH@( 3  }!CD      @~"D(CD /DBY&      @~"D*BA$C/O      @~"D(B)6TA""Ĉ"      @~"D(@D*|TPBEEA      @~"D(@
}I      @~"D(Cϐ?PI  	      @~"E	$ A?A      @~"D(@w#AO      }$DA$_" |      }$D  i<      @~"D(G*U(!B	C#      }$G    @      }$E$E@a       @|"D !A_!j
J      }$G   $>      @~"D(A>$ C%OҐ?B      @~"D(BG@ |%!@B      @~"D(B? y!'H"D      @|"DD	 'I5RGIE1      @|"DIJ @Q04      @~"D(B=R7AA""Ĉ"      }$E|I T#RH(B?I      @|"D@	$?濫THOE1A      @~"D(A7E~`%$      @|"D!򀄿s$IΠG9"CE!      @|"E@κ?       @|"D	#ʄ$J)'BH*D      @~"D(A ?\|@
       }$DA!OA?I	RO      @~"D(A	
$2#@I	      @~"D(A*0@A      @~"D(G q>D%R#      @|*E>2HD_  D      @~"DAB?~TJB      @~"D@ω 	$ϐ      @~"D(A?D	t7pʦ""      @~"D(@ITB!EQDA      @~"GDO>>AUKQ,      @|"DTs$IΠG9"CE!      }$D 0*wp H	"\      @~"D/\$D#      @~"D/!WUCUXG      @~"D(@!TC"EQDA      @|"D?T	  T(!_>G      }$DD˺$.D^DRK?      @~"D(Bϒ$(Lؤ%      @~"D@U!#_      @|"E"Cf"@!Eǟ      @|"GDO(HE@O)$      @~"D(G q*DuRJc      @~"D(CQD?bĈ|      @|"E@κ :"Cߒ$?~      @~"D(A@|'ʥ*      BD H  @
$ @        
 "!D@ I!0A     !(AP?T B@      +T?HU BD!"BC      9+Q?T@A!B       'RB?$8!RDD!A     @ Q?"D8RD
"	     @)W ?T@D! B?       " $H` D`      @BY$DLI9%TRdI$G D       #PE?8 AP(       @	_XDELQ9EYDd!D"     (!PB?T"@H
      "PB?9!RD
b     9+Q? T@A       ? l8A* #0A     ""TB""v9!TD"2DC       :W?Q9DQTE
A     B	H?YTI_L%8TbdDB       BPEBH:$IPA0	      Q ?|9!TD"BD       #Q"E	?8R$A       QB?A}8HQ$AJ	      AE  A* #0A     @ WEB8 A_     GBU	X$GLA9WBd	$@D!      zWx8 }_"D      *T"APU@BD!      A(Q? TBBI      !(AW!U D @        W%B$I9T" D?       !(AP ?BT"BH      *!TB?DU"DH>D      *TBUD?       @DYDLA9TPdADA       BP?8pQR!BDD      #T"E??B9T$A!        BP?9	T!B       @BYDLI9%WRdI$DA     !S$?K;ITԉA" D?        O! )(JBT%B@      " D@H   A* #0A      #T?H9<IT!BH
D      'QB*U9TV4!B      D  A* #0A     !R"E?"D8PAB       #T
 @9JU," DB       R!DDA* #0A      #URB*U9TUTBZ
&      *Bq	R?        CQA!CQ	$D      " $T$F`}EI`       "PB"?D9|!TDB       (QBUD(A?B     @ Q
? 8	Zd"D       " $T$Fb#@ "      'P?U9TUTB(E     PAIEYE_LU9UWUdUTEQA      A)ARBA   UD(A?B     @ BW%B?A9AT(`      #T"E!?B9W䄁	"D      zW%B? 8A_(      #!!
PQ$J		  I @       &B " $T$F`      #P$I9$IW
,	      #T%$I8 AW       !yBT	R?         #P"E?8 EUԅABDD(      !S"IT!;S$D     !_E?"D8R$ A	     @ BW?U8 AW     @!W%B?I9!TD      !Rň? 9@IT(`      $H@EDRDHBHH"$BP       @@@P ?  sB	""$H(        BW? 8	S!%D      #T%$I8 QąABDD     !WE
?J91RD"D#@     @ R":BPDB	     !_E?>D8TAB        !RB 8TQ	"$DD     @ BW"?@9UV*UE(C       C%A?
~%r0B
$      'P*U9TUԊB*     !zREd?H9!W%Q       GI$> q
" E       AMQ%$Q~pҊB6     !>RJ"$9RUL"D
"     !AE_ x*sԪQ%DHd      AIW">"v " A     !AE!>Jtr!!B      #TB*_9TTDB
       GP?B>*r/I"B     ( J_$9IP$	       GB=B>pBԦ)
R%$H     !_E ;$TB$I     A#@>~DAH      #RE?68 T!D     !
R"?8 A_*BJE        "W"9|!U!BH
"      @A PG?A>sТ!?
"     @ BWQ;4RT"      YB??9|UB       H WE	?R9Q$A)_       "JR"?"D8AP        
I I T&LC      @AHG%$v&тA"80     A*D?D      A D?RJsB!~       "W"9|!VLJ     @ BWE 9T	DD     !_E?A9PA	       Ox%iG{c?jp !B?A     "E%T)	tTߪQ>BDa      #P"*T8 P"*DT      'P?A8PB       #TB 9$T?	       G|Eq>r*VI_       R""?I9$P"|      @A$GR$ x@D@ILp       GUT? > s
DaQ       Oe'	>(wЂB_!~       AMY7%$Q~pҊB6      OE~E?Ap B*U       #P"58 PB*U     #DDQ/U~UrNR?QH     RJ/>"| D@ILp       G%_$_~r2IB     U<(KkQH8       #** $ KąOҒ?@     !HE@D@ILp     T Lʪ  $Ts K䃏ʒ$@      G%^%${r""$NH     @A 0D$B!!(      "|$~ RI     @!"A $A $ RE%      ?0$"!
(      @A	EHHGH@!UT"       C!$ @ !	""T       D"ED$MP&@R$@      @DGHHGD@!TT"         D@I	  P*`?      '*$R_"DHQE
 A     @ B/$HP E !"J      !$I$I?D$IH$HI*`@     @A	?E HAHD@TP        !BH!@B
       #!BH!@B
 (       @ 'P@?H@ P*`?     @ "_	$II EJ`      @DGHQIGD@!TT"      A |8 A$	D!     @ @?H"DH@E
 A     @ !"DD?(HQ@I*`C        @/R?$DHIS(P*`B     @ "$D HA@Q
      !!"D@$H	 E@        #!"DD	H EH          A4HDB
         @A"H DH EH B      #!"BH%@B
 (         @_$II%B*`     " A(Q?"vI @U*`C     GI	D'HAIB@	T%P@!       @%DJ_DHJ%H EA
 0     @ B HH@$JUA      <(Q"DI @EP`a      '$DH'BIE	JE!      ! A$DP H EP          @ H! EHJ       x!BH!@B
         @/R?DHQ@I
`D       @A"H(H E@          A$	D!     @ @/D>HE%HJJ        Ѐ A$	D!     @ BDDBH!@/
        $H?DH EH B    ?!xDB*(G        )$R_$II  P*`?    _DD$Pa?!!(     !!HDaBI)P EP J        @)_$K@@H A     ! AT>ZHJ *@5`     "
!.  aDQ      @	EHII'R@IU%TA      O"I	" P*4@     @!*G$@? !    !!@C !"D      @IE'HIIR@IU%TA     P !" ~IE	JE!      H"!*DTRIIP
       @	E'HI'R@U%P        A/Q?"DIE	JE A     @ @_>  K@B
 (         @/BH!@ EHJ        @A"H$I EE
       @ @/BI@B
       GIDG	H"IH@!TR!     !!$D"DH EH > D       @/R_$II%E
 A     ! A_^HJ"H"        A/P?@ DH@ H*`       @A$DP_BD I %X        @"H H%PJ       @IIE'H#R@IU%T     ! (b$KKH	ER*`?     @ D$J(H!           A/BBI %H*       #!(DP?BI	 J!!      #	(P?/DRIK
UP*`B       @%$JH!@B
       B
JHII'^@ITP      @	EHAIP@AUTA       P!_8HPB
         @!_*TI%HB
          A/P"DI@	*U_       #$DEDK'@B
      !q+QbDI @Q
 _      @ q(d/J EH * H       @)$R_?II@ C*`       @_ H%PJ       "@/RDHqP	%RJ`      DJII'đ[I[I'䐒@I& A       @!B H!@B
       '!D?AI%PJ       '"$H_%I%HP*`?     @ JDHH @Q*`         (P?/DRIKP*@       AI>HH $	J( A      ' _ AI%@
       '"D!RHE@      !D!D%H@!/$     TTA?!!(       @"H  K @J
      @ @/@AH@B
 "       @A$DP_@DH!@B
        @"D!JHJ% D     @ $DUDI EH > D     BAFHIIR@yUP     !!@"DH" J!       'A"_*UIU0%PJ      !(IHoDIP	ERQ        @A$DP_@D H%PJ       #	(W D@IK(P*`B     ( HAII%P$5EaA     ! AT^$J$"@5"`      GIIE'II'PTcUTA     @~?!!(      x!BH!%PJ      Ab A$	D!     LD  aDQ        A/B|HDEA
        #"H H!@B
      @ @_AH @Q*`        @!$D_DIHERJ`(       ! HDfH! 
       !!@H!@B
         @ADD^@D> H 
      @ (Da?II% P*`?     	dEU 	 aDQ      #!(D_!BI	I
`      C"DAIP@AUT@B      ЀFD^PI!4	*U%       ! (Da?II%@I
`D      x$DH%P%DJ
       !$$H_? HP*`     ( HADKP*5aA     ( H!_HYH	%b* (         @!B?II@ERJ`      ! B=J>\" HڑTB      @ @ @?AI@I
`D      D
I*D#HAIP@UT@B     @ @P^?  K @Q*`       #'@_? J EE
 6      '!_$II%H	J
 ,      'A"_*UIPJ      !A/B_I!Rġ      #!II@P*`       @_II%T  A     @ @P^ H $@	
UHa?!       !$$R_DI EH > D       @AĀI B
 (         DD!OH* 	P!       xB$^%@ K$ 
 b     !! _ AI@I*`       'Q>Ĉ1JsT,5@`      x $T_ H@B
 (        #D^IIIHB
        ADP_ @%CI J       @_HA@"Qa       DD%KHP*	P!       '	R`Ā}J*(ڨ@`     @ $DU6H@       " A,U_"I9HQ
        @A L "@"`D      'J$^P%JA@"Qa      @ @P?  K@$	*5`(       !!DD"IT*&J " D      xA*TKPB
       @ @P$^J%(!A     !!HDH!D%JUD`(       @ @ @?AIERJ`(        GIIEwAIwPU@]UX!A      "H!_DI EJ` ?     ~|IDR$@" ?!R      #I$$IH /J B        PQ|!H     @ @ _  I@B
 (       !$DH"DH @
 A     @ @P^ w)JS2h"`       @!_ I%_ʠE      H y/BDHI%B`     'R$"H$  l     ! /QbI@Q
@      @B5 Ä@ | !H     BAFHKU@UUP     @ @P^?BI  PJ       '	TT>ĈJT*ڠ5@`      #	T??H!P*UB      'IR>{Ĕ)JS)H5JaTS      '	JT^)DH!H
U)       xB$^%@K"JUDa       #I$$IH!!JUD`      @ @ HUH@B
         @A$DP__D IU
UJA      !)dRUPI %HJ? B       @"H IPER 
      @ @P^ H!@$	
L!      @! )$R_?II @A
         @!_ IHB
         @A"JC& 
 b       H$ H!(D        @!_I%\ 3       @!_I@	T        "DQ$H!H$J A     !!$DU_DEH!@	
L!       #($_ AH$PQ
`d       _%)J\)"TP@ 1 A      #/P_? @I(5H`%      !$RD^D$ IDR*`       @!B"(I@B
        'ADDJT-:5D`    B/ȡ"AO? !     ! A\$H "@ $ H     #AI!HA" J       '_RDIPJ       $A_)JS/P jq`E     ! !JD^DBHE@"Qa      @ H*&D J      #!@DH!D%JUD`(         D!$B HHJ? B     !DDI%H/
 A      "HEDĀJ*(Z@`     @ @$DE6H EO B       D!$B	!HHJ? B      DIKđKgI&I      )_AJ*JC`!     !$DOI%B
       @! H$ H3h"	JUD(       '"_*UIUXE
 A      @!H&ID)2D      #!HD I'J       &pQDHĀ>KH(JE A      xAIH_ʄ       @!HE)*UI         #/Q?DI %_ʠ      !$DH I%H	%RJ      !OĀQK5"P5       H"!_)^I@/$      "R$^φJp)PUb`      #)$_$IH! P
T*`       A_
IUPJ      @ @(P??@ITUa(C     ')$H? K 
%R        "A(Y+ȒI'HePJ_     ! J^K"H! *Qa       /DRzJ(+UR      '_> IPJE       " P I Ei
 f     @ D$ I@/
      @!@APD~ *JU)PUHd      "!PD>J +E A       AT^vDiK(*J         B
?D~"       @!_$kI%J      !IQ>QDH)J 6      #APREJ$+D C      '!_IH        'A"_*UI@B
       #H$ AH 	
$ ?      !$$O_%I(
UW`B      @"! PJ¡       !!$DO"|HP
UJ       @!B?AI@
 A      #+U_*_IU@W      @! !_^ ~I	! *5Qa" <      '	R>{ĀK$(PB!      #G^QK5"P5        A/P_ AH! P
T*`       ')S$ I%_ʠE       #/R_?I%B
`      !_%KX*ja`     ! By	ܬI"%HT  _     @ @P^? IPJ       UI4(Ѐ A$	D!      'AT I P ~      !!@ "J%P
U*     $@*$D_I}UP!     D"H#AjUI}(	
P!        $$D?@H DJ%       #/$R_ĀIPJE      x|9PI
#f@ | !H     BʑIWHJJAU      /E?HU@UJ` (      !/BHA a
       #A)W(_I} @
5R`     !Ld{ĔJS@/$      !%DM> HP
UJ     @ @P^?H! U       @ @@ IPEh0@     'D|H 

 "     !$D@?"DHEI       #(I_I8P*`     ( H!_$IH H        !$$O I_ !        @!_ I% A     @@? I! K@!@      'ĪHJ( !     A#@>~ DࠡO
$     @ @R?"(K@B
         I"O"$J O	$0     |"'ψ	" QR1*
        @!_ HB*        @!_DI5G
Ȁ     !DI(hBK)\	ER S     "<R҆DJ|* jI`      #/P_?H@I
`      " qR^QBzL /
I!Q @      #/R_?*TKP       (JDń>J(@B!       !I%K)0ja5     @ @@^$UH!)A`        PDM}%U(_      @ @P?I%@
 A     "%tJ%ߒI	P	EU a     $"Ha$^)DJ)pV       #/R_?DI@B*0      '/R_?IH# P 
       '!ĐHIP$       #!OĐ? J  ʉ f      @#ABB

@? !H      #_^?I% H      !$D@?AIE
 A      'A/U_* I J        (W
I} R!       
I!O"QRDB     " A=@EJP*Jʔ"@       )$W1UIU UJ`R      '/B IPJ"      @!HD>N',@* 0      $DD?I @Q
        ~A B?F | !H     @ @A^DI)HB
        $D_{Ĕ)K)H5JaVR    􄯧JJG     $$@$I@/$      '	RJD
bK& U      $O	(ARQ+      'AE$qDJ+T"`     "($_ (IU`
e* $     !DDIK-
j=aŀ     yA#5Gg@ | !H     @! T^RHI	3J f       @!$IUV     "(IR$TI))$T)      'I^JDs H" J A       @A$ID/UT`<     #_.8HUJA      !_>UDK '*        #!Đ? JA)P  1     !(I@2K)PI`      AH  U       "E")	#UPJĔa      "H_$I)*       '!A
D%H!)HZuJ`     <'EDIIHRJ        @!U_A}H B
 I 0     !x@ߑ!|~HCBD      "_*cI P *      $yR@DIJ$+5f`       @A!I|   D      'IR IH        I  P88 !H	      @G"?"]*ԪU"      #/B IPJ"       #_^?HRJ      ! IJLIA|L"cR	      'O?AH  U         N
)	">UP"      #_>5H D
  B     $  OI@Q
        #Q*]
wIUP
]ʪ        !K>?II% H " |     y!!2
I( !H	       @I$^UE I
WJ      !  $I*]T`E       '/R_?IHRJ       'QT  K/Ua#Q      "O{Ĕ)K@/$     '!Hު5HU(- 
UQ`<      #)dTVĩJH/UT2     !D""}!
PJUQ     >EGBP | !H      /_>_DH$U?      @ @$DE IR=     'Q_ J( R     (AG
JQ0(D!       #Q/B?H       $ Ab^z*K!P?T)      #_>5H U*U      D%Rt^]ĈJE+zU]     @ @P)K$U?"       Q+Q IE TJ?     'Њ!_t~H%P
U*     (#TQDȅJ(@E A     #_?kI@ U      @|"EHI @IA|L"cR	      @
]	U"Y  ʠ      '!A(kK9 %"      $DI"UYwC?
I#      "H)$_K_ʄ       AOP!"~x!!ʉ$      "|!~$DH#|*p       #!^*IPJ"         )DW%I}
@ A      HD!!J1
Q       'OĔIPJ"     ȉ"/U~UA/U$B     !DDRIK%0j-a       O/R\I"!U_b	      "|!@LE_J|$	P!      @ _^~~J*ʠU     $ RDJ /Z_     $yRJDJS?J 6     $ P$DI ?* R      'N^;"H" ?U1! a     H"@D)Kk-
Js`	!     "'AODI$ n;     %(O}%"=1JQTB       G	J?!U!/<	PTW       yRJDJQ)H5[g      !$ }W¢_ʕ,     *<d$E K/J I     "HI$UDUK'*$0     DD(*wz@U]spJց R4jB |     B	GC       @I!DH!@@! @      #!B@!A (          !B@!A       ! D_@  A
       x!B@!A       @ 'P@?@A < P?     ! $_@B@EH  !\
       'D'BAE	AE      @ "_	$AI Aʼ!P        A/P @A @          DB	 <@P      @?HG$HD@AB       @/B?@! ¼          @ @! A\@     @  H@AA\A     @ I$BI <P     " A(Q?"vA!@<2PC     @ 
D_HD$@I @ `       O HJQ"HBWT)@!@       @DDBS
(<@P      x!B@!A       " A"DAQ	A\!     @ AA! \ ?      ! AD @ A!      xDB!!@QP      ?"DAA"     @ @?H ~@	!\      @ @ _ D @   ?       GI	D'HAA@	'@!      #"$D_@	!\      #!"B@%A (       P "^@E <P     "!(D!BA	 AМ!~      H$!DĒ$BI	@     P ! ~AE	AE      @ |HCA	!<P(        #!D?BA	 A!      @	E'HA'@'       @IE'HIA@I'A        ($P_ AA	  Ȝ      ! DPC 0      BBJ?@?       @%$J@!A      ! A_HBH"      @IIE'@#@I'      OH!HHD@AA      'D6@!        #! C	!@        @$DP_  A	!\       ! B<J>^"AHXB      ( HIA%Q<EQA       @?B @!\       @ A} G       ! 5@@<"P       #"H @!A     ! _E	 A!J      @ | @ A     @  @ AA     BJ>HB'"@     ! Df@!       ! DPAA!~      ! DIA% < P?     @ @/@A@@
"     @ @A@!@<"P       '!_$IA%I	,      D
I*D#HAA@@B      GBI?ȁB @!@     8'*#C!\@
       !$$R_DA AȜ> D      x$_%@ C 
b     ! Df#@A A\P @      $@$DBqQD     !A_B!D      @  C	 AD     @ D@A !~        @"BC 
b     !$DJA%IA       @!B J@Q!@        @"H AQAҜ
      ! A<$@!@<$ H     @ @C ?        "HDĀB
(Q@P      #($_ A@%P*Pd      #A$BI	 AP     ! /QbA@?@        $ @!D      '$"@ l       JQ)TJI)DJA)4DS      'DDB
(Q@P     ! (h?DP!CH
< P      !	T"F!\       @$AB	$H$A ~     @ @?  CA	!<P(       @ @_ @!A	L      @ @_?BA \        #! D@!EA\DP(         OxR) @y#R*#     $D$$JKH C$@G?     !$DOA%        " 	>$DOCcE$	<$PO      @$B?A	t	DP*C]BA      /RzB)\R     % yD_A%I
D      #$ A@ 	$?      @ B(Q^ITG) 8R        #!D AA       #!D!B@
P\R       @)$_ A		!\
"      #	$$I@        xIGI     &pDHĀ>CIAEA      #AREB%DC     @! $ @3i	A\D(       "!D>B!EA     $@*$D_A}\P     </	D @GA6     @ @ H
D%	!\%       "HI@A Af     A?ȁJ CT5AWT@C      'ĄEC!@     !ĀQC5P<       'A A !~      P H"C  *       'ĪHB 񨜉     @ ACA"      (
Dń>B@B      @ @  APA0@     @ @   CQ@P      @@@ _ޤIE%I!_	     @ @ _$U@!	AP     !!  "BP
\*      /E?@U@\JP (     @ @_<@A!@?B      'A/U_* Aʜ$       #!Đ? B  f      #/R_?DAA<$0       _|UUUIEQ@@: f      @@@ ?ȄJ}	$XH"      /x%$^F'@!0     $$ _$AAʜ$     " EB}'H*@UP*RPA       @ A	\DQ(       @  \       !?UDC!        '/R_?I@\?      )I? B
 <_@     "{Ĕ)CA$      'Q  C	\aQ      !D""}
APC$UQ     !JPJE{c	j@ C$ B       @   @  !B!        @ A!"E$I$$         @ @?!$BH?@          ?!B! 	B"       @@BAQBȌA       @ 	?$h1RbEȬA2C      @@B? QBEȌA       @@	?T$IX       @	?$Q"EČ"       @8	@IR%LI       P@BB?,ԪYB,AD     @ R%$"UVW۠9@@     >EUB$B !       UI4( B !B      !!@g
@I! B     @@$$O>"	U⬕UK(         CB?TL"      A!?R#T
@K! *      @ E%$ !SO      A$Q>>!PBA (       x!!2
I(B     A!'>~a"B     >ECQ
("   B     " UT>   B     A	"?>!PB@ "      @@$D~>~"UWˠU     @%%${(H!RBi$      `ZRV!1	iK  @     &Dȟ     DCdL     d7@b  @        @      @      ?H!"C    `3        ?"IH A 0      ?H!     
$1   @         @
$ @      D_  !"B!"@        	 $ J@B*d                            DP @        ? ?@@     D  	 OA`          #D          A       @     ?    Db#CB     D   ' 	H       ?   @      04੢E(!      ?H! ?,@ A ~       ?@  @         @ "      D_   0 _ <       A4PAEaC      	? >@DH      ?@@       ?@@     Db#  	~H_ B     @$HEC!J     ?H!   F       D" D@	     ?H!     	B"    Db# " &$    Db#y2('!	    Db#$Ah\~1      ? ~ GA!     
S*@G?@      """ Lp      B \!DB)*      !?CI        Ѐ%"RI"$J`%L$    &D"?%? ?     ?"  ?     ?UP!U@ |"}
B     Ȁx#}$B= P     D_ GP_ GP_WP`C     A #I"L      >	#
@     	HI!I	_     DB~?qP}$P     (P#A     H T ?D       !$s@!.8UL      @   @     @      	 @$$     @       @    $ H ?      " 2	    @           ( p     "$P'D!@! `      CA  @  ? hp       ? @A  p     DHGA	}IA BJA     D H !B$I D $ P?       @   @   	B"       ? > @$	Fa     D I'A ߀A 
"A      @   @% H ?     y! 	$ x@!BD        @  D@( p     D H@G$@ B@       ? "$     D@H@"@  @@(@      DH<"D D@B)Pi      @? " F! B     D K'	!	@      D H@D@AA       ?@ H"N     DH$G$I(BPB#PI!     ? C  ?      HB?> @!C!B     D KBIII@      D H  B  A@	$PC      D@H'!? _"CF 
bC       ?@ #B       ? <PB@     D@H@!B?A@D(`     D@H@ B
"@      @/ A>"؊B.CP!     @ADGB_d >*"UQ=HHAd     @"!"? P8     D KB? #DEH P@     D JH! 	 EH*@A     D KG(_} D@$RPB     @
%)
@#     D<OA?I	HDD$@       ?)(@C     D KA?G"AA      @ D^ !? A     D H@GAB__  EPUA      @9_S9"ؑ     @	AA? P8      @"$5 H*U@      IG%$"/ȩD     ?@	@?UP Ȃ/߄     AD$"$N,Q"@(@      DEPaBjd A!_      "D4k @C@        AHI&I!B*"     @@HA Lc   ~DHP"DH      	PJLȈ&$Jȑ"$DH"       
H&Bȡ"/H"       A"&DԊȡB!E*"A      #A!B"fETP      ~DHѦ,@ D"x   @     "Dň "? ?B    Dj#U_F5VH"AT@      GqT3URNCQ_DAD"       'A%!)bR!HƒIJ<PRB      ! A"&$JȡB B*      ~DH0aLX@ @  @@A D       A,҈~&JʡB)e*"A      GrICVC0@LPT DA@"     ~DHѦ,@` 1          A&"ȡB"H"A      C(/H&[/H"    $IhX  @"@      GqTC7@ MTVQDEU@"     D rTC7DOQD D`"      `p    BD      GrICV7@ MTVQDEU@"      !J&>ԆΑ!L*"       C""BYcfUJ Q      %HB&֒ȡ"H*"     ~DHѦ,@  $ @      !D!3(UPaLª     ~DHѦ,@@@?	 @UA@D8      	*Ȉ&HԒA*$oꈢ      ! 
ψ"&|"Q)$B*"     ~"Fb0       ~DHѦ,@@@? (   @      ||" "HB'V     nE$ToPHUjet	(`      ~Dh  @ A p8     |EPjkfQ4Ua      @ ?Á3? "Dh,A     ! B$$"L0 $CF       G`U0_DMTV_ DqP"    #Fb   ?"  #      *Ј&VR*Uj      )$Q&<ԊB!E*"A     |D0
J?(BPJ)/      |HP"G  "   ?      Aܸ*O&B(R"Q      E%W`k%g"2Ua      |HP*O   $I        @AGAow>"ETAaBUD      wQ}U7DLUVd|DAD"     PGUZ@ kd@"*H     􄯧DJRTL ?~F0`       (W͊%|"(Q-       @*Ȉ &~Ԃ*Uj      wQ}U7DTLUVDDAD"      ܨALHB&J$DP"      @!ꤌ߈~&$P      A$U]ّwfUJ Q       *'$Ȓ?D*"     y$UT5D`|MSUV_TEQQ"     ~Dh  GB!D       OE	|mUk2RIvR     TFP@Djd!"&5H      @
'"?j"      #A* $(S Dɒ?@      @ $@ 1@H         "            @ $@ $ ?  (        
"a    _      @ $@ 0 B      d        @ $  &B@        
"a  $A            ~ A           @         
"a    @?     $$I"IHD$ )       H	*  8       H	"T! D8       @R"JH)
RI	T P      	  @AB*UHQTEPJ!      B!C     $BH	*        @   I @         Gp B      !@A ~p B     !B'Aϑ"Dq"E!B	       @@A
ODH$pHТI0	      8C8 p|ׂ2D      !@  p"%R?         G!O$I~r 	" D?        @G/"D~DrԢIE
A       @@A q%R?B      GB	!@ PUADA      !B'A"Dq"E       D?GQUTSUUUTIq5E       #DAr         @AGAO@D~  s)B       O'A%ID%Jw*U&zE     !OA Ā"@w)B 
       @AGAO_D ~TrB*A     H A'	 qB?B      "HBAĀu*U/@D     "HDO$~ w؊U/AD      "HB?I@w"Ef      #D?U~dr"E
     !OArH%? E     @ @OA	Ā" w!J	      '@ ~sB?"      #DO?~$s:	     $"HJqOUDr R(ID     H"CwAOD p@%R%     'Bd~r@	?	      GA!!uQ	     @ @OA?IHw؂,Rh"     @ @O*~"qԊ(0       @@ |_G         !@D" D@" D@      D!B A"O"@ E       DD""D""OG@" D         Dd@?A         @QAD@           !@"	Q$ I'DA       I@$@\"$ _A         A$	'H$I GI       |H"O䈏"$\" D@       A!_I< HA2!DC       A"	($I DT@ȁ?!      !@!#D*$ HGHA      I"	"$DHǡE AA      !"BDG >H2#L!     @?A  > 0      !@/D%$JH$P@E      !A!BDGIBR< I!0,      A"G	D<KA1CA      !@A"Ȅ%H'DE       IAA$O$]#B$I         !"BHJRII%9Kޜ!BB       I$$I?$I$OI A?     =)KҔ)J^)JҞVD"      JL߀ ?           I"HD!~$\"" H@A@      AA _) < KA0(       QA*D	,$JGI AD      I%WRUIU5WrU	D$P      !A _	< H 4,A      "#D"$|H~_@       	8!$ I$H@?B     }" F@ @?A         !B@<KA1CA      !A$O	D=H 7,A       D#Dx"   ?      !A _	I<I$U0A      !A'I'$< K4A 
      !A/A I	7, E      DCu?   $F5 Fp      !$$$Q$H'@      ! A/$ʉ"$ IB        % BO	tIR7SLcB	!    D~?1DcV@       |!!DDO ?           'Ą	$%H'DD"      !$"JGIRB=HDA2QC       ! $D	?$I I O       I	NO $(\SТ"@DAA      AA/@ < K7(       =/A$I<H 8\@B      #JIK="H1,QC       !bRA=}H A7A     	)J\琉JR!H?L!B      !A'I' I	4,A
"      !BOI A<H !1S!)B      	)J\琉JR!H A?A      $Rȉ?< Kސ9K\!BRB      @$$$I$H@E$      	$"JW)s!<IJ1A%B      	)J\琉JR!H%:K$      !'I'1U<IT1,!QC"<      @! _"D          !!@g
@I         B#*#'H @?A        !A/B	?U<I0       !$O	 <I4A?"     @?A  ~H"CǄ~     )/J@	2KҔ9SެIB      $"_I2RI|5H"      AA/QI)R I?(       AA/P	;ҔJ8$0     B*B|K?            @/*U<H !.)QC"<      !A/*U|"?QC"<     @|Q              O!     @        O!        @         #D?A/@        C"?焑"d!+ A?@       O! !J)B!B@     @ A!$_焐?> #@      'P=xBCׄR@       |@#?  C_D?!     @| '   ?     $||(   ?       "2IaC	      > ECD >@E 	()O         |@/H""|D	$(PRB     <I A$	$H<I I$Q*       @x"_	$$Hx!"RHUA          
        
 c D$HRP!BD
      @x'P	?$x@$P(U?       @H	?%@IA$DI$B      @x"_	$x"HUA         ?@@       x@)RǦY%$zh)R(U?      < BI	<JI)=$DIDT     @A  `,      @x"	"D$zA"B"E      x! B_	$x! B@
D    	?  `,       x@!B	$ x@!B      < K!	< H@!B
        |!"Ȉ"|D	" BB`     =H@!	< H@!B
"       @xH("PG	"D$Px!EAE     <H  	@<H $@J"      =H "$I<J$1D*B      <I!$Cd	B<HA!E
"       x@/B	$y!"BbG       x@A"H$ { B@D       x@!_Ǆ	'x@A"HAE     =JH)#D= J (P*        xA"H	A},Hh!"BHJE     < KA 	R="LD!B
"        x@/B	$ x@?BD        @O@      @x@/D	>$Dx""HHJE      @!_I%$JH!"B)R       @x!"BD($PxA$I(UC        x@/R'IH%Rz)(P(UBĂ      @x@/@	<H$y A$I(UC        G ?@@       xP!"B$ xA"HAE      @!B $HHA$RDIA      @ ?@@      H	?%TREI%$bI$ER      3@? 0@H
      x$H	?D$y!$BHBE      z A(Q'v%z A(U(UC       @x#HG	H$ xA"HAE      y A$BP$ {!BD      Hx$"P'	 $y "@H
D       x@?B	%$zH)RD      G !      ""DD"$DO""DD!BM       x@!B$ xA"HIE    $"Ipb  !       B	%RII%$RI$!B"      y$BI	 $y A$BHHU0D@      "D$%LJ%"JD	"N       B	%$RI%$RI%%B"     	 $       	 'R       x@)_Ǥ	%x@A"HAE     < I$#D!B<I @
        PxA/EG%P{I"E$D      Px!"_	>$yH)BQDA      BB	?$HI!$HI!$O!      P	6^II-$Ԓ^II$B       x@!C	%z("PHD     g! @A      9'J*T$IP%"KDIN        x@"DA$ y$"HH?DB       x@/R	H$"xĒ)RbHD       RII5$_, ԒRII%%_     < I$#D!~<H !"$HJb@     <I$#Đ	(Q<Ip%R*      =H@)#D	< H@!B
"      ""
8(@?"DJ!"D      Dx$"K簉R$y($"HH%DD       x@%"J	$ x@!BD       x@A$BPGI %x ""XE       x A/B	B%x ""H(        y 'T	>$@x#DD      {A B	R%"|D!B	       =RII=RII=B	D!P        A$I$$H  A	       x<(Q	D%z A(BPUiĉ      'H$OE$I$ID) R?      <I$D=DJH/@J"        x@/B	$ x@"BHH       "!|B/D'"Т     < K! Cބ	J=(KД D@"       #H$K$KI$ID) R?       D!<BI	'H!"B|Qc     D            x@/RGI%$"EAE      ""D($RHQ$I)LR       @!$H%KA$I$)R(L       @x#D	$@xA"BDHD        C$ HI!$HI $P"     y BA yA A	         &B	
ac !"BQ	     =RII=$RII=T2XAEW@      #HDf'H  QL       x@"H 'x/@H
D      @?B	% K!RED	"N      @)JDHH!"BD)"R       @A/BI%HD""H		!M      @x$BU	D%y!$BH>DD     {(Rz(Rz*TRJ(Y     =H@$CD< K!B
        @A _A%H!BB	
"M       UQQ@@A@A      $O/@SDQJJU,jPT RL     =B	=RUIU=TRUIUEETX      @A _/%H$"F	
"M      $P_M$"HD!JL      x'D	$%x!"BD"D     @H	' _B 	"HR      QA	?I$QHQ,eQQA       x@!B	 $ x@!B        *0  ?@@      PxA*ME	,,jA"I(UD      z.P'I? %z/PHD      y (BaI%${(P(U?       @!_$$IR*BQD!L    !B~*      @x("`@%DzQ*BT(UO       @'B$OJ%I%*JTJRR      ='Ho/T$IR%"JDIJ       @A BO/$XHQ$I$IR(L      !" $Dd  A (     ?A( ߒETB?@C      y (a	?H$y  AD       A!BDDO@R>$ H  B ́      !BAI$KA"E$)DR(L        ! BO"D$I|!$BH	B       @A/H$
$lK""DD!BM      @A  $%*J$I)RTI@L       x@%"J	$pyP)"RHUD       A _/($QI12BDDIR0L@      "EA"HB(      y (BaI%${A"IUD       A/AҀI! _	(L       OU&TRI$"_A%_A      @A/PO? $ K!"BD)"R       (xH!	HY$xВ)"b((D       $z\/"RDI%(jT	JL     {$RG	II$ {!B	       =H 'D?B<I$$HJ!       @A/@!B$H  "A	(L        x@%BJ$ {!B       x<!Q' %x!"BD
D      .DD%KHQ*I	P      xq""DG'$Dz$H	        y (oǐ)J'y(_耕
D     ?@  ĉ	/P@D
     y$K	 yR%"JDIJg        A _I$I$U B	AM      ) J@$$(HH""UDUS      @x!(#I".Bi!2BbG       x@!BI%x@%BRHUD     ! GB*f)RHB!J      xha#"X'	(${I$ID      !""HDORB$I"BD	"R      y/@$O% %HA?A	(L      y	$H'  %x A'A	        y/B$O%@$ K$"\	
bO      H/B%"K)_IHM     =H 'D!~< I"D@
       	""@ A$I!BD)"R      {	(_	DzQ*i$ITf       BE$H$ EJRE)JTT@R     =H #CDI <I$$HJ!      y	$O	 $x  B      y	$H'%z"**XT)Af       B.
DTSEI*T)R"B       A!BB  HDI$ED      <I $τ	=$JPA(DTJb@       @A/@U%H A/A	L       A/AIA$I	T      {A _)DR̥Uz)Q)Ef       Px'Y	?H$yA$I D@      @/Q$O%"K!$B	L       x@!B'x-Bi1@       x@A$BPGI %Tz*UHAD      $"}!B$O$"HDA*J     =JH/D?H)$b*"        zH!_ǈ	D%}!$BJU ?      xx!	*T'yP?BD        yD)"E	$ yH)BEAE      P!BOO*U$IT%R_	AM       AI%!H@""HD	L       A/A I	'H$ EL     x@9(P'@%x!"BD)Bg      ""_ I	$OI L      ?IG'2J)"Q	JM      @/H%$JH)"RDR       A!BDDODR~$HPA"TQSL     B/ȡ"AO ??
     {ސ%*D'JS$ {ސ%JDJ      !B_, _U$I(       !/POH%_KI*RTI%LD     =J/	=J*$TJ       !"B|$%H!"B|	$LH      @A _/B%H  A	       @A/PO w)JR2jD	"R       A/A$$IA!EDIRL       x@)"RGI%x $BHBE     {(
_)DRz2U/P)怀      @A/P? $ KA$I$)R(L       @A/PO H A$I	L      =J	/H=J$A/Q
"      y$BH	"D$x@#J     =H@/DU=,H@"H      @x'@R%8xQ)EHUTD      @x@(`GD%xH/B        A/ADI O	
"M     y	$O'I$z**WԠ)Af      I$OO$$H (QTAR      @A'@
L$$I$I%L       x  HG	 $y'HH?DB     {/PG%|@/B	        I)"I$/ %J)JQ)QR      @A$BPDo %*JT)RRIHMd       zH)"_ǀ	$@{Q*UHUD       A/AҢ)JE(WԢ)DR     {E _	?I$y$ _	&       xx!	%zH!_Ȅ      <H/$D< K%DRJb      =JQ. <I $@J"      yI$OI$$ x@I*TTȉ&        x<(QD%Dz+TH_E"     {!B_)JR x@""L	&       !!X"%O|!'h	`?      =JH/D ?J@(T@     z)Jj)RR{Ҕ)RR	z&        x@)bRGk%${"EAE     {ޔ)
R@z)/RPDID       {Q(QGI%z(Q.pED     =O"<@	=$_IE%W@     <I$#Ā	@<JT)$R*"       @x$_Љ?B$x&"RD      @'H$ $H2i"IDID(       )?@$KQ*UD)R     =H@/D]=TJQ*UJA      <I!'Ȅ	> =JQ*UJ       H%BD%M!$BOI|L     z|%CI_$yJ%RK)P'      @A/HDҀ"H "GĈ!JM      x/E$T{A&UHUD(      AN*Dc       <IP&Ȅ	  =JQ*UJ        zX)"ZǤI$ {!"B"E       x (WǢ%|z *"TH_E"       A/A H _)$       A%J$O$I|%KIP      {'H'I? %z/Q)Ef      y! 	"&{Q*UH       (I/A$$II "_	L      UI4( ?@@       zH*HD$y!$BO"DL       x("UGU%x I.QUdć      $D|$H A
"M           ?@@      AN*Dc !"BQ	      @A/PO<@$I!$B	BM     {)R'IO%wzU*Wt	        (oĐ?B$H $_I$LD      @A/RҔ)K*JVRRG     wUPB*Ut2-X5H*        A%E$$I$BO	"        E/D?&I!$BO	"̀     {'JI? $x  EDITf      {E"EA{U"DD怀       %!(_!?@B       I"_/"$DHA O	       /DD?A$I _	AM       A/CdR$DI$E$EDIDR(L        {/RGI$"{!/P
D      @A/A^RI%)H _	L     {ސ)JJW)1%x` N$&        I"O"$K	'H$ L       $_O?$I$!_:M      @A/TTO$DII O	      yA/Qk$ y	'@$I?       #G)RK"!"BQ	       I"_$I)j N       {!"	-jH!_Ȅ       ?DD|R J(A/Q)M       B^z%JP)B^DyRa!      @A'DD҈II$A L       x@!UG	A}$y!'BID0      8!^x$ Hq':yĜR       {/B %{/PH"D       A'A!$I} _	D      !RJD  I	$OI       <$EDI%II$OI$L     )/J@2K)R^IR      !'HD$I!$BO	T)      /AH OI L      y :UG%Tz UHU       y$BB"D%T|D?BD     {ޔ/zR@RzrE(WԠ)Af      SUT*UUJ*UJʝ*X       1W_ '~J*WIQ@L       {$B	%z("_ȑAE      A'߉$~  O!?@!        _O^%H $"OĐ? M     z|%BIҠ]zu*
TTI&?      y!?TGI%|z (WȨ_E"       x!+`'I%${'H"D|      P{Q/UG % z/URE3     ~x"7犉Jgb ?@@       *"RJ%*K+R(     >EGB  ?@@      @A?ADOO2'I~3"{I       @!_/O%J )]$     =JQ/ɐ=RJ"Tb       @A'DD $I$O	R=      !'Y$$I/zR)NR      ""OO?A$H(j)?R       x@A$BPGI  %zQ.HUE      y!'@U%x@#J     ~x"7犉Jgc !"BQ	      ?"Ey%JT/RRDM      _
OU*[XH" Z     )JJT/DH(AL      @A/P)$K$OI?"L      {?Bk%x@!UE     yA/Qk$ {A'JI*C       "Dd$IA'HM      !_ *UJTUTʽU1     %/JRR I	'H$ LD      @A/RJR J*BVUM     /I.AdMU@X       **O䈏?A$I$O	D     $$@R%JK-RDIRͱ     !_AVRU[5 
T)      @!_O~%~J*WĠ	UM     A/Qk$HIA7I$̀     Q^E{cjP H"E$B[      @USUܑ     /zRJRHI!/h"̀      !_ ?B+QJ|UT=T1     ! O r~WT(BL     $Q쀏?H$BD%,     (}e"1VQRH JBY    @@(/@    G"(E!R@$  @     C	$CD!
$(DOЀ     ~$I GHP!BBI A$      ( IzHQ^Q$HA     	@H"	UVE_U     %!'R? `"pD  	       @A?B	 C$ G#       * #0A        C?@G( p      DB")** @      ?@@!" $@       ?@@ ! F%F      ?R@ @?J#"(        @A'_ߠ!^~!KCJ*ddG        A           AA?	D @<A!      AAB?	D! A<> D      !@@?	B%A<* H     @B ?DDIS!CA       B$H?Ą@@?        )H?D>#P<QA      ?@?  @      !@>D!5ĀȀ    >  ||0  @        " "0 	 O@       
 BB!  D`        @!BB!    "" `@ <$ 	      q! C CA        @?  h3a؀       >"    $I@       >"   bI$T    |x ?"?"?@0\      9'QA;A        
 dp!Cq"\"E        /I.AdIT%H%  A      
 gp!W " 1   @      !$$ ?       /I.AdMU?@@        @  ?@@        A@ ?          I@ ?         8BGB>LR&H" @     8=D}!B(DPQa      8A_}$I($POE       #"""$ @@B("       ;_ @}*$R/Q%       ;D}$E%JQ(        9E!| I)DEA     ( H!"I"HDRHI"     ( H	"II/RHI"        ( "D! BHH?"B      ~ @G>>     9 _D}|(WϨ_"       @@/B)H	 @       !D#D=RH       GDD?DH        *UT?  I`       !"D$ D@@      @ȉ2$"$ȒJ"E
        !B
"d AP!B       e%TRIE%RUIE%@b      @@I(&PJ"~DDPȡPEAE        C$I
4"Xd!RR$QR      @)&RJI~ETP(U?       @A!B
~D ȡQBHIE      @C$I
4"Xd!RR$QR     @$H
)~RDQRQDA     A!B$FHID ȁQ"$HH       @@A/@
<~HD!RBI(UC      @@A/D
~>DDȉQ$HHJE       !C$Pʀ~"DdQB!EB     B!B(Q*v~E!TBU(UC       @!B'H*U DRH@E       eTRIE%RUD!B"      C(&RJI~E$ʩQBIUD      @AB"H|DRH(U        @A(d#d!TB%DB      eTRIE%RUIE%_A     A'T
~>D@ȁQDD         A(%P""HdR$(HR      @C2"J"
!      @!B/B
~BE!P$H(        @ F@J~E(QWD@
D       !C$I
" eT"(HPBB      QIe%WRIE%RUD!B"      d!SH!DHU DP"     H@""F_~$DHPDDH ā       @#*B
k"eAT/BB      GB"_ʪU~ETʩV2$PHD      @AB  KI 
L     @y &TJ ~DA_B(D       A%R
" d R"$HHB"     @@$FU
6DASD      C)&_ʤI~D AWB       Q*d!WPAEPUEQbB      @AB$FPJU~GAT$b(U(D         #(E_B"eDT)QBA      @DF!OH"	P       @!!DDQRDJUJ      C(&_ʠG~ETzQUD      @#'H"eIT)(R҄B      C" B
~PD@URUH       @ABDFKDR~|HPAQSL       C(&_ʢD~E!U$TH_E"      @(&_ʠ~ GAPB      @!D
!~BD	RHH?DB     PBIR(&_ʊ"~DxR"B"D      @!(P*@~EUZJU*C      C
+P*U@ D	S$OȐ?DB     HB"?T^~EA_J     @@A*FTR~E UDRJEc      @!$&D@DQDH%D     @"/B
~D@Sa      A	" "~FURUH      BY)&ZʤI~D R"B"E      @AB"FJJա~~DRTHD"     P@"_ʪ~ESDO>DD      C?RJ~E$QHE     TBJKNS }J"A$I$KL      C_+5|H I L     B!z5FDJU~lDPɱURIUD      C""~EIW_Ȅ      GRJF  I	I       BI_+"|DH$$L      @AI&KUS I	ʤI L     @@_+}~JĢ	L     AA*I!ĄIqR%     GJR(KҔRҤR1     G"_v~H RʤI*      G$_~EAWȑE     G"_+? }H@ERĵIRL     @@ADF+TMI?AM     C"/RJI~ETUW$_ȠD     @@_K~}~JĠ	UM     D!p&D}I!$R     E)zuRJKޔ!D	fO     @# $" "
`2 `      ? A!HB     "/P!
~HR`(T0@      " D#$RPBO􂈈       B!  $ G     ! CA!I>$#D" D?      ( P@"OT*UJ)HR      B@HBQ)RI$H(Q      $!B*X U$$G      *"w* +| /H       @D)2RdI$$@@@     	  CA        CA    `     D        CA  @ ? @@       CA          @       CA   ? @ A$P      @"  @   D`     @"    @! D
@      CA     @@0      CA    @ $P       CA    " @        CA    @$I"H       CA  @ ? @1 "H       CA  B      @      CA   
  ( p      CA    @!B!B" @      	 CI         @       CA         @      @"         @       CA   @     @      !       ?   (       @"  @	 @        @"    ?@  @ 
       CA    @ ?     ?      CA   ?   @        CA      " D        CA  @ @    @         CA         @       B!C D%&JO!$@      CA  @@	    p       CA    @  
 " `      CQ @ `  08       CA  D<A@"HE       CA      D`      CA   ?!B! @@      CA    A  `       CA      $ B`       CA    @? 0 ` 	 !     @"  /  @  @      CA  `  A D pp      CA  @ @? @   p     @"  !   D`      CA    	0 @          CA    @  HX @@      @"    @B!J       CA  P4Y "        CA   !    @       CA             @"   D@F      CA  P1           CA  @ E      CA       " A0      CA   	! P @      CA  B!  $ G      CA   !E!AB 
      CA  @ @ @H
 A         CI @ ?@   p      CA  $P0F H"D       CA  P<@       CA   ?  @@(        CA  $BI	" B       CA    # D`      CA "B!A        CA    @  #D  ?      CA               CA    A @       CA     D`      @D$!
0 Ȃ!F      CA   ~    @@      CA     0(        CA   ? !B%D       CA Ba!Bx" D@
      CA        A "H       CA    @ %QAA      CA   BB@
  D`      CA  @?   @$0!      CA    @  	  ! @        CA  @"D!"@H@       CA  "D@$"F       CI @  @ E       CA  @/B!B H      CA   "@D!        CA    'H@%DHA      CA   " D@( F ?     @" p $ D F       CA  P0 A 	        CA                CA  @D$I A(      !  ! B! B  PC%8D      @" D"R2@$"H       CA   !!O
      CI ( ?   `          CA @         CA  P@CA       CA   !BB!      CA   !BB!     @"  'H!"B|
      CA     ?    " H  ?      CA  B?B!!J@      CA   " D@         CA  ?@!       CA   "|H "&q      @" /! ~@B       @"  !B A        CA A D      CA  !@ !A      CA    @        CA    ?@ A         CA    `
 d#   ?      CA  @?  ?B@      CA    @        CA       @      @" $ H D@@       CA  @ @ B       CA  @ ?B!"B
      CA       B       CA  B!B!"B      CA"DEA$_J      CA  1$JD!B$      CA   @@DAL`  @       CA   >@A  $@_       CA   "# D`     @"   D           CA @ D@ qp `        CA    @@?      CA    D`      CA  P1 I!@      @"?        CA  	    @       CA  @	@   @       CA    A (       @" 	0"B@      CI       ?      CA   	 $@H@$UA      CA    $HH$"H9       CA     * #0A      CA D$(B
        CA !B?$H        CA 	 @ AAH
cC     @" ?B%
P$C" D?      CA   ?"D$I"$DHB"      CA    
$ 0       CA  ? BD	r$ 0@     @" ! A?   @$0!      CA D 	$'PH"D%|       CI   ?  * #0A     @"    ?A ?      CA  @ "E"#B     @"  7A       @"D @	?B A       @"    p   ?      CA  ?	"@E$pS ?     @"  $JI	* B(      CI  P @ '@ 
      @" τ$"P1" B	        CA    A `      CA        ?      CA   @ B      @"  88      CA   @ ?N     @"  (0  !"DHB      CA 	 ?@!@D
cC      CA `! B~	   @     @"   !

     @"   ?H!BC      CA   @'H!?      CA  @?@!        CA  D@      @"   7E@$       CQ @   @       CA  O	$BIDQ @A `     @"    ( p     !  ~ @ Ѐ <       CA  @     ?      CI @!BV#8A      CA   !B  ?      CA?H(
"      CA     @ @B      CA "D " "H       CA CI  D        CQ   ? @`O       CA   H  p      CQ         A       CA  
 7B"
     !$!B!B  pp     @*   * #0A     @"$D @BH      CA  H @@!       @"  'H!>B      @"  B/B!"B      CA  P1 I!@       CA  $@0A B
c      CA  ?@@         CA  ?	""DD B`       CQ   " D0     %&JL@ %&JLBH       CA   O!"B|
      CA  dEH?DD       CA    CA        CA   |# E@!(BA      @ /H?A A        CA   ?@@  ?     !(     P @      CI (            CA    @? @1 48      CA  P       HD %"D'"D"!`     @" ? D `A@(      @"~BI R@G@     @"  ?   @       CA  O	%H" D@A      CA  @ ?I!$BH	*      CQ  A p8      CA D "ErC"B "      CA      ?     @"  PA?A        CQ   0@A(       CA @?(@p      CQ     D@"PD     @" CA       !( (0   A"$DHB      CA  ~>$DH"$HHB      CQ     @      CA 	 @ aA"H
cC      CA  (         CAp@!@B@A B #      CA    C D`      CQ / P Bdp8 DD      CAb L   @       CA  OI$I$I$I!BD@E@D      CA  @@f"0D        CI (    D      CQ  f"0D        CA  ~ ".$DJ      CQ  ?   @       CA     * #0A     !  @`	 "  @       CA   @I!1A       CA    ?   @       CA   "  D`      CA  ? CA B  (       @" X`       @"  !Ht""(      @"  !$BP	'HIE!     @"  D $$ 0      CA  "  @8      @" "!'D 8
      @"?"!  C
      @"~1pAP	       CA  p_ |P ?     A  "D"   @      CA        ?     @"? 0@A      CA   	$(  D$)a       CA  ($J!_	        @" 0H!"B|
      CI  @?@?  @       CA ?@ $  0x       CA ?>!AP.H0
      @"B)RH2@BA      CI (  !A       CA A p8     !   $ $!AD pp      CA 	 @ }AHcC      CA     !"B!       CA  @" *(X@ ?      CAD I$IE!
B      A `0 D*H      !   ?B p0      CA P H        CI @!!!J     @" ~>$DH"$E%       CA"DAD DA
l     @"   $Iq!RD
     @"  	< B	"      @" ?2@A       @"    " DD     @"  ! !#@  @       CA   T$
D$A`       CA ?T2DĎA`       CAA"DH!@B	DI     A @? @       CA     B      @  O"# 0     @"  $((`0!"BD      CI P1      CA  "" "    ?      CA @!!@       CQ   A   @       CA    #     @" | "x)_        @" x #!_         CA  ?$!"B
"      CA "D)(  ?      CQ   " D0      CI ( HL       @#  	 b3?" O0     @"   D         CA   RQ D`      CI      D$)a       CA  $HHC      CA@$HI7"DH       CA "H?@@      CA  ?@@DD      CQ ?DAD      CA ?   @       CA d
@8@!J1      CA  ?( p      CA @  ?D ( F ?      CA  ϐ?"BD        CA  B!@A 
0      CA K@EANDEH      @"?>H A 
"       CI  @	  * #0A      CAP s A      @" "D!B$A      @" $DI       CI  B! $H ?      CA  P7ـ@       CAD
 O0E"     @"I"H1@IDT      CA   ?   ( H?      CA@g"@ @       @"  >`+ !"%LO     @"y$"H#x     !  "0L       !(H@      @"  $I,"I       CQ  E"@!0>     !$ @  ?@@      CA!BC$ H@!      CA ! KH @       CA @!!8F`      CA   ?@       CA_""DDPyEA     @"?"D B`"      CA? 0&	       CA  " &*!@      @" )"	8 BH      CA  $ H@#ʄ      !  2!_Ў!*B!      CI ( HL 
 Ia      CA  ?cI?     @" @KȔI'B$
      @HQ@"? ( p      CA "  C!      CA   T$F`      CA  B!T$F`      CAPD"E"*RBc      CI (`?I!H	*     @"   C     @"~$"Hw!B$     @"$~1HtQ
!     !   	!$I  @      CA ! _ Bd8@ <      CA  >>DD  $ H        CA   * #0A      CA @1AB
c      CA ?$dH%R      A @ /" JD ?     @"AB * N%	     @"  (I$I%QH@       CA?	"(tW T@      CA  $"DQ	 A     @*$ @@ALa     @" |~ cBB
     @"| s$@HB      CI  </Q 	F&      CQ  A p8      CA           !( `  @      CA ? ?      CA?!@BIW"D       CA"CB ON A      CI   !DX     @""D"!  @       CA ϾTP:&ABJ4      CA  @DAD pp      CA   @ "       CA  P $?      CQ  ?,@ A ~     @"/A	 $@H      @" @$@      !    *H      @"(>I XB     @" ?B !R$ !      !$  (_ B!
     @" ?~ 8`iSDQ$B      CA "H	`02PH* 0     @" "D P P%
A     @"   b3L)@       CAB ?	$IA A       CI  !^ ~R     @" @?A     @" "D0qR$Q       CQ PE   @      !   ""G
      !  B        CQ @B""    @     @"   
      CA  ?@@E	D      CA  ߈R>E($PR       CI D)( * #0A     !$ B >      CA   !"BD	'HE      CA !$IP_       !   1 ><     @" " x@!      !           CI  @_! B        CQ 	$H@" D0      CQ         @" ?"2!B?B     !(q\?A      ! 0| @" DL      CQ     !A       CQ  7ـ "	B      @"?2$pQB	"D      CA ?"~8 @w?      CA?@A     @"?!%J)HB?B     !  	  A $ 08       CA  BD$H  >      CA d~$~H1q!SBBA      CA  ψ">|D$DHB     @" $!JH'B       CA BKPHN!@      CQ   D         CA  @" D@ !       CA g?        CA   "@0A$	D!      CA  B*BR%B@     @" "$(Q(P	 "      @" )Rb@A	      CA `z     !   ?	 b3؀     @"" B	
      CA  @?H>       CI (`>D!CA     !   ( A      CI @)(J V#8A      CQ    ?@@        CA ?  Dpg      CA @$HEC!J     ! "D$?$BH B@E D     @"H	?A$I      !   @ALa     @" 	 ?A$I$H E!      CA P/B=xB!( p      CI   _I"$ID     !  K/  ?@@      CQ         !  Q  ? @   (        CABAHH`0X!~     !  D(E!A$I?     @"x@ GA A     @"x? 0 A     A A D@      @"D~$I$!EDQ@      CA ?F@"G        CA P>Fx#DB     @"  ?BE"D!OP!!     @" S _I      A " (B T&8C     @  T$F`     @""	 ?T&8C      CI l;   A      CA 	?>I(QID
D     !  <8 #&FC	aa     @"   C!      CA #H'       CA$'@H'       CA Dg 1AD	     @"  @<
      @"  	>  @ 
       CA $	!"@ B     !   Q#I D	      CA '@J $~!pB A      CQ Ȋ!(! D`     ! C D   @     @" "?  C!     @" B9WQ?B     @"   $      !  ?)DB       A @"T(`     @" 
*~*$ IA Aȼ%      !  ">|@$@I
      CI  ?  @     @" ~S  _!?"8     @"DA?DH#DD&      CI  01"BD?     ! @?D@ @     @" 	>!#@ E     @"? >HD!CA
     !  ?          @" ?A|$Hx!JB     @"" 
     @" ?I"E$I(P_@     @" C?ҤH"JD@     @" "||$GЈ      ! B A     !  ψ>|@ ""!     ! 0"" C!B6      CA	<BH%@I@      @" AR	)GAIf     @" 
"$
" 	     !( 	 J#1A      @" /DH$(EQQA     @" /@HD)PA     !  
/ X8     !$      @      ! G @?D@@      !  !B!BJ"d      CA? yh%bJU ?     !   ??@@       @"  h" _@|%S      CADq	DAD pp      CA$?A p      CA 1T IR      CA! /P@D#     @"  "BD?      CA	 `aI !      !(?A$ @      A @     %T&9      CA ` Q A@I     A  ~
$r(DT&8C     !  "dA p8     @"@G(UPT(RQA     @"9B0|      ! "    X8     @" 8+  DK!">      CA DP(P oH     @"$0      !  @@  $RU@     @"|$xJ JO(	)a      CA o@?IC      CQ @B!
@@KL ?     ! 0	C? E#BBc     A ?"}$I)$SO      @"		$"H*U      CA $ O!?@"      @""
(  "BD?     !$?@@      CE$!JI""R     A @(>2!@     !  1 ? v*     !    A$DKA      @"(%HGE"      CA       @B%2RT     A  @$OA?"      CA$A~F I!N%@       CA?~)"RG	C
      ! ?@ IR     ! ?B        CA	D1U/BIQ @      CADE`OIQ@      CA$D!M $P@      CA @?$"TTC!     A DH@!  >>     @" #DHD)PA     A 7 G!       CA ?Bb"!      !$ ?B@0     A A D@  '       CAc?D ( F"?     !  E( %C      CA @A@a      "P yR%{ʔ)+T)HjҊB      CAC#R""BBc     @"2H!$I      CADDCDDQ?DD     @"	>	$"3 JE@      CAO"I|%D%@     A AD @p     @"	">
##@JA     !    !       CA b	 b3 	"!"     ! I!1      !$ $)T@ 	
"&      CA  ߀?~@!LX
      CI lF8C?@@ G     !  !D$HPP IR      CAIT  !E@ADB
 #     !    $I      @"  ϾD @q"$0     !   @_AM`H      CA g       ! (!^? A D pp     !  B     @" @CEA
JH'     !$D" GĈ"$ @     ! $?@?@@      CA @Q!P~""FI        CQ  ĒH ̂a     ! " C1   BD"D     !    D?     A %  AD pp     !( (4	       !$D?A#      CA   Î:T,UPUBJ]A	     !   $HH`9Ȅ        !    $@2     @" ?I!'      CE 1_ A     @"     !"     @"~ g	     ! $?  >      CAD `I$?      !($H$?@DA$2      CI  H$UP O      CA?8kP@!LE1     @" ?"I,B	%"A      CA?U|((_Ϡ      CA H	?P%  "BD?      CA  `!      @" C?ҤH  @      CI 	P?DI	       CA?~@C _ .?"8     @ ψ""||CDEH     !  
*HD!B
"      CA%*l      CA  @B``3"H?     A _B        CA?48P@A$      A Q
5Ǩ SOE?A     ! π
0,T      CA"(DO?DDG     ! (8X(,B!j     ! ?8p@'A #     !$$_Q?IP ?     ! $s$O     @""DETD`I$?      @"'HD`@$
?      CA$ HH _	"D     !   	'@ JB       A A ?B ?     !$B!0     @"~$'p'H     @" 
 K $O	$      @"
> +Ć$     AD	$H       @"@DB%M.Q      CA|HK#A
xA      CAH#A
DA     ! D	R`11 c      ! B	!$@       CI  $HEBD%     !  b@3H  A	     @" $Q"%DI      !$D ?@@@      ! D @ $	D!      CAπ>>AI/B       CAȈ""||	?A$I      ! DO>>A	2$HH	       CACAS*l      CA  >E B*XC      !  $?   "	B      ! /  $@2     @" *YG@      CA w䄡	_ (WTC$B!     !   I!@%"A      CI Ȉ"$BB	F     @" "< #D	6%     !(?DDI_S"dDH      !(?A$I      !  	 B5A     !  A?? @L 	!     ! ?DD  p     ! WD? ""G     ! E *H      !$A!OA?AO      CI ?D@ 	IIH     A A	R?~@2c8̀b       CA?  {!KȔXE      CA  B \!DB)*      CA C䈅?¤(HD@     @" τ">KAEBA     @" $*${EDODR      ! !??"  <      CA? @y!_"D      CA"> ! 
@     A Q@!A      A?D	D$Q1 <      CA D*($BDB     !(@bI$I!!       CI  *HC!	     !    $%      !    A      ! TK?H$2&$BH|?     !( o ?BC      @" o?I~%#@"     ! ?@ ? I$%      !  (PQBEҮ%p     ! 	"2P /@D!     @" B^)ykK"      @" (a$$O
I#     !$  $O      ! G	C	 !R$"

c     !( `  |U@E$P      A #P ''       CI ?|H@kCJHQB     @"@G*$_P|)PA     !$ @?@@     ! "H  !>BD      CI #DD " DD     @" "] HDID> A     !  !'Y$$I      !( `	  P BD!!     !   q! G"F~      @" 	$
IItYD%Q!A     ! 2"*T$F`     ! BH ?@@ ET@     A %&ZYERRD     !    |!0     A D	 'I7D*D     ! "H	 `3؈"     ! DO>>A	*PJ8       CA?I$!$K_""ED     @"@G(_P|)QQA     ! (  ?D@@      ! D	?@@@       CI  /?B  !"      CA   	"C  
      !  @!:rD	<     @" 'P!B     AA!} W)H%"zD%     !  @?7و B|	      CA J~((! )_      A%Q)(  @      ! DO>>@>$DH$d     ! D  ?@@     ! @κ :       A ϐ%DDQ/*c      CA((%V1($_Р     !  
r 'DT&8C      CA B%Hx`#0H!~p     !  ?>A      !$D?# I!	C     ! >>      8      CA Ȏ
b@
$      CA D<@  $	C     @"	B?	"H
U@     ! " }""<!c     !"FE|= D1 L$     A @("6} | !H     A !      !$ @?@@     ! AD?@ H!
?`     !  d'|J#4@D      ! 䀟$D 2@I%?@     !   $B	H! 0"      ! ?ĀEdO?8     !  	D""UA|"DA      CA?A$!C  $D     @" P@* !"     !$D ?D@ @     @"	>D	 @#
I@0     !$B%Hz!	R"     !   $D%      ! 	R0V)_D#     @"?A$!K _)"RD     @" $*b% E     ! aGP?I~!'@"      CAȈ""||	?A$I      @"!~D@Ԡ)CR      A
+I D%T@     ! @κ : Ɏ      !  
?B%S! B     !  {Đ H B     !($"{ #$     AB"GĀ" |P!%|A      CA ~ Hx' ?!     A <@C_      ! I	$?@  LC     ! @κ : B     A >U%-PA/B ⤄@      CA?I$!TK _%"JD     !  %	R%HPP(`     ! D">IAE
"A     A  ~ Q   _I~     ! BA$C/O     !  _%J%1KE?Q!     ! BH?BRQ@|     @""	T" JyB5
QA     !$ 0)(       !$	  _HP©
%QA     @" C?ҤH  EPU      !$^ß?@@      CAXH_LIB     A!zB)RQ$     ! DO ?I#"(
i     ! ?   	 $     @" ?	bE6     !  B!	 B     A @ P(qD@IL0     !   #TD''"8     !$%Q  !>BD     ! D /DBY&      CA!z s$KД/BB#     ! IA/@ $iIL?     ! ?  O
#     @"
Ȑ #     ! B!~$  "HJ"      CA"D|P _Ȅ"     ! _(!@@"      ! "  O? C     ! 3% B%d       CI ( 3  }!CD      CA?~*YGBBA     ! /P D""     @"Ǆ_F*P|ABC     A @߄ ~BA<      ! ;(%ȢQ@N
      ! D "I "G
      !$D	$ O ITU@     !$ ?@! F%F     ! DO ?@! F%F     A 1R A+Y/Ȅ$     !  O
 ~ BB1*"     ! D?"!"     !$|D$G* #0A     A  ?IDcB     A  D?ϕ"I KFA	aA     ! D !      ! @)(!      CA@
?(AC<     !$ 3H ?      ! ?  s$O!R"#     !$ U%  ?H  @      !$   $>     A @dI$*Ha_Ą5     ! @κ :  	,     !  !"RW   b     !$    @     ! Q\Mg        ! AII !$S$*"     !$D	(@^y	 O     !  *U(!B	C#     ! !Z)(j!      CAG@ |%!@B     A AIDDP( p     !   I?Lp     ! '#!nFx     A A !> !BҊQ!     A A("	! "H	     ! DO  $H  OE?     !(o @fx0@     @" w#AO     A zR$	+$D      CA>$ C%OҐ?B     A   D@ c檵U/D(C     ! $E@a      !(H&7  !     !  ϐ?PI  	     !$B "#	     A !:Q^Q$HA     ! @_!B)gDu"     AQ (D" @|      CA  a U2 D~      CAG?I$C<      !(WPS?A   D     ! Ϥ>@Ob_D     ! DGD$F@@     ABQ_!8FDT     !$A!OA?I     A  
C !&҂
c     !$	?@@     !(@g=  @ 	V     ! 2"* 鎒H	     !  
.*|	      !    h"     @"!? RA     !$@'P!B     !"" (DO/QDG     @""	T" J}B!     ! DO&?p .А#>     A D	 'I5RGIE1     @"	tJxT&8C     !"A4_? @     @"x	Q>T	  @g      CIĈ$?PB" H     ! |I T#RH(B?I     A @	$?濫THOE1A     !  BRGON?	      ! RI?)IH?"      !$5>EB@g     A 	?H	1 sT T)     ! B (Q$B  %C     ! $(LT)4$DKtA'I@x      CI @Wh_%_"?     @" Ā>Ddu*]Ā	     A  ?H$ H8     @>DH
UJ     ! _ KP$h9L     ! E'UhIGȈO     @" { 4'?$B     @" ?H	0hc#_Ф?B     @" ?A y )^~     ! DO>Dd~$IA'     !    #T/xI      !$G @ !	$     @" 
>DC⢉%jRC     @B?~TJB     ! @κ?       CA*0@A     ! 	R T @     !$$BBH|
	
IHppLp     !$.(P\Lp     ! eW ?IH%#@"     ! }gJ!B!(     !$A!OA?I	RO     @" I!$Jb      ! 0"*|q!W	 A     ! D _?!$0     A *lH
UJ     @" BT$O `B     !(>2HD_  D     !"AURKA?J     ! @κ  }B/АC>     !  ?B !ʀ4B     @"x?Q Ty )$g     !"!Z*R@  	     !"_*~|c䒯RR?      CA B	bH% U	     A@_? BC! HB     AGTs&@_D     Aȑ | Lp     ! !|!KLp     !  D>"3     ! Ą/J0 $CF      CAG?I$CEH     !  O	$xDLO?&     @"A"TW!_     @" !TC"EQDA     @" ITB!EQDA     A ʈ(HT=     ! IU? /QJ     ! (|"}QAO<     A  ω 	$ϐ     @""!%     A |HJ%J(_)A*     !$ 0*wp H	"\     @" t u UT     !"!WUCUXG     ! 8o
"
<>K@I\d     !
JP! !D     !$D	(@^yIN      CA}PG_ 	J     A Ȁ? }x     ! DO>>AUKQ,     ! D  "U(QD%IPEDD     ! ?B	 R(	     @" |D/ *     A 	??BT%/ @B     A D*} @      CA!~$C     ! 넒KI.I$      ! )RT=HRN9BU     A a?IU%'"օ
D     A{֔RP8DPpGp     ! d>~TB'J     !" +TS$E`!
2c     A  U!#_     ! GJI!  !D     !"A4B@	$     ! D*}H8     !" }T#Da#2 c     ! DO(HE@O)$     !$(	R&
(߀     A{֔RP8DPpGp     ! @κ @}!
?<     ! )"#H^%(QH     !"(>|QWO     ! 	#ʄ$K'JEV     ! D?J* D     !"{ޔ@$_?H     !  RDz^z^)z^g)     ! Ȉ" |UJ Rj     ! D>$	Lp     ! DN8@@0     !$Q)j5I(JA(       @  HB! b!       !B >"!d      !B B!	$E&      D, @  @       D, @ ")BT@       A(_@
De       @|%'
x)R jDI`C      $>~! A F      $>~$ HpESRH`L?      $>~ O!
P@@      $>~  @8 O      $>~  O!?@_      !B *EN`~      !B $*Q	       $>~! RHy$       !$I	A@      @ ^
GJ%8R@d       !$  "'       } O/' x~!J@ITC       < G	%<AI BaJ#      $>~  B@)BЄB     <?A)*<I	%BJEJ#     ?@W?ӊ<IQUKje`J#     <<@C)+<)INrEJeJ#     (<H@"\
kN(]s¡%Be
c     (H<G"SkI(]%BUJ#      x 	$#R }
 +TO      D	^ @!DMU$DP     !$}H/x>E EETTC     ! BxϦuW_5~
%ʀ!U      !!	HB@!      @! IA%PA! G       #)$RH"D R>0PE        CI
$*H| B@<PC       _IE%RQE!0B @       #	"D$  @P"     z>!HI!BE4 @      @ 	&J$"D Q $        IE&RQ% PB      8CB
*}@@<DP       @@RʦY+}$hD<P?      #@B
+| @@D(         C	"D$  @P"       #@EA
+| @@D(          GB
*| @@D        C/RDI$ H@/@HP         @C_ *@| B P?      @ BP
?*|@A <P?    ? BB@?        'AD
*$|DA H        @P!B         @@RI$I!BHBF@     @ HD%PJ"*D|P@A      #@#EH"*|@<P      !?DC     @ @@D
*>|DA!\PJ      #DWR*}HE@<P         G%RJI*} D <P?      !B%HJ?*P|@B@М      #B#EH"+|B AȜB      A D pp" D@ !     @ @@H"*D|A@J"        @@R*UH}RF(<PB       @@B
*| @@      " DCQ*v*} D@<PC      @!TRHU!|BE!!      C_!TSHU!|CE!@     @A?UXHU|E@QE       @@B
*|A Jb      !B%JJ%*B}B!\E     G_	T%WPUA}GE	'@!      <GQ
D*} D@AмPa     ? DFo"           G@
H| B@<P        @@BJ	*}@A@QA     H A*(|PB@<PC        @ACH| @AB       8CH
?D|B AМ      @UTRUI}%GE#       #@#EHB*|PA AМ
       xGB
x*| |O<DP       @@_*8|PD!<         GB
*}@@     @@f0B ( ! ?D@ !     ! BCEP*|B AМ     @ @@@
<*H| B@<PC       A#EDJ)*| A A\      ?$ $" 88C"        !B%P*U"*D|A@QA      !B%HJ!*B|B!\P% D       @ACHD|B AȜB       @@_ʄ*}@A@QA      B!  ?B! !     " BCA
$*H|<OB      @ C%PJޕ%*J|BPA<PP      #D%RJI*}$A@P      #D%PJ@*}DE<P      P AKI
|+H| B@QP!A      CH
 *|B AȜ      @UTRUI}%GEI'A     ! BT
*>|@A H        #@RJ**@@D       <GQ
D*} D@AмPi      A GȊJjIB$I^=PB        OE@J*}(PGA
      !B#E_"*D|B AQ> D      !BH
!*B|CP?      8GP
}`D`<     D A%K강*R|(B!\P% D       @@RJ*}$H_!\E     @!*E%?"" O     BUX^UI}%DEy'      #@CB
*R}"D@       @CQ*D*}DDAA        @CB
*B} @!<      @ @@B
*}@@      G_TEQIU"}CE!!     P A#_*>|HBA A      #@B
H}RF(<PB       @@_*}D!\        @@C*}D!\       !B%HJ!*B|B!\        @CP* *D|@C <PP       @D_ʤ*}@A@QA       @ACH}@ AD        B @  "BD?     D  " D@ !      8GU
T*}PE A\ΐ      ""   0 @!B	  ?      #DP
H*}<HD!\ȐD      #BEE
*D&@G     PAAUUUUUU}UGEUWTA       @A#%_U$*H| @@      @ AEU
*D}B AQ> D      QA	?I$Q@!|A        GP*UR}JE<@       @GD
!*~B\P% D     !BJ
,*R|`DQ<P      G '     !B#*| @OD        @GB
 | @G      @Z=jJ+ET)BS= P      "@DR
+|pPB!\P      ! B*UU%DQD@      #D#E_B*}DDa      xGB
*| D!\      @ @@@
A+|A@"      @@*UJU	G)JSJPւR      'Ae*UR!|ƢIH<PRB     !B#_"*D|B AМ       @@B
?* | B!\P? B       @ACH | B AQ> D       @A%T*$}|A!B        @O_ʄ*}D@QA      G_AUVUUU}UEQA@B      #@D
!*B|B!\P? B     }" F@<A@"        ? ĈG"DC     @ C%`@*}DEPA<PO      @" D!	D@ !      #@H| @G      "E " D@ !     @ AD |J`<P     B$QT%D'       @@B
)*T| A@QA      A 
5UGAD="P       A|'JUjUETES!     @ @OEE
*D}B AȜB      #@RJI*I| @      <GQ* *}B AA
      ( H@_H*Y|B!<(        D
_*T!WPUA}DE@B      G 4T!WRUI}DE'@C       @@B
**T}tDA@QA     ! B#E`JUB*}B@P       @G_ʤI*}$HG       !B%Oʐ!*~|CH       AWĪ$TJAaDP       @ACETJU>*|@G!\      ?"D  WDI@R      ! B 
?!BxIT      @ CEU
6+|@C      ?@  ĉ	 _"DD      #DWʠ@*}PEPAԜȐ0     ( HOB
I*}HD\I       #D%_ʠA*}GPD    G@A$O      #D%_ʀ *| @OA      xG%TJ *|@OD(        p~EZjERUKA9@B     @ @G%PJA*}@DМ`     "$DSQ
UT} @G       @ACEPJU>*| @!<P(         A%Gʀ?A|BPP"B     #@I+}B@<P     !B#EIU"|D(QP
"     3<R _O      @J%*KEPIP        @J!*OE!IP      ! CP*U*U|TB@P      !B#_ʠA*}A@<P       #E+UTUR}JE(QԼ@       C*U?TDDITS@P     ! B 5j$IA$IJD      !B(WȪ5$jJդJAH=/H    D>>CDC      #D%_ʢD*} E!\_"      E	ew C!         B؈ !      !GEH"*D|B A        GHJ ~|B\P% D       Gڮ5Dj#D䊩Y3=DP     H A#D |B\P? B      #@#B
*P|@EP\      ACB
*| A@PD      Q"DD	?D@ !     ! B
$*OՒJȔI#]$I        @ACEPJU *}TG\A       @@@*UU%GRA       @O_ʄ}@D       G_IUuT_A}uEQE]!A     ! Ch*UP!EH<P       #D%_ʠA*| $GPPd       C'5UjsETU=@P     @ A%P*}G8<P      @$G*)SDQ@cqPE       @GOʈD}$DC      >EHPH? !      @! G%RJI*} D@      #@I+!|@B A         GOʐ?* |@@B       !B%Oʐ!*~|@DQ<PB     PEQ_UUTPU}DUWT%A     @ @GHU+| @OD       "HB_ʈD}R AʜP ?    B/ȡ"AO?"      !OEJ*}$E0!\E        @w*UsUA AD"P       @O_ʄ }G!ܠE      ! BQ
*}D@@        G
DjՙETS3=DP      #D%_ʤI*| AA\P       @@@U *w)SFiD"P       @O_ʤ*}@AA\P       Cǀ?" D@       E
GETU#]Q"I      'AUHJU| AH\       GZ5E	T@P     >@  " D@ !     !PNEJ*| @OD        CGȊ*U$IG!RCP       GDj}#Dd_=@P     !ACRJ*}$@       @@@U *!B@IL        IJ*U$D!_äQ      NȪUITFh#] A        GOҚ5zj)SGiTV       #DPJ *~"DEH߼P       @@@
 T DA(        #DP*U@ |C!P? B      '@Sʤ }G!ܠE       '@_ʪU*}TEЪ\       @A@GJu *U*UGQR]Hd     "$GSU*UK }D\        @/2_I>EI DJ       @ @O@J *}D\       @* T @@O      #DTJQ*}D!ќP        GP*@*}TJʼP*C      !A#_U%*~0@Gʜ      @'*%EXRcaP     @ CEa
A*}DA     @ B@*R}8BP\PT       G_IUTWQ}EEE_G'      #DR* *~|B\P% D      #@HJ?* }DD<P      '@_ʪU*}TX@A      '@_ʠA*}D!܀"      !A'$*wԡEByJ#]H5      ACE
*}TD\        @/"Lc ?D@ !       G5{UD$Q^B!     !OEJ*}$HOQA     ? CP `@B?~JIA _      xG*}HG܄      !BHJ *|DQ<P D       DG%B* |J\P? B       AO5QjBDC6      #D%_ʠA*| @ܤ?     @ C_Е?*B|A!Ҝ      'A%H* } C!Ҝ        @OH*| @ ܄         ~I*D      A}jUA)US=P"B      #@B
 *~|(G!\      ! ~&j*J;@"    CS$,RTBADC      HB')*^T@@C$        GTJ}TEP\ @      !B%OJ%*}E(Q׼PB      !B#EO"*|| EP\      @<
$IT!GQS@P       @@
)DDWӢ=DP       BH
*IUAO!HCf       @O_ʈD}B AϜ" |      AJ!GEC$      #DRJ*}$DP     AC ʄd	  C!       $E%Gʈ*}PE<P?     ! A<OҚUzU*D$IRӭ]j       @@@J"!GGÈ!J     ! D'JUj+GTUsq        @* T@E#QQ       @'UBTSG8HCJP!     'DD
|*|ģ@"      #DCWʨ_*}| D@<RP      Aȕ?T @IJS=PRB      @E
+|TA@\P (     "XD%ZʤI*| B J"     x|!T?I
!J)
C!       !@ JO)RUJHI"R_        GU T EI_=DP       @ 
*TF HEA      @A *U?@TC	USP        G%_ʠ*}P@A       @AGAo>E$HG      @@
+TiK_Î+        @<_LEUêQRC       G%UJU*} DHќPd      !BIJ@~|B\P% D        GWʢ}| E!\Ȑ"      "HD%_ʀ }DȜ       T&8C~I*D      D
@!9~B| A?      @@@U?T!GO]      	$) }O       @*UU"@E$P       C?HT@US@P        G
 T@_A     !A'
 *"TCQJ]*      A |8~I*D      UI4(@" D@ !        zH!_ǈ	T%$}%BOD        C/B$j$T9A!       @ACEJJա*~|B \ "       @O_ʄ |@<      @ G>*~~ G!ܠ      H GE@
*$}E(<PB     !B<ҪҪDE|!UcIP      @@@JEE)TS@P      @ !J)J&# ?D@ !      A ĊRUJ@ HC!~       @@@
U$UT!G	TAP     !TBʪUNk U#@@I#]$K       @! _"D A?      @@@Ҋ)D IVQ4G     ?B B"(Y  A?      @@@ZUTD@HO       BH5*"TD@@O     C(J$H$B       'ACUJ* } Oʜ      ?@  C ~IB_      
B" Ĉ !      DA$)H"/"D} A?      A ?J}*GԂ)_SP$Q      #DRJ*D}@A<0       CU?T%C_:     !OEO*}@O܄      ?ࠀ>1J     @ @O@
*}$DA     @HB""$ C!       @@@
^jIU)@_      ?@ J     @#DPJ@*} @|ɀ       C'ʐ?* UGOÉf      @#ABB
 C!      @ @GT}H"UmHUAJ      !OE@
A*}@A     @ DAc B?       GoкBjUEԈ9SSD       GҚJj
Tb@!A]     @HC  J      C*TT%DDA#=QQ" <       G%WʱU*}T@\PR      bG/Z9jE@@C$      AJ*U#Fd[=DP      AJ	W%GUe       BH5*"TD@@I#]&J       #B#*}G       AJUTDE!_B      A'5$j FaY]P        CjU$T@@@]JQ      E(gԚ5|UTR#݈     !@Bgߊ:*WUB@]F       D@DA A?     T!$F{H ~|B\_ B     !A(O2+DQ^IP    A2 L(#  B       AJ|j )D@Q=     #AH8| D\A      " BUPW?!@@C$    BIGMb$"?O       @GUJA+}|B UI 0      <GJ*IUBHO]$       G**UG	USQ      '@@
A*|@ \      !$BHzUUjԒB QHIP       GOJjs G!DCA     !GEH*}$DA      #@E*}G!ܑA      ETwJUDj UCHB#]E     ?Q A"%QJ$"P""       _J}$BUPDC]"I	!       @@
$T@DB]TP<       GG5 TCO        GOҚ *TBHA      !Gq
D*}" T@PT)      O_ʄ|@ \        @@
!*TL|_D       CU?UUDDQUP      A ڪU*ԪUB@]%P       C!  J      #@@J *|@ М*      $G	$H A?       G*U@RE؈U#]Ne        Oޚ5zjAGO       BH5*"TD@ I#$        %T&9C J       }򢩇
*T!A A?     #@P*UR| B\_       !A
**A D]qP%     $!@("B=c ?D@ !     $ EOꈕ*}D@      !D#TJU}| Eܨ_"     y!!2
I( A?      "|Aq
}D\"       W)K)z^J#Q A?     'B#TR*} @ɀ        9_S}*1       @'*
*IT@@R=_P      #ES]ʊw*}TEPܪ     ! D?A$ A?      AJ$T@@Q_P     #ਿH+~ER.)O      #ES_ʀ }G\ a       G'ҊJ*U*DR(      G_UUR_Ց}EQE}G@      #ESB
+|G       G'zzjAUEHQSPRH     'B#"+|@B ȜB     ! C/ZVUEHU]T2      @@@J5T@ O]?A      ETwJUDj U#@@C$     BҒB)(j A?      G'5? UAADQEõ]P        GU? UC]#f4       C55TGO]*U      'B_*}@Gܑ       GҚJj$TJ H"     !B(ȊR*WGQ_CP!      @@@)*TCO]?"         @J~     H#A#_UR|D@ܩPE     "B G)%H `3 A?       CU?AT ET_UP      @~"EGQ$Ht A?     !$D
RUJDRCIP     'ȑ"|?@ϕ*|H      @ r̃J~       &@J~      #DRU*}T"T@Y(W@B      "	 @J~     RJ/>"|  A?      @@U~*U~EWàU         (@J~      GU	TG\_=uЪU     "B ܚUwU=GȊU]t      @Q Gψ>"BL| A?     RGd$hRFAe!>T"     !A 0jDyRJg     ! 'T@u>	(@@J~     #EڊIjUG	RJPRB      ĈB'BBUK$      '@UJ"+|B \ a      ?D@>|TH 	     D I_
?WWڢ5_k     #DҚJjS@DC6     'B#UJ|(A \! ~     ""GGDTC_nД;     >|!Vlg @J~     #DҚJjHB h"      G'5{(THB@i$      D@ h@J~     | CBH @J~     ! O r~WT A?     #DҚ*ՐB@@     (TI4CBG
_$*~@J~     #DԚURjUFDUSDQ~     $E_ I^yW>T"       D	$$HH!"BD?          !"BD?       AQ*UTUR%TJz?@%        CQ
L*UT%TJy        @%RJI*UDU%|_      BSU*U!Wy         "BD  | F#R#8A     ATjU*UVUR}?@&       @%SʤI*U$ITx_       @@%ZJ*UU%|_ "     $!
UjUEV@%      ' @>TO      @  P! @@(       $ r DB!B!J        r OB!B!J        r  	OJ!LB
        r @	/DO! B|
      " rB /@!(B !J      " r~ 	/DB!BH*      # r
OF!(B!J      $ r@
D!B(a       _ A
ҪUH]"E-$     ) r$		/D_Ѐ!$BD	      " rO!B	
      ( H	 K("\G      ?r	/@!$BH	H      )uJ	/RUȪU"D$M4      $ :"	 "B"EE     @%  	"H>"DD$     #r| 	J!B|!      /: 	_Ȅ"E$]     @*:*T H""|D$      " |	"H""DP      ':D|	WDJ"D $     .UA;UT"i$"~D         @@1@AA       @?AZQDA      ! H`BXE !@B       #  T! @@       #  T! @@(         @ 
 " #        ' B"DXQ(PA        @  &YY%*hT" D?      @ ?@"! X"QHD@`         GY) R@        @  [(@Q@A	        B	$ aCA       ! G@ X)R A!
       ? aCA        '@'BYE*TA!E        @ "$DHYS*V(" DB      ! G@$ITA B !B@         @ "DXQ(Q@	DD       @ A	DMAYTPDADA       @?	DMIY&WRD @      !B  aCA       @  AU2 T@B
       <耑"DY* T@A)Da        @  $1        ! B?!BX+R!B%D        @ X)Q 
b       x X!(@P         I	@ dCE         @G (X+PA       @A ??	HMXFPQBD@        ?DCD        @ B	U @A@A	       C"DE dCE        x X!(Q@A	      ?P
	 dCE         @ ?X!+P       ! B%BY)R!B E	      J!B(_!  dCE           G"@ DX)@S "D         @G$U0P A     ! 		 dCE        4 $@1       !  BEY+TA" D?        D<rZI$JI ā	HB      @   @X* T@!          @$JV%DSAQ        O~!DQNTGDADA          B Y*W!          #'@?BY	+T A!          @=JY)*PWA 
      @ @ " HX) R A 
       @?	DMIY&WRDI$DA        @G@BBD Y( P!	      !  $K[*HTЉA" D?        @?	DMAYTPDADA      P '  ~YE*TA!E       <耑"DY* T@A)Di        @ Xq)PR!BDD      !'@aBU)2PT A!J      A?aCA         @ $U0@Q@A	      @@`e3aCA         @ B$U%"HO!B E        @ T! @O      H"'@RYI*U         " (B  $@1           ~U%R!B?B       @I	$DX"TRDI$D      B >
PMIY&T^DI@      @ @ "[(@Q ABA         @  Y*T!B         @ T! A AB@          G""DUE"DAE
A      @   $@2     @CH0A~ dCE       ! @U)2HXB"(       @ 	  ~UE"E ""	     $ DG!" $@1F      !(OȐoDU2PTA(Q      L  0 $@1         @ $Y(|Q!        @   [(R  B 
      !wˀbDU2 T@"_      ! @fX!+P?        @G@B@D X+T!B       @ ^[* W"T       '  ?AY+T!B         @  X+T!B        '  ?UYU*UPB(E      ! @PY,WA!~     A B  }"JH)RY$I)$K        "@DTq1PR!BDD        @  T!0@W        #"$DY#*U(Q" D     @B "D 1Z!%%LA       "JD	$@1F      @    [(Q@AB       @ w /Z)R A*H      @A2  dCE        D
)@?XP_@?        @ *UYU*UPB*        '  PY!+P?       #'@!BYE*T)a           	 L       '  !BY( T A	          @ IY%-TPA	       '"ň1Vs%TL""@D       # B?  Y(@P        D ?HLc       !  Y+T DB      @! @!~U'@`A1       ? aCA        ( OTW"EPA$KE	!      $@D3?HD
        ' BDY)R A>D       #  @YQ*UPAH0      @ @ !UQ2U@%JE      ! L1 dCE        # X) W!HB?B      D "$@1F         !H
:      ( H ?IY*HTB$I     $ H@/	>#  dCE      !!' AY(Q@	""D       A% .E` $@1F     ? C $@1F       # $IX!(@W       $ GY	*WAQ         @G@B@D XE(HDA        耑?HYI*T AA
     ! !|
 $_HEU) $@H       	 RA( $@1        !D T!1HRAA	      @!  B"W! D@       #  AX*$WP*Dd      ! "DP![(UH" D      P$	O=@HTy%$JI        @ "ZC)V 
b        @  $DNY#*<T $IE"      !B? Y*T" D       GI	tDAYvUQUD]H!E       /xR)4  _x"R	*#        @ ?[(RA)1@       ' ?DHUT2"$DH      " $ 3 dCE      @"ǀ  dCE       " || $1       ! G	$5ΰQ A<	$H       "H DU%R A
D ?       # $IT!'AABDD       DLC,@1         @$U%3T"D         BJ" dCE        GB	D!P~TG%E%$I	DB     $I BG% $@1F       '!?D5 T@"(D?B        @  Y*PTA
      !@"DX)R  A	     "   ?@cQ       !" G#4	R A:       "@  Y+TB E        @ Y(_!3	      @ @ 
T%3T!B%       #  AX/P$
?     ! "   Y) SA)f       x Y*HW      ! "xW9D"4LP
"      A ? R5I%TRHC      H"')^U @O
$       ' Y*HW?       "H  XA+UPB*U       T!$x@ $1       a$!${ $@1        O D*H#      ' ? [) S!B       _ KP$ $@1      ! "!$Dϊ5TpQ)DbH       ' B  W$DH""DD      @!@GA_d 5*TWQ=DHd      !Q[5(RP"       'B_~V!'I A#I	      @   U @O"      P w"i Y+TB E        D  T#JB?B       "H?I5@W!Bf      (#D=E$$@1F     "B"H B$Y%+P?       #'@!BT'JP)BR        #B? TC$E(15DRB      !@Y*HW!? E      !@
"V  @ B       t'1       @ @I(T"KA>D        @  Y+QHԄ0@       ' Ȫ5HU!(	     !$$WI'@_Q"}ITG     ~HQ$   dCE      !!G?T" GB       |!ROdo
!JIh9L       $ YQ*U"(D
?       <ǐ!_ȤLU*IRC     !!ǌa {ȔƲRP@
$      @)", $@1       UI4(  dCE       @ @AH"6| [)"E%      D
 " pEF       	 "  $1          耗"_Y}*UB
        Ȁ
U}" GR       H"?ʀ(Q X+UPB*       @ @ B$UT!'I/AD       'ҐJDY*TB      "$ GJ	 Tq+RÑ        #B?U%#A :	     !" G5ZTR8QD<ɑ!      @#ABB

$@1F       
.V} $@1      @ G@%"7R(B H@     ?B B"(] h9L       'GB* Y( _
$       ! ĀRJ[( WA!~       '  Y+TB?"       '|q5*WTI_      @!@"V'!L@!80       g zH $@1       (?@DC9F       #B?*T[)PR      P$WT!#@A       '	O"{ŀ}V%J((@D       '	OJDs X/R AA	     ')$yI<IY$$I$I        ''  7_xQ<ME%Q     BD>B ҪUꪷ]"8䪪I!       '	OҐ Y*HW?      !  $Y* PɈ      <'@IY*HTB$      $'PO TW "
      !'"$E T&B`BD       # B? X/P *     !"'Y6T^Q*BTa        @ !Y,|P 	D      !@V#&dJ""DD     ! !|
/DHUUԊ'$UH      " !UD6rTX
"       #W?T G?        '렠"?IY%+P "|      !';UY(@W
$      D$HҚY)*ThQ"       '
WB V%H RR      !'B2DY}* UH
"        @G@B_D  Y*UPU	      @A$GR$ |@h9L     !" ;D P $P@       "H""DX( W!$       O*?!䪒*H H       ' B^X+T ? 	      @!' Y%+T "      '
'p~T#EPB*      !(#TA/ȉ5TA!EA       # "5T'@B*U       /	'!䈉6X*nĈ     !D"W!5LWȂ"D       ' ĔY+TB?"     !/'?R5(W"*RI
c        @:$UUTA       '
W?"W%zg     ! "|'$H"W|+p     !" D[)TQI0     B Bx/Kd4$_H,U-	J#     !"?DTR<I*"D     "" EPIXy"}	g     @Q Gψ>"BL|h9L     AHB O)4jR
BsH	!     'R{)_[R_IU%UI     #"A!4U(q9ZB     AO@	TR_Q>B(H!     !@$	a*Du7U	`     %(/|%'1JQW DB     '  !kD7_?Q%;D     !/GIRZԙ>RDIP     "$AuUH7[ȡ	`     !/'6RD A     !/GJD)7޴D_Q/DDU$      "Ȉ""DD $ H        "	$$HPp! B       D $I    D $IB r pq@     "C  |   ` 9     "C     @      "BD$7BA      ACej%K$J!"J%b     "C@	!$	?8     "C@">DJ'D     "C)JDH@BCA     "C(8'"G҂=?     "C ?9"A        @@? " &p      /Đ!~)KD BC     I"  Bp     ~|	#!_߄!B A!@(        !B!!~!CBE`$     ~(@!(B ! @(        "D$А! ~@	"EQ$      !Ð!~=ED$      A     F      hC?@@D#x      )!'h1*~TE0eC`C       #D  AU*G	DD    
 (
/ RP      B!"~
(_(R@       A$/Ȑ!~T	K%T$     ""   3?@@DD      "7ň~-DTIB)SC     ( QD*͐!~lUB	R$     |!BB?BRQABI(`C     |	HH?"BDAR)`C      ! ?>D	JGC     ~|$I$BH" DB$H      |!CEH.IE yO	@!      R"Ȑ~	S􂂅P      B#ʐ ~"J$      =B%/ː!)~N	sEe$      (Q%WʨQ?UDUBBIPC      P'QJEUOR)eRC     ? H@
   F     w|UO D~	@IA!       !G>~EDB"IOC      "'>D!QDJC      C"D/訾"$QUIbC      % ?ADBB|C     }$OȐ?"DBDI`a      UI4( ?@@     " D'H>DIO)QRC      <A%ˈ'>@DIE"T     !
?@@     " D#$DAG	CC       @B(>EH!COҐC     
 U"'(Q@>~D	D"CC     J*.w(QREJ)JR`R     %/EzIR)eR      <A%ˈ'>@DD^C    .誾
+**XP     E-Toπ"bꪕ%+JV     :BCQ	   F      !$ɈQ#@DEb     |E[h_mEԦI`     ~@BG_   F      
(gQ>DTBJC     B Ъ~D	EJ$     " D'wʨ	>?DȊ!COҐC       @@"D%  $ &p     ) RI$ITPB$ BA     >|D!P_ʄ* Q@@(        #D!B$I$"AADI`    B@ " "	H $p?       #D B$IU%*A@	"D       "H"$J*"H#B    D>D "!J@P8     ""   0 " D@( !0>    K(ꀪFQbV@      |!BEJ.IU  yO@A      B _U*TGABIPR      (Q%UJU?UTTGBBIP      P'@
UJUTDOR)eRC     $ H"'D*~TBQOIRC     " D#A
$T@AG	CC      <A%K'*@TBD^C      @@D_$!?HB     @HIB&JI)?KO$(`A       |A'I$I?I$II(P     BB~WDIĕD$H!E       @AOO	*}AQCHAG      <$
>U ABUPA       A WJH>T(BBC`      !"D
">DTB	SC!      @9JT*}PU#EUJΑ         $$WЊB>U"	@      "
!.F      <$
>U ABUPE     @ $
>T))DPCD        
 >T 	B      AgD B     @ $D
D?U!BQCD    TDC!!HF      !!$W
(>|U A	BC      @@H) @*}DUSET*QO        @AE)
H|!RCQ*Q        @AOOI*}IPEBJ@       A 
~> T@	DC       CA	?*iRERJđ(       (@IA	?H*Y|R%b*(F      @ @ 
> T@	DC       @AA	I*}AQERJQF       @rH)OA*}QCI
QD       @AB}QTER
F      ! $>U$Q¥IRPC     !ABOO*}$PF       @!$ʈ >VIHC"      (}"*㐂D B      @A	τ |TF     p @ >B%I$DQE     @ +Wϊ>> UIP      H@BI*}$T@
!F       CRJπ*}IWF     
bp!( D B       RU_Ց}UUU_}TEWAc     P ,
H>T RWPC     HO$(>* @Ĉ"L     !$BbV?歹|A_J      A"_/U?*B|	SOʨFw      B%BIH|!S]Q\ƃ      ADI]+}T]5@
J     ""GBO1D*}PTTƻ             ?           G> $O          G  >  A!B(        @A? A@ EDDAD       @@@ ߄	~ %J!/PP       @ A  >$ H""THQA       @ _! TNQ!D@@      @B G  GD@        @@    A!B        #G" d<P!$BH/BR        'G	 $= !"BDR!A      @A?  _A DQDB         C  >  A!B       #B'@
 ">( P!EA        @G >!B A        !@  >  A!B(         !@  >  A!B         @@ 
ϖ9> i%J/Q       @ %
_) BQDER     !DI%^I%䔒RII%蔠A      B!   ? ?          @?%_I%RQIE%@@      @ B ?> A$P/Q?       xG  >A!B/Q         C  O>~ $H/Q      @ A > %DHQA    @0 g A0      !@ OeL<`A$I/$RG       AG A?} H""DHJ       #@G	 D> 0B$Q        xG    B"HA       A'@O)>  "DHO       G	 %^A甂R	H%@!        @AG   D@        C  ?D "$DHB        @@O	>AB"HA      !AG  @> B"B"        @  ?D@R**X/@R        @ /D< P!BBRD      @ A'@>( PB$I/QC         @G	 'H !B$I        '@%/J@R%,*PT/       @ @@ >> D"$HOJ         	  =B*
dD         @@@
O@H$I DA0       !B'@> 	""B"       #'@ "= ""DD!B       '@ '<BD$IDE         @ $I<$ A/R      ! D <A A        @?^I%RH!        # O < A$BHA       8   a$bH/B       @ ?P)^TJ         @ = J<(Q'ID
        @?%^%䔒RI%       !@ >8 pQ)$b/         P@ ? >8 Q1B         @G@OB@< ! B$      @ @  <A A           H<<A$I$      B ?^I%䔞RIH     "
!.            ! GԀ)/Z=H!*BT/R        @@  >	($PO         @  ? <	$H$O        !'@aB<(Q$"HD!J          @G >B!"$H/         @ $ <A!BBA        @AG	"$DE        <G D>!B(DPQi        @ O$I<$ BA     ?H!           A B Ȑ}.J@*T)J"E)N@        @D 
 >  A!B        # O <( P!BD/"R       !B'@ ">D "$DH> D      H"'@R<H%H        !B !>B 	$H?      ! GJ@I%)J^/RB      ! B >> @#D           @G/>$ P"D/Q        @@ A  $$HO? B        @@ >  A"DHO        G E	_"HQ!DO!       #@ O*>A!B          G/"D<D$IDEA       #D/@RJ*TP/QB       @I% !䔒RII%䔟      P ' ?  <~D$IDE          C O?>B 	$$@       !B'@ ">D "$DH       "H  =""B
b      @ @ /@ < A A(         G  _}T_QEDB     JL߀@?          @ @ G /<X Q$I$OR(         '%/)@R! )JB/RRB      B A^I䔒RyI      !Bg /@  	'HO? B      " DG@O   Q%DJQJ        @AG   "$DH> D       ( O? < !"BDDqR     ! )DD?         @ @   A= !BB
"        @    "DD
        #'@! B<D$I)a      @ @  <  @/B/R       8 ?@<|%J$OO       @   ?@<D%RJD/HR         @G@O@@<  A'A       @?^AIA        @  <   $H$O         xG >  ($PO          @G>| E,DA      !!' ? <  A/A         @G !>	'HO% D       "@D = !"BD/"R      !$O	/@[%"JD/"R@       #D@@J*+P/QB        @ 
 = pQ"I$ODR       @P '@  B        @AO > @
"D/Q!      ! @1 <P7HD!~       @  $<R*BQD!        #'@ "= ""DD!B     ! "  /@ADQJU,jPT R         @     A'A       'B'@ ">| :?@      !!'  "<D ""DD!      P AGO >, B"I/QD        @A  >$}
-$A         @ ?<"EDODQ        "@D = pQ"I$ODR        ' ?D =| A(_@        @  "OO 
        #     A'A     ""D@D?         $ H?          # '@  A<  E$QQ         @  < @A"TQS        ' OP%<@A"TQQ         @ ?I<A!EDODR          C O!>B E$I1 A      !W	$<J .bDR     @ H
@( "8_R"EO         ' ?@ < A/AA    TC!?           @! O *"IP        @% K Q*IP         @ ! _(        B!P@E*T/R"B      #  ? I="BE/ R       # OI I<I   A       D
 !_APQEQ@B       #  O? =""DD6      @ ' ? @"<B&"R
b        @AG@O@>> A($PO        '  "=  'HD!~         DG O>B7A       ( H  ?D =Q*T/QA       ( O? T<%RJDKQ	!       #'@! B<'D"R       #  O$I<U2A       #    <  A/AA       "@D =  'H$O         G  !_IRQE%R@C      ( HG I>I/ROI       ! C /ϐ)>J	(_
          @G  >>  "$DO       ! '@ O@B<"BD"R       #   @<P%RJDH0     !!' A<!BD/"R         @   !"BD"RD      !O@ >J1B%M/Q#@      !BO?> 
/P/Q      ! b<$BH?@         @ A$IT        # $I<  !EDODR      @ G?B IHB).U?      @ @ ? < A$I$/R(       !  @2O   	+D$% D      @ @  U=  A/A        'P%/*
T@R      ''	r =8"BDOҠ      P G
 < P!BB
 (        @ $I<"EDODS         D@
$ 	$OO            O "<D ""GĈ        w  Os=!"BD"R    D~? g &0       GIuAuTR]IA      @!  O?I<!$B_        'PO)@  !JJO)      @  @ <':H/ R      !'@= "<U*fD" D      @ @  <  B_(                  !O@ ">D "?@A       !D  <  I"IDA       x ? *<TQ"_       #  ? I=! @""HD       ! $/I@T!#JR         @   	'H$ E         @O Ϥ>A%DROQ       ! @!	<I OO(        H A'   	'HO? B       /	Ґ%/z@*)"WDO
      &$p             ' OD=X0Q!E$/D(        @ @  ?A< EDODR(        H A @ H!$BQ     A B wȠN"8
)V"E"E        @  $@N<"=$KĤIQ"        @G@O_@ <T'JO*A         @G@OD@~< PA"TQQ         @ ?<"MD1@      '"R@½	$OO           CO ? !z$IO         @`O$k<$$BA      H"') ^<A/C$       '  $  	'H$ E       @ @/?@<U&WUQ(C       #  A<   I$?      @ @@O? <$OO       "  <(  %RJO*       ' ? <I'A        !B O%>**TWQB       '	O=  < $OO 
        x ? <I'A      @ @ 
 $$I$O%      !"$W/2@K 	$OO         ' O < E(_/DR        	 =$J!"BD	      @ @  < 'A(          @ $k<$ C$     (HG*@?          @!@G@_o  =*T)RROHd       "@Ob D<D#D$O? B       "H    @%RJO*U        # $I<   U       @  ?  <A/A        'G*U<A O         G O   	'HO? B        / A =
*UDCR!        @ )E(WԢ/DR      !@ ><D $JDO      @ O\N}:TQ_N        D <  	*GO? B       #'?  = )RdOH*           O	 $"HOA`          < A O      ' ?< #J$B       !@ <$ _       !@
   &T$O? B       !B'@ D $DI       !@ "<D A/C$       #DO >"EJ(_Q        '"/ <$OO E        #O?<A O     H/D"'H _Ā	M      @ C
@JH5TOQ%          /?@<"U%IoUR3      D	 ?&        @f          "O=""E$R      !@ <@ "EDRJ     BD@':$HC$         ' '@=  = $ID
       UI4(@  ?         !(	W=8&RHP      "XD ϤI>  ""B"     @@@PG ,.@b;<  JR)NR      ' |<  A
"        @G@
O?<~ "GO( "        @  <	'H$A     @@@$.O 9"<K? ~     @@<!_LJ*URC       #O?"<B&"R
b      @ @@	"  "GĈ!J       ' ?H =/Qτ         ?= T!BFĕOJR (     !!' ?  "<%RJO*      !@ I'I$ E        #G (_<|!$BJ/RR     @B =H92TC%$NU D      @ @  < +TT@R      <O ~) ҁJ      @! @ < A/AO$        x $O% =   I$O$       !  $ </HDf     ! @ k< /D 
        'GO*< /A$          1U<T @O(RR     y"¤R          @ @ O$U<  )
TAR      !@ ?A< _A     @ DAL a      @ @@E**TT@R      @ @@}"**TT@R       'ҐJ@
<b&"AO     !!  <OJ=*+2@E       '  <$OO?"         x /' y< %KO/Q        
=|!'HR       #O?<$!_:      @!@%/<&,BC$0       '$OH= U*UT@       #O? <$OO?"        'ҐJ@	$OO        @ @ ) H%HOUQJ       @!!#c       AB'I?IRE$	!      !@ <A/A      @#ABB
	       @C %NA92=j!NA0      @ O/ q<&RJįB      |	          #'?  = Oĉf     A B<OȐ.RDJ.$TJ      ''Ȁ}R=)*RVDҒ) a      ''  *= Q'A        '	O=  <I'A      @@@$.O 9 IRM     !! "/U@'H$       @ O/VJ@ 	KR)NZπ       '  ?A<  OO          @@OD@<'t$? B     BB'y8
)DREp"I!       /HԐOA}<("_Ġ"        @ ?! <} _D     #JP9/^TRJԠ@     @G  9H
U*U      A/$$@_?        ''?
@%=  )JTToJR     !$"H
pOU@뼒!$RHIR       *c< "_*       #.8  $KO.A       <'@? I=I$OO$         @ $<E/BOTR<       '	O!J@s  ""DDA      ! ڠUO*T?@O%R       ''@?1 S$"OĐ!~      "$ @TO D= _ĠA     !!(O%2)R^IR      !1D<!$BOT)       'G%/ <$O       !@ U=	$OO       !! Ā)O3 $=  $"HD!B      @ O {:RyR%{ΔT(?       #W   	'CO1 a      !' ;U<A/C$       /  /_@  $OO?        "H / "<D 'I$$       D$H Ҽ($jIT"         @G@O_@ < %RN䈏U     AD'}9
HRE$UQ      A)!
cC       $!@("B=c       @ G
'Ҁ?J 9*K-(     @G
W)N 9 HRR      @ @@ <$OR=      ''O?A< (j/?R      !'O2@|%HH"     >EGB       A MWmN )_R9        B' /I>$'H" |       #W?= 'A      !!  *!/DOqR%      D> Q>     @@Ȁ 8!_E1a       # "/5<   OO*U        	W =D%KO/?     ADBW 9LB%N          !>~      'd <A'H       '      _Owҩ       ' O? =!]$f4     " %|Ҡ(Q?IDK@     >ECQ
("       ~@BG_        
 gp!W        ' =@J" ^/)Rc      ''{"=  _T=       '  $OO?"      @ @  "$uJ(n?     ! #'&/R@<	'DQ      #'*$OO?"      	'$I p V}UkQ       '>$*=$7I$$      " :R~	B       #$=H@E**VԨ_R     @ OH":PSΤH       	W=D%K䒏(?     ! O r~WT   p     @Q Gψ>#C       AB ȀA VU[5 T)       ' p*U@A.UTu     2R) uP(}JE*wШ      " :R~ 
l       H&Cߒ$?~       @@G@| UI$jJ     !$  ?D=!?R$R       ' O;"= ""_O1 a     @NS_~TG*]     #$=D@U+UTNR     !H"
@?) <j-JdqR     ""'G1D<$_nҔ;     CB@!8)Nr9Z B      ''%/{(<HA/i$     E(O|%'1BQH NB     AO'܀:EOA     BHB ":Aԩ)     #$ ?@ ='e+UTVy     /PyO	IҨ[J~	Q     >p ¨wAϞ->ZD袂       A A@      @@A   = @ A D         '@   @@          	"B b        @@A   < !@BA     !" D@"D" THȑ! A         'A  @ A          '@   @P       @ @@?<! B@A       @@A   < @ A        $DI$DDI$g @      A D   <~ B "@@      @O   <? A "@     DI$DI$DEI$H A      @I @ "<D!@A "      '" D@"" DHQ @       #@  @ ~ " D "       O@G$E!BPFA      B D@"<D" D@B       @@A  < @/AD       #$ H @%J	P$J A     #$ H  ?@	'H      #  D@BP! T@ЁA 
         @@@ ?D|R$J(`#@D      A B  D< @@B       A@B @e=L`#@DR#$DG      @@B  A= "F PC ?       "B %>DD)&X(? @       B@D I<
"! D@A      CD @*U$"EPR@       !" D@ ! R
 c      @A   <@"D AA      @@A @" BA       '@ $H "@T        @@@ ?<"D!PC         /@  @<I	$H'I A       # A @*@ Q         !"D @!B"T A       #D ^ A  R@A@@A      #H @Q)DKiFP       B D ( P= |! B    @      @8G   <"`D`"B       @ @#@@DC1 0      @xO " D<	 $ H@`QDɁ	      B?@`?     #@ A >D$H>E@P        DI$ DDI$d     #B@!Q  DEAG@       @@@" D	%I "     #"B Ɉ @P          @@A @@  "D!PC       #$ H "D	 $@O      @  8 'AAJ$       (@H@ < " D@@       @@G  <   @GB      @@A  =/@@Q"        @@@ <  #D!PC        A B  $<	R*Pi@H!      (H?B 9	$IPdi%%BA       B@D D<	p!PB!BD@        B@D D<	! B@Q#"D      @xG   #D!PC        8! ;)PRAS0       x    " ET#HD? B      @@B  @ OD       @A|"E&I      ?/"H#䈒"H*$@      BD   |? "DB        A G " ADCP @        "8 HAAQE      BD@ <	@ _D        @@@@  	@ ADD     #$Q ?( @P        GA)RHc"J!0P      @ ?9H!CATE        $A R8I/E(QTC(A	!     G@ @$I	Ui(b@     G@ 	   G!PC          
D*  DADDd@B     CD   /@EA       B@D" <	   G!PC         *8##B F@
      B G _!<R"I A      D@E| @H/"I!DC      BD@ ?A<	!@B"DA      GB DI$D4DP@      @ A@ @$@@"      @ ?9 #DBA      @@ @!F!!~      OIx% z\*$I AuC
      @9@! GH"F         @@G   JP" B@B      OA  FVLT$hQHQB        A B@	 <$	! B@ $ H     CD $I 'AABD`        8 *8C OAP $      @q" D@"'HA	     @@" :" GȀ       @(  @@I#R$BB |     GDA}G%RM}$P      B"9ȁ*?      @@@O   ?A#@ABD@(         /? @A@A            "8"  @        @DI@
 "="@$I "       @@@O ?I"HDB        @@@O@@?<B"D !     @ 8#@I        "8|!O@        A?) R8 #@I      
@  #@ !BI#      @ Ur$DOJ$        DHN* d|@$H`C@      @@A $ O<	"<$ K ~     C"??"D J0      G?#"?2!      GIH=  ! D @C 
        @A@D@@_` <	*T'IP}CHd      <	@   @'B TC%6      CH@ ?H	"DXxC0       @DE <	("GAP!~          "; #D! A      @@@O < %H@!      @@@G 
<$#D!SC%       $I! "TE$A
?      @	 'J:*@     # DD	_ #T@"B         8"G?"      @A z"D$     GH" "B!D! 3     !$@{9d$_P!TCH        @xO  $@%<	 '@!RC$       @@@O@	 " 'B H!J     A   8D$GBU      ?
 ) OM*( P      @PA , xb<  GQFR       9"'@     @? 9R$O      D DI}$DQIE-AA     A _ <@J	*$K0E     GAJ\
b F \C      # O? "W?       GB=1JQ #D!_ A       @@ b#D@_ $I     PI_IU%tRUI},RDA       J@U; #D! A     GB j'QK4@     1Pd%HOQ>Fq      I ? "E&_@      A?ԂĹ %H `_      H @Q;E.ETC.A	!       D!$( ?@@     9
?"#D"D @      @? @HxA$RDOA     $D)$BADQ$(HP!$CЄ       %D)$BA_IR^$%H!$SȤ@      HH"RH HK"BDG        ADAEDQ>@xA'H$O        @A E
"@x  A     ࠉ$$RD|DI O>AD      |@xē A
"        $!O>DB#DH>"D     $DE*C1JBJ^"%H@!!D 8       "$H}RCz)*RVDҒ) a        єy$OO?"      !/|@%0R{ޔ/zRJg           @@A D       B>  @q      B!       ?      !@ "|!B
b     @!D  ?  ?@@ ?     ! )D?@@ ?      A@I w)zR2jD"x      !($Q| !O      ~G	 A          #|TAF^JP (    A$u$vI?  "     (ER_?H E
p     *"*Z ?4 kT     *"G* UOꈕ     *wJ | H       HAT0`  D3P @        HAT0`  D3P @      P@EE
%(RQ$AB(        !@@I($kP"T        A Dq@3 i      {"J'I,$z("I	&      !#IPg@LB4A@
      #ID	$4HA A!      "H	)RG$L5 D *        C ?1(J%LjRR%       A@G&R@(|jTD"PT      B!D
"&DU"$D@        ?A @3 i8     A c@3h      !#IHD4B A!      "#P!~L5HbD0@       !  @	D|L4DLH
      $>~  _d6`      )HOI(jITB$I      h@a&2(kZL	      @Q'LL5jAH

           ?@?  l6      $"Q"$ (FaDh       !@## L6CA"     "
)] @L5*GPA"H      !@F? (jIT!B
"       ID'|L4H@
A     A#@>~ EB
l     !#H>L 5EPJ       " TG/QL5"EP)*J	     ~$(iYl쳦,      ! ##_ IL5$EXJ C     %H%*BN䪄jQDA+S      !@F?(j	W!A      ! ΀ kDB       L (01G	 D`N
      @(?IEA$1DI     `#@2
$QRA(A 
      a2
$!@P!B 
     b#@&"v
% TA(U JC       `C&$rH%SV)(P JB      c@2
R%#DP!B 
      (IEI%'4RIy$      2EII$Ĝ$#4RII$     @@CP_ $ H( b!HL       $EHDE"%3HI!Ą!      $IEA%4PIAA      `C$
$!P!
     A#R@Hb5D)9eQL"D      c !
~$S$,@ 
       c D!2B
%ET)Q 
a     `C$F%
$HRQ$H@E	     ASHE14P)wHL!~      a!
B$R$,H@?B      cF? 
 %@P?B 
      `$F?A
%QA"I JC       c$$I
$!@W!B 
       @^pP% Ds+ bAD"T     @AWI%D?I) dA_     @ACT@PE_d 4**UiQRAHd      GYR$${+Ӕ$hQ^B!      bK$ 2$AUQ*U@U     aD 2
%%HW),R@      `$F$U
% TI.QJd     GTD4|(œ`A
"     AR @? 4"*eQJA*       CT_D?)%a_:     aD?A
%P/E 
A	      GX S$DH *TjU\@       GYHR= 4)HgA     GR ^%${(H)@oi$     D_xR=4-@g@      	@   
        @//(@H      '        @B           !B >DP@@     ?   !          O?@         A I&Y=I$i	) b?      @A/<>HD!@$QC      | @$"HD ADQ(`     @@f0B?@@     BcᐄA       9'H	?Q<IDQ	E"A       1`  ?@@     "#             ?@@        $O!?@B       ~P  P!BAHAA      @A/( > EA(@     $GO   !A      ! BO)"D<ID	E	E"A     "
!.       %     ADAA      ?D@ ?@@      @o?@@      = D!     Db# ? O@ @     !"@?@@      !B$D>D@       }	$PH"(DPADI(     $?B'`=A       A!>E	"D@       A"ĈAD "D?@B      =(D>E!@BQi    #!ڗG !A      @đ"D@'       A  ?@@      #HG	<PIE!"~      O@O        A"!>F	D%@D       !B/>|DEB@       舑>"DD"DAA     A C)N
#	?@@    D'  ?@C        A$ȪU>ETP
D       %B/$IG)PBQI!      @A/A?D@"A     ! b??@@       ! BO	"D<I|!@	B"       (I/x>D>"Qa     |	HH?"BD BBDH`@      @""H' R"<JB 	
"b     y$	 IR"DQJA        AB$GHQ > GA	"$Q(@        , !         (_!D      (I!H>YD	"$(@        AB$GHQ>GA	"$Q(@        A'I'I?<KE")"        ! BO	"D<I|!P)B"      |%KI( ]DTDP(`       $8H?@@      AA/?@@     |	HH?" DT	)DR(`!      {)KDI%H $1       A B?@ C      PB/HU>ETPAA      @A Ј >D "D@      B$_Y?A     B/ȡ"AO??A       ??@@      Hz/QDH"Q      @A ȈU?D A@       W>$EH 
BQ       E)'>D I	BAA     B	A      @A/P	? < KA	%")b(       pD"O?@@      $IU ?@@     |OE$PAHBTH`@        E!'> D	D?@B      ' @?$@@      (
o)>RDH@"(         A!ȈDE B"@|     {E 	?I$I$        H"?B$     (I.I	<KQ9)bA       CAߤI~! 	!     }W_ "~DGHH!        AB"GHѡ>~D D@"      T @?P?@@       zH/D"&y!'HDD     	""@ "<JP
I*     A _	*=H*( P      (I!Ȥ>EI 򈄉@      /DGII	%? E       D ?ࠦ0     C$~B*~
~	 B     {ސ)KT)1%H` ʎ$      􄯧JJ A    B!/ȒRSHB?SD      @'HG)<N&@%8"0       A'I'KA %*)Qc       @#ABB
?@@      @! _"D@@      (I/B IT!*U#A     A@#,QU        _)URK%       {/Ҕ $I       (P|"GRQ!?@@     ?D!oi$  O?@H      P%RB=H 	"A      $"_I2RI|H"      /DG$<IA"_b        QSEԥ1        _I?=H IHI*     A ?"B|	/	!    B濫J_   G G      GG^ҸQ*0*e^A`     ' 	 'CP"P      (ESETCI
D"        O	ҔII?"      ?DhC_	U$O!?@      $Q/P<I	% ""      !TˉR.J"F?@@     !/z@0RKޔx=J"g     A!A"| D      !_ ?B;QJ/UT=`1    	 $D"DI(       @  B!"        @ """""""B0,     B  """""$ 0l        "!H@3 @      !B_*TPR@@       ?   D@ L8    /đ(HA& ?"" 8      @O*DTQ@AA      	EI
 *TAR@0@     "	8WB @AD	      |$H""KH!L      $H
)*RTQR@A        I	 @  D@ L8     @@f0B ( ?  D@ L8      y B
*T!P       H?UTdUTRQD}(B      @A_U* T P  @      " DG"    D@ L8      ( K  ?A A$HADAA      P"^
TDP$P       A  " D@! 0      $C>     D@ L8       AC*U	T"D@      ?D@  ?   D@ L8     }	%PJ*(TPBIDQ(A       !"@" D@! 0    #!ڗ@ ?DB"``    $?B$@DB"a      @đ"D@'DAD       ADAT R"D?@B      %B/A
$IW)RPBPI!     B$QT$D     D$?  !D@L        AD
!*V	RD%@D     ""
8( @AD	     8OA  D       @EU
*DUR B>@D       !B/P
D*U|!T@      K	@AD	       !B?B
U!*TESB1A     |	RI
"*BU2HCA        (I_H*YTR"$(@      }P
URE!JBdHJa       P0@@ X       ABEPJU * WAT"$Q(@        U@*$UHU BP      @ /D TZ">@D      $IU   D@ L8       A!B
 JTP!R@򂄈     "    ?DB"``     |	RHJ?* TTI)DR(`!     ?D@X3@ }(TUQPA     }RU]U%WPU]UUUQJA&X@      B$_Y$I,       @AP +T W"D@       E)%E
*T IRBAA     !A!A*U$HD%EA	     }WU *~TBGHH!       @! _"D X8      (I_ʤ*UIP 򈄉@      E
+TTQ@DQ@(      D ?दI0T     C$~B*
)$K     ?DloĒ	?H$@ "$DH      PD	R#E?@@ X     A@#,QU  D@ L8      $EU%VWUIUPO"($O"      "?TJUU|UȐB"        QSUΪԥ1     AAI0>"}O         ? @H"!P@       C
H!TDBBDA      @  
"DQTADA      " A?
~IVBI1DA       C!I%TDA$<       @!@
*TUD$U        {I%VLBA      @ ?(PUTE$D      @  
~V@!D      H#@
|UDDD"      #E!B;)*QN!EL        G")|"J"IHN"         ? " G            ?   @  `?       @  ($PD       ! A&(TPȸ@"K        @ C  H@!B
       " ?((PPD"          ?( P@A        #@?D(Q D"         C!I(Q$IG+        @!!(
Pd	@K       @!C򀈁(|(P AA         C!
	(PAC        @D HP"H*       @ A( P!D"K        ! $(HP!DB        <G"?!tBUn T G       [?	(2PYH       @!C򀈁$H( P!@      @!!$T(RDE        @"$?( P!D"K        "#@?|(Q!O        ! A~(QG        8#H(QT)E2+          CA((PPAG        @ ?~(QGK        "K!I(Q$IG+       ( H@$I(!vRgJ       @!@(PO         C>(DPCK         @AA52	"pbp G     !C?(8PQH         ?~(QGK        ! Af)TPB        $@D"$H!t%.T G     !CA?l)TPID@       !B#A?IAqENDTG     'BQ=Jq*@ G      !A>(P @       !SA(|P AG        "#@?P(Q@K        "N(Q<H@      $!SA(Q	DRK        @' ?)PມI"+       @!C@A_)P@C        '("P亩I         @ACABD~PArU( G     H#@?~(QGK        "HBA ATu҈'         @@ IpG     P"R?H(QAD       CA??	r%NG      'E{")RDw*W*        # (RCK        O?Ut%  G      "|A1%? 	t%  G      "A(Q8AD@      #IBF@uRN# G      #DB?"Dr"  G     !GA$t AG     <'A	!>
I	kҔ/NA G      CAw( QARk      ! G?$? p%%.T G      !w(QB+       "0
?(Q D       'Dn"j".@ G     *P^A{c?ji"E
"G     (/|e#1~Qh NBG       @@ @  #DHP       | A)$H.Q!HBN@        AD?D DA\AT\     }A!P A@         @'P?\AA< @?      @
  ?         A/BO	]AABȜ A       A!_τ]AABȜ A       AB"H\ @E       }""GĂ	$PHA"N!        @A?H ~\	B%\        A)RO] AD$     {	""DG!(]DQDЎ"`     |HQ!|BW!PBWAP@     }I)'B$] D<       A/B\A"
 b      y!B\ ABȜ A       AB"H|\B<@      9(P]aDb<B        A"H D%K       H"*DTR]HE         AB$DPOD !@%8       AB"H]	@"E         A/B	\pQB%\D@       P"" ~]DDEE        A)_ϤAAB8A       A!	D%K        !B/P/ D\AC<@     GKQDUQUuUTUYWp5A       H"*DTR]HE"Uּq@A      ($`OE]DE< @?     | " Gނ%J](DE        @A?B]A@       PFDI]%DTI\       A!C	D%K      | !?B]	B%\!       ""HDaBQ(QD"E! J        A%$J\ AO       }"(G߂!B.QD"N     }܊R*B*QTER-@D       !B/Q/D]DDEE A     }	(' P.QHE$ G       }( A.QD ?      9(RH\ AB%<D@(       }"/Ђ!~.QHaD0@        A!_τE@8A      @A?I$	J^%RJ"        A$$T$]}A
%         A$OD	P!BB<"@      @A/@A	AB8"     }"""DI.SAAN@D@        A/R	\pQB%\D@        AB$DPOD\ AG        A/B  SB\ 
        A)$ROI]A@<@      @($`@]DERE<H@      }" F@<A ?         A!B \ AG       #HDf @?8      }A$GB?P @       @$DUDB"E8> D     	" _"D\B"EМ!        A/B@"E8
        AB$DPOD  D%K       PB*MO,ԺAB	+xD     {!BB*UQTF%\?A       P"^\D@<@      !$BHQ$E
P      >E5	\ BB<"@      %R.QDT AO8      z$B@(]!DBȎ(      |"$GȂ$Ĉ.P B."         @A$DEDB"E8B     }	/ QzE*        }"/ A.~P@AB^(      @ $JU	D   
@#       A!B\ ADL      }	('.Q<AD&        }J)'$$ ]A@     {A$IG%J(]QD>       !JQ*D!DA]DT]@B      !B$I \%BJ       D "?@@?@g      @"($D"BF"8b      (oϐ)J]	D 
        A!BI]AAE\D@       @A($POAAD`     }$M}DWQ%DI$     D|>"HDr&m}J0        A!_ψ$\D"E✁ 
        E!$BODBA8      }!#GB$D \	B%\!        E.ED$ Q	D\        Hz/BDHG%x      $DH"D\B" A      !I	!\@B"E        !B/R D@        A!_Ϡ]I@         A!_τ]ADT        H"/D 	BK? B       AB$DTOD~\PABQA      _сDEQDqTUREq@     {%RNB*u(]TO"N@
       AB$DPOD TGKA        A!B"^"AG        A'A"BF"8b     }I/B$]B%<       }
/"QE
$ O      $^/D$IS%BJD       @A/PO w)RRjx       I!_ψD]R"Eʜ@ ?     |	'B?. PUI* 	@!       @A P 	 G%K       @A HU	 AO8       @A H \@B"E 2       A"H]QDEҜ 
       r'IO
)G"E%       ""DDODEP ADL       y"$RO ]BE\DA       @A/PO?  SAD%<@(       !/I$I1BB	8      B(_D]DER\E A      (Da	]I@\ (         !(RO] E%\H"     AJL}^"Fr&M۩\J       "($ox]*DU޼$@J      @A*DTR] EEҜB c      9(QD]DE\H"       A!_ψD]B"EϜ " |     }$C}$GWQ%AP       y!]IG      }	/B . SAD T       E!$B 	JK? B      $DO>D\DE\         I)$_π\@ER\*U       !=HBQ|!W?     |	'BQzE* !@A      |	$' @PUI* 
"       =!_ϤI\ HU@@     }$'B ]"EG<?@      ,"HD%DURKI       H"?T^]AOʜ$      @A(P/@]UFUA(C     }?"D/P AN@@       $DJ F%K? B      @A H\$D%\%         A#J]D\       z|%CB_]JER<P      D ?ࠦ0>@      (IOG:+x      "/B\@C       $D|PĻ@
 "     }	('  	\BE*<)@!        AB"DJOġ~\B\( "     {	(_礂I	$^HJE!       A!_Ϡ	G%?8A      =/P_ĤLRJŪARC       I*HDB"E8" L     }	$'.SޠEJJ      H"D@$]E*< @B      AQQeEU tTQ%tA     !
?@@?@g     }I)'*.PQG?         A!_ψD]Vr%        @A/RĔ)SJJA4G     {ސ)JJW"1)\`@.        $""G
)MF'?@@?@g       I"_/"DA@8     R_I* EpJ$I0         !/PD	|EK_      (et%ߊQDE8a     x!(SBx)"^|M         O DK"       @A/PI$RHI\B       Hz+TUO2ĺE%K$      @A/DDĈ}R"J*U@@      $DH	^"eJ<D@     $I(e$O)D䊄QDE8S      !(Wϊ	]|!GR       E(_{Ĕ)S޼IJ<JAVR      !?DR	JSGE! ~      )'JR$	TQ(IT)    AQ$SX% ? # #       $O DK"      y _"SJ*<N@      !RJD  Q	D\      _/UDSG%       }*$PJ"@       <%D_I	]ID\$      {(_B]ĩ)R^	J.'@        ""]IG       /B*cQ@" *       $Q"JhTƧH%
8      &L	$HrR+J)qRC     (H%TG  ?@@?@g     (XO~I!SPOҒ%QA$     ?Q A"%QJ$"W!OPD       I"_$I	렸       "+`/"| A˪ f       A'A!}@	8D      ?H8 DKA       P%RB	P @ A       A!UOA	}B"8I 0     /"@L
ԸBRE8       @A/TTODDQAOD@      }I)' .Q	G. A       "'@U]ܠAOʜ$      !%@DB8       /"SJ	?RMEԜR      >EGB  ?@@?@g     }TUQ|G$D}]UEUT]P       @!_/O	 I%%      /ED/?D	SC%ܐ? B      /"RLPDREJQ     ! D?A$@@?@g        O  @ K      _
_	UYp%ˠ       /jOU	Gz%KA     {ސ)JJW"B	]DB?@      $QDD݉USvEMڕU7kDX       H"(KDTҺEJ+P     $$@R	JME6x     AYUKը+ք-Z(։2
      $)bVԿ*AO
      B9(B^OR	RH\B      !PR^I!{?]_B	      @A/R$OHRYK\e     %.Iԩ/wD"%N)+x"     " :R~	B ?@@?@g     !/z@0D޼Oz=8g     /zRDD}J*+x     (RK_"F#?     " :R~ 
l  ?@@?@g     	R^I{c	jw%K B     /zRDDRUKUN@     IL$Y]tqƀˑ         NO;"	B"	K8 a     !H>D @@?@g     GI!u*u9Z B     &^|I|x5ZYqf     /zRJDH!O8     	D$	^Eʱ_W$@O      ARLIc΢w%J$mp     )~e$1JQw\B     /zRJD	PIJ)+۸g     Ay*}JtyΊ%/)0f     /zRAGˑ8      ""^/{ĔJNJ)+       
@18       CH>"`B      @A/(ğ"DQ1@IeD     @B"ȈA#}DI1 BH%J      C('HJ"EP4"XH%       @A!*"TE%H8B%      C"G_"D!0J      A"$GȈIE@1BRHe       #DH "T($PRA        #D_B"DT)QA      C%'H"$D 1PT(e       C)'ȤI"D!1BRHe     C!I#!DA2 BM%      @A"ȈEP4BR%
     A((_ED1ȥRR(e      Q*|!QAEwPEU%uQBB     @@A(H""D0B%       A' #EAH4P`      GWI_%~J!i!VDI
	     @!"E 0B%"      @!H"I} fIJJ      GSIH% JTjUT@
       C?H"E%1 H%     HBr"GH_D!@3"DH%      CR*Ȁ"EH7%     A)J@	2KiQ^IJ      GRǥIW%tJPjUU
P     PCR/H "D4H%       GO	 H!`_Qwʩ	     @@ARU%TJPjUQhKR      GJN犉;*HdOQ?"      !B!B  @       CA	$H?I AA!B      ! B?$>HT BG""D      D?   @       B         O	$>HT BG""D       #BG	$>T BGD!A       @@>T AGA	       GD?I  G        C	$>hT BG	""DC       @%J_)U%DBD      @?%R_IU%$G D         G>U@@       !B'AՀ>TA'
"	       @@I>U$@"D        @@>TA'
b       @@>T AGI	      #DR>UHEG"(D        @@/UHURF/" DB      <C	$>T BGAD1A      8C8>T |GB	     @ AOH>T AGA	      xG>T @@        @AGT @A         C T AAB?        B a 0      xOO*>W@@(      @A?O_%TQ	@      #D!O>(TPAG	""D       <C	$>T BGAD5E       @AGU@'A       @@AT B!B?B      A GȂJjI$Oޒ$HB       @AGAOU> U @!	      @$`"   ?      !B$>^T BG?        @@OI>U$@A	      #@O*>W@@     DC  "   ?      8GT>UPE'ABN        @@>TB!B?B     @ C!Oޕ%>JTBWA"D      @ @@>U@@      D A!ﰕ>RT(B!B%D     @ @G!O@>U|DG"PD      P A'? >~UDDA!E      @?R_IU%$DA        G!OA>U@       GEI_"UB!        OA J>U(PGA 
       @DϤ>U@AGA	      #BA>DW&@G       (@O?>T BGAqD      @>$UA'A"      '@U>UTEWB(E     H A'A>$TH@AB        !@"   ?     @ @@ A?TAG
"	       @D!
HT BG""D      @ AA>DUB'A>D        @G>|TDAA       @AGAOU>T @G       @C!
O%>THBWB E	      P 	?I$Q$?BA      #@T @G       	$`"   ?       GT $@H       A'!O>DUB'A>D     !$AO ATB"D"B      'AGϪU>UDB         G O > UAG	"DC       !@!	>~T@C!B"      'DAJ>U(DQ}D	     ! CA!I>U$AG	DD     ( HOI>UHDB$I      #@OI>IT @       !BOU?ATTB" DB       Fw!OA>UAG	DD       @C>BU"B'A      'EwOU>UE'A<
1     H AUTHG!D       G?DjT2"$DH     !$DAOU$ UDD"$D      'H?)RHA@       GR%?/@H       GR_)jOʒ	D)      #D!ϤI>T AABDD     @ A!>UG?" D       @GUPDA
      GqUUuU_UUUqUTKQ"E       @Gτ TC!%D      #D!ϠA>T $GW*Dd      } Eq "   ?     D B'">DUB'A"        G ">DT BB?B     @DP ?D@@        @AGAOU >UTGB*A     H A'q>THA'q	$     @ @O A>U@ABDD(       '@ϪU>UTX@A	      !A'U%>V0@G
$      !B'ADTCA	}      !BO >TDQ	"$DD      @/ A*}؊B.CH!      "HD!πT@EWB*U       @OψDU@
"	      8GD>UDEBH
"      !BO>U$B D      AG>UTDB      ! C$/U T@">D      @A@GB_ *}*UWҢ=DHd     @ CЕ?>BTA!     R B
OU T$BO	"D?A      !@O> T$BO	"D?A      !B'A">|T EWB*      @ B">WHDB$       G"?I*}~I"*	2C      /r>$TNQ#q        !BA>> T EWB*      #@	O>UG?" D     p @ ?$I$DA       @OψDU4@Ȉ      @@@B_?|!D        @G?>UAOԄ0@      @@@҂%) O֢)I4G       GҒJj
|b'D     $$DϤ>U@O
$      '@OI>T"@'
     'B'"> W@ B        Kϊ?U| GR       #@"/>T @ B      !AȂ)}UWB$Ja      C D /QH     #D/A*1"N!     P"CW>T @A	       @GOA?}TB'I0      #@A?>UG!A	     <'DA?I?UHDB$       BH
$	      'B'OA>TH"?D       @@"_Uk ʢD       @$Ђ/B}\,"*$QI       #EWπ UG	B1a     !Oτ*U OBqD%      xF? D@@      !DBW"|}MȂ"D       C"?5|֨D*U     8GCQ??"?      GЊ'r"~WʢD*        D "#ʊ       C_?A| T*UH     !O$U%T_֤     !$Bg?*@Â
$       Gb$_}}wUGԂ)	$      @@$_~*}~ U      G'%?{KO)$_Ƞ       @ @?    @      @ A? @9!B       A ?
$$~H! rG""D         C?	 8G       @@?? 9GA      @ $_$~HD"       @@
$ #pE       C)$R~H"uG"(D       @@
A% "vB ?      @ AEH? 9GA      @ @  AEaC       @@?:$A?B       @ D =$J~("PwE 
       @@
?A~#t@
        ?ADI$G|IQ$DA       @ $J A~"p        @@$$~ @qGA	      @xJ*~ @p(        @@GDJBd~   p%	      @8
$$H~  @r%"DD(       G D_	 #~!H"!       C'
	$! #p       @(O$~! rGEqD      QA	 $Q@?BA      !@GER?	 ;       @x
~D%r'E!B	      @@$
J%~!HrWB E	       @@GDJ@d~  @w      @ AB?D	:'D>D      @@@ 
$A!qG
"	       GD=$J~(#tU}D	      (@H
?I~"HtB$I       GG
)R%Tz "@D      AA!
 $ @      @D ?
 $ @       'H
% P) SA@       C$ A~ "$wW*Dd       GT%*%z/@D      @@@ 
?A~ @t%""D(        GTJ)d 'qO	B)
      A$DJd$ "Dt"$D       @@$D%p
"	       CJ?~ "Dt"$D       C'D %"wE      !B'B"?| =WʤA*       @A@GB_h I*T'iW=BH	d     "DDQSD|2        @@? $~#qOԄ0@      @@@BJ?~ 'pB        G$?I$~H$%*2C      @@@҄%
)$ zO)E4G     "B'ЂIK/(rWEH)
       BH
$Ȃ#i	 
          ?     @         @   @      @ @O@ | A!B         D$(|DEDD|D      @A/@ | B!B	       ?@@   @       @ @@ 
~  C@     @ C $I  @	"        @G I~ CBDDP@      <#A 
A  @A      !HC@	"| !B     BD'x
R}_"EqBHH     @@'(
R}_"EqBHH      !B#R_!pAA	       $D# bB~"pA!       ! BG
?B!D       !B#z"~_'pAa      @D' 
"~_"BqB(@     !!$A
z"Q"%DQ     AB'x
"B}_'Bq,BT)BA     BB' 
r} GqB(q@     ?@   @$H P       ?@  % CA B        @!D    _
F      AAU2	  _
F     Uu$PhBAB&D       8 <x  G           @          @          @         @        /D 'A$P      @@A @B"DAA        /B @"D"H      @@A    @ A        B B   <($P       #  @  @ E       @@A  <P"H!        @@A  D@
"D(_!       ! @@   @@      @O   = @ A       # A   @ A      #  @ ? ~ A@      B G @ ?<0"D       OD@ ""D(1%       @@A .<	4T$H        @ @@ <  @@        /B  !B"H     !"D  @ " H      O@ ?D\"$TH      ' A   @ _     !"D^ "HPB      @@_ $I<	D A        &xH "^D	&PH      @@A  <P"I!      #  @    /H      @8G  ?D" H@A       @A    <|" HH@      #  D@!(" Y@      @xO    	DP$@I@APE       A B  D< @@      P@A  <P"H!       # A  P"H"     # @@ R	"D A       @A  B<HP@!@D@A@       @@A D@
"(A        A B@	 <$! D@!      #  @   $H "HH!A          8 @/A#      @@_ 
 $<  @_     !"D @!H$P      @@A  <	$H E      #$H P	L%J     #!B ^A"G      HDI @I<	$x$ H         D O DK<h$I!      #$H)^R	z$HPB       } J@)R$QH"
 #      @@_ D@
"(A        A D@@@ 	$H         A D   $$DP       @?D@$DH? 
 #      @@B  A<	$H         @@  <	@ A         @DI $ <@!@B@A        B D ( <>@!B       B D@%J! D@A       @@A  <8H$Q         @80#D 
 #      @@A  = " H  E      #  @ @ _     #$H)^R	'H     #$K  ^^	J$HPB      @@_  A#D       @DE  pP$Q      B @  "<D" H@A       @@@@	 <	I" D@B      OA@?J\)&H %       @A Gఀ <H>&@p       @@A  <  'H A?A
 #       @O  @	 $H %       OD@z	*T!(BP!!B
 #      B G @@|	$HH! B
#     DH  A<	"($ J ! E      A0     P*D      xGA  <	$H         A@R@ <l	T"@D!A       A C@) <f #@?
#      <GH  ?@<	~)RE      A 9"$DO 
#     A@Z*"\F	" #      @A O  @^	J%H        @DI D = "@H!A        A! [8*&U$I G      H "'H"@ #      @@A  	'H E       @DE  <	$H  E
#     '! B@)^R	$H E       8GA  I="xD@      # B 
 fJ4"HX      @@A  I<TpP$Q      A@O@<	 !ED      </B %JHI G      @A@D@@_`<@$I!     '  I $$  @      	 A2 J*$d	TP
 #     '  @  A " _      B H @ <
 @/A A      @_ ? < $H        G@  ܈$DH""EJ#     HJ@h/!B        OA  ?" 'H!?      8  O.HD!RBH #     DH @? = @'A        @@_ ?I<	"I !       @DO    $H         B H  @"<
$V@      CL  3=  O
#      @ "'@
#      D D@% |$H@      #%(JP)^R	J%(O"     O@  =J\$IH-e      DQ  A=$H         @@_  *<
""I !       /D@@~/D@A     B _ 	'H        GAR	B%(D B%       AD !<B"D AA      @_ ? B<	 'H A?       @@O@	<
"H"I !     G@ @	t!PD
      @z ( O.~D!B G     GH/D\%K@e      @B@O b	$@H        @_  	'H  E
#      @@A ?A<	       @@O  D	$D'A  
 #      8GA  I=@"N@ #     #$O@? 
J$$R       B"'A@	R"$ G      @@O  DP A 
#      @@O <D	D#PZ@AE      GIH?? @p      '  O@? 
"(_"     B_@  *dE       @@A@` 9R'IH$"ID G     BG@ =)HD       OD D 	'H  E
#      GH ?D<	B%K!O      A B (X(,B!j      @@@O <$ HA!
`#      @"  ;@'IH%"JD G     OP +P      @_
  $I A%
#     #$O@?
"T(VP!@      CD@?  "xDG       @@A ?A<	$OA      @" C"D$I!DB#     '(O ?I	$ _     ')H^  ?  @       @O  @	T*WʡB! #     BG@	z%H       #$O@? 
"$OЀ     GI=@	$OPA!EDQ      @A O@?A<  O        )&H " #     B @  <	'H         @@O "<(@'A       GD   <	@/A 
#      @ )$DK"D #      @GI  	$I A     OD@ 	H'I  E
#      @AL <~	 @/A !?       @BYp u  F@ #      ) J@@'H"" #      pA	 $@O8"~D$QTE
#     ')HR?*
"P$Q      ! _yN%J RC( G     #$H$D	DP'HB      @@O  <	!FH #     @DJH} #TR/EH""J#     #$O@? B%(R       @GI   	'H  
 #     #$O ?HT*UPB      <G@ ? @D!B? #     D_ ? <	$O!?!
#      @A  8"G
#      Az@H
'IQU* #      
 $DKQ/@D G      B OJ@(	F' Ap
 #      AAX"NQ"$J #      @AR:"NP"(J #      _BJ@) 'H  
 #      @@  H9D$IU#%$T G     G~J :PY%*JX      EP_PNa =
"@'I A%      @!$8"HGG     ! J9*$I!G     B _ I<
@'A        @DE@ I=	)xj@B
#     ?J@$OA G      @@O B=	|  _"B #     A@_ =2$G!      <HEy"9!_AB@J #     #! A?^*([!N       @GI   	'H  
D#     ')HR= H$O       @ Q@9"GBDE( G      @?D 9$NDQXDrTG      y)@@$"HJ #      $ J /i|!<BH #       AD
?H!D*$(T G     A$8 @OQ/AD G      xQAU:*UTB1G      P@$9@!DLІ3BDԔG     GIH   #Bl       O@  @^	#D   #      $GPBH  'H       D@ݹUv$DMؕQ7bDD G     @. $A)|FPIRTjP#      ?@@ @_IQD> G      !%@;
$W! G     H !?R9J$MA6Hؔ G     <|P1 zP#XA% G      A q8"HG!$*G      Q DCO;/~@ QL
 #     OR$@B]/?%H^!W
 #      e;/RHQB%CG     ' 	       |!P! D!(@A       ~|	$$PQ DQ&@      @ *?I
H@PG @     """" "? !	O@ /     ADJII$FI$gP       |!P!/D!@!       |!P!/D!@       | /D	 "@D        ADHB$BDDBP$       }P! D!@@        AG!HE
DDBP       |"D	 "@D@      !_H!@DQ$H!Q       ! HCĉ$DDIZFQ      |I$R!Q+䄑DI&"A)D       | !B""DD@     $DH!"D	"$DHB"D       ~|I$~PI!$DI&JB        H HC$DDI$QD!      !_IH!@DQDIZ&Q       !H!GGDP      ?> D /D	"$DD"        |  I%I$I"D AD      !BRII)DĢD!DD!P      D""D
"$DH"D       !B'A %HG P@      @}$"IE	 "D$       |$P%I%"JD)$     #))IRJRRd%*B
      " D|/DE>"DD"       |@$_ ) "E	$      >xD"""DD=O        |(!"Be)*RT#0Dd       |!P%DAA      |ARE)QGTB$      >"DD	"RD	!"BD	C$        $|H!"^u	"$DH*d      |$P#DLEVTeA       =bJ!H҈F!aR4"P       PH!O䀒E$@S $       (|P)JJI+"(DP        !DD!I#HDD$EP D     ~҈R!+G@        !BH!OD!BP=     !_HJ!@DqJZIR!       |  A?"D"D      ""H%/  D$      !GI0"BD$	H      |  B%I?"DH!DH`P      !DHAJ@>D$H"P$       d|0&A?$"HE QH      D@$)"D A@       |  A  "E	H        @}	(O%I$y"E$ɤ$      }$O	 _"ED$H      w>DD""D""DDD"D        ! HD$R$DQE"Q	      AJ	O䠒G$`S$       !B#A ? $"Ix@       |	"D	I!"RD)$HA      #	(I~RPd#JRC      |  I%
ID "$H@      |P$W 	  D@H      " $|P A	"DP$      AO"|褢J $(     D !	?"DDB        HDv:%TI>J#       
|!'H	:U"ET*"hP    |BQ	$$ E	&C      0|&
A
$"F%j    |}DDQ F	&C$      
 A OI$"E$$H!     D !$  "E	DH       	)IE 	"D<
      } $Q	 " E	$       }A A?	"EJ"DB      #	(I~RPe#RC      |  EE
]#D "$H@     D $$$I"D AA0H      >"DD!$ "F	BH      }RP'EC       !BID<DCxP!      IRRHQB$RD$H"P$      ~}	$BQ	'䐑BE"A      }ꔪRJRKe*RZ      >>DD I$I"E$СA"$0H       }"BE?  "~D	H      a 4|0,A??"F	$	H      A'A%?" G	"`P      @}I$OI("HEB      A'A? "E	$H!      !@~I	G~DCP!     ?IDu"J)Q*UDD
T H       }$Q(B$"E$QBDH@P     %/K¤I+U$IH'jJ      ! "|H'BE	#DH"D!      !HB]F!JIR!      PRwIDDQDE%PD       "<DHB"F;TLB"D      }A/EE
*"TGA<        ! DO  $I(P_@       GJR^JJ$)H5DB@     A D|P$I%$I"D A     ~}	䐒~Q	'G$A	      !$#Q B" Ra) Dp?     ?B~	+T%/@ E$I"DH$       }	/@ "GA      }I _	?"F$     hJ*	H#c
"      }%@Q}%Q_EETQB}      " D"A? "~E	$      )܈#JZu 	?A"E$H!     w>ET 	 "~D	@D       (|	+@)%RJE*U,     |QDUQU'EC       A'I%I?#F"U @     D  I?I"D @       /<BIL)B$)DJ	     
TT"HDD!BPI$     ! A<JR^z*K$*H-Dj@       OJR^JJS)ȾD
@(    P%-iIRJ_@ɡC
       }!%H"_"E|$H     D $I?"GB"$ (        }	'H% " D I*T      E|',PEґDD       ""O	EI$      $EJ!"	!"BD	BH        |E"G)R"E"U	H!       }	'H% "D$       @}	$O	?@"DUH      B<JR^z*K$)H!DJt@    ~}	$ S(сG$A	       !@~I	GFiZRT       I|)G"_$I|ԩI"    > $OK@AEuTWZAQ      " D'H% "GABDH@     II@I%GRD!G*Q%      }%"O)REHݥ"T&	     w>"ET%RbQ"D2Ӊ@b8      " H>H!GRD!BP! <     | $OI?D"D      E&A " G$      }$O	?@"D"څD2H     D!/ FU@
         |/@ "EA     ~	P~HORD@4P!D      @}	'H% ET (       @}%RJ?*U"G%H       |J"K )!"BD	"    AQԺ#YI(   B O     >D	'"GB"D      <JK!O?~$IG     A D| (UU')DR E	$      <HD"F A$IUJ(T H     " QEIUF4RAEP      ~*Y%	?A"E      " (A'A?$*#D $       |"I%") A"FDz$ H      }$Q/EEI@R"E$$      )FR I?I"D @     ~(S*F@      UdEHADEP     >E/z#DpQD       <NOV'* $IDH      }J%*O 	? "EDx     "|%RJ !D"p      }U'I>RDi$2(      }Q%IE"_"E|$HP     "|%RQ"EI?     " |""J")?A"E        JIK&/D%KIU!     AP~I	ORJFH~R8     "|%RN 	?I"E$     " D?IH"VjUuJJE(     > ?JH"*?҄'JDCB
Tc     =LF2JJ $I$IAb$0(     !SXb ֪Uj*       DKޔOz	
?H%M D     D@HI!W"KM'h     * ~*_* #D      RROߓKZ& $I	GDH     { =JRIJ?J)K%KrL     DH(`	 $ O      (PCQ
D+a!BH        D ""HDy H        #
Fj'X!⠄      Q'JA*WD(?       	!@OA*UIRH A?A      !@EVUҮj
*0P      |P GB*#D!       P@
D*!C"       OA@?JH)
& "@D        1`  !C       ABOQj!B"D?A      	8@CU>!0B       A@Rj)RH$I     DPZRjU«O(?     xP'Ju`*W"ES"Ƞ      	!BOQ*U$	H A?A      	PAOUHվ%J($PHA     P 
J*W(QL)?       !@GD*U!	GH(PA      P
_W!C/`       !@AU!	G(Y?A       P@D*W|$H(       Q*URWJT( _        ! AG5PU"I	$0H       ACT*U!B"D?A      EB/HU"E	($PHA"       A@B*U}	($PHA"      <@B*9j	W)B?A      !PEH*U>J
H)e?AA      ! DA*U	H A?A      QA?
$Q(%_Ѡ      !@DUE*UA$0H!      !@B/B*U"	($PHA"       AOUPjU"	!B?       JVZݮW	X%V	_`      !@AOUb}	$PHA&     Qڨ5PjU«W(?`       1G5Pj 

(PPAB      ACB*U)RH$I     @ B8 !C      |P*@*W#!       !@U_~
(PPAD       AOUWjU"	g)0bA      !DA/UUG!B?A      ADHU*
/@A      ACR*U	($PHA"       B/E*UQ=	H!E?AA      <A5JU
'H$A?A      $@_I&
O)0RC      ࠉDU@*U"!B?A      ! APR
H*U     PPj_W@0       @ 5JjLR?Jb      ! D/U_UBF
)Q?AA      QGR*UH
G)_A@     PU@)?        I!BOI*Uv݆	'H$I?A$      !@BdUT
H/U      AD5OjF
X/@A      ! @UI*U((PPAB      )HGBjk)^("Bc      ! @HU }G!B?A      !DI/Q*U!J
H%Q?A      A@@Q*UB"D?A     PD*bjWw+W,(*_`       I!OI* 

(PPAB     QUPW ')?`     |P*@*D+       	)A*U*HC~!      !@A/U 	$PHA"     I&jڦ*~!b"     P(GOW>E$_Ƞ      |P*B*W>#!        D5E*U%X*U      p@"ABC      ! @HU 
(0PA     |PUHW WX*       	ؠE_UHU)RH"IC       @_U!X*U       Q,IDuRj	("B?Ac      	EoGU̮V/H(h?       EB/E*UA}"G!B?       @D5_IB%R?      EHGOU!B	)b?      |PWjUOW WX*       UI4( !C        BU_U"X*U       A@HQ*U B#D?A      !@?*VD'ʨQ*       ! DRJ"
(*PTA     >!IA!2*BC     PPZ_W>D)?        @GUUj)
"PI?A0     D *UOmwWWx        ! AO5Uj
X+PB      )PAOUjU	('HA"     PD:B*W"ÓC$,_       xz#F BBC     @H*"@,BC      )TAOHUG!E?AA      )HCi*$I	'H'H?      A@U?*TU''ʨQ*      PPZ@*W"}/        %PI(T((>D      )G_U~
*UA     QTB*")D!        )G_U
$PE?       A5O*U)(       B/5OUwV($PU      AO@*U"}	)PhA      ! BOUijU$,j      |P UB*W #X*`      ?kTB' >UE      ! ! QwE      A*VکV;8T)     @@*kl WUX}⪀      A@OI*UIJ*U?I      !!]$!)ШB>FY      G]UE	%YA!     /IA&TIp  "0      Jj/ҨPE      yJjUQ)O1[g      !!]$Q)G{F(     y @*U'f+XVyD       "H   I!0A       "   I!0A     D#B 1 rAT!
     #9DDI1$RTI$DA     DC?6	0 sP	?     ER?	0pW	?     ?B!!            "  ?     |	$/Ą
  @@
         "          |"AEQ  _! O       
 " `  $?      $7"R      B	 B B	H!Pz          $ @ R#|       GIB @BP x
      @BFDDADV!P|"     @IBFDDADVPxP        !"  BP<(       @A	BBADA	DP@y     ! $?$H!"RBĕ#x       @	BD	$ADVPz     @@aA$@0` "H?       @!"  BP<       !"(P Q"EмA!        A$	$H!"T"E"      !A$)$H!"RBĕ	#|C         " Dg  $?        "$$/B R
#|E!     @A	BD$@@VPx     P!ȂE%	P < `       @!)R""FX8(        @!BD!BHV!P{P      DIIA&DI$DRVIQ$x Q      ! D!  BP<(        #A("dP""TBȕ#x       !!"  BP<(        !   !P% C
       !!"  BP<         !"  BP<        A ?P RBȅ<      @ @ ? @!R<?        @	@&
D)$@BVPDrP       @!"  QB<A!        $$(W!~!R#|      @ '@? BQ#x?      P !"% @ P#|      #!&D*"(P P<A!       @)&Y	$"jT#x?        @!  BP8      @A	BFDI@)AP y@     @ "?"D"RB8"!      x!	  BP8      @ "	$H!Q"E
x        "$W(1"d Q25C"      8**TP"U"ECȸ       #!$DB RQ"E8
       $(?D!R"E<B!        )$W$I"T#x?      @ @/$>D Q%CмJ!       @/7DP QB	xD      !!"D$H Q"E<"      !!"D $ WE <       CI!BD!CHV!PzP      !"DW)  QEC         @! BQB8A!         !4d!FT<        @/7$DHR"V*#xB        B"U
%C       !@)$WeL`#BT#xG       @/W	 BQB8A!       @/$I$#P#x      B	?A$DBQV}Pp     GI	@&DAGBV	P$pP!       @A"( #PE 8       8(?QD"RTȅ8"A      '$D'BD"TE!9       x!	  BP8         @%D*WDH$ JPE<0!      #!"D	!R"E8      ! A$D 
!R"E8"     @ $DW H!"RBą#x        @/!Q"8b#       @!"!Q"<b#     " A(7"v""TBȕ#xC      H "%"D P#|A     @ "? H"BTE$CA       A$/D#PB<      @A	?ADD@YBVQp      #!$"WH #Pļ       !!$D(Ā!
Q"<"!      @	ADI$GRVP p       @!8!RT%"#8       !A )$H!P
 #|       @!BD!BHV!Pz!       @!$*W*  QB<A!       @!"  QB<I!     @ @/  <H!"RBĕ	#xC            H!"RBą#x         A'(7D !R<@!       #()RH"UB#x      @ @/("DP P<A!      !$$(W?H!"RBEмA!     AGEм_`1 ?      #($W?@D"U#x       @IIA& DRVIQ$t     @ @/$"JT%C8       #($W?H"BTȅ#xa      8**TP"U"ECθ          D =J("RWE 8
        @A"$ 
P"E8       #!?HR"V*#xB       @"$A !R%Cм? B       @!?"
T%C      P !"?>!JRE< A       A/7"DD"TE8"A        ! BP%C8       !$$(W?@!R
#|?A     ! '4>@ Q<         @/
$%&RJĕ	       @	ADI$GRVIQ$tA      @IA&DIDRVIQ$tA      GIIA&DI$GRVP p       @A$DWBD  "P%8!       @/W$I$ BT8F!     @ 'D BQB8A!       @)$ BQB8A!      !$(!B!
S<?        @!"
T%C      ! ("$K{"JTE#x?         A/7@ D!BS#x         A/B "P%#        GI@F	D" CHV!Pr!     ! ($ WE#TE#x?      #!8p!RR%"#8      @ @ D 	R"Y%C         @)$ #P8       !!$D"D!R"E8         !~%
R%C? B     @B	?BD!BHV!Pz!     @ @/ BP8      ! 'D$"JT%C8       #A(/UT"UR8       !$+ה)R!JR%<?      @ $$J(&Q 8      !!$D?"D!R"E<> D     P A/W
P#QJ$         ($W A"
Pą       ALzR%/JH)REm	8D      !!$DA  !R%C? B     !!(DaB("RT"E8J         A  B Q"E8       (@I@A?D$DP1'ExA      !A "2"FP<        @/W$I$'P8A!       @%$
  B_8        @!?8!RTB8        @/	  BQEC       B	BDI$D^VIPp       P!8!RT%"#8          $H!"RBą	8       !%$	W!	"T%〸
      ! '7 !JT"#8(         @A" !JT"#8(       $!H%$*W)R!JR<?       D	GCQDUTEYUVUQTy~5Q       GIAADAGPVAQtA        $$(W?B!
S% <       @	A&D$DRVQ$p      )D!B"U"̥CxA      GIC Dy$DRVyPpP        A/"D"BT%$C        @!"  BP%#<      ! A$	rD%L!"RB̕)#x#@     @H$H 00         @/W$I"JPEC       'ĥ	*T)DRJ"U*U#x"     H !"D	$H#PEC      @ @/ A	!QB8"!       @$$$ ~Q
%8       '!$D"|!R: 8      @ $DD!R"E8> D     !! "D'R"E8"      @)@J@?A EFqx       @!$$D$H""PB8        @A$DW@D  #T%C       #!(D!BD"T8a     @ '7@D|#TJȕ#x      !$I$	7D[!&RJĕ	#x@     @ @/A!"RBą#x       @	ADUTEYUV]QtPB      GIAAvD]TEYUV]QtPB      '!?A#T%C        @! RECy        @!   BW8        @!$? #P?8       (@I@A?D$GP!'yA     !q+bD""TBȅ8_        @//B%SE8* H      #"   BW8      }" F@<A@`1$?      #Q*W*U	T"URʥCڸ"&       "JD	0c"H      "@/D	!"RBą#x      #!$D"	!R"E8B!       @A$DW@D  BW8       'A!Ȉ  BP8        @! FP¥8A!      "@/D	p!RR%Cx       8(?@|"U%Cϸ"      @AABAGhV!Pr!       @AOB  @ G 
      P A*-W,"QB	#|D      x! #T%C       " rBxOB!,BP9     ! A(bD8"UR̕8D       ?"I`pH     !$I$/!&RJ	C<      @ /
 #
Zb#x        @?  #T%C        C@@? AhFGD(      ! BDH}/JH)RI$M)'K        @%$
	p!RR%Cx      @ @/(Q%2RBE0@      #	)7$D""U*U#x     @ *DH!"RBĕ#x      @ @? 7	!T"ƅ8"!      x!? 'P       @"$!!
RCм% D     ! (D!I$#T#x?      @ "D@$R C
      ( H/"x>#P%|a      "E 0c"H       @!$DD JPECx(       !$D A!QB8A!      C∉"@$DRVIQ4t      #/W?   BP8      ! !(D WDB#RBą	x      D "0c"H       $D>E'PbE8      ( H!?HY R%"#8(       !$I"! A!R
#|"B      ')D=J(#TUx	     #!?I	!RB#x"     $ H@!@`1 ?     !A/W #QĹ        @%D
. #P8      '1?D	#T"E8~        C@A? AhFGD(       G 4@"DIDRVQ$tPC      # /א!B R%<       !$$(W?  #T
#|     ! (/)J!
Tȥ〸
      @ @($W?A"BTȥ`      '%$
" !RE86#     @ @ 
  BW8      !!CEd1 ?      #($ A"
W@      ! 
"0c"H       @!?I BQECx      !	1
"!R%C? B      @NDH%KEPP9        @NDH!OE%P9        @AOAȀ@ 8(          ( W   QB	#xC        @/*Tt$FQB8A!     @ @($W P!"RBCx     @ !($? D"B!V"҅8b#     @ $D6	 BS?8       BAN
DXHECH'x"B     ! (D!?I$#QB	xD       @A@_@@@(Qy       <!7  RE81!      C∉"@AGPVAQtPB      #($    B_8A!      #!/׈  S%Cм? B     @ $JU	0c"H       @AGI(O?DD"'8       #($W  "BT9       <!7  R"E8
       #$WIII #P8       #' W? 	#R"E86!      #( @P"UREȸ0       @A$DWDD> BW%C       x $W  B_8(         OBJdIOJC$MIG8       @O"RH%IH%JG-V&zy      #($W?   BP8       #($ @"U*U'y       #!(D!B"Wą	x      ANRD	$JAe
x     H "D$!R<?       ( H!?I"JTCI      x B!0c"H     # ^-0c"H     !!  A QBą	#x       (@I@A?DEP)'yA      "@/D	  W%C       #)$$I  BW8       @)@J@?$(H@%F)Uy      p(?D""_	8"       @!$!T"E"8
        @!?A#QB	#xD     #!?I	 !R"ExB        !$!RRE
|J       OIzR%/zH*D%FuG
       #($"D""U%C_!"      !' 	@"JTȅ`      @@AOPPO w)RFm"x     ~|	G	 0c"H       GH
TX%/ȈET '@x       @! "JP8      @ $7D( FRUx       DI*@"DAtEYUVUQttPB       @A$DW_D T"WʥCA       #)$$I #QECx        @!"B!V"҅8b#      )  
(`pH     !!(D	 $FUECx(       @p"S!ERB`1 ?       @! "
W%àE        $	  W%C       "H!D%R"E
x ?     '?"RD"
TC      @ @ U	  BW8        GIJR%/{Ȕ)RGM%'JyTS      "H)$ |""TB8"     @! )$W?I!"TB8      @ $$@"W:#x      'A";A#QB8      ! /b#TBȅ@       @@AOP( O$G%9A       NTh(WNTJӪ`F      A/ 'QB	xD       D%D
$ "
TC       #($ A "&WRxd        BJ0c"H     #!?I	!@'R"E8       @yGA?*TAP8      !$2DWD$ "FT#x     ! (D!?	 JPC8(         @"
$!_E8B!       @AABDHODH~P@@(Qy       @@AOP ?  @@&"'x(       @ @    PB8(        !D)$ !JRE8A!      @@AOP@O  B@*L9        @" "RTE8
      H y/"DH W%|       GA
JXO)H GM	G)8     !$D("D!R" <A!     @ @$W #TCE        $$? #T         ( W"D!RCм? B     !$D $"JW%C      B">@! DPVQtA     P A/W*UT"UR 8"       !$$!~@!TU	#xB       @!$ BQECx       GIIAvAtEYUV]Qx!Q      GIIA&DItEYUV]QtA     H !/$ !
RCм? B       @/*T$$FPCx        1` 	  ς?      #! D	 $FUECx(        #! P@#URʥC        @!"" BW8      !$D
J%2RBŕ#x#@       @AOA?@F)81@      A"H}GТ%Fx"C       @A@_$I@ࢥFGDy       "@) #TCE      "(D@!R"E8J!      @)GJ@HEE(]y       @AOB   G&'Dx(        '%$
"@!VE86#     >"0c"H       @!$DN"">T$y"      #/W? 'P"E8
       A!\BaB.J"BR(QA       @A$DW@D> #P%
C8       ACJ%OI"B&*Qy      @ @  ?A BT%"#x(       "B BBD &$'_       GIJR=JHD '@x     "$Q(72DK "
TC      !$D
$"J_8A!      #($ A 'Pä8"?       @!$k$#PÅ
      C∉"@
EUVUQttPB       "A' $0c"H      @@AORH$Ȓ< EF"9      8(?DD"UCȸ""       @"$ ?B BW        AIJQ%/QHBF86     @ $P?B Q%8       !!!
D%0 BWÅ
      !!$D D!SE	8        GIJR=  A  G 
       '!?"JW?8      !$D>D'TEC8      @ @ 
$#T%C8       GI
R=/JHRDM'(x     !$0c"H      !'W !TU	#x D      FqHQH:HȀ>DHFaE8A       GI
R$/{ȀD$U B!     "H/W$ 'XU/x       @!?A#T 8A!      #/W?$BP8        $$?  BP8       #)$$I 'TC8a       !#$W !&RJ	#|?A     H "D ""[%Cм? B      x!P,"JTeC      !<$TDI B_8A#     "B BIWEԪFJzh     ! ($7?D #P
ϕ#x      #a2A	}  BW8A!     !$D
 !V%C? B       @/"L0c"H      p@"A0c"H      C\"HH%IGSF$I      !x(DdH""Wȅ8Q       @AADBPH_o *TGU=GHd      ACJ-OK"B&*Qy      ')$? !S%8       HBE"_)^@@
$      #/?D W%à      ? H@
 0c"H      "H)$ @#URʥCU       @!]HB|J"!2?      #)$$I  "QR#x         @"d 'PÄ8!     !<I.	7$R"UJʕ#x
"     @ @0@W? #TC8        D!$ #
ZC? B      #/W? ""FUJx       @@*_ A
EتF.Cx!     @ @(7?@#VZJx(C      x!?"JWÄ8      R /*WD !&RJ	#|?A     !<*jXD"U
%xC        _RJdIN&JI&KF0$ H     !!? P8"!      H9KTΖ	*UIRBJFL     @ @  A RRE(0@     "H/W$("
Z*E8B!     !ABB_ x*DU%GHd      GIIAQDETV_QDy'      !/@!Sȅ!8       #/W? 	B$U*55xRB        $$?@#QC%       @@AOPBO? GG        /?	T#QBCx (       @AOA?HI# @D)       ! BGP_ DCVUx!A      @/BHA?*' `pH      x $$W%	 'P%C        @!?B WʥC       #+?Ud"TCĸ"      ADRH? @MV%'xRB     @ @0I("
[E8> D        ("|""U%Cȸ""      DADGPVAQpA       @A"D
W?ġ~!RC "       G@OO  EM"'Dx     $@DJJ@}/#TROM!'Dy
"     $@*$W|"UC9      ( H!$"JP"8       |!Oeo%H`pH     !$D
" PC        ($W$U TJΥxd     !AALh {ȔR@@
$       GIJR?   @@$9      @A"_OBRG8FJx!     @! ($W?@ #P
U*x       UI4(@b1 ?      #/W? B_ą	x     ##C
T!d`pH      @G}HJT%/UH DD"'Dx      "H)$  "
T8      ! 9$"P8        HJRH)NIB*S!1E     "X)$$I #R"8"!       ($W$U"YE86#         ? "UUxB     #	' /QD"U"        @! "
W%?8A!     ! A=OJR%Oz*D$M-Gj8       / 
" #URʥC        @!? #QJĥԸ0@      "H!?@D "
WxD       ($  BWÅ
       ($  P%(y        @@AOP ?Q4@U'8       '!/D= 	#TE8
        CDO?H@V*@x       A!GY_$B F	 x     " $Q$!RRĕ
#8      " BDA(zOOJȤ&G$_     "H!)$	7 "
W%Ñ8A!       x/7'x"TB"       DEODQ C       !!$D"| #URʥC        !+ 7"|#P 0       @A@AȀD(d     $$ $ B_Å
       GHS$OH ETV.@8     " BAD}$DhE J:A      '/W?I"'P"8
      ! BxH
^Ex"GD      #?W? #TC"      "B B@EEPFJ:@      @!KH
|B R9     !B_"HHIYB#BF"I       @  _CE`pH      AODH"Fd"'Dx     !$D ?A#P8A!      #/W?D BQ#0       CDOO?*TAP       GB"N{" @ G         GA
RJH
b@%G8     @ @$DĈ}"%Z*U/x      @AGHH%/&AE&880       )$1UT#PCxR     @ @0 ?$#T 8A!      @@AOR%Ȕ)D M)y4G      "G$bO|aoG       GJR^%OyJ@ 8      EJzUX)Oq$RO|&)GP% D      $D$?
""TB8      @@"_ I%D5f5y5      "H? 7"D BW%CJ       "H? 7"D BP8       #!/? 	'P	8f#     #A+W?E"URCϸ"&         W	P"VBȅ8"       HJJHɄ>DE!B9      @ @$D #T	xD      'A/W*  _
      @ @()H"U-CyJ       #?W?$#Q8!        0D	|"UC_      $"H%$Od䊄y"RTE8S      !!@g
AI`pH     !
	`pH     ! BDr~	WTOSF$I       A!_D?RJ@ F!8~       bG*X9HE@@
$      @@A_$/OEକF_:(        C@I(
T$DD&*'Qy" <        ("|""VJʥʸ       @AOA*$BH8A       DEH_ {Ȕ)DM%'JyVR      #!"? "
W?8        GA"GȐH@P"      !A@_"/UH@ &        O!Re(LNDFK"RF      '! *	!RW?8      ! 9$"P8ɠ     P$Q"?	 #P8A#       @AOA$@DGTx<       G}BEq*GTy_      $GPJTG &
8        BIB_
$C	      "D!OziH
ODD
$      @GA"\H"uƪU"     "E_"T)	TOSBDa       BIB_ /"D@@
$      #/ #TC"      "@DIr%zTDՀ)G	 "       GAB^%/JH(DD"'Dx       @AGA?!L|	8D     !$D$#T 8A!     I T}"JEڍbJ 0c"H     !/Hm$)A`pH     <'%D?I	"JTC      #?.8 #T˥CA       'I>!JDs 'R"E?8A!       NUkTN@JRdq
"       DEKDOO@DV$Rx"      AD"_Q/$H FeGx      AB	@*EYX]QTuPC     !(1D""TBԸ)      "*c#P"8*        @!WA	}!R"8I 0      AD"I$q'@GU+GR 
      ETrHNDH BH&GE     !AO"@=L
@UF8        GAB_%/ C        GB"UH?1SB%!8~      !$BIJ]xOUH됒B U(Ix     #DOzR=@HIE$͔)'fx      #!"? "JWÄ8      !!*T(W^ !
SC<       'A.W w(P'Q
Cx<      #/W?	 #T0      @ G?	D]`pH       OPqHT$BMRBIFI	!      #' W? 'P"8*      !y$DU	"
TC      !A!OD)O3$ C%F!8B       A%OD)RGSbp     "B G)%H0c"H     $!P0> BW?8(       !BGhX_I~A"CI&q$I      !'PC        GIJ^%/{Ȁ}RD%'Rx       GIJ^%/{Ȁ}E-(@x     /Q?)D#T"8$      D$H#҈("TjU8        |/7?HT"URc      A!GY$B }%'Nx       ByD_DU6z%      @AOQ*DH9D8A       GJ"R?J*D-(     !%D/d	{ S%/Ð? B     !!' ;U BWÅ
       @A$DW_D  "UR8U!      GIUAđEYUV}PDwP      #?"75 #T%äI       GIR&/zDF$y8       GB"_ }
Gآ5fx      #Q*  "
W	C8 a     '! R #P8ɠ      #Q/?	 W?8        DEKO
AET(P@      "H? 7"D W%ä       @@A_$/O G&%      #$D?"
W%Ñ8A!     $  "TB8      >EGB0c"H     @ @$D #TҸ=     #ࢉ"$DJ$rQC8        AIJY8%/QHBF86     #??k BW?8U!      #** $#"[ąÒ8?@       G@O   G Gw      ETrHNDH "@@
$     !DBUR[(|DGȢ&G       @@AODH.T@F?A       O"(Hnǈ     '!! #PC      '$d"BW?Ñ8!     ASEEO `pH      @@AOP)CG?"      >ECQ
(#`pH     #DAKU(/DBE&/I8     @ @1W)D "_Ä8(        #?"75 'PCU       GJ"_x"~ CUG*     ~@BG_0c"H      Q+ 	D"UC"?      @@AOPQO;ȔB$0      BG9HB^)ORG GB     !OD"@?R(G&*Ry
c     P# y?T:DRP!\E8I 0     #DI"_$I UVUsQ     #B ȺȆC 8     #!.*#TC"         )D%|"Uʥ8"A     $!P0"
W%À8"       GB"A#(k8B "8     !$DD@?RJDF6Ix      '/ Ĕ#TC"      $DIbUXwB@I3        BADIGU6@        @y@_"/_~EBR      @@AOR?JH EE(9U     "($ϑ$D{!TU8I 0     #!/W?IT$VW%à      'J$J D&?@       ')/?A#T	D     !A!Oz@%0HD}=J8g       G@]x*UH@@V*u      @@A_$O~~E𪥗 U      `pHPQ     % y3D<WP"WE8D     #DOzR=DHETV/Nx      G"	?IA$`G_     !HBJ@H?)jBfqx       !+ 7?U #URʥêU      !D!_P(?DD &?8R      '.W;"	'R"	C8 a      @ORJ_	$G-$OP     ""GBDC(n;      GB"^%/{(HB@$8      A!_D ?BJCּRT=p1     #BGHH!E(u9Z B     'H_b( UUV      @ORJHHcG%F$mx     #DOzR=JHHB "8     "D^UHuUHKʡ `       GIJR?!U/B>SFW     %(O|"JQG GB     !D?wU `pH     Ux(!7	$(`pH     !CD*Xy
OHWҨB~	Q     #DOzR=B@8     "HB_`("	O)     #DOT%ORHUFDV/Dy~      GB"^%/{Ȕ"G"'Nx      y @C      B  	 Bb      @@BAd       @x$  @@B           @@B(       @H EDDAD`@     @A ADA@a       GH  @ `
        @  @@B      x	  @@B      DHIA&DI$DDI$h A     @! A)  AD`       'D'BD"DAaE       #AdP" D@Q#BD      @A?A DAAD`      y7D@"DP# DB     @ ?"D"B@B
"      G@BTBQD	Db      '
$W"DP @EA      #!D"	!B AH!B      'H #@@# D          4"DHB        @x  A@HI      #A"GP       @@?I($HG!&H       @D
WDH$ H@AA0      @ADI$GD `        @7DHR"F(P# DB      #$WI$"HDD@      GHAAQDI$EQDed@B      8QD"PDQEA       @A #@A@       CH!@D!CD!d!A     @ WH  A@HA     @A?ADD@QD`       $W%D!@_ D      B?A$DBD}`     @ @ <H! B@I#"DC      @ @ ~!B!PC        @x"
O*  A@HA     " A$H <OA       #!D!B AH      #	$WI" D P# D?         @@!BC     P D @E#D         $H! B@I     !!D?"D!B AH> D       @?"D!PC         @*T$"HHB          D J("PGA@
       #רQD"E!P       @@(H$JH	"F%      P !? ~D"DAaE       (@H?D($DP&EHA       @"D!PC        GHAADAGDAdA        $W"G!@       GHIA&DI$GD `       @IA&DIDDI$dA      @ADI$GDI$dA       @	פ @A@HA      @ADADDAdA      @@I)	@A       @x"D( @@	"&H(        !!DA  #D!PC         A y%/Jh)REiD     ! $ WE#DAQ# D?     @ @$"HD!SC%         AB  @!H#?         A7 D!@C H#D     @ @ D R"I!LC(       #$W@D"ET#HD        A7DD"DAQEA      'D6	 #@       HBZ)IR)H*IB"     @ D@$R @C 
      @  #J`H#D      #!D"D!B ^      H D! B H?        GA	i$JE0A	       @!!BHC% D      (@H?D(EP&IA       @)T 'A@HA       OJ$IOJC$ITIE        A 5 GA&"H       #  @GB      DH)@?@`?       HB HR)H*!@      !$W?  #DP# D       C$("DDD        G	"/Dh"D)R&@H      "H	$׀#D P# D?      GT*UhUET&$H       B@D(pAP	"FDH       "@	! B@Q#"D       @D!(OE!	P	       x '@H       x #D!PC       !(Q1DT  @OB       @@  @@	     #AI @B!R#DD(        @@   G!BA     P A
W,"I@I#DD     @ DD!B AH> D     @AABAG(D!b!      A D	@HF(       ! D!I$#D P# D?     @ @ A	!A@B
"     @ @(Q%0R@AHCD0 @      @@@ (  D 	       @ @A	! B@Q#"D      " B D!D(*DT)&dHB      @@@ /A!
"      #!DBD"DQ)a     ! B }/Jh)RI$I&K        @ׄ$H!B ARA
       AD 耒"@G"F       H@"DFH      'א!	   G!PC         @@$)T@BFDI       @(I ?($(H@!BUI      D A)BBQ	      E$*R(c @@      DH*@"DADDd@B      "HDA$"HD!EA      #	$פI  @GB      #$W   @@B      @!D%Ih%JG)RzI       C$O?DDIR@H       B@D( @ "F        AQ	$JAaH     #?I	!B@P# D       @	$W9  @GB      <7  B AD
      @ D6	 @C      @ @   @GB       @@@	!(PBA
JI     ! A|	/Jh)DI&@H     ! A|	 /_hEE)Ҡ&@H     "#C* 

H1$A      !AAO GD      @ @$WA"@DP(`      # W 	#B AE6       㠐C
 )J4       N($WOTJ*F       @@( B" E        @D$ CF? B      AD
( A"F? B     !B A?"+ D! A      AD ($BH	"F$        @@
$ABB       @"PDAR
       #W '@ AH
       #	$פI 'AARCDD       #$נA "$GPQ*Dd     !W? "DP# D      GЈBA!~G%D%$i	@B      GHIA&DItEQD]dA       GI%/ B!`       @xIBH     P ?H!B@I  @       $נ 'HbD      #ADD"EPUCEA      @A!/DDE!F%      "H׈D%R AJD ?      A 
%OI"B"QI      @ @  	   G!PC        @D"D
")"@D!""      @@@@O ( B@	L	       @ B|J 
?       G$?D( D@"F?B       C! P@CQ
F*     !$DWD$ "DDR#$D     ! BxQ9O"L@"      AD
($BHA     "$Q7DK "DPC       ! yW%R%RIC% D       C	$$I @        GI= ( A F 
       xP,"HDaRC$       A!D%hGQF$I       x?"HG_      FpD:H>DHBEA     "X	$פI #B B
"       $א?  @@B     '	$ ! C!RB       @@@  A@QB0@      @@@D$< EB	     !A?@ 
"      "H?I	@'B AYf      @!OBRG8BJH!      OQ)DB	"F
"       PC
/ȡ(J4!      AD ?ACA       @@ BH# A      (@H$BH!	        GO  EI&DH       G!?(COx"R	*#       BH?@h BHD      A _$(B B H      @A D?A(@I	        ! 7"|#@B 0      @G|I%/Uh DD&DH      @@@   DR@H      @@@D	耒" G!J     !A! ? ("CQ
F*      @@@ ?Q4@Q&       @@@AO<(@B A?B      @@@(I(BB> D      'AW   OJ$        BH /("D@@       C!?( Gf      #WD @AB#$0       DD {蔑)DI&JIVR       O/BN	 K/G?I      @
 G!$H      @@@D舑}"E)R@H     " B@=$D(hE TJA     "B B=$@(EEPUCJ@       G	Jh
b@!F       GA%/ C        _QD}$BUPDCE"I	!       @@( BFDI(       IH"((@G?"      AARO?I GF?A      !A! =L
@QB      " IE_IUtRUI},RDA     !A )O3($ C!B!B       @@@TODh@@DH        G|q(*GTI_       OHOA)}D! "      Gd(B@      #"7 #D!_$I        GQ? ) DFaQ        㪈C
?!䊒*H(@       G!?J(*D(      @@@D CR=      @ Nw)TEАI	 `      @@@?Jh EA	U     !$D ?RJDBIH     !D 0$?DD "R      @O*w(DOA?b	R       ?@  ? !@A A              A       @|Ȅ"  @DDȀ       |x !AAH        |@H!@@D      >AB
H*_!T%_W@       |@DA} B!B  0     ;BH?$nȪ""F*۴ E@         B   
  " B C          !     D~? 0 `   @    D~?0A(a#  @     #*";"	H% R
(A    D~?A` @    D~? o   @    D~?$a@ @    D~?0A`  @    D~?3(bC"P @    D~?2ILd?  @         D~?7|b#
6 0    D~??~b ( @    D~?7HbC$D    D~?A`  @    D~?7axD     D~?78b$"    D~??1	BcF     			     D~?7DaCPFB    D~?0!aC @    D~?7ELTd$Z"    D~?$0H`{~@    D~?2I̒g$      D~?7d&(@    D~?3$aC  @    D~?ALTo     	)	     D~?1M "    D~?A7DoFB    D~?
1!Mar+1x @    D~?A`  @    D~?`Fa    D~?"0oPFA0    D~??2	8f3xF"    D~?1l c"    D~?*2Id"*6@    D~?"6Db#*" @    D~?"7D &A0    D~?0Ag     D~?3Lg[ 0    D~?̪eS3A0    D~?E-iU[&    D~?2	̂g$YFa2    D~?2	 o@[     D~?61b#Q>    D~?ІD8,xA0 @    D~?39Lgs  0    D~?FA7\g
PĖC    D~?F3LaC
v 0    D~?A̒g$C    D~?2	̂g FA0    D~?$3d? @0    D~?&2	 o@[     II%1{Ȁ"DFMRR@h    D~?̂d;P    D~?I$    D~?2	̂gF7    D~??2	d &A3    D~?"7Le'(PG10    D~?f4A	l;?A3    D~?7eS:
ƶȰ    D~?2Qc3    D~?Fk8&0    D~?w2̪gs &C0    D~?&*7_\!0    D~?A3Ld?(1    D~?̪gF7    D~?&2	 aF7    D~?>1 gs*T     D~?1`?A3    D~?~1gB    D~?)o    D~?Aq?#آ    D~?u0k9"6    D~?AUiب&C    D~?0Q gИ&?0    D~?2	̂g[FI4     " oDFUZKw#    D~?3Ld?"2    D~&2	̂gFI0C    D~?"1|`;TfU1    D~?&0 g F    D~?0ADg ʦ    D~?FR7݉-Rj}ȦH    D~?A̐g$    D~?FB4̄iK{ ʦ    D~?&0=M*o3H@    D~?"7-hxJΎ 0    D~?O7I̒~$<Ɗ    D~?&*7,|b# 7    D~?F9aCJ[$"    D~?&4_-oDV    D~?1)oI[ӧ    D~?|`;TfU1    D~?I3?"2    D~?ʦw0̒g$B    D~?4Mo{\FR    D~?&*7,|b#?$I3    D~?ʦ0 g!&f5    D~?І_0!e"ȆD5    D~?2̪oF3    D~?4!"iEZd    @?   0 `       @   7 `       @  0A$b       @  0 `      @ 0A`      @0aHdCBP     @  "1Db#     @? D2!`~F    @?  0A`     @3oX"V	0    @ ATdDX      @@ 1!hH     @? F"1Db#     @ 1aC     @  0Db#Y     @  5	.Eb#      @ &I3Lg$     @ 0A̒d&(    @7g  0    @ F>1Db;F    @!7LIb(>     @ I2ILd>@0    @ F"1d      @$$ 3Lg  0    @ϻLdc"Y*6@    @F0A{     @ 1c#bh& 0    @ -9jd" 0    @Ȇ;Ld?"    @P2	LaC
Ȗ    @&2	̑dS) 0    @YFBc&     @C3L`c[0    @FI<G̒g$    @?A3h 0    @&w2	(aCXv0    @&*7,|`# "2    @!g &2    @&39Lgs      @!ަE2Ee(PF8    @PI3L`      @E9o$&0C    @?A3L` "2    @?$?d$$"2    @ ظF4}|$Y" 0    @¦RqM}p? "6    @?ȃ? 1 g*T     @ A3Ld?"2    @?A3aJYJҖR    @EHv$Ib#""     @qViXR     @R ?d?̧1             @     e*JQuHB      "!!	FB2HbC Q     $ 	$ B%4"H    $$H"D>"H"$hE8@     $B	%B!4B     ?$H"D"H"$h&x      $	"!4@      C$Z,ҊJ)4F      	(";,$RMI*"( @     $ ))%(%4H"H@     #舒$H"$H" 4"      (	 $JI)"*(h      H$DI%$H4DHA"     $()H4"HHA    /$BA	"RF1(B     %	>$"(4&A      $D
 dH"$4H&A      	 $ D"H"$h&x      C$B	'B)4B	      #舢$&;$"(4!     H$DI$D?4DH!!     %	$~
$(B
(E"    _$ H1PtD      Pd$?H1APtH@@@     %	$$B!5B      C$()@dD$H4DH!!    /$BI	$"B)$(B?       
 $(H4O      C$B	%B"4D
 `      $""$"(4
X4    (I!$HI!"(M!(?      $	H$>"4?       C$~	$((
(?     C$()Bd (4D      I$RII%"R/M%(H      $) $")4
(     䀔B	%J)(F      C	)G*D%
TMI)(B"$    !	$I$b,] hX     H$I$R)H4H%     @
 ( 	$KQ*DbB      C$B	%B!J	(?    #H$@	$RJ)H4F      	+	
$%A%(F!       I$D)`b !(B       CB$$"!tҠ2      A
)~J)TjT*RD      !	$ H) (- 
     "	3'B/5      C$B	%%H4J      C $(~
(D    PJA)I%"QD!8@     !	$ J*b**hX       $*(G      C	(,_h B	4
 (      	+*!%FB-1+B1#     	+J*$ E("H     $$'ȱ5(B1#     GbS"QH2APb B    @
$$"I$ B
  ?      (	 $H	?⨊*)(      #z
#?$H"VR)HX    C)E)ؤCTeB       C%B	$J5X4(H      	+"I%$E("H     SH$DI$R!B      C	$(C	
 BI-$"#     S(B$)(J	($     CB	B)B      	 $ D(H&A      C)$J)(     B
($ B
*!$
(      B'䑊F)F	'     C	$'4R H     () 
H)?B/(B      HE# IH1ILRtAH	@      	(P#J BMI("        % 
(?    #䈒%ϑ"%Ή"$5ϡ" H    RJi)ǦJꔫRJ]#      C())H4R H     C䈐$""/4"       C$D
 $*
      C$D?$"/5H?B    䁔Y*d!"t
     <(C$I-$B      	 J%$B(b8       	KD"D"+"       C	?C$G1)(B1#    $H2!uSJ|P    $}D*BduH@     CB$F!B      SH$DI$/蠴(      C$D
$)(H     B
)ĦJeCA
B?       CdR$ ,(д~
(B    $)B@	?@)]IhIF     A
(ª*[A
((@@    ("$"J*݊")M$       $	?)(     P
_B)_RJY!(     C∑$	$@$ (     	") 
x*^J*(Jd    () 
H)? !$(B    )$J,?B_DuX@a    A*ˀR 	      Y%Ii%UiU&VXB    RII)J$ RH"H@     蠤)  B     I )$e*2IJJ&0
      	@
 H-?("      
I $(~
(B     C)? !4B     #蘺% ((
(?     #?("R-O"H$    	?%" 
_  J)Xd|     C(	 ((     ∀$
/4l
 (     C _ B/4~"?     @
?
 %RFX@    $)~O b/ h( @     
 $/uUV      C	JD"B	4Zz	Db    I"$ ")
_U5TRI      CH 
/4TJ       C(%$D!4B     ȉ{*J!%z@ H@     C$(	?((      )?(VX@`    I!+?<$*^J$&!    KI$ 	*?A8R	(`     $"JI? ( JXQb<     	 BWd)!$     CIs15""a     C))S	*Dd
NH>(@     C褤B $
/蠴
      #ޙ
*_f H- 
H      #IO @%RM$HI     IJ(~CҥTF*"      C%~" +~
WP~
h$     	W9VP)H      C$D
 $ *H*     C$DI?((H     I)DkGUeF[UiFX@    A	[
5 A?
!     	DlUiTZ@	 
      C$ hB_ 5
T    PJJeΒR{ J@     	H @I4*(d}     CHb	䐋) U`      @"Ģ	"(|Adq)I     #ĉ{{R{(Jag     	D-?JRJu/P5?h}dU       @B ?BF@+ #1A        C!?>%PA¥E2RDD(        C%_D?>%PA¥E2RDT(      	 "           A BB      	  @  A D pp     	  @"    @      	 " _B @| p      # /Q	b#A(Q?@      (PHR?H AAI @      DAI@ B B      ?@ ABOd$I $I       PR 9
R"?H 
@$I  @      P'Y	?$IA$I B@     P"R?HHB@)Ƞ @      P'Y??)RA$I @     	  @"* #0A      ?$	,@D	DA      A   @_! B        A b~#DAHQ@@      P@9R%HJ*CԄ _ @     	 " _B @ȑ"DH     P(RY?*HTRB  @      d=HI!C?@      P'Y?"H|B$  @      P@YR?H
@) @      $>~"@ODC      P@GRHHBA)_ @      P@'YR?HDB$I "@     P '9?H!RB) @     ($HLߒ$$H~!"BD       (I%K܉)ߠ]HU"D/PA       P'R?H%@I_@     @ A?FBG	?@      D{Q"CO	?HI $_䈑F     H&Kߒ$?~@A D pp     ! (@@a       (@I\_$HE"GԄ/ҐB      P YHBB)_ @     I)$I% ̈$I$I'H/       QYR?|HI@ A@      	DD H BEz     0T)eOQ(}DE       )HSli$H` N$`      PA/
?H/)*!      "(DK)ߤH BOȐ      :BCQAa      ? $H~%D     1RCkZRJRJR)O{Є!     ?
d~!H8        A$E$	%)$H"      ?@ \  ?     (       ?@ \  ?          ?@ \   	  ! @       ?@ \    + @      ?@ \  ?3N     ?@ \  |  ?@     ?@ \   " 8 p     ?@ \  `3! B(      ?@ \   ?A(0      ?@ \  ?         ?@ \  ?@ AL     ?@ \    A D     ?@ \   ?D@Pp     ?@ \@`d3   `       ?@ \  ?B!!      ?@ \           ?@ \ @!~@     ?@ \  @HC      ?@ \  ?BC @@     ?@ \          ?@ \    D@I @      ?@ \ (  0     ?@ \  $H(1DD     ?@ \   $BH      ?@ \ @@ D      ?@ \ AC
$     ?@ \ R$DI      ?@ \	 !      ?@  @?         ?@ \ |<@B 7     ?@ \  ?@  ĉC     ?@ \ RG$K      ?@ \ @      ?@ \   "D?     ?@@  <     ?@ 'B B|@     ?@ \@a      ?@ \ ?A<     ?@ \ ||"      ?@ \  '!"y     ?@ \ A ! _ A        GHh(  ! A      ?@ \ 8@ CD     ?@ \@A ?       !j5 T W$B_Đ     ?@ \  BY$B     ?@ \ O     ?@ \ 	P NR	     ?@ \@Pp     ?@ \ ~ HbB	E&1     ?@ \  {zJRB     ?@ \  cd$?B     ?@ \  {I*U$Ow      ?@ \  >D 	f     ?@ \H@DB	     ?@ \Q%Q<      ?@ \ <I-ʄ      ?@ \ }*'ֈRE3     ?IAA !      ?@ "HD!B     ?@   %T&9     ?@ \"	`J$H0     ?@  ?~Ds%     ?@ ?~@!E%JH     ?@ ?"H|! FO      ?@ \     ?@ "4ň      ?IAGB!D     ?IADr'D DCT      ?IAD"HA GJ     ?@  $?PDWP@ALa?     ?@ >"J     ?I@DDz AC}	     ?@ \  |u
"p|     ?@~%DHp$O
!       @C)?ꄄ?*$PBI(      ?@ >$ C#r#     ?@_A     ?IA@?B$I_I$$D     ?D@">DJ'D     ?@ \ ~O     ?@ \EQ/~D	5Q     ?@$?H?       C	/~*$hR+!     ?IQ_>%H@@     ?F 21HW! Ƅ1      ?@~D(p!"|     ?A0 (     ?IAGB! )?     ?IAO /D8Ҫ	 _     ?@ \$H~%D     ?IAB?A y )^~      (@* )A       E/ꂄ*TpW	 ?      ?@ ?A$ψ     ?@ \  ;UP "
J      B?D*JpI)?g     ?@ I.I$ ?     ?D  G).bj'H	     ?IQO!|	(y`$     ?E	??BH	# _     ?A?B\D C     ?B)B(}	J*     ?IB"  || #EO>>       ? " D@       ?         !'B R|IB"U$     @   |" GU        C P	C%% D        @O " I	G! E        C'ʂ?(|PB"(UC      @ G R|$(Q      @ G? }I/H($       #'  }	"UD       #B ?|!z$O      #Hg }I'H($      ! ?~ $}h"WΨU!     @D >>@ "     " x"  > @      ? @D       Ac! ~|yH@        	$HH!"BD         $HH! B        AC/U^]JU
UTJ?`     ?CP&02 /K(     !UPUBuER0R@C      BI]UW? A     ?Q) BJ)I<IG      AA  @!B  @      " DC$I '@
     ( S!FC"*(TP@A	     " DA$I  G     " D!
_ԤIR$ O!B%     " DC!_IBD ! B     "D#A$I  G       ( PD$*HT BG	"DC      ( PB#B(1*"TdA71B 
     ( PCBQ+T @'A     "DߤIH!'@"     (PPAD"2*HTBG	"D#@     ( S!BC	*TB'A      ( SI#B$I*U D" D?      (J	8$GUAU$@D!     ( WDC'*BUDDA!E     ( PCO"$_HURF/" DB     ( PC_*TpPB!BDD     ( Q!DC"*DTB'A      ( PD#B?*BTC!        ( PCE#*T @O     ((QSEC**TTPB?      P#BJ~I$Oޒ$HB     ( J8DAU"UB!     (P#AO""D*UDDAE
A     (P{ATpB!"     (S!BC9B*UAW"Ġ     (@PD#B^%*JTBWA"D      ( PCOB$I*U$@A	     ( SA?HURF/" DB     ( JI9$DIU%QcDA     ( PCABCB _?* T B!B?B     (PPAJB*,TAG	"DD     ( PC_* T D!B      ( PCA T @C          "?     (@PC_"+TD'
"	     ( QD#!*~THBg0@     |!C(_ a C ?     ( PCA? * U@@!"     (R#ADd*HTPB!(      (P;A?*DUB'A"     ( QD#B * U@@      (QHC?I*U$AG	DD     ( SA$I*U$HG
,	     (P?A" *UBA1	     #J!D(P@I"     (Q'IB ATB"D"B     ( "8@AUDDB     ( P#AO"J"*T @      ( P#@
 *T  C!B?B     ( PGEC$ UDB      ( J*8 GUAUuQUtDDB     ( PD"$QTB'      ( P#@?* T@G     (QH"_UDAQ"D     (Q!E_(qT$JWB     (HR!_)^*U@O
$     ( S!A
_%*V0@O
$     #@""?     ( Pc!D# ?*BTA'A	"     P"G%~T	WȢD$I     (PA_
*UTDB      ( SOB? *V"DEO D     PꊎW}~TR"$DH"     ~ H|a'B	E&  "?     (QH"?_ T@">D     P#"U} !`	?      (QAKBj_*UTFG&R     ( QD#!*~T @X	     (HPBC?* TJ'*H     ( Q!DC"*|T EWB*      (QDB*gTC"D?A     PG>H"? E     (QDC
"*V @B      PG T%D$I     (WD|*T@?
"	     x|9PI
#f "?     @? !""?     ( SOB?**TWPB     Q ?J=DJT
O9D     ( RK_""*DT@@      ( S_B?*U$A:	     ( SO *UDB?"     (S_.8T DB.A     (W!@*+TPG?     Q$KꪝwDU~Ԓ WȢ(IH     P@C?J~@ Udʀ     ( WOB?I+T DB? 	     (Q!_B2_U| EH
"     (T#@*UDG"      (WDd*U@G?	     ( J9GȕUU!w FD     P *TE$$G@     ( WOߔUDB?"     (HS!@)_RTDG)DE     P"?J>) /J     P"%${#"$NH          @         
_)~%HA/B"     ( I!~4PBE      !A !>~qBOB     A Bb?           AA"  | ! E>D      #Q?A( SI     !%I ߠA~G/B"B       @C!?>BD C	        !~I`DԂ0@       !! ~|@G      !!!
_%"|  !ODD      #	!"}"I?      Q@
! ~~!@ʂ$      | πxAC      !$O"}$#     D "/@?"}%H	/D$C     #(@"}"8/D     H "O	|!)%D      !!$O""|| #PO       A/!~QPD      !I ߕ!*~PG     D!
!~T@      ! ?"J| %ODR      GIUё}EWD}PED     H#! )_R|#@ϩDE     !A ߪ~DCOς
"       ?   	@"        	 $H)!'BI4DH      P@'>> H)CQEA       @@?>D @       |@" HA        A'B>"| Q*UE*       C	D>!9(P% H     @" D  @" D ?      CA   @ "      QA9$PH!"~A      J1@~ P?      "P# Ĉ9$PH!"~A     
UY@~ P?          ?   @@       'B? }$IR"      @A ?E@|ETB_E       G@DD@"}H_!D!       !HI%|%KI(_?      @ DU?|A"        $O  }AB       B'"D*|JD!GȑA        $G ?A|O"A       $A$ y$C	"       P!A? }T9PHA"      !!@g
AO      GH/{D       D#PDO2?H|!_舟"      C?B D      @A B "D      AAB
Ђ "         AAĐ!~$I4$O	 !       C B "t       P_ʠA*UT%_ʑ!A     |  @BB!B@      @ A!H!AA       @AВ!$~H"t%	 !      @A O"t      ~! (JP-BT	J儊@     (H (R?B 	D@      #@ A"ȑ A      ; $I$H$"A       G !~$I,$oȉ !      | _Є
B!B@     |   E?B(Qg䄐@     (H (P?B$I'D@      #@ʠA*UD!_A      > *
꠪H      !"~
PBHP      #PϠA#D"AA       CH?AD)"$ J "      #"? A $"A     @A J (Q	D      |!HB|!B@      !@Gϐ!~0qR)	!      #"? A ($_ϑA       ! G !A~"ȉ!!       B	O!~$I"D!	!@       AB!O!~D$$Oȉ!"       A	')DRR"@
D"      !@G! ~ $$Oω!       ;ߠA}($_ϑA    @$~
(_BD)~  @    A	$
*H)  @@    **(ꈪ" "       G >~	%D!OI0!      " (/蠢H     D WhDPBje$P@     B I COĐ!~I$"Oȉ!B      (AQ~UD(	!     ( QAA
͐!~lUD"ɉ!@       C P~"!/I!@      @HH?>B w 	 !       Aa(>$DH""GȀ
B"      !C	O!`~$I$"Oȉ!B       G H>]E!!' J@"      =A	/ʐ!~	$"O!     H@"$\R>D       !@C~(D"	!L     @ B/Ѐ!>~ B%/I!     ~$ H$BH" |        QA ~ }"/       PA~$/      !PGHJ?B!B@      @G!I~ QD"ɉ!@      @G!I~|It"/IB      Aq ~Ud(O	!`      !@ФI~!)/	!      @G!I~ qD"ɉ!@      H! 1$DK?      1@a7
>UDQ%Wˠ< "      %AGԈ>$D~""G
"      B	'>DPB" @"      !@Gʐ!*~!)/	!      PDȐ~R"ĉ@    $֊)/J-(@      B/А!/~RJ%/I$     ~!$I("|8K        C H*B  
"     @ B/Ј!"~x!!ʉ$      !A!/א!~!R%<!       AB!~~!B!	!     ~!$I("|*C(       >D @>D^B%)         !Dǐ!T~Q$Oȉ!"     T"wO?B 	'D@      AP"~HD'I#!8     $ @O?>BTB@      |##DW_B}Z(B1     |!PHJ?B%
Z$P@     %HD~ T*I*C      AG$>RD!$'Ȁ"
"     |!HH?B(U	G@       B	W(Q D%@ "      $C ?AD"G<
 "     ~! K_/D|U+P      ~D ptJ*|qS      *((E       !@Ȑ!"~|$/	!A     " D!D"}I E!     |!ЂPP?"B|	'D@     %PGʐ ~%"ĉ!@     w~"!TTAbb|Ĉ3`8      P#W_Ѐ?>B B$@      AGD(j!WĀ5
"     " D!#B߈~"D      <D!BSO~=*J薵(B)      !@Ȑ"~d"I!D     |!'B B|	DP@     ( IFAВ!$~~"$I*       B	)>D}%ʀ'"      A'P!B~H
       PAȀ >wDU"'@JD"      O|'#T_~"}*(21      G/P~ $Oω !     >DE!ZπEP
Ȁ     "|#S_Ȁ!|#p      DH?D$      #HwBDUꤕP@     ~\ L?BC?@      | #R(U"}T
?     ) PC H>HE$ˠJ?     B|!<Ȁ}Ί;X=Q     " DAwʨ	>?D"#Ā"      D"!	H	  @     @A B$I$"HE      AABJP$E"       y @A B$I$"HE       C B$I$"Hu       P_ʠI*U$IT%E
!A      @ I!$JJ!AA     @A OI$"Hu      | @ E%J(Q(a     ~A(JR-JT)J      #@ʠI*U$HD!EA      9$JH)"RE$		"!     )P@/PP$I%$JH"H     (H@(R%J )D        %J$I(Q-$c !     AA_I!$BH       !xϐ%"JD)R$	 !      #"? I $
H$"A       CH?AT)R"$PA     ~  DHJU *~T!PA@^P       !@% J )R%$C!        PJ("P!#I!A      #DI*UH=R
       !"/% J )R%$C!       I/Ѐ%J
(Qe$	I*!	     @ /Ѐ%JR)RT"!A        >J	%(VE!CI0!    A	$
*JI)(( @@      #@  $IT(EAa      Aa(*$THQ"BA      @ II$rHJ"	AA      PA*TR"ĐA     @ /Ѐ%>J (BR%#I!     @ "_ǠIq$"K#
$A	     ~!$I**T8RI      >D @
*T^PD	      }PD>TRʄ*JjJ*P@     T"s_ʀ@T	P@"BB       $BI*TURR
Q!      AG$*RT!R"A      B	Ȉ**T(S"DA     ~D Dz*T"UQR(      $ IA! *UJVک$PA     G|'ʑ*|ʑ*P$H`     ~D ptJ*TqQQDQB      ~!A
 *TPA       AGH"*xT WA      GרU T	S" A     ~#GA
 *RR      ]Ib"?BC?@     " DAwʨ	*?TȪQ"A     ?@xB
J/R)U        E(W*UP*E	$`      4/UA>R      "ĈߪUHJ+	$`     ހRFKQ*_TRD0      "uĈ*UTR*I$`      @l'J*U*}HUH`        CN*"UUQ/\Eɐ      "ĈתUj**	$`      "W*URz*	$`      
dWHUJVQ*0 ?      "E*UTR*	$`       Aj
/D}\UCH`      h(_*}|UdH`     |5%Ϩ_>Q&$0      RiGJ0D*}TQT$H`     |5ϠI>Q`Ir$0      o
/Q*}yUCI
`      |j' }~UUKTHH`     \D(}(UE_K؁      YmgRJ>TP¢E8O ?      T@(} }T*C     }Q2#B
ɪ||PH`     }	Ҏ'J>U>URQb       @yRjZJ>U$T  ?     J
n+TDU>ER/Qo      }܈5SeUJ*T}TAQ"`     }7_ʀ>* }QT`     QeWJ *>| PBY( Ȁ     }7s]ʊ*}IW`      #I\Ph}%UQ"ā      (AbH>6THQ"E)OQ(?       IiGE
A>DVR""/ ?       AjH|TR%& ?      U"DNU~T-mQ%LQdA     }މ	7;%]*$|ԪQ"`     D U;T~QE_     !\@}	O EGϊ_     ?@ ABER!E I"T       }!&͊%*TD	  (?        ~ yQQ)DR((P       @($oI=*BT
#@@P        'H'@2U"E$JHQJQR     |$Dύ>*DUB$D (?       }I)$̈́*UBܑ  (?        Y-dRI*T"DXH@P      $DH6(TPCbUHYA      @yR*ZI*U$/@@P      Q%TJ *>T B*Y0 Ȁ     !!DDI[	*T$*T Ā       I)DE	A*DV"*b(@P       H(!"BDH$I!"HB       ;2SM)QURWʊU)        HVoߪjɓ      @   $ D @             Q?@ B     )~>"> ($*2       @(	""R      Q B($"H|!BRDQL       S("| A@AB      @P("P|ABDQ     8S("|@AB%DL       P@("| A@AB       @@ABJHQR|"1@@     @
$IKQ|IDJ$@       @/"*>TDQ*Y       Pp("| A@AB       x!"D BA!      " $ /L?A      @ '(>D$I$J*       @P(>D C      $()>RDQ
 A       P@("(|PA"BD        CABGQ"e*'ID)a@     @ #(_H>D BA!        '!>D! B
        @"$AD $J? B     @Q (" |@ABD     @ @ E >ER	$J        Q"OϨ""D|B"DEH        AB"DJO@| $H1@      ! y2%?JR)JRjD!     QD"^/?L?A        @A$E0_Q> E! $!      Ph}"}DR@%@L     @S"OިJ"}QDBH%PL      ! '2>E$I$J       RH/h"}$IDI%RL     !$E(A>DB
A!     @ 9%(>DD"D/@      x!">D $J      @ @/ A?DB
"!      PBOh " |B"DEH"     P ┏($#|!BBDQ     P A*-_>,DB*YD      Rh]"}TEH%PLB     A C)!?L?A       P/hU"}TEH%PLB      ?/L?A      A "f?H?A       Q"OϨ""||BrOE@     ?B l&$OA?F!      @QB(D#}!DBHQD     @ @/$(>QE1BD0@      #Jf?L?A        @!"@D! 
(        <!1? >ED
1!     !Q$	$<JHbZ     ( H!"I>EIJI       P"(Q"<|EBAEA      # /ߐ!>BD$        @!"I>EADJY       PBOh"| aBI%bL      ha#%8?(D
J       Р&E2_ D	$ʐ% D      #(%?ߠA>D %Rđ
Yd      #)%?ߤI>D DJY      !$%*_ D@$J%      H y/"QDH$Y      '	*U_)RH JK)"     D !.(">DE"D"      @ $%0>E:*Y       QOĨ" | B"DEH"       @"(E$*Y       !D)%%>D ID
A!     @D?L?A       !'( ?E@I`     8!/'I>D@"D
        SOϨ""||CD%HL!      @Q@Bo("D}IC"XC      '"?ߪU>ETY 
A!      '!?>EI      !<I.)?$ERJ*Y
"       $%/ߐ?> EA 
        z!5I$0`?X     @ ' >RE8RJYT      !0LA=M$$K E      !x(EdH<I!%Q       ROߨ#}$DO@L      QOϨ"@|IRDRL"       @"
$HDB!      !%%/ߔ)>~D B1 A      !')_@~DJ% D      SOh>"D|CDE@      " $Q$+>DR*        SҨJ"} E"JET     ( H!?ߤ>EI "􈊉      DHP(>"| @JUL      ! (/~>$EhTY!       )%2_I>E$ʤY     @'|I4%?UR< KE+DZ     "X)%:ߤI>D "
"!     #()_>E:*Y       @!">BE򊤕J       !!$E/">|D RJ      !$E A>E 
A!      "H? ?">DDA 
      |Q"(U"| B"BB      #/2_*>TGQ
       '3$_H= JU
T@        /߄ D|IJ      !$E/>EAʄ      H"*|=JT	RDJ!q      #/" >EJ"       'I>!JRs H"DA!      !H K        '/ A>D J      < Ce`?X      '/ ҀH K      $"H=u_UR뼒O!RIZ       @!?!<I} D      "H? ?">DDA     B/H`?X     |#π/f?X      "x?K	RZ%      GH/{D`?X     #/0?QRD J        #$E?>E	$ʑA!     '!!?߄ D J      '!? ?? =H@ERĵKZ      ?Q) Bj)GY_!~A     @ @2E?I=JHJh$"     $ 0%?D=I!$R      '._;"=H"K1 a      'I2?!U=/O=	RJW     (/|!=1RQJKB!     @/!?ҪIBbR       @I  @C        @ A	   @@A        CAQ	"(D!B A&BH       @D	 ?'@"&H       CAD	(I A$I	&H%       @@
I $"HG!&H      A `	   !@! BH      @xB	   @@!       @xB	   @A"A      A 
  D@"F       @8P	?Q!DBPEA      @@HI H  A@HA      P@^	( D@&H      A R	D !$BH)"F%       A $JE!C	B& H?        OG  H"$"H(@       OIE%$  II)$Ē       @@DPI  !B("F         G!DP?(B!B!       A 
5  OA&"H       @JH/H"R)H*!@       @@ADPI@`   C("F        A D
 P!DB!~       @@@@	(A AA
"      @@@
 (Q!E0ABFH0 @     !A! "D O!B!       @@B	耒!@ (         G_! B!@ !$B 	      AQI	$J AaH       @@ADPI_h#@@	"&H(        @x$J% @ #A!
b      @@!$ h""BA!
b       C$_$I  G%BFDH        C$_ A  B$Q*Hd      BJP"9ȁ*?      @@@J? B!B F        @@
I!"G!  	       @@$_  !B)"F
"       C$RI!C/F E       F\zDh  GB6     ! CAH BDy0        @@B	 #@FR     !B Ȅ
 "G"      (@H_$!BH!	       @G|IԔ*U` #DD&DH     "B !#I!!	      ADO(!@@     #DD !R$O     "E!Ԅ	$TOQ>BĆa       GI
J`s  G!BA      @O!Ą⪑!OAbR      C @?@!      !A@	B%K!/PP      DH$GtERSDL_	!      p?  H  @@     AGAI}|H#DHJ#     PA'H>|IDQ"A      B!G HP|QJ(_G      @@@A 	H}R$LH"       @G?@|!B("      xG!G H|AB("       @AGAGDU>H|A$PH"     HA'q	H|H#tD"$     HAU|H$B_      @G
$>HT|DO_      DG? H~"EK__"     @CP?HB|$R"     @?I|TCUH_"(      B'A"H|| SUH      y"¤O $̂a      @A?H}	$_ȑA#       GLH~}HH"B     I #)/>>     ?B RJX (       A'I
? U"EUH
     C?)$RUIU$      |!B@	 U"ET	         DH%R	ZjR      ! C$RUJQA      9!$"ET0AC        A ֒9$~jU0PE       E TR
VUZAPA     ?B  $P        ! C?$"~DQJEA       #VUZB     aA		? UJU(
@      >EA)R UFU@      ~"BG	?"ETҪT)      ! DO$RUJAQ@       ! COȒ$"~DRPEA     ?@?I#B! @      ! CR$~(RQJIE"       /RBU
P@      H!$(~PER0RE#      E SDOR FUTI!     @ D	_Ȥ #Q*@D      ! C$
ETQA       A $~P%RJTI     ~|B'I?(QT%RH(B@     }'Ҋ%D>(QU(P        ! C)$RETQA      9!$?~H%RJI      ~
DR*UUvT("B!       ! C/Ғ$$~~JUJeQA     ~%J@)R? UFU
       }
%QI#  ?D $     |!BBI? U"ET	          #DR
~UZAO     >AAR U~U
         $%TJ_     ( L("  " H       A /RVUZ0AE     >"@G
 U%TH       <IA'	? UJU(
@       @đ"D@'  RK      ! DOR$ 
%UJA       ! DOR$ "T*H        CO JU*PO      H!#Db$D~RTJQ*H       A@OI(}$PEA       #R
%UJI!       #/Ē	$T~fQ
0TEG        #/R$bU0AG       @A+(Z}	IRҥEJ0E      ~ EWR*UU^T("      ~ EWR*UU֪QH$"     }(|  @? $Ĕ @       䄏$$%RJQ"      P!CO$,~ER0RED     ~!BA') U~%TH       % K)~RURQEE     Ao ?D $     ~
E)R.UUVT("B!       ! C/RvUZAE       S/TJ_       !C$~(RQJIE!       A$$(~PER0RE#     ~IA'	? UJW@        !@C(||EQEA       ! CȒ ~DQJE      !C$~rRPRE     ~JD)$IUNT("       @!D$D%TJQ>D      %BK	/T[|	%RJI0E@      J%(KRIP       *O?(TPUJJKC	!     ~QAGR*UUިQH""      ~	G	 ]UVT("B       !#$I~"R0b     ~	@' TQH!a      H!ʒ$)~TMRREK        !#$Oߒ!$B~FTʩQ1A     >EA  ? UTH        ! DOR$~"eR0bE     >EA	 UFU
 @       !#В!$B~%RJQE"      ! $$Q~<UJEA      WĪ	$PJeDB      !#Ғ?$ WP@
       ! C$"TD      A!$?~"PH      ~	CI ?TR)"       P"?$H~ET_ @     ~%JE) ]UVT("BA       !BGJ__hPBOQ       "E!tOȒ$"~R*PHB     ~	GI?? U&T)"B#      @#/R(~FUZ@E      ! Cʒ$*~"R0B       !#ϒ $ ~"ER0RE     ~|RCI
?T"R)"        A'~RWJA
      $I!$O	$JWH!      !BGJ_Dh~PPBTQC       (Q t
$w~(RWzE
     ~@2?U&P!B       Q!$~&PEA     ~	D'?UVW "      ~QGR?TJSH!`     ~ H|a'B	E& ?D $      !BQ%}TU_UVQP      @!TR%~J
T0H       @AG/@(}UZJE(C      A# TJ}
UTUREJ     }*Gʪ(YRHR      A!$Ȓ$ ~"ESB?       "ܪOP"T0       !#?~BWPH"       B#%/x}*TU^EJ     ~	GI?? TBU*      A#R?~eRPRET     }ܢ' @>)WRHPH      (%"$Q~<UJEA      !#TOВ@|~ BQ
I!     |*D? Q¥HRBB      }IJ$>U
T       ~|CI
?AUVU("B!      BI@O(}$P      A#/$I~BRڥR$      P-"KoR$~R*B
c      D	 ?&0 
      
hPUNEJQDC     C$)KYJ!  B$bK       "+TR) ~&MW0RE?A       !#O?Q~QPHD     $Q'B!&IA'I R       O$|~JPEA      OE A(}T     ~!D$?UVUX("      ~|B'?A!USH!      ~BE)(_UZVX(       @#RJHUZHE%     }I"
ɾITB"        !G/@(}"UUVpE3      OE(}AW_Є       @#ABB
HK      !#ʒ.~PEA       !#D*U~-WjIE#     }ޠJW*T>~	S(HB!      }I'"> _RBB       !D$"~|PB     !  D"      @! _"DHK      A!OR;~(RPI0     ~QEW ?>UER)"        G%ϱU(}TPUPER     D/TO}w
UVWx       ~%D
?UTP/     A?TQ
A  B$bK      Q C/ҒT$~VUڪWE C       y@/y(} 
QVeR?       D!ʒ$~TPB      %RO T\*      !_?QUFQUB      !B
?!(P~_D      !J
$Ђj      
/A(0T*!     	'=LP
UGJ     ~QEW
?U&T)"      ~UGw	$UE_!       DI /.I~R*H"     ~QEW ?"}TP/       .8 KQ.A      ւ' }(
ڢ5_jB       AACEOT ( }
URHU        TSQڱ       /R*~ SPO      $!@("B=c HK     }DPPB       PCS(| 	PJ       C >~ [_      AB)(POQ?"     ]GUO|RFȄ     "ȊA(VVP:T)     @ Oϐ?<BBHK      A$_~(Q~WʠU     $QG?*}
AW_E       t$~DWYEY!      2Oz(?IP$%Oꈑ"     B(kP }NB'I     "G<%ҥ~}Z BB     #G1DP_n;      '%?{(PHBi
$     Қ5JhQPM_1[g     HK??HH!#K       @  @        | $"HD(P4C(       @!B iG(QA     䐒RII%$_I$yIE$E      !@ I&Y?$
ht)R J?      $J$%D(:S, P?       |HI!$j(PS@      	!BA	@>	qG"B 
"	      C?H"_?9 D     ""DD"D9"$@H        !@ OI$I>@r#F 
B	     %TRUIU%WAetPQA        ""HDaB>(
Pt'(DP
J       J0_I$yID       BJ0D      A@ _	>@p!B 
       !  BO)@ >D	@s$H J     ( L( @A       ?E(~ @?       	""B	ɂ8C?B       !@!DDI  
t($P@       "^	5? rG$Q J     HE ?@ (      $RII%'AITu>XA@      	x'A	>Dr'$DH
B	      ($RHı	RT @!B 
       #HD	>Pw(DP
~      !  BO	>|Dq,DA 
      !"@	>$Hq'"DD
"     ?  @@ O
 	 >^B      @%*J^
t)HR%JD      !@'I$$> 	 t/@@
      !@!BB  DHt%DH
       A@'@
 @w!B 
     	!@$ 8!@Aa      A""H$ R">B	v'2B 
b      /DD">D	r'?@ 
!      !@'B 
Pt/DR

     I$OI$8㒢) b%       Q"G	R?>H	rG$I  @      A@/PI > @r%$R J(       !@'A$>$
Hu-dR@
      A"O	">BpG#X@
	      A@'H)?@>Tz7JJ(C     C$)KYJ!?        !bRA?} @w!E 
A	     I""B	ɂ:K/B%      ~ H|a'B	E&  @  O       @! _"D A         CReIU& yE$A      D ?&B0       ! 'H)?@>"Tu)V`J3     'JI?  ?%@RETD      I'I$" 8!REDD       !'I$1U>Tp U@JR     O/A
0T !     O<M<2<S@)       0"JLt	?I>$r'/H"     @/Qk> r.kJ'I      !@J;"=&_A1
a       ~@	 ?@@      @_ >$DH#THUA      | BR4"X|!J$Q*Ҁ       @D >DDHUA     |AЂD| A!B
      |AЂD| A!B
      ?B(I(Q._!~ A!IA      @A@ >HD!CI(UC      |"Op@"B|B!E
       AE $DH#DD"$      @%P_ޠ>JD	SDH(U       !CI?Ҡ>~DIDIQ%A      QEJ`>TDQDJU:       A_ >TE$IB$      =äI >D!CDHU5E       A_ >D	$HH?$B       !CBĠ>|DEDA$       !C@ȠDDDA$A      9H>@DI$JHI%        AH࠾ G@H
$      @EU >DE#DH>$D      =Q?Ҡ>EDC1%     }AЂPd"}$%D
À      D >$E#DD"$       I?ाQD#@$     |QҢU>"}A%DRj       @A%D >D H>$D      IJ_Ԡ>D T_U@      JਾEEJP%       I_ >D #DM$      %O`ID%DH	$       !OР> ETWUB       !D_ QDBH$D       AD>D!CI?@      #Bߠ>D@a        !Dߠ> D	$JH$      @AA >~D!C@A%       !ET EHkDT$$     |EҪ?B
""}A"!LJ8        R_>E$H%       A_ >DDyE%$     |UҪ_H}|U!OR       H#_ D#D"$      L>DyJHP%      PSU_>D H        !O >~EHH$B       +Dߠ>~DE$       }R? ȾETSP*           $I      ?@C g  0        #@ $I%RZQ`À       !'Ȕ( PRUJU`C        (  
eJWWDCB      H"pGH_!BQ*WHC      | *U"QʥWR`C     ?@! DA	 $ H `     >@0 #`  ?A H     >@0 #` " DL     >@0 #``G@"$D      >@0 #`  (0      >@0 #` T$F`     ?@` $A  !@     >@0 #`  _     >@0 #` ( F ?     >@0 #`        ?@` $A   # 
      >@0 #`  Dp     >@0 #` @A4     >@0 #`  !@     >@0 #` "!tx>     >@0 #`#  Dp     ?@` $A ?BO
     >@0 #`  H"|      ?@` $A @!~@     >@0 #` "DpO     >@0 #`  ""p     ?@` $A "$     >@0 #` 	*     ?@` $A  ?@?A       >@0 #`"C     >@0 #`"     >@0 #`Ak      ?@` $A   ~      ?@` $A        ?@3g 0c8@      >@0 #`" DAIDTG @     ?@` $A	 !      >@0 #` A") .     ?@3g?0@B0     >@0 #`  BG
$     ?@` $A        ?@` $A  "	B!     ?@` $A    ̈%     ?@` $A  >|D#HB     >@0 #`  B'#$+%~     ?@3g _A!@      ?@3g"H?@ALa     ?@` $A #Hࠂ ><     ?@3g   ?A3     ?@3g  |!B$     ?@3g @P!?@     >@0 #` HO!F     ?@` $AH%#B%"     >@0 #` @GIA     ?@3g ! @q B     ?@3g@?	#$&bC     ?@3g     D@     ?@3g @ @?@#?@      ?@3g 
 G?     ?@3g?  `     ?@3g%H Ŏ0       ?@3g$Ja      ?@3g   !"'|     ?@3g(I$       ?@3g   aG _ `D     ?@3g @$#HJBR)II     ?@3g  ""||>$DH$f     ?@3gȈ""||	?A$I      ?@3g H	$$ F     ?@` $A ?Hc     ?@` $A@`UXDH     ?@3g  !( D@     ?@3g  @G      ?@3gBB?H!"C)II     ?@3g  ?D>"3    !b  `  ` X     !baA$oX    !b o$dђX     !b b!"oAX     !bdAaA&      FA o	$&JL!1n     FA g=S%&xL2tK     FA Q~[Eb#     FA Q~[Eb#     FA o		̤2m$    $*J)@G@?     "|#꒤Q  ?JIH!C     "	x#֤  ?JIH!C         ?H$$H"       ? ?D "R!      $A$IU&JO)2RdC     >|!Vl`?    Ȉ      PB?    Ȉ       )$O Q=TII!E$CA      !+TJ@) U&JO)2RdA     }#@H   Ȉ       ADO>UI2Id     q*r>9¨C     Ȉ        B?
 $JA P@      	"HOB$" hdB	       !H_$D PhAeBI       9JR$H i!dB        !IDORJ$( PheB	       IDJ$!h!dB         	 @?!@!% H     (@IB*"|T!Qi$	 a     @?J/褾""Y~) $A      !BK8 jId	      @%BI%*D|!j	 a     ?A 
c@(_!_c"?      HQ$D if"I	       CB_ϪU*}"h a     @)JAU*|!Yi	 a     ( IK_H i!fB      $ II$OI$$ Hid       CeUOQ*}"h$ a     #C_?fjջfDEXUJ S       G#J %$
H     @_ϊ*} aj)
a     @@ARO*}"Qk a      CBUO *|| #i$	 a     BI%_ϕ*T|#o	a      AcD(_!_"?     B1zU%*|!h	 a      @}R/x}(#TiD a     !C	_߀>R@P&*     ?Q) BJ)O!?H     B*B|K?H@JL ?        AB?" "$Da       @!/T~"EH5Pj        @A!)~PICQ*      @P%RI%$_ Tb      @!)~(QH@UH        @ )~!HCB*      @yA	*}AP5Dj      @0T~%H _        @ (O)~~J 5Pj       C""~$AH D*        P@BD	/*H|RC	5Rj@       A"H)"~DI@	S* !      @!B OTH~)H@ B* `       @!B')$~HI#PQj       @A/)T~QK5Dj      @@#T%~J%LK5Hj       @!B!HȔ$~HI#@Q*       @!B T~(QH@Ij      @9H	Q*}DQTE*A       A Ԕ)(~PIC5Rj      A!B$/Ҕ)L~!JC5Zj      ?BDED      @@A/)D~IC J*        C!ǔ)"~D	K@ A*       @!B#/T?~BI P*        GA	I*}$ITD*        @!B/)>~DI UH       @Q!HOȔ~$IH UH       @!B'/TU~J5PjB      H@B	*(|PQC5Rj      A!BD	 *@|R#@Q*       @9!ǔ)~ }O 5Dj       @ (Oޔ)J~)K U@        RI%RUI}%WR_ "        @AO*| AQ@Uꠀ      D@"(Ȕ)"~DI UH "       CB )R"EH @*       @ABB}	P#@D*        @!B'/Д)"~HI5Hj      P@"B	*>|IR@E* A       A
$/TI~UJ05PjA       C!OԔ)AH D*       P@BOO*}PQKR       @" /Ĕ)T~eL 5Tjǀ     "
!.@H       @AO+|pQR UDj       @?/T~JU)_        QE)TK(_ !      @!'/TA~J5PjA      @!B TI~JK	5RjA      @"')!~HC U_ꐀ      @!BO/D*}DT@E*A      @!B )~J5PjA       @AI	Ϥ*| P D*       @A"ДA~ J UP B      @@$(Oޔ)J~	JS@5Pj      D@D)ﰕ*R|)R UP D      @@#)~ AHD*        A$ߔ)B~	K P*      @!B )~|I UH "       @ )>~DM UH "      @@D)*(|Q X*       P@JD	~+H|!RCQjA       A!Ԉ~&J5Dj"      @!B') ~ I UH "       @AA | AR 5Dj        @9H	@*}|U UO      Ag@D@	"!"       AB ԪU~UJP
TjB      @@A_ /+|T#J*      @@H) @*}DUS@5Hj       P@BJO*,|ԪQC	5Rjā       BAO+|pQR UDj        @zH/Ut}%UkB*       HIV$`AC@H      @@$H)DJ#@Q* D       A
$T]~UJ5PjB       @AA	τ*}EPQ*      A	bG	/U |	RUP B      @'脏)$I#@Q*        @AB	!*~	RUP D      @@AO A+|QCJ*       @!!HOT) ~AI U@       @!  ~!IB*      @"@	*~| AW D*        @ABB | R#@Q* D       @$/TU~UJ5_ꠀ      @@O |	Zc 5Pj      P@JD	դ*H|QR@
T a      @@BI*@}R U@       H@"DI*N|UR@Q* D      @" Д)B~I#@Qj       A!(Ĕ)~~@K UH "      @BOO*} PT       AHI!I*}$QC	Rjā      A%J"ԠA~J5PjB     @@ @D@	"!"      @!"()Q~<I@E* A       AC O *}Q B*       @!!HOT)~!Ic	5bj       @=A/ *}R@E*       GIIJ*}(TP}j      CB)*"}EP@UDj         CA	ϤI*}$IW 
H*       C!HTU~ƥJ5PjA       CA	ψ*| S UP B      (@IA	H*Y|R "5D*        @DIK|QZP*      @% ԤI~%JK	5RjC       @!H O * }QC	5RjÁ      #J!>T+ZHI" U       CI)ϤI*| AW D*    @$"Qs@ ("$P      B"@IϕU*$|HV+ UQ* 0      @B#)~ I UH "       @!A	|QR@
Ujʁ      @)J@ϢD*}TUS@Sj!      @e
BYU~%|ʩUk$5Hj"      @! ~IsR*      @ibC)/(|ZK	R        A#HԤI~%JK	5RjC       @DI>*E|Pc@Q*        A%J)(OT ~%JK	5RjA      ADI"*D|R# J*        @AA	τ |	S P D     @@FD@	"!"      CA	?I+!|@R#@F*        @!@	ϐ?* |PCB*       AOI+|!PD*         AJ$TA~UJ5Pj       @! O~ I C*        A
$/ԤI~UJ5PjA       AC O *}"AS 
UV       @! Ԥ~HCURj       @!B'ʔ)*~!H	5B*       P@B^*|PQC=J* (       @A:$/ԠA~QH@Ij       A$(Д)~~@LP	5djB       AD)ϐ!*~| !RK	RjG       @AA	*B}"AS D*      AIi*P}S UP B      |@#OȔ) ~J5PjA      @@A )D~H@UDj        @!"(/)~UKP
UjC       @AA	*B}"R#@D*        GrJOU*}ԪU#@<J 1    K@C ("$P       A" )(~ JP
Uj       @!$ϔ) ~!HC5Rj       ARHkEUVP*5\j"B      @!"(/)~AHC 
5Tj      @!z T)x~J
UjҁC      @"_OU@*}$ITD       @@A!^*UHU"GԀ*Yk)	       CAO*}TW UN      @@O"*~BPCUC*        AJ )*~|IB*        @#Oϔ)~!I{V*      @@$()O~J@R Q       COO*}APD*       @IAI* |	ZUP B      Aό}jUQ/PJ5j"B      (A%$)Q~<I@E* A       A%XTU~K+pQ*       @@"E
UU|}S#@	S* a       @!H/@*}UZ
UjC      GI)* }S B*       @A$T~Ic	URj       CIYUJ}*UW5Tjʁ       AE)ϔ)*~| RCU* A      @$ *%UZ`*aj       @R"ʔ)>~JKPjB       @AA	ψD}R#@Q* |       A"AU%*~0AW
d      @R'Oʔ) ~~!KJ      @A"(Ȕ) ~!HCB*       @AA	Ϥk*}$P
d       CK/P}T dЀ      D@I'U~J5PjA      @"DI
z*T|Z@	UR Q      @!\O*!SX*       A#OȔ) ~%JK	5RjA       CRJπ* }S  U@        AGO *|TP	5dj D      @@$Д)B~I B*        CI)ϤI*| !QS5ij       @, A*UUڪ@.Cj!       CJ)O@*}ܪ)TSa*        @AB	 |SPjB      A=J_	/$}RUK5Dj"      @@AH O*D}IPD*      A	D)
O |V UP B       @!H O *~|RU@*       A"DI"*|| USUj      @O+|TQCUJj (       @! Ȕ) ~JPPjB       @$(Oߔ)~HP
@j        @! OQ~HUH D       CDI6+| T Dj       A*&XT ~%JK	5RjA       ABG	$*H|RP
Pj       @"K_}DU U@      ! D$B+Uj+WVp(q*        A%XԄ)*~R%HC5Rj       @"_OB*~R9R@Jj!     $Q'B!&}I4OI? L       琒~	@ }QU_3V@2      @=@/?|PC	5Rj      @! Ԉ)!~KP
Uj      @@AHI*(|	[@Q* D       @yO/y*} !W B*c       @IAI*a}>S P B       AEI>* | USUj       wREQw|EUUL3V@2     "B"A:U/}TPa*       @!Hϊ+}|!WR*      @!!
'@D@	"!"     !HBϤBjUW֢/P	5j*b     *B>1ʤOQ>BTQ       ~A B?FD@	"!"      AIY*!*~ W 
d      !B=Č ҪDU~'`"Ij       G$_HU UVP.@*       C*OYQ*}PCB*      @A'OT~(JUI* 0      |@"(U~K B*        C
JU|	RUP B      P@BϪ*}S@Q* D       GBOO* }_ 
d       CBG *~|RU_ B    !"Bw "" !"       B}"DU*}J5T@R*      HBzKYO*2ĪU Uh$      @@τ ||ITUH       GOOI*|"P#Q*       CBKOE*}USUO&      A!H)"~|IB*        @!HϢ}|!VKJ       C_"/*| P U@     AQ$SX%' "" !"      @QBO/T*|US
WjC       @yO/y*} QV`E*      ABO2O* |RcURj       C"TYOUw**|bT{UI* Q      C_8| TUn        A'Ԁ)>~DI_        C_?UUTF:Uj      H@BI*~|R I*       @BϪg*}	W@Q*        CRJπ*}IW ?D*       D@Q@I|TP5PjA      CCII+|IR
UT B       G*_~!QV $Qk$      A%R@$|TH        C
O / *|PUH        @AA	w*D|ȫyPJ*       @! )"~|QK H "      D@I'/ԮI~I H "     "DӬRjVU_/PJ՝**        CDI?*}	W Q*       CRJπ }	W	Uq* a     
bp!( @D@	"!"       @"K /I*}$P_* |      @,(u*UUUV`Uk      A"G U*}ܨA_
d      CO/UR| RU_       @%/BU\T. *5Qk        Bq_}USIj       CRJϊw*}TUSj*      PCROO *| TJ*     !$AQTY|*|W `        C_"/*| T d      !B	H)τU*W P B      CBU*}JqQUi*        C_"/*| PUj       @@AB?TPU?A      BYI)ϦU*}T_ H      DCRBI?H|!S H        GJR?*AS /P B       COU*}TTC5WjB     !$DĔ?RUJT@6Ij     !$Bd?*PBÀ
$      DC T~JC
Uj     !B!|BE_jT*@*_j      GO"*~S@R b       Gr*UjPBP*u       @}O/H}TUS_ꪂ      G"@	Ϫw*D}!SR*@      @%XT)~J
W      "<<ʊUU       ?(B?B!   ?       EDU|EQD_! t        {B@*|>U  !\       @@""H*(|PRC	#xC        @A/I*}$P #x       ?B           xAD*>>DT AМJ       @)(OI*}T #x?        @ HJ*}(QW@ 8
       P@""*>|IR@8 A       @!)*T| P 8        xAA*>U AМ?B       xyAꠕA>U	 @        RUI}%WR_I$tA     @ yJ*> T@      D@$(ﰕ*R|)R C% D     @A$J>O :!      @@$(Oޕ%*J|	RS@#x      ""  @P ?   ?      @!B//D*}DT@8"A       @xDЪA> U AМ?B       @A! | AW 8        @A?* | T C       @@"H*@}R C
        @A"!*~	RC% D       C!U*}TUSCA        QAuPU]}UUUU_]tPB     @QQ*UjUUV#$x      @9(@*}|U Cϸ"        @AB$HOU>* | P       @@A$H*D}R#@8B!      @@A/A+|QC8"!      xA*>>T A     @@ @D@       Ag@D@         C (π*|W@8        C!ϤI*}$IW 
8,!     @ @=Jj)[UOҐ%#Jxk     @!DK+T	R@Q9       @BJ*OU*1|!S8        C)(ϤI*| AW 8      @	R!'HUUT <CH       @@$H6+| P@Cĸ(        C"(*"}EP@Cx(        @$ p
 @D@         @!(O * }QC	#xC       !x"_Ī~>@T AȜ"     @ LR%?zj)SWoԠ%V8        4!RUI}TR_$tPC       @A!τ |	S Ð% D       @A!*B}"R#@8       A$H"*D|R# 8A!       Gr*OU*}ԪU#@< 1      P@B>*|PQC=8 (       C((ϠA*| %WSxd      A	'O?* }T#x       QI%RUI}uUUU_]tA       @r((OA*}QC	xD     @ ADDA_Dj~TQPB(Qy         QIu_A}uUUU_]x!Q      @@A "*D|P@Cx(        @@/"*~BPCC8!       C!O*}TW Ce      A%2HOU$ }ET#x       C$H *}IT C8"!     @H$_)*^TPBÀ
$      !xDOȪ >U$I	!\?A       BI!U *|| W 8 B      !z"OЪ~> W X       A"$H"*|| USC        C)(ϤI*| TC8a        C)(ϤI*| !QS#x         CR*π* }S  C
      @$HA%jT	WWȠC$I       @@$Е?*B|Q 8        @((Ϡ* AP8       @A((Ϡ*|2iR@CĹ(       A!z5O%*R}	R	C% D       @!(/@*}UZ
x*C       C$H6+| T Äx      @!!'@D@        @@">*~~W à        Q?@ }QU_3TqP"       QUUB*|TB* t      @= /?|PC	#x?       @!$(@|QC%       @/+|TQCCx (     AHJAjUW֢/P	#x*b       GB/O* }_ 
        C?/*| P C      I T}"JEڍbJ'@D@       @ $O?* UW	8f#       ~AB?@D@        CB+OE*}USCϸ"&     @Q!>@UW UC d       C
*U|	RC? B     @ X*_~!QV $Qy$     @A*ԒWC       @ I_
$ԂS	 "      @"Ϫg*}	W@8       G$*}AW ?Ñ8!     @%P/BU\T. *#Qy        PCR/O *| T8       C//UR| RC       !B4/|S Ð? B     @@C ? $@      @H  !5T`G          I$IAH     @!B"_Ġ	%H5T`RB      @A / )R `U`    !(R
_Ҁ ! V 0     ?B ?A	$ O? IT            Dp?      @H" )R @Uf      @  _"  jU@     "E	(_ZT      @" )R  *U`      @ G! " G*UD      @ ("_Ġ!B  *UP     ?@B/P@BUU     ?H)?H	?TP@@      A'H$ |I'@UQ        "#D?@  "     @! G!  `      _BP PQK     @! H$_Ԡ @UD     @! G! ~" G@jU`       P$$/P?>@$I  Je@      @A G/ $)" G@U`      @ H" )R @UR      A G'ʠ*UW*UD      @! " G*U@      A G" 2B  *UH      @! " @*U`      @A " B  *UR     @!B" 
@U QA        D*?T@U *U@      @'H& ~I'@UR     @! G%_ )R `U`     @@G$_Ƞ"*UD     H$ $I'@UB       A 'H$ 2 @UJ      @! .QGU@        "?@$I  Jb@     ?"A   K       A |8?@@ $      AH, HR' *@     P@J$|!H~!@Q`A     $   QK      I a,?@  "     @! ($?  
 '*UD        S$"OĐU@a *`@     @9" 	 G *UG     @"((_ a5T`G      C_BD)@D	VU\a      @! G  DIGUP     @! H/) @UR      @A % " G@jU`      @ 'H% J~)U@      }mD'4?@  "     D^	y ?@  "       @$/P%@JP*UE@      @'H$ ~!@UT     @) H"G@d      @($_Ϡ"} *U@      @'H$ $y'@U@     H !%Ҕ/PDBRD       C/?@| JQ@      @A
'5 āT D      @!B'(  ~(QJUHA      ?DG(8?@@ $        C(/А?<@H#PU`     
*
%TR@H     @!G' " G@jU`        C(/P?@$I *U@      @H* |R@U@     ""   3?@  "     ?H/?	?WY@@       D$OP? @AJJ@      !C"ЪU@UPUb      8!ߐ?@| JQ@     (@QH" ")R GUR     !(OА? @#U~      )O?@$I#@*UQ      @)1 ~D*UJ     ( PD*͐?@lU @R@       C!? @  JQ@     !HTD!   RK     @G) 1rW*UD     D@I !  G*UP       '?(@~% KQ@      ! (OȐ?@$8ʩP@     @!	'H% ƀ*UTO     $G   QK     @! H/Ƞ(}" G*UD      @AGH(_  '@Ub     O@O   RK      @!   A	 U`     $ H"D*U@"EH     @AH& |IUR      A H$_ߠ GUP      @A H$ E
@U^      $ r$x	H!BT
       @D$?@(Q@UB      A'H' <I7UB      "E?@@ $       !ʐ?*@# C@a@      @	'_ ?~ !H*UG     @!!GH_ ~!`5b`         ϐ? @Q @US@      <)/ʐ?@I@
Q@      (C!ϐ?*@|SJU@        !ʐ?*@! C*U@      A'H/ D'@Ub      @! @y'@UR       !Р@x C
T@     @!"' Q~<JE A       $/?Q@<@*UQ     (
?WX@@     BH@a"%' (~PB@      @I/H?  ~@*UO      @'H' <I *Ub      C!?I@ q @R@      !S*ʐ? @! CUP     D H!O?H@ *D@     lC*"G%~l UhpF     @x!'	*?@@D     ( G>$#W  RK      C) @  JQ@     A* G
 ~QRxР     @AH' $I g@UJ       !ϐ?*@T CjUD       @$$Њ@>U UJ     IB	 0   RK      A 'Ȁ ~%PʥUR`     D@Q " R @UR       $$/?@! CJ_@      !R%Kδ+TAZRU        D%OP?*@|jUD       {'Ȑ?"@| C*UD      AU%W_*U~URbP       $$/א?@!S*|       $O?3@B*P     @A%_Ϡ*}BG*UD      A%J%( ]~U%QP       !Ѐ?"@!*x     ( P" @|J_@      $/А?/@RK*Ud     @ "/P@EP*UB       @$(Д)@~! PUR      !D"РA@ @P@     C
$_*Uj]BQ       "Ȑ@tSJE@    KPG !  2K        D"Дm@VS`Y@     P@'? H~@_@        "Ȑ @|! CUP      @E"'ʨ_  E"bP      !$/А?~@ @Us@      A
'(  
~䀉UH     $@I	'H' ITH!         ϐ?"@|!S*T@      !.P@(Q @b@      @A:$( A~QJI`       ' @| ʨU@      @WH*ʠ RU~     @! G!ʠ*" *UD       'ʐ?*@|! *UD       '
@|! JL@        'Ȑ? @|	 #*UT     AB%H?J~y@BEH       '??@HsJW@      A
'Ȉ_*U~RgP       $OȐ?@~U P*UR         ϐ? @! C*UT@     !$O?>@!P     !+D#?.@j#@Uf    UJʤQDQ_ !  R1K     "D#"{TUPEATI      P@% TR@U~      @'(T ~%b      @!$  y'U^     p !K
$"
?@@D      @HO !x
U*     @!9J:$
VIQ(I        $OA@SJD@      !܂T.? @AUJ    BRBT*ߐ@_V_a     D!'?@eS*UT      !$OȐ? @%K*U     @""G)~^x%SĆ        "Ȑ
@ CP      B*__IʲUh@       $Oϐ??@UE@     !%O?@A JE@     A$'Ȑ  ~URUP      !K/?*@|UD      A%J'(Q~E%gЈ     ߑB}(  RK     "DA" *~T@BEH       x Ј?)@Y+Uj       @/"Lc ?@@D       $/А?@%P       /P]@ CJUD@     @IJ$O_!~~%gЈ       #GЀ!*?@@D        'Ȑ? @PUb      UI4(Ѐ?@@ $       $'A@Q@      D
 ?ࠦ0 
     ( K$ߐ? @E0Uj     ! $O+U|+WUzq"     A!'R ?~HJO      @A%WϨ_% ~EҤ%R     AB%H% ^~y*UW        !ϐ?>@ CJ_@      !܀.?w@"U0Uj      !+T*P @%K*U     !$ST$OP?"@D ʨQ@       %OР>@DJU@     "(@!G_~QRE     ( HD'$@~ C*UD     !EO!>~DB "UD      Ē< E $bK     !" H"$)P@"}F     "(@   ~UR     !$O?(@ CJY@      A	$'Ȃ~ JI@     !$O?|@IQ@      !D/P@!JUD@    # */
/WTH`     A#@>~DDD QU      ?Đ!_L UʪcRC     A"%ʨ. U~ARjp      !$Oϐ?@UK*Ud     "D#".A@%j       AB'$ H~ZP`     @A('Ƞ"}"d      @$'Ȑ?@QSʢD@       'Ȑ?"@| Q@      A	$'Ȁ?@~REVPȆ     DAR! ~ |@       'ʐ?*@|%@J@     A%'H) R~R`      @! _"D@@D      ,o	?H  ?@@D     y!% _y)% $bK      !+Ԑ?^@P     !@ $
$ ?@@D      @#ABB

?@@D      !܀T&oP?@D% @*F@     }"+">_@|b     A%$?I~AEC      !K)/Е?*@S
D@       +ʐ@P      C>= Eb$bK      @AH)Ϡ*}W*Uj      @!%Sʤ*U>C e@     ?Q A"%QJ%"_A?AEV      !*Ѐ?>@D
D@      !܂T.?*@|UD      '
~ JY $bK     ( HD$В?$@~#
Uj     !C Р>@ JC     D $ Е?*@S
D@     I T}"JEڍbJ  ?@@D     >ECQ  HK       $ UPCDUjF     ( PD"Є?>@TS
Q@     !K/?A@|SJ_@     @A"'˨?  ~RPP     AB%WH__`"~|UR@     A  ?@@D      !(/Р@%S
D@     (H%TG ?@@D     !TT.PU@UPU`      !܂t*ФI@%*Ub      A
'_% ~yUW      !T/?"@| ʠJ@     "(C'ʨ.A~JI@     ~(@!"H ~RPP      A'߉$~! OA?AV      @}!
?< ?@@D     !$=L@
 PGJ      !܂t*Р]@uUb     
bp!('?B?@@D     !D/?"@|5i@     >EGB ?@@D      AU'H}~UAP       9RSIڱ     xA(G( )~JUT@F     !<*#DUqb%      A)!
cB ?@@D      AU "~(@B@     @!$ψ_/R~TІ     !(/P@ J@@     @/H?~!ʥUR@     "%Ґ)?@@D     !$]$TO#y>BH%J@     BER*WÈ?UJ@     DCR"G?H~!
H      	!$E/oUPݿCvTڱb     >#>#"$bK     $@(Ȁ~QUpZu@      @R&gH @_     QO@$ %%+"?@@D     8GCQ?"	@@D      !$$O UBUF     !H/>@D5UG
!I0       $Ē//U>ATJ     #E&A@_     @|Q  ?@@D       %O? @. UK      P Ъ@ PUj      AU%W_;"~A*G@     D!.P@~@_     wA'wʨ H O     w A'wʨ?T~URUP͆     !D?wU ?@@D      @BB  @       @/D%D$I	0_ `          J@%D!	 _ @          @ $@   
      @?I)$O d         "*DPD A	  P@     CBJ)D`       $"JD%?)P	 _E     @Q"H
&"@D	  G     @ C$JH%D! D     @!$A

&@(P	(g`       C/B%D|
 _Q       @A"E
$&~@	P J       {!
O%"DD
  `       !K)*_ФIDH D       $*OЀ% ?@E      ?D@Pq ?H         $$*R0%D	@ B      =""#a1bB       @(*@P%DJ
P?@E      }
%QI# $@   
      ""  0@"@ @        @!B'H($$@P	  HE       H ?  ?H       B$QT$"X @     #" ja      D _%D>E	?H      $ H,Ei*U|	'@H      @)B
1&@D	'@J       #*EPD"e	P?@RB       $$*P% D 
 _Q       "E $@   
        A(FH&$@
8ǩ P       AB EJ&]@ @ P       !
_РDx@ T      	  {2e(S֡k~ROe"     !O"|蠦 `a     A!(A
 @ 
'@_     lC*"F_%@l	 PhbB     ( H!
E%AD|
 _Q     !y /J褦[ da     D H!JB%HD	?D     A* F_
&@P
Wx      $H@"FD &~@'@_     "D## _ȤI }
H _      ##)%b(I }$@C     #O"H& #bb     @AJ$OQ(@HGA      AU%VNQ*U@T
WbB       $JP%3DB
?P      C'HJ &~@ x J     AB%IJ?J@x
@G@H     C
$NQ*UAj\GQ     AJ/A*&I@tX bB      O K$I(ST}R
OB      A	$&Oʈ?@T
נ B      AU'v@
 &@ B       %J_Ҡ>FD_U$    CS$,RTG(A& @     !" H$%PS|
'}B      A%J'H
(Q@D
 g       @/"Mc ?H        !$JO%DUH?@dC     !$JD%(D@
_Y      ( K$_% DE0@j"      !+T*ZP D%H?@A     !$ST$JPP%"DD
 ߨQ&     "(@ B  @T
W     "(@!FOQ@P	WE     A!&GR&?@H	GO    􄯧JJ	E      AU%VJ*AH	GL     A%&JJ)&R@ 
W`      @E#6J0dF     AB%VDJQ_f"@|	@RB     ( HD$OВ%$D~ @j      (H%TG ?H       ~(@!"IJ&@
WPB     is	?< D? /      !T/@ D|	P_@LE     !(*WPD _@      A'߉$~! OA!       DCR"FO?H@ $_     $@(Oʀ@QT	pWu     "	 K>J
@ _     AJ"A
 &'AI       @ $Q))IRS       @x$c!&0I!         @y@䤄
&4I%        Py$c&0"  A      x $Eڪ5i.`     D HxϤc!B2)       x ߤcUF65_` (       x!?ϤcwV2)$_`     !)'D 	      @!JAISa!       "?PzĆ	       D /xP R        ?Ã 88 "@!Eǟ       D /xP ?B       D"/HPa 	I"I     @@fA*("@!Eǟ      "G$ _!~B       "G  O!?@_      "G$"O<!	TG'      "G$"O<O     ||  @G ?DB"cπ     A*! "@!Eǟ      "G$"O<!
*F#      "G $ON      "G @ BȒ$G      "G  __	ҊI      "G ! I      "G @_AA      "G! \!{     DW'JQ?T|y@@A      Aオ$("@!Eǟ      "G-(dHC      "G ($WID      "G   _!	@     ?~  #&Ej "@!Eǟ      "G AAhC      "G /P@ABRH"      "G )^{IDg      "G !$^xyh/AA      "G !OQ?	TC&      "G$"_<!{BM      "G!_! @      P
UTzU눕@      "G"("_      "G ^Q*D      "G  @_	 	Ҫw     }@@*'UfUZVy       "GTHU+&KnԩM      $IUqP  ( ` 8         @  AD pp      CS"* xD!E      #APKbH*(xE@0`       C_DUD@B"
Aa      #JW)RTE *B 
`      AP(*Px	@! E0      #BI7R$~TEH%J%
QaA     @ %PW^%JTER$J"J      #AS"* xEDA      PAOUQNUUVQUTERA       C"%_BD$HTF B/
`      'A_$ITE$J'"J$C      T"˰!~*{E
E$     #AW** xI!0     !b7UDUDD%Z"J      AQb*]*TzUJE?A       #EI7UD TE%ZJ"B     #jĪTG/B?"a       C?=A!EBAA     !"=E!EQ%P      #*=T%JE*@       !B&NpR)(B        !Z*RB A?a#        !Z*RB $A!        
I x_ |P ?      Ac 'H  G       
I?RI"2@      Ac AAhC      Ac$"_D         @"      @" D@?D@ 0     "D!AB"?I!%  AD      "D!A/B$I(Q$@IHb     "D!A!?I|% DH_      " D!!?I|!$CB     !"@ "       ( ϊ(# T!PϕT!      !WE)$SO∉      
bp!(AD@      ~ "b"	 b3,.!@      @p"S!ERB@`b3$* "	B       @@$U"	T%PR`     A9%UYJT"GTNUUvLHB     ?B*C  @        ?BC   $B$HH       (I$Y> @>*R      !BHQ?	 !x' @!B*@      "HFR( Px@$Ij"     $#XEԉ)?<SJ`A      !BHU?T!P{"5Dj       !RH+  yG(Q*AA      )$K
?D HH@      EI+H"D y $UH@"     !"@)(J ?"      "JN2R!$zO)5Rj?      I%5M_D%DQxuV`      "HFB?!z(5Pj?A      !BI+F?$ |y !B*@`      !BHD?  !z (UP?@B     ?CP&02)ȿ@I      "H+E?Q< y@!E*@A      AIH* z/@
@      !BOdT!z@/Uj      !"KO"|  yW)5B*@      !"KIU!T}@$Ij"     @p"S!ER)(J ?"     A B%H!      "K*0! yG"H       !RI" xG,UC*@     $SX*D*<#?        H&Q?E!z`.Qj%      !bI&+@?B!y'@?I*"@      IOKI?$H#z@,UP*?       !"KRE? | y$UH@"      "KH"| y /E*@A     $Q'B!&It O	UM      BIRU( z"UI*@0     xz#F  ?RP!!     *B>7T[Q~BQ      AJ2Y?@! z +Tj/     ?Q) BJ)@ JĒ      HF_D y$UO
@"      A_U~>~EU     @HQ@" D?B!)B!J     PؠOI(I$ItY$I(e%     (Hؐ$
?I4uSZ1E%     $	/ʔI~uK[)*RT    Q"}(DQ"Ȣ    @!!	B       B#x}!(@      x}!(@      B  }!(         	H>ECP@       @}!(      	 DT&8C}!(        ~!!GH@}!(      
S;U<!"P	
b      @!!/}!(     AQ$SX%/%!Q|EP@     >E"?H>ECP@      Ϩ}!(       B# !@@        ?BC @?     >E"??BC @?      	O P|| D?$DDa     ?A $O	"ĈB"      @y'H$ D""      P _CDQ      H`o 	O _CDq     #@G ??"BDBA< A     #@@ ??"BDBA< A      C O	" ?ࠀ>1      $?~Gℂpc     $)@PD'?~Gℂpc      C$O	s$Hx! 	"$      CO"          C O	" ?@"8      C$O	?Q"8H        C$O	?	  B?     $)J !ĀHR C$O	s      C$O	s   @?      C$O	5?QDWP@ALa?     	@ $!	JIJx     ""D@ !B!BB!PA      	RqH$PH%$Kh-RHl      *Op!_ $ShMHl      !"Gw$PH "E$ShE$l      )Jq/D? 5$iTQ$l      ;"{&@IdFI7Q      !"Gw(0P "I$i2Hd      !Br,Pe? E'hĐMRL$l      C9$;@%J]dږH2D      "	Gr'J? $hDB$      p!D? >E%m-RHl      "Gp/RI%jL2Rd      "Gs!B?	%h$MA$l      gbHD?'I'(>       Gp'D $i-RHl      	r('H >E$iD      "p'B? }$i-Hl      
Op/B? *}$iB$l      
w(0_$'kE$l      kT0P*$      !"t$PR 	$#hMHl      	zGhQU q7
>#      t$PD? |$KkE$l      oEUGʕUJ~R(      	s$PO $#k-B$l      oRPA  VU~      ?@@  !!      $O"D_IE4_  P      |@/ 
?I(Q$PH@      | ! ?I!$C!      | B" 
?I(Q$PH@      |" 
?IX%#@H     @$"_IUT_ "       A$_?%RI@_Q(B        HO&JQB     | %G@ ?ID%_        $Oϐ?BRH"B      IKGψ &JOQ ?       yJ/ 9NzJ
_ב)B      (J ~J
Q)B      !$'	_1Ha      " (Ϯ	TEI@@     
UY?@BTJ@     
UY?@ BR)F$     
UY?@ C	     
UY?@ABB$     
#T"]Њ!wB(G      A D p&@ A       A D pqG.EBQ@      " G$*b0"B#       P@AH5A AT)\G      P@A"J5A V)\G      P@CO5A!T)\O      p"O	*kRRMh8      PB_AHU"FR      P AAO򂈕jA(QTFR      @s/E^kJ
UTMh3x       P@Ad5A!TB	D      (QrO?kTRTh8      QpOjkTRUMjx      ApAT-hSиB      P B/BQ5A|TFIP      PB/BQ5ADU&I      J	$PUZATUQkE=Q     P AAO򂊕bA|	T"F	B      P AAB"k|	"F	B       
DRWZAUUWUUk<D     A "
zdDU       As/EkRBPa3x      B/Q5APURFH,Ѐ    TOB@DT*      DQTZAETUQkE=@@      !pB뀂EQMa8A      PB/B_5AUz	g      rJ%YMTi3xA      QA@I5A U&I_       es2O*U֪-T]hxā      Aw*RWMj8      As:%ARQMdx     Hq"	* 
WhSиB      r_juV_-bSx     pB%j&mToxB      rJ*k*}Po8      !s/kHEUhS80      qR
k>MTkxB      r_ *k BS`S      r
*H~-TMk8?     DQp*kAU]jx       p@ 'Hĉ
     @sjJIU]ox     !sk"}R-o8A     wO5jk FUj8      Dw/*k }PeSx     %BK	%)"	"F"        G ? !B!"B       @y% I V(^G      @{? I!T(^O      z?߀$IHU#DR       z"E "IDU$H       AAB$$
&4H%<     @ A%J> J%5H)1|       y%Ҁ"IU(^_      Q@E
 T%R5H*|      !B% ~%Jf4(Լ@      #@ $4((QмB      z"E IU{g     #@B	*%&n4/|B      !B
?H%N4/<     @"@ B~	'H     ?D@)#(_@}bg     @Q Gψ<"BL| A      ǟ _y~
ȏ     @Q Gψ<"BL|  8     @Q Gψ>"BL|  D     !A#y %0R{ޔ/{҄Jg     @Q Gψ<"BL|D      `p @|Q      ED^CtQSEN*S     ?IAGw
@|Q      @|Q ?]_p~.5:WW       @ "D@# $PQ       !I B?b @ "      `p @CH0@~      !(PJ
H
֠_߂     =
ȨjV5+?     I T}"F>V[       ?(B?B! @@       1` T;  $C	*      PA_* !BG򊤕Q!     8S*8 iR*D!      P%*%RJUT!     HQE԰_ժ~ 
*U_      P!*D 'ʥQ!     $!HB`+_T"H| #DI"RH@    I?<HP"_I?A     		        $p$@<@~HJH~HH	        ~    PPP(H(([H       #@GJPT?R!      'h	4R%/䐉%Z
/x     }E/($~Y"  I!     ޢU%/)(~~Y"$!     ( H/$I}("0TBȃ|A        @ G@ D     d F"0(b#`           (_}|"Uȃ8"      !)J@@8                   `          ?       AA        " $          @@      #ȑ>DP  
     O O z~SW      @@?@$I!G)Ð? B      ! CEa
IL"HDO@J     @!)RB"Ri2H      CA D 0@A       !^%$0"
      ! G? $<H  @!       'ʐ?*@TST      @ 	%)$RIjA BA    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  
     '@~	A       @~	!$?   
     'BH~	A  
    ("
AH 	 
    X!D"       8 b"DpF   
    ,AH`  
    qq  
      F         8 bt$N   
    ,N"Dd 	     & 4  	      F#b1 	 
    b1@      BBBBBBBB< 	 
    Db/ p@         1Q0  
    QQYQ  
    QQ         "C!#0  
    ,DBG ` 	 
    b.  D"   
    q%YӪĈ 	      A $x 	 
    $	A C  
    j4	?П   
    pq$DDH 	      h(# 	 
    >FCAA  	 
    pD1r%  
    '"Dp 	      $ Db1p 	 
    A $# 	 
    A $  DA@@      8D >A		ᙆ  
    >A		ᙆ  
     @ 	 
    =!!p      80nɓv  
    }2n 	 
      	      D  Db(# 	 
    wDb! #A   
    "JI 	 
    @`0@$       8 	$N   
     @"D`  
    =	袊'@      88/Ŀ$G   
    %D 	 
    (D%ܘ       8D 6  
    6 
 
    3
d"        D    $D"%P   
     `DJDA   
    ( GA      "   
     	 	    DR*K  	      B+b  	 
    pD"X+8  	 
    > 1! 	 	    `0 	      Gb)# 	 
    b?F#I   
    p      8D   
      
    B< 	 
    8"(R3D      82U   
    &J?  
      
    #      "   
          xxh 	      V_b  	 
    pD"ZV+8  	 
    'D"D          AdLUVD\  	    tDXKdM` 
 
    3
dr( 	      R$xDa( 	 
    F" &	D  	 
    Cq 	      H8Q 	 
    DREA਒   
    dE%$  	   > H#E             1d$=0  
     1$1  
 
    A H H!00  	    3 0       "    XUQ$UA  	    XUQ$UA 	 
    b.         8Z@`  
    Vh~ 	 
    QhR!E  	 
    (L%y       8 **#  
    %QRD 	 
    wDBF"A  
     @ d41`1   
 
    M6`x   
    
Q(  0  
    2!L 2(L 
     @ ASL$*I  
 
     AT,	"Jd  
 
    1kF0,JЌ        "   
     	 
    3HBD3  	      D "	 	 
    ! @!L   
    /A`  
    0**       8D ||  
    || 
 
    ,#">  	     8" A?  	 
    "A   
    #   
    8EDX!!Y% 	       !(
?B  	 	    "? D"  	     hLFS)`   
    !4ᤈ"@C	 	        	     ] @@_ 	 
    b. @!  
    =SR<      " NQqqQN  
    NQqqQN 	 
    QV">        D  F"1Db#'   
    ptTb"1      ww 	      XF+b# 	 
    b1_F+I   
    h ƀ@         b:K*c20@      ʘ㌩   
    ,D2d` 	      !Q 	     RG |IDb  	 
    >$2LsEA  	      ZE$|"  	 
    b)#@!8   
      
    @`!&$        KH4   
     LHăH  
    ,"1  "  
      H$(@  
 
    %J# !hF   
    & `1  
 
     $B$HB        XE2P"  
    e$D  
    <      BJE      8 2@ɒ`  
    &H2@ 	 
    >$XFUI  	      |  H$ 	 
    `(#A       8D 1  
    1      1-# 	      ē$|*p 	 
    >$#@U 	 
    > 9A  	      h@#%3  	 
    Dba,Q  
     APL         %EEA  
    EEK	b  
 
     AV! K4  
 
    .fH$H$ 	      !DA 	 
    B'D"  	 
    b. @>  	     a2&C 	       Y`K3f 	 
    ]!4   
    Q}Q}Q 	 
     "Q(D  	     8" `p$I  	 
    c @I   
    <Bᙆ        @`IIc@   
     FI?IF4  
 
    ERW G4  	     B?d* 	 
    D"C!P@ 
 
    H2  	       B= 	 
    @ 4   
    ² 	      |  H$ 	 
    `(#A   
     """  """ 	 
    I       q r<H F   
    0.G`  
    蘀      @V$AHF 
     c6
  
 
    l)  
 
    lEU       " 	))	  
    	))	 	 
    IIA$r)$  	 
    K$rE          JAh+ B  
     VA  	 	    	06hś$          cE` @  
      ǖ8   	 
    P3h@  
     @DUI|1B0  
 
    DQD_BЌ   
 
    @P|,R،   	 	   PGB0          0@ DhC  
     `p"@І 	 
    b I$  
 
    DQEA s4  	      	"rTI 	 
    I'3H ?  
    HI	  	 
    > ?A  	      抂`0 	 
    g4Ts@  
    ` dsNGh  
 
    &ɞd,H  
      de)RXd@  
 
    JT C4        i}K@<@@|  	      0@  	 
     X0(	   
     
"HH" 
     @B "Dp 
     qÁ/ 	     "  ("$       " !  
    !       ""O3"" 	      
 A A  	 
    PG	   
    R$D?A?D( 	      H? 	 
    RGȌD!  
    ,"   	       PPb-  	 
    2@#h@  	      ED*         AtA=0p  
     p1AAЃ  
    @!Hg!I@!  
 
    "H$?$@ 
     AHF!H 
 	    R&Qe%  	    AMUE!      8 b`  
    ,^@  
    !0`         XF   
     1   
      4 	    @T
@ 	      pT>2  
 
    lDQ  
    AqA        <HI"x  
    x= <D 8 	 
    @`0@> 
      00
  
 
     (       ? F   
     @ '" h  
 
     '! 
 
     C#   
     @   h  
 
    #!   
    yy1  
    9AAAA9 	      $ D  	 
    A  B!         
    8@LIHG      8D 1-#       1-#   
    EZ"1P
DU   
    ,@b`        Xр,xF8   
     X񅬌p   
    x` Aǀ 
     ITNQ_ 
 
    UTdA<@ 	 
    c`@I  	 
    pEJ!  	      `(# 	 
    > 0A  
 
    ??*         XX	)%   
    RKO(%4 
 
    lH$  	      Y"$ 	 
    "A 4  
 
    m        BC!  
    0B   
    @>	""DH 	 
    $I$|       G55G      @sYYp@@      ?C8a'      8I&J  
     2dTp  
    #EE  
    (H_ $ 	      #I 	$ 	 
    H I$ 	     Do  I$      8q*T  
     %J  
    !ꄰ"A 	     AQDA? 	      E$|D"  	 
    b)#B!  
 
    |!E?F  	      F#b)# 	 
    b1F#I  
 
    ` $       8 ?`  
     `  
    80`ɒ         YW"_P   
     D 4 
 
    c$Hb !hF  
         
 
    c$%? &   
    b2VJV*  
    䜀 	      ̖K%F" 	      &dY,e1  	        4Z,F"Db        	x  
    `
gx  
    R `  	    JTĈ 	       H$"1 	 
    	A p! 	 
    @`0C  	      |_  	 
    @`0C  
 
    L"ȍ ?  
      00    
 
     ?      DDP  
     0 	      HT&@ 	 
    RGB4       *Ĩ Ȁ  F   
 
     !hF?          bA. @  
      3@\)c#   
    PF
P`        P*5M闲T
  
    Tj/eX  
    DeR h         0ȣ"  Z`@   
    2 "  bF     8 F wPGp      
 b   	    F"?C$      "h f" h ,    
    ("HA1      8D 		I)  
    		I) 	 
     21(d  	       DY!p 	 
    B'U  
    @1.@  
      *0
!hF  
     3
eZ  
 
    /X         ;  `t    
    v  4  
      
    pp       "  0B7   @       |
 
  N    
    ,9 b  bF       8 z`F   
    /A`  
    1@1   
    h 	      X"PJ @ 	     2@"Pr  
 
    !H"  	       ]"A& 	 
    Rw$	4  
      !cvH 	    $"D	 	     A B H  	 
    | 
   @ 8@cvAP 
     A8mÁPT  
    q1-# p  
    pp 	       &	'@ 	 
    Q0L&<  
 
    <AP;!    8q"R;       $_*TPGp  
    40e"         @IHIH  
     I~I~4  
    40e  	      |0 	     > >;ဠ 	 
    > 0A  
       &       8D OHHO  
    OHHO 	 
    @`/AH#      @H	EE @     $    
    4, p 
     @DQH|9	  
 
    DQDBp!  
 
    C!B       D  V@F    
    GNP#    
     @Sjc/       9EQDM  
    QEq40 	 
    >$1#I   
    DX@      9EAFY  
    Qif`  
    L,@ 
 
     X`@      82`LX`  
    FL0`ɋ       ,b8bb  :`        UU=CB< 
      01*'($>  
 
    p*
"I  
     ("O⊑1 	 
    b(#AH       8 bIF   
    ,C2_`  
    8Tɒ      82`j4   
    C&L XF 
 
    nv " 	 
    > 2#A  	      ED"
A 	 
    b.!T"        (HJ8       " "H" 
 "(      ($   
    !	DD\   
     cv    
 
    l @   
 
    l @,       z0 ax  
    z @  
    <BO	0      | <Bᙆ  
    <Bᙆ  
      0@>!!@G 	 
    >$1#I  	      Z,|	  	 
    g(#@ H   
     %L@G 	 
    PG  @ 	      
  P 	 
    PG  @ 	     > 4YsE  	    
(
0+       D   @Ș  	    (
,, 	     > 2  
    Db#wT"          bB!    
    bCP 4 	 	    A @     
      D       8 b$H F   
    ,D`  
     @1  	     dJQb5*A 	      `(# 	 
    A  	 
    > 4[9A        $@H	EE @    @H	 $    
    /#  	       I$  
    ""AAAII6 	     REA@@PTI@         bA 10@  
      <Ahc-`  
    ʘeM%` 
 
    H<"C  
     AHGH 
 	    R$Q%  
     D  
      ∠#$i  
 
    "("$	A      ,AGh0 	 
    |b A  	      `/hc H` 	     x@#iC  	     bA   	 
    "'1D"       80`  @   
       	 
    `(##@ 	 
    b)#@!  	       -K5F  	     lYB@` 	 
    I @#h@       D %H#E      dh4 	     > 0       8 T`  
    J1@ 
     솬Ȃ,  
 
    {!%( !(  
 
     c6 @ 
 
    DAA`    8D ~~~    ~~~  
    C `
1=   
    4!!        0i"@EH  
    `$D"⊑1 	     @b1!   
     a 4      8  @`  
    0`  
    am  	 
    V*BP4  	      `1 	 
    `0F@  
    eDO*%C ` 
 
     S   	      3hDۃ `͡n 	     B&mp` 	 
    B&@!  	       ?0 	     @`0_       "  {*#8! "x   
    1쨎bH "! 	 
    H'	D 
     "$"H  
 
    ,"?"H$  
    0DHHċD8        D!'"#       "#a	DH   	    }I  	    }'I 	      	>$ 	     H$ p |I$ 
 
    ȁ  	     p@$$$ 	     'DA'DA 8  
    >"
AH/ A  
     U2f՚%       8q XCp  	    n n 	 
     G <  	      ia( 	 
    h5M&	E      ᙇ  ᙇ        GIdLQ1FD\F       Șb  	     D"B!  
    Yeq40 	       0 $r/
3  	 
    #xP$ј   
    pp  
    C,8F   "       0#`  b   
    C,8F    `  
    K8F 
  `  
    1F( A!      r B <  
    =  @ 	 
    b. D"   
    !|      8 r F   
    .B`  	    tDCdM` 	      	$_ĒH 	     I$F">$@  
    @1 
      0+
2(J
"  
 
    

b  
     !|B!     
    Xk$A 
     cv@   
 
    m @,   
    p}"D@   
    ?
D@"@G      t@ֱTED      tkX*" 	 
     @ q      8H>&L  
    8'dɂ 
 
    E!PX K7       8 $~"`  
    D$@ 	 
    pD"(+8  
 
    L"ȍ 8 H  
     03 "   
 
    "ČH" h  	 
    Eq @I  
     @ 
#I@ 
 
    *,"D 
 
     ","D 
 
    L*ʍ ?         X(`	P2 @  
    Q
X d  	 
    5 |I$ 
 
    x x!<"  	      Eg(# 	 
    > 4Z-9A   	     
P)H       ,9 p   
    0#   
    8.H"$  
    8֋
p 
     c6   ?  
 
    l   
 
    l!@      8D %%%X$  
    %%%X$      8TT      8D q|>p  
    q|>p  	    DQ5Z2T 
      6lD1@|$  
     [4@H 
 
    (
:).  	     RGBT  	      B!sP 	 
    "EDU*  
    =CB< 
     (( 
 
    (#( > 
 
    *ʎ*
   
      CcXô  
      <> @ 
 
    B)=<  	 
    "E  ;      9EQGQ8  
    9yEQD  
     FOF4   
    Q
"       D   I@4b   
    DV$D QHD  	 
    @`/ 
      00+   
 
     (       hʉ(  
    q,hbƈ      tAp  	    pd8 	 
    > 1  @       D 
Ȕ(
(H,  	    edJ`BD@` 
     Bp*FaP8	       9D*]  	    Et  
            9x9    
    	@I  
 
    ,$"  	      `@   	 
    b         B
E      <bH"B!*F        qbō$G   
    q,XD 	 
    b	>  	 
    > 6&A  	      3f(# 	 
    > 1F1A  
 
    <UTc! 	      @8>$ 	      pd   
    PABI$  
    "SWZ8E        B)嫭"Pp  
    "SWZ8E 	 
    8Q(OD@ 	      9`(# 	 
    > 0YsA  	 
    b.U  
    G8􉈘Hq       D &Q1IPQ  	    
($(( 	 
    N#h@       8D pp  
    pp  
    D      r "EIUH  	    %%U"  
    ,@` 	      3`@ك  	 
    @ |  
 
    lƍȃ"      ! H@x       @2E A! <   
    c` 	     ""Q$Q$  	      
@ 	 
    > 7Ѐ@T*  
 
    l " 
 
    MUNuVM? 	      J@Rb  	 	    DRK  	 	    DRA       8D1-#  pp      1-#  pp 	 
    HDA       8D ||  
    || 	 
    xE"HA 	      `@pD"G 	 
    b!p>  
     c`      r 08%e  
    _  	 	    " $D      8D 1-# j2j       1-# j2j   
    E
#      D $HF   
    DhѢD  
    0      8$H    	    D"D  
     	      *F%Tj1'  	 
    Tj1/JQ8  	 
    Db1(J#8   
    @`      8C F       @> 
 
    L"ȍ :R)JB  	      B #9kÆ 	 
    "X 5 	       F |I$G 	 
     E1I$>       r |L,  
    08"  	      B#w  	 
     >        | 1@ @  	      #b)# 	 
    F#I  	 	    Od)zFC!O      r QEH  
    1ؤ 	 
    > -EA  	      -b(# 	 
    hXF#A   
     D"( 	      AQ 	 
    > @ 	 
    K$r A         D  H@$!0   
    DA$ B  	 
    RG@2  
 
    фaDpc5  	       J=q 	 
    "Q@ 4  	     |@# @ $!      r 08)`  
    চi   
    b4
2J       z$@& 	      B )B! 	 
    %H"i@      }H+      8D 	xx  
    	xx 	 
    A`Q`C!  	     A E > @      " 0  
    0 
 
    "H 	      KOM! 	 
    $]$| i 	 
    `0 >  	      >"  	 
    `0!8  	 
     #h@  	      |   	 
    `(#    
 
     c#(∂       q ,V@H  
    h"_ 
 
     /hFA@ 
     c*  
 
    l-ʀ( 
 
    lPT 	 
    g-`RU        !' #  
    ?	CO@G 	     @`/ _ 
 
     c#"   	      b)# 	 
    > 0F#I  	 
    YcI%RTA       8 b$N   
    ,@` 	 
    > 1Xf5A  
 
    ? #!hF  	      i0H1  	 
    MaGF   	     $">I  	 
    Tj1*J#QĀ         X>8$F   
     }pH7Š   
    <F$BG	0 	      F"?	$H 	     wDb1A I$@ 	   #Q^WFN8 	     !a`dB@ 	     L#
   
    =4a         Y(   @  
    Q @?    
    Dɂ  
    Q @$DH 	      k,r	$A?H  	 
    YcI$	A  	   LF^("   
      0@*%L!DG         @ #  
     P*%L!DG 	 
    jVI     QQS @ 
      2{bX"8 x  
 
    ؖ%H    	    PD 
      btSB@0  
 
     @       }0_  	      HQ 	 
    RGD@      ᙇ ᙇ ᙇ 
      p$9|$	L  
 
    @$	C   
    ,G*U$      8 bI|!   
    ,C/>$      qR%GU&H  
    V9!$ @        bA(#1QF  
    0PF(c
!0  	    Ĕ"ADqD"D  
     *(DHDHPP`` 
     cv1F1a0 
     lFьaL  
    `  AA  	 
    REIFrTID@ 	      H8( 	 
    REAPDID@  
    Ȉ
>b$ 
     bZX p  
 
    p"Xk%   
    rr       D  0f,A|@   
    D > Ai@ 
     Գ A1@0 
     cvD  
 
    l D  
    UU}UE9 
     VՌ`   
     Gc: ?        K脈H  
    ĺHHh 	       J_$M 	 
    U
A$h   
    ("~6)5!      8OL  
    8`ɒ 	     > $R(D"pP  
     1#        8 @  
    @ 
 
    lD  	 
    d0F	 	      *-*
 	 
    AQhTPP(   
    dE(R l      8 L`ɓ!  
    	2`0 
 
    PT\VՌ        8D ŵ  
    ŵ  
    zJ:Jx 
     Lzԍ " 
 
    @S#H$  	     > 1 	      -"QhA 	 
    QhGE"   
    $%&$$$$d$      8D <B}ᙆ  
    <B}ᙆ      "">cᙆ 
 
     C#?$I        Ћ  
     	 
     2E   
    qx.׈      @
0#B  B
 
 B       @
0#B  B
 
 B       @ NB"}|D   	      "  	 
    @`0@!8   
    U99Uа 
     @  H(L @ 
 
     H JH 	 
    D"@  
      ` |WT2  
 
     @!$U 
 	    R$QE%         YH R @  
     
A)    
    `$$	 HRA       8ITp   
    #*U$ 
 
    lP8@ 	 
    ND	#J%I  	      BsB  	     *ET*   	    d9EQQEd0 	 
    
BE9"$@ 
     0"8(ʮ(&  
     ##⎢` 
     c:"  
    %Q*ITp        PJ	A(%@  
    PJ	A6<4  
    ~~hh      8D yzzy  
    yzzy 
 
    MŝdD@      r B |  
    ~=  	     $EA@#h@        "           
      >H  
     b? p  
 
    p"&h)   
    weJ*L      80dի&X`  
    Fd 	 
    HbP2%!@       @EATQ@D       8իVtG   
    quZjΈ  	    !)UZKUR       8D 8DD8U99U  
    8DD8U99U 	 
    D2թk-      RU*G 
     @ |mPT  
 
    1F1a0@T  	 
    eQ䪓x       8G*!R   
    RD*T  
 
    DP$      q+QRJ@  
    j4
_RH  
     
H2H 
      	<PC 
 
    @O<   
    }F3e 
     @ 11`0@  
 
    F`  
     @P1B0$	      :h1փh1       D   &,A@4`   
    D  IHD   
    (((( 	     PWF# 	      B$#w   	 
    "'1   
 
    | X$"̂  	 
    b. @ |  	      E 	  	 
    b. @ H  	     " D  	     > 1X#Q      r B)eX<  
    =Yb@  
    =CB< 	      V#f(# 	 
    bF1A  
 
    Ď / H       8d(PB3  
    8L
(P&p      :HD; 
      R؎ "   
 
     C#. H   
     
 r(      8$E*ɪQ   	    DY5J"D 	 
    > 0FA   	    )DD)         "$DPE)"  
    DH?$R&D 
 	    "F?h)   
    ?AA??~ 	      ?`1 	 
    `1@ 	 
    c?A  	 
    D"F#  	      B%jY  	 
    pd*(+R8  	 
    >$0SEA   
    pp 	      b)# 	 
    > 0I  	 
     `0L& 	      e* 	 
    > 0)U  
 
    "4G%       8(b   
    ,@       VJ#4X  	    :,sUɄEAQ$ 	     g3L *
   
    2N" 	      B'D"?B  	 
    "?B!"  	     ?D@!B   
    AA"**p        0i"@p?  
    `$D  $   
    %d  	      2$S)"`DH 	     %2I8"$@ 
 
    D(p"D  
    0&#
" 
       D  c !@B   
    1kB !  	     A8" @ 	 
    @`0@A       8D *II      *II  	    }LRd|      8D *II  
    *II  
    3q@
9L0      8tHD   
    #       	 
    ! D  	      H"  	 
    RG@!8   
    	A 	 
    b.I$ ? 	      !PʅB  	     
O-VT*  	     > G T_ 	      b|" "1p 	 
    3HC  	    edKHBDh       "  0Da&D
  	    bb:(h*`  
     Nk      r B(@      ="  
    <@@<          @   
      0h  	 
    yC`$ <  	      Pp8*$1  	     $Q$F    
    `"HP` 	      QQ41  	     j"AF   	     _F"h,  
      00?  
 
         
    a   
    AJ $0       "  CD@2$4  
    DA $T0  
     AH"&    8D 8DD8 `      8DD8 `       D!!   
    dT
P*@$      " i]Ki]K8      i]Ki]K8  
    80`ɒ 	 
    > 1F#A       8D 蜋  
    蜋  
    			 	 
    b.P  
     !TRԈ( 
 	    bA#T"(       c%2Xb4 	 
    b.!PpH  	      ED"*D@ 	 
    b.!T"   	    1FD\       8("
#  
    %PDp 	     ] E 
      *!Ȫ* "  
 
    3
dr*"  
     `,G	dH- @   
    D7e 
     @ 1F1a0@  
 
    FьaL  
 
    @cv  
     @DQH|m 
 
    DQD1F1a0  
      d
0 $       
<. `  
    B 	      ,DGI  
     P?8UP 	       F ?  	 
     E1A  	     ĕVsUI 	 
    J \X4  	      \(2A& 	 
    fJD	4       }}| 	 
    fJ D4       8D =CB<  
    =CB<  
    D8      ,F>  	      #A 	     o]  
    &O2@      8 b4ݖ!       ,F>      %E&H      9a  
    цO 	 
    <! p        rqP*98 Q      Trp@'    ZZZP    ZZZP    ZZZP  
      
    Aq40  
     #   
        
    ,@`  
    c    
    Am   
      @1  
 
    APL C4  
    l  
    z @  
      
    <Bᙆ  
    =CB<  
    6 C  
    =  @  
     @           8 
    L  	 
    `0A   
    $H"D  
    `$D"@  
    80`ɒ 	 
    > 0A   
    tc1 	    @`0     Q 	 
     "D  	 
     *D  
 
     AT<BD   
    A=aD  
    |   
    B.!  
    ~ 	    b.     Df2`@  	    㠐DA     Db"     `$D  
    q|0  
    q|		  
    yzzy  
    Aif`  	    T)Q  
    PABA      B
E  	    tDCdM` 
 	    R$QE%  	    tDBDI@`  	    d9EQQEd0      "(  
     @  	 
    " @       b    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP      ?M*eK&        ?M*Y0 ?       ! @ D H        	       	      ptDc' D       D rQD\ 	     BC!C  	     BC!C  	     @@   	     @A  	      @        tc!>      tc> 
     $ < < 
     $ < <       *TA@         *TA@@  
     $ <	   
     $@$$p      e$BA!  
      @DQ      &L2dɓ&H      &L2dɒ 	     `  @  `  	       @     	    8|>	o  	    8(D$Q"	o  	   "     	   @  D         @-"ZUj%@(      0 ܧbQ0        	     bK)C        E
d	 	 	        @ 8$Q"H([ 
     $@$       A@" @>       A"Ȉ @>   
    r I#D 
   $$J     	 n  	 n 8R`      8|      aJǂ   @B  	     pD"CD  	     pD"UCD       ')"c`08       
@          
A    	     b>] 	     "1t#w       ! @ I        ! @ I        Ɇ      Ɇ     1x  	    <~~< q 
              "QE  @          p DU
T,E       p EU
T,U  
     a      ` `aa` `      >&RĈ     Y        	       !1s    @      A'Q      A'Qʄ      A *AQ@0       !!A!B s      wp 	      A\       tc  
     D""!JF0  
    (BJC      F!Z@! @!    
    Db#;@"PD       ! @ A        A    X       @@         p D! dI!A        
    Fh!?   	     !     1(b`08  	     !            < 
     ?"bx 	     g-`@   	     g-`@  
      B!e64@       P XYMcPP P             q        "$D        " / 	 
   wDb1D"  	 
   wDb1D  	    wDb/E        pDB"O䈄D   
     #)A8      8
PI	""DP 	     wDb?PIDb       $!"	I A8      AS @      8@D @ 0       F(Q1E       F!Z@! "FR1      `4b"@"@       @#      D  |  @> 
     ?@AD  
     ?@AD  
     ?@D_D  
      @_D  
     @_D       9E@8ĸ      9E@8ĸ 	 
    L8h     p;p8      P$PQ"(P@      @(AD@
@       0`      08@         08@ ?                   F!Z@! @!       F!Z@! @!       A0*AP@0       Mb"8         0A      A  UB@0       "DH         "DH        tcQ\ 	     (A@@PD        DI @       @D @ 
      "$"              `4b"@"@      `4b"@"Q       @"@       ?8        /!B         DI#      (B'\ @ @ @      (B'\ @      (B'\ @ @       @@DH`      08@ @       (B'\ @            ptDb#  D 
     p" P!  
     p"(P)       @@          @@         @T@            *.N          0 .?].$`       q$G H      pp%!?!%  	     bFc1r       "aFB2Q*!Q 
     ` 
      ` $p 
    $d 
 	     `$  	     aH$   	     aH$   	     aH$  	     aH$  
    *j 
    "b 
    *
j 
    *
j      1 (`
@F08       tk!>      tk!>      AS(PB 	     b1~#      0d 	     }G ]       ( P
#       ( P
#      ttt @ @      D  "D>> 	     ]E ]      ttt @      p:!c1t       	 H.?].$`  
     D"|  
     D"|       Hw@Hw@ @      Hw@Hw@P      (@ "A,?         PAAWPQE  	   <BB<BBB<  	   <BB<BB< 	       @? 
     $	`( 	     !@? 
     $	d(  	   z zax      <B@@<BB< q      1J   |       1J   |       # .3#    
     0.,0       # .3#   
     0.,0      >!!>!!>   
     ?(J(
 
     ?(J
  	   }Ld| 	     0	1 Xp      b#;v!  	 
     D	D@@ 	     D	D ?      =E@8      p$HP?@͜ـ 
     "	BP&N  	     dI&[v @       B 0, ,0 @      !
QJ)B2!J)E(B       
P(R       1J         1J         cC`0 
               	     "B!R      p:!bp8     p:!bp8  H      #8        @Æ1 0        @Æ10  	     P Xp 	     X
@Xp       D!
 0D       D!JX 4D 
 	   (_(_   	   !'! 	     `0    	     `0@  Q 	     `0  I  	              E@          E@"         E@"        E@"       <B ? @       <BA ?D @       <BQ?@       <B?(@       09@   |       09@  |       09@@  |       09@  |       09@  $  
     d&Id&Id$ 	     @P(=      09@*       ! @pQ
                 !     B$$B      uiaKW        2, 9 	     ]B!D]            z        v 9         (qDJ"QE1@
      L2`      a$BAH%`       \  |  	     B&?      D@H"$Df`       ! @         ""HI@  
     ?ȓ$         B#t  @  @   
     p""EN ` 	     ]
       	     pD"@P L 	     pD#8       BD	$$H               &)1 	     fM @ A       ! 
     E"      `4b"@"J      q$G"Dp    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    B b  
  !?v     B b  
  !?v   
    zA!      zFb^  
            
     p@      #1  
  zZe  
    PP  
    x(aC   0Aǀ      `4 `  /  
    ABH"x      AB$H 
 
  dADQEG 
     dyDQy  
    hi      hn  
    fYeYe      fYgYY  
     *hѣD      gg  
    1$      1(a  
    |A$      |?  
     *hѣ|      *h 
     PT$*E @  	     **I    ZZZP    ZZZP    ! " " B 
 	  ?E!C   
    ?!" " " B       ?D   
    A@@@      0A!   
    zaa      zm^  
     }5`      }`  
    yaama      yama    F Asֵb8sb8           (( 
P   

(                       <  <   P  	    SP{    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    
     	     
     	      """BB     @$HB    z`@^    iD"  
    x0I(# J$      x@JHH!  
     &L-       &L@     $$$FI  
  8Q"H       
     
      @        @    
(PB  
  
(P9     @   
   @8 
 
    dAG @ 
     dA  
    bH (a      df1     9A>  
   9A>    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     x    x     x     x                     
    I$  
    &I$  
    $I$  
    $M$  
    $I4  
    I$  
    $  
    K$  
    I%  
    I$  
      
      
      
      
         &     H      >     ~     #B     !	                    
             B      ``  
    {        wA    aaF    .aI     @   <       B    
    z(bh   
    taB  
    ʘ!I  
  ʟ!I     (HK1  
   (H	I2      !B      z^  
    0ĒI(aaa      ya߆a7]  
    1Jaa^      yaa^  
    2Jaa^      zaa7]  
    8) (E       x0(ec  
    8) (E       x(B'Hd    8) (E H   
  x0(ec`  
    zA4a      zM4^  
     C"$D  
     AE$D  
    )(
  
    
  
     C"$T  
     AE$T  
     A  
    '  
     A @  
    aB'  
     <BBBBBBB<       <BBBBB<       up  	     up  
    yaaaa      yaaa  
     |
   
   \
(X  
     ~P  
   yP  
     N))  
   J))))
    y
(PZP  
  u(P: 
   x!JaJ@( 
 
  tF(   
    zAA      zA8     y @  
  r %@  
     III22"TT       JILL    aF  
  &L2d    z |!8ax    d \       AHPx     CERQ@       @$(Q<A     AEa  
    c)R       e*b  
    tB!  
  tB!      I"     I (@  
    1(aA	  
  1(aA	     1(ed     @@@(BHw     `  @!?   
  $$)!II2~    
  @B(D~   	      BA @    
  @)~         @D	      
     8#       8(PB	      a^  
         
  aB       ! G"'       9Q8!  
  r(qC  
    AA  
    B!  
    (P   
  (      !B!   
  !B   
     A @Bx       A    1(@     <                   ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  
    A|A  
    ~a|A  
    a      B!	  
     AAA(((EE  
     0 P `  
           @     "@  
     "$ !                   
     @@@@@@@     "  
    "`"# . 2      
    &`*3 "            
    @@@@@@@ @    
     @@@ @@@    	  i`  
     @ @@@@@    
     `    
      !!          
      & *(2(HH   
     @ @    
       	 
    
      	` @  
      	
@
@	    
     @ @@@@@@    
      `+           
        @ 0  
      0P      
     `          
     ` ! " $ ( 0      
    @ApBHDPH`PP`H@@    
     @ @@@ @ @    
       %         
    @`  
  
 
     
     `                   `         
      `    @  
     0P     
     ` ! " $ (1 "   
   """!     dB                                 /""""     i  	   i`  	   `4d`    	 	   cJe,`S)c     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP 
   đ$ID$I @ @ 
   Bhk&  
   `Xo\4 @ 
        
    `@0 
      b!p @ 
    ?   
   f!` @ 
    ",(   
   A \  
     Ì  @ 
    NE	=@0 @ 
   @$	@`@0 
   $	@`@0 
   '	``@0 
   DABIR3 @ 
   q`%8@ @ 
   1`-8@ @ 
   ADAG @         
    ?   
   ` "   
   b!b!X$@0 
      @ 
    H H|$	@% 
   `BB 
   H$QBQd`$E	B0 
      @0H2@ @ 
   QԥIJR)JLP 0 
    @ O%1@0 
       (*`  
   !A @ 
     HB@ 
   F!d1`X  
   F!g&g& 
    @#1"DQBA 
   `61h   
    h      
      @0XA @ 
    `
̌ @ 
   DADLQD@   
   "B    
   @  @P    
    !ȊB0    
   b!b!~$@0 
   ` "   
    @#1"DQB @ 
    @#1"HTA 
    @ x@ 0 
        	    A  
   Ady``    ҚSJiM0C 
   	  
           ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     V  	   V@ 	 	    6$@G~  
 	    6D| H
~  	 	    cJiF
|  	 	    cJiF
|  	 	    JI$	x  	 	    ),	x 	 	    LdPK~  
 	    L$!H
~  	 	    wDb0G  	    wDb0GC 	 	    ? `iL<8  	 	    ? `4Vr0 	 	    ? `*V\<  	 	    ? g)2d>  	 	    ? g4Y,&j< 	 	    ? d(>1  	   NQ  	    IT$da 	 	    gDb1F#s  	 	    bJPFT*#s  	 	    @`7MC  	 	    aIT"
|  	 	    cJh
|  	 	    wDb0C)c  	 	    wDe4Z,#)I  	 	    <!"RT~E$L  	 	     FC~  	 	    > 0>  	 	    >  	 	    B$*B  	 	    > 2Y-
9  	 	    > 00  	   f!Bh( 	 	    xB!	| 	 	    cJh0~  	 	    =!`H%H"  	 	    CPD""8  	 	    HD">  	 	    \@G
  
 	    M&AdAa 	 	    ldqG  	 	    CPT""8  	 	    B	  	 	    wDb0c  	 	    @PDA@@P(  	 	    9"a2	c  	 	    aIt(,9  	 	    HڦR(F	  	 	    *>  	 	    kJe0f   	   q  	 
  T"0   	  z     q @ P@  	 	  WZ!E   
 	  hP  	 
  ue1p   	 9T8Q:  	   nR 	   7$R)U*)@ @  	   iQ@  	 
  T")0  	 
  dЄ0  	 
  R.  	 	  5EQE  	   4h-$   
     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  	     	     	   <BB<  	   tb  	   |"  	   9Fax  	   Tb*1p 	 	   bA!DB!   	   zB0  	   JYc  	   !DiH  	   (<    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  	     	      	 	   PH"!P(  	 	     	 	   l8  
 	        
 	   `x&	 
 	   ` 
 	        	    @ `  	   DPd   	     	 	   h8  	       	   ? "XP  
 	   qDQC`@ 	 	   Fl8($
   	      	   ̔ 
 	    @` 
 	   ` |   	   h	 	 	   ~@P	  	   0 "h. 	 	      	         	   ІCa!x   	   ІB@ 
 	    `  	      	 	   ph88/   	   cc  0 
 	   l  	    x  
 	   `Xfa@  	   0  	   ;           	    0`                  @~    H~ 
    h  	     	   )$@@  	   ! @@  	   DDB""  	   1*D@ 	 	   	F)    	   1ERI$QEa  	   H( 	 	       	    ( ART  	 	   
"KE   	   @RP!     	   TDB       	   AJ! B@   	   AJ! b	@  
 	   EH%Db   	    P"U 
 	   E!8!"   	    P	A  
 	   D!!"P   
   @DIR2$  	   5QR"U%R@  	   TDB "   	 	   DC!                       
  "                        `   
  L   
           U     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP 
 
    dRd     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  	   8i2   	   ȁ(*   	   8C     D'"J0	  
 	   sA"  
 	   V@x%  	 	   wDb0$    	   l4dS$p%H
  
 	   ;F P8   	   ad!      	   p*#, D	@p     p*#, D	@p$I   	   p&$`x@0   	   bTRUD1I"(A  	   qRb P   	   a)*Is  	   3&(( Q    3&(( Q(@     3&(( S	(
@#  
 	   ;F, 0   	   ph!    	   qF(P
@p  
 	   cEJ@`   	   p4Bb@B)	01     p4Bb@B)	01      p4Bb@B)	00	 0   	   	 `   	   phH    	    "$DHH@K*H`  	   `&DA   	   `DH@A@   	   `DTB P@     ` %	 %@    ` %A	@   	   `DRB H@  	 	   D! Ba `   	   9 $@0   
    `4$	@  	   8Di@"    	   1 	 `   	   ""a
T	 `    	  td    	  8A    	  8L      8Ed   
            i  
   d
(t    
  &"       	 
 H"     YR  @R    l    %U     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP 	 	   wDb0
	  
 	   ;F`(
r   	   pE`I@   
    	   p葉QH$0 
 	   ;Fl,$2   	   p:!Q	$𤤒d1   	   Da   	   `DRA HD  
 	   !Z)Db   	   9  Dq   	   8(UCIHH$@@   
       iQ$@    ZZZP    ZZZP  	   <BB< 
 	   ?3 @       px@HDTQ'   	   91	 H@JD%p  	    `BD
|!8   	   y
A@F 	 	   D! Ba `  
   !Z)Df     p葉QH$1"P    `B"B"D"P    ZZZP    ZZZP 
    !ALH!  	     	     	   &L"D    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     '@B!0 @       pB   @       pB @B       pB  
c       p"` "         pB ?        pB C       pB         pB        pB }!C       pB })HC       pB z _C       pB |@"C       pB {P       pB {JP       pB x_PC       pBC       pB@"C       pBDB"C       pB @1       pB   Rc       pB@       pB        pB        pB        pB         pB !       pB@ @A      			     IO	        IO	  !    IO	  T0    IO0	  @ ?    IO	  @>0    IO	  BDB;    IO	  @ ?    IO	  ?    IO	 }A|<    IO	 }Q}<    IO	 }_}<    IO	 |@D|D
=    IO	 }P}<    IO	 }J|
=    IO	 |@_|<    IO	 @?    IO	 @?    IO	 DDD|DJ=    IO	   `p    IO	  0    IO	 @    IO	   pp    IO	   pp    IO	       IO	   ?    IO	     IO	       'pB!0 @       @B   @       @B @B       @B  
c       @"` "         @B ?        @B C       @B         @B        @B }!C       @B })HC       @B z _C       @B |@"C       @B {P       @B {JP       @B x_PC       @BC       @B@"C       @BDB"C       @B @1       @B   Rc       @B@       @B        @B        @B        @B         @B !       @B@ @A      		     II        II  !    II  T0    II0	  @ ?    II  @>0    II  BDB;    II  @ ?    II  ?    II }A|<    II }Q}<    II }_}<    II |@D|D
=    II }P}<    II }J|
=    II |@_|<    II @?    II @?    II DDD|DJ=    II   `p    II  0    II @    II   pp    II   pp    II       II   ?    II     II       ?BA&      DB0x       DB0x B     " >!  T0     D"F (       " >!  @>0     " >!  BDB;     DB0x       DB0x      DB0x }     DB0x }     DB0x z!}     " >!  |@D|D
=     DB0x {A     DB0x {)      DB0x x}!     DB0x      DB0x@/      " >! DDD|DJ=     " >!   `p     " >!  0     DB0x	 !     DB0x      DB0x      DB0x      DB0x      DB0xBG     " >!        _PPQRP P    PEP}SP        PEP}SP  !    PEP}SP  T0    PEP]P0\ T @ ?    PEP}SP  @>0    PEP}SP  BDB;    PEP}SP  @ ?    PEP]SP  ?    PEP]SP }A|<    PEP]SP }Q}<    PEP]SP }_}<    PEP]SP |@D|D
=    PEP]SP }P}<    PEP]SP }J|
=    PEP]SP |@_|<    PEP}SP @?    PEP}SP @?    PEP}SP DDD|DJ=    PEP}SP   `p    PEP}SP  0    PEP}SP @    PEP}SP   pp    PEP]SP   pp    PEP}SP       PEP]SP   ?    PEP}SP     PEP]SP       ?BAO&      DB3       DB3 B     ""!  T0     D" (       ""!  @>0     ""!  BDB;     DB3       DB3      DB3 }     DB3 }     DB3 z!}     ""!  |@D|D
=     DB3 {A     DB3 {)      DB3 x}!     DB3      DB3@/      ""! DDD|DJ=     ""!   `p     ""!  0     DB3	 !     DB3      DB3      DB3      DB3      DB3BG     ""!        _PPQ=RP P    PEES=P        PEES=P  !    PEES=P  T0    PEEP0\ T @ ?    PEES=P  @>0    PEES=P  BDB;    PEES=P  @ ?    PEES=P  ?    PEES=P }A|<    PEES=P }Q}<    PEES=P }_}<    PEES=P |@D|D
=    PEES=P }P}<    PEES=P }J|
=    PEES=P |@_|<    PEES=P @?    PEES=P @?    PEES=P DDD|DJ=    PEES=P   `p    PEES=P  0    PEES=P @    PEES=P   pp    PEES=P   pp    PEES=P       PEES=P   ?    PEES=P     PEES=P             B@@                       B          T0          @ ?         @>0         BDB;         @ ?         ?        }B|$<         }R}$<        z z$"9        |@D|D
=        {{ 9        {yD;        xyD"9         @$?         ?         D|DJ=           `p         0        @"          p         p          '            ?                     # H@ $ ? @      	 H"q	   @      	 H"q	 @B      	 H"q	  
c      	 H"A	 "       	 H"q	 ?       	 H"q	 C      	 H"q	        	 H"q	      	 H"q	}!C      	 H"q	{QC      	 H"q	z _C      	 H"q	|@"C      	 H"q	{P      	 H"q	{JP      	 H"q	x_PC      	 H"q	 C      	 H"q	@"C      	 H"q	DB"C      	 H"q	 @1      	 H"q	   Rc      	 H"q	 C      	 H"q	       	 H"q	      	 H"q	        	 H"q	       	 H"q	  !      	 H"q	D @A      )))$		     II(		       II(		 A    II(		 T0    II$	 @ ?    II(		 @>0    II(		 BDB;    II(		 @ ?    II(		 ?    II(		}A|<    II(		}Q}<    II(		}_}<    II(		|@D|D
=    II(		}P}<    II(		}J|
=    II(		|@_|<    II(		 @?    II(		 ?    II(		DGDDJ=    II(		  `p    II(		 0    II(		 @?    II(		  pp    II(		 pp    II(		       II(		  ?    II(		 @    II(	I      /@H"     $$       $$ B     !!" T0     $$ (       !!" @>0     !!" BDB;     $$        $$     $$}     $${E     $$z!}     !!"|@D|D
=     $${A     $${)      $$x}!     $$       $$@(     !!"DDD|DJ=     !!"  `p     !!" 0     $$       $$      $$     $$       $$     $$ BG     !!""           !A     !!           !!   B      !!  T0     !!   @ ?     !!  @>0     !!  BDB;     !!  @ ?     !!  ?     !! }B|$<      !! }R}$<     !! z z$"9     !! |@D|D
=     !! {{ 9     !! {yD;     !! xyD"9     !!  @$?     !!  ?     !!  D|DJ=     !!    `p     !!  0     !! @"     !!   p     !!  p     !!   '       !!   ?     !!      !!                     @             @   B        @  T0          @ ?       @  @>0       @  BDB;       @  @ ?       @   ?       @  }B|$<        @  }R}$<       @  z z$"9       @  |@D|D
=       @  {{ 9       @  {yD;       @  xyD"9       @  @$?       @  B$?       @  FDD|DJ=       @    `p       @  0       @  @$?       @   p       @   p       @   '         @    ?       @         @  B     /@!<     ~ DDx      ~ DDx B    ~ " B / T0     $A	      ~ " B / @>0    ~ " B / BDB;    ~ DDx       ~ DDx    ~ DDx}    ~ DDx{E    ~ DDxz!}    ~ " B /|@D|D
=    ~ DDx{A    ~ DDx{)     ~ DDxx}!    ~ DDx      ~ DDx@(    ~ " B /DDD|DJ=    ~ " B /  `p    ~ " B / 0    ~ DDx      ~ DDx     ~ DDx    ~ DDx      ~ DDx    ~ DDx BG    ~ " B /"      _PEPE_Q=QP    P%PE _       P%PE _ A    P%PE _ T0    PEPE_Q=U@ ?    P%PE _ @>0    P%PE _ BDB;    P%PE _ @ ?    ~P%PE _ ?    ~P%PE _}A|<    ~P%PE _}Q}<    ~P%PE _}_}<    ~P%PE _|@D|D
=    ~P%PE _}P}<    ~P%PE _}J|
=    ~P%PE _|@_|<    P%PE _ @?    P%PE _ ?    P%PE _DGDDJ=    P%PE _  `p    P%PE _ 0    P%PE _ @?    P%PE _  pp    ~P%PE _ pp    P%PE _       ~P%PE _  ?    P%PE _ @    ~P%PE _E      /@!     ~ DD      ~ DD B    ~ " B /! T0     $A)      ~ " B /! @>0    ~ " B /! BDB;    ~ DD       ~ DD    ~ DD}    ~ DD{E    ~ DDz!}    ~ " B /!|@D|D
=    ~ DD{A    ~ DD{)     ~ DDx}!    ~ DD      ~ DD@(    ~ " B /!DDD|DJ=    ~ " B /!  `p    ~ " B /! 0    ~ DD      ~ DD     ~ DD    ~ DD      ~ DD    ~ DD BG    ~ " B /!"                 @            @  B        @ T0        @ ?       @ @>0       @ BDB;       @ @ ?       @  ?       @ }B|$<        @ }R}$<       @ z z$"9       @ |@D|D
=       @ {{ 9       @ {yD;       @ xyD"9       @ @$?       @ P?       @ TD|DJ=       @  `p       @ 0       @ @$?       @  p       @  p       @  '         @   ?       @        @ B             @        @              @    B        @   T0           @ ?       @   @>0       @   BDB;       @   @ ?       @   ?       @  }B|$<        @  }R}$<       @  z z$"9       @  |@D|D
=       @  {{ 9       @  {yD;       @  xyD"9       @   @$?       @  @$?       @  DDD|DJ=       @    `p       @   0       @   @$?       @    p       @   p       @    '         @    ?       @          @  B     /@H	      $       $ B       " T0     $ (         " @>0       " BDB;     $        $     $}     ${E     $z!}       "|@D|D
=     ${A     ${)      $x}!     $       $@(       "DDD|DJ=       "  `p       " 0     $       $      $     $       $     $ BG       ""      ?BAA&      DB0x       DB0x B     " "!  T0     D"F (       " "!  @>0     " "!  BDB;     DB0x       DB0x      DB0x }     DB0x }     DB0x z!}     " "!  |@D|D
=     DB0x {A     DB0x {)      DB0x x}!     DB0x      DB0x@(     " "! DDD|DJ=     " "!   `p     " "!  0     DB0x	 !     DB0x      DB0x      DB0x      DB0x      DB0xBG     " "!        'H"AD$""! @      H"q0   @      H"q0 @B      H"q0  
c      H"r"        H"q0 ?       H"q0 C      H"q0        H"q0       H"q0 }!C      H"q0 })HC      H"q0 z _C      H"q0 |@"C      H"q0 {P      H"q0 {JP      H"q0 x_PC      H"q0C      H"q0@"C      H"q0DB"C      H"q0 @1      H"q0   Rc      H"q0@      H"q0       H"q0       H"q0       H"q0        H"q0 !      H"q0@ @A      $I$O$IH	     I$O$        I$O$  !    I$O$  T0    I$O$	  @ ?    I$O$  @>0    I$O$  BDB;    I$O$  @ ?    I$O$  ?    I$O$ }A|<    I$O$ }Q}<    I$O$ }_}<    I$O$ |@D|D
=    I$O$ }P}<    I$O$ }J|
=    I$O$ |@_|<    I$O$ @?    I$O$ @?    I$O$ DDD|DJ=    I$O$   `p    I$O$  0    I$O$ @    I$O$   pp    I$O$   pp    I$O$       I$O$   ?    I$O$     I$O$       'H"qD'""! @      N"A0   @      N"A0 @B      N"A0  
c      N"B"        N"A0 ?       N"A0 C      N"A0        N"A0       N"A0 }!C      N"A0 })HC      N"A0 z _C      N"A0 |@"C      N"A0 {P      N"A0 {JP      N"A0 x_PC      N"A0C      N"A0@"C      N"A0DB"C      N"A0 @1      N"A0   Rc      N"A0@      N"A0       N"A0       N"A0       N"A0        N"A0 !      N"A0@ @A      $O$I$OH	     I$I$        I$I$  !    I$I$  T0    I$I$	  @ ?    I$I$  @>0    I$I$  BDB;    I$I$  @ ?    I$I$  ?    I$I$ }A|<    I$I$ }Q}<    I$I$ }_}<    I$I$ |@D|D
=    I$I$ }P}<    I$I$ }J|
=    I$I$ |@_|<    I$I$ @?    I$I$ @?    I$I$ DDD|DJ=    I$I$   `p    I$I$  0    I$I$ @    I$I$   pp    I$I$   pp    I$I$       I$I$   ?    I$I$     I$I$       ?D#I	"(F    "$DDs      "$DDs B    !!""  T0    "$DDP!(      !!""  @>0    !!""  BDB;    "$DDs      "$DDs     "$DDs }    "$DDs }    "$DDs z!}    !!""  |@D|D
=    "$DDs {A    "$DDs {)     "$DDs x}!    "$DDs     "$DDs@/     !!"" DDD|DJ=    !!""   `p    !!""  0    "$DDs	 !    "$DDs     "$DDs     "$DDs     "$DDs     "$DDsBG    !!""        _$RE$R]$TEHXP P    RE$R}$TP        RE$R}$TP  !    RE$R}$TP  T0    RE$R]$TQ T @ ?    RE$R}$TP  @>0    RE$R}$TP  BDB;    RE$R}$TP  @ ?    RE$R]$TP  ?    RE$R]$TP }A|<    RE$R]$TP }Q}<    RE$R]$TP }_}<    RE$R]$TP |@D|D
=    RE$R]$TP }P}<    RE$R]$TP }J|
=    RE$R]$TP |@_|<    RE$R}$TP @?    RE$R}$TP @?    RE$R}$TP DDD|DJ=    RE$R}$TP   `p    RE$R}$TP  0    RE$R}$TP @    RE$R}$TP   pp    RE$R]$TP   pp    RE$R}$TP       RE$R]$TP   ?    RE$R}$TP     RE$R]$TP       ?D"DI"(F    "$GDs      "$GDs B    !"  T0    "$GEЌ!(      !"  @>0    !"  BDB;    "$GDs      "<DDs     "<DDs }    "<DDs }    "<DDs z!}    !!"  |@D|D
=    "<DDs {A    "<DDs {)     "<DDs x}!    "$GDs     "$GDs@/     !" DDD|DJ=    !"   `p    !"  0    "$GDs	 !    "$GDs     "<DDs     "$GDs     "<DDs     "$GDsBG    !!"        _$RE%E$T]HXP P    R]$RE%ԅP        R]$RE%ԅP  !    R]$RE%ԅP  T0    RE%E$TQ T @ ?    R]$RE%ԅP  @>0    R]$RE%ԅP  BDB;    R]$RE%ԅP  @ ?    R]$RE%ԅP  ?    R]$RE%ԅP }A|<    R]$RE%ԅP }Q}<    R]$RE%ԅP }_}<    R]$RE%ԅP |@D|D
=    R]$RE%ԅP }P}<    R]$RE%ԅP }J|
=    R]$RE%ԅP |@_|<    R]$RE%ԅP @?    R]$RE%ԅP @?    R]$RE%ԅP DDD|DJ=    R]$RE%ԅP   `p    R]$RE%ԅP  0    R]$RE%ԅP @    R]$RE%ԅP   pp    R]$RE%ԅP   pp    R]$RE%ԅP       R]$RE%ԅP   ?    R]$RE%ԅP     R]$RE%ԅP        B B B @      @            @    B      @   T0    B B
@    @ ?     @   @>0     @   BDB;     @   @ ?    B B
@   ?    B B
@  }B|$<     B B
@  }R}$<    B B
@  z z$"9    B B
@  |@D|D
=    B B
@  {{ 9    B B
@  {yD;    B B
@  xyD"9     @   @$?     @   ?     @   D|DJ=     @     `p     @   0     @  @"     @    p    B B
@   p     @    '      B B
@    ?     @      B B
@       'H"ADD A? @     !	HBD   @     !	HBD @B     !	HBD  
c      H"B "      !	HBD ?      !	HBD C     !	HBD        H"B      H"B}!C      H"B{QC      H"Bz _C      H"B|`"C      H"B{P      H"B{JP      H"Bx_PC     !	HBD C     !	HBD@"C     !	HBDDB"C     !	HBD @1     !	HBD   Rc     !	HBD C     !	HBD       H"B#     !	HBD        H"B      !	HBD  !      H"BD @A      $I$I$IX		     I$IX		       I$IX		 A    I$IX		 T0    I$I$	 @ ?    I$IX		 @>0    I$IX		 BDB;    I$IX		 @ ?    I$IX		 ?    I$IX		}A|<    I$IX		}Q}<    I$IX		}_}<    I$IX		|@D|D
=    I$IX		}P}<    I$IX		}J|
=    I$IX		|@_|<    I$IX		 @?    I$IX		 ?    I$IX		DGDDJ=    I$IX		  `p    I$IX		 0    I$IX		 @?    I$IX		  pp    I$IX		 pp    I$IX		       I$IX		  ?    I$IX		 @    I$IX	I      ?D"DIQ!    $$      $$ B    "!"J  T0    "$D (      "!"J  @>0    "!"J  BDB;    $$       "$D    "$D}    "$D{E    "$Dz!}    !!* |@D|D
=    "$D{A    "$D{)     "$Dx}!    $$      $$@(    "!"J DDD|DJ=    "!"J   `p    "!"J  0    $$      $$     "$D    $$      "$D    $$ BG    !!* "       B B B!                   B        T0    B B   @ ?       @>0       BDB;       @ ?    B B  ?    B B }B|$<     B B }R}$<    B B z z$"9    B B |@D|D
=    B B {{ 9    B B {yD;    B B xyD"9       @$?       ?       D|DJ=         `p       0      @"        p    B B  p        '      B B   ?          B B     B B          B B@          B B@   B     B B@  T0    B B@   @ ?    B B@  @>0    B B@  BDB;    B B@  @ ?    B B@   ?    B B@  }B|$<     B B@  }R}$<    B B@  z z$"9    B B@  |@D|D
=    B B@  {{ 9    B B@  {yD;    B B@  xyD"9    B B@  @$?    B B@  B$?    B B@  FDD|DJ=    B B@    `p    B B@  0    B B@  @$?    B B@   p    B B@   p    B B@   '      B B@    ?    B B@      B B@  B     ?DD@!<     "$DBxA      "$DBxA B    !"" /	 T0    "$D" A	      !"" /	 @>0    !"" /	 BDB;    "$DBxA       "$DBxA    "$DBxA}    "$DBxA{E    "$DBxAz!}    !"" /	|@D|D
=    "$DBxA{A    "$DBxA{)     "$DBxAx}!    "$DBxA      "$DBxA@(    !"" /	DDD|DJ=    !"" /	  `p    !"" /	 0    "$DBxA      "$DBxA     "$DBxA    "$DBxA      "$DBxA    "$DBxA BG    !"" /	      _$RE$T _Q=QP    RE$REH_       RE$REH_ A    RE$REH_ T0    RE$REH_Q=T@ ?    RE$REH_ @>0    RE$REH_ BDB;    RE$REH_ @ ?    RE$REH_ ?    RE$REH_}A|<    RE$REH_}Q}<    RE$REH_}_}<    RE$REH_|@D|D
=    RE$REH_}P}<    RE$REH_}J|
=    RE$REH_|@_|<    RE$REH_ @?    RE$REH_ ?    RE$REH_DGDDJ=    RE$REH_  `p    RE$REH_ 0    RE$REH_ @?    RE$REH_  pp    RE$REH_ pp    RE$REH_       RE$REH_  ?    RE$REH_ @    RE$REH_E      ?DD@!     "$DBA      "$DBA B    !"" /  T0    "$D" A)      !"" /  @>0    !"" /  BDB;    "$DBA       "$DBxA    "$DBxA}    "$DBxA{E    "$DBxAz!}    !"" /	|@D|D
=    "$DBxA{A    "$DBxA{)     "$DBxAx}!    "$DBA      "$DBA@(    !"" / DDD|DJ=    !"" /   `p    !"" /  0    "$DBA      "$DBA     "$DBxA    "$DBA      "$DBxA    "$DBA BG    !"" /	     B B      B B@         B B@  B     B B@ T0    B B@ @ ?    B B@ @>0    B B@ BDB;    B B@ @ ?    B B@  ?    B B@ }B|$<     B B@ }R}$<    B B@ z z$"9    B B@ |@D|D
=    B B@ {{ 9    B B@ {yD;    B B@ xyD"9    B B@ @$?    B B@ P?    B B@ TD|DJ=    B B@  `p    B B@ 0    B B@ @$?    B B@  p    B B@  p    B B@  '      B B@   ?    B B@     B B@ B      B B B @     B B@           B B@    B     B B@   T0    B B@    @ ?    B B@   @>0    B B@   BDB;    B B@   @ ?    B B@   ?    B B@  }B|$<     B B@  }R}$<    B B@  z z$"9    B B@  |@D|D
=    B B@  {{ 9    B B@  {yD;    B B@  xyD"9    B B@   @$?    B B@  @$?    B B@  DDD|DJ=    B B@    `p    B B@   0    B B@   @$?    B B@    p    B B@   p    B B@    '      B B@    ?    B B@       B B@  B     ?D"DI      $$"       $$"  B    "!"B  T0    "$D"  (      "!"B  @>0    "!"B  BDB;    $$"        "$D"     "$D" }    "$D" {E    "$D" z!}    !!" |`D|D
=    "$D" {A    "$D" {)     "$D" x}!    $$"       $$" @(    "!"B DDD|DJ=    "!"B   `p    "!"B  0    $$"       $$"      "$D" /    $$"       "$D"     $$"  BG    !!" "      ?D"DI	"(F    "$DDs      "$DDs B    !!""  T0    "$DDP!(      !!""  @>0    !!""  BDB;    "$DDs      "$DDs     "$DDs }    "$DDs }    "$DDs z!}    !!""  |@D|D
=    "$DDs {A    "$DDs {)     "$DDs x}!    "$DDs     "$DDs@(    !!"" DDD|DJ=    !!""   `p    !!""  0    "$DDs	 !    "$DDs     "$DDs     "$DDs     "$DDs     "$DDsBG    !!""        $ 	 H@ #  @     $ 	 x?    @     $ 	 x?  @B     $ 	 x?   
c     $ 	 x@ "       $ 	 x?  ?      $ 	 x?  C     $ 	 x?        $ 	 x?       $ 	 x?  }!C     $ 	 x?  })HC     $ 	 x?  z _C     $ 	 x?  |@"C     $ 	 x?  {P     $ 	 x?  {JP     $ 	 x?  x_PC     $ 	 x? C     $ 	 x? @"C     $ 	 x? DB"C     $ 	 x?  @1     $ 	 x?    Rc     $ 	 x? @     $ 	 x?       $ 	 x?       $ 	 x?       $ 	 x?        $ 	 x?  !     $ 	 x? @ @A      			 	     	         	   !    	   T0    		~	  @ ?    	   @>0    	   BDB;    	   @ ?    	   ?    	  }A|<    	  }Q}<    	  }_}<    	  |@D|D
=    	  }P}<    	  }J|
=    	  |@_|<    	  @?    	  @?    	  DDD|DJ=    	    `p    	   0    	  @    	    pp    	    pp    	        	    ?    	      	        $ 	 x@ #  @     $  H?    @     $  H?  @B     $  H?   
c     $  H@ "       $  H?  ?      $  H?  C     $  H?        $  H?       $  H?  }!C     $  H?  })HC     $  H?  z _C     $  H?  |@"C     $  H?  {P     $  H?  {JP     $  H?  x_PC     $  H? C     $  H? @"C     $  H? DB"C     $  H?  @1     $  H?    Rc     $  H? @     $  H?       $  H?       $  H?       $  H?        $  H?  !     $  H? @ @A      		 	     		         		   !    		   T0    		~	  @ ?    		   @>0    		   BDB;    		   @ ?    		   ?    		  }A|<    		  }Q}<    		  }_}<    		  |@D|D
=    		  }P}<    		  }J|
=    		  |@_|<    		  @?    		  @?    		  DDD|DJ=    		    `p    		   0    		  @    		    pp    		    pp    		        		    ?    		      		        0 /     0 x@      0 x@ B    (('   T0    0 x _ (      (('   @>0    (('   BDB;    0 x@      0 x@     0 x@ }    0 x@ }    0 x@ z!}    (('   |@D|D
=    0 x@ {A    0 x@ {)     0 x@ x}!    0 x@     0 x@@/     (('  DDD|DJ=    (('    `p    (('   0    0 x@	 !    0 x@     0 x@     0 x@     0 x@     0 x@BG    (('         XXXXW P P    XX=W P        XX=W P  !    XX=W P  T0    XXX~P T @ ?    XX=W P  @>0    XX=W P  BDB;    XX=W P  @ ?    XXW P  ?    XXW P }A|<    XXW P }Q}<    XXW P }_}<    XXW P |@D|D
=    XXW P }P}<    XXW P }J|
=    XXW P |@_|<    XX=W P @?    XX=W P @?    XX=W P DDD|DJ=    XX=W P   `p    XX=W P  0    XX=W P @    XX=W P   pp    XXW P   pp    XX=W P       XXW P   ?    XX=W P     XXW P       0  `/     0@      0@ B    (   T0    0 (      (   @>0    (   BDB;    0@      0 @     0 @ }    0 @ }    0 @ z!}    ((   |@D|D
=    0 @ {A    0 @ {)     0 @ x}!    0@     0@@/     (  DDD|DJ=    (    `p    (   0    0@	 !    0@     0 @     0@     0 @     0@BG    ((         XXXW P P    XX P        XX P  !    XX P  T0    XX~P T @ ?    XX P  @>0    XX P  BDB;    XX P  @ ?    XX P  ?    XX P }A|<    XX P }Q}<    XX P }_}<    XX P |@D|D
=    XX P }P}<    XX P }J|
=    XX P |@_|<    XX P @?    XX P @?    XX P DDD|DJ=    XX P   `p    XX P  0    XX P @    XX P   pp    XX P   pp    XX P       XX P   ?    XX P     XX P        @ @ @         @ @            @ @     B     @ @    T0    @ @     @ ?    @ @    @>0    @ @    BDB;    @ @    @ ?    @ @    ?    @ @   }B|$<     @ @   }R}$<    @ @   z z$"9    @ @   |@D|D
=    @ @   {{ 9    @ @   {yD;    @ @   xyD"9    @ @    @$?    @ @    ?    @ @    D|DJ=    @ @      `p    @ @    0    @ @   @"    @ @     p    @ @    p    @ @     '      @ @     ?    @ @       @ @        "D  A? @     @"~@   @     @"~@ @B     @"~@  
c     @"~@ "      @"~@ ?      @"~@ C     @"~@       @"~@     @"~@}!C     @"~@{QC     @"~@z _C     @"~@|`"C     @"~@{P     @"~@{JP     @"~@x_PC     @"~@ C     @"~@@"C     @"~@DB"C     @"~@ @1     @"~@   Rc     @"~@ C     @"~@      @"~@#     @"~@       @"~@      @"~@  !     @"~@D @A      			|			     			       			 A    			 T0    		|		 @ ?    			 @>0    			 BDB;    			 @ ?    			 ?    			}A|<    			}Q}<    			}_}<    			|@D|D
=    			}P}<    			}J|
=    			|@_|<    			 @?    			 ?    			DGDDJ=    			  `p    			 0    			 @?    			  pp    			 pp    			       			  ?    			 @    		I      ( ~@A!    @(       @(  B    @$@#  T0    @(  (      @$@#  @>0    @$@#  BDB;    @(        @(     @( }    @( {E    @( z!}    @$@# |@D|D
=    @( {A    @( {)     @( x}!    @(       @( @(    @$@# DDD|DJ=    @$@#   `p    @$@#  0    @(       @(      @(     @(       @(     @(  BG    @$@# "       @ @ @     @ @          @ @   B     @ @  T0    @ @   @ ?    @ @  @>0    @ @  BDB;    @ @  @ ?    @ @  ?    @ @ }B|$<     @ @ }R}$<    @ @ z z$"9    @ @ |@D|D
=    @ @ {{ 9    @ @ {yD;    @ @ xyD"9    @ @  @$?    @ @  ?    @ @  D|DJ=    @ @    `p    @ @  0    @ @ @"    @ @   p    @ @  p    @ @   '      @ @   ?    @ @     @ @     @ @ ?          @ @            @ @     B     @ @    T0    @ @     @ ?    @ @    @>0    @ @    BDB;    @ @    @ ?    @ @     ?    @ @    }B|$<     @ @    }R}$<    @ @    z z$"9    @ @    |@D|D
=    @ @    {{ 9    @ @    {yD;    @ @    xyD"9    @ @    @$?    @ @    B$?    @ @    FDD|DJ=    @ @      `p    @ @    0    @ @    @$?    @ @     p    @ @     p    @ @     '      @ @      ?    @ @        @ @    B     ( ~@!<     @( BxA      @( BxA B    @$@# /	 T0    @(  A	      @$@# /	 @>0    @$@# /	 BDB;    @( BxA       @( BxA    @( BxA}    @( BxA{E    @( BxAz!}    @$@# /	|@D|D
=    @( BxA{A    @( BxA{)     @( BxAx}!    @( BxA      @( BxA@(    @$@# /	DDD|DJ=    @$@# /	  `p    @$@# /	 0    @( BxA      @( BxA     @( BxA    @( BxA      @( BxA    @( BxA BG    @$@# /	      XXW _Q=QP    XW _       XW _ A    XW _ T0    XW _Q=T@ ?    XW _ @>0    XW _ BDB;    XW _ @ ?    XW _ ?    XW _}A|<    XW _}Q}<    XW _}_}<    XW _|@D|D
=    XW _}P}<    XW _}J|
=    XW _|@_|<    XW _ @?    XW _ ?    XW _DGDDJ=    XW _  `p    XW _ 0    XW _ @?    XW _  pp    XW _ pp    XW _       XW _  ?    XW _ @    XW _E      ( ~@!     @( BA      @( BA B    @$@# /  T0    @(  A)      @$@# /  @>0    @$@# /  BDB;    @( BA       @( BxA    @( BxA}    @( BxA{E    @( BxAz!}    @$@# /	|@D|D
=    @( BxA{A    @( BxA{)     @( BxAx}!    @( BA      @( BA@(    @$@# / DDD|DJ=    @$@# /   `p    @$@# /  0    @( BA      @( BA     @( BxA    @( BA      @( BxA    @( BA BG    @$@# /	     @ @ ?      @ @           @ @    B     @ @   T0    @ @   @ ?    @ @   @>0    @ @   BDB;    @ @   @ ?    @ @    ?    @ @   }B|$<     @ @   }R}$<    @ @   z z$"9    @ @   |@D|D
=    @ @   {{ 9    @ @   {yD;    @ @   xyD"9    @ @   @$?    @ @   P?    @ @   TD|DJ=    @ @    `p    @ @   0    @ @   @$?    @ @    p    @ @    p    @ @    '      @ @     ?    @ @       @ @   B      @ @ @          @ @             @ @      B     @ @     T0    @ @      @ ?    @ @     @>0    @ @     BDB;    @ @     @ ?    @ @     ?    @ @    }B|$<     @ @    }R}$<    @ @    z z$"9    @ @    |@D|D
=    @ @    {{ 9    @ @    {yD;    @ @    xyD"9    @ @     @$?    @ @    @$?    @ @    DDD|DJ=    @ @      `p    @ @     0    @ @     @$?    @ @      p    @ @     p    @ @      '      @ @      ?    @ @         @ @    B     ( ~@      @(        @(   B    @$@#   T0    @(   (      @$@#   @>0    @$@#   BDB;    @(         @(      @(  }    @(  {E    @(  z!}    @$@#  |`D|D
=    @(  {A    @(  {)     @(  x}!    @(        @(  @(    @$@#  DDD|DJ=    @$@#    `p    @$@#   0    @(        @(       @(  /    @(        @(      @(   BG    @$@#  "      0  `/     0 @      0 @ B    (('   T0    0  _ (      (('   @>0    (('   BDB;    0 @      0 @     0 @ }    0 @ }    0 @ z!}    (('   |@D|D
=    0 @ {A    0 @ {)     0 @ x}!    0 @     0 @@(    (('  DDD|DJ=    (('    `p    (('   0    0 @	 !    0 @     0 @     0 @     0 @     0 @BG    (('         ' 	 H@ #  @     $ 	 x?    @     $ 	 x?  @B     $ 	 x?   
c     $ 	 x@ "       $ 	 x?  ?      $ 	 x?  C     $ 	 x?        $ 	 x?       $ 	 x?  }!C     $ 	 x?  })HC     $ 	 x?  z _C     $ 	 x?  |@"C     $ 	 x?  {P     $ 	 x?  {JP     $ 	 x?  x_PC     $ 	 x? C     $ 	 x? @"C     $ 	 x? DB"C     $ 	 x?  @1     $ 	 x?    Rc     $ 	 x? @     $ 	 x?       $ 	 x?       $ 	 x?       $ 	 x?        $ 	 x?  !     $ 	 x? @ @A      ɀ		 	     	         	   !    	   T0    		|	  @ ?    	   @>0    	   BDB;    	   @ ?    	   ?    	  }A|<    	  }Q}<    	  }_}<    	  |@D|D
=    	  }P}<    	  }J|
=    	  |@_|<    	  @?    	  @?    	  DDD|DJ=    	    `p    	   0    	  @    	    pp    	    pp    	        	    ?    	      	        ' 	 x@ #  @     $  H?    @     $  H?  @B     $  H?   
c     $  H@ "       $  H?  ?      $  H?  C     $  H?        $  H?       $  H?  }!C     $  H?  })HC     $  H?  z _C     $  H?  |@"C     $  H?  {P     $  H?  {JP     $  H?  x_PC     $  H? C     $  H? @"C     $  H? DB"C     $  H?  @1     $  H?    Rc     $  H? @     $  H?       $  H?       $  H?       $  H?        $  H?  !     $  H? @ @A      ɀ	 	     		         		   !    		   T0    		|	  @ ?    		   @>0    		   BDB;    		   @ ?    		   ?    		  }A|<    		  }Q}<    		  }_}<    		  |@D|D
=    		  }P}<    		  }J|
=    		  |@_|<    		  @?    		  @?    		  DDD|DJ=    		    `p    		   0    		  @    		    pp    		    pp    		        		    ?    		      		        ? /     0 x@      0 x@ B    (('   T0    0 x _ (      (('   @>0    (('   BDB;    0 x@      0 x@     0 x@ }    0 x@ }    0 x@ z!}    (('   |@D|D
=    0 x@ {A    0 x@ {)     0 x@ x}!    0 x@     0 x@@/     (('  DDD|DJ=    (('    `p    (('   0    0 x@	 !    0 x@     0 x@     0 x@     0 x@     0 x@BG    (('         _ŀXXXW P P    XX=W P        XX=W P  !    XX=W P  T0    XXX|P T @ ?    XX=W P  @>0    XX=W P  BDB;    XX=W P  @ ?    XXW P  ?    XXW P }A|<    XXW P }Q}<    XXW P }_}<    XXW P |@D|D
=    XXW P }P}<    XXW P }J|
=    XXW P |@_|<    XX=W P @?    XX=W P @?    XX=W P DDD|DJ=    XX=W P   `p    XX=W P  0    XX=W P @    XX=W P   pp    XXW P   pp    XX=W P       XXW P   ?    XX=W P     XXW P       ?  `/     0@      0@ B    (   T0    0 (      (   @>0    (   BDB;    0@      0 @     0 @ }    0 @ }    0 @ z!}    ((   |@D|D
=    0 @ {A    0 @ {)     0 @ x}!    0@     0@@/     (  DDD|DJ=    (    `p    (   0    0@	 !    0@     0 @     0@     0 @     0@BG    ((         _ŀXXW P P    XX P        XX P  !    XX P  T0    XX|P T @ ?    XX P  @>0    XX P  BDB;    XX P  @ ?    XX P  ?    XX P }A|<    XX P }Q}<    XX P }_}<    XX P |@D|D
=    XX P }P}<    XX P }J|
=    XX P |@_|<    XX P @?    XX P @?    XX P DDD|DJ=    XX P   `p    XX P  0    XX P @    XX P   pp    XX P   pp    XX P       XX P   ?    XX P     XX P         @ @          @             @     B      @    T0     @     @ ?     @    @>0     @    BDB;     @    @ ?     @    ?     @   }B|$<      @   }R}$<     @   z z$"9     @   |@D|D
=     @   {{ 9     @   {yD;     @   xyD"9     @    @$?     @    ?     @    D|DJ=     @      `p     @    0     @   @"     @     p     @    p     @     '       @     ?     @        @        #D  A? @     "~@   @     "~@ @B     "~@  
c     "~@ "      "~@ ?      "~@ C     "~@       "~@     "~@}!C     "~@{QC     "~@z _C     "~@|`"C     "~@{P     "~@{JP     "~@x_PC     "~@ C     "~@@"C     "~@DB"C     "~@ @1     "~@   Rc     "~@ C     "~@      "~@#     "~@       "~@      "~@  !     "~@D @A      ɀ		|			     			       			 A    			 T0    		|		 @ ?    			 @>0    			 BDB;    			 @ ?    			 ?    			}A|<    			}Q}<    			}_}<    			|@D|D
=    			}P}<    			}J|
=    			|@_|<    			 @?    			 ?    			DGDDJ=    			  `p    			 0    			 @?    			  pp    			 pp    			       			  ?    			 @    		I      / OA!    (       (  B    $@#  T0    (  (      $@#  @>0    $@#  BDB;    (        (     ( }    ( {E    ( z!}    $@# |@D|D
=    ( {A    ( {)     ( x}!    (       ( @(    $@# DDD|DJ=    $@#   `p    $@#  0    (       (      (     (       (     (  BG    $@# "        @ @      @           @   B      @  T0     @   @ ?     @  @>0     @  BDB;     @  @ ?     @  ?     @ }B|$<      @ }R}$<     @ z z$"9     @ |@D|D
=     @ {{ 9     @ {yD;     @ xyD"9     @  @$?     @  ?     @  D|DJ=     @    `p     @  0     @ @"     @   p     @  p     @   '       @   ?     @      @      @ ?           @             @     B      @    T0     @     @ ?     @    @>0     @    BDB;     @    @ ?     @     ?     @    }B|$<      @    }R}$<     @    z z$"9     @    |@D|D
=     @    {{ 9     @    {yD;     @    xyD"9     @    @$?     @    B$?     @    FDD|DJ=     @      `p     @    0     @    @$?     @     p     @     p     @     '       @      ?     @         @    B     / ~@!<     ( BxA      ( BxA B    $@# /	 T0    (  A	      $@# /	 @>0    $@# /	 BDB;    ( BxA       ( BxA    ( BxA}    ( BxA{E    ( BxAz!}    $@# /	|@D|D
=    ( BxA{A    ( BxA{)     ( BxAx}!    ( BxA      ( BxA@(    $@# /	DDD|DJ=    $@# /	  `p    $@# /	 0    ( BxA      ( BxA     ( BxA    ( BxA      ( BxA    ( BxA BG    $@# /	      _XW _Q=QP    XW _       XW _ A    XW _ T0    XW _Q=T@ ?    XW _ @>0    XW _ BDB;    XW _ @ ?    XW _ ?    XW _}A|<    XW _}Q}<    XW _}_}<    XW _|@D|D
=    XW _}P}<    XW _}J|
=    XW _|@_|<    XW _ @?    XW _ ?    XW _DGDDJ=    XW _  `p    XW _ 0    XW _ @?    XW _  pp    XW _ pp    XW _       XW _  ?    XW _ @    XW _E      / ~@!     ( BA      ( BA B    $@# /  T0    (  A)      $@# /  @>0    $@# /  BDB;    ( BA       ( BxA    ( BxA}    ( BxA{E    ( BxAz!}    $@# /	|@D|D
=    ( BxA{A    ( BxA{)     ( BxAx}!    ( BA      ( BA@(    $@# / DDD|DJ=    $@# /   `p    $@# /  0    ( BA      ( BA     ( BxA    ( BA      ( BxA    ( BA BG    $@# /	      @ ?       @            @    B      @   T0     @   @ ?     @   @>0     @   BDB;     @   @ ?     @    ?     @   }B|$<      @   }R}$<     @   z z$"9     @   |@D|D
=     @   {{ 9     @   {yD;     @   xyD"9     @   @$?     @   P?     @   TD|DJ=     @    `p     @   0     @   @$?     @    p     @    p     @    '       @     ?     @        @   B       @ @           @              @      B      @     T0     @      @ ?     @     @>0     @     BDB;     @     @ ?     @     ?     @    }B|$<      @    }R}$<     @    z z$"9     @    |@D|D
=     @    {{ 9     @    {yD;     @    xyD"9     @     @$?     @    @$?     @    DDD|DJ=     @      `p     @     0     @     @$?     @      p     @     p     @      '       @      ?     @          @    B     / O      (        (   B    $@#   T0    (   (      $@#   @>0    $@#   BDB;    (         (      (  }    (  {E    (  z!}    $@#  |`D|D
=    (  {A    (  {)     (  x}!    (        (  @(    $@#  DDD|DJ=    $@#    `p    $@#   0    (        (       (  /    (        (      (   BG    $@#  "      ?  `/     0 @      0 @ B    (('   T0    0  _ (      (('   @>0    (('   BDB;    0 @      0 @     0 @ }    0 @ }    0 @ z!}    (('   |@D|D
=    0 @ {A    0 @ {)     0 @ x}!    0 @     0 @@(    (('  DDD|DJ=    (('    `p    (('   0    0 @	 !    0 @     0 @     0 @     0 @     0 @BG    (('         '!	HBB$! @     !!	xB9    @     !!	xB9  @B     !!	xB9   
c     !!	xBB΀ "       !!	xB9  ?      !!	xB9  C     !!	xB9        !!	xB9       !!	xB9  }!C     !!	xB9  })HC     !!	xB9  z _C     !!	xB9  |@"C     !!	xB9  {P     !!	xB9  {JP     !!	xB9  x_PC     !!	xB9 C     !!	xB9 @"C     !!	xB9 DB"C     !!	xB9  @1     !!	xB9    Rc     !!	xB9 @     !!	xB9       !!	xB9       !!	xB9       !!	xB9        !!	xB9  !     !!	xB9 @ @A      鈘f	     	         	   !    	   T0    f	  @ ?    	   @>0    	   BDB;    	   @ ?    	   ?    	  }A|<    	  }Q}<    	  }_}<    	  |@D|D
=    	  }P}<    	  }J|
=    	  |@_|<    	  @?    	  @?    	  DDD|DJ=    	    `p    	   0    	  @    	    pp    	    pp    	        	    ?    	      	        '!	xBB$! @     !!HB9    @     !!HB9  @B     !!HB9   
c     !!HBB΀ "       !!HB9  ?      !!HB9  C     !!HB9        !!HB9       !!HB9  }!C     !!HB9  })HC     !!HB9  z _C     !!HB9  |@"C     !!HB9  {P     !!HB9  {JP     !!HB9  x_PC     !!HB9 C     !!HB9 @"C     !!HB9 DB"C     !!HB9  @1     !!HB9    Rc     !!HB9 @     !!HB9       !!HB9       !!HB9       !!HB9        !!HB9  !     !!HB9 @ @A      鈘f	     		         		   !    		   T0    f	  @ ?    		   @>0    		   BDB;    		   @ ?    		   ?    		  }A|<    		  }Q}<    		  }_}<    		  |@D|D
=    		  }P}<    		  }J|
=    		  |@_|<    		  @?    		  @?    		  DDD|DJ=    		    `p    		   0    		  @    		    pp    		    pp    		        		    ?    		      		        >C	!0΀    xB@      xB@ B    B(N':   T0    xC\ (      B(N':   @>0    B(N':   BDB;    xB@      xB@     xB@ }    xB@ }    xB@ z!}    B(N':   |@D|D
=    xB@ {A    xB@ {)     xB@ x}!    xB@     xB@@/     B(N':  DDD|DJ=    B(N':    `p    B(N':   0    xB@	 !    xB@     xB@     xB@     xB@     xB@BG    B(N':         ^XXXXfP P    YY=W P        YY=W P  !    YY=W P  T0    XXXfP T @ ?    YY=W P  @>0    YY=W P  BDB;    YY=W P  @ ?    YYW P  ?    YYW P }A|<    YYW P }Q}<    YYW P }_}<    YYW P |@D|D
=    YYW P }P}<    YYW P }J|
=    YYW P |@_|<    YY=W P @?    YY=W P @?    YY=W P DDD|DJ=    YY=W P   `p    YY=W P  0    YY=W P @    YY=W P   pp    YYW P   pp    YY=W P       YYW P   ?    YY=W P     YYW P       >Oa'0΀    N@      N@ B    BB:   T0    C	 (      BB:   @>0    BB:   BDB;    N@      N@     N@ }    N@ }    N@ z!}    N(B:   |@D|D
=    N@ {A    N@ {)     N@ x}!    N@     N@@/     BB:  DDD|DJ=    BB:    `p    BB:   0    N@	 !    N@     N@     N@     N@     N@BG    N(B:         ^X؅XXfP P    YY P        YY P  !    YY P  T0    X؅XfP T @ ?    YY P  @>0    YY P  BDB;    YY P  @ ?    YY P  ?    YY P }A|<    YY P }Q}<    YY P }_}<    YY P |@D|D
=    YY P }P}<    YY P }J|
=    YY P |@_|<    YY P @?    YY P @?    YY P DDD|DJ=    YY P   `p    YY P  0    YY P @    YY P   pp    YY P   pp    YY P       YY P   ?    YY P     YY P        }AA         }A            }A     B     }A    T0     B     @ ?    }A    @>0    }A    BDB;    }A    @ ?     B    ?     B   }B|$<      B   }R}$<     B   z z$"9     B   |@D|D
=     B   {{ 9     B   {yD;     B   xyD"9    }A    @$?    }A    ?    }A    D|DJ=    }A      `p    }A    0    }A   @"    }A     p     B    p    }A     '       B     ?    }A        B        '!	HBB A? @     !!@   @     !!@ @B     !!@  
c     !!@ "      !!@ ?      !!@ C     !!@       !!@     !!@}!C     !!@{QC     !!@z _C     !!@|`"C     !!@{P     !!@{JP     !!@x_PC     !!@ C     !!@@"C     !!@DB"C     !!@ @1     !!@   Rc     !!@ C     !!@      !!@#     !!@       !!@      !!@  !     !!@D @A      鈘f			     i		       i		 A    i		 T0    		~		 @ ?    i		 @>0    i		 BDB;    i		 @ ?    i		 ?    i		}A|<    i		}Q}<    i		}_}<    i		|@D|D
=    i		}P}<    i		}J|
=    i		|@_|<    i		 @?    i		 ?    i		DGDDJ=    i		  `p    i		 0    i		 @?    i		  pp    i		 pp    i		       i		  ?    i		 @    i	I      >C\A!    Ђ      Ђ B    B':  T0    Ђ (      B':  @>0    B':  BDB;    Ђ       Ђ    Ђ}    Ђ{E    Ђz!}    B': |@D|D
=    Ђ{A    Ђ{)     Ђx}!    Ђ      Ђ@(    B': DDD|DJ=    B':   `p    B':  0    Ђ      Ђ     Ђ    Ђ      Ђ    Ђ BG    B': "       }AA     }A          }A   B     }A  T0     B   @ ?    }A  @>0    }A  BDB;    }A  @ ?     B  ?     B }B|$<      B }R}$<     B z z$"9     B |@D|D
=     B {{ 9     B {yD;     B xyD"9    }A  @$?    }A  ?    }A  D|DJ=    }A    `p    }A  0    }A @"    }A   p     B  p    }A   '       B   ?    }A      B      B ?           B             B     B      B    T0     B     @ ?     B    @>0     B    BDB;     B    @ ?     B     ?     B    }B|$<      B    }R}$<     B    z z$"9     B    |@D|D
=     B    {{ 9     B    {yD;     B    xyD"9     B    @$?     B    B$?     B    FDD|DJ=     B      `p     B    0     B    @$?     B     p     B     p     B     '       B      ?     B         B    B     >B@!<     BxA      BxA B    B': /	 T0     A	      B': /	 @>0    B': /	 BDB;    BxA       BxA    BxA}    BxA{E    BxAz!}    B': /	|@D|D
=    BxA{A    BxA{)     BxAx}!    BxA      BxA@(    B': /	DDD|DJ=    B': /	  `p    B': /	 0    BxA      BxA     BxA    BxA      BxA    BxA BG    B': /	      ^XVe _Q=QP    XVe _       XVe _ A    XVe _ T0    YW _Q=T@ ?    XVe _ @>0    XVe _ BDB;    XVe _ @ ?    XVe _ ?    XVe _}A|<    XVe _}Q}<    XVe _}_}<    XVe _|@D|D
=    XVe _}P}<    XVe _}J|
=    XVe _|@_|<    XVe _ @?    XVe _ ?    XVe _DGDDJ=    XVe _  `p    XVe _ 0    XVe _ @?    XVe _  pp    XVe _ pp    XVe _       XVe _  ?    XVe _ @    XVe _E      >B@!     BA      BA B    B': /  T0     A)      B': /  @>0    B': /  BDB;    BA       BxA    BxA}    BxA{E    BxAz!}    B': /	|@D|D
=    BxA{A    BxA{)     BxAx}!    BA      BA@(    B': / DDD|DJ=    B': /   `p    B': /  0    BA      BA     BxA    BA      BxA    BA BG    B': /	      B ?       B            B    B      B   T0     B   @ ?     B   @>0     B   BDB;     B   @ ?     B    ?     B   }B|$<      B   }R}$<     B   z z$"9     B   |@D|D
=     B   {{ 9     B   {yD;     B   xyD"9     B   @$?     B   P?     B   TD|DJ=     B    `p     B   0     B   @$?     B    p     B    p     B    '       B     ?     B        B   B      }AA           B              B      B      B     T0     B      @ ?     B     @>0     B     BDB;     B     @ ?     B     ?     B    }B|$<      B    }R}$<     B    z z$"9     B    |@D|D
=     B    {{ 9     B    {yD;     B    xyD"9     B     @$?     B    @$?     B    DDD|DJ=     B      `p     B     0     B     @$?     B      p     B     p     B      '       B      ?     B          B    B     >C\               B    B':   T0      (      B':   @>0    B':   BDB;                  }     {E     z!}    B':  |`D|D
=     {A     {)      x}!            @(    B':  DDD|DJ=    B':    `p    B':   0                  /                  BG    B':  "      >Ca!0΀    B@      B@ B    B(B':   T0    C\ (      B(B':   @>0    B(B':   BDB;    B@      B@     B@ }    B@ }    B@ z!}    B(B':   |@D|D
=    B@ {A    B@ {)     B@ x}!    B@     B@@(    B(B':  DDD|DJ=    B(B':    `p    B(B':   0    B@	 !    B@     B@     B@     B@     B@BG    B(B':         ' @" $ @       x@   @       x@ @B       x@  
c       x@  "         x@ ?        x@ C       x@         x@        x@ }!C       x@ })HC       x@ z _C       x@ |@"C       x@ {P       x@ {JP       x@ x_PC       x@C       x@@"C       x@DB"C       x@ @1       x@   Rc       x@@       x@        x@        x@        x@         x@ !       x@@ @A      Iπ		|	     Iπ	|        Iπ	|  !    Iπ	|  T0    Iπ	  @ ?    Iπ	|  @>0    Iπ	|  BDB;    Iπ	|  @ ?    Iπ	|  ?    Iπ	| }A|<    Iπ	| }Q}<    Iπ	| }_}<    Iπ	| |@D|D
=    Iπ	| }P}<    Iπ	| }J|
=    Iπ	| |@_|<    Iπ	| @?    Iπ	| @?    Iπ	| DDD|DJ=    Iπ	|   `p    Iπ	|  0    Iπ	| @    Iπ	|   pp    Iπ	|   pp    Iπ	|       Iπ	|   ?    Iπ	|     Iπ	|       ' p" $ @       H@   @       H@ @B       H@  
c       H@  "         H@ ?        H@ C       H@         H@        H@ }!C       H@ })HC       H@ z _C       H@ |@"C       H@ {P       H@ {JP       H@ x_PC       H@C       H@@"C       H@DB"C       H@ @1       H@   Rc       H@@       H@        H@        H@        H@         H@ !       H@@ @A      Oɀ	|	     Iɀ|        Iɀ|  !    Iɀ|  T0    Iɀ  @ ?    Iɀ|  @>0    Iɀ|  BDB;    Iɀ|  @ ?    Iɀ|  ?    Iɀ| }A|<    Iɀ| }Q}<    Iɀ| }_}<    Iɀ| |@D|D
=    Iɀ| }P}<    Iɀ| }J|
=    Iɀ| |@_|<    Iɀ| @?    Iɀ| @?    Iɀ| DDD|DJ=    Iɀ|   `p    Iɀ|  0    Iɀ| @    Iɀ|   pp    Iɀ|   pp    Iɀ|       Iɀ|   ?    Iɀ|     Iɀ|       ?#0     Dx _       Dx _ B     "/(~  T0     Dx ` (       "/(~  @>0     "/(~  BDB;     Dx _       Dx _      Dx _ }     Dx _ }     Dx _ z!}     "/(~  |@D|D
=     Dx _ {A     Dx _ {)      Dx _ x}!     Dx _      Dx _@/      "/(~ DDD|DJ=     "/(~   `p     "/(~  0     Dx _	 !     Dx _      Dx _      Dx _      Dx _      Dx _BG     "/(~        _PE_݀XX|P P    PE_݀X|P        PE_݀X|P  !    PE_݀X|P  T0    PE_݀XW T @ ?    PE_݀X|P  @>0    PE_݀X|P  BDB;    PE_݀X|P  @ ?    PE_݀X|P  ?    PE_݀X|P }A|<    PE_݀X|P }Q}<    PE_݀X|P }_}<    PE_݀X|P |@D|D
=    PE_݀X|P }P}<    PE_݀X|P }J|
=    PE_݀X|P |@_|<    PE_݀X|P @?    PE_݀X|P @?    PE_݀X|P DDD|DJ=    PE_݀X|P   `p    PE_݀X|P  0    PE_݀X|P @    PE_݀X|P   pp    PE_݀X|P   pp    PE_݀X|P       PE_݀X|P   ?    PE_݀X|P     PE_݀X|P       ?/`0     D _       D _ B     "~  T0     D (       "~  @>0     "~  BDB;     D _       D߈      D߈ }     D߈ }     D߈ z!}     "(~  |@D|D
=     D߈ {A     D߈ {)      D߈ x}!     D _      D _@/      "~ DDD|DJ=     "~   `p     "~  0     D _	 !     D _      D߈      D _      D߈      D _BG     "(~        _PEŀXX|P P    P]_Ł|P        P]_Ł|P  !    P]_Ł|P  T0    PEŀXW T @ ?    P]_Ł|P  @>0    P]_Ł|P  BDB;    P]_Ł|P  @ ?    PEŀX|P  ?    PEŀX|P }A|<    PEŀX|P }Q}<    PEŀX|P }_}<    PEŀX|P |@D|D
=    PEŀX|P }P}<    PEŀX|P }J|
=    PEŀX|P |@_|<    P]_Ł|P @?    P]_Ł|P @?    P]_Ł|P DDD|DJ=    P]_Ł|P   `p    P]_Ł|P  0    P]_Ł|P @    P]_Ł|P   pp    PEŀX|P   pp    P]_Ł|P       PEŀX|P   ?    P]_Ł|P     PEŀX|P         '@ ?        @          @  B      @ T0     @  @ ?     @ @>0     @ BDB;     @ @ ?     ?   ?     ?  }B|$<      ?  }R}$<     ?  z z$"9     ?  |@D|D
=     ?  {{ 9     ?  {yD;     ?  xyD"9     @ @$?     @ ?     @ DD|DJ=     @  `p     @ 0     @ @$?     @  p     ?   p     @  '       ?    ?     @      ?        # HG   A? @      	ȀD  #  @      	ȀD  #@B      	ȀD  # 
c      	ȀC  "       	ȀD  "?       	ȀD  C      	ȀD  #       	ȀC      	ȀC}!C      	ȀC{QC      	ȀCz _C      	ȀC|@"C      	ȀC{P      	ȀC{JP      	ȀCx_PC      	ȀD  #C      	ȀD @"C      	ȀD Db"C      	ȀD  @1      	ȀD    Rc      	ȀD  !C      	ȀD  #      	ȀC      	ȀD  #       	ȀC       	ȀD  # !      	ȀCD @A      )			     I	       I	 A    I	 T0    I	  @ ?    I	 @>0    I	 BDB;    I	 @ ?    I	|	 ?    I	|	}A|<    I	|	}Q}<    I	|	}_}<    I	|	|@D|D
=    I	|	}P}<    I	|	}J|
=    I	|	|@_|<    I	 @?    I	 ?    I	DDDJ=    I	 `p    I	 0    I	 @?    I	  pp    I	|	 pp    I	       I	|	  ?    I	 @    I	|I      /P	!     %~B /      %~B /B     $@#/ 'T0     %B (       $@#/ $@>0     $@#/ BDB;     %~B /       %     %}     %{E     %z!}     $? |@D|D
=     %{A     %{)      %x}!     %~B /      %~B@(     $@#/DdD|DJ=     $@#/  `p     $@#/ !0     %~B '      %~B /     %     %~B /      %     %~B /BG     $? "        '@ ?     @          @  B      @ T0     @  @ ?     @ @>0     @ BDB;     @ @ ?     ?  ?     ? }B|$<      ? }R}$<     ? z z$"9     ? |@D|D
=     ? {{ 9     ? {yD;     ? xyD"9     @ @$?     @ ?     @ DD|DJ=     @  `p     @ 0     @ @$?     @  p     ?  p     @  '       ?   ?     @      ?       @          @          @  B      @ T0     ?   B ?     @ @>0     @ BDB;     @ @ ?     ?   ?     ?  }B|$<      ?  {z$"9     ?  z z$"9     ?  |@D|D
=     ?  {{ 9     ?  {yD;     ?  xyD"9     @ @$?     @ B$?     @ FDD|DJ=     @   `p     @ 0     @ @$?     @  p     ?   p     @  '       ?    ?     @      ?        /~@!<      %s A/      %s A/B     $? 'T0     %s @)       $? $@>0     $? BDB;     %s A/       %s A     %s A}     %s A{E     %s Az!}     $? |@D|D
=     %s A{A     %s A{)      %s Ax}!     %s A/      %s AH(     $? LdD|DJ=     $? 
  `p     $? !0     %s A'      %s A/     %s A     %s A/      %s A     %s A/BG     $?       __W _Q=QP    ~P%~T>PQW      ~P%~T>PQWA    ~P%~T>PQWT0    PEX|P _U@ ?    ~P%~T>PQT@>0    ~P%~T>PQBDB;    ~P%~T>PQW@ ?    ~P%~T>PQ ?    ~P%~T>PQ}A|<    ~P%~T>PQ}Q}<    ~P%~T>PQ}_}<    ~P%~T>PQ|@D|D
=    ~P%~T>PQ}P}<    ~P%~T>PQ}J|
=    ~P%~T>PQ|@_|<    ~P%~T>PQW@?    ~P%~T>PQT?    ~P%~T>PQTWDDJ=    ~P%~T>PQP `p    ~P%~T>PQQ0    ~P%~T>PQS@?    ~P%~T>PQW pp    ~P%~T>PQ pp    ~P%~T>PQW      ~P%~T>PQ  ?    ~P%~T>PQW@    ~P%~T>PQE      /~@!      % A/      % A/B     $? 'T0     % @)       $? $@>0     $? BDB;     % A/       % A     % A}     % A{E     % Az!}     $? |@D|D
=     % A{A     % A{)      % Ax}!     % A/      % AH(     $? LdD|DJ=     $? 
  `p     $? !0     % A'      % A/     % A     % A/      % A     % A/BG     $?       @      @          @  B      @ T0     ?  H ?     @ @>0     @ BDB;     @ @ ?     ?  ?     ? }B|$<      ? {z$"9     ? z z$"9     ? |@D|D
=     ? {{ 9     ? {yD;     ? xyD"9     @ @$?     @ P
?     @ TL|DJ=     @ (`p     @ 0     @ @$?     @  p     ?  p     @  '       ?   ?     @      ? (        '@ ?         @           @   B      @  T0     ?    @ ?     @  @>0     @  BDB;     @  @ ?     ?   ?     ?  }B|$<      ?  {z$"9     ?  z z$"9     ?  |@D|D
=     ?  {{ 9     ?  {yD;     ?  xyD"9     @  @$?     @ @$?     @ DDD|DJ=     @   `p     @  0     @  @$?     @   p     ?   p     @   '       ?    ?     @       ?        /P	       %~@ /      %~@ /B     $@# / 'T0     % @ (       $@# / $@>0     $@# / BDB;     %~@ /       %      % }     % {E     % z!}     $? |@D|D
=     % {A     % {)      % x}!     %~@ /      %~@@(     $@# /DdD|DJ=     $@# /  `p     $@# / !0     %~@ '      %~@ /     %      %~@ /      %      %~@ /BG     $? "      ?#`0     D _       D _ B     "/(~  T0     D ` (       "/(~  @>0     "/(~  BDB;     D _       D _      D _ }     D _ }     D _ z!}     "/(~  |@D|D
=     D _ {A     D _ {)      D _ x}!     D _      D _@(     "/(~ DDD|DJ=     "/(~   `p     "/(~  0     D _	 !     D _      D _      D _      D _      D _BG     "/(~        ' H"AD#  @     $ x"?    @     $ x"?  @B     $ x"?   
c     $ x"A "       $ x"?  ?      $ x"?  C     $ x"?        $ x"?       $ x"?  }!C     $ x"?  })HC     $ x"?  z _C     $ x"?  |@"C     $ x"?  {P     $ x"?  {JP     $ x"?  x_PC     $ x"? C     $ x"? @"C     $ x"? DB"C     $ x"?  @1     $ x"?    Rc     $ x"? @     $ x"?       $ x"?       $ x"?       $ x"?        $ x"?  !     $ x"? @ @A      ɄIOI 	     IO         IO   !    IO   T0    IOI|	  @ ?    IO   @>0    IO   BDB;    IO   @ ?    IO   ?    IO  }A|<    IO  }Q}<    IO  }_}<    IO  |@D|D
=    IO  }P}<    IO  }J|
=    IO  |@_|<    IO  @?    IO  @?    IO  DDD|DJ=    IO    `p    IO   0    IO  @    IO    pp    IO    pp    IO        IO    ?    IO      IO        ' x"AG#  @     $ H"?    @     $ H"?  @B     $ H"?   
c     $ H"A "       $ H"?  ?      $ H"?  C     $ H"?        $ H"?       $ H"?  }!C     $ H"?  })HC     $ H"?  z _C     $ H"?  |@"C     $ H"?  {P     $ H"?  {JP     $ H"?  x_PC     $ H"? C     $ H"? @"C     $ H"? DB"C     $ H"?  @1     $ H"?    Rc     $ H"? @     $ H"?       $ H"?       $ H"?       $ H"?        $ H"?  !     $ H"? @ @A      ɄOIO 	     II         II   !    II   T0    IIO|	  @ ?    II   @>0    II   BDB;    II   @ ?    II   ?    II  }A|<    II  }Q}<    II  }_}<    II  |@D|D
=    II  }P}<    II  }J|
=    II  |@_|<    II  @?    II  @?    II  DDD|DJ=    II    `p    II   0    II  @    II    pp    II    pp    II        II    ?    II      II        ?#/     0Fx"@      0Fx"@ B    ("(.'   T0    0Fx#_ (      ("(.'   @>0    ("(.'   BDB;    0Fx"@      0Fx"@     0Fx"@ }    0Fx"@ }    0Fx"@ z!}    ("(.'   |@D|D
=    0Fx"@ {A    0Fx"@ {)     0Fx"@ x}!    0Fx"@     0Fx"@@/     ("(.'  DDD|DJ=    ("(.'    `p    ("(.'   0    0Fx"@	 !    0Fx"@     0Fx"@     0Fx"@     0Fx"@     0Fx"@BG    ("(.'         _ńXEX]XEW P P    XEX}W P        XEX}W P  !    XEX}W P  T0    XEX]XE|P T @ ?    XEX}W P  @>0    XEX}W P  BDB;    XEX}W P  @ ?    XEX]W P  ?    XEX]W P }A|<    XEX]W P }Q}<    XEX]W P }_}<    XEX]W P |@D|D
=    XEX]W P }P}<    XEX]W P }J|
=    XEX]W P |@_|<    XEX}W P @?    XEX}W P @?    XEX}W P DDD|DJ=    XEX}W P   `p    XEX}W P  0    XEX}W P @    XEX}W P   pp    XEX]W P   pp    XEX}W P       XEX]W P   ?    XEX}W P     XEX]W P       ?/`/     0F.@      0F.@ B    (""   T0    0F#߈ (      (""   @>0    (""   BDB;    0F.@      0^.@     0^.@ }    0^.@ }    0^.@ z!}    (.("   |@D|D
=    0^.@ {A    0^.@ {)     0^.@ x}!    0F.@     0F.@@/     (""  DDD|DJ=    (""    `p    (""   0    0F.@	 !    0F.@     0^.@     0F.@     0^.@     0F.@BG    (.("         _ńXEEX]W P P    X]XE P        X]XE P  !    X]XE P  T0    XEEX]|P T @ ?    X]XE P  @>0    X]XE P  BDB;    X]XE P  @ ?    X]XE P  ?    X]XE P }A|<    X]XE P }Q}<    X]XE P }_}<    X]XE P |@D|D
=    X]XE P }P}<    X]XE P }J|
=    X]XE P |@_|<    X]XE P @?    X]XE P @?    X]XE P DDD|DJ=    X]XE P   `p    X]XE P  0    X]XE P @    X]XE P   pp    X]XE P   pp    X]XE P       X]XE P   ?    X]XE P     X]XE P        @$@#         @#            @#     B     @#    T0    @#     @ ?    @#    @>0    @#    BDB;    @#    @ ?    @#    ?    @#   }B|$<     @#   }R}$<    @#   z z$"9    @#   |@D|D
=    @#   {{ 9    @#   {yD;    @#   xyD"9    @#    @$?    @#    ?    @#    D|DJ=    @#      `p    @#    0    @#   @"    @#     p    @#    p    @#     '      @#     ?    @#       @#        #HD  A? @     "	H~@   @     "	H~@ @B     "	H~@  
c     "	H~@ "      "	H~@ ?      "	H~@ C     "	H~@       "	H~@     "	H~@}!C     "	H~@{QC     "	H~@z _C     "	H~@|`"C     "	H~@{P     "	H~@{JP     "	H~@x_PC     "	H~@ C     "	H~@@"C     "	H~@DB"C     "	H~@ @1     "	H~@   Rc     "	H~@ C     "	H~@      "	H~@#     "	H~@       "	H~@      "	H~@  !     "	H~@D @A      ɄII|			     I		       I		 A    I		 T0    II|		 @ ?    I		 @>0    I		 BDB;    I		 @ ?    I		 ?    I		}A|<    I		}Q}<    I		}_}<    I		|@D|D
=    I		}P}<    I		}J|
=    I		|@_|<    I		 @?    I		 ?    I		DGDDJ=    I		  `p    I		 0    I		 @?    I		  pp    I		 pp    I		       I		  ?    I		 @    I	I      /OA!    (%      (% B    $A#  T0    (% (      $A#  @>0    $A#  BDB;    (%       (%    (%}    (%{E    (%z!}    $A# |@D|D
=    (%{A    (%{)     (%x}!    (%      (%@(    $A# DDD|DJ=    $A#   `p    $A#  0    (%      (%     (%    (%      (%    (% BG    $A# "       @$@#     @#          @#   B     @#  T0    @#   @ ?    @#  @>0    @#  BDB;    @#  @ ?    @#  ?    @# }B|$<     @# }R}$<    @# z z$"9    @# |@D|D
=    @# {{ 9    @# {yD;    @# xyD"9    @#  @$?    @#  ?    @#  D|DJ=    @#    `p    @#  0    @# @"    @#   p    @#  p    @#   '      @#   ?    @#     @#     @$?          @#            @#     B     @#    T0    @#     @ ?    @#    @>0    @#    BDB;    @#    @ ?    @#     ?    @#    }B|$<     @#    }R}$<    @#    z z$"9    @#    |@D|D
=    @#    {{ 9    @#    {yD;    @#    xyD"9    @#    @$?    @#    B$?    @#    FDD|DJ=    @#      `p    @#    0    @#    @$?    @#     p    @#     p    @#     '      @#      ?    @#        @#    B     /~@!<     (%BxA      (%BxA B    $A# /	 T0    (% A	      $A# /	 @>0    $A# /	 BDB;    (%BxA       (%BxA    (%BxA}    (%BxA{E    (%BxAz!}    $A# /	|@D|D
=    (%BxA{A    (%BxA{)     (%BxAx}!    (%BxA      (%BxA@(    $A# /	DDD|DJ=    $A# /	  `p    $A# /	 0    (%BxA      (%BxA     (%BxA    (%BxA      (%BxA    (%BxA BG    $A# /	      _X%W _Q=QP    ~T%BS _       ~T%BS _ A    ~T%BS _ T0    XEW _Q=T@ ?    ~T%BS _ @>0    ~T%BS _ BDB;    ~T%BS _ @ ?    ~T%BS _ ?    ~T%BS _}A|<    ~T%BS _}Q}<    ~T%BS _}_}<    ~T%BS _|@D|D
=    ~T%BS _}P}<    ~T%BS _}J|
=    ~T%BS _|@_|<    ~T%BS _ @?    ~T%BS _ ?    ~T%BS _DGDDJ=    ~T%BS _  `p    ~T%BS _ 0    ~T%BS _ @?    ~T%BS _  pp    ~T%BS _ pp    ~T%BS _       ~T%BS _  ?    ~T%BS _ @    ~T%BS _E      /~@!     (%BA      (%BA B    $A# /  T0    (% A)      $A# /  @>0    $A# /  BDB;    (%BA       (%BxA    (%BxA}    (%BxA{E    (%BxAz!}    $A# /	|@D|D
=    (%BxA{A    (%BxA{)     (%BxAx}!    (%BA      (%BA@(    $A# / DDD|DJ=    $A# /   `p    $A# /  0    (%BA      (%BA     (%BxA    (%BA      (%BxA    (%BA BG    $A# /	     @$?      @#           @#    B     @#   T0    @#   @ ?    @#   @>0    @#   BDB;    @#   @ ?    @#    ?    @#   }B|$<     @#   }R}$<    @#   z z$"9    @#   |@D|D
=    @#   {{ 9    @#   {yD;    @#   xyD"9    @#   @$?    @#   P?    @#   TD|DJ=    @#    `p    @#   0    @#   @$?    @#    p    @#    p    @#    '      @#     ?    @#       @#   B      @$@#          @#             @#      B     @#     T0    @#      @ ?    @#     @>0    @#     BDB;    @#     @ ?    @#     ?    @#    }B|$<     @#    }R}$<    @#    z z$"9    @#    |@D|D
=    @#    {{ 9    @#    {yD;    @#    xyD"9    @#     @$?    @#    @$?    @#    DDD|DJ=    @#      `p    @#     0    @#     @$?    @#      p    @#     p    @#      '      @#      ?    @#         @#    B     /O      (%       (%  B    $A#   T0    (%  (      $A#   @>0    $A#   BDB;    (%        (%     (% }    (% {E    (% z!}    $A#  |`D|D
=    (% {A    (% {)     (% x}!    (%       (% @(    $A#  DDD|DJ=    $A#    `p    $A#   0    (%       (%      (% /    (%       (%     (%  BG    $A#  "      ?#`/     0F"@      0F"@ B    ("("'   T0    0F#_ (      ("("'   @>0    ("("'   BDB;    0F"@      0F"@     0F"@ }    0F"@ }    0F"@ z!}    ("("'   |@D|D
=    0F"@ {A    0F"@ {)     0F"@ x}!    0F"@     0F"@@(    ("("'  DDD|DJ=    ("("'    `p    ("("'   0    0F"@	 !    0F"@     0F"@     0F"@     0F"@     0F"@BG    ("("'         $!!	OB#  @     $?x"?    @     $?x"?  @B     $?x"?   
c     $?x"A "       $?x"?  ?      $?x"?  C     $?x"?        $?x"?       $?x"?  }!C     $?x"?  })HC     $?x"?  z _C     $?x"?  |@"C     $?x"?  {P     $?x"?  {JP     $?x"?  x_PC     $?x"? C     $?x"? @"C     $?x"? DB"C     $?x"?  @1     $?x"?    Rc     $?x"? @     $?x"?       $?x"?       $?x"?       $?x"?        $?x"?  !     $?x"? @ @A       	     IO         IO   !    IO   T0    IOI|	  @ ?    IO   @>0    IO   BDB;    IO   @ ?    IO   ?    IO  }A|<    IO  }Q}<    IO  }_}<    IO  |@D|D
=    IO  }P}<    IO  }J|
=    IO  |@_|<    IO  @?    IO  @?    IO  DDD|DJ=    IO    `p    IO   0    IO  @    IO    pp    IO    pp    IO        IO    ?    IO      IO        $!!	B#  @     $?H"?    @     $?H"?  @B     $?H"?   
c     $?H"A "       $?H"?  ?      $?H"?  C     $?H"?        $?H"?       $?H"?  }!C     $?H"?  })HC     $?H"?  z _C     $?H"?  |@"C     $?H"?  {P     $?H"?  {JP     $?H"?  x_PC     $?H"? C     $?H"? @"C     $?H"? DB"C     $?H"?  @1     $?H"?    Rc     $?H"? @     $?H"?       $?H"?       $?H"?       $?H"?        $?H"?  !     $?H"? @ @A       	     II         II   !    II   T0    IIO|	  @ ?    II   @>0    II   BDB;    II   @ ?    II   ?    II  }A|<    II  }Q}<    II  }_}<    II  |@D|D
=    II  }P}<    II  }J|
=    II  |@_|<    II  @?    II  @?    II  DDD|DJ=    II    `p    II   0    II  @    II    pp    II    pp    II        II    ?    II      II        0	!/     0Gx"@      0Gx"@ B    ("(.'   T0    0Gx#_ (      ("(.'   @>0    ("(.'   BDB;    0Gx"@      0Gx"@     0Gx"@ }    0Gx"@ }    0Gx"@ z!}    ("(.'   |@D|D
=    0Gx"@ {A    0Gx"@ {)     0Gx"@ x}!    0Gx"@     0Gx"@@/     ("(.'  DDD|DJ=    ("(.'    `p    ("(.'   0    0Gx"@	 !    0Gx"@     0Gx"@     0Gx"@     0Gx"@     0Gx"@BG    ("(.'         XXXXW P P    XEX}W P        XEX}W P  !    XEX}W P  T0    XEX]XE|P T @ ?    XEX}W P  @>0    XEX}W P  BDB;    XEX}W P  @ ?    XEX]W P  ?    XEX]W P }A|<    XEX]W P }Q}<    XEX]W P }_}<    XEX]W P |@D|D
=    XEX]W P }P}<    XEX]W P }J|
=    XEX]W P |@_|<    XEX}W P @?    XEX}W P @?    XEX}W P DDD|DJ=    XEX}W P   `p    XEX}W P  0    XEX}W P @    XEX}W P   pp    XEX]W P   pp    XEX}W P       XEX]W P   ?    XEX}W P     XEX]W P       0a'/     0G.@      0G.@ B    (""   T0    0G#߈ (      (""   @>0    (""   BDB;    0G.@      0_.@     0_.@ }    0_.@ }    0_.@ z!}    (.("   |@D|D
=    0_.@ {A    0_.@ {)     0_.@ x}!    0G.@     0G.@@/     (""  DDD|DJ=    (""    `p    (""   0    0G.@	 !    0G.@     0_.@     0G.@     0_.@     0G.@BG    (.("         XX؅XW P P    X]XE P        X]XE P  !    X]XE P  T0    XEEX]|P T @ ?    X]XE P  @>0    X]XE P  BDB;    X]XE P  @ ?    X]XE P  ?    X]XE P }A|<    X]XE P }Q}<    X]XE P }_}<    X]XE P |@D|D
=    X]XE P }P}<    X]XE P }J|
=    X]XE P |@_|<    X]XE P @?    X]XE P @?    X]XE P DDD|DJ=    X]XE P   `p    X]XE P  0    X]XE P @    X]XE P   pp    X]XE P   pp    X]XE P       X]XE P   ?    X]XE P     X]XE P        @$@$?       @'@#            @'@#     B     @'@#    T0    @'@#     @ ?    @'@#    @>0    @'@#    BDB;    @'@#    @ ?    @'@#    ?    @'@#   }B|$<     @'@#   }R}$<    @'@#   z z$"9    @'@#   |@D|D
=    @'@#   {{ 9    @'@#   {yD;    @'@#   xyD"9    @'@#    @$?    @'@#    ?    @'@#    D|DJ=    @'@#      `p    @'@#    0    @'@#   @"    @'@#     p    @'@#    p    @'@#     '      @'@#     ?    @'@#       @'@#        "	HD  A? @     A#H~@   @     A#H~@ @B     A#H~@  
c     A#H~@ "      A#H~@ ?      A#H~@ C     A#H~@       A#H~@     A#H~@}!C     A#H~@{QC     A#H~@z _C     A#H~@|`"C     A#H~@{P     A#H~@{JP     A#H~@x_PC     A#H~@ C     A#H~@@"C     A#H~@DB"C     A#H~@ @1     A#H~@   Rc     A#H~@ C     A#H~@      A#H~@#     A#H~@       A#H~@      A#H~@  !     A#H~@D @A      IɄI		     Ʉ		       Ʉ		 A    Ʉ		 T0    II|		 @ ?    Ʉ		 @>0    Ʉ		 BDB;    Ʉ		 @ ?    Ʉ		 ?    Ʉ		}A|<    Ʉ		}Q}<    Ʉ		}_}<    Ʉ		|@D|D
=    Ʉ		}P}<    Ʉ		}J|
=    Ʉ		|@_|<    Ʉ		 @?    Ʉ		 ?    Ʉ		DGDDJ=    Ʉ		  `p    Ʉ		 0    Ʉ		 @?    Ʉ		  pp    Ʉ		 pp    Ʉ		       Ʉ		  ?    Ʉ		 @    Ʉ	I      (%PI!    A/      A/ B    A'A#  T0    A/ (      A'A#  @>0    A'A#  BDB;    A/       A/    A/}    A/{E    A/z!}    A'A# |@D|D
=    A/{A    A/{)     A/x}!    A/      A/@(    A'A# DDD|DJ=    A'A#   `p    A'A#  0    A/      A/     A/    A/      A/    A/ BG    A'A# "       @$@$?    @'@#          @'@#   B     @'@#  T0    @'@#   @ ?    @'@#  @>0    @'@#  BDB;    @'@#  @ ?    @'@#  ?    @'@# }B|$<     @'@# }R}$<    @'@# z z$"9    @'@# |@D|D
=    @'@# {{ 9    @'@# {yD;    @'@# xyD"9    @'@#  @$?    @'@#  ?    @'@#  D|DJ=    @'@#    `p    @'@#  0    @'@# @"    @'@#   p    @'@#  p    @'@#   '      @'@#   ?    @'@#     @'@#     @$@#         @'@#            @'@#     B     @'@#    T0    @'@#     @ ?    @'@#    @>0    @'@#    BDB;    @'@#    @ ?    @'@#     ?    @'@#    }B|$<     @'@#    }R}$<    @'@#    z z$"9    @'@#    |@D|D
=    @'@#    {{ 9    @'@#    {yD;    @'@#    xyD"9    @'@#    @$?    @'@#    B$?    @'@#    FDD|DJ=    @'@#      `p    @'@#    0    @'@#    @$?    @'@#     p    @'@#     p    @'@#     '      @'@#      ?    @'@#        @'@#    B     (%~@!<     A/BxA      A/BxA B    A'A# /	 T0    A/ A	      A'A# /	 @>0    A'A# /	 BDB;    A/BxA       A/BxA    A/BxA}    A/BxA{E    A/BxAz!}    A'A# /	|@D|D
=    A/BxA{A    A/BxA{)     A/BxAx}!    A/BxA      A/BxA@(    A'A# /	DDD|DJ=    A'A# /	  `p    A'A# /	 0    A/BxA      A/BxA     A/BxA    A/BxA      A/BxA    A/BxA BG    A'A# /	      X%_W _Q=QP    BWBS _       BWBS _ A    BWBS _ T0    _ńW _Q=T@ ?    BWBS _ @>0    BWBS _ BDB;    BWBS _ @ ?    BWBS _ ?    BWBS _}A|<    BWBS _}Q}<    BWBS _}_}<    BWBS _|@D|D
=    BWBS _}P}<    BWBS _}J|
=    BWBS _|@_|<    BWBS _ @?    BWBS _ ?    BWBS _DGDDJ=    BWBS _  `p    BWBS _ 0    BWBS _ @?    BWBS _  pp    BWBS _ pp    BWBS _       BWBS _  ?    BWBS _ @    BWBS _E      (%~@!     A/BA      A/BA B    A'A# /  T0    A/ A)      A'A# /  @>0    A'A# /  BDB;    A/BA       A/BxA    A/BxA}    A/BxA{E    A/BxAz!}    A'A# /	|@D|D
=    A/BxA{A    A/BxA{)     A/BxAx}!    A/BA      A/BA@(    A'A# / DDD|DJ=    A'A# /   `p    A'A# /  0    A/BA      A/BA     A/BxA    A/BA      A/BxA    A/BA BG    A'A# /	     @$@#     @'@#           @'@#    B     @'@#   T0    @'@#   @ ?    @'@#   @>0    @'@#   BDB;    @'@#   @ ?    @'@#    ?    @'@#   }B|$<     @'@#   }R}$<    @'@#   z z$"9    @'@#   |@D|D
=    @'@#   {{ 9    @'@#   {yD;    @'@#   xyD"9    @'@#   @$?    @'@#   P?    @'@#   TD|DJ=    @'@#    `p    @'@#   0    @'@#   @$?    @'@#    p    @'@#    p    @'@#    '      @'@#     ?    @'@#       @'@#   B      @$@$?        @'@#             @'@#      B     @'@#     T0    @'@#      @ ?    @'@#     @>0    @'@#     BDB;    @'@#     @ ?    @'@#     ?    @'@#    }B|$<     @'@#    }R}$<    @'@#    z z$"9    @'@#    |@D|D
=    @'@#    {{ 9    @'@#    {yD;    @'@#    xyD"9    @'@#     @$?    @'@#    @$?    @'@#    DDD|DJ=    @'@#      `p    @'@#     0    @'@#     @$?    @'@#      p    @'@#     p    @'@#      '      @'@#      ?    @'@#         @'@#    B     (%PI      A/       A/  B    A'A#   T0    A/  (      A'A#   @>0    A'A#   BDB;    A/        A/     A/ }    A/ {E    A/ z!}    A'A#  |`D|D
=    A/ {A    A/ {)     A/ x}!    A/       A/ @(    A'A#  DDD|DJ=    A'A#    `p    A'A#   0    A/       A/      A/ /    A/       A/     A/  BG    A'A#  "      0a!/     0G"@      0G"@ B    ("("'   T0    0G#_ (      ("("'   @>0    ("("'   BDB;    0G"@      0G"@     0G"@ }    0G"@ }    0G"@ z!}    ("("'   |@D|D
=    0G"@ {A    0G"@ {)     0G"@ x}!    0G"@     0G"@@(    ("("'  DDD|DJ=    ("("'    `p    ("("'   0    0G"@	 !    0G"@     0G"@     0G"@     0G"@     0G"@BG    ("("'         $%))OzJ^R  @     =)yJ9    @     =)yJ9  @B     =)yJ9   
c     =)yJJQ΀ "       =)yJ9  ?      =)yJ9  C     =)yJ9        =)yJ9       =)yJ9  }!C     =)yJ9  })HC     =)yJ9  z _C     =)yJ9  |@"C     =)yJ9  {P     =)yJ9  {JP     =)yJ9  x_PC     =)yJ9 C     =)yJ9 @"C     =)yJ9 DB"C     =)yJ9  @1     =)yJ9    Rc     =)yJ9 @     =)yJ9       =)yJ9       =)yJ9       =)yJ9        =)yJ9  !     =)yJ9 @ @A      i 	     )/         )/   !    )/   T0    f	  @ ?    )/   @>0    )/   BDB;    )/   @ ?    )/   ?    )/  }A|<    )/  }Q}<    )/  }_}<    )/  |@D|D
=    )/  }P}<    )/  }J|
=    )/  |@_|<    )/  @?    )/  @?    )/  DDD|DJ=    )/    `p    )/   0    )/  @    )/    pp    )/    pp    )/        )/    ?    )/      )/        $%))zJRR  @     =)IJ9    @     =)IJ9  @B     =)IJ9   
c     =)IJJ]΀ "       =)IJ9  ?      =)IJ9  C     =)IJ9        =)IJ9       =)IJ9  }!C     =)IJ9  })HC     =)IJ9  z _C     =)IJ9  |@"C     =)IJ9  {P     =)IJ9  {JP     =)IJ9  x_PC     =)IJ9 C     =)IJ9 @"C     =)IJ9 DB"C     =)IJ9  @1     =)IJ9    Rc     =)IJ9 @     =)IJ9       =)IJ9       =)IJ9       =)IJ9        =)IJ9  !     =)IJ9 @ @A      i 	     ))         ))   !    ))   T0    f	  @ ?    ))   @>0    ))   BDB;    ))   @ ?    ))   ?    ))  }A|<    ))  }Q}<    ))  }_}<    ))  |@D|D
=    ))  }P}<    ))  }J|
=    ))  |@_|<    ))  @?    ))  @?    ))  DDD|DJ=    ))    `p    ))   0    ))  @    ))    pp    ))    pp    ))        ))    ?    ))      ))        2R_{),t     yJ@      yJ@ B    JN:   T0    yK)\ (      JN:   @>0    JN:   BDB;    yJ@      yJ@     yJ@ }    yJ@ }    yJ@ z!}    JN:   |@D|D
=    yJ@ {A    yJ@ {)     yJ@ x}!    yJ@     yJ@@/     JN:  DDD|DJ=    JN:    `p    JN:   0    yJ@	 !    yJ@     yJ@     yJ@     yJ@     yJ@BG    JN:         ZZZZVe P P    Y%Y=W P        Y%Y=W P  !    Y%Y=W P  T0    ZZZfP T @ ?    Y%Y=W P  @>0    Y%Y=W P  BDB;    Y%Y=W P  @ ?    Y%Y=W P  ?    Y%Y=W P }A|<    Y%Y=W P }Q}<    Y%Y=W P }_}<    Y%Y=W P |@D|D
=    Y%Y=W P }P}<    Y%Y=W P }J|
=    Y%Y=W P |@_|<    Y%Y=W P @?    Y%Y=W P @?    Y%Y=W P DDD|DJ=    Y%Y=W P   `p    Y%Y=W P  0    Y%Y=W P @    Y%Y=W P   pp    Y%Y=W P   pp    Y%Y=W P       Y%Y=W P   ?    Y%Y=W P     Y%Y=W P       2R_)e,t     YN@      YN@ B    JJ:   T0    YK) (      JJ:   @>0    JJ:   BDB;    YN@      YN@     YN@ }    YN@ }    YN@ z!}    NJ:   |@D|D
=    YN@ {A    YN@ {)     YN@ x}!    YN@     YN@@/     JJ:  DDD|DJ=    JJ:    `p    JJ:   0    YN@	 !    YN@     YN@     YN@     YN@     YN@BG    NJ:         ZZڥZVe P P    Y=Y% P        Y=Y% P  !    Y=Y% P  T0    ZڥZfP T @ ?    Y=Y% P  @>0    Y=Y% P  BDB;    Y=Y% P  @ ?    Y=Y% P  ?    Y=Y% P }A|<    Y=Y% P }Q}<    Y=Y% P }_}<    Y=Y% P |@D|D
=    Y=Y% P }P}<    Y=Y% P }J|
=    Y=Y% P |@_|<    Y=Y% P @?    Y=Y% P @?    Y=Y% P DDD|DJ=    Y=Y% P   `p    Y=Y% P  0    Y=Y% P @    Y=Y% P   pp    Y=Y% P   pp    Y=Y% P       Y=Y% P   ?    Y=Y% P     Y=Y% P        EQ}QEQ<       EE            EE     B     EE    T0    EE     @ ?    EE    @>0    EE    BDB;    EE    @ ?    EE    ?    EE   }B|$<     EE   }R}$<    EE   z z$"9    EE   |@D|D
=    EE   {{ 9    EE   {yD;    EE   xyD"9    EE    @$?    EE    ?    EE    D|DJ=    EE      `p    EE    0    EE   @"    EE     p    EE    p    EE     '      EE     ?    EE       EE        $%)IJJQ A? @     I"IȒC   @     I"IȒC @B     I"IȒC  
c     I"IȒC "      I"IȒC ?      I"IȒC C     I"IȒC       I"IȒC     I"IȒC}!C     I"IȒC{QC     I"IȒCz _C     I"IȒC|`"C     I"IȒC{P     I"IȒC{JP     I"IȒCx_PC     I"IȒC C     I"IȒC@"C     I"IȒCDB"C     I"IȒC @1     I"IȒC   Rc     I"IȒC C     I"IȒC      I"IȒC#     I"IȒC       I"IȒC      I"IȒC  !     I"IȒCD @A      骚i		     II|		       II|		 A    II|		 T0    ))~		 @ ?    II|		 @>0    II|		 BDB;    II|		 @ ?    II|		 ?    II|		}A|<    II|		}Q}<    II|		}_}<    II|		|@D|D
=    II|		}P}<    II|		}J|
=    II|		|@_|<    II|		 @?    II|		 ?    II|		DGDDJ=    II|		  `p    II|		 0    II|		 @?    II|		  pp    II|		 pp    II|		       II|		  ?    II|		 @    II|	I      2RK)\A!    I)%      I)% B    I$$?  T0    I)% (      I$$?  @>0    I$$?  BDB;    I)%       I)%    I)%}    I)%{E    I)%z!}    I$$? |@D|D
=    I)%{A    I)%{)     I)%x}!    I)%      I)%@(    I$$? DDD|DJ=    I$$?   `p    I$$?  0    I)%      I)%     I)%    I)%      I)%    I)% BG    I$$? "       EQ}QEQ<    EE          EE   B     EE  T0    EE   @ ?    EE  @>0    EE  BDB;    EE  @ ?    EE  ?    EE }B|$<     EE }R}$<    EE z z$"9    EE |@D|D
=    EE {{ 9    EE {yD;    EE xyD"9    EE  @$?    EE  ?    EE  D|DJ=    EE    `p    EE  0    EE @"    EE   p    EE  p    EE   '      EE   ?    EE     EE     I$yI#         EE            EE     B     EE    T0    EE     @ ?    EE    @>0    EE    BDB;    EE    @ ?    EE     ?    EE    }B|$<     EE    }R}$<    EE    z z$"9    EE    |@D|D
=    EE    {{ 9    EE    {yD;    EE    xyD"9    EE    @$?    EE    B$?    EE    FDD|DJ=    EE      `p    EE    0    EE    @$?    EE     p    EE     p    EE     '      EE      ?    EE        EE    B     2RJ@!<     I/$BxA      I/$BxA B    I'I# /	 T0    I)% A	      I'I# /	 @>0    I'I# /	 BDB;    I/$BxA       I/$BxA    I/$BxA}    I/$BxA{E    I/$BxAz!}    I'I# /	|@D|D
=    I/$BxA{A    I/$BxA{)     I/$BxAx}!    I/$BxA      I/$BxA@(    I'I# /	DDD|DJ=    I'I# /	  `p    I'I# /	 0    I/$BxA      I/$BxA     I/$BxA    I/$BxA      I/$BxA    I/$BxA BG    I'I# /	      Z^Ve _Q=QP    _W _       _W _ A    _W _ T0    _W _Q=T@ ?    _W _ @>0    _W _ BDB;    _W _ @ ?    _W _ ?    _W _}A|<    _W _}Q}<    _W _}_}<    _W _|@D|D
=    _W _}P}<    _W _}J|
=    _W _|@_|<    _W _ @?    _W _ ?    _W _DGDDJ=    _W _  `p    _W _ 0    _W _ @?    _W _  pp    _W _ pp    _W _       _W _  ?    _W _ @    _W _E      2RJ@!     I/$BA      I/$BA B    I'I# /  T0    I)% A)      I'I# /  @>0    I'I# /  BDB;    I/$BA       I/$BxA    I/$BxA}    I/$BxA{E    I/$BxAz!}    I'I# /	|@D|D
=    I/$BxA{A    I/$BxA{)     I/$BxAx}!    I/$BA      I/$BA@(    I'I# / DDD|DJ=    I'I# /   `p    I'I# /  0    I/$BA      I/$BA     I/$BxA    I/$BA      I/$BxA    I/$BA BG    I'I# /	     I$yI#     EE           EE    B     EE   T0    EE   @ ?    EE   @>0    EE   BDB;    EE   @ ?    EE    ?    EE   }B|$<     EE   }R}$<    EE   z z$"9    EE   |@D|D
=    EE   {{ 9    EE   {yD;    EE   xyD"9    EE   @$?    EE   P?    EE   TD|DJ=    EE    `p    EE   0    EE   @$?    EE    p    EE    p    EE    '      EE     ?    EE       EE   B      EQ}QEQ<        EE             EE      B     EE     T0    EE      @ ?    EE     @>0    EE     BDB;    EE     @ ?    EE     ?    EE    }B|$<     EE    }R}$<    EE    z z$"9    EE    |@D|D
=    EE    {{ 9    EE    {yD;    EE    xyD"9    EE     @$?    EE    @$?    EE    DDD|DJ=    EE      `p    EE     0    EE     @$?    EE      p    EE     p    EE      '      EE      ?    EE         EE    B     2RK)\      I)%       I)%  B    I$$?  T0    I)%  (      I$$?  @>0    I$$?  BDB;    I)%        I)%     I)% }    I)% {E    I)% z!}    I$$? |`D|D
=    I)% {A    I)% {)     I)% x}!    I)%       I)% @(    I$$? DDD|DJ=    I$$?   `p    I$$?  0    I)%       I)%      I)% /    I)%       I)%     I)%  BG    I$$? "      2R_{)e,t     YJ@      YJ@ B    JJ:   T0    YK)\ (      JJ:   @>0    JJ:   BDB;    YJ@      YJ@     YJ@ }    YJ@ }    YJ@ z!}    JJ:   |@D|D
=    YJ@ {A    YJ@ {)     YJ@ x}!    YJ@     YJ@@(    JJ:  DDD|DJ=    JJ:    `p    JJ:   0    YJ@	 !    YJ@     YJ@     YJ@     YJ@     YJ@BG    JJ:          A@
PD""	 ( @      PrB!    @      PrB!  @B      PrB!   
c      PrB!  "        PrB!  ?       PrB!  C      PrB!         A(r"         A(r"   }!C      A(r"   })HC      A(r"   z _C      A(r"   |@"C      A(r"   {P      A(r"   {JP      A(r"   x_PC      PrB! C      PrB! @"C      PrB! DB"C      PrB!  @1      PrB!    Rc      PrB! @      PrB!        A(r"         PrB!        A(r"          PrB!  !      A(r"  @ @A      		(ID) 	     	$)        	$)  !    	$)  T0    	$)	  @ ?    	$)  @>0    	$)  BDB;    	$)  @ ?    	$)  ?    	$) }A|<    	$) }Q}<    	$) }_}<    	$) |@D|D
=    	$) }P}<    	$) }J|
=    	$) |@_|<    	$) @?    	$) @?    	$) DDD|DJ=    	$)   `p    	$)  0    	$) @    	$)   pp    	$)   pp    	$)       	$)   ?    	$)     	$)        Ap
PG""	 ( @      PBB!    @      PBB!  @B      PBB!   
c      PBB!  "        PBB!  ?       PBB!  C      PBB!         A(B"         A(B"   }!C      A(B"   })HC      A(B"   z _C      A(B"   |@"C      A(B"   {P      A(B"   {JP      A(B"   x_PC      PBB! C      PBB! @"C      PBB! DB"C      PBB!  @1      PBB!    Rc      PBB! @      PBB!        A(B"         PBB!        A(B"          PBB!  !      A(B"  @ @A      	(OD) 	     	$/        	$/  !    	$/  T0    	$/	  @ ?    	$/  @>0    	$/  BDB;    	$/  @ ?    	$/  ?    	$/ }A|<    	$/ }Q}<    	$/ }_}<    	$/ |@D|D
=    	$/ }P}<    	$/ }J|
=    	$/ |@_|<    	$/ @?    	$/ @?    	$/ DDD|DJ=    	$/   `p    	$/  0    	$/ @    	$/   pp    	$/   pp    	$/       	$/   ?    	$/     	$/       ! )	"(&    "`rB`      "`rB` B    !"$$"  T0    "`rB` (      !"$$"  @>0    !"$$"  BDB;    "`rB`      !`r"`     !`r"` }    !`r"` }    !`r"` z!}     !N"$  |@D|D
=    !`r"` {A    !`r"` {)     !`r"` x}!    "`rB`     "`rB`@/     !"$$" DDD|DJ=    !"$$"   `p    !"$$"  0    "`rB`	 !    "`rB`     !`r"`     "`rB`     !`r"`     "`rB`BG     !N"$        QQR(TEDX% P P    QR$T%P        QR$T%P  !    QR$T%P  T0    QR$T%P T @ ?    QR$T%P  @>0    QR$T%P  BDB;    QR$T%P  @ ?    QR$T%P  ?    QR$T%P }A|<    QR$T%P }Q}<    QR$T%P }_}<    QR$T%P |@D|D
=    QR$T%P }P}<    QR$T%P }J|
=    QR$T%P |@_|<    QR$T%P @?    QR$T%P @?    QR$T%P DDD|DJ=    QR$T%P   `p    QR$T%P  0    QR$T%P @    QR$T%P   pp    QR$T%P   pp    QR$T%P       QR$T%P   ?    QR$T%P     QR$T%P       ! (E	"(&    "cN`      "cN` B    !$"  T0    "cB (      !$"  @>0    !$"  BDB;    "cN`      !`.`     !`.` }    !`.` }    !`.` z!}     !B"  |@D|D
=    !`.` {A    !`.` {)     !`.` x}!    "cN`     "cN`@/     !$" DDD|DJ=    !$"   `p    !$"  0    "cN`	 !    "cN`     !`.`     "cN`     !`.`     "cN`BG     !B"        QQ҅(T]DX% P P    QR%%P        QR%%P  !    QR%%P  T0    Q҅$T=P T @ ?    QR%%P  @>0    QR%%P  BDB;    QR%%P  @ ?    QR%%P  ?    QR%%P }A|<    QR%%P }Q}<    QR%%P }_}<    QR%%P |@D|D
=    QR%%P }P}<    QR%%P }J|
=    QR%%P |@_|<    QR%%P @?    QR%%P @?    QR%%P DDD|DJ=    QR%%P   `p    QR%%P  0    QR%%P @    QR%%P   pp    QR%%P   pp    QR%%P       QR%%P   ?    QR%%P     QR%%P           F          P             P     B      P    T0     P     @ ?     P    @>0     P    BDB;     P    @ ?     P    ?     P   }B|$<      P   }R}$<     P   z z$"9     P   |@D|D
=     P   {{ 9     P   {yD;     P   xyD"9     P    @$?     P    ?     P    D|DJ=     P      `p     P    0     P   @"     P     p     P    p     P     '       P     ?     P        P         AAB A? @      ADD   @      ADD @B      ADD  
c      ADD "       ADD ?       ADD C      ADD        ADD      ADD}!C      ADD{QC      ADDz _C      ADD|`"C      ADD{P      ADD{JP      ADDx_PC      ADD C      ADD@"C      ADDDB"C      ADD @1      ADD   Rc      ADD C      ADD       ADD#      ADD        ADD       ADD  !      ADDD @A      		(D)		     	(I		       	(I		 A    	(I		 T0    	(I		 @ ?    	(I		 @>0    	(I		 BDB;    	(I		 @ ?    	(I		 ?    	(I		}A|<    	(I		}Q}<    	(I		}_}<    	(I		|@D|D
=    	(I		}P}<    	(I		}J|
=    	(I		|@_|<    	(I		 @?    	(I		 ?    	(I		DGDDJ=    	(I		  `p    	(I		 0    	(I		 @?    	(I		  pp    	(I		 pp    	(I		       	(I		  ?    	(I		 @    	(I	I      ! BDphA!    !P      !P B     ""I  T0    !P (       ""I  @>0     ""I  BDB;    !P       !P    !P}    !P{E    !Pz!}     ""I |@D|D
=    !P{A    !P{)     !Px}!    !P      !P@(     ""I DDD|DJ=     ""I   `p     ""I  0    !P      !P     !P    !P      !P    !P BG     ""I "          F      P           P   B      P  T0     P   @ ?     P  @>0     P  BDB;     P  @ ?     P  ?     P }B|$<      P }R}$<     P z z$"9     P |@D|D
=     P {{ 9     P {yD;     P xyD"9     P  @$?     P  ?     P  D|DJ=     P    `p     P  0     P @"     P   p     P  p     P   '       P   ?     P      P       ``           P             P     B      P    T0     P     @ ?     P    @>0     P    BDB;     P    @ ?     P     ?     P    }B|$<      P    }R}$<     P    z z$"9     P    |@D|D
=     P    {{ 9     P    {yD;     P    xyD"9     P    @$?     P    B$?     P    FDD|DJ=     P      `p     P    0     P    @$?     P     p     P     p     P     '       P      ?     P         P    B     ! "@!<     !PBxA      !PBxA B     &2 /	 T0    !P A	       &2 /	 @>0     &2 /	 BDB;    !PBxA       !PBxA    !PBxA}    !PBxA{E    !PBxAz!}     &2 /	|@D|D
=    !PBxA{A    !PBxA{)     !PBxAx}!    !PBxA      !PBxA@(     &2 /	DDD|DJ=     &2 /	  `p     &2 /	 0    !PBxA      !PBxA     !PBxA    !PBxA      !PBxA    !PBxA BG     &2 /	      QRDX% _Q=QP    Q(\e _       Q(\e _ A    Q(\e _ T0    Q0\ _Q=T@ ?    Q(\e _ @>0    Q(\e _ BDB;    Q(\e _ @ ?    Q(\e _ ?    Q(\e _}A|<    Q(\e _}Q}<    Q(\e _}_}<    Q(\e _|@D|D
=    Q(\e _}P}<    Q(\e _}J|
=    Q(\e _|@_|<    Q(\e _ @?    Q(\e _ ?    Q(\e _DGDDJ=    Q(\e _  `p    Q(\e _ 0    Q(\e _ @?    Q(\e _  pp    Q(\e _ pp    Q(\e _       Q(\e _  ?    Q(\e _ @    Q(\e _E      ! "@!     !PBA      !PBA B     &2 /  T0    !P A)       &2 /  @>0     &2 /  BDB;    !PBA       !PBxA    !PBxA}    !PBxA{E    !PBxAz!}     &2 /	|@D|D
=    !PBxA{A    !PBxA{)     !PBxAx}!    !PBA      !PBA@(     &2 / DDD|DJ=     &2 /   `p     &2 /  0    !PBA      !PBA     !PBxA    !PBA      !PBxA    !PBA BG     &2 /	       ``       P            P    B      P   T0     P   @ ?     P   @>0     P   BDB;     P   @ ?     P    ?     P   }B|$<      P   }R}$<     P   z z$"9     P   |@D|D
=     P   {{ 9     P   {yD;     P   xyD"9     P   @$?     P   P?     P   TD|DJ=     P    `p     P   0     P   @$?     P    p     P    p     P    '       P     ?     P        P   B         F           P              P      B      P     T0     P      @ ?     P     @>0     P     BDB;     P     @ ?     P     ?     P    }B|$<      P    }R}$<     P    z z$"9     P    |@D|D
=     P    {{ 9     P    {yD;     P    xyD"9     P     @$?     P    @$?     P    DDD|DJ=     P      `p     P     0     P     @$?     P      p     P     p     P      '       P      ?     P          P    B     ! BDph      !P       !P  B     ""A  T0    !P  (       ""A  @>0     ""A  BDB;    !P        !P     !P }    !P {E    !P z!}     ""A |`D|D
=    !P {A    !P {)     !P x}!    !P       !P @(     ""A DDD|DJ=     ""A   `p     ""A  0    !P       !P      !P /    !P       !P     !P  BG     ""A "      ! (E	"(&    "`B`      "`B` B    !"$$"  T0    "`B` (      !"$$"  @>0    !"$$"  BDB;    "`B`      !`"`     !`"` }    !`"` }    !`"` z!}     !B"$  |@D|D
=    !`"` {A    !`"` {)     !`"` x}!    "`B`     "`B`@(    !"$$" DDD|DJ=    !"$$"   `p    !"$$"  0    "`B`	 !    "`B`     !`"`     "`B`     !`"`     "`B`BG     !B"$        !DB"U$E"( @     "!uRDP    @     "!uRDP  @B     "!uRDP   
c     "!DuR*" "       "!uRDP  ?      "!uRDP  C     "!uRDP        "!DuR*"      "!DuR*" }!C     "!DuR*" })HC     "!DuR*" z _C     "!DuR*" |@"C     "!DuR*" {P     "!DuR*" {JP     "!DuR*" x_PC     "!uRDP C     "!uRDP @"C     "!uRDP DB"C     "!uRDP  @1     "!uRDP    Rc     "!uRDP @     "!uRDP       "!DuR*"      "!uRDP       "!DuR*"       "!uRDP  !     "!DuR*"@ @A      I$I$O$J	     $I$J         $I$J   !    $I$J   T0    $I$OZ	  @ ?    $I$J   @>0    $I$J   BDB;    $I$J   @ ?    $I$R   ?    $I$R  }A|<    $I$R  }Q}<    $I$R  }_}<    $I$R  |@D|D
=    $I$R  }P}<    $I$R  }J|
=    $I$R  |@_|<    $I$J  @?    $I$J  @?    $I$J  DDD|DJ=    $I$J    `p    $I$J   0    $I$J  @    $I$J    pp    $I$R    pp    $I$J        $I$R    ?    $I$J      $I$R        !Dr"U$E"( @     "!ERD\    @     "!ERD\  @B     "!ERD\   
c     "!DER*" "       "!ERD\  ?      "!ERD\  C     "!ERD\        "!DER*"      "!DER*" }!C     "!DER*" })HC     "!DER*" z _C     "!DER*" |@"C     "!DER*" {P     "!DER*" {JP     "!DER*" x_PC     "!ERD\ C     "!ERD\ @"C     "!ERD\ DB"C     "!ERD\  @1     "!ERD\    Rc     "!ERD\ @     "!ERD\       "!DER*"      "!ERD\       "!DER*"       "!ERD\  !     "!DER*"@ @A      I$O$I$J	     $I$J         $I$J   !    $I$J   T0    $I$IZ	  @ ?    $I$J   @>0    $I$J   BDB;    $I$J   @ ?    $I$R   ?    $I$R  }A|<    $I$R  }Q}<    $I$R  }_}<    $I$R  |@D|D
=    $I$R  }P}<    $I$R  }J|
=    $I$R  |@_|<    $I$J  @?    $I$J  @?    $I$J  DDD|DJ=    $I$J    `p    $I$J   0    $I$J  @    $I$J    pp    $I$R    pp    $I$J        $I$R    ?    $I$J      $I$R        $D"EȊU1"    "$DS@      "$DS@ B    """"%^U(   T0    "$DuRb( (      """"%^U(   @>0    """"%^U(   BDB;    "$DS@      "$DuRb(     "$DuRb( }    "$DuRb( }    "$DuRb( z!}    """"".U%R |@D|D
=    "$DuRb( {A    "$DuRb( {)     "$DuRb( x}!    "$DS@     "$DS@@/     """"%^U(  DDD|DJ=    """"%^U(    `p    """"%^U(   0    "$DS@	 !    "$DS@     "$DuRb(     "$DS@     "$DuRb(     "$DS@BG    """"".U%R       RE$RE$R]$UJYP P    $RE$UJY P        $RE$UJY P  !    $RE$UJY P  T0    $RE$R]ZTP T @ ?    $RE$UJY P  @>0    $RE$UJY P  BDB;    $RE$UJY P  @ ?    $RE$URX P  ?    $RE$URX P }A|<    $RE$URX P }Q}<    $RE$URX P }_}<    $RE$URX P |@D|D
=    $RE$URX P }P}<    $RE$URX P }J|
=    $RE$URX P |@_|<    $RE$UJY P @?    $RE$UJY P @?    $RE$UJY P DDD|DJ=    $RE$UJY P   `p    $RE$UJY P  0    $RE$UJY P @    $RE$UJY P   pp    $RE$URX P   pp    $RE$UJY P       $RE$URX P   ?    $RE$UJY P     $RE$URX P       $D.DHU1"    "$D_@      "$D_@ B    """"RU   T0    "$DR( (      """"RU   @>0    """"RU   BDB;    "$D_@      "$\^b(     "$\^b( }    "$\^b( }    "$\^b( z!}    ""."""UR |@D|D
=    "$\^b( {A    "$\^b( {)     "$\^b( x}!    "$D_@     "$D_@@/     """"RU  DDD|DJ=    """"RU    `p    """"RU   0    "$D_@	 !    "$D_@     "$\^b(     "$D_@     "$\^b(     "$D_@BG    ""."""UR       RE$RE%E$UJYP P    $R]$UK P        $R]$UK P  !    $R]$UK P  T0    $RE%EZTP T @ ?    $R]$UK P  @>0    $R]$UK P  BDB;    $R]$UK P  @ ?    $R]$USؕ P  ?    $R]$USؕ P }A|<    $R]$USؕ P }Q}<    $R]$USؕ P }_}<    $R]$USؕ P |@D|D
=    $R]$USؕ P }P}<    $R]$USؕ P }J|
=    $R]$USؕ P |@_|<    $R]$UK P @?    $R]$UK P @?    $R]$UK P DDD|DJ=    $R]$UK P   `p    $R]$UK P  0    $R]$UK P @    $R]$UK P   pp    $R]$USؕ P   pp    $R]$UK P       $R]$USؕ P   ?    $R]$UK P     $R]$USؕ P        )Db       A(Q            A(Q     B     A(Q    T0    A(Q     @ ?    A(Q    @>0    A(Q    BDB;    A(Q    @ ?    A(Q    ?    A(Q   }B|$<     A(Q   }R}$<    A(Q   z z$"9    A(Q   |@D|D
=    A(Q   {{ 9    A(Q   {yD;    A(Q   xyD"9    A(Q    @$?    A(Q    ?    A(Q    D|DJ=    A(Q      `p    A(Q    0    A(Q   @"    A(Q     p    A(Q    p    A(Q     '      A(Q     ?    A(Q       A(Q        !DER*" A? @     "!HH   @     "!HH @B     "!HH  
c     "!HH "      "!HH ?      "!HH C     "!HH       "!HH     "!HH}!C     "!HH{QC     "!HHz _C     "!HH|`"C     "!HH{P     "!HH{JP     "!HHx_PC     "!HH C     "!HH@"C     "!HHDB"C     "!HH @1     "!HH   Rc     "!HH C     "!HH      "!HH#     "!HH       "!HH      "!HH  !     "!HHD @A      (TI)		     $Il)		       $Il)		 A    $Il)		 T0    $IZ		 @ ?    $Il)		 @>0    $Il)		 BDB;    $Il)		 @ ?    $Il)		 ?    $Il)		}A|<    $Il)		}Q}<    $Il)		}_}<    $Il)		|@D|D
=    $Il)		}P}<    $Il)		}J|
=    $Il)		|@_|<    $Il)		 @?    $Il)		 ?    $Il)		DGDDJ=    $Il)		  `p    $Il)		 0    $Il)		 @?    $Il)		  pp    $Il)		 pp    $Il)		       $Il)		  ?    $Il)		 @    $Il)	I      $DRb(A!    "$ET      "$ET B    """U%R T0    "$ET (      """U%R @>0    """U%R BDB;    "$ET       "$ET    "$ET}    "$ET{E    "$ETz!}    """U%R|@D|D
=    "$ET{A    "$ET{)     "$ETx}!    "$ET      "$ET@(    """U%RDDD|DJ=    """U%R  `p    """U%R 0    "$ET      "$ET     "$ET    "$ET      "$ET    "$ET BG    """U%R"       )Db    A(Q          A(Q   B     A(Q  T0    A(Q   @ ?    A(Q  @>0    A(Q  BDB;    A(Q  @ ?    A(Q  ?    A(Q }B|$<     A(Q }R}$<    A(Q z z$"9    A(Q |@D|D
=    A(Q {{ 9    A(Q {yD;    A(Q xyD"9    A(Q  @$?    A(Q  ?    A(Q  D|DJ=    A(Q    `p    A(Q  0    A(Q @"    A(Q   p    A(Q  p    A(Q   '      A(Q   ?    A(Q     A(Q     A(E          A(Q            A(Q     B     A(Q    T0    A(Q     @ ?    A(Q    @>0    A(Q    BDB;    A(Q    @ ?    A(Q     ?    A(Q    }B|$<     A(Q    }R}$<    A(Q    z z$"9    A(Q    |@D|D
=    A(Q    {{ 9    A(Q    {yD;    A(Q    xyD"9    A(Q    @$?    A(Q    B$?    A(Q    FDD|DJ=    A(Q      `p    A(Q    0    A(Q    @$?    A(Q     p    A(Q     p    A(Q     '      A(Q      ?    A(Q        A(Q    B     $DS@!<     $$hȐBxA      $$hȐBxA B    $"BZ) /	 T0    "$ET A	      $"BZ) /	 @>0    $"BZ) /	 BDB;    $$hȐBxA       $$hȐBxA    $$hȐBxA}    $$hȐBxA{E    $$hȐBxAz!}    $"BZ) /	|@D|D
=    $$hȐBxA{A    $$hȐBxA{)     $$hȐBxAx}!    $$hȐBxA      $$hȐBxA@(    $"BZ) /	DDD|DJ=    $"BZ) /	  `p    $"BZ) /	 0    $$hȐBxA      $$hȐBxA     $$hȐBxA    $$hȐBxA      $$hȐBxA    $$hȐBxA BG    $"BZ) /	      RE$RElY% _Q=QP    $REZY _       $REZY _ A    $REZY _ T0    $RElY% _Q=T@ ?    $REZY _ @>0    $REZY _ BDB;    $REZY _ @ ?    $REZY _ ?    $REZY _}A|<    $REZY _}Q}<    $REZY _}_}<    $REZY _|@D|D
=    $REZY _}P}<    $REZY _}J|
=    $REZY _|@_|<    $REZY _ @?    $REZY _ ?    $REZY _DGDDJ=    $REZY _  `p    $REZY _ 0    $REZY _ @?    $REZY _  pp    $REZY _ pp    $REZY _       $REZY _  ?    $REZY _ @    $REZY _E      $DS@!     $$hȐBA      $$hȐBA B    $"BZ) /  T0    "$ET A)      $"BZ) /  @>0    $"BZ) /  BDB;    $$hȐBA       $$hȐBxA    $$hȐBxA}    $$hȐBxA{E    $$hȐBxAz!}    $"BZ) /	|@D|D
=    $$hȐBxA{A    $$hȐBxA{)     $$hȐBxAx}!    $$hȐBA      $$hȐBA@(    $"BZ) / DDD|DJ=    $"BZ) /   `p    $"BZ) /  0    $$hȐBA      $$hȐBA     $$hȐBxA    $$hȐBA      $$hȐBxA    $$hȐBA BG    $"BZ) /	     A(E      A(Q           A(Q    B     A(Q   T0    A(Q   @ ?    A(Q   @>0    A(Q   BDB;    A(Q   @ ?    A(Q    ?    A(Q   }B|$<     A(Q   }R}$<    A(Q   z z$"9    A(Q   |@D|D
=    A(Q   {{ 9    A(Q   {yD;    A(Q   xyD"9    A(Q   @$?    A(Q   P?    A(Q   TD|DJ=    A(Q    `p    A(Q   0    A(Q   @$?    A(Q    p    A(Q    p    A(Q    '      A(Q     ?    A(Q       A(Q   B      )Db        A(Q             A(Q      B     A(Q     T0    A(Q      @ ?    A(Q     @>0    A(Q     BDB;    A(Q     @ ?    A(Q     ?    A(Q    }B|$<     A(Q    }R}$<    A(Q    z z$"9    A(Q    |@D|D
=    A(Q    {{ 9    A(Q    {yD;    A(Q    xyD"9    A(Q     @$?    A(Q    @$?    A(Q    DDD|DJ=    A(Q      `p    A(Q     0    A(Q     @$?    A(Q      p    A(Q     p    A(Q      '      A(Q      ?    A(Q         A(Q    B     $DRb(      "$ET       "$ET  B    """U%R T0    "$ET  (      """U%R @>0    """U%R BDB;    "$ET        "$ET     "$ET }    "$ET {E    "$ET z!}    """U%R|`D|D
=    "$ET {A    "$ET {)     "$ET x}!    "$ET       "$ET @(    """U%RDDD|DJ=    """U%R  `p    """U%R 0    "$ET       "$ET      "$ET /    "$ET       "$ET     "$ET  BG    """U%R"      $D"DHU1"    "$DS@      "$DS@ B    """"%RU(   T0    "$DRb( (      """"%RU(   @>0    """"%RU(   BDB;    "$DS@      "$DRb(     "$DRb( }    "$DRb( }    "$DRb( z!}    """"""U%R |@D|D
=    "$DRb( {A    "$DRb( {)     "$DRb( x}!    "$DS@     "$DS@@(    """"%RU(  DDD|DJ=    """"%RU(    `p    """"%RU(   0    "$DS@	 !    "$DS@     "$DRb(     "$DS@     "$DRb(     "$DS@BG    """"""U%R       !	H"AD"! @     8"! x""   @     8"! x"" @B     8"! x""  
c     8"! x"" "       8"! x"" ?      8"! x"" C     8"! x""       8"! x""      8"! x"" }!C     8"! x"" })HC     8"! x"" z _C     8"! x"" |@"C     8"! x"" {P     8"! x"" {JP     8"! x"" x_PC     8"! x""C     8"! x""@"C     8"! x""DB"C     8"! x"" @1     8"! x""   Rc     8"! x""@     8"! x""      8"! x""      8"! x""      8"! x""       8"! x"" !     8"! x""@ @A      	HIOI0	     8I/I8        8I/I8  !    8I/I8  T0    8I/I8	  @ ?    8I/I8  @>0    8I/I8  BDB;    8I/I8  @ ?    8I/I8  ?    8I/I8 }A|<    8I/I8 }Q}<    8I/I8 }_}<    8I/I8 |@D|D
=    8I/I8 }P}<    8I/I8 }J|
=    8I/I8 |@_|<    8I/I8 @?    8I/I8 @?    8I/I8 DDD|DJ=    8I/I8   `p    8I/I8  0    8I/I8 @    8I/I8   pp    8I/I8   pp    8I/I8       8I/I8   ?    8I/I8     8I/I8       !	x"AG"! @     8"! H""   @     8"! H"" @B     8"! H""  
c     8"! H"" "       8"! H"" ?      8"! H"" C     8"! H""       8"! H""      8"! H"" }!C     8"! H"" })HC     8"! H"" z _C     8"! H"" |@"C     8"! H"" {P     8"! H"" {JP     8"! H"" x_PC     8"! H""C     8"! H""@"C     8"! H""DB"C     8"! H"" @1     8"! H""   Rc     8"! H""@     8"! H""      8"! H""      8"! H""      8"! H""       8"! H"" !     8"! H""@ @A      	HOIO0	     8I)O8        8I)O8  !    8I)O8  T0    8I)O8	  @ ?    8I)O8  @>0    8I)O8  BDB;    8I)O8  @ ?    8I)O8  ?    8I)O8 }A|<    8I)O8 }Q}<    8I)O8 }_}<    8I)O8 |@D|D
=    8I)O8 }P}<    8I)O8 }J|
=    8I)O8 |@_|<    8I)O8 @?    8I)O8 @?    8I)O8 DDD|DJ=    8I)O8   `p    8I)O8  0    8I)O8 @    8I)O8   pp    8I)O8   pp    8I)O8       8I)O8   ?    8I)O8     8I)O8       '#(    8(x"N      8(x"N B    8$B(.$B8  T0    8(x"N (      8$B(.$B8  @>0    8$B(.$B8  BDB;    8(x"N      8(x"N     8(x"N }    8(x"N }    8(x"N z!}    8$B(.$B8  |@D|D
=    8(x"N {A    8(x"N {)     8(x"N x}!    8(x"N     8(x"N@/     8$B(.$B8 DDD|DJ=    8$B(.$B8   `p    8$B(.$B8  0    8(x"N	 !    8(x"N     8(x"N     8(x"N     8(x"N     8(x"NBG    8$B(.$B8        SHXEX]XET0P P    8TEX=TE8P        8TEX=TE8P  !    8TEX=TE8P  T0    8TEX=TE8P T @ ?    8TEX=TE8P  @>0    8TEX=TE8P  BDB;    8TEX=TE8P  @ ?    8TEX=TE8P  ?    8TEX=TE8P }A|<    8TEX=TE8P }Q}<    8TEX=TE8P }_}<    8TEX=TE8P |@D|D
=    8TEX=TE8P }P}<    8TEX=TE8P }J|
=    8TEX=TE8P |@_|<    8TEX=TE8P @?    8TEX=TE8P @?    8TEX=TE8P DDD|DJ=    8TEX=TE8P   `p    8TEX=TE8P  0    8TEX=TE8P @    8TEX=TE8P   pp    8TEX=TE8P   pp    8TEX=TE8P       8TEX=TE8P   ?    8TEX=TE8P     8TEX=TE8P       '/`(    8(.N      8(.N B    8$B"B8  T0    8(" (      8$B"B8  @>0    8$B"B8  BDB;    8(.N      8(.N     8(.N }    8(.N }    8(.N z!}    8$N("B8  |@D|D
=    8(.N {A    8(.N {)     8(.N x}!    8(.N     8(.N@/     8$B"B8 DDD|DJ=    8$B"B8   `p    8$B"B8  0    8(.N	 !    8(.N     8(.N     8(.N     8(.N     8(.NBG    8$N("B8        SHXEEX]T0P P    8T]X%E8P        8T]X%E8P  !    8T]X%E8P  T0    8TE%T]8P T @ ?    8T]X%E8P  @>0    8T]X%E8P  BDB;    8T]X%E8P  @ ?    8T]X%E8P  ?    8T]X%E8P }A|<    8T]X%E8P }Q}<    8T]X%E8P }_}<    8T]X%E8P |@D|D
=    8T]X%E8P }P}<    8T]X%E8P }J|
=    8T]X%E8P |@_|<    8T]X%E8P @?    8T]X%E8P @?    8T]X%E8P DDD|DJ=    8T]X%E8P   `p    8T]X%E8P  0    8T]X%E8P @    8T]X%E8P   pp    8T]X%E8P   pp    8T]X%E8P       8T]X%E8P   ?    8T]X%E8P     8T]X%E8P         D@"      ?@#            ?@#     B     ?@#    T0    ?@#     @ ?    ?@#    @>0    ?@#    BDB;    ?@#    @ ?    ?@#    ?    ?@#   }B|$<     ?@#   }R}$<    ?@#   z z$"9    ?@#   |@D|D
=    ?@#   {{ 9    ?@#   {yD;    ?@#   xyD"9    ?@#    @$?    ?@#    ?    ?@#    D|DJ=    ?@#      `p    ?@#    0    ?@#   @"    ?@#     p    ?@#    p    ?@#     '      ?@#     ?    ?@#       ?@#         Dp A? @     >"	HC   @     >"	HC @B     >"	HC  
c     >"	HC "      >"	HC ?      >"	HC C     >"	HC       >"	HC     >"	HC}!C     >"	HC{QC     >"	HCz _C     >"	HC|`"C     >"	HC{P     >"	HC{JP     >"	HCx_PC     >"	HC C     >"	HC@"C     >"	HCDB"C     >"	HC @1     >"	HC   Rc     >"	HC C     >"	HC      >"	HC#     >"	HC       >"	HC      >"	HC  !     >"	HCD @A      D))D		     xIIx		       xIIx		 A    xIIx		 T0    xIIx		 @ ?    xIIx		 @>0    xIIx		 BDB;    xIIx		 @ ?    xIIx		 ?    xIIx		}A|<    xIIx		}Q}<    xIIx		}_}<    xIIx		|@D|D
=    xIIx		}P}<    xIIx		}J|
=    xIIx		|@_|<    xIIx		 @?    xIIx		 ?    xIIx		DGDDJ=    xIIx		  `p    xIIx		 0    xIIx		 @?    xIIx		  pp    xIIx		 pp    xIIx		       xIIx		  ?    xIIx		 @    xIIx	I      #DGA!    >(%      >(% B    >$A$>  T0    >(% (      >$A$>  @>0    >$A$>  BDB;    >(%       >(%    >(%}    >(%{E    >(%z!}    >$A$> |@D|D
=    >(%{A    >(%{)     >(%x}!    >(%      >(%@(    >$A$> DDD|DJ=    >$A$>   `p    >$A$>  0    >(%      >(%     >(%    >(%      >(%    >(% BG    >$A$> "        D@"    ?@#          ?@#   B     ?@#  T0    ?@#   @ ?    ?@#  @>0    ?@#  BDB;    ?@#  @ ?    ?@#  ?    ?@# }B|$<     ?@# }R}$<    ?@# z z$"9    ?@# |@D|D
=    ?@# {{ 9    ?@# {yD;    ?@# xyD"9    ?@#  @$?    ?@#  ?    ?@#  D|DJ=    ?@#    `p    ?@#  0    ?@# @"    ?@#   p    ?@#  p    ?@#   '      ?@#   ?    ?@#     ?@#     @$ A         ?@#            ?@#     B     ?@#    T0    ?@#     @ ?    ?@#    @>0    ?@#    BDB;    ?@#    @ ?    ?@#     ?    ?@#    }B|$<     ?@#    }R}$<    ?@#    z z$"9    ?@#    |@D|D
=    ?@#    {{ 9    ?@#    {yD;    ?@#    xyD"9    ?@#    @$?    ?@#    B$?    ?@#    FDD|DJ=    ?@#      `p    ?@#    0    ?@#    @$?    ?@#     p    ?@#     p    ?@#     '      ?@#      ?    ?@#        ?@#    B     '|@!<     >(%BxA      >(%BxA B    >$A# /	 T0    >(% A	      >$A# /	 @>0    >$A# /	 BDB;    >(%BxA       >(%BxA    >(%BxA}    >(%BxA{E    >(%BxAz!}    >$A# /	|@D|D
=    >(%BxA{A    >(%BxA{)     >(%BxAx}!    >(%BxA      >(%BxA@(    >$A# /	DDD|DJ=    >$A# /	  `p    >$A# /	 0    >(%BxA      >(%BxA     >(%BxA    >(%BxA      >(%BxA    >(%BxA BG    >$A# /	      WłX%W _Q=QP    |X%W _       |X%W _ A    |X%W _ T0    |X%W _Q=T@ ?    |X%W _ @>0    |X%W _ BDB;    |X%W _ @ ?    |X%W _ ?    |X%W _}A|<    |X%W _}Q}<    |X%W _}_}<    |X%W _|@D|D
=    |X%W _}P}<    |X%W _}J|
=    |X%W _|@_|<    |X%W _ @?    |X%W _ ?    |X%W _DGDDJ=    |X%W _  `p    |X%W _ 0    |X%W _ @?    |X%W _  pp    |X%W _ pp    |X%W _       |X%W _  ?    |X%W _ @    |X%W _E      '|@!     >(%BA      >(%BA B    >$A# /  T0    >(% A)      >$A# /  @>0    >$A# /  BDB;    >(%BA       >(%BxA    >(%BxA}    >(%BxA{E    >(%BxAz!}    >$A# /	|@D|D
=    >(%BxA{A    >(%BxA{)     >(%BxAx}!    >(%BA      >(%BA@(    >$A# / DDD|DJ=    >$A# /   `p    >$A# /  0    >(%BA      >(%BA     >(%BxA    >(%BA      >(%BxA    >(%BA BG    >$A# /	     @$ A     ?@#           ?@#    B     ?@#   T0    ?@#   @ ?    ?@#   @>0    ?@#   BDB;    ?@#   @ ?    ?@#    ?    ?@#   }B|$<     ?@#   }R}$<    ?@#   z z$"9    ?@#   |@D|D
=    ?@#   {{ 9    ?@#   {yD;    ?@#   xyD"9    ?@#   @$?    ?@#   P?    ?@#   TD|DJ=    ?@#    `p    ?@#   0    ?@#   @$?    ?@#    p    ?@#    p    ?@#    '      ?@#     ?    ?@#       ?@#   B       D@"       ?@#             ?@#      B     ?@#     T0    ?@#      @ ?    ?@#     @>0    ?@#     BDB;    ?@#     @ ?    ?@#     ?    ?@#    }B|$<     ?@#    }R}$<    ?@#    z z$"9    ?@#    |@D|D
=    ?@#    {{ 9    ?@#    {yD;    ?@#    xyD"9    ?@#     @$?    ?@#    @$?    ?@#    DDD|DJ=    ?@#      `p    ?@#     0    ?@#     @$?    ?@#      p    ?@#     p    ?@#      '      ?@#      ?    ?@#         ?@#    B     #DG      >(%       >(%  B    >$A$>  T0    >(%  (      >$A$>  @>0    >$A$>  BDB;    >(%        >(%     >(% }    >(% {E    >(% z!}    >$A$> |`D|D
=    >(% {A    >(% {)     >(% x}!    >(%       >(% @(    >$A$> DDD|DJ=    >$A$>   `p    >$A$>  0    >(%       >(%      >(% /    >(%       >(%     >(%  BG    >$A$> "      '#`(    8("N      8("N B    8$B("$B8  T0    8("N (      8$B("$B8  @>0    8$B("$B8  BDB;    8("N      8("N     8("N }    8("N }    8("N z!}    8$B("$B8  |@D|D
=    8("N {A    8("N {)     8("N x}!    8("N     8("N@(    8$B("$B8 DDD|DJ=    8$B("$B8   `p    8$B("$B8  0    8("N	 !    8("N     8("N     8("N     8("N     8("NBG    8$B("$B8        #@P""	 ( @      PrB!    @      PrB!  @B      PrB!   
c      0r "        PrB!  ?       PrB!  C      PrB!         A(r"         A(r"   }!C      A(r"   })HC      A(r"   z _C      A(r"   |@"C      A(r"   {P      A(r"   {JP      A(r"   x_PC      PrB! C      PrB! @"C      PrB! DB"C      PrB!  @1      PrB!    Rc      PrB! @      PrB!        A(r"         PrB!        A(r"          PrB!  !      A(r"  @ @A      	(D) 	     	D)         	D)   !    	D)   T0    	$)	  @ ?    	D)   @>0    	D)   BDB;    	D)   @ ?    	D)   ?    	D)  }A|<    	D)  }Q}<    	D)  }_}<    	D)  |@D|D
=    	D)  }P}<    	D)  }J|
=    	D)  |@_|<    	D)  @?    	D)  @?    	D)  DDD|DJ=    	D)    `p    	D)   0    	D)  @    	D)    pp    	D)    pp    	D)        	D)    ?    	D)      	D)        #pP""	 ( @      PBB!    @      PBB!  @B      PBB!   
c      0B "        PBB!  ?       PBB!  C      PBB!         A(B"         A(B"   }!C      A(B"   })HC      A(B"   z _C      A(B"   |@"C      A(B"   {P      A(B"   {JP      A(B"   x_PC      PBB! C      PBB! @"C      PBB! DB"C      PBB!  @1      PBB!    Rc      PBB! @      PBB!        A(B"         PBB!        A(B"          PBB!  !      A(B"  @ @A      	(D) 	     	D/         	D/   !    	D/   T0    	$/	  @ ?    	D/   @>0    	D/   BDB;    	D/   @ ?    	D/   ?    	D/  }A|<    	D/  }Q}<    	D/  }_}<    	D/  |@D|D
=    	D/  }P}<    	D/  }J|
=    	D/  |@_|<    	D/  @?    	D/  @?    	D/  DDD|DJ=    	D/    `p    	D/   0    	D/  @    	D/    pp    	D/    pp    	D/        	D/    ?    	D/      	D/        / "(&    "`rB`      "`rB` B    !"$$"  T0    "@rHP (      !"$$"  @>0    !"$$"  BDB;    "`rB`      !`r"`     !`r"` }    !`r"` }    !`r"` z!}     !N"$  |@D|D
=    !`r"` {A    !`r"` {)     !`r"` x}!    "`rB`     "`rB`@/     !"$$" DDD|DJ=    !"$$"   `p    !"$$"  0    "`rB`	 !    "`rB`     !`r"`     "`rB`     !`r"`     "`rB`BG     !N"$        _QQ(RDX% P P    QRDX% P        QRDX% P  !    QRDX% P  T0    QR$T%P T @ ?    QRDX% P  @>0    QRDX% P  BDB;    QRDX% P  @ ?    QRDX% P  ?    QRDX% P }A|<    QRDX% P }Q}<    QRDX% P }_}<    QRDX% P |@D|D
=    QRDX% P }P}<    QRDX% P }J|
=    QRDX% P |@_|<    QRDX% P @?    QRDX% P @?    QRDX% P DDD|DJ=    QRDX% P   `p    QRDX% P  0    QRDX% P @    QRDX% P   pp    QRDX% P   pp    QRDX% P       QRDX% P   ?    QRDX% P     QRDX% P       / E"(&    "cN`      "cN` B    !$"  T0    "CIЌ (      !$"  @>0    !$"  BDB;    "cN`      !`.`     !`.` }    !`.` }    !`.` z!}     !B"  |@D|D
=    !`.` {A    !`.` {)     !`.` x}!    "cN`     "cN`@/     !$" DDD|DJ=    !$"   `p    !$"  0    "cN`	 !    "cN`     !`.`     "cN`     !`.`     "cN`BG     !B"        _Q(RDX% P P    QRE% P        QRE% P  !    QRE% P  T0    Q҅$T=P T @ ?    QRE% P  @>0    QRE% P  BDB;    QRE% P  @ ?    QRE% P  ?    QRE% P }A|<    QRE% P }Q}<    QRE% P }_}<    QRE% P |@D|D
=    QRE% P }P}<    QRE% P }J|
=    QRE% P |@_|<    QRE% P @?    QRE% P @?    QRE% P DDD|DJ=    QRE% P   `p    QRE% P  0    QRE% P @    QRE% P   pp    QRE% P   pp    QRE% P       QRE% P   ?    QRE% P     QRE% P          P`0        b`            b`    B      b`   T0     b`    @ ?     b`   @>0     b`   BDB;     b`   @ ?     b`   ?     b`  }B|$<      b`  }R}$<     b`  z z$"9     b`  |@D|D
=     b`  {{ 9     b`  {yD;     b`  xyD"9     b`   @$?     b`   ?     b`   D|DJ=     b`     `p     b`   0     b`  @"     b`    p     b`   p     b`    '       b`    ?     b`       b`       #AB A? @      ADD   @      ADD @B      ADD  
c      ADD "       ADD ?       ADD C      ADD        ADD      ADD}!C      ADD{QC      ADDz _C      ADD|`"C      ADD{P      ADD{JP      ADDx_PC      ADD C      ADD@"C      ADDDB"C      ADD @1      ADD   Rc      ADD C      ADD       ADD#      ADD        ADD       ADD  !      ADDD @A      	(D)		     	(I		       	(I		 A    	(I		 T0    	(I		 @ ?    	(I		 @>0    	(I		 BDB;    	(I		 @ ?    	(I		 ?    	(I		}A|<    	(I		}Q}<    	(I		}_}<    	(I		|@D|D
=    	(I		}P}<    	(I		}J|
=    	(I		|@_|<    	(I		 @?    	(I		 ?    	(I		DGDDJ=    	(I		  `p    	(I		 0    	(I		 @?    	(I		  pp    	(I		 pp    	(I		       	(I		  ?    	(I		 @    	(I	I      / BDPHA!    !P      !P B     ""I  T0    !P (       ""I  @>0     ""I  BDB;    !P       !P    !P}    !P{E    !Pz!}     ""I |@D|D
=    !P{A    !P{)     !Px}!    !P      !P@(     ""I DDD|DJ=     ""I   `p     ""I  0    !P      !P     !P    !P      !P    !P BG     ""I "         P`1     p           p   B      p  T0     p   @ ?     p  @>0     p  BDB;     p  @ ?     p  ?     p }B|$<      p }R}$<     p z z$"9     p |@D|D
=     p {{ 9     p {yD;     p xyD"9     p  @$?     p  ?     p  D|DJ=     p    `p     p  0     p @"     p   p     p  p     p   '       p   ?     p      p     ?  F          ``           ``   B      ``  T0     ``   @ ?     ``  @>0     ``  BDB;     ``  @ ?     ``   ?     ``  }B|$<      ``  }R}$<     ``  z z$"9     ``  |@D|D
=     ``  {{ 9     ``  {yD;     ``  xyD"9     ``  @$?     ``  B$?     ``  FDD|DJ=     ``    `p     ``  0     ``  @$?     ``   p     ``   p     ``   '       ``    ?     ``       ``  B     / #@!<     !PBxA      !PBxA B     &2 /	 T0    !P A	       &2 /	 @>0     &2 /	 BDB;    !PBxA       !PBxA    !PBxA}    !PBxA{E    !PBxAz!}     &2 /	|@D|D
=    !PBxA{A    !PBxA{)     !PBxAx}!    !PBxA      !PBxA@(     &2 /	DDD|DJ=     &2 /	  `p     &2 /	 0    !PBxA      !PBxA     !PBxA    !PBxA      !PBxA    !PBxA BG     &2 /	      _RDX% _Q=QP    Q(\e _       Q(\e _ A    Q(\e _ T0    Q(\e _Q=T@ ?    Q(\e _ @>0    Q(\e _ BDB;    Q(\e _ @ ?    Q(\e _ ?    Q(\e _}A|<    Q(\e _}Q}<    Q(\e _}_}<    Q(\e _|@D|D
=    Q(\e _}P}<    Q(\e _}J|
=    Q(\e _|@_|<    Q(\e _ @?    Q(\e _ ?    Q(\e _DGDDJ=    Q(\e _  `p    Q(\e _ 0    Q(\e _ @?    Q(\e _  pp    Q(\e _ pp    Q(\e _       Q(\e _  ?    Q(\e _ @    Q(\e _E      / #@!     !PBA      !PBA B     &2 /  T0    !P A)       &2 /  @>0     &2 /  BDB;    !PBA       !PBxA    !PBxA}    !PBxA{E    !PBxAz!}     &2 /	|@D|D
=    !PBxA{A    !PBxA{)     !PBxAx}!    !PBA      !PBA@(     &2 / DDD|DJ=     &2 /   `p     &2 /  0    !PBA      !PBA     !PBxA    !PBA      !PBxA    !PBA BG     &2 /	     ?  F      ``          ``  B      `` T0     `` @ ?     `` @>0     `` BDB;     `` @ ?     ``  ?     `` }B|$<      `` }R}$<     `` z z$"9     `` |@D|D
=     `` {{ 9     `` {yD;     `` xyD"9     `` @$?     `` P?     `` TD|DJ=     ``  `p     `` 0     `` @$?     ``  p     ``  p     ``  '       ``   ?     ``      `` B        P`0         ``            ``    B      ``   T0     ``    @ ?     ``   @>0     ``   BDB;     ``   @ ?     ``   ?     ``  }B|$<      ``  }R}$<     ``  z z$"9     ``  |@D|D
=     ``  {{ 9     ``  {yD;     ``  xyD"9     ``   @$?     ``  @$?     ``  DDD|DJ=     ``    `p     ``   0     ``   @$?     ``    p     ``   p     ``    '       ``    ?     ``        ``  B     / BDPH      !P       !P  B     ""A  T0    !P  (       ""A  @>0     ""A  BDB;    !P        !P     !P }    !P {E    !P z!}     ""A |`D|D
=    !P {A    !P {)     !P x}!    !P       !P @(     ""A DDD|DJ=     ""A   `p     ""A  0    !P       !P      !P /    !P       !P     !P  BG     ""A "      / E"(&    "`B`      "`B` B    !"$$"  T0    "@HP (      !"$$"  @>0    !"$$"  BDB;    "`B`      !`"`     !`"` }    !`"` }    !`"` z!}     !B"$  |@D|D
=    !`"` {A    !`"` {)     !`"` x}!    "`B`     "`B`@(    !"$$" DDD|DJ=    !"$$"   `p    !"$$"  0    "`B`	 !    "`B`     !`"`     "`B`     !`"`     "`B`BG     !B"$        'DB"U$E"( @     uRDP    @     uRDP  @B     uRDP   
c     DuR*" "       uRDP  ?      uRDP  C     uRDP        DuR*"      DuR*" }!C     DuR*" })HC     DuR*" z _C     DuR*" |@"C     DuR*" {P     DuR*" {JP     DuR*" x_PC     uRDP C     uRDP @"C     uRDP DB"C     uRDP  @1     uRDP    Rc     uRDP @     uRDP       DuR*"      uRDP       DuR*"       uRDP  !     DuR*"@ @A      $I$O$J	     (OT)         (OT)   !    (OT)   T0    I$OZ	  @ ?    (OT)   @>0    (OT)   BDB;    (OT)   @ ?    I$R   ?    I$R  }A|<    I$R  }Q}<    I$R  }_}<    I$R  |@D|D
=    I$R  }P}<    I$R  }J|
=    I$R  |@_|<    (OT)  @?    (OT)  @?    (OT)  DDD|DJ=    (OT)    `p    (OT)   0    (OT)  @    (OT)    pp    I$R    pp    (OT)        I$R    ?    (OT)      I$R        'Dr"U$E"( @     ERD\    @     ERD\  @B     ERD\   
c     DER*" "       ERD\  ?      ERD\  C     ERD\        DER*"      DER*" }!C     DER*" })HC     DER*" z _C     DER*" |@"C     DER*" {P     DER*" {JP     DER*" x_PC     ERD\ C     ERD\ @"C     ERD\ DB"C     ERD\  @1     ERD\    Rc     ERD\ @     ERD\       DER*"      ERD\       DER*"       ERD\  !     DER*"@ @A      $O$I$J	     (IT/         (IT/   !    (IT/   T0    I$IZ	  @ ?    (IT/   @>0    (IT/   BDB;    (IT/   @ ?    I$R   ?    I$R  }A|<    I$R  }Q}<    I$R  }_}<    I$R  |@D|D
=    I$R  }P}<    I$R  }J|
=    I$R  |@_|<    (IT/  @?    (IT/  @?    (IT/  DDD|DJ=    (IT/    `p    (IT/   0    (IT/  @    (IT/    pp    I$R    pp    (IT/        I$R    ?    (IT/      I$R        ?"EȊU1"    DS@      DS@ B    ""%^U(   T0    DuRb( (      ""%^U(   @>0    ""%^U(   BDB;    DS@      DuRb(     DuRb( }    DuRb( }    DuRb( z!}    """.U%R |@D|D
=    DuRb( {A    DuRb( {)     DuRb( x}!    DS@     DS@@/     ""%^U(  DDD|DJ=    ""%^U(    `p    ""%^U(   0    DS@	 !    DS@     DuRb(     DS@     DuRb(     DS@BG    """.U%R       _$RE$R]$UJYP P    R(U}TZ% P        R(U}TZ% P  !    R(U}TZ% P  T0    RE$R]ZTP T @ ?    R(U}TZ% P  @>0    R(U}TZ% P  BDB;    R(U}TZ% P  @ ?    RE$URX P  ?    RE$URX P }A|<    RE$URX P }Q}<    RE$URX P }_}<    RE$URX P |@D|D
=    RE$URX P }P}<    RE$URX P }J|
=    RE$URX P |@_|<    R(U}TZ% P @?    R(U}TZ% P @?    R(U}TZ% P DDD|DJ=    R(U}TZ% P   `p    R(U}TZ% P  0    R(U}TZ% P @    R(U}TZ% P   pp    RE$URX P   pp    R(U}TZ% P       RE$URX P   ?    R(U}TZ% P     RE$URX P       ?.DHU1"    D_@      D_@ B    ""RU   T0    DR( (      ""RU   @>0    ""RU   BDB;    D_@      \^b(     \^b( }    \^b( }    \^b( z!}    ."""UR |@D|D
=    \^b( {A    \^b( {)     \^b( x}!    D_@     D_@@/     ""RU  DDD|DJ=    ""RU    `p    ""RU   0    D_@	 !    D_@     \^b(     D_@     \^b(     D_@BG    ."""UR       _$RE%E$UJYP P    R(UEU% P        R(UEU% P  !    R(UEU% P  T0    RE%EZTP T @ ?    R(UEU% P  @>0    R(UEU% P  BDB;    R(UEU% P  @ ?    R]$USؕ P  ?    R]$USؕ P }A|<    R]$USؕ P }Q}<    R]$USؕ P }_}<    R]$USؕ P |@D|D
=    R]$USؕ P }P}<    R]$USؕ P }J|
=    R]$USؕ P |@_|<    R(UEU% P @?    R(UEU% P @?    R(UEU% P DDD|DJ=    R(UEU% P   `p    R(UEU% P  0    R(UEU% P @    R(UEU% P   pp    R]$USؕ P   pp    R(UEU% P       R]$USؕ P   ?    R(UEU% P     R]$USؕ P        )Db       }(Q            }(Q     B     }(Q    T0    }(Q     @ ?    }(Q    @>0    }(Q    BDB;    }(Q    @ ?    }(Q    ?    }(Q   }B|$<     }(Q   }R}$<    }(Q   z z$"9    }(Q   |@D|D
=    }(Q   {{ 9    }(Q   {yD;    }(Q   xyD"9    }(Q    @$?    }(Q    ?    }(Q    D|DJ=    }(Q      `p    }(Q    0    }(Q   @"    }(Q     p    }(Q    p    }(Q     '      }(Q     ?    }(Q       }(Q        'DER*" A? @     H   @     H @B     H  
c     H "      H ?      H C     H       H     H}!C     H{QC     Hz _C     H|`"C     H{P     H{JP     Hx_PC     H C     H@"C     HDB"C     H @1     H   Rc     H C     H      H#     H       H      H  !     HD @A      (TI)		     I$ɒ		       I$ɒ		 A    I$ɒ		 T0    TI		 @ ?    I$ɒ		 @>0    I$ɒ		 BDB;    I$ɒ		 @ ?    I$ɒ		 ?    I$ɒ		}A|<    I$ɒ		}Q}<    I$ɒ		}_}<    I$ɒ		|@D|D
=    I$ɒ		}P}<    I$ɒ		}J|
=    I$ɒ		|@_|<    I$ɒ		 @?    I$ɒ		 ?    I$ɒ		DGDDJ=    I$ɒ		  `p    I$ɒ		 0    I$ɒ		 @?    I$ɒ		  pp    I$ɒ		 pp    I$ɒ		       I$ɒ		  ?    I$ɒ		 @    I$ɒ	I      >Rb(A!    D      D B    ""%R T0    D (      ""%R @>0    ""%R BDB;    D       D    D}    D{E    Dz!}    ""%R|@D|D
=    D{A    D{)     Dx}!    D      D@(    ""%RDDD|DJ=    ""%R  `p    ""%R 0    D      D     D    D      D    D BG    ""%R"       )Db    }(Q          }(Q   B     }(Q  T0    }(Q   @ ?    }(Q  @>0    }(Q  BDB;    }(Q  @ ?    }(Q  ?    }(Q }B|$<     }(Q }R}$<    }(Q z z$"9    }(Q |@D|D
=    }(Q {{ 9    }(Q {yD;    }(Q xyD"9    }(Q  @$?    }(Q  ?    }(Q  D|DJ=    }(Q    `p    }(Q  0    }(Q @"    }(Q   p    }(Q  p    }(Q   '      }(Q   ?    }(Q     }(Q     }B(Q         }(Q            }(Q     B     }(Q    T0    }(Q     @ ?    }(Q    @>0    }(Q    BDB;    }(Q    @ ?    }(Q     ?    }(Q    }B|$<     }(Q    }R}$<    }(Q    z z$"9    }(Q    |@D|D
=    }(Q    {{ 9    }(Q    {yD;    }(Q    xyD"9    }(Q    @$?    }(Q    B$?    }(Q    FDD|DJ=    }(Q      `p    }(Q    0    }(Q    @$?    }(Q     p    }(Q     p    }(Q     '      }(Q      ?    }(Q        }(Q    B     >S@!<     DPBxA      DPBxA B    "-$ /	 T0    D A	      "-$ /	 @>0    "-$ /	 BDB;    DPBxA       DPBxA    DPBxA}    DPBxA{E    DPBxAz!}    "-$ /	|@D|D
=    DPBxA{A    DPBxA{)     DPBxAx}!    DPBxA      DPBxA@(    "-$ /	DDD|DJ=    "-$ /	  `p    "-$ /	 0    DPBxA      DPBxA     DPBxA    DPBxA      DPBxA    DPBxA BG    "-$ /	      _$RElY% _Q=QP    REZY _       REZY _ A    REZY _ T0    RE$VŒ_Q=T@ ?    REZY _ @>0    REZY _ BDB;    REZY _ @ ?    REZY _ ?    REZY _}A|<    REZY _}Q}<    REZY _}_}<    REZY _|@D|D
=    REZY _}P}<    REZY _}J|
=    REZY _|@_|<    REZY _ @?    REZY _ ?    REZY _DGDDJ=    REZY _  `p    REZY _ 0    REZY _ @?    REZY _  pp    REZY _ pp    REZY _       REZY _  ?    REZY _ @    REZY _E      >S@!     DPBA      DPBA B    "-$ /  T0    D A)      "-$ /  @>0    "-$ /  BDB;    DPBA       DPBxA    DPBxA}    DPBxA{E    DPBxAz!}    "-$ /	|@D|D
=    DPBxA{A    DPBxA{)     DPBxAx}!    DPBA      DPBA@(    "-$ / DDD|DJ=    "-$ /   `p    "-$ /  0    DPBA      DPBA     DPBxA    DPBA      DPBxA    DPBA BG    "-$ /	     }B(Q     }(Q           }(Q    B     }(Q   T0    }(Q   @ ?    }(Q   @>0    }(Q   BDB;    }(Q   @ ?    }(Q    ?    }(Q   }B|$<     }(Q   }R}$<    }(Q   z z$"9    }(Q   |@D|D
=    }(Q   {{ 9    }(Q   {yD;    }(Q   xyD"9    }(Q   @$?    }(Q   P?    }(Q   TD|DJ=    }(Q    `p    }(Q   0    }(Q   @$?    }(Q    p    }(Q    p    }(Q    '      }(Q     ?    }(Q       }(Q   B      )Db        }(Q             }(Q      B     }(Q     T0    }(Q      @ ?    }(Q     @>0    }(Q     BDB;    }(Q     @ ?    }(Q     ?    }(Q    }B|$<     }(Q    }R}$<    }(Q    z z$"9    }(Q    |@D|D
=    }(Q    {{ 9    }(Q    {yD;    }(Q    xyD"9    }(Q     @$?    }(Q    @$?    }(Q    DDD|DJ=    }(Q      `p    }(Q     0    }(Q     @$?    }(Q      p    }(Q     p    }(Q      '      }(Q      ?    }(Q         }(Q    B     >Rb(      D       D  B    ""%R T0    D  (      ""%R @>0    ""%R BDB;    D        D     D }    D {E    D z!}    ""%R|`D|D
=    D {A    D {)     D x}!    D       D @(    ""%RDDD|DJ=    ""%R  `p    ""%R 0    D       D      D /    D       D     D  BG    ""%R"      ?"DHU1"    DS@      DS@ B    ""%RU(   T0    DRb( (      ""%RU(   @>0    ""%RU(   BDB;    DS@      DRb(     DRb( }    DRb( }    DRb( z!}    """"U%R |@D|D
=    DRb( {A    DRb( {)     DRb( x}!    DS@     DS@@(    ""%RU(  DDD|DJ=    ""%RU(    `p    ""%RU(   0    DS@	 !    DS@     DRb(     DS@     DRb(     DS@BG    """"U%R       ! 	@P""	 ( @     8 ? qD   @     8 ? qD @B     8 ? qD  
c      ?p
4 "       8 ? qD ?      8 ? qD C     8 ? qD        ?qB       ?qB }!C      ?qB })HC      ?qB z _C      ?qB |@"C      ?qB {P      ?qB {JP      ?qB x_PC     8 ? qDC     8 ? qD@"C     8 ? qDDB"C     8 ? qD @1     8 ? qD   Rc     8 ? qD@     8 ? qD       ?qB      8 ? qD       ?qB       8 ? qD !      ?qB@ @A       (DI	     8	Ɛ        8	Ɛ  !    8	Ɛ  T0    8	D)  @ ?    8	Ɛ  @>0    8	Ɛ  BDB;    8	Ɛ  @ ?    8	Ɛ  ?    8	Ɛ }A|<    8	Ɛ }Q}<    8	Ɛ }_}<    8	Ɛ |@D|D
=    8	Ɛ }P}<    8	Ɛ }J|
=    8	Ɛ |@_|<    8	Ɛ @?    8	Ɛ @?    8	Ɛ DDD|DJ=    8	Ɛ   `p    8	Ɛ  0    8	Ɛ @    8	Ɛ   pp    8	Ɛ   pp    8	Ɛ       8	Ɛ   ?    8	Ɛ     8	Ɛ       ! 	pP""	 ( @     8 ? AD   @     8 ? AD @B     8 ? AD  
c      ?@
4 "       8 ? AD ?      8 ? AD C     8 ? AD        ?AB       ?AB }!C      ?AB })HC      ?AB z _C      ?AB |@"C      ?AB {P      ?AB {JP      ?AB x_PC     8 ? ADC     8 ? AD@"C     8 ? ADDB"C     8 ? AD @1     8 ? AD   Rc     8 ? AD@     8 ? AD       ?AB      8 ? AD       ?AB       8 ? AD !      ?AB@ @A       	(DI	     8		Ɛ        8		Ɛ  !    8		Ɛ  T0    8		D)  @ ?    8		Ɛ  @>0    8		Ɛ  BDB;    8		Ɛ  @ ?    8		Ɛ  ?    8		Ɛ }A|<    8		Ɛ }Q}<    8		Ɛ }_}<    8		Ɛ |@D|D
=    8		Ɛ }P}<    8		Ɛ }J|
=    8		Ɛ |@_|<    8		Ɛ @?    8		Ɛ @?    8		Ɛ DDD|DJ=    8		Ɛ   `p    8		Ɛ  0    8		Ɛ @    8		Ɛ   pp    8		Ɛ   pp    8		Ɛ       8		Ɛ   ?    8		Ɛ     8		Ɛ       ' Ђ"(&    8 qPQ      8 qPQ B    8 !"D(" T0     p(H (      8 !"D(" @>0    8 !"D(" BDB;    8 qPQ       qBDpH      qBDpH }     qBDpH }     qBDpH z!}      ""  |@D|D
=     qBDpH {A     qBDpH {)      qBDpH x}!    8 qPQ     8 qPQ@/     8 !"D("DDD|DJ=    8 !"D("  `p    8 !"D(" 0    8 qPQ	 !    8 qPQ      qBDpH     8 qPQ      qBDpH     8 qPQBG      ""        W _Q(RDTEP P    8PQRP        8PQRP  !    8PQRP  T0    8PQRDX% T @ ?    8PQRP  @>0    8PQRP  BDB;    8PQRP  @ ?    8PQRP  ?    8PQRP }A|<    8PQRP }Q}<    8PQRP }_}<    8PQRP |@D|D
=    8PQRP }P}<    8PQRP }J|
=    8PQRP |@_|<    8PQRP @?    8PQRP @?    8PQRP DDD|DJ=    8PQRP   `p    8PQRP  0    8PQRP @    8PQRP   pp    8PQRP   pp    8PQRP       8PQRP   ?    8PQRP     8PQRP       ' ЎE"(&    8 PQ      8 PQ B    8 D(" T0     )Ȏ (      8 D(" @>0    8 D(" BDB;    8 PQ       BEH      BEH }     BEH }     BEH z!}     ".  |@D|D
=     BEH {A     BEH {)      BEH x}!    8 PQ     8 PQ@/     8 D("DDD|DJ=    8 D("  `p    8 D(" 0    8 PQ	 !    8 PQ      BEH     8 PQ      BEH     8 PQBG     ".        W _(RDTEP P    8PQ҅P        8PQ҅P  !    8PQ҅P  T0    8PRDX% T @ ?    8PQ҅P  @>0    8PQ҅P  BDB;    8PQ҅P  @ ?    8PRP  ?    8PRP }A|<    8PRP }Q}<    8PRP }_}<    8PRP |@D|D
=    8PRP }P}<    8PRP }J|
=    8PRP |@_|<    8PQ҅P @?    8PQ҅P @?    8PQ҅P DDD|DJ=    8PQ҅P   `p    8PQ҅P  0    8PQ҅P @    8PQ҅P   pp    8PRP   pp    8PQ҅P       8PRP   ?    8PQ҅P     8PRP           pp         P&           P&  B       P& T0     PF  @ ?      P& @>0      P& BDB;      P& @ ?      p`   ?      p`  }B|$<       p`  }R}$<      p`  z z$"9      p`  |@D|D
=      p`  {{ 9      p`  {yD;      p`  xyD"9      P& @$?      P& ?      P& DD|DJ=      P&  `p      P& 0      P& @$?      P&  p      p`   p      P&  '        p`    ?      P&       p`          @
$ A? @      AB5  #  @      AB5  #@B      AB5  # 
c      AB5  "       AB5  "?       AB5  C      AB5  #       (F2      (F2}!C      (F2{QC      (F2z _C      (F2|@"C      (F2{P      (F2{JP      (F2x_PC      AB5  #C      AB5 @"C      AB5 Db"C      AB5  @1      AB5    Rc      AB5  !C      AB5  #      (F2      AB5  #       (F2       AB5  # !      (F2D @A       (I		     8		(o       8		(o A    8		(o T0    8		(i  @ ?    8		(o @>0    8		(o BDB;    8		(o @ ?    8	Ƒ	 ?    8	Ƒ	}A|<    8	Ƒ	}Q}<    8	Ƒ	}_}<    8	Ƒ	|@D|D
=    8	Ƒ	}P}<    8	Ƒ	}J|
=    8	Ƒ	|@_|<    8		(o @?    8		(o ?    8		(oDDDJ=    8		(o `p    8		(o 0    8		(o @?    8		(o  pp    8	Ƒ	 pp    8		(o       8	Ƒ	  ?    8		(o @    8	ƑI      # (HI!     BB /      BB /B      &/ 'T0     BB (        &/ $@>0      &/ BDB;     BB /       2     2}     2{E     2z!}     !Bc |@D|D
=     2{A     2{)      2x}!     BB /      BB@(      &/DdD|DJ=      &/  `p      &/ !0     BB '      BB /     2     BB /      2     BB /BG     !Bc "          pq      P           P  B       P T0     P  @ ?      P @>0      P BDB;      P @ ?      pa  ?      pa }B|$<       pa }R}$<      pa z z$"9      pa |@D|D
=      pa {{ 9      pa {yD;      pa xyD"9      P @$?      P ?      P DD|DJ=      P  `p      P 0      P @$?      P  p      pa  p      P  '        pa   ?      P       pa       ?           P          P  B      P T0     P  B ?     P @>0     P BDB;     P @ ?     Px   ?     Px  }B|$<      Px  {z$"9     Px  z z$"9     Px  |@D|D
=     Px  {{ 9     Px  {yD;     Px  xyD"9     P @$?     P B$?     P FDD|DJ=     P   `p     P 0     P @$?     P  p     Px   p     P  '       Px    ?     P      Px       > C@!<     8 ~ A/     8 ~ A/B    8 ! 'T0     qB@)      8 ! $@>0    8 ! BDB;    8 ~ A/      8 ~ A    8 ~ A}    8 ~ A{E    8 ~ Az!}    8 ! |@D|D
=    8 ~ A{A    8 ~ A{)     8 ~ Ax}!    8 ~ A/     8 ~ AH(    8 ! LdD|DJ=    8 ! 
  `p    8 ! !0    8 ~ A'     8 ~ A/    8 ~ A    8 ~ A/     8 ~ A    8 ~ A/BG    8 !      |PQ(\e _Q=QP    8PQPQW      8PQPQWA    8PQPQWT0    8PRP _U@ ?    8PQPQT@>0    8PQPQBDB;    8PQPQW@ ?    8PQPQ ?    8PQPQ}A|<    8PQPQ}Q}<    8PQPQ}_}<    8PQPQ|@D|D
=    8PQPQ}P}<    8PQPQ}J|
=    8PQPQ|@_|<    8PQPQW@?    8PQPQT?    8PQPQTWDDJ=    8PQPQP `p    8PQPQQ0    8PQPQS@?    8PQPQW pp    8PQPQ pp    8PQPQW      8PQPQ  ?    8PQPQW@    8PQPQE     > C@!     8  A/     8  A/B    8 ! 'T0     B@)      8 ! $@>0    8 ! BDB;    8  A/      8  A    8  A}    8  A{E    8  Az!}    8 ! |@D|D
=    8  A{A    8  A{)     8  Ax}!    8  A/     8  AH(    8 ! LdD|DJ=    8 ! 
  `p    8 ! !0    8  A'     8  A/    8  A    8  A/     8  A    8  A/BG    8 !       ?       P          P  B      P T0     P H ?     P @>0     P BDB;     P @ ?     Px  ?     Px }B|$<      Px {z$"9     Px z z$"9     Px |@D|D
=     Px {{ 9     Px {yD;     Px xyD"9     P @$?     P P
?     P TL|DJ=     P (`p     P 0     P @$?     P  p     Px  p     P  '       Px   ?     P      Px (          pp         P           P   B      P  T0     P   @ ?     P  @>0     P  BDB;     P  @ ?     Px   ?     Px  }B|$<      Px  {z$"9     Px  z z$"9     Px  |@D|D
=     Px  {{ 9     Px  {yD;     Px  xyD"9     P  @$?     P @$?     P DDD|DJ=     P   `p     P  0     P  @$?     P   p     Px   p     P   '       Px    ?     P       Px        # (H	       B@ /      B@ /B      &2 / 'T0     B@ (        &2 / $@>0      &2 / BDB;     B@ /       2      2 }     2 {E     2 z!}     !Bc |@D|D
=     2 {A     2 {)      2 x}!     B@ /      B@@(      &2 /DdD|DJ=      &2 /  `p      &2 / !0     B@ '      B@ /     2      B@ /      2      B@ /BG     !Bc "      ' ЂE"(&    8 PQ      8 PQ B    8 !"D(" T0     (H (      8 !"D(" @>0    8 !"D(" BDB;    8 PQ       BDpH      BDpH }     BDpH }     BDpH z!}      ""  |@D|D
=     BDpH {A     BDpH {)      BDpH x}!    8 PQ     8 PQ@(    8 !"D("DDD|DJ=    8 !"D("  `p    8 !"D(" 0    8 PQ	 !    8 PQ      BDpH     8 PQ      BDpH     8 PQBG      ""        '@B~ 8 @       pB   @       pB @B       pB  
c       p"` "         pB ?        pB C       pB         pB        pB }!C       pB })HC       pB z _C       pB |@"C       pB {P       pB {JP       pB x_PC       pBC       pB@"C       pBDB"C       pB @1       pB   Rc       pB@       pB        pB        pB        pB         pB !       pB@ @A      			     I	        I	  !    I	  T0    I0	  @ ?    I	  @>0    I	  BDB;    I	  @ ?    I	  ?    I	 }A|<    I	 }Q}<    I	 }_}<    I	 |@D|D
=    I	 }P}<    I	 }J|
=    I	 |@_|<    I	 @?    I	 @?    I	 DDD|DJ=    I	   `p    I	  0    I	 @    I	   pp    I	   pp    I	       I	   ?    I	     I	       'pB~ 8 @       @B   @       @B @B       @B  
c       @"` "         @B ?        @B C       @B         @B        @B }!C       @B })HC       @B z _C       @B |@"C       @B {P       @B {JP       @B x_PC       @BC       @B@"C       @BDB"C       @B @1       @B   Rc       @B@       @B        @B        @B        @B         @B !       @B@ @A      		     I        I  !    I  T0    I0	  @ ?    I  @>0    I  BDB;    I  @ ?    I  ?    I }A|<    I }Q}<    I }_}<    I |@D|D
=    I }P}<    I }J|
=    I |@_|<    I @?    I @?    I DDD|DJ=    I   `p    I  0    I @    I   pp    I   pp    I       I   ?    I     I       ?CA"     DB0x       DB0x B     "/!  T0     D"F (       "/!  @>0     "/!  BDB;     DB0x       DB0x      DB0x }     DB0x }     DB0x z!}     "/!  |@D|D
=     DB0x {A     DB0x {)      DB0x x}!     DB0x      DB0x@/      "/! DDD|DJ=     "/!   `p     "/!  0     DB0x	 !     DB0x      DB0x      DB0x      DB0x      DB0xBG     "/!        _P_QRP P    PE_QP        PE_QP  !    PE_QP  T0    PE_P0\ T @ ?    PE_QP  @>0    PE_QP  BDB;    PE_QP  @ ?    PE_QP  ?    PE_QP }A|<    PE_QP }Q}<    PE_QP }_}<    PE_QP |@D|D
=    PE_QP }P}<    PE_QP }J|
=    PE_QP |@_|<    PE_QP @?    PE_QP @?    PE_QP DDD|DJ=    PE_QP   `p    PE_QP  0    PE_QP @    PE_QP   pp    PE_QP   pp    PE_QP       PE_QP   ?    PE_QP     PE_QP       ?CAO"     DB3       DB3 B     "!  T0     D" (       "!  @>0     "!  BDB;     DB3       DB3      DB3 }     DB3 }     DB3 z!}     "!  |@D|D
=     DB3 {A     DB3 {)      DB3 x}!     DB3      DB3@/      "! DDD|DJ=     "!   `p     "!  0     DB3	 !     DB3      DB3      DB3      DB3      DB3BG     "!        _P_Q=RP P    PEQ=P        PEQ=P  !    PEQ=P  T0    PEP0\ T @ ?    PEQ=P  @>0    PEQ=P  BDB;    PEQ=P  @ ?    PEQ=P  ?    PEQ=P }A|<    PEQ=P }Q}<    PEQ=P }_}<    PEQ=P |@D|D
=    PEQ=P }P}<    PEQ=P }J|
=    PEQ=P |@_|<    PEQ=P @?    PEQ=P @?    PEQ=P DDD|DJ=    PEQ=P   `p    PEQ=P  0    PEQ=P @    PEQ=P   pp    PEQ=P   pp    PEQ=P       PEQ=P   ?    PEQ=P     PEQ=P           B@@    @          @   B     @  T0        @ ?    @  @>0    @  BDB;    @  @ ?    @  ?    @ }B|$<     @ }R}$<    @ z z$"9    @ |@D|D
=    @ {{ 9    @ {yD;    @ xyD"9    @  @$?    @  ?    @  D|DJ=    @    `p    @  0    @ @"    @   p    @  p    @   '      @   ?    @     @      ' OD ? @      	"q"   @      	"q" @B      	"q"  
c      	"A" "       	"q" ?       	"q" C      	"q"        	"q"      	"q"}!C      	"q"{QC      	"q"z _C      	"q"|@"C      	"q"{P      	"q"{JP      	"q"x_PC      	"q" C      	"q"@"C      	"q"DB"C      	"q" @1      	"q"   Rc      	"q" C      	"q"       	"q"      	"q"        	"q"       	"q"  !      	"q"D @A      III(		     II(		       II(		 A    II(		 T0    II$	 @ ?    II(		 @>0    II(		 BDB;    II(		 @ ?    II(		 ?    II(		}A|<    II(		}Q}<    II(		}_}<    II(		|@D|D
=    II(		}P}<    II(		}J|
=    II(		|@_|<    II(		 @?    II(		 ?    II(		DGDDJ=    II(		  `p    II(		 0    II(		 @?    II(		  pp    II(		 pp    II(		       II(		  ?    II(		 @    II(	I      ?@"     %"        %"  B     !! T0     %"  (       !! @>0     !! BDB;     %"         %"      %" }     %" {E     %" z!}     !!|@D|D
=     %" {A     %" {)      %" x}!     %"        %" @(     !!DDD|DJ=     !!  `p     !! 0     %"        %"       %"      %"        %"      %"  BG     !!"         !A    A          A   B     A  T0    !   @ ?    A  @>0    A  BDB;    A  @ ?    A  ?    A }B|$<     A }R}$<    A z z$"9    A |@D|D
=    A {{ 9    A {yD;    A xyD"9    A  @$?    A  ?    A  D|DJ=    A    `p    A  0    A @"    A   p    A  p    A   '      A   ?    A     A      '            @           @   B      @  T0     @   @ ?     @  @>0     @  BDB;     @  @ ?     @   ?     @  }B|$<      @  }R}$<     @  z z$"9     @  |@D|D
=     @  {{ 9     @  {yD;     @  xyD"9     @  @$?     @  B$?     @  FDD|DJ=     @    `p     @  0     @  @$?     @   p     @   p     @   '       @    ?     @       @  B     /@!<     ~ ECDx      ~ ECDx B    ~ "~ "/ T0     %" A	      ~ "~ "/ @>0    ~ "~ "/ BDB;    ~ ECDx       ~ ECDx    ~ ECDx}    ~ ECDx{E    ~ ECDxz!}    ~ "~ "/|@D|D
=    ~ ECDx{A    ~ ECDx{)     ~ ECDxx}!    ~ ECDx      ~ ECDx@(    ~ "~ "/DDD|DJ=    ~ "~ "/  `p    ~ "~ "/ 0    ~ ECDx      ~ ECDx     ~ ECDx    ~ ECDx      ~ ECDx    ~ ECDx BG    ~ "~ "/"      __PE_Q=QP    ~P%~P%_       ~P%~P%_ A    ~P%~P%_ T0    PEPE_Q=U@ ?    ~P%~P%_ @>0    ~P%~P%_ BDB;    ~P%~P%_ @ ?    ~P%~P%_ ?    ~P%~P%_}A|<    ~P%~P%_}Q}<    ~P%~P%_}_}<    ~P%~P%_|@D|D
=    ~P%~P%_}P}<    ~P%~P%_}J|
=    ~P%~P%_|@_|<    ~P%~P%_ @?    ~P%~P%_ ?    ~P%~P%_DGDDJ=    ~P%~P%_  `p    ~P%~P%_ 0    ~P%~P%_ @?    ~P%~P%_  pp    ~P%~P%_ pp    ~P%~P%_       ~P%~P%_  ?    ~P%~P%_ @    ~P%~P%_E      /@!     ~ ECD      ~ ECD B    ~ "~ "/! T0     %" A)      ~ "~ "/! @>0    ~ "~ "/! BDB;    ~ ECD       ~ ECD    ~ ECD}    ~ ECD{E    ~ ECDz!}    ~ "~ "/!|@D|D
=    ~ ECD{A    ~ ECD{)     ~ ECDx}!    ~ ECD      ~ ECD@(    ~ "~ "/!DDD|DJ=    ~ "~ "/!  `p    ~ "~ "/! 0    ~ ECD      ~ ECD     ~ ECD    ~ ECD      ~ ECD    ~ ECD BG    ~ "~ "/!"      '        @          @  B      @ T0     @ @ ?     @ @>0     @ BDB;     @ @ ?     @  ?     @ }B|$<      @ }R}$<     @ z z$"9     @ |@D|D
=     @ {{ 9     @ {yD;     @ xyD"9     @ @$?     @ P?     @ TD|DJ=     @  `p     @ 0     @ @$?     @  p     @  p     @  '       @   ?     @      @ B           @      @            @    B      @   T0     @    @ ?     @   @>0     @   BDB;     @   @ ?     @   ?     @  }B|$<      @  }R}$<     @  z z$"9     @  |@D|D
=     @  {{ 9     @  {yD;     @  xyD"9     @   @$?     @  @$?     @  DDD|DJ=     @    `p     @   0     @   @$?     @    p     @   p     @    '       @    ?     @        @  B     ?@      %"        %"  B        T0     %"  (          @>0        BDB;     %"         %"      %" }     %" {E     %" z!}       |@D|D
=     %" {A     %" {)      %" x}!     %"        %" @(       DDD|DJ=         `p        0     %"        %"       %"      %"        %"      %"  BG       "      ?CAA"     DB0x       DB0x B     "/!  T0     D"F (       "/!  @>0     "/!  BDB;     DB0x       DB0x      DB0x }     DB0x }     DB0x z!}     "/!  |@D|D
=     DB0x {A     DB0x {)      DB0x x}!     DB0x      DB0x@(     "/! DDD|DJ=     "/!   `p     "/!  0     DB0x	 !     DB0x      DB0x      DB0x      DB0x      DB0xBG     "/!        ' 	 H~ #  @     $ 	x@   @     $ 	x@ @B     $ 	x@  
c     $ 	x@ "       $ 	x@ ?      $ 	x@ C     $ 	x@       $ 	x@      $ 	x@ }!C     $ 	x@ })HC     $ 	x@ z _C     $ 	x@ |@"C     $ 	x@ {P     $ 	x@ {JP     $ 	x@ x_PC     $ 	x@C     $ 	x@@"C     $ 	x@DB"C     $ 	x@ @1     $ 	x@   Rc     $ 	x@@     $ 	x@      $ 	x@      $ 	x@      $ 	x@       $ 	x@ !     $ 	x@@ @A      ɀ	π	 	     	π	|        	π	|  !    	π	|  T0    	π	|	  @ ?    	π	|  @>0    	π	|  BDB;    	π	|  @ ?    	π	|  ?    	π	| }A|<    	π	| }Q}<    	π	| }_}<    	π	| |@D|D
=    	π	| }P}<    	π	| }J|
=    	π	| |@_|<    	π	| @?    	π	| @?    	π	| DDD|DJ=    	π	|   `p    	π	|  0    	π	| @    	π	|   pp    	π	|   pp    	π	|       	π	|   ?    	π	|     	π	|       ' 	 x~ #  @     $ H@   @     $ H@ @B     $ H@  
c     $ H@ "       $ H@ ?      $ H@ C     $ H@       $ H@      $ H@ }!C     $ H@ })HC     $ H@ z _C     $ H@ |@"C     $ H@ {P     $ H@ {JP     $ H@ x_PC     $ H@C     $ H@@"C     $ H@DB"C     $ H@ @1     $ H@   Rc     $ H@@     $ H@      $ H@      $ H@      $ H@       $ H@ !     $ H@@ @A      ɀɀ 	     	ɀ|        	ɀ|  !    	ɀ|  T0    	ɀ|	  @ ?    	ɀ|  @>0    	ɀ|  BDB;    	ɀ|  @ ?    	ɀ|  ?    	ɀ| }A|<    	ɀ| }Q}<    	ɀ| }_}<    	ɀ| |@D|D
=    	ɀ| }P}<    	ɀ| }J|
=    	ɀ| |@_|<    	ɀ| @?    	ɀ| @?    	ɀ| DDD|DJ=    	ɀ|   `p    	ɀ|  0    	ɀ| @    	ɀ|   pp    	ɀ|   pp    	ɀ|       	ɀ|   ?    	ɀ|     	ɀ|       ? /     0 x _      0 x _ B    (/΀(  T0    0 x _ (      (/΀(  @>0    (/΀(  BDB;    0 x _      0 x _     0 x _ }    0 x _ }    0 x _ z!}    (/(  |@D|D
=    0 x _ {A    0 x _ {)     0 x _ x}!    0 x _     0 x _@/     (/΀( DDD|DJ=    (/΀(   `p    (/΀(  0    0 x _	 !    0 x _     0 x _     0 x _     0 x _     0 x _BG    (/(        _ŀX_݀XW P P    X_݀X|P        X_݀X|P  !    X_݀X|P  T0    X_݀X|P T @ ?    X_݀X|P  @>0    X_݀X|P  BDB;    X_݀X|P  @ ?    X_݀X|P  ?    X_݀X|P }A|<    X_݀X|P }Q}<    X_݀X|P }_}<    X_݀X|P |@D|D
=    X_݀X|P }P}<    X_݀X|P }J|
=    X_݀X|P |@_|<    X_݀X|P @?    X_݀X|P @?    X_݀X|P DDD|DJ=    X_݀X|P   `p    X_݀X|P  0    X_݀X|P @    X_݀X|P   pp    X_݀X|P   pp    X_݀X|P       X_݀X|P   ?    X_݀X|P     X_݀X|P       ? `/     0 _      0 _ B    (  T0    0 (      (  @>0    (  BDB;    0 _      0     0 }    0 }    0 z!}    ((  |@D|D
=    0 {A    0 {)     0 x}!    0 _     0 _@/     ( DDD|DJ=    (   `p    (  0    0 _	 !    0 _     0     0 _     0     0 _BG    ((        _ŀXŀXW P P    X_Ł|P        X_Ł|P  !    X_Ł|P  T0    XŀX|P T @ ?    X_Ł|P  @>0    X_Ł|P  BDB;    X_Ł|P  @ ?    XŀX|P  ?    XŀX|P }A|<    XŀX|P }Q}<    XŀX|P }_}<    XŀX|P |@D|D
=    XŀX|P }P}<    XŀX|P }J|
=    XŀX|P |@_|<    X_Ł|P @?    X_Ł|P @?    X_Ł|P DDD|DJ=    X_Ł|P   `p    X_Ł|P  0    X_Ł|P @    X_Ł|P   pp    XŀX|P   pp    X_Ł|P       XŀX|P   ?    X_Ł|P     XŀX|P         @@ ?         ?            ?   B       ?  T0      ?@  @ ?      ?  @>0      ?  BDB;      ?  @ ?      ?   ?      ?  }B|$<       ?  }R}$<      ?  z z$"9      ?  |@D|D
=      ?  {{ 9      ?  {yD;      ?  xyD"9      ?  @$?      ?  ?      ?  DD|DJ=      ?   `p      ?  0      ?  @$?      ?   p      ?   p      ?   '        ?    ?      ?        ?        #D  A? @     "ȀC  #  @     "ȀC  #@B     "ȀC  # 
c     "ȀC  "      "ȀC  "?      "ȀC  C     "ȀC  #      "ȀC     "ȀC}!C     "ȀC{QC     "ȀCz _C     "ȀC|@"C     "ȀC{P     "ȀC{JP     "ȀCx_PC     "ȀC  #C     "ȀC @"C     "ȀC Db"C     "ȀC  @1     "ȀC    Rc     "ȀC  !C     "ȀC  #     "ȀC     "ȀC  #      "ȀC      "ȀC  # !     "ȀCD @A      ɀ				     		|       		| A    		| T0    		  @ ?    		| @>0    		| BDB;    		| @ ?    		|	 ?    		|	}A|<    		|	}Q}<    		|	}_}<    		|	|@D|D
=    		|	}P}<    		|	}J|
=    		|	|@_|<    		| @?    		| ?    		|DDDJ=    		| `p    		| 0    		| @?    		|  pp    		|	 pp    		|       		|	  ?    		| @    		|I      / OA!    (B /     (B /B    $$? / 'T0    (B (      $$? / $@>0    $$? / BDB;    (B /      (    (}    ({E    (z!}    $$? |@D|D
=    ({A    ({)     (x}!    (B /     (B@(    $$? /DdD|DJ=    $$? /  `p    $$? / !0    (B '     (B /    (    (B /     (    (B /BG    $$? "        @@ ?      ?           ?  B       ? T0      ?  @ ?      ? @>0      ? BDB;      ? @ ?      ?  ?      ? }B|$<       ? }R}$<      ? z z$"9      ? |@D|D
=      ? {{ 9      ? {yD;      ? xyD"9      ? @$?      ? ?      ? DD|DJ=      ?  `p      ? 0      ? @$?      ?  p      ?  p      ?  '        ?   ?      ?       ?        @           ?            ?   B       ?  T0      ?   B ?      ?  @>0      ?  BDB;      ?  @ ?      ?   ?      ?  }B|$<       ?  {z$"9      ?  z z$"9      ?  |@D|D
=      ?  {{ 9      ?  {yD;      ?  xyD"9      ?  @$?      ?  B$?      ?  FDD|DJ=      ?    `p      ?  0      ?  @$?      ?   p      ?   p      ?   '        ?    ?      ?        ?        / ~@!<     ~(s A/     ~(s A/B    ~$~$> 'T0    (s @)      ~$~$> $@>0    ~$~$> BDB;    ~(s A/      ~(s A    ~(s A}    ~(s A{E    ~(s Az!}    ~$~$> |@D|D
=    ~(s A{A    ~(s A{)     ~(s Ax}!    ~(s A/     ~(s AH(    ~$~$> LdD|DJ=    ~$~$> 
  `p    ~$~$> !0    ~(s A'     ~(s A/    ~(s A    ~(s A/     ~(s A    ~(s A/BG    ~$~$>       __ŀW _Q=QP    ~T~T>PQW      ~T~T>PQWA    ~T~T>PQWT0    XX|P _U@ ?    ~T~T>PQT@>0    ~T~T>PQBDB;    ~T~T>PQW@ ?    ~T~T>PQ ?    ~T~T>PQ}A|<    ~T~T>PQ}Q}<    ~T~T>PQ}_}<    ~T~T>PQ|@D|D
=    ~T~T>PQ}P}<    ~T~T>PQ}J|
=    ~T~T>PQ|@_|<    ~T~T>PQW@?    ~T~T>PQT?    ~T~T>PQTWDDJ=    ~T~T>PQP `p    ~T~T>PQQ0    ~T~T>PQS@?    ~T~T>PQW pp    ~T~T>PQ pp    ~T~T>PQW      ~T~T>PQ  ?    ~T~T>PQW@    ~T~T>PQE      / ~@!     ~( A/     ~( A/B    ~$~$> 'T0    ( @)      ~$~$> $@>0    ~$~$> BDB;    ~( A/      ~( A    ~( A}    ~( A{E    ~( Az!}    ~$~$> |@D|D
=    ~( A{A    ~( A{)     ~( Ax}!    ~( A/     ~( AH(    ~$~$> LdD|DJ=    ~$~$> 
  `p    ~$~$> !0    ~( A'     ~( A/    ~( A    ~( A/     ~( A    ~( A/BG    ~$~$>        @       ?            ?   B       ?  T0      ?  H ?      ?  @>0      ?  BDB;      ?  @ ?      ?  ?      ? }B|$<       ? {z$"9      ? z z$"9      ? |@D|D
=      ? {{ 9      ? {yD;      ? xyD"9      ?  @$?      ?  P
?      ?  TL|DJ=      ?  (`p      ?  0      ?  @$?      ?   p      ?  p      ?   '        ?   ?      ?        ? (        @@ ?          ?             ?    B       ?   T0      ?    @ ?      ?   @>0      ?   BDB;      ?   @ ?      ?   ?      ?  }B|$<       ?  {z$"9      ?  z z$"9      ?  |@D|D
=      ?  {{ 9      ?  {yD;      ?  xyD"9      ?   @$?      ?  @$?      ?  DDD|DJ=      ?    `p      ?   0      ?   @$?      ?    p      ?   p      ?    '        ?    ?      ?         ?        / O      ( @ /     ( @ /B    $$?  / 'T0    ( @ (      $$?  / $@>0    $$?  / BDB;    ( @ /      (     ( }    ( {E    ( z!}    $$? |@D|D
=    ( {A    ( {)     ( x}!    ( @ /     ( @@(    $$?  /DdD|DJ=    $$?  /  `p    $$?  / !0    ( @ '     ( @ /    (     ( @ /     (     ( @ /BG    $$? "      ? `/     0  _      0  _ B    (/(  T0    0  _ (      (/(  @>0    (/(  BDB;    0  _      0  _     0  _ }    0  _ }    0  _ z!}    (/(  |@D|D
=    0  _ {A    0  _ {)     0  _ x}!    0  _     0  _@(    (/( DDD|DJ=    (/(   `p    (/(  0    0  _	 !    0  _     0  _     0  _     0  _     0  _BG    (/(        ' HBB$'  @      tB    @      tB  @B      tB   
c      tB" "        tB  ?       tB  C      tB         tB        tB  }!C      tB  })HC      tB  z _C      tB  |@"C      tB  {P      tB  {JP      tB  x_PC      tB C      tB @"C      tB DB"C      tB  @1      tB    Rc      tB @      tB        tB        tB        tB         tB  !      tB @ @A       HHH 	     	DOD         	DOD   !    	DOD   T0    	DODI	  @ ?    	DOD   @>0    	DOD   BDB;    	DOD   @ ?    	DOD   ?    	DOD  }A|<    	DOD  }Q}<    	DOD  }_}<    	DOD  |@D|D
=    	DOD  }P}<    	DOD  }J|
=    	DOD  |@_|<    	DOD  @?    	DOD  @?    	DOD  DDD|DJ=    	DOD    `p    	DOD   0    	DOD  @    	DOD    pp    	DOD    pp    	DOD        	DOD    ?    	DOD      	DOD        ' HrB$'  @      DB    @      DB  @B      DB   
c      DB" "        DB  ?       DB  C      DB         DB        DB  }!C      DB  })HC      DB  z _C      DB  |@"C      DB  {P      DB  {JP      DB  x_PC      DB C      DB @"C      DB DB"C      DB  @1      DB    Rc      DB @      DB        DB        DB        DB         DB  !      DB @ @A       HHH 	     	DID         	DID   !    	DID   T0    	DIDO	  @ ?    	DID   @>0    	DID   BDB;    	DID   @ ?    	DID   ?    	DID  }A|<    	DID  }Q}<    	DID  }_}<    	DID  |@D|D
=    	DID  }P}<    	DID  }J|
=    	DID  |@_|<    	DID  @?    	DID  @?    	DID  DDD|DJ=    	DID    `p    	DID   0    	DID  @    	DID    pp    	DID    pp    	DID        	DID    ?    	DID      	DID        ? BI	!$?      tC@       tC@ B     D$ND/   T0     tB (       D$ND/   @>0     D$ND/   BDB;     tC@       tC@      tC@ }     tC@ }     tC@ z!}     D$ND/   |@D|D
=     tC@ {A     tC@ {)      tC@ x}!     tC@      tC@@/      D$ND/  DDD|DJ=     D$ND/    `p     D$ND/   0     tC@	 !     tC@      tC@      tC@      tC@      tC@BG     D$ND/         _ THTHTH_ P P    PDT}D_ P        PDT}D_ P  !    PDT}D_ P  T0    PDT]DTEP T @ ?    PDT}D_ P  @>0    PDT}D_ P  BDB;    PDT}D_ P  @ ?    PDT]D_ P  ?    PDT]D_ P }A|<    PDT]D_ P }Q}<    PDT]D_ P }_}<    PDT]D_ P |@D|D
=    PDT]D_ P }P}<    PDT]D_ P }J|
=    PDT]D_ P |@_|<    PDT}D_ P @?    PDT}D_ P @?    PDT}D_ P DDD|DJ=    PDT}D_ P   `p    PDT}D_ P  0    PDT}D_ P @    PDT}D_ P   pp    PDT]D_ P   pp    PDT}D_ P       PDT]D_ P   ?    PDT}D_ P     PDT]D_ P       ? NHI	'$?      O@       O@ B     DBD   T0     B (       DBD   @>0     DBD   BDB;     O@       O@      O@ }     O@ }     O@ z!}     D$BD   |@D|D
=     O@ {A     O@ {)      O@ x}!     O@      O@@/      DBD  DDD|DJ=     DBD    `p     DBD   0     O@	 !     O@      O@      O@      O@      O@BG     D$BD         _ TIԅHTH_ P P    PDTEE P        PDTEE P  !    PDTEE P  T0    PEEDT]P T @ ?    PDTEE P  @>0    PDTEE P  BDB;    PDTEE P  @ ?    PDTEE P  ?    PDTEE P }A|<    PDTEE P }Q}<    PDTEE P }_}<    PDTEE P |@D|D
=    PDTEE P }P}<    PDTEE P }J|
=    PDTEE P |@_|<    PDTEE P @?    PDTEE P @?    PDTEE P DDD|DJ=    PDTEE P   `p    PDTEE P  0    PDTEE P @    PDTEE P   pp    PDTEE P   pp    PDTEE P       PDTEE P   ?    PDTEE P     PDTEE P                                 B         T0          @ ?        @>0        BDB;        @ ?        ?       }B|$<        }R}$<       z z$"9       |@D|D
=       {{ 9       {yD;       xyD"9        @$?        ?        D|DJ=          `p        0       @"         p        p         '           ?                   ' HBB A? @     @   @     @ @B     @  
c     @ "      @ ?      @ C     @       @     @}!C     @{QC     @z _C     @|`"C     @{P     @{JP     @x_PC     @ C     @@"C     @DB"C     @ @1     @   Rc     @ C     @      @#     @       @      @  !     @D @A       IDID		     ID		       ID		 A    ID		 T0    ID 		 @ ?    ID		 @>0    ID		 BDB;    ID		 @ ?    ID		 ?    ID		}A|<    ID		}Q}<    ID		}_}<    ID		|@D|D
=    ID		}P}<    ID		}J|
=    ID		|@_|<    ID		 @?    ID		 ?    ID		DGDDJ=    ID		  `p    ID		 0    ID		 @?    ID		  pp    ID		 pp    ID		       ID		  ?    ID		 @    ID	I      ? BHA!    DЂ      DЂ B    ""/  T0    DЂ (      ""/  @>0    ""/  BDB;    DЂ       DЂ    DЂ}    DЂ{E    DЂz!}    ""/ |@D|D
=    DЂ{A    DЂ{)     DЂx}!    DЂ      DЂ@(    ""/ DDD|DJ=    ""/   `p    ""/  0    DЂ      DЂ     DЂ    DЂ      DЂ    DЂ BG    ""/ "                         B       T0        @ ?      @>0      BDB;      @ ?      ?     }B|$<      }R}$<     z z$"9     |@D|D
=     {{ 9     {yD;     xyD"9      @$?      ?      D|DJ=        `p      0     @"       p      p       '         ?                                         B         T0         @ ?        @>0        BDB;        @ ?         ?        }B|$<         }R}$<        z z$"9        |@D|D
=        {{ 9        {yD;        xyD"9        @$?        B$?        FDD|DJ=          `p        0        @$?         p         p         '            ?                B     / "@!<     $DBxA      $DBxA B    """' /	 T0    D A	      """' /	 @>0    """' /	 BDB;    $DBxA       ~$BxA    ~$BxA}    ~$BxA{E    ~$BxAz!}    ~"B$' /	|@D|D
=    ~$BxA{A    ~$BxA{)     ~$BxAx}!    $DBxA      $DBxA@(    """' /	DDD|DJ=    """' /	  `p    """' /	 0    $DBxA      $DBxA     ~$BxA    $DBxA      ~$BxA    $DBxA BG    ~"B$' /	      _ TED_ _Q=QP    ~RE$W _       ~RE$W _ A    ~RE$W _ T0    TH_ _Q=T@ ?    ~RE$W _ @>0    ~RE$W _ BDB;    ~RE$W _ @ ?    ~RE$W _ ?    ~RE$W _}A|<    ~RE$W _}Q}<    ~RE$W _}_}<    ~RE$W _|@D|D
=    ~RE$W _}P}<    ~RE$W _}J|
=    ~RE$W _|@_|<    ~RE$W _ @?    ~RE$W _ ?    ~RE$W _DGDDJ=    ~RE$W _  `p    ~RE$W _ 0    ~RE$W _ @?    ~RE$W _  pp    ~RE$W _ pp    ~RE$W _       ~RE$W _  ?    ~RE$W _ @    ~RE$W _E      / "@!     $DBA      $DBA B    """' /  T0    D A)      """' /  @>0    """' /  BDB;    $DBA       ~$BxA    ~$BxA}    ~$BxA{E    ~$BxAz!}    ~"B$' /	|@D|D
=    ~$BxA{A    ~$BxA{)     ~$BxAx}!    $DBA      $DBA@(    """' / DDD|DJ=    """' /   `p    """' /  0    $DBA      $DBA     ~$BxA    $DBA      ~$BxA    $DBA BG    ~"B$' /	                          B        T0       @ ?       @>0       BDB;       @ ?        ?       }B|$<        }R}$<       z z$"9       |@D|D
=       {{ 9       {yD;       xyD"9       @$?       P?       TD|DJ=        `p       0       @$?        p        p        '           ?              B                                  B          T0          @ ?         @>0         BDB;         @ ?         ?        }B|$<         }R}$<        z z$"9        |@D|D
=        {{ 9        {yD;        xyD"9         @$?        @$?        DDD|DJ=          `p         0         @$?          p         p          '            ?                 B     ? BH      D       D  B    ""/   T0    D  (      ""/   @>0    ""/   BDB;    D        D     D }    D {E    D z!}    ""/  |`D|D
=    D {A    D {)     D x}!    D       D @(    ""/  DDD|DJ=    ""/    `p    ""/   0    D       D      D /    D       D     D  BG    ""/  "      ? BHI	!$?      C@       C@ B     D$BD/   T0     B (       D$BD/   @>0     D$BD/   BDB;     C@       C@      C@ }     C@ }     C@ z!}     D$BD/   |@D|D
=     C@ {A     C@ {)      C@ x}!     C@      C@@(     D$BD/  DDD|DJ=     D$BD/    `p     D$BD/   0     C@	 !     C@      C@      C@      C@      C@BG     D$BD/         ! 	@$A! @     < ?Ht"!   @     < ?Ht"! @B     < ?Ht"!  
c     < ?0rB!"       < ?Ht"! ?      < ?Ht"! C     < ?Ht"!       < ?Ht"`      < ?Ht"` }!C     < ?Ht"` })HC     < ?Ht"` z _C     < ?Ht"` |@"C     < ?Ht"` {P     < ?Ht"` {JP     < ?Ht"` x_PC     < ?Ht"!C     < ?Ht"!@"C     < ?Ht"!DB"C     < ?Ht"! @1     < ?Ht"!   Rc     < ?Ht"!@     < ?Ht"!      < ?Ht"`      < ?Ht"!      < ?Ht"`       < ?Ht"! !     < ?Ht"`@ @A        $)BI	     <	OB)<        <	OB)<  !    <	OB)<  T0    <	$)BI @ ?    <	OB)<  @>0    <	OB)<  BDB;    <	OB)<  @ ?    8	DI8  ?    8	DI8 }A|<    8	DI8 }Q}<    8	DI8 }_}<    8	DI8 |@D|D
=    8	DI8 }P}<    8	DI8 }J|
=    8	DI8 |@_|<    <	OB)< @?    <	OB)< @?    <	OB)< DDD|DJ=    <	OB)<   `p    <	OB)<  0    <	OB)< @    <	OB)<   pp    8	DI8   pp    <	OB)<       8	DI8   ?    <	OB)<     8	DI8       ! 	p'A! @     < ?HD"!   @     < ?HD"! @B     < ?HD"!  
c     < ?0BB!"       < ?HD"! ?      < ?HD"! C     < ?HD"!       < ?HD"`      < ?HD"` }!C     < ?HD"` })HC     < ?HD"` z _C     < ?HD"` |@"C     < ?HD"` {P     < ?HD"` {JP     < ?HD"` x_PC     < ?HD"!C     < ?HD"!@"C     < ?HD"!DB"C     < ?HD"! @1     < ?HD"!   Rc     < ?HD"!@     < ?HD"!      < ?HD"`      < ?HD"!      < ?HD"`       < ?HD"! !     < ?HD"`@ @A        $/BI	     <	IB/<        <	IB/<  !    <	IB/<  T0    <	$/BI @ ?    <	IB/<  @>0    <	IB/<  BDB;    <	IB/<  @ ?    8	DO8  ?    8	DO8 }A|<    8	DO8 }Q}<    8	DO8 }_}<    8	DO8 |@D|D
=    8	DO8 }P}<    8	DO8 }J|
=    8	DO8 |@_|<    <	IB/< @?    <	IB/< @?    <	IB/< DDD|DJ=    <	IB/<   `p    <	IB/<  0    <	IB/< @    <	IB/<   pp    8	DO8   pp    <	IB/<       8	DO8   ?    <	IB/<     8	DO8       ' 9Ȋ	A$Dp    < t"O      < t"O B    < "NB$"<  T0    < rBP!(      < "NB$"<  @>0    < "NB$"<  BDB;    < t"O      < t"HF     < t"HF }    < t"HF }    < t"HF z!}    < "NB"B  |@D|D
=    < t"HF {A    < t"HF {)     < t"HF x}!    < t"O     < t"O@/     < "NB$"< DDD|DJ=    < "NB$"<   `p    < "NB$"<  0    < t"O	 !    < t"O     < t"HF     < t"O     < t"HF     < t"OBG    < "NB"B        S _ Q$T%BREP P    <PR]BT%<P        <PR]BT%<P  !    <PR]BT%<P  T0    <PQ$T%BRET @ ?    <PR]BT%<P  @>0    <PR]BT%<P  BDB;    <PR]BT%<P  @ ?    8PRDTE8P  ?    8PRDTE8P }A|<    8PRDTE8P }Q}<    8PRDTE8P }_}<    8PRDTE8P |@D|D
=    8PRDTE8P }P}<    8PRDTE8P }J|
=    8PRDTE8P |@_|<    <PR]BT%<P @?    <PR]BT%<P @?    <PR]BT%<P DDD|DJ=    <PR]BT%<P   `p    <PR]BT%<P  0    <PR]BT%<P @    <PR]BT%<P   pp    8PRDTE8P   pp    <PR]BT%<P       8PRDTE8P   ?    <PR]BT%<P     8PRDTE8P       ' 8HA$Dp    < .O      < .O B    < BB"<  T0    < BЉ!(      < BB"<  @>0    < BB"<  BDB;    < .O      < "I     < "I }    < "I }    < "I z!}    < BB"N  |@D|D
=    < "I {A    < "I {)     < "I x}!    < .O     < .O@/     < BB"< DDD|DJ=    < BB"<   `p    < BB"<  0    < .O	 !    < .O     < "I     < .O     < "I     < .OBG    < BB"N        S _х$T=BREP P    <PREC%<P        <PREC%<P  !    <PREC%<P  T0    <Pх$T=BRET @ ?    <PREC%<P  @>0    <PREC%<P  BDB;    <PREC%<P  @ ?    8P҅DT]8P  ?    8P҅DT]8P }A|<    8P҅DT]8P }Q}<    8P҅DT]8P }_}<    8P҅DT]8P |@D|D
=    8P҅DT]8P }P}<    8P҅DT]8P }J|
=    8P҅DT]8P |@_|<    <PREC%<P @?    <PREC%<P @?    <PREC%<P DDD|DJ=    <PREC%<P   `p    <PREC%<P  0    <PREC%<P @    <PREC%<P   pp    8P҅DT]8P   pp    <PREC%<P       8P҅DT]8P   ?    <PREC%<P     8P҅DT]8P          B         A            A  B        A T0       A  @ ?       A @>0       A BDB;       A @ ?       ?      }B|$<       }R}$<      z z$"9      |@D|D
=      {{ 9      {yD;      xyD"9       A @$?       A ?       A DD|DJ=       A  `p       A 0       A @$?       A  p       p       A  '          ?       A              x@?BǄG       ?DD  #  @      ?DD  #@B      ?DD  # 
c      ?DD  "       ?DD  "?       ?DD  C      ?DD  #      'C     'C}!C     'C{QC     'Cz _C     'C|@"C     'C{P     'C{JP     'Cx_PC      ?DD  #C      ?DD @"C      ?DD Db"C      ?DD  @1      ?DD    Rc      ?DD  !C      ?DD  #     'C      ?DD  #      'C       ?DD  # !     'CD @A     8	DID		     <	IB       <	IB A    <	IB T0    <	IB  @ ?    <	IB @>0    <	IB BDB;    <	IB @ ?    $)<	 ?    $)<	}A|<    $)<	}Q}<    $)<	}_}<    $)<	|@D|D
=    $)<	}P}<    $)<	}J|
=    $)<	|@_|<    <	IB @?    <	IB ?    <	IBDDDJ=    <	IB `p    <	IB 0    <	IB @?    <	IB  pp    $)<	 pp    <	IB       $)<	  ?    <	IB @    $)<I        !A      |B /      |B /B     "A#/ 'T0     |B (       "A#/ $@>0     "A#/ BDB;     |B /      ?􈠓    ?􈠓}    ?􈠓{E    ?􈠓z!}    /"$> |@D|D
=    ?􈠓{A    ?􈠓{)     ?􈠓x}!     |B /      |B@(     "A#/DdD|DJ=     "A#/  `p     "A#/ !0     |B '      |B /    ?􈠓     |B /     ?􈠓     |B /BG    /"$> "         B       A            A  B        A T0       A  @ ?       A @>0       A BDB;       A @ ?      ?     }B|$<      }R}$<     z z$"9     |@D|D
=     {{ 9     {yD;     xyD"9       A @$?       A ?       A DD|DJ=       A  `p       A 0       A @$?       A  p      p       A  '         ?       A              B            A            A  B        A T0       A  B ?       A @>0       A BDB;       A @ ?       ?      }B|$<       {z$"9      z z$"9      |@D|D
=      {{ 9      {yD;      xyD"9       A @$?       A B$?       A FDD|DJ=       A   `p       A 0       A @$?       A  p       p       A  '          ?       A            < "x@!<     ?䐡s A/     ?䐡s A/B    /$$.< 'T0     t|@)      /$$.< $@>0    /$$.< BDB;    ?䐡s A/      ?䐡s A    ?䐡s A}    ?䐡s A{E    ?䐡s Az!}    /$$.< |@D|D
=    ?䐡s A{A    ?䐡s A{)     ?䐡s Ax}!    ?䐡s A/     ?䐡s AH(    /$$.< LdD|DJ=    /$$.< 
  `p    /$$.< !0    ?䐡s A'     ?䐡s A/    ?䐡s A    ?䐡s A/     ?䐡s A    ?䐡s A/BG    /$$.<      8PRDS _Q=QP    _$T=<PQW      _$T=<PQWA    _$T=<PQWT0    _(T]DS _U@ ?    _$T=<PQT@>0    _$T=<PQBDB;    _$T=<PQW@ ?    _$T=<PQ ?    _$T=<PQ}A|<    _$T=<PQ}Q}<    _$T=<PQ}_}<    _$T=<PQ|@D|D
=    _$T=<PQ}P}<    _$T=<PQ}J|
=    _$T=<PQ|@_|<    _$T=<PQW@?    _$T=<PQT?    _$T=<PQTWDDJ=    _$T=<PQP `p    _$T=<PQQ0    _$T=<PQS@?    _$T=<PQW pp    _$T=<PQ pp    _$T=<PQW      _$T=<PQ  ?    _$T=<PQW@    _$T=<PQE     < "x@!     ?䐡 A/     ?䐡 A/B    /$$"< 'T0     |@)      /$$"< $@>0    /$$"< BDB;    ?䐡 A/      ?䐡 A    ?䐡 A}    ?䐡 A{E    ?䐡 Az!}    /$$"< |@D|D
=    ?䐡 A{A    ?䐡 A{)     ?䐡 Ax}!    ?䐡 A/     ?䐡 AH(    /$$"< LdD|DJ=    /$$"< 
  `p    /$$"< !0    ?䐡 A'     ?䐡 A/    ?䐡 A    ?䐡 A/     ?䐡 A    ?䐡 A/BG    /$$"<         B        A            A  B        A T0       A H ?       A @>0       A BDB;       A @ ?      ?     }B|$<      {z$"9     z z$"9     |@D|D
=     {{ 9     {yD;     xyD"9       A @$?       A P
?       A TL|DJ=       A (`p       A 0       A @$?       A  p      p       A  '         ?       A      (         B          A             A   B        A  T0       A   @ ?       A  @>0       A  BDB;       A  @ ?       ?      }B|$<       {z$"9      z z$"9      |@D|D
=      {{ 9      {yD;      xyD"9       A  @$?       A @$?       A DDD|DJ=       A   `p       A  0       A  @$?       A   p       p       A   '          ?       A                !       |@ /      |@ /B     "A# / 'T0     |@ (       "A# / $@>0     "A# / BDB;     |@ /      ?􈠓     ?􈠓 }    ?􈠓 {E    ?􈠓 z!}    /"$> |@D|D
=    ?􈠓 {A    ?􈠓 {)     ?􈠓 x}!     |@ /      |@@(     "A# /DdD|DJ=     "A# /  `p     "A# / !0     |@ '      |@ /    ?􈠓      |@ /     ?􈠓      |@ /BG    /"$> "      ' 8H	A$Dp    < "O      < "O B    < "BB$"<  T0    < BP!(      < "BB$"<  @>0    < "BB$"<  BDB;    < "O      < "HF     < "HF }    < "HF }    < "HF z!}    < "BB"B  |@D|D
=    < "HF {A    < "HF {)     < "HF x}!    < "O     < "O@(    < "BB$"< DDD|DJ=    < "BB$"<   `p    < "BB$"<  0    < "O	 !    < "O     < "HF     < "O     < "HF     < "OBG    < "BB"B       ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      	   @ ?      BB?D H `         !B!B  @      "' ?@ C      @ O 'H $O"?@!B     $!? @`  @       @  GDAD    8      ?P=@
*Ьo =@      ?P=@
*Ьo =@       C/Bh  D`        A   A$?    !oZj^!i
I P       Do   !A     ! B|)~t)W%^OyU
E       LD^j_x9jIGA      H KI
       ADO$@$*       G5U$AH       C $Ip!g
%    @ C)ATDGTU}	     !D!#yW9  T$F`      ((, Fw$H @      @@$*F)$ F %J @      B)J	|, F #\       ! B!H`19 A A      AD"*U$΅((PPAB      A/F(|$F"J?XB     AIJ
 AE*0h`P      
$*JR!BBy"D0        GI^5{舑""E'$UHɑ       GI^5{""E􊪗')Ub     AȈ_ 	?I$Hp],     #P#/"}$K     B! /BIB%}o     "~	 ( @%$JH      !	 ~ DH      OG	 pP )DR       @@ "r#A	      q$DʕU+tHQ"D0        BH'**U*!¤I1ކg      @Q/QHQ%$R.0@        }"/Ј~"}$1B+xPG     @@A  H@'H"!B'@     A!G 	3dI$"~`       $$O!!~B)
"D/K         "DED  * "B`     @@@@`     O$H  @@     )TDBX   @p8      @@K	?5%/B4     ! CA?D5H D      @@?)%$K/@
UE      //'H"" _     ! (? p> @ ! C     A ^_!O?DD_      '/'H""N      @$$H$K%Kи? B      >>D@u8 <      AB$DF        | <  HJ      @C":>d!JJ#GI1      A/Є:V!RJCI1      @@#D%:~$ BJCI1     ! @ !@ $Fa      @# : BJC01      "Ȉ?H M8A)n        '      ySI*U$     !GO>>HD%h @        ? C0      @"D(Aߊ ~ CI$     H$"~|       " @A    @       @D   @4DH       @!D$*&,H*d$I?LB     נ ^    O      ?BC ?I%' @     ?@"(_A	<W      @ODNsEOA|     @ _  ?@(A$ O"E	"AI     @ _ @(  (@_1RjdJʥSR&     ?BC@	@	 @       CD?~%$Cr      B!	_ҤIJ*
Tn@      DA}AdGDB       A!_QD"E
"H(aAO     @ ?Q@ xO,!L#     @" D- GB N     A"GAQ      @@/BD$S%pl     !$ ?! @Fpx          H0p          ޢx I?%      C""	``x?   @     !DB#}D= T$F`      '  x
$I?$B       H@	?  @A             @      #DCB  E RG       HD	$$    @      ?BC? C        @ " D @ bD8A       =
BT}$G/R$H%      ??DLR"$DO      $ @	?@1A Bl        R"BA           B B  H"D)$R
H`X      !$OQ?I(PG"q      $d  @       #!y@2c8 a        " @f1         "D0 ` ?A     ! !B  8 Lp     xp _ A< BD/C       DQB!DTH  !!
b         HDQ @      @@@ B0` A
$Ha       @A@GB@EH  8!B A1      CA      @L       @@ ?A9
$0      PJ*|L[%HO! ~           " DD       H Y$I$2$H C      @  '@DDI`@`     @ O$d*HB8L 8 Lp     *	W/ U$D?	        B ?D !p       @   ?A y @ DID^$0     ?@ C ?!!@     Т!BWĪ_%K$z7h0    ?B     ` @           p  & p      '+'H"" _       @A	)T$AB$OqL     @A R?*HW"_ĄITd|     I$D_ȤjA_UgV    ! bd	@      G_ֺQUB^mg      TO?DD!{	n      @CFȔbHdHzFa       @@A@A@      9s U2ID "Ȁ"      9s U2ID'H       "HD-]+m]P*#         ! B    @       @H!*(V#$OB"     #@!_F9	tɪWA(IS      "D(Oo"J4E	 @D$I      ?I%$K?B"        @@_?IP!tBH	IA     # Ȥ ]Ab?      > 8 Lp>    @        @A _?I~%tCCI     	)Bs'"?H NRJB$     !@??BC ?     ! !""      @@@?E        B ?I|!tSC
8I     DD}HQRF)DADA p      D  0y   @p8     H?Dd)S%        D A"$HH"D@ < DD      H@""Z	 bCC<     |x 0?ϠA>!B$Q/р       r$А/BH	"&"Y#       	 !    @	 H IS       @@Ȃ  3 B$EBJ       !!"/wTT#@B+B      !D$G(_El#VX     %$AERm4HnQ$AwEݶa        A     @ A        0a!f@~`Ba @     	H")@ "DD   @      	 B"~HE!      @@AHBUhP   O"D @        !" $ |   G.@   @     QT $ D     !B'" $ |   G"D @@      !""H') < H D A @       " /$ |   WD*G8  @     ׀ ^@`?A        ׀ ^  {I &	R      W ߐ! ~	$$HK!       $!,~i))Ra$I!$J       P
 WW)_ґ	      QߪZ (_Б?C       C%ꄤ| KK
$1        $D         0  @     8      @ %&1."G!J	b     (< !"B!     	 !hBABD      I"E@?$8hqG"I      !DD%}D	" T$F`      @@"c+"G!
IDa      h	_!"H     ! Bie$1c8b x      @@_` GBDF      !$?>@DOȐQ?@       @?BC ?     @ 	 DD"$E!0        J
8C~$ O)BK        OA"PB A        EOҒ%,J\)SGMd"     @@@ A  D"D$I!'     ALH I(C @'H?DHB      @ ?!  D!L$I'    P@Ez_A      A!%"JD)^'       O$E"OA%DJ)       P@!I~ )K!E!A               @A B H        )ITs?
.Ȇ3%Ȧd8F1      A_
$$HA A#      "@A Gl( P /RHE$I      	@P  "C	,     @B@@ Ih    /RHI$ID       @AB`?* }(QDR      @@A		0 @O        GABJh""@@%	     DH  * #0A      $ Bc    @       GI%$&I"BO!      D A?F*"RE A!B        A A   pp     D@,i!G"E    @A@@ DB!1!        T$F`  ?   @     H !CDI$ T$F`     @ _ @ Q )RpH) d      ?DD  @@        
MĈ&$JQ#"HDA     HTB@	?@      B ĝx       C $I8 P@      ?B!!       $KD ?I"&{4) _     CI  D "?@        @ _|"I%#T)(f       A D P 0   B       @DA*(V#HC5B!B      @A*~#!HC5C!      ! DO>>D	H$I $      AEE*$N#I#IN?F      @DD**V#IS@Z?F       BK-I	S[JʗF       @@*RT)BL     BD @B\.TTR!B A      
_ AD}%4J~)          @" D ?       @BHH@  @   @@A B ?       HBA
 >ABpE
       Q!B!B"D!!B       І  " D D`      P? TsH9*U\1     @ +  @@      !  ( p  !A@     B	'b)"G	*$b#      H Dx D$H> c       !B#@ B0!\       @ @3"D 0      !PBQ/ĈrB(DP?B           <   @@     @ _ @ R )R$H) b      ?@ C?A$\`Lq       @  | TG"?DH        @ 	 @@0      G䔊F
$c!/H	 @     ?@!   " "H       !H(_$I|$zO!F         A  @ (       x!!@@^ H     P,o?
H$ A D px      A$"K!L! ~      'P?!"`{D@@0       @@@@
+T%L 
      B_$B $
O !      !OOȂ!QJTPB E     D"HB !qP @(      <PTEKeJ% DDDP      @
" )
$OG?A     `! H"!I	$$O     B? " XRH B        @DRA$Y%*HW!      !!AGBX!(@P       '@H> Y*HW!B?A        G@  ")SDH#B      $'HB?~iJB"     @"$H @4k @$Hp      A "PB"D-(QR     !"_*~|c䒯RR?       B@*TB2      @ A
 y	GO!       @A	 p"E # A     #!""!xbH"PH@BH`     @ H}`!PD !    HEԄS@?IH"X$        @!+> &PA8        @!A>D AP8      $J?$(B*?      18STWȩR"}P$jhȠ      3P	PHI"}$$`/C       0 RIWWD"} $"hO_!      0 BK*/$@@U     ZZZP    ZZZP     	 /?QI%I A      	  @"&dԪ #DB?A         ("@$ F        D@$OI$$!" a     "!@ I?%H! AB     GDA!E$        	'$ $H,G茒(~@      /DKA/
 c    DH"|	 B O"DH     "DB%H3"@H!      	T?@BTA?/     ? O"$ʥ)$@D	@       (A@ @       $OQI$%I A       I|!%KJ)*$J0a-B䤑HC     !B@*Ԫ#DB?A      jR{DP'BL$"E$P        B@$
$ȤQ(PH      DB"%>D! bI<"P    @HC  > @       "O(IWI$A      B D`Q$/""L8      C%@#-B	      A_@
 Af     `!  / HD@      @> CB"$        I> R."(0      $!$I2DI Q?          @@ BX!(@P        @@ R$OY!*@T$      !8C H?DX)R AA       @ AD BY-R!B!      !#D'@P!~Y	*WA!     !#D PA XQ(Q@	""D      !B'@K*Z-JH)"Aā         H@ _ Y*W!     I!#@@~ H!#	)"a    ') @     HH"D$H"\D(      $'?b?dĪ"@EERj`      '!$DU?{  OPJA     @A*00(A?B@     $HB@"? ??        "_@0 F       @@`      @!@     @!@    @!$? ?Á3?      AB $q#^DIR$>H      !"D/A U+EP"EÀ     !#D@?P y"EJLT/>R       !O@ y AA    B	 
 I(       !D_1dOQ?A      @ ` @     >     @     @ H}`!PD !     " A?~ #ID_Р     "=>JTԒkH?"/@      wEB(Q	&WHCa    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     @D ""$D(Q@" D ?     GH  @@H B@B%         
 " `           HI%$VIk$RII%$L"        @H " A0     D@B!D    BBBA       @ ?   @B  @    ()I_e (      <(T2!}S*|@      $ Hi!cĤ@
@$A        I!$HI?$ ԩRJ(?       O	@"a"&B`%DD(       #@A?"G. A      " #7?D@@ A ~      " #3	 AA      @! G/DI% @!      !A OJR$R "Qa        C?H(Q$DH        Ĉ"'B  B      	DDIH  XHH!0     xO $A%P!'@!B$      'HQ*Ԑ%J/@D      @@?A(QDB"       1 g$"H|!0	     !@ *T  G!      !B!>IWGQB$	!     " B*"
M
"_P|	      P I?I$P!?H      @A@AOd *2UǨQ=DH!d     "XD/$I
 cB 
"       G/@$2Đ!D*"(      @ GȂ(<PH@"I!@     @A	 H)?H "      #	H~0#P      DώJ   @       @@U"B@
b         B             B~D `I!E      @_A D!B$II#      @|_ (H%	@@DD      AB@!	JNs!! B     B _$ D      @@O(
Q+QGE
      @   @ 	B"    @?䈖#"$H"$U JB)    A"/!$R@N!     D SD!HD!B)$H*        AOE@1T !(~         C |!B.? A    @D?I'   ?$&        $I$$I$I? $ O        	ʔ)0@I "I@         'I"I$      @  @!"BD?      JTD?      ?@@?    (~/~(~P       @? 0 @        C $	'H' A      A	B?48P@A$      @ DP !"~DB$EKI        " $H` D`     !D!D%H@!/$        @!_$kI%J      @	?$Q"EČ"       @ $@ 0 B      CQ     D@"PD     @""D"!  @       !B#EO"*|| EP\       '|q5*WTI_     "C@	!$	?8       #D  AU*G	DD       GIuAuTR]IA        D <  	*GO? B        @   	'H$ E        #DO >"EJ(_Q       !@
   &T$O? B      @!@G@_o  =*T)RROHd      !@ <A/A     ! O r~WT   p      _)URK%        @A@GB_ *}*UWҢ=DHd     ! J9*$I!G      Q,IDuRj	("B?Ac     'ĥ	*T)DRJ"U*U#x"     CdR$ ,(д~
(B     "(DK)ߤH BOȐ         @O " I	G! E      D "/@?"}%H	/D$C      GH/{D      ~! (JP-BT	J儊@      Aq ~Ud(O	!`     ?@3g     D@      !(PJ
H
֠_߂      N`A"((DBARBFB      N`A"((DG! A     ( H@*TPRDQ"       E<IU$"H)l3Gi%J(    ĉ$H"DH"D<       @%C	$JUY$(D@       C)ڞ%JJ+TDERA     @>B(KQD>@"B
     D!OAD!r"E  # A       HO&JQB     ?D@)#(_@}bg    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP      6"O$H       5QE@      =QQE@      -UUUUU@      =UUUUUU@      rI$I$H      9$n((@    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP  
    Qڵjժ  
    Pz*ժ    Pjjժ @    Zjժ́     ((j    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     @  
    !      D  	     DDH"D  	    00300  	          	     3030300  	     0 0 0 
     0 0   	     0000  	     0 0 0 0  	    ?0303030      @      L2dɓ'      L2dɓ'      L2fɓ'      L2fɓ'  
  	%"Bp    	%"Bp@  
  	%"B   	     D  	    `Ab  	     H   	    QUQD  	    I   	    J     ZZZP  	    Xaa         A$A@  	    A$A      >"0    ZZZP  	    !DH    ZZZP  	    q  	    ab    ZZZP    aI@  	    aA    ZZZP  	     A    QIDA   	    A$A  	    &Ld  	    }QUQ      I$      @      A      A      #V(a     _!      (x          	^ @          ~             	^           ~ P           	^ 
          ~ P         	     $ax  	    @ B~  	       A  	         	   ( $ax  	   (  B~  	    @  A  	         	   A $ax  	   @ÀB~  	    A  A  	       
   @P  
     B  
    @ E  
     $  8$  
   @P  
    P B  
    ( E  
    ( (  8$    $DN    Q     p?       p         N    Q
      p?P      p P    *DN    H     p?(      p (     *N    H     p?P      p P P      a      /      P ~     P    	      a  	    @B  
   A @  
   @À      A)      C     A  A)     pC       A       @<      A       @<  
     A  
    $H @<  
     A  
    $H @<      A       $H @<        A       $H @<    
    Pc  
    Pb0@<  
    Pc  
    Pb0@<      	a      (                 @ "
#  	    A  A  	       
   hhi     b C     F                       !eMJ       Q       X@      ,*    P    A  
  a   
  a      ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP      Q      @!D"	       @  <        P @<    !E!	$B     A&$|I     D bI<`    DP@	>$      O)     C      #TS4 @H0    @ bI<`      	>$     O    HG$0    @O)    QC   	  "p      JK        ~                ~           'HF.     Be";  	   @ V  	    0 -    B
<      B
=      `̢8*x A     `̢8*z A      S$#**<`     S$#**=`    FPB
<      FPB
=      @t\     @a &R       @H      @C(ax     0 '  	    @H    
Y"    '       ~        (     ac@     ac@    00<       b"b    b"b(     acB  
  ?B D    @!N  
  @`@   	  (  
  (P    P!N    P N     (1 @    
  0<     ( D
    ( (     @c@     @0<       @
b    @
b(    `Fb8    `00<     `FbІ8    `00<     ?B	 D    ?B D    b00<   
  Kj@Dp  
  Kj @Dp    -@  
  P x       $@      x       L$@    L$@     &(@~ @@@"     x       Af^BЂ8     @%<     (@%<     bBЂH8    @xA@      a? "#     ay       P0 ~ @H@!      P0 ~ @@@!      P0 ~ @H@!    SBx       0c(^     0c(^@    (bЂH8    P%1$'      ( 0c(^    ( 0c(^@      E    C N    C N       @      H"D     !  	      @"  	    @"      @?AD'     @?A'     @?A'    !O!     A^    AP  
  ?B	 D  
  ?B D    @f    
  @ @       ^  
  ^@     N     N     N      0<      D
     (    !ʩzЂH8    AW!   
    4HFDp    4HFDp@  
  ?BX$D  
  ?BX D    @f 	`  
  @b@   	  	H؎  
  	HȎ	@       @          	      bBx     T     330           P           
    0 
 A       "

	`    00<         
*EDH0  
    @a Ą    @a Ą  
  Q!BD%  
  $Q!BD%  
  @ @   	     0QbHd    &$'@    &$'T     
   
 A     
  
 A     P A@       
  E!      
  i1!<  
  
  i1!<      ( A$@      (A$@      @0<        (A*C   	     ( bBx     ( bBx@  
      FDp      FDp@  
      FDp      FDp@  	  )(  	   !"$(0A    !@
D         FD8     FD8 (    !=!       Aq"    Aq"P     L  
   B     aD	      @aD	       A@       @  E!        i1!<  
    i1!<   	     @ bBx  
  Q!BD!    @0BC(  
  @%@   
   0QbH`    &$'B     &$'j       @x       @x      @	x      @x      &i($  	     R       R  	     1Hx?       @      &i(%       
  aD    	    
  aD  	    
 aD      
  0|  
   
  &i($  
     (    
    `c       (       `a @      (      `!?         (      T        T        @ ~R	P~ `         >@  
     PDR  `    
     	PDR  `           /@          ABH           ABH          $ABH          /@   
    @<1  	    >@H0  
    010       1CČ        ?   
     L<H      @ c @      @ c   
    @ Ȃ      SD'       ( AC>       (SD'        ? @       ?        ?   
    ""%      !@#       A   	    A  	    E  	     @~  	     C  
     q  @      q       $q       y            	       	            0|  	    &i($      <))>@~`      <)) @P        @JT    	     (        (   	     Q 
      @     PPH(  	    0 ($      $j($      ($      $j(%       ($  
     $j($        ($        $j($       $"     &i( $             (   $"         (    $j( $     
    DHP`pHLJ       @ $(      $(        ($       RPH(      ($ 
     VPH+  
    0*          

0*    
    
T 0      
     @#D     @#D      @  	  @P  	     Hx     Hx       $H    	  $H   P               0"Dv @             0"Dv @  @   
    !"    pA"  
    ` DD    ` DD          P  
    )D    )D      (S	    (S	      P~ADG      P~AG       
%Z@~ @@@"     P`y       
 *    @     *    @     $$   @     $$   @  
     @#Ą     @#Ą      4   	  4 P  	     PbBx     PbBx@      $$JGl@@      $$JGl@@   (           @   H         @   H      	     `p     `p P  	     `p     `p P  
     @`p     @`p P  	     

>) p     

=( x P  
     

>) p     

>) p P      ( T@D8      ( T@D8       T@D8       Jp  
    
 *  @     *  @     $$@     $$@           
$Gb              
$Gb             	 
$Gb     	         
$Gb         $f@: ( @             $f@: ( @   	             zm           zm      @  zm  	        ( zm              ( zm         @( zm  	    "   	    "      R     R      `F` P5`k P```    5X     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP       ( P@!@       (BJB/          ((B          ( P@!@         ( P@!           A        R (         ( B
    
  @@P@("  @ H `        @@  
    R?" 8           R?" 8       ! RU          ! RU          U   p   
   @ **/E    H 0         T (           T (       @@AWP@  @        * WT   
   B*/@    H 0       !RU     @	@AWxP@  @           B *      	        P R           
 U   p   P         
B
  @    	     @  Q @           
B
     	        P  @   
       U   p   
       B*׀             )P
       @ &E@A             @`?          @ `?           ,2  p   P      B=JHBg8 @  @      @z!?           #        @ p   
      38P            @ p   P   
        @ p   
     E)A
 @             E*      %)E @      
    ( E)AR{ @     
     J!	           J "      
      J "          HB        	!EP @     
    	!_` @          @ G       $ ( @          H
        !J           ?P   
    @ p   P       !J          
 (D       !J          
 (@     ZZZP    ZZZP      !J           JP         HP          @      J%BJr " D p  @   	     Op  @@            D   	      D$  p       @%@Jr(" D p  @   	     @%@Jr(" D p      @PA*          J	@         B"  p   P       
 B" @ p   P   	     
 B"  p        
 B"   p   P   
      
 B"   p       @@*(" D p  @   	     @@*(" D p   
    @ p   P       B  p        @ p          U   p   P   
   U   p   P          
 U   p   P         U   p   P       $J D           $JPD@      
  %%?  8      
  %%? " 8      	  	P܊Q    P   	  P    P         $TPD@           D$   p   P          ( @        @B   
    @ p   P          񒀉  p   P        	           @ 
 p   P         @B   
     aa@A     
     %A @       	
(/        
   B  p   P   
   B   p   P   
    @ 
D p   P         $TPD@      
    B"  p   P            )@        H(          T P@          U   p   P        D$  p   P     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP        	$%o       	A "       @@
`	$IbMX{        b đ'$)R      UB(P0, 0$f        %op   @   	        TUc  	    @MA 
         %HU`	@           	$%o`@ 0      *jj-VĀ( )`*DU=SQ      @T ReIJ     
   
 P B$1r     p_p UU}u;P)_p uT0    ZZZP    ZZZP     UU  8"A88        UU  8"A88  A      UU  8"A88  A A      UU  8"A88 @A A@      UU  8"A88  A      UU  8"A88 A      UU  8"A88  A       UU  8"A88 AA      UU  8"A88 A A      UU  8"A88 0IHI0      UU  8"A88 1P|      UU  8"A88 p	0Ax      UU  8"A88 p	0	p      UU  8"A88 HIx	      UU  8"A88 xAp	p      UU  8"A88 8ApI0         
     
  i     <  	   5  
     
   zAA @                <    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    
       
     
 <      
 	                     ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP                         R"T"             #       @    	 0       ? ( @    	  #             ?       30      0003 0        30              @                  @  P     
 (     	  3   	  J0       `       `     8     |      0Ia      0Ia0Ia    8    |     0Ia    j               ZZZP    l5             T                 j      `      +$@             I            W       JJP            !>B            *"               ZZZP     !      uW       $      i    ZZZP    ZZZP    ZZZP    ZZZP    	 <<  
    00                      <<    ZZZP    	 <      0          "r"   	    (( @     <        0     	m      X`        i      $$        x  
       
    p           qI$     a @     bI<`    @a 	>$     I$q    @a     b 9$  
    a !      @ ~                        	^                                  F.     HRO     ( F     (  DP      (       (    	     $ax  	      B~  	       A  	      H       N    Q	      8       8      N    Q      p?      p      ?!       @                 p      a     /     @     @ @@P    A
F         
    B  
     @@      T       T       T      **       J"C         %Jߑ!        %J       $ **      ft       f|             R  	      c3H`  	      c3H`        e?        R     AY~     @       @H          ,2"     A$Y~     @       HH       $  ,2"  	  1$B!x    `!<      H           I^      @	        D?              ^      0С?       $P        8$  
    H $T  
    H B      H $P      H  8$     REF^     (P?      A       @<      Aa'       @      A~          pB    pg       (p      2  	      Fbp  	       DPDp                    F     C      S          O)    HA$0    
Y"    '    
Y"    
        ~        (  
    	!A8  
    r"

`  
   ba$P(  
   a	"B
'    bp     	!C0   	   bp  	   	!C    ZZZP    ZZZP      QXUFQ JHQ  UU    ZZZP      _At     <H      "?"@@  	   q8@b)#@       	8 D(        D ! YÂ"	<x    	     	 $DDB!    B""$H 	    2ma@pɄ         A                                   
     D	`P$         @ 	     > 0 
     >H  @	        `BD  8 	      
 `(# 	     򅁀P$! 	     `    
     hXaᆀ`  	     <! P
y          
  `       `0 @ 0                0  `        <B        @$j:M0`       (@   !. 
     $@	@P       &    ` 
     	@P@P	  
      @@ 	     P(@        !H @ "c@       t@$@$@$@$p       @ @ 
         !8       !@ B! . 
      @ @      : e()"IH(D.#      : $"	H"@.      @$@#  
     $@P' @      H@
 P1Pa        $ B! . 
     d	 @ `        @          t@$@$@$@$ A       t@" B 
 @       $0DBI
(PA        P  .      A"    
            !B!B                      B!B?     "            	 	    <! Dd	y      @@@\bAAAAAb\  	    8 8      :FF;  	    8 !<      !!        p    =BBBB<@~A> 	      A H.8      I.    0 AA'  	      rX2.8      $I.  	    "$D" 	 	    (H$	  	    <BB<    bAAAAb\@@    ;FF:  	    
   	    {       	 	     H$	F 	 	    㠐DB P   	    tBF$b)B)A 	 	    㠈 	   㠈DA 0   	    !A    B!BA        B!B     p 
   H"	AH" A"A 
   D !AD D    V               !           ABA  
  J A      3AA            ?    A?0C     AfA     pAA?  	    
  "Q!!             @      
d @      ?a   
    ~     ((HH(     I$QFX        08h     %b!!          ?DD       AA     $$$$$$$     @@(Q       |$"B        @s<I @    QDA@     %e!!      x @      QRB      ~    @          @  	    ~           BIC(P     ~2    A        $$$""""BAA      # <      A    
     00HHD     TRRR0  	    D(    C !        $$$"Nr     "D(        ~ @ @       #-1  
    |      AA      A!@    c1"        ((((()))*JL       bJ0      aa       aBB      @A          
 V            A      R     P              I*      x             ܥ-            a       W^       W^       K^       SN       *       _^@      c             W^      S       !       $$$Z      !             ~$$Z      p>ED                  $       9#    ZZZP    ZZZP    ZZZP                  x            '      )zR    ZZZP    ZZZP      <      /KҀ      !O      "       
_      J_    ZZZP    ZZZP      R      B       uP      _UuU@      UP           ZZZP    ZZZP           %          ZZZP    ZZZP    ZZZP 	   LB!P       @ ?      $`x       
                ( @       !	%!E
(`     ZZZP           !      #B     /     !	W            1(aH    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP    ZZZP     UU  )8ED A!       UU  )8ED  !      UU  )8ED         UU     	HH	          ;m      @ ~               (   	       A      8       p?              T        %J              e?       @H       HH      H        D?       $P      H $P      A      A~      (p             S       ~   	    A  A  	       A     ~       ~ P  	    @  A     ~ P      p?P     p?       p?(      p?P   
    @ E  
    ( E      A       @  <  
     A  
    Pc      A    	    A  A      X@             ~       ~    
    p           a @    @a 	>$     @a   
    a !                   HRO     (  DP  	      B~    Q	    Q      @     /     @ @@P        
     @@      T         %Jߑ!      f|   	      c3H`     @     @    `!<      @	      0С?  
    H B     (P?       @    pg   	       DPDp     C    HA$0    
       (x        	   @ÀB~  	    @ B~            	   (  B~         Q
    Q    H    H  
   @À     P       /   	    @B     pC       C   
     B  
    P B       @<      @!D"	  
    $H @<  
    Pb0@<     $H @<         @ "
#      Q      b C           HG$0    DP@	>$      A&$|I      C     QC       	>$     '    JK      A  
  a                        (    	      H        8       p         p      **       $ **      R        R          ,2"       $  ,2"                      8$      H  8$       @<            2                     (  	       	                       	                    p P     p         p (      p P P  
     $  8$  
    ( (  8$       @<        P @<  
    $H @<  
    Pb0@<     $H @<    	           ,*            (                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              (memdisk)/boot/grub                                                                                                                                                                                                                                                                                                                                                                                                                                                                    *<ez॥Qb 2tŨԨ'2_q'2Zhvɪ֪Peë#Yr
0:qŭ?o߮DYu            '1[sCe1Pnˢ";£̣FP\,kȥ(Yu!F|ѧߧ!CZp}רu8K۬Ewխ߭:Woˮخ 1Fm{ϯ           ,BĠNa4HܢVs.EYpФ $=Siťץ)@WpȦ ]qʨ0Cש
fͪުcŬѬ';Э=Wd.eӯ     0     *G+>PbDT^hr΢ۢ%/?LXg|ϣ%5BSewʤ.bl7 'GXfҪ8«ѫ/DU}Ǭ%4@PZfuͭܭ&2Ay       @    02rաȢߢ-:ã(4JVʤ֤(x̦ݦ+KOĩݩ9Lix%ƫ׫<FR\hyج#?LXmĭխ#7HUoy®ܮ&0:D_is}ǯѯۯ   P     8D͠'Ruӡ $=Gۢ3ɣ4H_̤"vå_kxΦ$/avħ֧R\m~';Zgԩ%/CRhyϪ۪
wӫ(2?yج4R@ZVpǯ߯   `     -_)gz&TevǢݢ$1KZvãأ1Ht٥3F˧(7Akƨרvȩ۩ 0Cg٪'1\ͫ׫&8O_p,bݭ/ET%˯ p  H  ?yנ
&6FW`xʡԡ.:FoˢLϣ٣/R|Ҥ,6@Tkuڥ٦<{ Uf˨ب
#3FXbq~˩)4GR^r}ȪNn~ī!-EXjxլ߬T^h|ǭѭ$Ck̮&0Q`o¯ү      *<HR`jz͠ܠ+O¡+=]q5֥/zɧۧ&ͩwɪJ׭&3@Mq            :NaxԠޠFwޡ1Pd{ڢ/CQ]m{ѣ:Ǥpƥ >8CѧBTۨ	*gǩ۩(2Gkrǫ4jĬݬbɭ+7H]p®̮8buѯۯ        'q*;a'1@]ixĢܢ6A  (08@HPX`hpxȤФؤ  (08@ȥХإ      8   (08@ȡСء08H` (8@PXhpȤФ (0@HX`pxХإ  08HP`hxȦئ (8@PXhpȧЧ (0@HX`pxШب  08HP`hxȩة (8@PXhpȪЪ (0@HX`pxЫث  08HP`hxȬج (8@PXhpȭЭ (0@HX`pxЮخ  08HP`hxȯد        (8@PXhpȠР (0@HX`pxСء  08HP`hxȢ                                                                                                                                                                                                                                                                                                                        07070100000129000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000001300000000cobbler-3.1.2/misc    0707010000012A000081A40000000000000000000000015ECE24440000216A000000000000000000000000000000000000001A00000000cobbler-3.1.2/misc/anamon #!/usr/bin/python3

"""
This is a script used to automatically log details from an Anaconda
install back to a cobbler server.

Copyright 2008, Red Hat, Inc and Others
various@redhat.com

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 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
"""

import os
import sys
import string
import time
import re
import base64
import shlex
try:
    from xmlrpc.client import Server
except ImportError:
    from xmlrpclib import Server


# shlex.split support arrived in python-2.3, the following will provide some
# accomodation for older distros (e.g. RHEL3)
if not hasattr(shlex, "split"):
    shlex.split = lambda s: s.split(" ")

class WatchedFile:
    def __init__(self, fn, alias):
        self.fn = fn
        self.alias = alias
        self.reset()

    def reset(self):
        self.where = 0
        self.last_size = 0
        self.lfrag=''
        self.re_list={}
        self.seen_line={}

    def exists(self):
        return os.access(self.fn, os.F_OK)

    def lookfor(self,pattern):
        self.re_list[pattern] = re.compile(pattern,re.MULTILINE)
        self.seen_line[pattern] = 0

    def seen(self,pattern):
        if pattern in self.seen_line:
            return self.seen_line[pattern]
        else:
            return 0

    def changed(self):
        if not self.exists():
            return 0
        size = os.stat(self.fn)[6]
        if size > self.last_size:
            self.last_size = size
            return 1
        else:
            return 0

    def uploadWrapper(self, blocksize = 262144):
        """upload a file in chunks using the uploadFile call"""
        retries = 3
        fo = open(self.fn, "rb")
        totalsize = os.path.getsize(self.fn)
        ofs = 0
        while True:
            lap = time.time()
            contents = fo.read(blocksize)
            size = len(contents)
            data = base64.encodestring(contents)
            if size == 0:
                offset = -1
                sz = ofs
            else:
                offset = ofs
                sz = size
            del contents
            tries = 0
            while tries <= retries:
                debug("upload_log_data('%s', '%s', %s, %s, ...)\n" % (name, self.alias, sz, offset))
                if session.upload_log_data(name, self.alias, sz, offset, data.decode()):
                    break
                else:
                    tries = tries + 1
            if size == 0:
                break
            ofs += size
        fo.close()

    def update(self):
        if not self.exists():
            return
        if not self.changed():
            return
        try:
            self.uploadWrapper()
        except:
            raise

class MountWatcher:

    def __init__(self,mp):
        self.mountpoint = mp
        self.zero()

    def zero(self):
        self.line=''
        self.time = time.time()

    def update(self):
        found = 0
        if os.path.exists('/proc/mounts'):
            fd = open('/proc/mounts')
            while 1:
                line = fd.readline()
                if not line:
                    break
                parts = line.split()
                mp = parts[1]
                if mp == self.mountpoint:
                    found = 1
                    if line != self.line:
                        self.line = line
                        self.time = time.time()
            fd.close()
        if not found:
            self.zero()

    def stable(self):
        self.update()
        if self.line and (time.time() - self.time > 60):
            return 1
        else:
            return 0

def anamon_loop():
    alog = WatchedFile("/tmp/anaconda.log", "anaconda.log")
    alog.lookfor("step installpackages$")

    slog = WatchedFile("/tmp/syslog", "sys.log")
    xlog = WatchedFile("/tmp/X.log", "X.log")
    llog = WatchedFile("/tmp/lvmout", "lvmout.log")
    storage_log = WatchedFile("/tmp/storage.log", "storage.log")
    prgm_log = WatchedFile("/tmp/program.log", "program.log")
    vnc_log = WatchedFile("/tmp/vncserver.log", "vncserver.log")
    kcfg = WatchedFile("/tmp/ks.cfg", "ks.cfg")
    scrlog = WatchedFile("/tmp/ks-script.log", "ks-script.log")
    dump = WatchedFile("/tmp/anacdump.txt", "anacdump.txt")
    mod = WatchedFile("/tmp/modprobe.conf", "modprobe.conf")
    kspre = WatchedFile("/tmp/ks-pre.log", "ks-pre.log")

    # Setup '/mnt/sysimage' watcher
    sysimage = MountWatcher("/mnt/sysimage")

    # Monitor for {install,upgrade}.log changes
    package_logs = list()
    package_logs.append(WatchedFile("/mnt/sysimage/root/install.log", "install.log"))
    package_logs.append(WatchedFile("/mnt/sysimage/tmp/install.log", "tmp+install.log"))
    package_logs.append(WatchedFile("/mnt/sysimage/root/upgrade.log", "upgrade.log"))
    package_logs.append(WatchedFile("/mnt/sysimage/tmp/upgrade.log", "tmp+upgrade.log"))

    # Monitor for bootloader configuration changes
    bootloader_cfgs = list()
    bootloader_cfgs.append(WatchedFile("/mnt/sysimage/boot/grub/grub.conf", "grub.conf"))
    bootloader_cfgs.append(WatchedFile("/mnt/sysimage/boot/etc/yaboot.conf", "yaboot.conf"))
    bootloader_cfgs.append(WatchedFile("/mnt/sysimage/boot/efi/efi/redhat/elilo.conf", "elilo.conf"))
    bootloader_cfgs.append(WatchedFile("/mnt/sysimage/etc/zipl.conf", "zipl.conf"))

    # Were we asked to watch specific files?
    watchlist = list()
    waitlist = list()
    if watchfiles:
        # Create WatchedFile objects for each requested file
        for watchfile in watchfiles:
            watchfilebase = os.path.basename(watchfile)
            watchlog = WatchedFile(watchfile, watchfilebase)
            if os.path.exists(watchfile):
                watchlist.append(watchlog)
            else:
                waitlist.append(watchlog)

    # Use the default watchlist and waitlist
    else:
        watchlist = [alog, slog, dump, scrlog, mod, llog, kcfg, storage_log, prgm_log, vnc_log, xlog, kspre]
        waitlist.extend(package_logs)
        waitlist.extend(bootloader_cfgs)

    # Monitor loop
    while 1:
        time.sleep(5)

        # Not all log files are available at the start, we'll loop through the
        # waitlist to determine when each file can be added to the watchlist
        for watch in waitlist:
            if alog.seen("step installpackages$") or (sysimage.stable() and watch.exists()):
                debug("Adding %s to watch list\n" % watch.alias)
                watchlist.append(watch)
                waitlist.remove(watch)

        # Send any updates
        for wf in watchlist:
            wf.update()

        # If asked to run_once, exit now
        if exit:
            break

# Establish some defaults
name = ""
server = ""
port = "80"
daemon = 1
debug = lambda x,**y: None
watchfiles = []
exit = False

# Process command-line args
n = 0
while n < len(sys.argv):
    arg = sys.argv[n]
    if arg == '--name':
        n = n+1
        name = sys.argv[n]
    elif arg == '--watchfile':
        n = n+1
        watchfiles.extend(shlex.split(sys.argv[n]))
    elif arg == '--exit':
        exit = True
    elif arg == '--server':
        n = n+1
        server = sys.argv[n]
    elif arg == '--port':
        n = n+1
        port = sys.argv[n]
    elif arg == '--debug':
        debug = lambda x,**y: sys.stderr.write(x % y)
    elif arg == '--fg':
        daemon = 0
    n = n+1

# Create an xmlrpc session handle
session = Server("http://%s:%s/cobbler_api" % (server, port))

# Fork and loop
if daemon:
    if not os.fork():
        # Redirect the standard I/O file descriptors to the specified file.
        DEVNULL = getattr(os, "devnull", "/dev/null")
        os.open(DEVNULL, os.O_RDWR) # standard input (0)
        os.dup2(0, 1)               # Duplicate standard input to standard output (1)
        os.dup2(0, 2)               # Duplicate standard input to standard error (2)

        anamon_loop()
        sys.exit(1)
    sys.exit(0)
else:
    anamon_loop()
  0707010000012B000081ED0000000000000000000000015ECE244400000874000000000000000000000000000000000000001F00000000cobbler-3.1.2/misc/anamon.init    #!/bin/bash
## BEGIN INIT INFO
# Provides: anamon
# Default-Start: 3 5
# Default-Stop: 0 1 2 4 6
# Required-Start:
# Should-Start: $network
# Short-Description: Starts the cobbler anamon boot notification program
# Description: anamon runs the first time a machine is booted after
#              installation.
## END INIT INFO

#
# anamon: Starts the cobbler post-install boot notification program
#
# chkconfig: 35 99 95
#
# description: anamon runs the first time a machine is booted after
#              installation.
#

LOCKFILE="/var/lock/subsys/anamon"
CFGFILE="/etc/sysconfig/anamon"

# Source function library.
. /etc/init.d/functions

# Source anamon config
. $CFGFILE

LOGFILES=${LOGFILES:-/var/log/boot.log}

# FIXME - can we rely on the koan snippet to update /etc/profile.d/cobbler.sh?
if [ -z "$COBBLER_SERVER" ]; then
    echo "No COBBLER_SERVER defined in $CFGFILE"
    exit 1
fi

if [ -z "$COBBLER_NAME" ]; then
    echo "No COBBLER_NAME defined in $CFGFILE"
    exit 1
fi

if [ -z "$LOGFILES" ]; then
    echo "No LOGFILES defined in $CFGFILE"
    exit 1
fi

start() {
    python=python
    [ -x /usr/libexec/platform-python ] && python=/usr/libexec/platform-python
    [ -x /usr/bin/python3 ] && python=/usr/bin/python3
    echo -n $"Starting anamon: "
    daemon $python /usr/local/sbin/anamon --watchfile \"$LOGFILES\" --name $COBBLER_NAME --server $COBBLER_SERVER --port ${COBBLER_PORT:-80} --exit
    RETVAL=$?
    [ $RETVAL -eq 0 ] && touch $LOCKFILE
    echo

    # Disable service start
    chkconfig anamon off

    return $RETVAL
}

stop () {
    echo -n $"Shutting down anamon: "
    killproc /usr/local/sbin/anamon
    RETVAL=$?
    [ $RETVAL -eq 0 ] && rm -f $LOCKFILE
    echo
    return $RETVAL
}

restart() {
    stop
    start
}

case "$1" in
    start)
        start
        ;;
    stop)
        stop
        ;;
    restart)
        restart
        ;;
    condrestart)
        if [ -f $LOCKFILE ]; then
            restart
        fi
        ;;
    status)
        status anamon
        RETVAL=$?
        ;;
    *)
        echo $"Usage: $0 {start|stop|status|restart|condrestart}"
        RETVAL=2
        ;;
esac

exit $RETVAL
0707010000012C000041ED0000000000000000000000045ECE244400000000000000000000000000000000000000000000001600000000cobbler-3.1.2/patches 0707010000012D000081A40000000000000000000000015ECE244400000000000000000000000000000000000000000000001C00000000cobbler-3.1.2/patches/.keep   0707010000012E000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000001D00000000cobbler-3.1.2/patches/debian  0707010000012F000081A40000000000000000000000015ECE244400000000000000000000000000000000000000000000002300000000cobbler-3.1.2/patches/debian/.keep    07070100000130000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000001B00000000cobbler-3.1.2/patches/suse    07070100000131000081A40000000000000000000000015ECE244400000000000000000000000000000000000000000000002100000000cobbler-3.1.2/patches/suse/.keep  07070100000132000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000001600000000cobbler-3.1.2/scripts 07070100000133000081ED0000000000000000000000015ECE244400000C15000000000000000000000000000000000000002000000000cobbler-3.1.2/scripts/mkgrub.sh   #!/bin/bash

# DISTRO directory overrides. Pass these vars in from outside:
# export SYSLINUX_DIR=/usr/share/...;./mkgrub.sh
[[ -z "$SYSLINUX_DIR" ]] && SYSLINUX_DIR="/usr/share/syslinux"
[[ -z "$GRUB2_MOD_DIR" ]] && GRUB2_MOD_DIR="/usr/share/grub2"

BOOTLOADERS_DIR="/var/lib/cobbler/loaders"
TARGETS="arm64-efi i386-pc-pxe powerpc-ieee1275 x86_64-efi"

rm -rf "${BOOTLOADERS_DIR}/.cobbler_postun_cleanup"

# grub2 internal executable naming
# aarch64 => grubaa64.efi
# x86_64 => grubx64.efi
# i386/i686 => bootia32.efi
# IA64 => bootia64.efi
# arm => bootarm.efi

FS_MODULES="btrfs ext2 xfs jfs reiserfs"
CD_MODULES=" all_video boot cat configfile echo true \
		font gfxmenu gfxterm gzio halt iso9660 \
		jpeg minicmd normal part_apple part_msdos part_gpt \
		password_pbkdf2 png reboot search search_fs_uuid \
		search_fs_file search_label sleep test video fat loadenv linux"
PXE_MODULES="tftp http"
CRYPTO_MODULES="luks gcry_rijndael gcry_sha1 gcry_sha256"
MISC_MODULES="mdraid09 mdraid1x lvm serial regexp tr"

TARGET_EXTRA_MODULES=""

function link_loader
{
    local T="$1"
    local L="$2"

    if [[ -e "$T" ]] && [[ ! -e "${BOOTLOADERS_DIR}/$L" ]];then
	set -x
        ln -s "$T" "${BOOTLOADERS_DIR}/$L"
	set +x
	# Remember links for later deletion/cleanups
        echo "$L" >> "${BOOTLOADERS_DIR}/.cobbler_postun_cleanup"
    fi
}


mkdir -p "${BOOTLOADERS_DIR}/grub"
for TARGET in $TARGETS;do
    TARGET_MOD_DIR="$TARGET"
    case $TARGET in
	i386-pc-pxe)
	    # Name the x86 PXE executble with .0 in the end
	    # pxelinux.0 only wants to chainload bootloaders ending with .0
	    BINARY="grub.0"
	    TARGET_EXTRA_MODULES="chain pxe biosdisk"
	    # For i386-pc-pxe target the modules dir still is i386-pc
	    TARGET_MOD_DIR="i386-pc"
	    ;;
	x86_64-efi)
	    TARGET_EXTRA_MODULES="chain efinet"
	    BINARY="grubx64.efi"
	    ;;
	arm64-efi)
	    TARGET_EXTRA_MODULES="efinet"
	    BINARY="grubaa64.efi"
	    ;;
	powerpc-ieee1275)
	    TARGET_EXTRA_MODULES="net ofnet"
	    BINARY="grub.ppc64le"
	    ;;
    esac
    GRUB_MODULES="${CD_MODULES} ${FS_MODULES} ${PXE_MODULES} ${CRYPTO_MODULES} ${MISC_MODULES} ${TARGET_EXTRA_MODULES}"
    MODULE_DIR="${GRUB2_MOD_DIR}/${TARGET_MOD_DIR}"
    set -x
    grub2-mkimage -O ${TARGET} -o "${BOOTLOADERS_DIR}/grub/${BINARY}" --prefix= ${GRUB_MODULES}
    set +x
    echo "grub2/${BINARY}" >> "${BOOTLOADERS_DIR}/.cobbler_postun_cleanup"
    if [[ -e "$MODULE_DIR" ]] && [[ ! -e "${BOOTLOADERS_DIR}/grub/$TARGET_MOD_DIR" ]];then
	set -x
        ln -s "$MODULE_DIR" "${BOOTLOADERS_DIR}/grub/$TARGET_MOD_DIR"
	set +x
        echo "$TARGET_MOD_DIR" >> "${BOOTLOADERS_DIR}/.cobbler_postun_cleanup"
    fi

done

link_loader "/usr/share/efi/x86_64/shim.efi" "grub/shim.efi"
link_loader "/usr/share/efi/x86_64/grub.efi" "grub/grub.efi"
link_loader "${SYSLINUX_DIR}/pxelinux.0" "pxelinux.0"
link_loader "${SYSLINUX_DIR}/menu.c32" "menu.c32"
link_loader "${SYSLINUX_DIR}/ldlinux.c32" "ldlinux.c32"
link_loader "$SYSLINUX_DIR}/memdisk" "memdisk"
# ToDo: Do this properly if still used
link_loader "/usr/share/*pxe/undionly.kpxe" "undionly.pxe"
   07070100000134000081ED0000000000000000000000015ECE244400001BEB000000000000000000000000000000000000003500000000cobbler-3.1.2/scripts/settings-migration-v1-to-v2.sh  #!/bin/bash

#set -x
path_modules_conf="/etc/cobbler/modules.conf"
default_file=""
flag_regex_conversion=false
flag_static_conversion=false
flag_replace_conversion=false

read -r -d '' default_file <<EOM
# cobbler module configuration file
# =================================

# authentication:
# what users can log into the WebUI and Read-Write XMLRPC?
# choices:
#    authentication.denyall    -- no one (default)
#    authentication.configfile -- use /etc/cobbler/users.digest (for basic setups)
#    authentication.passthru   -- ask Apache to handle it (used for kerberos)
#    authentication.ldap       -- authenticate against LDAP
#    authentication.spacewalk  -- ask Spacewalk/Satellite (experimental)
#    authentication.pam        -- use PAM facilities
#    authentication.testing    -- username/password is always testing/testing (debug)
#    (user supplied)  -- you may write your own module
# WARNING: this is a security setting, do not choose an option blindly.
# for more information:
# https://github.com/cobbler/cobbler/wiki/Cobbler-web-interface
# https://github.com/cobbler/cobbler/wiki/Security-overview
# https://github.com/cobbler/cobbler/wiki/Kerberos
# https://github.com/cobbler/cobbler/wiki/Ldap

[authentication]
module = authentication.configfile

# authorization:
# once a user has been cleared by the WebUI/XMLRPC, what can they do?
# choices:
#    authorization.allowall   -- full access for all authneticated users (default)
#    authorization.ownership  -- use users.conf, but add object ownership semantics
#    (user supplied)  -- you may write your own module
# WARNING: this is a security setting, do not choose an option blindly.
# If you want to further restrict cobbler with ACLs for various groups,
# pick authz_ownership.  authz_allowall does not support ACLs.  configfile
# does but does not support object ownership which is useful as an additional
# layer of control.

# for more information:
# https://github.com/cobbler/cobbler/wiki/Cobbler-web-interface
# https://github.com/cobbler/cobbler/wiki/Security-overview
# https://github.com/cobbler/cobbler/wiki/Web-authorization

[authorization]
module = authorization.allowall

# dns:
# chooses the DNS management engine if manage_dns is enabled
# in /etc/cobbler/settings, which is off by default.
# choices:
#    managers.bind    -- default, uses BIND/named
#    managers.dnsmasq -- uses dnsmasq, also must select dnsmasq for dhcp below
#    managers.ndjbdns -- uses ndjbdns
# NOTE: more configuration is still required in /etc/cobbler
# for more information:
# https://github.com/cobbler/cobbler/wiki/Dns-management

[dns]
module = managers.bind

# dhcp:
# chooses the DHCP management engine if manage_dhcp is enabled
# in /etc/cobbler/settings, which is off by default.
# choices:
#    managers.isc     -- default, uses ISC dhcpd
#    managers.dnsmasq -- uses dnsmasq, also must select dnsmasq for dns above
# NOTE: more configuration is still required in /etc/cobbler
# for more information:
# https://github.com/cobbler/cobbler/wiki/Dhcp-management

[dhcp]
module = managers.isc

# tftpd:
# chooses the TFTP management engine if manage_tftp is enabled
# in /etc/cobbler/settings, which is ON by default.
#
# choices:
#    managers.in_tftpd -- default, uses the system's tftp server
#    managers.tftpd_py -- uses cobbler's tftp server
#

[tftpd]
module = managers.in_tftpd

#--------------------------------------------------
EOM

print_help() {
  echo "$(basename "$0") [-h] [-r] [-s] [-n] [-f absolute_filepath]"
  echo "Script to migrate a Cobbler 3.0.0 or prior \"modules.conf\" to a 3.0.1 \"modules.conf\""
  echo ""
  echo "Usage:"
  echo "   One of the following arguments must be choosen [rsn] additionally you must hand over the absolute path of"
  echo "   the \"modules.conf\""
  echo ""
  echo "Options:"
  echo "  -h  show this help text"
  echo "  -r  Use the regex replace. I recommend this if you have custom modules and also have rearranged them."
  echo "      WARNING: This also alters the documentation in the settings file which is wrong to the current point"
  echo "               in time."
  echo "  -s  Use the static replace. I recomment this if you use the default modules."
  echo "  -n  Make a new start with Cobbler and just replace the whole settings file."
  echo "  -f  Path to the \"modules.conf\""
}

regex_conversion() {
  sed -i -e 's/authn_/authentication\./g' $path_modules_conf
  sed -i -e 's/authz_/authorization\./g' $path_modules_conf
  sed -i -e 's/manage_/managers\./g' $path_modules_conf
}

static_conversion() {
  sed -i -e 's/authn_denyall/authentication.denyall/g' $path_modules_conf
  sed -i -e 's/authn_configfile/authentication.configfile/g' $path_modules_conf
  sed -i -e 's/authn_passthru/authentication.passthru/g' $path_modules_conf
  sed -i -e 's/authn_ldap/authentication.ldap/g' $path_modules_conf
  sed -i -e 's/authn_spacewalk/authentication.spacewalk/g' $path_modules_conf
  sed -i -e 's/authn_pam/authentication.pam/g' $path_modules_conf
  sed -i -e 's/authn_testing/authentication.testing/g' $path_modules_conf
  sed -i -e 's/authz_allowall/authorization.allowall/g' $path_modules_conf
  sed -i -e 's/authz_ownership/authorization.ownership/g' $path_modules_conf
  sed -i -e 's/manage_bind/managers.bind/g' $path_modules_conf
  sed -i -e 's/manage_dnsmasq/managers.dnsmasq/g' $path_modules_conf
  sed -i -e 's/manage_ndjbdns/managers.ndjbdns/g' $path_modules_conf
  sed -i -e 's/manage_isc/managers.isc/g' $path_modules_conf
  sed -i -e 's/manage_dnsmasq/managers.dnsmasq/g' $path_modules_conf
  sed -i -e 's/manage_in_tftpd/managers.in_tftpd/g' $path_modules_conf
  sed -i -e 's/manage_tftpd_py/managers.tftpd_py/g' $path_modules_conf
}

replace_modules_conf() {
  rm $path_modules_conf
  touch $path_modules_conf
  echo "$default_file" >$path_modules_conf
}

run() {
  if $flag_regex_conversion; then
    regex_conversion
  elif $flag_static_conversion; then
    static_conversion
  elif $flag_replace_conversion; then
    replace_modules_conf
  fi
}

wrong_options() {
  echo "Error:"
  echo "You selected the wrong number of flags. Please read the usage!"
  echo ""
  print_help
}

validate_options() {
  if $flag_regex_conversion && $flag_static_conversion && $flag_replace_conversion; then
    print_help
    exit 1
  elif $flag_regex_conversion && $flag_static_conversion; then
    print_help
    exit 1
  elif $flag_regex_conversion && $flag_replace_conversion; then
    print_help
    exit 1
  fi
}

parse_options() {
  while getopts 'hrsnf:' option; do
    case "$option" in
    h)
      print_help
      exit
      ;;
    r)
      flag_regex_conversion=true
      ;;
    s)
      flag_static_conversion=true
      ;;
    n)
      flag_replace_conversion=true
      ;;
    f)
      path_modules_conf=$OPTARG
      ;;
    :)
      printf "Error:"
      printf "Missing argument for -%f\n" "$OPTARG" >&2
      print_help
      exit 1
      ;;
    \?)
      printf "Error:"
      printf "Illegal option: -%s\n" "$OPTARG" >&2
      echo ""
      print_help
      exit 1
      ;;
    esac
  done
  shift $((OPTIND - 1))
}

# Main routine
parse_options "$@"
validate_options
run
 07070100000135000081A40000000000000000000000015ECE244400007234000000000000000000000000000000000000001700000000cobbler-3.1.2/setup.py    #!/usr/bin/env python3

from future import standard_library
standard_library.install_aliases()
import os
import sys
import time
import logging
import glob as _glob
import distro

from builtins import str
from setuptools import setup
from setuptools import Command
from setuptools.command.install import install as _install
from setuptools import Distribution as _Distribution
from setuptools.command.build_py import build_py as _build_py
from setuptools import dep_util
from distutils.command.build import build as _build
from configparser import ConfigParser
from setuptools import find_packages
from sphinx.setup_command import BuildDoc

import codecs
from coverage import Coverage
import pwd
import shutil
import subprocess

from builtins import OSError

VERSION = "3.1.2"
OUTPUT_DIR = "config"

log = logging.getLogger("setup.py")


#####################################################################
# # Helper Functions #################################################
#####################################################################

def glob(*args, **kwargs):
    recursive = kwargs.get('recursive', False)
    results = []
    for arg in args:
        for elem in _glob.glob(arg):
            # Now check if we should handle/check those results.
            if os.path.isdir(elem):
                if os.path.islink(elem):
                    # We skip symlinks
                    pass
                else:
                    # We only handle directories if recursive was specified
                    if recursive:
                        results.extend(
                            # Add the basename of arg (the pattern) to elem and continue
                            glob(
                                os.path.join(elem, os.path.basename(arg)),
                                recursive=True))
            else:
                # Always append normal files
                results.append(elem)
    return results

#####################################################################


#####################################################################

def gen_build_version():
    buildepoch = int(os.environ.get('SOURCE_DATE_EPOCH', time.time()))
    builddate = time.asctime(time.gmtime(buildepoch))

    gitloc = "/usr/bin/git"
    gitdate = "?"
    gitstamp = "?"
    if not os.path.isfile(gitloc):
        print("warning: " + gitloc + " not found")
    else:
        cmd = subprocess.Popen([gitloc, "log", "--format=%h%n%ad", "-1"],
                               stdout=subprocess.PIPE)
        data = cmd.communicate()[0].strip()
        if cmd.returncode == 0:
            gitstamp, gitdate = data.split(b"\n")

    fd = open(os.path.join(OUTPUT_DIR, "version"), "w+")
    config = ConfigParser()
    config.add_section("cobbler")
    config.set("cobbler", "gitdate", str(gitdate))
    config.set("cobbler", "gitstamp", str(gitstamp))
    config.set("cobbler", "builddate", builddate)
    config.set("cobbler", "version", VERSION)
    config.set("cobbler", "version_tuple", str([int(x) for x in VERSION.split(".")]))
    config.write(fd)
    fd.close()

#####################################################################
# # Custom Distribution Class ########################################
#####################################################################


class Distribution(_Distribution):
    def __init__(self, *args, **kwargs):
        self.configure_files = []
        self.configure_values = {}
        self.man_pages = []
        _Distribution.__init__(self, *args, **kwargs)

#####################################################################
# # Modify Build Stage  ##############################################
#####################################################################


class build_py(_build_py):
    """Specialized Python source builder."""

    def run(self):
        gen_build_version()
        _build_py.run(self)

#####################################################################
# # Modify Build Stage  ##############################################
#####################################################################


class build(_build):
    """Specialized Python source builder."""

    def run(self):
        _build.run(self)

#####################################################################
# # Build man pages using Sphinx  ###################################
#####################################################################


class build_man(BuildDoc):
    def initialize_options(self):
        BuildDoc.initialize_options(self)
        self.builder = 'man'

#####################################################################
# # Configure files ##################################################
#####################################################################


class build_cfg(Command):

    description = "configure files (copy and substitute options)"

    user_options = [
        ('install-base=', None, "base installation directory"),
        ('install-platbase=', None, "base installation directory for platform-specific files "),
        ('install-purelib=', None, "installation directory for pure Python module distributions"),
        ('install-platlib=', None, "installation directory for non-pure module distributions"),
        ('install-lib=', None, "installation directory for all module distributions " + "(overrides --install-purelib and --install-platlib)"),
        ('install-headers=', None, "installation directory for C/C++ headers"),
        ('install-scripts=', None, "installation directory for Python scripts"),
        ('install-data=', None, "installation directory for data files"),
        ('force', 'f', "forcibly build everything (ignore file timestamps")
    ]

    boolean_options = ['force']

    def initialize_options(self):
        self.build_dir = None
        self.force = None
        self.install_base = None
        self.install_platbase = None
        self.install_scripts = None
        self.install_data = None
        self.install_purelib = None
        self.install_platlib = None
        self.install_lib = None
        self.install_headers = None
        self.root = None

    def finalize_options(self):
        self.set_undefined_options(
            'build',
            ('build_base', 'build_dir'),
            ('force', 'force')
        )
        self.set_undefined_options(
            'install',
            ('install_base', 'install_base'),
            ('install_platbase', 'install_platbase'),
            ('install_scripts', 'install_scripts'),
            ('install_data', 'install_data'),
            ('install_purelib', 'install_purelib'),
            ('install_platlib', 'install_platlib'),
            ('install_lib', 'install_lib'),
            ('install_headers', 'install_headers'),
            ('root', 'root')
        )

        if self.root:
            # We need the unrooted versions of this values
            for name in ('lib', 'purelib', 'platlib', 'scripts', 'data', 'headers'):
                attr = "install_" + name
                setattr(self, attr, '/' + os.path.relpath(getattr(self, attr), self.root))

        # Check if we are running under a virtualenv
        if hasattr(sys, 'real_prefix'):
            virtualenv = sys.prefix
        else:
            virtualenv = ""

        # The values to expand.
        self.configure_values = {
            'python_executable': sys.executable,
            'virtualenv': virtualenv,
            'install_base': os.path.normpath(self.install_base),
            'install_platbase': os.path.normpath(self.install_platbase),
            'install_scripts': os.path.normpath(self.install_scripts),
            'install_data': os.path.normpath(self.install_data),
            'install_purelib': os.path.normpath(self.install_purelib),
            'install_platlib': os.path.normpath(self.install_platlib),
            'install_lib': os.path.normpath(self.install_lib),
            'install_headers': os.path.normpath(self.install_headers),
        }
        self.configure_values.update(self.distribution.configure_values)

    def run(self):
        # On dry-run ignore missing source files.
        if self.dry_run:
            mode = 'newer'
        else:
            mode = 'error'
        # Work on all files
        for infile in self.distribution.configure_files:
            # We copy the files to build/
            outfile = os.path.join(self.build_dir, infile)
            # check if the file is out of date
            if self.force or dep_util.newer_group([infile, 'setup.py'], outfile, mode):
                # It is. Configure it
                self.configure_one_file(infile, outfile)

    def configure_one_file(self, infile, outfile):
        log.info("configuring %s" % infile)
        if not self.dry_run:
            # Read the file
            with codecs.open(infile, 'r', 'utf-8') as fh:
                before = fh.read()
            # Substitute the variables
            # Create the output directory if necessary
            outdir = os.path.dirname(outfile)
            if not os.path.exists(outdir):
                os.makedirs(outdir)
            # Write it into build/
            with codecs.open(outfile, 'w', 'utf-8') as fh:
                fh.write(self.substitute_values(before, self.configure_values))
            # The last step is to copy the permission bits
            shutil.copymode(infile, outfile)

    def substitute_values(self, string, values):
        for name, val in list(values.items()):
            # print("replacing @@%s@@ with %s" % (name, val))
            string = string.replace("@@%s@@" % (name), val)
        return string


def has_configure_files(build):
    """Check if the distribution has configuration files to work on."""
    return bool(build.distribution.configure_files)


def has_man_pages(build):
    """Check if the distribution has configuration files to work on."""
    return bool(build.distribution.man_pages)


build.sub_commands.extend((
    ('build_man', has_man_pages),
    ('build_cfg', has_configure_files)
))


#####################################################################
# # Modify Install Stage  ############################################
#####################################################################


class install(_install):
    """Specialised python package installer.

    It does some required chown calls in addition to the usual stuff.
    """

    def __init__(self, *args):
        _install.__init__(self, *args)

    def change_owner(self, path, owner):
        user = pwd.getpwnam(owner)
        try:
            log.info("changing mode of %s" % path)
            if not self.dry_run:
                # os.walk does not include the toplevel directory
                os.lchown(path, user.pw_uid, -1)
                # Now walk the directory and change them all
                for root, dirs, files in os.walk(path):
                    for dirname in dirs:
                        os.lchown(os.path.join(root, dirname), user.pw_uid, -1)
                    for filename in files:
                        os.lchown(os.path.join(root, filename), user.pw_uid, -1)
        except OSError as e:
            # We only check for errno = 1 (EPERM) here because its kinda
            # expected when installing as a non root user.
            if e.errno == 1:
                self.warn("Could not change owner: You have insufficient permissions.")
            else:
                raise e

    def run(self):
        # Run the usual stuff.
        _install.run(self)

        # If --root wasn't specified default to /usr/local
        if self.root is None:
            self.root = "/usr/local"

        # Hand over some directories to the webserver user
        path = os.path.join(self.install_data, 'share/cobbler/web')
        try:
            self.change_owner(path, http_user)
        except Exception as e:
            # building RPMs in a mock chroot, user 'apache' won't exist
            log.warning("Error in 'chown apache %s': %s" % (path, e))
        if not os.path.abspath(libpath):
            # The next line only works for absolute libpath
            raise Exception("libpath is not absolute.")
        # libpath is hardcoded in the code everywhere
        # therefor cant relocate using self.root
        path = os.path.join(self.root + libpath, 'webui_sessions')
        try:
            self.change_owner(path, http_user)
        except Exception as e:
            # building RPMs in a mock chroot, user 'apache' won't exist
            log.warning("Error in 'chown apache %s': %s" % (path, e))


#####################################################################
# # Test Command #####################################################
#####################################################################


class test_command(Command):
    user_options = []

    def initialize_options(self):
        pass

    def finalize_options(self):
        pass

    def run(self):
        import pytest

        cov = Coverage()
        cov.erase()
        cov.start()

        result = pytest.main()

        cov.stop()
        cov.save()
        cov.html_report(directory="covhtml")
        sys.exit(int(bool(len(result.failures) > 0 or len(result.errors) > 0)))


#####################################################################
# # state command base class #########################################
#####################################################################

class statebase(Command):

    user_options = [
        ('statepath=', None, 'directory to backup configuration'),
        ('root=', None, 'install everything relative to this alternate root directory')
    ]

    def initialize_options(self):
        self.statepath = statepath
        self.root = None

    def finalize_options(self):
        pass

    def _copy(self, frm, to):
        if os.path.isdir(frm):
            to = os.path.join(to, os.path.basename(frm))
            log.debug("copying %s/ to %s/" % (frm, to))
            if not self.dry_run:
                if os.path.exists(to):
                    shutil.rmtree(to)
                shutil.copytree(frm, to)
        else:
            log.debug("copying %s to %s" % (frm, os.path.join(to, os.path.basename(frm))))
            if not self.dry_run:
                shutil.copy2(frm, to)

#####################################################################
# # restorestate command #############################################
#####################################################################


class restorestate(statebase):

    def _copy(self, frm, to):
        if self.root:
            to = self.root + to
        statebase._copy(self, frm, to)

    def run(self):
        log.info("restoring the current configuration from %s" % self.statepath)
        if not os.path.exists(self.statepath):
            self.warn("%s does not exist. Skipping" % self.statepath)
            return
        self._copy(os.path.join(self.statepath, 'collections'), libpath)
        self._copy(os.path.join(self.statepath, 'cobbler_web.conf'), webconfig)
        self._copy(os.path.join(self.statepath, 'cobbler.conf'), webconfig)
        self._copy(os.path.join(self.statepath, 'modules.conf'), etcpath)
        self._copy(os.path.join(self.statepath, 'settings'), etcpath)
        self._copy(os.path.join(self.statepath, 'users.conf'), etcpath)
        self._copy(os.path.join(self.statepath, 'users.digest'), etcpath)
        self._copy(os.path.join(self.statepath, 'dhcp.template'), etcpath)
        self._copy(os.path.join(self.statepath, 'rsync.template'), etcpath)

#####################################################################
# # savestate command ################################################
#####################################################################


class savestate(statebase):

    description = "Backup the current configuration to /tmp/cobbler_settings."

    def _copy(self, frm, to):
        if self.root:
            frm = self.root + frm
        statebase._copy(self, frm, to)

    def run(self):
        log.info("backing up the current configuration to %s" % self.statepath)
        if os.path.exists(self.statepath):
            log.debug("deleting existing %s" % self.statepath)
            if not self.dry_run:
                shutil.rmtree(self.statepath)
        if not self.dry_run:
            os.makedirs(self.statepath)
        self._copy(os.path.join(libpath, 'collections'), self.statepath)
        self._copy(os.path.join(webconfig, 'cobbler_web.conf'), self.statepath)
        self._copy(os.path.join(webconfig, 'cobbler.conf'), self.statepath)
        self._copy(os.path.join(etcpath, 'modules.conf'), self.statepath)
        self._copy(os.path.join(etcpath, 'settings'), self.statepath)
        self._copy(os.path.join(etcpath, 'users.conf'), self.statepath)
        self._copy(os.path.join(etcpath, 'users.digest'), self.statepath)
        self._copy(os.path.join(etcpath, 'dhcp.template'), self.statepath)
        self._copy(os.path.join(etcpath, 'rsync.template'), self.statepath)


#####################################################################
# # Actual Setup.py Script ###########################################
#####################################################################


if __name__ == "__main__":
    # # Configurable installation roots for various data files.

    # Trailing slashes on these vars is to allow for easy later configuration of relative paths if desired.
    docpath = "share/man"
    etcpath = "/etc/cobbler/"
    libpath = "/var/lib/cobbler/"
    logpath = "/var/log/"
    completion_path = "/usr/share/bash-completion/completions"
    statepath = "/tmp/cobbler_settings/devinstall"
    httpd_service = "httpd.service"
    suse_release = "suse" in distro.like()

    if suse_release:
        webconfig = "/etc/apache2/vhosts.d"
        webroot = "/srv/www/"
        http_user = "wwwrun"
        httpd_service = "apache2.service"
        defaultpath = "/etc/sysconfig/"
    elif distro.id() in ("debian", "ubuntu"):
        webconfig = "/etc/apache2/conf-available"
        webroot = "/var/www/"
        http_user = "www-data"
        httpd_service = "apache2.service"
        defaultpath = "/etc/default/"
    else:
        webconfig = "/etc/httpd/conf.d"
        webroot = "/var/www/"
        http_user = "apache"
        defaultpath = "/etc/sysconfig/"

    webcontent = webroot + "cobbler_webui_content/"
    webimages = webcontent + "/images"

    setup(
        distclass=Distribution,
        cmdclass={
            'build': build,
            'build_py': build_py,
            'test': test_command,
            'install': install,
            'savestate': savestate,
            'restorestate': restorestate,
            'build_cfg': build_cfg,
            'build_man': build_man
        },
        name="cobbler",
        version=VERSION,
        description="Network Boot and Update Server",
        long_description="Cobbler is a network install server. Cobbler supports PXE, virtualized installs, "
                         "and reinstalling existing Linux machines. The last two modes use a helper tool, 'koan', "
                         "that integrates with cobbler. There is also a web interface 'cobbler-web'. Cobbler's "
                         "advanced features include importing distributions from DVDs and rsync mirrors, automatic OS "
                         "installation templating, integrated yum mirroring, and built-in DHCP/DNS Management. "
                         "Cobbler has a XMLRPC API for integration with other applications.",
        author="Team Cobbler",
        author_email="cobbler.project@gmail.com",
        url="https://cobbler.github.io",
        license="GPLv2+",
        setup_requires=[
            "coverage",
            "distro",
            "future",
            "setuptools",
            "sphinx",
        ],
        install_requires=[
            "mod_wsgi",
            "requests",
            "future",
            "pyyaml",
            "simplejson",
            "netaddr",
            "Cheetah3",
            "Django",
            "pymongo",
            "distro",
            "ldap3",
            "dnspython",
            "tornado",
        ],
        extras_require={"lint": ["pyflakes", "pycodestyle"], "test": ["pytest", "pytest-cov", "codecov"]},
        packages=find_packages(exclude=["*tests*"]),
        scripts=[
            "bin/cobbler",
            "bin/cobblerd",
            "bin/cobbler-ext-nodes",
        ],
        configure_values={
            'webroot': os.path.normpath(webroot),
            'defaultpath': os.path.normpath(defaultpath),
            'httpd_service': httpd_service,
        },
        configure_files=[
            "config/cobbler/settings",
            "config/apache/cobbler.conf",
            "config/apache/cobbler_web.conf",
            "config/service/cobblerd.service",
        ],
        man_pages=[
            'docs/cobblerd.rst',
            'docs/cobbler-conf.rst',
            'docs/cobbler.rst'
        ],
        data_files=[
            # tftpd, hide in /usr/sbin
            ("sbin", ["bin/tftpd.py"]),
            ("sbin", ["bin/fence_ipmitool"]),
            ("%s" % webconfig, ["build/config/apache/cobbler.conf"]),
            ("%s" % webconfig, ["build/config/apache/cobbler_web.conf"]),
            ("%stemplates" % libpath, glob("autoinstall_templates/*")),
            ("%stemplates/install_profiles" % libpath, glob("autoinstall_templates/install_profiles/*")),
            ("%ssnippets" % libpath, glob("autoinstall_snippets/*", recursive=True)),
            ("%sscripts" % libpath, glob("autoinstall_scripts/*")),
            ("%s" % libpath, ["config/cobbler/distro_signatures.json"]),
            ("share/cobbler/web", glob("web/*.*")),
            ("%s" % webcontent, glob("web/static/*")),
            ("%s" % webimages, glob("web/static/images/*")),
            ("share/cobbler/bin", glob("scripts/*.sh")),
            ("share/cobbler/web/templates", glob("web/templates/*")),
            ("%swebui_sessions" % libpath, []),
            ("%sloaders" % libpath, []),
            ("%scobbler/misc" % webroot, glob("misc/*")),
            # Configuration
            ("%s" % etcpath, ["build/config/apache/cobbler.conf",
                              "build/config/apache/cobbler_web.conf",
                              "build/config/service/cobblerd.service",
                              "build/config/cobbler/settings"]),
            ("%ssettings.d" % etcpath, glob("config/cobbler/settings.d/*")),
            ("%s" % etcpath, ["config/cobbler/auth.conf",
                              "config/cobbler/modules.conf",
                              "config/cobbler/mongodb.conf",
                              "config/cobbler/users.conf",
                              "config/cobbler/users.digest",
                              "config/cheetah/cheetah_macros",
                              "config/rotate/cobblerd_rotate",
                              "config/rsync/import_rsync_whitelist",
                              "config/rsync/rsync.exclude",
                              "config/version"]),
            ("%s" % etcpath, glob("cobbler/etc/*")),
            ("%s" % etcpath, ["templates/etc/named.template",
                              "templates/etc/genders.template",
                              "templates/etc/secondary.template",
                              "templates/etc/zone.template",
                              "templates/etc/dnsmasq.template",
                              "templates/etc/rsync.template",
                              "templates/etc/dhcp.template",
                              "templates/etc/ndjbdns.template"]),
            ("%siso" % etcpath, glob("templates/iso/*")),
            ("%sboot_loader_conf" % etcpath, glob("templates/boot_loader_conf/*")),
            # completion_file
            ("%s" % completion_path, ["config/bash/completion/cobbler"]),
            ("%sgrub_config" % libpath, glob("config/grub/*")),
            # ToDo: Find a nice way to copy whole config/grub structure recursively
            # files
            ("%sgrub_config/grub" % libpath, glob("config/grub/grub/*")),
            # dirs
            ("%sgrub_config/grub/system" % libpath, []),
            ("%sgrub_config/grub/system_link" % libpath, []),
            ("%sreporting" % etcpath, glob("templates/reporting/*")),
            # Build empty directories to hold triggers
            ("%striggers/add/distro/pre" % libpath, []),
            ("%striggers/add/distro/post" % libpath, []),
            ("%striggers/add/profile/pre" % libpath, []),
            ("%striggers/add/profile/post" % libpath, []),
            ("%striggers/add/system/pre" % libpath, []),
            ("%striggers/add/system/post" % libpath, []),
            ("%striggers/add/repo/pre" % libpath, []),
            ("%striggers/add/repo/post" % libpath, []),
            ("%striggers/add/mgmtclass/pre" % libpath, []),
            ("%striggers/add/mgmtclass/post" % libpath, []),
            ("%striggers/add/package/pre" % libpath, []),
            ("%striggers/add/package/post" % libpath, []),
            ("%striggers/add/file/pre" % libpath, []),
            ("%striggers/add/file/post" % libpath, []),
            ("%striggers/delete/distro/pre" % libpath, []),
            ("%striggers/delete/distro/post" % libpath, []),
            ("%striggers/delete/profile/pre" % libpath, []),
            ("%striggers/delete/profile/post" % libpath, []),
            ("%striggers/delete/system/pre" % libpath, []),
            ("%striggers/delete/system/post" % libpath, []),
            ("%striggers/delete/repo/pre" % libpath, []),
            ("%striggers/delete/repo/post" % libpath, []),
            ("%striggers/delete/mgmtclass/pre" % libpath, []),
            ("%striggers/delete/mgmtclass/post" % libpath, []),
            ("%striggers/delete/package/pre" % libpath, []),
            ("%striggers/delete/package/post" % libpath, []),
            ("%striggers/delete/file/pre" % libpath, []),
            ("%striggers/delete/file/post" % libpath, []),
            ("%striggers/install/pre" % libpath, []),
            ("%striggers/install/post" % libpath, []),
            ("%striggers/install/firstboot" % libpath, []),
            ("%striggers/sync/pre" % libpath, []),
            ("%striggers/sync/post" % libpath, []),
            ("%striggers/change" % libpath, []),
            ("%striggers/task/distro/pre" % libpath, []),
            ("%striggers/task/distro/post" % libpath, []),
            ("%striggers/task/profile/pre" % libpath, []),
            ("%striggers/task/profile/post" % libpath, []),
            ("%striggers/task/system/pre" % libpath, []),
            ("%striggers/task/system/post" % libpath, []),
            ("%striggers/task/repo/pre" % libpath, []),
            ("%striggers/task/repo/post" % libpath, []),
            ("%striggers/task/mgmtclass/pre" % libpath, []),
            ("%striggers/task/mgmtclass/post" % libpath, []),
            ("%striggers/task/package/pre" % libpath, []),
            ("%striggers/task/package/post" % libpath, []),
            ("%striggers/task/file/pre" % libpath, []),
            ("%striggers/task/file/post" % libpath, []),
            # Build empty directories to hold the database
            ("%scollections" % libpath, []),
            ("%scollections/distros" % libpath, []),
            ("%scollections/images" % libpath, []),
            ("%scollections/profiles" % libpath, []),
            ("%scollections/repos" % libpath, []),
            ("%scollections/systems" % libpath, []),
            ("%scollections/mgmtclasses" % libpath, []),
            ("%scollections/packages" % libpath, []),
            ("%scollections/files" % libpath, []),
            # logfiles
            ("%scobbler/kicklog" % logpath, []),
            ("%scobbler/syslog" % logpath, []),
            ("%shttpd/cobbler" % logpath, []),
            ("%scobbler/anamon" % logpath, []),
            ("%scobbler/tasks" % logpath, []),
            # web page directories that we own
            ("%scobbler/localmirror" % webroot, []),
            ("%scobbler/repo_mirror" % webroot, []),
            ("%scobbler/distro_mirror" % webroot, []),
            ("%scobbler/distro_mirror/config" % webroot, []),
            ("%scobbler/links" % webroot, []),
            ("%scobbler/misc" % webroot, []),
            ("%scobbler/pub" % webroot, []),
            ("%scobbler/rendered" % webroot, []),
            ("%scobbler/images" % webroot, []),
            # A script that isn't really data, wsgi script
            ("%scobbler/svc/" % webroot, ["svc/services.py"]),
            # A script that isn't really data, wsgi script
            ("share/cobbler/web/", ["cobbler/web/settings.py"]),
            # zone-specific templates directory
            ("%szone_templates" % etcpath, glob("templates/zone_templates/*")),
            ("%s" % etcpath, ["config/cobbler/logging_config.conf"]),
            # man pages
            ("%s/man1" % docpath, glob("build/sphinx/man/*.1")),
            ("%s/man5" % docpath, glob("build/sphinx/man/*.5")),
            ("%s/man8" % docpath, glob("build/sphinx/man/*.8")),
        ],
    )
07070100000136000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000001200000000cobbler-3.1.2/svc 07070100000137000081A40000000000000000000000015ECE2444000010EA000000000000000000000000000000000000001E00000000cobbler-3.1.2/svc/services.py """
This module is a mod_wsgi application used to serve up the Cobbler
service URLs.

Copyright 2010, Red Hat, Inc and Others

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
"""
# Only add standard python modules here. When running under a virtualenv other modules are not
# available at this point.
from future import standard_library
standard_library.install_aliases()
from builtins import str
import os
import urllib.request
import urllib.parse
import urllib.error
import xmlrpc.server
import cgi


def application(environ, start_response):

    if 'VIRTUALENV' in environ and environ['VIRTUALENV'] != "":
        # VIRTUALENV Support
        # see http://code.google.com/p/modwsgi/wiki/VirtualEnvironments
        import site
        import distutils.sysconfig
        site.addsitedir(distutils.sysconfig.get_python_lib(prefix=environ['VIRTUALENV']))
        # Now all modules are available even under a virtualenv

    import yaml
    from cobbler.services import CobblerSvc

    my_uri = urllib.parse.unquote(environ['REQUEST_URI'])

    form = {}

    # canonicalizes uri, mod_python does this, mod_wsgi does not
    my_uri = os.path.realpath(my_uri)

    tokens = my_uri.split("/")
    tokens = tokens[3:]
    label = True
    field = ""
    for t in tokens:
        if label:
            field = t
        else:
            form[field] = t
        label = not label

    form["query_string"] = cgi.parse_qs(environ['QUERY_STRING'])

    # This MAC header is set by anaconda during a kickstart booted with the
    # kssendmac kernel option. The field will appear here as something
    # like: eth0 XX:XX:XX:XX:XX:XX
    mac_counter = 0
    remote_macs = []
    mac_header = "HTTP_X_RHN_PROVISIONING_MAC_%d" % mac_counter
    while environ.get(mac_header, None):
        remote_macs.append(environ[mac_header])
        mac_counter = mac_counter + 1
        mac_header = "HTTP_X_RHN_PROVISIONING_MAC_%d" % mac_counter

    form["REMOTE_MACS"] = remote_macs

    # REMOTE_ADDR isn't a required wsgi attribute so it may be naive to assume
    # it's always present in this context.
    form["REMOTE_ADDR"] = environ.get("REMOTE_ADDR", None)

    # Read config for the XMLRPC port to connect to:
    fd = open("/etc/cobbler/settings")
    data = fd.read()
    fd.close()
    ydata = yaml.safe_load(data)
    remote_port = ydata.get("xmlrpc_port", 25151)

    # instantiate a CobblerWeb object
    cw = CobblerSvc(server="http://127.0.0.1:%s" % remote_port)

    # check for a valid path/mode
    # handle invalid paths gracefully
    mode = form.get('op', 'index')

    # TODO: We could do proper exception handling here and return
    # corresponding HTTP status codes:

    status = "200 OK"
    # Execute corresponding operation on the CobblerSvc object:
    func = getattr(cw, mode)
    try:
        content = func(**form)

        if content.find("# *** ERROR ***") != -1:
            status = '500 SERVER ERROR'
            print("possible cheetah template error")

        # TODO: Not sure these strings are the right ones to look for...
        elif content.find("# profile not found") != -1 or \
                content.find("# system not found") != -1 or \
                content.find("# object not found") != -1:
            print(("content not found: %s" % my_uri))
            status = "404 NOT FOUND"
    except xmlrpc.server.Fault as err:
        status = "500 SERVER ERROR"
        content = err.faultString

    # req.content_type = "text/plain;charset=utf-8"
    response_headers = [('Content-type', 'text/plain;charset=utf-8'),
                        ('Content-Length', str(len(content)))]
    start_response(status, response_headers)

    return [content.encode('utf-8')]
  07070100000138000041ED0000000000000000000000075ECE244400000000000000000000000000000000000000000000001800000000cobbler-3.1.2/templates   07070100000139000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000002900000000cobbler-3.1.2/templates/boot_loader_conf  0707010000013A000081A40000000000000000000000015ECE244400000126000000000000000000000000000000000000004000000000cobbler-3.1.2/templates/boot_loader_conf/bootcfg_esxi5.template   bootstate=0
title=Cobbler - Loading ESXi installer
prefix=$img_path
kernel=tboot.b00
#if $getVar('system_name','') != ''
#set $what = "system"
#else
#set $what = "profile"
#end if
kernelopt=runweasel ks=http://$server:$http_port/cblr/svc/op/ks/$what/$name
modules=$esx_modules
build=
updated=0
  0707010000013B000081A40000000000000000000000015ECE244400000126000000000000000000000000000000000000004100000000cobbler-3.1.2/templates/boot_loader_conf/bootcfg_esxi51.template  bootstate=0
title=Cobbler - Loading ESXi installer
prefix=$img_path
kernel=tboot.b00
#if $getVar('system_name','') != ''
#set $what = "system"
#else
#set $what = "profile"
#end if
kernelopt=runweasel ks=http://$server:$http_port/cblr/svc/op/ks/$what/$name
modules=$esx_modules
build=
updated=0
  0707010000013C000081A40000000000000000000000015ECE24440000011C000000000000000000000000000000000000004100000000cobbler-3.1.2/templates/boot_loader_conf/bootcfg_esxi55.template  bootstate=0
title=Loading ESXi installer
prefix=$img_path
kernel=tboot.b00
#if $getVar('system_name','') != ''
#set $what = "system"
#else
#set $what = "profile"
#end if
kernelopt=runweasel ks=http://$server:$http_port/cblr/svc/op/ks/$what/$name
modules=$esx_modules
build=
updated=0
0707010000013D000081A40000000000000000000000015ECE24440000011C000000000000000000000000000000000000004100000000cobbler-3.1.2/templates/boot_loader_conf/bootcfg_esxi60.template  bootstate=0
title=Loading ESXi installer
prefix=$img_path
kernel=tboot.b00
#if $getVar('system_name','') != ''
#set $what = "system"
#else
#set $what = "profile"
#end if
kernelopt=runweasel ks=http://$server:$http_port/cblr/svc/op/ks/$what/$name
modules=$esx_modules
build=
updated=0
0707010000013E000081A40000000000000000000000015ECE24440000011C000000000000000000000000000000000000004100000000cobbler-3.1.2/templates/boot_loader_conf/bootcfg_esxi65.template  bootstate=0
title=Loading ESXi installer
prefix=$img_path
kernel=tboot.b00
#if $getVar('system_name','') != ''
#set $what = "system"
#else
#set $what = "profile"
#end if
kernelopt=runweasel ks=http://$server:$http_port/cblr/svc/op/ks/$what/$name
modules=$esx_modules
build=
updated=0
0707010000013F000081A40000000000000000000000015ECE244400000118000000000000000000000000000000000000004100000000cobbler-3.1.2/templates/boot_loader_conf/bootcfg_esxi67.template  bootstate=0
title=Loading ESXi installer
prefix=$img_path
kernel=b.b00
#if $getVar('system_name','') != ''
#set $what = "system"
#else
#set $what = "profile"
#end if
kernelopt=runweasel ks=http://$server:$http_port/cblr/svc/op/ks/$what/$name
modules=$esx_modules
build=
updated=0
07070100000140000081A40000000000000000000000015ECE2444000000BE000000000000000000000000000000000000004400000000cobbler-3.1.2/templates/boot_loader_conf/gpxe_system_esxi5.template   #!gpxe
kernel http://$server:$http_port/cobbler/distro_mirror/$distro/mboot.c32
imgargs mboot.c32 -c http://$server:$http_port/cblr/svc/op/bootcfg/system/$name BOOTIF=$mac_address_eth0
boot
  07070100000141000081A40000000000000000000000015ECE2444000000BE000000000000000000000000000000000000004400000000cobbler-3.1.2/templates/boot_loader_conf/gpxe_system_esxi6.template   #!gpxe
kernel http://$server:$http_port/cobbler/distro_mirror/$distro/mboot.c32
imgargs mboot.c32 -c http://$server:$http_port/cblr/svc/op/bootcfg/system/$name BOOTIF=$mac_address_eth0
boot
  07070100000142000081A40000000000000000000000015ECE2444000000AF000000000000000000000000000000000000004600000000cobbler-3.1.2/templates/boot_loader_conf/gpxe_system_freebsd.template #!gpxe
kernel http://$server/cobbler/distro_mirror/$distro/boot/memdisk
imgargs memdisk raw iso
initrd http://$server/cobbler/distro_mirror/$distro/boot/bootonly.iso.zip
boot
 07070100000143000081A40000000000000000000000015ECE2444000000B8000000000000000000000000000000000000004400000000cobbler-3.1.2/templates/boot_loader_conf/gpxe_system_linux.template   #!gpxe
kernel http://$server:$http_port/cobbler/images/$distro/$kernel_name
imgargs $kernel_name $append_line
initrd http://$server:$http_port/cobbler/images/$distro/$initrd_name
boot
07070100000144000081A40000000000000000000000015ECE244400000070000000000000000000000000000000000000004400000000cobbler-3.1.2/templates/boot_loader_conf/gpxe_system_local.template   #!gpxe
# Boot from local hard disk
iseq ${smbios/manufacturer} HP && exit ||
sanboot --no-describe --drive 0x80
07070100000145000081A40000000000000000000000015ECE2444000002A2000000000000000000000000000000000000004600000000cobbler-3.1.2/templates/boot_loader_conf/gpxe_system_windows.template #!gpxe
#
# This is a generic Windows gpxe script that uses wimboot to boot
# a WinPE image.  You may need to modify this for your environment.
#
# This expects a autoinstall_meta value to be set for initrd multiple times
# e.g. autoinstall_meta = initrd=bcd initrd=boot.sdi initrd=boot.wim
#
# You will need to either place the files manually or use multiple 
# 'cobbler distro edit' commands to have cobbler automatically link the
# files appropriately
#
# See http://ipxe.org/wimboot for more details
#
kernel http://$server:$http_port/cobbler/images/$distro/wimboot
#for $init in $initrd
initrd http://$server:$http_port/cobbler/images/$distro/$init	$init
#end for
boot 
  07070100000146000081A40000000000000000000000015ECE244400000022000000000000000000000000000000000000003C00000000cobbler-3.1.2/templates/boot_loader_conf/grublocal.template   set timeout=1
set default='local'
  07070100000147000081A40000000000000000000000015ECE2444000000C5000000000000000000000000000000000000003E00000000cobbler-3.1.2/templates/boot_loader_conf/grubprofile.template menuentry '$profile_name' --class gnu-linux --class gnu --class os {
  echo 'Loading kernel ...'
  clinux $kernel_path $kernel_options
  echo 'Loading initial ramdisk ...'
  cinitrd $initrd_path
}
   07070100000148000081A40000000000000000000000015ECE2444000000F1000000000000000000000000000000000000003D00000000cobbler-3.1.2/templates/boot_loader_conf/grubsystem.template  set timeout=1
set default='linux'

menuentry 'linux' --class opensuse --class gnu-linux --class gnu --class os {
  echo 'Loading kernel ...'
  clinux $kernel_path $kernel_options
  echo 'Loading initial ramdisk ...'
  cinitrd $initrd_path
}
   07070100000149000081A40000000000000000000000015ECE2444000000EF000000000000000000000000000000000000003D00000000cobbler-3.1.2/templates/boot_loader_conf/pxedefault.template  DEFAULT menu
PROMPT 0
MENU TITLE Cobbler | https://cobbler.github.io
TIMEOUT 200
TOTALTIMEOUT 6000
ONTIMEOUT $pxe_timeout_profile

LABEL local
        MENU LABEL (local)
        MENU DEFAULT
        LOCALBOOT -1

$pxe_menu_items

MENU end
 0707010000014A000081A40000000000000000000000015ECE244400000063000000000000000000000000000000000000003B00000000cobbler-3.1.2/templates/boot_loader_conf/pxelocal.template    DEFAULT local
PROMPT 0
TIMEOUT 0
TOTALTIMEOUT 0
ONTIMEOUT local

LABEL local
        LOCALBOOT -1

 0707010000014B000081A40000000000000000000000015ECE244400000028000000000000000000000000000000000000004000000000cobbler-3.1.2/templates/boot_loader_conf/pxelocal_ia64.template   default=linux

image=dummy
	label=linux
0707010000014C000081A40000000000000000000000015ECE24440000006C000000000000000000000000000000000000003D00000000cobbler-3.1.2/templates/boot_loader_conf/pxeprofile.template  LABEL $profile_name
        kernel $kernel_path
        $menu_label
        $append_line
        ipappend 2
0707010000014D000081A40000000000000000000000015ECE244400000059000000000000000000000000000000000000004100000000cobbler-3.1.2/templates/boot_loader_conf/pxeprofile_arm.template  LABEL $profile_name
	kernel $kernel_path
	$menu_label
	$append_line
	initrd $initrd_path
   0707010000014E000081A40000000000000000000000015ECE244400000085000000000000000000000000000000000000004200000000cobbler-3.1.2/templates/boot_loader_conf/pxeprofile_esxi.template LABEL $profile_name
        kernel $kernel_path
        $menu_label
        ipappend 2
        append -c $img_path/cobbler-boot.cfg

   0707010000014F000081A40000000000000000000000015ECE244400000072000000000000000000000000000000000000003C00000000cobbler-3.1.2/templates/boot_loader_conf/pxesystem.template   default linux
prompt 0
timeout 1
label linux
        kernel $kernel_path
        ipappend 2
        $append_line

  07070100000150000081A40000000000000000000000015ECE244400000065000000000000000000000000000000000000004000000000cobbler-3.1.2/templates/boot_loader_conf/pxesystem_arm.template   default linux
prompt 0
timeout 1
label linux
	kernel $kernel_path
	$append_line
	initrd $initrd_path
   07070100000151000081A40000000000000000000000015ECE244400000127000000000000000000000000000000000000004100000000cobbler-3.1.2/templates/boot_loader_conf/pxesystem_esxi.template  default linux
prompt 0
timeout 1
label linux
        kernel $kernel_path
        ipappend 2
        append -c $img_path/cobbler-boot.cfg $img_path/vmkboot.gz $append_line --- $img_path/vmkernel.gz --- $img_path/sys.vgz --- $img_path/cim.vgz --- $img_path/ienviron.vgz --- $img_path/install.vgz

 07070100000152000081A40000000000000000000000015ECE24440000006B000000000000000000000000000000000000004100000000cobbler-3.1.2/templates/boot_loader_conf/pxesystem_ia64.template  image=$kernel_path
	label=netinstall
	append="$append_line"
	initrd=$initrd_path
	read-only
	root=/dev/ram
 07070100000153000081A40000000000000000000000015ECE2444000000BD000000000000000000000000000000000000004000000000cobbler-3.1.2/templates/boot_loader_conf/pxesystem_ppc.template   default linux
prompt 0
timeout 1
label linux
        kernel $kernel_path
        initrd $initrd_path
        # Current broken on petitboot
        # ipappend 2
        append $append_line

   07070100000154000081A40000000000000000000000015ECE2444000000F0000000000000000000000000000000000000003D00000000cobbler-3.1.2/templates/boot_loader_conf/yaboot_ppc.template  # yaboot.conf generated by cobbler
init-message="Cobbler generated yaboot configuration.\nHit <TAB> for boot options"
timeout=80
delay=100
default=linux

image=$kernel_path
    label=linux
    initrd=$initrd_path
    append="$append_line"

07070100000155000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000001C00000000cobbler-3.1.2/templates/etc   07070100000156000081A40000000000000000000000015ECE2444000013EE000000000000000000000000000000000000002A00000000cobbler-3.1.2/templates/etc/dhcp.template # ******************************************************************
# Cobbler managed dhcpd.conf file
#
# generated from cobbler dhcp.conf template ($date)
# Do NOT make changes to /etc/dhcpd.conf. Instead, make your changes
# in /etc/cobbler/dhcp.template, as /etc/dhcpd.conf will be
# overwritten.
#
# ******************************************************************

#import netaddr

ddns-update-style interim;

allow booting;
allow bootp;

ignore client-updates;
set vendorclass = option vendor-class-identifier;

option system-arch code 93 = unsigned integer 16;

subnet 192.168.1.0 netmask 255.255.255.0 {
     option routers             192.168.1.5;
     option domain-name-servers 192.168.1.1;
     option subnet-mask         255.255.255.0;
     range dynamic-bootp        192.168.1.100 192.168.1.254;
     default-lease-time         21600;
     max-lease-time             43200;
     next-server                $next_server;
     class "pxeclients" {
          match if substring (option vendor-class-identifier, 0, 9) = "PXEClient";

          # Legacy
          if option system-arch = 00:00 {
              filename "grub/grub.0";
          }
          # UEFI-32-1
          if option system-arch = 00:06 {
               # Not supported, no 32 bit UEFI grub executable
              filename "unsupported";
          }
          # UEFI-32-2
          if option system-arch = 00:02 {
              # Not supported, no 32 bit UEFI grub executable
              filename "unsupported";
          }
          # UEFI-64-1
          else if option system-arch = 00:07 {
              filename "grub/grubx64.efi";
          }
          # UEFI-64-2
          else if option system-arch = 00:08 {
              filename "grub/grubx64.efi";
          }
          # UEFI-64-3
          else if option system-arch = 00:09 {
              filename "grub/grubx64.efi";
          }
          # armv7   (aka arm 32 bit)
          else if option system-arch = 00:0a {
              filename "grub/armv7.efi";
          }
          # aarch64 (aka arm 64 bit)
          else if option system-arch = 00:0b {
              filename "grub/grubaa64.efi";
          }
          # RiskV 32 bit
          else if option system-arch = 00:25 {
              #ToDo petitboot loader
              filename "unsupported";
          }
          #RiskV 32 bit
          else if option system-arch = 00:27 {
              #ToDo petitboot loader
              filename "unsupported";
          }
          else if option system-arch = 00:0e {
              filename "grub/grub.ppc64le";
          }
          else
          {
              filename "grub/grub.0";
          }
     }
}

#for dhcp_tag in $dhcp_tags.keys():
    ## group could be subnet if your dhcp tags line up with your subnets
    ## or really any valid dhcpd.conf construct ... if you only use the
    ## default dhcp tag in cobbler, the group block can be deleted for a
    ## flat configuration
    # group for Cobbler DHCP tag: $dhcp_tag
    group {
        #for mac in $dhcp_tags[$dhcp_tag].keys():
            #set iface = $dhcp_tags[$dhcp_tag][$mac]
            #set mac_dhcp_format = netaddr.EUI($mac,dialect=netaddr.mac_unix)
            host $iface.name {
                #if $iface.interface_type == "infiniband":
                    option dhcp-client-identifier = $mac;
                #else
                    hardware ethernet $mac_dhcp_format;
                #end if
            #if $iface.ip_address:
                fixed-address $iface.ip_address;
            #end if
            #if $iface.dns_name:
               option host-name "$iface.dns_name";
            #else if $iface.hostname:
                option host-name "$iface.hostname";
            #end if
            #if $iface.netmask:
                option subnet-mask $iface.netmask;
            #end if
            #if $iface.if_gateway:
                option routers $iface.if_gateway;
            #else if $iface.gateway:
                option routers $iface.gateway;
            #end if
            #if "filename" in $iface.keys() and $iface.filename:
                #if $iface.enable_gpxe:
                    if exists user-class and option user-class = "gPXE" {
                        filename "http://$cobbler_server/cblr/svc/op/gpxe/system/$iface.owner";
                    } else if exists user-class and option user-class = "iPXE" {
                        filename "http://$cobbler_server/cblr/svc/op/gpxe/system/$iface.owner";
                    } else {
                        filename "undionly.kpxe";
                    }
                #else
                    filename "$iface.filename";
                #end if
            #end if
            #if $iface.next_server:
                next-server $iface.next_server;
            #end if
            #if $iface.filename:
                filename $filename
            #end if
            #if $iface.name_servers:
                #set $mynameservers = ','.join($iface.name_servers)
                option domain-name-servers $mynameservers;
            #end if
        }
    #end for
}
#end for

  07070100000157000081A40000000000000000000000015ECE244400000168000000000000000000000000000000000000002D00000000cobbler-3.1.2/templates/etc/dnsmasq.template  # Cobbler generated configuration file for dnsmasq
# $date 
#

# resolve.conf .. ?
#no-poll
#enable-dbus
read-ethers
addn-hosts = /var/lib/cobbler/cobbler_hosts

dhcp-range=192.168.1.5,192.168.1.200
dhcp-option=66,$next_server
dhcp-lease-max=1000
dhcp-authoritative
dhcp-boot=pxelinux.0
dhcp-boot=net:normalarch,pxelinux.0

$insert_cobbler_system_definitions

07070100000158000081A40000000000000000000000015ECE2444000002C0000000000000000000000000000000000000002D00000000cobbler-3.1.2/templates/etc/genders.template  # ******************************************************************
# Cobbler managed genders file.
#
# generated from cobbler genders template ($date)
# Do NOT make changes to /etc/genders. Instead, make your changes
# in /etc/cobbler/genders.template, as /etc/genders will be
# overwritten.
#
# Then run: cobbler sync
# to apply your changes.
#
# ******************************************************************

#for profile in $profiles_genders.keys():
$profiles_genders[$profile]     profile=$profile
#end for

#for distro in $distros_genders.keys():
$distros_genders[$distro]       distro=$distro
#end for


#for mgmtcls in $mgmtcls_genders.keys():
$mgmtcls_genders[$mgmtcls]  $mgmtcls
#end for
07070100000159000081A40000000000000000000000015ECE2444000002A8000000000000000000000000000000000000002B00000000cobbler-3.1.2/templates/etc/named.template    options {
          listen-on port 53 { 127.0.0.1; };
          directory       "/var/named";
          dump-file       "/var/named/data/cache_dump.db";
          statistics-file "/var/named/data/named_stats.txt";
          memstatistics-file "/var/named/data/named_mem_stats.txt";
          allow-query     { localhost; };
          recursion yes;
};

logging {
        channel default_debug {
                file "data/named.run";
                severity dynamic;
        };
};

#for $zone in $forward_zones
zone "${zone}." {
    type master;
    file "$zone";
};

#end for
#for $zone, $arpa in $reverse_zones
zone "${arpa}." {
    type master;
    file "$zone";
};

#end for
0707010000015A000081A40000000000000000000000015ECE244400000209000000000000000000000000000000000000002D00000000cobbler-3.1.2/templates/etc/ndjbdns.template  # Template for an N-DJBDNS data file.
# See http://cr.yp.to/djbdns/tinydns-data.html for a description of the data
# format.

# Quick reference (see link above for full reference):
# .fqdn:ip:x:ttl:timestaml:lo      Combined NS, A and SOA record
# %fqdn:ip:x:ttl:timestamp:lo      Combined NS and A record
# =fqdn:ip:ttl:timestamp:lo        Combined A and PTR record
# +fqdn:ip:ttl:timestamp:lo        A record
# @fqdn:ip:x:dist:ttl:timestamp:lo Combined MX and A record

#for $host, $ip in $forward:
=%host:$ip
#end for
   0707010000015B000081A40000000000000000000000015ECE244400000431000000000000000000000000000000000000002B00000000cobbler-3.1.2/templates/etc/rsync.template    # ******************************************************************
# Cobbler managed rsyncd.conf file
#
# Do NOT make changes to /etc/rsyncd.conf directly.
# Instead, make your changes to /etc/cobbler/rsync.template.
#
# ******************************************************************

[cobbler-distros]
    path    = $webdir/distro_mirror
    comment = All Cobbler Distros

[cobbler-repos]
    path    = $webdir/repo_mirror
    comment = All Cobbler Distros

[cobbler-templates]
    path    = /var/lib/cobbler/templates
    comment = Cobbler Templates

[cobbler-snippets]
    path    = /var/lib/cobbler/snippets
    comment = Cobbler Snippets

[cobbler-triggers]
    path    = /var/lib/cobbler/triggers
    comment = Cobbler Triggers

[cobbler-scripts]
    path    = /var/lib/cobbler/scripts
    comment = Cobbler Scripts

#for repo in $repos:
[repo-$repo]
    path    = $webdir/repo_mirror/$repo
    comment = Cobbler Repo $repo
#end for

#for distro in $distros:
[distro-$distro.name]
    path    = $distro.path
    comment = Cobbler Distro $distro.name

#end for

   0707010000015C000081A40000000000000000000000015ECE2444000002FC000000000000000000000000000000000000002F00000000cobbler-3.1.2/templates/etc/secondary.template    options {
          listen-on port 53 { 127.0.0.1; };
          directory       "/var/named";
          dump-file       "/var/named/data/cache_dump.db";
          statistics-file "/var/named/data/named_stats.txt";
          memstatistics-file "/var/named/data/named_mem_stats.txt";
          allow-query     { localhost; };
          recursion yes;
};

logging {
        channel default_debug {
                file "data/named.run";
                severity dynamic;
        };
};

#for $zone in $forward_zones
zone "${zone}." {
    type slave;
    masters {
        $bind_master;
    };
    file "$zone";
};

#end for
#for $zone, $arpa in $reverse_zones
zone "${arpa}." {
    type slave;
    masters {
        $bind_master;
    };
    file "$zone";
};

#end for
0707010000015D000081A40000000000000000000000015ECE24440000020A000000000000000000000000000000000000002A00000000cobbler-3.1.2/templates/etc/zone.template \$TTL 300
@                       IN      SOA     $cobbler_server. nobody.example.com. (
                                        $serial   ; Serial
                                        600         ; Refresh
                                        1800         ; Retry
                                        604800       ; Expire
                                        300          ; TTL
                                        )

                        IN      NS      $cobbler_server.


$cname_record

$host_record
  0707010000015E000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000001C00000000cobbler-3.1.2/templates/iso   0707010000015F000081A40000000000000000000000015ECE2444000000C2000000000000000000000000000000000000002E00000000cobbler-3.1.2/templates/iso/buildiso.template DEFAULT menu
PROMPT 0
MENU TITLE Cobbler | https://cobbler.github.io
TIMEOUT 200
TOTALTIMEOUT 6000
ONTIMEOUT local

LABEL local
	MENU LABEL (local)
	MENU DEFAULT
	KERNEL chain.c32
	APPEND hd0 0
  07070100000160000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000002200000000cobbler-3.1.2/templates/reporting 07070100000161000081A40000000000000000000000015ECE2444000006C8000000000000000000000000000000000000003E00000000cobbler-3.1.2/templates/reporting/build_report_email.template From: $from_addr
To: $to_addr
#if $getVar("interfaces","") != ""
Subject: $subject (system: $name, ip: $boot_ip)
#else
Subject: $subject (profile: $name, ip: $boot_ip)
#end if

Cobbler build report.
===========================================================
https://cobbler.github.io/

#if $getVar("interfaces","") != "":
 System Name: $name
     Profile: $profile
      Distro: $distro
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
#if $getVar("comment","") != ""
Details:
$comment
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
#end if
#for $intf in $interfaces.keys():
    #set $mac = $interfaces[$intf].get("mac_address","")
    #set $ip  = $interfaces[$intf].get("ip_address","")
    #set $static = $interfaces[$intf].get("static","")

   Interface: $intf
         MAC: $mac
          IP: $ip
      Static: $static
#end for
#else
     Profile: $name
      Distro: $distro
#end if

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
#if $kickstart.startswith("/") or $kickstart == "":
#if $getVar("interfaces","") != ""
kickstart=http://$server/cblr/svc/op/ks/system/$name
#else
kickstart=http://$server/cblr/svc/op/ks/profile/$name
#end if
#else
Kickstart used:
    $kickstart
#end if
Kernel Options Used:
    $getVar("kernel_options","")
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
#set $myParmList=['initrd' ,'kernel' ,'kernel_options' ,'kernel_options_post' ,'kickstart' ,'ks_meta' ,'mgmt_parameters']
#for $myParm in $myParmList
#set $_param='Unknown'
#if $varExists($myParm)
#set $_param=$getVar($myParm)
#end if
Paramter: $myParm:
    $_param
 - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
#end for
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

07070100000162000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000002700000000cobbler-3.1.2/templates/zone_templates    07070100000163000081A40000000000000000000000015ECE244400000000000000000000000000000000000000000000003700000000cobbler-3.1.2/templates/zone_templates/foo.example.com    07070100000164000041ED0000000000000000000000055ECE244400000000000000000000000000000000000000000000001400000000cobbler-3.1.2/tests   07070100000165000081A40000000000000000000000015ECE2444000003C8000000000000000000000000000000000000001E00000000cobbler-3.1.2/tests/README.md # Tests

## Running in a dedicated environment

Before running tests, ensure you have installed `requirements-tests.txt`.

To run tests:

  - Ensure you have pytest installed.
  - Ensure you have a running cobbler instance which is setup correctly.
  - From the directory tests/ execute `pytest` if you want to run all tests.

Note that these tests require modifications to a running Cobbler server. They
will attempt to clean up any test objects created, but it may be best to not
execute these against a production Cobbler server.

## Running in Docker

Run: `docker build -t cobbler . && docker run -v /sys/fs/cgroup:/sys/fs/cgroup:ro --name cobbler --privileged cobbler`

After executing the command you should grab a mug and wait for the result. Building the image is quite time consuming.

## Helping

The tests are currently in a very poor state and we only fixed the most critical integration tests to ensure that
cobbler is running and the api is not broken.
07070100000166000081A40000000000000000000000015ECE244400000000000000000000000000000000000000000000002000000000cobbler-3.1.2/tests/__init__.py   07070100000167000081ED0000000000000000000000015ECE244400000768000000000000000000000000000000000000002E00000000cobbler-3.1.2/tests/build-and-install-debs.sh #!/bin/bash
# Utility script to build DEBs in a Docker container and then install them

set -euo pipefail

if [ "$1" == "--with-tests" ]
then
    RUN_TESTS=true
    shift
else
    RUN_TESTS=false
fi

TAG=$1
DOCKERFILE=$2

IMAGE=cobbler:$TAG

# Build container
echo "==> Build container ..."
docker build -t "$IMAGE" -f "$DOCKERFILE" .

# Build DEBs
echo "==> Build packages ..."
mkdir -p deb-build tmp
docker run -ti -v "$PWD/deb-build:/usr/src/cobbler/deb-build" -v "$PWD/tmp:/var/tmp" "$IMAGE"

# Launch container and install cobbler
echo "==> Start privileged container with systemd ..."
docker run -d --privileged -v /sys/fs/cgroup:/sys/fs/cgroup:ro --name cobbler -v "$PWD/deb-build:/usr/src/cobbler/deb-build" "$IMAGE" /lib/systemd/systemd --system

echo "==> Install fresh packages ..."
docker exec -it cobbler bash -c 'dpkg -i deb-build/DEBS/all/cobbler*.deb'

echo "==> Restart Apache and Cobbler daemon ..."
docker exec -it cobbler bash -c 'a2enconf cobbler cobbler_web && systemctl daemon-reload && systemctl restart apache2 cobblerd'

echo "==> Wait 3 sec. and show Cobbler version ..."
docker exec -it cobbler bash -c 'sleep 3 && cobbler --version'

if $RUN_TESTS
then
    # Almost all of these requirement are already satisfied in the Dockerfiles!
    # Also on Debian mod_wsgi is installed as "libapache2-mod-wsgi-py3"
    echo "==> Running tests ..."
    docker exec -it cobbler bash -c 'pip3 install coverage distro future setuptools sphinx requests future'
    docker exec -it cobbler bash -c 'pip3 install pyyaml simplejson netaddr Cheetah3 Django pymongo distro ldap3'
    docker exec -it cobbler bash -c 'pip3 install dnspython tornado pyflakes pycodestyle pytest pytest-cov codecov'
    docker exec -it cobbler bash -c 'pytest-3'
fi

# Clean up
echo "==> Stop Cobbler container ..."
docker stop cobbler
echo "==> Delete Cobbler container ..."
docker rm cobbler
rm -rf ./tmp
07070100000168000081ED0000000000000000000000015ECE244400000844000000000000000000000000000000000000002E00000000cobbler-3.1.2/tests/build-and-install-rpms.sh #!/bin/bash
# Utility script to build RPMs in a Docker container and then install them

set -eo pipefail

if [ "$1" == "--with-tests" ]
then
    RUN_TESTS=true
    shift
else
    RUN_TESTS=false
fi

TAG=$1
DOCKERFILE=$2

IMAGE=cobbler:$TAG

# Build container
echo "==> Build container ..."
docker build -t "$IMAGE" -f "$DOCKERFILE" .

# Build RPMs
echo "==> Build RPMs ..."
mkdir -p rpm-build
docker run -ti -v "$PWD/rpm-build:/usr/src/cobbler/rpm-build" "$IMAGE"

# Launch container and install cobbler
echo "==> Start privileged container with systemd ..."
docker run -d --privileged -v /sys/fs/cgroup:/sys/fs/cgroup:ro --name cobbler -v "$PWD/rpm-build:/usr/src/cobbler/rpm-build" "$IMAGE" /usr/lib/systemd/systemd --system
echo "==> Docker logs ..."
docker logs cobbler
echo "==> Install fresh RPMs ..."
docker exec -it cobbler bash -c 'rpm -Uvh rpm-build/cobbler-*.noarch.rpm'
# === HACK === HACK === HACK
# To get around this Apache error:
# AH02240: Server should be SSL-aware but has no certificate configured [Hint: SSLCertificateFile] (/etc/httpd/conf.d/cobbler_web.conf:13)
# make cobbler_web listen on HTTP instead of HTTPS.
echo "==> Use HTTP instead of HTTPS ..."
docker exec -it cobbler bash -c 'sed -i s/443/80/g /etc/httpd/conf.d/cobbler_web.conf'
echo "==> Restart Apache and Cobbler daemon ..."
docker exec -it cobbler bash -c 'systemctl daemon-reload && systemctl restart httpd cobblerd'
# END === HACK ===
echo "==> Wait 3 sec. and show Cobbler version ..."
docker exec -it cobbler bash -c 'sleep 3 && cobbler version'

if $RUN_TESTS
then
    echo "==> Running tests ..."
    docker exec -it cobbler bash -c 'pip3 install coverage distro future setuptools sphinx mod_wsgi requests future'
    docker exec -it cobbler bash -c 'pip3 install pyyaml simplejson netaddr Cheetah3 Django pymongo distro ldap3'
    docker exec -it cobbler bash -c 'pip3 install dnspython tornado pyflakes pycodestyle pytest pytest-cov codecov'
    docker exec -it cobbler bash -c 'pytest'
fi

# Clean up
echo "==> Stop Cobbler container ..."
docker stop cobbler
echo "==> Delete Cobbler container ..."
docker rm cobbler
07070100000169000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000001800000000cobbler-3.1.2/tests/cli   0707010000016A000081A40000000000000000000000015ECE244400000000000000000000000000000000000000000000002400000000cobbler-3.1.2/tests/cli/__init__.py   0707010000016B000081A40000000000000000000000015ECE244400001A54000000000000000000000000000000000000003300000000cobbler-3.1.2/tests/cli/cobbler_cli_direct_test.py    import os
import re

import pytest

dummy_file_path = "/root/dummy"


@pytest.fixture(scope="function")
def get_last_line():
    def _get_last_line(lines):
        i = len(lines) - 1
        while lines[i] == '' and i > 0:
            i -= 1
        return lines[i]
    return _get_last_line


@pytest.fixture(scope="function")
def assert_list_section():
    def _assert_list_section(lines, start_line, section_name):
        i = start_line
        assert lines[i] == "%s:" % section_name
        i += 1
        while lines[i] != "":
            i += 1
        i += 1
        return i
    return _assert_list_section


@pytest.fixture(scope="function")
def assert_report_section():
    def _assert_report_section(lines, start_line, section_name):
        i = start_line
        assert lines[i] == "%s:" % section_name
        i += 1
        match_obj = re.match(r"=+$", lines[i].strip())
        assert match_obj is not None
        i += 1
        while i < len(lines) - 1 and re.match(r"=+$", lines[i + 1]) is None:
            while i < len(lines) and lines[i] != "":
                i += 1
            while i < len(lines) and lines[i] == "":
                i += 1
        return i
    return _assert_report_section


class TestCobblerCliTestDirect:
    """
    Tests Cobbler CLI direct commands
    """

    def test_cobbler_version(self, run_cmd):
        """Runs 'cobbler version'"""
        (outputstd, outputerr) = run_cmd(cmd=["version"])
        line = outputstd.split("\n")[0]
        match_obj = re.match(r"Cobbler \d+\.\d+\.\d+", line)
        assert match_obj is not None

    def test_cobbler_status(self, run_cmd):
        """Runs 'cobbler status'"""
        (outputstd, outputerr) = run_cmd(cmd=["status"])
        lines = outputstd.split("\n")
        match_obj = re.match(r"ip\s+|target\s+|start\s+|state\s+", lines[0])
        assert match_obj is not None

    def test_cobbler_sync(self, run_cmd, get_last_line):
        """Runs 'cobbler sync'"""
        (outputstd, outputerr) = run_cmd(cmd=["sync"])
        lines = outputstd.split("\n")
        assert "*** TASK COMPLETE ***" == get_last_line(lines)

    def test_cobbler_signature_report(self, run_cmd, get_last_line):
        """Runs 'cobbler signature report'"""
        (outputstd, outputerr) = run_cmd(cmd=["signature", "report"])
        lines = outputstd.split("\n")
        assert "Currently loaded signatures:" == lines[0]
        expected_output = r"\d+ breeds with \d+ total signatures loaded"
        match_obj = re.match(expected_output, get_last_line(lines))
        assert match_obj is not None

    def test_cobbler_signature_update(self, run_cmd, get_last_line):
        """Runs 'cobbler signature update'"""
        (outputstd, outputerr) = run_cmd(cmd=["signature", "update"])
        lines = outputstd.split("\n")
        assert "*** TASK COMPLETE ***" == get_last_line(lines)

    def test_cobbler_acl_adduser(self, run_cmd):
        """Runs 'cobbler aclsetup --adduser'"""
        (outputstd, outputerr) = run_cmd(cmd=["aclsetup", "--adduser=cobbler"])
        # TODO: verify user acl exists on directories

    def test_cobbler_acl_addgroup(self, run_cmd):
        """Runs 'cobbler aclsetup --addgroup'"""
        (outputstd, outputerr) = run_cmd(cmd=["aclsetup", "--addgroup=cobbler"])
        # TODO: verify group acl exists on directories

    def test_cobbler_acl_removeuser(self, run_cmd):
        """Runs 'cobbler aclsetup --removeuser'"""
        (outputstd, outputerr) = run_cmd(cmd=["aclsetup", "--removeuser=cobbler"])
        # TODO: verify user acl no longer exists on directories

    def test_cobbler_acl_removegroup(self, run_cmd):
        """Runs 'cobbler aclsetup --removegroup'"""
        (outputstd, outputerr) = run_cmd(cmd=["aclsetup", "--removegroup=cobbler"])
        # TODO: verify group acl no longer exists on directories

    def test_cobbler_reposync(self, run_cmd):
        """Runs 'cobbler reposync'"""
        (outputstd, outputerr) = run_cmd(cmd=["reposync"])
        (outputstd, outputerr) = run_cmd(cmd=["reposync", "--tries=3"])
        (outputstd, outputerr) = run_cmd(cmd=["reposync", "--no-fail"])

    @pytest.mark.skip("Currently the setup of this test is too complicated")
    def test_cobbler_buildiso(self, run_cmd, get_last_line):
        """Runs 'cobbler buildiso'"""

        (outputstd, outputerr) = run_cmd(cmd=["buildiso"])
        lines = outputstd.split("\n")
        assert "*** TASK COMPLETE ***" == get_last_line(lines)
        assert os.path.isfile("/root/generated.iso")

    def test_11_cobbler_list(self, run_cmd, assert_list_section):
        (outputstd, outputerr) = run_cmd(cmd=["list"])
        lines = outputstd.split("\n")
        i = 0
        i = assert_list_section(lines, i, "distros")
        i = assert_list_section(lines, i, "profiles")
        i = assert_list_section(lines, i, "systems")
        i = assert_list_section(lines, i, "repos")
        i = assert_list_section(lines, i, "images")
        i = assert_list_section(lines, i, "mgmtclasses")
        i = assert_list_section(lines, i, "packages")
        i = assert_list_section(lines, i, "files")

    def test_cobbler_report(self, run_cmd, assert_report_section):
        (outputstd, outputerr) = run_cmd(cmd=["report"])
        lines = outputstd.split("\n")
        i = 0
        i = assert_report_section(lines, i, "distros")
        i = assert_report_section(lines, i, "profiles")
        i = assert_report_section(lines, i, "systems")
        i = assert_report_section(lines, i, "repos")
        i = assert_report_section(lines, i, "images")
        i = assert_report_section(lines, i, "mgmtclasses")
        i = assert_report_section(lines, i, "packages")
        i = assert_report_section(lines, i, "files")

    def test_cobbler_getloaders(self, run_cmd, get_last_line):
        (outputstd, outputerr) = run_cmd(cmd=["get-loaders"])
        lines = outputstd.split("\n")
        assert "*** TASK COMPLETE ***" == get_last_line(lines)

    def test_cobbler_hardlink(self, run_cmd, get_last_line):
        (outputstd, outputerr) = run_cmd(cmd=["hardlink"])
        lines = outputstd.split("\n")
        assert "*** TASK COMPLETE ***" == get_last_line(lines)

    @pytest.mark.skip("Currently the setup of this test is too complicated")
    def test_cobbler_replicate(self, run_cmd, get_last_line):
        (outputstd, outputerr) = run_cmd(cmd=["replicate"])
        lines = outputstd.split("\n")
        assert "*** TASK COMPLETE ***" == get_last_line(lines)

    def test_cobbler_validate_autoinstalls(self, run_cmd, get_last_line):
        (outputstd, outputerr) = run_cmd(cmd=["validate-autoinstalls"])
        lines = outputstd.split("\n")
        assert "*** TASK COMPLETE ***" == get_last_line(lines)
0707010000016C000081A40000000000000000000000015ECE2444000044FC000000000000000000000000000000000000003300000000cobbler-3.1.2/tests/cli/cobbler_cli_object_test.py    import os

import pytest

dummy_file_path = "/root/dummy"


@pytest.fixture(scope="class")
def setup():
    """
    Initializes testcase
    """
    # create files if necessary
    if not os.path.exists(dummy_file_path):
        open(dummy_file_path, 'w').close()


@pytest.fixture(scope="class")
def teardown():
    """
    Cleans up testcase
    """
    yield
    # remove files
    if os.path.exists(dummy_file_path):
        os.remove(dummy_file_path)


@pytest.fixture(scope="function")
def generate_run_cmd_array():
    def _generate_run_cmd_array(dict_to_convert):
        result_array = []
        for key in dict_to_convert:
            result_array.append("--%s=%s" % (key, dict_to_convert[key]))
        return result_array

    return _generate_run_cmd_array


@pytest.fixture(scope="function")
def add_object_via_cli(run_cmd, generate_run_cmd_array):
    def _add_object_via_cli(object_type, attributes):
        cmd_list = [object_type, "add"]
        options = generate_run_cmd_array(attributes)
        cmd_list.extend(options)
        run_cmd(cmd=cmd_list)

    return _add_object_via_cli


@pytest.fixture(scope="function")
def remove_object_via_cli(run_cmd):
    def _remove_object_via_cli(object_type, name):
        run_cmd(cmd=[object_type, "remove", "--name=%s" % name])

    return _remove_object_via_cli


@pytest.mark.usefixtures("setup", "teardown")
class TestCobblerCliTestObject:
    """
    Test CLI commands on objects
    """

    def test_report(self, run_cmd):
        # Arrange
        expected = """distros:
==========

profiles:
==========

systems:
==========

repos:
==========

images:
==========

mgmtclasses:
==========

packages:
==========

files:
==========
"""

        # Act
        (outputstd, outputerr) = run_cmd(cmd=["report"])

        # Assert
        assert outputstd == expected

    @pytest.mark.parametrize("object_type", ["distro", "profile", "system", "image", "repo", "package", "mgmtclass",
                                             "file"])
    def test_report_with_type(self, run_cmd, object_type):
        # Arrange

        # Act
        (outputstd, outputerr) = run_cmd(cmd=[object_type, "report"])

        # Assert
        assert outputstd is None or not outputstd

    @pytest.mark.parametrize("object_type", ["distro", "profile", "system", "image", "repo", "package", "mgmtclass",
                                             "file"])
    def test_report_with_type_and_name(self, run_cmd, object_type):
        # Arrange
        name = "notexisting"

        # Act
        (outputstd, outputerr) = run_cmd(cmd=[object_type, "report", "--name=%s" % name])

        # Assert
        assert outputstd == "No %s found: %s\n" % (object_type, name)

    @pytest.mark.parametrize("object_type,attributes,to_change,attr_long_name", [
        ("distro",
         {"name": "testdistroedit", "kernel": "/var/log/cobbler/cobbler.log",
          "initrd": "/var/log/cobbler/cobbler.log", "breed": "suse", "arch": "x86_64"},
         ["comment", "Testcomment"], "Comment"),
        ("profile", {"name": "testprofileedit", "distro": "test_distro_edit_profile"},
         ["comment", "Testcomment"], "Comment"),
        ("system", {"name": "testsystenedit", "profile": "test_profile_edit_system"}, ["comment", "Testcomment"],
         "Comment"),
        ("image", {"name": "testimageedit"}, ["comment", "Testcomment"], "Comment"),
        ("repo", {"name": "testrepoedit", "mirror": "http://localhost"}, ["comment", "Testcomment"], "Comment"),
        ("package", {"name": "testpackageedit"}, ["comment", "Testcomment"], "Comment"),
        ("mgmtclass", {"name": "testmgmtclassedit"}, ["comment", "Testcomment"], "Comment"),
        ("file", {"name": "testfileedit", "path": "/tmp", "owner": "root", "group": "root", "mode": "600",
                  "is-dir": "True"}, ["path", "/test_dir"], "Path"),
    ])
    def test_edit(self, run_cmd, add_object_via_cli, remove_object_via_cli, object_type, attributes, to_change,
                  attr_long_name):
        # Arrange
        name_distro_profile = "test_distro_edit_profile"
        name_distro_system = "test_distro_edit_system"
        name_profile_system = "test_profile_edit_system"
        if object_type == "profile":
            add_object_via_cli("distro", {"name": name_distro_profile, "kernel": "/var/log/cobbler/cobbler.log",
                                          "initrd": "/var/log/cobbler/cobbler.log", "breed": "suse", "arch": "x86_64"})
        elif object_type == "system":
            add_object_via_cli("distro", {"name": name_distro_system, "kernel": "/var/log/cobbler/cobbler.log",
                                          "initrd": "/var/log/cobbler/cobbler.log", "breed": "suse", "arch": "x86_64"})
            add_object_via_cli("profile", {"name": name_profile_system, "distro": name_distro_system})
        add_object_via_cli(object_type, attributes)

        # Act
        run_cmd(cmd=[object_type, "edit", "--name=%s" % attributes["name"], "--%s='%s'" % (to_change[0], to_change[1])])
        (outputstd, outputerr) = run_cmd(cmd=[object_type, "report", "--name=%s" % attributes["name"]])

        # Cleanup
        remove_object_via_cli(object_type, attributes["name"])
        if object_type == "profile":
            remove_object_via_cli("distro", name_distro_profile)
        elif object_type == "system":
            remove_object_via_cli("profile", name_profile_system)
            remove_object_via_cli("distro", name_distro_system)

        # Assert
        expected = attr_long_name + ":'" + to_change[1] + "'"
        print("Expected: \"" + expected + "\"")
        lines = outputstd.split("\n")
        found = False
        for line in lines:
            line = line.replace(" ", "")
            print("Line: \"" + line + "\"")
            if line == expected:
                found = True
        assert found

    @pytest.mark.parametrize("object_type,attributes", [
        ("distro", {"name": "testdistrofind", "kernel": "/var/log/cobbler/cobbler.log",
                    "initrd": "/var/log/cobbler/cobbler.log", "breed": "suse", "arch": "x86_64"}),
        ("profile", {"name": "testprofilefind", "distro": ""}),
        ("system", {"name": "testsystemfind", "profile": ""}),
        ("image", {"name": "testimagefind"}),
        ("repo", {"name": "testrepofind", "mirror": "http://localhost"}),
        ("package", {"name": "testpackagefind"}),
        ("mgmtclass", {"name": "testmgmtclassfind"}),
        ("file", {"name": "testfilefind", "path": "/tmp", "owner": "root", "group": "root", "mode": "600",
                  "is-dir": "True"})
    ])
    def test_find(self, run_cmd, add_object_via_cli, remove_object_via_cli, object_type, attributes):
        # Arrange
        name_distro_profile = "testdistro_find_profile"
        name_distro_system = "testdistro_find_system"
        name_profile_system = "testprofile_find_system"
        if object_type == "profile":
            add_object_via_cli("distro", {"name": name_distro_profile, "kernel": "/var/log/cobbler/cobbler.log",
                                          "initrd": "/var/log/cobbler/cobbler.log", "breed": "suse", "arch": "x86_64"})
        elif object_type == "system":
            add_object_via_cli("distro", {"name": name_distro_system, "kernel": "/var/log/cobbler/cobbler.log",
                                          "initrd": "/var/log/cobbler/cobbler.log", "breed": "suse", "arch": "x86_64"})
            add_object_via_cli("profile", {"name": name_profile_system, "distro": name_distro_system})
        add_object_via_cli(object_type, attributes)

        # Act
        (outputstd, outputerr) = run_cmd(cmd=[object_type, "find", "--name='%s'" % attributes["name"]])

        # Cleanup
        remove_object_via_cli(object_type, attributes["name"])
        if object_type == "profile":
            remove_object_via_cli("distro", name_distro_profile)
        elif object_type == "system":
            remove_object_via_cli("profile", name_profile_system)
            remove_object_via_cli("distro", name_distro_system)

        # Assert
        lines = outputstd.split("\n")
        assert len(lines) >= 1

    @pytest.mark.parametrize("object_type,attributes", [
        ("distro", {"name": "testdistrocopy", "kernel": "/var/log/cobbler/cobbler.log",
                    "initrd": "/var/log/cobbler/cobbler.log", "breed": "suse", "arch": "x86_64"}),
        ("profile", {"name": "testprofilecopy", "distro": "testdistro_copy_profile"}),
        ("system", {"name": "testsystemcopy", "profile": "testprofile_copy_system"}),
        ("image", {"name": "testimagecopy"}),
        ("repo", {"name": "testrepocopy", "mirror": "http://localhost"}),
        ("package", {"name": "testpackagecopy"}),
        ("mgmtclass", {"name": "testmgmtclasscopy"}),
        ("file", {"name": "testfilecopy", "path": "/tmp", "owner": "root", "group": "root", "mode": "600",
                  "is-dir": "True"})
    ])
    def test_copy(self, run_cmd, add_object_via_cli, remove_object_via_cli, object_type, attributes):
        # Arrange
        name_distro_profile = "testdistro_copy_profile"
        name_distro_system = "testdistro_copy_system"
        name_profile_system = "testprofile_copy_system"
        if object_type == "profile":
            add_object_via_cli("distro", {"name": name_distro_profile, "kernel": "/var/log/cobbler/cobbler.log",
                                          "initrd": "/var/log/cobbler/cobbler.log", "breed": "suse", "arch": "x86_64"})
        elif object_type == "system":
            add_object_via_cli("distro", {"name": name_distro_system, "kernel": "/var/log/cobbler/cobbler.log",
                                          "initrd": "/var/log/cobbler/cobbler.log", "breed": "suse", "arch": "x86_64"})
            add_object_via_cli("profile", {"name": name_profile_system, "distro": name_distro_system})
        add_object_via_cli(object_type, attributes)
        new_object_name = "%s-copy" % attributes["name"]

        # Act
        (outputstd, outputerr) = run_cmd(cmd=[object_type, "copy", "--name=%s" % attributes["name"], "--newname=%s"
                                              % new_object_name])

        # Cleanup
        remove_object_via_cli(object_type, attributes["name"])
        remove_object_via_cli(object_type, new_object_name)
        if object_type == "profile":
            remove_object_via_cli("distro", name_distro_profile)
        elif object_type == "system":
            remove_object_via_cli("profile", name_profile_system)
            remove_object_via_cli("distro", name_distro_system)

        # Assert
        assert not outputstd

    @pytest.mark.parametrize("object_type,attributes", [
        ("distro", {"name": "testdistrorename", "kernel": "/var/log/cobbler/cobbler.log",
                    "initrd": "/var/log/cobbler/cobbler.log", "breed": "suse", "arch": "x86_64"}),
        ("profile", {"name": "testprofilerename", "distro": "testdistro_rename_profile"}),
        ("system", {"name": "testsystemrename", "profile": "testprofile_rename_system"}),
        ("image", {"name": "testimagerename"}),
        ("repo", {"name": "testreporename", "mirror": "http://localhost"}),
        ("package", {"name": "testpackagerename"}),
        ("mgmtclass", {"name": "testmgmtclassrename"}),
        ("file", {"name": "testfilerename", "path": "/tmp", "owner": "root", "group": "root", "mode": "600",
                  "is-dir": "True"})
    ])
    def test_rename(self, run_cmd, add_object_via_cli, remove_object_via_cli, object_type, attributes):
        # Arrange
        name_distro_profile = "testdistro_rename_profile"
        name_distro_system = "testdistro_rename_system"
        name_profile_system = "testprofile_rename_system"
        if object_type == "profile":
            add_object_via_cli("distro", {"name": name_distro_profile, "kernel": "/var/log/cobbler/cobbler.log",
                                          "initrd": "/var/log/cobbler/cobbler.log", "breed": "suse", "arch": "x86_64"})
        elif object_type == "system":
            add_object_via_cli("distro", {"name": name_distro_system, "kernel": "/var/log/cobbler/cobbler.log",
                                          "initrd": "/var/log/cobbler/cobbler.log", "breed": "suse", "arch": "x86_64"})
            add_object_via_cli("profile", {"name": name_profile_system, "distro": name_distro_system})
        add_object_via_cli(object_type, attributes)
        new_object_name = "%s-renamed" % attributes["name"]

        # Act
        (outputstd, outputerr) = run_cmd(
            cmd=[object_type, "rename", "--name=%s" % attributes["name"], "--newname=%s" % new_object_name])

        # Cleanup
        remove_object_via_cli(object_type, new_object_name)
        if object_type == "profile":
            remove_object_via_cli("distro", name_distro_profile)
        elif object_type == "system":
            remove_object_via_cli("profile", name_profile_system)
            remove_object_via_cli("distro", name_distro_system)

        # Assert
        assert not outputstd

    @pytest.mark.parametrize("object_type,attributes", [
        ("distro", {"name": "testdistroadd", "kernel": "/var/log/cobbler/cobbler.log",
                    "initrd": "/var/log/cobbler/cobbler.log", "breed": "suse", "arch": "x86_64"}),
        ("profile", {"name": "testprofileadd", "distro": "testdistroadd_profile"}),
        ("system", {"name": "testsystemadd", "profile": "testprofileadd_system"}),
        ("image", {"name": "testimageadd"}),
        ("repo", {"name": "testrepoadd", "mirror": "http://localhost"}),
        ("package", {"name": "testpackageadd"}),
        ("mgmtclass", {"name": "testmgmtclassadd"}),
        ("file", {"name": "testfileadd", "path": "/tmp", "owner": "root", "group": "root", "mode": "600",
                  "is-dir": "True"})
    ])
    def test_add(self, run_cmd, remove_object_via_cli, generate_run_cmd_array, object_type, attributes,
                 add_object_via_cli):
        # Arrange
        name_distro_profile = "testdistroadd_profile"
        name_distro_system = "testdistroadd_system"
        name_profile_system = "testprofileadd_system"
        if object_type == "profile":
            add_object_via_cli("distro", {"name": name_distro_profile, "kernel": "/var/log/cobbler/cobbler.log",
                                          "initrd": "/var/log/cobbler/cobbler.log", "breed": "suse", "arch": "x86_64"})
        elif object_type == "system":
            add_object_via_cli("distro", {"name": name_distro_system, "kernel": "/var/log/cobbler/cobbler.log",
                                          "initrd": "/var/log/cobbler/cobbler.log", "breed": "suse", "arch": "x86_64"})
            add_object_via_cli("profile", {"name": name_profile_system, "distro": name_distro_system})

        cmd_list = [object_type, "add"]
        options = generate_run_cmd_array(attributes)
        cmd_list.extend(options)

        # Act
        (outputstd, outputerr) = run_cmd(cmd=cmd_list)

        # Cleanup
        remove_object_via_cli(object_type, attributes["name"])
        if object_type == "profile":
            remove_object_via_cli("distro", name_distro_profile)
        elif object_type == "system":
            remove_object_via_cli("profile", name_profile_system)
            remove_object_via_cli("distro", name_distro_system)

        # Assert
        assert not outputstd

    @pytest.mark.parametrize("object_type,attributes", [
        ("distro", {"name": "testdistroremove", "kernel": "/var/log/cobbler/cobbler.log",
                    "initrd": "/var/log/cobbler/cobbler.log", "breed": "suse", "arch": "x86_64"}),
        ("profile", {"name": "testprofileremove", "distro": "testdistroremove_profile"}),
        ("system", {"name": "testsystemremove", "profile": "testprofileremove_system"}),
        ("image", {"name": "testimageremove"}),
        ("repo", {"name": "testreporemove", "mirror": "http://localhost"}),
        ("package", {"name": "testpackageremove"}),
        ("mgmtclass", {"name": "testmgmtclassremove"}),
        ("file", {"name": "testfileremove", "path": "/tmp", "owner": "root", "group": "root", "mode": "600",
                  "is-dir": "True"})
    ])
    def test_remove(self, run_cmd, add_object_via_cli, remove_object_via_cli, object_type, attributes):
        # Arrange
        name_distro_profile = "testdistroremove_profile"
        name_distro_system = "testdistroremove_system"
        name_profile_system = "testprofileremove_system"
        if object_type == "profile":
            add_object_via_cli("distro", {"name": name_distro_profile, "kernel": "/var/log/cobbler/cobbler.log",
                                          "initrd": "/var/log/cobbler/cobbler.log", "breed": "suse", "arch": "x86_64"})
        elif object_type == "system":
            add_object_via_cli("distro", {"name": name_distro_system, "kernel": "/var/log/cobbler/cobbler.log",
                                          "initrd": "/var/log/cobbler/cobbler.log", "breed": "suse", "arch": "x86_64"})
            add_object_via_cli("profile", {"name": name_profile_system, "distro": name_distro_system})
        add_object_via_cli(object_type, attributes)

        # Act
        (outputstd, outputerr) = run_cmd(cmd=[object_type, "remove", "--name=%s" % attributes["name"]])

        # Cleanup
        if object_type == "profile":
            remove_object_via_cli("distro", name_distro_profile)
        elif object_type == "system":
            remove_object_via_cli("profile", name_profile_system)
            remove_object_via_cli("distro", name_distro_system)

        # Assert
        assert not outputstd
0707010000016D000081A40000000000000000000000015ECE2444000004BF000000000000000000000000000000000000002400000000cobbler-3.1.2/tests/cli/conftest.py   import pytest
from cobbler.cli import CobblerCLI


@pytest.fixture(scope="function")
def run_cmd(capsys):
    """
    Execute the cli command via the cli object.

    :param capsys: This is a pytest fixture to caputure the stdout and stderr
    :return: The output of the command
    :raises Exception: If something has gone wrong.
    """
    def _run_cmd(cmd):
        cmd.insert(0, "cli.py")
        cli = CobblerCLI(cmd)
        cli.check_setup()
        cli.run(cmd)
        return capsys.readouterr()
    return _run_cmd


@pytest.fixture(scope="function")
def list_objects(run_cmd):
    """
    Get objects of a type

    :return: Inner function which returns a list of objects.
    """
    def _list_objects(object_type):
        """
        This is the actual function which is then executed by the outer one.

        :param object_type: object type
        :type object_type: str
        :return: list objects
        """
        objects = []
        (outputstd, outputerr) = run_cmd(cmd=[object_type, "list"])
        lines = outputstd.split("\n")
        for line in lines:
            if line.strip() != "":
                objects.append(line.strip())
        return objects
    return _list_objects
 0707010000016E000081A40000000000000000000000015ECE24440000084F000000000000000000000000000000000000002000000000cobbler-3.1.2/tests/conftest.py   import os
import shutil

import pytest


def pytest_addoption(parser):
    parser.addoption("-E", action="store", metavar="NAME", help="only run tests matching the environment NAME.")


def pytest_configure(config):
    # register an additional marker
    config.addinivalue_line("markers", "env(name): mark test to run only on named environment")


@pytest.fixture("session")
def file_basedir():
    """
    This is the base-directory for fake files which are needed for the test. The advantage of the location under
    ``/dev/shm`` is that it get's wiped per default after a reboot of the system.

    :return: ``/dev/shm/cobbler_test``
    """
    return "/dev/shm/cobbler_test"


@pytest.fixture("session", autouse=True)
def create_file_basedir(file_basedir):
    """
    This creates the directory needed for the cobbler tests.

    :param file_basedir: See the corresponding fixture.
    """
    if not os.path.exists(file_basedir):
        os.makedirs(file_basedir)


@pytest.fixture("session", autouse=True)
def delete_file_basedir(file_basedir):
    if os.path.exists(file_basedir):
        shutil.rmtree(file_basedir)


@pytest.fixture()
def create_testfile(file_basedir):
    def _create_testfile(filename):
        path = os.path.join(file_basedir, filename)
        if not os.path.exists(path):
            f = open(path, "w+")
            f.close()
    return _create_testfile


@pytest.fixture()
def delete_testfile(file_basedir):
    def _delete_testfile(filename):
        path = os.path.join(file_basedir, filename)
        if os.path.exists(path):
            os.remove(path)
    return _delete_testfile


@pytest.fixture()
def create_kernel_initrd(create_file_basedir, file_basedir, create_testfile):
    def _create_kernel_initrd(name_kernel, name_initrd):
        create_testfile(name_kernel)
        create_testfile(name_initrd)
    return _create_kernel_initrd


@pytest.fixture()
def delete_kernel_initrd(file_basedir, delete_testfile):
    def _delete_kernel_initrd(name_kernel, name_initrd):
        delete_testfile(name_kernel)
        delete_testfile(name_initrd)
    return _delete_kernel_initrd
 0707010000016F000081ED0000000000000000000000015ECE244400000584000000000000000000000000000000000000002400000000cobbler-3.1.2/tests/install-debs.sh   #!/bin/bash
# Utility script to run Docker container without building the DEBs,
# just install them. So make sure they are in deb-build dir!

if [ "$1" == "--with-tests" ]
then
    RUN_TESTS=true
    shift
else
    RUN_TESTS=false
fi

TAG=$1
IMAGE=cobbler:$TAG

# Launch container and install cobbler
docker run -d --privileged -v /sys/fs/cgroup:/sys/fs/cgroup:ro --name cobbler -v "$PWD/deb-build:/usr/src/cobbler/deb-build" "$IMAGE" /lib/systemd/systemd --system

docker exec -it cobbler bash -c 'dpkg -i deb-build/DEBS/all/cobbler*.deb'
docker exec -it cobbler bash -c 'a2enmod proxy proxy_http wsgi && a2enconf cobbler cobbler_web'
docker exec -it cobbler bash -c 'systemctl daemon-reload && systemctl restart apache2 cobblerd'
docker exec -it cobbler bash -c 'sleep 3 && cobbler --version'

if $RUN_TESTS
then
    # Most of these requirement are already satisfied in the Dockerfiles!
    # Also on Debian mod_wsgi is installed as "libapache2-mod-wsgi-py3"
    docker exec -it cobbler bash -c 'pip3 install coverage distro future setuptools sphinx requests future'
    docker exec -it cobbler bash -c 'pip3 install pyyaml simplejson netaddr Cheetah3 Django pymongo distro ldap3'
    docker exec -it cobbler bash -c 'pip3 install dnspython tornado pyflakes pycodestyle pytest pytest-cov codecov'
    docker exec -it cobbler bash -c 'pytest-3'
fi

# Entering the running container
docker exec -ti cobbler bash
07070100000170000081ED0000000000000000000000015ECE24440000074A000000000000000000000000000000000000002400000000cobbler-3.1.2/tests/install-rpms.sh   #!/bin/bash
# Utility script to run Docker container without building the RPMs,
# just install them. So make sure they are in rpm-build dir!

if [ "$1" == "--with-tests" ]
then
    RUN_TESTS=true
    shift
else
    RUN_TESTS=false
fi

TAG=$1
IMAGE=cobbler:$TAG

# Launch container and install cobbler
echo "==> Start privileged container with systemd ..."
docker run -d --privileged -v /sys/fs/cgroup:/sys/fs/cgroup:ro --name cobbler -v "$PWD/rpm-build:/usr/src/cobbler/rpm-build" "$IMAGE" /usr/lib/systemd/systemd --system
echo "==> Install fresh RPMs ..."
docker exec -it cobbler bash -c 'rpm -Uvh rpm-build/cobbler-*.noarch.rpm'
# === HACK === HACK === HACK
# To get around this Apache error:
# AH02240: Server should be SSL-aware but has no certificate configured [Hint: SSLCertificateFile] (/etc/httpd/conf.d/cobbler_web.conf:13)
# make cobbler_web listen on HTTP instead of HTTPS.
echo "==> Use HTTP instead of HTTPS ..."
docker exec -it cobbler bash -c 'sed -i s/443/80/g /etc/httpd/conf.d/cobbler_web.conf'
echo "==> Restart Apache and Cobbler daemon ..."
docker exec -it cobbler bash -c 'systemctl daemon-reload && systemctl restart httpd cobblerd'
# END === HACK ===
echo "==> Wait 3 sec. and show Cobbler version ..."
docker exec -it cobbler bash -c 'sleep 3 && cobbler version'

if $RUN_TESTS
then
    echo "==> Running tests ..."
    docker exec -it cobbler bash -c 'pip3 install coverage distro future setuptools sphinx mod_wsgi requests future'
    docker exec -it cobbler bash -c 'pip3 install pyyaml simplejson netaddr Cheetah3 Django pymongo distro ldap3'
    docker exec -it cobbler bash -c 'pip3 install dnspython tornado pyflakes pycodestyle pytest pytest-cov codecov'
    docker exec -it cobbler bash -c 'pytest'
fi

# Clean up
echo "==> Stop Cobbler container ..."
docker stop cobbler
echo "==> Delete Cobbler container ..."
docker rm cobbler
  07070100000171000041ED0000000000000000000000035ECE244400000000000000000000000000000000000000000000001C00000000cobbler-3.1.2/tests/modules   07070100000172000081A40000000000000000000000015ECE244400000000000000000000000000000000000000000000002800000000cobbler-3.1.2/tests/modules/__init__.py   07070100000173000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000002B00000000cobbler-3.1.2/tests/modules/authentication    07070100000174000081A40000000000000000000000015ECE244400000000000000000000000000000000000000000000003700000000cobbler-3.1.2/tests/modules/authentication/__init__.py    07070100000175000081A40000000000000000000000015ECE24440000091D000000000000000000000000000000000000003E00000000cobbler-3.1.2/tests/modules/authentication/configfile_test.py import pytest

from cobbler.modules.authentication import configfile


@pytest.fixture(scope="function")
def adjust_hashfunction():
    def _adjust_hashfunction(hashfunction):
        modulesconf = "/etc/cobbler/modules.conf"
        with open(modulesconf, 'r') as file:
            data = file.readlines()

        print(data[26])
        data[26] = "hash_algorithm = %s\n" % hashfunction
        print(data[26])

        with open(modulesconf, 'w') as file:
            file.writelines(data)
    return _adjust_hashfunction


class TestConfigfile:

    @pytest.mark.parametrize("hashfunction,test_input,exepcted_output", [
        ("sha3_512", "testtext", "eb17eb7a79798b31b3e625f2ff7a5cd05932254ca5f686764e9655274dde03c28ed4a7ab70b0637b5dc97e61da2ee07cc80e0c4f7d00feceb2d74cbe3a579698")
    ])
    def test_hashfun_positive(self, adjust_hashfunction, hashfunction, test_input, exepcted_output):
        # Arrange
        adjust_hashfunction(hashfunction)

        # Act
        result = configfile.hashfun(test_input)

        # Assert
        assert result == exepcted_output

    @pytest.mark.parametrize("hashfunction,test_input,exepcted_output", [
        ("md5", "testtext", "")
    ])
    def test_hashfun_negative(self, adjust_hashfunction, hashfunction, test_input, exepcted_output):
        # Arrange
        adjust_hashfunction(hashfunction)

        # Act & Assert
        with pytest.raises(ValueError):
            configfile.hashfun(test_input)

    def test_register(self):
        assert configfile.register() is "authn"

    @pytest.mark.parametrize("hashfunction, username, password", [
        ("sha3_512", "cobbler", "cobbler")
    ])
    def test_authenticate_positive(self, adjust_hashfunction, hashfunction, username, password):
        # Arrange
        adjust_hashfunction(hashfunction)

        # Act
        result = configfile.authenticate(None, username, password)

        # Assert
        assert result

    @pytest.mark.parametrize("hashfunction, username, password", [
        ("md5", "cobbler", "cobbler")
    ])
    def test_authenticate_negative(self, adjust_hashfunction, hashfunction, username, password):
        # Arrange
        adjust_hashfunction(hashfunction)

        # Act & Assert
        with pytest.raises(ValueError):
            configfile.authenticate(None, username, password)
   07070100000176000081ED0000000000000000000000015ECE244400000618000000000000000000000000000000000000002900000000cobbler-3.1.2/tests/setup-test-docker.sh  #!/bin/bash

# SystemD stuff (needs insserv additionally)
zypper -n install systemd insserv; zypper clean
cd /usr/lib/systemd/system/sysinit.target.wants/
for i in *; do
    [[ ${i} == systemd-tmpfiles-setup.service ]] || rm -f ${i};
done
rm -f /usr/lib/systemd/system/multi-user.target.wants/*
rm -f /etc/systemd/system/*.wants/*
rm -f /usr/lib/systemd/system/local-fs.target.wants/*
rm -f /usr/lib/systemd/system/sockets.target.wants/*udev*
rm -f /usr/lib/systemd/system/sockets.target.wants/*initctl*
rm -f /usr/lib/systemd/system/basic.target.wants/*
rm -f /usr/lib/systemd/system/anaconda.target.wants/*

cd /test_dir

# Packages for running cobbler
zypper -n update
zypper -n in python3 python3-devel python3-pip python3-setuptools python3-wheel python3-distro python3-future python3-coverage apache2 apache2-devel acl apache2-mod_wsgi-python3 ipmitool rsync fence-agents genders xorriso python3-ldap tftp python3-Sphinx hardlink
pip3 install pykickstart
# Packages for building & installing cobbler from source
zypper -n in make gzip sed git hg

# Set tftpboot location correctly for SUSE distributions
sed -e "s|/var/lib/tftpboot|/srv/tftpboot|g" -i cobbler/settings.py config/cobbler/settings

# Install and upgrade all dependecys
pip3 install --upgrade pip
pip3 install .[lint,test]

# Install cobbler
make install
cp /etc/cobbler/cobblerd.service /usr/lib/systemd/system/cobblerd.service
cp /etc/cobbler/cobbler.conf /etc/apache2/conf.d/

# Enable the services
systemctl enable cobblerd apache2 tftp
a2enmod version
a2enmod proxy
a2enmod proxy_http
07070100000177000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000001E00000000cobbler-3.1.2/tests/xmlrpcapi 07070100000178000081A40000000000000000000000015ECE244400000000000000000000000000000000000000000000002A00000000cobbler-3.1.2/tests/xmlrpcapi/__init__.py 07070100000179000081A40000000000000000000000015ECE244400000674000000000000000000000000000000000000003100000000cobbler-3.1.2/tests/xmlrpcapi/background_test.py  import pytest


@pytest.mark.usefixtures("cobbler_xmlrpc_base")
class TestBackground:
    """
    Class to test various background jobs
    """

    def test_background_acletup(self, remote, token):
        # Arrange

        # Act
        result = remote.background_aclsetup({}, token)

        # Assert
        assert result

    def test_background_buildiso(self, remote, token):
        # Arrange

        # Act
        result = remote.background_buildiso({}, token)

        # Assert
        assert result

    def test_background_dlccontent(self, remote, token):
        # Arrange

        # Act
        result = remote.background_dlcontent({}, token)

        # Assert
        assert result

    def test_background_hardlink(self, remote, token):
        # Arrange

        # Act
        result = remote.background_hardlink({}, token)

        # Assert
        assert result

    def test_background_import(self, remote, token):
        # Arrange

        # Act
        result = remote.background_import({}, token)

        # Assert
        assert result

    def test_background_replicate(self, remote, token):
        # Arrange

        # Act
        result = remote.background_replicate({}, token)

        # Assert
        assert result

    def test_background_reposync(self, remote, token):
        # Arrange

        # Act
        result = remote.background_reposync({}, token)

        # Assert
        assert result

    def test_background_validate_autoinstall_files(self, remote, token):
        # Arrange

        # Act
        result = remote.background_validate_autoinstall_files({}, token)

        # Assert
        assert result
0707010000017A000081A40000000000000000000000015ECE244400001699000000000000000000000000000000000000002A00000000cobbler-3.1.2/tests/xmlrpcapi/conftest.py import logging
import sys
import xmlrpc.client as xmlrpcclient

import pytest

from cobbler.utils import local_get_cobbler_api_url, get_shared_secret

# "import xmlrpc.client" does currently not work. No explanation found anywhere.


@pytest.fixture(scope="session")
def remote(cobbler_xmlrpc_base):
    """

    :param cobbler_xmlrpc_base:
    :return:
    """
    return cobbler_xmlrpc_base[0]


@pytest.fixture(scope="session")
def token(cobbler_xmlrpc_base):
    """

    :param cobbler_xmlrpc_base:
    :return:
    """
    return cobbler_xmlrpc_base[1]


@pytest.fixture(scope="session")
def cobbler_xmlrpc_base():
    """
    Initialises the api object and makes it available to the test.
    """
    # create logger
    logging.basicConfig(stream=sys.stderr)
    logger = logging.getLogger("xobbler_xmlrpc_base")
    logger.setLevel(logging.DEBUG)

    # create XML-RPC client and connect to server
    api_url = local_get_cobbler_api_url()
    remote = xmlrpcclient.Server(api_url, allow_none=True)
    shared_secret = get_shared_secret()
    token = remote.login("", shared_secret)
    if not token:
        sys.exit(1)
    yield remote, token


@pytest.fixture(scope="class")
def testsnippet():
    return "# This is a small simple testsnippet!"


@pytest.fixture()
def snippet_add(remote, token):
    def _snippet_add(name, data):
        remote.write_autoinstall_snippet(name, data, token)
    return _snippet_add


@pytest.fixture()
def snippet_remove(remote, token):
    def _snippet_remove(name):
        remote.remove_autoinstall_snippet(name, token)
    return _snippet_remove


@pytest.fixture()
def create_distro(remote, token):
    def _create_distro(name, arch, breed, path_kernel, path_initrd):
        distro = remote.new_distro(token)
        remote.modify_distro(distro, "name", name, token)
        remote.modify_distro(distro, "arch", arch, token)
        remote.modify_distro(distro, "breed", breed, token)
        remote.modify_distro(distro, "kernel", path_kernel, token)
        remote.modify_distro(distro, "initrd", path_initrd, token)
        remote.save_distro(distro, token)
        return distro
    return _create_distro


@pytest.fixture()
def remove_distro(remote, token):
    def _remove_distro(name):
        remote.remove_distro(name, token)
    return _remove_distro


@pytest.fixture()
def create_profile(remote, token):
    def _create_profile(name, distro, kernel_options):
        profile = remote.new_profile(token)
        remote.modify_profile(profile, "name", name, token)
        remote.modify_profile(profile, "distro", distro, token)
        remote.modify_profile(profile, "kernel_options", kernel_options, token)
        remote.save_profile(profile, token)
        return profile
    return _create_profile


@pytest.fixture()
def remove_profile(remote, token):
    def _remove_profile(name):
        remote.remove_profile(name, token)
    return _remove_profile


@pytest.fixture()
def create_system(remote, token):
    def _create_system(name, profile):
        system = remote.new_system(token)
        remote.modify_system(system, "name", name, token)
        remote.modify_system(system, "profile", profile, token)
        remote.save_system(system, token)
        return system
    return _create_system


@pytest.fixture()
def remove_system(remote, token):
    def _remove_system(name):
        remote.remove_system(name, token)
    return _remove_system


@pytest.fixture()
def create_file(remote, token):
    def _create_file(name, is_directory, action, group, mode, owner, path, template):
        file_id = remote.new_file(token)

        remote.modify_file(file_id, "name", name, token)
        remote.modify_file(file_id, "is_directory", is_directory, token)
        remote.modify_file(file_id, "action", action, token)
        remote.modify_file(file_id, "group", group, token)
        remote.modify_file(file_id, "mode", mode, token)
        remote.modify_file(file_id, "owner", owner, token)
        remote.modify_file(file_id, "path", path, token)
        remote.modify_file(file_id, "template", template, token)

        remote.save_file(file_id, token)
        return file_id
    return _create_file


@pytest.fixture()
def remove_file(remote, token):
    def _remove_file(name):
        remote.remove_file(name, token)
    return _remove_file


@pytest.fixture()
def create_mgmt_class(remote, token):
    def _create_mgmt_class(name):
        mgmtclass = remote.new_mgmtclass(token)
        remote.modify_mgmtclass(mgmtclass, "name", name, token)
        remote.save_mgmtclass(mgmtclass, token)
        return mgmtclass
    return _create_mgmt_class


@pytest.fixture()
def remove_mgmt_class(remote, token):
    def _remove_mgmt_class(name):
        remote.remove_mgmtclass(name, token)
    return _remove_mgmt_class


@pytest.fixture()
def create_autoinstall_template(remote, token):
    def _create_autoinstall_template(filename, content):
        remote.write_autoinstall_template(filename, content, token)
    return _create_autoinstall_template


@pytest.fixture()
def remove_autoinstall_template(remote, token):
    def _remove_autoinstall_template(name):
        remote.remove_autoinstall_template(name, token)
    return _remove_autoinstall_template


@pytest.fixture
def create_repo(remote, token):
    def _create_repo(name, mirror, mirror_locally):
        repo = remote.new_repo(token)
        remote.modify_repo(repo, "name", name, token)
        remote.modify_repo(repo, "mirror", mirror, token)
        remote.modify_repo(repo, "mirror_locally", mirror_locally, token)
        remote.save_repo(repo, token)
        return repo
    return _create_repo


@pytest.fixture
def remove_repo(remote, token):
    def _remove_repo(name):
        remote.remove_repo(name, token)
    return _remove_repo
   0707010000017B000081A40000000000000000000000015ECE244400009207000000000000000000000000000000000000003C00000000cobbler-3.1.2/tests/xmlrpcapi/distro_profile_system_test.py   import os

import pytest

FAKE_INITRD = "initrd1.img"
FAKE_INITRD2 = "initrd2.img"
FAKE_INITRD3 = "initrd3.img"
FAKE_KERNEL = "vmlinuz1"
FAKE_KERNEL2 = "vmlinuz2"
FAKE_KERNEL3 = "vmlinuz3"


@pytest.fixture(scope="class")
def distro_fields(fk_initrd, fk_kernel):
    """
    Field format: field_name, good value(s), bad value(s)
    Field order is the order in which they will be set

    :param fk_initrd:
    :param fk_kernel:
    :return:
    """
    # TODO: include fields with dependencies: fetchable files, boot files, etc.
    return [
        ["arch", ["i386", "x86_64", "ppc", "ppc64"], ["badarch"]],
        # generic must be last breed to be set so os_version test below will work
        ["breed", ["debian", "freebsd", "redhat", "suse", "ubuntu", "unix", "vmware", "windows", "xen", "generic"],
         ["badbreed"]],
        ["comment", ["test comment", ], []],
        ["initrd", [fk_initrd, ], ["", ]],
        ["name", ["testdistro0"], []],
        ["kernel", [fk_kernel, ], ["", ]],
        ["kernel_options", ["a=1 b=2 c=3 c=4 c=5 d e", ], []],
        ["kernel_options_post", ["a=1 b=2 c=3 c=4 c=5 d e", ], []],
        ["autoinstall_meta", ["a=1 b=2 c=3 c=4 c=5 d e", ], []],
        ["mgmt_classes", ["one two three", ], []],
        ["os_version", ["generic26", ], ["bados", ]],
        ["owners", ["user1 user2 user3", ], []],
    ]


@pytest.fixture(scope="class")
def profile_fields(redhat_autoinstall, suse_autoyast, ubuntu_preseed):
    """
    Field format: field_name, good value(s), bad value(s)

    :param redhat_autoinstall:
    :param suse_autoyast:
    :param ubuntu_preseed:
    :return:
    """
    # TODO: include fields with dependencies: fetchable files, boot files, template files, repos
    return [
        ["comment", ["test comment"], []],
        ["dhcp_tag", ["", "foo"], []],
        ["distro", ["testdistro0"], ["baddistro", ]],
        ["enable_gpxe", ["yes", "YES", "1", "0", "no"], []],
        ["enable_menu", ["yes", "YES", "1", "0", "no"], []],
        ["kernel_options", ["a=1 b=2 c=3 c=4 c=5 d e"], []],
        ["kernel_options_post", ["a=1 b=2 c=3 c=4 c=5 d e"], []],
        ["autoinstall", [redhat_autoinstall, suse_autoyast, ubuntu_preseed],
         ["/path/to/bad/autoinstall", ]],
        ["autoinstall_meta", ["a=1 b=2 c=3 c=4 c=5 d e", ], []],
        ["mgmt_classes", ["one two three", ], []],
        ["mgmt_parameters", ["<<inherit>>"], ["badyaml"]],  # needs more test cases that are valid yaml
        ["name", ["testprofile0"], []],
        ["name_servers", ["1.1.1.1 1.1.1.2 1.1.1.3"], []],
        ["name_servers_search", ["example.com foo.bar.com"], []],
        ["owners", ["user1 user2 user3"], []],
        ["proxy", ["testproxy"], []],
        ["server", ["1.1.1.1"], []],
        ["virt_auto_boot", ["1", "0"], ["yes", "no"]],
        ["virt_bridge", ["<<inherit>>", "br0", "virbr0", "xenbr0"], []],
        ["virt_cpus", ["<<inherit>>", "1", "2"], ["a"]],
        ["virt_disk_driver", ["<<inherit>>", "raw", "qcow2", "vmdk"], []],
        ["virt_file_size", ["<<inherit>>", "5", "10"], ["a"]],
        ["virt_path", ["<<inherit>>", "/path/to/test", ], []],
        ["virt_ram", ["<<inherit>>", "256", "1024"], ["a", ]],
        ["virt_type", ["<<inherit>>", "xenpv", "xenfv", "qemu", "kvm", "vmware", "openvz"], ["bad", ]],
    ]


@pytest.fixture(scope="class")
def system_fields(redhat_autoinstall, suse_autoyast, ubuntu_preseed):
    """
    Field format: field_name, good value(s), bad value(s)

    :param redhat_autoinstall:
    :param suse_autoyast:
    :param ubuntu_preseed:
    :return:
    """
    # TODO: include fields with dependencies: fetchable files, boot files, template files, images
    return [
        ["comment", ["test comment"], []],
        ["enable_gpxe", ["yes", "YES", "1", "0", "no"], []],
        ["kernel_options", ["a=1 b=2 c=3 c=4 c=5 d e"], []],
        ["kernel_options_post", ["a=1 b=2 c=3 c=4 c=5 d e"], []],
        ["autoinstall", [redhat_autoinstall, suse_autoyast, ubuntu_preseed],
         ["/path/to/bad/autoinstall", ]],
        ["autoinstall_meta", ["a=1 b=2 c=3 c=4 c=5 d e", ], []],
        ["mgmt_classes", ["one two three", ], []],
        ["mgmt_parameters", ["<<inherit>>"], ["badyaml"]],  # needs more test cases that are valid yaml
        ["name", ["testsystem0"], []],
        ["netboot_enabled", ["yes", "YES", "1", "0", "no"], []],
        ["owners", ["user1 user2 user3"], []],
        ["profile", ["testprofile0"], ["badprofile", ]],
        ["repos_enabled", [], []],
        ["status", ["development", "testing", "acceptance", "production"], []],
        ["proxy", ["testproxy"], []],
        ["server", ["1.1.1.1"], []],
        ["virt_auto_boot", ["1", "0"], ["yes", "no"]],
        ["virt_cpus", ["<<inherit>>", "1", "2"], ["a"]],
        ["virt_file_size", ["<<inherit>>", "5", "10"], ["a"]],
        ["virt_disk_driver", ["<<inherit>>", "raw", "qcow2", "vmdk"], []],
        ["virt_ram", ["<<inherit>>", "256", "1024"], ["a", ]],
        ["virt_type", ["<<inherit>>", "xenpv", "xenfv", "qemu", "kvm", "vmware", "openvz"], ["bad", ]],
        ["virt_path", ["<<inherit>>", "/path/to/test", ], []],
        ["virt_pxe_boot", ["1", "0"], []],

        # network
        ["gateway", [], []],
        ["hostname", ["test"], []],
        ["ipv6_autoconfiguration", [], []],
        ["ipv6_default_device", [], []],
        ["name_servers", ["9.1.1.3"], []],
        ["name_servers_search", [], []],

        # network - network interface specific
        # TODO: test these fields
        ["bonding_opts-eth0", [], []],
        ["bridge_opts-eth0", [], []],
        ["cnames-eth0", [], []],
        ["dhcp_tag-eth0", [], []],
        ["dns_name-eth0", [], []],
        ["if_gateway-eth0", [], []],
        ["interface_type-eth0", [], []],
        ["interface_master-eth0", [], []],
        ["ip_address-eth0", [], []],
        ["ipv6_address-eth0", [], []],
        ["ipv6_secondaries-eth0", [], []],
        ["ipv6_mtu-eth0", [], []],
        ["ipv6_static_routes-eth0", [], []],
        ["ipv6_default_gateway-eth0", [], []],
        ["mac_address-eth0", [], []],
        ["mtu-eth0", [], []],
        ["management-eth0", [], []],
        ["netmask-eth0", [], []],
        ["static-eth0", [], []],
        ["static_routes-eth0", [], []],
        ["virt_bridge-eth0", [], []],

        # power management
        ["power_type", ["ipmitool"], ["bla"]],
        ["power_address", ["127.0.0.1"], []],
        ["power_id", ["pmachine:lpar1"], []],
        ["power_pass", ["pass"], []],
        ["power_user", ["user"], []]
    ]


@pytest.fixture(scope="class")
def topdir():
    """
    The path to the directory of the fake test files.
    """
    return "/dev/shm/cobbler_test"


@pytest.fixture(scope="class")
def create_tempdir(topdir):
    """
    Creates the top-directory for the tests.
    :param topdir: See the corresponding fixture.
    """
    # Create temp dir
    try:
        os.makedirs(topdir)
    except OSError:
        pass


@pytest.fixture(scope="class")
def fk_initrd(topdir):
    """
    The path to the first fake initrd.
    :param topdir: See the corresponding fixture.
    :return: A path as a string.
    """
    return os.path.join(topdir, FAKE_INITRD)


@pytest.fixture(scope="class")
def fk_initrd2(topdir):
    """
    The path to the second fake initrd.
    :param topdir: See the corresponding fixture.
    :return: A path as a string.
    """
    return os.path.join(topdir, FAKE_INITRD2)


@pytest.fixture(scope="class")
def fk_initrd3(topdir):
    """
    The path to the third fake initrd.
    :param topdir: See the corresponding fixture.
    :return: A path as a string.
    """
    return os.path.join(topdir, FAKE_INITRD3)


@pytest.fixture(scope="class")
def fk_kernel(topdir):
    """
    The path to the first fake kernel.
    :param topdir: See the corresponding fixture.
    :return: A path as a string.
    """
    return os.path.join(topdir, FAKE_KERNEL)


@pytest.fixture(scope="class")
def fk_kernel2(topdir):
    """
    The path to the second fake kernel.
    :param topdir: See the corresponding fixture.
    :return: A path as a string.
    """
    return os.path.join(topdir, FAKE_KERNEL2)


@pytest.fixture(scope="class")
def fk_kernel3(topdir):
    """
    The path to the third fake kernel.
    :param topdir: See the corresponding fixture.
    :return: A path as a string.
    """
    return os.path.join(topdir, FAKE_KERNEL3)


@pytest.fixture(scope="class")
def redhat_autoinstall():
    """
    The path to the test.ks file for redhat autoinstall.
    :return: A path as a string.
    """
    return os.path.join("", "test.ks")


@pytest.fixture(scope="class")
def suse_autoyast():
    """
    The path to the suse autoyast xml-file.
    :return: A path as a string.
    """
    return os.path.join("", "test.xml")


@pytest.fixture(scope="class")
def ubuntu_preseed():
    """
    The path to the ubuntu preseed file.
    :return: A path as a string.
    """
    return os.path.join("", "test.seed")


@pytest.fixture(scope="class")
def fake_files(fk_initrd, fk_initrd2, fk_initrd3, fk_kernel, fk_kernel2, fk_kernel3, redhat_autoinstall, suse_autoyast,
               ubuntu_preseed):
    """
    This fixture has an array of all the paths to the generated fake files.
    :param fk_initrd: See the corresponding fixture.
    :param fk_initrd2: See the corresponding fixture.
    :param fk_initrd3: See the corresponding fixture.
    :param fk_kernel: See the corresponding fixture.
    :param fk_kernel2: See the corresponding fixture.
    :param fk_kernel3: See the corresponding fixture.
    :param redhat_autoinstall: See the corresponding fixture.
    :param suse_autoyast: See the corresponding fixture.
    :param ubuntu_preseed: See the corresponding fixture.
    :return: An array which contains all paths to the corresponding fake files.
    """
    return [fk_initrd, fk_initrd2, fk_initrd3, fk_kernel, fk_kernel2, fk_kernel3, redhat_autoinstall,
            suse_autoyast, ubuntu_preseed]


@pytest.fixture(scope="class")
def files_create(create_tempdir, fake_files, redhat_autoinstall, suse_autoyast, ubuntu_preseed):
    """
    This creates all the fake files which need to be present for the tests.
    :param ubuntu_preseed: See the corresponding fixture.
    :param suse_autoyast: See the corresponding fixture.
    :param redhat_autoinstall: See the corresponding fixture.
    :param create_tempdir: See the corresponding fixture.
    :param fake_files: See the corresponding fixture.
    """
    base = "/var/lib/cobbler/templates/"
    f = open(base + redhat_autoinstall, "w+")
    f.close()
    f = open(base + suse_autoyast, "w+")
    f.close()
    f = open(base + ubuntu_preseed, "w+")
    f.close()

    for fn in fake_files:
        f = open(fn, "w+")
        f.close()


@pytest.fixture(scope="class")
def remove_fakefiles(files_create, fake_files, redhat_autoinstall, suse_autoyast, ubuntu_preseed):
    """
    This represents the init and teardown of the TestDistroProfileSystem class.
    :param ubuntu_preseed: See the corresponding fixture.
    :param suse_autoyast: See the corresponding fixture.
    :param redhat_autoinstall: See the corresponding fixture.
    :param files_create: See the corresponding fixture.
    :param fake_files: See the corresponding fixture.
    """
    yield

    base = "/var/lib/cobbler/templates/"
    os.remove(base + redhat_autoinstall)
    os.remove(base + suse_autoyast)
    os.remove(base + ubuntu_preseed)
    for fn in fake_files:
        os.remove(fn)


@pytest.fixture()
def create_profile(remote, token):
    """
    Create a profile with the name "testprofile0"
    :param remote: See the corresponding fixture.
    :param token: See the corresponding fixture.
    """
    profile = remote.new_profile(token)
    remote.modify_profile(profile, "name", "testprofile0", token)
    remote.modify_profile(profile, "distro", "testdistro0", token)
    remote.modify_profile(profile, "kernel_options", "a=1 b=2 c=3 c=4 c=5 d e", token)
    remote.save_profile(profile, token)


@pytest.fixture()
def remove_testprofile(remote, token):
    """
    Removes the profile with the name "testprofile0".
    :param remote: See the corresponding fixture.
    :param token: See the corresponding fixture.
    """
    yield
    remote.remove_profile("testprofile0", token)


@pytest.fixture()
def remove_testdistro(remote, token):
    """
    Removes the distro "testdistro0" from the running cobbler after the test.
    :param remote: See the corresponding fixture.
    :param token: See the corresponding fixture.
    """
    yield
    remote.remove_distro("testdistro0", token, False)


@pytest.fixture()
def create_testdistro(remote, token, fk_kernel, fk_initrd):
    """
    Creates a distro "testdistro0" with the architecture "x86_64", breed "suse" and the fixtures which are setting the
    fake kernel and initrd.
    :param remote: See the corresponding fixture.
    :param token: See the corresponding fixture.
    :param fk_kernel: See the corresponding fixture.
    :param fk_initrd: See the corresponding fixture.
    """
    distro = remote.new_distro(token)
    remote.modify_distro(distro, "name", "testdistro0", token)
    remote.modify_distro(distro, "arch", "x86_64", token)
    remote.modify_distro(distro, "breed", "suse", token)
    remote.modify_distro(distro, "kernel", fk_kernel, token)
    remote.modify_distro(distro, "initrd", fk_initrd, token)
    remote.save_distro(distro, token)


@pytest.fixture()
def create_testsystem(remote, token):
    """
    Add a system with the name "testsystem0", the system is assigend to the profile "testprofile0".
    :param remote: See the corresponding fixture.
    :param token: See the corresponding fixture.
    """
    system = remote.new_system(token)
    remote.modify_system(system, "name", "testsystem0", token)
    remote.modify_system(system, "profile", "testprofile0", token)
    remote.save_system(system, token)


@pytest.fixture()
def remove_testsystem(remote, token):
    """
    Remove a system "testsystem0".
    :param remote: See the corresponding fixture.
    :param token: See the corresponding fixture.
    """
    yield
    remote.remove_system("testsystem0", token, False)


@pytest.fixture()
def create_testrepo(remote, token):
    """
    Create a testrepository with the name "testrepo0"
    :param remote: See the corresponding fixture.
    :param token: See the corresponding fixture.
    """
    repo = remote.new_repo(token)
    remote.modify_repo(repo, "name", "testrepo0", token)
    remote.modify_repo(repo, "arch", "x86_64", token)
    remote.modify_repo(repo, "mirror", "http://something", token)
    remote.save_repo(repo, token)
    remote.background_sync([], token)


@pytest.fixture()
def remove_testrepo(remote, token):
    """
    Remove a repo "testrepo0".
    :param remote: See the corresponding fixture.
    :param token: See the corresponding fixture.
    """
    yield
    remote.remove_repo("testrepo0", token, False)


@pytest.fixture()
def create_testimage(remote, token):
    """
    Create a testrepository with the name "testimage0"
    :param remote: See the corresponding fixture.
    :param token: See the corresponding fixture.
    """
    image = remote.new_image(token)
    remote.modify_image(image, "name", "testimage0", token)
    remote.save_image(image, token)
    remote.background_sync([], token)


@pytest.fixture()
def remove_testimage(remote, token):
    """
    Remove the image "testimage0".
    :param remote: See the corresponding fixture.
    :param token: See the corresponding fixture.
    """
    yield
    remote.remove_image("testimage0", token, False)


@pytest.fixture()
def create_testpackage(remote, token):
    """
    Create a testpackage with the name "testpackage0"
    :param remote: See the corresponding fixture.
    :param token: See the corresponding fixture.
    """
    package = remote.new_package(token)
    remote.modify_package(package, "name", "testpackage0", token)
    remote.save_package(package, token)
    remote.background_sync([], token)


@pytest.fixture()
def remove_testpackage(remote, token):
    """
    Remove a package "testpackage0".
    :param remote: See the corresponding fixture.
    :param token: See the corresponding fixture.
    """

    yield
    remote.remove_package("testpackage0", token, False)


@pytest.fixture()
def create_testfile(remote, token):
    """
    Create a testfile with the name "testfile0"
    :param remote: See the corresponding fixture.
    :param token: See the corresponding fixture.
    """

    mfile = remote.new_file(token)
    remote.modify_file(mfile, "name", "testfile0", token)
    remote.modify_file(mfile, "path", "/dev/shm/", token)
    remote.modify_file(mfile, "group", "root", token)
    remote.modify_file(mfile, "owner", "root", token)
    remote.modify_file(mfile, "mode", "0600", token)
    remote.modify_file(mfile, "is_dir", "True", token)
    remote.save_file(mfile, token)
    remote.background_sync([], token)


@pytest.fixture()
def remove_testfile(remote, token):
    """
    Remove a file "testfile0".
    :param remote: See the corresponding fixture.
    :param token: See the corresponding fixture.
    """
    yield
    remote.remove_file("testfile0", token, False)


@pytest.fixture()
def create_mgmtclass(remote, token):
    """
    Create a mgmtclass with the name "mgmtclass0"
    :param remote: See the corresponding fixture.
    :param token: See the corresponding fixture.
    """

    mgmtclass0 = remote.new_mgmtclass(token)
    remote.modify_mgmtclass(mgmtclass0, "name", "mgmtclass0", token)
    remote.save_mgmtclass(mgmtclass0, token)
    remote.background_sync([], token)


@pytest.fixture()
def remove_mgmtclass(remote, token):
    """
    Remove a mgmtclass "mgmtclass0".
    :param remote: See the corresponding fixture.
    :param token: See the corresponding fixture.
    """
    yield
    remote.remove_mgmtclass("mgmtclass0", token, False)


@pytest.mark.usefixtures("cobbler_xmlrpc_base", "remove_fakefiles")
class TestDistroProfileSystem:
    """
    Test remote calls related to distros, profiles and systems
    These item types are tested together because they have inter-dependencies
    """

    def test_get_distros(self, remote, token):
        """
        Test: get distros
        """
        # Arrange --> Nothing to arrange

        # Act
        result = remote.get_distros(token)

        # Assert
        assert result == []

    def test_get_profiles(self, remote, token):
        """
        Test: get profiles
        """
        # Arrange --> Nothing to arrange

        # Act
        result = remote.get_profiles(token)

        # Assert
        assert result == []

    def test_get_systems(self, remote, token):
        """
        Test: get systems
        """
        # Arrange --> Nothing to arrange

        # Act
        result = remote.get_systems(token)

        # Assert
        assert result == []

    @pytest.mark.usefixtures("remove_testdistro")
    def test_create_distro_positive(self, remote, token, distro_fields):
        """
        Test: create/edit a distro with valid values
        """
        # Arrange --> Nothing to do.

        # Act
        distro = remote.new_distro(token)
        remote.modify_distro(distro, "name", "testdistro", token)

        # Assert
        for field in distro_fields:
            (fname, fgood, fbad) = field
            for fg in fgood:
                try:
                    result = remote.modify_distro(distro, fname, fg, token)
                    assert result
                except Exception as e:
                    pytest.fail("good field (%s=%s) raised exception: %s" % (fname, fg, str(e)))

        result_save_success = remote.save_distro(distro, token)
        assert result_save_success

        # FIXME: if field in item_<type>.FIELDS defines possible values, test all of them. This is valid for all item
        #  types
        # for field in item_system.FIELDS:
        #    (fname,def1,def2,display,editable,tooltip,values,type) = field
        #    if fname not in ["name","distro","parent"] and editable:
        #        if values and isinstance(values,list):
        #            fvalue = random.choice(values)
        #        else:
        #             fvalue = "testing_" + fname
        #        self.assertTrue(remote.modify_profile(subprofile,fname,fvalue,token))

    @pytest.mark.usefixtures("remove_testdistro")
    def test_create_distro_negative(self, remote, token, distro_fields, fk_kernel, fk_initrd):
        """
        Test: create/edit a distro with invalid values
        """
        # Arrange --> Nothing to do.

        # Act
        distro = remote.new_distro(token)
        remote.modify_distro(distro, "name", "testdistro0", token)

        # Assert
        for field in distro_fields:
            (fname, fgood, fbad) = field
            for fb in fbad:
                try:
                    remote.modify_distro(distro, fname, fb, token)
                except:
                    pass
                else:
                    pytest.fail("bad field (%s=%s) did not raise an exception" % (fname, fb))

        remote.modify_distro(distro, "kernel", fk_kernel, token)
        remote.modify_distro(distro, "initrd", fk_initrd, token)
        result_save_success = remote.save_distro(distro, token)
        assert result_save_success

        # FIXME: if field in item_<type>.FIELDS defines possible values, test all of them. This is valid for all item
        #  types
        # for field in item_system.FIELDS:
        #    (fname,def1,def2,display,editable,tooltip,values,type) = field
        #    if fname not in ["name","distro","parent"] and editable:
        #        if values and isinstance(values,list):
        #            fvalue = random.choice(values)
        #        else:
        #             fvalue = "testing_" + fname
        #        self.assertTrue(remote.modify_profile(subprofile,fname,fvalue,token))

    @pytest.mark.usefixtures("create_testdistro", "remove_testdistro", "remove_testprofile")
    def test_create_profile_positive(self, remote, token, profile_fields):
        """
        Test: create/edit a profile object
        """
        # Arrange
        profile = remote.new_profile(token)

        # Act
        for field in profile_fields:
            (fname, fgood, _) = field
            for fg in fgood:
                try:
                    assert remote.modify_profile(profile, fname, fg, token)
                except Exception as e:
                    pytest.fail("good field (%s=%s) raised exception: %s" % (fname, fg, str(e)))

        remote.modify_profile(profile, "name", "testprofile0", token)
        assert remote.save_profile(profile, token)

        # Assert
        new_profiles = remote.get_profiles(token)
        assert len(new_profiles) == 1

    @pytest.mark.usefixtures("create_testdistro", "remove_testdistro", "remove_testprofile")
    def test_create_profile_negative(self, remote, token, profile_fields):
        """
        Test: create/edit a profile object
        """
        # Arrange
        profile = remote.new_profile(token)

        # Act
        for field in profile_fields:
            (fname, _, fbad) = field
            for fb in fbad:
                try:
                    remote.modify_profile(profile, fname, fb, token)
                except:
                    pass
                else:
                    pytest.fail("bad field (%s=%s) did not raise an exception" % (fname, fb))

        remote.modify_profile(profile, "distro", "testdistro0", token)
        remote.modify_profile(profile, "name", "testprofile0", token)
        assert remote.save_profile(profile, token)

        # Assert
        new_profiles = remote.get_profiles(token)
        assert len(new_profiles) == 1

    @pytest.mark.usefixtures("create_testdistro", "create_profile", "remove_testdistro", "remove_testprofile")
    def test_create_subprofile(self, remote, token):
        """
        Test: create/edit a subprofile object
        """

        # Arrange
        profiles = remote.get_profiles(token)

        # Act
        subprofile = remote.new_subprofile(token)

        # Assert
        assert remote.modify_profile(subprofile, "name", "testsubprofile0", token)
        assert remote.modify_profile(subprofile, "parent", "testprofile0", token)

        assert remote.save_profile(subprofile, token)

        new_profiles = remote.get_profiles(token)
        assert len(new_profiles) == len(profiles) + 1

    @pytest.mark.usefixtures("create_testdistro", "create_profile", "remove_testdistro", "remove_testprofile",
                             "remove_testsystem")
    def test_create_system_positive(self, system_fields, remote, token):
        """
        Test: create/edit a system object
        """

        # Arrange
        systems = remote.get_systems(token)

        # Act
        system = remote.new_system(token)

        # Assert
        assert remote.modify_system(system, "name", "testsystem0", token)
        assert remote.modify_system(system, "profile", "testprofile0", token)
        for field in system_fields:
            (fname, fgood, _) = field
            for fg in fgood:
                try:
                    assert remote.modify_system(system, fname, fg, token)
                except Exception as e:
                    pytest.fail("good field (%s=%s) raised exception: %s" % (fname, fg, str(e)))

        assert remote.save_system(system, token)

        new_systems = remote.get_systems(token)
        assert len(new_systems) == len(systems) + 1

    @pytest.mark.usefixtures("create_testdistro", "create_profile", "remove_testdistro", "remove_testprofile",
                             "remove_testsystem")
    def test_create_system_negative(self, system_fields, remote, token):
        """
        Test: create/edit a system object
        """

        # Arrange
        systems = remote.get_systems(token)

        # Act
        system = remote.new_system(token)

        # Assert
        assert remote.modify_system(system, "name", "testsystem0", token)
        assert remote.modify_system(system, "profile", "testprofile0", token)
        for field in system_fields:
            (fname, _, fbad) = field
            for fb in fbad:
                try:
                    remote.modify_system(system, fname, fb, token)
                except:
                    pass
                else:
                    pytest.fail("bad field (%s=%s) did not raise an exception" % (fname, fb))

        assert remote.save_system(system, token)

        new_systems = remote.get_systems(token)
        assert len(new_systems) == len(systems) + 1

    @pytest.mark.usefixtures("create_testdistro", "remove_testdistro")
    def test_get_distro(self, remote, fk_initrd, fk_kernel):
        """
        Test: get a distro object
        """

        # Arrange --> Done in fixture

        # Act
        distro = remote.get_distro("testdistro0")

        # Assert
        assert distro.get("name") == "testdistro0"
        assert distro.get("initrd") == fk_initrd
        assert distro.get("kernel") == fk_kernel

    @pytest.mark.usefixtures("create_testdistro", "create_profile", "remove_testdistro", "remove_testprofile")
    def test_get_profile(self, remote):
        """
        Test: get a profile object
        """

        # Arrange --> Done in fixture.

        # Act
        profile = remote.get_profile("testprofile0")

        # Assert
        assert profile.get("name") == "testprofile0"
        assert profile.get("distro") == "testdistro0"
        assert profile.get("kernel_options") == {'a': '1', 'b': '2', 'c': ['3', '4', '5'], 'd': '~', 'e': '~'}

    def test_get_system(self, remote):
        """
        Test: get a system object
        """

        # Arrange --> There should be no system present. --> Nothing to Init.

        # Act
        system = remote.get_system("testsystem0")

        # Assert
        assert system is "~"

    @pytest.mark.usefixtures("create_testdistro", "create_profile", "create_testsystem", "remove_testdistro",
                             "remove_testprofile", "remove_testsystem")
    def test_get_systems_koan(self, remote):
        # Arrange

        # Act
        systems = remote.get_systems()

        # Assert
        for system in systems:
            assert "ks_meta" in system
            assert "kickstart" in system
            assert system.get("kickstart") == system.get("autoinstall")
            assert system.get("ks_meta") == system.get("autoinstall_meta")

    @pytest.mark.usefixtures("create_testdistro", "create_profile", "create_testsystem", "remove_testdistro",
                             "remove_testprofile", "remove_testsystem")
    def test_get_system_for_koan(self, remote):
        # Arrange

        # Act
        system = remote.get_system_for_koan("testsystem0")

        # Assert
        assert "ks_meta" in system
        assert "kickstart" in system

    @pytest.mark.usefixtures("create_testdistro", "create_profile", "remove_testdistro", "remove_testprofile")
    def test_get_profile_for_koan(self, remote):
        # Arrange

        # Act
        profile = remote.get_profile_for_koan("testprofile0")

        # Assert
        assert "ks_meta" in profile
        assert "kickstart" in profile

    @pytest.mark.usefixtures("create_testdistro", "remove_testdistro")
    def test_get_distro_for_koan(self, remote):
        # Arrange

        # Act
        distro = remote.get_distro_for_koan("testdistro0")

        # Assert
        assert "ks_meta" in distro
        assert "kickstart" not in distro

    @pytest.mark.usefixtures("create_testrepo", "remove_testrepo")
    def test_get_repo_for_koan(self, remote):
        # Arrange

        # Act
        repo = remote.get_repo_for_koan("testrepo0")

        # Assert
        assert "ks_meta" not in repo
        assert "kickstart" not in repo

    @pytest.mark.usefixtures("create_testimage", "remove_testimage")
    def test_get_image_for_koan(self, remote):
        # Arrange

        # Act
        image = remote.get_image_for_koan("testimage0")

        # Assert
        assert "ks_meta" not in image
        assert "kickstart" in image

    @pytest.mark.usefixtures("create_mgmtclass", "remove_mgmtclass")
    def test_get_mgmtclass_for_koan(self, remote):
        # Arrange

        # Act
        mgmt_class = remote.get_mgmtclass_for_koan("mgmtclass0")

        # Assert
        assert "ks_meta" not in mgmt_class
        assert "kickstart" not in mgmt_class

    @pytest.mark.usefixtures("create_testpackage", "remove_testpackage")
    def test_get_package_for_koan(self, remote):
        # Arrange

        # Act
        package = remote.get_package_for_koan("package0")

        # Assert
        assert "ks_meta" not in package
        assert "kickstart" not in package

    @pytest.mark.usefixtures("create_testfile", "remove_testfile")
    def test_get_file_for_koan(self, remote):
        # Arrange

        # Act
        file = remote.get_file_for_koan("file0")

        # Assert
        assert "ks_meta" not in file
        assert "kickstart" not in file

    def test_find_distro(self, remote, token):
        """
        Test: find a distro object
        """

        # Arrange --> No distros means no setup

        # Act
        result = remote.find_distro({"name": "testdistro0"}, token)

        # Assert
        assert result == []

    @pytest.mark.usefixtures("create_testdistro", "create_profile", "remove_testdistro", "remove_testprofile")
    def test_find_profile(self, remote, token):
        """
        Test: find a profile object
        """

        # Arrange --> Done in fixtures

        # Act
        result = remote.find_profile({"name": "testprofile0"}, token)

        # Assert
        assert len(result) == 1
        assert result[0].get("name") == "testprofile0"

    def test_find_system(self, remote, token):
        """
        Test: find a system object
        """

        # Arrange --> Nothing to arrange

        # Act
        result = remote.find_system({"name": "notexisting"}, token)

        # Assert --> A not exiting system returns an empty list
        assert result == []

    @pytest.mark.usefixtures("create_testdistro", "remove_testdistro")
    def test_copy_distro(self, remote, token):
        """
        Test: copy a distro object
        """

        # Arrange --> Done in the fixture

        # Act
        distro = remote.get_item_handle("distro", "testdistro0", token)
        result = remote.copy_distro(distro, "testdistrocopy", token)

        # Assert
        assert result

        # Cleanup --> Plus fixture
        remote.remove_distro("testdistrocopy", token)

    @pytest.mark.usefixtures("create_testdistro", "create_profile", "remove_testdistro", "remove_testprofile")
    def test_copy_profile(self, remote, token):
        """
        Test: copy a profile object
        """

        # Arrange --> Done in fixtures

        # Act
        profile = remote.get_item_handle("profile", "testprofile0", token)
        result = remote.copy_profile(profile, "testprofilecopy", token)

        # Assert
        assert result

        # Cleanup
        remote.remove_profile("testprofilecopy", token)

    @pytest.mark.usefixtures("create_testdistro", "create_profile", "create_testsystem", "remove_testdistro",
                             "remove_testprofile", "remove_testsystem")
    def test_copy_system(self, remote, token):
        """
        Test: copy a system object
        """

        # Arrange
        system = remote.get_item_handle("system", "testsystem0", token)

        # Act
        result = remote.copy_system(system, "testsystemcopy", token)

        # Assert
        assert result

        # Cleanup
        remote.remove_system("testsytemcopy", token)

    @pytest.mark.usefixtures("create_testdistro")
    def test_rename_distro(self, remote, token):
        """
        Test: rename a distro object
        """

        # Arrange
        distro = remote.get_item_handle("distro", "testdistro0", token)

        # Act
        result = remote.rename_distro(distro, "testdistro1", token)

        # Assert
        assert result

        # Cleanup
        remote.remove_distro("testdistro1", token)

    @pytest.mark.usefixtures("create_testdistro", "create_profile", "remove_testprofile", "remove_testdistro")
    def test_rename_profile(self, remote, token):
        """
        Test: rename a profile object
        """

        # Arrange
        profile = remote.get_item_handle("profile", "testprofile0", token)

        # Act
        result = remote.rename_profile(profile, "testprofile1", token)

        # Assert
        assert result

        # Cleanup
        remote.remove_profile("testprofile1", token)

    @pytest.mark.usefixtures("create_testdistro", "create_profile", "create_testsystem", "remove_testdistro",
                             "remove_testprofile", "remove_testsystem")
    def test_rename_system(self, remote, token):
        """
        Test: rename a system object
        """

        # Arrange --> Done in fixtures also.
        system = remote.get_item_handle("system", "testsystem0", token)

        # Act
        result = remote.rename_system(system, "testsystem1", token)

        # Assert
        assert result

        # Cleanup
        remote.remove_system("testsystem1", token)

    def test_remove_distro(self, remote, token):
        """
        Test: remove a distro object
        """

        # Arrange
        # TODO: Verify why the test passes without the fixture for creating the distro!

        # Act
        result = remote.remove_distro("testdistro0", token)

        # Assert
        assert result

    def test_remove_profile(self, remote, token):
        """
        Test: remove a profile object
        """

        # Arrange
        # TODO: Verify why the test passes without the fixture for creating the profile!

        # Act
        # TODO: Why does the subprofile call return true? There shouldn't be one.
        result_subprofile_remove = remote.remove_profile("testsubprofile0", token)
        result_profile_remove = remote.remove_profile("testprofile0", token)

        # Assert
        assert result_subprofile_remove
        assert result_profile_remove

    def test_remove_system(self, remote, token):
        """
        Test: remove a system object
        """

        # Arrange
        # TODO: Verify why the test passes without the fixture for creating the system!

        # Act
        result = remote.remove_system("testsystem0", token)

        # Assert
        assert result

    def test_get_repo_config_for_profile(self, remote):
        """
        Test: get repository configuration of a profile
        """

        # Arrange --> There is nothing to be arranged

        # Act
        result = remote.get_repo_config_for_profile("testprofile0")

        # Assert --> Let the test pass if the call is okay.
        assert True

    def test_get_repo_config_for_system(self, remote):
        """
        Test: get repository configuration of a system
        """

        # Arrange --> There is nothing to be arranged

        # Act
        result = remote.get_repo_config_for_system("testprofile0")

        # Assert --> Let the test pass if the call is okay.
        assert True
 0707010000017C000081A40000000000000000000000015ECE244400000FEF000000000000000000000000000000000000002B00000000cobbler-3.1.2/tests/xmlrpcapi/file_test.py    import pytest


@pytest.mark.usefixtures("cobbler_xmlrpc_base")
class TestFile:
    """
    Test remote calls related to files
    """

    def test_create_file(self, remote, token, remove_file):
        # Arrange

        # Act
        file_id = remote.new_file(token)
        filename = "testfile_create"

        remote.modify_file(file_id, "name", filename , token)
        remote.modify_file(file_id, "is_directory", "False", token)
        remote.modify_file(file_id, "action", "create", token)
        remote.modify_file(file_id, "group", "root", token)
        remote.modify_file(file_id, "mode", "0644", token)
        remote.modify_file(file_id, "owner", "root", token)
        remote.modify_file(file_id, "path", "/root/testfile0", token)
        remote.modify_file(file_id, "template", "testtemplate0", token)

        result = remote.save_file(file_id, token)
        new_files = remote.get_files(token)

        # Cleanup
        remove_file(filename)

        # Assert
        assert result
        assert len(new_files) == 1

    def test_get_files(self, remote, token, create_file, remove_file):
        """
        Test: get files
        """
        # Arrange
        filename = "testfile_get_files"
        create_file(filename, "False", "create", "root", "0644", "root", "/root/testfile0", "testtemplate0")

        # Act
        result = remote.get_files(token)

        # Cleanup
        remove_file(filename)

        # Assert
        assert type(result) == list
        assert len(result) == 1
        assert result[0].get("name") == filename

    def test_get_file(self, remote, token, create_file, remove_file):
        """
        Test: Get a file object
        """
        # Arrange
        filename = "testfile_get_file"
        create_file(filename, "False", "create", "root", "0644", "root", "/root/testfile0", "testtemplate0")

        # Act
        file = remote.get_file("testfile0")

        # Cleanup
        remove_file(filename)

        # Assert
        assert file

    def test_find_file(self, remote, token, create_file, remove_file):
        """
        Test: find a file object
        """
        # Arrange
        filename = "testfile_find"
        create_file(filename, "False", "create", "root", "0644", "root", "/root/testfile0", "testtemplate0")

        # Act
        result = remote.find_file({"name": filename}, token)

        # Cleanup
        remove_file(filename)

        # Assert
        assert result

    def test_copy_file(self, remote, token, create_file, remove_file):
        """
        Test: copy a file object
        """
        # Arrange
        filename_base = "testfile_copy_base"
        filename_copy = "testfile_copy_copied"
        create_file(filename_base, "False", "create", "root", "0644", "root", "/root/testfile0", "testtemplate0")

        # Act
        file = remote.get_item_handle("file", filename_base, token)
        result = remote.copy_file(file, filename_copy, token)

        # Cleanup
        remove_file(filename_base)
        remove_file(filename_copy)

        # Assert
        assert result

    def test_rename_file(self, remote, token, create_file, remove_file):
        """
        Test: rename a file object
        """
        # Arrange
        filename = "testfile_renamed"
        filename_renamed = "testfile_renamed_successful"
        create_file(filename, "False", "create", "root", "0644", "root", "/root/testfile0", "testtemplate0")
        file = remote.get_item_handle("file", filename, token)

        # Act
        result = remote.rename_file(file, filename_renamed, token)

        # Cleanup
        remove_file(filename_renamed)

        # Assert
        assert result

    def test_remove_file(self, remote, token, create_file):
        """
        Test: remove a file object
        """
        # Arrange
        filename = "testfile_remove"
        create_file(filename, "False", "create", "root", "0644", "root", "/root/testfile0", "testtemplate0")

        # Act
        result = remote.remove_file(filename, token)

        # Assert
        assert result
 0707010000017D000081A40000000000000000000000015ECE2444000009D2000000000000000000000000000000000000002C00000000cobbler-3.1.2/tests/xmlrpcapi/image_test.py   import pytest

# TODO: Create fixture where image is create


@pytest.fixture(scope="function")
def remove_item(remote, token):
    """
    Remove an item with the given name.

    :param token: The fixture to have the token for authenticated strings available.
    :param remote: The fixture to have the base xmlrpc connection.
    """
    def _remove_item(itemtype, name):
        yield
        remote.remove_item(itemtype, name, token)
    return _remove_item


@pytest.mark.usefixtures("cobbler_xmlrpc_base")
class TestImage:

    def test_create_image(self, remote, token):
        """
        Test: create/edit of an image object"""

        # Arrange

        # Act
        images = remote.get_images(token)
        image = remote.new_image(token)

        # Assert
        assert remote.modify_image(image, "name", "testimage0", token)
        assert remote.save_image(image, token)
        new_images = remote.get_images(token)
        assert len(new_images) == len(images) + 1

    def test_get_images(self, remote):
        """
        Test: get images
        """

        # Arrange

        # Act
        remote.get_images()

        # Assert

    def test_get_image(self, remote):
        """
        Test: Get an image object
        """

        # Arrange

        # Act

        # Assert
        image = remote.get_image("testimage0")

    def test_find_image(self, remote, token):
        """
        Test: Find an image object
        """

        # Arrange

        # Act
        result = remote.find_image({"name": "testimage0"}, token)

        # Assert
        assert result

    def test_copy_image(self, remote, token):
        """
        Test: Copy an image object
        """

        # Arrange

        # Act
        image = remote.get_item_handle("image", "testimage0", token)

        # Assert
        assert remote.copy_image(image, "testimagecopy", token)

    def test_rename_image(self, remote, token, remove_item):
        """
        Test: Rename an image object
        """
        # Arrange
        name = "testimage1"
        image = remote.get_item_handle("image", "testimagecopy", token)

        # Act
        result = remote.rename_image(image, name, token)

        # Cleanup
        remove_item("image", name)

        # Assert
        assert result

    def test_remove_image(self, remote, token):
        """
        Test: remove an image object
        """

        # Arrange

        # Act

        # Assert
        assert remote.remove_image("testimage0", token)
  0707010000017E000081A40000000000000000000000015ECE244400000BF0000000000000000000000000000000000000003100000000cobbler-3.1.2/tests/xmlrpcapi/mgmt_class_test.py  import pytest


@pytest.mark.usefixtures("cobbler_xmlrpc_base")
class TestMgmtClass:

    def test_create_mgmtclass(self, remote, token, remove_mgmt_class):
        """
        Test: create/edit a mgmtclass object
        """
        # Arrange
        name = "test_mgmt_class_create"

        # Act
        mgmtclass = remote.new_mgmtclass(token)
        result_modify = remote.modify_mgmtclass(mgmtclass, "name", name, token)
        result_save = remote.save_mgmtclass(mgmtclass, token)
        mgmtclass_count = remote.get_mgmtclasses(token)

        # Cleanup
        remove_mgmt_class(name)

        # Assert
        assert result_modify
        assert result_save
        assert len(mgmtclass_count) == 1

    def test_get_mgmtclasses(self, remote):
        """
        Test: Get mgmtclasses objects
        """
        # Arrange

        # Act
        result = remote.get_mgmtclasses()

        # Assert
        assert result == []

    def test_get_mgmtclass(self, remote, token, create_mgmt_class, remove_mgmt_class):
        """
        Test: get a mgmtclass object
        """
        # Arrange
        name = "test_mgmt_class_get"
        create_mgmt_class(name)

        # Act
        mgmtclass = remote.get_mgmtclass(name)

        # Cleanup
        remove_mgmt_class(name)

        # Assert
        assert mgmtclass

    def test_find_mgmtclass(self, remote, token, create_mgmt_class, remove_mgmt_class):
        """
        Test: find a mgmtclass object
        """
        # Arrange
        name = "test_mgmt_class_find"
        create_mgmt_class(name)

        # Act
        result = remote.find_mgmtclass({"name": name}, token)

        # Cleanup
        remove_mgmt_class(name)

        # Assert
        assert result

    def test_copy_mgmtclass(self, remote, token, create_mgmt_class, remove_mgmt_class):
        """
        Test: copy a mgmtclass object
        """
        # Arrange
        name = "testmgmtclass0"
        name_copy = "testmgmtclasscopy"
        mgmtclass = create_mgmt_class(name)

        # Act
        result = remote.copy_mgmtclass(mgmtclass, name_copy, token)

        # Cleanup
        remove_mgmt_class(name)
        remove_mgmt_class(name_copy)

        # Assert
        assert result

    def test_rename_mgmtclass(self, remote, token, create_mgmt_class, remove_mgmt_class):
        """
        Test: rename a mgmtclass object
        """
        # Arrange
        name = "test_mgmt_class_prerename"
        name_new = "test_mgmt_class_postrename"
        mgmtclass = create_mgmt_class(name)

        # Act
        result = remote.rename_mgmtclass(mgmtclass, name_new, token)

        # Cleanup
        remove_mgmt_class(name_new)

        # Assert
        assert result

    def test_remove_mgmtclass(self, remote, token, create_mgmt_class):
        """
        Test: remove a mgmtclass object
        """
        # Arrange
        name = "test_mgmt_class_remove"
        create_mgmt_class(name)

        # Act
        result = remote.remove_mgmtclass(name, token)

        # Assert
        assert result
0707010000017F000081A40000000000000000000000015ECE2444000047A8000000000000000000000000000000000000003400000000cobbler-3.1.2/tests/xmlrpcapi/miscellaneous_test.py   import json
import os
import time

import pytest

from cobbler.utils import get_shared_secret


@pytest.mark.usefixtures("cobbler_xmlrpc_base")
class TestMiscellaneous:
    """
    Class to test remote calls to cobbler which do not belong into a specific category.
    """

    def test_clear_system_logs(self, remote, token, file_basedir, create_kernel_initrd, create_distro, create_profile,
                               create_system, delete_kernel_initrd, remove_distro, remove_profile, remove_system):
        # Arrange
        fk_kernel = "vmlinuz1"
        fk_initrd = "initrd1.img"
        name_distro = "testdistro_clearsystemlog"
        name_profile = "testprofile_clearsystemlog"
        name_system = "testsystem_clearsystemlog"
        path_kernel = os.path.join(file_basedir, fk_kernel)
        path_initrd = os.path.join(file_basedir, fk_initrd)
        create_kernel_initrd(fk_kernel, fk_initrd)

        distro = create_distro(name_distro, "x86_64", "suse", path_kernel, path_initrd)
        profile = create_profile(name_profile, name_distro, "a=1 b=2 c=3 c=4 c=5 d e")
        system = create_system(name_system, name_profile)

        # Act
        result = remote.clear_system_logs(system, token)

        # Cleanup
        remove_distro(name_distro)
        remove_profile(name_profile)
        remove_system(name_system)
        delete_kernel_initrd(fk_kernel, fk_initrd)

        # Assert
        assert result

    def test_disable_netboot(self, remote, token, create_distro, remove_distro, create_profile, remove_profile,
                             create_system, remove_system):
        # Arrange
        name_distro = "test_distro_template_for_system"
        name_profile = "test_profile_template_for_system"
        name_system = "test_system_template_for_system"
        create_distro(name_distro, "x86_64", "suse", "/var/log/cobbler/cobbler.log", "/var/log/cobbler/cobbler.log")
        create_profile(name_profile, name_distro, "text")
        create_system(name_system, name_profile)

        # Act
        result = remote.disable_netboot(name_system, token)

        # Cleanup
        remove_system(name_system)
        remove_profile(name_profile)
        remove_distro(name_distro)

        # Assert
        assert result

    def test_extended_version(self, remote):
        # Arrange

        # Act
        result = remote.extended_version()

        # Assert Example Dict: {'builddate': 'Mon Feb 10 15:38:48 2020', 'gitdate': '?', 'gitstamp': '?', 'version':
        #                       '3.1.2', 'version_tuple': [3, 1, 2]}
        assert type(result) == dict
        assert type(result.get("version_tuple")) == list
        assert [3, 1, 2] == result.get("version_tuple")

    def test_find_items_paged(self, remote, token, create_distro, remove_distro):
        # Arrange
        name_distro_1 = "distro_items_paged_1"
        name_distro_2 = "distro_items_paged_2"
        create_distro(name_distro_1, "x86_64", "suse", "/var/log/cobbler/cobbler.log",
                      "/var/log/cobbler/cobbler.log")
        create_distro(name_distro_2, "x86_64", "suse", "/var/log/cobbler/cobbler.log",
                      "/var/log/cobbler/cobbler.log")

        # Act
        result = remote.find_items_paged("distro", None, "name", 1, 1)

        # Cleanup
        remove_distro(name_distro_1)
        remove_distro(name_distro_2)

        # Assert
        # Example output
        # {'items': [{'ctime': 1589386486.9040322, 'depth': 0, 'mtime': 1589386486.9040322, 'source_repos': [],
        # 'tree_build_time': 0, 'uid': 'cbf288465c724c439cf2ede6c94de4e8', 'arch': 'x86_64', 'autoinstall_meta': {},
        # 'boot_files': {}, 'boot_loader': '<<inherit>>', 'breed': 'suse', 'comment': '', 'fetchable_files': {},
        # 'initrd': '/var/log/cobbler/cobbler.log', 'kernel': '/var/log/cobbler/cobbler.log', 'remote_boot_initrd': '~',
        # 'remote_boot_kernel': '~', 'kernel_options': {}, 'kernel_options_post': {}, 'mgmt_classes': [],
        # 'name': 'distro_items_paged_1', 'os_version': 'virtio26', 'owners': ['admin'], 'redhat_management_key': '',
        # 'template_files': {}}], 'pageinfo': {'page': 1, 'prev_page': '~', 'next_page': 2, 'pages': [1, 2],
        # 'num_pages': 2, 'num_items': 2, 'start_item': 0, 'end_item': 1, 'items_per_page': 1,
        # 'items_per_page_list': [10, 20, 50, 100, 200, 500]}}
        assert type(result) == dict
        assert type(result.get("items")) == list
        assert "pageinfo" in result
        assert "pages" in result["pageinfo"]
        assert result["pageinfo"]["pages"] == [1, 2]

    @pytest.mark.skip("This functionality was implemented very quickly. The test for this needs to be fixed at a "
                      "later point!")
    def test_find_system_by_dns_name(self, remote, token, create_distro, remove_distro, create_profile, remove_profile,
                                     create_system, remove_system):
        # Arrange
        name_distro = "test_distro_template_for_system"
        name_profile = "test_profile_template_for_system"
        name_system = "test_system_template_for_system"
        dns_name = "test.cobbler-test.local"
        create_distro(name_distro, "x86_64", "suse", "/var/log/cobbler/cobbler.log",
                      "/var/log/cobbler/cobbler.log")
        create_profile(name_profile, name_distro, "text")
        system = create_system(name_system, name_profile)
        remote.modify_system(system, "dns_name", dns_name, token)
        remote.save_system(system, token)

        # Act
        result = remote.find_system_by_dns_name(dns_name)

        # Cleanup
        remove_system(name_system)
        remove_profile(name_profile)
        remove_distro(name_distro)

        # Assert
        assert result

    def test_generate_script(self, remote, create_distro, remove_distro, create_profile, remove_profile,
                             create_system, remove_system):
        # Arrange
        name_distro = "test_distro_template_for_system"
        name_profile = "test_profile_template_for_system"
        name_autoinstall_script = "test_generate_script"
        create_distro(name_distro, "x86_64", "suse", "/var/log/cobbler/cobbler.log",
                      "/var/log/cobbler/cobbler.log")
        create_profile(name_profile, name_distro, "text")
        # TODO: Create Autoinstall Script

        # Act
        result = remote.generate_script(name_profile, None, name_autoinstall_script)

        # Cleanup
        remove_profile(name_profile)
        remove_distro(name_distro)

        # Assert
        assert result

    def test_get_item_as_rendered(self, remote, token, create_distro, remove_distro):
        # Arrange
        name = "test_item_as_rendered"
        create_distro(name, "x86_64", "suse", "/var/log/cobbler/cobbler.log",
                      "/var/log/cobbler/cobbler.log")

        # Act
        result = remote.get_distro_as_rendered(name, token)

        # Cleanup
        remove_distro(name)

        # Assert
        assert result

    def test_get_s_since(self, remote, create_distro, remove_distro):
        # Arrange
        name_distro_before = "test_distro_since_before"
        name_distro_after = "test_distro_since_after"
        create_distro(name_distro_before, "x86_64", "suse", "/var/log/cobbler/cobbler.log",
                      "/var/log/cobbler/cobbler.log")
        mtime = time.time()
        create_distro(name_distro_after, "x86_64", "suse", "/var/log/cobbler/cobbler.log",
                      "/var/log/cobbler/cobbler.log")

        # Act
        result = remote.get_distros_since(mtime)

        # Cleanup
        remove_distro(name_distro_before)
        remove_distro(name_distro_after)

        # Assert
        assert type(result) == list
        assert len(result) == 1

    def test_get_authn_module_name(self, remote, token):
        # Arrange

        # Act
        result = remote.get_authn_module_name(token)

        # Assert
        assert result

    def test_get_blended_data(self, remote, create_distro, remove_distro, create_profile, remove_profile,
                              create_system, remove_system):
        # Arrange
        name_distro = "test_distro_template_for_system"
        name_profile = "test_profile_template_for_system"
        name_system = "test_system_template_for_system"
        create_distro(name_distro, "x86_64", "suse", "/var/log/cobbler/cobbler.log",
                      "/var/log/cobbler/cobbler.log")
        create_profile(name_profile, name_distro, "text")
        create_system(name_system, name_profile)

        # Act
        result = remote.get_blended_data(name_profile, name_system)

        # Cleanup
        remove_system(name_system)
        remove_profile(name_profile)
        remove_distro(name_distro)

        # Assert
        assert result

    def test_get_config_data(self, remote, token, create_distro, remove_distro, create_profile, remove_profile,
                             create_system, remove_system):
        # Arrange
        name_distro = "test_distro_template_for_system"
        name_profile = "test_profile_template_for_system"
        name_system = "test_system_template_for_system"
        system_hostname = "testhostname"
        create_distro(name_distro, "x86_64", "suse", "/var/log/cobbler/cobbler.log",
                      "/var/log/cobbler/cobbler.log")
        create_profile(name_profile, name_distro, "text")
        system = create_system(name_system, name_profile)
        remote.modify_system(system, "hostname", system_hostname, token)
        remote.save_system(system, token)

        # Act
        result = remote.get_config_data(system_hostname)

        # Cleanup
        remove_system(name_system)
        remove_profile(name_profile)
        remove_distro(name_distro)

        # Assert
        assert json.loads(result)

    def test_get_repos_compatible_with_profile(self, remote, token, create_distro, remove_distro, create_profile,
                                               remove_profile, create_repo, remove_repo):
        # Arrange
        name_distro = "test_distro_get_repo_for_profile"
        name_profile = "test_profile_get_repo_for_profile"
        name_repo_compatible = "test_repo_compatible_profile_1"
        name_repo_incompatible = "test_repo_compatible_profile_2"
        create_distro(name_distro, "x86_64", "suse", "/var/log/cobbler/cobbler.log",
                      "/var/log/cobbler/cobbler.log")
        create_profile(name_profile, name_distro, "text")
        repo_compatible = create_repo(name_repo_compatible, "http://localhost", "0")
        repo_incompatible = create_repo(name_repo_incompatible, "http://localhost", "0")
        remote.modify_repo(repo_compatible, "arch", "x86_64", token)
        remote.save_repo(repo_compatible, token)
        remote.modify_repo(repo_incompatible, "arch", "ppc64le", token)
        remote.save_repo(repo_incompatible, token)

        # Act
        result = remote.get_repos_compatible_with_profile(name_profile, token)

        # Cleanup
        remove_profile(name_profile)
        remove_distro(name_distro)
        remove_repo(name_repo_compatible)
        remove_repo(name_repo_incompatible)

        # Assert
        assert result != []

    def test_get_status(self, remote, token):
        # Arrange

        # Act
        result = remote.get_status("normal", token)

        # Assert
        assert result == {}

    @pytest.mark.skip("The function under test appears to have a bug. For now we skip the test.")
    def test_get_template_file_for_profile(self, remote, create_distro, remove_distro, create_profile, remove_profile,
                                           create_autoinstall_template, remove_autoinstall_template):
        # Arrange
        name_distro = "test_distro_template_for_profile"
        name_profile = "test_profile_template_for_profile"
        name_template = "test_template_for_profile"
        content_template = "# Testtemplate"
        create_distro(name_distro, "x86_64", "suse", "/var/log/cobbler/cobbler.log",
                      "/var/log/cobbler/cobbler.log")
        create_profile(name_profile, name_distro, "text")
        create_autoinstall_template(name_template, content_template)

        # Act
        # TODO: Fix test & functionality!
        result = remote.get_template_file_for_profile(name_profile, name_template)

        # Cleanup
        remove_profile(name_profile)
        remove_distro(name_distro)
        remove_autoinstall_template(name_template)

        # Assert
        assert result == content_template

    def test_get_template_file_for_system(self, remote, create_distro, remove_distro, create_profile, remove_profile,
                                          create_system, remove_system, create_autoinstall_template,
                                          remove_autoinstall_template):
        # Arrange
        name_distro = "test_distro_template_for_system"
        name_profile = "test_profile_template_for_system"
        name_system = "test_system_template_for_system"
        name_template = "test_template_for_system"
        content_template = "# Testtemplate"
        create_distro(name_distro, "x86_64", "suse", "/var/log/cobbler/cobbler.log",
                      "/var/log/cobbler/cobbler.log")
        create_profile(name_profile, name_distro, "text")
        create_system(name_system, name_profile)
        create_autoinstall_template(name_template, content_template)

        # Act
        result = remote.get_template_file_for_system(name_system, name_template)

        # Cleanup
        remove_system(name_system)
        remove_profile(name_profile)
        remove_distro(name_distro)
        remove_autoinstall_template(name_template)

        # Assert
        assert result

    def test_is_autoinstall_in_use(self, remote, token, create_distro, remove_distro, create_profile, remove_profile):
        # Arrange
        name_distro = "test_distro_is_autoinstall_in_use"
        name_profile = "test_profile_is_autoinstall_in_use"
        create_distro(name_distro, "x86_64", "suse", "/var/log/cobbler/cobbler.log",
                      "/var/log/cobbler/cobbler.log")
        create_profile(name_profile, name_distro, "text")

        # Act
        result = remote.is_autoinstall_in_use(name_profile, token)

        # Cleanup
        remove_profile(name_profile)
        remove_distro(name_distro)

        # Assert
        assert not result

    def test_logout(self, remote):
        # Arrange
        shared_secret = get_shared_secret()
        newtoken = remote.login("", shared_secret)

        # Act
        resultlogout = remote.logout(newtoken)
        resulttokencheck = remote.token_check(newtoken)

        # Assert
        assert resultlogout
        assert not resulttokencheck

    def test_modify_setting(self, remote, token):
        # Arrange

        # Act
        result = remote.modify_setting("auth_token_expiration", 7200, token)

        # Assert
        assert result == 0

    def test_read_autoinstall_template(self, remote, token, create_autoinstall_template, remove_autoinstall_template):
        # Arrange
        name = "test_template_name"
        create_autoinstall_template(name, "# Testtemplate")

        # Act
        result = remote.read_autoinstall_template(name, token)

        # Cleanup
        remove_autoinstall_template(name)

        # Assert
        assert result

    def test_write_autoinstall_template(self, remote, token, remove_autoinstall_template):
        # Arrange
        name = "testtemplate"

        # Act
        result = remote.write_autoinstall_template(name, "# Testtemplate", token)

        # Cleanup
        remove_autoinstall_template(name)

        # Assert
        assert result

    def test_remove_autoinstall_template(self, remote, token, create_autoinstall_template):
        # Arrange
        name = "test_template_remove"
        create_autoinstall_template(name, "# Testtemplate")

        # Act
        result = remote.remove_autoinstall_template(name, token)

        # Assert
        assert result

    def test_read_autoinstall_snippet(self, remote, token, testsnippet, snippet_add, snippet_remove):
        # Arrange
        snippet_name = "testsnippet_read"
        snippet_add(snippet_name, testsnippet)

        # Act
        result = remote.read_autoinstall_snippet(snippet_name, token)

        # Assert
        assert result == testsnippet

        # Cleanup
        snippet_remove(snippet_name)

    def test_write_autoinstall_snippet(self, remote, token, testsnippet, snippet_remove):
        # Arrange
        # See fixture: testsnippet
        name = "testsnippet_write"

        # Act
        result = remote.write_autoinstall_snippet(name, testsnippet, token)

        # Assert
        assert result

        # Cleanup
        snippet_remove(name)

    def test_remove_autoinstall_snippet(self, remote, token, snippet_add, testsnippet):
        # Arrange
        name = "testsnippet_remove"
        snippet_add(name, testsnippet)

        # Act
        result = remote.remove_autoinstall_snippet(name, token)

        # Assert
        assert result

    def test_run_install_triggers(self, remote, token):
        # Arrange
        # TODO: Needs a system as a target

        # Act
        result_pre = remote.run_install_triggers("pre", "system", "systemname", "10.0.0.2", token)
        result_post = remote.run_install_triggers("post", "system", "systemname", "10.0.0.2", token)

        # Assert
        assert result_pre
        assert result_post

    def test_version(self, remote):
        # Arrange

        # Act
        result = remote.version()

        # Assert
        # Will fail if the version is adjusted in the setup.py
        assert result == 3.102

    def test_xapi_object_edit(self, remote, token, remove_distro):
        # Arrange
        name = "testdistro_xapi_edit"

        # Act
        result = remote.xapi_object_edit("distro", name, "add",
                                         {"name": name, "arch": "x86_64", "breed": "suse",
                                          "kernel": "/var/log/cobbler/cobbler.log",
                                          "initrd": "/var/log/cobbler/cobbler.log"}, token)

        # Cleanup
        remove_distro(name)

        # Assert
        assert result
07070100000180000081A40000000000000000000000015ECE2444000010B7000000000000000000000000000000000000003700000000cobbler-3.1.2/tests/xmlrpcapi/non_object_calls_test.py    import pytest
import time
import re

TEST_POWER_MANAGEMENT = True
TEST_SYSTEM = ""


@pytest.mark.usefixtures("cobbler_xmlrpc_base")
class TestNonObjectCalls:

    # TODO: Obsolete this method via a unittest method
    def _wait_task_end(self, tid, remote):
        """
        Wait until a task is finished
        """

        timeout = 0
        # "complete" is the constant: EVENT_COMPLETE from cobbler.remote
        while remote.get_task_status(tid)[2] != "complete":
            print("task %s status: %s" % (tid, remote.get_task_status(tid)))
            time.sleep(5)
            timeout += 5
            if timeout == 60:
                raise Exception

    def test_token(self, token):
        """
        Test: authentication token validation
        """

        assert token not in ("", None)

    def test_get_user_from_token(self, remote, token):
        """
        Test: get user data from authentication token
        """

        assert remote.get_user_from_token(token)

    def test_check(self, remote, token):
        """
        Test: check Cobbler status
        """

        assert remote.check(token)

    def test_last_modified_time(self, remote, token):
        """
        Test: get last modification time
        """

        assert remote.last_modified_time(token) != 0

    def test_power_system(self, remote, token):
        """
        Test: reboot a system
        """

        if TEST_SYSTEM and TEST_POWER_MANAGEMENT:
            tid = remote.background_power_system({"systems": [TEST_SYSTEM], "power": "reboot"}, token)
            self._wait_task_end(tid, remote)

    def test_sync(self, remote, token):
        """
        Test: synchronize Cobbler internal data with managed services
        (dhcp, tftp, dns)
        """

        tid = remote.background_sync({}, token)
        events = remote.get_events(token)

        assert len(events) > 0

        self._wait_task_end(tid, remote)

        event_log = remote.get_event_log(tid)

    def test_get_autoinstall_templates(self, remote, token):
        """
        Test: get autoinstall templates
        """

        result = remote.get_autoinstall_templates(token)
        assert len(result) > 0

    def test_get_autoinstall_snippets(self, remote, token):
        """
        Test: get autoinstall snippets
        """

        result = remote.get_autoinstall_snippets(token)
        assert len(result) > 0

    def test_generate_autoinstall(self, remote):
        """
        Test: generate autoinstall content
        """

        if TEST_SYSTEM:
            remote.generate_autoinstall(None, TEST_SYSTEM)

    def test_generate_gpxe(self, remote):
        """
        Test: generate GPXE file content
        """

        if TEST_SYSTEM:
            remote.generate_gpxe(None, TEST_SYSTEM)

    def test_generate_bootcfg(self, remote):
        """
        Test: generate boot loader configuration file content
        """

        if TEST_SYSTEM:
            remote.generate_bootcfg(None, TEST_SYSTEM)

    def test_get_settings(self, remote, token):
        """
        Test: get settings
        """

        remote.get_settings(token)

    def test_get_signatures(self, remote, token):
        """
        Test: get distro signatures
        """

        remote.get_signatures(token)

    def test_get_valid_breeds(self, remote, token):
        """
        Test: get valid OS breeds
        """

        breeds = remote.get_valid_breeds(token)
        assert len(breeds) > 0

    def test_get_valid_os_versions_for_breed(self, remote, token):
        """
        Test: get valid OS versions for a OS breed
        """

        versions = remote.get_valid_os_versions_for_breed("generic", token)
        assert len(versions) > 0

    def test_get_valid_os_versions(self, remote, token):
        """
        Test: get valid OS versions
        """

        versions = remote.get_valid_os_versions(token)
        assert len(versions) > 0

    def test_get_random_mac(self, remote, token):
        """
        Test: get a random mac for a virtual network interface
        """

        mac = remote.get_random_mac("xen", token)
        hexa = "[0-9A-Fa-f]{2}"
        match_obj = re.match("%s:%s:%s:%s:%s:%s" % (hexa, hexa, hexa, hexa, hexa, hexa), mac)
        assert match_obj
 07070100000181000081A40000000000000000000000015ECE244400000CBD000000000000000000000000000000000000002E00000000cobbler-3.1.2/tests/xmlrpcapi/package_test.py import pytest

"""
Order is important currently:
self._get_packages()
self._create_package()
self._get_package()
self._find_package()
self._copy_package()
self._rename_package()
self._remove_package()
"""


@pytest.fixture()
def create_package(remote, token):
    """
    Adds a "testpackage0" for a test.
    :param remote: See the correesponding fixture.
    :param token: See the correesponding fixture.
    """
    package = remote.new_package(token)
    remote.modify_package(package, "name", "testpackage0", token)
    remote.save_package(package, token)


@pytest.fixture()
def remove_package(remote, token):
    """
    Removes a "testpackage0" for a test.
    :param remote: See the correesponding fixture.
    :param token: See the correesponding fixture.
    """
    yield
    remote.remove_package("testpackage0", token)


@pytest.mark.usefixtures("cobbler_xmlrpc_base")
class TestPackage:

    @pytest.mark.usefixtures("remove_package")
    def test_create_package(self, remote, token):
        """
        Test: create/edit a package object
        """

        packages = remote.get_packages(token)
        package = remote.new_package(token)

        assert remote.modify_package(package, "name", "testpackage0", token)
        assert remote.save_package(package, token)

        new_packages = remote.get_packages(token)
        assert len(new_packages) == len(packages) + 1

    @pytest.mark.usefixtures("create_package", "remove_package")
    def test_get_packages(self, remote, token):
        """
        Test: Get packages
        """

        package = remote.get_packages()

    @pytest.mark.usefixtures("create_package", "remove_package")
    def test_get_package(self, remote):
        """
        Test: Get a package object
        """

        package = remote.get_package("testpackage0")

    @pytest.mark.usefixtures("create_package", "remove_package")
    def test_find_package(self, remote, token):
        """
        Test: find a package object
        """

        result = remote.find_package({"name": "testpackage0"}, token)
        assert result

    @pytest.mark.usefixtures("create_package", "remove_package")
    def test_copy_package(self, remote, token):
        """
        Test: copy a package object
        """
        # Arrange --> Done in fixture

        # Act
        package = remote.get_item_handle("package", "testpackage0", token)
        result = remote.copy_package(package, "testpackagecopy", token)

        # Assert
        assert result

        # Cleanup
        remote.remove_package("testpackagecopy", token)

    @pytest.mark.usefixtures("create_package", "remove_package")
    def test_rename_package(self, remote, token):
        """
        Test: rename a package object
        """

        package = remote.get_item_handle("package", "testpackage0", token)
        assert remote.rename_package(package, "testpackage1", token)
        package = remote.get_item_handle("package", "testpackage1", token)
        assert remote.rename_package(package, "testpackage0", token)

    @pytest.mark.usefixtures("create_package")
    def test_remove_package(self, remote, token):
        """
        Test: remove a package object
        """

        assert remote.remove_package("testpackage0", token)
   07070100000182000081A40000000000000000000000015ECE244400000DE3000000000000000000000000000000000000002B00000000cobbler-3.1.2/tests/xmlrpcapi/repo_test.py    import pytest


@pytest.fixture
def create_repo(remote, token):
    """
    Creates a Repository "testrepo0" with a mirror "http://www.sample.com/path/to/some/repo" and the attribute
    "mirror_locally=0".

    :param remote: The xmlrpc object to connect to.
    :param token: The token to authenticate against the remote object.
    """
    repo = remote.new_repo(token)
    remote.modify_repo(repo, "name", "testrepo0", token)
    remote.modify_repo(repo, "mirror", "http://www.sample.com/path/to/some/repo", token)
    remote.modify_repo(repo, "mirror_locally", "0", token)
    remote.save_repo(repo, token)


@pytest.fixture
def remove_repo(remote, token):
    """
    Removes the Repository "testrepo0" which can be created with create_repo.

    :param remote: The xmlrpc object to connect to.
    :param token: The token to authenticate against the remote object.
    """
    yield
    remote.remove_repo("testrepo0", token)


@pytest.mark.usefixtures("cobbler_xmlrpc_base")
class TestRepo:
    @pytest.mark.usefixtures("remove_repo")
    def test_create_repo(self, remote, token):
        """
        Test: create/edit a repo object
        """

        # Arrange --> Nothing to arrange

        # Act & Assert
        repo = remote.new_repo(token)
        assert remote.modify_repo(repo, "name", "testrepo0", token)
        assert remote.modify_repo(repo, "mirror", "http://www.sample.com/path/to/some/repo", token)
        assert remote.modify_repo(repo, "mirror_locally", "0", token)
        assert remote.save_repo(repo, token)

    def test_get_repos(self, remote):
        """
        Test: Get repos
        """

        # Arrange --> Nothing to do

        # Act
        result = remote.get_repos()

        # Assert
        assert result == []

    @pytest.mark.usefixtures("create_repo", "remove_repo")
    def test_get_repo(self, remote, token):
        """
        Test: Get a repo object
        """

        # Arrange --> Done in fixture

        # Act
        repo = remote.get_repo("testrepo0")

        # Assert
        assert repo.get("name") == "testrepo0"

    @pytest.mark.usefixtures("create_repo", "remove_repo")
    def test_find_repo(self, remote, token):
        """
        Test: find a repo object
        """

        # Arrange --> Done in fixture

        # Act
        result = remote.find_repo({"name": "testrepo0"}, token)

        # Assert
        assert result

    @pytest.mark.usefixtures("create_repo", "remove_repo")
    def test_copy_repo(self, remote, token):
        """
        Test: copy a repo object
        """

        # Arrange --> Done in fixture

        # Act
        repo = remote.get_item_handle("repo", "testrepo0", token)

        # Assert
        assert remote.copy_repo(repo, "testrepocopy", token)

        # Cleanup
        remote.remove_repo("testrepocopy", token)

    @pytest.mark.usefixtures("create_repo")
    def test_rename_repo(self, remote, token):
        """
        Test: rename a repo object
        """

        # Arrange

        # Act
        repo = remote.get_item_handle("repo", "testrepo0", token)
        result = remote.rename_repo(repo, "testrepo1", token)

        # Assert
        assert result

        # Cleanup
        remote.remove_repo("testrepo1", token)

    @pytest.mark.usefixtures("create_repo")
    def test_remove_repo(self, remote, token):
        """
        Test: remove a repo object
        """

        # Arrange --> Done in fixture

        # Act
        result = remote.remove_repo("testrepo0", token)

        # Assert
        assert result
 07070100000183000041ED0000000000000000000000045ECE244400000000000000000000000000000000000000000000001200000000cobbler-3.1.2/web 07070100000184000081A40000000000000000000000015ECE24440000043E000000000000000000000000000000000000001F00000000cobbler-3.1.2/web/cobbler.wsgi    # Only add standard python modules here. When running under a virtualenv other modules are not
# available at this point.
import inspect
import os
import sys

os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
os.environ['PYTHON_EGG_CACHE'] = '/var/lib/cobbler/webui_cache'

# chdir resilient solution
script_path = os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())))
if script_path not in sys.path:
    sys.path.insert(0, script_path)
    sys.path.insert(0, os.path.join(script_path, 'cobbler_web'))


def application(environ, start_response):
    if 'VIRTUALENV' in environ and environ['VIRTUALENV'] != "":
        # VIRTUALENV Support
        # see http://code.google.com/p/modwsgi/wiki/VirtualEnvironments
        import site
        import distutils.sysconfig
        site.addsitedir(distutils.sysconfig.get_python_lib(prefix=environ['VIRTUALENV']))
        # Now all modules are available even under a virtualenv

    from django.core.wsgi import get_wsgi_application
    _application = get_wsgi_application()
    return _application(environ, start_response)
  07070100000185000041ED0000000000000000000000035ECE244400000000000000000000000000000000000000000000001900000000cobbler-3.1.2/web/static  07070100000186000081A40000000000000000000000015ECE24440000069D000000000000000000000000000000000000002400000000cobbler-3.1.2/web/static/cobbler.js   var js_growl = new jsGrowl('js_growl');
var run_once = 0
var now = new Date()
var page_load = -1

/* show tasks not yet recorded, update task found time in hidden field */

function get_latest_task_info() {
  var username = document.getElementById("username").value

  /* FIXME: used the logged in user here instead */
  /* FIXME: don't show events that are older than 40 seconds */

  $.getJSON("/cblr/svc/op/events/user/" + username,
    function(data){$.each(data, function(i,record) {
      var id = record[0];
      var ts = record[1];
      var name = record[2];
      var state = record[3];
      var buf = ""
      var logmsg = " <a href=\"/cobbler_web/eventlog/" + id + "\">(log)</A>";
      if (state == "complete") {
        buf = "Task " + name + " is complete: " + logmsg
      }
      else if (state == "running") {
        buf = "Task " + name + " is running: " + logmsg
      }
      else if (state == "failed") {
        buf = "Task " + name + " has failed: " + logmsg
      }
      else {
        buf = name
      }
      window.status = buf;
      js_growl.addMessage({msg:buf});
    });
  });
}

function go_go_gadget() {
    setInterval(get_latest_task_info, 2000)
    try {
       page_onload()
    } 
    catch (error) {
    }
}

function page_onload() { 
 var submitting = false;
 
        $(window).bind("submit", function () {
 
                submitting = true;

        });

        $(window).bind("beforeunload", function () {

                if (!submitting && $("#aidata")[0].defaultValue !== $("#aidata")[0].value) {

                        submitting = false;

                        return "You have unsaved changes.";

                }

        });


}
   07070100000187000081A40000000000000000000000015ECE24440000077F000000000000000000000000000000000000002500000000cobbler-3.1.2/web/static/favicon.png  PNG

   IHDR           szz   sRGB    bKGD      	pHYs    gR   tIME4,((  IDATXý}lVsNLF˔]Ph	Vq76fe7]V5Q)+-ȇ"9`
-ma8}ssӢ1\9ys]y/tQ[W
].ggI7|K$;}i:_3ʰa>m]س rph>6=DS $!	IHϴ$ƒ<l{x:a_>4{ pF9g9'ar=dH"@u+"K0|x̰gX--̞x7<8rw+$SZ9${ˡfvQ` s(]max&ǎ(zm۾78ϔ/`ٟ0YaIjSj
NZB,o	^PAPh&,dr8K2iTQ2ܵ&؆\<qS87鉷W,YdGȄu'קܘ"}ݒZ/(z/xMhp&٦H||߭i?YxVK	!!Y<c3\L6Y&dciOݓ'x H0}\7q3'_(X]L\I'ݵjTIQ|f?)^#{MK߁}q hޮԝ>+#֥?q3O^;i}kwQ1},<Sy`_GF^ۡSfc?_J@2ē??ikC{	E<aJ1mhd/Uus/7&lsFz9%%5k` T<a:]"O{qpof]}	a.}#0i8Xt% (bOLS)B]B<	.p,g9P@`D
@X`@LA$ N#I$BCpÇ@JQ&M 'xOVrL:cq,ºb;hGx	PlTRQ+C&snGangGU4/E\(qAmZ ,ޏ
t~<sVӼdיL(/k@rIwWҴdL~ne=5s)+ǛK/	 >8wi2+D &0o˾%;FAgqyӧ"hrfe}^$&dilzۦҪe4V6nMH<0j%{?p5;k)ފ	ak1JJQk쮹ljk& W-4_fI&Lf$݉Pa]/l	W"/Ӽ _(|3!ƚVֿ䎸y9Mѷf9Q)|ν;Yo7)cf˓5`ŵ{0`o5m.f=IPRU،[e6=7IۺobA* ; a:]3f#9Q\r3/N{__'FnAy]Q@}9*c}W}pZTi _tA/Yy&9ɺpR;.3,d{mS3o #VT=瓧4VR3wq0
2s@L9x"\xC4io6ܛho50浴=8C< .(*    IENDB` 07070100000188000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000002000000000cobbler-3.1.2/web/static/images   07070100000189000081A40000000000000000000000015ECE244400011C06000000000000000000000000000000000000003F00000000cobbler-3.1.2/web/static/images/ui-bg_flat_0_aaaaaa_40x100.png    




<!DOCTYPE html>
<html class="   ">
  <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# object: http://ogp.me/ns/object# article: http://ogp.me/ns/article# profile: http://ogp.me/ns/profile#">
    <meta charset='utf-8'>
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    
    
    <title>jquery-ui/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png at master · jquery/jquery-ui</title>
    <link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="GitHub" />
    <link rel="fluid-icon" href="https://github.com/fluidicon.png" title="GitHub" />
    <link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-114.png" />
    <link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114.png" />
    <link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-144.png" />
    <link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144.png" />
    <meta property="fb:app_id" content="1401488693436528"/>

      <meta content="@github" name="twitter:site" /><meta content="summary" name="twitter:card" /><meta content="jquery/jquery-ui" name="twitter:title" /><meta content="jquery-ui - The official jQuery user interface library." name="twitter:description" /><meta content="https://avatars1.githubusercontent.com/u/70142?s=400" name="twitter:image:src" />
<meta content="GitHub" property="og:site_name" /><meta content="object" property="og:type" /><meta content="https://avatars1.githubusercontent.com/u/70142?s=400" property="og:image" /><meta content="jquery/jquery-ui" property="og:title" /><meta content="https://github.com/jquery/jquery-ui" property="og:url" /><meta content="jquery-ui - The official jQuery user interface library." property="og:description" />

    <link rel="assets" href="https://assets-cdn.github.com/">
    <link rel="conduit-xhr" href="https://ghconduit.com:25035">
    <link rel="xhr-socket" href="/_sockets" />

    <meta name="msapplication-TileImage" content="/windows-tile.png" />
    <meta name="msapplication-TileColor" content="#ffffff" />
    <meta name="selected-link" value="repo_source" data-pjax-transient />
      <meta name="google-analytics" content="UA-3769691-2">

    <meta content="collector.githubapp.com" name="octolytics-host" /><meta content="collector-cdn.github.com" name="octolytics-script-host" /><meta content="github" name="octolytics-app-id" /><meta content="5ED1AC98:1163:4D6C3C0:53C6DBD9" name="octolytics-dimension-request_id" /><meta content="790690" name="octolytics-actor-id" /><meta content="jmaas" name="octolytics-actor-login" /><meta content="ac5e3878ac6703a37372cb2198cb3b8727e6b43c1e460ad6c9aeaeae1fb16fb4" name="octolytics-actor-hash" />
    

    
    
    <link rel="icon" type="image/x-icon" href="https://assets-cdn.github.com/favicon.ico" />


    <meta content="authenticity_token" name="csrf-param" />
<meta content="d8YHkU1G+yzk0Om6KGt28p7AaPeo/hm6twXV+3/BQfh153Ts15U1x8cT658GsmsB/05mJxTM8RI2eNeSvoNuxw==" name="csrf-token" />

    <link href="https://assets-cdn.github.com/assets/github-c534ad575b5bb8c3cc3dce9c571df7aa7400dbe9.css" media="all" rel="stylesheet" type="text/css" />
    <link href="https://assets-cdn.github.com/assets/github2-84a1b6179d461213455892ab983182bc2052a7b5.css" media="all" rel="stylesheet" type="text/css" />
    


    <meta http-equiv="x-pjax-version" content="ef2e8ad48b4c98b3a1a0065370258ac2">

      
  <meta name="description" content="jquery-ui - The official jQuery user interface library." />


  <meta content="70142" name="octolytics-dimension-user_id" /><meta content="jquery" name="octolytics-dimension-user_login" /><meta content="478996" name="octolytics-dimension-repository_id" /><meta content="jquery/jquery-ui" name="octolytics-dimension-repository_nwo" /><meta content="true" name="octolytics-dimension-repository_public" /><meta content="false" name="octolytics-dimension-repository_is_fork" /><meta content="478996" name="octolytics-dimension-repository_network_root_id" /><meta content="jquery/jquery-ui" name="octolytics-dimension-repository_network_root_nwo" />

  <link href="https://github.com/jquery/jquery-ui/commits/master.atom" rel="alternate" title="Recent Commits to jquery-ui:master" type="application/atom+xml" />

  </head>


  <body class="logged_in  env-production linux vis-public page-blob">
    <a href="#start-of-content" tabindex="1" class="accessibility-aid js-skip-to-content">Skip to content</a>
    <div class="wrapper">
      
      
      
      


      <div class="header header-logged-in true">
  <div class="container clearfix">

    <a class="header-logo-invertocat" href="https://github.com/" aria-label="Homepage">
  <span class="mega-octicon octicon-mark-github"></span>
</a>


    
    <a href="/notifications" aria-label="You have no unread notifications" class="notification-indicator tooltipped tooltipped-s" data-hotkey="g n">
        <span class="mail-status all-read"></span>
</a>

      <div class="command-bar js-command-bar  in-repository">
          <form accept-charset="UTF-8" action="/search" class="command-bar-form" id="top_search_form" method="get">

<div class="commandbar">
  <span class="message"></span>
  <input type="text" data-hotkey="s" name="q" id="js-command-bar-field" placeholder="Search or type a command" tabindex="1" autocapitalize="off"
    
    data-username="jmaas"
    data-repo="jquery/jquery-ui"
  >
  <div class="display hidden"></div>
</div>

    <input type="hidden" name="nwo" value="jquery/jquery-ui" />

    <div class="select-menu js-menu-container js-select-menu search-context-select-menu">
      <span class="minibutton select-menu-button js-menu-target" role="button" aria-haspopup="true">
        <span class="js-select-button">This repository</span>
      </span>

      <div class="select-menu-modal-holder js-menu-content js-navigation-container" aria-hidden="true">
        <div class="select-menu-modal">

          <div class="select-menu-item js-navigation-item js-this-repository-navigation-item selected">
            <span class="select-menu-item-icon octicon octicon-check"></span>
            <input type="radio" class="js-search-this-repository" name="search_target" value="repository" checked="checked" />
            <div class="select-menu-item-text js-select-button-text">This repository</div>
          </div> <!-- /.select-menu-item -->

          <div class="select-menu-item js-navigation-item js-all-repositories-navigation-item">
            <span class="select-menu-item-icon octicon octicon-check"></span>
            <input type="radio" name="search_target" value="global" />
            <div class="select-menu-item-text js-select-button-text">All repositories</div>
          </div> <!-- /.select-menu-item -->

        </div>
      </div>
    </div>

  <span class="help tooltipped tooltipped-s" aria-label="Show command bar help">
    <span class="octicon octicon-question"></span>
  </span>


  <input type="hidden" name="ref" value="cmdform">

</form>
        <ul class="top-nav">
          <li class="explore"><a href="/explore">Explore</a></li>
            <li><a href="https://gist.github.com">Gist</a></li>
            <li><a href="/blog">Blog</a></li>
          <li><a href="https://help.github.com">Help</a></li>
        </ul>
      </div>

    

<ul id="user-links">
  <li>
    <a href="/jmaas" class="name">
      <img alt="Jörgen Maas" class=" js-avatar" data-user="790690" height="20" src="https://avatars1.githubusercontent.com/u/790690?s=140" width="20" /> jmaas
    </a>
  </li>

  <li class="new-menu dropdown-toggle js-menu-container">
    <a href="#" class="js-menu-target tooltipped tooltipped-s" aria-label="Create new...">
      <span class="octicon octicon-plus"></span>
      <span class="dropdown-arrow"></span>
    </a>

    <div class="new-menu-content js-menu-content">
    </div>
  </li>

  <li>
    <a href="/settings/profile" id="account_settings"
      class="tooltipped tooltipped-s"
      aria-label="Account settings ">
      <span class="octicon octicon-tools"></span>
    </a>
  </li>
  <li>
    <form accept-charset="UTF-8" action="/logout" class="logout-form" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="aYNXfRa7wG6akP15mEV3fduftzpPdmpe4xaQElop0g5Kbkj/lzTVLTpA6wRWxvbxkSjqthGKx1mPjnc3dEHjPQ==" /></div>
      <button class="sign-out-button tooltipped tooltipped-s" aria-label="Sign out">
        <span class="octicon octicon-sign-out"></span>
      </button>
</form>  </li>

</ul>

<div class="js-new-dropdown-contents hidden">
  

<ul class="dropdown-menu">
  <li>
    <a href="/new"><span class="octicon octicon-repo"></span> New repository</a>
  </li>
  <li>
    <a href="/organizations/new"><span class="octicon octicon-organization"></span> New organization</a>
  </li>


</ul>

</div>


    
  </div>
</div>

      

        



      <div id="start-of-content" class="accessibility-aid"></div>
          <div class="site" itemscope itemtype="http://schema.org/WebPage">
    <div id="js-flash-container">
      
    </div>
    <div class="pagehead repohead instapaper_ignore readability-menu">
      <div class="container">
        
<ul class="pagehead-actions">

    <li class="subscription">
      <form accept-charset="UTF-8" action="/notifications/subscribe" class="js-social-container" data-autosubmit="true" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="GTwzpGOy5m2NpDsEvE2juqA4RlUCiIWSvjj5QlddBjXcXrg2Xxa1COILAKz2qzIkjbhcqC2+C2sHP0VPnAnb0g==" /></div>  <input id="repository_id" name="repository_id" type="hidden" value="478996" />

    <div class="select-menu js-menu-container js-select-menu">
      <a class="social-count js-social-count" href="/jquery/jquery-ui/watchers">
        639
      </a>
      <a href="/jquery/jquery-ui/subscription"
        class="minibutton select-menu-button with-count js-menu-target" role="button" tabindex="0" aria-haspopup="true">
        <span class="js-select-button">
          <span class="octicon octicon-eye"></span>
          Watch
        </span>
      </a>

      <div class="select-menu-modal-holder">
        <div class="select-menu-modal subscription-menu-modal js-menu-content" aria-hidden="true">
          <div class="select-menu-header">
            <span class="select-menu-title">Notifications</span>
            <span class="octicon octicon-x js-menu-close" role="button" aria-label="Close"></span>
          </div> <!-- /.select-menu-header -->

          <div class="select-menu-list js-navigation-container" role="menu">

            <div class="select-menu-item js-navigation-item selected" role="menuitem" tabindex="0">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <div class="select-menu-item-text">
                <input checked="checked" id="do_included" name="do" type="radio" value="included" />
                <h4>Not watching</h4>
                <span class="description">Be notified when participating or @mentioned.</span>
                <span class="js-select-button-text hidden-select-button-text">
                  <span class="octicon octicon-eye"></span>
                  Watch
                </span>
              </div>
            </div> <!-- /.select-menu-item -->

            <div class="select-menu-item js-navigation-item " role="menuitem" tabindex="0">
              <span class="select-menu-item-icon octicon octicon octicon-check"></span>
              <div class="select-menu-item-text">
                <input id="do_subscribed" name="do" type="radio" value="subscribed" />
                <h4>Watching</h4>
                <span class="description">Be notified of all conversations.</span>
                <span class="js-select-button-text hidden-select-button-text">
                  <span class="octicon octicon-eye"></span>
                  Unwatch
                </span>
              </div>
            </div> <!-- /.select-menu-item -->

            <div class="select-menu-item js-navigation-item " role="menuitem" tabindex="0">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <div class="select-menu-item-text">
                <input id="do_ignore" name="do" type="radio" value="ignore" />
                <h4>Ignoring</h4>
                <span class="description">Never be notified.</span>
                <span class="js-select-button-text hidden-select-button-text">
                  <span class="octicon octicon-mute"></span>
                  Stop ignoring
                </span>
              </div>
            </div> <!-- /.select-menu-item -->

          </div> <!-- /.select-menu-list -->

        </div> <!-- /.select-menu-modal -->
      </div> <!-- /.select-menu-modal-holder -->
    </div> <!-- /.select-menu -->

</form>
    </li>

  <li>
    

  <div class="js-toggler-container js-social-container starring-container ">

    <form accept-charset="UTF-8" action="/jquery/jquery-ui/unstar" class="js-toggler-form starred" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="lkBKiGSI2f3MjyFO7NshWvhaq/nOg4PHLTE7x3SaH5CpNd7kkXjT926ZP5wWnxsCdFK1WQ6eFJK1RWL+wbrs2Q==" /></div>
      <button
        class="minibutton with-count js-toggler-target star-button"
        aria-label="Unstar this repository" title="Unstar jquery/jquery-ui">
        <span class="octicon octicon-star"></span>
        Unstar
      </button>
        <a class="social-count js-social-count" href="/jquery/jquery-ui/stargazers">
          8,441
        </a>
</form>
    <form accept-charset="UTF-8" action="/jquery/jquery-ui/star" class="js-toggler-form unstarred" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="KCrtV1/YTgmYvdBHMTOZhJUynhpd/qsjEz7l3tq9gghx7K1L/Gjgk1ECBs+7bhHudvSajoMA/CD8Ld0V0k60DQ==" /></div>
      <button
        class="minibutton with-count js-toggler-target star-button"
        aria-label="Star this repository" title="Star jquery/jquery-ui">
        <span class="octicon octicon-star"></span>
        Star
      </button>
        <a class="social-count js-social-count" href="/jquery/jquery-ui/stargazers">
          8,441
        </a>
</form>  </div>

  </li>


        <li>
          <a href="/jquery/jquery-ui/fork" class="minibutton with-count js-toggler-target fork-button lighter tooltipped-n" title="Fork your own copy of jquery/jquery-ui to your account" aria-label="Fork your own copy of jquery/jquery-ui to your account" rel="facebox nofollow">
            <span class="octicon octicon-repo-forked"></span>
            Fork
          </a>
          <a href="/jquery/jquery-ui/network" class="social-count">3,098</a>
        </li>

</ul>

        <h1 itemscope itemtype="http://data-vocabulary.org/Breadcrumb" class="entry-title public">
          <span class="repo-label"><span>public</span></span>
          <span class="mega-octicon octicon-repo"></span>
          <span class="author"><a href="/jquery" class="url fn" itemprop="url" rel="author"><span itemprop="title">jquery</span></a></span><!--
       --><span class="path-divider">/</span><!--
       --><strong><a href="/jquery/jquery-ui" class="js-current-repository js-repo-home-link">jquery-ui</a></strong>

          <span class="page-context-loader">
            <img alt="" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
          </span>

        </h1>
      </div><!-- /.container -->
    </div><!-- /.repohead -->

    <div class="container">
      <div class="repository-with-sidebar repo-container new-discussion-timeline js-new-discussion-timeline  ">
        <div class="repository-sidebar clearfix">
            

<div class="sunken-menu vertical-right repo-nav js-repo-nav js-repository-container-pjax js-octicon-loaders">
  <div class="sunken-menu-contents">
    <ul class="sunken-menu-group">
      <li class="tooltipped tooltipped-w" aria-label="Code">
        <a href="/jquery/jquery-ui" aria-label="Code" class="selected js-selected-navigation-item sunken-menu-item" data-hotkey="g c" data-pjax="true" data-selected-links="repo_source repo_downloads repo_commits repo_releases repo_tags repo_branches /jquery/jquery-ui">
          <span class="octicon octicon-code"></span> <span class="full-word">Code</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>


      <li class="tooltipped tooltipped-w" aria-label="Pull Requests">
        <a href="/jquery/jquery-ui/pulls" aria-label="Pull Requests" class="js-selected-navigation-item sunken-menu-item js-disable-pjax" data-hotkey="g p" data-selected-links="repo_pulls /jquery/jquery-ui/pulls">
            <span class="octicon octicon-git-pull-request"></span> <span class="full-word">Pull Requests</span>
            <span class='counter'>46</span>
            <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>


    </ul>
    <div class="sunken-menu-separator"></div>
    <ul class="sunken-menu-group">

      <li class="tooltipped tooltipped-w" aria-label="Pulse">
        <a href="/jquery/jquery-ui/pulse" aria-label="Pulse" class="js-selected-navigation-item sunken-menu-item" data-pjax="true" data-selected-links="pulse /jquery/jquery-ui/pulse">
          <span class="octicon octicon-pulse"></span> <span class="full-word">Pulse</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>

      <li class="tooltipped tooltipped-w" aria-label="Graphs">
        <a href="/jquery/jquery-ui/graphs" aria-label="Graphs" class="js-selected-navigation-item sunken-menu-item" data-pjax="true" data-selected-links="repo_graphs repo_contributors /jquery/jquery-ui/graphs">
          <span class="octicon octicon-graph"></span> <span class="full-word">Graphs</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>

      <li class="tooltipped tooltipped-w" aria-label="Network">
        <a href="/jquery/jquery-ui/network" aria-label="Network" class="js-selected-navigation-item sunken-menu-item js-disable-pjax" data-selected-links="repo_network /jquery/jquery-ui/network">
          <span class="octicon octicon-repo-forked"></span> <span class="full-word">Network</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>
    </ul>


  </div>
</div>

              <div class="only-with-full-nav">
                

  

<div class="clone-url open"
  data-protocol-type="http"
  data-url="/users/set_protocol?protocol_selector=http&amp;protocol_type=clone">
  <h3><strong>HTTPS</strong> clone URL</h3>
  <div class="clone-url-box">
    <input type="text" class="clone js-url-field"
           value="https://github.com/jquery/jquery-ui.git" readonly="readonly">
    <span class="url-box-clippy">
    <button aria-label="Copy to clipboard" class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="https://github.com/jquery/jquery-ui.git" data-copied-hint="Copied!" type="button"><span class="octicon octicon-clippy"></span></button>
    </span>
  </div>
</div>

  

<div class="clone-url "
  data-protocol-type="ssh"
  data-url="/users/set_protocol?protocol_selector=ssh&amp;protocol_type=clone">
  <h3><strong>SSH</strong> clone URL</h3>
  <div class="clone-url-box">
    <input type="text" class="clone js-url-field"
           value="git@github.com:jquery/jquery-ui.git" readonly="readonly">
    <span class="url-box-clippy">
    <button aria-label="Copy to clipboard" class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="git@github.com:jquery/jquery-ui.git" data-copied-hint="Copied!" type="button"><span class="octicon octicon-clippy"></span></button>
    </span>
  </div>
</div>

  

<div class="clone-url "
  data-protocol-type="subversion"
  data-url="/users/set_protocol?protocol_selector=subversion&amp;protocol_type=clone">
  <h3><strong>Subversion</strong> checkout URL</h3>
  <div class="clone-url-box">
    <input type="text" class="clone js-url-field"
           value="https://github.com/jquery/jquery-ui" readonly="readonly">
    <span class="url-box-clippy">
    <button aria-label="Copy to clipboard" class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="https://github.com/jquery/jquery-ui" data-copied-hint="Copied!" type="button"><span class="octicon octicon-clippy"></span></button>
    </span>
  </div>
</div>


<p class="clone-options">You can clone with
      <a href="#" class="js-clone-selector" data-protocol="http">HTTPS</a>,
      <a href="#" class="js-clone-selector" data-protocol="ssh">SSH</a>,
      or <a href="#" class="js-clone-selector" data-protocol="subversion">Subversion</a>.
  <a href="https://help.github.com/articles/which-remote-url-should-i-use" class="help tooltipped tooltipped-n" aria-label="Get help on which URL is right for you.">
    <span class="octicon octicon-question"></span>
  </a>
</p>



                <a href="/jquery/jquery-ui/archive/master.zip"
                   class="minibutton sidebar-button"
                   aria-label="Download jquery/jquery-ui as a zip file"
                   title="Download jquery/jquery-ui as a zip file"
                   rel="nofollow">
                  <span class="octicon octicon-cloud-download"></span>
                  Download ZIP
                </a>
              </div>
        </div><!-- /.repository-sidebar -->

        <div id="js-repo-pjax-container" class="repository-content context-loader-container" data-pjax-container>
          


<a href="/jquery/jquery-ui/blob/98583a6563e7ae98ed67b5d70db2bff814c11e4e/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png" class="hidden js-permalink-shortcut" data-hotkey="y">Permalink</a>

<!-- blob contrib key: blob_contributors:v21:c0f706cadcb05cd5d8669b50154e44ed -->

<p title="This is a placeholder element" class="js-history-link-replace hidden"></p>

<div class="file-navigation">
  

<div class="select-menu js-menu-container js-select-menu" >
  <span class="minibutton select-menu-button js-menu-target css-truncate" data-hotkey="w"
    data-master-branch="master"
    data-ref="master"
    title="master"
    role="button" aria-label="Switch branches or tags" tabindex="0" aria-haspopup="true">
    <span class="octicon octicon-git-branch"></span>
    <i>branch:</i>
    <span class="js-select-button css-truncate-target">master</span>
  </span>

  <div class="select-menu-modal-holder js-menu-content js-navigation-container" data-pjax aria-hidden="true">

    <div class="select-menu-modal">
      <div class="select-menu-header">
        <span class="select-menu-title">Switch branches/tags</span>
        <span class="octicon octicon-x js-menu-close" role="button" aria-label="Close"></span>
      </div> <!-- /.select-menu-header -->

      <div class="select-menu-filters">
        <div class="select-menu-text-filter">
          <input type="text" aria-label="Filter branches/tags" id="context-commitish-filter-field" class="js-filterable-field js-navigation-enable" placeholder="Filter branches/tags">
        </div>
        <div class="select-menu-tabs">
          <ul>
            <li class="select-menu-tab">
              <a href="#" data-tab-filter="branches" class="js-select-menu-tab">Branches</a>
            </li>
            <li class="select-menu-tab">
              <a href="#" data-tab-filter="tags" class="js-select-menu-tab">Tags</a>
            </li>
          </ul>
        </div><!-- /.select-menu-tabs -->
      </div><!-- /.select-menu-filters -->

      <div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="branches">

        <div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring">


            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/1-8-stable/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1-8-stable"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1-8-stable">1-8-stable</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/1-9-stable/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1-9-stable"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1-9-stable">1-9-stable</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/1-10-stable/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1-10-stable"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1-10-stable">1-10-stable</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/button-icon-span/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="button-icon-span"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="button-icon-span">button-icon-span</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/datepicker/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="datepicker"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="datepicker">datepicker</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/interactions/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="interactions"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="interactions">interactions</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/interactions-polymer/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="interactions-polymer"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="interactions-polymer">interactions-polymer</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item selected">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/master/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="master"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="master">master</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/ref-1029-css-dependency-comments/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="ref-1029-css-dependency-comments"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="ref-1029-css-dependency-comments">ref-1029-css-dependency-comments</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/selectmenu-native-menu/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="selectmenu-native-menu"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="selectmenu-native-menu">selectmenu-native-menu</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/spinner-globalize-1.x/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="spinner-globalize-1.x"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="spinner-globalize-1.x">spinner-globalize-1.x</a>
            </div> <!-- /.select-menu-item -->
        </div>

          <div class="select-menu-no-results">Nothing to show</div>
      </div> <!-- /.select-menu-list -->

      <div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="tags">
        <div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring">


            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.11.0-beta.2/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.11.0-beta.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.11.0-beta.2">1.11.0-beta.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.11.0-beta.1/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.11.0-beta.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.11.0-beta.1">1.11.0-beta.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.11.0/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.11.0"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.11.0">1.11.0</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.4/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.10.4"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.4">1.10.4</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.3/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.10.3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.3">1.10.3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.2/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.10.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.2">1.10.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.1/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.10.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.1">1.10.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.0-rc.1/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.10.0-rc.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.0-rc.1">1.10.0-rc.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.0-beta.1/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.10.0-beta.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.0-beta.1">1.10.0-beta.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.0/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.10.0"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.0">1.10.0</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m7/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.9m7"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m7">1.9m7</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m6/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.9m6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m6">1.9m6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m5/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.9m5"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m5">1.9m5</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m4/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.9m4"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m4">1.9m4</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m3/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.9m3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m3">1.9m3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m2/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.9m2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m2">1.9m2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m1/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.9m1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m1">1.9m1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.2/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.9.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.2">1.9.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.1/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.9.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.1">1.9.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0-rc.1/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.9.0-rc.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0-rc.1">1.9.0-rc.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0m8/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.9.0m8"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0m8">1.9.0m8</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0-beta.1/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.9.0-beta.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0-beta.1">1.9.0-beta.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.9.0"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0">1.9.0</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8rc3/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.8rc3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8rc3">1.8rc3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8rc2/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.8rc2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8rc2">1.8rc2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8rc1/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.8rc1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8rc1">1.8rc1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8b1/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.8b1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8b1">1.8b1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8a2/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.8a2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8a2">1.8a2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8a1/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.8a1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8a1">1.8a1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.24/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.8.24"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.24">1.8.24</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.23/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.8.23"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.23">1.8.23</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.22/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.8.22"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.22">1.8.22</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.21/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.8.21"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.21">1.8.21</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.20/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.8.20"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.20">1.8.20</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.19/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.8.19"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.19">1.8.19</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.18/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.8.18"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.18">1.8.18</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.17/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.8.17"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.17">1.8.17</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.16/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.8.16"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.16">1.8.16</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.15/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.8.15"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.15">1.8.15</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.14/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.8.14"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.14">1.8.14</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.13/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.8.13"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.13">1.8.13</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.12/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.8.12"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.12">1.8.12</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.11/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.8.11"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.11">1.8.11</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.10/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.8.10"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.10">1.8.10</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.9/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.8.9"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.9">1.8.9</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.8/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.8.8"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.8">1.8.8</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.7/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.8.7"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.7">1.8.7</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.6/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.8.6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.6">1.8.6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.5/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.8.5"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.5">1.8.5</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.4/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.8.4"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.4">1.8.4</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.3/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.8.3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.3">1.8.3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.2/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.8.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.2">1.8.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.1/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.8.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.1">1.8.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.8"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8">1.8</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.7/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.7"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.7">1.7</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc6/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.6rc6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc6">1.6rc6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc5/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.6rc5"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc5">1.6rc5</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc3/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.6rc3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc3">1.6rc3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc2/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.6rc2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc2">1.6rc2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6">1.6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.5.2/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.5.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.5.2">1.5.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.5.1/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
                 data-name="1.5.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.5.1">1.5.1</a>
            </div> <!-- /.select-menu-item -->
        </div>

        <div class="select-menu-no-results">Nothing to show</div>
      </div> <!-- /.select-menu-list -->

    </div> <!-- /.select-menu-modal -->
  </div> <!-- /.select-menu-modal-holder -->
</div> <!-- /.select-menu -->

  <div class="button-group right">
    <a href="/jquery/jquery-ui/find/master"
          class="js-show-file-finder minibutton empty-icon tooltipped tooltipped-s"
          data-pjax
          data-hotkey="t"
          aria-label="Quickly jump between files">
      <span class="octicon octicon-list-unordered"></span>
    </a>
    <button class="js-zeroclipboard minibutton zeroclipboard-button"
          data-clipboard-text="themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
          aria-label="Copy to clipboard"
          data-copied-hint="Copied!">
      <span class="octicon octicon-clippy"></span>
    </button>
  </div>

  <div class="breadcrumb">
    <span class='repo-root js-repo-root'><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">jquery-ui</span></a></span></span><span class="separator"> / </span><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui/tree/master/themes" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">themes</span></a></span><span class="separator"> / </span><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui/tree/master/themes/base" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">base</span></a></span><span class="separator"> / </span><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui/tree/master/themes/base/images" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">images</span></a></span><span class="separator"> / </span><strong class="final-path">ui-bg_flat_0_aaaaaa_40x100.png</strong>
  </div>
</div>


  <div class="commit file-history-tease">
      <img alt="Travis Carden" class="main-avatar js-avatar" data-user="959246" height="24" src="https://avatars1.githubusercontent.com/u/959246?s=140" width="24" />
      <span class="author"><a href="/TravisCarden" rel="contributor">TravisCarden</a></span>
      <time datetime="2013-02-04T13:02:57-05:00" is="relative-time">February 04, 2013</time>
      <div class="commit-title">
          <a href="/jquery/jquery-ui/commit/a61af0b205c865b9c4f949bcc1bebe79994519d0" class="message" data-pjax="true" title="Fix file permissions in themes/base/images.">Fix file permissions in themes/base/images.</a>
      </div>

    <div class="participation">
      <p class="quickstat"><a href="#blob_contributors_box" rel="facebox"><strong>2</strong>  contributors</a></p>
          <a class="avatar tooltipped tooltipped-s" aria-label="TravisCarden" href="/jquery/jquery-ui/commits/master/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png?author=TravisCarden"><img alt="Travis Carden" class=" js-avatar" data-user="959246" height="20" src="https://avatars1.githubusercontent.com/u/959246?s=140" width="20" /></a>
    <a class="avatar tooltipped tooltipped-s" aria-label="scottjehl" href="/jquery/jquery-ui/commits/master/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png?author=scottjehl"><img alt="Scott Jehl" class=" js-avatar" data-user="214783" height="20" src="https://avatars2.githubusercontent.com/u/214783?s=140" width="20" /></a>


    </div>
    <div id="blob_contributors_box" style="display:none">
      <h2 class="facebox-header">Users who have contributed to this file</h2>
      <ul class="facebox-user-list">
          <li class="facebox-user-list-item">
            <img alt="Travis Carden" class=" js-avatar" data-user="959246" height="24" src="https://avatars1.githubusercontent.com/u/959246?s=140" width="24" />
            <a href="/TravisCarden">TravisCarden</a>
          </li>
          <li class="facebox-user-list-item">
            <img alt="Scott Jehl" class=" js-avatar" data-user="214783" height="24" src="https://avatars2.githubusercontent.com/u/214783?s=140" width="24" />
            <a href="/scottjehl">scottjehl</a>
          </li>
      </ul>
    </div>
  </div>

<div class="file-box">
  <div class="file">
    <div class="meta clearfix">
      <div class="info file-name">
        <span class="icon"><b class="octicon octicon-file-text"></b></span>
        <span class="mode" title="File Mode">file</span>
        <span class="meta-divider"></span>
        <span>0.18 kb</span>
      </div>
      <div class="actions">
        <div class="button-group">
          <a href="/jquery/jquery-ui/raw/master/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png" class="minibutton " id="raw-url">Raw</a>
          <a href="/jquery/jquery-ui/commits/master/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png" class="minibutton " rel="nofollow">History</a>
        </div><!-- /.button-group -->

            <a class="minibutton danger empty-icon tooltipped tooltipped-s"
               href="/jquery/jquery-ui/delete/master/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png"
               aria-label="Fork this project and delete file"
               data-method="post" data-test-id="delete-blob-file" rel="nofollow">

          Delete
        </a>
      </div><!-- /.actions -->
    </div>
      
  <div class="blob-wrapper data type-text js-blob-data">
      <div class="image js-image">
          <span class="border-wrap"><img src="https://raw.githubusercontent.com/jquery/jquery-ui/master/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png" alt="themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png" /></span>
      </div>
  </div>

  </div>
</div>

<a href="#jump-to-line" rel="facebox[.linejump]" data-hotkey="l" class="js-jump-to-line" style="display:none">Jump to Line</a>
<div id="jump-to-line" style="display:none">
  <form accept-charset="UTF-8" class="js-jump-to-line-form">
    <input class="linejump-input js-jump-to-line-field" type="text" placeholder="Jump to line&hellip;" autofocus>
    <button type="submit" class="button">Go</button>
  </form>
</div>

        </div>

      </div><!-- /.repo-container -->
      <div class="modal-backdrop"></div>
    </div><!-- /.container -->
  </div><!-- /.site -->


    </div><!-- /.wrapper -->

      <div class="container">
  <div class="site-footer">
    <ul class="site-footer-links right">
      <li><a href="https://status.github.com/">Status</a></li>
      <li><a href="http://developer.github.com">API</a></li>
      <li><a href="http://training.github.com">Training</a></li>
      <li><a href="http://shop.github.com">Shop</a></li>
      <li><a href="/blog">Blog</a></li>
      <li><a href="/about">About</a></li>

    </ul>

    <a href="/">
      <span class="mega-octicon octicon-mark-github" title="GitHub"></span>
    </a>

    <ul class="site-footer-links">
      <li>&copy; 2014 <span title="0.04533s from github-fe121-cp1-prd.iad.github.net">GitHub</span>, Inc.</li>
        <li><a href="/site/terms">Terms</a></li>
        <li><a href="/site/privacy">Privacy</a></li>
        <li><a href="/security">Security</a></li>
        <li><a href="/contact">Contact</a></li>
    </ul>
  </div><!-- /.site-footer -->
</div><!-- /.container -->


    <div class="fullscreen-overlay js-fullscreen-overlay" id="fullscreen_overlay">
  <div class="fullscreen-container js-fullscreen-container">
    <div class="textarea-wrap">
      <textarea name="fullscreen-contents" id="fullscreen-contents" class="fullscreen-contents js-fullscreen-contents" placeholder="" data-suggester="fullscreen_suggester"></textarea>
    </div>
  </div>
  <div class="fullscreen-sidebar">
    <a href="#" class="exit-fullscreen js-exit-fullscreen tooltipped tooltipped-w" aria-label="Exit Zen Mode">
      <span class="mega-octicon octicon-screen-normal"></span>
    </a>
    <a href="#" class="theme-switcher js-theme-switcher tooltipped tooltipped-w"
      aria-label="Switch themes">
      <span class="octicon octicon-color-mode"></span>
    </a>
  </div>
</div>



    <div id="ajax-error-message" class="flash flash-error">
      <span class="octicon octicon-alert"></span>
      <a href="#" class="octicon octicon-x close js-ajax-error-dismiss" aria-label="Dismiss error"></a>
      Something went wrong with that request. Please try again.
    </div>


      <script crossorigin="anonymous" src="https://assets-cdn.github.com/assets/frameworks-df9e4beac80276ed3dfa56be0d97b536d0f5ee12.js" type="text/javascript"></script>
      <script async="async" crossorigin="anonymous" src="https://assets-cdn.github.com/assets/github-534eef699bbadaf1454b432e14a2ab0a68c7ddf4.js" type="text/javascript"></script>
      
      
        <script async src="https://www.google-analytics.com/analytics.js"></script>
  </body>
</html>

  0707010000018A000081A40000000000000000000000015ECE2444000118F8000000000000000000000000000000000000004000000000cobbler-3.1.2/web/static/images/ui-bg_flat_75_ffffff_40x100.png   




<!DOCTYPE html>
<html class="   ">
  <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# object: http://ogp.me/ns/object# article: http://ogp.me/ns/article# profile: http://ogp.me/ns/profile#">
    <meta charset='utf-8'>
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    
    
    <title>jquery-ui/themes/base/images/ui-bg_flat_75_ffffff_40x100.png at master · jquery/jquery-ui</title>
    <link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="GitHub" />
    <link rel="fluid-icon" href="https://github.com/fluidicon.png" title="GitHub" />
    <link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-114.png" />
    <link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114.png" />
    <link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-144.png" />
    <link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144.png" />
    <meta property="fb:app_id" content="1401488693436528"/>

      <meta content="@github" name="twitter:site" /><meta content="summary" name="twitter:card" /><meta content="jquery/jquery-ui" name="twitter:title" /><meta content="jquery-ui - The official jQuery user interface library." name="twitter:description" /><meta content="https://avatars1.githubusercontent.com/u/70142?s=400" name="twitter:image:src" />
<meta content="GitHub" property="og:site_name" /><meta content="object" property="og:type" /><meta content="https://avatars1.githubusercontent.com/u/70142?s=400" property="og:image" /><meta content="jquery/jquery-ui" property="og:title" /><meta content="https://github.com/jquery/jquery-ui" property="og:url" /><meta content="jquery-ui - The official jQuery user interface library." property="og:description" />

    <link rel="assets" href="https://assets-cdn.github.com/">
    <link rel="conduit-xhr" href="https://ghconduit.com:25035">
    <link rel="xhr-socket" href="/_sockets" />

    <meta name="msapplication-TileImage" content="/windows-tile.png" />
    <meta name="msapplication-TileColor" content="#ffffff" />
    <meta name="selected-link" value="repo_source" data-pjax-transient />
      <meta name="google-analytics" content="UA-3769691-2">

    <meta content="collector.githubapp.com" name="octolytics-host" /><meta content="collector-cdn.github.com" name="octolytics-script-host" /><meta content="github" name="octolytics-app-id" /><meta content="5ED1AC98:1163:4D6C1D8:53C6DBD5" name="octolytics-dimension-request_id" /><meta content="790690" name="octolytics-actor-id" /><meta content="jmaas" name="octolytics-actor-login" /><meta content="ac5e3878ac6703a37372cb2198cb3b8727e6b43c1e460ad6c9aeaeae1fb16fb4" name="octolytics-actor-hash" />
    

    
    
    <link rel="icon" type="image/x-icon" href="https://assets-cdn.github.com/favicon.ico" />


    <meta content="authenticity_token" name="csrf-param" />
<meta content="4ONbXiXxmbla0ThMsKXYH+C10YbKUCK1BBTmxXW5y9tpWORD7NTMYsRkj0zWKz4gtRtwdjsC92Kf+1Fp66PBkA==" name="csrf-token" />

    <link href="https://assets-cdn.github.com/assets/github-c534ad575b5bb8c3cc3dce9c571df7aa7400dbe9.css" media="all" rel="stylesheet" type="text/css" />
    <link href="https://assets-cdn.github.com/assets/github2-84a1b6179d461213455892ab983182bc2052a7b5.css" media="all" rel="stylesheet" type="text/css" />
    


    <meta http-equiv="x-pjax-version" content="ef2e8ad48b4c98b3a1a0065370258ac2">

      
  <meta name="description" content="jquery-ui - The official jQuery user interface library." />


  <meta content="70142" name="octolytics-dimension-user_id" /><meta content="jquery" name="octolytics-dimension-user_login" /><meta content="478996" name="octolytics-dimension-repository_id" /><meta content="jquery/jquery-ui" name="octolytics-dimension-repository_nwo" /><meta content="true" name="octolytics-dimension-repository_public" /><meta content="false" name="octolytics-dimension-repository_is_fork" /><meta content="478996" name="octolytics-dimension-repository_network_root_id" /><meta content="jquery/jquery-ui" name="octolytics-dimension-repository_network_root_nwo" />

  <link href="https://github.com/jquery/jquery-ui/commits/master.atom" rel="alternate" title="Recent Commits to jquery-ui:master" type="application/atom+xml" />

  </head>


  <body class="logged_in  env-production linux vis-public page-blob">
    <a href="#start-of-content" tabindex="1" class="accessibility-aid js-skip-to-content">Skip to content</a>
    <div class="wrapper">
      
      
      
      


      <div class="header header-logged-in true">
  <div class="container clearfix">

    <a class="header-logo-invertocat" href="https://github.com/" aria-label="Homepage">
  <span class="mega-octicon octicon-mark-github"></span>
</a>


    
    <a href="/notifications" aria-label="You have no unread notifications" class="notification-indicator tooltipped tooltipped-s" data-hotkey="g n">
        <span class="mail-status all-read"></span>
</a>

      <div class="command-bar js-command-bar  in-repository">
          <form accept-charset="UTF-8" action="/search" class="command-bar-form" id="top_search_form" method="get">

<div class="commandbar">
  <span class="message"></span>
  <input type="text" data-hotkey="s" name="q" id="js-command-bar-field" placeholder="Search or type a command" tabindex="1" autocapitalize="off"
    
    data-username="jmaas"
    data-repo="jquery/jquery-ui"
  >
  <div class="display hidden"></div>
</div>

    <input type="hidden" name="nwo" value="jquery/jquery-ui" />

    <div class="select-menu js-menu-container js-select-menu search-context-select-menu">
      <span class="minibutton select-menu-button js-menu-target" role="button" aria-haspopup="true">
        <span class="js-select-button">This repository</span>
      </span>

      <div class="select-menu-modal-holder js-menu-content js-navigation-container" aria-hidden="true">
        <div class="select-menu-modal">

          <div class="select-menu-item js-navigation-item js-this-repository-navigation-item selected">
            <span class="select-menu-item-icon octicon octicon-check"></span>
            <input type="radio" class="js-search-this-repository" name="search_target" value="repository" checked="checked" />
            <div class="select-menu-item-text js-select-button-text">This repository</div>
          </div> <!-- /.select-menu-item -->

          <div class="select-menu-item js-navigation-item js-all-repositories-navigation-item">
            <span class="select-menu-item-icon octicon octicon-check"></span>
            <input type="radio" name="search_target" value="global" />
            <div class="select-menu-item-text js-select-button-text">All repositories</div>
          </div> <!-- /.select-menu-item -->

        </div>
      </div>
    </div>

  <span class="help tooltipped tooltipped-s" aria-label="Show command bar help">
    <span class="octicon octicon-question"></span>
  </span>


  <input type="hidden" name="ref" value="cmdform">

</form>
        <ul class="top-nav">
          <li class="explore"><a href="/explore">Explore</a></li>
            <li><a href="https://gist.github.com">Gist</a></li>
            <li><a href="/blog">Blog</a></li>
          <li><a href="https://help.github.com">Help</a></li>
        </ul>
      </div>

    

<ul id="user-links">
  <li>
    <a href="/jmaas" class="name">
      <img alt="Jörgen Maas" class=" js-avatar" data-user="790690" height="20" src="https://avatars1.githubusercontent.com/u/790690?s=140" width="20" /> jmaas
    </a>
  </li>

  <li class="new-menu dropdown-toggle js-menu-container">
    <a href="#" class="js-menu-target tooltipped tooltipped-s" aria-label="Create new...">
      <span class="octicon octicon-plus"></span>
      <span class="dropdown-arrow"></span>
    </a>

    <div class="new-menu-content js-menu-content">
    </div>
  </li>

  <li>
    <a href="/settings/profile" id="account_settings"
      class="tooltipped tooltipped-s"
      aria-label="Account settings ">
      <span class="octicon octicon-tools"></span>
    </a>
  </li>
  <li>
    <form accept-charset="UTF-8" action="/logout" class="logout-form" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="fSJTeBa7J9OcWrChiDpIc3Dus7c3yu2l+MNAOLlcXQyGxwdEh5mUbPiEpsH8+j7vl3QxNv3TRky95oTWXycM/A==" /></div>
      <button class="sign-out-button tooltipped tooltipped-s" aria-label="Sign out">
        <span class="octicon octicon-sign-out"></span>
      </button>
</form>  </li>

</ul>

<div class="js-new-dropdown-contents hidden">
  

<ul class="dropdown-menu">
  <li>
    <a href="/new"><span class="octicon octicon-repo"></span> New repository</a>
  </li>
  <li>
    <a href="/organizations/new"><span class="octicon octicon-organization"></span> New organization</a>
  </li>


</ul>

</div>


    
  </div>
</div>

      

        



      <div id="start-of-content" class="accessibility-aid"></div>
          <div class="site" itemscope itemtype="http://schema.org/WebPage">
    <div id="js-flash-container">
      
    </div>
    <div class="pagehead repohead instapaper_ignore readability-menu">
      <div class="container">
        
<ul class="pagehead-actions">

    <li class="subscription">
      <form accept-charset="UTF-8" action="/notifications/subscribe" class="js-social-container" data-autosubmit="true" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="m1T7o8yaRbMUBvuxeuf74VOvfBx/xiB62HXYl3G8PgyuEPolpPAu9mNwB1+RYbk9cMoADWDVxEwEuEQETU4iKQ==" /></div>  <input id="repository_id" name="repository_id" type="hidden" value="478996" />

    <div class="select-menu js-menu-container js-select-menu">
      <a class="social-count js-social-count" href="/jquery/jquery-ui/watchers">
        639
      </a>
      <a href="/jquery/jquery-ui/subscription"
        class="minibutton select-menu-button with-count js-menu-target" role="button" tabindex="0" aria-haspopup="true">
        <span class="js-select-button">
          <span class="octicon octicon-eye"></span>
          Watch
        </span>
      </a>

      <div class="select-menu-modal-holder">
        <div class="select-menu-modal subscription-menu-modal js-menu-content" aria-hidden="true">
          <div class="select-menu-header">
            <span class="select-menu-title">Notifications</span>
            <span class="octicon octicon-x js-menu-close" role="button" aria-label="Close"></span>
          </div> <!-- /.select-menu-header -->

          <div class="select-menu-list js-navigation-container" role="menu">

            <div class="select-menu-item js-navigation-item selected" role="menuitem" tabindex="0">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <div class="select-menu-item-text">
                <input checked="checked" id="do_included" name="do" type="radio" value="included" />
                <h4>Not watching</h4>
                <span class="description">Be notified when participating or @mentioned.</span>
                <span class="js-select-button-text hidden-select-button-text">
                  <span class="octicon octicon-eye"></span>
                  Watch
                </span>
              </div>
            </div> <!-- /.select-menu-item -->

            <div class="select-menu-item js-navigation-item " role="menuitem" tabindex="0">
              <span class="select-menu-item-icon octicon octicon octicon-check"></span>
              <div class="select-menu-item-text">
                <input id="do_subscribed" name="do" type="radio" value="subscribed" />
                <h4>Watching</h4>
                <span class="description">Be notified of all conversations.</span>
                <span class="js-select-button-text hidden-select-button-text">
                  <span class="octicon octicon-eye"></span>
                  Unwatch
                </span>
              </div>
            </div> <!-- /.select-menu-item -->

            <div class="select-menu-item js-navigation-item " role="menuitem" tabindex="0">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <div class="select-menu-item-text">
                <input id="do_ignore" name="do" type="radio" value="ignore" />
                <h4>Ignoring</h4>
                <span class="description">Never be notified.</span>
                <span class="js-select-button-text hidden-select-button-text">
                  <span class="octicon octicon-mute"></span>
                  Stop ignoring
                </span>
              </div>
            </div> <!-- /.select-menu-item -->

          </div> <!-- /.select-menu-list -->

        </div> <!-- /.select-menu-modal -->
      </div> <!-- /.select-menu-modal-holder -->
    </div> <!-- /.select-menu -->

</form>
    </li>

  <li>
    

  <div class="js-toggler-container js-social-container starring-container ">

    <form accept-charset="UTF-8" action="/jquery/jquery-ui/unstar" class="js-toggler-form starred" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="m9XxyHWUEpvGyVP97xLp12L6nNFphEqCx8Ruq9DhVSWqTPU/pP0eO00ikqnUI8YQ5OfGAu6xGb3F4iJC4UvoIA==" /></div>
      <button
        class="minibutton with-count js-toggler-target star-button"
        aria-label="Unstar this repository" title="Unstar jquery/jquery-ui">
        <span class="octicon octicon-star"></span>
        Unstar
      </button>
        <a class="social-count js-social-count" href="/jquery/jquery-ui/stargazers">
          8,441
        </a>
</form>
    <form accept-charset="UTF-8" action="/jquery/jquery-ui/star" class="js-toggler-form unstarred" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="EZsp4XhDF2AiU/YxyDOMlk4clNwi6ktbBCzC8idyPe3QbSVMF4HtNnmHom7KJvV9aN5pm3u3VdBOG0XI/l86Vg==" /></div>
      <button
        class="minibutton with-count js-toggler-target star-button"
        aria-label="Star this repository" title="Star jquery/jquery-ui">
        <span class="octicon octicon-star"></span>
        Star
      </button>
        <a class="social-count js-social-count" href="/jquery/jquery-ui/stargazers">
          8,441
        </a>
</form>  </div>

  </li>


        <li>
          <a href="/jquery/jquery-ui/fork" class="minibutton with-count js-toggler-target fork-button lighter tooltipped-n" title="Fork your own copy of jquery/jquery-ui to your account" aria-label="Fork your own copy of jquery/jquery-ui to your account" rel="facebox nofollow">
            <span class="octicon octicon-repo-forked"></span>
            Fork
          </a>
          <a href="/jquery/jquery-ui/network" class="social-count">3,098</a>
        </li>

</ul>

        <h1 itemscope itemtype="http://data-vocabulary.org/Breadcrumb" class="entry-title public">
          <span class="repo-label"><span>public</span></span>
          <span class="mega-octicon octicon-repo"></span>
          <span class="author"><a href="/jquery" class="url fn" itemprop="url" rel="author"><span itemprop="title">jquery</span></a></span><!--
       --><span class="path-divider">/</span><!--
       --><strong><a href="/jquery/jquery-ui" class="js-current-repository js-repo-home-link">jquery-ui</a></strong>

          <span class="page-context-loader">
            <img alt="" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
          </span>

        </h1>
      </div><!-- /.container -->
    </div><!-- /.repohead -->

    <div class="container">
      <div class="repository-with-sidebar repo-container new-discussion-timeline js-new-discussion-timeline  ">
        <div class="repository-sidebar clearfix">
            

<div class="sunken-menu vertical-right repo-nav js-repo-nav js-repository-container-pjax js-octicon-loaders">
  <div class="sunken-menu-contents">
    <ul class="sunken-menu-group">
      <li class="tooltipped tooltipped-w" aria-label="Code">
        <a href="/jquery/jquery-ui" aria-label="Code" class="selected js-selected-navigation-item sunken-menu-item" data-hotkey="g c" data-pjax="true" data-selected-links="repo_source repo_downloads repo_commits repo_releases repo_tags repo_branches /jquery/jquery-ui">
          <span class="octicon octicon-code"></span> <span class="full-word">Code</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>


      <li class="tooltipped tooltipped-w" aria-label="Pull Requests">
        <a href="/jquery/jquery-ui/pulls" aria-label="Pull Requests" class="js-selected-navigation-item sunken-menu-item js-disable-pjax" data-hotkey="g p" data-selected-links="repo_pulls /jquery/jquery-ui/pulls">
            <span class="octicon octicon-git-pull-request"></span> <span class="full-word">Pull Requests</span>
            <span class='counter'>46</span>
            <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>


    </ul>
    <div class="sunken-menu-separator"></div>
    <ul class="sunken-menu-group">

      <li class="tooltipped tooltipped-w" aria-label="Pulse">
        <a href="/jquery/jquery-ui/pulse" aria-label="Pulse" class="js-selected-navigation-item sunken-menu-item" data-pjax="true" data-selected-links="pulse /jquery/jquery-ui/pulse">
          <span class="octicon octicon-pulse"></span> <span class="full-word">Pulse</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>

      <li class="tooltipped tooltipped-w" aria-label="Graphs">
        <a href="/jquery/jquery-ui/graphs" aria-label="Graphs" class="js-selected-navigation-item sunken-menu-item" data-pjax="true" data-selected-links="repo_graphs repo_contributors /jquery/jquery-ui/graphs">
          <span class="octicon octicon-graph"></span> <span class="full-word">Graphs</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>

      <li class="tooltipped tooltipped-w" aria-label="Network">
        <a href="/jquery/jquery-ui/network" aria-label="Network" class="js-selected-navigation-item sunken-menu-item js-disable-pjax" data-selected-links="repo_network /jquery/jquery-ui/network">
          <span class="octicon octicon-repo-forked"></span> <span class="full-word">Network</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>
    </ul>


  </div>
</div>

              <div class="only-with-full-nav">
                

  

<div class="clone-url open"
  data-protocol-type="http"
  data-url="/users/set_protocol?protocol_selector=http&amp;protocol_type=clone">
  <h3><strong>HTTPS</strong> clone URL</h3>
  <div class="clone-url-box">
    <input type="text" class="clone js-url-field"
           value="https://github.com/jquery/jquery-ui.git" readonly="readonly">
    <span class="url-box-clippy">
    <button aria-label="Copy to clipboard" class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="https://github.com/jquery/jquery-ui.git" data-copied-hint="Copied!" type="button"><span class="octicon octicon-clippy"></span></button>
    </span>
  </div>
</div>

  

<div class="clone-url "
  data-protocol-type="ssh"
  data-url="/users/set_protocol?protocol_selector=ssh&amp;protocol_type=clone">
  <h3><strong>SSH</strong> clone URL</h3>
  <div class="clone-url-box">
    <input type="text" class="clone js-url-field"
           value="git@github.com:jquery/jquery-ui.git" readonly="readonly">
    <span class="url-box-clippy">
    <button aria-label="Copy to clipboard" class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="git@github.com:jquery/jquery-ui.git" data-copied-hint="Copied!" type="button"><span class="octicon octicon-clippy"></span></button>
    </span>
  </div>
</div>

  

<div class="clone-url "
  data-protocol-type="subversion"
  data-url="/users/set_protocol?protocol_selector=subversion&amp;protocol_type=clone">
  <h3><strong>Subversion</strong> checkout URL</h3>
  <div class="clone-url-box">
    <input type="text" class="clone js-url-field"
           value="https://github.com/jquery/jquery-ui" readonly="readonly">
    <span class="url-box-clippy">
    <button aria-label="Copy to clipboard" class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="https://github.com/jquery/jquery-ui" data-copied-hint="Copied!" type="button"><span class="octicon octicon-clippy"></span></button>
    </span>
  </div>
</div>


<p class="clone-options">You can clone with
      <a href="#" class="js-clone-selector" data-protocol="http">HTTPS</a>,
      <a href="#" class="js-clone-selector" data-protocol="ssh">SSH</a>,
      or <a href="#" class="js-clone-selector" data-protocol="subversion">Subversion</a>.
  <a href="https://help.github.com/articles/which-remote-url-should-i-use" class="help tooltipped tooltipped-n" aria-label="Get help on which URL is right for you.">
    <span class="octicon octicon-question"></span>
  </a>
</p>



                <a href="/jquery/jquery-ui/archive/master.zip"
                   class="minibutton sidebar-button"
                   aria-label="Download jquery/jquery-ui as a zip file"
                   title="Download jquery/jquery-ui as a zip file"
                   rel="nofollow">
                  <span class="octicon octicon-cloud-download"></span>
                  Download ZIP
                </a>
              </div>
        </div><!-- /.repository-sidebar -->

        <div id="js-repo-pjax-container" class="repository-content context-loader-container" data-pjax-container>
          


<a href="/jquery/jquery-ui/blob/98583a6563e7ae98ed67b5d70db2bff814c11e4e/themes/base/images/ui-bg_flat_75_ffffff_40x100.png" class="hidden js-permalink-shortcut" data-hotkey="y">Permalink</a>

<!-- blob contrib key: blob_contributors:v21:f7a2df8bacc788bd5d7760cdb1084ab7 -->

<p title="This is a placeholder element" class="js-history-link-replace hidden"></p>

<div class="file-navigation">
  

<div class="select-menu js-menu-container js-select-menu" >
  <span class="minibutton select-menu-button js-menu-target css-truncate" data-hotkey="w"
    data-master-branch="master"
    data-ref="master"
    title="master"
    role="button" aria-label="Switch branches or tags" tabindex="0" aria-haspopup="true">
    <span class="octicon octicon-git-branch"></span>
    <i>branch:</i>
    <span class="js-select-button css-truncate-target">master</span>
  </span>

  <div class="select-menu-modal-holder js-menu-content js-navigation-container" data-pjax aria-hidden="true">

    <div class="select-menu-modal">
      <div class="select-menu-header">
        <span class="select-menu-title">Switch branches/tags</span>
        <span class="octicon octicon-x js-menu-close" role="button" aria-label="Close"></span>
      </div> <!-- /.select-menu-header -->

      <div class="select-menu-filters">
        <div class="select-menu-text-filter">
          <input type="text" aria-label="Filter branches/tags" id="context-commitish-filter-field" class="js-filterable-field js-navigation-enable" placeholder="Filter branches/tags">
        </div>
        <div class="select-menu-tabs">
          <ul>
            <li class="select-menu-tab">
              <a href="#" data-tab-filter="branches" class="js-select-menu-tab">Branches</a>
            </li>
            <li class="select-menu-tab">
              <a href="#" data-tab-filter="tags" class="js-select-menu-tab">Tags</a>
            </li>
          </ul>
        </div><!-- /.select-menu-tabs -->
      </div><!-- /.select-menu-filters -->

      <div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="branches">

        <div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring">


            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/1-8-stable/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1-8-stable"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1-8-stable">1-8-stable</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/1-9-stable/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1-9-stable"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1-9-stable">1-9-stable</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/1-10-stable/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1-10-stable"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1-10-stable">1-10-stable</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/button-icon-span/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="button-icon-span"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="button-icon-span">button-icon-span</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/datepicker/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="datepicker"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="datepicker">datepicker</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/interactions/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="interactions"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="interactions">interactions</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/interactions-polymer/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="interactions-polymer"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="interactions-polymer">interactions-polymer</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item selected">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/master/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="master"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="master">master</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/ref-1029-css-dependency-comments/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="ref-1029-css-dependency-comments"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="ref-1029-css-dependency-comments">ref-1029-css-dependency-comments</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/selectmenu-native-menu/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="selectmenu-native-menu"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="selectmenu-native-menu">selectmenu-native-menu</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/spinner-globalize-1.x/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="spinner-globalize-1.x"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="spinner-globalize-1.x">spinner-globalize-1.x</a>
            </div> <!-- /.select-menu-item -->
        </div>

          <div class="select-menu-no-results">Nothing to show</div>
      </div> <!-- /.select-menu-list -->

      <div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="tags">
        <div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring">


            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.11.0-beta.2/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.11.0-beta.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.11.0-beta.2">1.11.0-beta.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.11.0-beta.1/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.11.0-beta.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.11.0-beta.1">1.11.0-beta.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.11.0/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.11.0"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.11.0">1.11.0</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.4/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.10.4"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.4">1.10.4</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.3/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.10.3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.3">1.10.3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.2/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.10.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.2">1.10.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.1/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.10.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.1">1.10.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.0-rc.1/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.10.0-rc.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.0-rc.1">1.10.0-rc.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.0-beta.1/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.10.0-beta.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.0-beta.1">1.10.0-beta.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.0/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.10.0"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.0">1.10.0</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m7/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.9m7"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m7">1.9m7</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m6/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.9m6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m6">1.9m6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m5/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.9m5"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m5">1.9m5</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m4/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.9m4"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m4">1.9m4</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m3/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.9m3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m3">1.9m3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m2/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.9m2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m2">1.9m2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m1/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.9m1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m1">1.9m1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.2/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.9.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.2">1.9.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.1/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.9.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.1">1.9.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0-rc.1/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.9.0-rc.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0-rc.1">1.9.0-rc.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0m8/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.9.0m8"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0m8">1.9.0m8</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0-beta.1/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.9.0-beta.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0-beta.1">1.9.0-beta.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.9.0"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0">1.9.0</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8rc3/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.8rc3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8rc3">1.8rc3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8rc2/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.8rc2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8rc2">1.8rc2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8rc1/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.8rc1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8rc1">1.8rc1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8b1/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.8b1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8b1">1.8b1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8a2/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.8a2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8a2">1.8a2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8a1/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.8a1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8a1">1.8a1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.24/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.8.24"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.24">1.8.24</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.23/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.8.23"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.23">1.8.23</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.22/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.8.22"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.22">1.8.22</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.21/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.8.21"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.21">1.8.21</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.20/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.8.20"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.20">1.8.20</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.19/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.8.19"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.19">1.8.19</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.18/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.8.18"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.18">1.8.18</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.17/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.8.17"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.17">1.8.17</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.16/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.8.16"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.16">1.8.16</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.15/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.8.15"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.15">1.8.15</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.14/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.8.14"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.14">1.8.14</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.13/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.8.13"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.13">1.8.13</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.12/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.8.12"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.12">1.8.12</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.11/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.8.11"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.11">1.8.11</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.10/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.8.10"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.10">1.8.10</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.9/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.8.9"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.9">1.8.9</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.8/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.8.8"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.8">1.8.8</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.7/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.8.7"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.7">1.8.7</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.6/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.8.6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.6">1.8.6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.5/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.8.5"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.5">1.8.5</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.4/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.8.4"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.4">1.8.4</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.3/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.8.3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.3">1.8.3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.2/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.8.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.2">1.8.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.1/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.8.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.1">1.8.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.8"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8">1.8</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.7/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.7"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.7">1.7</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc6/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.6rc6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc6">1.6rc6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc5/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.6rc5"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc5">1.6rc5</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc3/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.6rc3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc3">1.6rc3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc2/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.6rc2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc2">1.6rc2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6">1.6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.5.2/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.5.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.5.2">1.5.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.5.1/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
                 data-name="1.5.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.5.1">1.5.1</a>
            </div> <!-- /.select-menu-item -->
        </div>

        <div class="select-menu-no-results">Nothing to show</div>
      </div> <!-- /.select-menu-list -->

    </div> <!-- /.select-menu-modal -->
  </div> <!-- /.select-menu-modal-holder -->
</div> <!-- /.select-menu -->

  <div class="button-group right">
    <a href="/jquery/jquery-ui/find/master"
          class="js-show-file-finder minibutton empty-icon tooltipped tooltipped-s"
          data-pjax
          data-hotkey="t"
          aria-label="Quickly jump between files">
      <span class="octicon octicon-list-unordered"></span>
    </a>
    <button class="js-zeroclipboard minibutton zeroclipboard-button"
          data-clipboard-text="themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
          aria-label="Copy to clipboard"
          data-copied-hint="Copied!">
      <span class="octicon octicon-clippy"></span>
    </button>
  </div>

  <div class="breadcrumb">
    <span class='repo-root js-repo-root'><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">jquery-ui</span></a></span></span><span class="separator"> / </span><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui/tree/master/themes" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">themes</span></a></span><span class="separator"> / </span><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui/tree/master/themes/base" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">base</span></a></span><span class="separator"> / </span><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui/tree/master/themes/base/images" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">images</span></a></span><span class="separator"> / </span><strong class="final-path">ui-bg_flat_75_ffffff_40x100.png</strong>
  </div>
</div>


  <div class="commit file-history-tease">
      <img alt="Richard D. Worth" class="main-avatar js-avatar" data-user="107824" height="24" src="https://avatars2.githubusercontent.com/u/107824?s=140" width="24" />
      <span class="author"><a href="/rdworth" rel="contributor">rdworth</a></span>
      <time datetime="2009-06-04T10:27:26Z" is="relative-time">June 04, 2009</time>
      <div class="commit-title">
          <a href="/jquery/jquery-ui/commit/8c3179edaade027d89eedf3e06317ab542041909" class="message" data-pjax="true" title="Updated base theme to match smoothness. Fixed #4447 - UI Icons are not even, causes misaligned buttons">Updated base theme to match smoothness. Fixed #4447 - UI Icons are no…</a>
      </div>

    <div class="participation">
      <p class="quickstat"><a href="#blob_contributors_box" rel="facebox"><strong>1</strong>  contributor</a></p>
      
    </div>
    <div id="blob_contributors_box" style="display:none">
      <h2 class="facebox-header">Users who have contributed to this file</h2>
      <ul class="facebox-user-list">
          <li class="facebox-user-list-item">
            <img alt="Richard D. Worth" class=" js-avatar" data-user="107824" height="24" src="https://avatars2.githubusercontent.com/u/107824?s=140" width="24" />
            <a href="/rdworth">rdworth</a>
          </li>
      </ul>
    </div>
  </div>

<div class="file-box">
  <div class="file">
    <div class="meta clearfix">
      <div class="info file-name">
        <span class="icon"><b class="octicon octicon-file-text"></b></span>
        <span class="mode" title="File Mode">file</span>
        <span class="meta-divider"></span>
        <span>0.178 kb</span>
      </div>
      <div class="actions">
        <div class="button-group">
          <a href="/jquery/jquery-ui/raw/master/themes/base/images/ui-bg_flat_75_ffffff_40x100.png" class="minibutton " id="raw-url">Raw</a>
          <a href="/jquery/jquery-ui/commits/master/themes/base/images/ui-bg_flat_75_ffffff_40x100.png" class="minibutton " rel="nofollow">History</a>
        </div><!-- /.button-group -->

            <a class="minibutton danger empty-icon tooltipped tooltipped-s"
               href="/jquery/jquery-ui/delete/master/themes/base/images/ui-bg_flat_75_ffffff_40x100.png"
               aria-label="Fork this project and delete file"
               data-method="post" data-test-id="delete-blob-file" rel="nofollow">

          Delete
        </a>
      </div><!-- /.actions -->
    </div>
      
  <div class="blob-wrapper data type-text js-blob-data">
      <div class="image js-image">
          <span class="border-wrap"><img src="https://raw.githubusercontent.com/jquery/jquery-ui/master/themes/base/images/ui-bg_flat_75_ffffff_40x100.png" alt="themes/base/images/ui-bg_flat_75_ffffff_40x100.png" /></span>
      </div>
  </div>

  </div>
</div>

<a href="#jump-to-line" rel="facebox[.linejump]" data-hotkey="l" class="js-jump-to-line" style="display:none">Jump to Line</a>
<div id="jump-to-line" style="display:none">
  <form accept-charset="UTF-8" class="js-jump-to-line-form">
    <input class="linejump-input js-jump-to-line-field" type="text" placeholder="Jump to line&hellip;" autofocus>
    <button type="submit" class="button">Go</button>
  </form>
</div>

        </div>

      </div><!-- /.repo-container -->
      <div class="modal-backdrop"></div>
    </div><!-- /.container -->
  </div><!-- /.site -->


    </div><!-- /.wrapper -->

      <div class="container">
  <div class="site-footer">
    <ul class="site-footer-links right">
      <li><a href="https://status.github.com/">Status</a></li>
      <li><a href="http://developer.github.com">API</a></li>
      <li><a href="http://training.github.com">Training</a></li>
      <li><a href="http://shop.github.com">Shop</a></li>
      <li><a href="/blog">Blog</a></li>
      <li><a href="/about">About</a></li>

    </ul>

    <a href="/">
      <span class="mega-octicon octicon-mark-github" title="GitHub"></span>
    </a>

    <ul class="site-footer-links">
      <li>&copy; 2014 <span title="0.04525s from github-fe118-cp1-prd.iad.github.net">GitHub</span>, Inc.</li>
        <li><a href="/site/terms">Terms</a></li>
        <li><a href="/site/privacy">Privacy</a></li>
        <li><a href="/security">Security</a></li>
        <li><a href="/contact">Contact</a></li>
    </ul>
  </div><!-- /.site-footer -->
</div><!-- /.container -->


    <div class="fullscreen-overlay js-fullscreen-overlay" id="fullscreen_overlay">
  <div class="fullscreen-container js-fullscreen-container">
    <div class="textarea-wrap">
      <textarea name="fullscreen-contents" id="fullscreen-contents" class="fullscreen-contents js-fullscreen-contents" placeholder="" data-suggester="fullscreen_suggester"></textarea>
    </div>
  </div>
  <div class="fullscreen-sidebar">
    <a href="#" class="exit-fullscreen js-exit-fullscreen tooltipped tooltipped-w" aria-label="Exit Zen Mode">
      <span class="mega-octicon octicon-screen-normal"></span>
    </a>
    <a href="#" class="theme-switcher js-theme-switcher tooltipped tooltipped-w"
      aria-label="Switch themes">
      <span class="octicon octicon-color-mode"></span>
    </a>
  </div>
</div>



    <div id="ajax-error-message" class="flash flash-error">
      <span class="octicon octicon-alert"></span>
      <a href="#" class="octicon octicon-x close js-ajax-error-dismiss" aria-label="Dismiss error"></a>
      Something went wrong with that request. Please try again.
    </div>


      <script crossorigin="anonymous" src="https://assets-cdn.github.com/assets/frameworks-df9e4beac80276ed3dfa56be0d97b536d0f5ee12.js" type="text/javascript"></script>
      <script async="async" crossorigin="anonymous" src="https://assets-cdn.github.com/assets/github-534eef699bbadaf1454b432e14a2ab0a68c7ddf4.js" type="text/javascript"></script>
      
      
        <script async src="https://www.google-analytics.com/analytics.js"></script>
  </body>
</html>

0707010000018B000081A40000000000000000000000015ECE244400011C5A000000000000000000000000000000000000004000000000cobbler-3.1.2/web/static/images/ui-bg_glass_55_fbf9ee_1x400.png   




<!DOCTYPE html>
<html class="   ">
  <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# object: http://ogp.me/ns/object# article: http://ogp.me/ns/article# profile: http://ogp.me/ns/profile#">
    <meta charset='utf-8'>
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    
    
    <title>jquery-ui/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png at master · jquery/jquery-ui</title>
    <link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="GitHub" />
    <link rel="fluid-icon" href="https://github.com/fluidicon.png" title="GitHub" />
    <link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-114.png" />
    <link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114.png" />
    <link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-144.png" />
    <link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144.png" />
    <meta property="fb:app_id" content="1401488693436528"/>

      <meta content="@github" name="twitter:site" /><meta content="summary" name="twitter:card" /><meta content="jquery/jquery-ui" name="twitter:title" /><meta content="jquery-ui - The official jQuery user interface library." name="twitter:description" /><meta content="https://avatars1.githubusercontent.com/u/70142?s=400" name="twitter:image:src" />
<meta content="GitHub" property="og:site_name" /><meta content="object" property="og:type" /><meta content="https://avatars1.githubusercontent.com/u/70142?s=400" property="og:image" /><meta content="jquery/jquery-ui" property="og:title" /><meta content="https://github.com/jquery/jquery-ui" property="og:url" /><meta content="jquery-ui - The official jQuery user interface library." property="og:description" />

    <link rel="assets" href="https://assets-cdn.github.com/">
    <link rel="conduit-xhr" href="https://ghconduit.com:25035">
    <link rel="xhr-socket" href="/_sockets" />

    <meta name="msapplication-TileImage" content="/windows-tile.png" />
    <meta name="msapplication-TileColor" content="#ffffff" />
    <meta name="selected-link" value="repo_source" data-pjax-transient />
      <meta name="google-analytics" content="UA-3769691-2">

    <meta content="collector.githubapp.com" name="octolytics-host" /><meta content="collector-cdn.github.com" name="octolytics-script-host" /><meta content="github" name="octolytics-app-id" /><meta content="5ED1AC98:1163:4D6BF54:53C6DBD0" name="octolytics-dimension-request_id" /><meta content="790690" name="octolytics-actor-id" /><meta content="jmaas" name="octolytics-actor-login" /><meta content="ac5e3878ac6703a37372cb2198cb3b8727e6b43c1e460ad6c9aeaeae1fb16fb4" name="octolytics-actor-hash" />
    

    
    
    <link rel="icon" type="image/x-icon" href="https://assets-cdn.github.com/favicon.ico" />


    <meta content="authenticity_token" name="csrf-param" />
<meta content="emG/+7L/8BheSW6v0SuXUk1FLyZipsA88jcjMyUS0OTXbCP44R1J1skgNnSslr3zXhDy1Q2yQq5a1B9Z5vWylw==" name="csrf-token" />

    <link href="https://assets-cdn.github.com/assets/github-c534ad575b5bb8c3cc3dce9c571df7aa7400dbe9.css" media="all" rel="stylesheet" type="text/css" />
    <link href="https://assets-cdn.github.com/assets/github2-84a1b6179d461213455892ab983182bc2052a7b5.css" media="all" rel="stylesheet" type="text/css" />
    


    <meta http-equiv="x-pjax-version" content="ef2e8ad48b4c98b3a1a0065370258ac2">

      
  <meta name="description" content="jquery-ui - The official jQuery user interface library." />


  <meta content="70142" name="octolytics-dimension-user_id" /><meta content="jquery" name="octolytics-dimension-user_login" /><meta content="478996" name="octolytics-dimension-repository_id" /><meta content="jquery/jquery-ui" name="octolytics-dimension-repository_nwo" /><meta content="true" name="octolytics-dimension-repository_public" /><meta content="false" name="octolytics-dimension-repository_is_fork" /><meta content="478996" name="octolytics-dimension-repository_network_root_id" /><meta content="jquery/jquery-ui" name="octolytics-dimension-repository_network_root_nwo" />

  <link href="https://github.com/jquery/jquery-ui/commits/master.atom" rel="alternate" title="Recent Commits to jquery-ui:master" type="application/atom+xml" />

  </head>


  <body class="logged_in  env-production linux vis-public page-blob">
    <a href="#start-of-content" tabindex="1" class="accessibility-aid js-skip-to-content">Skip to content</a>
    <div class="wrapper">
      
      
      
      


      <div class="header header-logged-in true">
  <div class="container clearfix">

    <a class="header-logo-invertocat" href="https://github.com/" aria-label="Homepage">
  <span class="mega-octicon octicon-mark-github"></span>
</a>


    
    <a href="/notifications" aria-label="You have no unread notifications" class="notification-indicator tooltipped tooltipped-s" data-hotkey="g n">
        <span class="mail-status all-read"></span>
</a>

      <div class="command-bar js-command-bar  in-repository">
          <form accept-charset="UTF-8" action="/search" class="command-bar-form" id="top_search_form" method="get">

<div class="commandbar">
  <span class="message"></span>
  <input type="text" data-hotkey="s" name="q" id="js-command-bar-field" placeholder="Search or type a command" tabindex="1" autocapitalize="off"
    
    data-username="jmaas"
    data-repo="jquery/jquery-ui"
  >
  <div class="display hidden"></div>
</div>

    <input type="hidden" name="nwo" value="jquery/jquery-ui" />

    <div class="select-menu js-menu-container js-select-menu search-context-select-menu">
      <span class="minibutton select-menu-button js-menu-target" role="button" aria-haspopup="true">
        <span class="js-select-button">This repository</span>
      </span>

      <div class="select-menu-modal-holder js-menu-content js-navigation-container" aria-hidden="true">
        <div class="select-menu-modal">

          <div class="select-menu-item js-navigation-item js-this-repository-navigation-item selected">
            <span class="select-menu-item-icon octicon octicon-check"></span>
            <input type="radio" class="js-search-this-repository" name="search_target" value="repository" checked="checked" />
            <div class="select-menu-item-text js-select-button-text">This repository</div>
          </div> <!-- /.select-menu-item -->

          <div class="select-menu-item js-navigation-item js-all-repositories-navigation-item">
            <span class="select-menu-item-icon octicon octicon-check"></span>
            <input type="radio" name="search_target" value="global" />
            <div class="select-menu-item-text js-select-button-text">All repositories</div>
          </div> <!-- /.select-menu-item -->

        </div>
      </div>
    </div>

  <span class="help tooltipped tooltipped-s" aria-label="Show command bar help">
    <span class="octicon octicon-question"></span>
  </span>


  <input type="hidden" name="ref" value="cmdform">

</form>
        <ul class="top-nav">
          <li class="explore"><a href="/explore">Explore</a></li>
            <li><a href="https://gist.github.com">Gist</a></li>
            <li><a href="/blog">Blog</a></li>
          <li><a href="https://help.github.com">Help</a></li>
        </ul>
      </div>

    

<ul id="user-links">
  <li>
    <a href="/jmaas" class="name">
      <img alt="Jörgen Maas" class=" js-avatar" data-user="790690" height="20" src="https://avatars1.githubusercontent.com/u/790690?s=140" width="20" /> jmaas
    </a>
  </li>

  <li class="new-menu dropdown-toggle js-menu-container">
    <a href="#" class="js-menu-target tooltipped tooltipped-s" aria-label="Create new...">
      <span class="octicon octicon-plus"></span>
      <span class="dropdown-arrow"></span>
    </a>

    <div class="new-menu-content js-menu-content">
    </div>
  </li>

  <li>
    <a href="/settings/profile" id="account_settings"
      class="tooltipped tooltipped-s"
      aria-label="Account settings ">
      <span class="octicon octicon-tools"></span>
    </a>
  </li>
  <li>
    <form accept-charset="UTF-8" action="/logout" class="logout-form" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="C/IHtjYjJw2Y34c/qQxMxfaKxFtXXw8RvP7ko6lJzab3i4Y2MdgNv6R91nvAUDryA+oN7u+zjkSjrkSYWsMDgQ==" /></div>
      <button class="sign-out-button tooltipped tooltipped-s" aria-label="Sign out">
        <span class="octicon octicon-sign-out"></span>
      </button>
</form>  </li>

</ul>

<div class="js-new-dropdown-contents hidden">
  

<ul class="dropdown-menu">
  <li>
    <a href="/new"><span class="octicon octicon-repo"></span> New repository</a>
  </li>
  <li>
    <a href="/organizations/new"><span class="octicon octicon-organization"></span> New organization</a>
  </li>


</ul>

</div>


    
  </div>
</div>

      

        



      <div id="start-of-content" class="accessibility-aid"></div>
          <div class="site" itemscope itemtype="http://schema.org/WebPage">
    <div id="js-flash-container">
      
    </div>
    <div class="pagehead repohead instapaper_ignore readability-menu">
      <div class="container">
        
<ul class="pagehead-actions">

    <li class="subscription">
      <form accept-charset="UTF-8" action="/notifications/subscribe" class="js-social-container" data-autosubmit="true" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="cx0JlwZSMS5Na+J6w8SzaKwHQRYJ4yoBMoLuOsVrXDLSHDRw+qDCoRTeMv+9v0dwc/4f8Ksf0UiLatLBWG9UAA==" /></div>  <input id="repository_id" name="repository_id" type="hidden" value="478996" />

    <div class="select-menu js-menu-container js-select-menu">
      <a class="social-count js-social-count" href="/jquery/jquery-ui/watchers">
        639
      </a>
      <a href="/jquery/jquery-ui/subscription"
        class="minibutton select-menu-button with-count js-menu-target" role="button" tabindex="0" aria-haspopup="true">
        <span class="js-select-button">
          <span class="octicon octicon-eye"></span>
          Watch
        </span>
      </a>

      <div class="select-menu-modal-holder">
        <div class="select-menu-modal subscription-menu-modal js-menu-content" aria-hidden="true">
          <div class="select-menu-header">
            <span class="select-menu-title">Notifications</span>
            <span class="octicon octicon-x js-menu-close" role="button" aria-label="Close"></span>
          </div> <!-- /.select-menu-header -->

          <div class="select-menu-list js-navigation-container" role="menu">

            <div class="select-menu-item js-navigation-item selected" role="menuitem" tabindex="0">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <div class="select-menu-item-text">
                <input checked="checked" id="do_included" name="do" type="radio" value="included" />
                <h4>Not watching</h4>
                <span class="description">Be notified when participating or @mentioned.</span>
                <span class="js-select-button-text hidden-select-button-text">
                  <span class="octicon octicon-eye"></span>
                  Watch
                </span>
              </div>
            </div> <!-- /.select-menu-item -->

            <div class="select-menu-item js-navigation-item " role="menuitem" tabindex="0">
              <span class="select-menu-item-icon octicon octicon octicon-check"></span>
              <div class="select-menu-item-text">
                <input id="do_subscribed" name="do" type="radio" value="subscribed" />
                <h4>Watching</h4>
                <span class="description">Be notified of all conversations.</span>
                <span class="js-select-button-text hidden-select-button-text">
                  <span class="octicon octicon-eye"></span>
                  Unwatch
                </span>
              </div>
            </div> <!-- /.select-menu-item -->

            <div class="select-menu-item js-navigation-item " role="menuitem" tabindex="0">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <div class="select-menu-item-text">
                <input id="do_ignore" name="do" type="radio" value="ignore" />
                <h4>Ignoring</h4>
                <span class="description">Never be notified.</span>
                <span class="js-select-button-text hidden-select-button-text">
                  <span class="octicon octicon-mute"></span>
                  Stop ignoring
                </span>
              </div>
            </div> <!-- /.select-menu-item -->

          </div> <!-- /.select-menu-list -->

        </div> <!-- /.select-menu-modal -->
      </div> <!-- /.select-menu-modal-holder -->
    </div> <!-- /.select-menu -->

</form>
    </li>

  <li>
    

  <div class="js-toggler-container js-social-container starring-container ">

    <form accept-charset="UTF-8" action="/jquery/jquery-ui/unstar" class="js-toggler-form starred" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="dNMXTUtSMOwYwEUsHGj5KMNAhjLMmbmRudjjVrw+zMsRSahSRLK2EcxHxigzv7kkiG6rOTDAgrgV3M3EJyBUbw==" /></div>
      <button
        class="minibutton with-count js-toggler-target star-button"
        aria-label="Unstar this repository" title="Unstar jquery/jquery-ui">
        <span class="octicon octicon-star"></span>
        Unstar
      </button>
        <a class="social-count js-social-count" href="/jquery/jquery-ui/stargazers">
          8,441
        </a>
</form>
    <form accept-charset="UTF-8" action="/jquery/jquery-ui/star" class="js-toggler-form unstarred" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="DV0PxIE17WfzfT7EUMhgZCP+SHBEuXSuBYQNsIF4VfEUni1vR6UnBjKa8m4YzAYTW1VW+8DzKpHLQCTbigrr3Q==" /></div>
      <button
        class="minibutton with-count js-toggler-target star-button"
        aria-label="Star this repository" title="Star jquery/jquery-ui">
        <span class="octicon octicon-star"></span>
        Star
      </button>
        <a class="social-count js-social-count" href="/jquery/jquery-ui/stargazers">
          8,441
        </a>
</form>  </div>

  </li>


        <li>
          <a href="/jquery/jquery-ui/fork" class="minibutton with-count js-toggler-target fork-button lighter tooltipped-n" title="Fork your own copy of jquery/jquery-ui to your account" aria-label="Fork your own copy of jquery/jquery-ui to your account" rel="facebox nofollow">
            <span class="octicon octicon-repo-forked"></span>
            Fork
          </a>
          <a href="/jquery/jquery-ui/network" class="social-count">3,098</a>
        </li>

</ul>

        <h1 itemscope itemtype="http://data-vocabulary.org/Breadcrumb" class="entry-title public">
          <span class="repo-label"><span>public</span></span>
          <span class="mega-octicon octicon-repo"></span>
          <span class="author"><a href="/jquery" class="url fn" itemprop="url" rel="author"><span itemprop="title">jquery</span></a></span><!--
       --><span class="path-divider">/</span><!--
       --><strong><a href="/jquery/jquery-ui" class="js-current-repository js-repo-home-link">jquery-ui</a></strong>

          <span class="page-context-loader">
            <img alt="" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
          </span>

        </h1>
      </div><!-- /.container -->
    </div><!-- /.repohead -->

    <div class="container">
      <div class="repository-with-sidebar repo-container new-discussion-timeline js-new-discussion-timeline  ">
        <div class="repository-sidebar clearfix">
            

<div class="sunken-menu vertical-right repo-nav js-repo-nav js-repository-container-pjax js-octicon-loaders">
  <div class="sunken-menu-contents">
    <ul class="sunken-menu-group">
      <li class="tooltipped tooltipped-w" aria-label="Code">
        <a href="/jquery/jquery-ui" aria-label="Code" class="selected js-selected-navigation-item sunken-menu-item" data-hotkey="g c" data-pjax="true" data-selected-links="repo_source repo_downloads repo_commits repo_releases repo_tags repo_branches /jquery/jquery-ui">
          <span class="octicon octicon-code"></span> <span class="full-word">Code</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>


      <li class="tooltipped tooltipped-w" aria-label="Pull Requests">
        <a href="/jquery/jquery-ui/pulls" aria-label="Pull Requests" class="js-selected-navigation-item sunken-menu-item js-disable-pjax" data-hotkey="g p" data-selected-links="repo_pulls /jquery/jquery-ui/pulls">
            <span class="octicon octicon-git-pull-request"></span> <span class="full-word">Pull Requests</span>
            <span class='counter'>46</span>
            <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>


    </ul>
    <div class="sunken-menu-separator"></div>
    <ul class="sunken-menu-group">

      <li class="tooltipped tooltipped-w" aria-label="Pulse">
        <a href="/jquery/jquery-ui/pulse" aria-label="Pulse" class="js-selected-navigation-item sunken-menu-item" data-pjax="true" data-selected-links="pulse /jquery/jquery-ui/pulse">
          <span class="octicon octicon-pulse"></span> <span class="full-word">Pulse</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>

      <li class="tooltipped tooltipped-w" aria-label="Graphs">
        <a href="/jquery/jquery-ui/graphs" aria-label="Graphs" class="js-selected-navigation-item sunken-menu-item" data-pjax="true" data-selected-links="repo_graphs repo_contributors /jquery/jquery-ui/graphs">
          <span class="octicon octicon-graph"></span> <span class="full-word">Graphs</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>

      <li class="tooltipped tooltipped-w" aria-label="Network">
        <a href="/jquery/jquery-ui/network" aria-label="Network" class="js-selected-navigation-item sunken-menu-item js-disable-pjax" data-selected-links="repo_network /jquery/jquery-ui/network">
          <span class="octicon octicon-repo-forked"></span> <span class="full-word">Network</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>
    </ul>


  </div>
</div>

              <div class="only-with-full-nav">
                

  

<div class="clone-url open"
  data-protocol-type="http"
  data-url="/users/set_protocol?protocol_selector=http&amp;protocol_type=clone">
  <h3><strong>HTTPS</strong> clone URL</h3>
  <div class="clone-url-box">
    <input type="text" class="clone js-url-field"
           value="https://github.com/jquery/jquery-ui.git" readonly="readonly">
    <span class="url-box-clippy">
    <button aria-label="Copy to clipboard" class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="https://github.com/jquery/jquery-ui.git" data-copied-hint="Copied!" type="button"><span class="octicon octicon-clippy"></span></button>
    </span>
  </div>
</div>

  

<div class="clone-url "
  data-protocol-type="ssh"
  data-url="/users/set_protocol?protocol_selector=ssh&amp;protocol_type=clone">
  <h3><strong>SSH</strong> clone URL</h3>
  <div class="clone-url-box">
    <input type="text" class="clone js-url-field"
           value="git@github.com:jquery/jquery-ui.git" readonly="readonly">
    <span class="url-box-clippy">
    <button aria-label="Copy to clipboard" class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="git@github.com:jquery/jquery-ui.git" data-copied-hint="Copied!" type="button"><span class="octicon octicon-clippy"></span></button>
    </span>
  </div>
</div>

  

<div class="clone-url "
  data-protocol-type="subversion"
  data-url="/users/set_protocol?protocol_selector=subversion&amp;protocol_type=clone">
  <h3><strong>Subversion</strong> checkout URL</h3>
  <div class="clone-url-box">
    <input type="text" class="clone js-url-field"
           value="https://github.com/jquery/jquery-ui" readonly="readonly">
    <span class="url-box-clippy">
    <button aria-label="Copy to clipboard" class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="https://github.com/jquery/jquery-ui" data-copied-hint="Copied!" type="button"><span class="octicon octicon-clippy"></span></button>
    </span>
  </div>
</div>


<p class="clone-options">You can clone with
      <a href="#" class="js-clone-selector" data-protocol="http">HTTPS</a>,
      <a href="#" class="js-clone-selector" data-protocol="ssh">SSH</a>,
      or <a href="#" class="js-clone-selector" data-protocol="subversion">Subversion</a>.
  <a href="https://help.github.com/articles/which-remote-url-should-i-use" class="help tooltipped tooltipped-n" aria-label="Get help on which URL is right for you.">
    <span class="octicon octicon-question"></span>
  </a>
</p>



                <a href="/jquery/jquery-ui/archive/master.zip"
                   class="minibutton sidebar-button"
                   aria-label="Download jquery/jquery-ui as a zip file"
                   title="Download jquery/jquery-ui as a zip file"
                   rel="nofollow">
                  <span class="octicon octicon-cloud-download"></span>
                  Download ZIP
                </a>
              </div>
        </div><!-- /.repository-sidebar -->

        <div id="js-repo-pjax-container" class="repository-content context-loader-container" data-pjax-container>
          


<a href="/jquery/jquery-ui/blob/98583a6563e7ae98ed67b5d70db2bff814c11e4e/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png" class="hidden js-permalink-shortcut" data-hotkey="y">Permalink</a>

<!-- blob contrib key: blob_contributors:v21:c274af46151f1423e50e002cb94f7de5 -->

<p title="This is a placeholder element" class="js-history-link-replace hidden"></p>

<div class="file-navigation">
  

<div class="select-menu js-menu-container js-select-menu" >
  <span class="minibutton select-menu-button js-menu-target css-truncate" data-hotkey="w"
    data-master-branch="master"
    data-ref="master"
    title="master"
    role="button" aria-label="Switch branches or tags" tabindex="0" aria-haspopup="true">
    <span class="octicon octicon-git-branch"></span>
    <i>branch:</i>
    <span class="js-select-button css-truncate-target">master</span>
  </span>

  <div class="select-menu-modal-holder js-menu-content js-navigation-container" data-pjax aria-hidden="true">

    <div class="select-menu-modal">
      <div class="select-menu-header">
        <span class="select-menu-title">Switch branches/tags</span>
        <span class="octicon octicon-x js-menu-close" role="button" aria-label="Close"></span>
      </div> <!-- /.select-menu-header -->

      <div class="select-menu-filters">
        <div class="select-menu-text-filter">
          <input type="text" aria-label="Filter branches/tags" id="context-commitish-filter-field" class="js-filterable-field js-navigation-enable" placeholder="Filter branches/tags">
        </div>
        <div class="select-menu-tabs">
          <ul>
            <li class="select-menu-tab">
              <a href="#" data-tab-filter="branches" class="js-select-menu-tab">Branches</a>
            </li>
            <li class="select-menu-tab">
              <a href="#" data-tab-filter="tags" class="js-select-menu-tab">Tags</a>
            </li>
          </ul>
        </div><!-- /.select-menu-tabs -->
      </div><!-- /.select-menu-filters -->

      <div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="branches">

        <div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring">


            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/1-8-stable/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1-8-stable"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1-8-stable">1-8-stable</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/1-9-stable/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1-9-stable"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1-9-stable">1-9-stable</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/1-10-stable/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1-10-stable"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1-10-stable">1-10-stable</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/button-icon-span/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="button-icon-span"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="button-icon-span">button-icon-span</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/datepicker/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="datepicker"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="datepicker">datepicker</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/interactions/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="interactions"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="interactions">interactions</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/interactions-polymer/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="interactions-polymer"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="interactions-polymer">interactions-polymer</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item selected">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/master/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="master"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="master">master</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/ref-1029-css-dependency-comments/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="ref-1029-css-dependency-comments"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="ref-1029-css-dependency-comments">ref-1029-css-dependency-comments</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/selectmenu-native-menu/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="selectmenu-native-menu"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="selectmenu-native-menu">selectmenu-native-menu</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/spinner-globalize-1.x/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="spinner-globalize-1.x"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="spinner-globalize-1.x">spinner-globalize-1.x</a>
            </div> <!-- /.select-menu-item -->
        </div>

          <div class="select-menu-no-results">Nothing to show</div>
      </div> <!-- /.select-menu-list -->

      <div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="tags">
        <div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring">


            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.11.0-beta.2/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.11.0-beta.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.11.0-beta.2">1.11.0-beta.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.11.0-beta.1/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.11.0-beta.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.11.0-beta.1">1.11.0-beta.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.11.0/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.11.0"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.11.0">1.11.0</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.4/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.10.4"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.4">1.10.4</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.3/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.10.3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.3">1.10.3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.2/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.10.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.2">1.10.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.1/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.10.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.1">1.10.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.0-rc.1/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.10.0-rc.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.0-rc.1">1.10.0-rc.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.0-beta.1/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.10.0-beta.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.0-beta.1">1.10.0-beta.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.0/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.10.0"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.0">1.10.0</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m7/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.9m7"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m7">1.9m7</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m6/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.9m6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m6">1.9m6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m5/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.9m5"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m5">1.9m5</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m4/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.9m4"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m4">1.9m4</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m3/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.9m3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m3">1.9m3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m2/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.9m2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m2">1.9m2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m1/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.9m1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m1">1.9m1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.2/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.9.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.2">1.9.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.1/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.9.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.1">1.9.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0-rc.1/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.9.0-rc.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0-rc.1">1.9.0-rc.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0m8/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.9.0m8"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0m8">1.9.0m8</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0-beta.1/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.9.0-beta.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0-beta.1">1.9.0-beta.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.9.0"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0">1.9.0</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8rc3/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.8rc3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8rc3">1.8rc3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8rc2/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.8rc2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8rc2">1.8rc2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8rc1/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.8rc1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8rc1">1.8rc1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8b1/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.8b1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8b1">1.8b1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8a2/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.8a2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8a2">1.8a2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8a1/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.8a1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8a1">1.8a1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.24/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.8.24"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.24">1.8.24</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.23/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.8.23"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.23">1.8.23</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.22/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.8.22"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.22">1.8.22</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.21/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.8.21"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.21">1.8.21</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.20/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.8.20"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.20">1.8.20</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.19/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.8.19"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.19">1.8.19</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.18/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.8.18"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.18">1.8.18</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.17/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.8.17"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.17">1.8.17</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.16/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.8.16"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.16">1.8.16</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.15/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.8.15"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.15">1.8.15</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.14/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.8.14"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.14">1.8.14</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.13/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.8.13"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.13">1.8.13</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.12/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.8.12"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.12">1.8.12</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.11/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.8.11"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.11">1.8.11</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.10/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.8.10"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.10">1.8.10</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.9/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.8.9"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.9">1.8.9</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.8/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.8.8"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.8">1.8.8</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.7/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.8.7"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.7">1.8.7</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.6/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.8.6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.6">1.8.6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.5/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.8.5"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.5">1.8.5</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.4/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.8.4"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.4">1.8.4</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.3/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.8.3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.3">1.8.3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.2/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.8.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.2">1.8.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.1/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.8.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.1">1.8.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.8"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8">1.8</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.7/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.7"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.7">1.7</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc6/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.6rc6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc6">1.6rc6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc5/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.6rc5"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc5">1.6rc5</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc3/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.6rc3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc3">1.6rc3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc2/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.6rc2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc2">1.6rc2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6">1.6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.5.2/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.5.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.5.2">1.5.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.5.1/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
                 data-name="1.5.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.5.1">1.5.1</a>
            </div> <!-- /.select-menu-item -->
        </div>

        <div class="select-menu-no-results">Nothing to show</div>
      </div> <!-- /.select-menu-list -->

    </div> <!-- /.select-menu-modal -->
  </div> <!-- /.select-menu-modal-holder -->
</div> <!-- /.select-menu -->

  <div class="button-group right">
    <a href="/jquery/jquery-ui/find/master"
          class="js-show-file-finder minibutton empty-icon tooltipped tooltipped-s"
          data-pjax
          data-hotkey="t"
          aria-label="Quickly jump between files">
      <span class="octicon octicon-list-unordered"></span>
    </a>
    <button class="js-zeroclipboard minibutton zeroclipboard-button"
          data-clipboard-text="themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
          aria-label="Copy to clipboard"
          data-copied-hint="Copied!">
      <span class="octicon octicon-clippy"></span>
    </button>
  </div>

  <div class="breadcrumb">
    <span class='repo-root js-repo-root'><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">jquery-ui</span></a></span></span><span class="separator"> / </span><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui/tree/master/themes" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">themes</span></a></span><span class="separator"> / </span><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui/tree/master/themes/base" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">base</span></a></span><span class="separator"> / </span><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui/tree/master/themes/base/images" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">images</span></a></span><span class="separator"> / </span><strong class="final-path">ui-bg_glass_55_fbf9ee_1x400.png</strong>
  </div>
</div>


  <div class="commit file-history-tease">
      <img alt="Travis Carden" class="main-avatar js-avatar" data-user="959246" height="24" src="https://avatars1.githubusercontent.com/u/959246?s=140" width="24" />
      <span class="author"><a href="/TravisCarden" rel="contributor">TravisCarden</a></span>
      <time datetime="2013-02-04T13:02:57-05:00" is="relative-time">February 04, 2013</time>
      <div class="commit-title">
          <a href="/jquery/jquery-ui/commit/a61af0b205c865b9c4f949bcc1bebe79994519d0" class="message" data-pjax="true" title="Fix file permissions in themes/base/images.">Fix file permissions in themes/base/images.</a>
      </div>

    <div class="participation">
      <p class="quickstat"><a href="#blob_contributors_box" rel="facebox"><strong>2</strong>  contributors</a></p>
          <a class="avatar tooltipped tooltipped-s" aria-label="TravisCarden" href="/jquery/jquery-ui/commits/master/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png?author=TravisCarden"><img alt="Travis Carden" class=" js-avatar" data-user="959246" height="20" src="https://avatars1.githubusercontent.com/u/959246?s=140" width="20" /></a>
    <a class="avatar tooltipped tooltipped-s" aria-label="scottjehl" href="/jquery/jquery-ui/commits/master/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png?author=scottjehl"><img alt="Scott Jehl" class=" js-avatar" data-user="214783" height="20" src="https://avatars2.githubusercontent.com/u/214783?s=140" width="20" /></a>


    </div>
    <div id="blob_contributors_box" style="display:none">
      <h2 class="facebox-header">Users who have contributed to this file</h2>
      <ul class="facebox-user-list">
          <li class="facebox-user-list-item">
            <img alt="Travis Carden" class=" js-avatar" data-user="959246" height="24" src="https://avatars1.githubusercontent.com/u/959246?s=140" width="24" />
            <a href="/TravisCarden">TravisCarden</a>
          </li>
          <li class="facebox-user-list-item">
            <img alt="Scott Jehl" class=" js-avatar" data-user="214783" height="24" src="https://avatars2.githubusercontent.com/u/214783?s=140" width="24" />
            <a href="/scottjehl">scottjehl</a>
          </li>
      </ul>
    </div>
  </div>

<div class="file-box">
  <div class="file">
    <div class="meta clearfix">
      <div class="info file-name">
        <span class="icon"><b class="octicon octicon-file-text"></b></span>
        <span class="mode" title="File Mode">file</span>
        <span class="meta-divider"></span>
        <span>0.12 kb</span>
      </div>
      <div class="actions">
        <div class="button-group">
          <a href="/jquery/jquery-ui/raw/master/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png" class="minibutton " id="raw-url">Raw</a>
          <a href="/jquery/jquery-ui/commits/master/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png" class="minibutton " rel="nofollow">History</a>
        </div><!-- /.button-group -->

            <a class="minibutton danger empty-icon tooltipped tooltipped-s"
               href="/jquery/jquery-ui/delete/master/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png"
               aria-label="Fork this project and delete file"
               data-method="post" data-test-id="delete-blob-file" rel="nofollow">

          Delete
        </a>
      </div><!-- /.actions -->
    </div>
      
  <div class="blob-wrapper data type-text js-blob-data">
      <div class="image js-image">
          <span class="border-wrap"><img src="https://raw.githubusercontent.com/jquery/jquery-ui/master/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png" alt="themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png" /></span>
      </div>
  </div>

  </div>
</div>

<a href="#jump-to-line" rel="facebox[.linejump]" data-hotkey="l" class="js-jump-to-line" style="display:none">Jump to Line</a>
<div id="jump-to-line" style="display:none">
  <form accept-charset="UTF-8" class="js-jump-to-line-form">
    <input class="linejump-input js-jump-to-line-field" type="text" placeholder="Jump to line&hellip;" autofocus>
    <button type="submit" class="button">Go</button>
  </form>
</div>

        </div>

      </div><!-- /.repo-container -->
      <div class="modal-backdrop"></div>
    </div><!-- /.container -->
  </div><!-- /.site -->


    </div><!-- /.wrapper -->

      <div class="container">
  <div class="site-footer">
    <ul class="site-footer-links right">
      <li><a href="https://status.github.com/">Status</a></li>
      <li><a href="http://developer.github.com">API</a></li>
      <li><a href="http://training.github.com">Training</a></li>
      <li><a href="http://shop.github.com">Shop</a></li>
      <li><a href="/blog">Blog</a></li>
      <li><a href="/about">About</a></li>

    </ul>

    <a href="/">
      <span class="mega-octicon octicon-mark-github" title="GitHub"></span>
    </a>

    <ul class="site-footer-links">
      <li>&copy; 2014 <span title="0.04292s from github-fe130-cp1-prd.iad.github.net">GitHub</span>, Inc.</li>
        <li><a href="/site/terms">Terms</a></li>
        <li><a href="/site/privacy">Privacy</a></li>
        <li><a href="/security">Security</a></li>
        <li><a href="/contact">Contact</a></li>
    </ul>
  </div><!-- /.site-footer -->
</div><!-- /.container -->


    <div class="fullscreen-overlay js-fullscreen-overlay" id="fullscreen_overlay">
  <div class="fullscreen-container js-fullscreen-container">
    <div class="textarea-wrap">
      <textarea name="fullscreen-contents" id="fullscreen-contents" class="fullscreen-contents js-fullscreen-contents" placeholder="" data-suggester="fullscreen_suggester"></textarea>
    </div>
  </div>
  <div class="fullscreen-sidebar">
    <a href="#" class="exit-fullscreen js-exit-fullscreen tooltipped tooltipped-w" aria-label="Exit Zen Mode">
      <span class="mega-octicon octicon-screen-normal"></span>
    </a>
    <a href="#" class="theme-switcher js-theme-switcher tooltipped tooltipped-w"
      aria-label="Switch themes">
      <span class="octicon octicon-color-mode"></span>
    </a>
  </div>
</div>



    <div id="ajax-error-message" class="flash flash-error">
      <span class="octicon octicon-alert"></span>
      <a href="#" class="octicon octicon-x close js-ajax-error-dismiss" aria-label="Dismiss error"></a>
      Something went wrong with that request. Please try again.
    </div>


      <script crossorigin="anonymous" src="https://assets-cdn.github.com/assets/frameworks-df9e4beac80276ed3dfa56be0d97b536d0f5ee12.js" type="text/javascript"></script>
      <script async="async" crossorigin="anonymous" src="https://assets-cdn.github.com/assets/github-534eef699bbadaf1454b432e14a2ab0a68c7ddf4.js" type="text/javascript"></script>
      
      
        <script async src="https://www.google-analytics.com/analytics.js"></script>
  </body>
</html>

  0707010000018C000081A40000000000000000000000015ECE244400011C5B000000000000000000000000000000000000004000000000cobbler-3.1.2/web/static/images/ui-bg_glass_65_ffffff_1x400.png   




<!DOCTYPE html>
<html class="   ">
  <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# object: http://ogp.me/ns/object# article: http://ogp.me/ns/article# profile: http://ogp.me/ns/profile#">
    <meta charset='utf-8'>
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    
    
    <title>jquery-ui/themes/base/images/ui-bg_glass_65_ffffff_1x400.png at master · jquery/jquery-ui</title>
    <link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="GitHub" />
    <link rel="fluid-icon" href="https://github.com/fluidicon.png" title="GitHub" />
    <link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-114.png" />
    <link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114.png" />
    <link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-144.png" />
    <link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144.png" />
    <meta property="fb:app_id" content="1401488693436528"/>

      <meta content="@github" name="twitter:site" /><meta content="summary" name="twitter:card" /><meta content="jquery/jquery-ui" name="twitter:title" /><meta content="jquery-ui - The official jQuery user interface library." name="twitter:description" /><meta content="https://avatars1.githubusercontent.com/u/70142?s=400" name="twitter:image:src" />
<meta content="GitHub" property="og:site_name" /><meta content="object" property="og:type" /><meta content="https://avatars1.githubusercontent.com/u/70142?s=400" property="og:image" /><meta content="jquery/jquery-ui" property="og:title" /><meta content="https://github.com/jquery/jquery-ui" property="og:url" /><meta content="jquery-ui - The official jQuery user interface library." property="og:description" />

    <link rel="assets" href="https://assets-cdn.github.com/">
    <link rel="conduit-xhr" href="https://ghconduit.com:25035">
    <link rel="xhr-socket" href="/_sockets" />

    <meta name="msapplication-TileImage" content="/windows-tile.png" />
    <meta name="msapplication-TileColor" content="#ffffff" />
    <meta name="selected-link" value="repo_source" data-pjax-transient />
      <meta name="google-analytics" content="UA-3769691-2">

    <meta content="collector.githubapp.com" name="octolytics-host" /><meta content="collector-cdn.github.com" name="octolytics-script-host" /><meta content="github" name="octolytics-app-id" /><meta content="5ED1AC98:1163:4D6BD75:53C6DBCB" name="octolytics-dimension-request_id" /><meta content="790690" name="octolytics-actor-id" /><meta content="jmaas" name="octolytics-actor-login" /><meta content="ac5e3878ac6703a37372cb2198cb3b8727e6b43c1e460ad6c9aeaeae1fb16fb4" name="octolytics-actor-hash" />
    

    
    
    <link rel="icon" type="image/x-icon" href="https://assets-cdn.github.com/favicon.ico" />


    <meta content="authenticity_token" name="csrf-param" />
<meta content="EM6KTIn6EZWP4WN1MzbOTuq6f2b2AGH8HPIQdd8pzc47Bm5l3w0pZtOz8hcdOOMZxW3Q4Zu6WbjBxAhoynFqOg==" name="csrf-token" />

    <link href="https://assets-cdn.github.com/assets/github-c534ad575b5bb8c3cc3dce9c571df7aa7400dbe9.css" media="all" rel="stylesheet" type="text/css" />
    <link href="https://assets-cdn.github.com/assets/github2-84a1b6179d461213455892ab983182bc2052a7b5.css" media="all" rel="stylesheet" type="text/css" />
    


    <meta http-equiv="x-pjax-version" content="ef2e8ad48b4c98b3a1a0065370258ac2">

      
  <meta name="description" content="jquery-ui - The official jQuery user interface library." />


  <meta content="70142" name="octolytics-dimension-user_id" /><meta content="jquery" name="octolytics-dimension-user_login" /><meta content="478996" name="octolytics-dimension-repository_id" /><meta content="jquery/jquery-ui" name="octolytics-dimension-repository_nwo" /><meta content="true" name="octolytics-dimension-repository_public" /><meta content="false" name="octolytics-dimension-repository_is_fork" /><meta content="478996" name="octolytics-dimension-repository_network_root_id" /><meta content="jquery/jquery-ui" name="octolytics-dimension-repository_network_root_nwo" />

  <link href="https://github.com/jquery/jquery-ui/commits/master.atom" rel="alternate" title="Recent Commits to jquery-ui:master" type="application/atom+xml" />

  </head>


  <body class="logged_in  env-production linux vis-public page-blob">
    <a href="#start-of-content" tabindex="1" class="accessibility-aid js-skip-to-content">Skip to content</a>
    <div class="wrapper">
      
      
      
      


      <div class="header header-logged-in true">
  <div class="container clearfix">

    <a class="header-logo-invertocat" href="https://github.com/" aria-label="Homepage">
  <span class="mega-octicon octicon-mark-github"></span>
</a>


    
    <a href="/notifications" aria-label="You have no unread notifications" class="notification-indicator tooltipped tooltipped-s" data-hotkey="g n">
        <span class="mail-status all-read"></span>
</a>

      <div class="command-bar js-command-bar  in-repository">
          <form accept-charset="UTF-8" action="/search" class="command-bar-form" id="top_search_form" method="get">

<div class="commandbar">
  <span class="message"></span>
  <input type="text" data-hotkey="s" name="q" id="js-command-bar-field" placeholder="Search or type a command" tabindex="1" autocapitalize="off"
    
    data-username="jmaas"
    data-repo="jquery/jquery-ui"
  >
  <div class="display hidden"></div>
</div>

    <input type="hidden" name="nwo" value="jquery/jquery-ui" />

    <div class="select-menu js-menu-container js-select-menu search-context-select-menu">
      <span class="minibutton select-menu-button js-menu-target" role="button" aria-haspopup="true">
        <span class="js-select-button">This repository</span>
      </span>

      <div class="select-menu-modal-holder js-menu-content js-navigation-container" aria-hidden="true">
        <div class="select-menu-modal">

          <div class="select-menu-item js-navigation-item js-this-repository-navigation-item selected">
            <span class="select-menu-item-icon octicon octicon-check"></span>
            <input type="radio" class="js-search-this-repository" name="search_target" value="repository" checked="checked" />
            <div class="select-menu-item-text js-select-button-text">This repository</div>
          </div> <!-- /.select-menu-item -->

          <div class="select-menu-item js-navigation-item js-all-repositories-navigation-item">
            <span class="select-menu-item-icon octicon octicon-check"></span>
            <input type="radio" name="search_target" value="global" />
            <div class="select-menu-item-text js-select-button-text">All repositories</div>
          </div> <!-- /.select-menu-item -->

        </div>
      </div>
    </div>

  <span class="help tooltipped tooltipped-s" aria-label="Show command bar help">
    <span class="octicon octicon-question"></span>
  </span>


  <input type="hidden" name="ref" value="cmdform">

</form>
        <ul class="top-nav">
          <li class="explore"><a href="/explore">Explore</a></li>
            <li><a href="https://gist.github.com">Gist</a></li>
            <li><a href="/blog">Blog</a></li>
          <li><a href="https://help.github.com">Help</a></li>
        </ul>
      </div>

    

<ul id="user-links">
  <li>
    <a href="/jmaas" class="name">
      <img alt="Jörgen Maas" class=" js-avatar" data-user="790690" height="20" src="https://avatars1.githubusercontent.com/u/790690?s=140" width="20" /> jmaas
    </a>
  </li>

  <li class="new-menu dropdown-toggle js-menu-container">
    <a href="#" class="js-menu-target tooltipped tooltipped-s" aria-label="Create new...">
      <span class="octicon octicon-plus"></span>
      <span class="dropdown-arrow"></span>
    </a>

    <div class="new-menu-content js-menu-content">
    </div>
  </li>

  <li>
    <a href="/settings/profile" id="account_settings"
      class="tooltipped tooltipped-s"
      aria-label="Account settings ">
      <span class="octicon octicon-tools"></span>
    </a>
  </li>
  <li>
    <form accept-charset="UTF-8" action="/logout" class="logout-form" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="cUUi9QkeQhVsZpnFzGTR7FsjivJb5R60h+eMrcoP7gjZWlnUdt3WhRmdIqz1qCQwB6oCTpHHwCKLUnrHnyNXaw==" /></div>
      <button class="sign-out-button tooltipped tooltipped-s" aria-label="Sign out">
        <span class="octicon octicon-sign-out"></span>
      </button>
</form>  </li>

</ul>

<div class="js-new-dropdown-contents hidden">
  

<ul class="dropdown-menu">
  <li>
    <a href="/new"><span class="octicon octicon-repo"></span> New repository</a>
  </li>
  <li>
    <a href="/organizations/new"><span class="octicon octicon-organization"></span> New organization</a>
  </li>


</ul>

</div>


    
  </div>
</div>

      

        



      <div id="start-of-content" class="accessibility-aid"></div>
          <div class="site" itemscope itemtype="http://schema.org/WebPage">
    <div id="js-flash-container">
      
    </div>
    <div class="pagehead repohead instapaper_ignore readability-menu">
      <div class="container">
        
<ul class="pagehead-actions">

    <li class="subscription">
      <form accept-charset="UTF-8" action="/notifications/subscribe" class="js-social-container" data-autosubmit="true" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="C+hFx4sLi7p828D/P6esluzXzPZFPCj4JDS84bpUvC6DvhcbE/6hwZxrxb9W0D/RFaFBmLeZc7phgHQpoPF1bA==" /></div>  <input id="repository_id" name="repository_id" type="hidden" value="478996" />

    <div class="select-menu js-menu-container js-select-menu">
      <a class="social-count js-social-count" href="/jquery/jquery-ui/watchers">
        639
      </a>
      <a href="/jquery/jquery-ui/subscription"
        class="minibutton select-menu-button with-count js-menu-target" role="button" tabindex="0" aria-haspopup="true">
        <span class="js-select-button">
          <span class="octicon octicon-eye"></span>
          Watch
        </span>
      </a>

      <div class="select-menu-modal-holder">
        <div class="select-menu-modal subscription-menu-modal js-menu-content" aria-hidden="true">
          <div class="select-menu-header">
            <span class="select-menu-title">Notifications</span>
            <span class="octicon octicon-x js-menu-close" role="button" aria-label="Close"></span>
          </div> <!-- /.select-menu-header -->

          <div class="select-menu-list js-navigation-container" role="menu">

            <div class="select-menu-item js-navigation-item selected" role="menuitem" tabindex="0">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <div class="select-menu-item-text">
                <input checked="checked" id="do_included" name="do" type="radio" value="included" />
                <h4>Not watching</h4>
                <span class="description">Be notified when participating or @mentioned.</span>
                <span class="js-select-button-text hidden-select-button-text">
                  <span class="octicon octicon-eye"></span>
                  Watch
                </span>
              </div>
            </div> <!-- /.select-menu-item -->

            <div class="select-menu-item js-navigation-item " role="menuitem" tabindex="0">
              <span class="select-menu-item-icon octicon octicon octicon-check"></span>
              <div class="select-menu-item-text">
                <input id="do_subscribed" name="do" type="radio" value="subscribed" />
                <h4>Watching</h4>
                <span class="description">Be notified of all conversations.</span>
                <span class="js-select-button-text hidden-select-button-text">
                  <span class="octicon octicon-eye"></span>
                  Unwatch
                </span>
              </div>
            </div> <!-- /.select-menu-item -->

            <div class="select-menu-item js-navigation-item " role="menuitem" tabindex="0">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <div class="select-menu-item-text">
                <input id="do_ignore" name="do" type="radio" value="ignore" />
                <h4>Ignoring</h4>
                <span class="description">Never be notified.</span>
                <span class="js-select-button-text hidden-select-button-text">
                  <span class="octicon octicon-mute"></span>
                  Stop ignoring
                </span>
              </div>
            </div> <!-- /.select-menu-item -->

          </div> <!-- /.select-menu-list -->

        </div> <!-- /.select-menu-modal -->
      </div> <!-- /.select-menu-modal-holder -->
    </div> <!-- /.select-menu -->

</form>
    </li>

  <li>
    

  <div class="js-toggler-container js-social-container starring-container ">

    <form accept-charset="UTF-8" action="/jquery/jquery-ui/unstar" class="js-toggler-form starred" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="+ItmtutAiAlrF1yEOZ7ph3MoKd0jPi5iJ0q+n2qbVRothfuw5pMtwSajBkENxy6NkihbpZz+L4PQtjjZRUBQdw==" /></div>
      <button
        class="minibutton with-count js-toggler-target star-button"
        aria-label="Unstar this repository" title="Unstar jquery/jquery-ui">
        <span class="octicon octicon-star"></span>
        Unstar
      </button>
        <a class="social-count js-social-count" href="/jquery/jquery-ui/stargazers">
          8,441
        </a>
</form>
    <form accept-charset="UTF-8" action="/jquery/jquery-ui/star" class="js-toggler-form unstarred" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="vnIajdVdy6y3hw5y9ejp3hb+5sxJxOqST3xNIcdy6GTLhM1oVoWeZFka6RVgSW+lKR/MRFQM4I5St2UpdTo8sg==" /></div>
      <button
        class="minibutton with-count js-toggler-target star-button"
        aria-label="Star this repository" title="Star jquery/jquery-ui">
        <span class="octicon octicon-star"></span>
        Star
      </button>
        <a class="social-count js-social-count" href="/jquery/jquery-ui/stargazers">
          8,441
        </a>
</form>  </div>

  </li>


        <li>
          <a href="/jquery/jquery-ui/fork" class="minibutton with-count js-toggler-target fork-button lighter tooltipped-n" title="Fork your own copy of jquery/jquery-ui to your account" aria-label="Fork your own copy of jquery/jquery-ui to your account" rel="facebox nofollow">
            <span class="octicon octicon-repo-forked"></span>
            Fork
          </a>
          <a href="/jquery/jquery-ui/network" class="social-count">3,098</a>
        </li>

</ul>

        <h1 itemscope itemtype="http://data-vocabulary.org/Breadcrumb" class="entry-title public">
          <span class="repo-label"><span>public</span></span>
          <span class="mega-octicon octicon-repo"></span>
          <span class="author"><a href="/jquery" class="url fn" itemprop="url" rel="author"><span itemprop="title">jquery</span></a></span><!--
       --><span class="path-divider">/</span><!--
       --><strong><a href="/jquery/jquery-ui" class="js-current-repository js-repo-home-link">jquery-ui</a></strong>

          <span class="page-context-loader">
            <img alt="" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
          </span>

        </h1>
      </div><!-- /.container -->
    </div><!-- /.repohead -->

    <div class="container">
      <div class="repository-with-sidebar repo-container new-discussion-timeline js-new-discussion-timeline  ">
        <div class="repository-sidebar clearfix">
            

<div class="sunken-menu vertical-right repo-nav js-repo-nav js-repository-container-pjax js-octicon-loaders">
  <div class="sunken-menu-contents">
    <ul class="sunken-menu-group">
      <li class="tooltipped tooltipped-w" aria-label="Code">
        <a href="/jquery/jquery-ui" aria-label="Code" class="selected js-selected-navigation-item sunken-menu-item" data-hotkey="g c" data-pjax="true" data-selected-links="repo_source repo_downloads repo_commits repo_releases repo_tags repo_branches /jquery/jquery-ui">
          <span class="octicon octicon-code"></span> <span class="full-word">Code</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>


      <li class="tooltipped tooltipped-w" aria-label="Pull Requests">
        <a href="/jquery/jquery-ui/pulls" aria-label="Pull Requests" class="js-selected-navigation-item sunken-menu-item js-disable-pjax" data-hotkey="g p" data-selected-links="repo_pulls /jquery/jquery-ui/pulls">
            <span class="octicon octicon-git-pull-request"></span> <span class="full-word">Pull Requests</span>
            <span class='counter'>46</span>
            <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>


    </ul>
    <div class="sunken-menu-separator"></div>
    <ul class="sunken-menu-group">

      <li class="tooltipped tooltipped-w" aria-label="Pulse">
        <a href="/jquery/jquery-ui/pulse" aria-label="Pulse" class="js-selected-navigation-item sunken-menu-item" data-pjax="true" data-selected-links="pulse /jquery/jquery-ui/pulse">
          <span class="octicon octicon-pulse"></span> <span class="full-word">Pulse</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>

      <li class="tooltipped tooltipped-w" aria-label="Graphs">
        <a href="/jquery/jquery-ui/graphs" aria-label="Graphs" class="js-selected-navigation-item sunken-menu-item" data-pjax="true" data-selected-links="repo_graphs repo_contributors /jquery/jquery-ui/graphs">
          <span class="octicon octicon-graph"></span> <span class="full-word">Graphs</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>

      <li class="tooltipped tooltipped-w" aria-label="Network">
        <a href="/jquery/jquery-ui/network" aria-label="Network" class="js-selected-navigation-item sunken-menu-item js-disable-pjax" data-selected-links="repo_network /jquery/jquery-ui/network">
          <span class="octicon octicon-repo-forked"></span> <span class="full-word">Network</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>
    </ul>


  </div>
</div>

              <div class="only-with-full-nav">
                

  

<div class="clone-url open"
  data-protocol-type="http"
  data-url="/users/set_protocol?protocol_selector=http&amp;protocol_type=clone">
  <h3><strong>HTTPS</strong> clone URL</h3>
  <div class="clone-url-box">
    <input type="text" class="clone js-url-field"
           value="https://github.com/jquery/jquery-ui.git" readonly="readonly">
    <span class="url-box-clippy">
    <button aria-label="Copy to clipboard" class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="https://github.com/jquery/jquery-ui.git" data-copied-hint="Copied!" type="button"><span class="octicon octicon-clippy"></span></button>
    </span>
  </div>
</div>

  

<div class="clone-url "
  data-protocol-type="ssh"
  data-url="/users/set_protocol?protocol_selector=ssh&amp;protocol_type=clone">
  <h3><strong>SSH</strong> clone URL</h3>
  <div class="clone-url-box">
    <input type="text" class="clone js-url-field"
           value="git@github.com:jquery/jquery-ui.git" readonly="readonly">
    <span class="url-box-clippy">
    <button aria-label="Copy to clipboard" class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="git@github.com:jquery/jquery-ui.git" data-copied-hint="Copied!" type="button"><span class="octicon octicon-clippy"></span></button>
    </span>
  </div>
</div>

  

<div class="clone-url "
  data-protocol-type="subversion"
  data-url="/users/set_protocol?protocol_selector=subversion&amp;protocol_type=clone">
  <h3><strong>Subversion</strong> checkout URL</h3>
  <div class="clone-url-box">
    <input type="text" class="clone js-url-field"
           value="https://github.com/jquery/jquery-ui" readonly="readonly">
    <span class="url-box-clippy">
    <button aria-label="Copy to clipboard" class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="https://github.com/jquery/jquery-ui" data-copied-hint="Copied!" type="button"><span class="octicon octicon-clippy"></span></button>
    </span>
  </div>
</div>


<p class="clone-options">You can clone with
      <a href="#" class="js-clone-selector" data-protocol="http">HTTPS</a>,
      <a href="#" class="js-clone-selector" data-protocol="ssh">SSH</a>,
      or <a href="#" class="js-clone-selector" data-protocol="subversion">Subversion</a>.
  <a href="https://help.github.com/articles/which-remote-url-should-i-use" class="help tooltipped tooltipped-n" aria-label="Get help on which URL is right for you.">
    <span class="octicon octicon-question"></span>
  </a>
</p>



                <a href="/jquery/jquery-ui/archive/master.zip"
                   class="minibutton sidebar-button"
                   aria-label="Download jquery/jquery-ui as a zip file"
                   title="Download jquery/jquery-ui as a zip file"
                   rel="nofollow">
                  <span class="octicon octicon-cloud-download"></span>
                  Download ZIP
                </a>
              </div>
        </div><!-- /.repository-sidebar -->

        <div id="js-repo-pjax-container" class="repository-content context-loader-container" data-pjax-container>
          


<a href="/jquery/jquery-ui/blob/98583a6563e7ae98ed67b5d70db2bff814c11e4e/themes/base/images/ui-bg_glass_65_ffffff_1x400.png" class="hidden js-permalink-shortcut" data-hotkey="y">Permalink</a>

<!-- blob contrib key: blob_contributors:v21:045433ffb80be9c07a57224bd1e95970 -->

<p title="This is a placeholder element" class="js-history-link-replace hidden"></p>

<div class="file-navigation">
  

<div class="select-menu js-menu-container js-select-menu" >
  <span class="minibutton select-menu-button js-menu-target css-truncate" data-hotkey="w"
    data-master-branch="master"
    data-ref="master"
    title="master"
    role="button" aria-label="Switch branches or tags" tabindex="0" aria-haspopup="true">
    <span class="octicon octicon-git-branch"></span>
    <i>branch:</i>
    <span class="js-select-button css-truncate-target">master</span>
  </span>

  <div class="select-menu-modal-holder js-menu-content js-navigation-container" data-pjax aria-hidden="true">

    <div class="select-menu-modal">
      <div class="select-menu-header">
        <span class="select-menu-title">Switch branches/tags</span>
        <span class="octicon octicon-x js-menu-close" role="button" aria-label="Close"></span>
      </div> <!-- /.select-menu-header -->

      <div class="select-menu-filters">
        <div class="select-menu-text-filter">
          <input type="text" aria-label="Filter branches/tags" id="context-commitish-filter-field" class="js-filterable-field js-navigation-enable" placeholder="Filter branches/tags">
        </div>
        <div class="select-menu-tabs">
          <ul>
            <li class="select-menu-tab">
              <a href="#" data-tab-filter="branches" class="js-select-menu-tab">Branches</a>
            </li>
            <li class="select-menu-tab">
              <a href="#" data-tab-filter="tags" class="js-select-menu-tab">Tags</a>
            </li>
          </ul>
        </div><!-- /.select-menu-tabs -->
      </div><!-- /.select-menu-filters -->

      <div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="branches">

        <div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring">


            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/1-8-stable/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1-8-stable"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1-8-stable">1-8-stable</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/1-9-stable/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1-9-stable"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1-9-stable">1-9-stable</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/1-10-stable/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1-10-stable"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1-10-stable">1-10-stable</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/button-icon-span/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="button-icon-span"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="button-icon-span">button-icon-span</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/datepicker/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="datepicker"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="datepicker">datepicker</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/interactions/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="interactions"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="interactions">interactions</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/interactions-polymer/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="interactions-polymer"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="interactions-polymer">interactions-polymer</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item selected">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/master/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="master"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="master">master</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/ref-1029-css-dependency-comments/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="ref-1029-css-dependency-comments"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="ref-1029-css-dependency-comments">ref-1029-css-dependency-comments</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/selectmenu-native-menu/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="selectmenu-native-menu"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="selectmenu-native-menu">selectmenu-native-menu</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/spinner-globalize-1.x/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="spinner-globalize-1.x"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="spinner-globalize-1.x">spinner-globalize-1.x</a>
            </div> <!-- /.select-menu-item -->
        </div>

          <div class="select-menu-no-results">Nothing to show</div>
      </div> <!-- /.select-menu-list -->

      <div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="tags">
        <div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring">


            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.11.0-beta.2/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.11.0-beta.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.11.0-beta.2">1.11.0-beta.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.11.0-beta.1/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.11.0-beta.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.11.0-beta.1">1.11.0-beta.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.11.0/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.11.0"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.11.0">1.11.0</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.4/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.10.4"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.4">1.10.4</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.3/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.10.3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.3">1.10.3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.2/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.10.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.2">1.10.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.1/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.10.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.1">1.10.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.0-rc.1/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.10.0-rc.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.0-rc.1">1.10.0-rc.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.0-beta.1/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.10.0-beta.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.0-beta.1">1.10.0-beta.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.0/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.10.0"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.0">1.10.0</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m7/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.9m7"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m7">1.9m7</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m6/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.9m6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m6">1.9m6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m5/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.9m5"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m5">1.9m5</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m4/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.9m4"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m4">1.9m4</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m3/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.9m3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m3">1.9m3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m2/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.9m2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m2">1.9m2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m1/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.9m1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m1">1.9m1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.2/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.9.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.2">1.9.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.1/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.9.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.1">1.9.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0-rc.1/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.9.0-rc.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0-rc.1">1.9.0-rc.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0m8/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.9.0m8"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0m8">1.9.0m8</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0-beta.1/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.9.0-beta.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0-beta.1">1.9.0-beta.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.9.0"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0">1.9.0</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8rc3/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.8rc3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8rc3">1.8rc3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8rc2/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.8rc2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8rc2">1.8rc2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8rc1/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.8rc1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8rc1">1.8rc1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8b1/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.8b1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8b1">1.8b1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8a2/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.8a2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8a2">1.8a2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8a1/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.8a1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8a1">1.8a1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.24/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.8.24"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.24">1.8.24</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.23/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.8.23"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.23">1.8.23</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.22/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.8.22"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.22">1.8.22</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.21/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.8.21"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.21">1.8.21</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.20/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.8.20"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.20">1.8.20</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.19/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.8.19"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.19">1.8.19</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.18/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.8.18"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.18">1.8.18</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.17/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.8.17"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.17">1.8.17</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.16/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.8.16"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.16">1.8.16</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.15/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.8.15"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.15">1.8.15</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.14/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.8.14"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.14">1.8.14</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.13/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.8.13"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.13">1.8.13</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.12/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.8.12"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.12">1.8.12</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.11/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.8.11"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.11">1.8.11</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.10/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.8.10"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.10">1.8.10</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.9/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.8.9"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.9">1.8.9</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.8/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.8.8"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.8">1.8.8</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.7/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.8.7"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.7">1.8.7</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.6/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.8.6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.6">1.8.6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.5/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.8.5"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.5">1.8.5</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.4/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.8.4"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.4">1.8.4</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.3/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.8.3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.3">1.8.3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.2/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.8.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.2">1.8.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.1/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.8.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.1">1.8.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.8"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8">1.8</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.7/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.7"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.7">1.7</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc6/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.6rc6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc6">1.6rc6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc5/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.6rc5"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc5">1.6rc5</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc3/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.6rc3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc3">1.6rc3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc2/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.6rc2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc2">1.6rc2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6">1.6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.5.2/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.5.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.5.2">1.5.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.5.1/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
                 data-name="1.5.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.5.1">1.5.1</a>
            </div> <!-- /.select-menu-item -->
        </div>

        <div class="select-menu-no-results">Nothing to show</div>
      </div> <!-- /.select-menu-list -->

    </div> <!-- /.select-menu-modal -->
  </div> <!-- /.select-menu-modal-holder -->
</div> <!-- /.select-menu -->

  <div class="button-group right">
    <a href="/jquery/jquery-ui/find/master"
          class="js-show-file-finder minibutton empty-icon tooltipped tooltipped-s"
          data-pjax
          data-hotkey="t"
          aria-label="Quickly jump between files">
      <span class="octicon octicon-list-unordered"></span>
    </a>
    <button class="js-zeroclipboard minibutton zeroclipboard-button"
          data-clipboard-text="themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
          aria-label="Copy to clipboard"
          data-copied-hint="Copied!">
      <span class="octicon octicon-clippy"></span>
    </button>
  </div>

  <div class="breadcrumb">
    <span class='repo-root js-repo-root'><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">jquery-ui</span></a></span></span><span class="separator"> / </span><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui/tree/master/themes" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">themes</span></a></span><span class="separator"> / </span><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui/tree/master/themes/base" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">base</span></a></span><span class="separator"> / </span><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui/tree/master/themes/base/images" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">images</span></a></span><span class="separator"> / </span><strong class="final-path">ui-bg_glass_65_ffffff_1x400.png</strong>
  </div>
</div>


  <div class="commit file-history-tease">
      <img alt="Travis Carden" class="main-avatar js-avatar" data-user="959246" height="24" src="https://avatars1.githubusercontent.com/u/959246?s=140" width="24" />
      <span class="author"><a href="/TravisCarden" rel="contributor">TravisCarden</a></span>
      <time datetime="2013-02-04T13:02:57-05:00" is="relative-time">February 04, 2013</time>
      <div class="commit-title">
          <a href="/jquery/jquery-ui/commit/a61af0b205c865b9c4f949bcc1bebe79994519d0" class="message" data-pjax="true" title="Fix file permissions in themes/base/images.">Fix file permissions in themes/base/images.</a>
      </div>

    <div class="participation">
      <p class="quickstat"><a href="#blob_contributors_box" rel="facebox"><strong>2</strong>  contributors</a></p>
          <a class="avatar tooltipped tooltipped-s" aria-label="TravisCarden" href="/jquery/jquery-ui/commits/master/themes/base/images/ui-bg_glass_65_ffffff_1x400.png?author=TravisCarden"><img alt="Travis Carden" class=" js-avatar" data-user="959246" height="20" src="https://avatars1.githubusercontent.com/u/959246?s=140" width="20" /></a>
    <a class="avatar tooltipped tooltipped-s" aria-label="scottjehl" href="/jquery/jquery-ui/commits/master/themes/base/images/ui-bg_glass_65_ffffff_1x400.png?author=scottjehl"><img alt="Scott Jehl" class=" js-avatar" data-user="214783" height="20" src="https://avatars2.githubusercontent.com/u/214783?s=140" width="20" /></a>


    </div>
    <div id="blob_contributors_box" style="display:none">
      <h2 class="facebox-header">Users who have contributed to this file</h2>
      <ul class="facebox-user-list">
          <li class="facebox-user-list-item">
            <img alt="Travis Carden" class=" js-avatar" data-user="959246" height="24" src="https://avatars1.githubusercontent.com/u/959246?s=140" width="24" />
            <a href="/TravisCarden">TravisCarden</a>
          </li>
          <li class="facebox-user-list-item">
            <img alt="Scott Jehl" class=" js-avatar" data-user="214783" height="24" src="https://avatars2.githubusercontent.com/u/214783?s=140" width="24" />
            <a href="/scottjehl">scottjehl</a>
          </li>
      </ul>
    </div>
  </div>

<div class="file-box">
  <div class="file">
    <div class="meta clearfix">
      <div class="info file-name">
        <span class="icon"><b class="octicon octicon-file-text"></b></span>
        <span class="mode" title="File Mode">file</span>
        <span class="meta-divider"></span>
        <span>0.105 kb</span>
      </div>
      <div class="actions">
        <div class="button-group">
          <a href="/jquery/jquery-ui/raw/master/themes/base/images/ui-bg_glass_65_ffffff_1x400.png" class="minibutton " id="raw-url">Raw</a>
          <a href="/jquery/jquery-ui/commits/master/themes/base/images/ui-bg_glass_65_ffffff_1x400.png" class="minibutton " rel="nofollow">History</a>
        </div><!-- /.button-group -->

            <a class="minibutton danger empty-icon tooltipped tooltipped-s"
               href="/jquery/jquery-ui/delete/master/themes/base/images/ui-bg_glass_65_ffffff_1x400.png"
               aria-label="Fork this project and delete file"
               data-method="post" data-test-id="delete-blob-file" rel="nofollow">

          Delete
        </a>
      </div><!-- /.actions -->
    </div>
      
  <div class="blob-wrapper data type-text js-blob-data">
      <div class="image js-image">
          <span class="border-wrap"><img src="https://raw.githubusercontent.com/jquery/jquery-ui/master/themes/base/images/ui-bg_glass_65_ffffff_1x400.png" alt="themes/base/images/ui-bg_glass_65_ffffff_1x400.png" /></span>
      </div>
  </div>

  </div>
</div>

<a href="#jump-to-line" rel="facebox[.linejump]" data-hotkey="l" class="js-jump-to-line" style="display:none">Jump to Line</a>
<div id="jump-to-line" style="display:none">
  <form accept-charset="UTF-8" class="js-jump-to-line-form">
    <input class="linejump-input js-jump-to-line-field" type="text" placeholder="Jump to line&hellip;" autofocus>
    <button type="submit" class="button">Go</button>
  </form>
</div>

        </div>

      </div><!-- /.repo-container -->
      <div class="modal-backdrop"></div>
    </div><!-- /.container -->
  </div><!-- /.site -->


    </div><!-- /.wrapper -->

      <div class="container">
  <div class="site-footer">
    <ul class="site-footer-links right">
      <li><a href="https://status.github.com/">Status</a></li>
      <li><a href="http://developer.github.com">API</a></li>
      <li><a href="http://training.github.com">Training</a></li>
      <li><a href="http://shop.github.com">Shop</a></li>
      <li><a href="/blog">Blog</a></li>
      <li><a href="/about">About</a></li>

    </ul>

    <a href="/">
      <span class="mega-octicon octicon-mark-github" title="GitHub"></span>
    </a>

    <ul class="site-footer-links">
      <li>&copy; 2014 <span title="0.04273s from github-fe117-cp1-prd.iad.github.net">GitHub</span>, Inc.</li>
        <li><a href="/site/terms">Terms</a></li>
        <li><a href="/site/privacy">Privacy</a></li>
        <li><a href="/security">Security</a></li>
        <li><a href="/contact">Contact</a></li>
    </ul>
  </div><!-- /.site-footer -->
</div><!-- /.container -->


    <div class="fullscreen-overlay js-fullscreen-overlay" id="fullscreen_overlay">
  <div class="fullscreen-container js-fullscreen-container">
    <div class="textarea-wrap">
      <textarea name="fullscreen-contents" id="fullscreen-contents" class="fullscreen-contents js-fullscreen-contents" placeholder="" data-suggester="fullscreen_suggester"></textarea>
    </div>
  </div>
  <div class="fullscreen-sidebar">
    <a href="#" class="exit-fullscreen js-exit-fullscreen tooltipped tooltipped-w" aria-label="Exit Zen Mode">
      <span class="mega-octicon octicon-screen-normal"></span>
    </a>
    <a href="#" class="theme-switcher js-theme-switcher tooltipped tooltipped-w"
      aria-label="Switch themes">
      <span class="octicon octicon-color-mode"></span>
    </a>
  </div>
</div>



    <div id="ajax-error-message" class="flash flash-error">
      <span class="octicon octicon-alert"></span>
      <a href="#" class="octicon octicon-x close js-ajax-error-dismiss" aria-label="Dismiss error"></a>
      Something went wrong with that request. Please try again.
    </div>


      <script crossorigin="anonymous" src="https://assets-cdn.github.com/assets/frameworks-df9e4beac80276ed3dfa56be0d97b536d0f5ee12.js" type="text/javascript"></script>
      <script async="async" crossorigin="anonymous" src="https://assets-cdn.github.com/assets/github-534eef699bbadaf1454b432e14a2ab0a68c7ddf4.js" type="text/javascript"></script>
      
      
        <script async src="https://www.google-analytics.com/analytics.js"></script>
  </body>
</html>

 0707010000018D000081A40000000000000000000000015ECE244400011C5B000000000000000000000000000000000000004000000000cobbler-3.1.2/web/static/images/ui-bg_glass_75_dadada_1x400.png   




<!DOCTYPE html>
<html class="   ">
  <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# object: http://ogp.me/ns/object# article: http://ogp.me/ns/article# profile: http://ogp.me/ns/profile#">
    <meta charset='utf-8'>
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    
    
    <title>jquery-ui/themes/base/images/ui-bg_glass_75_dadada_1x400.png at master · jquery/jquery-ui</title>
    <link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="GitHub" />
    <link rel="fluid-icon" href="https://github.com/fluidicon.png" title="GitHub" />
    <link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-114.png" />
    <link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114.png" />
    <link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-144.png" />
    <link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144.png" />
    <meta property="fb:app_id" content="1401488693436528"/>

      <meta content="@github" name="twitter:site" /><meta content="summary" name="twitter:card" /><meta content="jquery/jquery-ui" name="twitter:title" /><meta content="jquery-ui - The official jQuery user interface library." name="twitter:description" /><meta content="https://avatars1.githubusercontent.com/u/70142?s=400" name="twitter:image:src" />
<meta content="GitHub" property="og:site_name" /><meta content="object" property="og:type" /><meta content="https://avatars1.githubusercontent.com/u/70142?s=400" property="og:image" /><meta content="jquery/jquery-ui" property="og:title" /><meta content="https://github.com/jquery/jquery-ui" property="og:url" /><meta content="jquery-ui - The official jQuery user interface library." property="og:description" />

    <link rel="assets" href="https://assets-cdn.github.com/">
    <link rel="conduit-xhr" href="https://ghconduit.com:25035">
    <link rel="xhr-socket" href="/_sockets" />

    <meta name="msapplication-TileImage" content="/windows-tile.png" />
    <meta name="msapplication-TileColor" content="#ffffff" />
    <meta name="selected-link" value="repo_source" data-pjax-transient />
      <meta name="google-analytics" content="UA-3769691-2">

    <meta content="collector.githubapp.com" name="octolytics-host" /><meta content="collector-cdn.github.com" name="octolytics-script-host" /><meta content="github" name="octolytics-app-id" /><meta content="5ED1AC98:1163:4D6BAF6:53C6DBC6" name="octolytics-dimension-request_id" /><meta content="790690" name="octolytics-actor-id" /><meta content="jmaas" name="octolytics-actor-login" /><meta content="ac5e3878ac6703a37372cb2198cb3b8727e6b43c1e460ad6c9aeaeae1fb16fb4" name="octolytics-actor-hash" />
    

    
    
    <link rel="icon" type="image/x-icon" href="https://assets-cdn.github.com/favicon.ico" />


    <meta content="authenticity_token" name="csrf-param" />
<meta content="sF/NQQQUVwttBUC3LzNQ8B0RQeAsQOloyBUZJoanmO3hDMYd4qZNyiHDvbm/knKVwkuenYy147NEUR3guyfU+g==" name="csrf-token" />

    <link href="https://assets-cdn.github.com/assets/github-c534ad575b5bb8c3cc3dce9c571df7aa7400dbe9.css" media="all" rel="stylesheet" type="text/css" />
    <link href="https://assets-cdn.github.com/assets/github2-84a1b6179d461213455892ab983182bc2052a7b5.css" media="all" rel="stylesheet" type="text/css" />
    


    <meta http-equiv="x-pjax-version" content="ef2e8ad48b4c98b3a1a0065370258ac2">

      
  <meta name="description" content="jquery-ui - The official jQuery user interface library." />


  <meta content="70142" name="octolytics-dimension-user_id" /><meta content="jquery" name="octolytics-dimension-user_login" /><meta content="478996" name="octolytics-dimension-repository_id" /><meta content="jquery/jquery-ui" name="octolytics-dimension-repository_nwo" /><meta content="true" name="octolytics-dimension-repository_public" /><meta content="false" name="octolytics-dimension-repository_is_fork" /><meta content="478996" name="octolytics-dimension-repository_network_root_id" /><meta content="jquery/jquery-ui" name="octolytics-dimension-repository_network_root_nwo" />

  <link href="https://github.com/jquery/jquery-ui/commits/master.atom" rel="alternate" title="Recent Commits to jquery-ui:master" type="application/atom+xml" />

  </head>


  <body class="logged_in  env-production linux vis-public page-blob">
    <a href="#start-of-content" tabindex="1" class="accessibility-aid js-skip-to-content">Skip to content</a>
    <div class="wrapper">
      
      
      
      


      <div class="header header-logged-in true">
  <div class="container clearfix">

    <a class="header-logo-invertocat" href="https://github.com/" aria-label="Homepage">
  <span class="mega-octicon octicon-mark-github"></span>
</a>


    
    <a href="/notifications" aria-label="You have no unread notifications" class="notification-indicator tooltipped tooltipped-s" data-hotkey="g n">
        <span class="mail-status all-read"></span>
</a>

      <div class="command-bar js-command-bar  in-repository">
          <form accept-charset="UTF-8" action="/search" class="command-bar-form" id="top_search_form" method="get">

<div class="commandbar">
  <span class="message"></span>
  <input type="text" data-hotkey="s" name="q" id="js-command-bar-field" placeholder="Search or type a command" tabindex="1" autocapitalize="off"
    
    data-username="jmaas"
    data-repo="jquery/jquery-ui"
  >
  <div class="display hidden"></div>
</div>

    <input type="hidden" name="nwo" value="jquery/jquery-ui" />

    <div class="select-menu js-menu-container js-select-menu search-context-select-menu">
      <span class="minibutton select-menu-button js-menu-target" role="button" aria-haspopup="true">
        <span class="js-select-button">This repository</span>
      </span>

      <div class="select-menu-modal-holder js-menu-content js-navigation-container" aria-hidden="true">
        <div class="select-menu-modal">

          <div class="select-menu-item js-navigation-item js-this-repository-navigation-item selected">
            <span class="select-menu-item-icon octicon octicon-check"></span>
            <input type="radio" class="js-search-this-repository" name="search_target" value="repository" checked="checked" />
            <div class="select-menu-item-text js-select-button-text">This repository</div>
          </div> <!-- /.select-menu-item -->

          <div class="select-menu-item js-navigation-item js-all-repositories-navigation-item">
            <span class="select-menu-item-icon octicon octicon-check"></span>
            <input type="radio" name="search_target" value="global" />
            <div class="select-menu-item-text js-select-button-text">All repositories</div>
          </div> <!-- /.select-menu-item -->

        </div>
      </div>
    </div>

  <span class="help tooltipped tooltipped-s" aria-label="Show command bar help">
    <span class="octicon octicon-question"></span>
  </span>


  <input type="hidden" name="ref" value="cmdform">

</form>
        <ul class="top-nav">
          <li class="explore"><a href="/explore">Explore</a></li>
            <li><a href="https://gist.github.com">Gist</a></li>
            <li><a href="/blog">Blog</a></li>
          <li><a href="https://help.github.com">Help</a></li>
        </ul>
      </div>

    

<ul id="user-links">
  <li>
    <a href="/jmaas" class="name">
      <img alt="Jörgen Maas" class=" js-avatar" data-user="790690" height="20" src="https://avatars1.githubusercontent.com/u/790690?s=140" width="20" /> jmaas
    </a>
  </li>

  <li class="new-menu dropdown-toggle js-menu-container">
    <a href="#" class="js-menu-target tooltipped tooltipped-s" aria-label="Create new...">
      <span class="octicon octicon-plus"></span>
      <span class="dropdown-arrow"></span>
    </a>

    <div class="new-menu-content js-menu-content">
    </div>
  </li>

  <li>
    <a href="/settings/profile" id="account_settings"
      class="tooltipped tooltipped-s"
      aria-label="Account settings ">
      <span class="octicon octicon-tools"></span>
    </a>
  </li>
  <li>
    <form accept-charset="UTF-8" action="/logout" class="logout-form" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="1ebVZQGjqjWircrDkuiqSZLWjgVjg61JQt5Vlfr5PGdc3o3VW98qk8Mhw44h6E58iKNp9Vj7t4Je8IN6ALKzkQ==" /></div>
      <button class="sign-out-button tooltipped tooltipped-s" aria-label="Sign out">
        <span class="octicon octicon-sign-out"></span>
      </button>
</form>  </li>

</ul>

<div class="js-new-dropdown-contents hidden">
  

<ul class="dropdown-menu">
  <li>
    <a href="/new"><span class="octicon octicon-repo"></span> New repository</a>
  </li>
  <li>
    <a href="/organizations/new"><span class="octicon octicon-organization"></span> New organization</a>
  </li>


</ul>

</div>


    
  </div>
</div>

      

        



      <div id="start-of-content" class="accessibility-aid"></div>
          <div class="site" itemscope itemtype="http://schema.org/WebPage">
    <div id="js-flash-container">
      
    </div>
    <div class="pagehead repohead instapaper_ignore readability-menu">
      <div class="container">
        
<ul class="pagehead-actions">

    <li class="subscription">
      <form accept-charset="UTF-8" action="/notifications/subscribe" class="js-social-container" data-autosubmit="true" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="5hh9MOgEjB4w4TelfkBuLiTD7aNXhIu3iP4JWrVG99/GBDjU2eJL35Sw0/cFMMIF8u/jgD8CO2IcZZjK4BFsDQ==" /></div>  <input id="repository_id" name="repository_id" type="hidden" value="478996" />

    <div class="select-menu js-menu-container js-select-menu">
      <a class="social-count js-social-count" href="/jquery/jquery-ui/watchers">
        639
      </a>
      <a href="/jquery/jquery-ui/subscription"
        class="minibutton select-menu-button with-count js-menu-target" role="button" tabindex="0" aria-haspopup="true">
        <span class="js-select-button">
          <span class="octicon octicon-eye"></span>
          Watch
        </span>
      </a>

      <div class="select-menu-modal-holder">
        <div class="select-menu-modal subscription-menu-modal js-menu-content" aria-hidden="true">
          <div class="select-menu-header">
            <span class="select-menu-title">Notifications</span>
            <span class="octicon octicon-x js-menu-close" role="button" aria-label="Close"></span>
          </div> <!-- /.select-menu-header -->

          <div class="select-menu-list js-navigation-container" role="menu">

            <div class="select-menu-item js-navigation-item selected" role="menuitem" tabindex="0">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <div class="select-menu-item-text">
                <input checked="checked" id="do_included" name="do" type="radio" value="included" />
                <h4>Not watching</h4>
                <span class="description">Be notified when participating or @mentioned.</span>
                <span class="js-select-button-text hidden-select-button-text">
                  <span class="octicon octicon-eye"></span>
                  Watch
                </span>
              </div>
            </div> <!-- /.select-menu-item -->

            <div class="select-menu-item js-navigation-item " role="menuitem" tabindex="0">
              <span class="select-menu-item-icon octicon octicon octicon-check"></span>
              <div class="select-menu-item-text">
                <input id="do_subscribed" name="do" type="radio" value="subscribed" />
                <h4>Watching</h4>
                <span class="description">Be notified of all conversations.</span>
                <span class="js-select-button-text hidden-select-button-text">
                  <span class="octicon octicon-eye"></span>
                  Unwatch
                </span>
              </div>
            </div> <!-- /.select-menu-item -->

            <div class="select-menu-item js-navigation-item " role="menuitem" tabindex="0">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <div class="select-menu-item-text">
                <input id="do_ignore" name="do" type="radio" value="ignore" />
                <h4>Ignoring</h4>
                <span class="description">Never be notified.</span>
                <span class="js-select-button-text hidden-select-button-text">
                  <span class="octicon octicon-mute"></span>
                  Stop ignoring
                </span>
              </div>
            </div> <!-- /.select-menu-item -->

          </div> <!-- /.select-menu-list -->

        </div> <!-- /.select-menu-modal -->
      </div> <!-- /.select-menu-modal-holder -->
    </div> <!-- /.select-menu -->

</form>
    </li>

  <li>
    

  <div class="js-toggler-container js-social-container starring-container ">

    <form accept-charset="UTF-8" action="/jquery/jquery-ui/unstar" class="js-toggler-form starred" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="XBDg8jvUnzPrA2TuccUlB/lw6Swa6KQjeNOzHWI4YTtRbc/X401Gk5ECqSUA4/Nt4Cu1Dh+TQBMJIHDnywKaVw==" /></div>
      <button
        class="minibutton with-count js-toggler-target star-button"
        aria-label="Unstar this repository" title="Unstar jquery/jquery-ui">
        <span class="octicon octicon-star"></span>
        Unstar
      </button>
        <a class="social-count js-social-count" href="/jquery/jquery-ui/stargazers">
          8,441
        </a>
</form>
    <form accept-charset="UTF-8" action="/jquery/jquery-ui/star" class="js-toggler-form unstarred" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="LcrvLunOEZY84QhXHQlGItYmGn9a/u0jmpJSlfpNwVYkFAlSCvFOzyxrmf82DXuWC3p9hksNg0ruropuhvJtWg==" /></div>
      <button
        class="minibutton with-count js-toggler-target star-button"
        aria-label="Star this repository" title="Star jquery/jquery-ui">
        <span class="octicon octicon-star"></span>
        Star
      </button>
        <a class="social-count js-social-count" href="/jquery/jquery-ui/stargazers">
          8,441
        </a>
</form>  </div>

  </li>


        <li>
          <a href="/jquery/jquery-ui/fork" class="minibutton with-count js-toggler-target fork-button lighter tooltipped-n" title="Fork your own copy of jquery/jquery-ui to your account" aria-label="Fork your own copy of jquery/jquery-ui to your account" rel="facebox nofollow">
            <span class="octicon octicon-repo-forked"></span>
            Fork
          </a>
          <a href="/jquery/jquery-ui/network" class="social-count">3,098</a>
        </li>

</ul>

        <h1 itemscope itemtype="http://data-vocabulary.org/Breadcrumb" class="entry-title public">
          <span class="repo-label"><span>public</span></span>
          <span class="mega-octicon octicon-repo"></span>
          <span class="author"><a href="/jquery" class="url fn" itemprop="url" rel="author"><span itemprop="title">jquery</span></a></span><!--
       --><span class="path-divider">/</span><!--
       --><strong><a href="/jquery/jquery-ui" class="js-current-repository js-repo-home-link">jquery-ui</a></strong>

          <span class="page-context-loader">
            <img alt="" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
          </span>

        </h1>
      </div><!-- /.container -->
    </div><!-- /.repohead -->

    <div class="container">
      <div class="repository-with-sidebar repo-container new-discussion-timeline js-new-discussion-timeline  ">
        <div class="repository-sidebar clearfix">
            

<div class="sunken-menu vertical-right repo-nav js-repo-nav js-repository-container-pjax js-octicon-loaders">
  <div class="sunken-menu-contents">
    <ul class="sunken-menu-group">
      <li class="tooltipped tooltipped-w" aria-label="Code">
        <a href="/jquery/jquery-ui" aria-label="Code" class="selected js-selected-navigation-item sunken-menu-item" data-hotkey="g c" data-pjax="true" data-selected-links="repo_source repo_downloads repo_commits repo_releases repo_tags repo_branches /jquery/jquery-ui">
          <span class="octicon octicon-code"></span> <span class="full-word">Code</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>


      <li class="tooltipped tooltipped-w" aria-label="Pull Requests">
        <a href="/jquery/jquery-ui/pulls" aria-label="Pull Requests" class="js-selected-navigation-item sunken-menu-item js-disable-pjax" data-hotkey="g p" data-selected-links="repo_pulls /jquery/jquery-ui/pulls">
            <span class="octicon octicon-git-pull-request"></span> <span class="full-word">Pull Requests</span>
            <span class='counter'>46</span>
            <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>


    </ul>
    <div class="sunken-menu-separator"></div>
    <ul class="sunken-menu-group">

      <li class="tooltipped tooltipped-w" aria-label="Pulse">
        <a href="/jquery/jquery-ui/pulse" aria-label="Pulse" class="js-selected-navigation-item sunken-menu-item" data-pjax="true" data-selected-links="pulse /jquery/jquery-ui/pulse">
          <span class="octicon octicon-pulse"></span> <span class="full-word">Pulse</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>

      <li class="tooltipped tooltipped-w" aria-label="Graphs">
        <a href="/jquery/jquery-ui/graphs" aria-label="Graphs" class="js-selected-navigation-item sunken-menu-item" data-pjax="true" data-selected-links="repo_graphs repo_contributors /jquery/jquery-ui/graphs">
          <span class="octicon octicon-graph"></span> <span class="full-word">Graphs</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>

      <li class="tooltipped tooltipped-w" aria-label="Network">
        <a href="/jquery/jquery-ui/network" aria-label="Network" class="js-selected-navigation-item sunken-menu-item js-disable-pjax" data-selected-links="repo_network /jquery/jquery-ui/network">
          <span class="octicon octicon-repo-forked"></span> <span class="full-word">Network</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>
    </ul>


  </div>
</div>

              <div class="only-with-full-nav">
                

  

<div class="clone-url open"
  data-protocol-type="http"
  data-url="/users/set_protocol?protocol_selector=http&amp;protocol_type=clone">
  <h3><strong>HTTPS</strong> clone URL</h3>
  <div class="clone-url-box">
    <input type="text" class="clone js-url-field"
           value="https://github.com/jquery/jquery-ui.git" readonly="readonly">
    <span class="url-box-clippy">
    <button aria-label="Copy to clipboard" class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="https://github.com/jquery/jquery-ui.git" data-copied-hint="Copied!" type="button"><span class="octicon octicon-clippy"></span></button>
    </span>
  </div>
</div>

  

<div class="clone-url "
  data-protocol-type="ssh"
  data-url="/users/set_protocol?protocol_selector=ssh&amp;protocol_type=clone">
  <h3><strong>SSH</strong> clone URL</h3>
  <div class="clone-url-box">
    <input type="text" class="clone js-url-field"
           value="git@github.com:jquery/jquery-ui.git" readonly="readonly">
    <span class="url-box-clippy">
    <button aria-label="Copy to clipboard" class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="git@github.com:jquery/jquery-ui.git" data-copied-hint="Copied!" type="button"><span class="octicon octicon-clippy"></span></button>
    </span>
  </div>
</div>

  

<div class="clone-url "
  data-protocol-type="subversion"
  data-url="/users/set_protocol?protocol_selector=subversion&amp;protocol_type=clone">
  <h3><strong>Subversion</strong> checkout URL</h3>
  <div class="clone-url-box">
    <input type="text" class="clone js-url-field"
           value="https://github.com/jquery/jquery-ui" readonly="readonly">
    <span class="url-box-clippy">
    <button aria-label="Copy to clipboard" class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="https://github.com/jquery/jquery-ui" data-copied-hint="Copied!" type="button"><span class="octicon octicon-clippy"></span></button>
    </span>
  </div>
</div>


<p class="clone-options">You can clone with
      <a href="#" class="js-clone-selector" data-protocol="http">HTTPS</a>,
      <a href="#" class="js-clone-selector" data-protocol="ssh">SSH</a>,
      or <a href="#" class="js-clone-selector" data-protocol="subversion">Subversion</a>.
  <a href="https://help.github.com/articles/which-remote-url-should-i-use" class="help tooltipped tooltipped-n" aria-label="Get help on which URL is right for you.">
    <span class="octicon octicon-question"></span>
  </a>
</p>



                <a href="/jquery/jquery-ui/archive/master.zip"
                   class="minibutton sidebar-button"
                   aria-label="Download jquery/jquery-ui as a zip file"
                   title="Download jquery/jquery-ui as a zip file"
                   rel="nofollow">
                  <span class="octicon octicon-cloud-download"></span>
                  Download ZIP
                </a>
              </div>
        </div><!-- /.repository-sidebar -->

        <div id="js-repo-pjax-container" class="repository-content context-loader-container" data-pjax-container>
          


<a href="/jquery/jquery-ui/blob/98583a6563e7ae98ed67b5d70db2bff814c11e4e/themes/base/images/ui-bg_glass_75_dadada_1x400.png" class="hidden js-permalink-shortcut" data-hotkey="y">Permalink</a>

<!-- blob contrib key: blob_contributors:v21:c54d55e7d2d5687d8c56193563264765 -->

<p title="This is a placeholder element" class="js-history-link-replace hidden"></p>

<div class="file-navigation">
  

<div class="select-menu js-menu-container js-select-menu" >
  <span class="minibutton select-menu-button js-menu-target css-truncate" data-hotkey="w"
    data-master-branch="master"
    data-ref="master"
    title="master"
    role="button" aria-label="Switch branches or tags" tabindex="0" aria-haspopup="true">
    <span class="octicon octicon-git-branch"></span>
    <i>branch:</i>
    <span class="js-select-button css-truncate-target">master</span>
  </span>

  <div class="select-menu-modal-holder js-menu-content js-navigation-container" data-pjax aria-hidden="true">

    <div class="select-menu-modal">
      <div class="select-menu-header">
        <span class="select-menu-title">Switch branches/tags</span>
        <span class="octicon octicon-x js-menu-close" role="button" aria-label="Close"></span>
      </div> <!-- /.select-menu-header -->

      <div class="select-menu-filters">
        <div class="select-menu-text-filter">
          <input type="text" aria-label="Filter branches/tags" id="context-commitish-filter-field" class="js-filterable-field js-navigation-enable" placeholder="Filter branches/tags">
        </div>
        <div class="select-menu-tabs">
          <ul>
            <li class="select-menu-tab">
              <a href="#" data-tab-filter="branches" class="js-select-menu-tab">Branches</a>
            </li>
            <li class="select-menu-tab">
              <a href="#" data-tab-filter="tags" class="js-select-menu-tab">Tags</a>
            </li>
          </ul>
        </div><!-- /.select-menu-tabs -->
      </div><!-- /.select-menu-filters -->

      <div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="branches">

        <div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring">


            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/1-8-stable/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1-8-stable"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1-8-stable">1-8-stable</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/1-9-stable/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1-9-stable"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1-9-stable">1-9-stable</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/1-10-stable/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1-10-stable"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1-10-stable">1-10-stable</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/button-icon-span/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="button-icon-span"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="button-icon-span">button-icon-span</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/datepicker/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="datepicker"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="datepicker">datepicker</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/interactions/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="interactions"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="interactions">interactions</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/interactions-polymer/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="interactions-polymer"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="interactions-polymer">interactions-polymer</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item selected">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/master/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="master"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="master">master</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/ref-1029-css-dependency-comments/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="ref-1029-css-dependency-comments"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="ref-1029-css-dependency-comments">ref-1029-css-dependency-comments</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/selectmenu-native-menu/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="selectmenu-native-menu"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="selectmenu-native-menu">selectmenu-native-menu</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/spinner-globalize-1.x/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="spinner-globalize-1.x"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="spinner-globalize-1.x">spinner-globalize-1.x</a>
            </div> <!-- /.select-menu-item -->
        </div>

          <div class="select-menu-no-results">Nothing to show</div>
      </div> <!-- /.select-menu-list -->

      <div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="tags">
        <div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring">


            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.11.0-beta.2/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.11.0-beta.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.11.0-beta.2">1.11.0-beta.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.11.0-beta.1/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.11.0-beta.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.11.0-beta.1">1.11.0-beta.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.11.0/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.11.0"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.11.0">1.11.0</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.4/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.10.4"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.4">1.10.4</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.3/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.10.3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.3">1.10.3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.2/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.10.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.2">1.10.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.1/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.10.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.1">1.10.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.0-rc.1/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.10.0-rc.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.0-rc.1">1.10.0-rc.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.0-beta.1/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.10.0-beta.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.0-beta.1">1.10.0-beta.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.0/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.10.0"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.0">1.10.0</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m7/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.9m7"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m7">1.9m7</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m6/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.9m6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m6">1.9m6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m5/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.9m5"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m5">1.9m5</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m4/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.9m4"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m4">1.9m4</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m3/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.9m3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m3">1.9m3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m2/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.9m2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m2">1.9m2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m1/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.9m1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m1">1.9m1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.2/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.9.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.2">1.9.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.1/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.9.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.1">1.9.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0-rc.1/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.9.0-rc.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0-rc.1">1.9.0-rc.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0m8/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.9.0m8"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0m8">1.9.0m8</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0-beta.1/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.9.0-beta.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0-beta.1">1.9.0-beta.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.9.0"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0">1.9.0</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8rc3/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.8rc3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8rc3">1.8rc3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8rc2/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.8rc2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8rc2">1.8rc2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8rc1/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.8rc1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8rc1">1.8rc1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8b1/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.8b1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8b1">1.8b1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8a2/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.8a2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8a2">1.8a2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8a1/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.8a1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8a1">1.8a1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.24/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.8.24"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.24">1.8.24</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.23/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.8.23"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.23">1.8.23</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.22/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.8.22"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.22">1.8.22</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.21/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.8.21"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.21">1.8.21</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.20/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.8.20"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.20">1.8.20</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.19/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.8.19"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.19">1.8.19</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.18/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.8.18"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.18">1.8.18</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.17/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.8.17"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.17">1.8.17</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.16/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.8.16"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.16">1.8.16</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.15/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.8.15"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.15">1.8.15</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.14/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.8.14"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.14">1.8.14</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.13/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.8.13"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.13">1.8.13</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.12/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.8.12"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.12">1.8.12</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.11/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.8.11"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.11">1.8.11</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.10/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.8.10"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.10">1.8.10</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.9/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.8.9"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.9">1.8.9</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.8/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.8.8"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.8">1.8.8</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.7/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.8.7"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.7">1.8.7</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.6/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.8.6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.6">1.8.6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.5/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.8.5"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.5">1.8.5</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.4/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.8.4"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.4">1.8.4</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.3/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.8.3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.3">1.8.3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.2/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.8.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.2">1.8.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.1/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.8.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.1">1.8.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.8"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8">1.8</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.7/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.7"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.7">1.7</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc6/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.6rc6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc6">1.6rc6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc5/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.6rc5"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc5">1.6rc5</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc3/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.6rc3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc3">1.6rc3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc2/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.6rc2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc2">1.6rc2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6">1.6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.5.2/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.5.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.5.2">1.5.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.5.1/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
                 data-name="1.5.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.5.1">1.5.1</a>
            </div> <!-- /.select-menu-item -->
        </div>

        <div class="select-menu-no-results">Nothing to show</div>
      </div> <!-- /.select-menu-list -->

    </div> <!-- /.select-menu-modal -->
  </div> <!-- /.select-menu-modal-holder -->
</div> <!-- /.select-menu -->

  <div class="button-group right">
    <a href="/jquery/jquery-ui/find/master"
          class="js-show-file-finder minibutton empty-icon tooltipped tooltipped-s"
          data-pjax
          data-hotkey="t"
          aria-label="Quickly jump between files">
      <span class="octicon octicon-list-unordered"></span>
    </a>
    <button class="js-zeroclipboard minibutton zeroclipboard-button"
          data-clipboard-text="themes/base/images/ui-bg_glass_75_dadada_1x400.png"
          aria-label="Copy to clipboard"
          data-copied-hint="Copied!">
      <span class="octicon octicon-clippy"></span>
    </button>
  </div>

  <div class="breadcrumb">
    <span class='repo-root js-repo-root'><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">jquery-ui</span></a></span></span><span class="separator"> / </span><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui/tree/master/themes" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">themes</span></a></span><span class="separator"> / </span><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui/tree/master/themes/base" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">base</span></a></span><span class="separator"> / </span><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui/tree/master/themes/base/images" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">images</span></a></span><span class="separator"> / </span><strong class="final-path">ui-bg_glass_75_dadada_1x400.png</strong>
  </div>
</div>


  <div class="commit file-history-tease">
      <img alt="Travis Carden" class="main-avatar js-avatar" data-user="959246" height="24" src="https://avatars1.githubusercontent.com/u/959246?s=140" width="24" />
      <span class="author"><a href="/TravisCarden" rel="contributor">TravisCarden</a></span>
      <time datetime="2013-02-04T13:02:57-05:00" is="relative-time">February 04, 2013</time>
      <div class="commit-title">
          <a href="/jquery/jquery-ui/commit/a61af0b205c865b9c4f949bcc1bebe79994519d0" class="message" data-pjax="true" title="Fix file permissions in themes/base/images.">Fix file permissions in themes/base/images.</a>
      </div>

    <div class="participation">
      <p class="quickstat"><a href="#blob_contributors_box" rel="facebox"><strong>2</strong>  contributors</a></p>
          <a class="avatar tooltipped tooltipped-s" aria-label="TravisCarden" href="/jquery/jquery-ui/commits/master/themes/base/images/ui-bg_glass_75_dadada_1x400.png?author=TravisCarden"><img alt="Travis Carden" class=" js-avatar" data-user="959246" height="20" src="https://avatars1.githubusercontent.com/u/959246?s=140" width="20" /></a>
    <a class="avatar tooltipped tooltipped-s" aria-label="scottjehl" href="/jquery/jquery-ui/commits/master/themes/base/images/ui-bg_glass_75_dadada_1x400.png?author=scottjehl"><img alt="Scott Jehl" class=" js-avatar" data-user="214783" height="20" src="https://avatars2.githubusercontent.com/u/214783?s=140" width="20" /></a>


    </div>
    <div id="blob_contributors_box" style="display:none">
      <h2 class="facebox-header">Users who have contributed to this file</h2>
      <ul class="facebox-user-list">
          <li class="facebox-user-list-item">
            <img alt="Travis Carden" class=" js-avatar" data-user="959246" height="24" src="https://avatars1.githubusercontent.com/u/959246?s=140" width="24" />
            <a href="/TravisCarden">TravisCarden</a>
          </li>
          <li class="facebox-user-list-item">
            <img alt="Scott Jehl" class=" js-avatar" data-user="214783" height="24" src="https://avatars2.githubusercontent.com/u/214783?s=140" width="24" />
            <a href="/scottjehl">scottjehl</a>
          </li>
      </ul>
    </div>
  </div>

<div class="file-box">
  <div class="file">
    <div class="meta clearfix">
      <div class="info file-name">
        <span class="icon"><b class="octicon octicon-file-text"></b></span>
        <span class="mode" title="File Mode">file</span>
        <span class="meta-divider"></span>
        <span>0.111 kb</span>
      </div>
      <div class="actions">
        <div class="button-group">
          <a href="/jquery/jquery-ui/raw/master/themes/base/images/ui-bg_glass_75_dadada_1x400.png" class="minibutton " id="raw-url">Raw</a>
          <a href="/jquery/jquery-ui/commits/master/themes/base/images/ui-bg_glass_75_dadada_1x400.png" class="minibutton " rel="nofollow">History</a>
        </div><!-- /.button-group -->

            <a class="minibutton danger empty-icon tooltipped tooltipped-s"
               href="/jquery/jquery-ui/delete/master/themes/base/images/ui-bg_glass_75_dadada_1x400.png"
               aria-label="Fork this project and delete file"
               data-method="post" data-test-id="delete-blob-file" rel="nofollow">

          Delete
        </a>
      </div><!-- /.actions -->
    </div>
      
  <div class="blob-wrapper data type-text js-blob-data">
      <div class="image js-image">
          <span class="border-wrap"><img src="https://raw.githubusercontent.com/jquery/jquery-ui/master/themes/base/images/ui-bg_glass_75_dadada_1x400.png" alt="themes/base/images/ui-bg_glass_75_dadada_1x400.png" /></span>
      </div>
  </div>

  </div>
</div>

<a href="#jump-to-line" rel="facebox[.linejump]" data-hotkey="l" class="js-jump-to-line" style="display:none">Jump to Line</a>
<div id="jump-to-line" style="display:none">
  <form accept-charset="UTF-8" class="js-jump-to-line-form">
    <input class="linejump-input js-jump-to-line-field" type="text" placeholder="Jump to line&hellip;" autofocus>
    <button type="submit" class="button">Go</button>
  </form>
</div>

        </div>

      </div><!-- /.repo-container -->
      <div class="modal-backdrop"></div>
    </div><!-- /.container -->
  </div><!-- /.site -->


    </div><!-- /.wrapper -->

      <div class="container">
  <div class="site-footer">
    <ul class="site-footer-links right">
      <li><a href="https://status.github.com/">Status</a></li>
      <li><a href="http://developer.github.com">API</a></li>
      <li><a href="http://training.github.com">Training</a></li>
      <li><a href="http://shop.github.com">Shop</a></li>
      <li><a href="/blog">Blog</a></li>
      <li><a href="/about">About</a></li>

    </ul>

    <a href="/">
      <span class="mega-octicon octicon-mark-github" title="GitHub"></span>
    </a>

    <ul class="site-footer-links">
      <li>&copy; 2014 <span title="0.04686s from github-fe120-cp1-prd.iad.github.net">GitHub</span>, Inc.</li>
        <li><a href="/site/terms">Terms</a></li>
        <li><a href="/site/privacy">Privacy</a></li>
        <li><a href="/security">Security</a></li>
        <li><a href="/contact">Contact</a></li>
    </ul>
  </div><!-- /.site-footer -->
</div><!-- /.container -->


    <div class="fullscreen-overlay js-fullscreen-overlay" id="fullscreen_overlay">
  <div class="fullscreen-container js-fullscreen-container">
    <div class="textarea-wrap">
      <textarea name="fullscreen-contents" id="fullscreen-contents" class="fullscreen-contents js-fullscreen-contents" placeholder="" data-suggester="fullscreen_suggester"></textarea>
    </div>
  </div>
  <div class="fullscreen-sidebar">
    <a href="#" class="exit-fullscreen js-exit-fullscreen tooltipped tooltipped-w" aria-label="Exit Zen Mode">
      <span class="mega-octicon octicon-screen-normal"></span>
    </a>
    <a href="#" class="theme-switcher js-theme-switcher tooltipped tooltipped-w"
      aria-label="Switch themes">
      <span class="octicon octicon-color-mode"></span>
    </a>
  </div>
</div>



    <div id="ajax-error-message" class="flash flash-error">
      <span class="octicon octicon-alert"></span>
      <a href="#" class="octicon octicon-x close js-ajax-error-dismiss" aria-label="Dismiss error"></a>
      Something went wrong with that request. Please try again.
    </div>


      <script crossorigin="anonymous" src="https://assets-cdn.github.com/assets/frameworks-df9e4beac80276ed3dfa56be0d97b536d0f5ee12.js" type="text/javascript"></script>
      <script async="async" crossorigin="anonymous" src="https://assets-cdn.github.com/assets/github-534eef699bbadaf1454b432e14a2ab0a68c7ddf4.js" type="text/javascript"></script>
      
      
        <script async src="https://www.google-analytics.com/analytics.js"></script>
  </body>
</html>

 0707010000018E000081A40000000000000000000000015ECE244400011C5A000000000000000000000000000000000000004000000000cobbler-3.1.2/web/static/images/ui-bg_glass_75_e6e6e6_1x400.png   




<!DOCTYPE html>
<html class="   ">
  <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# object: http://ogp.me/ns/object# article: http://ogp.me/ns/article# profile: http://ogp.me/ns/profile#">
    <meta charset='utf-8'>
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    
    
    <title>jquery-ui/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png at master · jquery/jquery-ui</title>
    <link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="GitHub" />
    <link rel="fluid-icon" href="https://github.com/fluidicon.png" title="GitHub" />
    <link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-114.png" />
    <link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114.png" />
    <link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-144.png" />
    <link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144.png" />
    <meta property="fb:app_id" content="1401488693436528"/>

      <meta content="@github" name="twitter:site" /><meta content="summary" name="twitter:card" /><meta content="jquery/jquery-ui" name="twitter:title" /><meta content="jquery-ui - The official jQuery user interface library." name="twitter:description" /><meta content="https://avatars1.githubusercontent.com/u/70142?s=400" name="twitter:image:src" />
<meta content="GitHub" property="og:site_name" /><meta content="object" property="og:type" /><meta content="https://avatars1.githubusercontent.com/u/70142?s=400" property="og:image" /><meta content="jquery/jquery-ui" property="og:title" /><meta content="https://github.com/jquery/jquery-ui" property="og:url" /><meta content="jquery-ui - The official jQuery user interface library." property="og:description" />

    <link rel="assets" href="https://assets-cdn.github.com/">
    <link rel="conduit-xhr" href="https://ghconduit.com:25035">
    <link rel="xhr-socket" href="/_sockets" />

    <meta name="msapplication-TileImage" content="/windows-tile.png" />
    <meta name="msapplication-TileColor" content="#ffffff" />
    <meta name="selected-link" value="repo_source" data-pjax-transient />
      <meta name="google-analytics" content="UA-3769691-2">

    <meta content="collector.githubapp.com" name="octolytics-host" /><meta content="collector-cdn.github.com" name="octolytics-script-host" /><meta content="github" name="octolytics-app-id" /><meta content="5ED1AC98:1163:4D6B928:53C6DBC2" name="octolytics-dimension-request_id" /><meta content="790690" name="octolytics-actor-id" /><meta content="jmaas" name="octolytics-actor-login" /><meta content="ac5e3878ac6703a37372cb2198cb3b8727e6b43c1e460ad6c9aeaeae1fb16fb4" name="octolytics-actor-hash" />
    

    
    
    <link rel="icon" type="image/x-icon" href="https://assets-cdn.github.com/favicon.ico" />


    <meta content="authenticity_token" name="csrf-param" />
<meta content="tODXswnqk59uh59idD9Q8rL8LYV558ipyT4aKQw9marhWHzWPt3jp+weclk9KcJN6EhHAaDQNp6AgO37b3ZgbQ==" name="csrf-token" />

    <link href="https://assets-cdn.github.com/assets/github-c534ad575b5bb8c3cc3dce9c571df7aa7400dbe9.css" media="all" rel="stylesheet" type="text/css" />
    <link href="https://assets-cdn.github.com/assets/github2-84a1b6179d461213455892ab983182bc2052a7b5.css" media="all" rel="stylesheet" type="text/css" />
    


    <meta http-equiv="x-pjax-version" content="ef2e8ad48b4c98b3a1a0065370258ac2">

      
  <meta name="description" content="jquery-ui - The official jQuery user interface library." />


  <meta content="70142" name="octolytics-dimension-user_id" /><meta content="jquery" name="octolytics-dimension-user_login" /><meta content="478996" name="octolytics-dimension-repository_id" /><meta content="jquery/jquery-ui" name="octolytics-dimension-repository_nwo" /><meta content="true" name="octolytics-dimension-repository_public" /><meta content="false" name="octolytics-dimension-repository_is_fork" /><meta content="478996" name="octolytics-dimension-repository_network_root_id" /><meta content="jquery/jquery-ui" name="octolytics-dimension-repository_network_root_nwo" />

  <link href="https://github.com/jquery/jquery-ui/commits/master.atom" rel="alternate" title="Recent Commits to jquery-ui:master" type="application/atom+xml" />

  </head>


  <body class="logged_in  env-production linux vis-public page-blob">
    <a href="#start-of-content" tabindex="1" class="accessibility-aid js-skip-to-content">Skip to content</a>
    <div class="wrapper">
      
      
      
      


      <div class="header header-logged-in true">
  <div class="container clearfix">

    <a class="header-logo-invertocat" href="https://github.com/" aria-label="Homepage">
  <span class="mega-octicon octicon-mark-github"></span>
</a>


    
    <a href="/notifications" aria-label="You have no unread notifications" class="notification-indicator tooltipped tooltipped-s" data-hotkey="g n">
        <span class="mail-status all-read"></span>
</a>

      <div class="command-bar js-command-bar  in-repository">
          <form accept-charset="UTF-8" action="/search" class="command-bar-form" id="top_search_form" method="get">

<div class="commandbar">
  <span class="message"></span>
  <input type="text" data-hotkey="s" name="q" id="js-command-bar-field" placeholder="Search or type a command" tabindex="1" autocapitalize="off"
    
    data-username="jmaas"
    data-repo="jquery/jquery-ui"
  >
  <div class="display hidden"></div>
</div>

    <input type="hidden" name="nwo" value="jquery/jquery-ui" />

    <div class="select-menu js-menu-container js-select-menu search-context-select-menu">
      <span class="minibutton select-menu-button js-menu-target" role="button" aria-haspopup="true">
        <span class="js-select-button">This repository</span>
      </span>

      <div class="select-menu-modal-holder js-menu-content js-navigation-container" aria-hidden="true">
        <div class="select-menu-modal">

          <div class="select-menu-item js-navigation-item js-this-repository-navigation-item selected">
            <span class="select-menu-item-icon octicon octicon-check"></span>
            <input type="radio" class="js-search-this-repository" name="search_target" value="repository" checked="checked" />
            <div class="select-menu-item-text js-select-button-text">This repository</div>
          </div> <!-- /.select-menu-item -->

          <div class="select-menu-item js-navigation-item js-all-repositories-navigation-item">
            <span class="select-menu-item-icon octicon octicon-check"></span>
            <input type="radio" name="search_target" value="global" />
            <div class="select-menu-item-text js-select-button-text">All repositories</div>
          </div> <!-- /.select-menu-item -->

        </div>
      </div>
    </div>

  <span class="help tooltipped tooltipped-s" aria-label="Show command bar help">
    <span class="octicon octicon-question"></span>
  </span>


  <input type="hidden" name="ref" value="cmdform">

</form>
        <ul class="top-nav">
          <li class="explore"><a href="/explore">Explore</a></li>
            <li><a href="https://gist.github.com">Gist</a></li>
            <li><a href="/blog">Blog</a></li>
          <li><a href="https://help.github.com">Help</a></li>
        </ul>
      </div>

    

<ul id="user-links">
  <li>
    <a href="/jmaas" class="name">
      <img alt="Jörgen Maas" class=" js-avatar" data-user="790690" height="20" src="https://avatars1.githubusercontent.com/u/790690?s=140" width="20" /> jmaas
    </a>
  </li>

  <li class="new-menu dropdown-toggle js-menu-container">
    <a href="#" class="js-menu-target tooltipped tooltipped-s" aria-label="Create new...">
      <span class="octicon octicon-plus"></span>
      <span class="dropdown-arrow"></span>
    </a>

    <div class="new-menu-content js-menu-content">
    </div>
  </li>

  <li>
    <a href="/settings/profile" id="account_settings"
      class="tooltipped tooltipped-s"
      aria-label="Account settings ">
      <span class="octicon octicon-tools"></span>
    </a>
  </li>
  <li>
    <form accept-charset="UTF-8" action="/logout" class="logout-form" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="DVbcPI4xRzjgA83HZc/guhYAQcCAWTrhfwsJpktFWDmq6NAGnb0lAMsmEOOe9hSJj3zh3Fp8h/in4MN8SyDsCQ==" /></div>
      <button class="sign-out-button tooltipped tooltipped-s" aria-label="Sign out">
        <span class="octicon octicon-sign-out"></span>
      </button>
</form>  </li>

</ul>

<div class="js-new-dropdown-contents hidden">
  

<ul class="dropdown-menu">
  <li>
    <a href="/new"><span class="octicon octicon-repo"></span> New repository</a>
  </li>
  <li>
    <a href="/organizations/new"><span class="octicon octicon-organization"></span> New organization</a>
  </li>


</ul>

</div>


    
  </div>
</div>

      

        



      <div id="start-of-content" class="accessibility-aid"></div>
          <div class="site" itemscope itemtype="http://schema.org/WebPage">
    <div id="js-flash-container">
      
    </div>
    <div class="pagehead repohead instapaper_ignore readability-menu">
      <div class="container">
        
<ul class="pagehead-actions">

    <li class="subscription">
      <form accept-charset="UTF-8" action="/notifications/subscribe" class="js-social-container" data-autosubmit="true" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="MeGz+Lh+FqvHJT0NdgMofQ+/MyL3Wrd9RrK1ZqR6A37UG1cZ9qsalrDOdrBZzLs7hx65UHEdv3Qsq5AhASse+A==" /></div>  <input id="repository_id" name="repository_id" type="hidden" value="478996" />

    <div class="select-menu js-menu-container js-select-menu">
      <a class="social-count js-social-count" href="/jquery/jquery-ui/watchers">
        639
      </a>
      <a href="/jquery/jquery-ui/subscription"
        class="minibutton select-menu-button with-count js-menu-target" role="button" tabindex="0" aria-haspopup="true">
        <span class="js-select-button">
          <span class="octicon octicon-eye"></span>
          Watch
        </span>
      </a>

      <div class="select-menu-modal-holder">
        <div class="select-menu-modal subscription-menu-modal js-menu-content" aria-hidden="true">
          <div class="select-menu-header">
            <span class="select-menu-title">Notifications</span>
            <span class="octicon octicon-x js-menu-close" role="button" aria-label="Close"></span>
          </div> <!-- /.select-menu-header -->

          <div class="select-menu-list js-navigation-container" role="menu">

            <div class="select-menu-item js-navigation-item selected" role="menuitem" tabindex="0">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <div class="select-menu-item-text">
                <input checked="checked" id="do_included" name="do" type="radio" value="included" />
                <h4>Not watching</h4>
                <span class="description">Be notified when participating or @mentioned.</span>
                <span class="js-select-button-text hidden-select-button-text">
                  <span class="octicon octicon-eye"></span>
                  Watch
                </span>
              </div>
            </div> <!-- /.select-menu-item -->

            <div class="select-menu-item js-navigation-item " role="menuitem" tabindex="0">
              <span class="select-menu-item-icon octicon octicon octicon-check"></span>
              <div class="select-menu-item-text">
                <input id="do_subscribed" name="do" type="radio" value="subscribed" />
                <h4>Watching</h4>
                <span class="description">Be notified of all conversations.</span>
                <span class="js-select-button-text hidden-select-button-text">
                  <span class="octicon octicon-eye"></span>
                  Unwatch
                </span>
              </div>
            </div> <!-- /.select-menu-item -->

            <div class="select-menu-item js-navigation-item " role="menuitem" tabindex="0">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <div class="select-menu-item-text">
                <input id="do_ignore" name="do" type="radio" value="ignore" />
                <h4>Ignoring</h4>
                <span class="description">Never be notified.</span>
                <span class="js-select-button-text hidden-select-button-text">
                  <span class="octicon octicon-mute"></span>
                  Stop ignoring
                </span>
              </div>
            </div> <!-- /.select-menu-item -->

          </div> <!-- /.select-menu-list -->

        </div> <!-- /.select-menu-modal -->
      </div> <!-- /.select-menu-modal-holder -->
    </div> <!-- /.select-menu -->

</form>
    </li>

  <li>
    

  <div class="js-toggler-container js-social-container starring-container ">

    <form accept-charset="UTF-8" action="/jquery/jquery-ui/unstar" class="js-toggler-form starred" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="4VDC6Xh5tyOtkI5nBstE60DPP3cBDC5sztxv0BuAiyFJMUsIYtteJYTmaw/ArJNqHuKeVpcxzB22gO4/wXJ90g==" /></div>
      <button
        class="minibutton with-count js-toggler-target star-button"
        aria-label="Unstar this repository" title="Unstar jquery/jquery-ui">
        <span class="octicon octicon-star"></span>
        Unstar
      </button>
        <a class="social-count js-social-count" href="/jquery/jquery-ui/stargazers">
          8,441
        </a>
</form>
    <form accept-charset="UTF-8" action="/jquery/jquery-ui/star" class="js-toggler-form unstarred" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="dCV6Y0H+yjy8TRzNuER1By8pBX8DNe3fKiW0/9jKkDTao7OcuTzVX4hSymWvaKAyXspUchIPjDjhoU/xRQto/w==" /></div>
      <button
        class="minibutton with-count js-toggler-target star-button"
        aria-label="Star this repository" title="Star jquery/jquery-ui">
        <span class="octicon octicon-star"></span>
        Star
      </button>
        <a class="social-count js-social-count" href="/jquery/jquery-ui/stargazers">
          8,441
        </a>
</form>  </div>

  </li>


        <li>
          <a href="/jquery/jquery-ui/fork" class="minibutton with-count js-toggler-target fork-button lighter tooltipped-n" title="Fork your own copy of jquery/jquery-ui to your account" aria-label="Fork your own copy of jquery/jquery-ui to your account" rel="facebox nofollow">
            <span class="octicon octicon-repo-forked"></span>
            Fork
          </a>
          <a href="/jquery/jquery-ui/network" class="social-count">3,098</a>
        </li>

</ul>

        <h1 itemscope itemtype="http://data-vocabulary.org/Breadcrumb" class="entry-title public">
          <span class="repo-label"><span>public</span></span>
          <span class="mega-octicon octicon-repo"></span>
          <span class="author"><a href="/jquery" class="url fn" itemprop="url" rel="author"><span itemprop="title">jquery</span></a></span><!--
       --><span class="path-divider">/</span><!--
       --><strong><a href="/jquery/jquery-ui" class="js-current-repository js-repo-home-link">jquery-ui</a></strong>

          <span class="page-context-loader">
            <img alt="" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
          </span>

        </h1>
      </div><!-- /.container -->
    </div><!-- /.repohead -->

    <div class="container">
      <div class="repository-with-sidebar repo-container new-discussion-timeline js-new-discussion-timeline  ">
        <div class="repository-sidebar clearfix">
            

<div class="sunken-menu vertical-right repo-nav js-repo-nav js-repository-container-pjax js-octicon-loaders">
  <div class="sunken-menu-contents">
    <ul class="sunken-menu-group">
      <li class="tooltipped tooltipped-w" aria-label="Code">
        <a href="/jquery/jquery-ui" aria-label="Code" class="selected js-selected-navigation-item sunken-menu-item" data-hotkey="g c" data-pjax="true" data-selected-links="repo_source repo_downloads repo_commits repo_releases repo_tags repo_branches /jquery/jquery-ui">
          <span class="octicon octicon-code"></span> <span class="full-word">Code</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>


      <li class="tooltipped tooltipped-w" aria-label="Pull Requests">
        <a href="/jquery/jquery-ui/pulls" aria-label="Pull Requests" class="js-selected-navigation-item sunken-menu-item js-disable-pjax" data-hotkey="g p" data-selected-links="repo_pulls /jquery/jquery-ui/pulls">
            <span class="octicon octicon-git-pull-request"></span> <span class="full-word">Pull Requests</span>
            <span class='counter'>46</span>
            <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>


    </ul>
    <div class="sunken-menu-separator"></div>
    <ul class="sunken-menu-group">

      <li class="tooltipped tooltipped-w" aria-label="Pulse">
        <a href="/jquery/jquery-ui/pulse" aria-label="Pulse" class="js-selected-navigation-item sunken-menu-item" data-pjax="true" data-selected-links="pulse /jquery/jquery-ui/pulse">
          <span class="octicon octicon-pulse"></span> <span class="full-word">Pulse</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>

      <li class="tooltipped tooltipped-w" aria-label="Graphs">
        <a href="/jquery/jquery-ui/graphs" aria-label="Graphs" class="js-selected-navigation-item sunken-menu-item" data-pjax="true" data-selected-links="repo_graphs repo_contributors /jquery/jquery-ui/graphs">
          <span class="octicon octicon-graph"></span> <span class="full-word">Graphs</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>

      <li class="tooltipped tooltipped-w" aria-label="Network">
        <a href="/jquery/jquery-ui/network" aria-label="Network" class="js-selected-navigation-item sunken-menu-item js-disable-pjax" data-selected-links="repo_network /jquery/jquery-ui/network">
          <span class="octicon octicon-repo-forked"></span> <span class="full-word">Network</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>
    </ul>


  </div>
</div>

              <div class="only-with-full-nav">
                

  

<div class="clone-url open"
  data-protocol-type="http"
  data-url="/users/set_protocol?protocol_selector=http&amp;protocol_type=clone">
  <h3><strong>HTTPS</strong> clone URL</h3>
  <div class="clone-url-box">
    <input type="text" class="clone js-url-field"
           value="https://github.com/jquery/jquery-ui.git" readonly="readonly">
    <span class="url-box-clippy">
    <button aria-label="Copy to clipboard" class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="https://github.com/jquery/jquery-ui.git" data-copied-hint="Copied!" type="button"><span class="octicon octicon-clippy"></span></button>
    </span>
  </div>
</div>

  

<div class="clone-url "
  data-protocol-type="ssh"
  data-url="/users/set_protocol?protocol_selector=ssh&amp;protocol_type=clone">
  <h3><strong>SSH</strong> clone URL</h3>
  <div class="clone-url-box">
    <input type="text" class="clone js-url-field"
           value="git@github.com:jquery/jquery-ui.git" readonly="readonly">
    <span class="url-box-clippy">
    <button aria-label="Copy to clipboard" class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="git@github.com:jquery/jquery-ui.git" data-copied-hint="Copied!" type="button"><span class="octicon octicon-clippy"></span></button>
    </span>
  </div>
</div>

  

<div class="clone-url "
  data-protocol-type="subversion"
  data-url="/users/set_protocol?protocol_selector=subversion&amp;protocol_type=clone">
  <h3><strong>Subversion</strong> checkout URL</h3>
  <div class="clone-url-box">
    <input type="text" class="clone js-url-field"
           value="https://github.com/jquery/jquery-ui" readonly="readonly">
    <span class="url-box-clippy">
    <button aria-label="Copy to clipboard" class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="https://github.com/jquery/jquery-ui" data-copied-hint="Copied!" type="button"><span class="octicon octicon-clippy"></span></button>
    </span>
  </div>
</div>


<p class="clone-options">You can clone with
      <a href="#" class="js-clone-selector" data-protocol="http">HTTPS</a>,
      <a href="#" class="js-clone-selector" data-protocol="ssh">SSH</a>,
      or <a href="#" class="js-clone-selector" data-protocol="subversion">Subversion</a>.
  <a href="https://help.github.com/articles/which-remote-url-should-i-use" class="help tooltipped tooltipped-n" aria-label="Get help on which URL is right for you.">
    <span class="octicon octicon-question"></span>
  </a>
</p>



                <a href="/jquery/jquery-ui/archive/master.zip"
                   class="minibutton sidebar-button"
                   aria-label="Download jquery/jquery-ui as a zip file"
                   title="Download jquery/jquery-ui as a zip file"
                   rel="nofollow">
                  <span class="octicon octicon-cloud-download"></span>
                  Download ZIP
                </a>
              </div>
        </div><!-- /.repository-sidebar -->

        <div id="js-repo-pjax-container" class="repository-content context-loader-container" data-pjax-container>
          


<a href="/jquery/jquery-ui/blob/98583a6563e7ae98ed67b5d70db2bff814c11e4e/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png" class="hidden js-permalink-shortcut" data-hotkey="y">Permalink</a>

<!-- blob contrib key: blob_contributors:v21:ae339baf07a2024272de0bd03c4de3c1 -->

<p title="This is a placeholder element" class="js-history-link-replace hidden"></p>

<div class="file-navigation">
  

<div class="select-menu js-menu-container js-select-menu" >
  <span class="minibutton select-menu-button js-menu-target css-truncate" data-hotkey="w"
    data-master-branch="master"
    data-ref="master"
    title="master"
    role="button" aria-label="Switch branches or tags" tabindex="0" aria-haspopup="true">
    <span class="octicon octicon-git-branch"></span>
    <i>branch:</i>
    <span class="js-select-button css-truncate-target">master</span>
  </span>

  <div class="select-menu-modal-holder js-menu-content js-navigation-container" data-pjax aria-hidden="true">

    <div class="select-menu-modal">
      <div class="select-menu-header">
        <span class="select-menu-title">Switch branches/tags</span>
        <span class="octicon octicon-x js-menu-close" role="button" aria-label="Close"></span>
      </div> <!-- /.select-menu-header -->

      <div class="select-menu-filters">
        <div class="select-menu-text-filter">
          <input type="text" aria-label="Filter branches/tags" id="context-commitish-filter-field" class="js-filterable-field js-navigation-enable" placeholder="Filter branches/tags">
        </div>
        <div class="select-menu-tabs">
          <ul>
            <li class="select-menu-tab">
              <a href="#" data-tab-filter="branches" class="js-select-menu-tab">Branches</a>
            </li>
            <li class="select-menu-tab">
              <a href="#" data-tab-filter="tags" class="js-select-menu-tab">Tags</a>
            </li>
          </ul>
        </div><!-- /.select-menu-tabs -->
      </div><!-- /.select-menu-filters -->

      <div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="branches">

        <div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring">


            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/1-8-stable/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1-8-stable"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1-8-stable">1-8-stable</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/1-9-stable/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1-9-stable"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1-9-stable">1-9-stable</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/1-10-stable/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1-10-stable"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1-10-stable">1-10-stable</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/button-icon-span/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="button-icon-span"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="button-icon-span">button-icon-span</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/datepicker/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="datepicker"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="datepicker">datepicker</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/interactions/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="interactions"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="interactions">interactions</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/interactions-polymer/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="interactions-polymer"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="interactions-polymer">interactions-polymer</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item selected">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/master/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="master"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="master">master</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/ref-1029-css-dependency-comments/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="ref-1029-css-dependency-comments"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="ref-1029-css-dependency-comments">ref-1029-css-dependency-comments</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/selectmenu-native-menu/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="selectmenu-native-menu"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="selectmenu-native-menu">selectmenu-native-menu</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/spinner-globalize-1.x/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="spinner-globalize-1.x"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="spinner-globalize-1.x">spinner-globalize-1.x</a>
            </div> <!-- /.select-menu-item -->
        </div>

          <div class="select-menu-no-results">Nothing to show</div>
      </div> <!-- /.select-menu-list -->

      <div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="tags">
        <div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring">


            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.11.0-beta.2/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.11.0-beta.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.11.0-beta.2">1.11.0-beta.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.11.0-beta.1/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.11.0-beta.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.11.0-beta.1">1.11.0-beta.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.11.0/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.11.0"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.11.0">1.11.0</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.4/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.10.4"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.4">1.10.4</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.3/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.10.3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.3">1.10.3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.2/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.10.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.2">1.10.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.1/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.10.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.1">1.10.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.0-rc.1/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.10.0-rc.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.0-rc.1">1.10.0-rc.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.0-beta.1/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.10.0-beta.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.0-beta.1">1.10.0-beta.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.0/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.10.0"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.0">1.10.0</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m7/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.9m7"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m7">1.9m7</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m6/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.9m6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m6">1.9m6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m5/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.9m5"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m5">1.9m5</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m4/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.9m4"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m4">1.9m4</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m3/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.9m3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m3">1.9m3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m2/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.9m2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m2">1.9m2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m1/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.9m1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m1">1.9m1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.2/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.9.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.2">1.9.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.1/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.9.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.1">1.9.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0-rc.1/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.9.0-rc.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0-rc.1">1.9.0-rc.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0m8/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.9.0m8"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0m8">1.9.0m8</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0-beta.1/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.9.0-beta.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0-beta.1">1.9.0-beta.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.9.0"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0">1.9.0</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8rc3/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.8rc3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8rc3">1.8rc3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8rc2/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.8rc2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8rc2">1.8rc2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8rc1/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.8rc1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8rc1">1.8rc1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8b1/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.8b1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8b1">1.8b1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8a2/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.8a2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8a2">1.8a2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8a1/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.8a1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8a1">1.8a1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.24/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.8.24"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.24">1.8.24</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.23/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.8.23"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.23">1.8.23</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.22/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.8.22"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.22">1.8.22</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.21/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.8.21"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.21">1.8.21</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.20/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.8.20"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.20">1.8.20</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.19/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.8.19"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.19">1.8.19</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.18/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.8.18"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.18">1.8.18</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.17/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.8.17"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.17">1.8.17</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.16/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.8.16"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.16">1.8.16</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.15/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.8.15"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.15">1.8.15</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.14/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.8.14"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.14">1.8.14</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.13/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.8.13"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.13">1.8.13</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.12/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.8.12"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.12">1.8.12</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.11/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.8.11"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.11">1.8.11</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.10/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.8.10"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.10">1.8.10</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.9/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.8.9"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.9">1.8.9</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.8/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.8.8"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.8">1.8.8</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.7/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.8.7"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.7">1.8.7</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.6/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.8.6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.6">1.8.6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.5/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.8.5"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.5">1.8.5</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.4/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.8.4"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.4">1.8.4</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.3/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.8.3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.3">1.8.3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.2/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.8.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.2">1.8.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.1/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.8.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.1">1.8.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.8"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8">1.8</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.7/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.7"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.7">1.7</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc6/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.6rc6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc6">1.6rc6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc5/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.6rc5"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc5">1.6rc5</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc3/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.6rc3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc3">1.6rc3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc2/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.6rc2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc2">1.6rc2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6">1.6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.5.2/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.5.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.5.2">1.5.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.5.1/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
                 data-name="1.5.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.5.1">1.5.1</a>
            </div> <!-- /.select-menu-item -->
        </div>

        <div class="select-menu-no-results">Nothing to show</div>
      </div> <!-- /.select-menu-list -->

    </div> <!-- /.select-menu-modal -->
  </div> <!-- /.select-menu-modal-holder -->
</div> <!-- /.select-menu -->

  <div class="button-group right">
    <a href="/jquery/jquery-ui/find/master"
          class="js-show-file-finder minibutton empty-icon tooltipped tooltipped-s"
          data-pjax
          data-hotkey="t"
          aria-label="Quickly jump between files">
      <span class="octicon octicon-list-unordered"></span>
    </a>
    <button class="js-zeroclipboard minibutton zeroclipboard-button"
          data-clipboard-text="themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
          aria-label="Copy to clipboard"
          data-copied-hint="Copied!">
      <span class="octicon octicon-clippy"></span>
    </button>
  </div>

  <div class="breadcrumb">
    <span class='repo-root js-repo-root'><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">jquery-ui</span></a></span></span><span class="separator"> / </span><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui/tree/master/themes" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">themes</span></a></span><span class="separator"> / </span><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui/tree/master/themes/base" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">base</span></a></span><span class="separator"> / </span><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui/tree/master/themes/base/images" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">images</span></a></span><span class="separator"> / </span><strong class="final-path">ui-bg_glass_75_e6e6e6_1x400.png</strong>
  </div>
</div>


  <div class="commit file-history-tease">
      <img alt="Travis Carden" class="main-avatar js-avatar" data-user="959246" height="24" src="https://avatars1.githubusercontent.com/u/959246?s=140" width="24" />
      <span class="author"><a href="/TravisCarden" rel="contributor">TravisCarden</a></span>
      <time datetime="2013-02-04T13:02:57-05:00" is="relative-time">February 04, 2013</time>
      <div class="commit-title">
          <a href="/jquery/jquery-ui/commit/a61af0b205c865b9c4f949bcc1bebe79994519d0" class="message" data-pjax="true" title="Fix file permissions in themes/base/images.">Fix file permissions in themes/base/images.</a>
      </div>

    <div class="participation">
      <p class="quickstat"><a href="#blob_contributors_box" rel="facebox"><strong>2</strong>  contributors</a></p>
          <a class="avatar tooltipped tooltipped-s" aria-label="TravisCarden" href="/jquery/jquery-ui/commits/master/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png?author=TravisCarden"><img alt="Travis Carden" class=" js-avatar" data-user="959246" height="20" src="https://avatars1.githubusercontent.com/u/959246?s=140" width="20" /></a>
    <a class="avatar tooltipped tooltipped-s" aria-label="scottjehl" href="/jquery/jquery-ui/commits/master/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png?author=scottjehl"><img alt="Scott Jehl" class=" js-avatar" data-user="214783" height="20" src="https://avatars2.githubusercontent.com/u/214783?s=140" width="20" /></a>


    </div>
    <div id="blob_contributors_box" style="display:none">
      <h2 class="facebox-header">Users who have contributed to this file</h2>
      <ul class="facebox-user-list">
          <li class="facebox-user-list-item">
            <img alt="Travis Carden" class=" js-avatar" data-user="959246" height="24" src="https://avatars1.githubusercontent.com/u/959246?s=140" width="24" />
            <a href="/TravisCarden">TravisCarden</a>
          </li>
          <li class="facebox-user-list-item">
            <img alt="Scott Jehl" class=" js-avatar" data-user="214783" height="24" src="https://avatars2.githubusercontent.com/u/214783?s=140" width="24" />
            <a href="/scottjehl">scottjehl</a>
          </li>
      </ul>
    </div>
  </div>

<div class="file-box">
  <div class="file">
    <div class="meta clearfix">
      <div class="info file-name">
        <span class="icon"><b class="octicon octicon-file-text"></b></span>
        <span class="mode" title="File Mode">file</span>
        <span class="meta-divider"></span>
        <span>0.11 kb</span>
      </div>
      <div class="actions">
        <div class="button-group">
          <a href="/jquery/jquery-ui/raw/master/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png" class="minibutton " id="raw-url">Raw</a>
          <a href="/jquery/jquery-ui/commits/master/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png" class="minibutton " rel="nofollow">History</a>
        </div><!-- /.button-group -->

            <a class="minibutton danger empty-icon tooltipped tooltipped-s"
               href="/jquery/jquery-ui/delete/master/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png"
               aria-label="Fork this project and delete file"
               data-method="post" data-test-id="delete-blob-file" rel="nofollow">

          Delete
        </a>
      </div><!-- /.actions -->
    </div>
      
  <div class="blob-wrapper data type-text js-blob-data">
      <div class="image js-image">
          <span class="border-wrap"><img src="https://raw.githubusercontent.com/jquery/jquery-ui/master/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png" alt="themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png" /></span>
      </div>
  </div>

  </div>
</div>

<a href="#jump-to-line" rel="facebox[.linejump]" data-hotkey="l" class="js-jump-to-line" style="display:none">Jump to Line</a>
<div id="jump-to-line" style="display:none">
  <form accept-charset="UTF-8" class="js-jump-to-line-form">
    <input class="linejump-input js-jump-to-line-field" type="text" placeholder="Jump to line&hellip;" autofocus>
    <button type="submit" class="button">Go</button>
  </form>
</div>

        </div>

      </div><!-- /.repo-container -->
      <div class="modal-backdrop"></div>
    </div><!-- /.container -->
  </div><!-- /.site -->


    </div><!-- /.wrapper -->

      <div class="container">
  <div class="site-footer">
    <ul class="site-footer-links right">
      <li><a href="https://status.github.com/">Status</a></li>
      <li><a href="http://developer.github.com">API</a></li>
      <li><a href="http://training.github.com">Training</a></li>
      <li><a href="http://shop.github.com">Shop</a></li>
      <li><a href="/blog">Blog</a></li>
      <li><a href="/about">About</a></li>

    </ul>

    <a href="/">
      <span class="mega-octicon octicon-mark-github" title="GitHub"></span>
    </a>

    <ul class="site-footer-links">
      <li>&copy; 2014 <span title="0.05289s from github-fe117-cp1-prd.iad.github.net">GitHub</span>, Inc.</li>
        <li><a href="/site/terms">Terms</a></li>
        <li><a href="/site/privacy">Privacy</a></li>
        <li><a href="/security">Security</a></li>
        <li><a href="/contact">Contact</a></li>
    </ul>
  </div><!-- /.site-footer -->
</div><!-- /.container -->


    <div class="fullscreen-overlay js-fullscreen-overlay" id="fullscreen_overlay">
  <div class="fullscreen-container js-fullscreen-container">
    <div class="textarea-wrap">
      <textarea name="fullscreen-contents" id="fullscreen-contents" class="fullscreen-contents js-fullscreen-contents" placeholder="" data-suggester="fullscreen_suggester"></textarea>
    </div>
  </div>
  <div class="fullscreen-sidebar">
    <a href="#" class="exit-fullscreen js-exit-fullscreen tooltipped tooltipped-w" aria-label="Exit Zen Mode">
      <span class="mega-octicon octicon-screen-normal"></span>
    </a>
    <a href="#" class="theme-switcher js-theme-switcher tooltipped tooltipped-w"
      aria-label="Switch themes">
      <span class="octicon octicon-color-mode"></span>
    </a>
  </div>
</div>



    <div id="ajax-error-message" class="flash flash-error">
      <span class="octicon octicon-alert"></span>
      <a href="#" class="octicon octicon-x close js-ajax-error-dismiss" aria-label="Dismiss error"></a>
      Something went wrong with that request. Please try again.
    </div>


      <script crossorigin="anonymous" src="https://assets-cdn.github.com/assets/frameworks-df9e4beac80276ed3dfa56be0d97b536d0f5ee12.js" type="text/javascript"></script>
      <script async="async" crossorigin="anonymous" src="https://assets-cdn.github.com/assets/github-534eef699bbadaf1454b432e14a2ab0a68c7ddf4.js" type="text/javascript"></script>
      
      
        <script async src="https://www.google-analytics.com/analytics.js"></script>
  </body>
</html>

  0707010000018F000081A40000000000000000000000015ECE2444000118F8000000000000000000000000000000000000004000000000cobbler-3.1.2/web/static/images/ui-bg_glass_95_fef1ec_1x400.png   




<!DOCTYPE html>
<html class="   ">
  <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# object: http://ogp.me/ns/object# article: http://ogp.me/ns/article# profile: http://ogp.me/ns/profile#">
    <meta charset='utf-8'>
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    
    
    <title>jquery-ui/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png at master · jquery/jquery-ui</title>
    <link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="GitHub" />
    <link rel="fluid-icon" href="https://github.com/fluidicon.png" title="GitHub" />
    <link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-114.png" />
    <link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114.png" />
    <link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-144.png" />
    <link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144.png" />
    <meta property="fb:app_id" content="1401488693436528"/>

      <meta content="@github" name="twitter:site" /><meta content="summary" name="twitter:card" /><meta content="jquery/jquery-ui" name="twitter:title" /><meta content="jquery-ui - The official jQuery user interface library." name="twitter:description" /><meta content="https://avatars1.githubusercontent.com/u/70142?s=400" name="twitter:image:src" />
<meta content="GitHub" property="og:site_name" /><meta content="object" property="og:type" /><meta content="https://avatars1.githubusercontent.com/u/70142?s=400" property="og:image" /><meta content="jquery/jquery-ui" property="og:title" /><meta content="https://github.com/jquery/jquery-ui" property="og:url" /><meta content="jquery-ui - The official jQuery user interface library." property="og:description" />

    <link rel="assets" href="https://assets-cdn.github.com/">
    <link rel="conduit-xhr" href="https://ghconduit.com:25035">
    <link rel="xhr-socket" href="/_sockets" />

    <meta name="msapplication-TileImage" content="/windows-tile.png" />
    <meta name="msapplication-TileColor" content="#ffffff" />
    <meta name="selected-link" value="repo_source" data-pjax-transient />
      <meta name="google-analytics" content="UA-3769691-2">

    <meta content="collector.githubapp.com" name="octolytics-host" /><meta content="collector-cdn.github.com" name="octolytics-script-host" /><meta content="github" name="octolytics-app-id" /><meta content="5ED1AC98:1163:4D6B6F6:53C6DBBD" name="octolytics-dimension-request_id" /><meta content="790690" name="octolytics-actor-id" /><meta content="jmaas" name="octolytics-actor-login" /><meta content="ac5e3878ac6703a37372cb2198cb3b8727e6b43c1e460ad6c9aeaeae1fb16fb4" name="octolytics-actor-hash" />
    

    
    
    <link rel="icon" type="image/x-icon" href="https://assets-cdn.github.com/favicon.ico" />


    <meta content="authenticity_token" name="csrf-param" />
<meta content="c1iefIr9nYIf3vJ3Ss6VQrydIPqUJ+qvN1FXH4xDVQcNsivze0QaE3MMXvitp5I7yoHurtZQcHwD2zS5jV2Z2w==" name="csrf-token" />

    <link href="https://assets-cdn.github.com/assets/github-c534ad575b5bb8c3cc3dce9c571df7aa7400dbe9.css" media="all" rel="stylesheet" type="text/css" />
    <link href="https://assets-cdn.github.com/assets/github2-84a1b6179d461213455892ab983182bc2052a7b5.css" media="all" rel="stylesheet" type="text/css" />
    


    <meta http-equiv="x-pjax-version" content="ef2e8ad48b4c98b3a1a0065370258ac2">

      
  <meta name="description" content="jquery-ui - The official jQuery user interface library." />


  <meta content="70142" name="octolytics-dimension-user_id" /><meta content="jquery" name="octolytics-dimension-user_login" /><meta content="478996" name="octolytics-dimension-repository_id" /><meta content="jquery/jquery-ui" name="octolytics-dimension-repository_nwo" /><meta content="true" name="octolytics-dimension-repository_public" /><meta content="false" name="octolytics-dimension-repository_is_fork" /><meta content="478996" name="octolytics-dimension-repository_network_root_id" /><meta content="jquery/jquery-ui" name="octolytics-dimension-repository_network_root_nwo" />

  <link href="https://github.com/jquery/jquery-ui/commits/master.atom" rel="alternate" title="Recent Commits to jquery-ui:master" type="application/atom+xml" />

  </head>


  <body class="logged_in  env-production linux vis-public page-blob">
    <a href="#start-of-content" tabindex="1" class="accessibility-aid js-skip-to-content">Skip to content</a>
    <div class="wrapper">
      
      
      
      


      <div class="header header-logged-in true">
  <div class="container clearfix">

    <a class="header-logo-invertocat" href="https://github.com/" aria-label="Homepage">
  <span class="mega-octicon octicon-mark-github"></span>
</a>


    
    <a href="/notifications" aria-label="You have no unread notifications" class="notification-indicator tooltipped tooltipped-s" data-hotkey="g n">
        <span class="mail-status all-read"></span>
</a>

      <div class="command-bar js-command-bar  in-repository">
          <form accept-charset="UTF-8" action="/search" class="command-bar-form" id="top_search_form" method="get">

<div class="commandbar">
  <span class="message"></span>
  <input type="text" data-hotkey="s" name="q" id="js-command-bar-field" placeholder="Search or type a command" tabindex="1" autocapitalize="off"
    
    data-username="jmaas"
    data-repo="jquery/jquery-ui"
  >
  <div class="display hidden"></div>
</div>

    <input type="hidden" name="nwo" value="jquery/jquery-ui" />

    <div class="select-menu js-menu-container js-select-menu search-context-select-menu">
      <span class="minibutton select-menu-button js-menu-target" role="button" aria-haspopup="true">
        <span class="js-select-button">This repository</span>
      </span>

      <div class="select-menu-modal-holder js-menu-content js-navigation-container" aria-hidden="true">
        <div class="select-menu-modal">

          <div class="select-menu-item js-navigation-item js-this-repository-navigation-item selected">
            <span class="select-menu-item-icon octicon octicon-check"></span>
            <input type="radio" class="js-search-this-repository" name="search_target" value="repository" checked="checked" />
            <div class="select-menu-item-text js-select-button-text">This repository</div>
          </div> <!-- /.select-menu-item -->

          <div class="select-menu-item js-navigation-item js-all-repositories-navigation-item">
            <span class="select-menu-item-icon octicon octicon-check"></span>
            <input type="radio" name="search_target" value="global" />
            <div class="select-menu-item-text js-select-button-text">All repositories</div>
          </div> <!-- /.select-menu-item -->

        </div>
      </div>
    </div>

  <span class="help tooltipped tooltipped-s" aria-label="Show command bar help">
    <span class="octicon octicon-question"></span>
  </span>


  <input type="hidden" name="ref" value="cmdform">

</form>
        <ul class="top-nav">
          <li class="explore"><a href="/explore">Explore</a></li>
            <li><a href="https://gist.github.com">Gist</a></li>
            <li><a href="/blog">Blog</a></li>
          <li><a href="https://help.github.com">Help</a></li>
        </ul>
      </div>

    

<ul id="user-links">
  <li>
    <a href="/jmaas" class="name">
      <img alt="Jörgen Maas" class=" js-avatar" data-user="790690" height="20" src="https://avatars1.githubusercontent.com/u/790690?s=140" width="20" /> jmaas
    </a>
  </li>

  <li class="new-menu dropdown-toggle js-menu-container">
    <a href="#" class="js-menu-target tooltipped tooltipped-s" aria-label="Create new...">
      <span class="octicon octicon-plus"></span>
      <span class="dropdown-arrow"></span>
    </a>

    <div class="new-menu-content js-menu-content">
    </div>
  </li>

  <li>
    <a href="/settings/profile" id="account_settings"
      class="tooltipped tooltipped-s"
      aria-label="Account settings ">
      <span class="octicon octicon-tools"></span>
    </a>
  </li>
  <li>
    <form accept-charset="UTF-8" action="/logout" class="logout-form" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="deogLb8j/93NFdG6mOkrlbrbrig2Xv2oCJcfmjuBXR76loGMDek81X9GIyPx38JkTiRdxb6r4XtorJtKsPjqNA==" /></div>
      <button class="sign-out-button tooltipped tooltipped-s" aria-label="Sign out">
        <span class="octicon octicon-sign-out"></span>
      </button>
</form>  </li>

</ul>

<div class="js-new-dropdown-contents hidden">
  

<ul class="dropdown-menu">
  <li>
    <a href="/new"><span class="octicon octicon-repo"></span> New repository</a>
  </li>
  <li>
    <a href="/organizations/new"><span class="octicon octicon-organization"></span> New organization</a>
  </li>


</ul>

</div>


    
  </div>
</div>

      

        



      <div id="start-of-content" class="accessibility-aid"></div>
          <div class="site" itemscope itemtype="http://schema.org/WebPage">
    <div id="js-flash-container">
      
    </div>
    <div class="pagehead repohead instapaper_ignore readability-menu">
      <div class="container">
        
<ul class="pagehead-actions">

    <li class="subscription">
      <form accept-charset="UTF-8" action="/notifications/subscribe" class="js-social-container" data-autosubmit="true" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="ZyNE7Lwl8RfEYIl2zCccvNOd2cV6yUmns7w/mg1f6dXFS8LyMHPU49xRcWlmgXbsl6qYKq4bBVbQWTlQe5giHg==" /></div>  <input id="repository_id" name="repository_id" type="hidden" value="478996" />

    <div class="select-menu js-menu-container js-select-menu">
      <a class="social-count js-social-count" href="/jquery/jquery-ui/watchers">
        639
      </a>
      <a href="/jquery/jquery-ui/subscription"
        class="minibutton select-menu-button with-count js-menu-target" role="button" tabindex="0" aria-haspopup="true">
        <span class="js-select-button">
          <span class="octicon octicon-eye"></span>
          Watch
        </span>
      </a>

      <div class="select-menu-modal-holder">
        <div class="select-menu-modal subscription-menu-modal js-menu-content" aria-hidden="true">
          <div class="select-menu-header">
            <span class="select-menu-title">Notifications</span>
            <span class="octicon octicon-x js-menu-close" role="button" aria-label="Close"></span>
          </div> <!-- /.select-menu-header -->

          <div class="select-menu-list js-navigation-container" role="menu">

            <div class="select-menu-item js-navigation-item selected" role="menuitem" tabindex="0">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <div class="select-menu-item-text">
                <input checked="checked" id="do_included" name="do" type="radio" value="included" />
                <h4>Not watching</h4>
                <span class="description">Be notified when participating or @mentioned.</span>
                <span class="js-select-button-text hidden-select-button-text">
                  <span class="octicon octicon-eye"></span>
                  Watch
                </span>
              </div>
            </div> <!-- /.select-menu-item -->

            <div class="select-menu-item js-navigation-item " role="menuitem" tabindex="0">
              <span class="select-menu-item-icon octicon octicon octicon-check"></span>
              <div class="select-menu-item-text">
                <input id="do_subscribed" name="do" type="radio" value="subscribed" />
                <h4>Watching</h4>
                <span class="description">Be notified of all conversations.</span>
                <span class="js-select-button-text hidden-select-button-text">
                  <span class="octicon octicon-eye"></span>
                  Unwatch
                </span>
              </div>
            </div> <!-- /.select-menu-item -->

            <div class="select-menu-item js-navigation-item " role="menuitem" tabindex="0">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <div class="select-menu-item-text">
                <input id="do_ignore" name="do" type="radio" value="ignore" />
                <h4>Ignoring</h4>
                <span class="description">Never be notified.</span>
                <span class="js-select-button-text hidden-select-button-text">
                  <span class="octicon octicon-mute"></span>
                  Stop ignoring
                </span>
              </div>
            </div> <!-- /.select-menu-item -->

          </div> <!-- /.select-menu-list -->

        </div> <!-- /.select-menu-modal -->
      </div> <!-- /.select-menu-modal-holder -->
    </div> <!-- /.select-menu -->

</form>
    </li>

  <li>
    

  <div class="js-toggler-container js-social-container starring-container ">

    <form accept-charset="UTF-8" action="/jquery/jquery-ui/unstar" class="js-toggler-form starred" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="23K3qYb3skSzy3Xseh/fOgoJkpM1gQOY9gsyKuGtsFWnt6kz/NOU+2bmPgJxDfPrd1WLVFXaJJuXygv8ac3NHA==" /></div>
      <button
        class="minibutton with-count js-toggler-target star-button"
        aria-label="Unstar this repository" title="Unstar jquery/jquery-ui">
        <span class="octicon octicon-star"></span>
        Unstar
      </button>
        <a class="social-count js-social-count" href="/jquery/jquery-ui/stargazers">
          8,441
        </a>
</form>
    <form accept-charset="UTF-8" action="/jquery/jquery-ui/star" class="js-toggler-form unstarred" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="6n6z3zAJJIks/gRjvERXtwxjINmBDjYjOk7aK9Q6nf6QGkTvrpAoGLQqh6s5Q8kdRCOu2+MNrJfMsETPxFnCoQ==" /></div>
      <button
        class="minibutton with-count js-toggler-target star-button"
        aria-label="Star this repository" title="Star jquery/jquery-ui">
        <span class="octicon octicon-star"></span>
        Star
      </button>
        <a class="social-count js-social-count" href="/jquery/jquery-ui/stargazers">
          8,441
        </a>
</form>  </div>

  </li>


        <li>
          <a href="/jquery/jquery-ui/fork" class="minibutton with-count js-toggler-target fork-button lighter tooltipped-n" title="Fork your own copy of jquery/jquery-ui to your account" aria-label="Fork your own copy of jquery/jquery-ui to your account" rel="facebox nofollow">
            <span class="octicon octicon-repo-forked"></span>
            Fork
          </a>
          <a href="/jquery/jquery-ui/network" class="social-count">3,098</a>
        </li>

</ul>

        <h1 itemscope itemtype="http://data-vocabulary.org/Breadcrumb" class="entry-title public">
          <span class="repo-label"><span>public</span></span>
          <span class="mega-octicon octicon-repo"></span>
          <span class="author"><a href="/jquery" class="url fn" itemprop="url" rel="author"><span itemprop="title">jquery</span></a></span><!--
       --><span class="path-divider">/</span><!--
       --><strong><a href="/jquery/jquery-ui" class="js-current-repository js-repo-home-link">jquery-ui</a></strong>

          <span class="page-context-loader">
            <img alt="" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
          </span>

        </h1>
      </div><!-- /.container -->
    </div><!-- /.repohead -->

    <div class="container">
      <div class="repository-with-sidebar repo-container new-discussion-timeline js-new-discussion-timeline  ">
        <div class="repository-sidebar clearfix">
            

<div class="sunken-menu vertical-right repo-nav js-repo-nav js-repository-container-pjax js-octicon-loaders">
  <div class="sunken-menu-contents">
    <ul class="sunken-menu-group">
      <li class="tooltipped tooltipped-w" aria-label="Code">
        <a href="/jquery/jquery-ui" aria-label="Code" class="selected js-selected-navigation-item sunken-menu-item" data-hotkey="g c" data-pjax="true" data-selected-links="repo_source repo_downloads repo_commits repo_releases repo_tags repo_branches /jquery/jquery-ui">
          <span class="octicon octicon-code"></span> <span class="full-word">Code</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>


      <li class="tooltipped tooltipped-w" aria-label="Pull Requests">
        <a href="/jquery/jquery-ui/pulls" aria-label="Pull Requests" class="js-selected-navigation-item sunken-menu-item js-disable-pjax" data-hotkey="g p" data-selected-links="repo_pulls /jquery/jquery-ui/pulls">
            <span class="octicon octicon-git-pull-request"></span> <span class="full-word">Pull Requests</span>
            <span class='counter'>46</span>
            <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>


    </ul>
    <div class="sunken-menu-separator"></div>
    <ul class="sunken-menu-group">

      <li class="tooltipped tooltipped-w" aria-label="Pulse">
        <a href="/jquery/jquery-ui/pulse" aria-label="Pulse" class="js-selected-navigation-item sunken-menu-item" data-pjax="true" data-selected-links="pulse /jquery/jquery-ui/pulse">
          <span class="octicon octicon-pulse"></span> <span class="full-word">Pulse</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>

      <li class="tooltipped tooltipped-w" aria-label="Graphs">
        <a href="/jquery/jquery-ui/graphs" aria-label="Graphs" class="js-selected-navigation-item sunken-menu-item" data-pjax="true" data-selected-links="repo_graphs repo_contributors /jquery/jquery-ui/graphs">
          <span class="octicon octicon-graph"></span> <span class="full-word">Graphs</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>

      <li class="tooltipped tooltipped-w" aria-label="Network">
        <a href="/jquery/jquery-ui/network" aria-label="Network" class="js-selected-navigation-item sunken-menu-item js-disable-pjax" data-selected-links="repo_network /jquery/jquery-ui/network">
          <span class="octicon octicon-repo-forked"></span> <span class="full-word">Network</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>
    </ul>


  </div>
</div>

              <div class="only-with-full-nav">
                

  

<div class="clone-url open"
  data-protocol-type="http"
  data-url="/users/set_protocol?protocol_selector=http&amp;protocol_type=clone">
  <h3><strong>HTTPS</strong> clone URL</h3>
  <div class="clone-url-box">
    <input type="text" class="clone js-url-field"
           value="https://github.com/jquery/jquery-ui.git" readonly="readonly">
    <span class="url-box-clippy">
    <button aria-label="Copy to clipboard" class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="https://github.com/jquery/jquery-ui.git" data-copied-hint="Copied!" type="button"><span class="octicon octicon-clippy"></span></button>
    </span>
  </div>
</div>

  

<div class="clone-url "
  data-protocol-type="ssh"
  data-url="/users/set_protocol?protocol_selector=ssh&amp;protocol_type=clone">
  <h3><strong>SSH</strong> clone URL</h3>
  <div class="clone-url-box">
    <input type="text" class="clone js-url-field"
           value="git@github.com:jquery/jquery-ui.git" readonly="readonly">
    <span class="url-box-clippy">
    <button aria-label="Copy to clipboard" class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="git@github.com:jquery/jquery-ui.git" data-copied-hint="Copied!" type="button"><span class="octicon octicon-clippy"></span></button>
    </span>
  </div>
</div>

  

<div class="clone-url "
  data-protocol-type="subversion"
  data-url="/users/set_protocol?protocol_selector=subversion&amp;protocol_type=clone">
  <h3><strong>Subversion</strong> checkout URL</h3>
  <div class="clone-url-box">
    <input type="text" class="clone js-url-field"
           value="https://github.com/jquery/jquery-ui" readonly="readonly">
    <span class="url-box-clippy">
    <button aria-label="Copy to clipboard" class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="https://github.com/jquery/jquery-ui" data-copied-hint="Copied!" type="button"><span class="octicon octicon-clippy"></span></button>
    </span>
  </div>
</div>


<p class="clone-options">You can clone with
      <a href="#" class="js-clone-selector" data-protocol="http">HTTPS</a>,
      <a href="#" class="js-clone-selector" data-protocol="ssh">SSH</a>,
      or <a href="#" class="js-clone-selector" data-protocol="subversion">Subversion</a>.
  <a href="https://help.github.com/articles/which-remote-url-should-i-use" class="help tooltipped tooltipped-n" aria-label="Get help on which URL is right for you.">
    <span class="octicon octicon-question"></span>
  </a>
</p>



                <a href="/jquery/jquery-ui/archive/master.zip"
                   class="minibutton sidebar-button"
                   aria-label="Download jquery/jquery-ui as a zip file"
                   title="Download jquery/jquery-ui as a zip file"
                   rel="nofollow">
                  <span class="octicon octicon-cloud-download"></span>
                  Download ZIP
                </a>
              </div>
        </div><!-- /.repository-sidebar -->

        <div id="js-repo-pjax-container" class="repository-content context-loader-container" data-pjax-container>
          


<a href="/jquery/jquery-ui/blob/98583a6563e7ae98ed67b5d70db2bff814c11e4e/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png" class="hidden js-permalink-shortcut" data-hotkey="y">Permalink</a>

<!-- blob contrib key: blob_contributors:v21:5f82797bf0478cc6078b538edb7359d0 -->

<p title="This is a placeholder element" class="js-history-link-replace hidden"></p>

<div class="file-navigation">
  

<div class="select-menu js-menu-container js-select-menu" >
  <span class="minibutton select-menu-button js-menu-target css-truncate" data-hotkey="w"
    data-master-branch="master"
    data-ref="master"
    title="master"
    role="button" aria-label="Switch branches or tags" tabindex="0" aria-haspopup="true">
    <span class="octicon octicon-git-branch"></span>
    <i>branch:</i>
    <span class="js-select-button css-truncate-target">master</span>
  </span>

  <div class="select-menu-modal-holder js-menu-content js-navigation-container" data-pjax aria-hidden="true">

    <div class="select-menu-modal">
      <div class="select-menu-header">
        <span class="select-menu-title">Switch branches/tags</span>
        <span class="octicon octicon-x js-menu-close" role="button" aria-label="Close"></span>
      </div> <!-- /.select-menu-header -->

      <div class="select-menu-filters">
        <div class="select-menu-text-filter">
          <input type="text" aria-label="Filter branches/tags" id="context-commitish-filter-field" class="js-filterable-field js-navigation-enable" placeholder="Filter branches/tags">
        </div>
        <div class="select-menu-tabs">
          <ul>
            <li class="select-menu-tab">
              <a href="#" data-tab-filter="branches" class="js-select-menu-tab">Branches</a>
            </li>
            <li class="select-menu-tab">
              <a href="#" data-tab-filter="tags" class="js-select-menu-tab">Tags</a>
            </li>
          </ul>
        </div><!-- /.select-menu-tabs -->
      </div><!-- /.select-menu-filters -->

      <div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="branches">

        <div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring">


            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/1-8-stable/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1-8-stable"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1-8-stable">1-8-stable</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/1-9-stable/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1-9-stable"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1-9-stable">1-9-stable</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/1-10-stable/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1-10-stable"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1-10-stable">1-10-stable</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/button-icon-span/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="button-icon-span"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="button-icon-span">button-icon-span</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/datepicker/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="datepicker"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="datepicker">datepicker</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/interactions/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="interactions"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="interactions">interactions</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/interactions-polymer/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="interactions-polymer"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="interactions-polymer">interactions-polymer</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item selected">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/master/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="master"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="master">master</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/ref-1029-css-dependency-comments/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="ref-1029-css-dependency-comments"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="ref-1029-css-dependency-comments">ref-1029-css-dependency-comments</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/selectmenu-native-menu/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="selectmenu-native-menu"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="selectmenu-native-menu">selectmenu-native-menu</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/spinner-globalize-1.x/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="spinner-globalize-1.x"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="spinner-globalize-1.x">spinner-globalize-1.x</a>
            </div> <!-- /.select-menu-item -->
        </div>

          <div class="select-menu-no-results">Nothing to show</div>
      </div> <!-- /.select-menu-list -->

      <div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="tags">
        <div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring">


            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.11.0-beta.2/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.11.0-beta.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.11.0-beta.2">1.11.0-beta.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.11.0-beta.1/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.11.0-beta.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.11.0-beta.1">1.11.0-beta.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.11.0/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.11.0"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.11.0">1.11.0</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.4/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.10.4"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.4">1.10.4</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.3/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.10.3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.3">1.10.3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.2/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.10.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.2">1.10.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.1/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.10.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.1">1.10.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.0-rc.1/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.10.0-rc.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.0-rc.1">1.10.0-rc.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.0-beta.1/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.10.0-beta.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.0-beta.1">1.10.0-beta.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.0/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.10.0"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.0">1.10.0</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m7/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.9m7"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m7">1.9m7</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m6/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.9m6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m6">1.9m6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m5/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.9m5"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m5">1.9m5</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m4/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.9m4"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m4">1.9m4</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m3/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.9m3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m3">1.9m3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m2/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.9m2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m2">1.9m2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m1/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.9m1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m1">1.9m1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.2/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.9.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.2">1.9.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.1/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.9.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.1">1.9.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0-rc.1/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.9.0-rc.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0-rc.1">1.9.0-rc.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0m8/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.9.0m8"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0m8">1.9.0m8</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0-beta.1/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.9.0-beta.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0-beta.1">1.9.0-beta.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.9.0"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0">1.9.0</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8rc3/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.8rc3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8rc3">1.8rc3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8rc2/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.8rc2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8rc2">1.8rc2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8rc1/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.8rc1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8rc1">1.8rc1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8b1/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.8b1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8b1">1.8b1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8a2/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.8a2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8a2">1.8a2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8a1/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.8a1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8a1">1.8a1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.24/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.8.24"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.24">1.8.24</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.23/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.8.23"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.23">1.8.23</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.22/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.8.22"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.22">1.8.22</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.21/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.8.21"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.21">1.8.21</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.20/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.8.20"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.20">1.8.20</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.19/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.8.19"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.19">1.8.19</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.18/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.8.18"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.18">1.8.18</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.17/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.8.17"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.17">1.8.17</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.16/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.8.16"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.16">1.8.16</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.15/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.8.15"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.15">1.8.15</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.14/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.8.14"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.14">1.8.14</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.13/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.8.13"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.13">1.8.13</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.12/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.8.12"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.12">1.8.12</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.11/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.8.11"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.11">1.8.11</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.10/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.8.10"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.10">1.8.10</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.9/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.8.9"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.9">1.8.9</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.8/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.8.8"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.8">1.8.8</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.7/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.8.7"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.7">1.8.7</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.6/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.8.6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.6">1.8.6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.5/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.8.5"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.5">1.8.5</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.4/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.8.4"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.4">1.8.4</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.3/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.8.3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.3">1.8.3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.2/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.8.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.2">1.8.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.1/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.8.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.1">1.8.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.8"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8">1.8</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.7/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.7"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.7">1.7</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc6/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.6rc6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc6">1.6rc6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc5/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.6rc5"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc5">1.6rc5</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc3/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.6rc3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc3">1.6rc3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc2/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.6rc2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc2">1.6rc2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6">1.6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.5.2/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.5.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.5.2">1.5.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.5.1/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
                 data-name="1.5.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.5.1">1.5.1</a>
            </div> <!-- /.select-menu-item -->
        </div>

        <div class="select-menu-no-results">Nothing to show</div>
      </div> <!-- /.select-menu-list -->

    </div> <!-- /.select-menu-modal -->
  </div> <!-- /.select-menu-modal-holder -->
</div> <!-- /.select-menu -->

  <div class="button-group right">
    <a href="/jquery/jquery-ui/find/master"
          class="js-show-file-finder minibutton empty-icon tooltipped tooltipped-s"
          data-pjax
          data-hotkey="t"
          aria-label="Quickly jump between files">
      <span class="octicon octicon-list-unordered"></span>
    </a>
    <button class="js-zeroclipboard minibutton zeroclipboard-button"
          data-clipboard-text="themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
          aria-label="Copy to clipboard"
          data-copied-hint="Copied!">
      <span class="octicon octicon-clippy"></span>
    </button>
  </div>

  <div class="breadcrumb">
    <span class='repo-root js-repo-root'><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">jquery-ui</span></a></span></span><span class="separator"> / </span><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui/tree/master/themes" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">themes</span></a></span><span class="separator"> / </span><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui/tree/master/themes/base" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">base</span></a></span><span class="separator"> / </span><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui/tree/master/themes/base/images" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">images</span></a></span><span class="separator"> / </span><strong class="final-path">ui-bg_glass_95_fef1ec_1x400.png</strong>
  </div>
</div>


  <div class="commit file-history-tease">
      <img alt="Richard D. Worth" class="main-avatar js-avatar" data-user="107824" height="24" src="https://avatars2.githubusercontent.com/u/107824?s=140" width="24" />
      <span class="author"><a href="/rdworth" rel="contributor">rdworth</a></span>
      <time datetime="2009-06-04T10:27:26Z" is="relative-time">June 04, 2009</time>
      <div class="commit-title">
          <a href="/jquery/jquery-ui/commit/8c3179edaade027d89eedf3e06317ab542041909" class="message" data-pjax="true" title="Updated base theme to match smoothness. Fixed #4447 - UI Icons are not even, causes misaligned buttons">Updated base theme to match smoothness. Fixed #4447 - UI Icons are no…</a>
      </div>

    <div class="participation">
      <p class="quickstat"><a href="#blob_contributors_box" rel="facebox"><strong>1</strong>  contributor</a></p>
      
    </div>
    <div id="blob_contributors_box" style="display:none">
      <h2 class="facebox-header">Users who have contributed to this file</h2>
      <ul class="facebox-user-list">
          <li class="facebox-user-list-item">
            <img alt="Richard D. Worth" class=" js-avatar" data-user="107824" height="24" src="https://avatars2.githubusercontent.com/u/107824?s=140" width="24" />
            <a href="/rdworth">rdworth</a>
          </li>
      </ul>
    </div>
  </div>

<div class="file-box">
  <div class="file">
    <div class="meta clearfix">
      <div class="info file-name">
        <span class="icon"><b class="octicon octicon-file-text"></b></span>
        <span class="mode" title="File Mode">file</span>
        <span class="meta-divider"></span>
        <span>0.119 kb</span>
      </div>
      <div class="actions">
        <div class="button-group">
          <a href="/jquery/jquery-ui/raw/master/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png" class="minibutton " id="raw-url">Raw</a>
          <a href="/jquery/jquery-ui/commits/master/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png" class="minibutton " rel="nofollow">History</a>
        </div><!-- /.button-group -->

            <a class="minibutton danger empty-icon tooltipped tooltipped-s"
               href="/jquery/jquery-ui/delete/master/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png"
               aria-label="Fork this project and delete file"
               data-method="post" data-test-id="delete-blob-file" rel="nofollow">

          Delete
        </a>
      </div><!-- /.actions -->
    </div>
      
  <div class="blob-wrapper data type-text js-blob-data">
      <div class="image js-image">
          <span class="border-wrap"><img src="https://raw.githubusercontent.com/jquery/jquery-ui/master/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png" alt="themes/base/images/ui-bg_glass_95_fef1ec_1x400.png" /></span>
      </div>
  </div>

  </div>
</div>

<a href="#jump-to-line" rel="facebox[.linejump]" data-hotkey="l" class="js-jump-to-line" style="display:none">Jump to Line</a>
<div id="jump-to-line" style="display:none">
  <form accept-charset="UTF-8" class="js-jump-to-line-form">
    <input class="linejump-input js-jump-to-line-field" type="text" placeholder="Jump to line&hellip;" autofocus>
    <button type="submit" class="button">Go</button>
  </form>
</div>

        </div>

      </div><!-- /.repo-container -->
      <div class="modal-backdrop"></div>
    </div><!-- /.container -->
  </div><!-- /.site -->


    </div><!-- /.wrapper -->

      <div class="container">
  <div class="site-footer">
    <ul class="site-footer-links right">
      <li><a href="https://status.github.com/">Status</a></li>
      <li><a href="http://developer.github.com">API</a></li>
      <li><a href="http://training.github.com">Training</a></li>
      <li><a href="http://shop.github.com">Shop</a></li>
      <li><a href="/blog">Blog</a></li>
      <li><a href="/about">About</a></li>

    </ul>

    <a href="/">
      <span class="mega-octicon octicon-mark-github" title="GitHub"></span>
    </a>

    <ul class="site-footer-links">
      <li>&copy; 2014 <span title="0.04901s from github-fe120-cp1-prd.iad.github.net">GitHub</span>, Inc.</li>
        <li><a href="/site/terms">Terms</a></li>
        <li><a href="/site/privacy">Privacy</a></li>
        <li><a href="/security">Security</a></li>
        <li><a href="/contact">Contact</a></li>
    </ul>
  </div><!-- /.site-footer -->
</div><!-- /.container -->


    <div class="fullscreen-overlay js-fullscreen-overlay" id="fullscreen_overlay">
  <div class="fullscreen-container js-fullscreen-container">
    <div class="textarea-wrap">
      <textarea name="fullscreen-contents" id="fullscreen-contents" class="fullscreen-contents js-fullscreen-contents" placeholder="" data-suggester="fullscreen_suggester"></textarea>
    </div>
  </div>
  <div class="fullscreen-sidebar">
    <a href="#" class="exit-fullscreen js-exit-fullscreen tooltipped tooltipped-w" aria-label="Exit Zen Mode">
      <span class="mega-octicon octicon-screen-normal"></span>
    </a>
    <a href="#" class="theme-switcher js-theme-switcher tooltipped tooltipped-w"
      aria-label="Switch themes">
      <span class="octicon octicon-color-mode"></span>
    </a>
  </div>
</div>



    <div id="ajax-error-message" class="flash flash-error">
      <span class="octicon octicon-alert"></span>
      <a href="#" class="octicon octicon-x close js-ajax-error-dismiss" aria-label="Dismiss error"></a>
      Something went wrong with that request. Please try again.
    </div>


      <script crossorigin="anonymous" src="https://assets-cdn.github.com/assets/frameworks-df9e4beac80276ed3dfa56be0d97b536d0f5ee12.js" type="text/javascript"></script>
      <script async="async" crossorigin="anonymous" src="https://assets-cdn.github.com/assets/github-534eef699bbadaf1454b432e14a2ab0a68c7ddf4.js" type="text/javascript"></script>
      
      
        <script async src="https://www.google-analytics.com/analytics.js"></script>
  </body>
</html>

07070100000190000081A40000000000000000000000015ECE244400011F50000000000000000000000000000000000000004900000000cobbler-3.1.2/web/static/images/ui-bg_highlight-soft_75_cccccc_1x100.png  




<!DOCTYPE html>
<html class="   ">
  <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# object: http://ogp.me/ns/object# article: http://ogp.me/ns/article# profile: http://ogp.me/ns/profile#">
    <meta charset='utf-8'>
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    
    
    <title>jquery-ui/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png at master · jquery/jquery-ui</title>
    <link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="GitHub" />
    <link rel="fluid-icon" href="https://github.com/fluidicon.png" title="GitHub" />
    <link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-114.png" />
    <link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114.png" />
    <link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-144.png" />
    <link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144.png" />
    <meta property="fb:app_id" content="1401488693436528"/>

      <meta content="@github" name="twitter:site" /><meta content="summary" name="twitter:card" /><meta content="jquery/jquery-ui" name="twitter:title" /><meta content="jquery-ui - The official jQuery user interface library." name="twitter:description" /><meta content="https://avatars1.githubusercontent.com/u/70142?s=400" name="twitter:image:src" />
<meta content="GitHub" property="og:site_name" /><meta content="object" property="og:type" /><meta content="https://avatars1.githubusercontent.com/u/70142?s=400" property="og:image" /><meta content="jquery/jquery-ui" property="og:title" /><meta content="https://github.com/jquery/jquery-ui" property="og:url" /><meta content="jquery-ui - The official jQuery user interface library." property="og:description" />

    <link rel="assets" href="https://assets-cdn.github.com/">
    <link rel="conduit-xhr" href="https://ghconduit.com:25035">
    <link rel="xhr-socket" href="/_sockets" />

    <meta name="msapplication-TileImage" content="/windows-tile.png" />
    <meta name="msapplication-TileColor" content="#ffffff" />
    <meta name="selected-link" value="repo_source" data-pjax-transient />
      <meta name="google-analytics" content="UA-3769691-2">

    <meta content="collector.githubapp.com" name="octolytics-host" /><meta content="collector-cdn.github.com" name="octolytics-script-host" /><meta content="github" name="octolytics-app-id" /><meta content="5ED1AC98:5BD8:13D6E4AC:53C6DB44" name="octolytics-dimension-request_id" /><meta content="790690" name="octolytics-actor-id" /><meta content="jmaas" name="octolytics-actor-login" /><meta content="ac5e3878ac6703a37372cb2198cb3b8727e6b43c1e460ad6c9aeaeae1fb16fb4" name="octolytics-actor-hash" />
    

    
    
    <link rel="icon" type="image/x-icon" href="https://assets-cdn.github.com/favicon.ico" />


    <meta content="authenticity_token" name="csrf-param" />
<meta content="F7VQfafqr2oqE2xwXlWayGCC8l2M6Z6mkMMs9NfIRlm9sRlvvICP3Sf4nP/ACodZb8ER9IwWh7qQHvjgXBuKSg==" name="csrf-token" />

    <link href="https://assets-cdn.github.com/assets/github-c534ad575b5bb8c3cc3dce9c571df7aa7400dbe9.css" media="all" rel="stylesheet" type="text/css" />
    <link href="https://assets-cdn.github.com/assets/github2-84a1b6179d461213455892ab983182bc2052a7b5.css" media="all" rel="stylesheet" type="text/css" />
    


    <meta http-equiv="x-pjax-version" content="ef2e8ad48b4c98b3a1a0065370258ac2">

      
  <meta name="description" content="jquery-ui - The official jQuery user interface library." />


  <meta content="70142" name="octolytics-dimension-user_id" /><meta content="jquery" name="octolytics-dimension-user_login" /><meta content="478996" name="octolytics-dimension-repository_id" /><meta content="jquery/jquery-ui" name="octolytics-dimension-repository_nwo" /><meta content="true" name="octolytics-dimension-repository_public" /><meta content="false" name="octolytics-dimension-repository_is_fork" /><meta content="478996" name="octolytics-dimension-repository_network_root_id" /><meta content="jquery/jquery-ui" name="octolytics-dimension-repository_network_root_nwo" />

  <link href="https://github.com/jquery/jquery-ui/commits/master.atom" rel="alternate" title="Recent Commits to jquery-ui:master" type="application/atom+xml" />

  </head>


  <body class="logged_in  env-production linux vis-public page-blob">
    <a href="#start-of-content" tabindex="1" class="accessibility-aid js-skip-to-content">Skip to content</a>
    <div class="wrapper">
      
      
      
      


      <div class="header header-logged-in true">
  <div class="container clearfix">

    <a class="header-logo-invertocat" href="https://github.com/" aria-label="Homepage">
  <span class="mega-octicon octicon-mark-github"></span>
</a>


    
    <a href="/notifications" aria-label="You have no unread notifications" class="notification-indicator tooltipped tooltipped-s" data-hotkey="g n">
        <span class="mail-status all-read"></span>
</a>

      <div class="command-bar js-command-bar  in-repository">
          <form accept-charset="UTF-8" action="/search" class="command-bar-form" id="top_search_form" method="get">

<div class="commandbar">
  <span class="message"></span>
  <input type="text" data-hotkey="s" name="q" id="js-command-bar-field" placeholder="Search or type a command" tabindex="1" autocapitalize="off"
    
    data-username="jmaas"
    data-repo="jquery/jquery-ui"
  >
  <div class="display hidden"></div>
</div>

    <input type="hidden" name="nwo" value="jquery/jquery-ui" />

    <div class="select-menu js-menu-container js-select-menu search-context-select-menu">
      <span class="minibutton select-menu-button js-menu-target" role="button" aria-haspopup="true">
        <span class="js-select-button">This repository</span>
      </span>

      <div class="select-menu-modal-holder js-menu-content js-navigation-container" aria-hidden="true">
        <div class="select-menu-modal">

          <div class="select-menu-item js-navigation-item js-this-repository-navigation-item selected">
            <span class="select-menu-item-icon octicon octicon-check"></span>
            <input type="radio" class="js-search-this-repository" name="search_target" value="repository" checked="checked" />
            <div class="select-menu-item-text js-select-button-text">This repository</div>
          </div> <!-- /.select-menu-item -->

          <div class="select-menu-item js-navigation-item js-all-repositories-navigation-item">
            <span class="select-menu-item-icon octicon octicon-check"></span>
            <input type="radio" name="search_target" value="global" />
            <div class="select-menu-item-text js-select-button-text">All repositories</div>
          </div> <!-- /.select-menu-item -->

        </div>
      </div>
    </div>

  <span class="help tooltipped tooltipped-s" aria-label="Show command bar help">
    <span class="octicon octicon-question"></span>
  </span>


  <input type="hidden" name="ref" value="cmdform">

</form>
        <ul class="top-nav">
          <li class="explore"><a href="/explore">Explore</a></li>
            <li><a href="https://gist.github.com">Gist</a></li>
            <li><a href="/blog">Blog</a></li>
          <li><a href="https://help.github.com">Help</a></li>
        </ul>
      </div>

    

<ul id="user-links">
  <li>
    <a href="/jmaas" class="name">
      <img alt="Jörgen Maas" class=" js-avatar" data-user="790690" height="20" src="https://avatars1.githubusercontent.com/u/790690?s=140" width="20" /> jmaas
    </a>
  </li>

  <li class="new-menu dropdown-toggle js-menu-container">
    <a href="#" class="js-menu-target tooltipped tooltipped-s" aria-label="Create new...">
      <span class="octicon octicon-plus"></span>
      <span class="dropdown-arrow"></span>
    </a>

    <div class="new-menu-content js-menu-content">
    </div>
  </li>

  <li>
    <a href="/settings/profile" id="account_settings"
      class="tooltipped tooltipped-s"
      aria-label="Account settings ">
      <span class="octicon octicon-tools"></span>
    </a>
  </li>
  <li>
    <form accept-charset="UTF-8" action="/logout" class="logout-form" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="1l2CM/+YwmA39TOgslpWplqAS7YjlA8pPqMQ38ErPH8KYHDIJr7LWtxqbDPpjkHCVUoF1Uif+aVVAW/3tpa+qg==" /></div>
      <button class="sign-out-button tooltipped tooltipped-s" aria-label="Sign out">
        <span class="octicon octicon-sign-out"></span>
      </button>
</form>  </li>

</ul>

<div class="js-new-dropdown-contents hidden">
  

<ul class="dropdown-menu">
  <li>
    <a href="/new"><span class="octicon octicon-repo"></span> New repository</a>
  </li>
  <li>
    <a href="/organizations/new"><span class="octicon octicon-organization"></span> New organization</a>
  </li>


</ul>

</div>


    
  </div>
</div>

      

        



      <div id="start-of-content" class="accessibility-aid"></div>
          <div class="site" itemscope itemtype="http://schema.org/WebPage">
    <div id="js-flash-container">
      
    </div>
    <div class="pagehead repohead instapaper_ignore readability-menu">
      <div class="container">
        
<ul class="pagehead-actions">

    <li class="subscription">
      <form accept-charset="UTF-8" action="/notifications/subscribe" class="js-social-container" data-autosubmit="true" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="vPXpycQJCQBmzo9kg79ppHLJhkM5YRvhUqSp/zzsiAc3P1qEAIGcWNE6d5yY12rHhCF7XqcxxnSjAp2juD90Wg==" /></div>  <input id="repository_id" name="repository_id" type="hidden" value="478996" />

    <div class="select-menu js-menu-container js-select-menu">
      <a class="social-count js-social-count" href="/jquery/jquery-ui/watchers">
        639
      </a>
      <a href="/jquery/jquery-ui/subscription"
        class="minibutton select-menu-button with-count js-menu-target" role="button" tabindex="0" aria-haspopup="true">
        <span class="js-select-button">
          <span class="octicon octicon-eye"></span>
          Watch
        </span>
      </a>

      <div class="select-menu-modal-holder">
        <div class="select-menu-modal subscription-menu-modal js-menu-content" aria-hidden="true">
          <div class="select-menu-header">
            <span class="select-menu-title">Notifications</span>
            <span class="octicon octicon-x js-menu-close" role="button" aria-label="Close"></span>
          </div> <!-- /.select-menu-header -->

          <div class="select-menu-list js-navigation-container" role="menu">

            <div class="select-menu-item js-navigation-item selected" role="menuitem" tabindex="0">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <div class="select-menu-item-text">
                <input checked="checked" id="do_included" name="do" type="radio" value="included" />
                <h4>Not watching</h4>
                <span class="description">Be notified when participating or @mentioned.</span>
                <span class="js-select-button-text hidden-select-button-text">
                  <span class="octicon octicon-eye"></span>
                  Watch
                </span>
              </div>
            </div> <!-- /.select-menu-item -->

            <div class="select-menu-item js-navigation-item " role="menuitem" tabindex="0">
              <span class="select-menu-item-icon octicon octicon octicon-check"></span>
              <div class="select-menu-item-text">
                <input id="do_subscribed" name="do" type="radio" value="subscribed" />
                <h4>Watching</h4>
                <span class="description">Be notified of all conversations.</span>
                <span class="js-select-button-text hidden-select-button-text">
                  <span class="octicon octicon-eye"></span>
                  Unwatch
                </span>
              </div>
            </div> <!-- /.select-menu-item -->

            <div class="select-menu-item js-navigation-item " role="menuitem" tabindex="0">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <div class="select-menu-item-text">
                <input id="do_ignore" name="do" type="radio" value="ignore" />
                <h4>Ignoring</h4>
                <span class="description">Never be notified.</span>
                <span class="js-select-button-text hidden-select-button-text">
                  <span class="octicon octicon-mute"></span>
                  Stop ignoring
                </span>
              </div>
            </div> <!-- /.select-menu-item -->

          </div> <!-- /.select-menu-list -->

        </div> <!-- /.select-menu-modal -->
      </div> <!-- /.select-menu-modal-holder -->
    </div> <!-- /.select-menu -->

</form>
    </li>

  <li>
    

  <div class="js-toggler-container js-social-container starring-container ">

    <form accept-charset="UTF-8" action="/jquery/jquery-ui/unstar" class="js-toggler-form starred" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="EsxYV6rkT5BLVFcWjY0owIRSnZxZepiBXXLd98JTH8wd9/GIH31e8kiFKDKZQpZfgTyCsRDTU0gADT5PNk1TJw==" /></div>
      <button
        class="minibutton with-count js-toggler-target star-button"
        aria-label="Unstar this repository" title="Unstar jquery/jquery-ui">
        <span class="octicon octicon-star"></span>
        Unstar
      </button>
        <a class="social-count js-social-count" href="/jquery/jquery-ui/stargazers">
          8,441
        </a>
</form>
    <form accept-charset="UTF-8" action="/jquery/jquery-ui/star" class="js-toggler-form unstarred" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="HuDd18DYFfPzqSXviiVt2973vmQBvFFdp1+d7qzM17sdKwJnmWfNvedP7ZnI9G1zGef0CEk1muwTqMoAp37kdQ==" /></div>
      <button
        class="minibutton with-count js-toggler-target star-button"
        aria-label="Star this repository" title="Star jquery/jquery-ui">
        <span class="octicon octicon-star"></span>
        Star
      </button>
        <a class="social-count js-social-count" href="/jquery/jquery-ui/stargazers">
          8,441
        </a>
</form>  </div>

  </li>


        <li>
          <a href="/jquery/jquery-ui/fork" class="minibutton with-count js-toggler-target fork-button lighter tooltipped-n" title="Fork your own copy of jquery/jquery-ui to your account" aria-label="Fork your own copy of jquery/jquery-ui to your account" rel="facebox nofollow">
            <span class="octicon octicon-repo-forked"></span>
            Fork
          </a>
          <a href="/jquery/jquery-ui/network" class="social-count">3,098</a>
        </li>

</ul>

        <h1 itemscope itemtype="http://data-vocabulary.org/Breadcrumb" class="entry-title public">
          <span class="repo-label"><span>public</span></span>
          <span class="mega-octicon octicon-repo"></span>
          <span class="author"><a href="/jquery" class="url fn" itemprop="url" rel="author"><span itemprop="title">jquery</span></a></span><!--
       --><span class="path-divider">/</span><!--
       --><strong><a href="/jquery/jquery-ui" class="js-current-repository js-repo-home-link">jquery-ui</a></strong>

          <span class="page-context-loader">
            <img alt="" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
          </span>

        </h1>
      </div><!-- /.container -->
    </div><!-- /.repohead -->

    <div class="container">
      <div class="repository-with-sidebar repo-container new-discussion-timeline js-new-discussion-timeline  ">
        <div class="repository-sidebar clearfix">
            

<div class="sunken-menu vertical-right repo-nav js-repo-nav js-repository-container-pjax js-octicon-loaders">
  <div class="sunken-menu-contents">
    <ul class="sunken-menu-group">
      <li class="tooltipped tooltipped-w" aria-label="Code">
        <a href="/jquery/jquery-ui" aria-label="Code" class="selected js-selected-navigation-item sunken-menu-item" data-hotkey="g c" data-pjax="true" data-selected-links="repo_source repo_downloads repo_commits repo_releases repo_tags repo_branches /jquery/jquery-ui">
          <span class="octicon octicon-code"></span> <span class="full-word">Code</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>


      <li class="tooltipped tooltipped-w" aria-label="Pull Requests">
        <a href="/jquery/jquery-ui/pulls" aria-label="Pull Requests" class="js-selected-navigation-item sunken-menu-item js-disable-pjax" data-hotkey="g p" data-selected-links="repo_pulls /jquery/jquery-ui/pulls">
            <span class="octicon octicon-git-pull-request"></span> <span class="full-word">Pull Requests</span>
            <span class='counter'>46</span>
            <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>


    </ul>
    <div class="sunken-menu-separator"></div>
    <ul class="sunken-menu-group">

      <li class="tooltipped tooltipped-w" aria-label="Pulse">
        <a href="/jquery/jquery-ui/pulse" aria-label="Pulse" class="js-selected-navigation-item sunken-menu-item" data-pjax="true" data-selected-links="pulse /jquery/jquery-ui/pulse">
          <span class="octicon octicon-pulse"></span> <span class="full-word">Pulse</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>

      <li class="tooltipped tooltipped-w" aria-label="Graphs">
        <a href="/jquery/jquery-ui/graphs" aria-label="Graphs" class="js-selected-navigation-item sunken-menu-item" data-pjax="true" data-selected-links="repo_graphs repo_contributors /jquery/jquery-ui/graphs">
          <span class="octicon octicon-graph"></span> <span class="full-word">Graphs</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>

      <li class="tooltipped tooltipped-w" aria-label="Network">
        <a href="/jquery/jquery-ui/network" aria-label="Network" class="js-selected-navigation-item sunken-menu-item js-disable-pjax" data-selected-links="repo_network /jquery/jquery-ui/network">
          <span class="octicon octicon-repo-forked"></span> <span class="full-word">Network</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>
    </ul>


  </div>
</div>

              <div class="only-with-full-nav">
                

  

<div class="clone-url open"
  data-protocol-type="http"
  data-url="/users/set_protocol?protocol_selector=http&amp;protocol_type=clone">
  <h3><strong>HTTPS</strong> clone URL</h3>
  <div class="clone-url-box">
    <input type="text" class="clone js-url-field"
           value="https://github.com/jquery/jquery-ui.git" readonly="readonly">
    <span class="url-box-clippy">
    <button aria-label="Copy to clipboard" class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="https://github.com/jquery/jquery-ui.git" data-copied-hint="Copied!" type="button"><span class="octicon octicon-clippy"></span></button>
    </span>
  </div>
</div>

  

<div class="clone-url "
  data-protocol-type="ssh"
  data-url="/users/set_protocol?protocol_selector=ssh&amp;protocol_type=clone">
  <h3><strong>SSH</strong> clone URL</h3>
  <div class="clone-url-box">
    <input type="text" class="clone js-url-field"
           value="git@github.com:jquery/jquery-ui.git" readonly="readonly">
    <span class="url-box-clippy">
    <button aria-label="Copy to clipboard" class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="git@github.com:jquery/jquery-ui.git" data-copied-hint="Copied!" type="button"><span class="octicon octicon-clippy"></span></button>
    </span>
  </div>
</div>

  

<div class="clone-url "
  data-protocol-type="subversion"
  data-url="/users/set_protocol?protocol_selector=subversion&amp;protocol_type=clone">
  <h3><strong>Subversion</strong> checkout URL</h3>
  <div class="clone-url-box">
    <input type="text" class="clone js-url-field"
           value="https://github.com/jquery/jquery-ui" readonly="readonly">
    <span class="url-box-clippy">
    <button aria-label="Copy to clipboard" class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="https://github.com/jquery/jquery-ui" data-copied-hint="Copied!" type="button"><span class="octicon octicon-clippy"></span></button>
    </span>
  </div>
</div>


<p class="clone-options">You can clone with
      <a href="#" class="js-clone-selector" data-protocol="http">HTTPS</a>,
      <a href="#" class="js-clone-selector" data-protocol="ssh">SSH</a>,
      or <a href="#" class="js-clone-selector" data-protocol="subversion">Subversion</a>.
  <a href="https://help.github.com/articles/which-remote-url-should-i-use" class="help tooltipped tooltipped-n" aria-label="Get help on which URL is right for you.">
    <span class="octicon octicon-question"></span>
  </a>
</p>



                <a href="/jquery/jquery-ui/archive/master.zip"
                   class="minibutton sidebar-button"
                   aria-label="Download jquery/jquery-ui as a zip file"
                   title="Download jquery/jquery-ui as a zip file"
                   rel="nofollow">
                  <span class="octicon octicon-cloud-download"></span>
                  Download ZIP
                </a>
              </div>
        </div><!-- /.repository-sidebar -->

        <div id="js-repo-pjax-container" class="repository-content context-loader-container" data-pjax-container>
          


<a href="/jquery/jquery-ui/blob/98583a6563e7ae98ed67b5d70db2bff814c11e4e/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png" class="hidden js-permalink-shortcut" data-hotkey="y">Permalink</a>

<!-- blob contrib key: blob_contributors:v21:6b2ecbc2d82c014bd71f1a1af9554104 -->

<p title="This is a placeholder element" class="js-history-link-replace hidden"></p>

<div class="file-navigation">
  

<div class="select-menu js-menu-container js-select-menu" >
  <span class="minibutton select-menu-button js-menu-target css-truncate" data-hotkey="w"
    data-master-branch="master"
    data-ref="master"
    title="master"
    role="button" aria-label="Switch branches or tags" tabindex="0" aria-haspopup="true">
    <span class="octicon octicon-git-branch"></span>
    <i>branch:</i>
    <span class="js-select-button css-truncate-target">master</span>
  </span>

  <div class="select-menu-modal-holder js-menu-content js-navigation-container" data-pjax aria-hidden="true">

    <div class="select-menu-modal">
      <div class="select-menu-header">
        <span class="select-menu-title">Switch branches/tags</span>
        <span class="octicon octicon-x js-menu-close" role="button" aria-label="Close"></span>
      </div> <!-- /.select-menu-header -->

      <div class="select-menu-filters">
        <div class="select-menu-text-filter">
          <input type="text" aria-label="Filter branches/tags" id="context-commitish-filter-field" class="js-filterable-field js-navigation-enable" placeholder="Filter branches/tags">
        </div>
        <div class="select-menu-tabs">
          <ul>
            <li class="select-menu-tab">
              <a href="#" data-tab-filter="branches" class="js-select-menu-tab">Branches</a>
            </li>
            <li class="select-menu-tab">
              <a href="#" data-tab-filter="tags" class="js-select-menu-tab">Tags</a>
            </li>
          </ul>
        </div><!-- /.select-menu-tabs -->
      </div><!-- /.select-menu-filters -->

      <div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="branches">

        <div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring">


            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/1-8-stable/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1-8-stable"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1-8-stable">1-8-stable</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/1-9-stable/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1-9-stable"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1-9-stable">1-9-stable</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/1-10-stable/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1-10-stable"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1-10-stable">1-10-stable</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/button-icon-span/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="button-icon-span"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="button-icon-span">button-icon-span</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/datepicker/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="datepicker"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="datepicker">datepicker</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/interactions/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="interactions"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="interactions">interactions</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/interactions-polymer/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="interactions-polymer"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="interactions-polymer">interactions-polymer</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item selected">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/master/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="master"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="master">master</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/ref-1029-css-dependency-comments/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="ref-1029-css-dependency-comments"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="ref-1029-css-dependency-comments">ref-1029-css-dependency-comments</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/selectmenu-native-menu/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="selectmenu-native-menu"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="selectmenu-native-menu">selectmenu-native-menu</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/spinner-globalize-1.x/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="spinner-globalize-1.x"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="spinner-globalize-1.x">spinner-globalize-1.x</a>
            </div> <!-- /.select-menu-item -->
        </div>

          <div class="select-menu-no-results">Nothing to show</div>
      </div> <!-- /.select-menu-list -->

      <div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="tags">
        <div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring">


            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.11.0-beta.2/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.11.0-beta.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.11.0-beta.2">1.11.0-beta.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.11.0-beta.1/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.11.0-beta.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.11.0-beta.1">1.11.0-beta.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.11.0/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.11.0"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.11.0">1.11.0</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.4/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.10.4"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.4">1.10.4</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.3/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.10.3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.3">1.10.3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.2/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.10.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.2">1.10.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.1/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.10.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.1">1.10.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.0-rc.1/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.10.0-rc.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.0-rc.1">1.10.0-rc.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.0-beta.1/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.10.0-beta.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.0-beta.1">1.10.0-beta.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.0/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.10.0"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.0">1.10.0</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m7/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.9m7"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m7">1.9m7</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m6/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.9m6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m6">1.9m6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m5/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.9m5"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m5">1.9m5</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m4/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.9m4"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m4">1.9m4</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m3/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.9m3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m3">1.9m3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m2/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.9m2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m2">1.9m2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m1/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.9m1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m1">1.9m1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.2/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.9.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.2">1.9.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.1/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.9.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.1">1.9.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0-rc.1/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.9.0-rc.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0-rc.1">1.9.0-rc.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0m8/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.9.0m8"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0m8">1.9.0m8</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0-beta.1/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.9.0-beta.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0-beta.1">1.9.0-beta.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.9.0"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0">1.9.0</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8rc3/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.8rc3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8rc3">1.8rc3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8rc2/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.8rc2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8rc2">1.8rc2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8rc1/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.8rc1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8rc1">1.8rc1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8b1/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.8b1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8b1">1.8b1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8a2/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.8a2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8a2">1.8a2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8a1/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.8a1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8a1">1.8a1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.24/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.8.24"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.24">1.8.24</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.23/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.8.23"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.23">1.8.23</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.22/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.8.22"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.22">1.8.22</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.21/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.8.21"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.21">1.8.21</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.20/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.8.20"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.20">1.8.20</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.19/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.8.19"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.19">1.8.19</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.18/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.8.18"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.18">1.8.18</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.17/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.8.17"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.17">1.8.17</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.16/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.8.16"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.16">1.8.16</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.15/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.8.15"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.15">1.8.15</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.14/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.8.14"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.14">1.8.14</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.13/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.8.13"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.13">1.8.13</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.12/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.8.12"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.12">1.8.12</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.11/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.8.11"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.11">1.8.11</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.10/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.8.10"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.10">1.8.10</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.9/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.8.9"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.9">1.8.9</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.8/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.8.8"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.8">1.8.8</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.7/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.8.7"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.7">1.8.7</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.6/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.8.6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.6">1.8.6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.5/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.8.5"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.5">1.8.5</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.4/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.8.4"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.4">1.8.4</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.3/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.8.3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.3">1.8.3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.2/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.8.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.2">1.8.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.1/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.8.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.1">1.8.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.8"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8">1.8</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.7/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.7"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.7">1.7</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc6/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.6rc6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc6">1.6rc6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc5/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.6rc5"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc5">1.6rc5</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc3/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.6rc3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc3">1.6rc3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc2/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.6rc2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc2">1.6rc2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6">1.6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.5.2/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.5.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.5.2">1.5.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.5.1/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
                 data-name="1.5.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.5.1">1.5.1</a>
            </div> <!-- /.select-menu-item -->
        </div>

        <div class="select-menu-no-results">Nothing to show</div>
      </div> <!-- /.select-menu-list -->

    </div> <!-- /.select-menu-modal -->
  </div> <!-- /.select-menu-modal-holder -->
</div> <!-- /.select-menu -->

  <div class="button-group right">
    <a href="/jquery/jquery-ui/find/master"
          class="js-show-file-finder minibutton empty-icon tooltipped tooltipped-s"
          data-pjax
          data-hotkey="t"
          aria-label="Quickly jump between files">
      <span class="octicon octicon-list-unordered"></span>
    </a>
    <button class="js-zeroclipboard minibutton zeroclipboard-button"
          data-clipboard-text="themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
          aria-label="Copy to clipboard"
          data-copied-hint="Copied!">
      <span class="octicon octicon-clippy"></span>
    </button>
  </div>

  <div class="breadcrumb">
    <span class='repo-root js-repo-root'><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">jquery-ui</span></a></span></span><span class="separator"> / </span><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui/tree/master/themes" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">themes</span></a></span><span class="separator"> / </span><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui/tree/master/themes/base" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">base</span></a></span><span class="separator"> / </span><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui/tree/master/themes/base/images" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">images</span></a></span><span class="separator"> / </span><strong class="final-path">ui-bg_highlight-soft_75_cccccc_1x100.png</strong>
  </div>
</div>


  <div class="commit file-history-tease">
      <img alt="Travis Carden" class="main-avatar js-avatar" data-user="959246" height="24" src="https://avatars1.githubusercontent.com/u/959246?s=140" width="24" />
      <span class="author"><a href="/TravisCarden" rel="contributor">TravisCarden</a></span>
      <time datetime="2013-02-04T13:02:57-05:00" is="relative-time">February 04, 2013</time>
      <div class="commit-title">
          <a href="/jquery/jquery-ui/commit/a61af0b205c865b9c4f949bcc1bebe79994519d0" class="message" data-pjax="true" title="Fix file permissions in themes/base/images.">Fix file permissions in themes/base/images.</a>
      </div>

    <div class="participation">
      <p class="quickstat"><a href="#blob_contributors_box" rel="facebox"><strong>2</strong>  contributors</a></p>
          <a class="avatar tooltipped tooltipped-s" aria-label="TravisCarden" href="/jquery/jquery-ui/commits/master/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png?author=TravisCarden"><img alt="Travis Carden" class=" js-avatar" data-user="959246" height="20" src="https://avatars1.githubusercontent.com/u/959246?s=140" width="20" /></a>
    <a class="avatar tooltipped tooltipped-s" aria-label="scottjehl" href="/jquery/jquery-ui/commits/master/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png?author=scottjehl"><img alt="Scott Jehl" class=" js-avatar" data-user="214783" height="20" src="https://avatars2.githubusercontent.com/u/214783?s=140" width="20" /></a>


    </div>
    <div id="blob_contributors_box" style="display:none">
      <h2 class="facebox-header">Users who have contributed to this file</h2>
      <ul class="facebox-user-list">
          <li class="facebox-user-list-item">
            <img alt="Travis Carden" class=" js-avatar" data-user="959246" height="24" src="https://avatars1.githubusercontent.com/u/959246?s=140" width="24" />
            <a href="/TravisCarden">TravisCarden</a>
          </li>
          <li class="facebox-user-list-item">
            <img alt="Scott Jehl" class=" js-avatar" data-user="214783" height="24" src="https://avatars2.githubusercontent.com/u/214783?s=140" width="24" />
            <a href="/scottjehl">scottjehl</a>
          </li>
      </ul>
    </div>
  </div>

<div class="file-box">
  <div class="file">
    <div class="meta clearfix">
      <div class="info file-name">
        <span class="icon"><b class="octicon octicon-file-text"></b></span>
        <span class="mode" title="File Mode">file</span>
        <span class="meta-divider"></span>
        <span>0.101 kb</span>
      </div>
      <div class="actions">
        <div class="button-group">
          <a href="/jquery/jquery-ui/raw/master/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png" class="minibutton " id="raw-url">Raw</a>
          <a href="/jquery/jquery-ui/commits/master/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png" class="minibutton " rel="nofollow">History</a>
        </div><!-- /.button-group -->

            <a class="minibutton danger empty-icon tooltipped tooltipped-s"
               href="/jquery/jquery-ui/delete/master/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
               aria-label="Fork this project and delete file"
               data-method="post" data-test-id="delete-blob-file" rel="nofollow">

          Delete
        </a>
      </div><!-- /.actions -->
    </div>
      
  <div class="blob-wrapper data type-text js-blob-data">
      <div class="image js-image">
          <span class="border-wrap"><img src="https://raw.githubusercontent.com/jquery/jquery-ui/master/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png" alt="themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png" /></span>
      </div>
  </div>

  </div>
</div>

<a href="#jump-to-line" rel="facebox[.linejump]" data-hotkey="l" class="js-jump-to-line" style="display:none">Jump to Line</a>
<div id="jump-to-line" style="display:none">
  <form accept-charset="UTF-8" class="js-jump-to-line-form">
    <input class="linejump-input js-jump-to-line-field" type="text" placeholder="Jump to line&hellip;" autofocus>
    <button type="submit" class="button">Go</button>
  </form>
</div>

        </div>

      </div><!-- /.repo-container -->
      <div class="modal-backdrop"></div>
    </div><!-- /.container -->
  </div><!-- /.site -->


    </div><!-- /.wrapper -->

      <div class="container">
  <div class="site-footer">
    <ul class="site-footer-links right">
      <li><a href="https://status.github.com/">Status</a></li>
      <li><a href="http://developer.github.com">API</a></li>
      <li><a href="http://training.github.com">Training</a></li>
      <li><a href="http://shop.github.com">Shop</a></li>
      <li><a href="/blog">Blog</a></li>
      <li><a href="/about">About</a></li>

    </ul>

    <a href="/">
      <span class="mega-octicon octicon-mark-github" title="GitHub"></span>
    </a>

    <ul class="site-footer-links">
      <li>&copy; 2014 <span title="0.04851s from github-fe130-cp1-prd.iad.github.net">GitHub</span>, Inc.</li>
        <li><a href="/site/terms">Terms</a></li>
        <li><a href="/site/privacy">Privacy</a></li>
        <li><a href="/security">Security</a></li>
        <li><a href="/contact">Contact</a></li>
    </ul>
  </div><!-- /.site-footer -->
</div><!-- /.container -->


    <div class="fullscreen-overlay js-fullscreen-overlay" id="fullscreen_overlay">
  <div class="fullscreen-container js-fullscreen-container">
    <div class="textarea-wrap">
      <textarea name="fullscreen-contents" id="fullscreen-contents" class="fullscreen-contents js-fullscreen-contents" placeholder="" data-suggester="fullscreen_suggester"></textarea>
    </div>
  </div>
  <div class="fullscreen-sidebar">
    <a href="#" class="exit-fullscreen js-exit-fullscreen tooltipped tooltipped-w" aria-label="Exit Zen Mode">
      <span class="mega-octicon octicon-screen-normal"></span>
    </a>
    <a href="#" class="theme-switcher js-theme-switcher tooltipped tooltipped-w"
      aria-label="Switch themes">
      <span class="octicon octicon-color-mode"></span>
    </a>
  </div>
</div>



    <div id="ajax-error-message" class="flash flash-error">
      <span class="octicon octicon-alert"></span>
      <a href="#" class="octicon octicon-x close js-ajax-error-dismiss" aria-label="Dismiss error"></a>
      Something went wrong with that request. Please try again.
    </div>


      <script crossorigin="anonymous" src="https://assets-cdn.github.com/assets/frameworks-df9e4beac80276ed3dfa56be0d97b536d0f5ee12.js" type="text/javascript"></script>
      <script async="async" crossorigin="anonymous" src="https://assets-cdn.github.com/assets/github-534eef699bbadaf1454b432e14a2ab0a68c7ddf4.js" type="text/javascript"></script>
      
      
        <script async src="https://www.google-analytics.com/analytics.js"></script>
  </body>
</html>

07070100000191000081A40000000000000000000000015ECE244400011D5D000000000000000000000000000000000000003C00000000cobbler-3.1.2/web/static/images/ui-icons_222222_256x240.png   




<!DOCTYPE html>
<html class="   ">
  <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# object: http://ogp.me/ns/object# article: http://ogp.me/ns/article# profile: http://ogp.me/ns/profile#">
    <meta charset='utf-8'>
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    
    
    <title>jquery-ui/themes/base/images/ui-icons_222222_256x240.png at master · jquery/jquery-ui</title>
    <link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="GitHub" />
    <link rel="fluid-icon" href="https://github.com/fluidicon.png" title="GitHub" />
    <link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-114.png" />
    <link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114.png" />
    <link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-144.png" />
    <link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144.png" />
    <meta property="fb:app_id" content="1401488693436528"/>

      <meta content="@github" name="twitter:site" /><meta content="summary" name="twitter:card" /><meta content="jquery/jquery-ui" name="twitter:title" /><meta content="jquery-ui - The official jQuery user interface library." name="twitter:description" /><meta content="https://avatars1.githubusercontent.com/u/70142?s=400" name="twitter:image:src" />
<meta content="GitHub" property="og:site_name" /><meta content="object" property="og:type" /><meta content="https://avatars1.githubusercontent.com/u/70142?s=400" property="og:image" /><meta content="jquery/jquery-ui" property="og:title" /><meta content="https://github.com/jquery/jquery-ui" property="og:url" /><meta content="jquery-ui - The official jQuery user interface library." property="og:description" />

    <link rel="assets" href="https://assets-cdn.github.com/">
    <link rel="conduit-xhr" href="https://ghconduit.com:25035">
    <link rel="xhr-socket" href="/_sockets" />

    <meta name="msapplication-TileImage" content="/windows-tile.png" />
    <meta name="msapplication-TileColor" content="#ffffff" />
    <meta name="selected-link" value="repo_source" data-pjax-transient />
      <meta name="google-analytics" content="UA-3769691-2">

    <meta content="collector.githubapp.com" name="octolytics-host" /><meta content="collector-cdn.github.com" name="octolytics-script-host" /><meta content="github" name="octolytics-app-id" /><meta content="5ED1AC98:5934:8A07C34:53C6D87E" name="octolytics-dimension-request_id" /><meta content="790690" name="octolytics-actor-id" /><meta content="jmaas" name="octolytics-actor-login" /><meta content="ac5e3878ac6703a37372cb2198cb3b8727e6b43c1e460ad6c9aeaeae1fb16fb4" name="octolytics-actor-hash" />
    

    
    
    <link rel="icon" type="image/x-icon" href="https://assets-cdn.github.com/favicon.ico" />


    <meta content="authenticity_token" name="csrf-param" />
<meta content="NlGQbJc8dO+6LfD3VkqjMLTPep81ll22apMzKiM4RIbWoIjspsBbeSMD+MGq5WNQTGZcBrc4vFENvPifTDFF4A==" name="csrf-token" />

    <link href="https://assets-cdn.github.com/assets/github-c534ad575b5bb8c3cc3dce9c571df7aa7400dbe9.css" media="all" rel="stylesheet" type="text/css" />
    <link href="https://assets-cdn.github.com/assets/github2-84a1b6179d461213455892ab983182bc2052a7b5.css" media="all" rel="stylesheet" type="text/css" />
    


    <meta http-equiv="x-pjax-version" content="ef2e8ad48b4c98b3a1a0065370258ac2">

      
  <meta name="description" content="jquery-ui - The official jQuery user interface library." />


  <meta content="70142" name="octolytics-dimension-user_id" /><meta content="jquery" name="octolytics-dimension-user_login" /><meta content="478996" name="octolytics-dimension-repository_id" /><meta content="jquery/jquery-ui" name="octolytics-dimension-repository_nwo" /><meta content="true" name="octolytics-dimension-repository_public" /><meta content="false" name="octolytics-dimension-repository_is_fork" /><meta content="478996" name="octolytics-dimension-repository_network_root_id" /><meta content="jquery/jquery-ui" name="octolytics-dimension-repository_network_root_nwo" />

  <link href="https://github.com/jquery/jquery-ui/commits/master.atom" rel="alternate" title="Recent Commits to jquery-ui:master" type="application/atom+xml" />

  </head>


  <body class="logged_in  env-production linux vis-public page-blob">
    <a href="#start-of-content" tabindex="1" class="accessibility-aid js-skip-to-content">Skip to content</a>
    <div class="wrapper">
      
      
      
      


      <div class="header header-logged-in true">
  <div class="container clearfix">

    <a class="header-logo-invertocat" href="https://github.com/" aria-label="Homepage">
  <span class="mega-octicon octicon-mark-github"></span>
</a>


    
    <a href="/notifications" aria-label="You have no unread notifications" class="notification-indicator tooltipped tooltipped-s" data-hotkey="g n">
        <span class="mail-status all-read"></span>
</a>

      <div class="command-bar js-command-bar  in-repository">
          <form accept-charset="UTF-8" action="/search" class="command-bar-form" id="top_search_form" method="get">

<div class="commandbar">
  <span class="message"></span>
  <input type="text" data-hotkey="s" name="q" id="js-command-bar-field" placeholder="Search or type a command" tabindex="1" autocapitalize="off"
    
    data-username="jmaas"
    data-repo="jquery/jquery-ui"
  >
  <div class="display hidden"></div>
</div>

    <input type="hidden" name="nwo" value="jquery/jquery-ui" />

    <div class="select-menu js-menu-container js-select-menu search-context-select-menu">
      <span class="minibutton select-menu-button js-menu-target" role="button" aria-haspopup="true">
        <span class="js-select-button">This repository</span>
      </span>

      <div class="select-menu-modal-holder js-menu-content js-navigation-container" aria-hidden="true">
        <div class="select-menu-modal">

          <div class="select-menu-item js-navigation-item js-this-repository-navigation-item selected">
            <span class="select-menu-item-icon octicon octicon-check"></span>
            <input type="radio" class="js-search-this-repository" name="search_target" value="repository" checked="checked" />
            <div class="select-menu-item-text js-select-button-text">This repository</div>
          </div> <!-- /.select-menu-item -->

          <div class="select-menu-item js-navigation-item js-all-repositories-navigation-item">
            <span class="select-menu-item-icon octicon octicon-check"></span>
            <input type="radio" name="search_target" value="global" />
            <div class="select-menu-item-text js-select-button-text">All repositories</div>
          </div> <!-- /.select-menu-item -->

        </div>
      </div>
    </div>

  <span class="help tooltipped tooltipped-s" aria-label="Show command bar help">
    <span class="octicon octicon-question"></span>
  </span>


  <input type="hidden" name="ref" value="cmdform">

</form>
        <ul class="top-nav">
          <li class="explore"><a href="/explore">Explore</a></li>
            <li><a href="https://gist.github.com">Gist</a></li>
            <li><a href="/blog">Blog</a></li>
          <li><a href="https://help.github.com">Help</a></li>
        </ul>
      </div>

    

<ul id="user-links">
  <li>
    <a href="/jmaas" class="name">
      <img alt="Jörgen Maas" class=" js-avatar" data-user="790690" height="20" src="https://avatars1.githubusercontent.com/u/790690?s=140" width="20" /> jmaas
    </a>
  </li>

  <li class="new-menu dropdown-toggle js-menu-container">
    <a href="#" class="js-menu-target tooltipped tooltipped-s" aria-label="Create new...">
      <span class="octicon octicon-plus"></span>
      <span class="dropdown-arrow"></span>
    </a>

    <div class="new-menu-content js-menu-content">
    </div>
  </li>

  <li>
    <a href="/settings/profile" id="account_settings"
      class="tooltipped tooltipped-s"
      aria-label="Account settings ">
      <span class="octicon octicon-tools"></span>
    </a>
  </li>
  <li>
    <form accept-charset="UTF-8" action="/logout" class="logout-form" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="o7x6UzozyiOv1f+F3hz0Ly4Ip7bOJx/trSzFwViuuGKtDSLzAdO2HbL4gF2yfnBMOL4o1l22DpopWdykC9Pvfw==" /></div>
      <button class="sign-out-button tooltipped tooltipped-s" aria-label="Sign out">
        <span class="octicon octicon-sign-out"></span>
      </button>
</form>  </li>

</ul>

<div class="js-new-dropdown-contents hidden">
  

<ul class="dropdown-menu">
  <li>
    <a href="/new"><span class="octicon octicon-repo"></span> New repository</a>
  </li>
  <li>
    <a href="/organizations/new"><span class="octicon octicon-organization"></span> New organization</a>
  </li>


</ul>

</div>


    
  </div>
</div>

      

        



      <div id="start-of-content" class="accessibility-aid"></div>
          <div class="site" itemscope itemtype="http://schema.org/WebPage">
    <div id="js-flash-container">
      
    </div>
    <div class="pagehead repohead instapaper_ignore readability-menu">
      <div class="container">
        
<ul class="pagehead-actions">

    <li class="subscription">
      <form accept-charset="UTF-8" action="/notifications/subscribe" class="js-social-container" data-autosubmit="true" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="U+DNN5Rx3rkWf/MD+LJz2mZdh/gx/AnxDu4itzcHit2qFZO5F8wdrir/mjKsge5zxXhl3q18Now4GOKeVSve0A==" /></div>  <input id="repository_id" name="repository_id" type="hidden" value="478996" />

    <div class="select-menu js-menu-container js-select-menu">
      <a class="social-count js-social-count" href="/jquery/jquery-ui/watchers">
        639
      </a>
      <a href="/jquery/jquery-ui/subscription"
        class="minibutton select-menu-button with-count js-menu-target" role="button" tabindex="0" aria-haspopup="true">
        <span class="js-select-button">
          <span class="octicon octicon-eye"></span>
          Watch
        </span>
      </a>

      <div class="select-menu-modal-holder">
        <div class="select-menu-modal subscription-menu-modal js-menu-content" aria-hidden="true">
          <div class="select-menu-header">
            <span class="select-menu-title">Notifications</span>
            <span class="octicon octicon-x js-menu-close" role="button" aria-label="Close"></span>
          </div> <!-- /.select-menu-header -->

          <div class="select-menu-list js-navigation-container" role="menu">

            <div class="select-menu-item js-navigation-item selected" role="menuitem" tabindex="0">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <div class="select-menu-item-text">
                <input checked="checked" id="do_included" name="do" type="radio" value="included" />
                <h4>Not watching</h4>
                <span class="description">Be notified when participating or @mentioned.</span>
                <span class="js-select-button-text hidden-select-button-text">
                  <span class="octicon octicon-eye"></span>
                  Watch
                </span>
              </div>
            </div> <!-- /.select-menu-item -->

            <div class="select-menu-item js-navigation-item " role="menuitem" tabindex="0">
              <span class="select-menu-item-icon octicon octicon octicon-check"></span>
              <div class="select-menu-item-text">
                <input id="do_subscribed" name="do" type="radio" value="subscribed" />
                <h4>Watching</h4>
                <span class="description">Be notified of all conversations.</span>
                <span class="js-select-button-text hidden-select-button-text">
                  <span class="octicon octicon-eye"></span>
                  Unwatch
                </span>
              </div>
            </div> <!-- /.select-menu-item -->

            <div class="select-menu-item js-navigation-item " role="menuitem" tabindex="0">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <div class="select-menu-item-text">
                <input id="do_ignore" name="do" type="radio" value="ignore" />
                <h4>Ignoring</h4>
                <span class="description">Never be notified.</span>
                <span class="js-select-button-text hidden-select-button-text">
                  <span class="octicon octicon-mute"></span>
                  Stop ignoring
                </span>
              </div>
            </div> <!-- /.select-menu-item -->

          </div> <!-- /.select-menu-list -->

        </div> <!-- /.select-menu-modal -->
      </div> <!-- /.select-menu-modal-holder -->
    </div> <!-- /.select-menu -->

</form>
    </li>

  <li>
    

  <div class="js-toggler-container js-social-container starring-container ">

    <form accept-charset="UTF-8" action="/jquery/jquery-ui/unstar" class="js-toggler-form starred" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="kzTDLEjWOltOLt1ISPBO3xpl0QvYmJhP6LxgPVOPvT+aVTwHCZ0BMHIfpozOR2uZ1f1sMhAsWS9luloO6Ta15A==" /></div>
      <button
        class="minibutton with-count js-toggler-target star-button"
        aria-label="Unstar this repository" title="Unstar jquery/jquery-ui">
        <span class="octicon octicon-star"></span>
        Unstar
      </button>
        <a class="social-count js-social-count" href="/jquery/jquery-ui/stargazers">
          8,441
        </a>
</form>
    <form accept-charset="UTF-8" action="/jquery/jquery-ui/star" class="js-toggler-form unstarred" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="0BAhDke/U1I493UJunTXodKelc8N7Oz/TixCkdna45SFsJAprjzjDHnixkqigemjstKr1ml5EBIXESdWUsc2lA==" /></div>
      <button
        class="minibutton with-count js-toggler-target star-button"
        aria-label="Star this repository" title="Star jquery/jquery-ui">
        <span class="octicon octicon-star"></span>
        Star
      </button>
        <a class="social-count js-social-count" href="/jquery/jquery-ui/stargazers">
          8,441
        </a>
</form>  </div>

  </li>


        <li>
          <a href="/jquery/jquery-ui/fork" class="minibutton with-count js-toggler-target fork-button lighter tooltipped-n" title="Fork your own copy of jquery/jquery-ui to your account" aria-label="Fork your own copy of jquery/jquery-ui to your account" rel="facebox nofollow">
            <span class="octicon octicon-repo-forked"></span>
            Fork
          </a>
          <a href="/jquery/jquery-ui/network" class="social-count">3,098</a>
        </li>

</ul>

        <h1 itemscope itemtype="http://data-vocabulary.org/Breadcrumb" class="entry-title public">
          <span class="repo-label"><span>public</span></span>
          <span class="mega-octicon octicon-repo"></span>
          <span class="author"><a href="/jquery" class="url fn" itemprop="url" rel="author"><span itemprop="title">jquery</span></a></span><!--
       --><span class="path-divider">/</span><!--
       --><strong><a href="/jquery/jquery-ui" class="js-current-repository js-repo-home-link">jquery-ui</a></strong>

          <span class="page-context-loader">
            <img alt="" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
          </span>

        </h1>
      </div><!-- /.container -->
    </div><!-- /.repohead -->

    <div class="container">
      <div class="repository-with-sidebar repo-container new-discussion-timeline js-new-discussion-timeline  ">
        <div class="repository-sidebar clearfix">
            

<div class="sunken-menu vertical-right repo-nav js-repo-nav js-repository-container-pjax js-octicon-loaders">
  <div class="sunken-menu-contents">
    <ul class="sunken-menu-group">
      <li class="tooltipped tooltipped-w" aria-label="Code">
        <a href="/jquery/jquery-ui" aria-label="Code" class="selected js-selected-navigation-item sunken-menu-item" data-hotkey="g c" data-pjax="true" data-selected-links="repo_source repo_downloads repo_commits repo_releases repo_tags repo_branches /jquery/jquery-ui">
          <span class="octicon octicon-code"></span> <span class="full-word">Code</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>


      <li class="tooltipped tooltipped-w" aria-label="Pull Requests">
        <a href="/jquery/jquery-ui/pulls" aria-label="Pull Requests" class="js-selected-navigation-item sunken-menu-item js-disable-pjax" data-hotkey="g p" data-selected-links="repo_pulls /jquery/jquery-ui/pulls">
            <span class="octicon octicon-git-pull-request"></span> <span class="full-word">Pull Requests</span>
            <span class='counter'>47</span>
            <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>


    </ul>
    <div class="sunken-menu-separator"></div>
    <ul class="sunken-menu-group">

      <li class="tooltipped tooltipped-w" aria-label="Pulse">
        <a href="/jquery/jquery-ui/pulse" aria-label="Pulse" class="js-selected-navigation-item sunken-menu-item" data-pjax="true" data-selected-links="pulse /jquery/jquery-ui/pulse">
          <span class="octicon octicon-pulse"></span> <span class="full-word">Pulse</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>

      <li class="tooltipped tooltipped-w" aria-label="Graphs">
        <a href="/jquery/jquery-ui/graphs" aria-label="Graphs" class="js-selected-navigation-item sunken-menu-item" data-pjax="true" data-selected-links="repo_graphs repo_contributors /jquery/jquery-ui/graphs">
          <span class="octicon octicon-graph"></span> <span class="full-word">Graphs</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>

      <li class="tooltipped tooltipped-w" aria-label="Network">
        <a href="/jquery/jquery-ui/network" aria-label="Network" class="js-selected-navigation-item sunken-menu-item js-disable-pjax" data-selected-links="repo_network /jquery/jquery-ui/network">
          <span class="octicon octicon-repo-forked"></span> <span class="full-word">Network</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>
    </ul>


  </div>
</div>

              <div class="only-with-full-nav">
                

  

<div class="clone-url open"
  data-protocol-type="http"
  data-url="/users/set_protocol?protocol_selector=http&amp;protocol_type=clone">
  <h3><strong>HTTPS</strong> clone URL</h3>
  <div class="clone-url-box">
    <input type="text" class="clone js-url-field"
           value="https://github.com/jquery/jquery-ui.git" readonly="readonly">
    <span class="url-box-clippy">
    <button aria-label="Copy to clipboard" class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="https://github.com/jquery/jquery-ui.git" data-copied-hint="Copied!" type="button"><span class="octicon octicon-clippy"></span></button>
    </span>
  </div>
</div>

  

<div class="clone-url "
  data-protocol-type="ssh"
  data-url="/users/set_protocol?protocol_selector=ssh&amp;protocol_type=clone">
  <h3><strong>SSH</strong> clone URL</h3>
  <div class="clone-url-box">
    <input type="text" class="clone js-url-field"
           value="git@github.com:jquery/jquery-ui.git" readonly="readonly">
    <span class="url-box-clippy">
    <button aria-label="Copy to clipboard" class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="git@github.com:jquery/jquery-ui.git" data-copied-hint="Copied!" type="button"><span class="octicon octicon-clippy"></span></button>
    </span>
  </div>
</div>

  

<div class="clone-url "
  data-protocol-type="subversion"
  data-url="/users/set_protocol?protocol_selector=subversion&amp;protocol_type=clone">
  <h3><strong>Subversion</strong> checkout URL</h3>
  <div class="clone-url-box">
    <input type="text" class="clone js-url-field"
           value="https://github.com/jquery/jquery-ui" readonly="readonly">
    <span class="url-box-clippy">
    <button aria-label="Copy to clipboard" class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="https://github.com/jquery/jquery-ui" data-copied-hint="Copied!" type="button"><span class="octicon octicon-clippy"></span></button>
    </span>
  </div>
</div>


<p class="clone-options">You can clone with
      <a href="#" class="js-clone-selector" data-protocol="http">HTTPS</a>,
      <a href="#" class="js-clone-selector" data-protocol="ssh">SSH</a>,
      or <a href="#" class="js-clone-selector" data-protocol="subversion">Subversion</a>.
  <a href="https://help.github.com/articles/which-remote-url-should-i-use" class="help tooltipped tooltipped-n" aria-label="Get help on which URL is right for you.">
    <span class="octicon octicon-question"></span>
  </a>
</p>



                <a href="/jquery/jquery-ui/archive/master.zip"
                   class="minibutton sidebar-button"
                   aria-label="Download jquery/jquery-ui as a zip file"
                   title="Download jquery/jquery-ui as a zip file"
                   rel="nofollow">
                  <span class="octicon octicon-cloud-download"></span>
                  Download ZIP
                </a>
              </div>
        </div><!-- /.repository-sidebar -->

        <div id="js-repo-pjax-container" class="repository-content context-loader-container" data-pjax-container>
          


<a href="/jquery/jquery-ui/blob/3ca32b2ad8a3366d14317eb767e89d28254e97a4/themes/base/images/ui-icons_222222_256x240.png" class="hidden js-permalink-shortcut" data-hotkey="y">Permalink</a>

<!-- blob contrib key: blob_contributors:v21:2e5572bf84886a2107141f7230d9a385 -->

<p title="This is a placeholder element" class="js-history-link-replace hidden"></p>

<div class="file-navigation">
  

<div class="select-menu js-menu-container js-select-menu" >
  <span class="minibutton select-menu-button js-menu-target css-truncate" data-hotkey="w"
    data-master-branch="master"
    data-ref="master"
    title="master"
    role="button" aria-label="Switch branches or tags" tabindex="0" aria-haspopup="true">
    <span class="octicon octicon-git-branch"></span>
    <i>branch:</i>
    <span class="js-select-button css-truncate-target">master</span>
  </span>

  <div class="select-menu-modal-holder js-menu-content js-navigation-container" data-pjax aria-hidden="true">

    <div class="select-menu-modal">
      <div class="select-menu-header">
        <span class="select-menu-title">Switch branches/tags</span>
        <span class="octicon octicon-x js-menu-close" role="button" aria-label="Close"></span>
      </div> <!-- /.select-menu-header -->

      <div class="select-menu-filters">
        <div class="select-menu-text-filter">
          <input type="text" aria-label="Filter branches/tags" id="context-commitish-filter-field" class="js-filterable-field js-navigation-enable" placeholder="Filter branches/tags">
        </div>
        <div class="select-menu-tabs">
          <ul>
            <li class="select-menu-tab">
              <a href="#" data-tab-filter="branches" class="js-select-menu-tab">Branches</a>
            </li>
            <li class="select-menu-tab">
              <a href="#" data-tab-filter="tags" class="js-select-menu-tab">Tags</a>
            </li>
          </ul>
        </div><!-- /.select-menu-tabs -->
      </div><!-- /.select-menu-filters -->

      <div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="branches">

        <div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring">


            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/1-8-stable/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1-8-stable"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1-8-stable">1-8-stable</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/1-9-stable/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1-9-stable"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1-9-stable">1-9-stable</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/1-10-stable/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1-10-stable"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1-10-stable">1-10-stable</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/button-icon-span/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="button-icon-span"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="button-icon-span">button-icon-span</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/datepicker/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="datepicker"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="datepicker">datepicker</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/interactions/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="interactions"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="interactions">interactions</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/interactions-polymer/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="interactions-polymer"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="interactions-polymer">interactions-polymer</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item selected">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/master/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="master"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="master">master</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/ref-1029-css-dependency-comments/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="ref-1029-css-dependency-comments"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="ref-1029-css-dependency-comments">ref-1029-css-dependency-comments</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/selectmenu-native-menu/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="selectmenu-native-menu"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="selectmenu-native-menu">selectmenu-native-menu</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/spinner-globalize-1.x/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="spinner-globalize-1.x"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="spinner-globalize-1.x">spinner-globalize-1.x</a>
            </div> <!-- /.select-menu-item -->
        </div>

          <div class="select-menu-no-results">Nothing to show</div>
      </div> <!-- /.select-menu-list -->

      <div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="tags">
        <div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring">


            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.11.0-beta.2/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.11.0-beta.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.11.0-beta.2">1.11.0-beta.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.11.0-beta.1/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.11.0-beta.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.11.0-beta.1">1.11.0-beta.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.11.0/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.11.0"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.11.0">1.11.0</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.4/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.10.4"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.4">1.10.4</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.3/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.10.3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.3">1.10.3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.2/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.10.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.2">1.10.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.1/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.10.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.1">1.10.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.0-rc.1/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.10.0-rc.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.0-rc.1">1.10.0-rc.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.0-beta.1/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.10.0-beta.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.0-beta.1">1.10.0-beta.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.0/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.10.0"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.0">1.10.0</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m7/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.9m7"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m7">1.9m7</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m6/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.9m6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m6">1.9m6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m5/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.9m5"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m5">1.9m5</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m4/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.9m4"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m4">1.9m4</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m3/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.9m3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m3">1.9m3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m2/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.9m2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m2">1.9m2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m1/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.9m1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m1">1.9m1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.2/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.9.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.2">1.9.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.1/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.9.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.1">1.9.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0-rc.1/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.9.0-rc.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0-rc.1">1.9.0-rc.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0m8/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.9.0m8"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0m8">1.9.0m8</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0-beta.1/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.9.0-beta.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0-beta.1">1.9.0-beta.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.9.0"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0">1.9.0</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8rc3/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.8rc3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8rc3">1.8rc3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8rc2/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.8rc2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8rc2">1.8rc2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8rc1/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.8rc1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8rc1">1.8rc1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8b1/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.8b1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8b1">1.8b1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8a2/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.8a2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8a2">1.8a2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8a1/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.8a1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8a1">1.8a1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.24/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.8.24"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.24">1.8.24</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.23/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.8.23"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.23">1.8.23</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.22/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.8.22"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.22">1.8.22</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.21/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.8.21"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.21">1.8.21</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.20/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.8.20"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.20">1.8.20</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.19/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.8.19"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.19">1.8.19</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.18/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.8.18"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.18">1.8.18</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.17/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.8.17"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.17">1.8.17</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.16/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.8.16"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.16">1.8.16</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.15/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.8.15"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.15">1.8.15</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.14/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.8.14"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.14">1.8.14</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.13/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.8.13"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.13">1.8.13</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.12/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.8.12"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.12">1.8.12</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.11/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.8.11"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.11">1.8.11</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.10/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.8.10"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.10">1.8.10</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.9/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.8.9"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.9">1.8.9</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.8/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.8.8"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.8">1.8.8</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.7/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.8.7"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.7">1.8.7</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.6/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.8.6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.6">1.8.6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.5/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.8.5"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.5">1.8.5</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.4/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.8.4"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.4">1.8.4</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.3/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.8.3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.3">1.8.3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.2/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.8.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.2">1.8.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.1/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.8.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.1">1.8.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.8"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8">1.8</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.7/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.7"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.7">1.7</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc6/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.6rc6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc6">1.6rc6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc5/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.6rc5"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc5">1.6rc5</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc3/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.6rc3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc3">1.6rc3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc2/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.6rc2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc2">1.6rc2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6">1.6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.5.2/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.5.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.5.2">1.5.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.5.1/themes/base/images/ui-icons_222222_256x240.png"
                 data-name="1.5.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.5.1">1.5.1</a>
            </div> <!-- /.select-menu-item -->
        </div>

        <div class="select-menu-no-results">Nothing to show</div>
      </div> <!-- /.select-menu-list -->

    </div> <!-- /.select-menu-modal -->
  </div> <!-- /.select-menu-modal-holder -->
</div> <!-- /.select-menu -->

  <div class="button-group right">
    <a href="/jquery/jquery-ui/find/master"
          class="js-show-file-finder minibutton empty-icon tooltipped tooltipped-s"
          data-pjax
          data-hotkey="t"
          aria-label="Quickly jump between files">
      <span class="octicon octicon-list-unordered"></span>
    </a>
    <button class="js-zeroclipboard minibutton zeroclipboard-button"
          data-clipboard-text="themes/base/images/ui-icons_222222_256x240.png"
          aria-label="Copy to clipboard"
          data-copied-hint="Copied!">
      <span class="octicon octicon-clippy"></span>
    </button>
  </div>

  <div class="breadcrumb">
    <span class='repo-root js-repo-root'><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">jquery-ui</span></a></span></span><span class="separator"> / </span><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui/tree/master/themes" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">themes</span></a></span><span class="separator"> / </span><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui/tree/master/themes/base" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">base</span></a></span><span class="separator"> / </span><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui/tree/master/themes/base/images" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">images</span></a></span><span class="separator"> / </span><strong class="final-path">ui-icons_222222_256x240.png</strong>
  </div>
</div>


  <div class="commit file-history-tease">
      <img alt="Travis Carden" class="main-avatar js-avatar" data-user="959246" height="24" src="https://avatars1.githubusercontent.com/u/959246?s=140" width="24" />
      <span class="author"><a href="/TravisCarden" rel="contributor">TravisCarden</a></span>
      <time datetime="2013-02-04T13:02:57-05:00" is="relative-time">February 04, 2013</time>
      <div class="commit-title">
          <a href="/jquery/jquery-ui/commit/a61af0b205c865b9c4f949bcc1bebe79994519d0" class="message" data-pjax="true" title="Fix file permissions in themes/base/images.">Fix file permissions in themes/base/images.</a>
      </div>

    <div class="participation">
      <p class="quickstat"><a href="#blob_contributors_box" rel="facebox"><strong>3</strong>  contributors</a></p>
          <a class="avatar tooltipped tooltipped-s" aria-label="rdworth" href="/jquery/jquery-ui/commits/master/themes/base/images/ui-icons_222222_256x240.png?author=rdworth"><img alt="Richard D. Worth" class=" js-avatar" data-user="107824" height="20" src="https://avatars2.githubusercontent.com/u/107824?s=140" width="20" /></a>
    <a class="avatar tooltipped tooltipped-s" aria-label="scottjehl" href="/jquery/jquery-ui/commits/master/themes/base/images/ui-icons_222222_256x240.png?author=scottjehl"><img alt="Scott Jehl" class=" js-avatar" data-user="214783" height="20" src="https://avatars2.githubusercontent.com/u/214783?s=140" width="20" /></a>
    <a class="avatar tooltipped tooltipped-s" aria-label="TravisCarden" href="/jquery/jquery-ui/commits/master/themes/base/images/ui-icons_222222_256x240.png?author=TravisCarden"><img alt="Travis Carden" class=" js-avatar" data-user="959246" height="20" src="https://avatars1.githubusercontent.com/u/959246?s=140" width="20" /></a>


    </div>
    <div id="blob_contributors_box" style="display:none">
      <h2 class="facebox-header">Users who have contributed to this file</h2>
      <ul class="facebox-user-list">
          <li class="facebox-user-list-item">
            <img alt="Richard D. Worth" class=" js-avatar" data-user="107824" height="24" src="https://avatars2.githubusercontent.com/u/107824?s=140" width="24" />
            <a href="/rdworth">rdworth</a>
          </li>
          <li class="facebox-user-list-item">
            <img alt="Scott Jehl" class=" js-avatar" data-user="214783" height="24" src="https://avatars2.githubusercontent.com/u/214783?s=140" width="24" />
            <a href="/scottjehl">scottjehl</a>
          </li>
          <li class="facebox-user-list-item">
            <img alt="Travis Carden" class=" js-avatar" data-user="959246" height="24" src="https://avatars1.githubusercontent.com/u/959246?s=140" width="24" />
            <a href="/TravisCarden">TravisCarden</a>
          </li>
      </ul>
    </div>
  </div>

<div class="file-box">
  <div class="file">
    <div class="meta clearfix">
      <div class="info file-name">
        <span class="icon"><b class="octicon octicon-file-text"></b></span>
        <span class="mode" title="File Mode">file</span>
        <span class="meta-divider"></span>
        <span>4.369 kb</span>
      </div>
      <div class="actions">
        <div class="button-group">
          <a href="/jquery/jquery-ui/raw/master/themes/base/images/ui-icons_222222_256x240.png" class="minibutton " id="raw-url">Raw</a>
          <a href="/jquery/jquery-ui/commits/master/themes/base/images/ui-icons_222222_256x240.png" class="minibutton " rel="nofollow">History</a>
        </div><!-- /.button-group -->

            <a class="minibutton danger empty-icon tooltipped tooltipped-s"
               href="/jquery/jquery-ui/delete/master/themes/base/images/ui-icons_222222_256x240.png"
               aria-label="Fork this project and delete file"
               data-method="post" data-test-id="delete-blob-file" rel="nofollow">

          Delete
        </a>
      </div><!-- /.actions -->
    </div>
      
  <div class="blob-wrapper data type-text js-blob-data">
      <div class="image js-image">
          <span class="border-wrap"><img src="https://raw.githubusercontent.com/jquery/jquery-ui/master/themes/base/images/ui-icons_222222_256x240.png" alt="themes/base/images/ui-icons_222222_256x240.png" /></span>
      </div>
  </div>

  </div>
</div>

<a href="#jump-to-line" rel="facebox[.linejump]" data-hotkey="l" class="js-jump-to-line" style="display:none">Jump to Line</a>
<div id="jump-to-line" style="display:none">
  <form accept-charset="UTF-8" class="js-jump-to-line-form">
    <input class="linejump-input js-jump-to-line-field" type="text" placeholder="Jump to line&hellip;" autofocus>
    <button type="submit" class="button">Go</button>
  </form>
</div>

        </div>

      </div><!-- /.repo-container -->
      <div class="modal-backdrop"></div>
    </div><!-- /.container -->
  </div><!-- /.site -->


    </div><!-- /.wrapper -->

      <div class="container">
  <div class="site-footer">
    <ul class="site-footer-links right">
      <li><a href="https://status.github.com/">Status</a></li>
      <li><a href="http://developer.github.com">API</a></li>
      <li><a href="http://training.github.com">Training</a></li>
      <li><a href="http://shop.github.com">Shop</a></li>
      <li><a href="/blog">Blog</a></li>
      <li><a href="/about">About</a></li>

    </ul>

    <a href="/">
      <span class="mega-octicon octicon-mark-github" title="GitHub"></span>
    </a>

    <ul class="site-footer-links">
      <li>&copy; 2014 <span title="0.05163s from github-fe123-cp1-prd.iad.github.net">GitHub</span>, Inc.</li>
        <li><a href="/site/terms">Terms</a></li>
        <li><a href="/site/privacy">Privacy</a></li>
        <li><a href="/security">Security</a></li>
        <li><a href="/contact">Contact</a></li>
    </ul>
  </div><!-- /.site-footer -->
</div><!-- /.container -->


    <div class="fullscreen-overlay js-fullscreen-overlay" id="fullscreen_overlay">
  <div class="fullscreen-container js-fullscreen-container">
    <div class="textarea-wrap">
      <textarea name="fullscreen-contents" id="fullscreen-contents" class="fullscreen-contents js-fullscreen-contents" placeholder="" data-suggester="fullscreen_suggester"></textarea>
    </div>
  </div>
  <div class="fullscreen-sidebar">
    <a href="#" class="exit-fullscreen js-exit-fullscreen tooltipped tooltipped-w" aria-label="Exit Zen Mode">
      <span class="mega-octicon octicon-screen-normal"></span>
    </a>
    <a href="#" class="theme-switcher js-theme-switcher tooltipped tooltipped-w"
      aria-label="Switch themes">
      <span class="octicon octicon-color-mode"></span>
    </a>
  </div>
</div>



    <div id="ajax-error-message" class="flash flash-error">
      <span class="octicon octicon-alert"></span>
      <a href="#" class="octicon octicon-x close js-ajax-error-dismiss" aria-label="Dismiss error"></a>
      Something went wrong with that request. Please try again.
    </div>


      <script crossorigin="anonymous" src="https://assets-cdn.github.com/assets/frameworks-df9e4beac80276ed3dfa56be0d97b536d0f5ee12.js" type="text/javascript"></script>
      <script async="async" crossorigin="anonymous" src="https://assets-cdn.github.com/assets/github-534eef699bbadaf1454b432e14a2ab0a68c7ddf4.js" type="text/javascript"></script>
      
      
        <script async src="https://www.google-analytics.com/analytics.js"></script>
  </body>
</html>

   07070100000192000081A40000000000000000000000015ECE244400011D5D000000000000000000000000000000000000003C00000000cobbler-3.1.2/web/static/images/ui-icons_2e83ff_256x240.png   




<!DOCTYPE html>
<html class="   ">
  <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# object: http://ogp.me/ns/object# article: http://ogp.me/ns/article# profile: http://ogp.me/ns/profile#">
    <meta charset='utf-8'>
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    
    
    <title>jquery-ui/themes/base/images/ui-icons_2e83ff_256x240.png at master · jquery/jquery-ui</title>
    <link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="GitHub" />
    <link rel="fluid-icon" href="https://github.com/fluidicon.png" title="GitHub" />
    <link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-114.png" />
    <link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114.png" />
    <link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-144.png" />
    <link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144.png" />
    <meta property="fb:app_id" content="1401488693436528"/>

      <meta content="@github" name="twitter:site" /><meta content="summary" name="twitter:card" /><meta content="jquery/jquery-ui" name="twitter:title" /><meta content="jquery-ui - The official jQuery user interface library." name="twitter:description" /><meta content="https://avatars1.githubusercontent.com/u/70142?s=400" name="twitter:image:src" />
<meta content="GitHub" property="og:site_name" /><meta content="object" property="og:type" /><meta content="https://avatars1.githubusercontent.com/u/70142?s=400" property="og:image" /><meta content="jquery/jquery-ui" property="og:title" /><meta content="https://github.com/jquery/jquery-ui" property="og:url" /><meta content="jquery-ui - The official jQuery user interface library." property="og:description" />

    <link rel="assets" href="https://assets-cdn.github.com/">
    <link rel="conduit-xhr" href="https://ghconduit.com:25035">
    <link rel="xhr-socket" href="/_sockets" />

    <meta name="msapplication-TileImage" content="/windows-tile.png" />
    <meta name="msapplication-TileColor" content="#ffffff" />
    <meta name="selected-link" value="repo_source" data-pjax-transient />
      <meta name="google-analytics" content="UA-3769691-2">

    <meta content="collector.githubapp.com" name="octolytics-host" /><meta content="collector-cdn.github.com" name="octolytics-script-host" /><meta content="github" name="octolytics-app-id" /><meta content="5ED1AC98:1163:4D6AE7C:53C6DBAF" name="octolytics-dimension-request_id" /><meta content="790690" name="octolytics-actor-id" /><meta content="jmaas" name="octolytics-actor-login" /><meta content="ac5e3878ac6703a37372cb2198cb3b8727e6b43c1e460ad6c9aeaeae1fb16fb4" name="octolytics-actor-hash" />
    

    
    
    <link rel="icon" type="image/x-icon" href="https://assets-cdn.github.com/favicon.ico" />


    <meta content="authenticity_token" name="csrf-param" />
<meta content="PzZ/i1+o+Vl0h4KmRzFTSGf6Ms0HJtt1MTgXEpMi2Rh6biyAfNMHyOf2i4dRuKoMzdylv6/r4miZv6X/B4Omjg==" name="csrf-token" />

    <link href="https://assets-cdn.github.com/assets/github-c534ad575b5bb8c3cc3dce9c571df7aa7400dbe9.css" media="all" rel="stylesheet" type="text/css" />
    <link href="https://assets-cdn.github.com/assets/github2-84a1b6179d461213455892ab983182bc2052a7b5.css" media="all" rel="stylesheet" type="text/css" />
    


    <meta http-equiv="x-pjax-version" content="ef2e8ad48b4c98b3a1a0065370258ac2">

      
  <meta name="description" content="jquery-ui - The official jQuery user interface library." />


  <meta content="70142" name="octolytics-dimension-user_id" /><meta content="jquery" name="octolytics-dimension-user_login" /><meta content="478996" name="octolytics-dimension-repository_id" /><meta content="jquery/jquery-ui" name="octolytics-dimension-repository_nwo" /><meta content="true" name="octolytics-dimension-repository_public" /><meta content="false" name="octolytics-dimension-repository_is_fork" /><meta content="478996" name="octolytics-dimension-repository_network_root_id" /><meta content="jquery/jquery-ui" name="octolytics-dimension-repository_network_root_nwo" />

  <link href="https://github.com/jquery/jquery-ui/commits/master.atom" rel="alternate" title="Recent Commits to jquery-ui:master" type="application/atom+xml" />

  </head>


  <body class="logged_in  env-production linux vis-public page-blob">
    <a href="#start-of-content" tabindex="1" class="accessibility-aid js-skip-to-content">Skip to content</a>
    <div class="wrapper">
      
      
      
      


      <div class="header header-logged-in true">
  <div class="container clearfix">

    <a class="header-logo-invertocat" href="https://github.com/" aria-label="Homepage">
  <span class="mega-octicon octicon-mark-github"></span>
</a>


    
    <a href="/notifications" aria-label="You have no unread notifications" class="notification-indicator tooltipped tooltipped-s" data-hotkey="g n">
        <span class="mail-status all-read"></span>
</a>

      <div class="command-bar js-command-bar  in-repository">
          <form accept-charset="UTF-8" action="/search" class="command-bar-form" id="top_search_form" method="get">

<div class="commandbar">
  <span class="message"></span>
  <input type="text" data-hotkey="s" name="q" id="js-command-bar-field" placeholder="Search or type a command" tabindex="1" autocapitalize="off"
    
    data-username="jmaas"
    data-repo="jquery/jquery-ui"
  >
  <div class="display hidden"></div>
</div>

    <input type="hidden" name="nwo" value="jquery/jquery-ui" />

    <div class="select-menu js-menu-container js-select-menu search-context-select-menu">
      <span class="minibutton select-menu-button js-menu-target" role="button" aria-haspopup="true">
        <span class="js-select-button">This repository</span>
      </span>

      <div class="select-menu-modal-holder js-menu-content js-navigation-container" aria-hidden="true">
        <div class="select-menu-modal">

          <div class="select-menu-item js-navigation-item js-this-repository-navigation-item selected">
            <span class="select-menu-item-icon octicon octicon-check"></span>
            <input type="radio" class="js-search-this-repository" name="search_target" value="repository" checked="checked" />
            <div class="select-menu-item-text js-select-button-text">This repository</div>
          </div> <!-- /.select-menu-item -->

          <div class="select-menu-item js-navigation-item js-all-repositories-navigation-item">
            <span class="select-menu-item-icon octicon octicon-check"></span>
            <input type="radio" name="search_target" value="global" />
            <div class="select-menu-item-text js-select-button-text">All repositories</div>
          </div> <!-- /.select-menu-item -->

        </div>
      </div>
    </div>

  <span class="help tooltipped tooltipped-s" aria-label="Show command bar help">
    <span class="octicon octicon-question"></span>
  </span>


  <input type="hidden" name="ref" value="cmdform">

</form>
        <ul class="top-nav">
          <li class="explore"><a href="/explore">Explore</a></li>
            <li><a href="https://gist.github.com">Gist</a></li>
            <li><a href="/blog">Blog</a></li>
          <li><a href="https://help.github.com">Help</a></li>
        </ul>
      </div>

    

<ul id="user-links">
  <li>
    <a href="/jmaas" class="name">
      <img alt="Jörgen Maas" class=" js-avatar" data-user="790690" height="20" src="https://avatars1.githubusercontent.com/u/790690?s=140" width="20" /> jmaas
    </a>
  </li>

  <li class="new-menu dropdown-toggle js-menu-container">
    <a href="#" class="js-menu-target tooltipped tooltipped-s" aria-label="Create new...">
      <span class="octicon octicon-plus"></span>
      <span class="dropdown-arrow"></span>
    </a>

    <div class="new-menu-content js-menu-content">
    </div>
  </li>

  <li>
    <a href="/settings/profile" id="account_settings"
      class="tooltipped tooltipped-s"
      aria-label="Account settings ">
      <span class="octicon octicon-tools"></span>
    </a>
  </li>
  <li>
    <form accept-charset="UTF-8" action="/logout" class="logout-form" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="ClTioEN3B+IZuS01om5RYf7JXxfU4nI8+qso6woiEfB0SNORjb9QEXDhdjW0S3dhsZ372j1GmgZiURCoDtdLCA==" /></div>
      <button class="sign-out-button tooltipped tooltipped-s" aria-label="Sign out">
        <span class="octicon octicon-sign-out"></span>
      </button>
</form>  </li>

</ul>

<div class="js-new-dropdown-contents hidden">
  

<ul class="dropdown-menu">
  <li>
    <a href="/new"><span class="octicon octicon-repo"></span> New repository</a>
  </li>
  <li>
    <a href="/organizations/new"><span class="octicon octicon-organization"></span> New organization</a>
  </li>


</ul>

</div>


    
  </div>
</div>

      

        



      <div id="start-of-content" class="accessibility-aid"></div>
          <div class="site" itemscope itemtype="http://schema.org/WebPage">
    <div id="js-flash-container">
      
    </div>
    <div class="pagehead repohead instapaper_ignore readability-menu">
      <div class="container">
        
<ul class="pagehead-actions">

    <li class="subscription">
      <form accept-charset="UTF-8" action="/notifications/subscribe" class="js-social-container" data-autosubmit="true" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="QgyZs4rBKiCjP9Yg48KaPs926RcGyf8CCoHACWNf4b+z5KwPqZIl+0K4/mxmLYipHx9Du2ZUs75OkdEFILezqg==" /></div>  <input id="repository_id" name="repository_id" type="hidden" value="478996" />

    <div class="select-menu js-menu-container js-select-menu">
      <a class="social-count js-social-count" href="/jquery/jquery-ui/watchers">
        639
      </a>
      <a href="/jquery/jquery-ui/subscription"
        class="minibutton select-menu-button with-count js-menu-target" role="button" tabindex="0" aria-haspopup="true">
        <span class="js-select-button">
          <span class="octicon octicon-eye"></span>
          Watch
        </span>
      </a>

      <div class="select-menu-modal-holder">
        <div class="select-menu-modal subscription-menu-modal js-menu-content" aria-hidden="true">
          <div class="select-menu-header">
            <span class="select-menu-title">Notifications</span>
            <span class="octicon octicon-x js-menu-close" role="button" aria-label="Close"></span>
          </div> <!-- /.select-menu-header -->

          <div class="select-menu-list js-navigation-container" role="menu">

            <div class="select-menu-item js-navigation-item selected" role="menuitem" tabindex="0">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <div class="select-menu-item-text">
                <input checked="checked" id="do_included" name="do" type="radio" value="included" />
                <h4>Not watching</h4>
                <span class="description">Be notified when participating or @mentioned.</span>
                <span class="js-select-button-text hidden-select-button-text">
                  <span class="octicon octicon-eye"></span>
                  Watch
                </span>
              </div>
            </div> <!-- /.select-menu-item -->

            <div class="select-menu-item js-navigation-item " role="menuitem" tabindex="0">
              <span class="select-menu-item-icon octicon octicon octicon-check"></span>
              <div class="select-menu-item-text">
                <input id="do_subscribed" name="do" type="radio" value="subscribed" />
                <h4>Watching</h4>
                <span class="description">Be notified of all conversations.</span>
                <span class="js-select-button-text hidden-select-button-text">
                  <span class="octicon octicon-eye"></span>
                  Unwatch
                </span>
              </div>
            </div> <!-- /.select-menu-item -->

            <div class="select-menu-item js-navigation-item " role="menuitem" tabindex="0">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <div class="select-menu-item-text">
                <input id="do_ignore" name="do" type="radio" value="ignore" />
                <h4>Ignoring</h4>
                <span class="description">Never be notified.</span>
                <span class="js-select-button-text hidden-select-button-text">
                  <span class="octicon octicon-mute"></span>
                  Stop ignoring
                </span>
              </div>
            </div> <!-- /.select-menu-item -->

          </div> <!-- /.select-menu-list -->

        </div> <!-- /.select-menu-modal -->
      </div> <!-- /.select-menu-modal-holder -->
    </div> <!-- /.select-menu -->

</form>
    </li>

  <li>
    

  <div class="js-toggler-container js-social-container starring-container ">

    <form accept-charset="UTF-8" action="/jquery/jquery-ui/unstar" class="js-toggler-form starred" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="+VsRS0ZP4voUutd7TAhPJjqE23lcYAlOTYpTqvMrw6Y4mwuMWpKvA0tJi5dqQ5i5M+GjpbHgNevI9JRhm0ft/A==" /></div>
      <button
        class="minibutton with-count js-toggler-target star-button"
        aria-label="Unstar this repository" title="Unstar jquery/jquery-ui">
        <span class="octicon octicon-star"></span>
        Unstar
      </button>
        <a class="social-count js-social-count" href="/jquery/jquery-ui/stargazers">
          8,441
        </a>
</form>
    <form accept-charset="UTF-8" action="/jquery/jquery-ui/star" class="js-toggler-form unstarred" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="NQa8bB2ra4q2O7mBi5zE8yzvE0xrz6zPcwpAcVnRw1S5H/FoJbpmYtfNtpdHKsvKlLTSkF/N6B+WnKRESY7m3Q==" /></div>
      <button
        class="minibutton with-count js-toggler-target star-button"
        aria-label="Star this repository" title="Star jquery/jquery-ui">
        <span class="octicon octicon-star"></span>
        Star
      </button>
        <a class="social-count js-social-count" href="/jquery/jquery-ui/stargazers">
          8,441
        </a>
</form>  </div>

  </li>


        <li>
          <a href="/jquery/jquery-ui/fork" class="minibutton with-count js-toggler-target fork-button lighter tooltipped-n" title="Fork your own copy of jquery/jquery-ui to your account" aria-label="Fork your own copy of jquery/jquery-ui to your account" rel="facebox nofollow">
            <span class="octicon octicon-repo-forked"></span>
            Fork
          </a>
          <a href="/jquery/jquery-ui/network" class="social-count">3,098</a>
        </li>

</ul>

        <h1 itemscope itemtype="http://data-vocabulary.org/Breadcrumb" class="entry-title public">
          <span class="repo-label"><span>public</span></span>
          <span class="mega-octicon octicon-repo"></span>
          <span class="author"><a href="/jquery" class="url fn" itemprop="url" rel="author"><span itemprop="title">jquery</span></a></span><!--
       --><span class="path-divider">/</span><!--
       --><strong><a href="/jquery/jquery-ui" class="js-current-repository js-repo-home-link">jquery-ui</a></strong>

          <span class="page-context-loader">
            <img alt="" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
          </span>

        </h1>
      </div><!-- /.container -->
    </div><!-- /.repohead -->

    <div class="container">
      <div class="repository-with-sidebar repo-container new-discussion-timeline js-new-discussion-timeline  ">
        <div class="repository-sidebar clearfix">
            

<div class="sunken-menu vertical-right repo-nav js-repo-nav js-repository-container-pjax js-octicon-loaders">
  <div class="sunken-menu-contents">
    <ul class="sunken-menu-group">
      <li class="tooltipped tooltipped-w" aria-label="Code">
        <a href="/jquery/jquery-ui" aria-label="Code" class="selected js-selected-navigation-item sunken-menu-item" data-hotkey="g c" data-pjax="true" data-selected-links="repo_source repo_downloads repo_commits repo_releases repo_tags repo_branches /jquery/jquery-ui">
          <span class="octicon octicon-code"></span> <span class="full-word">Code</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>


      <li class="tooltipped tooltipped-w" aria-label="Pull Requests">
        <a href="/jquery/jquery-ui/pulls" aria-label="Pull Requests" class="js-selected-navigation-item sunken-menu-item js-disable-pjax" data-hotkey="g p" data-selected-links="repo_pulls /jquery/jquery-ui/pulls">
            <span class="octicon octicon-git-pull-request"></span> <span class="full-word">Pull Requests</span>
            <span class='counter'>46</span>
            <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>


    </ul>
    <div class="sunken-menu-separator"></div>
    <ul class="sunken-menu-group">

      <li class="tooltipped tooltipped-w" aria-label="Pulse">
        <a href="/jquery/jquery-ui/pulse" aria-label="Pulse" class="js-selected-navigation-item sunken-menu-item" data-pjax="true" data-selected-links="pulse /jquery/jquery-ui/pulse">
          <span class="octicon octicon-pulse"></span> <span class="full-word">Pulse</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>

      <li class="tooltipped tooltipped-w" aria-label="Graphs">
        <a href="/jquery/jquery-ui/graphs" aria-label="Graphs" class="js-selected-navigation-item sunken-menu-item" data-pjax="true" data-selected-links="repo_graphs repo_contributors /jquery/jquery-ui/graphs">
          <span class="octicon octicon-graph"></span> <span class="full-word">Graphs</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>

      <li class="tooltipped tooltipped-w" aria-label="Network">
        <a href="/jquery/jquery-ui/network" aria-label="Network" class="js-selected-navigation-item sunken-menu-item js-disable-pjax" data-selected-links="repo_network /jquery/jquery-ui/network">
          <span class="octicon octicon-repo-forked"></span> <span class="full-word">Network</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>
    </ul>


  </div>
</div>

              <div class="only-with-full-nav">
                

  

<div class="clone-url open"
  data-protocol-type="http"
  data-url="/users/set_protocol?protocol_selector=http&amp;protocol_type=clone">
  <h3><strong>HTTPS</strong> clone URL</h3>
  <div class="clone-url-box">
    <input type="text" class="clone js-url-field"
           value="https://github.com/jquery/jquery-ui.git" readonly="readonly">
    <span class="url-box-clippy">
    <button aria-label="Copy to clipboard" class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="https://github.com/jquery/jquery-ui.git" data-copied-hint="Copied!" type="button"><span class="octicon octicon-clippy"></span></button>
    </span>
  </div>
</div>

  

<div class="clone-url "
  data-protocol-type="ssh"
  data-url="/users/set_protocol?protocol_selector=ssh&amp;protocol_type=clone">
  <h3><strong>SSH</strong> clone URL</h3>
  <div class="clone-url-box">
    <input type="text" class="clone js-url-field"
           value="git@github.com:jquery/jquery-ui.git" readonly="readonly">
    <span class="url-box-clippy">
    <button aria-label="Copy to clipboard" class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="git@github.com:jquery/jquery-ui.git" data-copied-hint="Copied!" type="button"><span class="octicon octicon-clippy"></span></button>
    </span>
  </div>
</div>

  

<div class="clone-url "
  data-protocol-type="subversion"
  data-url="/users/set_protocol?protocol_selector=subversion&amp;protocol_type=clone">
  <h3><strong>Subversion</strong> checkout URL</h3>
  <div class="clone-url-box">
    <input type="text" class="clone js-url-field"
           value="https://github.com/jquery/jquery-ui" readonly="readonly">
    <span class="url-box-clippy">
    <button aria-label="Copy to clipboard" class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="https://github.com/jquery/jquery-ui" data-copied-hint="Copied!" type="button"><span class="octicon octicon-clippy"></span></button>
    </span>
  </div>
</div>


<p class="clone-options">You can clone with
      <a href="#" class="js-clone-selector" data-protocol="http">HTTPS</a>,
      <a href="#" class="js-clone-selector" data-protocol="ssh">SSH</a>,
      or <a href="#" class="js-clone-selector" data-protocol="subversion">Subversion</a>.
  <a href="https://help.github.com/articles/which-remote-url-should-i-use" class="help tooltipped tooltipped-n" aria-label="Get help on which URL is right for you.">
    <span class="octicon octicon-question"></span>
  </a>
</p>



                <a href="/jquery/jquery-ui/archive/master.zip"
                   class="minibutton sidebar-button"
                   aria-label="Download jquery/jquery-ui as a zip file"
                   title="Download jquery/jquery-ui as a zip file"
                   rel="nofollow">
                  <span class="octicon octicon-cloud-download"></span>
                  Download ZIP
                </a>
              </div>
        </div><!-- /.repository-sidebar -->

        <div id="js-repo-pjax-container" class="repository-content context-loader-container" data-pjax-container>
          


<a href="/jquery/jquery-ui/blob/98583a6563e7ae98ed67b5d70db2bff814c11e4e/themes/base/images/ui-icons_2e83ff_256x240.png" class="hidden js-permalink-shortcut" data-hotkey="y">Permalink</a>

<!-- blob contrib key: blob_contributors:v21:464e1bd528594abf93e42157f8af0fdb -->

<p title="This is a placeholder element" class="js-history-link-replace hidden"></p>

<div class="file-navigation">
  

<div class="select-menu js-menu-container js-select-menu" >
  <span class="minibutton select-menu-button js-menu-target css-truncate" data-hotkey="w"
    data-master-branch="master"
    data-ref="master"
    title="master"
    role="button" aria-label="Switch branches or tags" tabindex="0" aria-haspopup="true">
    <span class="octicon octicon-git-branch"></span>
    <i>branch:</i>
    <span class="js-select-button css-truncate-target">master</span>
  </span>

  <div class="select-menu-modal-holder js-menu-content js-navigation-container" data-pjax aria-hidden="true">

    <div class="select-menu-modal">
      <div class="select-menu-header">
        <span class="select-menu-title">Switch branches/tags</span>
        <span class="octicon octicon-x js-menu-close" role="button" aria-label="Close"></span>
      </div> <!-- /.select-menu-header -->

      <div class="select-menu-filters">
        <div class="select-menu-text-filter">
          <input type="text" aria-label="Filter branches/tags" id="context-commitish-filter-field" class="js-filterable-field js-navigation-enable" placeholder="Filter branches/tags">
        </div>
        <div class="select-menu-tabs">
          <ul>
            <li class="select-menu-tab">
              <a href="#" data-tab-filter="branches" class="js-select-menu-tab">Branches</a>
            </li>
            <li class="select-menu-tab">
              <a href="#" data-tab-filter="tags" class="js-select-menu-tab">Tags</a>
            </li>
          </ul>
        </div><!-- /.select-menu-tabs -->
      </div><!-- /.select-menu-filters -->

      <div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="branches">

        <div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring">


            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/1-8-stable/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1-8-stable"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1-8-stable">1-8-stable</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/1-9-stable/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1-9-stable"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1-9-stable">1-9-stable</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/1-10-stable/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1-10-stable"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1-10-stable">1-10-stable</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/button-icon-span/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="button-icon-span"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="button-icon-span">button-icon-span</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/datepicker/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="datepicker"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="datepicker">datepicker</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/interactions/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="interactions"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="interactions">interactions</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/interactions-polymer/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="interactions-polymer"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="interactions-polymer">interactions-polymer</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item selected">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/master/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="master"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="master">master</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/ref-1029-css-dependency-comments/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="ref-1029-css-dependency-comments"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="ref-1029-css-dependency-comments">ref-1029-css-dependency-comments</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/selectmenu-native-menu/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="selectmenu-native-menu"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="selectmenu-native-menu">selectmenu-native-menu</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/spinner-globalize-1.x/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="spinner-globalize-1.x"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="spinner-globalize-1.x">spinner-globalize-1.x</a>
            </div> <!-- /.select-menu-item -->
        </div>

          <div class="select-menu-no-results">Nothing to show</div>
      </div> <!-- /.select-menu-list -->

      <div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="tags">
        <div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring">


            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.11.0-beta.2/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.11.0-beta.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.11.0-beta.2">1.11.0-beta.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.11.0-beta.1/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.11.0-beta.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.11.0-beta.1">1.11.0-beta.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.11.0/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.11.0"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.11.0">1.11.0</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.4/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.10.4"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.4">1.10.4</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.3/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.10.3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.3">1.10.3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.2/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.10.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.2">1.10.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.1/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.10.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.1">1.10.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.0-rc.1/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.10.0-rc.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.0-rc.1">1.10.0-rc.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.0-beta.1/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.10.0-beta.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.0-beta.1">1.10.0-beta.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.0/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.10.0"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.0">1.10.0</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m7/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.9m7"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m7">1.9m7</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m6/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.9m6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m6">1.9m6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m5/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.9m5"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m5">1.9m5</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m4/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.9m4"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m4">1.9m4</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m3/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.9m3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m3">1.9m3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m2/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.9m2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m2">1.9m2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m1/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.9m1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m1">1.9m1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.2/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.9.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.2">1.9.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.1/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.9.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.1">1.9.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0-rc.1/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.9.0-rc.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0-rc.1">1.9.0-rc.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0m8/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.9.0m8"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0m8">1.9.0m8</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0-beta.1/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.9.0-beta.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0-beta.1">1.9.0-beta.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.9.0"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0">1.9.0</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8rc3/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.8rc3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8rc3">1.8rc3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8rc2/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.8rc2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8rc2">1.8rc2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8rc1/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.8rc1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8rc1">1.8rc1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8b1/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.8b1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8b1">1.8b1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8a2/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.8a2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8a2">1.8a2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8a1/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.8a1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8a1">1.8a1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.24/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.8.24"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.24">1.8.24</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.23/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.8.23"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.23">1.8.23</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.22/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.8.22"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.22">1.8.22</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.21/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.8.21"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.21">1.8.21</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.20/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.8.20"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.20">1.8.20</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.19/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.8.19"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.19">1.8.19</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.18/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.8.18"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.18">1.8.18</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.17/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.8.17"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.17">1.8.17</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.16/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.8.16"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.16">1.8.16</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.15/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.8.15"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.15">1.8.15</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.14/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.8.14"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.14">1.8.14</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.13/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.8.13"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.13">1.8.13</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.12/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.8.12"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.12">1.8.12</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.11/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.8.11"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.11">1.8.11</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.10/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.8.10"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.10">1.8.10</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.9/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.8.9"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.9">1.8.9</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.8/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.8.8"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.8">1.8.8</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.7/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.8.7"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.7">1.8.7</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.6/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.8.6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.6">1.8.6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.5/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.8.5"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.5">1.8.5</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.4/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.8.4"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.4">1.8.4</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.3/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.8.3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.3">1.8.3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.2/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.8.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.2">1.8.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.1/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.8.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.1">1.8.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.8"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8">1.8</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.7/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.7"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.7">1.7</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc6/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.6rc6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc6">1.6rc6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc5/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.6rc5"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc5">1.6rc5</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc3/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.6rc3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc3">1.6rc3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc2/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.6rc2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc2">1.6rc2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6">1.6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.5.2/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.5.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.5.2">1.5.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.5.1/themes/base/images/ui-icons_2e83ff_256x240.png"
                 data-name="1.5.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.5.1">1.5.1</a>
            </div> <!-- /.select-menu-item -->
        </div>

        <div class="select-menu-no-results">Nothing to show</div>
      </div> <!-- /.select-menu-list -->

    </div> <!-- /.select-menu-modal -->
  </div> <!-- /.select-menu-modal-holder -->
</div> <!-- /.select-menu -->

  <div class="button-group right">
    <a href="/jquery/jquery-ui/find/master"
          class="js-show-file-finder minibutton empty-icon tooltipped tooltipped-s"
          data-pjax
          data-hotkey="t"
          aria-label="Quickly jump between files">
      <span class="octicon octicon-list-unordered"></span>
    </a>
    <button class="js-zeroclipboard minibutton zeroclipboard-button"
          data-clipboard-text="themes/base/images/ui-icons_2e83ff_256x240.png"
          aria-label="Copy to clipboard"
          data-copied-hint="Copied!">
      <span class="octicon octicon-clippy"></span>
    </button>
  </div>

  <div class="breadcrumb">
    <span class='repo-root js-repo-root'><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">jquery-ui</span></a></span></span><span class="separator"> / </span><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui/tree/master/themes" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">themes</span></a></span><span class="separator"> / </span><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui/tree/master/themes/base" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">base</span></a></span><span class="separator"> / </span><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui/tree/master/themes/base/images" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">images</span></a></span><span class="separator"> / </span><strong class="final-path">ui-icons_2e83ff_256x240.png</strong>
  </div>
</div>


  <div class="commit file-history-tease">
      <img alt="Travis Carden" class="main-avatar js-avatar" data-user="959246" height="24" src="https://avatars1.githubusercontent.com/u/959246?s=140" width="24" />
      <span class="author"><a href="/TravisCarden" rel="contributor">TravisCarden</a></span>
      <time datetime="2013-02-04T13:02:57-05:00" is="relative-time">February 04, 2013</time>
      <div class="commit-title">
          <a href="/jquery/jquery-ui/commit/a61af0b205c865b9c4f949bcc1bebe79994519d0" class="message" data-pjax="true" title="Fix file permissions in themes/base/images.">Fix file permissions in themes/base/images.</a>
      </div>

    <div class="participation">
      <p class="quickstat"><a href="#blob_contributors_box" rel="facebox"><strong>3</strong>  contributors</a></p>
          <a class="avatar tooltipped tooltipped-s" aria-label="rdworth" href="/jquery/jquery-ui/commits/master/themes/base/images/ui-icons_2e83ff_256x240.png?author=rdworth"><img alt="Richard D. Worth" class=" js-avatar" data-user="107824" height="20" src="https://avatars2.githubusercontent.com/u/107824?s=140" width="20" /></a>
    <a class="avatar tooltipped tooltipped-s" aria-label="scottjehl" href="/jquery/jquery-ui/commits/master/themes/base/images/ui-icons_2e83ff_256x240.png?author=scottjehl"><img alt="Scott Jehl" class=" js-avatar" data-user="214783" height="20" src="https://avatars2.githubusercontent.com/u/214783?s=140" width="20" /></a>
    <a class="avatar tooltipped tooltipped-s" aria-label="TravisCarden" href="/jquery/jquery-ui/commits/master/themes/base/images/ui-icons_2e83ff_256x240.png?author=TravisCarden"><img alt="Travis Carden" class=" js-avatar" data-user="959246" height="20" src="https://avatars1.githubusercontent.com/u/959246?s=140" width="20" /></a>


    </div>
    <div id="blob_contributors_box" style="display:none">
      <h2 class="facebox-header">Users who have contributed to this file</h2>
      <ul class="facebox-user-list">
          <li class="facebox-user-list-item">
            <img alt="Richard D. Worth" class=" js-avatar" data-user="107824" height="24" src="https://avatars2.githubusercontent.com/u/107824?s=140" width="24" />
            <a href="/rdworth">rdworth</a>
          </li>
          <li class="facebox-user-list-item">
            <img alt="Scott Jehl" class=" js-avatar" data-user="214783" height="24" src="https://avatars2.githubusercontent.com/u/214783?s=140" width="24" />
            <a href="/scottjehl">scottjehl</a>
          </li>
          <li class="facebox-user-list-item">
            <img alt="Travis Carden" class=" js-avatar" data-user="959246" height="24" src="https://avatars1.githubusercontent.com/u/959246?s=140" width="24" />
            <a href="/TravisCarden">TravisCarden</a>
          </li>
      </ul>
    </div>
  </div>

<div class="file-box">
  <div class="file">
    <div class="meta clearfix">
      <div class="info file-name">
        <span class="icon"><b class="octicon octicon-file-text"></b></span>
        <span class="mode" title="File Mode">file</span>
        <span class="meta-divider"></span>
        <span>4.369 kb</span>
      </div>
      <div class="actions">
        <div class="button-group">
          <a href="/jquery/jquery-ui/raw/master/themes/base/images/ui-icons_2e83ff_256x240.png" class="minibutton " id="raw-url">Raw</a>
          <a href="/jquery/jquery-ui/commits/master/themes/base/images/ui-icons_2e83ff_256x240.png" class="minibutton " rel="nofollow">History</a>
        </div><!-- /.button-group -->

            <a class="minibutton danger empty-icon tooltipped tooltipped-s"
               href="/jquery/jquery-ui/delete/master/themes/base/images/ui-icons_2e83ff_256x240.png"
               aria-label="Fork this project and delete file"
               data-method="post" data-test-id="delete-blob-file" rel="nofollow">

          Delete
        </a>
      </div><!-- /.actions -->
    </div>
      
  <div class="blob-wrapper data type-text js-blob-data">
      <div class="image js-image">
          <span class="border-wrap"><img src="https://raw.githubusercontent.com/jquery/jquery-ui/master/themes/base/images/ui-icons_2e83ff_256x240.png" alt="themes/base/images/ui-icons_2e83ff_256x240.png" /></span>
      </div>
  </div>

  </div>
</div>

<a href="#jump-to-line" rel="facebox[.linejump]" data-hotkey="l" class="js-jump-to-line" style="display:none">Jump to Line</a>
<div id="jump-to-line" style="display:none">
  <form accept-charset="UTF-8" class="js-jump-to-line-form">
    <input class="linejump-input js-jump-to-line-field" type="text" placeholder="Jump to line&hellip;" autofocus>
    <button type="submit" class="button">Go</button>
  </form>
</div>

        </div>

      </div><!-- /.repo-container -->
      <div class="modal-backdrop"></div>
    </div><!-- /.container -->
  </div><!-- /.site -->


    </div><!-- /.wrapper -->

      <div class="container">
  <div class="site-footer">
    <ul class="site-footer-links right">
      <li><a href="https://status.github.com/">Status</a></li>
      <li><a href="http://developer.github.com">API</a></li>
      <li><a href="http://training.github.com">Training</a></li>
      <li><a href="http://shop.github.com">Shop</a></li>
      <li><a href="/blog">Blog</a></li>
      <li><a href="/about">About</a></li>

    </ul>

    <a href="/">
      <span class="mega-octicon octicon-mark-github" title="GitHub"></span>
    </a>

    <ul class="site-footer-links">
      <li>&copy; 2014 <span title="0.05467s from github-fe138-cp1-prd.iad.github.net">GitHub</span>, Inc.</li>
        <li><a href="/site/terms">Terms</a></li>
        <li><a href="/site/privacy">Privacy</a></li>
        <li><a href="/security">Security</a></li>
        <li><a href="/contact">Contact</a></li>
    </ul>
  </div><!-- /.site-footer -->
</div><!-- /.container -->


    <div class="fullscreen-overlay js-fullscreen-overlay" id="fullscreen_overlay">
  <div class="fullscreen-container js-fullscreen-container">
    <div class="textarea-wrap">
      <textarea name="fullscreen-contents" id="fullscreen-contents" class="fullscreen-contents js-fullscreen-contents" placeholder="" data-suggester="fullscreen_suggester"></textarea>
    </div>
  </div>
  <div class="fullscreen-sidebar">
    <a href="#" class="exit-fullscreen js-exit-fullscreen tooltipped tooltipped-w" aria-label="Exit Zen Mode">
      <span class="mega-octicon octicon-screen-normal"></span>
    </a>
    <a href="#" class="theme-switcher js-theme-switcher tooltipped tooltipped-w"
      aria-label="Switch themes">
      <span class="octicon octicon-color-mode"></span>
    </a>
  </div>
</div>



    <div id="ajax-error-message" class="flash flash-error">
      <span class="octicon octicon-alert"></span>
      <a href="#" class="octicon octicon-x close js-ajax-error-dismiss" aria-label="Dismiss error"></a>
      Something went wrong with that request. Please try again.
    </div>


      <script crossorigin="anonymous" src="https://assets-cdn.github.com/assets/frameworks-df9e4beac80276ed3dfa56be0d97b536d0f5ee12.js" type="text/javascript"></script>
      <script async="async" crossorigin="anonymous" src="https://assets-cdn.github.com/assets/github-534eef699bbadaf1454b432e14a2ab0a68c7ddf4.js" type="text/javascript"></script>
      
      
        <script async src="https://www.google-analytics.com/analytics.js"></script>
  </body>
</html>

   07070100000193000081A40000000000000000000000015ECE244400011D5D000000000000000000000000000000000000003C00000000cobbler-3.1.2/web/static/images/ui-icons_454545_256x240.png   




<!DOCTYPE html>
<html class="   ">
  <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# object: http://ogp.me/ns/object# article: http://ogp.me/ns/article# profile: http://ogp.me/ns/profile#">
    <meta charset='utf-8'>
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    
    
    <title>jquery-ui/themes/base/images/ui-icons_454545_256x240.png at master · jquery/jquery-ui</title>
    <link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="GitHub" />
    <link rel="fluid-icon" href="https://github.com/fluidicon.png" title="GitHub" />
    <link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-114.png" />
    <link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114.png" />
    <link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-144.png" />
    <link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144.png" />
    <meta property="fb:app_id" content="1401488693436528"/>

      <meta content="@github" name="twitter:site" /><meta content="summary" name="twitter:card" /><meta content="jquery/jquery-ui" name="twitter:title" /><meta content="jquery-ui - The official jQuery user interface library." name="twitter:description" /><meta content="https://avatars1.githubusercontent.com/u/70142?s=400" name="twitter:image:src" />
<meta content="GitHub" property="og:site_name" /><meta content="object" property="og:type" /><meta content="https://avatars1.githubusercontent.com/u/70142?s=400" property="og:image" /><meta content="jquery/jquery-ui" property="og:title" /><meta content="https://github.com/jquery/jquery-ui" property="og:url" /><meta content="jquery-ui - The official jQuery user interface library." property="og:description" />

    <link rel="assets" href="https://assets-cdn.github.com/">
    <link rel="conduit-xhr" href="https://ghconduit.com:25035">
    <link rel="xhr-socket" href="/_sockets" />

    <meta name="msapplication-TileImage" content="/windows-tile.png" />
    <meta name="msapplication-TileColor" content="#ffffff" />
    <meta name="selected-link" value="repo_source" data-pjax-transient />
      <meta name="google-analytics" content="UA-3769691-2">

    <meta content="collector.githubapp.com" name="octolytics-host" /><meta content="collector-cdn.github.com" name="octolytics-script-host" /><meta content="github" name="octolytics-app-id" /><meta content="5ED1AC98:1163:4D6AC07:53C6DBAB" name="octolytics-dimension-request_id" /><meta content="790690" name="octolytics-actor-id" /><meta content="jmaas" name="octolytics-actor-login" /><meta content="ac5e3878ac6703a37372cb2198cb3b8727e6b43c1e460ad6c9aeaeae1fb16fb4" name="octolytics-actor-hash" />
    

    
    
    <link rel="icon" type="image/x-icon" href="https://assets-cdn.github.com/favicon.ico" />


    <meta content="authenticity_token" name="csrf-param" />
<meta content="B/1ECYa3ktPXxKGxyil7yT7l4f6RM/33Ksvx5gUih+VMUDHZefCzSClINQqvOTDgmSxzCPDuNSreeRGmu/LC9w==" name="csrf-token" />

    <link href="https://assets-cdn.github.com/assets/github-c534ad575b5bb8c3cc3dce9c571df7aa7400dbe9.css" media="all" rel="stylesheet" type="text/css" />
    <link href="https://assets-cdn.github.com/assets/github2-84a1b6179d461213455892ab983182bc2052a7b5.css" media="all" rel="stylesheet" type="text/css" />
    


    <meta http-equiv="x-pjax-version" content="ef2e8ad48b4c98b3a1a0065370258ac2">

      
  <meta name="description" content="jquery-ui - The official jQuery user interface library." />


  <meta content="70142" name="octolytics-dimension-user_id" /><meta content="jquery" name="octolytics-dimension-user_login" /><meta content="478996" name="octolytics-dimension-repository_id" /><meta content="jquery/jquery-ui" name="octolytics-dimension-repository_nwo" /><meta content="true" name="octolytics-dimension-repository_public" /><meta content="false" name="octolytics-dimension-repository_is_fork" /><meta content="478996" name="octolytics-dimension-repository_network_root_id" /><meta content="jquery/jquery-ui" name="octolytics-dimension-repository_network_root_nwo" />

  <link href="https://github.com/jquery/jquery-ui/commits/master.atom" rel="alternate" title="Recent Commits to jquery-ui:master" type="application/atom+xml" />

  </head>


  <body class="logged_in  env-production linux vis-public page-blob">
    <a href="#start-of-content" tabindex="1" class="accessibility-aid js-skip-to-content">Skip to content</a>
    <div class="wrapper">
      
      
      
      


      <div class="header header-logged-in true">
  <div class="container clearfix">

    <a class="header-logo-invertocat" href="https://github.com/" aria-label="Homepage">
  <span class="mega-octicon octicon-mark-github"></span>
</a>


    
    <a href="/notifications" aria-label="You have no unread notifications" class="notification-indicator tooltipped tooltipped-s" data-hotkey="g n">
        <span class="mail-status all-read"></span>
</a>

      <div class="command-bar js-command-bar  in-repository">
          <form accept-charset="UTF-8" action="/search" class="command-bar-form" id="top_search_form" method="get">

<div class="commandbar">
  <span class="message"></span>
  <input type="text" data-hotkey="s" name="q" id="js-command-bar-field" placeholder="Search or type a command" tabindex="1" autocapitalize="off"
    
    data-username="jmaas"
    data-repo="jquery/jquery-ui"
  >
  <div class="display hidden"></div>
</div>

    <input type="hidden" name="nwo" value="jquery/jquery-ui" />

    <div class="select-menu js-menu-container js-select-menu search-context-select-menu">
      <span class="minibutton select-menu-button js-menu-target" role="button" aria-haspopup="true">
        <span class="js-select-button">This repository</span>
      </span>

      <div class="select-menu-modal-holder js-menu-content js-navigation-container" aria-hidden="true">
        <div class="select-menu-modal">

          <div class="select-menu-item js-navigation-item js-this-repository-navigation-item selected">
            <span class="select-menu-item-icon octicon octicon-check"></span>
            <input type="radio" class="js-search-this-repository" name="search_target" value="repository" checked="checked" />
            <div class="select-menu-item-text js-select-button-text">This repository</div>
          </div> <!-- /.select-menu-item -->

          <div class="select-menu-item js-navigation-item js-all-repositories-navigation-item">
            <span class="select-menu-item-icon octicon octicon-check"></span>
            <input type="radio" name="search_target" value="global" />
            <div class="select-menu-item-text js-select-button-text">All repositories</div>
          </div> <!-- /.select-menu-item -->

        </div>
      </div>
    </div>

  <span class="help tooltipped tooltipped-s" aria-label="Show command bar help">
    <span class="octicon octicon-question"></span>
  </span>


  <input type="hidden" name="ref" value="cmdform">

</form>
        <ul class="top-nav">
          <li class="explore"><a href="/explore">Explore</a></li>
            <li><a href="https://gist.github.com">Gist</a></li>
            <li><a href="/blog">Blog</a></li>
          <li><a href="https://help.github.com">Help</a></li>
        </ul>
      </div>

    

<ul id="user-links">
  <li>
    <a href="/jmaas" class="name">
      <img alt="Jörgen Maas" class=" js-avatar" data-user="790690" height="20" src="https://avatars1.githubusercontent.com/u/790690?s=140" width="20" /> jmaas
    </a>
  </li>

  <li class="new-menu dropdown-toggle js-menu-container">
    <a href="#" class="js-menu-target tooltipped tooltipped-s" aria-label="Create new...">
      <span class="octicon octicon-plus"></span>
      <span class="dropdown-arrow"></span>
    </a>

    <div class="new-menu-content js-menu-content">
    </div>
  </li>

  <li>
    <a href="/settings/profile" id="account_settings"
      class="tooltipped tooltipped-s"
      aria-label="Account settings ">
      <span class="octicon octicon-tools"></span>
    </a>
  </li>
  <li>
    <form accept-charset="UTF-8" action="/logout" class="logout-form" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="AxEKA/9itoNbyFrh4uSErO4ykwO/NbIvupntUZwR3Mkmq38TZST1SRV/ciCu5gnRNum0HBOc3qj4JaqLpK6Kag==" /></div>
      <button class="sign-out-button tooltipped tooltipped-s" aria-label="Sign out">
        <span class="octicon octicon-sign-out"></span>
      </button>
</form>  </li>

</ul>

<div class="js-new-dropdown-contents hidden">
  

<ul class="dropdown-menu">
  <li>
    <a href="/new"><span class="octicon octicon-repo"></span> New repository</a>
  </li>
  <li>
    <a href="/organizations/new"><span class="octicon octicon-organization"></span> New organization</a>
  </li>


</ul>

</div>


    
  </div>
</div>

      

        



      <div id="start-of-content" class="accessibility-aid"></div>
          <div class="site" itemscope itemtype="http://schema.org/WebPage">
    <div id="js-flash-container">
      
    </div>
    <div class="pagehead repohead instapaper_ignore readability-menu">
      <div class="container">
        
<ul class="pagehead-actions">

    <li class="subscription">
      <form accept-charset="UTF-8" action="/notifications/subscribe" class="js-social-container" data-autosubmit="true" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="gTA/DOEl3YwZXAUhO13SV4xDpKc1OmwuBh+LmP2CQYWXwtEYirzP7s3ZzPjhwJ2xDjEx2MnHQpex3y7gMMCOwQ==" /></div>  <input id="repository_id" name="repository_id" type="hidden" value="478996" />

    <div class="select-menu js-menu-container js-select-menu">
      <a class="social-count js-social-count" href="/jquery/jquery-ui/watchers">
        639
      </a>
      <a href="/jquery/jquery-ui/subscription"
        class="minibutton select-menu-button with-count js-menu-target" role="button" tabindex="0" aria-haspopup="true">
        <span class="js-select-button">
          <span class="octicon octicon-eye"></span>
          Watch
        </span>
      </a>

      <div class="select-menu-modal-holder">
        <div class="select-menu-modal subscription-menu-modal js-menu-content" aria-hidden="true">
          <div class="select-menu-header">
            <span class="select-menu-title">Notifications</span>
            <span class="octicon octicon-x js-menu-close" role="button" aria-label="Close"></span>
          </div> <!-- /.select-menu-header -->

          <div class="select-menu-list js-navigation-container" role="menu">

            <div class="select-menu-item js-navigation-item selected" role="menuitem" tabindex="0">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <div class="select-menu-item-text">
                <input checked="checked" id="do_included" name="do" type="radio" value="included" />
                <h4>Not watching</h4>
                <span class="description">Be notified when participating or @mentioned.</span>
                <span class="js-select-button-text hidden-select-button-text">
                  <span class="octicon octicon-eye"></span>
                  Watch
                </span>
              </div>
            </div> <!-- /.select-menu-item -->

            <div class="select-menu-item js-navigation-item " role="menuitem" tabindex="0">
              <span class="select-menu-item-icon octicon octicon octicon-check"></span>
              <div class="select-menu-item-text">
                <input id="do_subscribed" name="do" type="radio" value="subscribed" />
                <h4>Watching</h4>
                <span class="description">Be notified of all conversations.</span>
                <span class="js-select-button-text hidden-select-button-text">
                  <span class="octicon octicon-eye"></span>
                  Unwatch
                </span>
              </div>
            </div> <!-- /.select-menu-item -->

            <div class="select-menu-item js-navigation-item " role="menuitem" tabindex="0">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <div class="select-menu-item-text">
                <input id="do_ignore" name="do" type="radio" value="ignore" />
                <h4>Ignoring</h4>
                <span class="description">Never be notified.</span>
                <span class="js-select-button-text hidden-select-button-text">
                  <span class="octicon octicon-mute"></span>
                  Stop ignoring
                </span>
              </div>
            </div> <!-- /.select-menu-item -->

          </div> <!-- /.select-menu-list -->

        </div> <!-- /.select-menu-modal -->
      </div> <!-- /.select-menu-modal-holder -->
    </div> <!-- /.select-menu -->

</form>
    </li>

  <li>
    

  <div class="js-toggler-container js-social-container starring-container ">

    <form accept-charset="UTF-8" action="/jquery/jquery-ui/unstar" class="js-toggler-form starred" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="3dLqxcvnCckdhSG6aggxiUDn/4Y9yD5gMa3MADSEUZ0mx9NenjD+feF2pV/MdjKxSK+oSfmKj+FPA79rAaHaOg==" /></div>
      <button
        class="minibutton with-count js-toggler-target star-button"
        aria-label="Unstar this repository" title="Unstar jquery/jquery-ui">
        <span class="octicon octicon-star"></span>
        Unstar
      </button>
        <a class="social-count js-social-count" href="/jquery/jquery-ui/stargazers">
          8,441
        </a>
</form>
    <form accept-charset="UTF-8" action="/jquery/jquery-ui/star" class="js-toggler-form unstarred" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="Lglonj3KkBSxl9eF/SOQPKN1WCpnrDeYYrTf8CoOgo8XPwOlZb0ZGXYKuGztjlBdJsUjm+F/KrtVR67DXfUjsw==" /></div>
      <button
        class="minibutton with-count js-toggler-target star-button"
        aria-label="Star this repository" title="Star jquery/jquery-ui">
        <span class="octicon octicon-star"></span>
        Star
      </button>
        <a class="social-count js-social-count" href="/jquery/jquery-ui/stargazers">
          8,441
        </a>
</form>  </div>

  </li>


        <li>
          <a href="/jquery/jquery-ui/fork" class="minibutton with-count js-toggler-target fork-button lighter tooltipped-n" title="Fork your own copy of jquery/jquery-ui to your account" aria-label="Fork your own copy of jquery/jquery-ui to your account" rel="facebox nofollow">
            <span class="octicon octicon-repo-forked"></span>
            Fork
          </a>
          <a href="/jquery/jquery-ui/network" class="social-count">3,098</a>
        </li>

</ul>

        <h1 itemscope itemtype="http://data-vocabulary.org/Breadcrumb" class="entry-title public">
          <span class="repo-label"><span>public</span></span>
          <span class="mega-octicon octicon-repo"></span>
          <span class="author"><a href="/jquery" class="url fn" itemprop="url" rel="author"><span itemprop="title">jquery</span></a></span><!--
       --><span class="path-divider">/</span><!--
       --><strong><a href="/jquery/jquery-ui" class="js-current-repository js-repo-home-link">jquery-ui</a></strong>

          <span class="page-context-loader">
            <img alt="" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
          </span>

        </h1>
      </div><!-- /.container -->
    </div><!-- /.repohead -->

    <div class="container">
      <div class="repository-with-sidebar repo-container new-discussion-timeline js-new-discussion-timeline  ">
        <div class="repository-sidebar clearfix">
            

<div class="sunken-menu vertical-right repo-nav js-repo-nav js-repository-container-pjax js-octicon-loaders">
  <div class="sunken-menu-contents">
    <ul class="sunken-menu-group">
      <li class="tooltipped tooltipped-w" aria-label="Code">
        <a href="/jquery/jquery-ui" aria-label="Code" class="selected js-selected-navigation-item sunken-menu-item" data-hotkey="g c" data-pjax="true" data-selected-links="repo_source repo_downloads repo_commits repo_releases repo_tags repo_branches /jquery/jquery-ui">
          <span class="octicon octicon-code"></span> <span class="full-word">Code</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>


      <li class="tooltipped tooltipped-w" aria-label="Pull Requests">
        <a href="/jquery/jquery-ui/pulls" aria-label="Pull Requests" class="js-selected-navigation-item sunken-menu-item js-disable-pjax" data-hotkey="g p" data-selected-links="repo_pulls /jquery/jquery-ui/pulls">
            <span class="octicon octicon-git-pull-request"></span> <span class="full-word">Pull Requests</span>
            <span class='counter'>46</span>
            <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>


    </ul>
    <div class="sunken-menu-separator"></div>
    <ul class="sunken-menu-group">

      <li class="tooltipped tooltipped-w" aria-label="Pulse">
        <a href="/jquery/jquery-ui/pulse" aria-label="Pulse" class="js-selected-navigation-item sunken-menu-item" data-pjax="true" data-selected-links="pulse /jquery/jquery-ui/pulse">
          <span class="octicon octicon-pulse"></span> <span class="full-word">Pulse</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>

      <li class="tooltipped tooltipped-w" aria-label="Graphs">
        <a href="/jquery/jquery-ui/graphs" aria-label="Graphs" class="js-selected-navigation-item sunken-menu-item" data-pjax="true" data-selected-links="repo_graphs repo_contributors /jquery/jquery-ui/graphs">
          <span class="octicon octicon-graph"></span> <span class="full-word">Graphs</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>

      <li class="tooltipped tooltipped-w" aria-label="Network">
        <a href="/jquery/jquery-ui/network" aria-label="Network" class="js-selected-navigation-item sunken-menu-item js-disable-pjax" data-selected-links="repo_network /jquery/jquery-ui/network">
          <span class="octicon octicon-repo-forked"></span> <span class="full-word">Network</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>
    </ul>


  </div>
</div>

              <div class="only-with-full-nav">
                

  

<div class="clone-url open"
  data-protocol-type="http"
  data-url="/users/set_protocol?protocol_selector=http&amp;protocol_type=clone">
  <h3><strong>HTTPS</strong> clone URL</h3>
  <div class="clone-url-box">
    <input type="text" class="clone js-url-field"
           value="https://github.com/jquery/jquery-ui.git" readonly="readonly">
    <span class="url-box-clippy">
    <button aria-label="Copy to clipboard" class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="https://github.com/jquery/jquery-ui.git" data-copied-hint="Copied!" type="button"><span class="octicon octicon-clippy"></span></button>
    </span>
  </div>
</div>

  

<div class="clone-url "
  data-protocol-type="ssh"
  data-url="/users/set_protocol?protocol_selector=ssh&amp;protocol_type=clone">
  <h3><strong>SSH</strong> clone URL</h3>
  <div class="clone-url-box">
    <input type="text" class="clone js-url-field"
           value="git@github.com:jquery/jquery-ui.git" readonly="readonly">
    <span class="url-box-clippy">
    <button aria-label="Copy to clipboard" class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="git@github.com:jquery/jquery-ui.git" data-copied-hint="Copied!" type="button"><span class="octicon octicon-clippy"></span></button>
    </span>
  </div>
</div>

  

<div class="clone-url "
  data-protocol-type="subversion"
  data-url="/users/set_protocol?protocol_selector=subversion&amp;protocol_type=clone">
  <h3><strong>Subversion</strong> checkout URL</h3>
  <div class="clone-url-box">
    <input type="text" class="clone js-url-field"
           value="https://github.com/jquery/jquery-ui" readonly="readonly">
    <span class="url-box-clippy">
    <button aria-label="Copy to clipboard" class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="https://github.com/jquery/jquery-ui" data-copied-hint="Copied!" type="button"><span class="octicon octicon-clippy"></span></button>
    </span>
  </div>
</div>


<p class="clone-options">You can clone with
      <a href="#" class="js-clone-selector" data-protocol="http">HTTPS</a>,
      <a href="#" class="js-clone-selector" data-protocol="ssh">SSH</a>,
      or <a href="#" class="js-clone-selector" data-protocol="subversion">Subversion</a>.
  <a href="https://help.github.com/articles/which-remote-url-should-i-use" class="help tooltipped tooltipped-n" aria-label="Get help on which URL is right for you.">
    <span class="octicon octicon-question"></span>
  </a>
</p>



                <a href="/jquery/jquery-ui/archive/master.zip"
                   class="minibutton sidebar-button"
                   aria-label="Download jquery/jquery-ui as a zip file"
                   title="Download jquery/jquery-ui as a zip file"
                   rel="nofollow">
                  <span class="octicon octicon-cloud-download"></span>
                  Download ZIP
                </a>
              </div>
        </div><!-- /.repository-sidebar -->

        <div id="js-repo-pjax-container" class="repository-content context-loader-container" data-pjax-container>
          


<a href="/jquery/jquery-ui/blob/98583a6563e7ae98ed67b5d70db2bff814c11e4e/themes/base/images/ui-icons_454545_256x240.png" class="hidden js-permalink-shortcut" data-hotkey="y">Permalink</a>

<!-- blob contrib key: blob_contributors:v21:90607b99434a8691c0d34320848e26f0 -->

<p title="This is a placeholder element" class="js-history-link-replace hidden"></p>

<div class="file-navigation">
  

<div class="select-menu js-menu-container js-select-menu" >
  <span class="minibutton select-menu-button js-menu-target css-truncate" data-hotkey="w"
    data-master-branch="master"
    data-ref="master"
    title="master"
    role="button" aria-label="Switch branches or tags" tabindex="0" aria-haspopup="true">
    <span class="octicon octicon-git-branch"></span>
    <i>branch:</i>
    <span class="js-select-button css-truncate-target">master</span>
  </span>

  <div class="select-menu-modal-holder js-menu-content js-navigation-container" data-pjax aria-hidden="true">

    <div class="select-menu-modal">
      <div class="select-menu-header">
        <span class="select-menu-title">Switch branches/tags</span>
        <span class="octicon octicon-x js-menu-close" role="button" aria-label="Close"></span>
      </div> <!-- /.select-menu-header -->

      <div class="select-menu-filters">
        <div class="select-menu-text-filter">
          <input type="text" aria-label="Filter branches/tags" id="context-commitish-filter-field" class="js-filterable-field js-navigation-enable" placeholder="Filter branches/tags">
        </div>
        <div class="select-menu-tabs">
          <ul>
            <li class="select-menu-tab">
              <a href="#" data-tab-filter="branches" class="js-select-menu-tab">Branches</a>
            </li>
            <li class="select-menu-tab">
              <a href="#" data-tab-filter="tags" class="js-select-menu-tab">Tags</a>
            </li>
          </ul>
        </div><!-- /.select-menu-tabs -->
      </div><!-- /.select-menu-filters -->

      <div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="branches">

        <div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring">


            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/1-8-stable/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1-8-stable"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1-8-stable">1-8-stable</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/1-9-stable/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1-9-stable"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1-9-stable">1-9-stable</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/1-10-stable/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1-10-stable"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1-10-stable">1-10-stable</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/button-icon-span/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="button-icon-span"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="button-icon-span">button-icon-span</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/datepicker/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="datepicker"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="datepicker">datepicker</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/interactions/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="interactions"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="interactions">interactions</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/interactions-polymer/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="interactions-polymer"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="interactions-polymer">interactions-polymer</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item selected">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/master/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="master"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="master">master</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/ref-1029-css-dependency-comments/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="ref-1029-css-dependency-comments"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="ref-1029-css-dependency-comments">ref-1029-css-dependency-comments</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/selectmenu-native-menu/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="selectmenu-native-menu"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="selectmenu-native-menu">selectmenu-native-menu</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/spinner-globalize-1.x/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="spinner-globalize-1.x"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="spinner-globalize-1.x">spinner-globalize-1.x</a>
            </div> <!-- /.select-menu-item -->
        </div>

          <div class="select-menu-no-results">Nothing to show</div>
      </div> <!-- /.select-menu-list -->

      <div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="tags">
        <div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring">


            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.11.0-beta.2/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.11.0-beta.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.11.0-beta.2">1.11.0-beta.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.11.0-beta.1/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.11.0-beta.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.11.0-beta.1">1.11.0-beta.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.11.0/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.11.0"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.11.0">1.11.0</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.4/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.10.4"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.4">1.10.4</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.3/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.10.3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.3">1.10.3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.2/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.10.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.2">1.10.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.1/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.10.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.1">1.10.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.0-rc.1/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.10.0-rc.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.0-rc.1">1.10.0-rc.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.0-beta.1/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.10.0-beta.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.0-beta.1">1.10.0-beta.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.0/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.10.0"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.0">1.10.0</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m7/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.9m7"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m7">1.9m7</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m6/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.9m6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m6">1.9m6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m5/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.9m5"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m5">1.9m5</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m4/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.9m4"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m4">1.9m4</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m3/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.9m3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m3">1.9m3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m2/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.9m2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m2">1.9m2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m1/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.9m1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m1">1.9m1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.2/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.9.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.2">1.9.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.1/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.9.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.1">1.9.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0-rc.1/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.9.0-rc.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0-rc.1">1.9.0-rc.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0m8/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.9.0m8"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0m8">1.9.0m8</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0-beta.1/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.9.0-beta.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0-beta.1">1.9.0-beta.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.9.0"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0">1.9.0</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8rc3/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.8rc3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8rc3">1.8rc3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8rc2/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.8rc2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8rc2">1.8rc2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8rc1/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.8rc1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8rc1">1.8rc1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8b1/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.8b1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8b1">1.8b1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8a2/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.8a2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8a2">1.8a2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8a1/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.8a1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8a1">1.8a1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.24/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.8.24"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.24">1.8.24</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.23/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.8.23"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.23">1.8.23</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.22/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.8.22"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.22">1.8.22</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.21/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.8.21"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.21">1.8.21</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.20/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.8.20"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.20">1.8.20</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.19/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.8.19"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.19">1.8.19</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.18/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.8.18"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.18">1.8.18</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.17/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.8.17"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.17">1.8.17</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.16/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.8.16"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.16">1.8.16</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.15/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.8.15"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.15">1.8.15</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.14/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.8.14"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.14">1.8.14</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.13/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.8.13"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.13">1.8.13</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.12/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.8.12"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.12">1.8.12</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.11/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.8.11"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.11">1.8.11</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.10/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.8.10"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.10">1.8.10</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.9/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.8.9"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.9">1.8.9</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.8/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.8.8"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.8">1.8.8</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.7/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.8.7"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.7">1.8.7</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.6/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.8.6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.6">1.8.6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.5/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.8.5"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.5">1.8.5</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.4/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.8.4"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.4">1.8.4</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.3/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.8.3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.3">1.8.3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.2/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.8.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.2">1.8.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.1/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.8.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.1">1.8.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.8"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8">1.8</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.7/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.7"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.7">1.7</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc6/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.6rc6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc6">1.6rc6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc5/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.6rc5"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc5">1.6rc5</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc3/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.6rc3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc3">1.6rc3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc2/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.6rc2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc2">1.6rc2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6">1.6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.5.2/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.5.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.5.2">1.5.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.5.1/themes/base/images/ui-icons_454545_256x240.png"
                 data-name="1.5.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.5.1">1.5.1</a>
            </div> <!-- /.select-menu-item -->
        </div>

        <div class="select-menu-no-results">Nothing to show</div>
      </div> <!-- /.select-menu-list -->

    </div> <!-- /.select-menu-modal -->
  </div> <!-- /.select-menu-modal-holder -->
</div> <!-- /.select-menu -->

  <div class="button-group right">
    <a href="/jquery/jquery-ui/find/master"
          class="js-show-file-finder minibutton empty-icon tooltipped tooltipped-s"
          data-pjax
          data-hotkey="t"
          aria-label="Quickly jump between files">
      <span class="octicon octicon-list-unordered"></span>
    </a>
    <button class="js-zeroclipboard minibutton zeroclipboard-button"
          data-clipboard-text="themes/base/images/ui-icons_454545_256x240.png"
          aria-label="Copy to clipboard"
          data-copied-hint="Copied!">
      <span class="octicon octicon-clippy"></span>
    </button>
  </div>

  <div class="breadcrumb">
    <span class='repo-root js-repo-root'><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">jquery-ui</span></a></span></span><span class="separator"> / </span><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui/tree/master/themes" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">themes</span></a></span><span class="separator"> / </span><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui/tree/master/themes/base" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">base</span></a></span><span class="separator"> / </span><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui/tree/master/themes/base/images" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">images</span></a></span><span class="separator"> / </span><strong class="final-path">ui-icons_454545_256x240.png</strong>
  </div>
</div>


  <div class="commit file-history-tease">
      <img alt="Travis Carden" class="main-avatar js-avatar" data-user="959246" height="24" src="https://avatars1.githubusercontent.com/u/959246?s=140" width="24" />
      <span class="author"><a href="/TravisCarden" rel="contributor">TravisCarden</a></span>
      <time datetime="2013-02-04T13:02:57-05:00" is="relative-time">February 04, 2013</time>
      <div class="commit-title">
          <a href="/jquery/jquery-ui/commit/a61af0b205c865b9c4f949bcc1bebe79994519d0" class="message" data-pjax="true" title="Fix file permissions in themes/base/images.">Fix file permissions in themes/base/images.</a>
      </div>

    <div class="participation">
      <p class="quickstat"><a href="#blob_contributors_box" rel="facebox"><strong>3</strong>  contributors</a></p>
          <a class="avatar tooltipped tooltipped-s" aria-label="rdworth" href="/jquery/jquery-ui/commits/master/themes/base/images/ui-icons_454545_256x240.png?author=rdworth"><img alt="Richard D. Worth" class=" js-avatar" data-user="107824" height="20" src="https://avatars2.githubusercontent.com/u/107824?s=140" width="20" /></a>
    <a class="avatar tooltipped tooltipped-s" aria-label="scottjehl" href="/jquery/jquery-ui/commits/master/themes/base/images/ui-icons_454545_256x240.png?author=scottjehl"><img alt="Scott Jehl" class=" js-avatar" data-user="214783" height="20" src="https://avatars2.githubusercontent.com/u/214783?s=140" width="20" /></a>
    <a class="avatar tooltipped tooltipped-s" aria-label="TravisCarden" href="/jquery/jquery-ui/commits/master/themes/base/images/ui-icons_454545_256x240.png?author=TravisCarden"><img alt="Travis Carden" class=" js-avatar" data-user="959246" height="20" src="https://avatars1.githubusercontent.com/u/959246?s=140" width="20" /></a>


    </div>
    <div id="blob_contributors_box" style="display:none">
      <h2 class="facebox-header">Users who have contributed to this file</h2>
      <ul class="facebox-user-list">
          <li class="facebox-user-list-item">
            <img alt="Richard D. Worth" class=" js-avatar" data-user="107824" height="24" src="https://avatars2.githubusercontent.com/u/107824?s=140" width="24" />
            <a href="/rdworth">rdworth</a>
          </li>
          <li class="facebox-user-list-item">
            <img alt="Scott Jehl" class=" js-avatar" data-user="214783" height="24" src="https://avatars2.githubusercontent.com/u/214783?s=140" width="24" />
            <a href="/scottjehl">scottjehl</a>
          </li>
          <li class="facebox-user-list-item">
            <img alt="Travis Carden" class=" js-avatar" data-user="959246" height="24" src="https://avatars1.githubusercontent.com/u/959246?s=140" width="24" />
            <a href="/TravisCarden">TravisCarden</a>
          </li>
      </ul>
    </div>
  </div>

<div class="file-box">
  <div class="file">
    <div class="meta clearfix">
      <div class="info file-name">
        <span class="icon"><b class="octicon octicon-file-text"></b></span>
        <span class="mode" title="File Mode">file</span>
        <span class="meta-divider"></span>
        <span>4.369 kb</span>
      </div>
      <div class="actions">
        <div class="button-group">
          <a href="/jquery/jquery-ui/raw/master/themes/base/images/ui-icons_454545_256x240.png" class="minibutton " id="raw-url">Raw</a>
          <a href="/jquery/jquery-ui/commits/master/themes/base/images/ui-icons_454545_256x240.png" class="minibutton " rel="nofollow">History</a>
        </div><!-- /.button-group -->

            <a class="minibutton danger empty-icon tooltipped tooltipped-s"
               href="/jquery/jquery-ui/delete/master/themes/base/images/ui-icons_454545_256x240.png"
               aria-label="Fork this project and delete file"
               data-method="post" data-test-id="delete-blob-file" rel="nofollow">

          Delete
        </a>
      </div><!-- /.actions -->
    </div>
      
  <div class="blob-wrapper data type-text js-blob-data">
      <div class="image js-image">
          <span class="border-wrap"><img src="https://raw.githubusercontent.com/jquery/jquery-ui/master/themes/base/images/ui-icons_454545_256x240.png" alt="themes/base/images/ui-icons_454545_256x240.png" /></span>
      </div>
  </div>

  </div>
</div>

<a href="#jump-to-line" rel="facebox[.linejump]" data-hotkey="l" class="js-jump-to-line" style="display:none">Jump to Line</a>
<div id="jump-to-line" style="display:none">
  <form accept-charset="UTF-8" class="js-jump-to-line-form">
    <input class="linejump-input js-jump-to-line-field" type="text" placeholder="Jump to line&hellip;" autofocus>
    <button type="submit" class="button">Go</button>
  </form>
</div>

        </div>

      </div><!-- /.repo-container -->
      <div class="modal-backdrop"></div>
    </div><!-- /.container -->
  </div><!-- /.site -->


    </div><!-- /.wrapper -->

      <div class="container">
  <div class="site-footer">
    <ul class="site-footer-links right">
      <li><a href="https://status.github.com/">Status</a></li>
      <li><a href="http://developer.github.com">API</a></li>
      <li><a href="http://training.github.com">Training</a></li>
      <li><a href="http://shop.github.com">Shop</a></li>
      <li><a href="/blog">Blog</a></li>
      <li><a href="/about">About</a></li>

    </ul>

    <a href="/">
      <span class="mega-octicon octicon-mark-github" title="GitHub"></span>
    </a>

    <ul class="site-footer-links">
      <li>&copy; 2014 <span title="0.04807s from github-fe118-cp1-prd.iad.github.net">GitHub</span>, Inc.</li>
        <li><a href="/site/terms">Terms</a></li>
        <li><a href="/site/privacy">Privacy</a></li>
        <li><a href="/security">Security</a></li>
        <li><a href="/contact">Contact</a></li>
    </ul>
  </div><!-- /.site-footer -->
</div><!-- /.container -->


    <div class="fullscreen-overlay js-fullscreen-overlay" id="fullscreen_overlay">
  <div class="fullscreen-container js-fullscreen-container">
    <div class="textarea-wrap">
      <textarea name="fullscreen-contents" id="fullscreen-contents" class="fullscreen-contents js-fullscreen-contents" placeholder="" data-suggester="fullscreen_suggester"></textarea>
    </div>
  </div>
  <div class="fullscreen-sidebar">
    <a href="#" class="exit-fullscreen js-exit-fullscreen tooltipped tooltipped-w" aria-label="Exit Zen Mode">
      <span class="mega-octicon octicon-screen-normal"></span>
    </a>
    <a href="#" class="theme-switcher js-theme-switcher tooltipped tooltipped-w"
      aria-label="Switch themes">
      <span class="octicon octicon-color-mode"></span>
    </a>
  </div>
</div>



    <div id="ajax-error-message" class="flash flash-error">
      <span class="octicon octicon-alert"></span>
      <a href="#" class="octicon octicon-x close js-ajax-error-dismiss" aria-label="Dismiss error"></a>
      Something went wrong with that request. Please try again.
    </div>


      <script crossorigin="anonymous" src="https://assets-cdn.github.com/assets/frameworks-df9e4beac80276ed3dfa56be0d97b536d0f5ee12.js" type="text/javascript"></script>
      <script async="async" crossorigin="anonymous" src="https://assets-cdn.github.com/assets/github-534eef699bbadaf1454b432e14a2ab0a68c7ddf4.js" type="text/javascript"></script>
      
      
        <script async src="https://www.google-analytics.com/analytics.js"></script>
  </body>
</html>

   07070100000194000081A40000000000000000000000015ECE244400011D5D000000000000000000000000000000000000003C00000000cobbler-3.1.2/web/static/images/ui-icons_888888_256x240.png   




<!DOCTYPE html>
<html class="   ">
  <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# object: http://ogp.me/ns/object# article: http://ogp.me/ns/article# profile: http://ogp.me/ns/profile#">
    <meta charset='utf-8'>
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    
    
    <title>jquery-ui/themes/base/images/ui-icons_888888_256x240.png at master · jquery/jquery-ui</title>
    <link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="GitHub" />
    <link rel="fluid-icon" href="https://github.com/fluidicon.png" title="GitHub" />
    <link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-114.png" />
    <link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114.png" />
    <link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-144.png" />
    <link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144.png" />
    <meta property="fb:app_id" content="1401488693436528"/>

      <meta content="@github" name="twitter:site" /><meta content="summary" name="twitter:card" /><meta content="jquery/jquery-ui" name="twitter:title" /><meta content="jquery-ui - The official jQuery user interface library." name="twitter:description" /><meta content="https://avatars1.githubusercontent.com/u/70142?s=400" name="twitter:image:src" />
<meta content="GitHub" property="og:site_name" /><meta content="object" property="og:type" /><meta content="https://avatars1.githubusercontent.com/u/70142?s=400" property="og:image" /><meta content="jquery/jquery-ui" property="og:title" /><meta content="https://github.com/jquery/jquery-ui" property="og:url" /><meta content="jquery-ui - The official jQuery user interface library." property="og:description" />

    <link rel="assets" href="https://assets-cdn.github.com/">
    <link rel="conduit-xhr" href="https://ghconduit.com:25035">
    <link rel="xhr-socket" href="/_sockets" />

    <meta name="msapplication-TileImage" content="/windows-tile.png" />
    <meta name="msapplication-TileColor" content="#ffffff" />
    <meta name="selected-link" value="repo_source" data-pjax-transient />
      <meta name="google-analytics" content="UA-3769691-2">

    <meta content="collector.githubapp.com" name="octolytics-host" /><meta content="collector-cdn.github.com" name="octolytics-script-host" /><meta content="github" name="octolytics-app-id" /><meta content="5ED1AC98:1163:4D6A99E:53C6DBA7" name="octolytics-dimension-request_id" /><meta content="790690" name="octolytics-actor-id" /><meta content="jmaas" name="octolytics-actor-login" /><meta content="ac5e3878ac6703a37372cb2198cb3b8727e6b43c1e460ad6c9aeaeae1fb16fb4" name="octolytics-actor-hash" />
    

    
    
    <link rel="icon" type="image/x-icon" href="https://assets-cdn.github.com/favicon.ico" />


    <meta content="authenticity_token" name="csrf-param" />
<meta content="maUD1bvFGssxruPkE9mHfUDBeMgxkzWsCcuHZ/TQdjX0knDy6x4E3+BO7t4oDlN0IUyR6p14QNN5hlkappmY3A==" name="csrf-token" />

    <link href="https://assets-cdn.github.com/assets/github-c534ad575b5bb8c3cc3dce9c571df7aa7400dbe9.css" media="all" rel="stylesheet" type="text/css" />
    <link href="https://assets-cdn.github.com/assets/github2-84a1b6179d461213455892ab983182bc2052a7b5.css" media="all" rel="stylesheet" type="text/css" />
    


    <meta http-equiv="x-pjax-version" content="ef2e8ad48b4c98b3a1a0065370258ac2">

      
  <meta name="description" content="jquery-ui - The official jQuery user interface library." />


  <meta content="70142" name="octolytics-dimension-user_id" /><meta content="jquery" name="octolytics-dimension-user_login" /><meta content="478996" name="octolytics-dimension-repository_id" /><meta content="jquery/jquery-ui" name="octolytics-dimension-repository_nwo" /><meta content="true" name="octolytics-dimension-repository_public" /><meta content="false" name="octolytics-dimension-repository_is_fork" /><meta content="478996" name="octolytics-dimension-repository_network_root_id" /><meta content="jquery/jquery-ui" name="octolytics-dimension-repository_network_root_nwo" />

  <link href="https://github.com/jquery/jquery-ui/commits/master.atom" rel="alternate" title="Recent Commits to jquery-ui:master" type="application/atom+xml" />

  </head>


  <body class="logged_in  env-production linux vis-public page-blob">
    <a href="#start-of-content" tabindex="1" class="accessibility-aid js-skip-to-content">Skip to content</a>
    <div class="wrapper">
      
      
      
      


      <div class="header header-logged-in true">
  <div class="container clearfix">

    <a class="header-logo-invertocat" href="https://github.com/" aria-label="Homepage">
  <span class="mega-octicon octicon-mark-github"></span>
</a>


    
    <a href="/notifications" aria-label="You have no unread notifications" class="notification-indicator tooltipped tooltipped-s" data-hotkey="g n">
        <span class="mail-status all-read"></span>
</a>

      <div class="command-bar js-command-bar  in-repository">
          <form accept-charset="UTF-8" action="/search" class="command-bar-form" id="top_search_form" method="get">

<div class="commandbar">
  <span class="message"></span>
  <input type="text" data-hotkey="s" name="q" id="js-command-bar-field" placeholder="Search or type a command" tabindex="1" autocapitalize="off"
    
    data-username="jmaas"
    data-repo="jquery/jquery-ui"
  >
  <div class="display hidden"></div>
</div>

    <input type="hidden" name="nwo" value="jquery/jquery-ui" />

    <div class="select-menu js-menu-container js-select-menu search-context-select-menu">
      <span class="minibutton select-menu-button js-menu-target" role="button" aria-haspopup="true">
        <span class="js-select-button">This repository</span>
      </span>

      <div class="select-menu-modal-holder js-menu-content js-navigation-container" aria-hidden="true">
        <div class="select-menu-modal">

          <div class="select-menu-item js-navigation-item js-this-repository-navigation-item selected">
            <span class="select-menu-item-icon octicon octicon-check"></span>
            <input type="radio" class="js-search-this-repository" name="search_target" value="repository" checked="checked" />
            <div class="select-menu-item-text js-select-button-text">This repository</div>
          </div> <!-- /.select-menu-item -->

          <div class="select-menu-item js-navigation-item js-all-repositories-navigation-item">
            <span class="select-menu-item-icon octicon octicon-check"></span>
            <input type="radio" name="search_target" value="global" />
            <div class="select-menu-item-text js-select-button-text">All repositories</div>
          </div> <!-- /.select-menu-item -->

        </div>
      </div>
    </div>

  <span class="help tooltipped tooltipped-s" aria-label="Show command bar help">
    <span class="octicon octicon-question"></span>
  </span>


  <input type="hidden" name="ref" value="cmdform">

</form>
        <ul class="top-nav">
          <li class="explore"><a href="/explore">Explore</a></li>
            <li><a href="https://gist.github.com">Gist</a></li>
            <li><a href="/blog">Blog</a></li>
          <li><a href="https://help.github.com">Help</a></li>
        </ul>
      </div>

    

<ul id="user-links">
  <li>
    <a href="/jmaas" class="name">
      <img alt="Jörgen Maas" class=" js-avatar" data-user="790690" height="20" src="https://avatars1.githubusercontent.com/u/790690?s=140" width="20" /> jmaas
    </a>
  </li>

  <li class="new-menu dropdown-toggle js-menu-container">
    <a href="#" class="js-menu-target tooltipped tooltipped-s" aria-label="Create new...">
      <span class="octicon octicon-plus"></span>
      <span class="dropdown-arrow"></span>
    </a>

    <div class="new-menu-content js-menu-content">
    </div>
  </li>

  <li>
    <a href="/settings/profile" id="account_settings"
      class="tooltipped tooltipped-s"
      aria-label="Account settings ">
      <span class="octicon octicon-tools"></span>
    </a>
  </li>
  <li>
    <form accept-charset="UTF-8" action="/logout" class="logout-form" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="VHx39438hUX/EgaToxLY23rv9KohduKQtsq7EIwqjSXe6GlhtX6pgI4Q7Dh04/9O/XqQR2k5xMoq/wcEFXNsog==" /></div>
      <button class="sign-out-button tooltipped tooltipped-s" aria-label="Sign out">
        <span class="octicon octicon-sign-out"></span>
      </button>
</form>  </li>

</ul>

<div class="js-new-dropdown-contents hidden">
  

<ul class="dropdown-menu">
  <li>
    <a href="/new"><span class="octicon octicon-repo"></span> New repository</a>
  </li>
  <li>
    <a href="/organizations/new"><span class="octicon octicon-organization"></span> New organization</a>
  </li>


</ul>

</div>


    
  </div>
</div>

      

        



      <div id="start-of-content" class="accessibility-aid"></div>
          <div class="site" itemscope itemtype="http://schema.org/WebPage">
    <div id="js-flash-container">
      
    </div>
    <div class="pagehead repohead instapaper_ignore readability-menu">
      <div class="container">
        
<ul class="pagehead-actions">

    <li class="subscription">
      <form accept-charset="UTF-8" action="/notifications/subscribe" class="js-social-container" data-autosubmit="true" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="d+WDBPj2VF3ANWPQ4yRB7CQKIN0FKVo3AI998wpLIXT/T11Ta9FiCCqsYDxnc7utG5z9VrBT3vPbA2/IcoN+jQ==" /></div>  <input id="repository_id" name="repository_id" type="hidden" value="478996" />

    <div class="select-menu js-menu-container js-select-menu">
      <a class="social-count js-social-count" href="/jquery/jquery-ui/watchers">
        639
      </a>
      <a href="/jquery/jquery-ui/subscription"
        class="minibutton select-menu-button with-count js-menu-target" role="button" tabindex="0" aria-haspopup="true">
        <span class="js-select-button">
          <span class="octicon octicon-eye"></span>
          Watch
        </span>
      </a>

      <div class="select-menu-modal-holder">
        <div class="select-menu-modal subscription-menu-modal js-menu-content" aria-hidden="true">
          <div class="select-menu-header">
            <span class="select-menu-title">Notifications</span>
            <span class="octicon octicon-x js-menu-close" role="button" aria-label="Close"></span>
          </div> <!-- /.select-menu-header -->

          <div class="select-menu-list js-navigation-container" role="menu">

            <div class="select-menu-item js-navigation-item selected" role="menuitem" tabindex="0">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <div class="select-menu-item-text">
                <input checked="checked" id="do_included" name="do" type="radio" value="included" />
                <h4>Not watching</h4>
                <span class="description">Be notified when participating or @mentioned.</span>
                <span class="js-select-button-text hidden-select-button-text">
                  <span class="octicon octicon-eye"></span>
                  Watch
                </span>
              </div>
            </div> <!-- /.select-menu-item -->

            <div class="select-menu-item js-navigation-item " role="menuitem" tabindex="0">
              <span class="select-menu-item-icon octicon octicon octicon-check"></span>
              <div class="select-menu-item-text">
                <input id="do_subscribed" name="do" type="radio" value="subscribed" />
                <h4>Watching</h4>
                <span class="description">Be notified of all conversations.</span>
                <span class="js-select-button-text hidden-select-button-text">
                  <span class="octicon octicon-eye"></span>
                  Unwatch
                </span>
              </div>
            </div> <!-- /.select-menu-item -->

            <div class="select-menu-item js-navigation-item " role="menuitem" tabindex="0">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <div class="select-menu-item-text">
                <input id="do_ignore" name="do" type="radio" value="ignore" />
                <h4>Ignoring</h4>
                <span class="description">Never be notified.</span>
                <span class="js-select-button-text hidden-select-button-text">
                  <span class="octicon octicon-mute"></span>
                  Stop ignoring
                </span>
              </div>
            </div> <!-- /.select-menu-item -->

          </div> <!-- /.select-menu-list -->

        </div> <!-- /.select-menu-modal -->
      </div> <!-- /.select-menu-modal-holder -->
    </div> <!-- /.select-menu -->

</form>
    </li>

  <li>
    

  <div class="js-toggler-container js-social-container starring-container ">

    <form accept-charset="UTF-8" action="/jquery/jquery-ui/unstar" class="js-toggler-form starred" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="ey8U4DUzjLQXpMQwnBHfQ2fknUpz5YXW0KMUhWA9HSJBbAy0cpie3I+6wx+cPqwVqI2RcWL4EfKK0eg2rUGTnA==" /></div>
      <button
        class="minibutton with-count js-toggler-target star-button"
        aria-label="Unstar this repository" title="Unstar jquery/jquery-ui">
        <span class="octicon octicon-star"></span>
        Unstar
      </button>
        <a class="social-count js-social-count" href="/jquery/jquery-ui/stargazers">
          8,441
        </a>
</form>
    <form accept-charset="UTF-8" action="/jquery/jquery-ui/star" class="js-toggler-form unstarred" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="MTJIWXY2UaWn4/R7RC8ds/l4FuHYsOa/sLzR0ZJSFri3ukL1LK9KMY50ebkPZAvDjaiJxF77UAyIFOZFluA+OQ==" /></div>
      <button
        class="minibutton with-count js-toggler-target star-button"
        aria-label="Star this repository" title="Star jquery/jquery-ui">
        <span class="octicon octicon-star"></span>
        Star
      </button>
        <a class="social-count js-social-count" href="/jquery/jquery-ui/stargazers">
          8,441
        </a>
</form>  </div>

  </li>


        <li>
          <a href="/jquery/jquery-ui/fork" class="minibutton with-count js-toggler-target fork-button lighter tooltipped-n" title="Fork your own copy of jquery/jquery-ui to your account" aria-label="Fork your own copy of jquery/jquery-ui to your account" rel="facebox nofollow">
            <span class="octicon octicon-repo-forked"></span>
            Fork
          </a>
          <a href="/jquery/jquery-ui/network" class="social-count">3,098</a>
        </li>

</ul>

        <h1 itemscope itemtype="http://data-vocabulary.org/Breadcrumb" class="entry-title public">
          <span class="repo-label"><span>public</span></span>
          <span class="mega-octicon octicon-repo"></span>
          <span class="author"><a href="/jquery" class="url fn" itemprop="url" rel="author"><span itemprop="title">jquery</span></a></span><!--
       --><span class="path-divider">/</span><!--
       --><strong><a href="/jquery/jquery-ui" class="js-current-repository js-repo-home-link">jquery-ui</a></strong>

          <span class="page-context-loader">
            <img alt="" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
          </span>

        </h1>
      </div><!-- /.container -->
    </div><!-- /.repohead -->

    <div class="container">
      <div class="repository-with-sidebar repo-container new-discussion-timeline js-new-discussion-timeline  ">
        <div class="repository-sidebar clearfix">
            

<div class="sunken-menu vertical-right repo-nav js-repo-nav js-repository-container-pjax js-octicon-loaders">
  <div class="sunken-menu-contents">
    <ul class="sunken-menu-group">
      <li class="tooltipped tooltipped-w" aria-label="Code">
        <a href="/jquery/jquery-ui" aria-label="Code" class="selected js-selected-navigation-item sunken-menu-item" data-hotkey="g c" data-pjax="true" data-selected-links="repo_source repo_downloads repo_commits repo_releases repo_tags repo_branches /jquery/jquery-ui">
          <span class="octicon octicon-code"></span> <span class="full-word">Code</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>


      <li class="tooltipped tooltipped-w" aria-label="Pull Requests">
        <a href="/jquery/jquery-ui/pulls" aria-label="Pull Requests" class="js-selected-navigation-item sunken-menu-item js-disable-pjax" data-hotkey="g p" data-selected-links="repo_pulls /jquery/jquery-ui/pulls">
            <span class="octicon octicon-git-pull-request"></span> <span class="full-word">Pull Requests</span>
            <span class='counter'>46</span>
            <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>


    </ul>
    <div class="sunken-menu-separator"></div>
    <ul class="sunken-menu-group">

      <li class="tooltipped tooltipped-w" aria-label="Pulse">
        <a href="/jquery/jquery-ui/pulse" aria-label="Pulse" class="js-selected-navigation-item sunken-menu-item" data-pjax="true" data-selected-links="pulse /jquery/jquery-ui/pulse">
          <span class="octicon octicon-pulse"></span> <span class="full-word">Pulse</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>

      <li class="tooltipped tooltipped-w" aria-label="Graphs">
        <a href="/jquery/jquery-ui/graphs" aria-label="Graphs" class="js-selected-navigation-item sunken-menu-item" data-pjax="true" data-selected-links="repo_graphs repo_contributors /jquery/jquery-ui/graphs">
          <span class="octicon octicon-graph"></span> <span class="full-word">Graphs</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>

      <li class="tooltipped tooltipped-w" aria-label="Network">
        <a href="/jquery/jquery-ui/network" aria-label="Network" class="js-selected-navigation-item sunken-menu-item js-disable-pjax" data-selected-links="repo_network /jquery/jquery-ui/network">
          <span class="octicon octicon-repo-forked"></span> <span class="full-word">Network</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>
    </ul>


  </div>
</div>

              <div class="only-with-full-nav">
                

  

<div class="clone-url open"
  data-protocol-type="http"
  data-url="/users/set_protocol?protocol_selector=http&amp;protocol_type=clone">
  <h3><strong>HTTPS</strong> clone URL</h3>
  <div class="clone-url-box">
    <input type="text" class="clone js-url-field"
           value="https://github.com/jquery/jquery-ui.git" readonly="readonly">
    <span class="url-box-clippy">
    <button aria-label="Copy to clipboard" class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="https://github.com/jquery/jquery-ui.git" data-copied-hint="Copied!" type="button"><span class="octicon octicon-clippy"></span></button>
    </span>
  </div>
</div>

  

<div class="clone-url "
  data-protocol-type="ssh"
  data-url="/users/set_protocol?protocol_selector=ssh&amp;protocol_type=clone">
  <h3><strong>SSH</strong> clone URL</h3>
  <div class="clone-url-box">
    <input type="text" class="clone js-url-field"
           value="git@github.com:jquery/jquery-ui.git" readonly="readonly">
    <span class="url-box-clippy">
    <button aria-label="Copy to clipboard" class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="git@github.com:jquery/jquery-ui.git" data-copied-hint="Copied!" type="button"><span class="octicon octicon-clippy"></span></button>
    </span>
  </div>
</div>

  

<div class="clone-url "
  data-protocol-type="subversion"
  data-url="/users/set_protocol?protocol_selector=subversion&amp;protocol_type=clone">
  <h3><strong>Subversion</strong> checkout URL</h3>
  <div class="clone-url-box">
    <input type="text" class="clone js-url-field"
           value="https://github.com/jquery/jquery-ui" readonly="readonly">
    <span class="url-box-clippy">
    <button aria-label="Copy to clipboard" class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="https://github.com/jquery/jquery-ui" data-copied-hint="Copied!" type="button"><span class="octicon octicon-clippy"></span></button>
    </span>
  </div>
</div>


<p class="clone-options">You can clone with
      <a href="#" class="js-clone-selector" data-protocol="http">HTTPS</a>,
      <a href="#" class="js-clone-selector" data-protocol="ssh">SSH</a>,
      or <a href="#" class="js-clone-selector" data-protocol="subversion">Subversion</a>.
  <a href="https://help.github.com/articles/which-remote-url-should-i-use" class="help tooltipped tooltipped-n" aria-label="Get help on which URL is right for you.">
    <span class="octicon octicon-question"></span>
  </a>
</p>



                <a href="/jquery/jquery-ui/archive/master.zip"
                   class="minibutton sidebar-button"
                   aria-label="Download jquery/jquery-ui as a zip file"
                   title="Download jquery/jquery-ui as a zip file"
                   rel="nofollow">
                  <span class="octicon octicon-cloud-download"></span>
                  Download ZIP
                </a>
              </div>
        </div><!-- /.repository-sidebar -->

        <div id="js-repo-pjax-container" class="repository-content context-loader-container" data-pjax-container>
          


<a href="/jquery/jquery-ui/blob/98583a6563e7ae98ed67b5d70db2bff814c11e4e/themes/base/images/ui-icons_888888_256x240.png" class="hidden js-permalink-shortcut" data-hotkey="y">Permalink</a>

<!-- blob contrib key: blob_contributors:v21:17f74b71e4f8b435dac1954862c3142b -->

<p title="This is a placeholder element" class="js-history-link-replace hidden"></p>

<div class="file-navigation">
  

<div class="select-menu js-menu-container js-select-menu" >
  <span class="minibutton select-menu-button js-menu-target css-truncate" data-hotkey="w"
    data-master-branch="master"
    data-ref="master"
    title="master"
    role="button" aria-label="Switch branches or tags" tabindex="0" aria-haspopup="true">
    <span class="octicon octicon-git-branch"></span>
    <i>branch:</i>
    <span class="js-select-button css-truncate-target">master</span>
  </span>

  <div class="select-menu-modal-holder js-menu-content js-navigation-container" data-pjax aria-hidden="true">

    <div class="select-menu-modal">
      <div class="select-menu-header">
        <span class="select-menu-title">Switch branches/tags</span>
        <span class="octicon octicon-x js-menu-close" role="button" aria-label="Close"></span>
      </div> <!-- /.select-menu-header -->

      <div class="select-menu-filters">
        <div class="select-menu-text-filter">
          <input type="text" aria-label="Filter branches/tags" id="context-commitish-filter-field" class="js-filterable-field js-navigation-enable" placeholder="Filter branches/tags">
        </div>
        <div class="select-menu-tabs">
          <ul>
            <li class="select-menu-tab">
              <a href="#" data-tab-filter="branches" class="js-select-menu-tab">Branches</a>
            </li>
            <li class="select-menu-tab">
              <a href="#" data-tab-filter="tags" class="js-select-menu-tab">Tags</a>
            </li>
          </ul>
        </div><!-- /.select-menu-tabs -->
      </div><!-- /.select-menu-filters -->

      <div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="branches">

        <div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring">


            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/1-8-stable/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1-8-stable"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1-8-stable">1-8-stable</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/1-9-stable/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1-9-stable"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1-9-stable">1-9-stable</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/1-10-stable/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1-10-stable"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1-10-stable">1-10-stable</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/button-icon-span/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="button-icon-span"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="button-icon-span">button-icon-span</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/datepicker/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="datepicker"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="datepicker">datepicker</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/interactions/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="interactions"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="interactions">interactions</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/interactions-polymer/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="interactions-polymer"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="interactions-polymer">interactions-polymer</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item selected">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/master/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="master"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="master">master</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/ref-1029-css-dependency-comments/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="ref-1029-css-dependency-comments"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="ref-1029-css-dependency-comments">ref-1029-css-dependency-comments</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/selectmenu-native-menu/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="selectmenu-native-menu"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="selectmenu-native-menu">selectmenu-native-menu</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/spinner-globalize-1.x/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="spinner-globalize-1.x"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="spinner-globalize-1.x">spinner-globalize-1.x</a>
            </div> <!-- /.select-menu-item -->
        </div>

          <div class="select-menu-no-results">Nothing to show</div>
      </div> <!-- /.select-menu-list -->

      <div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="tags">
        <div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring">


            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.11.0-beta.2/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.11.0-beta.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.11.0-beta.2">1.11.0-beta.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.11.0-beta.1/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.11.0-beta.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.11.0-beta.1">1.11.0-beta.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.11.0/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.11.0"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.11.0">1.11.0</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.4/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.10.4"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.4">1.10.4</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.3/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.10.3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.3">1.10.3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.2/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.10.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.2">1.10.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.1/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.10.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.1">1.10.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.0-rc.1/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.10.0-rc.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.0-rc.1">1.10.0-rc.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.0-beta.1/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.10.0-beta.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.0-beta.1">1.10.0-beta.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.0/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.10.0"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.0">1.10.0</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m7/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.9m7"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m7">1.9m7</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m6/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.9m6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m6">1.9m6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m5/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.9m5"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m5">1.9m5</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m4/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.9m4"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m4">1.9m4</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m3/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.9m3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m3">1.9m3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m2/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.9m2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m2">1.9m2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m1/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.9m1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m1">1.9m1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.2/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.9.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.2">1.9.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.1/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.9.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.1">1.9.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0-rc.1/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.9.0-rc.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0-rc.1">1.9.0-rc.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0m8/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.9.0m8"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0m8">1.9.0m8</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0-beta.1/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.9.0-beta.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0-beta.1">1.9.0-beta.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.9.0"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0">1.9.0</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8rc3/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.8rc3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8rc3">1.8rc3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8rc2/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.8rc2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8rc2">1.8rc2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8rc1/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.8rc1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8rc1">1.8rc1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8b1/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.8b1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8b1">1.8b1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8a2/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.8a2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8a2">1.8a2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8a1/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.8a1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8a1">1.8a1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.24/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.8.24"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.24">1.8.24</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.23/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.8.23"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.23">1.8.23</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.22/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.8.22"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.22">1.8.22</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.21/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.8.21"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.21">1.8.21</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.20/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.8.20"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.20">1.8.20</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.19/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.8.19"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.19">1.8.19</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.18/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.8.18"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.18">1.8.18</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.17/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.8.17"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.17">1.8.17</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.16/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.8.16"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.16">1.8.16</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.15/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.8.15"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.15">1.8.15</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.14/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.8.14"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.14">1.8.14</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.13/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.8.13"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.13">1.8.13</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.12/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.8.12"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.12">1.8.12</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.11/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.8.11"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.11">1.8.11</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.10/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.8.10"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.10">1.8.10</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.9/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.8.9"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.9">1.8.9</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.8/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.8.8"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.8">1.8.8</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.7/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.8.7"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.7">1.8.7</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.6/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.8.6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.6">1.8.6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.5/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.8.5"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.5">1.8.5</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.4/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.8.4"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.4">1.8.4</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.3/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.8.3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.3">1.8.3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.2/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.8.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.2">1.8.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.1/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.8.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.1">1.8.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.8"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8">1.8</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.7/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.7"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.7">1.7</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc6/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.6rc6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc6">1.6rc6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc5/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.6rc5"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc5">1.6rc5</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc3/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.6rc3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc3">1.6rc3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc2/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.6rc2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc2">1.6rc2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6">1.6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.5.2/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.5.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.5.2">1.5.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.5.1/themes/base/images/ui-icons_888888_256x240.png"
                 data-name="1.5.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.5.1">1.5.1</a>
            </div> <!-- /.select-menu-item -->
        </div>

        <div class="select-menu-no-results">Nothing to show</div>
      </div> <!-- /.select-menu-list -->

    </div> <!-- /.select-menu-modal -->
  </div> <!-- /.select-menu-modal-holder -->
</div> <!-- /.select-menu -->

  <div class="button-group right">
    <a href="/jquery/jquery-ui/find/master"
          class="js-show-file-finder minibutton empty-icon tooltipped tooltipped-s"
          data-pjax
          data-hotkey="t"
          aria-label="Quickly jump between files">
      <span class="octicon octicon-list-unordered"></span>
    </a>
    <button class="js-zeroclipboard minibutton zeroclipboard-button"
          data-clipboard-text="themes/base/images/ui-icons_888888_256x240.png"
          aria-label="Copy to clipboard"
          data-copied-hint="Copied!">
      <span class="octicon octicon-clippy"></span>
    </button>
  </div>

  <div class="breadcrumb">
    <span class='repo-root js-repo-root'><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">jquery-ui</span></a></span></span><span class="separator"> / </span><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui/tree/master/themes" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">themes</span></a></span><span class="separator"> / </span><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui/tree/master/themes/base" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">base</span></a></span><span class="separator"> / </span><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui/tree/master/themes/base/images" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">images</span></a></span><span class="separator"> / </span><strong class="final-path">ui-icons_888888_256x240.png</strong>
  </div>
</div>


  <div class="commit file-history-tease">
      <img alt="Travis Carden" class="main-avatar js-avatar" data-user="959246" height="24" src="https://avatars1.githubusercontent.com/u/959246?s=140" width="24" />
      <span class="author"><a href="/TravisCarden" rel="contributor">TravisCarden</a></span>
      <time datetime="2013-02-04T13:02:57-05:00" is="relative-time">February 04, 2013</time>
      <div class="commit-title">
          <a href="/jquery/jquery-ui/commit/a61af0b205c865b9c4f949bcc1bebe79994519d0" class="message" data-pjax="true" title="Fix file permissions in themes/base/images.">Fix file permissions in themes/base/images.</a>
      </div>

    <div class="participation">
      <p class="quickstat"><a href="#blob_contributors_box" rel="facebox"><strong>3</strong>  contributors</a></p>
          <a class="avatar tooltipped tooltipped-s" aria-label="rdworth" href="/jquery/jquery-ui/commits/master/themes/base/images/ui-icons_888888_256x240.png?author=rdworth"><img alt="Richard D. Worth" class=" js-avatar" data-user="107824" height="20" src="https://avatars2.githubusercontent.com/u/107824?s=140" width="20" /></a>
    <a class="avatar tooltipped tooltipped-s" aria-label="scottjehl" href="/jquery/jquery-ui/commits/master/themes/base/images/ui-icons_888888_256x240.png?author=scottjehl"><img alt="Scott Jehl" class=" js-avatar" data-user="214783" height="20" src="https://avatars2.githubusercontent.com/u/214783?s=140" width="20" /></a>
    <a class="avatar tooltipped tooltipped-s" aria-label="TravisCarden" href="/jquery/jquery-ui/commits/master/themes/base/images/ui-icons_888888_256x240.png?author=TravisCarden"><img alt="Travis Carden" class=" js-avatar" data-user="959246" height="20" src="https://avatars1.githubusercontent.com/u/959246?s=140" width="20" /></a>


    </div>
    <div id="blob_contributors_box" style="display:none">
      <h2 class="facebox-header">Users who have contributed to this file</h2>
      <ul class="facebox-user-list">
          <li class="facebox-user-list-item">
            <img alt="Richard D. Worth" class=" js-avatar" data-user="107824" height="24" src="https://avatars2.githubusercontent.com/u/107824?s=140" width="24" />
            <a href="/rdworth">rdworth</a>
          </li>
          <li class="facebox-user-list-item">
            <img alt="Scott Jehl" class=" js-avatar" data-user="214783" height="24" src="https://avatars2.githubusercontent.com/u/214783?s=140" width="24" />
            <a href="/scottjehl">scottjehl</a>
          </li>
          <li class="facebox-user-list-item">
            <img alt="Travis Carden" class=" js-avatar" data-user="959246" height="24" src="https://avatars1.githubusercontent.com/u/959246?s=140" width="24" />
            <a href="/TravisCarden">TravisCarden</a>
          </li>
      </ul>
    </div>
  </div>

<div class="file-box">
  <div class="file">
    <div class="meta clearfix">
      <div class="info file-name">
        <span class="icon"><b class="octicon octicon-file-text"></b></span>
        <span class="mode" title="File Mode">file</span>
        <span class="meta-divider"></span>
        <span>4.369 kb</span>
      </div>
      <div class="actions">
        <div class="button-group">
          <a href="/jquery/jquery-ui/raw/master/themes/base/images/ui-icons_888888_256x240.png" class="minibutton " id="raw-url">Raw</a>
          <a href="/jquery/jquery-ui/commits/master/themes/base/images/ui-icons_888888_256x240.png" class="minibutton " rel="nofollow">History</a>
        </div><!-- /.button-group -->

            <a class="minibutton danger empty-icon tooltipped tooltipped-s"
               href="/jquery/jquery-ui/delete/master/themes/base/images/ui-icons_888888_256x240.png"
               aria-label="Fork this project and delete file"
               data-method="post" data-test-id="delete-blob-file" rel="nofollow">

          Delete
        </a>
      </div><!-- /.actions -->
    </div>
      
  <div class="blob-wrapper data type-text js-blob-data">
      <div class="image js-image">
          <span class="border-wrap"><img src="https://raw.githubusercontent.com/jquery/jquery-ui/master/themes/base/images/ui-icons_888888_256x240.png" alt="themes/base/images/ui-icons_888888_256x240.png" /></span>
      </div>
  </div>

  </div>
</div>

<a href="#jump-to-line" rel="facebox[.linejump]" data-hotkey="l" class="js-jump-to-line" style="display:none">Jump to Line</a>
<div id="jump-to-line" style="display:none">
  <form accept-charset="UTF-8" class="js-jump-to-line-form">
    <input class="linejump-input js-jump-to-line-field" type="text" placeholder="Jump to line&hellip;" autofocus>
    <button type="submit" class="button">Go</button>
  </form>
</div>

        </div>

      </div><!-- /.repo-container -->
      <div class="modal-backdrop"></div>
    </div><!-- /.container -->
  </div><!-- /.site -->


    </div><!-- /.wrapper -->

      <div class="container">
  <div class="site-footer">
    <ul class="site-footer-links right">
      <li><a href="https://status.github.com/">Status</a></li>
      <li><a href="http://developer.github.com">API</a></li>
      <li><a href="http://training.github.com">Training</a></li>
      <li><a href="http://shop.github.com">Shop</a></li>
      <li><a href="/blog">Blog</a></li>
      <li><a href="/about">About</a></li>

    </ul>

    <a href="/">
      <span class="mega-octicon octicon-mark-github" title="GitHub"></span>
    </a>

    <ul class="site-footer-links">
      <li>&copy; 2014 <span title="0.05442s from github-fe124-cp1-prd.iad.github.net">GitHub</span>, Inc.</li>
        <li><a href="/site/terms">Terms</a></li>
        <li><a href="/site/privacy">Privacy</a></li>
        <li><a href="/security">Security</a></li>
        <li><a href="/contact">Contact</a></li>
    </ul>
  </div><!-- /.site-footer -->
</div><!-- /.container -->


    <div class="fullscreen-overlay js-fullscreen-overlay" id="fullscreen_overlay">
  <div class="fullscreen-container js-fullscreen-container">
    <div class="textarea-wrap">
      <textarea name="fullscreen-contents" id="fullscreen-contents" class="fullscreen-contents js-fullscreen-contents" placeholder="" data-suggester="fullscreen_suggester"></textarea>
    </div>
  </div>
  <div class="fullscreen-sidebar">
    <a href="#" class="exit-fullscreen js-exit-fullscreen tooltipped tooltipped-w" aria-label="Exit Zen Mode">
      <span class="mega-octicon octicon-screen-normal"></span>
    </a>
    <a href="#" class="theme-switcher js-theme-switcher tooltipped tooltipped-w"
      aria-label="Switch themes">
      <span class="octicon octicon-color-mode"></span>
    </a>
  </div>
</div>



    <div id="ajax-error-message" class="flash flash-error">
      <span class="octicon octicon-alert"></span>
      <a href="#" class="octicon octicon-x close js-ajax-error-dismiss" aria-label="Dismiss error"></a>
      Something went wrong with that request. Please try again.
    </div>


      <script crossorigin="anonymous" src="https://assets-cdn.github.com/assets/frameworks-df9e4beac80276ed3dfa56be0d97b536d0f5ee12.js" type="text/javascript"></script>
      <script async="async" crossorigin="anonymous" src="https://assets-cdn.github.com/assets/github-534eef699bbadaf1454b432e14a2ab0a68c7ddf4.js" type="text/javascript"></script>
      
      
        <script async src="https://www.google-analytics.com/analytics.js"></script>
  </body>
</html>

   07070100000195000081A40000000000000000000000015ECE244400011D5D000000000000000000000000000000000000003C00000000cobbler-3.1.2/web/static/images/ui-icons_cd0a0a_256x240.png   




<!DOCTYPE html>
<html class="   ">
  <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# object: http://ogp.me/ns/object# article: http://ogp.me/ns/article# profile: http://ogp.me/ns/profile#">
    <meta charset='utf-8'>
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    
    
    <title>jquery-ui/themes/base/images/ui-icons_cd0a0a_256x240.png at master · jquery/jquery-ui</title>
    <link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="GitHub" />
    <link rel="fluid-icon" href="https://github.com/fluidicon.png" title="GitHub" />
    <link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-114.png" />
    <link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114.png" />
    <link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-144.png" />
    <link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144.png" />
    <meta property="fb:app_id" content="1401488693436528"/>

      <meta content="@github" name="twitter:site" /><meta content="summary" name="twitter:card" /><meta content="jquery/jquery-ui" name="twitter:title" /><meta content="jquery-ui - The official jQuery user interface library." name="twitter:description" /><meta content="https://avatars1.githubusercontent.com/u/70142?s=400" name="twitter:image:src" />
<meta content="GitHub" property="og:site_name" /><meta content="object" property="og:type" /><meta content="https://avatars1.githubusercontent.com/u/70142?s=400" property="og:image" /><meta content="jquery/jquery-ui" property="og:title" /><meta content="https://github.com/jquery/jquery-ui" property="og:url" /><meta content="jquery-ui - The official jQuery user interface library." property="og:description" />

    <link rel="assets" href="https://assets-cdn.github.com/">
    <link rel="conduit-xhr" href="https://ghconduit.com:25035">
    <link rel="xhr-socket" href="/_sockets" />

    <meta name="msapplication-TileImage" content="/windows-tile.png" />
    <meta name="msapplication-TileColor" content="#ffffff" />
    <meta name="selected-link" value="repo_source" data-pjax-transient />
      <meta name="google-analytics" content="UA-3769691-2">

    <meta content="collector.githubapp.com" name="octolytics-host" /><meta content="collector-cdn.github.com" name="octolytics-script-host" /><meta content="github" name="octolytics-app-id" /><meta content="5ED1AC98:1163:4D6A974:53C6DBA7" name="octolytics-dimension-request_id" /><meta content="790690" name="octolytics-actor-id" /><meta content="jmaas" name="octolytics-actor-login" /><meta content="ac5e3878ac6703a37372cb2198cb3b8727e6b43c1e460ad6c9aeaeae1fb16fb4" name="octolytics-actor-hash" />
    

    
    
    <link rel="icon" type="image/x-icon" href="https://assets-cdn.github.com/favicon.ico" />


    <meta content="authenticity_token" name="csrf-param" />
<meta content="v+tNIkc4utabH0ykTl4Z0KbqAFJoClJ09cb/dhL8ryIYdAgKVChwDOhor1zFB5SLrxZv0VU8fkO4eXmNmMJuyA==" name="csrf-token" />

    <link href="https://assets-cdn.github.com/assets/github-c534ad575b5bb8c3cc3dce9c571df7aa7400dbe9.css" media="all" rel="stylesheet" type="text/css" />
    <link href="https://assets-cdn.github.com/assets/github2-84a1b6179d461213455892ab983182bc2052a7b5.css" media="all" rel="stylesheet" type="text/css" />
    


    <meta http-equiv="x-pjax-version" content="ef2e8ad48b4c98b3a1a0065370258ac2">

      
  <meta name="description" content="jquery-ui - The official jQuery user interface library." />


  <meta content="70142" name="octolytics-dimension-user_id" /><meta content="jquery" name="octolytics-dimension-user_login" /><meta content="478996" name="octolytics-dimension-repository_id" /><meta content="jquery/jquery-ui" name="octolytics-dimension-repository_nwo" /><meta content="true" name="octolytics-dimension-repository_public" /><meta content="false" name="octolytics-dimension-repository_is_fork" /><meta content="478996" name="octolytics-dimension-repository_network_root_id" /><meta content="jquery/jquery-ui" name="octolytics-dimension-repository_network_root_nwo" />

  <link href="https://github.com/jquery/jquery-ui/commits/master.atom" rel="alternate" title="Recent Commits to jquery-ui:master" type="application/atom+xml" />

  </head>


  <body class="logged_in  env-production linux vis-public page-blob">
    <a href="#start-of-content" tabindex="1" class="accessibility-aid js-skip-to-content">Skip to content</a>
    <div class="wrapper">
      
      
      
      


      <div class="header header-logged-in true">
  <div class="container clearfix">

    <a class="header-logo-invertocat" href="https://github.com/" aria-label="Homepage">
  <span class="mega-octicon octicon-mark-github"></span>
</a>


    
    <a href="/notifications" aria-label="You have no unread notifications" class="notification-indicator tooltipped tooltipped-s" data-hotkey="g n">
        <span class="mail-status all-read"></span>
</a>

      <div class="command-bar js-command-bar  in-repository">
          <form accept-charset="UTF-8" action="/search" class="command-bar-form" id="top_search_form" method="get">

<div class="commandbar">
  <span class="message"></span>
  <input type="text" data-hotkey="s" name="q" id="js-command-bar-field" placeholder="Search or type a command" tabindex="1" autocapitalize="off"
    
    data-username="jmaas"
    data-repo="jquery/jquery-ui"
  >
  <div class="display hidden"></div>
</div>

    <input type="hidden" name="nwo" value="jquery/jquery-ui" />

    <div class="select-menu js-menu-container js-select-menu search-context-select-menu">
      <span class="minibutton select-menu-button js-menu-target" role="button" aria-haspopup="true">
        <span class="js-select-button">This repository</span>
      </span>

      <div class="select-menu-modal-holder js-menu-content js-navigation-container" aria-hidden="true">
        <div class="select-menu-modal">

          <div class="select-menu-item js-navigation-item js-this-repository-navigation-item selected">
            <span class="select-menu-item-icon octicon octicon-check"></span>
            <input type="radio" class="js-search-this-repository" name="search_target" value="repository" checked="checked" />
            <div class="select-menu-item-text js-select-button-text">This repository</div>
          </div> <!-- /.select-menu-item -->

          <div class="select-menu-item js-navigation-item js-all-repositories-navigation-item">
            <span class="select-menu-item-icon octicon octicon-check"></span>
            <input type="radio" name="search_target" value="global" />
            <div class="select-menu-item-text js-select-button-text">All repositories</div>
          </div> <!-- /.select-menu-item -->

        </div>
      </div>
    </div>

  <span class="help tooltipped tooltipped-s" aria-label="Show command bar help">
    <span class="octicon octicon-question"></span>
  </span>


  <input type="hidden" name="ref" value="cmdform">

</form>
        <ul class="top-nav">
          <li class="explore"><a href="/explore">Explore</a></li>
            <li><a href="https://gist.github.com">Gist</a></li>
            <li><a href="/blog">Blog</a></li>
          <li><a href="https://help.github.com">Help</a></li>
        </ul>
      </div>

    

<ul id="user-links">
  <li>
    <a href="/jmaas" class="name">
      <img alt="Jörgen Maas" class=" js-avatar" data-user="790690" height="20" src="https://avatars1.githubusercontent.com/u/790690?s=140" width="20" /> jmaas
    </a>
  </li>

  <li class="new-menu dropdown-toggle js-menu-container">
    <a href="#" class="js-menu-target tooltipped tooltipped-s" aria-label="Create new...">
      <span class="octicon octicon-plus"></span>
      <span class="dropdown-arrow"></span>
    </a>

    <div class="new-menu-content js-menu-content">
    </div>
  </li>

  <li>
    <a href="/settings/profile" id="account_settings"
      class="tooltipped tooltipped-s"
      aria-label="Account settings ">
      <span class="octicon octicon-tools"></span>
    </a>
  </li>
  <li>
    <form accept-charset="UTF-8" action="/logout" class="logout-form" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="FfJCbdshY3ZpD7DGGGFowyY1AM8m/mwzVYxriIpNjAbXQKJjb6os1OtCWGAmav0OqM1KIalDUZTxiOphlO5ebw==" /></div>
      <button class="sign-out-button tooltipped tooltipped-s" aria-label="Sign out">
        <span class="octicon octicon-sign-out"></span>
      </button>
</form>  </li>

</ul>

<div class="js-new-dropdown-contents hidden">
  

<ul class="dropdown-menu">
  <li>
    <a href="/new"><span class="octicon octicon-repo"></span> New repository</a>
  </li>
  <li>
    <a href="/organizations/new"><span class="octicon octicon-organization"></span> New organization</a>
  </li>


</ul>

</div>


    
  </div>
</div>

      

        



      <div id="start-of-content" class="accessibility-aid"></div>
          <div class="site" itemscope itemtype="http://schema.org/WebPage">
    <div id="js-flash-container">
      
    </div>
    <div class="pagehead repohead instapaper_ignore readability-menu">
      <div class="container">
        
<ul class="pagehead-actions">

    <li class="subscription">
      <form accept-charset="UTF-8" action="/notifications/subscribe" class="js-social-container" data-autosubmit="true" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="67yojW+U7Dt72awmfgg23DFtNiGujxhlF5Nzwi75h+JNOkprnpiDXRb77vZrpolnziAG3ptTik7lbvvBhOt7ww==" /></div>  <input id="repository_id" name="repository_id" type="hidden" value="478996" />

    <div class="select-menu js-menu-container js-select-menu">
      <a class="social-count js-social-count" href="/jquery/jquery-ui/watchers">
        639
      </a>
      <a href="/jquery/jquery-ui/subscription"
        class="minibutton select-menu-button with-count js-menu-target" role="button" tabindex="0" aria-haspopup="true">
        <span class="js-select-button">
          <span class="octicon octicon-eye"></span>
          Watch
        </span>
      </a>

      <div class="select-menu-modal-holder">
        <div class="select-menu-modal subscription-menu-modal js-menu-content" aria-hidden="true">
          <div class="select-menu-header">
            <span class="select-menu-title">Notifications</span>
            <span class="octicon octicon-x js-menu-close" role="button" aria-label="Close"></span>
          </div> <!-- /.select-menu-header -->

          <div class="select-menu-list js-navigation-container" role="menu">

            <div class="select-menu-item js-navigation-item selected" role="menuitem" tabindex="0">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <div class="select-menu-item-text">
                <input checked="checked" id="do_included" name="do" type="radio" value="included" />
                <h4>Not watching</h4>
                <span class="description">Be notified when participating or @mentioned.</span>
                <span class="js-select-button-text hidden-select-button-text">
                  <span class="octicon octicon-eye"></span>
                  Watch
                </span>
              </div>
            </div> <!-- /.select-menu-item -->

            <div class="select-menu-item js-navigation-item " role="menuitem" tabindex="0">
              <span class="select-menu-item-icon octicon octicon octicon-check"></span>
              <div class="select-menu-item-text">
                <input id="do_subscribed" name="do" type="radio" value="subscribed" />
                <h4>Watching</h4>
                <span class="description">Be notified of all conversations.</span>
                <span class="js-select-button-text hidden-select-button-text">
                  <span class="octicon octicon-eye"></span>
                  Unwatch
                </span>
              </div>
            </div> <!-- /.select-menu-item -->

            <div class="select-menu-item js-navigation-item " role="menuitem" tabindex="0">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <div class="select-menu-item-text">
                <input id="do_ignore" name="do" type="radio" value="ignore" />
                <h4>Ignoring</h4>
                <span class="description">Never be notified.</span>
                <span class="js-select-button-text hidden-select-button-text">
                  <span class="octicon octicon-mute"></span>
                  Stop ignoring
                </span>
              </div>
            </div> <!-- /.select-menu-item -->

          </div> <!-- /.select-menu-list -->

        </div> <!-- /.select-menu-modal -->
      </div> <!-- /.select-menu-modal-holder -->
    </div> <!-- /.select-menu -->

</form>
    </li>

  <li>
    

  <div class="js-toggler-container js-social-container starring-container ">

    <form accept-charset="UTF-8" action="/jquery/jquery-ui/unstar" class="js-toggler-form starred" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="1w/IttA+0ilFdohv7yOypSkOhqJOfo2vPV3SzeQpfCxYp+wKxH3AGk8+l5VYg2M/L8gvZ7R4VMHxGAFTQfB4dQ==" /></div>
      <button
        class="minibutton with-count js-toggler-target star-button"
        aria-label="Unstar this repository" title="Unstar jquery/jquery-ui">
        <span class="octicon octicon-star"></span>
        Unstar
      </button>
        <a class="social-count js-social-count" href="/jquery/jquery-ui/stargazers">
          8,441
        </a>
</form>
    <form accept-charset="UTF-8" action="/jquery/jquery-ui/star" class="js-toggler-form unstarred" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="S+UNE46Zj9wBYQ2EywXQPbhxShyaL6CW3Um6RcSC94a0WYfCEIdxSQWRyFt1wPdd6Vby/vynzq7tvy8ZzKq7DA==" /></div>
      <button
        class="minibutton with-count js-toggler-target star-button"
        aria-label="Star this repository" title="Star jquery/jquery-ui">
        <span class="octicon octicon-star"></span>
        Star
      </button>
        <a class="social-count js-social-count" href="/jquery/jquery-ui/stargazers">
          8,441
        </a>
</form>  </div>

  </li>


        <li>
          <a href="/jquery/jquery-ui/fork" class="minibutton with-count js-toggler-target fork-button lighter tooltipped-n" title="Fork your own copy of jquery/jquery-ui to your account" aria-label="Fork your own copy of jquery/jquery-ui to your account" rel="facebox nofollow">
            <span class="octicon octicon-repo-forked"></span>
            Fork
          </a>
          <a href="/jquery/jquery-ui/network" class="social-count">3,098</a>
        </li>

</ul>

        <h1 itemscope itemtype="http://data-vocabulary.org/Breadcrumb" class="entry-title public">
          <span class="repo-label"><span>public</span></span>
          <span class="mega-octicon octicon-repo"></span>
          <span class="author"><a href="/jquery" class="url fn" itemprop="url" rel="author"><span itemprop="title">jquery</span></a></span><!--
       --><span class="path-divider">/</span><!--
       --><strong><a href="/jquery/jquery-ui" class="js-current-repository js-repo-home-link">jquery-ui</a></strong>

          <span class="page-context-loader">
            <img alt="" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
          </span>

        </h1>
      </div><!-- /.container -->
    </div><!-- /.repohead -->

    <div class="container">
      <div class="repository-with-sidebar repo-container new-discussion-timeline js-new-discussion-timeline  ">
        <div class="repository-sidebar clearfix">
            

<div class="sunken-menu vertical-right repo-nav js-repo-nav js-repository-container-pjax js-octicon-loaders">
  <div class="sunken-menu-contents">
    <ul class="sunken-menu-group">
      <li class="tooltipped tooltipped-w" aria-label="Code">
        <a href="/jquery/jquery-ui" aria-label="Code" class="selected js-selected-navigation-item sunken-menu-item" data-hotkey="g c" data-pjax="true" data-selected-links="repo_source repo_downloads repo_commits repo_releases repo_tags repo_branches /jquery/jquery-ui">
          <span class="octicon octicon-code"></span> <span class="full-word">Code</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>


      <li class="tooltipped tooltipped-w" aria-label="Pull Requests">
        <a href="/jquery/jquery-ui/pulls" aria-label="Pull Requests" class="js-selected-navigation-item sunken-menu-item js-disable-pjax" data-hotkey="g p" data-selected-links="repo_pulls /jquery/jquery-ui/pulls">
            <span class="octicon octicon-git-pull-request"></span> <span class="full-word">Pull Requests</span>
            <span class='counter'>46</span>
            <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>


    </ul>
    <div class="sunken-menu-separator"></div>
    <ul class="sunken-menu-group">

      <li class="tooltipped tooltipped-w" aria-label="Pulse">
        <a href="/jquery/jquery-ui/pulse" aria-label="Pulse" class="js-selected-navigation-item sunken-menu-item" data-pjax="true" data-selected-links="pulse /jquery/jquery-ui/pulse">
          <span class="octicon octicon-pulse"></span> <span class="full-word">Pulse</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>

      <li class="tooltipped tooltipped-w" aria-label="Graphs">
        <a href="/jquery/jquery-ui/graphs" aria-label="Graphs" class="js-selected-navigation-item sunken-menu-item" data-pjax="true" data-selected-links="repo_graphs repo_contributors /jquery/jquery-ui/graphs">
          <span class="octicon octicon-graph"></span> <span class="full-word">Graphs</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>

      <li class="tooltipped tooltipped-w" aria-label="Network">
        <a href="/jquery/jquery-ui/network" aria-label="Network" class="js-selected-navigation-item sunken-menu-item js-disable-pjax" data-selected-links="repo_network /jquery/jquery-ui/network">
          <span class="octicon octicon-repo-forked"></span> <span class="full-word">Network</span>
          <img alt="" class="mini-loader" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif" width="16" />
</a>      </li>
    </ul>


  </div>
</div>

              <div class="only-with-full-nav">
                

  

<div class="clone-url open"
  data-protocol-type="http"
  data-url="/users/set_protocol?protocol_selector=http&amp;protocol_type=clone">
  <h3><strong>HTTPS</strong> clone URL</h3>
  <div class="clone-url-box">
    <input type="text" class="clone js-url-field"
           value="https://github.com/jquery/jquery-ui.git" readonly="readonly">
    <span class="url-box-clippy">
    <button aria-label="Copy to clipboard" class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="https://github.com/jquery/jquery-ui.git" data-copied-hint="Copied!" type="button"><span class="octicon octicon-clippy"></span></button>
    </span>
  </div>
</div>

  

<div class="clone-url "
  data-protocol-type="ssh"
  data-url="/users/set_protocol?protocol_selector=ssh&amp;protocol_type=clone">
  <h3><strong>SSH</strong> clone URL</h3>
  <div class="clone-url-box">
    <input type="text" class="clone js-url-field"
           value="git@github.com:jquery/jquery-ui.git" readonly="readonly">
    <span class="url-box-clippy">
    <button aria-label="Copy to clipboard" class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="git@github.com:jquery/jquery-ui.git" data-copied-hint="Copied!" type="button"><span class="octicon octicon-clippy"></span></button>
    </span>
  </div>
</div>

  

<div class="clone-url "
  data-protocol-type="subversion"
  data-url="/users/set_protocol?protocol_selector=subversion&amp;protocol_type=clone">
  <h3><strong>Subversion</strong> checkout URL</h3>
  <div class="clone-url-box">
    <input type="text" class="clone js-url-field"
           value="https://github.com/jquery/jquery-ui" readonly="readonly">
    <span class="url-box-clippy">
    <button aria-label="Copy to clipboard" class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="https://github.com/jquery/jquery-ui" data-copied-hint="Copied!" type="button"><span class="octicon octicon-clippy"></span></button>
    </span>
  </div>
</div>


<p class="clone-options">You can clone with
      <a href="#" class="js-clone-selector" data-protocol="http">HTTPS</a>,
      <a href="#" class="js-clone-selector" data-protocol="ssh">SSH</a>,
      or <a href="#" class="js-clone-selector" data-protocol="subversion">Subversion</a>.
  <a href="https://help.github.com/articles/which-remote-url-should-i-use" class="help tooltipped tooltipped-n" aria-label="Get help on which URL is right for you.">
    <span class="octicon octicon-question"></span>
  </a>
</p>



                <a href="/jquery/jquery-ui/archive/master.zip"
                   class="minibutton sidebar-button"
                   aria-label="Download jquery/jquery-ui as a zip file"
                   title="Download jquery/jquery-ui as a zip file"
                   rel="nofollow">
                  <span class="octicon octicon-cloud-download"></span>
                  Download ZIP
                </a>
              </div>
        </div><!-- /.repository-sidebar -->

        <div id="js-repo-pjax-container" class="repository-content context-loader-container" data-pjax-container>
          


<a href="/jquery/jquery-ui/blob/98583a6563e7ae98ed67b5d70db2bff814c11e4e/themes/base/images/ui-icons_cd0a0a_256x240.png" class="hidden js-permalink-shortcut" data-hotkey="y">Permalink</a>

<!-- blob contrib key: blob_contributors:v21:962c847985a975228bcdb096914c9d5e -->

<p title="This is a placeholder element" class="js-history-link-replace hidden"></p>

<div class="file-navigation">
  

<div class="select-menu js-menu-container js-select-menu" >
  <span class="minibutton select-menu-button js-menu-target css-truncate" data-hotkey="w"
    data-master-branch="master"
    data-ref="master"
    title="master"
    role="button" aria-label="Switch branches or tags" tabindex="0" aria-haspopup="true">
    <span class="octicon octicon-git-branch"></span>
    <i>branch:</i>
    <span class="js-select-button css-truncate-target">master</span>
  </span>

  <div class="select-menu-modal-holder js-menu-content js-navigation-container" data-pjax aria-hidden="true">

    <div class="select-menu-modal">
      <div class="select-menu-header">
        <span class="select-menu-title">Switch branches/tags</span>
        <span class="octicon octicon-x js-menu-close" role="button" aria-label="Close"></span>
      </div> <!-- /.select-menu-header -->

      <div class="select-menu-filters">
        <div class="select-menu-text-filter">
          <input type="text" aria-label="Filter branches/tags" id="context-commitish-filter-field" class="js-filterable-field js-navigation-enable" placeholder="Filter branches/tags">
        </div>
        <div class="select-menu-tabs">
          <ul>
            <li class="select-menu-tab">
              <a href="#" data-tab-filter="branches" class="js-select-menu-tab">Branches</a>
            </li>
            <li class="select-menu-tab">
              <a href="#" data-tab-filter="tags" class="js-select-menu-tab">Tags</a>
            </li>
          </ul>
        </div><!-- /.select-menu-tabs -->
      </div><!-- /.select-menu-filters -->

      <div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="branches">

        <div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring">


            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/1-8-stable/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1-8-stable"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1-8-stable">1-8-stable</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/1-9-stable/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1-9-stable"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1-9-stable">1-9-stable</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/1-10-stable/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1-10-stable"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1-10-stable">1-10-stable</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/button-icon-span/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="button-icon-span"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="button-icon-span">button-icon-span</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/datepicker/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="datepicker"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="datepicker">datepicker</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/interactions/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="interactions"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="interactions">interactions</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/interactions-polymer/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="interactions-polymer"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="interactions-polymer">interactions-polymer</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item selected">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/master/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="master"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="master">master</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/ref-1029-css-dependency-comments/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="ref-1029-css-dependency-comments"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="ref-1029-css-dependency-comments">ref-1029-css-dependency-comments</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/selectmenu-native-menu/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="selectmenu-native-menu"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="selectmenu-native-menu">selectmenu-native-menu</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/blob/spinner-globalize-1.x/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="spinner-globalize-1.x"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="spinner-globalize-1.x">spinner-globalize-1.x</a>
            </div> <!-- /.select-menu-item -->
        </div>

          <div class="select-menu-no-results">Nothing to show</div>
      </div> <!-- /.select-menu-list -->

      <div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="tags">
        <div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring">


            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.11.0-beta.2/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.11.0-beta.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.11.0-beta.2">1.11.0-beta.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.11.0-beta.1/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.11.0-beta.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.11.0-beta.1">1.11.0-beta.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.11.0/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.11.0"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.11.0">1.11.0</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.4/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.10.4"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.4">1.10.4</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.3/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.10.3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.3">1.10.3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.2/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.10.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.2">1.10.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.1/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.10.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.1">1.10.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.0-rc.1/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.10.0-rc.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.0-rc.1">1.10.0-rc.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.0-beta.1/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.10.0-beta.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.0-beta.1">1.10.0-beta.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.10.0/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.10.0"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.10.0">1.10.0</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m7/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.9m7"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m7">1.9m7</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m6/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.9m6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m6">1.9m6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m5/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.9m5"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m5">1.9m5</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m4/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.9m4"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m4">1.9m4</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m3/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.9m3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m3">1.9m3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m2/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.9m2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m2">1.9m2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9m1/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.9m1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9m1">1.9m1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.2/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.9.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.2">1.9.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.1/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.9.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.1">1.9.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0-rc.1/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.9.0-rc.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0-rc.1">1.9.0-rc.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0m8/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.9.0m8"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0m8">1.9.0m8</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0-beta.1/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.9.0-beta.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0-beta.1">1.9.0-beta.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.9.0/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.9.0"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.9.0">1.9.0</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8rc3/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.8rc3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8rc3">1.8rc3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8rc2/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.8rc2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8rc2">1.8rc2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8rc1/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.8rc1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8rc1">1.8rc1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8b1/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.8b1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8b1">1.8b1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8a2/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.8a2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8a2">1.8a2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8a1/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.8a1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8a1">1.8a1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.24/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.8.24"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.24">1.8.24</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.23/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.8.23"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.23">1.8.23</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.22/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.8.22"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.22">1.8.22</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.21/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.8.21"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.21">1.8.21</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.20/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.8.20"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.20">1.8.20</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.19/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.8.19"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.19">1.8.19</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.18/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.8.18"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.18">1.8.18</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.17/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.8.17"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.17">1.8.17</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.16/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.8.16"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.16">1.8.16</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.15/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.8.15"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.15">1.8.15</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.14/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.8.14"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.14">1.8.14</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.13/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.8.13"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.13">1.8.13</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.12/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.8.12"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.12">1.8.12</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.11/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.8.11"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.11">1.8.11</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.10/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.8.10"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.10">1.8.10</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.9/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.8.9"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.9">1.8.9</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.8/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.8.8"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.8">1.8.8</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.7/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.8.7"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.7">1.8.7</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.6/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.8.6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.6">1.8.6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.5/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.8.5"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.5">1.8.5</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.4/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.8.4"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.4">1.8.4</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.3/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.8.3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.3">1.8.3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.2/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.8.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.2">1.8.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8.1/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.8.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8.1">1.8.1</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.8/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.8"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.8">1.8</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.7/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.7"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.7">1.7</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc6/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.6rc6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc6">1.6rc6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc5/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.6rc5"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc5">1.6rc5</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc3/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.6rc3"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc3">1.6rc3</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6rc2/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.6rc2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6rc2">1.6rc2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.6/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.6"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.6">1.6</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.5.2/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.5.2"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.5.2">1.5.2</a>
            </div> <!-- /.select-menu-item -->
            <div class="select-menu-item js-navigation-item ">
              <span class="select-menu-item-icon octicon octicon-check"></span>
              <a href="/jquery/jquery-ui/tree/1.5.1/themes/base/images/ui-icons_cd0a0a_256x240.png"
                 data-name="1.5.1"
                 data-skip-pjax="true"
                 rel="nofollow"
                 class="js-navigation-open select-menu-item-text css-truncate-target"
                 title="1.5.1">1.5.1</a>
            </div> <!-- /.select-menu-item -->
        </div>

        <div class="select-menu-no-results">Nothing to show</div>
      </div> <!-- /.select-menu-list -->

    </div> <!-- /.select-menu-modal -->
  </div> <!-- /.select-menu-modal-holder -->
</div> <!-- /.select-menu -->

  <div class="button-group right">
    <a href="/jquery/jquery-ui/find/master"
          class="js-show-file-finder minibutton empty-icon tooltipped tooltipped-s"
          data-pjax
          data-hotkey="t"
          aria-label="Quickly jump between files">
      <span class="octicon octicon-list-unordered"></span>
    </a>
    <button class="js-zeroclipboard minibutton zeroclipboard-button"
          data-clipboard-text="themes/base/images/ui-icons_cd0a0a_256x240.png"
          aria-label="Copy to clipboard"
          data-copied-hint="Copied!">
      <span class="octicon octicon-clippy"></span>
    </button>
  </div>

  <div class="breadcrumb">
    <span class='repo-root js-repo-root'><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">jquery-ui</span></a></span></span><span class="separator"> / </span><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui/tree/master/themes" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">themes</span></a></span><span class="separator"> / </span><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui/tree/master/themes/base" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">base</span></a></span><span class="separator"> / </span><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/jquery/jquery-ui/tree/master/themes/base/images" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">images</span></a></span><span class="separator"> / </span><strong class="final-path">ui-icons_cd0a0a_256x240.png</strong>
  </div>
</div>


  <div class="commit file-history-tease">
      <img alt="Travis Carden" class="main-avatar js-avatar" data-user="959246" height="24" src="https://avatars1.githubusercontent.com/u/959246?s=140" width="24" />
      <span class="author"><a href="/TravisCarden" rel="contributor">TravisCarden</a></span>
      <time datetime="2013-02-04T13:02:57-05:00" is="relative-time">February 04, 2013</time>
      <div class="commit-title">
          <a href="/jquery/jquery-ui/commit/a61af0b205c865b9c4f949bcc1bebe79994519d0" class="message" data-pjax="true" title="Fix file permissions in themes/base/images.">Fix file permissions in themes/base/images.</a>
      </div>

    <div class="participation">
      <p class="quickstat"><a href="#blob_contributors_box" rel="facebox"><strong>3</strong>  contributors</a></p>
          <a class="avatar tooltipped tooltipped-s" aria-label="rdworth" href="/jquery/jquery-ui/commits/master/themes/base/images/ui-icons_cd0a0a_256x240.png?author=rdworth"><img alt="Richard D. Worth" class=" js-avatar" data-user="107824" height="20" src="https://avatars2.githubusercontent.com/u/107824?s=140" width="20" /></a>
    <a class="avatar tooltipped tooltipped-s" aria-label="scottjehl" href="/jquery/jquery-ui/commits/master/themes/base/images/ui-icons_cd0a0a_256x240.png?author=scottjehl"><img alt="Scott Jehl" class=" js-avatar" data-user="214783" height="20" src="https://avatars2.githubusercontent.com/u/214783?s=140" width="20" /></a>
    <a class="avatar tooltipped tooltipped-s" aria-label="TravisCarden" href="/jquery/jquery-ui/commits/master/themes/base/images/ui-icons_cd0a0a_256x240.png?author=TravisCarden"><img alt="Travis Carden" class=" js-avatar" data-user="959246" height="20" src="https://avatars1.githubusercontent.com/u/959246?s=140" width="20" /></a>


    </div>
    <div id="blob_contributors_box" style="display:none">
      <h2 class="facebox-header">Users who have contributed to this file</h2>
      <ul class="facebox-user-list">
          <li class="facebox-user-list-item">
            <img alt="Richard D. Worth" class=" js-avatar" data-user="107824" height="24" src="https://avatars2.githubusercontent.com/u/107824?s=140" width="24" />
            <a href="/rdworth">rdworth</a>
          </li>
          <li class="facebox-user-list-item">
            <img alt="Scott Jehl" class=" js-avatar" data-user="214783" height="24" src="https://avatars2.githubusercontent.com/u/214783?s=140" width="24" />
            <a href="/scottjehl">scottjehl</a>
          </li>
          <li class="facebox-user-list-item">
            <img alt="Travis Carden" class=" js-avatar" data-user="959246" height="24" src="https://avatars1.githubusercontent.com/u/959246?s=140" width="24" />
            <a href="/TravisCarden">TravisCarden</a>
          </li>
      </ul>
    </div>
  </div>

<div class="file-box">
  <div class="file">
    <div class="meta clearfix">
      <div class="info file-name">
        <span class="icon"><b class="octicon octicon-file-text"></b></span>
        <span class="mode" title="File Mode">file</span>
        <span class="meta-divider"></span>
        <span>4.369 kb</span>
      </div>
      <div class="actions">
        <div class="button-group">
          <a href="/jquery/jquery-ui/raw/master/themes/base/images/ui-icons_cd0a0a_256x240.png" class="minibutton " id="raw-url">Raw</a>
          <a href="/jquery/jquery-ui/commits/master/themes/base/images/ui-icons_cd0a0a_256x240.png" class="minibutton " rel="nofollow">History</a>
        </div><!-- /.button-group -->

            <a class="minibutton danger empty-icon tooltipped tooltipped-s"
               href="/jquery/jquery-ui/delete/master/themes/base/images/ui-icons_cd0a0a_256x240.png"
               aria-label="Fork this project and delete file"
               data-method="post" data-test-id="delete-blob-file" rel="nofollow">

          Delete
        </a>
      </div><!-- /.actions -->
    </div>
      
  <div class="blob-wrapper data type-text js-blob-data">
      <div class="image js-image">
          <span class="border-wrap"><img src="https://raw.githubusercontent.com/jquery/jquery-ui/master/themes/base/images/ui-icons_cd0a0a_256x240.png" alt="themes/base/images/ui-icons_cd0a0a_256x240.png" /></span>
      </div>
  </div>

  </div>
</div>

<a href="#jump-to-line" rel="facebox[.linejump]" data-hotkey="l" class="js-jump-to-line" style="display:none">Jump to Line</a>
<div id="jump-to-line" style="display:none">
  <form accept-charset="UTF-8" class="js-jump-to-line-form">
    <input class="linejump-input js-jump-to-line-field" type="text" placeholder="Jump to line&hellip;" autofocus>
    <button type="submit" class="button">Go</button>
  </form>
</div>

        </div>

      </div><!-- /.repo-container -->
      <div class="modal-backdrop"></div>
    </div><!-- /.container -->
  </div><!-- /.site -->


    </div><!-- /.wrapper -->

      <div class="container">
  <div class="site-footer">
    <ul class="site-footer-links right">
      <li><a href="https://status.github.com/">Status</a></li>
      <li><a href="http://developer.github.com">API</a></li>
      <li><a href="http://training.github.com">Training</a></li>
      <li><a href="http://shop.github.com">Shop</a></li>
      <li><a href="/blog">Blog</a></li>
      <li><a href="/about">About</a></li>

    </ul>

    <a href="/">
      <span class="mega-octicon octicon-mark-github" title="GitHub"></span>
    </a>

    <ul class="site-footer-links">
      <li>&copy; 2014 <span title="0.04735s from github-fe120-cp1-prd.iad.github.net">GitHub</span>, Inc.</li>
        <li><a href="/site/terms">Terms</a></li>
        <li><a href="/site/privacy">Privacy</a></li>
        <li><a href="/security">Security</a></li>
        <li><a href="/contact">Contact</a></li>
    </ul>
  </div><!-- /.site-footer -->
</div><!-- /.container -->


    <div class="fullscreen-overlay js-fullscreen-overlay" id="fullscreen_overlay">
  <div class="fullscreen-container js-fullscreen-container">
    <div class="textarea-wrap">
      <textarea name="fullscreen-contents" id="fullscreen-contents" class="fullscreen-contents js-fullscreen-contents" placeholder="" data-suggester="fullscreen_suggester"></textarea>
    </div>
  </div>
  <div class="fullscreen-sidebar">
    <a href="#" class="exit-fullscreen js-exit-fullscreen tooltipped tooltipped-w" aria-label="Exit Zen Mode">
      <span class="mega-octicon octicon-screen-normal"></span>
    </a>
    <a href="#" class="theme-switcher js-theme-switcher tooltipped tooltipped-w"
      aria-label="Switch themes">
      <span class="octicon octicon-color-mode"></span>
    </a>
  </div>
</div>



    <div id="ajax-error-message" class="flash flash-error">
      <span class="octicon octicon-alert"></span>
      <a href="#" class="octicon octicon-x close js-ajax-error-dismiss" aria-label="Dismiss error"></a>
      Something went wrong with that request. Please try again.
    </div>


      <script crossorigin="anonymous" src="https://assets-cdn.github.com/assets/frameworks-df9e4beac80276ed3dfa56be0d97b536d0f5ee12.js" type="text/javascript"></script>
      <script async="async" crossorigin="anonymous" src="https://assets-cdn.github.com/assets/github-534eef699bbadaf1454b432e14a2ab0a68c7ddf4.js" type="text/javascript"></script>
      
      
        <script async src="https://www.google-analytics.com/analytics.js"></script>
  </body>
</html>

   07070100000196000081A40000000000000000000000015ECE244400000111000000000000000000000000000000000000002400000000cobbler-3.1.2/web/static/index.html   <HTML>
<HEAD>
<TITLE>Cobbler services</TITLE>
</HEAD>
<BODY>
Cobbler Web is powered by Django.  Install the cobbler-web package and visit the <A HREF="/cobbler_web">management URL</A> to access it.  Authentication is set up by your cobbler administrator.
</BODY>
</HTML>


   07070100000197000081A40000000000000000000000015ECE244400008479000000000000000000000000000000000000002700000000cobbler-3.1.2/web/static/jquery-ui.css    /*
 * jQuery UI CSS Framework 1.8.18
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Theming/API
 */

/* Layout helpers
----------------------------------*/
.ui-helper-hidden { display: none; }
.ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
.ui-helper-clearfix:before, .ui-helper-clearfix:after { content: ""; display: table; }
.ui-helper-clearfix:after { clear: both; }
.ui-helper-clearfix { zoom: 1; }
.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }


/* Interaction Cues
----------------------------------*/
.ui-state-disabled { cursor: default !important; }


/* Icons
----------------------------------*/

/* states and images */
.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }


/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
/*
 * jQuery UI Accordion 1.8.18
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Accordion#theming
 */
/* IE/Win - Fix animation bug - #4615 */
.ui-accordion { width: 100%; }
.ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; }
.ui-accordion .ui-accordion-li-fix { display: inline; }
.ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; }
.ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em .7em; }
.ui-accordion-icons .ui-accordion-header a { padding-left: 2.2em; }
.ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; }
.ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; }
.ui-accordion .ui-accordion-content-active { display: block; }
/*
 * jQuery UI Autocomplete 1.8.18
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Autocomplete#theming
 */
.ui-autocomplete { position: absolute; cursor: default; }	

/* workarounds */
* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */

/*
 * jQuery UI Menu 1.8.18
 *
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Menu#theming
 */
.ui-menu {
	list-style:none;
	padding: 2px;
	margin: 0;
	display:block;
	float: left;
}
.ui-menu .ui-menu {
	margin-top: -3px;
}
.ui-menu .ui-menu-item {
	margin:0;
	padding: 0;
	zoom: 1;
	float: left;
	clear: left;
	width: 100%;
}
.ui-menu .ui-menu-item a {
	text-decoration:none;
	display:block;
	padding:.2em .4em;
	line-height:1.5;
	zoom:1;
}
.ui-menu .ui-menu-item a.ui-state-hover,
.ui-menu .ui-menu-item a.ui-state-active {
	font-weight: normal;
	margin: -1px;
}
/*
 * jQuery UI Button 1.8.18
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Button#theming
 */
.ui-button { display: inline-block; position: relative; padding: 0; margin-right: .1em; text-decoration: none !important; cursor: pointer; text-align: center; zoom: 1; overflow: hidden; *overflow: visible; } /* the overflow property removes extra width in IE */
.ui-button-icon-only { width: 2.2em; } /* to make room for the icon, a width needs to be set here */
button.ui-button-icon-only { width: 2.4em; } /* button elements seem to need a little more width */
.ui-button-icons-only { width: 3.4em; } 
button.ui-button-icons-only { width: 3.7em; } 

/*button text element */
.ui-button .ui-button-text { display: block; line-height: 1.4;  }
.ui-button-text-only .ui-button-text { padding: .4em 1em; }
.ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text { padding: .4em; text-indent: -9999999px; }
.ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 1em .4em 2.1em; }
.ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 2.1em .4em 1em; }
.ui-button-text-icons .ui-button-text { padding-left: 2.1em; padding-right: 2.1em; }
/* no icon support for input elements, provide padding by default */
input.ui-button { padding: .4em 1em; }

/*button icon element(s) */
.ui-button-icon-only .ui-icon, .ui-button-text-icon-primary .ui-icon, .ui-button-text-icon-secondary .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon { position: absolute; top: 50%; margin-top: -8px; }
.ui-button-icon-only .ui-icon { left: 50%; margin-left: -8px; }
.ui-button-text-icon-primary .ui-button-icon-primary, .ui-button-text-icons .ui-button-icon-primary, .ui-button-icons-only .ui-button-icon-primary { left: .5em; }
.ui-button-text-icon-secondary .ui-button-icon-secondary, .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }
.ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }

/*button sets*/
.ui-buttonset { margin-right: 7px; }
.ui-buttonset .ui-button { margin-left: 0; margin-right: -.3em; }

/* workarounds */
button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra padding in Firefox */
/*
 * jQuery UI Datepicker 1.8.18
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Datepicker#theming
 */
.ui-datepicker { width: 17em; padding: .2em .2em 0; display: none; }
.ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; }
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; }
.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; }
.ui-datepicker .ui-datepicker-prev { left:2px; }
.ui-datepicker .ui-datepicker-next { right:2px; }
.ui-datepicker .ui-datepicker-prev-hover { left:1px; }
.ui-datepicker .ui-datepicker-next-hover { right:1px; }
.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px;  }
.ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; }
.ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; }
.ui-datepicker select.ui-datepicker-month-year {width: 100%;}
.ui-datepicker select.ui-datepicker-month, 
.ui-datepicker select.ui-datepicker-year { width: 49%;}
.ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
.ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0;  }
.ui-datepicker td { border: 0; padding: 1px; }
.ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
.ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; }
.ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi { width:auto; }
.ui-datepicker-multi .ui-datepicker-group { float:left; }
.ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
.ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
.ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
.ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
.ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
.ui-datepicker-row-break { clear:both; width:100%; font-size:0em; }

/* RTL support */
.ui-datepicker-rtl { direction: rtl; }
.ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
.ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
.ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
.ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
.ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
.ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
.ui-datepicker-rtl .ui-datepicker-group { float:right; }
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }

/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
.ui-datepicker-cover {
    display: none; /*sorry for IE5*/
    display/**/: block; /*sorry for IE5*/
    position: absolute; /*must have*/
    z-index: -1; /*must have*/
    filter: mask(); /*must have*/
    top: -4px; /*must have*/
    left: -4px; /*must have*/
    width: 200px; /*must have*/
    height: 200px; /*must have*/
}/*
 * jQuery UI Dialog 1.8.18
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Dialog#theming
 */
.ui-dialog { position: absolute; padding: .2em; width: 300px; overflow: hidden; }
.ui-dialog .ui-dialog-titlebar { padding: .4em 1em; position: relative;  }
.ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .1em 0; } 
.ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; }
.ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; }
.ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; }
.ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; }
.ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; }
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; }
.ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; }
.ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
.ui-draggable .ui-dialog-titlebar { cursor: move; }
/*
 * jQuery UI Progressbar 1.8.18
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Progressbar#theming
 */
.ui-progressbar { height:2em; text-align: left; overflow: hidden; }
.ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; }/*
 * jQuery UI Resizable 1.8.18
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Resizable#theming
 */
.ui-resizable { position: relative;}
.ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block; }
.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }
.ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; }
.ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; }
.ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; }
.ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; }
.ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; }
.ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; }
.ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; }
.ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}/*
 * jQuery UI Selectable 1.8.18
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Selectable#theming
 */
.ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; }
/*
 * jQuery UI Slider 1.8.18
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Slider#theming
 */
.ui-slider { position: relative; text-align: left; }
.ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; }
.ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; }

.ui-slider-horizontal { height: .8em; }
.ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; }
.ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; }
.ui-slider-horizontal .ui-slider-range-min { left: 0; }
.ui-slider-horizontal .ui-slider-range-max { right: 0; }

.ui-slider-vertical { width: .8em; height: 100px; }
.ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; }
.ui-slider-vertical .ui-slider-range { left: 0; width: 100%; }
.ui-slider-vertical .ui-slider-range-min { bottom: 0; }
.ui-slider-vertical .ui-slider-range-max { top: 0; }/*
 * jQuery UI Tabs 1.8.18
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Tabs#theming
 */
.ui-tabs { position: relative; padding: .2em; zoom: 1; } /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
.ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; }
.ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 1px; margin: 0 .2em 1px 0; border-bottom: 0 !important; padding: 0; white-space: nowrap; }
.ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; }
.ui-tabs .ui-tabs-nav li.ui-tabs-selected { margin-bottom: 0; padding-bottom: 1px; }
.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; }
.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
.ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; }
.ui-tabs .ui-tabs-hide { display: none !important; }
/*
 * jQuery UI CSS Framework 1.8.18
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Theming/API
 *
 * To view and modify this theme, visit http://jqueryui.com/themeroller/
 */


/* Component containers
----------------------------------*/
.ui-widget { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1.1em/*{fsDefault}*/; }
.ui-widget .ui-widget { font-size: 1em; }
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1em; }
.ui-widget-content { border: 1px solid #aaaaaa/*{borderColorContent}*/; background: #ffffff/*{bgColorContent}*/ url(images/ui-bg_flat_75_ffffff_40x100.png)/*{bgImgUrlContent}*/ 50%/*{bgContentXPos}*/ 50%/*{bgContentYPos}*/ repeat-x/*{bgContentRepeat}*/; color: #222222/*{fcContent}*/; }
.ui-widget-content a { color: #222222/*{fcContent}*/; }
.ui-widget-header { border: 1px solid #aaaaaa/*{borderColorHeader}*/; background: #cccccc/*{bgColorHeader}*/ url(images/ui-bg_highlight-soft_75_cccccc_1x100.png)/*{bgImgUrlHeader}*/ 50%/*{bgHeaderXPos}*/ 50%/*{bgHeaderYPos}*/ repeat-x/*{bgHeaderRepeat}*/; color: #222222/*{fcHeader}*/; font-weight: bold; }
.ui-widget-header a { color: #222222/*{fcHeader}*/; }

/* Interaction states
----------------------------------*/
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #d3d3d3/*{borderColorDefault}*/; background: #e6e6e6/*{bgColorDefault}*/ url(images/ui-bg_glass_75_e6e6e6_1x400.png)/*{bgImgUrlDefault}*/ 50%/*{bgDefaultXPos}*/ 50%/*{bgDefaultYPos}*/ repeat-x/*{bgDefaultRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #555555/*{fcDefault}*/; }
.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #555555/*{fcDefault}*/; text-decoration: none; }
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { border: 1px solid #999999/*{borderColorHover}*/; background: #dadada/*{bgColorHover}*/ url(images/ui-bg_glass_75_dadada_1x400.png)/*{bgImgUrlHover}*/ 50%/*{bgHoverXPos}*/ 50%/*{bgHoverYPos}*/ repeat-x/*{bgHoverRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #212121/*{fcHover}*/; }
.ui-state-hover a, .ui-state-hover a:hover { color: #212121/*{fcHover}*/; text-decoration: none; }
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #aaaaaa/*{borderColorActive}*/; background: #ffffff/*{bgColorActive}*/ url(images/ui-bg_glass_65_ffffff_1x400.png)/*{bgImgUrlActive}*/ 50%/*{bgActiveXPos}*/ 50%/*{bgActiveYPos}*/ repeat-x/*{bgActiveRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #212121/*{fcActive}*/; }
.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #212121/*{fcActive}*/; text-decoration: none; }
.ui-widget :active { outline: none; }

/* Interaction Cues
----------------------------------*/
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight  {border: 1px solid #fcefa1/*{borderColorHighlight}*/; background: #fbf9ee/*{bgColorHighlight}*/ url(images/ui-bg_glass_55_fbf9ee_1x400.png)/*{bgImgUrlHighlight}*/ 50%/*{bgHighlightXPos}*/ 50%/*{bgHighlightYPos}*/ repeat-x/*{bgHighlightRepeat}*/; color: #363636/*{fcHighlight}*/; }
.ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636/*{fcHighlight}*/; }
.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #cd0a0a/*{borderColorError}*/; background: #fef1ec/*{bgColorError}*/ url(images/ui-bg_glass_95_fef1ec_1x400.png)/*{bgImgUrlError}*/ 50%/*{bgErrorXPos}*/ 50%/*{bgErrorYPos}*/ repeat-x/*{bgErrorRepeat}*/; color: #cd0a0a/*{fcError}*/; }
.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #cd0a0a/*{fcError}*/; }
.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #cd0a0a/*{fcError}*/; }
.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; }
.ui-priority-secondary, .ui-widget-content .ui-priority-secondary,  .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }

/* Icons
----------------------------------*/

/* states and images */
.ui-icon { width: 16px; height: 16px; background-image: url(images/ui-icons_222222_256x240.png)/*{iconsContent}*/; }
.ui-widget-content .ui-icon {background-image: url(images/ui-icons_222222_256x240.png)/*{iconsContent}*/; }
.ui-widget-header .ui-icon {background-image: url(images/ui-icons_222222_256x240.png)/*{iconsHeader}*/; }
.ui-state-default .ui-icon { background-image: url(images/ui-icons_888888_256x240.png)/*{iconsDefault}*/; }
.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(images/ui-icons_454545_256x240.png)/*{iconsHover}*/; }
.ui-state-active .ui-icon {background-image: url(images/ui-icons_454545_256x240.png)/*{iconsActive}*/; }
.ui-state-highlight .ui-icon {background-image: url(images/ui-icons_2e83ff_256x240.png)/*{iconsHighlight}*/; }
.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(images/ui-icons_cd0a0a_256x240.png)/*{iconsError}*/; }

/* positioning */
.ui-icon-carat-1-n { background-position: 0 0; }
.ui-icon-carat-1-ne { background-position: -16px 0; }
.ui-icon-carat-1-e { background-position: -32px 0; }
.ui-icon-carat-1-se { background-position: -48px 0; }
.ui-icon-carat-1-s { background-position: -64px 0; }
.ui-icon-carat-1-sw { background-position: -80px 0; }
.ui-icon-carat-1-w { background-position: -96px 0; }
.ui-icon-carat-1-nw { background-position: -112px 0; }
.ui-icon-carat-2-n-s { background-position: -128px 0; }
.ui-icon-carat-2-e-w { background-position: -144px 0; }
.ui-icon-triangle-1-n { background-position: 0 -16px; }
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-se { background-position: -48px -16px; }
.ui-icon-triangle-1-s { background-position: -64px -16px; }
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
.ui-icon-triangle-1-w { background-position: -96px -16px; }
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
.ui-icon-arrow-1-n { background-position: 0 -32px; }
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
.ui-icon-arrow-1-e { background-position: -32px -32px; }
.ui-icon-arrow-1-se { background-position: -48px -32px; }
.ui-icon-arrow-1-s { background-position: -64px -32px; }
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
.ui-icon-arrow-1-w { background-position: -96px -32px; }
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
.ui-icon-arrow-4 { background-position: 0 -80px; }
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
.ui-icon-extlink { background-position: -32px -80px; }
.ui-icon-newwin { background-position: -48px -80px; }
.ui-icon-refresh { background-position: -64px -80px; }
.ui-icon-shuffle { background-position: -80px -80px; }
.ui-icon-transfer-e-w { background-position: -96px -80px; }
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
.ui-icon-folder-collapsed { background-position: 0 -96px; }
.ui-icon-folder-open { background-position: -16px -96px; }
.ui-icon-document { background-position: -32px -96px; }
.ui-icon-document-b { background-position: -48px -96px; }
.ui-icon-note { background-position: -64px -96px; }
.ui-icon-mail-closed { background-position: -80px -96px; }
.ui-icon-mail-open { background-position: -96px -96px; }
.ui-icon-suitcase { background-position: -112px -96px; }
.ui-icon-comment { background-position: -128px -96px; }
.ui-icon-person { background-position: -144px -96px; }
.ui-icon-print { background-position: -160px -96px; }
.ui-icon-trash { background-position: -176px -96px; }
.ui-icon-locked { background-position: -192px -96px; }
.ui-icon-unlocked { background-position: -208px -96px; }
.ui-icon-bookmark { background-position: -224px -96px; }
.ui-icon-tag { background-position: -240px -96px; }
.ui-icon-home { background-position: 0 -112px; }
.ui-icon-flag { background-position: -16px -112px; }
.ui-icon-calendar { background-position: -32px -112px; }
.ui-icon-cart { background-position: -48px -112px; }
.ui-icon-pencil { background-position: -64px -112px; }
.ui-icon-clock { background-position: -80px -112px; }
.ui-icon-disk { background-position: -96px -112px; }
.ui-icon-calculator { background-position: -112px -112px; }
.ui-icon-zoomin { background-position: -128px -112px; }
.ui-icon-zoomout { background-position: -144px -112px; }
.ui-icon-search { background-position: -160px -112px; }
.ui-icon-wrench { background-position: -176px -112px; }
.ui-icon-gear { background-position: -192px -112px; }
.ui-icon-heart { background-position: -208px -112px; }
.ui-icon-star { background-position: -224px -112px; }
.ui-icon-link { background-position: -240px -112px; }
.ui-icon-cancel { background-position: 0 -128px; }
.ui-icon-plus { background-position: -16px -128px; }
.ui-icon-plusthick { background-position: -32px -128px; }
.ui-icon-minus { background-position: -48px -128px; }
.ui-icon-minusthick { background-position: -64px -128px; }
.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-key { background-position: -112px -128px; }
.ui-icon-lightbulb { background-position: -128px -128px; }
.ui-icon-scissors { background-position: -144px -128px; }
.ui-icon-clipboard { background-position: -160px -128px; }
.ui-icon-copy { background-position: -176px -128px; }
.ui-icon-contact { background-position: -192px -128px; }
.ui-icon-image { background-position: -208px -128px; }
.ui-icon-video { background-position: -224px -128px; }
.ui-icon-script { background-position: -240px -128px; }
.ui-icon-alert { background-position: 0 -144px; }
.ui-icon-info { background-position: -16px -144px; }
.ui-icon-notice { background-position: -32px -144px; }
.ui-icon-help { background-position: -48px -144px; }
.ui-icon-check { background-position: -64px -144px; }
.ui-icon-bullet { background-position: -80px -144px; }
.ui-icon-radio-off { background-position: -96px -144px; }
.ui-icon-radio-on { background-position: -112px -144px; }
.ui-icon-pin-w { background-position: -128px -144px; }
.ui-icon-pin-s { background-position: -144px -144px; }
.ui-icon-play { background-position: 0 -160px; }
.ui-icon-pause { background-position: -16px -160px; }
.ui-icon-seek-next { background-position: -32px -160px; }
.ui-icon-seek-prev { background-position: -48px -160px; }
.ui-icon-seek-end { background-position: -64px -160px; }
.ui-icon-seek-start { background-position: -80px -160px; }
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first { background-position: -80px -160px; }
.ui-icon-stop { background-position: -96px -160px; }
.ui-icon-eject { background-position: -112px -160px; }
.ui-icon-volume-off { background-position: -128px -160px; }
.ui-icon-volume-on { background-position: -144px -160px; }
.ui-icon-power { background-position: 0 -176px; }
.ui-icon-signal-diag { background-position: -16px -176px; }
.ui-icon-signal { background-position: -32px -176px; }
.ui-icon-battery-0 { background-position: -48px -176px; }
.ui-icon-battery-1 { background-position: -64px -176px; }
.ui-icon-battery-2 { background-position: -80px -176px; }
.ui-icon-battery-3 { background-position: -96px -176px; }
.ui-icon-circle-plus { background-position: 0 -192px; }
.ui-icon-circle-minus { background-position: -16px -192px; }
.ui-icon-circle-close { background-position: -32px -192px; }
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
.ui-icon-circle-zoomin { background-position: -176px -192px; }
.ui-icon-circle-zoomout { background-position: -192px -192px; }
.ui-icon-circle-check { background-position: -208px -192px; }
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
.ui-icon-circlesmall-close { background-position: -32px -208px; }
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
.ui-icon-squaresmall-close { background-position: -80px -208px; }
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }


/* Misc visuals
----------------------------------*/

/* Corner radius */
.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl { -moz-border-radius-topleft: 4px/*{cornerRadius}*/; -webkit-border-top-left-radius: 4px/*{cornerRadius}*/; -khtml-border-top-left-radius: 4px/*{cornerRadius}*/; border-top-left-radius: 4px/*{cornerRadius}*/; }
.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr { -moz-border-radius-topright: 4px/*{cornerRadius}*/; -webkit-border-top-right-radius: 4px/*{cornerRadius}*/; -khtml-border-top-right-radius: 4px/*{cornerRadius}*/; border-top-right-radius: 4px/*{cornerRadius}*/; }
.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { -moz-border-radius-bottomleft: 4px/*{cornerRadius}*/; -webkit-border-bottom-left-radius: 4px/*{cornerRadius}*/; -khtml-border-bottom-left-radius: 4px/*{cornerRadius}*/; border-bottom-left-radius: 4px/*{cornerRadius}*/; }
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { -moz-border-radius-bottomright: 4px/*{cornerRadius}*/; -webkit-border-bottom-right-radius: 4px/*{cornerRadius}*/; -khtml-border-bottom-right-radius: 4px/*{cornerRadius}*/; border-bottom-right-radius: 4px/*{cornerRadius}*/; }

/* Overlays */
.ui-widget-overlay { background: #aaaaaa/*{bgColorOverlay}*/ url(images/ui-bg_flat_0_aaaaaa_40x100.png)/*{bgImgUrlOverlay}*/ 50%/*{bgOverlayXPos}*/ 50%/*{bgOverlayYPos}*/ repeat-x/*{bgOverlayRepeat}*/; opacity: .3;filter:Alpha(Opacity=30)/*{opacityOverlay}*/; }
.ui-widget-shadow { margin: -8px/*{offsetTopShadow}*/ 0 0 -8px/*{offsetLeftShadow}*/; padding: 8px/*{thicknessShadow}*/; background: #aaaaaa/*{bgColorShadow}*/ url(images/ui-bg_flat_0_aaaaaa_40x100.png)/*{bgImgUrlShadow}*/ 50%/*{bgShadowXPos}*/ 50%/*{bgShadowYPos}*/ repeat-x/*{bgShadowRepeat}*/; opacity: .3;filter:Alpha(Opacity=30)/*{opacityShadow}*/; -moz-border-radius: 8px/*{cornerRadiusShadow}*/; -khtml-border-radius: 8px/*{cornerRadiusShadow}*/; -webkit-border-radius: 8px/*{cornerRadiusShadow}*/; border-radius: 8px/*{cornerRadiusShadow}*/; }   07070100000198000081A40000000000000000000000015ECE244400031472000000000000000000000000000000000000002A00000000cobbler-3.1.2/web/static/jquery-ui.min.js /*!
 * jQuery UI 1.8.18
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI
 */(function(a,b){function d(b){return!a(b).parents().andSelf().filter(function(){return a.curCSS(this,"visibility")==="hidden"||a.expr.filters.hidden(this)}).length}function c(b,c){var e=b.nodeName.toLowerCase();if("area"===e){var f=b.parentNode,g=f.name,h;if(!b.href||!g||f.nodeName.toLowerCase()!=="map")return!1;h=a("img[usemap=#"+g+"]")[0];return!!h&&d(h)}return(/input|select|textarea|button|object/.test(e)?!b.disabled:"a"==e?b.href||c:c)&&d(b)}a.ui=a.ui||{};a.ui.version||(a.extend(a.ui,{version:"1.8.18",keyCode:{ALT:18,BACKSPACE:8,CAPS_LOCK:20,COMMA:188,COMMAND:91,COMMAND_LEFT:91,COMMAND_RIGHT:93,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,MENU:93,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38,WINDOWS:91}}),a.fn.extend({propAttr:a.fn.prop||a.fn.attr,_focus:a.fn.focus,focus:function(b,c){return typeof b=="number"?this.each(function(){var d=this;setTimeout(function(){a(d).focus(),c&&c.call(d)},b)}):this._focus.apply(this,arguments)},scrollParent:function(){var b;a.browser.msie&&/(static|relative)/.test(this.css("position"))||/absolute/.test(this.css("position"))?b=this.parents().filter(function(){return/(relative|absolute|fixed)/.test(a.curCSS(this,"position",1))&&/(auto|scroll)/.test(a.curCSS(this,"overflow",1)+a.curCSS(this,"overflow-y",1)+a.curCSS(this,"overflow-x",1))}).eq(0):b=this.parents().filter(function(){return/(auto|scroll)/.test(a.curCSS(this,"overflow",1)+a.curCSS(this,"overflow-y",1)+a.curCSS(this,"overflow-x",1))}).eq(0);return/fixed/.test(this.css("position"))||!b.length?a(document):b},zIndex:function(c){if(c!==b)return this.css("zIndex",c);if(this.length){var d=a(this[0]),e,f;while(d.length&&d[0]!==document){e=d.css("position");if(e==="absolute"||e==="relative"||e==="fixed"){f=parseInt(d.css("zIndex"),10);if(!isNaN(f)&&f!==0)return f}d=d.parent()}}return 0},disableSelection:function(){return this.bind((a.support.selectstart?"selectstart":"mousedown")+".ui-disableSelection",function(a){a.preventDefault()})},enableSelection:function(){return this.unbind(".ui-disableSelection")}}),a.each(["Width","Height"],function(c,d){function h(b,c,d,f){a.each(e,function(){c-=parseFloat(a.curCSS(b,"padding"+this,!0))||0,d&&(c-=parseFloat(a.curCSS(b,"border"+this+"Width",!0))||0),f&&(c-=parseFloat(a.curCSS(b,"margin"+this,!0))||0)});return c}var e=d==="Width"?["Left","Right"]:["Top","Bottom"],f=d.toLowerCase(),g={innerWidth:a.fn.innerWidth,innerHeight:a.fn.innerHeight,outerWidth:a.fn.outerWidth,outerHeight:a.fn.outerHeight};a.fn["inner"+d]=function(c){if(c===b)return g["inner"+d].call(this);return this.each(function(){a(this).css(f,h(this,c)+"px")})},a.fn["outer"+d]=function(b,c){if(typeof b!="number")return g["outer"+d].call(this,b);return this.each(function(){a(this).css(f,h(this,b,!0,c)+"px")})}}),a.extend(a.expr[":"],{data:function(b,c,d){return!!a.data(b,d[3])},focusable:function(b){return c(b,!isNaN(a.attr(b,"tabindex")))},tabbable:function(b){var d=a.attr(b,"tabindex"),e=isNaN(d);return(e||d>=0)&&c(b,!e)}}),a(function(){var b=document.body,c=b.appendChild(c=document.createElement("div"));c.offsetHeight,a.extend(c.style,{minHeight:"100px",height:"auto",padding:0,borderWidth:0}),a.support.minHeight=c.offsetHeight===100,a.support.selectstart="onselectstart"in c,b.removeChild(c).style.display="none"}),a.extend(a.ui,{plugin:{add:function(b,c,d){var e=a.ui[b].prototype;for(var f in d)e.plugins[f]=e.plugins[f]||[],e.plugins[f].push([c,d[f]])},call:function(a,b,c){var d=a.plugins[b];if(!!d&&!!a.element[0].parentNode)for(var e=0;e<d.length;e++)a.options[d[e][0]]&&d[e][1].apply(a.element,c)}},contains:function(a,b){return document.compareDocumentPosition?a.compareDocumentPosition(b)&16:a!==b&&a.contains(b)},hasScroll:function(b,c){if(a(b).css("overflow")==="hidden")return!1;var d=c&&c==="left"?"scrollLeft":"scrollTop",e=!1;if(b[d]>0)return!0;b[d]=1,e=b[d]>0,b[d]=0;return e},isOverAxis:function(a,b,c){return a>b&&a<b+c},isOver:function(b,c,d,e,f,g){return a.ui.isOverAxis(b,d,f)&&a.ui.isOverAxis(c,e,g)}}))})(jQuery),function(a,b){if(a.cleanData){var c=a.cleanData;a.cleanData=function(b){for(var d=0,e;(e=b[d])!=null;d++)try{a(e).triggerHandler("remove")}catch(f){}c(b)}}else{var d=a.fn.remove;a.fn.remove=function(b,c){return this.each(function(){c||(!b||a.filter(b,[this]).length)&&a("*",this).add([this]).each(function(){try{a(this).triggerHandler("remove")}catch(b){}});return d.call(a(this),b,c)})}}a.widget=function(b,c,d){var e=b.split(".")[0],f;b=b.split(".")[1],f=e+"-"+b,d||(d=c,c=a.Widget),a.expr[":"][f]=function(c){return!!a.data(c,b)},a[e]=a[e]||{},a[e][b]=function(a,b){arguments.length&&this._createWidget(a,b)};var g=new c;g.options=a.extend(!0,{},g.options),a[e][b].prototype=a.extend(!0,g,{namespace:e,widgetName:b,widgetEventPrefix:a[e][b].prototype.widgetEventPrefix||b,widgetBaseClass:f},d),a.widget.bridge(b,a[e][b])},a.widget.bridge=function(c,d){a.fn[c]=function(e){var f=typeof e=="string",g=Array.prototype.slice.call(arguments,1),h=this;e=!f&&g.length?a.extend.apply(null,[!0,e].concat(g)):e;if(f&&e.charAt(0)==="_")return h;f?this.each(function(){var d=a.data(this,c),f=d&&a.isFunction(d[e])?d[e].apply(d,g):d;if(f!==d&&f!==b){h=f;return!1}}):this.each(function(){var b=a.data(this,c);b?b.option(e||{})._init():a.data(this,c,new d(e,this))});return h}},a.Widget=function(a,b){arguments.length&&this._createWidget(a,b)},a.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",options:{disabled:!1},_createWidget:function(b,c){a.data(c,this.widgetName,this),this.element=a(c),this.options=a.extend(!0,{},this.options,this._getCreateOptions(),b);var d=this;this.element.bind("remove."+this.widgetName,function(){d.destroy()}),this._create(),this._trigger("create"),this._init()},_getCreateOptions:function(){return a.metadata&&a.metadata.get(this.element[0])[this.widgetName]},_create:function(){},_init:function(){},destroy:function(){this.element.unbind("."+this.widgetName).removeData(this.widgetName),this.widget().unbind("."+this.widgetName).removeAttr("aria-disabled").removeClass(this.widgetBaseClass+"-disabled "+"ui-state-disabled")},widget:function(){return this.element},option:function(c,d){var e=c;if(arguments.length===0)return a.extend({},this.options);if(typeof c=="string"){if(d===b)return this.options[c];e={},e[c]=d}this._setOptions(e);return this},_setOptions:function(b){var c=this;a.each(b,function(a,b){c._setOption(a,b)});return this},_setOption:function(a,b){this.options[a]=b,a==="disabled"&&this.widget()[b?"addClass":"removeClass"](this.widgetBaseClass+"-disabled"+" "+"ui-state-disabled").attr("aria-disabled",b);return this},enable:function(){return this._setOption("disabled",!1)},disable:function(){return this._setOption("disabled",!0)},_trigger:function(b,c,d){var e,f,g=this.options[b];d=d||{},c=a.Event(c),c.type=(b===this.widgetEventPrefix?b:this.widgetEventPrefix+b).toLowerCase(),c.target=this.element[0],f=c.originalEvent;if(f)for(e in f)e in c||(c[e]=f[e]);this.element.trigger(c,d);return!(a.isFunction(g)&&g.call(this.element[0],c,d)===!1||c.isDefaultPrevented())}}}(jQuery),function(a,b){var c=!1;a(document).mouseup(function(a){c=!1}),a.widget("ui.mouse",{options:{cancel:":input,option",distance:1,delay:0},_mouseInit:function(){var b=this;this.element.bind("mousedown."+this.widgetName,function(a){return b._mouseDown(a)}).bind("click."+this.widgetName,function(c){if(!0===a.data(c.target,b.widgetName+".preventClickEvent")){a.removeData(c.target,b.widgetName+".preventClickEvent"),c.stopImmediatePropagation();return!1}}),this.started=!1},_mouseDestroy:function(){this.element.unbind("."+this.widgetName)},_mouseDown:function(b){if(!c){this._mouseStarted&&this._mouseUp(b),this._mouseDownEvent=b;var d=this,e=b.which==1,f=typeof this.options.cancel=="string"&&b.target.nodeName?a(b.target).closest(this.options.cancel).length:!1;if(!e||f||!this._mouseCapture(b))return!0;this.mouseDelayMet=!this.options.delay,this.mouseDelayMet||(this._mouseDelayTimer=setTimeout(function(){d.mouseDelayMet=!0},this.options.delay));if(this._mouseDistanceMet(b)&&this._mouseDelayMet(b)){this._mouseStarted=this._mouseStart(b)!==!1;if(!this._mouseStarted){b.preventDefault();return!0}}!0===a.data(b.target,this.widgetName+".preventClickEvent")&&a.removeData(b.target,this.widgetName+".preventClickEvent"),this._mouseMoveDelegate=function(a){return d._mouseMove(a)},this._mouseUpDelegate=function(a){return d._mouseUp(a)},a(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate),b.preventDefault(),c=!0;return!0}},_mouseMove:function(b){if(a.browser.msie&&!(document.documentMode>=9)&&!b.button)return this._mouseUp(b);if(this._mouseStarted){this._mouseDrag(b);return b.preventDefault()}this._mouseDistanceMet(b)&&this._mouseDelayMet(b)&&(this._mouseStarted=this._mouseStart(this._mouseDownEvent,b)!==!1,this._mouseStarted?this._mouseDrag(b):this._mouseUp(b));return!this._mouseStarted},_mouseUp:function(b){a(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate),this._mouseStarted&&(this._mouseStarted=!1,b.target==this._mouseDownEvent.target&&a.data(b.target,this.widgetName+".preventClickEvent",!0),this._mouseStop(b));return!1},_mouseDistanceMet:function(a){return Math.max(Math.abs(this._mouseDownEvent.pageX-a.pageX),Math.abs(this._mouseDownEvent.pageY-a.pageY))>=this.options.distance},_mouseDelayMet:function(a){return this.mouseDelayMet},_mouseStart:function(a){},_mouseDrag:function(a){},_mouseStop:function(a){},_mouseCapture:function(a){return!0}})}(jQuery),function(a,b){a.widget("ui.draggable",a.ui.mouse,{widgetEventPrefix:"drag",options:{addClasses:!0,appendTo:"parent",axis:!1,connectToSortable:!1,containment:!1,cursor:"auto",cursorAt:!1,grid:!1,handle:!1,helper:"original",iframeFix:!1,opacity:!1,refreshPositions:!1,revert:!1,revertDuration:500,scope:"default",scroll:!0,scrollSensitivity:20,scrollSpeed:20,snap:!1,snapMode:"both",snapTolerance:20,stack:!1,zIndex:!1},_create:function(){this.options.helper=="original"&&!/^(?:r|a|f)/.test(this.element.css("position"))&&(this.element[0].style.position="relative"),this.options.addClasses&&this.element.addClass("ui-draggable"),this.options.disabled&&this.element.addClass("ui-draggable-disabled"),this._mouseInit()},destroy:function(){if(!!this.element.data("draggable")){this.element.removeData("draggable").unbind(".draggable").removeClass("ui-draggable ui-draggable-dragging ui-draggable-disabled"),this._mouseDestroy();return this}},_mouseCapture:function(b){var c=this.options;if(this.helper||c.disabled||a(b.target).is(".ui-resizable-handle"))return!1;this.handle=this._getHandle(b);if(!this.handle)return!1;c.iframeFix&&a(c.iframeFix===!0?"iframe":c.iframeFix).each(function(){a('<div class="ui-draggable-iframeFix" style="background: #fff;"></div>').css({width:this.offsetWidth+"px",height:this.offsetHeight+"px",position:"absolute",opacity:"0.001",zIndex:1e3}).css(a(this).offset()).appendTo("body")});return!0},_mouseStart:function(b){var c=this.options;this.helper=this._createHelper(b),this._cacheHelperProportions(),a.ui.ddmanager&&(a.ui.ddmanager.current=this),this._cacheMargins(),this.cssPosition=this.helper.css("position"),this.scrollParent=this.helper.scrollParent(),this.offset=this.positionAbs=this.element.offset(),this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left},a.extend(this.offset,{click:{left:b.pageX-this.offset.left,top:b.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()}),this.originalPosition=this.position=this._generatePosition(b),this.originalPageX=b.pageX,this.originalPageY=b.pageY,c.cursorAt&&this._adjustOffsetFromHelper(c.cursorAt),c.containment&&this._setContainment();if(this._trigger("start",b)===!1){this._clear();return!1}this._cacheHelperProportions(),a.ui.ddmanager&&!c.dropBehaviour&&a.ui.ddmanager.prepareOffsets(this,b),this.helper.addClass("ui-draggable-dragging"),this._mouseDrag(b,!0),a.ui.ddmanager&&a.ui.ddmanager.dragStart(this,b);return!0},_mouseDrag:function(b,c){this.position=this._generatePosition(b),this.positionAbs=this._convertPositionTo("absolute");if(!c){var d=this._uiHash();if(this._trigger("drag",b,d)===!1){this._mouseUp({});return!1}this.position=d.position}if(!this.options.axis||this.options.axis!="y")this.helper[0].style.left=this.position.left+"px";if(!this.options.axis||this.options.axis!="x")this.helper[0].style.top=this.position.top+"px";a.ui.ddmanager&&a.ui.ddmanager.drag(this,b);return!1},_mouseStop:function(b){var c=!1;a.ui.ddmanager&&!this.options.dropBehaviour&&(c=a.ui.ddmanager.drop(this,b)),this.dropped&&(c=this.dropped,this.dropped=!1);if((!this.element[0]||!this.element[0].parentNode)&&this.options.helper=="original")return!1;if(this.options.revert=="invalid"&&!c||this.options.revert=="valid"&&c||this.options.revert===!0||a.isFunction(this.options.revert)&&this.options.revert.call(this.element,c)){var d=this;a(this.helper).animate(this.originalPosition,parseInt(this.options.revertDuration,10),function(){d._trigger("stop",b)!==!1&&d._clear()})}else this._trigger("stop",b)!==!1&&this._clear();return!1},_mouseUp:function(b){this.options.iframeFix===!0&&a("div.ui-draggable-iframeFix").each(function(){this.parentNode.removeChild(this)}),a.ui.ddmanager&&a.ui.ddmanager.dragStop(this,b);return a.ui.mouse.prototype._mouseUp.call(this,b)},cancel:function(){this.helper.is(".ui-draggable-dragging")?this._mouseUp({}):this._clear();return this},_getHandle:function(b){var c=!this.options.handle||!a(this.options.handle,this.element).length?!0:!1;a(this.options.handle,this.element).find("*").andSelf().each(function(){this==b.target&&(c=!0)});return c},_createHelper:function(b){var c=this.options,d=a.isFunction(c.helper)?a(c.helper.apply(this.element[0],[b])):c.helper=="clone"?this.element.clone().removeAttr("id"):this.element;d.parents("body").length||d.appendTo(c.appendTo=="parent"?this.element[0].parentNode:c.appendTo),d[0]!=this.element[0]&&!/(fixed|absolute)/.test(d.css("position"))&&d.css("position","absolute");return d},_adjustOffsetFromHelper:function(b){typeof b=="string"&&(b=b.split(" ")),a.isArray(b)&&(b={left:+b[0],top:+b[1]||0}),"left"in b&&(this.offset.click.left=b.left+this.margins.left),"right"in b&&(this.offset.click.left=this.helperProportions.width-b.right+this.margins.left),"top"in b&&(this.offset.click.top=b.top+this.margins.top),"bottom"in b&&(this.offset.click.top=this.helperProportions.height-b.bottom+this.margins.top)},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();var b=this.offsetParent.offset();this.cssPosition=="absolute"&&this.scrollParent[0]!=document&&a.ui.contains(this.scrollParent[0],this.offsetParent[0])&&(b.left+=this.scrollParent.scrollLeft(),b.top+=this.scrollParent.scrollTop());if(this.offsetParent[0]==document.body||this.offsetParent[0].tagName&&this.offsetParent[0].tagName.toLowerCase()=="html"&&a.browser.msie)b={top:0,left:0};return{top:b.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:b.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if(this.cssPosition=="relative"){var a=this.element.position();return{top:a.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:a.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}}return{top:0,left:0}},_cacheMargins:function(){this.margins={left:parseInt(this.element.css("marginLeft"),10)||0,top:parseInt(this.element.css("marginTop"),10)||0,right:parseInt(this.element.css("marginRight"),10)||0,bottom:parseInt(this.element.css("marginBottom"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var b=this.options;b.containment=="parent"&&(b.containment=this.helper[0].parentNode);if(b.containment=="document"||b.containment=="window")this.containment=[b.containment=="document"?0:a(window).scrollLeft()-this.offset.relative.left-this.offset.parent.left,b.containment=="document"?0:a(window).scrollTop()-this.offset.relative.top-this.offset.parent.top,(b.containment=="document"?0:a(window).scrollLeft())+a(b.containment=="document"?document:window).width()-this.helperProportions.width-this.margins.left,(b.containment=="document"?0:a(window).scrollTop())+(a(b.containment=="document"?document:window).height()||document.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top];if(!/^(document|window|parent)$/.test(b.containment)&&b.containment.constructor!=Array){var c=a(b.containment),d=c[0];if(!d)return;var e=c.offset(),f=a(d).css("overflow")!="hidden";this.containment=[(parseInt(a(d).css("borderLeftWidth"),10)||0)+(parseInt(a(d).css("paddingLeft"),10)||0),(parseInt(a(d).css("borderTopWidth"),10)||0)+(parseInt(a(d).css("paddingTop"),10)||0),(f?Math.max(d.scrollWidth,d.offsetWidth):d.offsetWidth)-(parseInt(a(d).css("borderLeftWidth"),10)||0)-(parseInt(a(d).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left-this.margins.right,(f?Math.max(d.scrollHeight,d.offsetHeight):d.offsetHeight)-(parseInt(a(d).css("borderTopWidth"),10)||0)-(parseInt(a(d).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top-this.margins.bottom],this.relative_container=c}else b.containment.constructor==Array&&(this.containment=b.containment)},_convertPositionTo:function(b,c){c||(c=this.position);var d=b=="absolute"?1:-1,e=this.options,f=this.cssPosition=="absolute"&&(this.scrollParent[0]==document||!a.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,g=/(html|body)/i.test(f[0].tagName);return{top:c.top+this.offset.relative.top*d+this.offset.parent.top*d-(a.browser.safari&&a.browser.version<526&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():g?0:f.scrollTop())*d),left:c.left+this.offset.relative.left*d+this.offset.parent.left*d-(a.browser.safari&&a.browser.version<526&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():g?0:f.scrollLeft())*d)}},_generatePosition:function(b){var c=this.options,d=this.cssPosition=="absolute"&&(this.scrollParent[0]==document||!a.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,e=/(html|body)/i.test(d[0].tagName),f=b.pageX,g=b.pageY;if(this.originalPosition){var h;if(this.containment){if(this.relative_container){var i=this.relative_container.offset();h=[this.containment[0]+i.left,this.containment[1]+i.top,this.containment[2]+i.left,this.containment[3]+i.top]}else h=this.containment;b.pageX-this.offset.click.left<h[0]&&(f=h[0]+this.offset.click.left),b.pageY-this.offset.click.top<h[1]&&(g=h[1]+this.offset.click.top),b.pageX-this.offset.click.left>h[2]&&(f=h[2]+this.offset.click.left),b.pageY-this.offset.click.top>h[3]&&(g=h[3]+this.offset.click.top)}if(c.grid){var j=c.grid[1]?this.originalPageY+Math.round((g-this.originalPageY)/c.grid[1])*c.grid[1]:this.originalPageY;g=h?j-this.offset.click.top<h[1]||j-this.offset.click.top>h[3]?j-this.offset.click.top<h[1]?j+c.grid[1]:j-c.grid[1]:j:j;var k=c.grid[0]?this.originalPageX+Math.round((f-this.originalPageX)/c.grid[0])*c.grid[0]:this.originalPageX;f=h?k-this.offset.click.left<h[0]||k-this.offset.click.left>h[2]?k-this.offset.click.left<h[0]?k+c.grid[0]:k-c.grid[0]:k:k}}return{top:g-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+(a.browser.safari&&a.browser.version<526&&this.cssPosition=="fixed"?0:this.cssPosition=="fixed"?-this.scrollParent.scrollTop():e?0:d.scrollTop()),left:f-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+(a.browser.safari&&a.browser.version<526&&this.cssPosition=="fixed"?0:this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():e?0:d.scrollLeft())}},_clear:function(){this.helper.removeClass("ui-draggable-dragging"),this.helper[0]!=this.element[0]&&!this.cancelHelperRemoval&&this.helper.remove(),this.helper=null,this.cancelHelperRemoval=!1},_trigger:function(b,c,d){d=d||this._uiHash(),a.ui.plugin.call(this,b,[c,d]),b=="drag"&&(this.positionAbs=this._convertPositionTo("absolute"));return a.Widget.prototype._trigger.call(this,b,c,d)},plugins:{},_uiHash:function(a){return{helper:this.helper,position:this.position,originalPosition:this.originalPosition,offset:this.positionAbs}}}),a.extend(a.ui.draggable,{version:"1.8.18"}),a.ui.plugin.add("draggable","connectToSortable",{start:function(b,c){var d=a(this).data("draggable"),e=d.options,f=a.extend({},c,{item:d.element});d.sortables=[],a(e.connectToSortable).each(function(){var c=a.data(this,"sortable");c&&!c.options.disabled&&(d.sortables.push({instance:c,shouldRevert:c.options.revert}),c.refreshPositions(),c._trigger("activate",b,f))})},stop:function(b,c){var d=a(this).data("draggable"),e=a.extend({},c,{item:d.element});a.each(d.sortables,function(){this.instance.isOver?(this.instance.isOver=0,d.cancelHelperRemoval=!0,this.instance.cancelHelperRemoval=!1,this.shouldRevert&&(this.instance.options.revert=!0),this.instance._mouseStop(b),this.instance.options.helper=this.instance.options._helper,d.options.helper=="original"&&this.instance.currentItem.css({top:"auto",left:"auto"})):(this.instance.cancelHelperRemoval=!1,this.instance._trigger("deactivate",b,e))})},drag:function(b,c){var d=a(this).data("draggable"),e=this,f=function(b){var c=this.offset.click.top,d=this.offset.click.left,e=this.positionAbs.top,f=this.positionAbs.left,g=b.height,h=b.width,i=b.top,j=b.left;return a.ui.isOver(e+c,f+d,i,j,g,h)};a.each(d.sortables,function(f){this.instance.positionAbs=d.positionAbs,this.instance.helperProportions=d.helperProportions,this.instance.offset.click=d.offset.click,this.instance._intersectsWith(this.instance.containerCache)?(this.instance.isOver||(this.instance.isOver=1,this.instance.currentItem=a(e).clone().removeAttr("id").appendTo(this.instance.element).data("sortable-item",!0),this.instance.options._helper=this.instance.options.helper,this.instance.options.helper=function(){return c.helper[0]},b.target=this.instance.currentItem[0],this.instance._mouseCapture(b,!0),this.instance._mouseStart(b,!0,!0),this.instance.offset.click.top=d.offset.click.top,this.instance.offset.click.left=d.offset.click.left,this.instance.offset.parent.left-=d.offset.parent.left-this.instance.offset.parent.left,this.instance.offset.parent.top-=d.offset.parent.top-this.instance.offset.parent.top,d._trigger("toSortable",b),d.dropped=this.instance.element,d.currentItem=d.element,this.instance.fromOutside=d),this.instance.currentItem&&this.instance._mouseDrag(b)):this.instance.isOver&&(this.instance.isOver=0,this.instance.cancelHelperRemoval=!0,this.instance.options.revert=!1,this.instance._trigger("out",b,this.instance._uiHash(this.instance)),this.instance._mouseStop(b,!0),this.instance.options.helper=this.instance.options._helper,this.instance.currentItem.remove(),this.instance.placeholder&&this.instance.placeholder.remove(),d._trigger("fromSortable",b),d.dropped=!1)})}}),a.ui.plugin.add("draggable","cursor",{start:function(b,c){var d=a("body"),e=a(this).data("draggable").options;d.css("cursor")&&(e._cursor=d.css("cursor")),d.css("cursor",e.cursor)},stop:function(b,c){var d=a(this).data("draggable").options;d._cursor&&a("body").css("cursor",d._cursor)}}),a.ui.plugin.add("draggable","opacity",{start:function(b,c){var d=a(c.helper),e=a(this).data("draggable").options;d.css("opacity")&&(e._opacity=d.css("opacity")),d.css("opacity",e.opacity)},stop:function(b,c){var d=a(this).data("draggable").options;d._opacity&&a(c.helper).css("opacity",d._opacity)}}),a.ui.plugin.add("draggable","scroll",{start:function(b,c){var d=a(this).data("draggable");d.scrollParent[0]!=document&&d.scrollParent[0].tagName!="HTML"&&(d.overflowOffset=d.scrollParent.offset())},drag:function(b,c){var d=a(this).data("draggable"),e=d.options,f=!1;if(d.scrollParent[0]!=document&&d.scrollParent[0].tagName!="HTML"){if(!e.axis||e.axis!="x")d.overflowOffset.top+d.scrollParent[0].offsetHeight-b.pageY<e.scrollSensitivity?d.scrollParent[0].scrollTop=f=d.scrollParent[0].scrollTop+e.scrollSpeed:b.pageY-d.overflowOffset.top<e.scrollSensitivity&&(d.scrollParent[0].scrollTop=f=d.scrollParent[0].scrollTop-e.scrollSpeed);if(!e.axis||e.axis!="y")d.overflowOffset.left+d.scrollParent[0].offsetWidth-b.pageX<e.scrollSensitivity?d.scrollParent[0].scrollLeft=f=d.scrollParent[0].scrollLeft+e.scrollSpeed:b.pageX-d.overflowOffset.left<e.scrollSensitivity&&(d.scrollParent[0].scrollLeft=f=d.scrollParent[0].scrollLeft-e.scrollSpeed)}else{if(!e.axis||e.axis!="x")b.pageY-a(document).scrollTop()<e.scrollSensitivity?f=a(document).scrollTop(a(document).scrollTop()-e.scrollSpeed):a(window).height()-(b.pageY-a(document).scrollTop())<e.scrollSensitivity&&(f=a(document).scrollTop(a(document).scrollTop()+e.scrollSpeed));if(!e.axis||e.axis!="y")b.pageX-a(document).scrollLeft()<e.scrollSensitivity?f=a(document).scrollLeft(a(document).scrollLeft()-e.scrollSpeed):a(window).width()-(b.pageX-a(document).scrollLeft())<e.scrollSensitivity&&(f=a(document).scrollLeft(a(document).scrollLeft()+e.scrollSpeed))}f!==!1&&a.ui.ddmanager&&!e.dropBehaviour&&a.ui.ddmanager.prepareOffsets(d,b)}}),a.ui.plugin.add("draggable","snap",{start:function(b,c){var d=a(this).data("draggable"),e=d.options;d.snapElements=[],a(e.snap.constructor!=String?e.snap.items||":data(draggable)":e.snap).each(function(){var b=a(this),c=b.offset();this!=d.element[0]&&d.snapElements.push({item:this,width:b.outerWidth(),height:b.outerHeight(),top:c.top,left:c.left})})},drag:function(b,c){var d=a(this).data("draggable"),e=d.options,f=e.snapTolerance,g=c.offset.left,h=g+d.helperProportions.width,i=c.offset.top,j=i+d.helperProportions.height;for(var k=d.snapElements.length-1;k>=0;k--){var l=d.snapElements[k].left,m=l+d.snapElements[k].width,n=d.snapElements[k].top,o=n+d.snapElements[k].height;if(!(l-f<g&&g<m+f&&n-f<i&&i<o+f||l-f<g&&g<m+f&&n-f<j&&j<o+f||l-f<h&&h<m+f&&n-f<i&&i<o+f||l-f<h&&h<m+f&&n-f<j&&j<o+f)){d.snapElements[k].snapping&&d.options.snap.release&&d.options.snap.release.call(d.element,b,a.extend(d._uiHash(),{snapItem:d.snapElements[k].item})),d.snapElements[k].snapping=!1;continue}if(e.snapMode!="inner"){var p=Math.abs(n-j)<=f,q=Math.abs(o-i)<=f,r=Math.abs(l-h)<=f,s=Math.abs(m-g)<=f;p&&(c.position.top=d._convertPositionTo("relative",{top:n-d.helperProportions.height,left:0}).top-d.margins.top),q&&(c.position.top=d._convertPositionTo("relative",{top:o,left:0}).top-d.margins.top),r&&(c.position.left=d._convertPositionTo("relative",{top:0,left:l-d.helperProportions.width}).left-d.margins.left),s&&(c.position.left=d._convertPositionTo("relative",{top:0,left:m}).left-d.margins.left)}var t=p||q||r||s;if(e.snapMode!="outer"){var p=Math.abs(n-i)<=f,q=Math.abs(o-j)<=f,r=Math.abs(l-g)<=f,s=Math.abs(m-h)<=f;p&&(c.position.top=d._convertPositionTo("relative",{top:n,left:0}).top-d.margins.top),q&&(c.position.top=d._convertPositionTo("relative",{top:o-d.helperProportions.height,left:0}).top-d.margins.top),r&&(c.position.left=d._convertPositionTo("relative",{top:0,left:l}).left-d.margins.left),s&&(c.position.left=d._convertPositionTo("relative",{top:0,left:m-d.helperProportions.width}).left-d.margins.left)}!d.snapElements[k].snapping&&(p||q||r||s||t)&&d.options.snap.snap&&d.options.snap.snap.call(d.element,b,a.extend(d._uiHash(),{snapItem:d.snapElements[k].item})),d.snapElements[k].snapping=p||q||r||s||t}}}),a.ui.plugin.add("draggable","stack",{start:function(b,c){var d=a(this).data("draggable").options,e=a.makeArray(a(d.stack)).sort(function(b,c){return(parseInt(a(b).css("zIndex"),10)||0)-(parseInt(a(c).css("zIndex"),10)||0)});if(!!e.length){var f=parseInt(e[0].style.zIndex)||0;a(e).each(function(a){this.style.zIndex=f+a}),this[0].style.zIndex=f+e.length}}}),a.ui.plugin.add("draggable","zIndex",{start:function(b,c){var d=a(c.helper),e=a(this).data("draggable").options;d.css("zIndex")&&(e._zIndex=d.css("zIndex")),d.css("zIndex",e.zIndex)},stop:function(b,c){var d=a(this).data("draggable").options;d._zIndex&&a(c.helper).css("zIndex",d._zIndex)}})}(jQuery),function(a,b){a.widget("ui.droppable",{widgetEventPrefix:"drop",options:{accept:"*",activeClass:!1,addClasses:!0,greedy:!1,hoverClass:!1,scope:"default",tolerance:"intersect"},_create:function(){var b=this.options,c=b.accept;this.isover=0,this.isout=1,this.accept=a.isFunction(c)?c:function(a){return a.is(c)},this.proportions={width:this.element[0].offsetWidth,height:this.element[0].offsetHeight},a.ui.ddmanager.droppables[b.scope]=a.ui.ddmanager.droppables[b.scope]||[],a.ui.ddmanager.droppables[b.scope].push(this),b.addClasses&&this.element.addClass("ui-droppable")},destroy:function(){var b=a.ui.ddmanager.droppables[this.options.scope];for(var c=0;c<b.length;c++)b[c]==this&&b.splice(c,1);this.element.removeClass("ui-droppable ui-droppable-disabled").removeData("droppable").unbind(".droppable");return this},_setOption:function(b,c){b=="accept"&&(this.accept=a.isFunction(c)?c:function(a){return a.is(c)}),a.Widget.prototype._setOption.apply(this,arguments)},_activate:function(b){var c=a.ui.ddmanager.current;this.options.activeClass&&this.element.addClass(this.options.activeClass),c&&this._trigger("activate",b,this.ui(c))},_deactivate:function(b){var c=a.ui.ddmanager.current;this.options.activeClass&&this.element.removeClass(this.options.activeClass),c&&this._trigger("deactivate",b,this.ui(c))},_over:function(b){var c=a.ui.ddmanager.current;!!c&&(c.currentItem||c.element)[0]!=this.element[0]&&this.accept.call(this.element[0],c.currentItem||c.element)&&(this.options.hoverClass&&this.element.addClass(this.options.hoverClass),this._trigger("over",b,this.ui(c)))},_out:function(b){var c=a.ui.ddmanager.current;!!c&&(c.currentItem||c.element)[0]!=this.element[0]&&this.accept.call(this.element[0],c.currentItem||c.element)&&(this.options.hoverClass&&this.element.removeClass(this.options.hoverClass),this._trigger("out",b,this.ui(c)))},_drop:function(b,c){var d=c||a.ui.ddmanager.current;if(!d||(d.currentItem||d.element)[0]==this.element[0])return!1;var e=!1;this.element.find(":data(droppable)").not(".ui-draggable-dragging").each(function(){var b=a.data(this,"droppable");if(b.options.greedy&&!b.options.disabled&&b.options.scope==d.options.scope&&b.accept.call(b.element[0],d.currentItem||d.element)&&a.ui.intersect(d,a.extend(b,{offset:b.element.offset()}),b.options.tolerance)){e=!0;return!1}});if(e)return!1;if(this.accept.call(this.element[0],d.currentItem||d.element)){this.options.activeClass&&this.element.removeClass(this.options.activeClass),this.options.hoverClass&&this.element.removeClass(this.options.hoverClass),this._trigger("drop",b,this.ui(d));return this.element}return!1},ui:function(a){return{draggable:a.currentItem||a.element,helper:a.helper,position:a.position,offset:a.positionAbs}}}),a.extend(a.ui.droppable,{version:"1.8.18"}),a.ui.intersect=function(b,c,d){if(!c.offset)return!1;var e=(b.positionAbs||b.position.absolute).left,f=e+b.helperProportions.width,g=(b.positionAbs||b.position.absolute).top,h=g+b.helperProportions.height,i=c.offset.left,j=i+c.proportions.width,k=c.offset.top,l=k+c.proportions.height;switch(d){case"fit":return i<=e&&f<=j&&k<=g&&h<=l;case"intersect":return i<e+b.helperProportions.width/2&&f-b.helperProportions.width/2<j&&k<g+b.helperProportions.height/2&&h-b.helperProportions.height/2<l;case"pointer":var m=(b.positionAbs||b.position.absolute).left+(b.clickOffset||b.offset.click).left,n=(b.positionAbs||b.position.absolute).top+(b.clickOffset||b.offset.click).top,o=a.ui.isOver(n,m,k,i,c.proportions.height,c.proportions.width);return o;case"touch":return(g>=k&&g<=l||h>=k&&h<=l||g<k&&h>l)&&(e>=i&&e<=j||f>=i&&f<=j||e<i&&f>j);default:return!1}},a.ui.ddmanager={current:null,droppables:{"default":[]},prepareOffsets:function(b,c){var d=a.ui.ddmanager.droppables[b.options.scope]||[],e=c?c.type:null,f=(b.currentItem||b.element).find(":data(droppable)").andSelf();droppablesLoop:for(var g=0;g<d.length;g++){if(d[g].options.disabled||b&&!d[g].accept.call(d[g].element[0],b.currentItem||b.element))continue;for(var h=0;h<f.length;h++)if(f[h]==d[g].element[0]){d[g].proportions.height=0;continue droppablesLoop}d[g].visible=d[g].element.css("display")!="none";if(!d[g].visible)continue;e=="mousedown"&&d[g]._activate.call(d[g],c),d[g].offset=d[g].element.offset(),d[g].proportions={width:d[g].element[0].offsetWidth,
height:d[g].element[0].offsetHeight}}},drop:function(b,c){var d=!1;a.each(a.ui.ddmanager.droppables[b.options.scope]||[],function(){!this.options||(!this.options.disabled&&this.visible&&a.ui.intersect(b,this,this.options.tolerance)&&(d=this._drop.call(this,c)||d),!this.options.disabled&&this.visible&&this.accept.call(this.element[0],b.currentItem||b.element)&&(this.isout=1,this.isover=0,this._deactivate.call(this,c)))});return d},dragStart:function(b,c){b.element.parents(":not(body,html)").bind("scroll.droppable",function(){b.options.refreshPositions||a.ui.ddmanager.prepareOffsets(b,c)})},drag:function(b,c){b.options.refreshPositions&&a.ui.ddmanager.prepareOffsets(b,c),a.each(a.ui.ddmanager.droppables[b.options.scope]||[],function(){if(!(this.options.disabled||this.greedyChild||!this.visible)){var d=a.ui.intersect(b,this,this.options.tolerance),e=!d&&this.isover==1?"isout":d&&this.isover==0?"isover":null;if(!e)return;var f;if(this.options.greedy){var g=this.element.parents(":data(droppable):eq(0)");g.length&&(f=a.data(g[0],"droppable"),f.greedyChild=e=="isover"?1:0)}f&&e=="isover"&&(f.isover=0,f.isout=1,f._out.call(f,c)),this[e]=1,this[e=="isout"?"isover":"isout"]=0,this[e=="isover"?"_over":"_out"].call(this,c),f&&e=="isout"&&(f.isout=0,f.isover=1,f._over.call(f,c))}})},dragStop:function(b,c){b.element.parents(":not(body,html)").unbind("scroll.droppable"),b.options.refreshPositions||a.ui.ddmanager.prepareOffsets(b,c)}}}(jQuery),function(a,b){a.widget("ui.resizable",a.ui.mouse,{widgetEventPrefix:"resize",options:{alsoResize:!1,animate:!1,animateDuration:"slow",animateEasing:"swing",aspectRatio:!1,autoHide:!1,containment:!1,ghost:!1,grid:!1,handles:"e,s,se",helper:!1,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:1e3},_create:function(){var b=this,c=this.options;this.element.addClass("ui-resizable"),a.extend(this,{_aspectRatio:!!c.aspectRatio,aspectRatio:c.aspectRatio,originalElement:this.element,_proportionallyResizeElements:[],_helper:c.helper||c.ghost||c.animate?c.helper||"ui-resizable-helper":null}),this.element[0].nodeName.match(/canvas|textarea|input|select|button|img/i)&&(this.element.wrap(a('<div class="ui-wrapper" style="overflow: hidden;"></div>').css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")})),this.element=this.element.parent().data("resizable",this.element.data("resizable")),this.elementIsWrapper=!0,this.element.css({marginLeft:this.originalElement.css("marginLeft"),marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom")}),this.originalElement.css({marginLeft:0,marginTop:0,marginRight:0,marginBottom:0}),this.originalResizeStyle=this.originalElement.css("resize"),this.originalElement.css("resize","none"),this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"})),this.originalElement.css({margin:this.originalElement.css("margin")}),this._proportionallyResize()),this.handles=c.handles||(a(".ui-resizable-handle",this.element).length?{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"}:"e,s,se");if(this.handles.constructor==String){this.handles=="all"&&(this.handles="n,e,s,w,se,sw,ne,nw");var d=this.handles.split(",");this.handles={};for(var e=0;e<d.length;e++){var f=a.trim(d[e]),g="ui-resizable-"+f,h=a('<div class="ui-resizable-handle '+g+'"></div>');/sw|se|ne|nw/.test(f)&&h.css({zIndex:++c.zIndex}),"se"==f&&h.addClass("ui-icon ui-icon-gripsmall-diagonal-se"),this.handles[f]=".ui-resizable-"+f,this.element.append(h)}}this._renderAxis=function(b){b=b||this.element;for(var c in this.handles){this.handles[c].constructor==String&&(this.handles[c]=a(this.handles[c],this.element).show());if(this.elementIsWrapper&&this.originalElement[0].nodeName.match(/textarea|input|select|button/i)){var d=a(this.handles[c],this.element),e=0;e=/sw|ne|nw|se|n|s/.test(c)?d.outerHeight():d.outerWidth();var f=["padding",/ne|nw|n/.test(c)?"Top":/se|sw|s/.test(c)?"Bottom":/^e$/.test(c)?"Right":"Left"].join("");b.css(f,e),this._proportionallyResize()}if(!a(this.handles[c]).length)continue}},this._renderAxis(this.element),this._handles=a(".ui-resizable-handle",this.element).disableSelection(),this._handles.mouseover(function(){if(!b.resizing){if(this.className)var a=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i);b.axis=a&&a[1]?a[1]:"se"}}),c.autoHide&&(this._handles.hide(),a(this.element).addClass("ui-resizable-autohide").hover(function(){c.disabled||(a(this).removeClass("ui-resizable-autohide"),b._handles.show())},function(){c.disabled||b.resizing||(a(this).addClass("ui-resizable-autohide"),b._handles.hide())})),this._mouseInit()},destroy:function(){this._mouseDestroy();var b=function(b){a(b).removeClass("ui-resizable ui-resizable-disabled ui-resizable-resizing").removeData("resizable").unbind(".resizable").find(".ui-resizable-handle").remove()};if(this.elementIsWrapper){b(this.element);var c=this.element;c.after(this.originalElement.css({position:c.css("position"),width:c.outerWidth(),height:c.outerHeight(),top:c.css("top"),left:c.css("left")})).remove()}this.originalElement.css("resize",this.originalResizeStyle),b(this.originalElement);return this},_mouseCapture:function(b){var c=!1;for(var d in this.handles)a(this.handles[d])[0]==b.target&&(c=!0);return!this.options.disabled&&c},_mouseStart:function(b){var d=this.options,e=this.element.position(),f=this.element;this.resizing=!0,this.documentScroll={top:a(document).scrollTop(),left:a(document).scrollLeft()},(f.is(".ui-draggable")||/absolute/.test(f.css("position")))&&f.css({position:"absolute",top:e.top,left:e.left}),this._renderProxy();var g=c(this.helper.css("left")),h=c(this.helper.css("top"));d.containment&&(g+=a(d.containment).scrollLeft()||0,h+=a(d.containment).scrollTop()||0),this.offset=this.helper.offset(),this.position={left:g,top:h},this.size=this._helper?{width:f.outerWidth(),height:f.outerHeight()}:{width:f.width(),height:f.height()},this.originalSize=this._helper?{width:f.outerWidth(),height:f.outerHeight()}:{width:f.width(),height:f.height()},this.originalPosition={left:g,top:h},this.sizeDiff={width:f.outerWidth()-f.width(),height:f.outerHeight()-f.height()},this.originalMousePosition={left:b.pageX,top:b.pageY},this.aspectRatio=typeof d.aspectRatio=="number"?d.aspectRatio:this.originalSize.width/this.originalSize.height||1;var i=a(".ui-resizable-"+this.axis).css("cursor");a("body").css("cursor",i=="auto"?this.axis+"-resize":i),f.addClass("ui-resizable-resizing"),this._propagate("start",b);return!0},_mouseDrag:function(b){var c=this.helper,d=this.options,e={},f=this,g=this.originalMousePosition,h=this.axis,i=b.pageX-g.left||0,j=b.pageY-g.top||0,k=this._change[h];if(!k)return!1;var l=k.apply(this,[b,i,j]),m=a.browser.msie&&a.browser.version<7,n=this.sizeDiff;this._updateVirtualBoundaries(b.shiftKey);if(this._aspectRatio||b.shiftKey)l=this._updateRatio(l,b);l=this._respectSize(l,b),this._propagate("resize",b),c.css({top:this.position.top+"px",left:this.position.left+"px",width:this.size.width+"px",height:this.size.height+"px"}),!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize(),this._updateCache(l),this._trigger("resize",b,this.ui());return!1},_mouseStop:function(b){this.resizing=!1;var c=this.options,d=this;if(this._helper){var e=this._proportionallyResizeElements,f=e.length&&/textarea/i.test(e[0].nodeName),g=f&&a.ui.hasScroll(e[0],"left")?0:d.sizeDiff.height,h=f?0:d.sizeDiff.width,i={width:d.helper.width()-h,height:d.helper.height()-g},j=parseInt(d.element.css("left"),10)+(d.position.left-d.originalPosition.left)||null,k=parseInt(d.element.css("top"),10)+(d.position.top-d.originalPosition.top)||null;c.animate||this.element.css(a.extend(i,{top:k,left:j})),d.helper.height(d.size.height),d.helper.width(d.size.width),this._helper&&!c.animate&&this._proportionallyResize()}a("body").css("cursor","auto"),this.element.removeClass("ui-resizable-resizing"),this._propagate("stop",b),this._helper&&this.helper.remove();return!1},_updateVirtualBoundaries:function(a){var b=this.options,c,e,f,g,h;h={minWidth:d(b.minWidth)?b.minWidth:0,maxWidth:d(b.maxWidth)?b.maxWidth:Infinity,minHeight:d(b.minHeight)?b.minHeight:0,maxHeight:d(b.maxHeight)?b.maxHeight:Infinity};if(this._aspectRatio||a)c=h.minHeight*this.aspectRatio,f=h.minWidth/this.aspectRatio,e=h.maxHeight*this.aspectRatio,g=h.maxWidth/this.aspectRatio,c>h.minWidth&&(h.minWidth=c),f>h.minHeight&&(h.minHeight=f),e<h.maxWidth&&(h.maxWidth=e),g<h.maxHeight&&(h.maxHeight=g);this._vBoundaries=h},_updateCache:function(a){var b=this.options;this.offset=this.helper.offset(),d(a.left)&&(this.position.left=a.left),d(a.top)&&(this.position.top=a.top),d(a.height)&&(this.size.height=a.height),d(a.width)&&(this.size.width=a.width)},_updateRatio:function(a,b){var c=this.options,e=this.position,f=this.size,g=this.axis;d(a.height)?a.width=a.height*this.aspectRatio:d(a.width)&&(a.height=a.width/this.aspectRatio),g=="sw"&&(a.left=e.left+(f.width-a.width),a.top=null),g=="nw"&&(a.top=e.top+(f.height-a.height),a.left=e.left+(f.width-a.width));return a},_respectSize:function(a,b){var c=this.helper,e=this._vBoundaries,f=this._aspectRatio||b.shiftKey,g=this.axis,h=d(a.width)&&e.maxWidth&&e.maxWidth<a.width,i=d(a.height)&&e.maxHeight&&e.maxHeight<a.height,j=d(a.width)&&e.minWidth&&e.minWidth>a.width,k=d(a.height)&&e.minHeight&&e.minHeight>a.height;j&&(a.width=e.minWidth),k&&(a.height=e.minHeight),h&&(a.width=e.maxWidth),i&&(a.height=e.maxHeight);var l=this.originalPosition.left+this.originalSize.width,m=this.position.top+this.size.height,n=/sw|nw|w/.test(g),o=/nw|ne|n/.test(g);j&&n&&(a.left=l-e.minWidth),h&&n&&(a.left=l-e.maxWidth),k&&o&&(a.top=m-e.minHeight),i&&o&&(a.top=m-e.maxHeight);var p=!a.width&&!a.height;p&&!a.left&&a.top?a.top=null:p&&!a.top&&a.left&&(a.left=null);return a},_proportionallyResize:function(){var b=this.options;if(!!this._proportionallyResizeElements.length){var c=this.helper||this.element;for(var d=0;d<this._proportionallyResizeElements.length;d++){var e=this._proportionallyResizeElements[d];if(!this.borderDif){var f=[e.css("borderTopWidth"),e.css("borderRightWidth"),e.css("borderBottomWidth"),e.css("borderLeftWidth")],g=[e.css("paddingTop"),e.css("paddingRight"),e.css("paddingBottom"),e.css("paddingLeft")];this.borderDif=a.map(f,function(a,b){var c=parseInt(a,10)||0,d=parseInt(g[b],10)||0;return c+d})}if(a.browser.msie&&(!!a(c).is(":hidden")||!!a(c).parents(":hidden").length))continue;e.css({height:c.height()-this.borderDif[0]-this.borderDif[2]||0,width:c.width()-this.borderDif[1]-this.borderDif[3]||0})}}},_renderProxy:function(){var b=this.element,c=this.options;this.elementOffset=b.offset();if(this._helper){this.helper=this.helper||a('<div style="overflow:hidden;"></div>');var d=a.browser.msie&&a.browser.version<7,e=d?1:0,f=d?2:-1;this.helper.addClass(this._helper).css({width:this.element.outerWidth()+f,height:this.element.outerHeight()+f,position:"absolute",left:this.elementOffset.left-e+"px",top:this.elementOffset.top-e+"px",zIndex:++c.zIndex}),this.helper.appendTo("body").disableSelection()}else this.helper=this.element},_change:{e:function(a,b,c){return{width:this.originalSize.width+b}},w:function(a,b,c){var d=this.options,e=this.originalSize,f=this.originalPosition;return{left:f.left+b,width:e.width-b}},n:function(a,b,c){var d=this.options,e=this.originalSize,f=this.originalPosition;return{top:f.top+c,height:e.height-c}},s:function(a,b,c){return{height:this.originalSize.height+c}},se:function(b,c,d){return a.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[b,c,d]))},sw:function(b,c,d){return a.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[b,c,d]))},ne:function(b,c,d){return a.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[b,c,d]))},nw:function(b,c,d){return a.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[b,c,d]))}},_propagate:function(b,c){a.ui.plugin.call(this,b,[c,this.ui()]),b!="resize"&&this._trigger(b,c,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}}),a.extend(a.ui.resizable,{version:"1.8.18"}),a.ui.plugin.add("resizable","alsoResize",{start:function(b,c){var d=a(this).data("resizable"),e=d.options,f=function(b){a(b).each(function(){var b=a(this);b.data("resizable-alsoresize",{width:parseInt(b.width(),10),height:parseInt(b.height(),10),left:parseInt(b.css("left"),10),top:parseInt(b.css("top"),10)})})};typeof e.alsoResize=="object"&&!e.alsoResize.parentNode?e.alsoResize.length?(e.alsoResize=e.alsoResize[0],f(e.alsoResize)):a.each(e.alsoResize,function(a){f(a)}):f(e.alsoResize)},resize:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.originalSize,g=d.originalPosition,h={height:d.size.height-f.height||0,width:d.size.width-f.width||0,top:d.position.top-g.top||0,left:d.position.left-g.left||0},i=function(b,d){a(b).each(function(){var b=a(this),e=a(this).data("resizable-alsoresize"),f={},g=d&&d.length?d:b.parents(c.originalElement[0]).length?["width","height"]:["width","height","top","left"];a.each(g,function(a,b){var c=(e[b]||0)+(h[b]||0);c&&c>=0&&(f[b]=c||null)}),b.css(f)})};typeof e.alsoResize=="object"&&!e.alsoResize.nodeType?a.each(e.alsoResize,function(a,b){i(a,b)}):i(e.alsoResize)},stop:function(b,c){a(this).removeData("resizable-alsoresize")}}),a.ui.plugin.add("resizable","animate",{stop:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d._proportionallyResizeElements,g=f.length&&/textarea/i.test(f[0].nodeName),h=g&&a.ui.hasScroll(f[0],"left")?0:d.sizeDiff.height,i=g?0:d.sizeDiff.width,j={width:d.size.width-i,height:d.size.height-h},k=parseInt(d.element.css("left"),10)+(d.position.left-d.originalPosition.left)||null,l=parseInt(d.element.css("top"),10)+(d.position.top-d.originalPosition.top)||null;d.element.animate(a.extend(j,l&&k?{top:l,left:k}:{}),{duration:e.animateDuration,easing:e.animateEasing,step:function(){var c={width:parseInt(d.element.css("width"),10),height:parseInt(d.element.css("height"),10),top:parseInt(d.element.css("top"),10),left:parseInt(d.element.css("left"),10)};f&&f.length&&a(f[0]).css({width:c.width,height:c.height}),d._updateCache(c),d._propagate("resize",b)}})}}),a.ui.plugin.add("resizable","containment",{start:function(b,d){var e=a(this).data("resizable"),f=e.options,g=e.element,h=f.containment,i=h instanceof a?h.get(0):/parent/.test(h)?g.parent().get(0):h;if(!!i){e.containerElement=a(i);if(/document/.test(h)||h==document)e.containerOffset={left:0,top:0},e.containerPosition={left:0,top:0},e.parentData={element:a(document),left:0,top:0,width:a(document).width(),height:a(document).height()||document.body.parentNode.scrollHeight};else{var j=a(i),k=[];a(["Top","Right","Left","Bottom"]).each(function(a,b){k[a]=c(j.css("padding"+b))}),e.containerOffset=j.offset(),e.containerPosition=j.position(),e.containerSize={height:j.innerHeight()-k[3],width:j.innerWidth()-k[1]};var l=e.containerOffset,m=e.containerSize.height,n=e.containerSize.width,o=a.ui.hasScroll(i,"left")?i.scrollWidth:n,p=a.ui.hasScroll(i)?i.scrollHeight:m;e.parentData={element:i,left:l.left,top:l.top,width:o,height:p}}}},resize:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.containerSize,g=d.containerOffset,h=d.size,i=d.position,j=d._aspectRatio||b.shiftKey,k={top:0,left:0},l=d.containerElement;l[0]!=document&&/static/.test(l.css("position"))&&(k=g),i.left<(d._helper?g.left:0)&&(d.size.width=d.size.width+(d._helper?d.position.left-g.left:d.position.left-k.left),j&&(d.size.height=d.size.width/e.aspectRatio),d.position.left=e.helper?g.left:0),i.top<(d._helper?g.top:0)&&(d.size.height=d.size.height+(d._helper?d.position.top-g.top:d.position.top),j&&(d.size.width=d.size.height*e.aspectRatio),d.position.top=d._helper?g.top:0),d.offset.left=d.parentData.left+d.position.left,d.offset.top=d.parentData.top+d.position.top;var m=Math.abs((d._helper?d.offset.left-k.left:d.offset.left-k.left)+d.sizeDiff.width),n=Math.abs((d._helper?d.offset.top-k.top:d.offset.top-g.top)+d.sizeDiff.height),o=d.containerElement.get(0)==d.element.parent().get(0),p=/relative|absolute/.test(d.containerElement.css("position"));o&&p&&(m-=d.parentData.left),m+d.size.width>=d.parentData.width&&(d.size.width=d.parentData.width-m,j&&(d.size.height=d.size.width/d.aspectRatio)),n+d.size.height>=d.parentData.height&&(d.size.height=d.parentData.height-n,j&&(d.size.width=d.size.height*d.aspectRatio))},stop:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.position,g=d.containerOffset,h=d.containerPosition,i=d.containerElement,j=a(d.helper),k=j.offset(),l=j.outerWidth()-d.sizeDiff.width,m=j.outerHeight()-d.sizeDiff.height;d._helper&&!e.animate&&/relative/.test(i.css("position"))&&a(this).css({left:k.left-h.left-g.left,width:l,height:m}),d._helper&&!e.animate&&/static/.test(i.css("position"))&&a(this).css({left:k.left-h.left-g.left,width:l,height:m})}}),a.ui.plugin.add("resizable","ghost",{start:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.size;d.ghost=d.originalElement.clone(),d.ghost.css({opacity:.25,display:"block",position:"relative",height:f.height,width:f.width,margin:0,left:0,top:0}).addClass("ui-resizable-ghost").addClass(typeof e.ghost=="string"?e.ghost:""),d.ghost.appendTo(d.helper)},resize:function(b,c){var d=a(this).data("resizable"),e=d.options;d.ghost&&d.ghost.css({position:"relative",height:d.size.height,width:d.size.width})},stop:function(b,c){var d=a(this).data("resizable"),e=d.options;d.ghost&&d.helper&&d.helper.get(0).removeChild(d.ghost.get(0))}}),a.ui.plugin.add("resizable","grid",{resize:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.size,g=d.originalSize,h=d.originalPosition,i=d.axis,j=e._aspectRatio||b.shiftKey;e.grid=typeof e.grid=="number"?[e.grid,e.grid]:e.grid;var k=Math.round((f.width-g.width)/(e.grid[0]||1))*(e.grid[0]||1),l=Math.round((f.height-g.height)/(e.grid[1]||1))*(e.grid[1]||1);/^(se|s|e)$/.test(i)?(d.size.width=g.width+k,d.size.height=g.height+l):/^(ne)$/.test(i)?(d.size.width=g.width+k,d.size.height=g.height+l,d.position.top=h.top-l):/^(sw)$/.test(i)?(d.size.width=g.width+k,d.size.height=g.height+l,d.position.left=h.left-k):(d.size.width=g.width+k,d.size.height=g.height+l,d.position.top=h.top-l,d.position.left=h.left-k)}});var c=function(a){return parseInt(a,10)||0},d=function(a){return!isNaN(parseInt(a,10))}}(jQuery),function(a,b){a.widget("ui.selectable",a.ui.mouse,{options:{appendTo:"body",autoRefresh:!0,distance:0,filter:"*",tolerance:"touch"},_create:function(){var b=this;this.element.addClass("ui-selectable"),this.dragged=!1;var c;this.refresh=function(){c=a(b.options.filter,b.element[0]),c.addClass("ui-selectee"),c.each(function(){var b=a(this),c=b.offset();a.data(this,"selectable-item",{element:this,$element:b,left:c.left,top:c.top,right:c.left+b.outerWidth(),bottom:c.top+b.outerHeight(),startselected:!1,selected:b.hasClass("ui-selected"),selecting:b.hasClass("ui-selecting"),unselecting:b.hasClass("ui-unselecting")})})},this.refresh(),this.selectees=c.addClass("ui-selectee"),this._mouseInit(),this.helper=a("<div class='ui-selectable-helper'></div>")},destroy:function(){this.selectees.removeClass("ui-selectee").removeData("selectable-item"),this.element.removeClass("ui-selectable ui-selectable-disabled").removeData("selectable").unbind(".selectable"),this._mouseDestroy();return this},_mouseStart:function(b){var c=this;this.opos=[b.pageX,b.pageY];if(!this.options.disabled){var d=this.options;this.selectees=a(d.filter,this.element[0]),this._trigger("start",b),a(d.appendTo).append(this.helper),this.helper.css({left:b.clientX,top:b.clientY,width:0,height:0}),d.autoRefresh&&this.refresh(),this.selectees.filter(".ui-selected").each(function(){var d=a.data(this,"selectable-item");d.startselected=!0,!b.metaKey&&!b.ctrlKey&&(d.$element.removeClass("ui-selected"),d.selected=!1,d.$element.addClass("ui-unselecting"),d.unselecting=!0,c._trigger("unselecting",b,{unselecting:d.element}))}),a(b.target).parents().andSelf().each(function(){var d=a.data(this,"selectable-item");if(d){var e=!b.metaKey&&!b.ctrlKey||!d.$element.hasClass("ui-selected");d.$element.removeClass(e?"ui-unselecting":"ui-selected").addClass(e?"ui-selecting":"ui-unselecting"),d.unselecting=!e,d.selecting=e,d.selected=e,e?c._trigger("selecting",b,{selecting:d.element}):c._trigger("unselecting",b,{unselecting:d.element});return!1}})}},_mouseDrag:function(b){var c=this;this.dragged=!0;if(!this.options.disabled){var d=this.options,e=this.opos[0],f=this.opos[1],g=b.pageX,h=b.pageY;if(e>g){var i=g;g=e,e=i}if(f>h){var i=h;h=f,f=i}this.helper.css({left:e,top:f,width:g-e,height:h-f}),this.selectees.each(function(){var i=a.data(this,"selectable-item");if(!!i&&i.element!=c.element[0]){var j=!1;d.tolerance=="touch"?j=!(i.left>g||i.right<e||i.top>h||i.bottom<f):d.tolerance=="fit"&&(j=i.left>e&&i.right<g&&i.top>f&&i.bottom<h),j?(i.selected&&(i.$element.removeClass("ui-selected"),i.selected=!1),i.unselecting&&(i.$element.removeClass("ui-unselecting"),i.unselecting=!1),i.selecting||(i.$element.addClass("ui-selecting"),i.selecting=!0,c._trigger("selecting",b,{selecting:i.element}))):(i.selecting&&((b.metaKey||b.ctrlKey)&&i.startselected?(i.$element.removeClass("ui-selecting"),i.selecting=!1,i.$element.addClass("ui-selected"),i.selected=!0):(i.$element.removeClass("ui-selecting"),i.selecting=!1,i.startselected&&(i.$element.addClass("ui-unselecting"),i.unselecting=!0),c._trigger("unselecting",b,{unselecting:i.element}))),i.selected&&!b.metaKey&&!b.ctrlKey&&!i.startselected&&(i.$element.removeClass("ui-selected"),i.selected=!1,i.$element.addClass("ui-unselecting"),i.unselecting=!0,c._trigger("unselecting",b,{unselecting:i.element})))}});return!1}},_mouseStop:function(b){var c=this;this.dragged=!1;var d=this.options;a(".ui-unselecting",this.element[0]).each(function(){var d=a.data(this,"selectable-item");d.$element.removeClass("ui-unselecting"),d.unselecting=!1,d.startselected=!1,c._trigger("unselected",b,{unselected:d.element})}),a(".ui-selecting",this.element[0]).each(function(){var d=a.data(this,"selectable-item");d.$element.removeClass("ui-selecting").addClass("ui-selected"),d.selecting=!1,d.selected=!0,d.startselected=!0,c._trigger("selected",b,{selected:d.element})}),this._trigger("stop",b),this.helper.remove();return!1}}),a.extend(a.ui.selectable,{version:"1.8.18"})}(jQuery),function(a,b){a.widget("ui.sortable",a.ui.mouse,{widgetEventPrefix:"sort",ready:!1,options:{appendTo:"parent",axis:!1,connectWith:!1,containment:!1,cursor:"auto",cursorAt:!1,dropOnEmpty:!0,forcePlaceholderSize:!1,forceHelperSize:!1,grid:!1,handle:!1,helper:"original",items:"> *",opacity:!1,placeholder:!1,revert:!1,scroll:!0,scrollSensitivity:20,scrollSpeed:20,scope:"default",tolerance:"intersect",zIndex:1e3},_create:function(){var a=this.options;this.containerCache={},this.element.addClass("ui-sortable"),this.refresh(),this.floating=this.items.length?a.axis==="x"||/left|right/.test(this.items[0].item.css("float"))||/inline|table-cell/.test(this.items[0].item.css("display")):!1,this.offset=this.element.offset(),this._mouseInit(),this.ready=!0},destroy:function(){a.Widget.prototype.destroy.call(this),this.element.removeClass("ui-sortable ui-sortable-disabled"),this._mouseDestroy();for(var b=this.items.length-1;b>=0;b--)this.items[b].item.removeData(this.widgetName+"-item");return this},_setOption:function(b,c){b==="disabled"?(this.options[b]=c,this.widget()[c?"addClass":"removeClass"]("ui-sortable-disabled")):a.Widget.prototype._setOption.apply(this,arguments)},_mouseCapture:function(b,c){var d=this;if(this.reverting)return!1;if(this.options.disabled||this.options.type=="static")return!1;this._refreshItems(b);var e=null,f=this,g=a(b.target).parents().each(function(){if(a.data(this,d.widgetName+"-item")==f){e=a(this);return!1}});a.data(b.target,d.widgetName+"-item")==f&&(e=a(b.target));if(!e)return!1;if(this.options.handle&&!c){var h=!1;a(this.options.handle,e).find("*").andSelf().each(function(){this==b.target&&(h=!0)});if(!h)return!1}this.currentItem=e,this._removeCurrentsFromItems();return!0},_mouseStart:function(b,c,d){var e=this.options,f=this;this.currentContainer=this,this.refreshPositions(),this.helper=this._createHelper(b),this._cacheHelperProportions(),this._cacheMargins(),this.scrollParent=this.helper.scrollParent(),this.offset=this.currentItem.offset(),this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left},this.helper.css("position","absolute"),this.cssPosition=this.helper.css("position"),a.extend(this.offset,{click:{left:b.pageX-this.offset.left,top:b.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()}),this.originalPosition=this._generatePosition(b),this.originalPageX=b.pageX,this.originalPageY=b.pageY,e.cursorAt&&this._adjustOffsetFromHelper(e.cursorAt),this.domPosition={prev:this.currentItem.prev()[0],parent:this.currentItem.parent()[0]},this.helper[0]!=this.currentItem[0]&&this.currentItem.hide(),this._createPlaceholder(),e.containment&&this._setContainment(),e.cursor&&(a("body").css("cursor")&&(this._storedCursor=a("body").css("cursor")),a("body").css("cursor",e.cursor)),e.opacity&&(this.helper.css("opacity")&&(this._storedOpacity=this.helper.css("opacity")),this.helper.css("opacity",e.opacity)),e.zIndex&&(this.helper.css("zIndex")&&(this._storedZIndex=this.helper.css("zIndex")),this.helper.css("zIndex",e.zIndex)),this.scrollParent[0]!=document&&this.scrollParent[0].tagName!="HTML"&&(this.overflowOffset=this.scrollParent.offset()),this._trigger("start",b,this._uiHash()),this._preserveHelperProportions||this._cacheHelperProportions();if(!d)for(var g=this.containers.length-1;g>=0;g--)this.containers[g]._trigger("activate",b,f._uiHash(this));a.ui.ddmanager&&(a.ui.ddmanager.current=this),a.ui.ddmanager&&!e.dropBehaviour&&a.ui.ddmanager.prepareOffsets(this,b),this.dragging=!0,this.helper.addClass("ui-sortable-helper"),this._mouseDrag(b);return!0},_mouseDrag:function(b){this.position=this._generatePosition(b),this.positionAbs=this._convertPositionTo("absolute"),this.lastPositionAbs||(this.lastPositionAbs=this.positionAbs);if(this.options.scroll){var c=this.options,d=!1;this.scrollParent[0]!=document&&this.scrollParent[0].tagName!="HTML"?(this.overflowOffset.top+this.scrollParent[0].offsetHeight-b.pageY<c.scrollSensitivity?this.scrollParent[0].scrollTop=d=this.scrollParent[0].scrollTop+c.scrollSpeed:b.pageY-this.overflowOffset.top<c.scrollSensitivity&&(this.scrollParent[0].scrollTop=d=this.scrollParent[0].scrollTop-c.scrollSpeed),this.overflowOffset.left+this.scrollParent[0].offsetWidth-b.pageX<c.scrollSensitivity?this.scrollParent[0].scrollLeft=d=this.scrollParent[0].scrollLeft+c.scrollSpeed:b.pageX-this.overflowOffset.left<c.scrollSensitivity&&(this.scrollParent[0].scrollLeft=d=this.scrollParent[0].scrollLeft-c.scrollSpeed)):(b.pageY-a(document).scrollTop()<c.scrollSensitivity?d=a(document).scrollTop(a(document).scrollTop()-c.scrollSpeed):a(window).height()-(b.pageY-a(document).scrollTop())<c.scrollSensitivity&&(d=a(document).scrollTop(a(document).scrollTop()+c.scrollSpeed)),b.pageX-a(document).scrollLeft()<c.scrollSensitivity?d=a(document).scrollLeft(a(document).scrollLeft()-c.scrollSpeed):a(window).width()-(b.pageX-a(document).scrollLeft())<c.scrollSensitivity&&(d=a(document).scrollLeft(a(document).scrollLeft()+c.scrollSpeed))),d!==!1&&a.ui.ddmanager&&!c.dropBehaviour&&a.ui.ddmanager.prepareOffsets(this,b)}this.positionAbs=this._convertPositionTo("absolute");if(!this.options.axis||this.options.axis!="y")this.helper[0].style.left=this.position.left+"px";if(!this.options.axis||this.options.axis!="x")this.helper[0].style.top=this.position.top+"px";for(var e=this.items.length-1;e>=0;e--){var f=this.items[e],g=f.item[0],h=this._intersectsWithPointer(f);if(!h)continue;if(g!=this.currentItem[0]&&this.placeholder[h==1?"next":"prev"]()[0]!=g&&!a.ui.contains(this.placeholder[0],g)&&(this.options.type=="semi-dynamic"?!a.ui.contains(this.element[0],g):!0)){this.direction=h==1?"down":"up";if(this.options.tolerance=="pointer"||this._intersectsWithSides(f))this._rearrange(b,f);else break;this._trigger("change",b,this._uiHash());break}}this._contactContainers(b),a.ui.ddmanager&&a.ui.ddmanager.drag(this,b),this._trigger("sort",b,this._uiHash()),this.lastPositionAbs=this.positionAbs;return!1},_mouseStop:function(b,c){if(!!b){a.ui.ddmanager&&!this.options.dropBehaviour&&a.ui.ddmanager.drop(this,b);if(this.options.revert){var d=this,e=d.placeholder.offset();d.reverting=!0,a(this.helper).animate({left:e.left-this.offset.parent.left-d.margins.left+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollLeft),top:e.top-this.offset.parent.top-d.margins.top+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollTop)},parseInt(this.options.revert,10)||500,function(){d._clear(b)})}else this._clear(b,c);return!1}},cancel:function(){var b=this;if(this.dragging){this._mouseUp({target:null}),this.options.helper=="original"?this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper"):this.currentItem.show();for(var c=this.containers.length-1;c>=0;c--)this.containers[c]._trigger("deactivate",null,b._uiHash(this)),this.containers[c].containerCache.over&&(this.containers[c]._trigger("out",null,b._uiHash(this)),this.containers[c].containerCache.over=0)}this.placeholder&&(this.placeholder[0].parentNode&&this.placeholder[0].parentNode.removeChild(this.placeholder[0]),this.options.helper!="original"&&this.helper&&this.helper[0].parentNode&&this.helper.remove(),a.extend(this,{helper:null,dragging:!1,reverting:!1,_noFinalSort:null}),this.domPosition.prev?a(this.domPosition.prev).after(this.currentItem):a(this.domPosition.parent).prepend(this.currentItem));return this},serialize:function(b){var c=this._getItemsAsjQuery(b&&b.connected),d=[];b=b||{},a(c).each(function(){var c=(a(b.item||this).attr(b.attribute||"id")||"").match(b.expression||/(.+)[-=_](.+)/);c&&d.push((b.key||c[1]+"[]")+"="+(b.key&&b.expression?c[1]:c[2]))}),!d.length&&b.key&&d.push(b.key+"=");return d.join("&")},toArray:function(b){var c=this._getItemsAsjQuery(b&&b.connected),d=[];b=b||{},c.each(function(){d.push(a(b.item||this).attr(b.attribute||"id")||"")});return d},_intersectsWith:function(a){var b=this.positionAbs.left,c=b+this.helperProportions.width,d=this.positionAbs.top,e=d+this.helperProportions.height,f=a.left,g=f+a.width,h=a.top,i=h+a.height,j=this.offset.click.top,k=this.offset.click.left,l=d+j>h&&d+j<i&&b+k>f&&b+k<g;return this.options.tolerance=="pointer"||this.options.forcePointerForContainers||this.options.tolerance!="pointer"&&this.helperProportions[this.floating?"width":"height"]>a[this.floating?"width":"height"]?l:f<b+this.helperProportions.width/2&&c-this.helperProportions.width/2<g&&h<d+this.helperProportions.height/2&&e-this.helperProportions.height/2<i},_intersectsWithPointer:function(b){var c=a.ui.isOverAxis(this.positionAbs.top+this.offset.click.top,b.top,b.height),d=a.ui.isOverAxis(this.positionAbs.left+this.offset.click.left,b.left,b.width),e=c&&d,f=this._getDragVerticalDirection(),g=this._getDragHorizontalDirection();if(!e)return!1;return this.floating?g&&g=="right"||f=="down"?2:1:f&&(f=="down"?2:1)},_intersectsWithSides:function(b){var c=a.ui.isOverAxis(this.positionAbs.top+this.offset.click.top,b.top+b.height/2,b.height),d=a.ui.isOverAxis(this.positionAbs.left+this.offset.click.left,b.left+b.width/2,b.width),e=this._getDragVerticalDirection(),f=this._getDragHorizontalDirection();return this.floating&&f?f=="right"&&d||f=="left"&&!d:e&&(e=="down"&&c||e=="up"&&!c)},_getDragVerticalDirection:function(){var a=this.positionAbs.top-this.lastPositionAbs.top;return a!=0&&(a>0?"down":"up")},_getDragHorizontalDirection:function(){var a=this.positionAbs.left-this.lastPositionAbs.left;return a!=0&&(a>0?"right":"left")},refresh:function(a){this._refreshItems(a),this.refreshPositions();return this},_connectWith:function(){var a=this.options;return a.connectWith.constructor==String?[a.connectWith]:a.connectWith},_getItemsAsjQuery:function(b){var c=this,d=[],e=[],f=this._connectWith();if(f&&b)for(var g=f.length-1;g>=0;g--){var h=a(f[g]);for(var i=h.length-1;i>=0;i--){var j=a.data(h[i],this.widgetName);j&&j!=this&&!j.options.disabled&&e.push([a.isFunction(j.options.items)?j.options.items.call(j.element):a(j.options.items,j.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),j])}}e.push
([a.isFunction(this.options.items)?this.options.items.call(this.element,null,{options:this.options,item:this.currentItem}):a(this.options.items,this.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),this]);for(var g=e.length-1;g>=0;g--)e[g][0].each(function(){d.push(this)});return a(d)},_removeCurrentsFromItems:function(){var a=this.currentItem.find(":data("+this.widgetName+"-item)");for(var b=0;b<this.items.length;b++)for(var c=0;c<a.length;c++)a[c]==this.items[b].item[0]&&this.items.splice(b,1)},_refreshItems:function(b){this.items=[],this.containers=[this];var c=this.items,d=this,e=[[a.isFunction(this.options.items)?this.options.items.call(this.element[0],b,{item:this.currentItem}):a(this.options.items,this.element),this]],f=this._connectWith();if(f&&this.ready)for(var g=f.length-1;g>=0;g--){var h=a(f[g]);for(var i=h.length-1;i>=0;i--){var j=a.data(h[i],this.widgetName);j&&j!=this&&!j.options.disabled&&(e.push([a.isFunction(j.options.items)?j.options.items.call(j.element[0],b,{item:this.currentItem}):a(j.options.items,j.element),j]),this.containers.push(j))}}for(var g=e.length-1;g>=0;g--){var k=e[g][1],l=e[g][0];for(var i=0,m=l.length;i<m;i++){var n=a(l[i]);n.data(this.widgetName+"-item",k),c.push({item:n,instance:k,width:0,height:0,left:0,top:0})}}},refreshPositions:function(b){this.offsetParent&&this.helper&&(this.offset.parent=this._getParentOffset());for(var c=this.items.length-1;c>=0;c--){var d=this.items[c];if(d.instance!=this.currentContainer&&this.currentContainer&&d.item[0]!=this.currentItem[0])continue;var e=this.options.toleranceElement?a(this.options.toleranceElement,d.item):d.item;b||(d.width=e.outerWidth(),d.height=e.outerHeight());var f=e.offset();d.left=f.left,d.top=f.top}if(this.options.custom&&this.options.custom.refreshContainers)this.options.custom.refreshContainers.call(this);else for(var c=this.containers.length-1;c>=0;c--){var f=this.containers[c].element.offset();this.containers[c].containerCache.left=f.left,this.containers[c].containerCache.top=f.top,this.containers[c].containerCache.width=this.containers[c].element.outerWidth(),this.containers[c].containerCache.height=this.containers[c].element.outerHeight()}return this},_createPlaceholder:function(b){var c=b||this,d=c.options;if(!d.placeholder||d.placeholder.constructor==String){var e=d.placeholder;d.placeholder={element:function(){var b=a(document.createElement(c.currentItem[0].nodeName)).addClass(e||c.currentItem[0].className+" ui-sortable-placeholder").removeClass("ui-sortable-helper")[0];e||(b.style.visibility="hidden");return b},update:function(a,b){if(!e||!!d.forcePlaceholderSize)b.height()||b.height(c.currentItem.innerHeight()-parseInt(c.currentItem.css("paddingTop")||0,10)-parseInt(c.currentItem.css("paddingBottom")||0,10)),b.width()||b.width(c.currentItem.innerWidth()-parseInt(c.currentItem.css("paddingLeft")||0,10)-parseInt(c.currentItem.css("paddingRight")||0,10))}}}c.placeholder=a(d.placeholder.element.call(c.element,c.currentItem)),c.currentItem.after(c.placeholder),d.placeholder.update(c,c.placeholder)},_contactContainers:function(b){var c=null,d=null;for(var e=this.containers.length-1;e>=0;e--){if(a.ui.contains(this.currentItem[0],this.containers[e].element[0]))continue;if(this._intersectsWith(this.containers[e].containerCache)){if(c&&a.ui.contains(this.containers[e].element[0],c.element[0]))continue;c=this.containers[e],d=e}else this.containers[e].containerCache.over&&(this.containers[e]._trigger("out",b,this._uiHash(this)),this.containers[e].containerCache.over=0)}if(!!c)if(this.containers.length===1)this.containers[d]._trigger("over",b,this._uiHash(this)),this.containers[d].containerCache.over=1;else if(this.currentContainer!=this.containers[d]){var f=1e4,g=null,h=this.positionAbs[this.containers[d].floating?"left":"top"];for(var i=this.items.length-1;i>=0;i--){if(!a.ui.contains(this.containers[d].element[0],this.items[i].item[0]))continue;var j=this.items[i][this.containers[d].floating?"left":"top"];Math.abs(j-h)<f&&(f=Math.abs(j-h),g=this.items[i])}if(!g&&!this.options.dropOnEmpty)return;this.currentContainer=this.containers[d],g?this._rearrange(b,g,null,!0):this._rearrange(b,null,this.containers[d].element,!0),this._trigger("change",b,this._uiHash()),this.containers[d]._trigger("change",b,this._uiHash(this)),this.options.placeholder.update(this.currentContainer,this.placeholder),this.containers[d]._trigger("over",b,this._uiHash(this)),this.containers[d].containerCache.over=1}},_createHelper:function(b){var c=this.options,d=a.isFunction(c.helper)?a(c.helper.apply(this.element[0],[b,this.currentItem])):c.helper=="clone"?this.currentItem.clone():this.currentItem;d.parents("body").length||a(c.appendTo!="parent"?c.appendTo:this.currentItem[0].parentNode)[0].appendChild(d[0]),d[0]==this.currentItem[0]&&(this._storedCSS={width:this.currentItem[0].style.width,height:this.currentItem[0].style.height,position:this.currentItem.css("position"),top:this.currentItem.css("top"),left:this.currentItem.css("left")}),(d[0].style.width==""||c.forceHelperSize)&&d.width(this.currentItem.width()),(d[0].style.height==""||c.forceHelperSize)&&d.height(this.currentItem.height());return d},_adjustOffsetFromHelper:function(b){typeof b=="string"&&(b=b.split(" ")),a.isArray(b)&&(b={left:+b[0],top:+b[1]||0}),"left"in b&&(this.offset.click.left=b.left+this.margins.left),"right"in b&&(this.offset.click.left=this.helperProportions.width-b.right+this.margins.left),"top"in b&&(this.offset.click.top=b.top+this.margins.top),"bottom"in b&&(this.offset.click.top=this.helperProportions.height-b.bottom+this.margins.top)},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();var b=this.offsetParent.offset();this.cssPosition=="absolute"&&this.scrollParent[0]!=document&&a.ui.contains(this.scrollParent[0],this.offsetParent[0])&&(b.left+=this.scrollParent.scrollLeft(),b.top+=this.scrollParent.scrollTop());if(this.offsetParent[0]==document.body||this.offsetParent[0].tagName&&this.offsetParent[0].tagName.toLowerCase()=="html"&&a.browser.msie)b={top:0,left:0};return{top:b.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:b.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if(this.cssPosition=="relative"){var a=this.currentItem.position();return{top:a.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:a.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}}return{top:0,left:0}},_cacheMargins:function(){this.margins={left:parseInt(this.currentItem.css("marginLeft"),10)||0,top:parseInt(this.currentItem.css("marginTop"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var b=this.options;b.containment=="parent"&&(b.containment=this.helper[0].parentNode);if(b.containment=="document"||b.containment=="window")this.containment=[0-this.offset.relative.left-this.offset.parent.left,0-this.offset.relative.top-this.offset.parent.top,a(b.containment=="document"?document:window).width()-this.helperProportions.width-this.margins.left,(a(b.containment=="document"?document:window).height()||document.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top];if(!/^(document|window|parent)$/.test(b.containment)){var c=a(b.containment)[0],d=a(b.containment).offset(),e=a(c).css("overflow")!="hidden";this.containment=[d.left+(parseInt(a(c).css("borderLeftWidth"),10)||0)+(parseInt(a(c).css("paddingLeft"),10)||0)-this.margins.left,d.top+(parseInt(a(c).css("borderTopWidth"),10)||0)+(parseInt(a(c).css("paddingTop"),10)||0)-this.margins.top,d.left+(e?Math.max(c.scrollWidth,c.offsetWidth):c.offsetWidth)-(parseInt(a(c).css("borderLeftWidth"),10)||0)-(parseInt(a(c).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left,d.top+(e?Math.max(c.scrollHeight,c.offsetHeight):c.offsetHeight)-(parseInt(a(c).css("borderTopWidth"),10)||0)-(parseInt(a(c).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top]}},_convertPositionTo:function(b,c){c||(c=this.position);var d=b=="absolute"?1:-1,e=this.options,f=this.cssPosition=="absolute"&&(this.scrollParent[0]==document||!a.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,g=/(html|body)/i.test(f[0].tagName);return{top:c.top+this.offset.relative.top*d+this.offset.parent.top*d-(a.browser.safari&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():g?0:f.scrollTop())*d),left:c.left+this.offset.relative.left*d+this.offset.parent.left*d-(a.browser.safari&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():g?0:f.scrollLeft())*d)}},_generatePosition:function(b){var c=this.options,d=this.cssPosition=="absolute"&&(this.scrollParent[0]==document||!a.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,e=/(html|body)/i.test(d[0].tagName);this.cssPosition=="relative"&&(this.scrollParent[0]==document||this.scrollParent[0]==this.offsetParent[0])&&(this.offset.relative=this._getRelativeOffset());var f=b.pageX,g=b.pageY;if(this.originalPosition){this.containment&&(b.pageX-this.offset.click.left<this.containment[0]&&(f=this.containment[0]+this.offset.click.left),b.pageY-this.offset.click.top<this.containment[1]&&(g=this.containment[1]+this.offset.click.top),b.pageX-this.offset.click.left>this.containment[2]&&(f=this.containment[2]+this.offset.click.left),b.pageY-this.offset.click.top>this.containment[3]&&(g=this.containment[3]+this.offset.click.top));if(c.grid){var h=this.originalPageY+Math.round((g-this.originalPageY)/c.grid[1])*c.grid[1];g=this.containment?h-this.offset.click.top<this.containment[1]||h-this.offset.click.top>this.containment[3]?h-this.offset.click.top<this.containment[1]?h+c.grid[1]:h-c.grid[1]:h:h;var i=this.originalPageX+Math.round((f-this.originalPageX)/c.grid[0])*c.grid[0];f=this.containment?i-this.offset.click.left<this.containment[0]||i-this.offset.click.left>this.containment[2]?i-this.offset.click.left<this.containment[0]?i+c.grid[0]:i-c.grid[0]:i:i}}return{top:g-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+(a.browser.safari&&this.cssPosition=="fixed"?0:this.cssPosition=="fixed"?-this.scrollParent.scrollTop():e?0:d.scrollTop()),left:f-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+(a.browser.safari&&this.cssPosition=="fixed"?0:this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():e?0:d.scrollLeft())}},_rearrange:function(a,b,c,d){c?c[0].appendChild(this.placeholder[0]):b.item[0].parentNode.insertBefore(this.placeholder[0],this.direction=="down"?b.item[0]:b.item[0].nextSibling),this.counter=this.counter?++this.counter:1;var e=this,f=this.counter;window.setTimeout(function(){f==e.counter&&e.refreshPositions(!d)},0)},_clear:function(b,c){this.reverting=!1;var d=[],e=this;!this._noFinalSort&&this.currentItem.parent().length&&this.placeholder.before(this.currentItem),this._noFinalSort=null;if(this.helper[0]==this.currentItem[0]){for(var f in this._storedCSS)if(this._storedCSS[f]=="auto"||this._storedCSS[f]=="static")this._storedCSS[f]="";this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper")}else this.currentItem.show();this.fromOutside&&!c&&d.push(function(a){this._trigger("receive",a,this._uiHash(this.fromOutside))}),(this.fromOutside||this.domPosition.prev!=this.currentItem.prev().not(".ui-sortable-helper")[0]||this.domPosition.parent!=this.currentItem.parent()[0])&&!c&&d.push(function(a){this._trigger("update",a,this._uiHash())});if(!a.ui.contains(this.element[0],this.currentItem[0])){c||d.push(function(a){this._trigger("remove",a,this._uiHash())});for(var f=this.containers.length-1;f>=0;f--)a.ui.contains(this.containers[f].element[0],this.currentItem[0])&&!c&&(d.push(function(a){return function(b){a._trigger("receive",b,this._uiHash(this))}}.call(this,this.containers[f])),d.push(function(a){return function(b){a._trigger("update",b,this._uiHash(this))}}.call(this,this.containers[f])))}for(var f=this.containers.length-1;f>=0;f--)c||d.push(function(a){return function(b){a._trigger("deactivate",b,this._uiHash(this))}}.call(this,this.containers[f])),this.containers[f].containerCache.over&&(d.push(function(a){return function(b){a._trigger("out",b,this._uiHash(this))}}.call(this,this.containers[f])),this.containers[f].containerCache.over=0);this._storedCursor&&a("body").css("cursor",this._storedCursor),this._storedOpacity&&this.helper.css("opacity",this._storedOpacity),this._storedZIndex&&this.helper.css("zIndex",this._storedZIndex=="auto"?"":this._storedZIndex),this.dragging=!1;if(this.cancelHelperRemoval){if(!c){this._trigger("beforeStop",b,this._uiHash());for(var f=0;f<d.length;f++)d[f].call(this,b);this._trigger("stop",b,this._uiHash())}return!1}c||this._trigger("beforeStop",b,this._uiHash()),this.placeholder[0].parentNode.removeChild(this.placeholder[0]),this.helper[0]!=this.currentItem[0]&&this.helper.remove(),this.helper=null;if(!c){for(var f=0;f<d.length;f++)d[f].call(this,b);this._trigger("stop",b,this._uiHash())}this.fromOutside=!1;return!0},_trigger:function(){a.Widget.prototype._trigger.apply(this,arguments)===!1&&this.cancel()},_uiHash:function(b){var c=b||this;return{helper:c.helper,placeholder:c.placeholder||a([]),position:c.position,originalPosition:c.originalPosition,offset:c.positionAbs,item:c.currentItem,sender:b?b.element:null}}}),a.extend(a.ui.sortable,{version:"1.8.18"})}(jQuery),jQuery.effects||function(a,b){function l(b){if(!b||typeof b=="number"||a.fx.speeds[b])return!0;if(typeof b=="string"&&!a.effects[b])return!0;return!1}function k(b,c,d,e){typeof b=="object"&&(e=c,d=null,c=b,b=c.effect),a.isFunction(c)&&(e=c,d=null,c={});if(typeof c=="number"||a.fx.speeds[c])e=d,d=c,c={};a.isFunction(d)&&(e=d,d=null),c=c||{},d=d||c.duration,d=a.fx.off?0:typeof d=="number"?d:d in a.fx.speeds?a.fx.speeds[d]:a.fx.speeds._default,e=e||c.complete;return[b,c,d,e]}function j(a,b){var c={_:0},d;for(d in b)a[d]!=b[d]&&(c[d]=b[d]);return c}function i(b){var c,d;for(c in b)d=b[c],(d==null||a.isFunction(d)||c in g||/scrollbar/.test(c)||!/color/i.test(c)&&isNaN(parseFloat(d)))&&delete b[c];return b}function h(){var a=document.defaultView?document.defaultView.getComputedStyle(this,null):this.currentStyle,b={},c,d;if(a&&a.length&&a[0]&&a[a[0]]){var e=a.length;while(e--)c=a[e],typeof a[c]=="string"&&(d=c.replace(/\-(\w)/g,function(a,b){return b.toUpperCase()}),b[d]=a[c])}else for(c in a)typeof a[c]=="string"&&(b[c]=a[c]);return b}function d(b,d){var e;do{e=a.curCSS(b,d);if(e!=""&&e!="transparent"||a.nodeName(b,"body"))break;d="backgroundColor"}while(b=b.parentNode);return c(e)}function c(b){var c;if(b&&b.constructor==Array&&b.length==3)return b;if(c=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(b))return[parseInt(c[1],10),parseInt(c[2],10),parseInt(c[3],10)];if(c=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(b))return[parseFloat(c[1])*2.55,parseFloat(c[2])*2.55,parseFloat(c[3])*2.55];if(c=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(b))return[parseInt(c[1],16),parseInt(c[2],16),parseInt(c[3],16)];if(c=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(b))return[parseInt(c[1]+c[1],16),parseInt(c[2]+c[2],16),parseInt(c[3]+c[3],16)];if(c=/rgba\(0, 0, 0, 0\)/.exec(b))return e.transparent;return e[a.trim(b).toLowerCase()]}a.effects={},a.each(["backgroundColor","borderBottomColor","borderLeftColor","borderRightColor","borderTopColor","borderColor","color","outlineColor"],function(b,e){a.fx.step[e]=function(a){a.colorInit||(a.start=d(a.elem,e),a.end=c(a.end),a.colorInit=!0),a.elem.style[e]="rgb("+Math.max(Math.min(parseInt(a.pos*(a.end[0]-a.start[0])+a.start[0],10),255),0)+","+Math.max(Math.min(parseInt(a.pos*(a.end[1]-a.start[1])+a.start[1],10),255),0)+","+Math.max(Math.min(parseInt(a.pos*(a.end[2]-a.start[2])+a.start[2],10),255),0)+")"}});var e={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0],transparent:[255,255,255]},f=["add","remove","toggle"],g={border:1,borderBottom:1,borderColor:1,borderLeft:1,borderRight:1,borderTop:1,borderWidth:1,margin:1,padding:1};a.effects.animateClass=function(b,c,d,e){a.isFunction(d)&&(e=d,d=null);return this.queue(function(){var g=a(this),k=g.attr("style")||" ",l=i(h.call(this)),m,n=g.attr("class");a.each(f,function(a,c){b[c]&&g[c+"Class"](b[c])}),m=i(h.call(this)),g.attr("class",n),g.animate(j(l,m),{queue:!1,duration:c,easing:d,complete:function(){a.each(f,function(a,c){b[c]&&g[c+"Class"](b[c])}),typeof g.attr("style")=="object"?(g.attr("style").cssText="",g.attr("style").cssText=k):g.attr("style",k),e&&e.apply(this,arguments),a.dequeue(this)}})})},a.fn.extend({_addClass:a.fn.addClass,addClass:function(b,c,d,e){return c?a.effects.animateClass.apply(this,[{add:b},c,d,e]):this._addClass(b)},_removeClass:a.fn.removeClass,removeClass:function(b,c,d,e){return c?a.effects.animateClass.apply(this,[{remove:b},c,d,e]):this._removeClass(b)},_toggleClass:a.fn.toggleClass,toggleClass:function(c,d,e,f,g){return typeof d=="boolean"||d===b?e?a.effects.animateClass.apply(this,[d?{add:c}:{remove:c},e,f,g]):this._toggleClass(c,d):a.effects.animateClass.apply(this,[{toggle:c},d,e,f])},switchClass:function(b,c,d,e,f){return a.effects.animateClass.apply(this,[{add:c,remove:b},d,e,f])}}),a.extend(a.effects,{version:"1.8.18",save:function(a,b){for(var c=0;c<b.length;c++)b[c]!==null&&a.data("ec.storage."+b[c],a[0].style[b[c]])},restore:function(a,b){for(var c=0;c<b.length;c++)b[c]!==null&&a.css(b[c],a.data("ec.storage."+b[c]))},setMode:function(a,b){b=="toggle"&&(b=a.is(":hidden")?"show":"hide");return b},getBaseline:function(a,b){var c,d;switch(a[0]){case"top":c=0;break;case"middle":c=.5;break;case"bottom":c=1;break;default:c=a[0]/b.height}switch(a[1]){case"left":d=0;break;case"center":d=.5;break;case"right":d=1;break;default:d=a[1]/b.width}return{x:d,y:c}},createWrapper:function(b){if(b.parent().is(".ui-effects-wrapper"))return b.parent();var c={width:b.outerWidth(!0),height:b.outerHeight(!0),"float":b.css("float")},d=a("<div></div>").addClass("ui-effects-wrapper").css({fontSize:"100%",background:"transparent",border:"none",margin:0,padding:0}),e=document.activeElement;b.wrap(d),(b[0]===e||a.contains(b[0],e))&&a(e).focus(),d=b.parent(),b.css("position")=="static"?(d.css({position:"relative"}),b.css({position:"relative"})):(a.extend(c,{position:b.css("position"),zIndex:b.css("z-index")}),a.each(["top","left","bottom","right"],function(a,d){c[d]=b.css(d),isNaN(parseInt(c[d],10))&&(c[d]="auto")}),b.css({position:"relative",top:0,left:0,right:"auto",bottom:"auto"}));return d.css(c).show()},removeWrapper:function(b){var c,d=document.activeElement;if(b.parent().is(".ui-effects-wrapper")){c=b.parent().replaceWith(b),(b[0]===d||a.contains(b[0],d))&&a(d).focus();return c}return b},setTransition:function(b,c,d,e){e=e||{},a.each(c,function(a,c){unit=b.cssUnit(c),unit[0]>0&&(e[c]=unit[0]*d+unit[1])});return e}}),a.fn.extend({effect:function(b,c,d,e){var f=k.apply(this,arguments),g={options:f[1],duration:f[2],callback:f[3]},h=g.options.mode,i=a.effects[b];if(a.fx.off||!i)return h?this[h](g.duration,g.callback):this.each(function(){g.callback&&g.callback.call(this)});return i.call(this,g)},_show:a.fn.show,show:function(a){if(l(a))return this._show.apply(this,arguments);var b=k.apply(this,arguments);b[1].mode="show";return this.effect.apply(this,b)},_hide:a.fn.hide,hide:function(a){if(l(a))return this._hide.apply(this,arguments);var b=k.apply(this,arguments);b[1].mode="hide";return this.effect.apply(this,b)},__toggle:a.fn.toggle,toggle:function(b){if(l(b)||typeof b=="boolean"||a.isFunction(b))return this.__toggle.apply(this,arguments);var c=k.apply(this,arguments);c[1].mode="toggle";return this.effect.apply(this,c)},cssUnit:function(b){var c=this.css(b),d=[];a.each(["em","px","%","pt"],function(a,b){c.indexOf(b)>0&&(d=[parseFloat(c),b])});return d}}),a.easing.jswing=a.easing.swing,a.extend(a.easing,{def:"easeOutQuad",swing:function(b,c,d,e,f){return a.easing[a.easing.def](b,c,d,e,f)},easeInQuad:function(a,b,c,d,e){return d*(b/=e)*b+c},easeOutQuad:function(a,b,c,d,e){return-d*(b/=e)*(b-2)+c},easeInOutQuad:function(a,b,c,d,e){if((b/=e/2)<1)return d/2*b*b+c;return-d/2*(--b*(b-2)-1)+c},easeInCubic:function(a,b,c,d,e){return d*(b/=e)*b*b+c},easeOutCubic:function(a,b,c,d,e){return d*((b=b/e-1)*b*b+1)+c},easeInOutCubic:function(a,b,c,d,e){if((b/=e/2)<1)return d/2*b*b*b+c;return d/2*((b-=2)*b*b+2)+c},easeInQuart:function(a,b,c,d,e){return d*(b/=e)*b*b*b+c},easeOutQuart:function(a,b,c,d,e){return-d*((b=b/e-1)*b*b*b-1)+c},easeInOutQuart:function(a,b,c,d,e){if((b/=e/2)<1)return d/2*b*b*b*b+c;return-d/2*((b-=2)*b*b*b-2)+c},easeInQuint:function(a,b,c,d,e){return d*(b/=e)*b*b*b*b+c},easeOutQuint:function(a,b,c,d,e){return d*((b=b/e-1)*b*b*b*b+1)+c},easeInOutQuint:function(a,b,c,d,e){if((b/=e/2)<1)return d/2*b*b*b*b*b+c;return d/2*((b-=2)*b*b*b*b+2)+c},easeInSine:function(a,b,c,d,e){return-d*Math.cos(b/e*(Math.PI/2))+d+c},easeOutSine:function(a,b,c,d,e){return d*Math.sin(b/e*(Math.PI/2))+c},easeInOutSine:function(a,b,c,d,e){return-d/2*(Math.cos(Math.PI*b/e)-1)+c},easeInExpo:function(a,b,c,d,e){return b==0?c:d*Math.pow(2,10*(b/e-1))+c},easeOutExpo:function(a,b,c,d,e){return b==e?c+d:d*(-Math.pow(2,-10*b/e)+1)+c},easeInOutExpo:function(a,b,c,d,e){if(b==0)return c;if(b==e)return c+d;if((b/=e/2)<1)return d/2*Math.pow(2,10*(b-1))+c;return d/2*(-Math.pow(2,-10*--b)+2)+c},easeInCirc:function(a,b,c,d,e){return-d*(Math.sqrt(1-(b/=e)*b)-1)+c},easeOutCirc:function(a,b,c,d,e){return d*Math.sqrt(1-(b=b/e-1)*b)+c},easeInOutCirc:function(a,b,c,d,e){if((b/=e/2)<1)return-d/2*(Math.sqrt(1-b*b)-1)+c;return d/2*(Math.sqrt(1-(b-=2)*b)+1)+c},easeInElastic:function(a,b,c,d,e){var f=1.70158,g=0,h=d;if(b==0)return c;if((b/=e)==1)return c+d;g||(g=e*.3);if(h<Math.abs(d)){h=d;var f=g/4}else var f=g/(2*Math.PI)*Math.asin(d/h);return-(h*Math.pow(2,10*(b-=1))*Math.sin((b*e-f)*2*Math.PI/g))+c},easeOutElastic:function(a,b,c,d,e){var f=1.70158,g=0,h=d;if(b==0)return c;if((b/=e)==1)return c+d;g||(g=e*.3);if(h<Math.abs(d)){h=d;var f=g/4}else var f=g/(2*Math.PI)*Math.asin(d/h);return h*Math.pow(2,-10*b)*Math.sin((b*e-f)*2*Math.PI/g)+d+c},easeInOutElastic:function(a,b,c,d,e){var f=1.70158,g=0,h=d;if(b==0)return c;if((b/=e/2)==2)return c+d;g||(g=e*.3*1.5);if(h<Math.abs(d)){h=d;var f=g/4}else var f=g/(2*Math.PI)*Math.asin(d/h);if(b<1)return-0.5*h*Math.pow(2,10*(b-=1))*Math.sin((b*e-f)*2*Math.PI/g)+c;return h*Math.pow(2,-10*(b-=1))*Math.sin((b*e-f)*2*Math.PI/g)*.5+d+c},easeInBack:function(a,c,d,e,f,g){g==b&&(g=1.70158);return e*(c/=f)*c*((g+1)*c-g)+d},easeOutBack:function(a,c,d,e,f,g){g==b&&(g=1.70158);return e*((c=c/f-1)*c*((g+1)*c+g)+1)+d},easeInOutBack:function(a,c,d,e,f,g){g==b&&(g=1.70158);if((c/=f/2)<1)return e/2*c*c*(((g*=1.525)+1)*c-g)+d;return e/2*((c-=2)*c*(((g*=1.525)+1)*c+g)+2)+d},easeInBounce:function(b,c,d,e,f){return e-a.easing.easeOutBounce(b,f-c,0,e,f)+d},easeOutBounce:function(a,b,c,d,e){return(b/=e)<1/2.75?d*7.5625*b*b+c:b<2/2.75?d*(7.5625*(b-=1.5/2.75)*b+.75)+c:b<2.5/2.75?d*(7.5625*(b-=2.25/2.75)*b+.9375)+c:d*(7.5625*(b-=2.625/2.75)*b+.984375)+c},easeInOutBounce:function(b,c,d,e,f){if(c<f/2)return a.easing.easeInBounce(b,c*2,0,e,f)*.5+d;return a.easing.easeOutBounce(b,c*2-f,0,e,f)*.5+e*.5+d}})}(jQuery),function(a,b){a.effects.blind=function(b){return this.queue(function(){var c=a(this),d=["position","top","bottom","left","right"],e=a.effects.setMode(c,b.options.mode||"hide"),f=b.options.direction||"vertical";a.effects.save(c,d),c.show();var g=a.effects.createWrapper(c).css({overflow:"hidden"}),h=f=="vertical"?"height":"width",i=f=="vertical"?g.height():g.width();e=="show"&&g.css(h,0);var j={};j[h]=e=="show"?i:0,g.animate(j,b.duration,b.options.easing,function(){e=="hide"&&c.hide(),a.effects.restore(c,d),a.effects.removeWrapper(c),b.callback&&b.callback.apply(c[0],arguments),c.dequeue()})})}}(jQuery),function(a,b){a.effects.bounce=function(b){return this.queue(function(){var c=a(this),d=["position","top","bottom","left","right"],e=a.effects.setMode(c,b.options.mode||"effect"),f=b.options.direction||"up",g=b.options.distance||20,h=b.options.times||5,i=b.duration||250;/show|hide/.test(e)&&d.push("opacity"),a.effects.save(c,d),c.show(),a.effects.createWrapper(c);var j=f=="up"||f=="down"?"top":"left",k=f=="up"||f=="left"?"pos":"neg",g=b.options.distance||(j=="top"?c.outerHeight({margin:!0})/3:c.outerWidth({margin:!0})/3);e=="show"&&c.css("opacity",0).css(j,k=="pos"?-g:g),e=="hide"&&(g=g/(h*2)),e!="hide"&&h--;if(e=="show"){var l={opacity:1};l[j]=(k=="pos"?"+=":"-=")+g,c.animate(l,i/2,b.options.easing),g=g/2,h--}for(var m=0;m<h;m++){var n={},p={};n[j]=(k=="pos"?"-=":"+=")+g,p[j]=(k=="pos"?"+=":"-=")+g,c.animate(n,i/2,b.options.easing).animate(p,i/2,b.options.easing),g=e=="hide"?g*2:g/2}if(e=="hide"){var l={opacity:0};l[j]=(k=="pos"?"-=":"+=")+g,c.animate(l,i/2,b.options.easing,function(){c.hide(),a.effects.restore(c,d),a.effects.removeWrapper(c),b.callback&&b.callback.apply(this,arguments)})}else{var n={},p={};n[j]=(k=="pos"?"-=":"+=")+g,p[j]=(k=="pos"?"+=":"-=")+g,c.animate(n,i/2,b.options.easing).animate(p,i/2,b.options.easing,function(){a.effects.restore(c,d),a.effects.removeWrapper(c),b.callback&&b.callback.apply(this,arguments)})}c.queue("fx",function(){c.dequeue()}),c.dequeue()})}}(jQuery),function(a,b){a.effects.clip=function(b){return this.queue(function(){var c=a(this),d=["position","top","bottom","left","right","height","width"],e=a.effects.setMode(c,b.options.mode||"hide"),f=b.options.direction||"vertical";a.effects.save(c,d),c.show();var g=a.effects.createWrapper(c).css({overflow:"hidden"}),h=c[0].tagName=="IMG"?g:c,i={size:f=="vertical"?"height":"width",position:f=="vertical"?"top":"left"},j=f=="vertical"?h.height():h.width();e=="show"&&(h.css(i.size,0),h.css(i.position,j/2));var k={};k[i.size]=e=="show"?j:0,k[i.position]=e=="show"?0:j/2,h.animate(k,{queue:!1,duration:b.duration,easing:b.options.easing,complete:function(){e=="hide"&&c.hide(),a.effects.restore(c,d),a.effects.removeWrapper(c),b.callback&&b.callback.apply(c[0],arguments),c.dequeue()}})})}}(jQuery),function(a,b){a.effects.drop=function(b){return this.queue(function(){var c=a(this),d=["position","top","bottom","left","right","opacity"],e=a.effects.setMode(c,b.options.mode||"hide"),f=b.options.direction||"left";a.effects.save(c,d),c.show(),a.effects.createWrapper(c);var g=f=="up"||f=="down"?"top":"left",h=f=="up"||f=="left"?"pos":"neg",i=b.options.distance||(g=="top"?c.outerHeight({margin:!0})/2:c.outerWidth({margin:!0})/2);e=="show"&&c.css("opacity",0).css(g,h=="pos"?-i:i);var j={opacity:e=="show"?1:0};j[g]=(e=="show"?h=="pos"?"+=":"-=":h=="pos"?"-=":"+=")+i,c.animate(j,{queue:!1,duration:b.duration,easing:b.options.easing,complete:function(){e=="hide"&&c.hide(),a.effects.restore(c,d),a.effects.removeWrapper(c),b.callback&&b.callback.apply(this,arguments),c.dequeue()}})})}}(jQuery),function(a,b){a.effects.explode=function(b){return this.queue(function(){var c=b.options.pieces?Math.round(Math.sqrt(b.options.pieces)):3,d=b.options.pieces?Math.round(Math.sqrt(b.options.pieces)):3;b.options.mode=b.options.mode=="toggle"?a(this).is(":visible")?"hide":"show":b.options.mode;var e=a(this).show().css("visibility","hidden"),f=e.offset();f.top-=parseInt(e.css("marginTop"),10)||0,f.left-=parseInt(e.css("marginLeft"),10)||0;var g=e.outerWidth(!0),h=e.outerHeight(!0);for(var i=0;i<c;i++)for(var j=0;j<d;j++)e.clone().appendTo("body").wrap("<div></div>").css({position:"absolute",visibility:"visible",left:-j*(g/d),top:-i*(h/c)}).parent().addClass("ui-effects-explode").css({position:"absolute",overflow:"hidden",width:g/d,height:h/c,left:f.left+j*(g/d)+(b.options.mode=="show"?(j-Math.floor(d/2))*(g/d):0),top:f.top+i*(h/c)+(b.options.mode=="show"?(i-Math.floor(c/2))*(h/c):0),opacity:b.options.mode=="show"?0:1}).animate({left:f.left+j*(g/d)+(b.options.mode=="show"?0:(j-Math.floor(d/2))*(g/d)),top:f.top+i*(h/c)+(b.options.mode=="show"?0:(i-Math.floor(c/2))*(h/c)),opacity:b.options.mode=="show"?1:0},b.duration||500);setTimeout(function(){b.options.mode=="show"?e.css({visibility:"visible"}):e.css({visibility:"visible"}).hide(),b.callback&&b.callback.apply(e[0]),e.dequeue(),a("div.ui-effects-explode").remove()},b.duration||500)})}}(jQuery),function(a,b){a.effects.fade=function(b){return this.queue(function(){var c=a(this),d=a.effects.setMode(c,b.options.mode||"hide");c.animate({opacity:d},{queue:!1,duration:b.duration,easing:b.options.easing,complete:function(){b.callback&&b.callback.apply(this,arguments),c.dequeue()}})})}}(jQuery),function(a,b){a.effects.fold=function(b){return this.queue(function(){var c=a(this),d=["position","top","bottom","left","right"],e=a.effects.setMode(c,b.options.mode||"hide"),f=b.options.size||15,g=!!b.options.horizFirst,h=b.duration?b.duration/2:a.fx.speeds._default/2;a.effects.save(c,d),c.show();var i=a.effects.createWrapper(c).css({overflow:"hidden"}),j=e=="show"!=g,k=j?["width","height"]:["height","width"],l=j?[i.width(),i.height()]:[i.height(),i.width()],m=/([0-9]+)%/.exec(f);m&&(f=parseInt(m[1],10)/100*l[e=="hide"?0:1]),e=="show"&&i.css(g?{height:0,width:f}:{height:f,width:0});var n={},p={};n[k[0]]=e=="show"?l[0]:f,p[k[1]]=e=="show"?l[1]:0,i.animate(n,h,b.options.easing).animate(p,h,b.options.easing,function(){e=="hide"&&c.hide(),a.effects.restore(c,d),a.effects.removeWrapper(c),b.callback&&b.callback.apply(c[0],arguments),c.dequeue()})})}}(jQuery),function(a,b){a.effects.highlight=function(b){return this.queue(function(){var c=a(this),d=["backgroundImage","backgroundColor","opacity"],e=a.effects.setMode(c,b.options.mode||"show"),f={backgroundColor:c.css("backgroundColor")};e=="hide"&&(f.opacity=0),a.effects.save(c,d),c.show().css({backgroundImage:"none",backgroundColor:b.options.color||"#ffff99"}).animate(f,{queue:!1,duration:b.duration,easing:b.options.easing,complete:function(){e=="hide"&&c.hide(),a.effects.restore(c,d),e=="show"&&!a.support.opacity&&this.style.removeAttribute("filter"),b.callback&&b.callback.apply(this,arguments),c.dequeue()}})})}}(jQuery),function(a,b){a.effects.pulsate=function(b){return this.queue(function(){var c=a(this),d=a.effects.setMode(c,b.options.mode||"show");times=(b.options.times||5)*2-1,duration=b.duration?b.duration/2:a.fx.speeds._default/2,isVisible=c.is(":visible"),animateTo=0,isVisible||(c.css("opacity",0).show(),animateTo=1),(d=="hide"&&isVisible||d=="show"&&!isVisible)&&times--;for(var e=0;e<times;e++)c.animate({opacity:animateTo},duration,b.options.easing),animateTo=(animateTo+1)%2;c.animate({opacity:animateTo},duration,b.options.easing,function(){animateTo==0&&c.hide(),b.callback&&b.callback.apply(this,arguments)}),c.queue("fx",function(){c.dequeue()}).dequeue()})}}(jQuery),function(a,b){a.effects.puff=function(b){return this.queue(function(){var c=a(this),d=a.effects.setMode(c,b.options.mode||"hide"),e=parseInt(b.options.percent,10)||150,f=e/100,g={height:c.height(),width:c.width()};a.extend(b.options,{fade:!0,mode:d,percent:d=="hide"?e:100,from:d=="hide"?g:{height:g.height*f,width:g.width*f}}),c.effect("scale",b.options,b.duration,b.callback),c.dequeue()})},a.effects.scale=function(b){return this.queue(function(){var c=a(this),d=a.extend(!0,{},b.options),e=a.effects.setMode(c,b.options.mode||"effect"),f=parseInt(b.options.percent,10)||(parseInt(b.options.percent,10)==0?0:e=="hide"?0:100),g=b.options.direction||"both",h=b.options.origin;e!="effect"&&(d.origin=h||["middle","center"],d.restore=!0);var i={height:c.height(),width:c.width()};c.from=b.options.from||(e=="show"?{height:0,width:0}:i);var j={y:g!="horizontal"?f/100:1,x:g!="vertical"?f/100:1};c.to={height:i.height*j.y,width:i.width*j.x},b.options.fade&&(e=="show"&&(c.from.opacity=0,c.to.opacity=1),e=="hide"&&(c.from.opacity=1,c.to.opacity=0)),d.from=c.from,d.to=c.to,d.mode=e,c.effect("size",d,b.duration,b.callback),c.
dequeue()})},a.effects.size=function(b){return this.queue(function(){var c=a(this),d=["position","top","bottom","left","right","width","height","overflow","opacity"],e=["position","top","bottom","left","right","overflow","opacity"],f=["width","height","overflow"],g=["fontSize"],h=["borderTopWidth","borderBottomWidth","paddingTop","paddingBottom"],i=["borderLeftWidth","borderRightWidth","paddingLeft","paddingRight"],j=a.effects.setMode(c,b.options.mode||"effect"),k=b.options.restore||!1,l=b.options.scale||"both",m=b.options.origin,n={height:c.height(),width:c.width()};c.from=b.options.from||n,c.to=b.options.to||n;if(m){var p=a.effects.getBaseline(m,n);c.from.top=(n.height-c.from.height)*p.y,c.from.left=(n.width-c.from.width)*p.x,c.to.top=(n.height-c.to.height)*p.y,c.to.left=(n.width-c.to.width)*p.x}var q={from:{y:c.from.height/n.height,x:c.from.width/n.width},to:{y:c.to.height/n.height,x:c.to.width/n.width}};if(l=="box"||l=="both")q.from.y!=q.to.y&&(d=d.concat(h),c.from=a.effects.setTransition(c,h,q.from.y,c.from),c.to=a.effects.setTransition(c,h,q.to.y,c.to)),q.from.x!=q.to.x&&(d=d.concat(i),c.from=a.effects.setTransition(c,i,q.from.x,c.from),c.to=a.effects.setTransition(c,i,q.to.x,c.to));(l=="content"||l=="both")&&q.from.y!=q.to.y&&(d=d.concat(g),c.from=a.effects.setTransition(c,g,q.from.y,c.from),c.to=a.effects.setTransition(c,g,q.to.y,c.to)),a.effects.save(c,k?d:e),c.show(),a.effects.createWrapper(c),c.css("overflow","hidden").css(c.from);if(l=="content"||l=="both")h=h.concat(["marginTop","marginBottom"]).concat(g),i=i.concat(["marginLeft","marginRight"]),f=d.concat(h).concat(i),c.find("*[width]").each(function(){child=a(this),k&&a.effects.save(child,f);var c={height:child.height(),width:child.width()};child.from={height:c.height*q.from.y,width:c.width*q.from.x},child.to={height:c.height*q.to.y,width:c.width*q.to.x},q.from.y!=q.to.y&&(child.from=a.effects.setTransition(child,h,q.from.y,child.from),child.to=a.effects.setTransition(child,h,q.to.y,child.to)),q.from.x!=q.to.x&&(child.from=a.effects.setTransition(child,i,q.from.x,child.from),child.to=a.effects.setTransition(child,i,q.to.x,child.to)),child.css(child.from),child.animate(child.to,b.duration,b.options.easing,function(){k&&a.effects.restore(child,f)})});c.animate(c.to,{queue:!1,duration:b.duration,easing:b.options.easing,complete:function(){c.to.opacity===0&&c.css("opacity",c.from.opacity),j=="hide"&&c.hide(),a.effects.restore(c,k?d:e),a.effects.removeWrapper(c),b.callback&&b.callback.apply(this,arguments),c.dequeue()}})})}}(jQuery),function(a,b){a.effects.shake=function(b){return this.queue(function(){var c=a(this),d=["position","top","bottom","left","right"],e=a.effects.setMode(c,b.options.mode||"effect"),f=b.options.direction||"left",g=b.options.distance||20,h=b.options.times||3,i=b.duration||b.options.duration||140;a.effects.save(c,d),c.show(),a.effects.createWrapper(c);var j=f=="up"||f=="down"?"top":"left",k=f=="up"||f=="left"?"pos":"neg",l={},m={},n={};l[j]=(k=="pos"?"-=":"+=")+g,m[j]=(k=="pos"?"+=":"-=")+g*2,n[j]=(k=="pos"?"-=":"+=")+g*2,c.animate(l,i,b.options.easing);for(var p=1;p<h;p++)c.animate(m,i,b.options.easing).animate(n,i,b.options.easing);c.animate(m,i,b.options.easing).animate(l,i/2,b.options.easing,function(){a.effects.restore(c,d),a.effects.removeWrapper(c),b.callback&&b.callback.apply(this,arguments)}),c.queue("fx",function(){c.dequeue()}),c.dequeue()})}}(jQuery),function(a,b){a.effects.slide=function(b){return this.queue(function(){var c=a(this),d=["position","top","bottom","left","right"],e=a.effects.setMode(c,b.options.mode||"show"),f=b.options.direction||"left";a.effects.save(c,d),c.show(),a.effects.createWrapper(c).css({overflow:"hidden"});var g=f=="up"||f=="down"?"top":"left",h=f=="up"||f=="left"?"pos":"neg",i=b.options.distance||(g=="top"?c.outerHeight({margin:!0}):c.outerWidth({margin:!0}));e=="show"&&c.css(g,h=="pos"?isNaN(i)?"-"+i:-i:i);var j={};j[g]=(e=="show"?h=="pos"?"+=":"-=":h=="pos"?"-=":"+=")+i,c.animate(j,{queue:!1,duration:b.duration,easing:b.options.easing,complete:function(){e=="hide"&&c.hide(),a.effects.restore(c,d),a.effects.removeWrapper(c),b.callback&&b.callback.apply(this,arguments),c.dequeue()}})})}}(jQuery),function(a,b){a.effects.transfer=function(b){return this.queue(function(){var c=a(this),d=a(b.options.to),e=d.offset(),f={top:e.top,left:e.left,height:d.innerHeight(),width:d.innerWidth()},g=c.offset(),h=a('<div class="ui-effects-transfer"></div>').appendTo(document.body).addClass(b.options.className).css({top:g.top,left:g.left,height:c.innerHeight(),width:c.innerWidth(),position:"absolute"}).animate(f,b.duration,b.options.easing,function(){h.remove(),b.callback&&b.callback.apply(c[0],arguments),c.dequeue()})})}}(jQuery),function(a,b){a.widget("ui.accordion",{options:{active:0,animated:"slide",autoHeight:!0,clearStyle:!1,collapsible:!1,event:"click",fillSpace:!1,header:"> li > :first-child,> :not(li):even",icons:{header:"ui-icon-triangle-1-e",headerSelected:"ui-icon-triangle-1-s"},navigation:!1,navigationFilter:function(){return this.href.toLowerCase()===location.href.toLowerCase()}},_create:function(){var b=this,c=b.options;b.running=0,b.element.addClass("ui-accordion ui-widget ui-helper-reset").children("li").addClass("ui-accordion-li-fix"),b.headers=b.element.find(c.header).addClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all").bind("mouseenter.accordion",function(){c.disabled||a(this).addClass("ui-state-hover")}).bind("mouseleave.accordion",function(){c.disabled||a(this).removeClass("ui-state-hover")}).bind("focus.accordion",function(){c.disabled||a(this).addClass("ui-state-focus")}).bind("blur.accordion",function(){c.disabled||a(this).removeClass("ui-state-focus")}),b.headers.next().addClass("ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom");if(c.navigation){var d=b.element.find("a").filter(c.navigationFilter).eq(0);if(d.length){var e=d.closest(".ui-accordion-header");e.length?b.active=e:b.active=d.closest(".ui-accordion-content").prev()}}b.active=b._findActive(b.active||c.active).addClass("ui-state-default ui-state-active").toggleClass("ui-corner-all").toggleClass("ui-corner-top"),b.active.next().addClass("ui-accordion-content-active"),b._createIcons(),b.resize(),b.element.attr("role","tablist"),b.headers.attr("role","tab").bind("keydown.accordion",function(a){return b._keydown(a)}).next().attr("role","tabpanel"),b.headers.not(b.active||"").attr({"aria-expanded":"false","aria-selected":"false",tabIndex:-1}).next().hide(),b.active.length?b.active.attr({"aria-expanded":"true","aria-selected":"true",tabIndex:0}):b.headers.eq(0).attr("tabIndex",0),a.browser.safari||b.headers.find("a").attr("tabIndex",-1),c.event&&b.headers.bind(c.event.split(" ").join(".accordion ")+".accordion",function(a){b._clickHandler.call(b,a,this),a.preventDefault()})},_createIcons:function(){var b=this.options;b.icons&&(a("<span></span>").addClass("ui-icon "+b.icons.header).prependTo(this.headers),this.active.children(".ui-icon").toggleClass(b.icons.header).toggleClass(b.icons.headerSelected),this.element.addClass("ui-accordion-icons"))},_destroyIcons:function(){this.headers.children(".ui-icon").remove(),this.element.removeClass("ui-accordion-icons")},destroy:function(){var b=this.options;this.element.removeClass("ui-accordion ui-widget ui-helper-reset").removeAttr("role"),this.headers.unbind(".accordion").removeClass("ui-accordion-header ui-accordion-disabled ui-helper-reset ui-state-default ui-corner-all ui-state-active ui-state-disabled ui-corner-top").removeAttr("role").removeAttr("aria-expanded").removeAttr("aria-selected").removeAttr("tabIndex"),this.headers.find("a").removeAttr("tabIndex"),this._destroyIcons();var c=this.headers.next().css("display","").removeAttr("role").removeClass("ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content ui-accordion-content-active ui-accordion-disabled ui-state-disabled");(b.autoHeight||b.fillHeight)&&c.css("height","");return a.Widget.prototype.destroy.call(this)},_setOption:function(b,c){a.Widget.prototype._setOption.apply(this,arguments),b=="active"&&this.activate(c),b=="icons"&&(this._destroyIcons(),c&&this._createIcons()),b=="disabled"&&this.headers.add(this.headers.next())[c?"addClass":"removeClass"]("ui-accordion-disabled ui-state-disabled")},_keydown:function(b){if(!(this.options.disabled||b.altKey||b.ctrlKey)){var c=a.ui.keyCode,d=this.headers.length,e=this.headers.index(b.target),f=!1;switch(b.keyCode){case c.RIGHT:case c.DOWN:f=this.headers[(e+1)%d];break;case c.LEFT:case c.UP:f=this.headers[(e-1+d)%d];break;case c.SPACE:case c.ENTER:this._clickHandler({target:b.target},b.target),b.preventDefault()}if(f){a(b.target).attr("tabIndex",-1),a(f).attr("tabIndex",0),f.focus();return!1}return!0}},resize:function(){var b=this.options,c;if(b.fillSpace){if(a.browser.msie){var d=this.element.parent().css("overflow");this.element.parent().css("overflow","hidden")}c=this.element.parent().height(),a.browser.msie&&this.element.parent().css("overflow",d),this.headers.each(function(){c-=a(this).outerHeight(!0)}),this.headers.next().each(function(){a(this).height(Math.max(0,c-a(this).innerHeight()+a(this).height()))}).css("overflow","auto")}else b.autoHeight&&(c=0,this.headers.next().each(function(){c=Math.max(c,a(this).height("").height())}).height(c));return this},activate:function(a){this.options.active=a;var b=this._findActive(a)[0];this._clickHandler({target:b},b);return this},_findActive:function(b){return b?typeof b=="number"?this.headers.filter(":eq("+b+")"):this.headers.not(this.headers.not(b)):b===!1?a([]):this.headers.filter(":eq(0)")},_clickHandler:function(b,c){var d=this.options;if(!d.disabled){if(!b.target){if(!d.collapsible)return;this.active.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").children(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header),this.active.next().addClass("ui-accordion-content-active");var e=this.active.next(),f={options:d,newHeader:a([]),oldHeader:d.active,newContent:a([]),oldContent:e},g=this.active=a([]);this._toggle(g,e,f);return}var h=a(b.currentTarget||c),i=h[0]===this.active[0];d.active=d.collapsible&&i?!1:this.headers.index(h);if(this.running||!d.collapsible&&i)return;var j=this.active,g=h.next(),e=this.active.next(),f={options:d,newHeader:i&&d.collapsible?a([]):h,oldHeader:this.active,newContent:i&&d.collapsible?a([]):g,oldContent:e},k=this.headers.index(this.active[0])>this.headers.index(h[0]);this.active=i?a([]):h,this._toggle(g,e,f,i,k),j.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").children(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header),i||(h.removeClass("ui-state-default ui-corner-all").addClass("ui-state-active ui-corner-top").children(".ui-icon").removeClass(d.icons.header).addClass(d.icons.headerSelected),h.next().addClass("ui-accordion-content-active"));return}},_toggle:function(b,c,d,e,f){var g=this,h=g.options;g.toShow=b,g.toHide=c,g.data=d;var i=function(){if(!!g)return g._completed.apply(g,arguments)};g._trigger("changestart",null,g.data),g.running=c.size()===0?b.size():c.size();if(h.animated){var j={};h.collapsible&&e?j={toShow:a([]),toHide:c,complete:i,down:f,autoHeight:h.autoHeight||h.fillSpace}:j={toShow:b,toHide:c,complete:i,down:f,autoHeight:h.autoHeight||h.fillSpace},h.proxied||(h.proxied=h.animated),h.proxiedDuration||(h.proxiedDuration=h.duration),h.animated=a.isFunction(h.proxied)?h.proxied(j):h.proxied,h.duration=a.isFunction(h.proxiedDuration)?h.proxiedDuration(j):h.proxiedDuration;var k=a.ui.accordion.animations,l=h.duration,m=h.animated;m&&!k[m]&&!a.easing[m]&&(m="slide"),k[m]||(k[m]=function(a){this.slide(a,{easing:m,duration:l||700})}),k[m](j)}else h.collapsible&&e?b.toggle():(c.hide(),b.show()),i(!0);c.prev().attr({"aria-expanded":"false","aria-selected":"false",tabIndex:-1}).blur(),b.prev().attr({"aria-expanded":"true","aria-selected":"true",tabIndex:0}).focus()},_completed:function(a){this.running=a?0:--this.running;this.running||(this.options.clearStyle&&this.toShow.add(this.toHide).css({height:"",overflow:""}),this.toHide.removeClass("ui-accordion-content-active"),this.toHide.length&&(this.toHide.parent()[0].className=this.toHide.parent()[0].className),this._trigger("change",null,this.data))}}),a.extend(a.ui.accordion,{version:"1.8.18",animations:{slide:function(b,c){b=a.extend({easing:"swing",duration:300},b,c);if(!b.toHide.size())b.toShow.animate({height:"show",paddingTop:"show",paddingBottom:"show"},b);else{if(!b.toShow.size()){b.toHide.animate({height:"hide",paddingTop:"hide",paddingBottom:"hide"},b);return}var d=b.toShow.css("overflow"),e=0,f={},g={},h=["height","paddingTop","paddingBottom"],i,j=b.toShow;i=j[0].style.width,j.width(j.parent().width()-parseFloat(j.css("paddingLeft"))-parseFloat(j.css("paddingRight"))-(parseFloat(j.css("borderLeftWidth"))||0)-(parseFloat(j.css("borderRightWidth"))||0)),a.each(h,function(c,d){g[d]="hide";var e=(""+a.css(b.toShow[0],d)).match(/^([\d+-.]+)(.*)$/);f[d]={value:e[1],unit:e[2]||"px"}}),b.toShow.css({height:0,overflow:"hidden"}).show(),b.toHide.filter(":hidden").each(b.complete).end().filter(":visible").animate(g,{step:function(a,c){c.prop=="height"&&(e=c.end-c.start===0?0:(c.now-c.start)/(c.end-c.start)),b.toShow[0].style[c.prop]=e*f[c.prop].value+f[c.prop].unit},duration:b.duration,easing:b.easing,complete:function(){b.autoHeight||b.toShow.css("height",""),b.toShow.css({width:i,overflow:d}),b.complete()}})}},bounceslide:function(a){this.slide(a,{easing:a.down?"easeOutBounce":"swing",duration:a.down?1e3:200})}}})}(jQuery),function(a,b){var c=0;a.widget("ui.autocomplete",{options:{appendTo:"body",autoFocus:!1,delay:300,minLength:1,position:{my:"left top",at:"left bottom",collision:"none"},source:null},pending:0,_create:function(){var b=this,c=this.element[0].ownerDocument,d;this.element.addClass("ui-autocomplete-input").attr("autocomplete","off").attr({role:"textbox","aria-autocomplete":"list","aria-haspopup":"true"}).bind("keydown.autocomplete",function(c){if(!b.options.disabled&&!b.element.propAttr("readOnly")){d=!1;var e=a.ui.keyCode;switch(c.keyCode){case e.PAGE_UP:b._move("previousPage",c);break;case e.PAGE_DOWN:b._move("nextPage",c);break;case e.UP:b._move("previous",c),c.preventDefault();break;case e.DOWN:b._move("next",c),c.preventDefault();break;case e.ENTER:case e.NUMPAD_ENTER:b.menu.active&&(d=!0,c.preventDefault());case e.TAB:if(!b.menu.active)return;b.menu.select(c);break;case e.ESCAPE:b.element.val(b.term),b.close(c);break;default:clearTimeout(b.searching),b.searching=setTimeout(function(){b.term!=b.element.val()&&(b.selectedItem=null,b.search(null,c))},b.options.delay)}}}).bind("keypress.autocomplete",function(a){d&&(d=!1,a.preventDefault())}).bind("focus.autocomplete",function(){b.options.disabled||(b.selectedItem=null,b.previous=b.element.val())}).bind("blur.autocomplete",function(a){b.options.disabled||(clearTimeout(b.searching),b.closing=setTimeout(function(){b.close(a),b._change(a)},150))}),this._initSource(),this.response=function(){return b._response.apply(b,arguments)},this.menu=a("<ul></ul>").addClass("ui-autocomplete").appendTo(a(this.options.appendTo||"body",c)[0]).mousedown(function(c){var d=b.menu.element[0];a(c.target).closest(".ui-menu-item").length||setTimeout(function(){a(document).one("mousedown",function(c){c.target!==b.element[0]&&c.target!==d&&!a.ui.contains(d,c.target)&&b.close()})},1),setTimeout(function(){clearTimeout(b.closing)},13)}).menu({focus:function(a,c){var d=c.item.data("item.autocomplete");!1!==b._trigger("focus",a,{item:d})&&/^key/.test(a.originalEvent.type)&&b.element.val(d.value)},selected:function(a,d){var e=d.item.data("item.autocomplete"),f=b.previous;b.element[0]!==c.activeElement&&(b.element.focus(),b.previous=f,setTimeout(function(){b.previous=f,b.selectedItem=e},1)),!1!==b._trigger("select",a,{item:e})&&b.element.val(e.value),b.term=b.element.val(),b.close(a),b.selectedItem=e},blur:function(a,c){b.menu.element.is(":visible")&&b.element.val()!==b.term&&b.element.val(b.term)}}).zIndex(this.element.zIndex()+1).css({top:0,left:0}).hide().data("menu"),a.fn.bgiframe&&this.menu.element.bgiframe(),b.beforeunloadHandler=function(){b.element.removeAttr("autocomplete")},a(window).bind("beforeunload",b.beforeunloadHandler)},destroy:function(){this.element.removeClass("ui-autocomplete-input").removeAttr("autocomplete").removeAttr("role").removeAttr("aria-autocomplete").removeAttr("aria-haspopup"),this.menu.element.remove(),a(window).unbind("beforeunload",this.beforeunloadHandler),a.Widget.prototype.destroy.call(this)},_setOption:function(b,c){a.Widget.prototype._setOption.apply(this,arguments),b==="source"&&this._initSource(),b==="appendTo"&&this.menu.element.appendTo(a(c||"body",this.element[0].ownerDocument)[0]),b==="disabled"&&c&&this.xhr&&this.xhr.abort()},_initSource:function(){var b=this,d,e;a.isArray(this.options.source)?(d=this.options.source,this.source=function(b,c){c(a.ui.autocomplete.filter(d,b.term))}):typeof this.options.source=="string"?(e=this.options.source,this.source=function(d,f){b.xhr&&b.xhr.abort(),b.xhr=a.ajax({url:e,data:d,dataType:"json",context:{autocompleteRequest:++c},success:function(a,b){this.autocompleteRequest===c&&f(a)},error:function(){this.autocompleteRequest===c&&f([])}})}):this.source=this.options.source},search:function(a,b){a=a!=null?a:this.element.val(),this.term=this.element.val();if(a.length<this.options.minLength)return this.close(b);clearTimeout(this.closing);if(this._trigger("search",b)!==!1)return this._search(a)},_search:function(a){this.pending++,this.element.addClass("ui-autocomplete-loading"),this.source({term:a},this.response)},_response:function(a){!this.options.disabled&&a&&a.length?(a=this._normalize(a),this._suggest(a),this._trigger("open")):this.close(),this.pending--,this.pending||this.element.removeClass("ui-autocomplete-loading")},close:function(a){clearTimeout(this.closing),this.menu.element.is(":visible")&&(this.menu.element.hide(),this.menu.deactivate(),this._trigger("close",a))},_change:function(a){this.previous!==this.element.val()&&this._trigger("change",a,{item:this.selectedItem})},_normalize:function(b){if(b.length&&b[0].label&&b[0].value)return b;return a.map(b,function(b){if(typeof b=="string")return{label:b,value:b};return a.extend({label:b.label||b.value,value:b.value||b.label},b)})},_suggest:function(b){var c=this.menu.element.empty().zIndex(this.element.zIndex()+1);this._renderMenu(c,b),this.menu.deactivate(),this.menu.refresh(),c.show(),this._resizeMenu(),c.position(a.extend({of:this.element},this.options.position)),this.options.autoFocus&&this.menu.next(new a.Event("mouseover"))},_resizeMenu:function(){var a=this.menu.element;a.outerWidth(Math.max(a.width("").outerWidth()+1,this.element.outerWidth()))},_renderMenu:function(b,c){var d=this;a.each(c,function(a,c){d._renderItem(b,c)})},_renderItem:function(b,c){return a("<li></li>").data("item.autocomplete",c).append(a("<a></a>").text(c.label)).appendTo(b)},_move:function(a,b){if(!this.menu.element.is(":visible"))this.search(null,b);else{if(this.menu.first()&&/^previous/.test(a)||this.menu.last()&&/^next/.test(a)){this.element.val(this.term),this.menu.deactivate();return}this.menu[a](b)}},widget:function(){return this.menu.element}}),a.extend(a.ui.autocomplete,{escapeRegex:function(a){return a.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&")},filter:function(b,c){var d=new RegExp(a.ui.autocomplete.escapeRegex(c),"i");return a.grep(b,function(a){return d.test(a.label||a.value||a)})}})}(jQuery),function(a){a.widget("ui.menu",{_create:function(){var b=this;this.element.addClass("ui-menu ui-widget ui-widget-content ui-corner-all").attr({role:"listbox","aria-activedescendant":"ui-active-menuitem"}).click(function(c){!a(c.target).closest(".ui-menu-item a").length||(c.preventDefault(),b.select(c))}),this.refresh()},refresh:function(){var b=this,c=this.element.children("li:not(.ui-menu-item):has(a)").addClass("ui-menu-item").attr("role","menuitem");c.children("a").addClass("ui-corner-all").attr("tabindex",-1).mouseenter(function(c){b.activate(c,a(this).parent())}).mouseleave(function(){b.deactivate()})},activate:function(a,b){this.deactivate();if(this.hasScroll()){var c=b.offset().top-this.element.offset().top,d=this.element.scrollTop(),e=this.element.height();c<0?this.element.scrollTop(d+c):c>=e&&this.element.scrollTop(d+c-e+b.height())}this.active=b.eq(0).children("a").addClass("ui-state-hover").attr("id","ui-active-menuitem").end(),this._trigger("focus",a,{item:b})},deactivate:function(){!this.active||(this.active.children("a").removeClass("ui-state-hover").removeAttr("id"),this._trigger("blur"),this.active=null)},next:function(a){this.move("next",".ui-menu-item:first",a)},previous:function(a){this.move("prev",".ui-menu-item:last",a)},first:function(){return this.active&&!this.active.prevAll(".ui-menu-item").length},last:function(){return this.active&&!this.active.nextAll(".ui-menu-item").length},move:function(a,b,c){if(!this.active)this.activate(c,this.element.children(b));else{var d=this.active[a+"All"](".ui-menu-item").eq(0);d.length?this.activate(c,d):this.activate(c,this.element.children(b))}},nextPage:function(b){if(this.hasScroll()){if(!this.active||this.last()){this.activate(b,this.element.children(".ui-menu-item:first"));return}var c=this.active.offset().top,d=this.element.height(),e=this.element.children(".ui-menu-item").filter(function(){var b=a(this).offset().top-c-d+a(this).height();return b<10&&b>-10});e.length||(e=this.element.children(".ui-menu-item:last")),this.activate(b,e)}else this.activate(b,this.element.children(".ui-menu-item").filter(!this.active||this.last()?":first":":last"))},previousPage:function(b){if(this.hasScroll()){if(!this.active||this.first()){this.activate(b,this.element.children(".ui-menu-item:last"));return}var c=this.active.offset().top,d=this.element.height();result=this.element.children(".ui-menu-item").filter(function(){var b=a(this).offset().top-c+d-a(this).height();return b<10&&b>-10}),result.length||(result=this.element.children(".ui-menu-item:first")),this.activate(b,result)}else this.activate(b,this.element.children(".ui-menu-item").filter(!this.active||this.first()?":last":":first"))},hasScroll:function(){return this.element.height()<this.element[a.fn.prop?"prop":"attr"]("scrollHeight")},select:function(a){this._trigger("selected",a,{item:this.active})}})}(jQuery),function(a,b){var c,d,e,f,g="ui-button ui-widget ui-state-default ui-corner-all",h="ui-state-hover ui-state-active ",i="ui-button-icons-only ui-button-icon-only ui-button-text-icons ui-button-text-icon-primary ui-button-text-icon-secondary ui-button-text-only",j=function(){var b=a(this).find(":ui-button");setTimeout(function(){b.button("refresh")},1)},k=function(b){var c=b.name,d=b.form,e=a([]);c&&(d?e=a(d).find("[name='"+c+"']"):e=a("[name='"+c+"']",b.ownerDocument).filter(function(){return!this.form}));return e};a.widget("ui.button",{options:{disabled:null,text:!0,label:null,icons:{primary:null,secondary:null}},_create:function(){this.element.closest("form").unbind("reset.button").bind("reset.button",j),typeof this.options.disabled!="boolean"?this.options.disabled=!!this.element.propAttr("disabled"):this.element.propAttr("disabled",this.options.disabled),this._determineButtonType(),this.hasTitle=!!this.buttonElement.attr("title");var b=this,h=this.options,i=this.type==="checkbox"||this.type==="radio",l="ui-state-hover"+(i?"":" ui-state-active"),m="ui-state-focus";h.label===null&&(h.label=this.buttonElement.html()),this.buttonElement.addClass(g).attr("role","button").bind("mouseenter.button",function(){h.disabled||(a(this).addClass("ui-state-hover"),this===c&&a(this).addClass("ui-state-active"))}).bind("mouseleave.button",function(){h.disabled||a(this).removeClass(l)}).bind("click.button",function(a){h.disabled&&(a.preventDefault(),a.stopImmediatePropagation())}),this.element.bind("focus.button",function(){b.buttonElement.addClass(m)}).bind("blur.button",function(){b.buttonElement.removeClass(m)}),i&&(this.element.bind("change.button",function(){f||b.refresh()}),this.buttonElement.bind("mousedown.button",function(a){h.disabled||(f=!1,d=a.pageX,e=a.pageY)}).bind("mouseup.button",function(a){!h.disabled&&(d!==a.pageX||e!==a.pageY)&&(f=!0)})),this.type==="checkbox"?this.buttonElement.bind("click.button",function(){if(h.disabled||f)return!1;a(this).toggleClass("ui-state-active"),b.buttonElement.attr("aria-pressed",b.element[0].checked)}):this.type==="radio"?this.buttonElement.bind("click.button",function(){if(h.disabled||f)return!1;a(this).addClass("ui-state-active"),b.buttonElement.attr("aria-pressed","true");var c=b.element[0];k(c).not(c).map(function(){return a(this).button("widget")[0]}).removeClass("ui-state-active").attr("aria-pressed","false")}):(this.buttonElement.bind("mousedown.button",function(){if(h.disabled)return!1;a(this).addClass("ui-state-active"),c=this,a(document).one("mouseup",function(){c=null})}).bind("mouseup.button",function(){if(h.disabled)return!1;a(this).removeClass("ui-state-active")}).bind("keydown.button",function(b){if(h.disabled)return!1;(b.keyCode==a.ui.keyCode.SPACE||b.keyCode==a.ui.keyCode.ENTER)&&a(this).addClass("ui-state-active")}).bind("keyup.button",function(){a(this).removeClass("ui-state-active")}),this.buttonElement.is("a")&&this.buttonElement.keyup(function(b){b.keyCode===a.ui.keyCode.SPACE&&a(this).click()})),this._setOption("disabled",h.disabled),this._resetButton()},_determineButtonType:function(){this.element.is(":checkbox")?this.type="checkbox":this.element.is(":radio")?this.type="radio":this.element.is("input")?this.type="input":this.type="button";if(this.type==="checkbox"||this.type==="radio"){var a=this.element.parents().filter(":last"),b="label[for='"+this.element.attr("id")+"']";this.buttonElement=a.find(b),this.buttonElement.length||(a=a.length?a.siblings():this.element.siblings(),this.buttonElement=a.filter(b),this.buttonElement.length||(this.buttonElement=a.find(b))),this.element.addClass("ui-helper-hidden-accessible");var c=this.element.is(":checked");c&&this.buttonElement.addClass("ui-state-active"),this.buttonElement.attr("aria-pressed",c)}else this.buttonElement=this.element},widget:function(){return this.buttonElement},destroy:function(){this.element.removeClass("ui-helper-hidden-accessible"),this.buttonElement.removeClass(g+" "+h+" "+i).removeAttr("role").removeAttr("aria-pressed").html(this.buttonElement.find(".ui-button-text").html()),this.hasTitle||this.buttonElement.removeAttr("title"),a.Widget.prototype.destroy.call(this)},_setOption:function(b,c){a.Widget.prototype._setOption.apply(this,arguments);b==="disabled"?c?this.element.propAttr("disabled",!0):this.element.propAttr("disabled",!1):this._resetButton()},refresh:function(){var b=this.element.is(":disabled");b!==this.options.disabled&&this._setOption("disabled",b),this.type==="radio"?k(this.element[0]).each(function(){a(this).is(":checked")?a(this).button("widget").addClass("ui-state-active").attr("aria-pressed","true"):a(this).button("widget").removeClass("ui-state-active").attr("aria-pressed","false")}):this.type==="checkbox"&&(this.element.is(":checked")?this.buttonElement.addClass("ui-state-active").attr("aria-pressed","true"):this.buttonElement.removeClass("ui-state-active").attr("aria-pressed","false"))},_resetButton:function(){if(this.type==="input")this.options.label&&this.element.val(this.options.label);else{var b=this.buttonElement.removeClass(i),c=a("<span></span>",this.element[0].ownerDocument).addClass("ui-button-text").html(this.options.label).appendTo(b.empty()).text(),d=this.options.icons,e=d.primary&&d.secondary,f=[];d.primary||d.secondary?(this.options.text&&f.push("ui-button-text-icon"+(e?"s":d.primary?"-primary":"-secondary")),d.primary&&b.prepend("<span class='ui-button-icon-primary ui-icon "+d.primary+"'></span>"),d.secondary&&b.append("<span class='ui-button-icon-secondary ui-icon "+d.secondary+"'></span>"),this.options.text||(f.push(e?"ui-button-icons-only":"ui-button-icon-only"),this.hasTitle||b.attr("title",c))):f.push("ui-button-text-only"),b.addClass(f.join(" "))}}}),a.widget("ui.buttonset",{options:{items:":button, :submit, :reset, :checkbox, :radio, a, :data(button)"},_create:function(){this.element.addClass("ui-buttonset")},_init:function(){this.refresh()},_setOption:function(b,c){b==="disabled"&&this.buttons.button("option",b,c),a.Widget.prototype._setOption.apply(this,arguments)},refresh:function(){var b=this.element.css("direction")==="rtl";this.buttons=this.element.find(this.options.items).filter(":ui-button").button("refresh").end().not(":ui-button").button().end().map(function(){return a(this).button("widget")[0]}).removeClass("ui-corner-all ui-corner-left ui-corner-right").filter(":first").addClass(b?"ui-corner-right":"ui-corner-left").end().filter(":last").addClass(b?"ui-corner-left":"ui-corner-right").end().end()},destroy:function(){this.element.removeClass("ui-buttonset"),this.buttons.map(function(){return a(this).button("widget")[0]}).removeClass("ui-corner-left ui-corner-right").end().button("destroy"),a.Widget.prototype.destroy.call(this)}})}(jQuery),function($,undefined){function isArray(a){return a&&($.browser.safari&&typeof a=="object"&&a.length||a.constructor&&a.constructor.toString().match(/\Array\(\)/))}function extendRemove(a,b){$.extend(a,b);for(var c in b)if(b[c]==null||b[c]==undefined)a[c]=b[c];return a}function bindHover(a){var b="button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a";return a.bind("mouseout",function(a){var c=$(a.target).closest(b);!c.length||c.removeClass("ui-state-hover ui-datepicker-prev-hover ui-datepicker-next-hover")}).bind("mouseover",function(c){var d=$(c.target).closest(b);!$.datepicker._isDisabledDatepicker(instActive.inline?a.parent()[0]:instActive.input[0])&&!!d.length&&(d.parents(".ui-datepicker-calendar").find("a").removeClass("ui-state-hover"),d.addClass("ui-state-hover"),d.hasClass("ui-datepicker-prev")&&d.addClass("ui-datepicker-prev-hover"),d.hasClass("ui-datepicker-next")&&d.addClass("ui-datepicker-next-hover"))})}function Datepicker(){this.debug=!1,this._curInst=null,this._keyEvent=!1,this._disabledInputs=[],this._datepickerShowing=!1,this._inDialog=!1,this._mainDivId="ui-datepicker-div",this._inlineClass="ui-datepicker-inline",this._appendClass="ui-datepicker-append",this._triggerClass="ui-datepicker-trigger",this._dialogClass="ui-datepicker-dialog",this._disableClass="ui-datepicker-disabled",this._unselectableClass="ui-datepicker-unselectable",this._currentClass="ui-datepicker-current-day",this._dayOverClass="ui-datepicker-days-cell-over",this.regional=[],this.regional[""]={closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"mm/dd/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},this._defaults={showOn:"focus",showAnim:"fadeIn",showOptions:{},defaultDate:null,appendText:"",buttonText:"...",buttonImage:"",buttonImageOnly:!1,hideIfNoPrevNext:!1,navigationAsDateFormat:!1,gotoCurrent:!1,changeMonth:!1,changeYear:!1,yearRange:"c-10:c+10",showOtherMonths:!1,selectOtherMonths:!1,showWeek:!1,calculateWeek:this.iso8601Week,shortYearCutoff:"+10",minDate:null,maxDate:null,duration:"fast",beforeShowDay:null,beforeShow:null,onSelect:null,onChangeMonthYear:null,onClose:null,numberOfMonths:1,showCurrentAtPos:0,stepMonths:1,stepBigMonths:12,altField:"",altFormat:"",constrainInput:!0,showButtonPanel:!1,autoSize:!1,disabled:!1},$.extend(this._defaults,this.regional[""]),this.dpDiv=bindHover($('<div id="'+this._mainDivId+'" class="ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all"></div>'))}$.extend($.ui,{datepicker:{version:"1.8.18"}});var PROP_NAME="datepicker",dpuuid=(new Date).getTime(),instActive;$.extend(Datepicker.prototype,{markerClassName:"hasDatepicker",maxRows:4,log:function(){this.debug&&console.log.apply("",arguments)},_widgetDatepicker:function(){return this.dpDiv},setDefaults:function(a){extendRemove(this._defaults,a||{});return this},_attachDatepicker:function(target,settings){var inlineSettings=null;for(var attrName in this._defaults){var attrValue=target.getAttribute("date:"+attrName);if(attrValue){inlineSettings=inlineSettings||{};try{inlineSettings[attrName]=eval(attrValue)}catch(err){inlineSettings[attrName]=attrValue}
}}var nodeName=target.nodeName.toLowerCase(),inline=nodeName=="div"||nodeName=="span";target.id||(this.uuid+=1,target.id="dp"+this.uuid);var inst=this._newInst($(target),inline);inst.settings=$.extend({},settings||{},inlineSettings||{}),nodeName=="input"?this._connectDatepicker(target,inst):inline&&this._inlineDatepicker(target,inst)},_newInst:function(a,b){var c=a[0].id.replace(/([^A-Za-z0-9_-])/g,"\\\\$1");return{id:c,input:a,selectedDay:0,selectedMonth:0,selectedYear:0,drawMonth:0,drawYear:0,inline:b,dpDiv:b?bindHover($('<div class="'+this._inlineClass+' ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all"></div>')):this.dpDiv}},_connectDatepicker:function(a,b){var c=$(a);b.append=$([]),b.trigger=$([]);c.hasClass(this.markerClassName)||(this._attachments(c,b),c.addClass(this.markerClassName).keydown(this._doKeyDown).keypress(this._doKeyPress).keyup(this._doKeyUp).bind("setData.datepicker",function(a,c,d){b.settings[c]=d}).bind("getData.datepicker",function(a,c){return this._get(b,c)}),this._autoSize(b),$.data(a,PROP_NAME,b),b.settings.disabled&&this._disableDatepicker(a))},_attachments:function(a,b){var c=this._get(b,"appendText"),d=this._get(b,"isRTL");b.append&&b.append.remove(),c&&(b.append=$('<span class="'+this._appendClass+'">'+c+"</span>"),a[d?"before":"after"](b.append)),a.unbind("focus",this._showDatepicker),b.trigger&&b.trigger.remove();var e=this._get(b,"showOn");(e=="focus"||e=="both")&&a.focus(this._showDatepicker);if(e=="button"||e=="both"){var f=this._get(b,"buttonText"),g=this._get(b,"buttonImage");b.trigger=$(this._get(b,"buttonImageOnly")?$("<img/>").addClass(this._triggerClass).attr({src:g,alt:f,title:f}):$('<button type="button"></button>').addClass(this._triggerClass).html(g==""?f:$("<img/>").attr({src:g,alt:f,title:f}))),a[d?"before":"after"](b.trigger),b.trigger.click(function(){$.datepicker._datepickerShowing&&$.datepicker._lastInput==a[0]?$.datepicker._hideDatepicker():$.datepicker._datepickerShowing&&$.datepicker._lastInput!=a[0]?($.datepicker._hideDatepicker(),$.datepicker._showDatepicker(a[0])):$.datepicker._showDatepicker(a[0]);return!1})}},_autoSize:function(a){if(this._get(a,"autoSize")&&!a.inline){var b=new Date(2009,11,20),c=this._get(a,"dateFormat");if(c.match(/[DM]/)){var d=function(a){var b=0,c=0;for(var d=0;d<a.length;d++)a[d].length>b&&(b=a[d].length,c=d);return c};b.setMonth(d(this._get(a,c.match(/MM/)?"monthNames":"monthNamesShort"))),b.setDate(d(this._get(a,c.match(/DD/)?"dayNames":"dayNamesShort"))+20-b.getDay())}a.input.attr("size",this._formatDate(a,b).length)}},_inlineDatepicker:function(a,b){var c=$(a);c.hasClass(this.markerClassName)||(c.addClass(this.markerClassName).append(b.dpDiv).bind("setData.datepicker",function(a,c,d){b.settings[c]=d}).bind("getData.datepicker",function(a,c){return this._get(b,c)}),$.data(a,PROP_NAME,b),this._setDate(b,this._getDefaultDate(b),!0),this._updateDatepicker(b),this._updateAlternate(b),b.settings.disabled&&this._disableDatepicker(a),b.dpDiv.css("display","block"))},_dialogDatepicker:function(a,b,c,d,e){var f=this._dialogInst;if(!f){this.uuid+=1;var g="dp"+this.uuid;this._dialogInput=$('<input type="text" id="'+g+'" style="position: absolute; top: -100px; width: 0px; z-index: -10;"/>'),this._dialogInput.keydown(this._doKeyDown),$("body").append(this._dialogInput),f=this._dialogInst=this._newInst(this._dialogInput,!1),f.settings={},$.data(this._dialogInput[0],PROP_NAME,f)}extendRemove(f.settings,d||{}),b=b&&b.constructor==Date?this._formatDate(f,b):b,this._dialogInput.val(b),this._pos=e?e.length?e:[e.pageX,e.pageY]:null;if(!this._pos){var h=document.documentElement.clientWidth,i=document.documentElement.clientHeight,j=document.documentElement.scrollLeft||document.body.scrollLeft,k=document.documentElement.scrollTop||document.body.scrollTop;this._pos=[h/2-100+j,i/2-150+k]}this._dialogInput.css("left",this._pos[0]+20+"px").css("top",this._pos[1]+"px"),f.settings.onSelect=c,this._inDialog=!0,this.dpDiv.addClass(this._dialogClass),this._showDatepicker(this._dialogInput[0]),$.blockUI&&$.blockUI(this.dpDiv),$.data(this._dialogInput[0],PROP_NAME,f);return this},_destroyDatepicker:function(a){var b=$(a),c=$.data(a,PROP_NAME);if(!!b.hasClass(this.markerClassName)){var d=a.nodeName.toLowerCase();$.removeData(a,PROP_NAME),d=="input"?(c.append.remove(),c.trigger.remove(),b.removeClass(this.markerClassName).unbind("focus",this._showDatepicker).unbind("keydown",this._doKeyDown).unbind("keypress",this._doKeyPress).unbind("keyup",this._doKeyUp)):(d=="div"||d=="span")&&b.removeClass(this.markerClassName).empty()}},_enableDatepicker:function(a){var b=$(a),c=$.data(a,PROP_NAME);if(!!b.hasClass(this.markerClassName)){var d=a.nodeName.toLowerCase();if(d=="input")a.disabled=!1,c.trigger.filter("button").each(function(){this.disabled=!1}).end().filter("img").css({opacity:"1.0",cursor:""});else if(d=="div"||d=="span"){var e=b.children("."+this._inlineClass);e.children().removeClass("ui-state-disabled"),e.find("select.ui-datepicker-month, select.ui-datepicker-year").removeAttr("disabled")}this._disabledInputs=$.map(this._disabledInputs,function(b){return b==a?null:b})}},_disableDatepicker:function(a){var b=$(a),c=$.data(a,PROP_NAME);if(!!b.hasClass(this.markerClassName)){var d=a.nodeName.toLowerCase();if(d=="input")a.disabled=!0,c.trigger.filter("button").each(function(){this.disabled=!0}).end().filter("img").css({opacity:"0.5",cursor:"default"});else if(d=="div"||d=="span"){var e=b.children("."+this._inlineClass);e.children().addClass("ui-state-disabled"),e.find("select.ui-datepicker-month, select.ui-datepicker-year").attr("disabled","disabled")}this._disabledInputs=$.map(this._disabledInputs,function(b){return b==a?null:b}),this._disabledInputs[this._disabledInputs.length]=a}},_isDisabledDatepicker:function(a){if(!a)return!1;for(var b=0;b<this._disabledInputs.length;b++)if(this._disabledInputs[b]==a)return!0;return!1},_getInst:function(a){try{return $.data(a,PROP_NAME)}catch(b){throw"Missing instance data for this datepicker"}},_optionDatepicker:function(a,b,c){var d=this._getInst(a);if(arguments.length==2&&typeof b=="string")return b=="defaults"?$.extend({},$.datepicker._defaults):d?b=="all"?$.extend({},d.settings):this._get(d,b):null;var e=b||{};typeof b=="string"&&(e={},e[b]=c);if(d){this._curInst==d&&this._hideDatepicker();var f=this._getDateDatepicker(a,!0),g=this._getMinMaxDate(d,"min"),h=this._getMinMaxDate(d,"max");extendRemove(d.settings,e),g!==null&&e.dateFormat!==undefined&&e.minDate===undefined&&(d.settings.minDate=this._formatDate(d,g)),h!==null&&e.dateFormat!==undefined&&e.maxDate===undefined&&(d.settings.maxDate=this._formatDate(d,h)),this._attachments($(a),d),this._autoSize(d),this._setDate(d,f),this._updateAlternate(d),this._updateDatepicker(d)}},_changeDatepicker:function(a,b,c){this._optionDatepicker(a,b,c)},_refreshDatepicker:function(a){var b=this._getInst(a);b&&this._updateDatepicker(b)},_setDateDatepicker:function(a,b){var c=this._getInst(a);c&&(this._setDate(c,b),this._updateDatepicker(c),this._updateAlternate(c))},_getDateDatepicker:function(a,b){var c=this._getInst(a);c&&!c.inline&&this._setDateFromField(c,b);return c?this._getDate(c):null},_doKeyDown:function(a){var b=$.datepicker._getInst(a.target),c=!0,d=b.dpDiv.is(".ui-datepicker-rtl");b._keyEvent=!0;if($.datepicker._datepickerShowing)switch(a.keyCode){case 9:$.datepicker._hideDatepicker(),c=!1;break;case 13:var e=$("td."+$.datepicker._dayOverClass+":not(."+$.datepicker._currentClass+")",b.dpDiv);e[0]&&$.datepicker._selectDay(a.target,b.selectedMonth,b.selectedYear,e[0]);var f=$.datepicker._get(b,"onSelect");if(f){var g=$.datepicker._formatDate(b);f.apply(b.input?b.input[0]:null,[g,b])}else $.datepicker._hideDatepicker();return!1;case 27:$.datepicker._hideDatepicker();break;case 33:$.datepicker._adjustDate(a.target,a.ctrlKey?-$.datepicker._get(b,"stepBigMonths"):-$.datepicker._get(b,"stepMonths"),"M");break;case 34:$.datepicker._adjustDate(a.target,a.ctrlKey?+$.datepicker._get(b,"stepBigMonths"):+$.datepicker._get(b,"stepMonths"),"M");break;case 35:(a.ctrlKey||a.metaKey)&&$.datepicker._clearDate(a.target),c=a.ctrlKey||a.metaKey;break;case 36:(a.ctrlKey||a.metaKey)&&$.datepicker._gotoToday(a.target),c=a.ctrlKey||a.metaKey;break;case 37:(a.ctrlKey||a.metaKey)&&$.datepicker._adjustDate(a.target,d?1:-1,"D"),c=a.ctrlKey||a.metaKey,a.originalEvent.altKey&&$.datepicker._adjustDate(a.target,a.ctrlKey?-$.datepicker._get(b,"stepBigMonths"):-$.datepicker._get(b,"stepMonths"),"M");break;case 38:(a.ctrlKey||a.metaKey)&&$.datepicker._adjustDate(a.target,-7,"D"),c=a.ctrlKey||a.metaKey;break;case 39:(a.ctrlKey||a.metaKey)&&$.datepicker._adjustDate(a.target,d?-1:1,"D"),c=a.ctrlKey||a.metaKey,a.originalEvent.altKey&&$.datepicker._adjustDate(a.target,a.ctrlKey?+$.datepicker._get(b,"stepBigMonths"):+$.datepicker._get(b,"stepMonths"),"M");break;case 40:(a.ctrlKey||a.metaKey)&&$.datepicker._adjustDate(a.target,7,"D"),c=a.ctrlKey||a.metaKey;break;default:c=!1}else a.keyCode==36&&a.ctrlKey?$.datepicker._showDatepicker(this):c=!1;c&&(a.preventDefault(),a.stopPropagation())},_doKeyPress:function(a){var b=$.datepicker._getInst(a.target);if($.datepicker._get(b,"constrainInput")){var c=$.datepicker._possibleChars($.datepicker._get(b,"dateFormat")),d=String.fromCharCode(a.charCode==undefined?a.keyCode:a.charCode);return a.ctrlKey||a.metaKey||d<" "||!c||c.indexOf(d)>-1}},_doKeyUp:function(a){var b=$.datepicker._getInst(a.target);if(b.input.val()!=b.lastVal)try{var c=$.datepicker.parseDate($.datepicker._get(b,"dateFormat"),b.input?b.input.val():null,$.datepicker._getFormatConfig(b));c&&($.datepicker._setDateFromField(b),$.datepicker._updateAlternate(b),$.datepicker._updateDatepicker(b))}catch(a){$.datepicker.log(a)}return!0},_showDatepicker:function(a){a=a.target||a,a.nodeName.toLowerCase()!="input"&&(a=$("input",a.parentNode)[0]);if(!$.datepicker._isDisabledDatepicker(a)&&$.datepicker._lastInput!=a){var b=$.datepicker._getInst(a);$.datepicker._curInst&&$.datepicker._curInst!=b&&($.datepicker._curInst.dpDiv.stop(!0,!0),b&&$.datepicker._datepickerShowing&&$.datepicker._hideDatepicker($.datepicker._curInst.input[0]));var c=$.datepicker._get(b,"beforeShow"),d=c?c.apply(a,[a,b]):{};if(d===!1)return;extendRemove(b.settings,d),b.lastVal=null,$.datepicker._lastInput=a,$.datepicker._setDateFromField(b),$.datepicker._inDialog&&(a.value=""),$.datepicker._pos||($.datepicker._pos=$.datepicker._findPos(a),$.datepicker._pos[1]+=a.offsetHeight);var e=!1;$(a).parents().each(function(){e|=$(this).css("position")=="fixed";return!e}),e&&$.browser.opera&&($.datepicker._pos[0]-=document.documentElement.scrollLeft,$.datepicker._pos[1]-=document.documentElement.scrollTop);var f={left:$.datepicker._pos[0],top:$.datepicker._pos[1]};$.datepicker._pos=null,b.dpDiv.empty(),b.dpDiv.css({position:"absolute",display:"block",top:"-1000px"}),$.datepicker._updateDatepicker(b),f=$.datepicker._checkOffset(b,f,e),b.dpDiv.css({position:$.datepicker._inDialog&&$.blockUI?"static":e?"fixed":"absolute",display:"none",left:f.left+"px",top:f.top+"px"});if(!b.inline){var g=$.datepicker._get(b,"showAnim"),h=$.datepicker._get(b,"duration"),i=function(){var a=b.dpDiv.find("iframe.ui-datepicker-cover");if(!!a.length){var c=$.datepicker._getBorders(b.dpDiv);a.css({left:-c[0],top:-c[1],width:b.dpDiv.outerWidth(),height:b.dpDiv.outerHeight()})}};b.dpDiv.zIndex($(a).zIndex()+1),$.datepicker._datepickerShowing=!0,$.effects&&$.effects[g]?b.dpDiv.show(g,$.datepicker._get(b,"showOptions"),h,i):b.dpDiv[g||"show"](g?h:null,i),(!g||!h)&&i(),b.input.is(":visible")&&!b.input.is(":disabled")&&b.input.focus(),$.datepicker._curInst=b}}},_updateDatepicker:function(a){var b=this;b.maxRows=4;var c=$.datepicker._getBorders(a.dpDiv);instActive=a,a.dpDiv.empty().append(this._generateHTML(a));var d=a.dpDiv.find("iframe.ui-datepicker-cover");!d.length||d.css({left:-c[0],top:-c[1],width:a.dpDiv.outerWidth(),height:a.dpDiv.outerHeight()}),a.dpDiv.find("."+this._dayOverClass+" a").mouseover();var e=this._getNumberOfMonths(a),f=e[1],g=17;a.dpDiv.removeClass("ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4").width(""),f>1&&a.dpDiv.addClass("ui-datepicker-multi-"+f).css("width",g*f+"em"),a.dpDiv[(e[0]!=1||e[1]!=1?"add":"remove")+"Class"]("ui-datepicker-multi"),a.dpDiv[(this._get(a,"isRTL")?"add":"remove")+"Class"]("ui-datepicker-rtl"),a==$.datepicker._curInst&&$.datepicker._datepickerShowing&&a.input&&a.input.is(":visible")&&!a.input.is(":disabled")&&a.input[0]!=document.activeElement&&a.input.focus();if(a.yearshtml){var h=a.yearshtml;setTimeout(function(){h===a.yearshtml&&a.yearshtml&&a.dpDiv.find("select.ui-datepicker-year:first").replaceWith(a.yearshtml),h=a.yearshtml=null},0)}},_getBorders:function(a){var b=function(a){return{thin:1,medium:2,thick:3}[a]||a};return[parseFloat(b(a.css("border-left-width"))),parseFloat(b(a.css("border-top-width")))]},_checkOffset:function(a,b,c){var d=a.dpDiv.outerWidth(),e=a.dpDiv.outerHeight(),f=a.input?a.input.outerWidth():0,g=a.input?a.input.outerHeight():0,h=document.documentElement.clientWidth+$(document).scrollLeft(),i=document.documentElement.clientHeight+$(document).scrollTop();b.left-=this._get(a,"isRTL")?d-f:0,b.left-=c&&b.left==a.input.offset().left?$(document).scrollLeft():0,b.top-=c&&b.top==a.input.offset().top+g?$(document).scrollTop():0,b.left-=Math.min(b.left,b.left+d>h&&h>d?Math.abs(b.left+d-h):0),b.top-=Math.min(b.top,b.top+e>i&&i>e?Math.abs(e+g):0);return b},_findPos:function(a){var b=this._getInst(a),c=this._get(b,"isRTL");while(a&&(a.type=="hidden"||a.nodeType!=1||$.expr.filters.hidden(a)))a=a[c?"previousSibling":"nextSibling"];var d=$(a).offset();return[d.left,d.top]},_hideDatepicker:function(a){var b=this._curInst;if(!(!b||a&&b!=$.data(a,PROP_NAME))&&this._datepickerShowing){var c=this._get(b,"showAnim"),d=this._get(b,"duration"),e=this,f=function(){$.datepicker._tidyDialog(b),e._curInst=null};$.effects&&$.effects[c]?b.dpDiv.hide(c,$.datepicker._get(b,"showOptions"),d,f):b.dpDiv[c=="slideDown"?"slideUp":c=="fadeIn"?"fadeOut":"hide"](c?d:null,f),c||f(),this._datepickerShowing=!1;var g=this._get(b,"onClose");g&&g.apply(b.input?b.input[0]:null,[b.input?b.input.val():"",b]),this._lastInput=null,this._inDialog&&(this._dialogInput.css({position:"absolute",left:"0",top:"-100px"}),$.blockUI&&($.unblockUI(),$("body").append(this.dpDiv))),this._inDialog=!1}},_tidyDialog:function(a){a.dpDiv.removeClass(this._dialogClass).unbind(".ui-datepicker-calendar")},_checkExternalClick:function(a){if(!!$.datepicker._curInst){var b=$(a.target),c=$.datepicker._getInst(b[0]);(b[0].id!=$.datepicker._mainDivId&&b.parents("#"+$.datepicker._mainDivId).length==0&&!b.hasClass($.datepicker.markerClassName)&&!b.closest("."+$.datepicker._triggerClass).length&&$.datepicker._datepickerShowing&&(!$.datepicker._inDialog||!$.blockUI)||b.hasClass($.datepicker.markerClassName)&&$.datepicker._curInst!=c)&&$.datepicker._hideDatepicker()}},_adjustDate:function(a,b,c){var d=$(a),e=this._getInst(d[0]);this._isDisabledDatepicker(d[0])||(this._adjustInstDate(e,b+(c=="M"?this._get(e,"showCurrentAtPos"):0),c),this._updateDatepicker(e))},_gotoToday:function(a){var b=$(a),c=this._getInst(b[0]);if(this._get(c,"gotoCurrent")&&c.currentDay)c.selectedDay=c.currentDay,c.drawMonth=c.selectedMonth=c.currentMonth,c.drawYear=c.selectedYear=c.currentYear;else{var d=new Date;c.selectedDay=d.getDate(),c.drawMonth=c.selectedMonth=d.getMonth(),c.drawYear=c.selectedYear=d.getFullYear()}this._notifyChange(c),this._adjustDate(b)},_selectMonthYear:function(a,b,c){var d=$(a),e=this._getInst(d[0]);e["selected"+(c=="M"?"Month":"Year")]=e["draw"+(c=="M"?"Month":"Year")]=parseInt(b.options[b.selectedIndex].value,10),this._notifyChange(e),this._adjustDate(d)},_selectDay:function(a,b,c,d){var e=$(a);if(!$(d).hasClass(this._unselectableClass)&&!this._isDisabledDatepicker(e[0])){var f=this._getInst(e[0]);f.selectedDay=f.currentDay=$("a",d).html(),f.selectedMonth=f.currentMonth=b,f.selectedYear=f.currentYear=c,this._selectDate(a,this._formatDate(f,f.currentDay,f.currentMonth,f.currentYear))}},_clearDate:function(a){var b=$(a),c=this._getInst(b[0]);this._selectDate(b,"")},_selectDate:function(a,b){var c=$(a),d=this._getInst(c[0]);b=b!=null?b:this._formatDate(d),d.input&&d.input.val(b),this._updateAlternate(d);var e=this._get(d,"onSelect");e?e.apply(d.input?d.input[0]:null,[b,d]):d.input&&d.input.trigger("change"),d.inline?this._updateDatepicker(d):(this._hideDatepicker(),this._lastInput=d.input[0],typeof d.input[0]!="object"&&d.input.focus(),this._lastInput=null)},_updateAlternate:function(a){var b=this._get(a,"altField");if(b){var c=this._get(a,"altFormat")||this._get(a,"dateFormat"),d=this._getDate(a),e=this.formatDate(c,d,this._getFormatConfig(a));$(b).each(function(){$(this).val(e)})}},noWeekends:function(a){var b=a.getDay();return[b>0&&b<6,""]},iso8601Week:function(a){var b=new Date(a.getTime());b.setDate(b.getDate()+4-(b.getDay()||7));var c=b.getTime();b.setMonth(0),b.setDate(1);return Math.floor(Math.round((c-b)/864e5)/7)+1},parseDate:function(a,b,c){if(a==null||b==null)throw"Invalid arguments";b=typeof b=="object"?b.toString():b+"";if(b=="")return null;var d=(c?c.shortYearCutoff:null)||this._defaults.shortYearCutoff;d=typeof d!="string"?d:(new Date).getFullYear()%100+parseInt(d,10);var e=(c?c.dayNamesShort:null)||this._defaults.dayNamesShort,f=(c?c.dayNames:null)||this._defaults.dayNames,g=(c?c.monthNamesShort:null)||this._defaults.monthNamesShort,h=(c?c.monthNames:null)||this._defaults.monthNames,i=-1,j=-1,k=-1,l=-1,m=!1,n=function(b){var c=s+1<a.length&&a.charAt(s+1)==b;c&&s++;return c},o=function(a){var c=n(a),d=a=="@"?14:a=="!"?20:a=="y"&&c?4:a=="o"?3:2,e=new RegExp("^\\d{1,"+d+"}"),f=b.substring(r).match(e);if(!f)throw"Missing number at position "+r;r+=f[0].length;return parseInt(f[0],10)},p=function(a,c,d){var e=$.map(n(a)?d:c,function(a,b){return[[b,a]]}).sort(function(a,b){return-(a[1].length-b[1].length)}),f=-1;$.each(e,function(a,c){var d=c[1];if(b.substr(r,d.length).toLowerCase()==d.toLowerCase()){f=c[0],r+=d.length;return!1}});if(f!=-1)return f+1;throw"Unknown name at position "+r},q=function(){if(b.charAt(r)!=a.charAt(s))throw"Unexpected literal at position "+r;r++},r=0;for(var s=0;s<a.length;s++)if(m)a.charAt(s)=="'"&&!n("'")?m=!1:q();else switch(a.charAt(s)){case"d":k=o("d");break;case"D":p("D",e,f);break;case"o":l=o("o");break;case"m":j=o("m");break;case"M":j=p("M",g,h);break;case"y":i=o("y");break;case"@":var t=new Date(o("@"));i=t.getFullYear(),j=t.getMonth()+1,k=t.getDate();break;case"!":var t=new Date((o("!")-this._ticksTo1970)/1e4);i=t.getFullYear(),j=t.getMonth()+1,k=t.getDate();break;case"'":n("'")?q():m=!0;break;default:q()}if(r<b.length)throw"Extra/unparsed characters found in date: "+b.substring(r);i==-1?i=(new Date).getFullYear():i<100&&(i+=(new Date).getFullYear()-(new Date).getFullYear()%100+(i<=d?0:-100));if(l>-1){j=1,k=l;for(;;){var u=this._getDaysInMonth(i,j-1);if(k<=u)break;j++,k-=u}}var t=this._daylightSavingAdjust(new Date(i,j-1,k));if(t.getFullYear()!=i||t.getMonth()+1!=j||t.getDate()!=k)throw"Invalid date";return t},ATOM:"yy-mm-dd",COOKIE:"D, dd M yy",ISO_8601:"yy-mm-dd",RFC_822:"D, d M y",RFC_850:"DD, dd-M-y",RFC_1036:"D, d M y",RFC_1123:"D, d M yy",RFC_2822:"D, d M yy",RSS:"D, d M y",TICKS:"!",TIMESTAMP:"@",W3C:"yy-mm-dd",_ticksTo1970:(718685+Math.floor(492.5)-Math.floor(19.7)+Math.floor(4.925))*24*60*60*1e7,formatDate:function(a,b,c){if(!b)return"";var d=(c?c.dayNamesShort:null)||this._defaults.dayNamesShort,e=(c?c.dayNames:null)||this._defaults.dayNames,f=(c?c.monthNamesShort:null)||this._defaults.monthNamesShort,g=(c?c.monthNames:null)||this._defaults.monthNames,h=function(b){var c=m+1<a.length&&a.charAt(m+1)==b;c&&m++;return c},i=function(a,b,c){var d=""+b;if(h(a))while(d.length<c)d="0"+d;return d},j=function(a,b,c,d){return h(a)?d[b]:c[b]},k="",l=!1;if(b)for(var m=0;m<a.length;m++)if(l)a.charAt(m)=="'"&&!h("'")?l=!1:k+=a.charAt(m);else switch(a.charAt(m)){case"d":k+=i("d",b.getDate(),2);break;case"D":k+=j("D",b.getDay(),d,e);break;case"o":k+=i("o",Math.round(((new Date(b.getFullYear(),b.getMonth(),b.getDate())).getTime()-(new Date(b.getFullYear(),0,0)).getTime())/864e5),3);break;case"m":k+=i("m",b.getMonth()+1,2);break;case"M":k+=j("M",b.getMonth(),f,g);break;case"y":k+=h("y")?b.getFullYear():(b.getYear()%100<10?"0":"")+b.getYear()%100;break;case"@":k+=b.getTime();break;case"!":k+=b.getTime()*1e4+this._ticksTo1970;break;case"'":h("'")?k+="'":l=!0;break;default:k+=a.charAt(m)}return k},_possibleChars:function(a){var b="",c=!1,d=function(b){var c=e+1<a.length&&a.charAt(e+1)==b;c&&e++;return c};for(var e=0;e<a.length;e++)if(c)a.charAt(e)=="'"&&!d("'")?c=!1:b+=a.charAt(e);else switch(a.charAt(e)){case"d":case"m":case"y":case"@":b+="0123456789";break;case"D":case"M":return null;case"'":d("'")?b+="'":c=!0;break;default:b+=a.charAt(e)}return b},_get:function(a,b){return a.settings[b]!==undefined?a.settings[b]:this._defaults[b]},_setDateFromField:function(a,b){if(a.input.val()!=a.lastVal){var c=this._get(a,"dateFormat"),d=a.lastVal=a.input?a.input.val():null,e,f;e=f=this._getDefaultDate(a);var g=this._getFormatConfig(a);try{e=this.parseDate(c,d,g)||f}catch(h){this.log(h),d=b?"":d}a.selectedDay=e.getDate(),a.drawMonth=a.selectedMonth=e.getMonth(),a.drawYear=a.selectedYear=e.getFullYear(),a.currentDay=d?e.getDate():0,a.currentMonth=d?e.getMonth():0,a.currentYear=d?e.getFullYear():0,this._adjustInstDate(a)}},_getDefaultDate:function(a){return this._restrictMinMax(a,this._determineDate(a,this._get(a,"defaultDate"),new Date))},_determineDate:function(a,b,c){var d=function(a){var b=new Date;b.setDate(b.getDate()+a);return b},e=function(b){try{return $.datepicker.parseDate($.datepicker._get(a,"dateFormat"),b,$.datepicker._getFormatConfig(a))}catch(c){}var d=(b.toLowerCase().match(/^c/)?$.datepicker._getDate(a):null)||new Date,e=d.getFullYear(),f=d.getMonth(),g=d.getDate(),h=/([+-]?[0-9]+)\s*(d|D|w|W|m|M|y|Y)?/g,i=h.exec(b);while(i){switch(i[2]||"d"){case"d":case"D":g+=parseInt(i[1],10);break;case"w":case"W":g+=parseInt(i[1],10)*7;break;case"m":case"M":f+=parseInt(i[1],10),g=Math.min(g,$.datepicker._getDaysInMonth(e,f));break;case"y":case"Y":e+=parseInt(i[1],10),g=Math.min(g,$.datepicker._getDaysInMonth(e,f))}i=h.exec(b)}return new Date(e,f,g)},f=b==null||b===""?c:typeof b=="string"?e(b):typeof b=="number"?isNaN(b)?c:d(b):new Date(b.getTime());f=f&&f.toString()=="Invalid Date"?c:f,f&&(f.setHours(0),f.setMinutes(0),f.setSeconds(0),f.setMilliseconds(0));return this._daylightSavingAdjust(f)},_daylightSavingAdjust:function(a){if(!a)return null;a.setHours(a.getHours()>12?a.getHours()+2:0);return a},_setDate:function(a,b,c){var d=!b,e=a.selectedMonth,f=a.selectedYear,g=this._restrictMinMax(a,this._determineDate(a,b,new Date));a.selectedDay=a.currentDay=g.getDate(),a.drawMonth=a.selectedMonth=a.currentMonth=g.getMonth(),a.drawYear=a.selectedYear=a.currentYear=g.getFullYear(),(e!=a.selectedMonth||f!=a.selectedYear)&&!c&&this._notifyChange(a),this._adjustInstDate(a),a.input&&a.input.val(d?"":this._formatDate(a))},_getDate:function(a){var b=!a.currentYear||a.input&&a.input.val()==""?null:this._daylightSavingAdjust(new Date(a.currentYear,a.currentMonth,a.currentDay));return b},_generateHTML:function(a){var b=new Date;b=this._daylightSavingAdjust(new Date(b.getFullYear(),b.getMonth(),b.getDate()));var c=this._get(a,"isRTL"),d=this._get(a,"showButtonPanel"),e=this._get(a,"hideIfNoPrevNext"),f=this._get(a,"navigationAsDateFormat"),g=this._getNumberOfMonths(a),h=this._get(a,"showCurrentAtPos"),i=this._get(a,"stepMonths"),j=g[0]!=1||g[1]!=1,k=this._daylightSavingAdjust(a.currentDay?new Date(a.currentYear,a.currentMonth,a.currentDay):new Date(9999,9,9)),l=this._getMinMaxDate(a,"min"),m=this._getMinMaxDate(a,"max"),n=a.drawMonth-h,o=a.drawYear;n<0&&(n+=12,o--);if(m){var p=this._daylightSavingAdjust(new Date(m.getFullYear(),m.getMonth()-g[0]*g[1]+1,m.getDate()));p=l&&p<l?l:p;while(this._daylightSavingAdjust(new Date(o,n,1))>p)n--,n<0&&(n=11,o--)}a.drawMonth=n,a.drawYear=o;var q=this._get(a,"prevText");q=f?this.formatDate(q,this._daylightSavingAdjust(new Date(o,n-i,1)),this._getFormatConfig(a)):q;var r=this._canAdjustMonth(a,-1,o,n)?'<a class="ui-datepicker-prev ui-corner-all" onclick="DP_jQuery_'+dpuuid+".datepicker._adjustDate('#"+a.id+"', -"+i+", 'M');\""+' title="'+q+'"><span class="ui-icon ui-icon-circle-triangle-'+(c?"e":"w")+'">'+q+"</span></a>":e?"":'<a class="ui-datepicker-prev ui-corner-all ui-state-disabled" title="'+q+'"><span class="ui-icon ui-icon-circle-triangle-'+(c?"e":"w")+'">'+q+"</span></a>",s=this._get(a,"nextText");s=f?this.formatDate(s,this._daylightSavingAdjust(new Date(o,n+i,1)),this._getFormatConfig(a)):s;var t=this._canAdjustMonth(a,1,o,n)?'<a class="ui-datepicker-next ui-corner-all" onclick="DP_jQuery_'+dpuuid+".datepicker._adjustDate('#"+a.id+"', +"+i+", 'M');\""+' title="'+s+'"><span class="ui-icon ui-icon-circle-triangle-'+(c?"w":"e")+'">'+s+"</span></a>":e?"":'<a class="ui-datepicker-next ui-corner-all ui-state-disabled" title="'+s+'"><span class="ui-icon ui-icon-circle-triangle-'+(c?"w":"e")+'">'+s+"</span></a>",u=this._get(a,"currentText"),v=this._get(a,"gotoCurrent")&&a.currentDay?k:b;u=f?this.formatDate(u,v,this._getFormatConfig(a)):u;var w=a.inline?"":'<button type="button" class="ui-datepicker-close ui-state-default ui-priority-primary ui-corner-all" onclick="DP_jQuery_'+dpuuid+'.datepicker._hideDatepicker();">'+this._get(a,"closeText")+"</button>",x=d?'<div class="ui-datepicker-buttonpane ui-widget-content">'+(c?w:"")+(this._isInRange(a,v)?'<button type="button" class="ui-datepicker-current ui-state-default ui-priority-secondary ui-corner-all" onclick="DP_jQuery_'+dpuuid+".datepicker._gotoToday('#"+a.id+"');\""+">"+u+"</button>":"")+(c?"":w)+"</div>":"",y=parseInt(this._get(a,"firstDay"),10);y=isNaN(y)?0:y;var z=this._get(a,"showWeek"),A=this._get(a,"dayNames"),B=this._get(a,"dayNamesShort"),C=this._get(a,"dayNamesMin"),D=this._get(a,"monthNames"),E=this._get(a,"monthNamesShort"),F=this._get(a,"beforeShowDay"),G=this._get(a,"showOtherMonths"),H=this._get(a,"selectOtherMonths"),I=this._get(a,"calculateWeek")||this.iso8601Week,J=this._getDefaultDate(a),K="";for(var L=0;L<g[0];L++){var M="";this.maxRows=4;for(var N=0;N<g[1];N++){var O=this._daylightSavingAdjust(new Date(o,n,a.selectedDay)),P=" ui-corner-all",Q="";if(j){Q+='<div class="ui-datepicker-group';if(g[1]>1)switch(N){case 0:Q+=" ui-datepicker-group-first",P=" ui-corner-"+(c?"right":"left");break;case g[1]-1:Q+=" ui-datepicker-group-last",P=" ui-corner-"+(c?"left":"right");break;default:Q+=" ui-datepicker-group-middle",P=""}Q+='">'}Q+='<div class="ui-datepicker-header ui-widget-header ui-helper-clearfix'+P+'">'+(/all|left/.test(P)&&L==0?c?t:r:"")+(/all|right/.test(P)&&L==0?c?r:t:"")+this._generateMonthYearHeader(a,n,o,l,m,L>0||N>0,D,E)+'</div><table class="ui-datepicker-calendar"><thead>'+"<tr>";var R=z?'<th class="ui-datepicker-week-col">'+this._get(a,"weekHeader")+"</th>":"";for(var S=0;S<7;S++){var T=(S+y)%7;R+="<th"+((S+y+6)%7>=5?' class="ui-datepicker-week-end"':"")+">"+'<span title="'+A[T]+'">'+C[T]+"</span></th>"}Q+=R+"</tr></thead><tbody>";var U=this._getDaysInMonth(o,n);o==a.selectedYear&&n==a.selectedMonth&&(a.selectedDay=Math.min(a.selectedDay,U));var V=(this._getFirstDayOfMonth(o,n)-y+7)%7,W=Math.ceil((V+U)/7),X=j?this.maxRows>W?this.maxRows:W:W;this.maxRows=X;var Y=this._daylightSavingAdjust(new Date(o,n,1-V));for(var Z=0;Z<X;Z++){Q+="<tr>";var _=z?'<td class="ui-datepicker-week-col">'+this._get(a,"calculateWeek")(Y)+"</td>":"";for(var S=0;S<7;S++){var ba=F?F.apply(a.input?a.input[0]:null,[Y]):[!0,""],bb=Y.getMonth()!=n,bc=bb&&!H||!ba[0]||l&&Y<l||m&&Y>m;_+='<td class="'+((S+y+6)%7>=5?" ui-datepicker-week-end":"")+(bb?" ui-datepicker-other-month":"")+(Y.getTime()==O.getTime()&&n==a.selectedMonth&&a._keyEvent||J.getTime()==Y.getTime()&&J.getTime()==O.getTime()?" "+this._dayOverClass:"")+(bc?" "+this._unselectableClass+" ui-state-disabled":"")+(bb&&!G?"":" "+ba[1]+(Y.getTime()==k.getTime()?" "+this._currentClass:"")+(Y.getTime()==b.getTime()?" ui-datepicker-today":""))+'"'+((!bb||G)&&ba[2]?' title="'+ba[2]+'"':"")+(bc?"":' onclick="DP_jQuery_'+dpuuid+".datepicker._selectDay('#"+a.id+"',"+Y.getMonth()+","+Y.getFullYear()+', this);return false;"')+">"+(bb&&!G?"&#xa0;":bc?'<span class="ui-state-default">'+Y.getDate()+"</span>":'<a class="ui-state-default'+(Y.getTime()==b.getTime()?" ui-state-highlight":"")+(Y.getTime()==k.getTime()?" ui-state-active":"")+(bb?" ui-priority-secondary":"")+'" href="#">'+Y.getDate()+"</a>")+"</td>",Y.setDate(Y.getDate()+1),Y=this._daylightSavingAdjust(Y)}Q+=_+"</tr>"}n++,n>11&&(n=0,o++),Q+="</tbody></table>"+(j?"</div>"+(g[0]>0&&N==g[1]-1?'<div class="ui-datepicker-row-break"></div>':""):""),M+=Q}K+=M}K+=x+($.browser.msie&&parseInt($.browser.version,10)<7&&!a.inline?'<iframe src="javascript:false;" class="ui-datepicker-cover" frameborder="0"></iframe>':""),a._keyEvent=!1;return K},_generateMonthYearHeader:function(a,b,c,d,e,f,g,h){var i=this._get(a,"changeMonth"),j=this._get(a,"changeYear"),k=this._get(a,"showMonthAfterYear"),l='<div class="ui-datepicker-title">',m="";if(f||!i)m+='<span class="ui-datepicker-month">'+g[b]+"</span>";else{var n=d&&d.getFullYear()==c,o=e&&e.getFullYear()==c;m+='<select class="ui-datepicker-month" onchange="DP_jQuery_'+dpuuid+".datepicker._selectMonthYear('#"+a.id+"', this, 'M');\" "+">";for(var p=0;p<12;p++)(!n||p>=d.getMonth())&&(!o||p<=e.getMonth())&&(m+='<option value="'+p+'"'+(p==b?' selected="selected"':"")+">"+h[p]+"</option>");m+="</select>"}k||(l+=m+(f||!i||!j?"&#xa0;":""));if(!a.yearshtml){a.yearshtml="";if(f||!j)l+='<span class="ui-datepicker-year">'+c+"</span>";else{var q=this._get(a,"yearRange").split(":"),r=(new Date).getFullYear(),s=function(a){var b=a.match(/c[+-].*/)?c+parseInt(a.substring(1),10):a.match(/[+-].*/)?r+parseInt(a,10):parseInt(a,10);return isNaN(b)?r:b},t=s(q[0]),u=Math.max(t,s(q[1]||""));t=d?Math.max(t,d.getFullYear()):t,u=e?Math.min(u,e.getFullYear()):u,a.yearshtml+='<select class="ui-datepicker-year" onchange="DP_jQuery_'+dpuuid+".datepicker._selectMonthYear('#"+a.id+"', this, 'Y');\" "+">";for(;t<=u;t++)a.yearshtml+='<option value="'+t+'"'+(t==c?' selected="selected"':"")+">"+t+"</option>";a.yearshtml+="</select>",l+=a.yearshtml,a.yearshtml=null}}l+=this._get(a,"yearSuffix"),k&&(l+=(f||!i||!j?"&#xa0;":"")+m),l+="</div>";return l},_adjustInstDate:function(a,b,c){var d=a.drawYear+(c=="Y"?b:0),e=a.drawMonth+(c=="M"?b:0),f=Math.min(a.selectedDay,this._getDaysInMonth(d,e))+(c=="D"?b:0),g=this._restrictMinMax(a,this._daylightSavingAdjust(new Date(d,e,f)));a.selectedDay=g.getDate(),a.drawMonth=a.selectedMonth=g.getMonth(),a.drawYear=a.selectedYear=g.getFullYear(),(c=="M"||c=="Y")&&this._notifyChange(a)},_restrictMinMax:function(a,b){var c=this._getMinMaxDate(a,"min"),d=this._getMinMaxDate(a,"max"),e=c&&b<c?c:b;e=d&&e>d?d:e;return e},_notifyChange:function(a){var b=this._get(a,"onChangeMonthYear");b&&b.apply(a.input?a.input[0]:null,[a.selectedYear,a.selectedMonth+1,a])},_getNumberOfMonths:function(a){var b=this._get(a,"numberOfMonths");return b==null?[1,1]:typeof b=="number"?[1,b]:b},_getMinMaxDate:function(a,b){return this._determineDate(a,this._get(a,b+"Date"),null)},_getDaysInMonth:function(a,b){return 32-this._daylightSavingAdjust(new Date(a,b,32)).getDate()},_getFirstDayOfMonth:function(a,b){return(new Date(a,b,1)).getDay()},_canAdjustMonth:function(a,b,c,d){var e=this._getNumberOfMonths(a),f=this._daylightSavingAdjust(new Date(c,d+(b<0?b:e[0]*e[1]),1));b<0&&f.setDate(this._getDaysInMonth(f.getFullYear(),f.getMonth()));return this._isInRange(a,f)},_isInRange:function(a,b){var c=this._getMinMaxDate(a,"min"),d=this._getMinMaxDate(a,"max");return(!c||b.getTime()>=c.getTime())&&(!d||b.getTime()<=d.getTime())},_getFormatConfig:function(a){var b=this._get(a,"shortYearCutoff");b=typeof b!="string"?b:(new Date).getFullYear()%100+parseInt(b,10);return{shortYearCutoff:b,dayNamesShort:this._get(a,"dayNamesShort"),dayNames:this._get(a,"dayNames"),monthNamesShort:this._get(a,"monthNamesShort"),monthNames:this._get(a,"monthNames")}},_formatDate:function(a,b,c,d){b||(a.currentDay=a.selectedDay,a.currentMonth=a.selectedMonth,a.currentYear=a.selectedYear);var e=b?typeof b=="object"?b:this._daylightSavingAdjust(new Date(d,c,b)):this._daylightSavingAdjust(new Date(a.currentYear,a.currentMonth,a.currentDay));return this.formatDate(this._get(a,"dateFormat"),e,this._getFormatConfig(a))}}),$.fn.datepicker=function(a){if(!this.length)return this;$.datepicker.initialized||($(document).mousedown($.datepicker._checkExternalClick).find("body").append($.datepicker.dpDiv),$.datepicker.initialized=!0);var b=Array.prototype.slice.call(arguments,1);if(typeof a=="string"&&(a=="isDisabled"||a=="getDate"||a=="widget"
))return $.datepicker["_"+a+"Datepicker"].apply($.datepicker,[this[0]].concat(b));if(a=="option"&&arguments.length==2&&typeof arguments[1]=="string")return $.datepicker["_"+a+"Datepicker"].apply($.datepicker,[this[0]].concat(b));return this.each(function(){typeof a=="string"?$.datepicker["_"+a+"Datepicker"].apply($.datepicker,[this].concat(b)):$.datepicker._attachDatepicker(this,a)})},$.datepicker=new Datepicker,$.datepicker.initialized=!1,$.datepicker.uuid=(new Date).getTime(),$.datepicker.version="1.8.18",window["DP_jQuery_"+dpuuid]=$}(jQuery),function(a,b){var c="ui-dialog ui-widget ui-widget-content ui-corner-all ",d={buttons:!0,height:!0,maxHeight:!0,maxWidth:!0,minHeight:!0,minWidth:!0,width:!0},e={maxHeight:!0,maxWidth:!0,minHeight:!0,minWidth:!0},f=a.attrFn||{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0,click:!0};a.widget("ui.dialog",{options:{autoOpen:!0,buttons:{},closeOnEscape:!0,closeText:"close",dialogClass:"",draggable:!0,hide:null,height:"auto",maxHeight:!1,maxWidth:!1,minHeight:150,minWidth:150,modal:!1,position:{my:"center",at:"center",collision:"fit",using:function(b){var c=a(this).css(b).offset().top;c<0&&a(this).css("top",b.top-c)}},resizable:!0,show:null,stack:!0,title:"",width:300,zIndex:1e3},_create:function(){this.originalTitle=this.element.attr("title"),typeof this.originalTitle!="string"&&(this.originalTitle=""),this.options.title=this.options.title||this.originalTitle;var b=this,d=b.options,e=d.title||"&#160;",f=a.ui.dialog.getTitleId(b.element),g=(b.uiDialog=a("<div></div>")).appendTo(document.body).hide().addClass(c+d.dialogClass).css({zIndex:d.zIndex}).attr("tabIndex",-1).css("outline",0).keydown(function(c){d.closeOnEscape&&!c.isDefaultPrevented()&&c.keyCode&&c.keyCode===a.ui.keyCode.ESCAPE&&(b.close(c),c.preventDefault())}).attr({role:"dialog","aria-labelledby":f}).mousedown(function(a){b.moveToTop(!1,a)}),h=b.element.show().removeAttr("title").addClass("ui-dialog-content ui-widget-content").appendTo(g),i=(b.uiDialogTitlebar=a("<div></div>")).addClass("ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix").prependTo(g),j=a('<a href="#"></a>').addClass("ui-dialog-titlebar-close ui-corner-all").attr("role","button").hover(function(){j.addClass("ui-state-hover")},function(){j.removeClass("ui-state-hover")}).focus(function(){j.addClass("ui-state-focus")}).blur(function(){j.removeClass("ui-state-focus")}).click(function(a){b.close(a);return!1}).appendTo(i),k=(b.uiDialogTitlebarCloseText=a("<span></span>")).addClass("ui-icon ui-icon-closethick").text(d.closeText).appendTo(j),l=a("<span></span>").addClass("ui-dialog-title").attr("id",f).html(e).prependTo(i);a.isFunction(d.beforeclose)&&!a.isFunction(d.beforeClose)&&(d.beforeClose=d.beforeclose),i.find("*").add(i).disableSelection(),d.draggable&&a.fn.draggable&&b._makeDraggable(),d.resizable&&a.fn.resizable&&b._makeResizable(),b._createButtons(d.buttons),b._isOpen=!1,a.fn.bgiframe&&g.bgiframe()},_init:function(){this.options.autoOpen&&this.open()},destroy:function(){var a=this;a.overlay&&a.overlay.destroy(),a.uiDialog.hide(),a.element.unbind(".dialog").removeData("dialog").removeClass("ui-dialog-content ui-widget-content").hide().appendTo("body"),a.uiDialog.remove(),a.originalTitle&&a.element.attr("title",a.originalTitle);return a},widget:function(){return this.uiDialog},close:function(b){var c=this,d,e;if(!1!==c._trigger("beforeClose",b)){c.overlay&&c.overlay.destroy(),c.uiDialog.unbind("keypress.ui-dialog"),c._isOpen=!1,c.options.hide?c.uiDialog.hide(c.options.hide,function(){c._trigger("close",b)}):(c.uiDialog.hide(),c._trigger("close",b)),a.ui.dialog.overlay.resize(),c.options.modal&&(d=0,a(".ui-dialog").each(function(){this!==c.uiDialog[0]&&(e=a(this).css("z-index"),isNaN(e)||(d=Math.max(d,e)))}),a.ui.dialog.maxZ=d);return c}},isOpen:function(){return this._isOpen},moveToTop:function(b,c){var d=this,e=d.options,f;if(e.modal&&!b||!e.stack&&!e.modal)return d._trigger("focus",c);e.zIndex>a.ui.dialog.maxZ&&(a.ui.dialog.maxZ=e.zIndex),d.overlay&&(a.ui.dialog.maxZ+=1,d.overlay.$el.css("z-index",a.ui.dialog.overlay.maxZ=a.ui.dialog.maxZ)),f={scrollTop:d.element.scrollTop(),scrollLeft:d.element.scrollLeft()},a.ui.dialog.maxZ+=1,d.uiDialog.css("z-index",a.ui.dialog.maxZ),d.element.attr(f),d._trigger("focus",c);return d},open:function(){if(!this._isOpen){var b=this,c=b.options,d=b.uiDialog;b.overlay=c.modal?new a.ui.dialog.overlay(b):null,b._size(),b._position(c.position),d.show(c.show),b.moveToTop(!0),c.modal&&d.bind("keydown.ui-dialog",function(b){if(b.keyCode===a.ui.keyCode.TAB){var c=a(":tabbable",this),d=c.filter(":first"),e=c.filter(":last");if(b.target===e[0]&&!b.shiftKey){d.focus(1);return!1}if(b.target===d[0]&&b.shiftKey){e.focus(1);return!1}}}),a(b.element.find(":tabbable").get().concat(d.find(".ui-dialog-buttonpane :tabbable").get().concat(d.get()))).eq(0).focus(),b._isOpen=!0,b._trigger("open");return b}},_createButtons:function(b){var c=this,d=!1,e=a("<div></div>").addClass("ui-dialog-buttonpane ui-widget-content ui-helper-clearfix"),g=a("<div></div>").addClass("ui-dialog-buttonset").appendTo(e);c.uiDialog.find(".ui-dialog-buttonpane").remove(),typeof b=="object"&&b!==null&&a.each(b,function(){return!(d=!0)}),d&&(a.each(b,function(b,d){d=a.isFunction(d)?{click:d,text:b}:d;var e=a('<button type="button"></button>').click(function(){d.click.apply(c.element[0],arguments)}).appendTo(g);a.each(d,function(a,b){a!=="click"&&(a in f?e[a](b):e.attr(a,b))}),a.fn.button&&e.button()}),e.appendTo(c.uiDialog))},_makeDraggable:function(){function f(a){return{position:a.position,offset:a.offset}}var b=this,c=b.options,d=a(document),e;b.uiDialog.draggable({cancel:".ui-dialog-content, .ui-dialog-titlebar-close",handle:".ui-dialog-titlebar",containment:"document",start:function(d,g){e=c.height==="auto"?"auto":a(this).height(),a(this).height(a(this).height()).addClass("ui-dialog-dragging"),b._trigger("dragStart",d,f(g))},drag:function(a,c){b._trigger("drag",a,f(c))},stop:function(g,h){c.position=[h.position.left-d.scrollLeft(),h.position.top-d.scrollTop()],a(this).removeClass("ui-dialog-dragging").height(e),b._trigger("dragStop",g,f(h)),a.ui.dialog.overlay.resize()}})},_makeResizable:function(c){function h(a){return{originalPosition:a.originalPosition,originalSize:a.originalSize,position:a.position,size:a.size}}c=c===b?this.options.resizable:c;var d=this,e=d.options,f=d.uiDialog.css("position"),g=typeof c=="string"?c:"n,e,s,w,se,sw,ne,nw";d.uiDialog.resizable({cancel:".ui-dialog-content",containment:"document",alsoResize:d.element,maxWidth:e.maxWidth,maxHeight:e.maxHeight,minWidth:e.minWidth,minHeight:d._minHeight(),handles:g,start:function(b,c){a(this).addClass("ui-dialog-resizing"),d._trigger("resizeStart",b,h(c))},resize:function(a,b){d._trigger("resize",a,h(b))},stop:function(b,c){a(this).removeClass("ui-dialog-resizing"),e.height=a(this).height(),e.width=a(this).width(),d._trigger("resizeStop",b,h(c)),a.ui.dialog.overlay.resize()}}).css("position",f).find(".ui-resizable-se").addClass("ui-icon ui-icon-grip-diagonal-se")},_minHeight:function(){var a=this.options;return a.height==="auto"?a.minHeight:Math.min(a.minHeight,a.height)},_position:function(b){var c=[],d=[0,0],e;if(b){if(typeof b=="string"||typeof b=="object"&&"0"in b)c=b.split?b.split(" "):[b[0],b[1]],c.length===1&&(c[1]=c[0]),a.each(["left","top"],function(a,b){+c[a]===c[a]&&(d[a]=c[a],c[a]=b)}),b={my:c.join(" "),at:c.join(" "),offset:d.join(" ")};b=a.extend({},a.ui.dialog.prototype.options.position,b)}else b=a.ui.dialog.prototype.options.position;e=this.uiDialog.is(":visible"),e||this.uiDialog.show(),this.uiDialog.css({top:0,left:0}).position(a.extend({of:window},b)),e||this.uiDialog.hide()},_setOptions:function(b){var c=this,f={},g=!1;a.each(b,function(a,b){c._setOption(a,b),a in d&&(g=!0),a in e&&(f[a]=b)}),g&&this._size(),this.uiDialog.is(":data(resizable)")&&this.uiDialog.resizable("option",f)},_setOption:function(b,d){var e=this,f=e.uiDialog;switch(b){case"beforeclose":b="beforeClose";break;case"buttons":e._createButtons(d);break;case"closeText":e.uiDialogTitlebarCloseText.text(""+d);break;case"dialogClass":f.removeClass(e.options.dialogClass).addClass(c+d);break;case"disabled":d?f.addClass("ui-dialog-disabled"):f.removeClass("ui-dialog-disabled");break;case"draggable":var g=f.is(":data(draggable)");g&&!d&&f.draggable("destroy"),!g&&d&&e._makeDraggable();break;case"position":e._position(d);break;case"resizable":var h=f.is(":data(resizable)");h&&!d&&f.resizable("destroy"),h&&typeof d=="string"&&f.resizable("option","handles",d),!h&&d!==!1&&e._makeResizable(d);break;case"title":a(".ui-dialog-title",e.uiDialogTitlebar).html(""+(d||"&#160;"))}a.Widget.prototype._setOption.apply(e,arguments)},_size:function(){var b=this.options,c,d,e=this.uiDialog.is(":visible");this.element.show().css({width:"auto",minHeight:0,height:0}),b.minWidth>b.width&&(b.width=b.minWidth),c=this.uiDialog.css({height:"auto",width:b.width}).height(),d=Math.max(0,b.minHeight-c);if(b.height==="auto")if(a.support.minHeight)this.element.css({minHeight:d,height:"auto"});else{this.uiDialog.show();var f=this.element.css("height","auto").height();e||this.uiDialog.hide(),this.element.height(Math.max(f,d))}else this.element.height(Math.max(b.height-c,0));this.uiDialog.is(":data(resizable)")&&this.uiDialog.resizable("option","minHeight",this._minHeight())}}),a.extend(a.ui.dialog,{version:"1.8.18",uuid:0,maxZ:0,getTitleId:function(a){var b=a.attr("id");b||(this.uuid+=1,b=this.uuid);return"ui-dialog-title-"+b},overlay:function(b){this.$el=a.ui.dialog.overlay.create(b)}}),a.extend(a.ui.dialog.overlay,{instances:[],oldInstances:[],maxZ:0,events:a.map("focus,mousedown,mouseup,keydown,keypress,click".split(","),function(a){return a+".dialog-overlay"}).join(" "),create:function(b){this.instances.length===0&&(setTimeout(function(){a.ui.dialog.overlay.instances.length&&a(document).bind(a.ui.dialog.overlay.events,function(b){if(a(b.target).zIndex()<a.ui.dialog.overlay.maxZ)return!1})},1),a(document).bind("keydown.dialog-overlay",function(c){b.options.closeOnEscape&&!c.isDefaultPrevented()&&c.keyCode&&c.keyCode===a.ui.keyCode.ESCAPE&&(b.close(c),c.preventDefault())}),a(window).bind("resize.dialog-overlay",a.ui.dialog.overlay.resize));var c=(this.oldInstances.pop()||a("<div></div>").addClass("ui-widget-overlay")).appendTo(document.body).css({width:this.width(),height:this.height()});a.fn.bgiframe&&c.bgiframe(),this.instances.push(c);return c},destroy:function(b){var c=a.inArray(b,this.instances);c!=-1&&this.oldInstances.push(this.instances.splice(c,1)[0]),this.instances.length===0&&a([document,window]).unbind(".dialog-overlay"),b.remove();var d=0;a.each(this.instances,function(){d=Math.max(d,this.css("z-index"))}),this.maxZ=d},height:function(){var b,c;if(a.browser.msie&&a.browser.version<7){b=Math.max(document.documentElement.scrollHeight,document.body.scrollHeight),c=Math.max(document.documentElement.offsetHeight,document.body.offsetHeight);return b<c?a(window).height()+"px":b+"px"}return a(document).height()+"px"},width:function(){var b,c;if(a.browser.msie){b=Math.max(document.documentElement.scrollWidth,document.body.scrollWidth),c=Math.max(document.documentElement.offsetWidth,document.body.offsetWidth);return b<c?a(window).width()+"px":b+"px"}return a(document).width()+"px"},resize:function(){var b=a([]);a.each(a.ui.dialog.overlay.instances,function(){b=b.add(this)}),b.css({width:0,height:0}).css({width:a.ui.dialog.overlay.width(),height:a.ui.dialog.overlay.height()})}}),a.extend(a.ui.dialog.overlay.prototype,{destroy:function(){a.ui.dialog.overlay.destroy(this.$el)}})}(jQuery),function(a,b){a.ui=a.ui||{};var c=/left|center|right/,d=/top|center|bottom/,e="center",f={},g=a.fn.position,h=a.fn.offset;a.fn.position=function(b){if(!b||!b.of)return g.apply(this,arguments);b=a.extend({},b);var h=a(b.of),i=h[0],j=(b.collision||"flip").split(" "),k=b.offset?b.offset.split(" "):[0,0],l,m,n;i.nodeType===9?(l=h.width(),m=h.height(),n={top:0,left:0}):i.setTimeout?(l=h.width(),m=h.height(),n={top:h.scrollTop(),left:h.scrollLeft()}):i.preventDefault?(b.at="left top",l=m=0,n={top:b.of.pageY,left:b.of.pageX}):(l=h.outerWidth(),m=h.outerHeight(),n=h.offset()),a.each(["my","at"],function(){var a=(b[this]||"").split(" ");a.length===1&&(a=c.test(a[0])?a.concat([e]):d.test(a[0])?[e].concat(a):[e,e]),a[0]=c.test(a[0])?a[0]:e,a[1]=d.test(a[1])?a[1]:e,b[this]=a}),j.length===1&&(j[1]=j[0]),k[0]=parseInt(k[0],10)||0,k.length===1&&(k[1]=k[0]),k[1]=parseInt(k[1],10)||0,b.at[0]==="right"?n.left+=l:b.at[0]===e&&(n.left+=l/2),b.at[1]==="bottom"?n.top+=m:b.at[1]===e&&(n.top+=m/2),n.left+=k[0],n.top+=k[1];return this.each(function(){var c=a(this),d=c.outerWidth(),g=c.outerHeight(),h=parseInt(a.curCSS(this,"marginLeft",!0))||0,i=parseInt(a.curCSS(this,"marginTop",!0))||0,o=d+h+(parseInt(a.curCSS(this,"marginRight",!0))||0),p=g+i+(parseInt(a.curCSS(this,"marginBottom",!0))||0),q=a.extend({},n),r;b.my[0]==="right"?q.left-=d:b.my[0]===e&&(q.left-=d/2),b.my[1]==="bottom"?q.top-=g:b.my[1]===e&&(q.top-=g/2),f.fractions||(q.left=Math.round(q.left),q.top=Math.round(q.top)),r={left:q.left-h,top:q.top-i},a.each(["left","top"],function(c,e){a.ui.position[j[c]]&&a.ui.position[j[c]][e](q,{targetWidth:l,targetHeight:m,elemWidth:d,elemHeight:g,collisionPosition:r,collisionWidth:o,collisionHeight:p,offset:k,my:b.my,at:b.at})}),a.fn.bgiframe&&c.bgiframe(),c.offset(a.extend(q,{using:b.using}))})},a.ui.position={fit:{left:function(b,c){var d=a(window),e=c.collisionPosition.left+c.collisionWidth-d.width()-d.scrollLeft();b.left=e>0?b.left-e:Math.max(b.left-c.collisionPosition.left,b.left)},top:function(b,c){var d=a(window),e=c.collisionPosition.top+c.collisionHeight-d.height()-d.scrollTop();b.top=e>0?b.top-e:Math.max(b.top-c.collisionPosition.top,b.top)}},flip:{left:function(b,c){if(c.at[0]!==e){var d=a(window),f=c.collisionPosition.left+c.collisionWidth-d.width()-d.scrollLeft(),g=c.my[0]==="left"?-c.elemWidth:c.my[0]==="right"?c.elemWidth:0,h=c.at[0]==="left"?c.targetWidth:-c.targetWidth,i=-2*c.offset[0];b.left+=c.collisionPosition.left<0?g+h+i:f>0?g+h+i:0}},top:function(b,c){if(c.at[1]!==e){var d=a(window),f=c.collisionPosition.top+c.collisionHeight-d.height()-d.scrollTop(),g=c.my[1]==="top"?-c.elemHeight:c.my[1]==="bottom"?c.elemHeight:0,h=c.at[1]==="top"?c.targetHeight:-c.targetHeight,i=-2*c.offset[1];b.top+=c.collisionPosition.top<0?g+h+i:f>0?g+h+i:0}}}},a.offset.setOffset||(a.offset.setOffset=function(b,c){/static/.test(a.curCSS(b,"position"))&&(b.style.position="relative");var d=a(b),e=d.offset(),f=parseInt(a.curCSS(b,"top",!0),10)||0,g=parseInt(a.curCSS(b,"left",!0),10)||0,h={top:c.top-e.top+f,left:c.left-e.left+g};"using"in c?c.using.call(b,h):d.css(h)},a.fn.offset=function(b){var c=this[0];if(!c||!c.ownerDocument)return null;if(b)return this.each(function(){a.offset.setOffset(this,b)});return h.call(this)}),function(){var b=document.getElementsByTagName("body")[0],c=document.createElement("div"),d,e,g,h,i;d=document.createElement(b?"div":"body"),g={visibility:"hidden",width:0,height:0,border:0,margin:0,background:"none"},b&&a.extend(g,{position:"absolute",left:"-1000px",top:"-1000px"});for(var j in g)d.style[j]=g[j];d.appendChild(c),e=b||document.documentElement,e.insertBefore(d,e.firstChild),c.style.cssText="position: absolute; left: 10.7432222px; top: 10.432325px; height: 30px; width: 201px;",h=a(c).offset(function(a,b){return b}).offset(),d.innerHTML="",e.removeChild(d),i=h.top+h.left+(b?2e3:0),f.fractions=i>21&&i<22}()}(jQuery),function(a,b){a.widget("ui.progressbar",{options:{value:0,max:100},min:0,_create:function(){this.element.addClass("ui-progressbar ui-widget ui-widget-content ui-corner-all").attr({role:"progressbar","aria-valuemin":this.min,"aria-valuemax":this.options.max,"aria-valuenow":this._value()}),this.valueDiv=a("<div class='ui-progressbar-value ui-widget-header ui-corner-left'></div>").appendTo(this.element),this.oldValue=this._value(),this._refreshValue()},destroy:function(){this.element.removeClass("ui-progressbar ui-widget ui-widget-content ui-corner-all").removeAttr("role").removeAttr("aria-valuemin").removeAttr("aria-valuemax").removeAttr("aria-valuenow"),this.valueDiv.remove(),a.Widget.prototype.destroy.apply(this,arguments)},value:function(a){if(a===b)return this._value();this._setOption("value",a);return this},_setOption:function(b,c){b==="value"&&(this.options.value=c,this._refreshValue(),this._value()===this.options.max&&this._trigger("complete")),a.Widget.prototype._setOption.apply(this,arguments)},_value:function(){var a=this.options.value;typeof a!="number"&&(a=0);return Math.min(this.options.max,Math.max(this.min,a))},_percentage:function(){return 100*this._value()/this.options.max},_refreshValue:function(){var a=this.value(),b=this._percentage();this.oldValue!==a&&(this.oldValue=a,this._trigger("change")),this.valueDiv.toggle(a>this.min).toggleClass("ui-corner-right",a===this.options.max).width(b.toFixed(0)+"%"),this.element.attr("aria-valuenow",a)}}),a.extend(a.ui.progressbar,{version:"1.8.18"})}(jQuery),function(a,b){var c=5;a.widget("ui.slider",a.ui.mouse,{widgetEventPrefix:"slide",options:{animate:!1,distance:0,max:100,min:0,orientation:"horizontal",range:!1,step:1,value:0,values:null},_create:function(){var b=this,d=this.options,e=this.element.find(".ui-slider-handle").addClass("ui-state-default ui-corner-all"),f="<a class='ui-slider-handle ui-state-default ui-corner-all' href='#'></a>",g=d.values&&d.values.length||1,h=[];this._keySliding=!1,this._mouseSliding=!1,this._animateOff=!0,this._handleIndex=null,this._detectOrientation(),this._mouseInit(),this.element.addClass("ui-slider ui-slider-"+this.orientation+" ui-widget"+" ui-widget-content"+" ui-corner-all"+(d.disabled?" ui-slider-disabled ui-disabled":"")),this.range=a([]),d.range&&(d.range===!0&&(d.values||(d.values=[this._valueMin(),this._valueMin()]),d.values.length&&d.values.length!==2&&(d.values=[d.values[0],d.values[0]])),this.range=a("<div></div>").appendTo(this.element).addClass("ui-slider-range ui-widget-header"+(d.range==="min"||d.range==="max"?" ui-slider-range-"+d.range:"")));for(var i=e.length;i<g;i+=1)h.push(f);this.handles=e.add(a(h.join("")).appendTo(b.element)),this.handle=this.handles.eq(0),this.handles.add(this.range).filter("a").click(function(a){a.preventDefault()}).hover(function(){d.disabled||a(this).addClass("ui-state-hover")},function(){a(this).removeClass("ui-state-hover")}).focus(function(){d.disabled?a(this).blur():(a(".ui-slider .ui-state-focus").removeClass("ui-state-focus"),a(this).addClass("ui-state-focus"))}).blur(function(){a(this).removeClass("ui-state-focus")}),this.handles.each(function(b){a(this).data("index.ui-slider-handle",b)}),this.handles.keydown(function(d){var e=a(this).data("index.ui-slider-handle"),f,g,h,i;if(!b.options.disabled){switch(d.keyCode){case a.ui.keyCode.HOME:case a.ui.keyCode.END:case a.ui.keyCode.PAGE_UP:case a.ui.keyCode.PAGE_DOWN:case a.ui.keyCode.UP:case a.ui.keyCode.RIGHT:case a.ui.keyCode.DOWN:case a.ui.keyCode.LEFT:d.preventDefault();if(!b._keySliding){b._keySliding=!0,a(this).addClass("ui-state-active"),f=b._start(d,e);if(f===!1)return}}i=b.options.step,b.options.values&&b.options.values.length?g=h=b.values(e):g=h=b.value();switch(d.keyCode){case a.ui.keyCode.HOME:h=b._valueMin();break;case a.ui.keyCode.END:h=b._valueMax();break;case a.ui.keyCode.PAGE_UP:h=b._trimAlignValue(g+(b._valueMax()-b._valueMin())/c);break;case a.ui.keyCode.PAGE_DOWN:h=b._trimAlignValue(g-(b._valueMax()-b._valueMin())/c);break;case a.ui.keyCode.UP:case a.ui.keyCode.RIGHT:if(g===b._valueMax())return;h=b._trimAlignValue(g+i);break;case a.ui.keyCode.DOWN:case a.ui.keyCode.LEFT:if(g===b._valueMin())return;h=b._trimAlignValue(g-i)}b._slide(d,e,h)}}).keyup(function(c){var d=a(this).data("index.ui-slider-handle");b._keySliding&&(b._keySliding=!1,b._stop(c,d),b._change(c,d),a(this).removeClass("ui-state-active"))}),this._refreshValue(),this._animateOff=!1},destroy:function(){this.handles.remove(),this.range.remove(),this.element.removeClass("ui-slider ui-slider-horizontal ui-slider-vertical ui-slider-disabled ui-widget ui-widget-content ui-corner-all").removeData("slider").unbind(".slider"),this._mouseDestroy();return this},_mouseCapture:function(b){var c=this.options,d,e,f,g,h,i,j,k,l;if(c.disabled)return!1;this.elementSize={width:this.element.outerWidth(),height:this.element.outerHeight()},this.elementOffset=this.element.offset(),d={x:b.pageX,y:b.pageY},e=this._normValueFromMouse(d),f=this._valueMax()-this._valueMin()+1,h=this,this.handles.each(function(b){var c=Math.abs(e-h.values(b));f>c&&(f=c,g=a(this),i=b)}),c.range===!0&&this.values(1)===c.min&&(i+=1,g=a(this.handles[i])),j=this._start(b,i);if(j===!1)return!1;this._mouseSliding=!0,h._handleIndex=i,g.addClass("ui-state-active").focus(),k=g.offset(),l=!a(b.target).parents().andSelf().is(".ui-slider-handle"),this._clickOffset=l?{left:0,top:0}:{left:b.pageX-k.left-g.width()/2,top:b.pageY-k.top-g.height()/2-(parseInt(g.css("borderTopWidth"),10)||0)-(parseInt(g.css("borderBottomWidth"),10)||0)+(parseInt(g.css("marginTop"),10)||0)},this.handles.hasClass("ui-state-hover")||this._slide(b,i,e),this._animateOff=!0;return!0},_mouseStart:function(a){return!0},_mouseDrag:function(a){var b={x:a.pageX,y:a.pageY},c=this._normValueFromMouse(b);this._slide(a,this._handleIndex,c);return!1},_mouseStop:function(a){this.handles.removeClass("ui-state-active"),this._mouseSliding=!1,this._stop(a,this._handleIndex),this._change(a,this._handleIndex),this._handleIndex=null,this._clickOffset=null,this._animateOff=!1;return!1},_detectOrientation:function(){this.orientation=this.options.orientation==="vertical"?"vertical":"horizontal"},_normValueFromMouse:function(a){var b,c,d,e,f;this.orientation==="horizontal"?(b=this.elementSize.width,c=a.x-this.elementOffset.left-(this._clickOffset?this._clickOffset.left:0)):(b=this.elementSize.height,c=a.y-this.elementOffset.top-(this._clickOffset?this._clickOffset.top:0)),d=c/b,d>1&&(d=1),d<0&&(d=0),this.orientation==="vertical"&&(d=1-d),e=this._valueMax()-this._valueMin(),f=this._valueMin()+d*e;return this._trimAlignValue(f)},_start:function(a,b){var c={handle:this.handles[b],value:this.value()};this.options.values&&this.options.values.length&&(c.value=this.values(b),c.values=this.values());return this._trigger("start",a,c)},_slide:function(a,b,c){var d,e,f;this.options.values&&this.options.values.length?(d=this.values(b?0:1),this.options.values.length===2&&this.options.range===!0&&(b===0&&c>d||b===1&&c<d)&&(c=d),c!==this.values(b)&&(e=this.values(),e[b]=c,f=this._trigger("slide",a,{handle:this.handles[b],value:c,values:e}),d=this.values(b?0:1),f!==!1&&this.values(b,c,!0))):c!==this.value()&&(f=this._trigger("slide",a,{handle:this.handles[b],value:c}),f!==!1&&this.value(c))},_stop:function(a,b){var c={handle:this.handles[b],value:this.value()};this.options.values&&this.options.values.length&&(c.value=this.values(b),c.values=this.values()),this._trigger("stop",a,c)},_change:function(a,b){if(!this._keySliding&&!this._mouseSliding){var c={handle:this.handles[b],value:this.value()};this.options.values&&this.options.values.length&&(c.value=this.values(b),c.values=this.values()),this._trigger("change",a,c)}},value:function(a){if(arguments.length)this.options.value=this._trimAlignValue(a),this._refreshValue(),this._change(null,0);else return this._value()},values:function(b,c){var d,e,f;if(arguments.length>1)this.options.values[b]=this._trimAlignValue(c),this._refreshValue(),this._change(null,b);else{if(!arguments.length)return this._values();if(!a.isArray(arguments[0]))return this.options.values&&this.options.values.length?this._values(b):this.value();d=this.options.values,e=arguments[0];for(f=0;f<d.length;f+=1)d[f]=this._trimAlignValue(e[f]),this._change(null,f);this._refreshValue()}},_setOption:function(b,c){var d,e=0;a.isArray(this.options.values)&&(e=this.options.values.length),a.Widget.prototype._setOption.apply(this,arguments);switch(b){case"disabled":c?(this.handles.filter(".ui-state-focus").blur(),this.handles.removeClass("ui-state-hover"),this.handles.propAttr("disabled",!0),this.element.addClass("ui-disabled")):(this.handles.propAttr("disabled",!1),this.element.removeClass("ui-disabled"));break;case"orientation":this._detectOrientation(),this.element.removeClass("ui-slider-horizontal ui-slider-vertical").addClass("ui-slider-"+this.orientation),this._refreshValue();break;case"value":this._animateOff=!0,this._refreshValue(),this._change(null,0),this._animateOff=!1;break;case"values":this._animateOff=!0,this._refreshValue();for(d=0;d<e;d+=1)this._change(null,d);this._animateOff=!1}},_value:function(){var a=this.options.value;a=this._trimAlignValue(a);return a},_values:function(a){var b,c,d;if(arguments.length){b=this.options.values[a],b=this._trimAlignValue(b);return b}c=this.options.values.slice();for(d=0;d<c.length;d+=1)c[d]=this._trimAlignValue(c[d]);return c},_trimAlignValue:function(a){if(a<=this._valueMin())return this._valueMin();if(a>=this._valueMax())return this._valueMax();var b=this.options.step>0?this.options.step:1,c=(a-this._valueMin())%b,d=a-c;Math.abs(c)*2>=b&&(d+=c>0?b:-b);return parseFloat(d.toFixed(5))},_valueMin:function(){return this.options.min},_valueMax:function(){return this.options.max},_refreshValue:function(){var b=this.options.range,c=this.options,d=this,e=this._animateOff?!1:c.animate,f,g={},h,i,j,k;this.options.values&&this.options.values.length?this.handles.each(function(b,i){f=(d.values(b)-d._valueMin())/(d._valueMax()-d._valueMin())*100,g[d.orientation==="horizontal"?"left":"bottom"]=f+"%",a(this).stop(1,1)[e?"animate":"css"](g,c.animate),d.options.range===!0&&(d.orientation==="horizontal"?(b===0&&d.range.stop(1,1)[e?"animate":"css"]({left:f+"%"},c.animate),b===1&&d.range[e?"animate":"css"]({width:f-h+"%"},{queue:!1,duration:c.animate})):(b===0&&d.range.stop(1,1)[e?"animate":"css"]({bottom:f+"%"},c.animate),b===1&&d.range[e?"animate":"css"]({height:f-h+"%"},{queue:!1,duration:c.animate}))),h=f}):(i=this.value(),j=this._valueMin(),k=this._valueMax(),f=k!==j?(i-j)/(k-j)*100:0,g[d.orientation==="horizontal"?"left":"bottom"]=f+"%",this.handle.stop(1,1)[e?"animate":"css"](g,c.animate),b==="min"&&this.orientation==="horizontal"&&this.range.stop(1,1)[e?"animate":"css"]({width:f+"%"},c.animate),b==="max"&&this.orientation==="horizontal"&&this.range[e?"animate":"css"]({width:100-f+"%"},{queue:!1,duration:c.animate}),b==="min"&&this.orientation==="vertical"&&this.range.stop(1,1)[e?"animate":"css"]({height:f+"%"},c.animate),b==="max"&&this.orientation==="vertical"&&this.range[e?"animate":"css"]({height:100-f+"%"},{queue:!1,duration:c.animate}))}}),a.extend(a.ui.slider,{version:"1.8.18"})}(jQuery),function(a,b){function f(){return++d}function e(){return++c}var c=0,d=0;a.widget("ui.tabs",{options:{add:null,ajaxOptions:null,cache:!1,cookie:null,collapsible:!1,disable:null,disabled:[],enable:null,event:"click",fx:null,idPrefix:"ui-tabs-",load:null,panelTemplate:"<div></div>",remove:null,select:null,show:null,spinner:"<em>Loading&#8230;</em>",tabTemplate:"<li><a href='#{href}'><span>#{label}</span></a></li>"},_create:function(){this._tabify(!0)},_setOption:function(a,b){if(a=="selected"){if(this.options.collapsible&&b==this.options.selected)return;this.select(b)}else this.options[a]=b,this._tabify()},_tabId:function(a){return a.title&&a.title.replace(/\s/g,"_").replace(/[^\w\u00c0-\uFFFF-]/g,"")||this.options.idPrefix+e()},_sanitizeSelector:function(a){return a.replace(/:/g,"\\:")},_cookie:function(){var b=this.cookie||(this.cookie=this.options.cookie.name||"ui-tabs-"+f());return a.cookie.apply(null,[b].concat(a.makeArray(arguments)))},_ui:function(a,b){return{tab:a,panel:b,index:this.anchors.index(a)}},_cleanup:function(){this.lis.filter(".ui-state-processing").removeClass("ui-state-processing").find("span:data(label.tabs)").each(function(){var b=a(this);b.html(b.data("label.tabs")).removeData("label.tabs")})},_tabify:function(c){function m(b,c){b.css("display",""),!a.support.opacity&&c.opacity&&b[0].style.removeAttribute("filter")}var d=this,e=this.options,f=/^#.+/;this.list=this.element.find("ol,ul").eq(0),this.lis=a(" > li:has(a[href])",this.list),this.anchors=this.lis.map(function(){return a("a",this)[0]}),this.panels=a([]),this.anchors.each(function(b,c){var g=a(c).attr("href"),h=g.split("#")[0],i;h&&(h===location.toString().split("#")[0]||(i=a("base")[0])&&h===i.href)&&(g=c.hash,c.href=g);if(f.test(g))d.panels=d.panels.add(d.element.find(d._sanitizeSelector(g)));else if(g&&g!=="#"){a.data(c,"href.tabs",g),a.data(c,"load.tabs",g.replace(/#.*$/,""));var j=d._tabId(c);c.href="#"+j;var k=d.element.find("#"+j);k.length||(k=a(e.panelTemplate).attr("id",j).addClass("ui-tabs-panel ui-widget-content ui-corner-bottom").insertAfter(d.panels[b-1]||d.list),k.data("destroy.tabs",!0)),d.panels=d.panels.add(k)}else e.disabled.push(b)}),c?(this.element.addClass("ui-tabs ui-widget ui-widget-content ui-corner-all"),this.list.addClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all"),this.lis.addClass("ui-state-default ui-corner-top"),this.panels.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom"),e.selected===b?(location.hash&&this.anchors.each(function(a,b){if(b.hash==location.hash){e.selected=a;return!1}}),typeof e.selected!="number"&&e.cookie&&(e.selected=parseInt(d._cookie(),10)),typeof e.selected!="number"&&this.lis.filter(".ui-tabs-selected").length&&(e.selected=this.lis.index(this.lis.filter(".ui-tabs-selected"))),e.selected=e.selected||(this.lis.length?0:-1)):e.selected===null&&(e.selected=-1),e.selected=e.selected>=0&&this.anchors[e.selected]||e.selected<0?e.selected:0,e.disabled=a.unique(e.disabled.concat(a.map(this.lis.filter(".ui-state-disabled"),function(a,b){return d.lis.index(a)}))).sort(),a.inArray(e.selected,e.disabled)!=-1&&e.disabled.splice(a.inArray(e.selected,e.disabled),1),this.panels.addClass("ui-tabs-hide"),this.lis.removeClass("ui-tabs-selected ui-state-active"),e.selected>=0&&this.anchors.length&&(d.element.find(d._sanitizeSelector(d.anchors[e.selected].hash)).removeClass("ui-tabs-hide"),this.lis.eq(e.selected).addClass("ui-tabs-selected ui-state-active"),d.element.queue("tabs",function(){d._trigger("show",null,d._ui(d.anchors[e.selected],d.element.find(d._sanitizeSelector(d.anchors[e.selected].hash))[0]))}),this.load(e.selected)),a(window).bind("unload",function(){d.lis.add(d.anchors).unbind(".tabs"),d.lis=d.anchors=d.panels=null})):e.selected=this.lis.index(this.lis.filter(".ui-tabs-selected")),this.element[e.collapsible?"addClass":"removeClass"]("ui-tabs-collapsible"),e.cookie&&this._cookie(e.selected,e.cookie);for(var g=0,h;h=this.lis[g];g++)a(h)[a.inArray(g,e.disabled)!=-1&&!a(h).hasClass("ui-tabs-selected")?"addClass":"removeClass"]("ui-state-disabled");e.cache===!1&&this.anchors.removeData("cache.tabs"),this.lis.add(this.anchors).unbind(".tabs");if(e.event!=="mouseover"){var i=function(a,b){b.is(":not(.ui-state-disabled)")&&b.addClass("ui-state-"+a)},j=function(a,b){b.removeClass("ui-state-"+a)};this.lis.bind("mouseover.tabs",function(){i("hover",a(this))}),this.lis.bind("mouseout.tabs",function(){j("hover",a(this))}),this.anchors.bind("focus.tabs",function(){i("focus",a(this).closest("li"))}),this.anchors.bind("blur.tabs",function(){j("focus",a(this).closest("li"))})}var k,l;e.fx&&(a.isArray(e.fx)?(k=e.fx[0],l=e.fx[1]):k=l=e.fx);var n=l?function(b,c){a(b).closest("li").addClass("ui-tabs-selected ui-state-active"),c.hide().removeClass("ui-tabs-hide").animate(l,l.duration||"normal",function(){m(c,l),d._trigger("show",null,d._ui(b,c[0]))})}:function(b,c){a(b).closest("li").addClass("ui-tabs-selected ui-state-active"),c.removeClass("ui-tabs-hide"),d._trigger("show",null,d._ui(b,c[0]))},o=k?function(a,b){b.animate(k,k.duration||"normal",function(){d.lis.removeClass("ui-tabs-selected ui-state-active"),b.addClass("ui-tabs-hide"),m(b,k),d.element.dequeue("tabs")})}:function(a,b,c){d.lis.removeClass("ui-tabs-selected ui-state-active"),b.addClass("ui-tabs-hide"),d.element.dequeue("tabs")};this.anchors.bind(e.event+".tabs",function(){var b=this,c=a(b).closest("li"),f=d.panels.filter(":not(.ui-tabs-hide)"),g=d.element.find(d._sanitizeSelector(b.hash));if(c.hasClass("ui-tabs-selected")&&!e.collapsible||c.hasClass("ui-state-disabled")||c.hasClass("ui-state-processing")||d.panels.filter(":animated").length||d._trigger("select",null,d._ui(this,g[0]))===!1){this.blur();return!1}e.selected=d.anchors.index(this),d.abort();if(e.collapsible){if(c.hasClass("ui-tabs-selected")){e.selected=-1,e.cookie&&d._cookie(e.selected,e.cookie),d.element.queue("tabs",function(){o(b,f)}).dequeue("tabs"),this.blur();return!1}if(!f.length){e.cookie&&d._cookie(e.selected,e.cookie),d.element.queue("tabs",function(){n(b,g)}
),d.load(d.anchors.index(this)),this.blur();return!1}}e.cookie&&d._cookie(e.selected,e.cookie);if(g.length)f.length&&d.element.queue("tabs",function(){o(b,f)}),d.element.queue("tabs",function(){n(b,g)}),d.load(d.anchors.index(this));else throw"jQuery UI Tabs: Mismatching fragment identifier.";a.browser.msie&&this.blur()}),this.anchors.bind("click.tabs",function(){return!1})},_getIndex:function(a){typeof a=="string"&&(a=this.anchors.index(this.anchors.filter("[href$="+a+"]")));return a},destroy:function(){var b=this.options;this.abort(),this.element.unbind(".tabs").removeClass("ui-tabs ui-widget ui-widget-content ui-corner-all ui-tabs-collapsible").removeData("tabs"),this.list.removeClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all"),this.anchors.each(function(){var b=a.data(this,"href.tabs");b&&(this.href=b);var c=a(this).unbind(".tabs");a.each(["href","load","cache"],function(a,b){c.removeData(b+".tabs")})}),this.lis.unbind(".tabs").add(this.panels).each(function(){a.data(this,"destroy.tabs")?a(this).remove():a(this).removeClass(["ui-state-default","ui-corner-top","ui-tabs-selected","ui-state-active","ui-state-hover","ui-state-focus","ui-state-disabled","ui-tabs-panel","ui-widget-content","ui-corner-bottom","ui-tabs-hide"].join(" "))}),b.cookie&&this._cookie(null,b.cookie);return this},add:function(c,d,e){e===b&&(e=this.anchors.length);var f=this,g=this.options,h=a(g.tabTemplate.replace(/#\{href\}/g,c).replace(/#\{label\}/g,d)),i=c.indexOf("#")?this._tabId(a("a",h)[0]):c.replace("#","");h.addClass("ui-state-default ui-corner-top").data("destroy.tabs",!0);var j=f.element.find("#"+i);j.length||(j=a(g.panelTemplate).attr("id",i).data("destroy.tabs",!0)),j.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide"),e>=this.lis.length?(h.appendTo(this.list),j.appendTo(this.list[0].parentNode)):(h.insertBefore(this.lis[e]),j.insertBefore(this.panels[e])),g.disabled=a.map(g.disabled,function(a,b){return a>=e?++a:a}),this._tabify(),this.anchors.length==1&&(g.selected=0,h.addClass("ui-tabs-selected ui-state-active"),j.removeClass("ui-tabs-hide"),this.element.queue("tabs",function(){f._trigger("show",null,f._ui(f.anchors[0],f.panels[0]))}),this.load(0)),this._trigger("add",null,this._ui(this.anchors[e],this.panels[e]));return this},remove:function(b){b=this._getIndex(b);var c=this.options,d=this.lis.eq(b).remove(),e=this.panels.eq(b).remove();d.hasClass("ui-tabs-selected")&&this.anchors.length>1&&this.select(b+(b+1<this.anchors.length?1:-1)),c.disabled=a.map(a.grep(c.disabled,function(a,c){return a!=b}),function(a,c){return a>=b?--a:a}),this._tabify(),this._trigger("remove",null,this._ui(d.find("a")[0],e[0]));return this},enable:function(b){b=this._getIndex(b);var c=this.options;if(a.inArray(b,c.disabled)!=-1){this.lis.eq(b).removeClass("ui-state-disabled"),c.disabled=a.grep(c.disabled,function(a,c){return a!=b}),this._trigger("enable",null,this._ui(this.anchors[b],this.panels[b]));return this}},disable:function(a){a=this._getIndex(a);var b=this,c=this.options;a!=c.selected&&(this.lis.eq(a).addClass("ui-state-disabled"),c.disabled.push(a),c.disabled.sort(),this._trigger("disable",null,this._ui(this.anchors[a],this.panels[a])));return this},select:function(a){a=this._getIndex(a);if(a==-1)if(this.options.collapsible&&this.options.selected!=-1)a=this.options.selected;else return this;this.anchors.eq(a).trigger(this.options.event+".tabs");return this},load:function(b){b=this._getIndex(b);var c=this,d=this.options,e=this.anchors.eq(b)[0],f=a.data(e,"load.tabs");this.abort();if(!f||this.element.queue("tabs").length!==0&&a.data(e,"cache.tabs"))this.element.dequeue("tabs");else{this.lis.eq(b).addClass("ui-state-processing");if(d.spinner){var g=a("span",e);g.data("label.tabs",g.html()).html(d.spinner)}this.xhr=a.ajax(a.extend({},d.ajaxOptions,{url:f,success:function(f,g){c.element.find(c._sanitizeSelector(e.hash)).html(f),c._cleanup(),d.cache&&a.data(e,"cache.tabs",!0),c._trigger("load",null,c._ui(c.anchors[b],c.panels[b]));try{d.ajaxOptions.success(f,g)}catch(h){}},error:function(a,f,g){c._cleanup(),c._trigger("load",null,c._ui(c.anchors[b],c.panels[b]));try{d.ajaxOptions.error(a,f,b,e)}catch(g){}}})),c.element.dequeue("tabs");return this}},abort:function(){this.element.queue([]),this.panels.stop(!1,!0),this.element.queue("tabs",this.element.queue("tabs").splice(-2,2)),this.xhr&&(this.xhr.abort(),delete this.xhr),this._cleanup();return this},url:function(a,b){this.anchors.eq(a).removeData("cache.tabs").data("load.tabs",b);return this},length:function(){return this.anchors.length}}),a.extend(a.ui.tabs,{version:"1.8.18"}),a.extend(a.ui.tabs.prototype,{rotation:null,rotate:function(a,b){var c=this,d=this.options,e=c._rotate||(c._rotate=function(b){clearTimeout(c.rotation),c.rotation=setTimeout(function(){var a=d.selected;c.select(++a<c.anchors.length?a:0)},a),b&&b.stopPropagation()}),f=c._unrotate||(c._unrotate=b?function(a){t=d.selected,e()}:function(a){a.clientX&&c.rotate(null)});a?(this.element.bind("tabsshow",e),this.anchors.bind(d.event+".tabs",f),e()):(clearTimeout(c.rotation),this.element.unbind("tabsshow",e),this.anchors.unbind(d.event+".tabs",f),delete this._rotate,delete this._unrotate);return this}})}(jQuery)  07070100000199000081A40000000000000000000000015ECE244400014FA5000000000000000000000000000000000000002700000000cobbler-3.1.2/web/static/jquery.min.js    /*!
 * jQuery JavaScript Library v1.5.2
 * http://jquery.com/
 *
 * Copyright 2011, John Resig
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * Includes Sizzle.js
 * http://sizzlejs.com/
 * Copyright 2011, The Dojo Foundation
 * Released under the MIT, BSD, and GPL Licenses.
 *
 * Date: Thu Mar 31 15:28:23 2011 -0400
 */
(function(a,b){function ci(a){return d.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cf(a){if(!b_[a]){var b=d("<"+a+">").appendTo("body"),c=b.css("display");b.remove();if(c==="none"||c==="")c="block";b_[a]=c}return b_[a]}function ce(a,b){var c={};d.each(cd.concat.apply([],cd.slice(0,b)),function(){c[this]=a});return c}function b$(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function bZ(){try{return new a.XMLHttpRequest}catch(b){}}function bY(){d(a).unload(function(){for(var a in bW)bW[a](0,1)})}function bS(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var e=a.dataTypes,f={},g,h,i=e.length,j,k=e[0],l,m,n,o,p;for(g=1;g<i;g++){if(g===1)for(h in a.converters)typeof h==="string"&&(f[h.toLowerCase()]=a.converters[h]);l=k,k=e[g];if(k==="*")k=l;else if(l!=="*"&&l!==k){m=l+" "+k,n=f[m]||f["* "+k];if(!n){p=b;for(o in f){j=o.split(" ");if(j[0]===l||j[0]==="*"){p=f[j[1]+" "+k];if(p){o=f[o],o===!0?n=p:p===!0&&(n=o);break}}}}!n&&!p&&d.error("No conversion from "+m.replace(" "," to ")),n!==!0&&(c=n?n(c):p(o(c)))}}return c}function bR(a,c,d){var e=a.contents,f=a.dataTypes,g=a.responseFields,h,i,j,k;for(i in g)i in d&&(c[g[i]]=d[i]);while(f[0]==="*")f.shift(),h===b&&(h=a.mimeType||c.getResponseHeader("content-type"));if(h)for(i in e)if(e[i]&&e[i].test(h)){f.unshift(i);break}if(f[0]in d)j=f[0];else{for(i in d){if(!f[0]||a.converters[i+" "+f[0]]){j=i;break}k||(k=i)}j=j||k}if(j){j!==f[0]&&f.unshift(j);return d[j]}}function bQ(a,b,c,e){if(d.isArray(b)&&b.length)d.each(b,function(b,f){c||bs.test(a)?e(a,f):bQ(a+"["+(typeof f==="object"||d.isArray(f)?b:"")+"]",f,c,e)});else if(c||b==null||typeof b!=="object")e(a,b);else if(d.isArray(b)||d.isEmptyObject(b))e(a,"");else for(var f in b)bQ(a+"["+f+"]",b[f],c,e)}function bP(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h=a[f],i=0,j=h?h.length:0,k=a===bJ,l;for(;i<j&&(k||!l);i++)l=h[i](c,d,e),typeof l==="string"&&(!k||g[l]?l=b:(c.dataTypes.unshift(l),l=bP(a,c,d,e,l,g)));(k||!l)&&!g["*"]&&(l=bP(a,c,d,e,"*",g));return l}function bO(a){return function(b,c){typeof b!=="string"&&(c=b,b="*");if(d.isFunction(c)){var e=b.toLowerCase().split(bD),f=0,g=e.length,h,i,j;for(;f<g;f++)h=e[f],j=/^\+/.test(h),j&&(h=h.substr(1)||"*"),i=a[h]=a[h]||[],i[j?"unshift":"push"](c)}}}function bq(a,b,c){var e=b==="width"?bk:bl,f=b==="width"?a.offsetWidth:a.offsetHeight;if(c==="border")return f;d.each(e,function(){c||(f-=parseFloat(d.css(a,"padding"+this))||0),c==="margin"?f+=parseFloat(d.css(a,"margin"+this))||0:f-=parseFloat(d.css(a,"border"+this+"Width"))||0});return f}function bc(a,b){b.src?d.ajax({url:b.src,async:!1,dataType:"script"}):d.globalEval(b.text||b.textContent||b.innerHTML||""),b.parentNode&&b.parentNode.removeChild(b)}function bb(a){return"getElementsByTagName"in a?a.getElementsByTagName("*"):"querySelectorAll"in a?a.querySelectorAll("*"):[]}function ba(a,b){if(b.nodeType===1){var c=b.nodeName.toLowerCase();b.clearAttributes(),b.mergeAttributes(a);if(c==="object")b.outerHTML=a.outerHTML;else if(c!=="input"||a.type!=="checkbox"&&a.type!=="radio"){if(c==="option")b.selected=a.defaultSelected;else if(c==="input"||c==="textarea")b.defaultValue=a.defaultValue}else a.checked&&(b.defaultChecked=b.checked=a.checked),b.value!==a.value&&(b.value=a.value);b.removeAttribute(d.expando)}}function _(a,b){if(b.nodeType===1&&d.hasData(a)){var c=d.expando,e=d.data(a),f=d.data(b,e);if(e=e[c]){var g=e.events;f=f[c]=d.extend({},e);if(g){delete f.handle,f.events={};for(var h in g)for(var i=0,j=g[h].length;i<j;i++)d.event.add(b,h+(g[h][i].namespace?".":"")+g[h][i].namespace,g[h][i],g[h][i].data)}}}}function $(a,b){return d.nodeName(a,"table")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function Q(a,b,c){if(d.isFunction(b))return d.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return d.grep(a,function(a,d){return a===b===c});if(typeof b==="string"){var e=d.grep(a,function(a){return a.nodeType===1});if(L.test(b))return d.filter(b,e,!c);b=d.filter(b,e)}return d.grep(a,function(a,e){return d.inArray(a,b)>=0===c})}function P(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function H(a,b){return(a&&a!=="*"?a+".":"")+b.replace(t,"`").replace(u,"&")}function G(a){var b,c,e,f,g,h,i,j,k,l,m,n,o,p=[],q=[],s=d._data(this,"events");if(a.liveFired!==this&&s&&s.live&&!a.target.disabled&&(!a.button||a.type!=="click")){a.namespace&&(n=new RegExp("(^|\\.)"+a.namespace.split(".").join("\\.(?:.*\\.)?")+"(\\.|$)")),a.liveFired=this;var t=s.live.slice(0);for(i=0;i<t.length;i++)g=t[i],g.origType.replace(r,"")===a.type?q.push(g.selector):t.splice(i--,1);f=d(a.target).closest(q,a.currentTarget);for(j=0,k=f.length;j<k;j++){m=f[j];for(i=0;i<t.length;i++){g=t[i];if(m.selector===g.selector&&(!n||n.test(g.namespace))&&!m.elem.disabled){h=m.elem,e=null;if(g.preType==="mouseenter"||g.preType==="mouseleave")a.type=g.preType,e=d(a.relatedTarget).closest(g.selector)[0];(!e||e!==h)&&p.push({elem:h,handleObj:g,level:m.level})}}}for(j=0,k=p.length;j<k;j++){f=p[j];if(c&&f.level>c)break;a.currentTarget=f.elem,a.data=f.handleObj.data,a.handleObj=f.handleObj,o=f.handleObj.origHandler.apply(f.elem,arguments);if(o===!1||a.isPropagationStopped()){c=f.level,o===!1&&(b=!1);if(a.isImmediatePropagationStopped())break}}return b}}function E(a,c,e){var f=d.extend({},e[0]);f.type=a,f.originalEvent={},f.liveFired=b,d.event.handle.call(c,f),f.isDefaultPrevented()&&e[0].preventDefault()}function y(){return!0}function x(){return!1}function i(a){for(var b in a)if(b!=="toJSON")return!1;return!0}function h(a,c,e){if(e===b&&a.nodeType===1){e=a.getAttribute("data-"+c);if(typeof e==="string"){try{e=e==="true"?!0:e==="false"?!1:e==="null"?null:d.isNaN(e)?g.test(e)?d.parseJSON(e):e:parseFloat(e)}catch(f){}d.data(a,c,e)}else e=b}return e}var c=a.document,d=function(){function G(){if(!d.isReady){try{c.documentElement.doScroll("left")}catch(a){setTimeout(G,1);return}d.ready()}}var d=function(a,b){return new d.fn.init(a,b,g)},e=a.jQuery,f=a.$,g,h=/^(?:[^<]*(<[\w\W]+>)[^>]*$|#([\w\-]+)$)/,i=/\S/,j=/^\s+/,k=/\s+$/,l=/\d/,m=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=navigator.userAgent,w,x,y,z=Object.prototype.toString,A=Object.prototype.hasOwnProperty,B=Array.prototype.push,C=Array.prototype.slice,D=String.prototype.trim,E=Array.prototype.indexOf,F={};d.fn=d.prototype={constructor:d,init:function(a,e,f){var g,i,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!e&&c.body){this.context=c,this[0]=c.body,this.selector="body",this.length=1;return this}if(typeof a==="string"){g=h.exec(a);if(!g||!g[1]&&e)return!e||e.jquery?(e||f).find(a):this.constructor(e).find(a);if(g[1]){e=e instanceof d?e[0]:e,k=e?e.ownerDocument||e:c,j=m.exec(a),j?d.isPlainObject(e)?(a=[c.createElement(j[1])],d.fn.attr.call(a,e,!0)):a=[k.createElement(j[1])]:(j=d.buildFragment([g[1]],[k]),a=(j.cacheable?d.clone(j.fragment):j.fragment).childNodes);return d.merge(this,a)}i=c.getElementById(g[2]);if(i&&i.parentNode){if(i.id!==g[2])return f.find(a);this.length=1,this[0]=i}this.context=c,this.selector=a;return this}if(d.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return d.makeArray(a,this)},selector:"",jquery:"1.5.2",length:0,size:function(){return this.length},toArray:function(){return C.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var e=this.constructor();d.isArray(a)?B.apply(e,a):d.merge(e,a),e.prevObject=this,e.context=this.context,b==="find"?e.selector=this.selector+(this.selector?" ":"")+c:b&&(e.selector=this.selector+"."+b+"("+c+")");return e},each:function(a,b){return d.each(this,a,b)},ready:function(a){d.bindReady(),x.done(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(C.apply(this,arguments),"slice",C.call(arguments).join(","))},map:function(a){return this.pushStack(d.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:B,sort:[].sort,splice:[].splice},d.fn.init.prototype=d.fn,d.extend=d.fn.extend=function(){var a,c,e,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i==="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!=="object"&&!d.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j<k;j++)if((a=arguments[j])!=null)for(c in a){e=i[c],f=a[c];if(i===f)continue;l&&f&&(d.isPlainObject(f)||(g=d.isArray(f)))?(g?(g=!1,h=e&&d.isArray(e)?e:[]):h=e&&d.isPlainObject(e)?e:{},i[c]=d.extend(l,h,f)):f!==b&&(i[c]=f)}return i},d.extend({noConflict:function(b){a.$=f,b&&(a.jQuery=e);return d},isReady:!1,readyWait:1,ready:function(a){a===!0&&d.readyWait--;if(!d.readyWait||a!==!0&&!d.isReady){if(!c.body)return setTimeout(d.ready,1);d.isReady=!0;if(a!==!0&&--d.readyWait>0)return;x.resolveWith(c,[d]),d.fn.trigger&&d(c).trigger("ready").unbind("ready")}},bindReady:function(){if(!x){x=d._Deferred();if(c.readyState==="complete")return setTimeout(d.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",y,!1),a.addEventListener("load",d.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",y),a.attachEvent("onload",d.ready);var b=!1;try{b=a.frameElement==null}catch(e){}c.documentElement.doScroll&&b&&G()}}},isFunction:function(a){return d.type(a)==="function"},isArray:Array.isArray||function(a){return d.type(a)==="array"},isWindow:function(a){return a&&typeof a==="object"&&"setInterval"in a},isNaN:function(a){return a==null||!l.test(a)||isNaN(a)},type:function(a){return a==null?String(a):F[z.call(a)]||"object"},isPlainObject:function(a){if(!a||d.type(a)!=="object"||a.nodeType||d.isWindow(a))return!1;if(a.constructor&&!A.call(a,"constructor")&&!A.call(a.constructor.prototype,"isPrototypeOf"))return!1;var c;for(c in a){}return c===b||A.call(a,c)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw a},parseJSON:function(b){if(typeof b!=="string"||!b)return null;b=d.trim(b);if(n.test(b.replace(o,"@").replace(p,"]").replace(q,"")))return a.JSON&&a.JSON.parse?a.JSON.parse(b):(new Function("return "+b))();d.error("Invalid JSON: "+b)},parseXML:function(b,c,e){a.DOMParser?(e=new DOMParser,c=e.parseFromString(b,"text/xml")):(c=new ActiveXObject("Microsoft.XMLDOM"),c.async="false",c.loadXML(b)),e=c.documentElement,(!e||!e.nodeName||e.nodeName==="parsererror")&&d.error("Invalid XML: "+b);return c},noop:function(){},globalEval:function(a){if(a&&i.test(a)){var b=c.head||c.getElementsByTagName("head")[0]||c.documentElement,e=c.createElement("script");d.support.scriptEval()?e.appendChild(c.createTextNode(a)):e.text=a,b.insertBefore(e,b.firstChild),b.removeChild(e)}},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,e){var f,g=0,h=a.length,i=h===b||d.isFunction(a);if(e){if(i){for(f in a)if(c.apply(a[f],e)===!1)break}else for(;g<h;)if(c.apply(a[g++],e)===!1)break}else if(i){for(f in a)if(c.call(a[f],f,a[f])===!1)break}else for(var j=a[0];g<h&&c.call(j,g,j)!==!1;j=a[++g]){}return a},trim:D?function(a){return a==null?"":D.call(a)}:function(a){return a==null?"":(a+"").replace(j,"").replace(k,"")},makeArray:function(a,b){var c=b||[];if(a!=null){var e=d.type(a);a.length==null||e==="string"||e==="function"||e==="regexp"||d.isWindow(a)?B.call(c,a):d.merge(c,a)}return c},inArray:function(a,b){if(b.indexOf)return b.indexOf(a);for(var c=0,d=b.length;c<d;c++)if(b[c]===a)return c;return-1},merge:function(a,c){var d=a.length,e=0;if(typeof c.length==="number")for(var f=c.length;e<f;e++)a[d++]=c[e];else while(c[e]!==b)a[d++]=c[e++];a.length=d;return a},grep:function(a,b,c){var d=[],e;c=!!c;for(var f=0,g=a.length;f<g;f++)e=!!b(a[f],f),c!==e&&d.push(a[f]);return d},map:function(a,b,c){var d=[],e;for(var f=0,g=a.length;f<g;f++)e=b(a[f],f,c),e!=null&&(d[d.length]=e);return d.concat.apply([],d)},guid:1,proxy:function(a,c,e){arguments.length===2&&(typeof c==="string"?(e=a,a=e[c],c=b):c&&!d.isFunction(c)&&(e=c,c=b)),!c&&a&&(c=function(){return a.apply(e||this,arguments)}),a&&(c.guid=a.guid=a.guid||c.guid||d.guid++);return c},access:function(a,c,e,f,g,h){var i=a.length;if(typeof c==="object"){for(var j in c)d.access(a,j,c[j],f,g,e);return a}if(e!==b){f=!h&&f&&d.isFunction(e);for(var k=0;k<i;k++)g(a[k],c,f?e.call(a[k],k,g(a[k],c)):e,h);return a}return i?g(a[0],c):b},now:function(){return(new Date).getTime()},uaMatch:function(a){a=a.toLowerCase();var b=r.exec(a)||s.exec(a)||t.exec(a)||a.indexOf("compatible")<0&&u.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},sub:function(){function a(b,c){return new a.fn.init(b,c)}d.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.subclass=this.subclass,a.fn.init=function b(b,c){c&&c instanceof d&&!(c instanceof a)&&(c=a(c));return d.fn.init.call(this,b,c,e)},a.fn.init.prototype=a.fn;var e=a(c);return a},browser:{}}),d.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){F["[object "+b+"]"]=b.toLowerCase()}),w=d.uaMatch(v),w.browser&&(d.browser[w.browser]=!0,d.browser.version=w.version),d.browser.webkit&&(d.browser.safari=!0),E&&(d.inArray=function(a,b){return E.call(b,a)}),i.test(" ")&&(j=/^[\s\xA0]+/,k=/[\s\xA0]+$/),g=d(c),c.addEventListener?y=function(){c.removeEventListener("DOMContentLoaded",y,!1),d.ready()}:c.attachEvent&&(y=function(){c.readyState==="complete"&&(c.detachEvent("onreadystatechange",y),d.ready())});return d}(),e="then done fail isResolved isRejected promise".split(" "),f=[].slice;d.extend({_Deferred:function(){var a=[],b,c,e,f={done:function(){if(!e){var c=arguments,g,h,i,j,k;b&&(k=b,b=0);for(g=0,h=c.length;g<h;g++)i=c[g],j=d.type(i),j==="array"?f.done.apply(f,i):j==="function"&&a.push(i);k&&f.resolveWith(k[0],k[1])}return this},resolveWith:function(d,f){if(!e&&!b&&!c){f=f||[],c=1;try{while(a[0])a.shift().apply(d,f)}finally{b=[d,f],c=0}}return this},resolve:function(){f.resolveWith(this,arguments);return this},isResolved:function(){return c||b},cancel:function(){e=1,a=[];return this}};return f},Deferred:function(a){var b=d._Deferred(),c=d._Deferred(),f;d.extend(b,{then:function(a,c){b.done(a).fail(c);return this},fail:c.done,rejectWith:c.resolveWith,reject:c.resolve,isRejected:c.isResolved,promise:function(a){if(a==null){if(f)return f;f=a={}}var c=e.length;while(c--)a[e[c]]=b[e[c]];return a}}),b.done(c.cancel).fail(b.cancel),delete b.cancel,a&&a.call(b,b);return b},when:function(a){function i(a){return function(c){b[a]=arguments.length>1?f.call(arguments,0):c,--g||h.resolveWith(h,f.call(b,0))}}var b=arguments,c=0,e=b.length,g=e,h=e<=1&&a&&d.isFunction(a.promise)?a:d.Deferred();if(e>1){for(;c<e;c++)b[c]&&d.isFunction(b[c].promise)?b[c].promise().then(i(c),h.reject):--g;g||h.resolveWith(h,b)}else h!==a&&h.resolveWith(h,e?[a]:[]);return h.promise()}}),function(){d.support={};var b=c.createElement("div");b.style.display="none",b.innerHTML="   <link/><table></table><a href='/a' style='color:red;float:left;opacity:.55;'>a</a><input type='checkbox'/>";var e=b.getElementsByTagName("*"),f=b.getElementsByTagName("a")[0],g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=b.getElementsByTagName("input")[0];if(e&&e.length&&f){d.support={leadingWhitespace:b.firstChild.nodeType===3,tbody:!b.getElementsByTagName("tbody").length,htmlSerialize:!!b.getElementsByTagName("link").length,style:/red/.test(f.getAttribute("style")),hrefNormalized:f.getAttribute("href")==="/a",opacity:/^0.55$/.test(f.style.opacity),cssFloat:!!f.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,deleteExpando:!0,optDisabled:!1,checkClone:!1,noCloneEvent:!0,noCloneChecked:!0,boxModel:null,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableHiddenOffsets:!0,reliableMarginRight:!0},i.checked=!0,d.support.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,d.support.optDisabled=!h.disabled;var j=null;d.support.scriptEval=function(){if(j===null){var b=c.documentElement,e=c.createElement("script"),f="script"+d.now();try{e.appendChild(c.createTextNode("window."+f+"=1;"))}catch(g){}b.insertBefore(e,b.firstChild),a[f]?(j=!0,delete a[f]):j=!1,b.removeChild(e)}return j};try{delete b.test}catch(k){d.support.deleteExpando=!1}!b.addEventListener&&b.attachEvent&&b.fireEvent&&(b.attachEvent("onclick",function l(){d.support.noCloneEvent=!1,b.detachEvent("onclick",l)}),b.cloneNode(!0).fireEvent("onclick")),b=c.createElement("div"),b.innerHTML="<input type='radio' name='radiotest' checked='checked'/>";var m=c.createDocumentFragment();m.appendChild(b.firstChild),d.support.checkClone=m.cloneNode(!0).cloneNode(!0).lastChild.checked,d(function(){var a=c.createElement("div"),b=c.getElementsByTagName("body")[0];if(b){a.style.width=a.style.paddingLeft="1px",b.appendChild(a),d.boxModel=d.support.boxModel=a.offsetWidth===2,"zoom"in a.style&&(a.style.display="inline",a.style.zoom=1,d.support.inlineBlockNeedsLayout=a.offsetWidth===2,a.style.display="",a.innerHTML="<div style='width:4px;'></div>",d.support.shrinkWrapBlocks=a.offsetWidth!==2),a.innerHTML="<table><tr><td style='padding:0;border:0;display:none'></td><td>t</td></tr></table>";var e=a.getElementsByTagName("td");d.support.reliableHiddenOffsets=e[0].offsetHeight===0,e[0].style.display="",e[1].style.display="none",d.support.reliableHiddenOffsets=d.support.reliableHiddenOffsets&&e[0].offsetHeight===0,a.innerHTML="",c.defaultView&&c.defaultView.getComputedStyle&&(a.style.width="1px",a.style.marginRight="0",d.support.reliableMarginRight=(parseInt(c.defaultView.getComputedStyle(a,null).marginRight,10)||0)===0),b.removeChild(a).style.display="none",a=e=null}});var n=function(a){var b=c.createElement("div");a="on"+a;if(!b.attachEvent)return!0;var d=a in b;d||(b.setAttribute(a,"return;"),d=typeof b[a]==="function");return d};d.support.submitBubbles=n("submit"),d.support.changeBubbles=n("change"),b=e=f=null}}();var g=/^(?:\{.*\}|\[.*\])$/;d.extend({cache:{},uuid:0,expando:"jQuery"+(d.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?d.cache[a[d.expando]]:a[d.expando];return!!a&&!i(a)},data:function(a,c,e,f){if(d.acceptData(a)){var g=d.expando,h=typeof c==="string",i,j=a.nodeType,k=j?d.cache:a,l=j?a[d.expando]:a[d.expando]&&d.expando;if((!l||f&&l&&!k[l][g])&&h&&e===b)return;l||(j?a[d.expando]=l=++d.uuid:l=d.expando),k[l]||(k[l]={},j||(k[l].toJSON=d.noop));if(typeof c==="object"||typeof c==="function")f?k[l][g]=d.extend(k[l][g],c):k[l]=d.extend(k[l],c);i=k[l],f&&(i[g]||(i[g]={}),i=i[g]),e!==b&&(i[c]=e);if(c==="events"&&!i[c])return i[g]&&i[g].events;return h?i[c]:i}},removeData:function(b,c,e){if(d.acceptData(b)){var f=d.expando,g=b.nodeType,h=g?d.cache:b,j=g?b[d.expando]:d.expando;if(!h[j])return;if(c){var k=e?h[j][f]:h[j];if(k){delete k[c];if(!i(k))return}}if(e){delete h[j][f];if(!i(h[j]))return}var l=h[j][f];d.support.deleteExpando||h!=a?delete h[j]:h[j]=null,l?(h[j]={},g||(h[j].toJSON=d.noop),h[j][f]=l):g&&(d.support.deleteExpando?delete b[d.expando]:b.removeAttribute?b.removeAttribute(d.expando):b[d.expando]=null)}},_data:function(a,b,c){return d.data(a,b,c,!0)},acceptData:function(a){if(a.nodeName){var b=d.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),d.fn.extend({data:function(a,c){var e=null;if(typeof a==="undefined"){if(this.length){e=d.data(this[0]);if(this[0].nodeType===1){var f=this[0].attributes,g;for(var i=0,j=f.length;i<j;i++)g=f[i].name,g.indexOf("data-")===0&&(g=g.substr(5),h(this[0],g,e[g]))}}return e}if(typeof a==="object")return this.each(function(){d.data(this,a)});var k=a.split(".");k[1]=k[1]?"."+k[1]:"";if(c===b){e=this.triggerHandler("getData"+k[1]+"!",[k[0]]),e===b&&this.length&&(e=d.data(this[0],a),e=h(this[0],a,e));return e===b&&k[1]?this.data(k[0]):e}return this.each(function(){var b=d(this),e=[k[0],c];b.triggerHandler("setData"+k[1]+"!",e),d.data(this,a,c),b.triggerHandler("changeData"+k[1]+"!",e)})},removeData:function(a){return this.each(function(){d.removeData(this,a)})}}),d.extend({queue:function(a,b,c){if(a){b=(b||"fx")+"queue";var e=d._data(a,b);if(!c)return e||[];!e||d.isArray(c)?e=d._data(a,b,d.makeArray(c)):e.push(c);return e}},dequeue:function(a,b){b=b||"fx";var c=d.queue(a,b),e=c.shift();e==="inprogress"&&(e=c.shift()),e&&(b==="fx"&&c.unshift("inprogress"),e.call(a,function(){d.dequeue(a,b)})),c.length||d.removeData(a,b+"queue",!0)}}),d.fn.extend({queue:function(a,c){typeof a!=="string"&&(c=a,a="fx");if(c===b)return d.queue(this[0],a);return this.each(function(b){var e=d.queue(this,a,c);a==="fx"&&e[0]!=="inprogress"&&d.dequeue(this,a)})},dequeue:function(a){return this.each(function(){d.dequeue(this,a)})},delay:function(a,b){a=d.fx?d.fx.speeds[a]||a:a,b=b||"fx";return this.queue(b,function(){var c=this;setTimeout(function(){d.dequeue(c,b)},a)})},clearQueue:function(a){return this.queue(a||"fx",[])}});var j=/[\n\t\r]/g,k=/\s+/,l=/\r/g,m=/^(?:href|src|style)$/,n=/^(?:button|input)$/i,o=/^(?:button|input|object|select|textarea)$/i,p=/^a(?:rea)?$/i,q=/^(?:radio|checkbox)$/i;d.props={"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"},d.fn.extend({attr:function(a,b){return d.access(this,a,b,!0,d.attr)},removeAttr:function(a,b){return this.each(function(){d.attr(this,a,""),this.nodeType===1&&this.removeAttribute(a)})},addClass:function(a){if(d.isFunction(a))return this.each(function(b){var c=d(this);c.addClass(a.call(this,b,c.attr("class")))});if(a&&typeof a==="string"){var b=(a||"").split(k);for(var c=0,e=this.length;c<e;c++){var f=this[c];if(f.nodeType===1)if(f.className){var g=" "+f.className+" ",h=f.className;for(var i=0,j=b.length;i<j;i++)g.indexOf(" "+b[i]+" ")<0&&(h+=" "+b[i]);f.className=d.trim(h)}else f.className=a}}return this},removeClass:function(a){if(d.isFunction(a))return this.each(function(b){var c=d(this);c.removeClass(a.call(this,b,c.attr("class")))});if(a&&typeof a==="string"||a===b){var c=(a||"").split(k);for(var e=0,f=this.length;e<f;e++){var g=this[e];if(g.nodeType===1&&g.className)if(a){var h=(" "+g.className+" ").replace(j," ");for(var i=0,l=c.length;i<l;i++)h=h.replace(" "+c[i]+" "," ");g.className=d.trim(h)}else g.className=""}}return this},toggleClass:function(a,b){var c=typeof a,e=typeof b==="boolean";if(d.isFunction(a))return this.each(function(c){var e=d(this);e.toggleClass(a.call(this,c,e.attr("class"),b),b)});return this.each(function(){if(c==="string"){var f,g=0,h=d(this),i=b,j=a.split(k);while(f=j[g++])i=e?i:!h.hasClass(f),h[i?"addClass":"removeClass"](f)}else if(c==="undefined"||c==="boolean")this.className&&d._data(this,"__className__",this.className),this.className=this.className||a===!1?"":d._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ";for(var c=0,d=this.length;c<d;c++)if((" "+this[c].className+" ").replace(j," ").indexOf(b)>-1)return!0;return!1},val:function(a){if(!arguments.length){var c=this[0];if(c){if(d.nodeName(c,"option")){var e=c.attributes.value;return!e||e.specified?c.value:c.text}if(d.nodeName(c,"select")){var f=c.selectedIndex,g=[],h=c.options,i=c.type==="select-one";if(f<0)return null;for(var j=i?f:0,k=i?f+1:h.length;j<k;j++){var m=h[j];if(m.selected&&(d.support.optDisabled?!m.disabled:m.getAttribute("disabled")===null)&&(!m.parentNode.disabled||!d.nodeName(m.parentNode,"optgroup"))){a=d(m).val();if(i)return a;g.push(a)}}if(i&&!g.length&&h.length)return d(h[f]).val();return g}if(q.test(c.type)&&!d.support.checkOn)return c.getAttribute("value")===null?"on":c.value;return(c.value||"").replace(l,"")}return b}var n=d.isFunction(a);return this.each(function(b){var c=d(this),e=a;if(this.nodeType===1){n&&(e=a.call(this,b,c.val())),e==null?e="":typeof e==="number"?e+="":d.isArray(e)&&(e=d.map(e,function(a){return a==null?"":a+""}));if(d.isArray(e)&&q.test(this.type))this.checked=d.inArray(c.val(),e)>=0;else if(d.nodeName(this,"select")){var f=d.makeArray(e);d("option",this).each(function(){this.selected=d.inArray(d(this).val(),f)>=0}),f.length||(this.selectedIndex=-1)}else this.value=e}})}}),d.extend({attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,e,f){if(!a||a.nodeType===3||a.nodeType===8||a.nodeType===2)return b;if(f&&c in d.attrFn)return d(a)[c](e);var g=a.nodeType!==1||!d.isXMLDoc(a),h=e!==b;c=g&&d.props[c]||c;if(a.nodeType===1){var i=m.test(c);if(c==="selected"&&!d.support.optSelected){var j=a.parentNode;j&&(j.selectedIndex,j.parentNode&&j.parentNode.selectedIndex)}if((c in a||a[c]!==b)&&g&&!i){h&&(c==="type"&&n.test(a.nodeName)&&a.parentNode&&d.error("type property can't be changed"),e===null?a.nodeType===1&&a.removeAttribute(c):a[c]=e);if(d.nodeName(a,"form")&&a.getAttributeNode(c))return a.getAttributeNode(c).nodeValue;if(c==="tabIndex"){var k=a.getAttributeNode("tabIndex");return k&&k.specified?k.value:o.test(a.nodeName)||p.test(a.nodeName)&&a.href?0:b}return a[c]}if(!d.support.style&&g&&c==="style"){h&&(a.style.cssText=""+e);return a.style.cssText}h&&a.setAttribute(c,""+e);if(!a.attributes[c]&&(a.hasAttribute&&!a.hasAttribute(c)))return b;var l=!d.support.hrefNormalized&&g&&i?a.getAttribute(c,2):a.getAttribute(c);return l===null?b:l}h&&(a[c]=e);return a[c]}});var r=/\.(.*)$/,s=/^(?:textarea|input|select)$/i,t=/\./g,u=/ /g,v=/[^\w\s.|`]/g,w=function(a){return a.replace(v,"\\$&")};d.event={add:function(c,e,f,g){if(c.nodeType!==3&&c.nodeType!==8){try{d.isWindow(c)&&(c!==a&&!c.frameElement)&&(c=a)}catch(h){}if(f===!1)f=x;else if(!f)return;var i,j;f.handler&&(i=f,f=i.handler),f.guid||(f.guid=d.guid++);var k=d._data(c);if(!k)return;var l=k.events,m=k.handle;l||(k.events=l={}),m||(k.handle=m=function(a){return typeof d!=="undefined"&&d.event.triggered!==a.type?d.event.handle.apply(m.elem,arguments):b}),m.elem=c,e=e.split(" ");var n,o=0,p;while(n=e[o++]){j=i?d.extend({},i):{handler:f,data:g},n.indexOf(".")>-1?(p=n.split("."),n=p.shift(),j.namespace=p.slice(0).sort().join(".")):(p=[],j.namespace=""),j.type=n,j.guid||(j.guid=f.guid);var q=l[n],r=d.event.special[n]||{};if(!q){q=l[n]=[];if(!r.setup||r.setup.call(c,g,p,m)===!1)c.addEventListener?c.addEventListener(n,m,!1):c.attachEvent&&c.attachEvent("on"+n,m)}r.add&&(r.add.call(c,j),j.handler.guid||(j.handler.guid=f.guid)),q.push(j),d.event.global[n]=!0}c=null}},global:{},remove:function(a,c,e,f){if(a.nodeType!==3&&a.nodeType!==8){e===!1&&(e=x);var g,h,i,j,k=0,l,m,n,o,p,q,r,s=d.hasData(a)&&d._data(a),t=s&&s.events;if(!s||!t)return;c&&c.type&&(e=c.handler,c=c.type);if(!c||typeof c==="string"&&c.charAt(0)==="."){c=c||"";for(h in t)d.event.remove(a,h+c);return}c=c.split(" ");while(h=c[k++]){r=h,q=null,l=h.indexOf(".")<0,m=[],l||(m=h.split("."),h=m.shift(),n=new RegExp("(^|\\.)"+d.map(m.slice(0).sort(),w).join("\\.(?:.*\\.)?")+"(\\.|$)")),p=t[h];if(!p)continue;if(!e){for(j=0;j<p.length;j++){q=p[j];if(l||n.test(q.namespace))d.event.remove(a,r,q.handler,j),p.splice(j--,1)}continue}o=d.event.special[h]||{};for(j=f||0;j<p.length;j++){q=p[j];if(e.guid===q.guid){if(l||n.test(q.namespace))f==null&&p.splice(j--,1),o.remove&&o.remove.call(a,q);if(f!=null)break}}if(p.length===0||f!=null&&p.length===1)(!o.teardown||o.teardown.call(a,m)===!1)&&d.removeEvent(a,h,s.handle),g=null,delete t[h]}if(d.isEmptyObject(t)){var u=s.handle;u&&(u.elem=null),delete s.events,delete s.handle,d.isEmptyObject(s)&&d.removeData(a,b,!0)}}},trigger:function(a,c,e){var f=a.type||a,g=arguments[3];if(!g){a=typeof a==="object"?a[d.expando]?a:d.extend(d.Event(f),a):d.Event(f),f.indexOf("!")>=0&&(a.type=f=f.slice(0,-1),a.exclusive=!0),e||(a.stopPropagation(),d.event.global[f]&&d.each(d.cache,function(){var b=d.expando,e=this[b];e&&e.events&&e.events[f]&&d.event.trigger(a,c,e.handle.elem)}));if(!e||e.nodeType===3||e.nodeType===8)return b;a.result=b,a.target=e,c=d.makeArray(c),c.unshift(a)}a.currentTarget=e;var h=d._data(e,"handle");h&&h.apply(e,c);var i=e.parentNode||e.ownerDocument;try{e&&e.nodeName&&d.noData[e.nodeName.toLowerCase()]||e["on"+f]&&e["on"+f].apply(e,c)===!1&&(a.result=!1,a.preventDefault())}catch(j){}if(!a.isPropagationStopped()&&i)d.event.trigger(a,c,i,!0);else if(!a.isDefaultPrevented()){var k,l=a.target,m=f.replace(r,""),n=d.nodeName(l,"a")&&m==="click",o=d.event.special[m]||{};if((!o._default||o._default.call(e,a)===!1)&&!n&&!(l&&l.nodeName&&d.noData[l.nodeName.toLowerCase()])){try{l[m]&&(k=l["on"+m],k&&(l["on"+m]=null),d.event.triggered=a.type,l[m]())}catch(p){}k&&(l["on"+m]=k),d.event.triggered=b}}},handle:function(c){var e,f,g,h,i,j=[],k=d.makeArray(arguments);c=k[0]=d.event.fix(c||a.event),c.currentTarget=this,e=c.type.indexOf(".")<0&&!c.exclusive,e||(g=c.type.split("."),c.type=g.shift(),j=g.slice(0).sort(),h=new RegExp("(^|\\.)"+j.join("\\.(?:.*\\.)?")+"(\\.|$)")),c.namespace=c.namespace||j.join("."),i=d._data(this,"events"),f=(i||{})[c.type];if(i&&f){f=f.slice(0);for(var l=0,m=f.length;l<m;l++){var n=f[l];if(e||h.test(n.namespace)){c.handler=n.handler,c.data=n.data,c.handleObj=n;var o=n.handler.apply(this,k);o!==b&&(c.result=o,o===!1&&(c.preventDefault(),c.stopPropagation()));if(c.isImmediatePropagationStopped())break}}}return c.result},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(a){if(a[d.expando])return a;var e=a;a=d.Event(e);for(var f=this.props.length,g;f;)g=this.props[--f],a[g]=e[g];a.target||(a.target=a.srcElement||c),a.target.nodeType===3&&(a.target=a.target.parentNode),!a.relatedTarget&&a.fromElement&&(a.relatedTarget=a.fromElement===a.target?a.toElement:a.fromElement);if(a.pageX==null&&a.clientX!=null){var h=c.documentElement,i=c.body;a.pageX=a.clientX+(h&&h.scrollLeft||i&&i.scrollLeft||0)-(h&&h.clientLeft||i&&i.clientLeft||0),a.pageY=a.clientY+(h&&h.scrollTop||i&&i.scrollTop||0)-(h&&h.clientTop||i&&i.clientTop||0)}a.which==null&&(a.charCode!=null||a.keyCode!=null)&&(a.which=a.charCode!=null?a.charCode:a.keyCode),!a.metaKey&&a.ctrlKey&&(a.metaKey=a.ctrlKey),!a.which&&a.button!==b&&(a.which=a.button&1?1:a.button&2?3:a.button&4?2:0);return a},guid:1e8,proxy:d.proxy,special:{ready:{setup:d.bindReady,teardown:d.noop},live:{add:function(a){d.event.add(this,H(a.origType,a.selector),d.extend({},a,{handler:G,guid:a.handler.guid}))},remove:function(a){d.event.remove(this,H(a.origType,a.selector),a)}},beforeunload:{setup:function(a,b,c){d.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}}},d.removeEvent=c.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){a.detachEvent&&a.detachEvent("on"+b,c)},d.Event=function(a){if(!this.preventDefault)return new d.Event(a);a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?y:x):this.type=a,this.timeStamp=d.now(),this[d.expando]=!0},d.Event.prototype={preventDefault:function(){this.isDefaultPrevented=y;var a=this.originalEvent;a&&(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){this.isPropagationStopped=y;var a=this.originalEvent;a&&(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=y,this.stopPropagation()},isDefaultPrevented:x,isPropagationStopped:x,isImmediatePropagationStopped:x};var z=function(a){var b=a.relatedTarget;try{if(b&&b!==c&&!b.parentNode)return;while(b&&b!==this)b=b.parentNode;b!==this&&(a.type=a.data,d.event.handle.apply(this,arguments))}catch(e){}},A=function(a){a.type=a.data,d.event.handle.apply(this,arguments)};d.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){d.event.special[a]={setup:function(c){d.event.add(this,b,c&&c.selector?A:z,a)},teardown:function(a){d.event.remove(this,b,a&&a.selector?A:z)}}}),d.support.submitBubbles||(d.event.special.submit={setup:function(a,b){if(this.nodeName&&this.nodeName.toLowerCase()!=="form")d.event.add(this,"click.specialSubmit",function(a){var b=a.target,c=b.type;(c==="submit"||c==="image")&&d(b).closest("form").length&&E("submit",this,arguments)}),d.event.add(this,"keypress.specialSubmit",function(a){var b=a.target,c=b.type;(c==="text"||c==="password")&&d(b).closest("form").length&&a.keyCode===13&&E("submit",this,arguments)});else return!1},teardown:function(a){d.event.remove(this,".specialSubmit")}});if(!d.support.changeBubbles){var B,C=function(a){var b=a.type,c=a.value;b==="radio"||b==="checkbox"?c=a.checked:b==="select-multiple"?c=a.selectedIndex>-1?d.map(a.options,function(a){return a.selected}).join("-"):"":a.nodeName.toLowerCase()==="select"&&(c=a.selectedIndex);return c},D=function D(a){var c=a.target,e,f;if(s.test(c.nodeName)&&!c.readOnly){e=d._data(c,"_change_data"),f=C(c),(a.type!=="focusout"||c.type!=="radio")&&d._data(c,"_change_data",f);if(e===b||f===e)return;if(e!=null||f)a.type="change",a.liveFired=b,d.event.trigger(a,arguments[1],c)}};d.event.special.change={filters:{focusout:D,beforedeactivate:D,click:function(a){var b=a.target,c=b.type;(c==="radio"||c==="checkbox"||b.nodeName.toLowerCase()==="select")&&D.call(this,a)},keydown:function(a){var b=a.target,c=b.type;(a.keyCode===13&&b.nodeName.toLowerCase()!=="textarea"||a.keyCode===32&&(c==="checkbox"||c==="radio")||c==="select-multiple")&&D.call(this,a)},beforeactivate:function(a){var b=a.target;d._data(b,"_change_data",C(b))}},setup:function(a,b){if(this.type==="file")return!1;for(var c in B)d.event.add(this,c+".specialChange",B[c]);return s.test(this.nodeName)},teardown:function(a){d.event.remove(this,".specialChange");return s.test(this.nodeName)}},B=d.event.special.change.filters,B.focus=B.beforeactivate}c.addEventListener&&d.each({focus:"focusin",blur:"focusout"},function(a,b){function f(a){var c=d.event.fix(a);c.type=b,c.originalEvent={},d.event.trigger(c,null,c.target),c.isDefaultPrevented()&&a.preventDefault()}var e=0;d.event.special[b]={setup:function(){e++===0&&c.addEventListener(a,f,!0)},teardown:function(){--e===0&&c.removeEventListener(a,f,!0)}}}),d.each(["bind","one"],function(a,c){d.fn[c]=function(a,e,f){if(typeof a==="object"){for(var g in a)this[c](g,e,a[g],f);return this}if(d.isFunction(e)||e===!1)f=e,e=b;var h=c==="one"?d.proxy(f,function(a){d(this).unbind(a,h);return f.apply(this,arguments)}):f;if(a==="unload"&&c!=="one")this.one(a,e,f);else for(var i=0,j=this.length;i<j;i++)d.event.add(this[i],a,h,e);return this}}),d.fn.extend({unbind:function(a,b){if(typeof a!=="object"||a.preventDefault)for(var e=0,f=this.length;e<f;e++)d.event.remove(this[e],a,b);else for(var c in a)this.unbind(c,a[c]);return this},delegate:function(a,b,c,d){return this.live(b,c,d,a)},undelegate:function(a,b,c){return arguments.length===0?this.unbind("live"):this.die(b,null,c,a)},trigger:function(a,b){return this.each(function(){d.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0]){var c=d.Event(a);c.preventDefault(),c.stopPropagation(),d.event.trigger(c,b,this[0]);return c.result}},toggle:function(a){var b=arguments,c=1;while(c<b.length)d.proxy(a,b[c++]);return this.click(d.proxy(a,function(e){var f=(d._data(this,"lastToggle"+a.guid)||0)%c;d._data(this,"lastToggle"+a.guid,f+1),e.preventDefault();return b[f].apply(this,arguments)||!1}))},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}});var F={focus:"focusin",blur:"focusout",mouseenter:"mouseover",mouseleave:"mouseout"};d.each(["live","die"],function(a,c){d.fn[c]=function(a,e,f,g){var h,i=0,j,k,l,m=g||this.selector,n=g?this:d(this.context);if(typeof a==="object"&&!a.preventDefault){for(var o in a)n[c](o,e,a[o],m);return this}d.isFunction(e)&&(f=e,e=b),a=(a||"").split(" ");while((h=a[i++])!=null){j=r.exec(h),k="",j&&(k=j[0],h=h.replace(r,""));if(h==="hover"){a.push("mouseenter"+k,"mouseleave"+k);continue}l=h,h==="focus"||h==="blur"?(a.push(F[h]+k),h=h+k):h=(F[h]||h)+k;if(c==="live")for(var p=0,q=n.length;p<q;p++)d.event.add(n[p],"live."+H(h,m),{data:e,selector:m,handler:f,origType:h,origHandler:f,preType:l});else n.unbind("live."+H(h,m),f)}return this}}),d.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error".split(" "),function(a,b){d.fn[b]=function(a,c){c==null&&(c=a,a=null);return arguments.length>0?this.bind(b,a,c):this.trigger(b)},d.attrFn&&(d.attrFn[b]=!0)}),function(){function u(a,b,c,d,e,f){for(var g=0,h=d.length;g<h;g++){var i=d[g];if(i){var j=!1;i=i[a];while(i){if(i.sizcache===c){j=d[i.sizset];break}if(i.nodeType===1){f||(i.sizcache=c,i.sizset=g);if(typeof b!=="string"){if(i===b){j=!0;break}}else if(k.filter(b,[i]).length>0){j=i;break}}i=i[a]}d[g]=j}}}function t(a,b,c,d,e,f){for(var g=0,h=d.length;g<h;g++){var i=d[g];if(i){var j=!1;i=i[a];while(i){if(i.sizcache===c){j=d[i.sizset];break}i.nodeType===1&&!f&&(i.sizcache=c,i.sizset=g);if(i.nodeName.toLowerCase()===b){j=i;break}i=i[a]}d[g]=j}}}var a=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,e=0,f=Object.prototype.toString,g=!1,h=!0,i=/\\/g,j=/\W/;[0,0].sort(function(){h=!1;return 0});var k=function(b,d,e,g){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!=="string")return e;var i,j,n,o,q,r,s,t,u=!0,w=k.isXML(d),x=[],y=b;do{a.exec(""),i=a.exec(y);if(i){y=i[3],x.push(i[1]);if(i[2]){o=i[3];break}}}while(i);if(x.length>1&&m.exec(b))if(x.length===2&&l.relative[x[0]])j=v(x[0]+x[1],d);else{j=l.relative[x[0]]?[d]:k(x.shift(),d);while(x.length)b=x.shift(),l.relative[b]&&(b+=x.shift()),j=v(b,j)}else{!g&&x.length>1&&d.nodeType===9&&!w&&l.match.ID.test(x[0])&&!l.match.ID.test(x[x.length-1])&&(q=k.find(x.shift(),d,w),d=q.expr?k.filter(q.expr,q.set)[0]:q.set[0]);if(d){q=g?{expr:x.pop(),set:p(g)}:k.find(x.pop(),x.length===1&&(x[0]==="~"||x[0]==="+")&&d.parentNode?d.parentNode:d,w),j=q.expr?k.filter(q.expr,q.set):q.set,x.length>0?n=p(j):u=!1;while(x.length)r=x.pop(),s=r,l.relative[r]?s=x.pop():r="",s==null&&(s=d),l.relative[r](n,s,w)}else n=x=[]}n||(n=j),n||k.error(r||b);if(f.call(n)==="[object Array]")if(u)if(d&&d.nodeType===1)for(t=0;n[t]!=null;t++)n[t]&&(n[t]===!0||n[t].nodeType===1&&k.contains(d,n[t]))&&e.push(j[t]);else for(t=0;n[t]!=null;t++)n[t]&&n[t].nodeType===1&&e.push(j[t]);else e.push.apply(e,n);else p(n,e);o&&(k(o,h,e,g),k.uniqueSort(e));return e};k.uniqueSort=function(a){if(r){g=h,a.sort(r);if(g)for(var b=1;b<a.length;b++)a[b]===a[b-1]&&a.splice(b--,1)}return a},k.matches=function(a,b){return k(a,null,null,b)},k.matchesSelector=function(a,b){return k(b,null,null,[a]).length>0},k.find=function(a,b,c){var d;if(!a)return[];for(var e=0,f=l.order.length;e<f;e++){var g,h=l.order[e];if(g=l.leftMatch[h].exec(a)){var j=g[1];g.splice(1,1);if(j.substr(j.length-1)!=="\\"){g[1]=(g[1]||"").replace(i,""),d=l.find[h](g,b,c);if(d!=null){a=a.replace(l.match[h],"");break}}}}d||(d=typeof b.getElementsByTagName!=="undefined"?b.getElementsByTagName("*"):[]);return{set:d,expr:a}},k.filter=function(a,c,d,e){var f,g,h=a,i=[],j=c,m=c&&c[0]&&k.isXML(c[0]);while(a&&c.length){for(var n in l.filter)if((f=l.leftMatch[n].exec(a))!=null&&f[2]){var o,p,q=l.filter[n],r=f[1];g=!1,f.splice(1,1);if(r.substr(r.length-1)==="\\")continue;j===i&&(i=[]);if(l.preFilter[n]){f=l.preFilter[n](f,j,d,i,e,m);if(f){if(f===!0)continue}else g=o=!0}if(f)for(var s=0;(p=j[s])!=null;s++)if(p){o=q(p,f,s,j);var t=e^!!o;d&&o!=null?t?g=!0:j[s]=!1:t&&(i.push(p),g=!0)}if(o!==b){d||(j=i),a=a.replace(l.match[n],"");if(!g)return[];break}}if(a===h)if(g==null)k.error(a);else break;h=a}return j},k.error=function(a){throw"Syntax error, unrecognized expression: "+a};var l=k.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(?:(['"])(.*?)\3|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(a){return a.getAttribute("href")},type:function(a){return a.getAttribute("type")}},relative:{"+":function(a,b){var c=typeof b==="string",d=c&&!j.test(b),e=c&&!d;d&&(b=b.toLowerCase());for(var f=0,g=a.length,h;f<g;f++)if(h=a[f]){while((h=h.previousSibling)&&h.nodeType!==1){}a[f]=e||h&&h.nodeName.toLowerCase()===b?h||!1:h===b}e&&k.filter(b,a,!0)},">":function(a,b){var c,d=typeof b==="string",e=0,f=a.length;if(d&&!j.test(b)){b=b.toLowerCase();for(;e<f;e++){c=a[e];if(c){var g=c.parentNode;a[e]=g.nodeName.toLowerCase()===b?g:!1}}}else{for(;e<f;e++)c=a[e],c&&(a[e]=d?c.parentNode:c.parentNode===b);d&&k.filter(b,a,!0)}},"":function(a,b,c){var d,f=e++,g=u;typeof b==="string"&&!j.test(b)&&(b=b.toLowerCase(),d=b,g=t),g("parentNode",b,f,a,d,c)},"~":function(a,b,c){var d,f=e++,g=u;typeof b==="string"&&!j.test(b)&&(b=b.toLowerCase(),d=b,g=t),g("previousSibling",b,f,a,d,c)}},find:{ID:function(a,b,c){if(typeof b.getElementById!=="undefined"&&!c){var d=b.getElementById(a[1]);return d&&d.parentNode?[d]:[]}},NAME:function(a,b){if(typeof b.getElementsByName!=="undefined"){var c=[],d=b.getElementsByName(a[1]);for(var e=0,f=d.length;e<f;e++)d[e].getAttribute("name")===a[1]&&c.push(d[e]);return c.length===0?null:c}},TAG:function(a,b){if(typeof b.getElementsByTagName!=="undefined")return b.getElementsByTagName(a[1])}},preFilter:{CLASS:function(a,b,c,d,e,f){a=" "+a[1].replace(i,"")+" ";if(f)return a;for(var g=0,h;(h=b[g])!=null;g++)h&&(e^(h.className&&(" "+h.className+" ").replace(/[\t\n\r]/g," ").indexOf(a)>=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(i,"")},TAG:function(a,b){return a[1].replace(i,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||k.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&k.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(i,"");!f&&l.attrMap[g]&&(a[1]=l.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(i,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=k(b[3],null,null,c);else{var g=k.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(l.match.POS.test(b[0])||l.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!k(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return"text"===c&&(b===c||b===null)},radio:function(a){return"radio"===a.type},checkbox:function(a){return"checkbox"===a.type},file:function(a){return"file"===a.type},password:function(a){return"password"===a.type},submit:function(a){return"submit"===a.type},image:function(a){return"image"===a.type},reset:function(a){return"reset"===a.type},button:function(a){return"button"===a.type||a.nodeName.toLowerCase()==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return b<c[3]-0},gt:function(a,b,c){return b>c[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=l.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||k.getText([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h<i;h++)if(g[h]===a)return!1;return!0}k.error(e)},CHILD:function(a,b){var c=b[1],d=a;switch(c){case"only":case"first":while(d=d.previousSibling)if(d.nodeType===1)return!1;if(c==="first")return!0;d=a;case"last":while(d=d.nextSibling)if(d.nodeType===1)return!1;return!0;case"nth":var e=b[2],f=b[3];if(e===1&&f===0)return!0;var g=b[0],h=a.parentNode;if(h&&(h.sizcache!==g||!a.nodeIndex)){var i=0;for(d=h.firstChild;d;d=d.nextSibling)d.nodeType===1&&(d.nodeIndex=++i);h.sizcache=g}var j=a.nodeIndex-f;return e===0?j===0:j%e===0&&j/e>=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=l.attrHandle[c]?l.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=l.setFilters[e];if(f)return f(a,c,b,d)}}},m=l.match.POS,n=function(a,b){return"\\"+(b-0+1)};for(var o in l.match)l.match[o]=new RegExp(l.match[o].source+/(?![^\[]*\])(?![^\(]*\))/.source),l.leftMatch[o]=new RegExp(/(^(?:.|\r|\n)*?)/.source+l.match[o].source.replace(/\\(\d+)/g,n));var p=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(q){p=function(a,b){var c=0,d=b||[];if(f.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length==="number")for(var e=a.length;c<e;c++)d.push(a[c]);else for(;a[c];c++)d.push(a[c]);return d}}var r,s;c.documentElement.compareDocumentPosition?r=function(a,b){if(a===b){g=!0;return 0}if(!a.compareDocumentPosition||!b.compareDocumentPosition)return a.compareDocumentPosition?-1:1;return a.compareDocumentPosition(b)&4?-1:1}:(r=function(a,b){var c,d,e=[],f=[],h=a.parentNode,i=b.parentNode,j=h;if(a===b){g=!0;return 0}if(h===i)return s(a,b);if(!h)return-1;if(!i)return 1;while(j)e.unshift(j),j=j.parentNode;j=i;while(j)f.unshift(j),j=j.parentNode;c=e.length,d=f.length;for(var k=0;k<c&&k<d;k++)if(e[k]!==f[k])return s(e[k],f[k]);return k===c?s(a,f[k],-1):s(e[k],b,1)},s=function(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}),k.getText=function(a){var b="",c;for(var d=0;a[d];d++)c=a[d],c.nodeType===3||c.nodeType===4?b+=c.nodeValue:c.nodeType!==8&&(b+=k.getText(c.childNodes));return b},function(){var a=c.createElement("div"),d="script"+(new Date).getTime(),e=c.documentElement;a.innerHTML="<a name='"+d+"'/>",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(l.find.ID=function(a,c,d){if(typeof c.getElementById!=="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!=="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},l.filter.ID=function(a,b){var c=typeof a.getAttributeNode!=="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(l.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!=="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(l.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=k,b=c.createElement("div"),d="__sizzle__";b.innerHTML="<p class='TEST'></p>";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){k=function(b,e,f,g){e=e||c;if(!g&&!k.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return p(e.getElementsByTagName(b),f);if(h[2]&&l.find.CLASS&&e.getElementsByClassName)return p(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return p([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return p([],f);if(i.id===h[3])return p([i],f)}try{return p(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var m=e,n=e.getAttribute("id"),o=n||d,q=e.parentNode,r=/^\s*[+~]/.test(b);n?o=o.replace(/'/g,"\\$&"):e.setAttribute("id",o),r&&q&&(e=e.parentNode);try{if(!r||q)return p(e.querySelectorAll("[id='"+o+"'] "+b),f)}catch(s){}finally{n||m.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)k[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}k.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!k.isXML(a))try{if(e||!l.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return k(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="<div class='test e'></div><div class='test'></div>";if(a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;l.order.splice(1,0,"CLASS"),l.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!=="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?k.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?k.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:k.contains=function(){return!1},k.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var v=function(a,b){var c,d=[],e="",f=b.nodeType?[b]:b;while(c=l.match.PSEUDO.exec(a))e+=c[0],a=a.replace(l.match.PSEUDO,"");a=l.relative[a]?a+"*":a;for(var g=0,h=f.length;g<h;g++)k(a,f[g],d);return k.filter(e,d)};d.find=k,d.expr=k.selectors,d.expr[":"]=d.expr.filters,d.unique=k.uniqueSort,d.text=k.getText,d.isXMLDoc=k.isXML,d.contains=k.contains}();var I=/Until$/,J=/^(?:parents|prevUntil|prevAll)/,K=/,/,L=/^.[^:#\[\.,]*$/,M=Array.prototype.slice,N=d.expr.match.POS,O={children:!0,contents:!0,next:!0,prev:!0};d.fn.extend({find:function(a){var b=this.pushStack("","find",a),c=0;for(var e=0,f=this.length;e<f;e++){c=b.length,d.find(a,this[e],b);if(e>0)for(var g=c;g<b.length;g++)for(var h=0;h<c;h++)if(b[h]===b[g]){b.splice(g--,1);break}}return b},has:function(a){var b=d(a);return this.filter(function(){for(var a=0,c=b.length;a<c;a++)if(d.contains(this,b[a]))return!0})},not:function(a){return this.pushStack(Q(this,a,!1),"not",a)},filter:function(a){return this.pushStack(Q(this,a,!0),"filter",a)},is:function(a){return!!a&&d.filter(a,this).length>0},closest:function(a,b){var c=[],e,f,g=this[0];if(d.isArray(a)){var h,i,j={},k=1;if(g&&a.length){for(e=0,f=a.length;e<f;e++)i=a[e],j[i]||(j[i]=d.expr.match.POS.test(i)?d(i,b||this.context):i);while(g&&g.ownerDocument&&g!==b){for(i in j)h=j[i],(h.jquery?h.index(g)>-1:d(g).is(h))&&c.push({selector:i,elem:g,level:k});g=g.parentNode,k++}}return c}var l=N.test(a)?d(a,b||this.context):null;for(e=0,f=this.length;e<f;e++){g=this[e];while(g){if(l?l.index(g)>-1:d.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b)break}}c=c.length>1?d.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a||typeof a==="string")return d.inArray(this[0],a?d(a):this.parent().children());return d.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a==="string"?d(a,b):d.makeArray(a),e=d.merge(this.get(),c);return this.pushStack(P(c[0])||P(e[0])?e:d.unique(e))},andSelf:function(){return this.add(this.prevObject)}}),d.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return d.dir(a,"parentNode")},parentsUntil:function(a,b,c){return d.dir(a,"parentNode",c)},next:function(a){return d.nth(a,2,"nextSibling")},prev:function(a){return d.nth(a,2,"previousSibling")},nextAll:function(a){return d.dir(a,"nextSibling")},prevAll:function(a){return d.dir(a,"previousSibling")},nextUntil:function(a,b,c){return d.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return d.dir(a,"previousSibling",c)},siblings:function(a){return d.sibling(a.parentNode.firstChild,a)},children:function(a){return d.sibling(a.firstChild)},contents:function(a){return d.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:d.makeArray(a.childNodes)}},function(a,b){d.fn[a]=function(c,e){var f=d.map(this,b,c),g=M.call(arguments);I.test(a)||(e=c),e&&typeof e==="string"&&(f=d.filter(e,f)),f=this.length>1&&!O[a]?d.unique(f):f,(this.length>1||K.test(e))&&J.test(a)&&(f=f.reverse());return this.pushStack(f,a,g.join(","))}}),d.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?d.find.matchesSelector(b[0],a)?[b[0]]:[]:d.find.matches(a,b)},dir:function(a,c,e){var f=[],g=a[c];while(g&&g.nodeType!==9&&(e===b||g.nodeType!==1||!d(g).is(e)))g.nodeType===1&&f.push(g),g=g[c];return f},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var R=/ jQuery\d+="(?:\d+|null)"/g,S=/^\s+/,T=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,U=/<([\w:]+)/,V=/<tbody/i,W=/<|&#?\w+;/,X=/<(?:script|object|embed|option|style)/i,Y=/checked\s*(?:[^=]|=\s*.checked.)/i,Z={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]};Z.optgroup=Z.option,Z.tbody=Z.tfoot=Z.colgroup=Z.caption=Z.thead,Z.th=Z.td,d.support.htmlSerialize||(Z._default=[1,"div<div>","</div>"]),d.fn.extend({text:function(a){if(d.isFunction(a))return this.each(function(b){var c=d(this);c.text(a.call(this,b,c.text()))});if(typeof a!=="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return d.text(this)},wrapAll:function(a){if(d.isFunction(a))return this.each(function(b){d(this).wrapAll(a.call(this,b))});if(this[0]){var b=d(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(d.isFunction(a))return this.each(function(b){d(this).wrapInner(a.call(this,b))});return this.each(function(){var b=d(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){d(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){d.nodeName(this,"body")||d(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=d(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,d(arguments[0]).toArray());return a}},remove:function(a,b){for(var c=0,e;(e=this[c])!=null;c++)if(!a||d.filter(a,[e]).length)!b&&e.nodeType===1&&(d.cleanData(e.getElementsByTagName("*")),d.cleanData([e])),e.parentNode&&e.parentNode.removeChild(e);return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&d.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return d.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(R,""):null;if(typeof a!=="string"||X.test(a)||!d.support.leadingWhitespace&&S.test(a)||Z[(U.exec(a)||["",""])[1].toLowerCase()])d.isFunction(a)?this.each(function(b){var c=d(this);c.html(a.call(this,b,c.html()))}):this.empty().append(a);else{a=a.replace(T,"<$1></$2>");try{for(var c=0,e=this.length;c<e;c++)this[c].nodeType===1&&(d.cleanData(this[c].getElementsByTagName("*")),this[c].innerHTML=a)}catch(f){this.empty().append(a)}}return this},replaceWith:function(a){if(this[0]&&this[0].parentNode){if(d.isFunction(a))return this.each(function(b){var c=d(this),e=c.html();c.replaceWith(a.call(this,b,e))});typeof a!=="string"&&(a=d(a).detach());return this.each(function(){var b=this.nextSibling,c=this.parentNode;d(this).remove(),b?d(b).before(a):d(c).append(a)})}return this.length?this.pushStack(d(d.isFunction(a)?a():a),"replaceWith",a):this},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,e){var f,g,h,i,j=a[0],k=[];if(!d.support.checkClone&&arguments.length===3&&typeof j==="string"&&Y.test(j))return this.each(function(){d(this).domManip(a,c,e,!0)});if(d.isFunction(j))return this.each(function(f){var g=d(this);a[0]=j.call(this,f,c?g.html():b),g.domManip(a,c,e)});if(this[0]){i=j&&j.parentNode,d.support.parentNode&&i&&i.nodeType===11&&i.childNodes.length===this.length?f={fragment:i}:f=d.buildFragment(a,this,k),h=f.fragment,h.childNodes.length===1?g=h=h.firstChild:g=h.firstChild;if(g){c=c&&d.nodeName(g,"tr");for(var l=0,m=this.length,n=m-1;l<m;l++)e.call(c?$(this[l],g):this[l],f.cacheable||m>1&&l<n?d.clone(h,!0,!0):h)}k.length&&d.each(k,bc)}return this}}),d.buildFragment=function(a,b,e){var f,g,h,i=b&&b[0]?b[0].ownerDocument||b[0]:c;a.length===1&&typeof a[0]==="string"&&a[0].length<512&&i===c&&a[0].charAt(0)==="<"&&!X.test(a[0])&&(d.support.checkClone||!Y.test(a[0]))&&(g=!0,h=d.fragments[a[0]],h&&(h!==1&&(f=h))),f||(f=i.createDocumentFragment(),d.clean(a,i,f,e)),g&&(d.fragments[a[0]]=h?f:1);return{fragment:f,cacheable:g}},d.fragments={},d.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){d.fn[a]=function(c){var e=[],f=d(c),g=this.length===1&&this[0].parentNode;if(g&&g.nodeType===11&&g.childNodes.length===1&&f.length===1){f[b](this[0]);return this}for(var h=0,i=f.length;h<i;h++){var j=(h>0?this.clone(!0):this).get();d(f[h])[b](j),e=e.concat(j)}return this.pushStack(e,a,f.selector)}}),d.extend({clone:function(a,b,c){var e=a.cloneNode(!0),f,g,h;if((!d.support.noCloneEvent||!d.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!d.isXMLDoc(a)){ba(a,e),f=bb(a),g=bb(e);for(h=0;f[h];++h)ba(f[h],g[h])}if(b){_(a,e);if(c){f=bb(a),g=bb(e);for(h=0;f[h];++h)_(f[h],g[h])}}return e},clean:function(a,b,e,f){b=b||c,typeof b.createElement==="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var g=[];for(var h=0,i;(i=a[h])!=null;h++){typeof i==="number"&&(i+="");if(!i)continue;if(typeof i!=="string"||W.test(i)){if(typeof i==="string"){i=i.replace(T,"<$1></$2>");var j=(U.exec(i)||["",""])[1].toLowerCase(),k=Z[j]||Z._default,l=k[0],m=b.createElement("div");m.innerHTML=k[1]+i+k[2];while(l--)m=m.lastChild;if(!d.support.tbody){var n=V.test(i),o=j==="table"&&!n?m.firstChild&&m.firstChild.childNodes:k[1]==="<table>"&&!n?m.childNodes:[];for(var p=o.length-1;p>=0;--p)d.nodeName(o[p],"tbody")&&!o[p].childNodes.length&&o[p].parentNode.removeChild(o[p])}!d.support.leadingWhitespace&&S.test(i)&&m.insertBefore(b.createTextNode(S.exec(i)[0]),m.firstChild),i=m.childNodes}}else i=b.createTextNode(i);i.nodeType?g.push(i):g=d.merge(g,i)}if(e)for(h=0;g[h];h++)!f||!d.nodeName(g[h],"script")||g[h].type&&g[h].type.toLowerCase()!=="text/javascript"?(g[h].nodeType===1&&g.splice.apply(g,[h+1,0].concat(d.makeArray(g[h].getElementsByTagName("script")))),e.appendChild(g[h])):f.push(g[h].parentNode?g[h].parentNode.removeChild(g[h]):g[h]);return g},cleanData:function(a){var b,c,e=d.cache,f=d.expando,g=d.event.special,h=d.support.deleteExpando;for(var i=0,j;(j=a[i])!=null;i++){if(j.nodeName&&d.noData[j.nodeName.toLowerCase()])continue;c=j[d.expando];if(c){b=e[c]&&e[c][f];if(b&&b.events){for(var k in b.events)g[k]?d.event.remove(j,k):d.removeEvent(j,k,b.handle);b.handle&&(b.handle.elem=null)}h?delete j[d.expando]:j.removeAttribute&&j.removeAttribute(d.expando),delete e[c]}}}});var bd=/alpha\([^)]*\)/i,be=/opacity=([^)]*)/,bf=/-([a-z])/ig,bg=/([A-Z]|^ms)/g,bh=/^-?\d+(?:px)?$/i,bi=/^-?\d/,bj={position:"absolute",visibility:"hidden",display:"block"},bk=["Left","Right"],bl=["Top","Bottom"],bm,bn,bo,bp=function(a,b){return b.toUpperCase()};d.fn.css=function(a,c){if(arguments.length===2&&c===b)return this;return d.access(this,a,c,!0,function(a,c,e){return e!==b?d.style(a,c,e):d.css(a,c)})},d.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bm(a,"opacity","opacity");return c===""?"1":c}return a.style.opacity}}},cssNumber:{zIndex:!0,fontWeight:!0,opacity:!0,zoom:!0,lineHeight:!0},cssProps:{"float":d.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,e,f){if(a&&a.nodeType!==3&&a.nodeType!==8&&a.style){var g,h=d.camelCase(c),i=a.style,j=d.cssHooks[h];c=d.cssProps[h]||h;if(e===b){if(j&&"get"in j&&(g=j.get(a,!1,f))!==b)return g;return i[c]}if(typeof e==="number"&&isNaN(e)||e==null)return;typeof e==="number"&&!d.cssNumber[h]&&(e+="px");if(!j||!("set"in j)||(e=j.set(a,e))!==b)try{i[c]=e}catch(k){}}},css:function(a,c,e){var f,g=d.camelCase(c),h=d.cssHooks[g];c=d.cssProps[g]||g;if(h&&"get"in h&&(f=h.get(a,!0,e))!==b)return f;if(bm)return bm(a,c,g)},swap:function(a,b,c){var d={};for(var e in b)d[e]=a.style[e],a.style[e]=b[e];c.call(a);for(e in b)a.style[e]=d[e]},camelCase:function(a){return a.replace(bf,bp)}}),d.curCSS=d.css,d.each(["height","width"],function(a,b){d.cssHooks[b]={get:function(a,c,e){var f;if(c){a.offsetWidth!==0?f=bq(a,b,e):d.swap(a,bj,function(){f=bq(a,b,e)});if(f<=0){f=bm(a,b,b),f==="0px"&&bo&&(f=bo(a,b,b));if(f!=null)return f===""||f==="auto"?"0px":f}if(f<0||f==null){f=a.style[b];return f===""||f==="auto"?"0px":f}return typeof f==="string"?f:f+"px"}},set:function(a,b){if(!bh.test(b))return b;b=parseFloat(b);if(b>=0)return b+"px"}}}),d.support.opacity||(d.cssHooks.opacity={get:function(a,b){return be.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style;c.zoom=1;var e=d.isNaN(b)?"":"alpha(opacity="+b*100+")",f=c.filter||"";c.filter=bd.test(f)?f.replace(bd,e):c.filter+" "+e}}),d(function(){d.support.reliableMarginRight||(d.cssHooks.marginRight={get:function(a,b){var c;d.swap(a,{display:"inline-block"},function(){b?c=bm(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(bn=function(a,c,e){var f,g,h;e=e.replace(bg,"-$1").toLowerCase();if(!(g=a.ownerDocument.defaultView))return b;if(h=g.getComputedStyle(a,null))f=h.getPropertyValue(e),f===""&&!d.contains(a.ownerDocument.documentElement,a)&&(f=d.style(a,e));return f}),c.documentElement.currentStyle&&(bo=function(a,b){var c,d=a.currentStyle&&a.currentStyle[b],e=a.runtimeStyle&&a.runtimeStyle[b],f=a.style;!bh.test(d)&&bi.test(d)&&(c=f.left,e&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":d||0,d=f.pixelLeft+"px",f.left=c,e&&(a.runtimeStyle.left=e));return d===""?"auto":d}),bm=bn||bo,d.expr&&d.expr.filters&&(d.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!d.support.reliableHiddenOffsets&&(a.style.display||d.css(a,"display"))==="none"},d.expr.filters.visible=function(a){return!d.expr.filters.hidden(a)});var br=/%20/g,bs=/\[\]$/,bt=/\r?\n/g,bu=/#.*$/,bv=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bw=/^(?:color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bx=/^(?:about|app|app\-storage|.+\-extension|file|widget):$/,by=/^(?:GET|HEAD)$/,bz=/^\/\//,bA=/\?/,bB=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,bC=/^(?:select|textarea)/i,bD=/\s+/,bE=/([?&])_=[^&]*/,bF=/(^|\-)([a-z])/g,bG=function(a,b,c){return b+c.toUpperCase()},bH=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bI=d.fn.load,bJ={},bK={},bL,bM;try{bL=c.location.href}catch(bN){bL=c.createElement("a"),bL.href="",bL=bL.href}bM=bH.exec(bL.toLowerCase())||[],d.fn.extend({load:function(a,c,e){if(typeof a!=="string"&&bI)return bI.apply(this,arguments);if(!this.length)return this;var f=a.indexOf(" ");if(f>=0){var g=a.slice(f,a.length);a=a.slice(0,f)}var h="GET";c&&(d.isFunction(c)?(e=c,c=b):typeof c==="object"&&(c=d.param(c,d.ajaxSettings.traditional),h="POST"));var i=this;d.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?d("<div>").append(c.replace(bB,"")).find(g):c)),e&&i.each(e,[c,b,a])}});return this},serialize:function(){return d.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?d.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bC.test(this.nodeName)||bw.test(this.type))}).map(function(a,b){var c=d(this).val();return c==null?null:d.isArray(c)?d.map(c,function(a,c){return{name:b.name,value:a.replace(bt,"\r\n")}}):{name:b.name,value:c.replace(bt,"\r\n")}}).get()}}),d.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){d.fn[b]=function(a){return this.bind(b,a)}}),d.each(["get","post"],function(a,c){d[c]=function(a,e,f,g){d.isFunction(e)&&(g=g||f,f=e,e=b);return d.ajax({type:c,url:a,data:e,success:f,dataType:g})}}),d.extend({getScript:function(a,c){return d.get(a,b,c,"script")},getJSON:function(a,b,c){return d.get(a,b,c,"json")},ajaxSetup:function(a,b){b?d.extend(!0,a,d.ajaxSettings,b):(b=a,a=d.extend(!0,d.ajaxSettings,b));for(var c in {context:1,url:1})c in b?a[c]=b[c]:c in d.ajaxSettings&&(a[c]=d.ajaxSettings[c]);return a},ajaxSettings:{url:bL,isLocal:bx.test(bM[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":"*/*"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":d.parseJSON,"text xml":d.parseXML}},ajaxPrefilter:bO(bJ),ajaxTransport:bO(bK),ajax:function(a,c){function v(a,c,l,n){if(r!==2){r=2,p&&clearTimeout(p),o=b,m=n||"",u.readyState=a?4:0;var q,t,v,w=l?bR(e,u,l):b,x,y;if(a>=200&&a<300||a===304){if(e.ifModified){if(x=u.getResponseHeader("Last-Modified"))d.lastModified[k]=x;if(y=u.getResponseHeader("Etag"))d.etag[k]=y}if(a===304)c="notmodified",q=!0;else try{t=bS(e,w),c="success",q=!0}catch(z){c="parsererror",v=z}}else{v=c;if(!c||a)c="error",a<0&&(a=0)}u.status=a,u.statusText=c,q?h.resolveWith(f,[t,c,u]):h.rejectWith(f,[u,c,v]),u.statusCode(j),j=b,s&&g.trigger("ajax"+(q?"Success":"Error"),[u,e,q?t:v]),i.resolveWith(f,[u,c]),s&&(g.trigger("ajaxComplete",[u,e]),--d.active||d.event.trigger("ajaxStop"))}}typeof a==="object"&&(c=a,a=b),c=c||{};var e=d.ajaxSetup({},c),f=e.context||e,g=f!==e&&(f.nodeType||f instanceof d)?d(f):d.event,h=d.Deferred(),i=d._Deferred(),j=e.statusCode||{},k,l={},m,n,o,p,q,r=0,s,t,u={readyState:0,setRequestHeader:function(a,b){r||(l[a.toLowerCase().replace(bF,bG)]=b);return this},getAllResponseHeaders:function(){return r===2?m:null},getResponseHeader:function(a){var c;if(r===2){if(!n){n={};while(c=bv.exec(m))n[c[1].toLowerCase()]=c[2]}c=n[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){r||(e.mimeType=a);return this},abort:function(a){a=a||"abort",o&&o.abort(a),v(0,a);return this}};h.promise(u),u.success=u.done,u.error=u.fail,u.complete=i.done,u.statusCode=function(a){if(a){var b;if(r<2)for(b in a)j[b]=[j[b],a[b]];else b=a[u.status],u.then(b,b)}return this},e.url=((a||e.url)+"").replace(bu,"").replace(bz,bM[1]+"//"),e.dataTypes=d.trim(e.dataType||"*").toLowerCase().split(bD),e.crossDomain==null&&(q=bH.exec(e.url.toLowerCase()),e.crossDomain=q&&(q[1]!=bM[1]||q[2]!=bM[2]||(q[3]||(q[1]==="http:"?80:443))!=(bM[3]||(bM[1]==="http:"?80:443)))),e.data&&e.processData&&typeof e.data!=="string"&&(e.data=d.param(e.data,e.traditional)),bP(bJ,e,c,u);if(r===2)return!1;s=e.global,e.type=e.type.toUpperCase(),e.hasContent=!by.test(e.type),s&&d.active++===0&&d.event.trigger("ajaxStart");if(!e.hasContent){e.data&&(e.url+=(bA.test(e.url)?"&":"?")+e.data),k=e.url;if(e.cache===!1){var w=d.now(),x=e.url.replace(bE,"$1_="+w);e.url=x+(x===e.url?(bA.test(e.url)?"&":"?")+"_="+w:"")}}if(e.data&&e.hasContent&&e.contentType!==!1||c.contentType)l["Content-Type"]=e.contentType;e.ifModified&&(k=k||e.url,d.lastModified[k]&&(l["If-Modified-Since"]=d.lastModified[k]),d.etag[k]&&(l["If-None-Match"]=d.etag[k])),l.Accept=e.dataTypes[0]&&e.accepts[e.dataTypes[0]]?e.accepts[e.dataTypes[0]]+(e.dataTypes[0]!=="*"?", */*; q=0.01":""):e.accepts["*"];for(t in e.headers)u.setRequestHeader(t,e.headers[t]);if(e.beforeSend&&(e.beforeSend.call(f,u,e)===!1||r===2)){u.abort();return!1}for(t in {success:1,error:1,complete:1})u[t](e[t]);o=bP(bK,e,c,u);if(o){u.readyState=1,s&&g.trigger("ajaxSend",[u,e]),e.async&&e.timeout>0&&(p=setTimeout(function(){u.abort("timeout")},e.timeout));try{r=1,o.send(l,v)}catch(y){status<2?v(-1,y):d.error(y)}}else v(-1,"No Transport");return u},param:function(a,c){var e=[],f=function(a,b){b=d.isFunction(b)?b():b,e[e.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=d.ajaxSettings.traditional);if(d.isArray(a)||a.jquery&&!d.isPlainObject(a))d.each(a,function(){f(this.name,this.value)});else for(var g in a)bQ(g,a[g],c,f);return e.join("&").replace(br,"+")}}),d.extend({active:0,lastModified:{},etag:{}});var bT=d.now(),bU=/(\=)\?(&|$)|\?\?/i;d.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return d.expando+"_"+bT++}}),d.ajaxPrefilter("json jsonp",function(b,c,e){var f=typeof b.data==="string";if(b.dataTypes[0]==="jsonp"||c.jsonpCallback||c.jsonp!=null||b.jsonp!==!1&&(bU.test(b.url)||f&&bU.test(b.data))){var g,h=b.jsonpCallback=d.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2",m=function(){a[h]=i,g&&d.isFunction(i)&&a[h](g[0])};b.jsonp!==!1&&(j=j.replace(bU,l),b.url===j&&(f&&(k=k.replace(bU,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},e.then(m,m),b.converters["script json"]=function(){g||d.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),d.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){d.globalEval(a);return a}}}),d.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),d.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var bV=d.now(),bW,bX;d.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&bZ()||b$()}:bZ,bX=d.ajaxSettings.xhr(),d.support.ajax=!!bX,d.support.cors=bX&&"withCredentials"in bX,bX=b,d.support.ajax&&d.ajaxTransport(function(a){if(!a.crossDomain||d.support.cors){var c;return{send:function(e,f){var g=a.xhr(),h,i;a.username?g.open(a.type,a.url,a.async,a.username,a.password):g.open(a.type,a.url,a.async);if(a.xhrFields)for(i in a.xhrFields)g[i]=a.xhrFields[i];a.mimeType&&g.overrideMimeType&&g.overrideMimeType(a.mimeType),!a.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(i in e)g.setRequestHeader(i,e[i])}catch(j){}g.send(a.hasContent&&a.data||null),c=function(e,i){var j,k,l,m,n;try{if(c&&(i||g.readyState===4)){c=b,h&&(g.onreadystatechange=d.noop,delete bW[h]);if(i)g.readyState!==4&&g.abort();else{j=g.status,l=g.getAllResponseHeaders(),m={},n=g.responseXML,n&&n.documentElement&&(m.xml=n),m.text=g.responseText;try{k=g.statusText}catch(o){k=""}j||!a.isLocal||a.crossDomain?j===1223&&(j=204):j=m.text?200:404}}}catch(p){i||f(-1,p)}m&&f(j,k,m,l)},a.async&&g.readyState!==4?(bW||(bW={},bY()),h=bV++,g.onreadystatechange=bW[h]=c):c()},abort:function(){c&&c(0,1)}}}});var b_={},ca=/^(?:toggle|show|hide)$/,cb=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,cc,cd=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];d.fn.extend({show:function(a,b,c){var e,f;if(a||a===0)return this.animate(ce("show",3),a,b,c);for(var g=0,h=this.length;g<h;g++)e=this[g],f=e.style.display,!d._data(e,"olddisplay")&&f==="none"&&(f=e.style.display=""),f===""&&d.css(e,"display")==="none"&&d._data(e,"olddisplay",cf(e.nodeName));for(g=0;g<h;g++){e=this[g],f=e.style.display;if(f===""||f==="none")e.style.display=d._data(e,"olddisplay")||""}return this},hide:function(a,b,c){if(a||a===0)return this.animate(ce("hide",3),a,b,c);for(var e=0,f=this.length;e<f;e++){var g=d.css(this[e],"display");g!=="none"&&!d._data(this[e],"olddisplay")&&d._data(this[e],"olddisplay",g)}for(e=0;e<f;e++)this[e].style.display="none";return this},_toggle:d.fn.toggle,toggle:function(a,b,c){var e=typeof a==="boolean";d.isFunction(a)&&d.isFunction(b)?this._toggle.apply(this,arguments):a==null||e?this.each(function(){var b=e?a:d(this).is(":hidden");d(this)[b?"show":"hide"]()}):this.animate(ce("toggle",3),a,b,c);return this},fadeTo:function(a,b,c,d){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,e){var f=d.speed(b,c,e);if(d.isEmptyObject(a))return this.each(f.complete);return this[f.queue===!1?"each":"queue"](function(){var b=d.extend({},f),c,e=this.nodeType===1,g=e&&d(this).is(":hidden"),h=this;for(c in a){var i=d.camelCase(c);c!==i&&(a[i]=a[c],delete a[c],c=i);if(a[c]==="hide"&&g||a[c]==="show"&&!g)return b.complete.call(this);if(e&&(c==="height"||c==="width")){b.overflow=[this.style.overflow,this.style.overflowX,this.style.overflowY];if(d.css(this,"display")==="inline"&&d.css(this,"float")==="none")if(d.support.inlineBlockNeedsLayout){var j=cf(this.nodeName);j==="inline"?this.style.display="inline-block":(this.style.display="inline",this.style.zoom=1)}else this.style.display="inline-block"}d.isArray(a[c])&&((b.specialEasing=b.specialEasing||{})[c]=a[c][1],a[c]=a[c][0])}b.overflow!=null&&(this.style.overflow="hidden"),b.curAnim=d.extend({},a),d.each(a,function(c,e){var f=new d.fx(h,b,c);if(ca.test(e))f[e==="toggle"?g?"show":"hide":e](a);else{var i=cb.exec(e),j=f.cur();if(i){var k=parseFloat(i[2]),l=i[3]||(d.cssNumber[c]?"":"px");l!=="px"&&(d.style(h,c,(k||1)+l),j=(k||1)/f.cur()*j,d.style(h,c,j+l)),i[1]&&(k=(i[1]==="-="?-1:1)*k+j),f.custom(j,k,l)}else f.custom(j,e,"")}});return!0})},stop:function(a,b){var c=d.timers;a&&this.queue([]),this.each(function(){for(var a=c.length-1;a>=0;a--)c[a].elem===this&&(b&&c[a](!0),c.splice(a,1))}),b||this.dequeue();return this}}),d.each({slideDown:ce("show",1),slideUp:ce("hide",1),slideToggle:ce("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){d.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),d.extend({speed:function(a,b,c){var e=a&&typeof a==="object"?d.extend({},a):{complete:c||!c&&b||d.isFunction(a)&&a,duration:a,easing:c&&b||b&&!d.isFunction(b)&&b};e.duration=d.fx.off?0:typeof e.duration==="number"?e.duration:e.duration in d.fx.speeds?d.fx.speeds[e.duration]:d.fx.speeds._default,e.old=e.complete,e.complete=function(){e.queue!==!1&&d(this).dequeue(),d.isFunction(e.old)&&e.old.call(this)};return e},easing:{linear:function(a,b,c,d){return c+d*a},swing:function(a,b,c,d){return(-Math.cos(a*Math.PI)/2+.5)*d+c}},timers:[],fx:function(a,b,c){this.options=b,this.elem=a,this.prop=c,b.orig||(b.orig={})}}),d.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this),(d.fx.step[this.prop]||d.fx.step._default)(this)},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];var a,b=d.css(this.elem,this.prop);return isNaN(a=parseFloat(b))?!b||b==="auto"?0:b:a},custom:function(a,b,c){function g(a){return e.step(a)}var e=this,f=d.fx;this.startTime=d.now(),this.start=a,this.end=b,this.unit=c||this.unit||(d.cssNumber[this.prop]?"":"px"),this.now=this.start,this.pos=this.state=0,g.elem=this.elem,g()&&d.timers.push(g)&&!cc&&(cc=setInterval(f.tick,f.interval))},show:function(){this.options.orig[this.prop]=d.style(this.elem,this.prop),this.options.show=!0,this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur()),d(this.elem).show()},hide:function(){this.options.orig[this.prop]=d.style(this.elem,this.prop),this.options.hide=!0,this.custom(this.cur(),0)},step:function(a){var b=d.now(),c=!0;if(a||b>=this.options.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),this.options.curAnim[this.prop]=!0;for(var e in this.options.curAnim)this.options.curAnim[e]!==!0&&(c=!1);if(c){if(this.options.overflow!=null&&!d.support.shrinkWrapBlocks){var f=this.elem,g=this.options;d.each(["","X","Y"],function(a,b){f.style["overflow"+b]=g.overflow[a]})}this.options.hide&&d(this.elem).hide();if(this.options.hide||this.options.show)for(var h in this.options.curAnim)d.style(this.elem,h,this.options.orig[h]);this.options.complete.call(this.elem)}return!1}var i=b-this.startTime;this.state=i/this.options.duration;var j=this.options.specialEasing&&this.options.specialEasing[this.prop],k=this.options.easing||(d.easing.swing?"swing":"linear");this.pos=d.easing[j||k](this.state,i,0,1,this.options.duration),this.now=this.start+(this.end-this.start)*this.pos,this.update();return!0}},d.extend(d.fx,{tick:function(){var a=d.timers;for(var b=0;b<a.length;b++)a[b]()||a.splice(b--,1);a.length||d.fx.stop()},interval:13,stop:function(){clearInterval(cc),cc=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){d.style(a.elem,"opacity",a.now)},_default:function(a){a.elem.style&&a.elem.style[a.prop]!=null?a.elem.style[a.prop]=(a.prop==="width"||a.prop==="height"?Math.max(0,a.now):a.now)+a.unit:a.elem[a.prop]=a.now}}}),d.expr&&d.expr.filters&&(d.expr.filters.animated=function(a){return d.grep(d.timers,function(b){return a===b.elem}).length});var cg=/^t(?:able|d|h)$/i,ch=/^(?:body|html)$/i;"getBoundingClientRect"in c.documentElement?d.fn.offset=function(a){var b=this[0],c;if(a)return this.each(function(b){d.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return d.offset.bodyOffset(b);try{c=b.getBoundingClientRect()}catch(e){}var f=b.ownerDocument,g=f.documentElement;if(!c||!d.contains(g,b))return c?{top:c.top,left:c.left}:{top:0,left:0};var h=f.body,i=ci(f),j=g.clientTop||h.clientTop||0,k=g.clientLeft||h.clientLeft||0,l=i.pageYOffset||d.support.boxModel&&g.scrollTop||h.scrollTop,m=i.pageXOffset||d.support.boxModel&&g.scrollLeft||h.scrollLeft,n=c.top+l-j,o=c.left+m-k;return{top:n,left:o}}:d.fn.offset=function(a){var b=this[0];if(a)return this.each(function(b){d.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return d.offset.bodyOffset(b);d.offset.initialize();var c,e=b.offsetParent,f=b,g=b.ownerDocument,h=g.documentElement,i=g.body,j=g.defaultView,k=j?j.getComputedStyle(b,null):b.currentStyle,l=b.offsetTop,m=b.offsetLeft;while((b=b.parentNode)&&b!==i&&b!==h){if(d.offset.supportsFixedPosition&&k.position==="fixed")break;c=j?j.getComputedStyle(b,null):b.currentStyle,l-=b.scrollTop,m-=b.scrollLeft,b===e&&(l+=b.offsetTop,m+=b.offsetLeft,d.offset.doesNotAddBorder&&(!d.offset.doesAddBorderForTableAndCells||!cg.test(b.nodeName))&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),f=e,e=b.offsetParent),d.offset.subtractsBorderForOverflowNotVisible&&c.overflow!=="visible"&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),k=c}if(k.position==="relative"||k.position==="static")l+=i.offsetTop,m+=i.offsetLeft;d.offset.supportsFixedPosition&&k.position==="fixed"&&(l+=Math.max(h.scrollTop,i.scrollTop),m+=Math.max(h.scrollLeft,i.scrollLeft));return{top:l,left:m}},d.offset={initialize:function(){var a=c.body,b=c.createElement("div"),e,f,g,h,i=parseFloat(d.css(a,"marginTop"))||0,j="<div style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;'><div></div></div><table style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;' cellpadding='0' cellspacing='0'><tr><td></td></tr></table>";d.extend(b.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"}),b.innerHTML=j,a.insertBefore(b,a.firstChild),e=b.firstChild,f=e.firstChild,h=e.nextSibling.firstChild.firstChild,this.doesNotAddBorder=f.offsetTop!==5,this.doesAddBorderForTableAndCells=h.offsetTop===5,f.style.position="fixed",f.style.top="20px",this.supportsFixedPosition=f.offsetTop===20||f.offsetTop===15,f.style.position=f.style.top="",e.style.overflow="hidden",e.style.position="relative",this.subtractsBorderForOverflowNotVisible=f.offsetTop===-5,this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==i,a.removeChild(b),d.offset.initialize=d.noop},bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;d.offset.initialize(),d.offset.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(d.css(a,"marginTop"))||0,c+=parseFloat(d.css(a,"marginLeft"))||0);return{top:b,left:c}},setOffset:function(a,b,c){var e=d.css(a,"position");e==="static"&&(a.style.position="relative");var f=d(a),g=f.offset(),h=d.css(a,"top"),i=d.css(a,"left"),j=(e==="absolute"||e==="fixed")&&d.inArray("auto",[h,i])>-1,k={},l={},m,n;j&&(l=f.position()),m=j?l.top:parseInt(h,10)||0,n=j?l.left:parseInt(i,10)||0,d.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):f.css(k)}},d.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),e=ch.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(d.css(a,"marginTop"))||0,c.left-=parseFloat(d.css(a,"marginLeft"))||0,e.top+=parseFloat(d.css(b[0],"borderTopWidth"))||0,e.left+=parseFloat(d.css(b[0],"borderLeftWidth"))||0;return{top:c.top-e.top,left:c.left-e.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&(!ch.test(a.nodeName)&&d.css(a,"position")==="static"))a=a.offsetParent;return a})}}),d.each(["Left","Top"],function(a,c){var e="scroll"+c;d.fn[e]=function(c){var f=this[0],g;if(!f)return null;if(c!==b)return this.each(function(){g=ci(this),g?g.scrollTo(a?d(g).scrollLeft():c,a?c:d(g).scrollTop()):this[e]=c});g=ci(f);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:d.support.boxModel&&g.document.documentElement[e]||g.document.body[e]:f[e]}}),d.each(["Height","Width"],function(a,c){var e=c.toLowerCase();d.fn["inner"+c]=function(){return this[0]?parseFloat(d.css(this[0],e,"padding")):null},d.fn["outer"+c]=function(a){return this[0]?parseFloat(d.css(this[0],e,a?"margin":"border")):null},d.fn[e]=function(a){var f=this[0];if(!f)return a==null?null:this;if(d.isFunction(a))return this.each(function(b){var c=d(this);c[e](a.call(this,b,c[e]()))});if(d.isWindow(f)){var g=f.document.documentElement["client"+c];return f.document.compatMode==="CSS1Compat"&&g||f.document.body["client"+c]||g}if(f.nodeType===9)return Math.max(f.documentElement["client"+c],f.body["scroll"+c],f.documentElement["scroll"+c],f.body["offset"+c],f.documentElement["offset"+c]);if(a===b){var h=d.css(f,e),i=parseFloat(h);return d.isNaN(i)?h:i}return this.css(e,typeof a==="string"?a:a+"px")}}),a.jQuery=a.$=d})(window);   0707010000019A000081A40000000000000000000000015ECE244400000901000000000000000000000000000000000000002500000000cobbler-3.1.2/web/static/jsGrowl.css   
.jsgrowl_msg_container{
  font-family: Arial, Helvetica, sans-serif;
  position:fixed;
  z-index: 1000000;
  opacity: .75;
  /*filter: alpha(opacity = 75);*/
  border-collapse:collapse;
  width: 450px;
  text-align:left;
}
.jsgrowl_msg_container .jsg_body{
  background-color:white;
  width:380px;
}
.jsgrowl_msg_container .jsg_body_container{
  position:relative;
  min-height:30px;
}
.jsgrowl_msg_container .jsg_clickable{
  cursor:pointer;
}
.jsgrowl_msg_container .jsg_close{
  position:absolute;
  right:0;
  top:0;
  cursor:pointer;
  display:block;
  background-image: none ;
  background-color: transparent ;
  background-repeat: no-repeat;
  height:22px;
  width:22px;
}
.jsgrowl_msg_container .jsg_icon{
  float:left;
  padding:0 10px 0 0 ;
  height: 32px;
}
.jsgrowl_msg_container .jsg_title{
  font-weight:bold;
  color:#000;
  font-size:14px;
  margin:0 0 10px 0;
  word-spacing: 3px;
  border-bottom:1px #000 solid;
}
.jsgrowl_msg_container .jsg_msg{
  font-weight:bold;
  color:#000;
  margin: 0 20px 0 0;
  font-size:12px;
  word-spacing: 3px;
}
.jsgrowl_msg_container .jsg_side{
  background-color:white;
  width:10px;
}
.jsgrowl_msg_container .jsg_middle{
  background-color:white;
  width:380px;
}
.jsgrowl_msg_container .jsg_corner {
  height:10px;
  width:10px;
  background-color: transparent ;
  background-repeat: no-repeat;
  background-image:url(/cobbler_webui_content/jsgrowl_corners.png) ;
}
.jsgrowl_msg_container .jsg_tl{
  background-position: top left;
}
.jsgrowl_msg_container .jsg_tr{
  background-position: top right;
}
.jsgrowl_msg_container .jsg_bl{
  background-position: bottom left;
}
.jsgrowl_msg_container .jsg_br{
  background-position: bottom right;
}
.jsgrowl_msg_container .jsg_mr{
  background-position: top right;
}
.jsgrowl_msg_container .jsg_mb{
  background-position: bottom right;
}
 
.jsgrowl_msg_container:hover .jsg_corner {
  background-image:url(/cobbler_webui_content/jsgrowl_corners_hover.png) ;
}
.jsgrowl_msg_container:hover .jsg_middle {
  background-image:url(/cobbler_webui_content/jsgrowl_middle_hover.png) ;
}
.jsgrowl_msg_container:hover .jsg_side {
  background-image:url(/cobbler_webui_content/jsgrowl_side_hover.png) ;
}
.jsgrowl_msg_container:hover .jsg_close{
  background-image: url(/cobbler_webui_content/jsgrowl_close.png);
}
 
   0707010000019B000081A40000000000000000000000015ECE244400001C6A000000000000000000000000000000000000002400000000cobbler-3.1.2/web/static/jsGrowl.js   /*  jsGrowl - JavaScript Messaging System, version 1.6.0.3
 *  (c) 2009 Rodrigo DeJuana
 *
 *  jsGrowl is freely distributable under the terms of the BSD license.
 *
 *--------------------------------------------------------------------------*/

function jsGrowlMsg(msg, id) {
  this.initialize(msg, id);
}
//var jsGrowlMsg = Class.create();
jsGrowlMsg.prototype = {
  timeout: 5000,
  hover_timeout: 2000,
  id: null,
  title: null,
  msg: null,
  top: -1000,
  right: -1000,
  element: null,
  timeout_id: 0,
  icon_src: null,
  click_callback: null,
  close_callback: null,
  initialize: function(msg, id){
    this.msg = msg.msg;
    this.title = msg.title;
    this.icon_src = msg.icon;
    this.click_callback = msg.click_callback;
    this.close_callback = msg.close_callback;
    this.sticky = msg.sticky;
    this.id = id;
  },
  html: function(jsg){
    var icon_html = this.icon_src ? '<img src="'+this.icon_src+'" class="jsg_icon">' : '';
    var click_html = this.click_callback ? ' onclick="'+jsg+'.clickMsg('+this.id+');" ' : '';
    var click_css = this.click_callback ? ' class="jsg_clickable" ' : '';
    var title_html = this.title ? '<div class="jsg_title">'+this.title+'</div>' : '';
    return '<table id="growl_flash_msg_'+this.id+'" class="jsgrowl_msg_container"'+
      ' onmouseover="'+jsg+'.overMsg('+this.id+');"'+
      ' onmouseout="'+jsg+'.outMsg('+this.id+');"'+ click_html +
      ' style="right:'+this.right+'px;top:'+this.top+'px;"><tbody '+click_css+'>' +
      '<tr><td class="jsg_corner jsg_tl"></td><td class="jsg_middle"></td><td class="jsg_corner jsg_tr"></td></tr>'+
      '<tr><td class="jsg_side jsg_ml"></td><td class="jsg_body"><div class="jsg_body_container">'+
        '<div id="growl_flash_close_icon_'+this.id+'" title="Close Message" class="jsg_close" '+
        ' onclick="'+jsg+'.closeMsg('+this.id+')"></div>'+
        title_html + icon_html + 
        '<div class="jsg_msg">'+this.msg+'</div>'+
      '</div></td><td class="jsg_side jsg_mr"></tr>'+
      '<tr><td class="jsg_corner jsg_bl"></td><td class="jsg_middle jsg_mb"></td><td class="jsg_corner jsg_br"></td></tr>'+
      '</tbody></table>';
  },
  setElement: function(){
    if (!(this.element)){
      this.element =  document.getElementById('growl_flash_msg_' + this.id);
      if (!(this.element)){
        return false;
      }
    }
    return true;
  },
  height: function(){
    if (this.setElement()){
      return this.element.offsetHeight;
    }else{
      return 75;
    }
  },
  show: function(){
    if (this.setElement()){
      this.element.show();
    }
  },
  hide: function(){
    if (this.setElement()){
      this.element.style.display = 'none';//hide();
    }
  },
  appear: function(){
    jsGrowlInterface.appear(this.element);
  },
  fade: function(jsg,timeout){
    if ( this.sticky ){
      return;
    }
    timeout = timeout > 0 ? timeout : this.timeout;
    var e = this.element;
    var id = this.id;
    var f = function(){
      jsGrowlInterface.fadeAndRemove(e,jsg,id);
    };
    this.timeout_id = setTimeout(f,timeout);
  },
  removeMsg: function(){
    jsGrowlInterface.remove(this.element);
    if ( this.close_callback ){
      this.close_callback();
    }
  },
  onOver: function(){
    clearTimeout(this.timeout_id);
  },
  onOut: function(jsg){
    this.fade(jsg,this.hover_timeout);
  },
  setTop: function(top){
    this.top = top;
    this.element.style.top = top+'px';
  },
  setRight: function(right){
    this.right = right;
    this.element.style.right = right+'px';
  },
  click:function(){
    this.click_callback();
  }
};

function jsGrowl(name,opts) {
  this.initialize(name,opts);
}
//var jsGrowl = Class.create();
jsGrowl.prototype = {
  start_top: 10,
  start_right: 10,
  gap: 10,
  table_width: 300,
  top: 0,
  right: 10,
  width: 0,
  height: 0,
  msg_id: 0,
  messages: {},
  order: [],
  queue: [],
  loaded: false,
  showing: false,
  name: '',
  msg_container: '',
  initialize: function(name,opts){
    opts = opts ? opts : {};
    if ( name ){
      this.name = name;
    }else{
      alert('The variable name is required.  I need this for when I write out the message, the message message can fire the correct events.');
    }
    this.msg_container = opts.msg_container ? opts.msg_container : 'jsGrowl';
    var jsg = this;
    jsGrowlInterface.onload(jsg);
  },
  onload: function(){
    this.msg_container =  document.getElementById(this.msg_container);
    if ( !this.msg_container ){
      //alert('I need a div on your page with the id "jsGrowl" or I will not work.');
    }
    this.loaded = true;
    this.height = (typeof window.innerHeight != 'undefined' ? window.innerHeight : document.documentElement.clientHeight);
    this.width = (typeof window.innerWidth != 'undefined' ? window.innerWidth : document.documentElement.clientWidth);
    this.showMessage();
  },
  addMessage: function(msg) {
    this.queue.push(msg);
    if ( this.loaded && !this.showing ){
      this.showMessage();
    }
  },
  showMessage: function(){
    if ( !this.loaded ){
      return;
    }
    this.showing = true;
    var msg = this.queue.shift();
    if (!msg){
      this.showing = false;
      return;
    }
    var jsg_msg = new jsGrowlMsg(msg, this.msg_id++);
    var jsg = this;

    //this.msg_container.insert(jsg_msg.html(jsg.name));
    jsGrowlInterface.insert(this.msg_container, jsg_msg.html(jsg.name))
    jsg_msg.setElement();
    var insert = this.setLocation(jsg_msg);

    jsg_msg.appear();
    jsg_msg.fade(jsg);

    this.messages[jsg_msg.id] = jsg_msg ;
    if (insert){
      this.order.unshift( jsg_msg.id );
    }else{
      this.order.push( jsg_msg.id );
    }

    var f = function(){ jsg.showMessage(); };
    setTimeout(f,250);
  },
  setLocation: function(msg){
    var insert = this.insertMessage(msg);
    var top = 0;
    var right = 0;
    if (insert){
      top = this.gap;
      right = this.gap;
    }else{
      top = this.top + this.gap;
      right = this.right;
      if (top+msg.height() > this.height){
        right = right + this.table_width + this.gap;
        top = this.gap;
      }
    }

    this.top = top + msg.height();
    this.right = right;

    msg.hide();
    msg.setTop(top);
    msg.setRight(right);
    return insert;
  },
  insertMessage: function(msg){
    for( var i = 0, l = this.order.length; i < l; i++){
      var old_msg = this.messages[this.order[i]];
      if (old_msg){
        return (msg.height()+this.gap) < old_msg.top;
      }
    }
    this.top = 0;
    this.right = 10;
    return false;
  },
  removeMsg: function(id){
    var order = this.order;
    delete this.messages[id];
    var i,l;
    for( i = 0,l = order.length; i < l; i++){
      if (order[i] == id){
        break;
      }
    }
    order.splice(i,1);
    this.order = order;
  },
  overMsg: function(id){
    if (this.messages[id]){
      this.messages[id].onOver();
    }
  },
  outMsg: function(id){
    var jsg = this;
    if (jsg.messages[id]){
      jsg.messages[id].onOut(jsg);
    }
  },
  closeMsg: function(id){
    var jsg = this;
    if (jsg.messages[id]){
      jsg.messages[id].removeMsg();
      jsg.removeMsg(id);
    }
  },
  clickMsg: function(id){
    var jsg = this;
    if (jsg.messages[id]){
      jsg.messages[id].click();
    }
  }
};
  0707010000019C000081A40000000000000000000000015ECE244400000277000000000000000000000000000000000000002B00000000cobbler-3.1.2/web/static/jsGrowl_jquery.js    /* jsGrowl jQuery Interface */

var jsGrowlInterface = {
  onload: function(jsg){
    $(window).load( function() {
      jsg.onload();
    });
  },
  insert: function(element,html){
    $(element).append(html);
  },
  fade:function(element,after_finish){
    $("#"+element.id).fadeOut(1000,after_finish);
  },
  appear: function(element){
    $("#"+element.id).fadeIn(250);
  },
  remove: function(element){
     $("#"+element.id).remove();
  },
  fadeAndRemove: function(element,jsg,id){
    var f = function(){
      jsGrowlInterface.remove(element);
      jsg.removeMsg(id);
    };
    jsGrowlInterface.fade(element, f);
  }

}; 0707010000019D000081A40000000000000000000000015ECE244400000F5C000000000000000000000000000000000000002B00000000cobbler-3.1.2/web/static/jsgrowl_close.png    PNG

   IHDR         Ĵl;   	pHYs       
OiCCPPhotoshop ICC profile  xڝSgTS=BKKoR RB&*!	J!QEEȠQ,
!{kּ>H3Q5B.@
$p d!s# ~<<+" x M0B\t8K @zB @F&S  `cb P- `' { [!  eD h; VE X0 fK9 - 0IWfH    0Q) { `##x  FW<+*  x<$9E[-qWW.(I+6aa@.y24  x6_-"bbϫp@  t~,/;m%h^uf@ Wp~<<EJB[aW}g_Wl~<$2]GLϒ	bG"IbX*QqD2"B)%d,>5 j>{-]cK'Xt  o(hw?G% fIq  ^D$.Tʳ?  D*A,`6B$BB
dr`)B(Ͱ*`/@4Qhp.U=pa(	Aa!ڈbX#!H$ ɈQ"K5H1RT UH=r9\F; 2G1Q=C7Fdt1r=6Ыhڏ>C03l0.B8,	c˱"VcϱwE	6wB aAHXLXNH $4	7	Q'"K&b21XH,#/{C7$C2'ITFnR#,4H#dk9, +ȅ3![
b@qS(RjJ4e2AURݨT5ZBRQ4u9̓IKhhitݕNWGwǈg(gwLӋT071oUX**|
J&*/TުUUT^S}FU3S	ԖUPSSg;goT?~YYLOCQ_ cx,!ku5&|v*=9C3J3WRf?qtN	(~))4L1e\kXHQG6EYAJ'\'GgSSݧ
M=:.kDwn^Loy}/TmGX$<5qo</QC]@Caaᄑ<FFi\$mmƣ&&!&KMMRM);L;L֙͢5=12כ߷`ZxZ,eIZYnZ9YXUZ]F%ֻNNgðɶۮm}agbgŮ}}=Z~sr:V:ޚΜ?}/gX3)iSGggs󈋉K.>.ȽJtq]zۯ6iܟ4)Y3sCQ?0k߬~OCOg#/c/Wװwa>>r><72Y_7ȷOo_C#dz %gA[z|!?:eAAA!h쐭!ΑiP~aa~'W?pX15wCsDDDޛg1O9-J5*>.j<74?.fYXXIlK9.*6nl{/]py.,:@LN8A*%w%
yg"/6шC\*NH*Mz쑼5y$3,幄'LLݛ:v m2=:1qB!Mggfvˬen/kY-
BTZ(*geWf͉9+̳ې7ᒶKW-X潬j9<qy
+V<*mOW~&zMk^ʂkU
}]OX/Yߵa>(xoʿܔĹdff-[nڴVE/(ۻC<e;?TTTT6ݵan{4[>ɾUUMfeI?m]Nmq#׹=TR+Gw-6U#pDy	:v{vg/jBFS[b[O>zG4<YyJTiӓgό}~.`ۢ{cjotE;;\tWW:_mt<Oǻ\kz{f7y՞9=ݽzo~r'˻w'O_@AC݇?[jwGCˆ8>99?rCd&ˮ/~јѡ򗓿m|x31^VwwO| (hSЧc3-    cHRM  z%        u0  `  :  o_F  IDATxڄ}lSe-mu. 9`i1BҁY X$i ΰ
!f̄a5)#M(N'ttJn/yr7yޛ#1 a8Ol/6̙_+)<̒,ˁ	<MK\ضJrJJp$f~<H нZM]px,bQ:mmmKHHH0/>xSxSy3g3+'6  Y)??N'8i	 MR,̜s=fNa-z	 fr#q\d4	 ik?x<<vGǂ&@k׮}p8v `xe13 }ܙf6QVVMPXXܺu	 A:`^f2}t.'MRWRff܋zz @__RxO?]x2 9VZ|FVV***hpB @{Gp8pb !`3NSxO\q@nnn\Wj7(ݾܺɄN `Yr%4~J$hKLL=D#ζyyyB V+WV̛7QFeEQ,7p8j ^zF^eRRYGe)=ztZZZFF ny&^Zߏ!`G|.1n; 'nSOO1''G^-[%@Y"#= 8vXUZVTUUa
Z;w>g&طo RwR0`prڽ{7A
B	pS	hib@{
N dنq?_ z1e)f6
 [KB<عs'TWq@.]!xP} "`Tf?@ H7Gt\Yq:"Ff̩`i<(-(h@)TUUE^/xah|@Bś?d3'T tHNNhhi{>  =۶]j!),1 <Gٳ+/:+qg.I}ܔfucC8 zp`    IENDB`0707010000019E000081A40000000000000000000000015ECE244400000BE4000000000000000000000000000000000000002D00000000cobbler-3.1.2/web/static/jsgrowl_corners.png  PNG

   IHDR         ;0   	pHYs       
OiCCPPhotoshop ICC profile  xڝSgTS=BKKoR RB&*!	J!QEEȠQ,
!{kּ>H3Q5B.@
$p d!s# ~<<+" x M0B\t8K @zB @F&S  `cb P- `' { [!  eD h; VE X0 fK9 - 0IWfH    0Q) { `##x  FW<+*  x<$9E[-qWW.(I+6aa@.y24  x6_-"bbϫp@  t~,/;m%h^uf@ Wp~<<EJB[aW}g_Wl~<$2]GLϒ	bG"IbX*QqD2"B)%d,>5 j>{-]cK'Xt  o(hw?G% fIq  ^D$.Tʳ?  D*A,`6B$BB
dr`)B(Ͱ*`/@4Qhp.U=pa(	Aa!ڈbX#!H$ ɈQ"K5H1RT UH=r9\F; 2G1Q=C7Fdt1r=6Ыhڏ>C03l0.B8,	c˱"VcϱwE	6wB aAHXLXNH $4	7	Q'"K&b21XH,#/{C7$C2'ITFnR#,4H#dk9, +ȅ3![
b@qS(RjJ4e2AURݨT5ZBRQ4u9̓IKhhitݕNWGwǈg(gwLӋT071oUX**|
J&*/TުUUT^S}FU3S	ԖUPSSg;goT?~YYLOCQ_ cx,!ku5&|v*=9C3J3WRf?qtN	(~))4L1e\kXHQG6EYAJ'\'GgSSݧ
M=:.kDwn^Loy}/TmGX$<5qo</QC]@Caaᄑ<FFi\$mmƣ&&!&KMMRM);L;L֙͢5=12כ߷`ZxZ,eIZYnZ9YXUZ]F%ֻNNgðɶۮm}agbgŮ}}=Z~sr:V:ޚΜ?}/gX3)iSGggs󈋉K.>.ȽJtq]zۯ6iܟ4)Y3sCQ?0k߬~OCOg#/c/Wװwa>>r><72Y_7ȷOo_C#dz %gA[z|!?:eAAA!h쐭!ΑiP~aa~'W?pX15wCsDDDޛg1O9-J5*>.j<74?.fYXXIlK9.*6nl{/]py.,:@LN8A*%w%
yg"/6шC\*NH*Mz쑼5y$3,幄'LLݛ:v m2=:1qB!Mggfvˬen/kY-
BTZ(*geWf͉9+̳ې7ᒶKW-X潬j9<qy
+V<*mOW~&zMk^ʂkU
}]OX/Yߵa>(xoʿܔĹdff-[nڴVE/(ۻC<e;?TTTT6ݵan{4[>ɾUUMfeI?m]Nmq#׹=TR+Gw-6U#pDy	:v{vg/jBFS[b[O>zG4<YyJTiӓgό}~.`ۢ{cjotE;;\tWW:_mt<Oǻ\kz{f7y՞9=ݽzo~r'˻w'O_@AC݇?[jwGCˆ8>99?rCd&ˮ/~јѡ򗓿m|x31^VwwO| (hSЧc3-    cHRM  z%        u0  `  :  o_F  IDATxfQ{n ݆D)YB)!]O0̃B"!.BeKΘTE^b>,r]$@\c\?|K`<3UT?}Ix[I[nj.(I8I'pFJ
WNpX\:N܉;q?#x7x ~@A{`A<>ϖB
<Po{m afM:t/hAXdWh=vcѷG =Ӧ= E!lb    IENDB`0707010000019F000081A40000000000000000000000015ECE244400000C76000000000000000000000000000000000000003300000000cobbler-3.1.2/web/static/jsgrowl_corners_hover.png    PNG

   IHDR         ;0   	pHYs       
OiCCPPhotoshop ICC profile  xڝSgTS=BKKoR RB&*!	J!QEEȠQ,
!{kּ>H3Q5B.@
$p d!s# ~<<+" x M0B\t8K @zB @F&S  `cb P- `' { [!  eD h; VE X0 fK9 - 0IWfH    0Q) { `##x  FW<+*  x<$9E[-qWW.(I+6aa@.y24  x6_-"bbϫp@  t~,/;m%h^uf@ Wp~<<EJB[aW}g_Wl~<$2]GLϒ	bG"IbX*QqD2"B)%d,>5 j>{-]cK'Xt  o(hw?G% fIq  ^D$.Tʳ?  D*A,`6B$BB
dr`)B(Ͱ*`/@4Qhp.U=pa(	Aa!ڈbX#!H$ ɈQ"K5H1RT UH=r9\F; 2G1Q=C7Fdt1r=6Ыhڏ>C03l0.B8,	c˱"VcϱwE	6wB aAHXLXNH $4	7	Q'"K&b21XH,#/{C7$C2'ITFnR#,4H#dk9, +ȅ3![
b@qS(RjJ4e2AURݨT5ZBRQ4u9̓IKhhitݕNWGwǈg(gwLӋT071oUX**|
J&*/TުUUT^S}FU3S	ԖUPSSg;goT?~YYLOCQ_ cx,!ku5&|v*=9C3J3WRf?qtN	(~))4L1e\kXHQG6EYAJ'\'GgSSݧ
M=:.kDwn^Loy}/TmGX$<5qo</QC]@Caaᄑ<FFi\$mmƣ&&!&KMMRM);L;L֙͢5=12כ߷`ZxZ,eIZYnZ9YXUZ]F%ֻNNgðɶۮm}agbgŮ}}=Z~sr:V:ޚΜ?}/gX3)iSGggs󈋉K.>.ȽJtq]zۯ6iܟ4)Y3sCQ?0k߬~OCOg#/c/Wװwa>>r><72Y_7ȷOo_C#dz %gA[z|!?:eAAA!h쐭!ΑiP~aa~'W?pX15wCsDDDޛg1O9-J5*>.j<74?.fYXXIlK9.*6nl{/]py.,:@LN8A*%w%
yg"/6шC\*NH*Mz쑼5y$3,幄'LLݛ:v m2=:1qB!Mggfvˬen/kY-
BTZ(*geWf͉9+̳ې7ᒶKW-X潬j9<qy
+V<*mOW~&zMk^ʂkU
}]OX/Yߵa>(xoʿܔĹdff-[nڴVE/(ۻC<e;?TTTT6ݵan{4[>ɾUUMfeI?m]Nmq#׹=TR+Gw-6U#pDy	:v{vg/jBFS[b[O>zG4<YyJTiӓgό}~.`ۢ{cjotE;;\tWW:_mt<Oǻ\kz{f7y՞9=ݽzo~r'˻w'O_@AC݇?[jwGCˆ8>99?rCd&ˮ/~јѡ򗓿m|x31^VwwO| (hSЧc3-    cHRM  z%        u0  `  :  o_F  IDATxAJ@^d@pJ9P(nr`oMJVxbM ͌LKf?<x0?@
޳5F|pl~)6cfSEi*m1JT(0mp	̓J)XNUǢpff})BRQNpL3q]KZAb\LS\b\dY,L@'uyN;nxxr` ?|cpUUaM+<ϝۭI߇zv^V&͇3rtj<mGD)%eY-Ҷ>/87{ɤ_mo$9$ɾ}#:`k]{9I8a.;GCxoa)ktm !ڥ^"    IENDB`  070701000001A0000081A40000000000000000000000015ECE244400000DF5000000000000000000000000000000000000003200000000cobbler-3.1.2/web/static/jsgrowl_middle_hover.png PNG

   IHDR         K   	pHYs       
OiCCPPhotoshop ICC profile  xڝSgTS=BKKoR RB&*!	J!QEEȠQ,
!{kּ>H3Q5B.@
$p d!s# ~<<+" x M0B\t8K @zB @F&S  `cb P- `' { [!  eD h; VE X0 fK9 - 0IWfH    0Q) { `##x  FW<+*  x<$9E[-qWW.(I+6aa@.y24  x6_-"bbϫp@  t~,/;m%h^uf@ Wp~<<EJB[aW}g_Wl~<$2]GLϒ	bG"IbX*QqD2"B)%d,>5 j>{-]cK'Xt  o(hw?G% fIq  ^D$.Tʳ?  D*A,`6B$BB
dr`)B(Ͱ*`/@4Qhp.U=pa(	Aa!ڈbX#!H$ ɈQ"K5H1RT UH=r9\F; 2G1Q=C7Fdt1r=6Ыhڏ>C03l0.B8,	c˱"VcϱwE	6wB aAHXLXNH $4	7	Q'"K&b21XH,#/{C7$C2'ITFnR#,4H#dk9, +ȅ3![
b@qS(RjJ4e2AURݨT5ZBRQ4u9̓IKhhitݕNWGwǈg(gwLӋT071oUX**|
J&*/TުUUT^S}FU3S	ԖUPSSg;goT?~YYLOCQ_ cx,!ku5&|v*=9C3J3WRf?qtN	(~))4L1e\kXHQG6EYAJ'\'GgSSݧ
M=:.kDwn^Loy}/TmGX$<5qo</QC]@Caaᄑ<FFi\$mmƣ&&!&KMMRM);L;L֙͢5=12כ߷`ZxZ,eIZYnZ9YXUZ]F%ֻNNgðɶۮm}agbgŮ}}=Z~sr:V:ޚΜ?}/gX3)iSGggs󈋉K.>.ȽJtq]zۯ6iܟ4)Y3sCQ?0k߬~OCOg#/c/Wװwa>>r><72Y_7ȷOo_C#dz %gA[z|!?:eAAA!h쐭!ΑiP~aa~'W?pX15wCsDDDޛg1O9-J5*>.j<74?.fYXXIlK9.*6nl{/]py.,:@LN8A*%w%
yg"/6шC\*NH*Mz쑼5y$3,幄'LLݛ:v m2=:1qB!Mggfvˬen/kY-
BTZ(*geWf͉9+̳ې7ᒶKW-X潬j9<qy
+V<*mOW~&zMk^ʂkU
}]OX/Yߵa>(xoʿܔĹdff-[nڴVE/(ۻC<e;?TTTT6ݵan{4[>ɾUUMfeI?m]Nmq#׹=TR+Gw-6U#pDy	:v{vg/jBFS[b[O>zG4<YyJTiӓgό}~.`ۢ{cjotE;;\tWW:_mt<Oǻ\kz{f7y՞9=ݽzo~r'˻w'O_@AC݇?[jwGCˆ8>99?rCd&ˮ/~јѡ򗓿m|x31^VwwO| (hSЧc3-    cHRM  z%        u0  `  :  o_F   PLTE   ~~~}}}|||{{{zzzyyyxxxwwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!   


			   o^   IDATxb`````$200  H U#    IENDB`   070701000001A1000081A40000000000000000000000015ECE244400000DF7000000000000000000000000000000000000003000000000cobbler-3.1.2/web/static/jsgrowl_side_hover.png   PNG

   IHDR         n   	pHYs       
OiCCPPhotoshop ICC profile  xڝSgTS=BKKoR RB&*!	J!QEEȠQ,
!{kּ>H3Q5B.@
$p d!s# ~<<+" x M0B\t8K @zB @F&S  `cb P- `' { [!  eD h; VE X0 fK9 - 0IWfH    0Q) { `##x  FW<+*  x<$9E[-qWW.(I+6aa@.y24  x6_-"bbϫp@  t~,/;m%h^uf@ Wp~<<EJB[aW}g_Wl~<$2]GLϒ	bG"IbX*QqD2"B)%d,>5 j>{-]cK'Xt  o(hw?G% fIq  ^D$.Tʳ?  D*A,`6B$BB
dr`)B(Ͱ*`/@4Qhp.U=pa(	Aa!ڈbX#!H$ ɈQ"K5H1RT UH=r9\F; 2G1Q=C7Fdt1r=6Ыhڏ>C03l0.B8,	c˱"VcϱwE	6wB aAHXLXNH $4	7	Q'"K&b21XH,#/{C7$C2'ITFnR#,4H#dk9, +ȅ3![
b@qS(RjJ4e2AURݨT5ZBRQ4u9̓IKhhitݕNWGwǈg(gwLӋT071oUX**|
J&*/TުUUT^S}FU3S	ԖUPSSg;goT?~YYLOCQ_ cx,!ku5&|v*=9C3J3WRf?qtN	(~))4L1e\kXHQG6EYAJ'\'GgSSݧ
M=:.kDwn^Loy}/TmGX$<5qo</QC]@Caaᄑ<FFi\$mmƣ&&!&KMMRM);L;L֙͢5=12כ߷`ZxZ,eIZYnZ9YXUZ]F%ֻNNgðɶۮm}agbgŮ}}=Z~sr:V:ޚΜ?}/gX3)iSGggs󈋉K.>.ȽJtq]zۯ6iܟ4)Y3sCQ?0k߬~OCOg#/c/Wװwa>>r><72Y_7ȷOo_C#dz %gA[z|!?:eAAA!h쐭!ΑiP~aa~'W?pX15wCsDDDޛg1O9-J5*>.j<74?.fYXXIlK9.*6nl{/]py.,:@LN8A*%w%
yg"/6шC\*NH*Mz쑼5y$3,幄'LLݛ:v m2=:1qB!Mggfvˬen/kY-
BTZ(*geWf͉9+̳ې7ᒶKW-X潬j9<qy
+V<*mOW~&zMk^ʂkU
}]OX/Yߵa>(xoʿܔĹdff-[nڴVE/(ۻC<e;?TTTT6ݵan{4[>ɾUUMfeI?m]Nmq#׹=TR+Gw-6U#pDy	:v{vg/jBFS[b[O>zG4<YyJTiӓgό}~.`ۢ{cjotE;;\tWW:_mt<Oǻ\kz{f7y՞9=ݽzo~r'˻w'O_@AC݇?[jwGCˆ8>99?rCd&ˮ/~јѡ򗓿m|x31^VwwO| (hSЧc3-    cHRM  z%        u0  `  :  o_F   PLTE   ~~~}}}|||{{{zzzyyyxxxwwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!   


			   o^   IDATxb```	          IENDB` 070701000001A2000081A40000000000000000000000015ECE244400004A62000000000000000000000000000000000000002A00000000cobbler-3.1.2/web/static/logo-cobbler.png PNG

   IHDR      M   B   	pHYs    B(x    IDATx	E?]f_B Q&$)CTTDEy@v,a=3̾{{oOL"?o:ԩSՊ/>
>
[ 1c(ƌ8no{<T*8noa彳|>IIIIkqܾ} \)`M*`C8crgnqV>
Y)Oެ5[-]}Y)Oެ5[-]}Y)Oެ5[-]}Y)Oެ5[-]}Y)o_liiРvuuUߍ%)h^\6lZ[[KXF@<Eup׭[w˳1-aLPV2cʫZTEx=Puj(^W?ϟ?gq;g(9X1ֆ
_ׂzvEJL}JKKǊ~y
SI>1<Wy|FWC'c3~MQ={?}ٲe!Xp]wia($TMC	UW]&AV (`<e_~T>0l=q7}5]Hk$鑗m3urDUU0p,D|ܱ{(ؑ*SGU̖"tz!P1[*S~їR;e܅|mnZ쿢UHݎW D(/qpHu]q2[B}PVfPb"DDQB*N]GW~aq:4 $:P_CH1
]'_As~q:e {9<bo4/[YY=|F);c95hxkq+N:s|ڶ\ M8גXCI|?Qy1wn0!}n}}4&tPʥ <!H"cKO_Q/U|h;rWr]F9|0'Tgնr30@	"`H	c!->0dlvg,&9Lr;i.h=];Alc9`	M"G+V>G/~p=us[YjG΢#0/0s$L'$X%J)@/F@z4ꧨLY2{Qy#e	Z"!,Nq3?ԱmW(?Eh@NU})Y%?dŝ"(1Fب! ѧƈ^7@]` 
IEA~n7w@x΂`QO
@>.݈{=9#-IwׇG)w㤎t2%I A¨td8$Zţрm6Bhgcl2G8Lp&_ӏ:x壼[gt
~#PY!{ɼȋ@u	CDSZTG\U@4hYЛCGC>M6}h֬YX2<S
r()%^H QPwS3,5SAħwCNG#=,gѦ>ЙR6/C^@mR,8e666eeVėuqh\;e06ex~m.e?nI"{8j>T{܁<KkVKƹlso8^_ 2 w4'+l'^-Oiqˊ JFׄQ߽zi]1C> Ȁ$BFw{ak[>\kMN\A8JHx]i|ӐWzGK,U|#R%ޅOaĞz_|סh
N AK9!7'CWj.;g̘1dCt'm=e1HIPz^Ysq1}bR=ZEWA8===USʜ5辁_pн]^BP= 1z-\z7*>g \7xpEi64ZyX{>yW&#a+>C{`=e:ʵn_9yc}f%2K}W}XzT>5qSzmA$K=]<_ `v#jf"	cIkm2e)G TeTȧ=e~O/IXx}޵IƁ/Ǫ&kGG;/I"A'jf,tȣSeᥫ}%KP4@̋ʅ:U, '8ϳw%JF)$ \<RtSR
`p"ϣFo'|Ej @8/n?VT)`
T%uka#kf ƜB%QD?M2uG&/U@gO9I#^}Jݍ	RPپyA3O>jӕO,r|:<CIj˄æz?0P&}Q.T;E{gM}FB_,#6i3-k=3р^nqw2D~9h ǀq_a*:~l$syNEt9}^ zx#z1.!>d!/cd;ccvA,_qNǷߵBE-Yº><!6T*	g(=O>qzT>~>.Ƽ/~|X4ecxG
:Dÿ/'HGq/wWӬ,?W	KB'[gt1=p8HUkRvg GPQY`쾮#Q_PG(/~+$5"D>=.égI/N0>Edۻ+TT UFlX2+3#	%-g]p"Ǘds?yQkbW_փAyE{.}pN!Q<^gLOB=rގ-.WELFRJM̛,`Zv1XWuwB4(yճ~Fb,H	<O
`Rg@ܝsϨ> SwN1ఖ9/$\tA0RraCJ6\xJc_5RG/HsegBlV|Էv56aLTU	sI\xX`㹾अC`?Pd1
 ? xڳMSHi<Ȗ|}ZڤW}1? {H \?|HyO4׬N~9zθ+/;4w &19G<:r\4w=s3j+^W{ޕ4K=~"TD mYm4'=U]m/ӘBr)٪,*t7rW]ސo-cE`̃1h۶?2;I7ǟ߳j,$tcӕp͇_];'X0,è,˒q 1GcLǿG-Nwt$B1X~}Ă>&AqLȋly	ĉsp^OQGc3ÌcL=1
1qPT>c<&LJ p!2,Qt-;`g14_P{R>pĊb$2CҴt}:H/!j);RuWsV3#Dо1NsdI_0qL[X DDl-L5il4HB"%&](hFK@)fp'B+-CYa^
zMA
9=냞rB|.:!_P Fw: 51@>x`:~ߑòŧ1,PJ1V&c ̹-xeR?_PAtkRvË-2L6ټ.ԏ4CT/j!h	#b
u? R&"|zoVGq'Bb<o	a \1#0&`нQfNN:.dyKcz%ys=7J!f]:N6tO`*1M\_Ҩ:{ӻ.s=q 
t%bZbh|rl 8ErNmFˣzO	N1+]vhy%&
b3l4BWIeN2ݛGTʌPb#{kA:Hj(²ĳ"kZԿ<T؏\	SPG LiaN^0D&>\dI]*x(*X-<ٵ[h6&D0̯<ߙF~U%;m9>JPNx,"RUŋ0jqBgzx8̓+0O!P\е7
Gϰ% Q F+a^I$J@Rʭߚ\#͞jS<0>-'&T\B(ަ*)3&bSPY< SHʠt$epF%z BBf	dKJC1		up)~Sc)RѲhлpD@ElEhMV&TKm_{%ڡC}!k$,~1fٻ2b#vhRT_O`Hh(8|B)]% 8do(H=>	U̩?]/G l$TLD>CdS+,Et-LHl_)Q0sfʤM0:jP1ZIcF;[LUB#Ț,dD"CC#<*qL8CZIL	߀#1-{Fc.A={̼kdӈtD3?JGc!{"DO>_ C$L;<HtH8	(̟p@<$"
G?#vmG')O-h`feþT#+Er(lH,7a-|-O4bgH{ +H@$T*hVҿLw*p^,H0qb{W	LN󁄙xԃI׈C@Q$>@*C6k2$t|
VTvH&pEQqƷS10Jȶg.#ckd`ߞ%/jc,'Eq A)ukq9g6UE44ԛS]F􆏌D7xĪx`ѓVTRzl"eN3OUuNH:d
#R̃-D3&=C%9xozW1gRcI6-<A"n%d"B>:T7$Zj3+Ɓs0}<y-AYEȀz MVd(ee(Mz\ 2$X.<6q:W1Rlsh=8T>;m|LNjDO<0?9KKh,ĴQ'MdN=ɻ+\x~ec>&dШ0t%ZѹևM^#)0Lo1	
42au1=|&c'kaB:s*hܚWr,?9ւ'+]PˏK@49O$ADoILPO&d|v_VhCo'&ɃΧlI#Њ.gxd0yYI|x((04g(K^ImĖ^b ^cRHM&9&a_W
ʡu+o
!77:\1/?ZaO8+ߍ9d ՆT_; @¾i4ᨄs>~oSx(_8]L(QR%H)Pul[o>KSӳ{*Nx<N=G2JOt|(W*0}jƭ)|]}pD3Io8rr}@&,X"b+17r<o*w\|)L&%)ϡCSoQľOMfyaÜD#
cZ(MV
4"@_beec).p矾).D@|X!s7ƪo.~fd\aF4ѽӾ1b\PͿ	ەV</-;]`Bopɻ9Z9/bh]DCl!HfxُcˇKInDEMH,ku#@-%G@_B߱j>.ݍ;[&*VW"ZubREN^2W~*Mjhb|ڏC:85Vq_LО,d&=V=iIjo|丿	Ҹ~KqmA^ERu~w1CFxcOqxjr8pL"n	 x	wڡ_]1~U`	v7.=m	\ @;7r~syKVL<>-yoȀC:,̻F$
q1"KO&!;/ĮT!$ V7LY,AE
4ZUzh{Lw3?7!K@l_ii>pXހ{qR\H)_y7ˍsvZ	OD}*=JD8V4o8y)K/sZ|]~ʏrـb}YvTHɪ>[le#7!!ti}#K%B
 IÊKW1f8{΀qǉ˖L_};(۸Ǌ$b[?N !}',Kĸ`K,_5y (.fPe82/u	̰'5h16E7-R"~'Dw'+#5R
r?d+eT>-ia
Mq$q@u~iCT8/qpr>&mso9z>Mm	ػ!5Gh=qGi3K8jG% HP
iww9;\
S(Gޓ0AG8y@Sraci`?vO'L>Cq+(T<Y4ui$R<3 >&݊)o^E<,s]U^'Lǿ"l#5mP&$17dYqC}M=+Xo8F^Fwy(>6B_߫2  Wzp/ZR.J.O!_d:,}'tF#!qzox_[ucw%Qka<Lgb0Oz3I;[VIv
 _\?5r㳨~ʕ@hd	㒧6?jd    IDAT}=pٜ/QH_>{}x].̭֗گ/Q;Ċ7FzϿ]y#-0L!][2'?QX5޴l3Ե<  | *
;=/\wƑ>;#Ӱ|/!ݰBEi+˾tHkKsG^,[C/ZKPei;hC|-EKah
<͋^'hH',xc5
P%H1NmnUheOёO\WδR,8=MfFA(,4u**zNnaqS w1ks[v|^g~;([^YDʆa-7<R>U逕V9SEOw$V	6zf|KO*AEJiz߁Zc}
?Ҫ濎f /da؟B?>K?!3߈i
cNEh=/ji+/<_(QIG"NZ	b;Po=SoFnAXW@W7b׿ӥ#33=^)3o4gUH|pM 7}Ni9vgc#5:>ܿ33'{Ђ6a&:omͦ_ j箺̿_FS	.0
IL;,ҥT_$b7jD/i"l0Buu(D[YHK%uwN:uUܦG>6Lol;|B,d5w~XOqΖEE XĚ|Hq (6!ŹG~ˑX?sa
}P"_~Ҝ)F>+埝eETQQ),]tdq1?B+ڒR>EXqa>ސkXR/	7~ِ4qD&⏪p )0:Q.]}?!ɈP]9yǔI6Fx'EӼOPh$NhZgrpa(pF
&ǯ9߀R R^%hᏦ^HbR %Lk,D$YMɟsUm@vQ=gzr<$|k>|=/k+뤼|Z((`F&UFD`@q8O_r%B58QN"SκNq?sh# q'.g7p?s9p>=݀n(٘N{D0^:h[B^{ֻ&ylT/n{ᅊvcoLICGR3?^OЂ>BʟRj CLl|OlAz/z-({rBP~| HC}J]14וbcDl4<_9 #+Eja˱I}Y^Bf] i?!sӌvEpo#[:qy.Ŵ@Kv*ts1 u^UcxdI^NnCu=H #	xvۭUѱ1\~q/R#(<\i?!AQgCǇxgS{eҤ?,bO!<${H1(@EV~7Y>Jhi}6 Qᳮ/~7oڄVI4&{ {-,܊|'kơSSJu'TV(|{
؂[mrHTh<uP!9&b[0x/|]xǻ6L8bL0H4cʳ𪛖(yzK/A"`Qg@fF*i"hs,(i*{Nt~NZ w방VGa;]WD3Wuյ'va_>
[{TFS.kklŚBPKORa	G7pEڴQàrѦuS?.~BAf ](v|)8*pJp2>zvýw!<֙1[	#BeTt̙jM˫jΪVKfݫTi,HEO>wy
DbEHg,m
15VY[Vf{媥kcujYO
,l^n
[);6g-B 48߹^YKRUddFg.QzV(U5Yp0hhjF6%m%mҔp͹Eb`hm	E6HˀI61Tz'q*RxV"Y_?T\_Ǹ157S11)C7һ$AEJܘF.ewiBt4[{ŰtYTFR^?ۜ꧲mJ<@޹(\>?=? ĀDM"s(UQi9W./19T+}2;XT,jcՅ'{X`IY	^&	A(7a9k9E}k:1ᡍ8gSԔYGŤ5䄡aaހ0g4L'C\ϼ][}[-q94X7#iY	lUWi36!z._;@6@gS#~yWVҷgfY%Q)51Q}n2cTLD#WSU!3|$F
ѯN)#4,S~LdWic[\_6^@c3˜͹/EuYL#,灁	0o`,N003fQkrF=z:u-  )_jZGԩTbZ
~B`9_lY	a!8,_2pG:DA"`}urV^N=<9h.Qi=O{jgw_MkBM8<.V&|HX60ϸ'B7z3*W'm,mrL
ӱs#Ԭߣ: Ӆq4,A"${F˖}_}^)707Iy@>NuE&4:I⧥1&7t*/4π<kF7KӥNSÔr;uly6"fmޗR=2|(I]RjRYh`3DoJ/8)~m"GBL-<FiݵS}$!A~;6nGP;w&)L=|<툔cTigY&VxﲲvS2;\FyUQ23tԍ&ǆ3/򹚞NLo)05OrE`WkoK\ԎpޮsLxGc	ZUm0	XNvTadoXk
+"gZύ_4uh ;GVbW4L8.@]׋	\+oTgWn9'W'qhS۳QƳӞvإFDSa[&L]SsU5`UZhj:#Um8L#禊\(G:iscR0qBaB'Lcը*Q2ЬGyEjp晞ѓ.ū)SW2 t4ϑaVJS}zJTGIyQ=jAo~D;2c;vSnM)[YZ>pWpڬT(4#3D4` X	)(.Pj
	Dd/5ojV)]t)l gio:V)},sCEP㌭4θy :j"JwT?ZU=O.=U3- 5q<x9W%_i|EMA#'+j-n47}R%դm՜?hZ&a|9țYTm:nBs5=Z#Yyр
z	VC8<+wǍ=Rឮ6K0~[2Ei֩$mjVX|Od<e@)͙ii?XS<CLƄsRW/20mډi%0)cR*]T_Q_S`R<Pkxdf۾Y':ӾmÀÅ4ؚ09Ks֊y
l:9dV04JACBC1|T$ml֧y)-g:0@nH/-Ґc!|5rٙNtuPwTR{BOu飌F.%ӯf~4.iOlN/Nɢ HS'ke뀠FXRoϭw9,CW\Sgoܨ{
r)nYyzLNhwc8v{[m?
*[!h,YPiQ]kf|',:1*> 4_	J}FC@\N/|3e<
1O؁SGDc[n	SZAY&!ϟ)=yIT3:eaDA*'.0R
^IlKgpB0dY[mJ,lifS+[.y;P~ e|^M	+8tlJz!+sK|2N^)9Y4F0^KQĀJiZhE=+t24z6("R@sPy#]Jf&)/iBRdw2!6>e+PّYp湞dph蚵L:LcBe$+:V!8>7r6頑bOϷy3#exL4ٳgF_2SYuc
ʹ"c$@:X8>EXvwXc#ė@!\4dpϚz.-g:z`58AGZv$	vRi46\qvl>j*dT`
ŔAH^֭4&.TʾZ_5͙ή7 FfXR>ݝԜ9.O<ɇ<]VפҦʻt/A!lTY4Wa>_*w6UFp%yȔG;[unBit)m"LFF/>#Dy,/%<gjW9%\A%㐦E̍7*uV(mY<k2UTτ#1`3pLKw6\aj>\a?92	C:Z$Ciwc(3Rk#2ժoijvvL`(	`i%yߌY,Uu/˄d=Ͳ6·/ea:|I""pU-R΍UrVUI`$Q}=TN*?x~05wʯi5ɘ0ѳT	^l .Qrd_Xc__BSPFa혪q1joG{+3'+TTe,W&fi]VV
׀af}֪v<*8+~4CXǂ6|Fŵtm^߁or+jXit~V;#zY
k/\e9aAGWxhzewv"-ALҼI`:ܲ;VM0L=V9+,`
$ף LDi
QYڏʦ)UVcHqGA͊hzmU4nz3Vg1_O+Wh
͑<k%Nx	m7Qy
U9|?GWmiAZVOR5tXgbZB^ݻ
,"ЋcFi?h6U|Jb ̔g\6UYa<s#[\+եJRcxЪ5*XI~Uw!*ЗrPVJIC|b8dPa&:vTL	5ޢNT7/1%nc	TSu%k0%DLXj*OMנ/q щ
Qsi2~@ءpcpC|hnr0*z֠<%\&w7U+`	2)UO#R`dsׂn#tA_ũ̧U4Ufwhy-8üv:j׵wLufz̥	%C74(꽧ݷjfkkT۬^*]P|;hT%_pdj]PƆA=<blLi4>
tj
nM*E4Q{r[imV6	rZsL"`83N3_|i1LMg;J\I=Iqe`nz8;U*+ǘ	vj-pquUb{WV֔)--5J`J:e*S)FpQ=#X.A滫Ι6.C=`%/@R`	k=îh- 	2lٯ`8>6GfrZ>eѣ*O`Ь0v#1C\c2{ny[وp]lT+VcЊaSql81;ώa9spRv5-}Uǳa[N`
L]&Rm҂T>oOPK1~W)1SGe\=xn:ݖt:V\j˭t|jb}E1
	/)uTOO!z~sv2}IZR][-~à@70j9Hho1R]B#@pͺ
n6v>@er`XRmRٌiaZ<ͺun{naڎ.]^,[?gCIw@Wȗo\TI5:u%S7]=' ,~eDSjtuMP6./N	{GrWv~J!=W$:WV¾-1_
PP@g>lGs:\h-jG*^;7r6yOW/j?B\v&S1#ktYnx,&M6Jp5af	S2|6pq%s%%H#a1f7I{V0mS/`SP~Q
l-eϴU5M3=kYZwB\7H^ң>E ః +=51keYUތiLǓ$u ;돬2
eY
see<aY:*%*j_<=n{MtV̘xX0MwQU<ڪ~۫[}jL5ܧ\MlUyf˜YLTޢ|èfA'#+{&XJ/;*s;9DfXZASQ	z25jpa)L,
`@RPTC{`yaWkjR-źyڬ1m*{Mlޮ:a*EoԪeT39H2Gi|&
vXLپ.8q~?&WeE1l>.Vӭe LWGP}O:Fh^($I<嫦?mjgMd-tccUOIoԈ%ϸ)ʌH++Ru4H~IzIT  	IDATvx_M<ن^;0i46&냀e>,dPES*CyT_Fs}dh8Yͅ>lEnqxJ.[	A;۞Iym/i]׬YèeJ)pN)M#b.i `
ħ B NHF0P%tvGڌ^*l#rS=FmwIYMyXngVMю|> 9I1TӅP7	|Aas5t rn}3VV3U9Kc'C`{U6&ӄT_,[/`&fpm:O_k[[GJ9C1:]PKRPG,^ÐZP^5j[̩gwE7btUNs@Uɉ]łbW/_:5=Vy=){:z4Xl`R!yJwZ8VbҩehmDҰpc9uʐ0!&7^BKҫ	`nAoߝ7<߀qB?^+tuaiVIKG)<3p[DmNWRao3܋pkA?a<n4tʊycoygCPFvؘo3J~ef773Ng#ځ("PO=+n
HE:d'&|T.i兤`#B.ULM0Q}lɛbpZs0***l@w?M;P020dtڽGUӻj+l}M0Wɶ|||CH''|,t(,pf^:cI	Wi&a	˃p\`M]F8VH&#GjoP$dDkJ#D˪ 25pTAacN}EaPR<9-46[WoNxV#oT+{arTwǤ$Bb:-	Qy#jצT-ZC3§q6g7gi!(F^xXk&{Vm<VL56V_Sa,i4@"Ti%ۊͯLJAg;׮q-+г+$MUyiغzl"9ʷbL딸:.tTgn|JQZx	sʵ90<`L+VT807Z=41ȻpZg|y:K`TEW:;%O%u`$5EjWK#w|0YboMNY0nSMrI|yVayOGDՒMJDvFCっ3uU۵2VtGؔ(3\d.dZձs#ƪzr+>d3`u,>chmm2OB$8PEnn8Q'#\wAPEkN3"S1ѵ%[_<ֆ 4\qd 5 	mzne7*
чeXL=|5ìQ'YGD:|n⼭ŻPEŽ~BO>6)cLuu8z$;`JkFt6ȥX},6,wh_X*?<xjllX9.ONd90'tX`AcQ
)W]VF{焍	J$&MT\S@MRLu,0q;ϋ X<,UHSzlT#F4TH&&thE>Iz~YSv:%a=΋QTw{iޛߔv
VC@&Nʦc1	`"fZl<HJ0QuwHȘ1H@<5^ɳyW7v3<LGX@7B?K5Y]UUՑb)Ӎ^eYȡ95+*)-OeHG4o'iG~}pٹr@u{FGPj^I+˲)>V9G8tL~D$~gʽrb{zYLN)1N<[_Ԡ|AuMU`̛]A>!Li|C1nJ'XDH|ҰW;vQR˷ܹs*3SyAFEv9tSzIPmm L=Qߥr$jF0Lf{;"E~o
c;N1cD+aww[n;cd 㬆+aBAږ℩הƹsÙ/ 'T(.#ǘN;4	&SݼYر#Dtb+-?^    IENDB`  070701000001A3000081A40000000000000000000000015ECE2444000019B9000000000000000000000000000000000000002300000000cobbler-3.1.2/web/static/style.css    /*Reset to a sane default across browsers*/
html, body{
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}

a,blockquote,body,div,dl,dt,dd,form,fieldset,h1,h2,h3,h4,h5,h6,html,img,input,label,li,ul,ol,p,pre,span,textarea,table,tbody,td,th,thead,tr {
  border: 0;
  margin: 0;
  padding: 0;
}

table {
  table-layout: auto;
}

select,input,button,textarea{
  font-size:99%;
}

select {
  margin: 0;
}

table{
  border-collapse:collapse;
  border-spacing:10px;
  cell-spacing:10px;
  empty-cells:show;
  width: 100%;
}
/*End Reset*/

/* Lets set the primary styles and feel for the app */
body {
  font-family: "Liberation Sans", "URW Gothic", "Helvetica", "Luxi Sans", "Bitstream Vera Sans", arial,helvetica,clean,sans-serif;
  color: #333333;
  background-color: #EEEEEE;
  font-size: 1em;
}

a { color: #333333; text-decoration: none; }
a:hover { color: #306CAC; }
img { border: 0px; }
h1,h2,legend { color: #306CAC; font-weight: bold; }
h1 { font-size: 1.5em; }
h2,legend { font-size: 1.2em; margin-bottom: 0px; }
hr { height: 1px; margin: 0px; }
input, textarea { padding: 2px 4px; border: 1px solid #306CAC; border-radius:4px; -moz-border-radius:4px; -webkit-border-radius:4px; }
input[type=text], input[type=password], select { width: 350px; }
input[type=submit], input[type=reset], input[type=button] { width: auto; margin-top: 5px; margin-bottom: 5px; }
input[type=checkbox] { background: none;  border: none; margin-right: 196px; margin-top: 5px; }
label { font-weight: bold; }
ol, ul { list-style: none; }
textarea { height: 8em; width: 25em; margin-bottom: 4px; }
pre textarea { height: 30em; width: 60em; }

/* Defining the classes */
.button, .action {
  text-decoration: none;
  background-color: #306CAC;
  border: 0px;
  font-weight: bold;
  color: #dddddd;
  cursor: pointer;
  margin: 0px 2px;
  padding: 2px 7px;
  -moz-border-radius:3px;
  -webkit-border-radius: 3px;
  text-transform: capitalize;
}
.button:hover, .action:hover {
  color: #DDDDDD;
  background-color: #333333;
}
.warn { color: #990000; font-weight: bold; font-size: 1.0em; }
.rpointers { font-size: 1.0em; margin-left: 5px; }
.lpointers { font-size: 1.0em; margin-right: 5px; }

/* Defining classes specific to a tag */
body.loginscreen { background-image: none; }
input.action { height: 22px; }
ol.sectionbody label { width: 300px; vertical-align: top; display: inline-block; line-height: 1.8; }
ol label { width: 300px; vertical-align: top; display: inline-block; line-height: 1.8; }
div.multiselect { display: -moz-inline-box; display:inline-block; vertical-align:top; clear: both; margin-bottom: 4px;}
div.multiselect label { width: auto; font-weight: normal; display: inline; }
div.multileft { float: left; text-align: left; width: auto; }
div.multileft select, div.multiright select { height: 156px; min-width: 150px; width: auto; }
div.multibuttons { width: 55px; padding-top: 75px; float: left;}
div.multibuttons input.button { font-size: .8em; clear: both; width: 50px; margin: 2px;}
div.multiright { float: left; text-align: right; width: auto; }
li.paginate { float:right; }
li.paginate select { width: auto; }
span.context-tip {
  display: none;
  background-repeat: no-repeat;
  background-image: url('/cobbler_webui_content/tooltip.png');
  padding-left: 30px;
  color: #EEEEEE;
}
span.context-tip:hover {
  background: none;
  padding: 0;
  color: #333333;
  font-size: .7em;
  font-style: italic;
}

/* Now for the 'id' specific statements */
#login { width: 250px; margin: auto; padding-top: 100px; text-align: center;}
#login input { text-align: center;}
#login input[type=text], #login input[type=password] { width: 200px; }

#container { position: relative; min-height: 100%; }

#header { height: 80px; width: 100%; }
#logo { float: left; }
#logo img { width: 180px; height: 60px; padding: 10px; }
#user { margin: 10px; text-align: right; font-size: 0.85em; float: right; }

#body { padding: 5px; padding-bottom: 25px; }
#menubar { float: left; padding-left: 10px; width: 15%; }
#menubar h1 { font-size: 1.0em; margin-bottom: 4px; }
#menubar ul { padding-left: 2px; margin: 0px; margin-bottom: 8px; }
#menubar ul li { font-size: .8em; padding-left: 8px; }

#submenubar { width: 100%; }
#submenubar li { float: left; height: 26px; margin-left: 8px; }
#submenubar li:first-child { margin-left: 0px; margin-top: 3px; }
#submenubar li.paginate { float: right; }
#submenubar li.paginate select { width: auto; }
#submenubar input { margin: 0px; }
#submenubar .action, #submenu .button { height: 26px; }

#content { float: left; width: 80%; }
#spacer { clear: both; }

#footer { font-size: .8em; text-align: center; position: absolute; width: 100%; bottom: 0px; height: 25px; }

#batchactions { font-weight: normal; width: auto; }
#batchactions option { padding-left: 1em; font-weight: normal; }
#batchactions option:first-child { font-weight: bold; padding-left: 0; }

#filter_field { width: auto; }

#listitems { clear: both; }
#listitems thead { background-color: #306CAC; color: #dddddd; font-weight: bold; text-align: left; }
#listitems thead a { color: #dddddd; }
#listitems thead tr th:first-child { width: 2em; padding-left: .3em; }
#listitems tbody tr a.action, #listitems tbody tr span.action { font-size: .8em; float: left; padding: 1px 7px; }
#listitems tbody tr { background-color: #eeeeee; }
#listitems tbody tr.selected { background-color: #e0e0e0; }
#listitems tbody tr:hover { background-color: #cccccc; }
#listitems tbody td { border-bottom: 1px solid #cccccc; }
#listitems tbody td:first-child { width: 2em; padding-left: .3em;}
#listitems tbody td:last-child { width: 21em; }
#listitems input[type=checkbox] { margin-right: 0px; }

#aiform li, #snippetform li { margin-top: 4px; }
#aiform input[type=checkbox], #snippetform input[type=checkbox] { margin-right: 0px; }

#filter-adder { margin-top: 5px; }

/* 
  jQuery UI formatting for tabs, some styling based on examples here:
  http://keith-wood.name/uiTabs.html 
*/
.ui-tabs .ui-tabs-nav li a {
  padding: 0.5em 0.5em;
  font-size: 0.95em;
  font-weight: bold;
}
.ui-widget {
  font-family: "Liberation Sans", "URW Gothic", "Helvetica", "Luxi Sans", "Bitstream Vera Sans", arial,helvetica,clean,sans-serif;
  font-size: 0.85em;
  font-weight: normal;
}
#tabs {
  width:100%;
  padding: 0px;
  background: none;
  border-width: 0px;
}
#tabs .ui-tabs-nav {
  padding-left: 0px;
  background: transparent;
  border-width: 0px 0px 1px 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
}
#tabs .ui-tabs-panel {
  border-width: 0px 1px 1px 1px;
  background-color: white;
}
   070701000001A4000081A40000000000000000000000015ECE2444000001AA000000000000000000000000000000000000002500000000cobbler-3.1.2/web/static/tooltip.png  PNG

   IHDR         VΎW   sRGB    bKGD      	pHYs        tIMETA   tEXtComment Created with GIMPW  IDAT8˭ԱJA30`b'X
7%|
NRbFAmlSA-46[^633?FD$j`7ٓH)\ z]Z*>bU;>8iwuTKB8XT$Vs5ې-b-cx ]LI4egl+WDNd3򍥊]g׸C%G?
,hQ    IENDB`  070701000001A5000041ED0000000000000000000000025ECE244400000000000000000000000000000000000000000000001C00000000cobbler-3.1.2/web/templates   070701000001A6000081A40000000000000000000000015ECE2444000008DD000000000000000000000000000000000000002D00000000cobbler-3.1.2/web/templates/aifile_edit.tmpl  {% extends 'master.tmpl' %}
{% block content %}

{% if not editable %}
<blockquote>
  NOTE: You do not have permission to make changes to this
  automatic installation template and can only read it.  It is possible
  that other Cobbler users has secured permissions on Cobbler
  profiles/systems that depend on this template -- changing this
  template would ultimately affect those profile/system records which
  you do not have access to.  Alternatively, you may not have access
  to edit *any* automatic installation templates.  Contact your Cobbler
  server administrator if you need to resolve this.
</blockquote>
<br />
{% else %}
<h1>{% ifequal editmode 'edit' %}Editing{% else %}Adding{% endifequal %} a Template</h1>
<hr />
<form id="aiform" method="post" action="/cobbler_web/aifile/save">
  {% csrf_token %}
  <ol>
    <li>
<label for="aidata">{% if aifile_name %}Editing: {{ aifile_name }}{% else %}Filename:{% endif %}</label>
  {% ifnotequal editmode 'edit' %}
      <input type="text" name="aifile_name" id="aifile_name" />
      <span class="context-tip">Example:  foo.ks (to be saved in /var/lib/cobbler/autoinstall_templates/)</span>
  {% else %}
      <input type="hidden" name="aifile_name" value="{{ aifile_name }}" />
  {% endifnotequal %}
    </li>
    <li>
      <pre><textarea name="aidata" id="aidata">{{ aidata }}</textarea></pre>
    </li>
  {% if deleteable %}
    <li>
      <input type="checkbox" name="delete1" value="delete1" />
      <label class="delete" for="delete1">Delete</label>
      <br>
      <input type="checkbox" name="delete2" value="delete2" />
      <label class="delete" for="delete2">Really?</label>
      <span class="context-tip">Check both buttons and click save to delete this object</span>
    </li>
  {% else %}
    {% ifequal editmode "edit" %}
    <li>
      <span class="warn">NOTE: This automatic installation template is currently in-use.</span>
    </li>
    {% endifequal %}
  {% endif %}
  {% if editable %}
    <li>
      <input type="hidden" name="editmode" value="{{ editmode }}" />
      <input class="button" type="submit" name="submit" value="Save" />
      <input class="button" type="reset" name="reset" value="Reset" />
    </li>
  {% endif %}
  </ol>
</form>
{% endif %}
{% endblock content %}
   070701000001A7000081A40000000000000000000000015ECE2444000003C8000000000000000000000000000000000000002D00000000cobbler-3.1.2/web/templates/aifile_list.tmpl  {% extends 'master.tmpl' %}
{% block content %}
<h1>Cobbler Templates</h1>
<hr />
<!-- This is kind weird, but force the name "autoinst"
because we know this is the aifile page. If this gets moved
to generic_list, then it can be hacked around -->
<ul id="submenubar">
  <li><a class="action" href="/cobbler_web/{{ what }}/edit">Create new automatic installation template</a><li>
</ul>
<table id="listitems" cellspacing="0">
  <thead>
    <tr>
      <th></th>
      <th>File</th>
      <th>Actions</th>
    </tr>
  </thead>
  <tbody>
{% for autoinstall_file,option in ai_files %}
    <tr class="{% cycle 'rowodd' 'roweven' %}">
      <td></td>
      <td>{{ autoinstall_file }}</td>
  {% if option %}
      <td>
    {% ifequal option "editable" %}<span class="action" onClick="window.location='/cobbler_web/aifile/edit/file:{{ autoinstall_file }}'">Edit</span> {% endifequal %}
      </td>
  {% endif %}
    </tr>
{% endfor %}
  </tbody>
</table>
{% endblock content %}
070701000001A8000081A40000000000000000000000015ECE244400000105000000000000000000000000000000000000002700000000cobbler-3.1.2/web/templates/blank.tmpl    #extends cobbler.webui.master

#block body
#if $getVar('more_blank','') == ''
You are now logged in to <A HREF="https://cobbler.github.io/">Cobbler</A>.

Main screen turn on.
#else
Cobbler awaits your command.
<!-- for great justice -->
#end if
#end block body
   070701000001A9000081A40000000000000000000000015ECE2444000000FB000000000000000000000000000000000000002700000000cobbler-3.1.2/web/templates/check.tmpl    {% extends "master.tmpl" %}

{% block content %}
<h1>Things You Might Want To Fix:</h1>
<hr />
<ol>
  {% for entry in results %}
  <li>{{ entry }}</li>
  {% endfor %}
</ol>
After making changes, run "cobbler sync" and restart cobblerd.
{% endblock %}
 070701000001AA000081A40000000000000000000000015ECE2444000000B1000000000000000000000000000000000000002700000000cobbler-3.1.2/web/templates/empty.tmpl    #extends cobbler.webui.master

#block body
#if $getVar('search','') == ''
No items found.  Add some using the links on the left.
#else
No matches found.
#end if
#end block body
   070701000001AB000081A40000000000000000000000015ECE24440000012B000000000000000000000000000000000000002B00000000cobbler-3.1.2/web/templates/enoaccess.tmpl    #set $myowners = ", ".join($owners)

<blockquote>
WARNING:  You do not have permission to make changes to this 
object. To receive access, contact your Cobbler server administrator.
</br>

#if $owners != []
The access control list for this object is: <B><U>$myowners</U></B>.
#end if
</blockquote>

 070701000001AC000081A40000000000000000000000015ECE244400000155000000000000000000000000000000000000002C00000000cobbler-3.1.2/web/templates/error_page.tmpl   {% extends "master.tmpl" %}

{% block content %}

<h1 class="error">Error</h1>

An error has occurred.  You may find more information in /var/log/cobbler/cobbler.log
on the server should this error not be self explanatory.

<p class="errormsg">{{ message }}</p>
<br/>
<a href="javascript: history.go(-1)">Go Back</a>

{% endblock content %}
   070701000001AD000081A40000000000000000000000015ECE24440000013E000000000000000000000000000000000000002A00000000cobbler-3.1.2/web/templates/eventlog.tmpl {% extends 'master.tmpl' %}
{% block content %}

<h1>{{ eventid }} : {{ eventname }} :: {{ eventstate }}</h1>
<hr />
<pre>
<textarea readonly rows="40" cols="120" name="eventlog" id="eventlog">
{{ eventlog }}
</textarea>
</pre>
<br />
<a href="javascript:location.reload(true)">Refresh log</a>

{% endblock content %}
  070701000001AE000081A40000000000000000000000015ECE2444000002CB000000000000000000000000000000000000002800000000cobbler-3.1.2/web/templates/events.tmpl   {% extends "master.tmpl" %}

{% block content %}

<h1>Events</h1>
<hr />
{% if results %}
<table id="listitems" cellspacing="0">
  <thead>
    <tr>
      <th></th>
      <th width="40%">Start Time</th>
      <th width="20%">Name</th>
      <th width="20%">State</th>
      <th width="20%">Log</th>
    </tr>
  </thead>
  <tbody>
  {% for line in results reversed %}
    <tr class="{% cycle 'rowodd' 'roweven' %}">
      <td></td>
      <td>{{ line.1|safe }}</td>
      <td>{{ line.2|safe }}</td>
      <td>{{ line.3|safe }}</td>
      <td><a action="class" href="/cobbler_web/eventlog/{{ line.0 }}">log</a></td>
    </tr>
  {% endfor %}
  </tbody>
</table>
{% else %}
<h2>No events</h2>
{% endif %}

{% endblock %}
 070701000001AF000081A40000000000000000000000015ECE244400002081000000000000000000000000000000000000002800000000cobbler-3.1.2/web/templates/filter.tmpl   {% if pageinfo %}
<script type="text/javascript">
// these functions depend on the "action" form defined in generic_list
function add_filter() {
    field_name = document.getElementById("filter_field");
    field_value = document.getElementById("filter_value");
    if (field_name.value == "") {
        alert("You must select a field to filter on.");
    } else if (field_value.value == "") {
        alert("You must select a filter value.");
    } else {
        document.forms["action"].action = '/cobbler_web/{{ what }}/modifylist/addfilter/'+field_name.value+':'+field_value.value;
        document.forms["action"].submit();
    }
}
function del_filter(filter) {
    document.forms["action"].action = '/cobbler_web/{{ what }}/modifylist/removefilter/' + filter
    document.forms["action"].submit();
}
</script>
<ul id="filter-adder">
  <li>
    <label for="filter_field">Filter</label>
    <select id="filter_field" name="filter_field" class="filter">
      <option value=""></option>
      <option value="name">name</option>
      {% ifequal what "distro" %}<option value="arch">arch</option>
      <option value="breed">breed</option>
      <option value="comment">comment</option>
      <option value="kernel">kernel</option>
      <option value="initrd">initrd</option>
      <option value="kernel_options">kernel options</option>
      <option value="kernel_options_post">kernel options (post install)</option>
      <option value="autoinstall_meta">automated installation metadata</option>
      <option value="mgmt_classes">management classes</option>
      <option value="os_version">os version</option>
      <option value="owners">owners</option>
      <option value="fetchable_files">fetchable files</option>
      <option value="template_files">template files</option>{% endifequal %}
      {% ifequal what "profile" %}<option value="comment">comment</option>
      <option value="dhcp_tag">dhcp tag</option>
      <option value="distro">distro</option>
      <option value="owners">owners</option>
      <option value="autoinst">automated installation file</option>
      <option value="kernel_options">kernel options</option>
      <option value="kernel_options_post">kernel options (post install)</option>
      <option value="autoinstall_meta">automated installation metadata</option>
      <option value="mgmt_classes">management classes</option>
      <option value="mgmt_parameters">management parameters</option>
      <option value="name_servers">name servers</option>
      <option value="name_servers_search">name servers search</option>
      <option value="parent">parent (subprofiles only)</option>
      <option value="repos">repos</option>
      <option value="fetchable_files">fetchable files</option>
      <option value="template_files">template files</option>
      <option value="virt_auto_boot">virt autoboot</option>
      <option value="virt_bridge">virt bridge</option>
      <option value="virt_cpus">virt cpus</option>
      <option value="virt_file_size">virt file size (GB)</option>
      <option value="virt_path">virt path</option>
      <option value="virt_ram">virt ram (MB)</option>
      <option value="virt_type">virt type</option>
      <option value="server">server override</option>{% endifequal %}
      {% ifequal what "system" %}<option value="interface_type">interface type</option>
      <option value="interface_master">interface master</option>
      <option value="bonding_opts">bonding opts</option>
      <option value="bridge_opts">bridge opts</option>
      <option value="comment">comment</option>
      <option value="dhcp_tag">dhcp tag</option>
      <option value="distro">distro</option>
      <option value="dns_name">dns name</option>
      <option value="gateway">gateway</option>
      <option value="hostname">hostname</option>
      <option value="image">image</option>
      <option value="ip_address">ip address</option>
      <option value="autoinst">automated installation file</option>
      <option value="kernel_options">kernel options</option>
      <option value="kernel_options_post">kernel options (post install)</option>
      <option value="autoinstall_meta">automated installation metadata</option>
      <option value="mac_address">mac address</option>
      <option value="mgmt_classes">management classes</option>
      <option value="name_servers">name servers</option>
      <option value="name_servers_search">name servers search</option>
      <option value="netboot_enabled">netboot enabled</option>
      <option value="owners">owners</option>
      <option value="power_address">power address</option>
      <option value="power_id">power id</option>
      <option value="power_pass">power password</option>
      <option value="power_type">power type</option>
      <option value="power_user">power user</option>
      <option value="profile">profile</option>
      <option value="repos">repos</option>
      <option value="server">server override</option>
      <option value="netmask">netmask</option>
      <option value="static">static</option>
      <option value="status">status</option>
      <option value="management">management</option>
      <option value="static_routes">static_routes</option>
      <option value="fetchable_files">fetchable files</option>
      <option value="template_files">template files</option>
      <option value="virt_auto_boot">virt autoboot</option>
      <option value="virt_bridge">virt bridge</option>
      <option value="virt_cpus">virt cpus</option>
      <option value="virt_file_size">virt file size (GB)</option>
      <option value="virt_path">virt path</option>
      <option value="virt_ram">virt ram (MB)</option>
      <option value="virt_type">virt type</option>{% endifequal %}
      {% ifequal what "repo" %}<option value="arch">arch</option>
      <option value="breed">breed</option>
      <option value="comment">comment</option>
      <option value="createrepo_flags">createrepo flags</option>
      <option value="environment">environment</option>
      <option value="keep_updated">keep updated</option>
      <option value="mirror">mirror</option>
      <option value="mirror_locally">mirror locally</option>
      <option value="owners">owners</option>
      <option value="priority">priority</option>
      <option value="rpm_list">rpm list</option>
      <option value="yumopts">yum options</option>{% endifequal %}
      {% ifequal what "image" %}<option value="arch">arch</option>
      <option value="breed">breed</option>
      <option value="comment">comment</option>
      <option value="file">file</option>
      <option value="image_type">image type</option>
      <option value="network_count">network count</option>
      <option value="os_version">os version</option>
      <option value="owners">owners</option>
      <option value="virt_auto_boot">virt autoboot</option>
      <option value="virt_ram">virt ram (MB)</option>
      <option value="virt_path">virt path</option>
      <option value="virt_type">virt type</option>
      <option value="virt_cpus">virt cpus</option>
      <option value="virt_bridge">virt bridge</option>
      <option value="virt_file_size">virt file size (GB)</option>{% endifequal %}
      {% ifequal what "mgmtclass" %}<option value="comment">comment</option>
      <option value="owners">owners</option>
      <option value="packages">packages</option>
      <option value="files">files</option>{% endifequal %}
      {% ifequal what "network" %}<option value="address">address</option>
      <option value="broadcast">broadcast</option>
      <option value="cidr">cidr</option>
      <option value="gateway">gateway</option>
      <option value="name_servers">name servers</option>
      <option value="owners">owners</option>
  {% endifequal %}
    </select>
    <label for="filter_value"> on </label><input type="text" name="filter_value" id="filter_value" onkeypress="javascript:if (event.keyCode == 13) add_filter();" />
    <input class="button" type="button" name="filter_add" id="filter_add" onclick="javascript: add_filter();" value="Add" />
  </li>
</ul>
  {% if filters %}
<ul id="filter-remover">
    {% for key,value in filters.items %}
  <li><a href="javascript:del_filter('{{ key }}');" title="remove">✖</a> {{ key }} = {{ value }}</li>
    {% endfor %}
</ul>
  {% endif %}
{% endif %}
   070701000001B0000081A40000000000000000000000015ECE244400006139000000000000000000000000000000000000002E00000000cobbler-3.1.2/web/templates/generic_edit.tmpl {% extends "master.tmpl" %}
{% load site %}
{% block content %}
<script type="text/javascript">
{% ifequal what "system" %}
function intf_enable_field(field,enabled)
{
    if (enabled) {
        document.getElementById(field+"_row").style.display="table-row"
    } else {
        document.getElementById(field+"_row").style.display="none"
    }
}

function intf_update_visibility()
{
    is_slave  = false
    is_master = false
    value = document.getElementById("interface_type").value
    if (value == "bond_slave" || value == "bridge_slave" || value == "bonded_bridge_slave") {
        is_slave = true;
    }    
    if (value == "bond" || value == "bridge" || value == "bonded_bridge_slave") {
        is_master = true;
    }

    is_static = document.getElementById("static").checked
    is_management = document.getElementById("management").checked
 
    intf_enable_field("static",!is_slave)
    intf_enable_field("ip_address",(!is_slave))
    intf_enable_field("netmask",(!is_slave) && is_static)
    intf_enable_field("if_gateway",(!is_slave) && is_static)
    intf_enable_field("management",(!is_slave) && is_static)
    intf_enable_field("dns_name",!is_slave)
    intf_enable_field("static_routes",!is_slave)
    intf_enable_field("dhcp_tag",!is_slave)
    intf_enable_field("virt_bridge",!is_master)
    intf_enable_field("bonding_opts",is_master)
    intf_enable_field("bridge_opts",is_master)
    intf_enable_field("interface_master",is_slave)
    intf_enable_field("mtu",!is_slave)
    intf_enable_field("ipv6_address",!is_slave)
    intf_enable_field("ipv6_prefix",!is_slave)
    intf_enable_field("ipv6_secondaries",!is_slave)
    intf_enable_field("ipv6_mtu",!is_slave)
    intf_enable_field("ipv6_static_routes",!is_slave)
    intf_enable_field("ipv6_default_gateway",!is_slave)
    intf_enable_field("cnames",!is_slave)
}

function get_selected_interface()
{
   return document.getElementById("interfaces").value
}

last_interface = ""

function on_interface_change()
{
    // called when the user picks something new from the interface selector
    save_intf(last_interface);
    clear_intf();
    last_interface = get_selected_interface()
    load_intf()
}

function populate_widgets() 
{
    var buf = "";
    buf = buf + "<input type='text' name='newinterfacename' id='newinterfacename' value=''>";
    buf = buf + "<input class='button' type='button' name='addinterface' value='Add' onclick='javascript:on_interface_add()' />";
    document.getElementById("network_interface_add").innerHTML = buf;

    buf = "";
    buf = buf + "<select name='interfaces' id='interfaces' onchange='javascript:on_interface_change()'>";
    buf = buf + "</select>";
    buf = buf + "<input class='button' type='button' name='deleteinterface' value='Delete' onclick='javascript:on_interface_delete()' />";
    buf = buf + "<input class='button' type='button' name='renameinterface' value='Rename' onclick='javascript:on_interface_rename()' />";
    document.getElementById("network_interface_edit").innerHTML = buf;

    buf = "";
    buf = buf + "<input class='button' type='button' name='getrandommac' value='Generate Random MAC' onclick='javascript:get_random_mac()' />";
    document.getElementById("mac_address_generate_random").innerHTML = buf;
}

function on_interface_add()
{
    // called when the user hits the "new interface" button

    var iname = document.getElementById("newinterfacename").value

    if ((iname == "") || (iname == " ")) {
        alert("invalid interface name")
        return
    }

    if (interface_table[iname] != null) {
        alert("interface already exists")
        return
    }

    if (interface_table[iname] == null) {
        interface_table[iname] = new Array()
    } else {
        save_intf(interface_table[iname])
    }

    // fixme: would be nice to have this more autogenerated from the template
    interface_table[iname]["mac_address"] = ""
    interface_table[iname]["interface_type"] = ""
    interface_table[iname]["interface_master"] = ""
    interface_table[iname]["bonding_opts"] = ""
    interface_table[iname]["bridge_opts"] = ""
    interface_table[iname]["ip_address"] = ""
    interface_table[iname]["dns_name"] = ""
    interface_table[iname]["static_routes"] = ""
    interface_table[iname]["dhcp_tag"] = ""
    interface_table[iname]["virt_bridge"] = ""
    interface_table[iname]["netmask"] = ""
    interface_table[iname]["if_gateway"] = ""
    interface_table[iname]["static"] = false
    interface_table[iname]["management"] = false
    interface_table[iname]["present"] = "1"
    interface_table[iname]["original"] = "0"
    interface_table[iname]["mtu"] = ""
    interface_table[iname]["ipv6_address"] = ""
    interface_table[iname]["ipv6_prefix"] = ""
    interface_table[iname]["ipv6_secondaries"] = ""
    interface_table[iname]["ipv6_mtu"] = ""
    interface_table[iname]["ipv6_static_routes"] = ""
    interface_table[iname]["ipv6_default_gateway"] = ""
    interface_table[iname]["cnames"] = ""

    var interfaces = document.getElementById("interfaces")
    ilen = interfaces.length
    var new_option = new Option(iname,iname)
    interfaces.options[ilen] = new_option
    interfaces.selectedIndex = ilen
    on_interface_change() // explicit firing required   
}

function on_interface_delete()
{
    selected = get_selected_interface()
    interfaces = document.getElementById("interfaces")

    if (interfaces.length == 1) {
        alert("systems must always have at least one interface")
        return
    } 
   
    clear_intf()
    for (i = interfaces.options.length - 1; i>=0; i--) {
        if (interfaces.options[i].value == selected) {
            interfaces.remove(i)
        }
    }
    interface_table[selected]["present"] = 0
    interfaces.selectedIndex = 0
    load_intf()
} 

function on_interface_rename()
{
    selected = get_selected_interface();
    var newname = window.prompt("Rename Interface",selected);
    if (newname == null || newname == selected) {
        return;
    }

    interface_table[newname] = jQuery.extend(true, {}, interface_table[selected]);
    interface_table[selected]["present"] = 0

    interfaces = document.getElementById("interfaces");
    for (i = interfaces.options.length - 1; i>=0; i--) {
        if (interfaces.options[i].value == selected) {
            interfaces.options[i].text = newname;
            interfaces.options[i].value = newname;
        }
    }
}

function get_enabled_field(field,enabled)
{
    if (enabled) {
        return document.getElementById(field).value
    } else {
        return ""
    }
}

function save_intf(which) 
{
    // this populates the interface widget with the data for the currently selected interface
    // and is called when the user picks a certain interface from the drop-down

    iname = which
    var itable = interface_table[iname]
    if (itable == null) {
        interface_table[iname] = new Array()
        itable = interface_table[iname]
    }

    var type = document.getElementById("interface_type").value
    var is_slave  = false;
    var is_master = false;
    if (type == "bond" || type == "bridge" || type == "bonded_bridge_slave") {
        is_master  = true;
    }
    if (type == "bond_slave" || type == "bridge_slave" || type == "bonded_bridge_slave") {
        is_slave   = true;
    }
    is_static=document.getElementById("static").checked
    is_management=document.getElementById("management").checked

    itable["name"]             = iname
    itable["mac_address"]      = document.getElementById("mac_address").value
    itable["interface_type"]   = type
    itable["interface_master"] = get_enabled_field("interface_master",is_slave)
    itable["bonding_opts"]     = get_enabled_field("bonding_opts",is_master)
    itable["bridge_opts"]      = get_enabled_field("bridge_opts",is_master)
    itable["static"]           = is_static
    itable["management"]       = is_management
    itable["ip_address"]       = get_enabled_field("ip_address",(!is_slave))
    itable["netmask"]          = get_enabled_field("netmask",(!is_slave) && is_static)
    itable["if_gateway"]       = get_enabled_field("if_gateway",(!is_slave) && is_static)
    itable["dns_name"]         = get_enabled_field("dns_name",!is_slave)
    itable["static_routes"]    = get_enabled_field("static_routes",!is_slave)
    itable["dhcp_tag"]         = get_enabled_field("dhcp_tag",!is_slave)
    itable["virt_bridge"]      = get_enabled_field("virt_bridge",!is_master)
    itable["present"]          = document.getElementById("present").value
    itable["original"]         = document.getElementById("original").value
    itable["mtu"]                  = get_enabled_field("mtu",!is_slave)
    itable["ipv6_address"]         = get_enabled_field("ipv6_address",!is_slave)
    itable["ipv6_prefix"]          = get_enabled_field("ipv6_prefix",!is_slave)
    itable["ipv6_secondaries"]     = get_enabled_field("ipv6_secondaries",!is_slave)
    itable["ipv6_mtu"]             = get_enabled_field("ipv6_mtu",!is_slave)
    itable["ipv6_static_routes"]   = get_enabled_field("ipv6_static_routes",!is_slave)
    itable["ipv6_default_gateway"] = get_enabled_field("ipv6_default_gateway",!is_slave)
    itable["cnames"]           = get_enabled_field("cnames",!is_slave)
}

function load_intf()
{
    // this populates the interface widget with the data for the currently selected interface
    // and is called when the user picks a certain interface from the drop-down
    // FIXME: can we load this up from the template data?
    intf = get_selected_interface()
    document.getElementById("mac_address").value      = interface_table[intf]["mac_address"]
    document.getElementById("interface_type").value   = interface_table[intf]["interface_type"]
    document.getElementById("interface_master").value = interface_table[intf]["interface_master"]
    document.getElementById("bonding_opts").value     = interface_table[intf]["bonding_opts"]
    document.getElementById("bridge_opts").value      = interface_table[intf]["bridge_opts"]
    document.getElementById("static").checked         = interface_table[intf]["static"]
    document.getElementById("management").checked     = interface_table[intf]["management"]
    document.getElementById("ip_address").value       = interface_table[intf]["ip_address"]
    document.getElementById("netmask").value          = interface_table[intf]["netmask"]
    document.getElementById("if_gateway").value       = interface_table[intf]["if_gateway"]
    document.getElementById("dns_name").value         = interface_table[intf]["dns_name"]
    document.getElementById("static_routes").value    = interface_table[intf]["static_routes"]
    document.getElementById("dhcp_tag").value         = interface_table[intf]["dhcp_tag"]
    document.getElementById("virt_bridge").value      = interface_table[intf]["virt_bridge"]
    document.getElementById("present").value          = interface_table[intf]["present"]
    document.getElementById("original").value         = interface_table[intf]["original"]
    document.getElementById("mtu").value                  = interface_table[intf]["mtu"]
    document.getElementById("ipv6_address").value         = interface_table[intf]["ipv6_address"]
    document.getElementById("ipv6_prefix").value          = interface_table[intf]["ipv6_prefix"]
    document.getElementById("ipv6_secondaries").value     = interface_table[intf]["ipv6_secondaries"]
    document.getElementById("ipv6_mtu").value             = interface_table[intf]["ipv6_mtu"]
    document.getElementById("ipv6_static_routes").value   = interface_table[intf]["ipv6_static_routes"]
    document.getElementById("ipv6_default_gateway").value = interface_table[intf]["ipv6_default_gateway"]
    document.getElementById("cnames").value           = interface_table[intf]["cnames"]

    intf_update_visibility()
}

function clear_intf()
{
    // this clears the interface list and populates it with the currently selected interface data

    document.getElementById("mac_address").value          = ""
    document.getElementById("interface_type").value       = "na"
    document.getElementById("interface_master").value     = ""
    document.getElementById("bonding_opts").value         = ""
    document.getElementById("bridge_opts").value          = ""
    document.getElementById("static").checked             = true
    document.getElementById("management").checked         = true
    document.getElementById("ip_address").value           = ""
    document.getElementById("netmask").value              = ""
    document.getElementById("if_gateway").value           = ""
    document.getElementById("dns_name").value             = ""
    document.getElementById("static_routes").value        = ""
    document.getElementById("dhcp_tag").value             = ""
    document.getElementById("virt_bridge").value          = ""
    document.getElementById("present").value              = "1"
    document.getElementById("original").value             = "0"
    document.getElementById("mtu").value                  = ""
    document.getElementById("ipv6_address").value         = ""
    document.getElementById("ipv6_prefix").value          = ""
    document.getElementById("ipv6_secondaries").value     = ""
    document.getElementById("ipv6_mtu").value             = ""
    document.getElementById("ipv6_static_routes").value   = ""
    document.getElementById("ipv6_default_gateway").value = ""
    document.getElementById("cnames").value               = ""


}

function build_interface_table()
{
    // called during onload, this stores all of the interfaces from Cheetah in javascript
    // so that we can manipulate them dynamically in more interesting ways
    interface_table = new Array()
    var last = ""
  {% smart_if interface_length > 0 %}
    var ifound = 0
    {% for key,value in interfaces.items %}
    interface_table['{{ key }}'] = new Array()
    interface_table['{{ key }}']["mac_address"]          = "{{ value.mac_address }}"
    interface_table['{{ key }}']["interface_type"]       = "{{ value.interface_type }}"
    interface_table['{{ key }}']["interface_master"]     = "{{ value.interface_master }}"
    interface_table['{{ key }}']["bonding_opts"]         = "{{ value.bonding_opts }}"
    interface_table['{{ key }}']["bridge_opts"]          = "{{ value.bridge_opts }}"
    interface_table['{{ key }}']["static"]               = {{ value.static|lower }}
    interface_table['{{ key }}']["management"]           = {{ value.management|lower }}
    interface_table['{{ key }}']["ip_address"]           = "{{ value.ip_address }}"
    interface_table['{{ key }}']["netmask"]              = "{{ value.netmask }}"
    interface_table['{{ key }}']["if_gateway"]           = "{{ value.if_gateway }}"
    interface_table['{{ key }}']["dns_name"]             = "{{ value.dns_name }}"
    interface_table['{{ key }}']["static_routes"]        = "{{ value.static_routes|join:" " }}"
    interface_table['{{ key }}']["dhcp_tag"]             = "{{ value.dhcp_tag }}"
    interface_table['{{ key }}']["virt_bridge"]          = "{{ value.virt_bridge }}"
    interface_table['{{ key }}']["present"]              = "1"
    interface_table['{{ key }}']["original"]             = "1"
    interface_table['{{ key }}']["mtu"]                  = "{{ value.mtu }}"
    interface_table['{{ key }}']["ipv6_address"]         = "{{ value.ipv6_address }}"
    interface_table['{{ key }}']["ipv6_prefix"]          = "{{ value.ipv6_prefix }}"
    interface_table['{{ key }}']["ipv6_secondaries"]     = "{{ value.ipv6_secondaries|join:" " }}"
    interface_table['{{ key }}']["ipv6_mtu"]             = "{{ value.ipv6_mtu }}"
    interface_table['{{ key }}']["ipv6_static_routes"]   = "{{ value.ipv6_static_routes|join:" " }}"
    interface_table['{{ key }}']["ipv6_default_gateway"] = "{{ value.ipv6_default_gateway }}"
    interface_table['{{ key }}']["cnames"]                = "{{ value.cnames|join:" " }}"
    last = "{{ key }}"
    {% endfor %}
  {% endsmart_if %}
    return interface_table
}

function populate_interfaces() {
    interfaces = document.getElementById("interfaces")
    ilen = interfaces.length
  {% for x in interface_names %}
    var new_option = new Option("{{ x }}","{{ x }}")
    interfaces.options[ilen] = new_option
    interfaces.selectedIndex = ilen
    ilen = ilen + 1 
  {% endfor %}
    interfaces.selectedIndex = 0
    document.getElementById("static").onchange=intf_update_visibility;
    document.getElementById("interface_type").onchange=intf_update_visibility;
}

function get_random_mac()
{
    xmlHttp = new XMLHttpRequest();
    xmlHttp.open("GET", "/cobbler_web/utils/random_mac", true);
    xmlHttp.onreadystatechange = function () {
        if (xmlHttp.readyState == 4 && xmlHttp.status == 200) {
            var mac_field = document.getElementById("mac_address")
            var result = xmlHttp.responseText;
            if (result.charAt(2) == ':' && result.charAt(5) == ':') {
                mac_field.value = result;
            }
        }
    };
    xmlHttp.send(null);
}
{% endifequal %}
function on_form_submit()
{
{% ifequal what "system" %}
    // form submission handler
    save_intf(get_selected_interface())
    var listing = ""
    for (var iname in interface_table) {
        if (listing == "") {
            listing = iname
        } else {
            listing = iname + "," + listing
        }
        for (var ikey in interface_table[iname]) {
            var field_name = ikey + "-" + iname
            var current_value = interface_table[iname][ikey]
            var new_input=document.createElement('input')
            new_input.name=field_name
            new_input.value=current_value
            new_input.style.display='none'
            document.editform.appendChild(new_input)
        }
    }
    document.getElementById("interface_list").value = listing
    document.getElementById("name").disabled= false
{% endifequal %}
    // we have to select all items all multiselects
    // so they'll be submitted and saved correctly
{% for key,value in sections.items|sort %}
  {% for item in value.fields %}
    {% ifequal item.html_element "multiselect" %}
    var cur_multi = document.getElementById("{{ item.dname }}");
    if (cur_multi) {
        for (i=0; i <= cur_multi.options.length - 1; i++) {
            cur_multi.options[i].selected = true;
        }
    }
    {% endifequal %}
  {% endfor %}
{% endfor %}
    document.editform.submit()
}

function page_onload() {
{% ifequal what "system" %}
    populate_widgets();
    interface_table = build_interface_table();
    populate_interfaces();
    last_interface = get_selected_interface();
    load_intf();
{% endifequal %}
}
</script>

<script type="text/javascript">
$(document).ready(function()
{
  //make some stuff resizeable
  $("select.edit").resizable();
  //hide the all of the element with class msg_body
  //$(".sectionbody").hide();
  //$("#block_General").show();
  //toggle the componenet with class sectionbody
  //$(".sectionheader").click(function()
  //{
  //  $(this).next(".sectionbody").slideToggle(500);
  //});
});
</script>

<script>
  $(function() {
    $("#tabs").tabs();
  });
</script>

<h1>{% ifequal editmode 'edit'  %}Editing{% else %}Adding{% endifequal %} a {{ what|capfirst }}{%ifequal editmode 'edit' %}: {{ name }}{% endifequal %}</h1>
<hr />
<form name="editform" method="post" action="/cobbler_web/{{ what }}/save">
  {% csrf_token %}
  <input type="hidden" name="editmode" value="{{ editmode }}" />
  <input type="hidden" name="subobject" value="{{ subobject }}" />

  <div>
{% if editable %}
    <input class="button" type="submit" name="submit" onClick="on_form_submit();" value="Save" />
    <input class="button" type="button" onClick="window.location='/cobbler_web/{{ what }}/list';" value="Cancel" />
{% else %}
    This user does not have permissions to edit this object.
{% endif %}
  </div>

  <div id="tabs">
    <ul>
{% for key,value in sections.items|sort %}
      <li><a href="#tabs-{{ forloop.counter }}">{{ value.name }}</a></li>
{% endfor %}
    </ul>
{% for key,value in sections.items|sort %}
    <div id="tabs-{{ forloop.counter }}">
    <ol>
  {% if what == "system" and value.name == "Networking" %}
    <li id="network_interface_add_row" class="editrow">
      <label for="network_interface_add" id="network_interface_add_caption">Add interface</label>
      <span id="network_interface_add"></span>
    </li>
    <li id="network_interface_edit_row" class="editrow">
      <label for="network_interface_edit" id="network_interface_edit_caption">Edit interface</label>
      <span id="network_interface_edit"></span>
    </li>
  {% endif %}

  {% for item in value.fields %}
    <li id="{{ item.dname }}_row" class="editrow">
      <label for="{{ item.dname }}" id="{{ item.dname }}_caption">{{ item.caption }}</label>
    {% ifequal item.html_element "text" %}
      {% smart_if editmode == "edit" and item.dname == "name" %}
      {{ item.value }} (editing, value is read-only)
      <input type="hidden" name="{{ item.dname }}" id="{{ item.dname }}" value="{{ item.value }}" />
      {% else %}
      <input type="text" name="{{ item.dname }}" id="{{ item.dname }}" value="{{ item.value }}" />
      {% endsmart_if %}
    {% endifequal %}
    {% ifequal item.html_element "textarea" %}
      <textarea name="{{ item.dname }}" id="{{ item.dname }}">{{ item.value }}</textarea>
    {% endifequal %}
    {% ifequal item.html_element "radio" %}
      {% for choice in item.choices %}
        {% ifequal item.value choice %}
      <input type="radio" name="{{ item.dname }}" id="{{ item.dname }}" value="{{ choice }}" checked="checked">{{ choice }}&nbsp;
        {% else %}
      <input type="radio" name="{{ item.dname }}" id="{{ item.dname }}" value="{{ choice }}">{{ choice }}&nbsp;
        {% endifequal %}
      {% endfor %}
    {% endifequal %}
    {% ifequal item.html_element "checkbox" %}
      {% ifequal item.value 1 %}
      <input type="checkbox" name="{{ item.dname }}" id="{{ item.dname }}" value="{{ item.dname }}" checked="checked" />
      {% else %}
      <input type="checkbox" name="{{ item.dname }}" id="{{ item.dname }}" value="{{ item.dname }}" />
      {% endifequal %}
    {% endifequal %}
    {% ifequal item.html_element "select" %}
      <select id="{{ item.dname }}" name="{{ item.dname }}">
      {% for choice in item.choices %}
        {% ifequal item.value choice %}
        <option value="{{ choice }}" selected>{{ choice }}</A>
        {% else %}
        <option value="{{ choice }}">{{ choice }}</A>
        {% endifequal %}
      {% endfor %} 
      </select>
    {% endifequal %}
    {% ifequal item.html_element "multiselect" %}
      <div class="multiselect">
        <div class="multileft">
          <label for="from_{{ item.dname }}">Available:</label>
          <br />
          <select multiple id="from_{{ item.dname }}" name="from_{{ item.dname }}" class="edit">
      {% for choice in item.choices %}
        {% smart_if choice not in item.value_raw %}
            <option value="{{ choice }}">{{ choice }}</a>
        {% endsmart_if %}
      {% endfor %} 
          </select>
        </div>
        <div class="multibuttons">
          <input class="button" type="button" value="&gt;&gt;" id="add_{{ item.dname }}" onclick="$('#from_{{ item.dname }} option:selected').remove().appendTo('#{{ item.dname }}');" />
          <input class="button" type="button" value="&lt;&lt;" id="remove_{{ item.dname }}" onclick="$('#{{ item.dname }} option:selected').remove().appendTo('#from_{{ item.dname }}');" />
        </div>
        <div class="multiright">
          <label for="{{ item.dname }}">Selected:</label>
          <br />
          <select multiple id="{{ item.dname }}" name="{{ item.dname }}" class="edit">
      {% for choice in item.choices %}
        {% smart_if choice in item.value_raw %}
            <option value="{{ choice }}">{{ choice }}</a>
        {% endsmart_if %}
      {% endfor %}
          </select>
        </div>
      </div>
    {% endifequal %}
    {% smart_if editmode == "edit" and item.dname != "name" %}
      {% if item.tooltip %}
      <span class="context-tip">{{ item.tooltip }}</span>
      {% endif %}
    {% endsmart_if %}
    </li>

    {% if what == "system" and value.name == "Networking" and item.dname == "mac_address" %}
    <li id="mac_address_generate_random_row" class="editrow">
      <label for="mac_address_generate_random" id="mac_address_generate_random_caption"></label>
      <span id="mac_address_generate_random"></span>
    </li>
    {% endif %}

  {% endfor %}
    </ol>
    </div>
{% endfor %}
  </div>

{% ifequal what "system" %}
  <input type="hidden" id="interface_list" name="interface_list" value="1" />
  <input type="hidden" id="present" name="present" value="1" />
  <input type="hidden" id="original" name="original" value="1" />
{% endifequal %}

</form>
{% endblock content %}
   070701000001B1000081A40000000000000000000000015ECE244400002811000000000000000000000000000000000000002E00000000cobbler-3.1.2/web/templates/generic_list.tmpl {% extends "master.tmpl" %}
{% load site %}
{% block content %}

<form id="action" method="POST" action="">{% csrf_token %}</form>
<script type="text/javascript">
function items_check_all(){
    var checkall = document.getElementById("itemsall").checked
    var items    = document.getElementsByName("items")
    for(i=0; i<items.length; ++i) {
        items[i].checked=checkall;
        items_check(items[i])
    }
}

function items_check(obj) {
    obj.parentNode.parentNode.className=(obj.checked)? 'selected' : '';
}

function items_checked_values() {
    var items = document.getElementsByName("items")
    var values = new Array();
    for(i=0; i<items.length; ++i) {
        if (items[i].checked) {
            values.push(items[i].value)
        }
    }
    s = values.join(" ")
    return s;
}

function obj_rename(old) {
    var newname = window.prompt("Change {{ what }} name to?",old);
    if (newname != null) {
        document.forms["action"].action = "/cobbler_web/{{ what }}/rename/" + old + "/" + newname;
        document.forms["action"].submit();
    }
}
function obj_copy(old) {
    var newname = window.prompt("Name for the new {{ what }}?",old);
    if (newname != null) {
        document.forms["action"].action = "/cobbler_web/{{ what }}/copy/" + old + "/" + newname;
        document.forms["action"].submit();
    }
}

function action(otype) {
    sel_action = document.getElementById("actions").value
    what   = sel_action.split("|")[0]
    action = sel_action.split("|")[1]
    document.location = "/cobbler_web/" + what + "/" + action
}

function action_sort(value) {
    document.forms["action"].action = '/cobbler_web/{{ what }}/modifylist/sort/' + value;
    document.forms["action"].submit();
}

function action_multi(otype) {
    var values = items_checked_values()
    if (values == "") {
       return
    }
    document.getElementById("names").value = values

    sel_batchaction = document.getElementById("batchactions").value
    action = sel_batchaction.split("|")[0]
    param  = sel_batchaction.split("|")[1]

    if (action == "profile") {
       $('#batchprofiledlg').dialog({
          title: "New installation profile name for checked systems?",
          width: 450,
          height: 150,
          buttons: {
             "Go": function() {
                param = $('#batchprofileslct').val();
                value = 1;
                document.myform.action = "/cobbler_web/" + otype + "/multi/" + action + "/" + param;
                document.myform.submit();
             },
             "Cancel": function() { 
                $('#batchprofiledlg').dialog('close');
             }
         }
    });
           return;
    }
    else {
        value = null
    }
    if ((action == "power") && (param == "on")) {
        value = confirm("Confirm: Really power up all checked systems?")
    }
    if ((action == "power") && (param == "off")) {
        value = confirm("Confirm: Really power down all checked systems?")
    }
    if ((action == "power") && (param == "reboot")) {
        value = confirm("Confirm: Really reboot all checked systems?")
    }
    if ((action == "netboot") && (param == "enable")) {
        value = confirm("Confirm: Really flag all checked systems for PXE reinstallation?")
    }
    if ((action == "netboot") && (param == "disable")) {
        value = confirm("Confirm: Really disable all checked systems for PXE reinstallation?")
    }
    if ((action == "delete" ) && (param == "delete")) {
        $('#dialog-batch' ).dialog( 'open' )
        return;
    }
    if ((action == "buildiso" ) && (param == "enable")) {
        value = confirm("Confirm: Really buildiso for all checked " + otype + "?" )
    }
    if ((action == "reposync")) {
        value = "reposync"
    }

    if (value) {
        document.myform.action = "/cobbler_web/" + otype + "/multi/" + action + "/" + param
        document.myform.submit()  
    }
    else {
        alert("Operation aborted.")
    }
}

$(document).ready(function() {
    $( "#dialog" ).dialog( {
      autoOpen: false,
      modal: true,
      height: 160,
      width: 330,
      buttons: {
        "OK": function() {
            // get item's name
            var item_name = $("#dialog").data("name");
            // check if it's to be deleted recursively or not
            var recursive = $("#recursive_delete").attr("checked");
            var new_input = document.createElement('input');
            new_input.name = "recursive";
            new_input.value = recursive;
            new_input.style.display = 'none';
            document.forms["action"].appendChild(new_input);
            document.forms["action"].action = "/cobbler_web/{{ what }}/delete/" + item_name;
            document.forms["action"].submit();
        },
        "Cancel": function() {$( this ).dialog("close");}
      }
    }
    );

    $( "#dialog-batch" ).dialog( {
      autoOpen: false,
      modal: true,
      height: 160,
      width: 370,
      buttons: {
        "OK": function() {
            // check if the selected items are to be deleted recursively or not
            var recursive = $("#recursive_delete_batch").attr("checked");
            var new_input = document.createElement('input');
            new_input.name = "recursive_batch";
            new_input.value = recursive;
            new_input.style.display = 'none';
            document.myform.appendChild(new_input);
            document.myform.action = "/cobbler_web/{{ what }}/multi/delete/delete";
            document.myform.submit();
        },
        "Cancel": function() {$( this ).dialog("close");}
      }
    }
    );
}
);

</script>

<div id="dialog">
  {% if what == "mgmtclass" %}
  <p>Are you sure you want to delete this management class?</p>
  {% else %}
  <p>Are you sure you want to delete this {{ what }}?</p>
  {% endif %}
  <table style="margin-top: 10px">
  <tbody>
    <tr>
      <td style="width: 25px"><input type="checkbox" id="recursive_delete" style="margin-right: 5px"/></td>
      <td><label style="font-weight: normal">Recursive</label></td>
    </tr>
  </tbody>
  </table>
</div>

<div id="dialog-batch">
  {% if what == "mgmtclass" %}
  <p>Are you sure you want to delete all selected management classes?</p>
  {% else %}
  <p>Are you sure you want to delete all selected {{ what }}s?</p>
  {% endif %}
  <table style="margin-top: 10px">
  <tbody>
    <tr>
      <td style="width: 25px"><input type="checkbox" id="recursive_delete_batch" style="margin-right: 5px"/></td>
      <td><label style="font-weight: normal">Recursive</label></td>
    </tr>
  </tbody>
  </table>
</div>

<div id="batchprofiledlg" style='display:none'>
  <select id="batchprofileslct">
    <option value="" selected="selected">Choose Profile</option>
    {% for profile in profiles %}<option value="{{ profile.name }}">{{ profile.name }}</option>{% endfor %}</option>
  </select>
</div>

<h1>{{ what|title }}s</h1>
<hr />
<ul id="submenubar">
  <li>
    <a class="action" href="/cobbler_web/{{what}}/edit">Create new {{ what }}</a>
    {% ifequal what "profile" %}<a class="action" href="/cobbler_web/sub{{what}}/edit">Create new sub-{{ what }}</a>{% endifequal %}
  </li>
  <li>
    <select id="batchactions">
      <option value="" selected="selected">Batch Actions</option>
      {% for title,action,value in batchactions %}<option value="{{ action }}|{{ value }}">{{ title }}</option>{% endfor %}
    </select>
    <input class="button" type="button" value="go" onclick="javascript:action_multi('{{ what }}')" />
  </li>
  {% include "paginate.tmpl" %}
</ul>

<form name="myform" method="post" action="/cobbler_web/{{ what }}/action">
  {% csrf_token %}
  <table id="listitems" cellspacing="0">
    <thead>
      <tr>
        <th>
          <input type="checkbox" id="itemsall" onclick="javascript:items_check_all();" />
        </th>
{% for value in columns %}
        <th>
          <a href="javascript:action_sort('{{ value.0 }}');">{{ value.0|title }}</a>
  {% ifequal value.1 "asc" %}
          &darr;
  {% endifequal %}
  {% ifequal value.1 "desc" %}
          &uarr;
  {% endifequal %}
        </th>
{% endfor %}
        <th>Actions</th>
      </tr>
    </thead>
    <tbody>
{% for item in items %}
      <tr class="{% cycle 'rowodd' 'roweven' %}">
        <td><input type="checkbox" name="items" value="{{ item.0.1 }}" onclick="javascript:items_check(this);" /></td>
  {% for value in item %}
        <td>
    {% ifequal value.0 "name" %}
          <a href="/cobbler_web/{{ what }}/edit/{{ value.1 }}">{{ value.1 }}</a>
    {% endifequal %}
    {% ifequal value.2 "editlink" %}
      {% ifnotequal value.1 "~" %}
          <a href="/cobbler_web/{{ value.0 }}/edit/{{ value.1 }}">{{ value.1 }}</a>
      {% endifnotequal %}
    {% endifequal %}
    {% ifequal value.2 "checkbox" %}
      {% ifequal value.1 1 %}
          <input type="checkbox" name="{{ item.name }}" id="{{ item.name }}" value="{{ item.name }}" disabled="disabled" checked="checked" />
      {% else %}
          <input type="checkbox" name="{{ item.name }}" id="{{ item.name }}" value="{{ item.name }}" disabled="disabled" />
      {% endifequal %}
    {% endifequal %}
    {% ifequal value.2 "text" %}
          {{ value.1 }}
    {% endifequal %}
        </td>
  {% endfor %}
        <td>
          <a class="action" href="/cobbler_web/{{ what }}/edit/{{ item.0.1 }}">Edit</a>
          <span class="action" onClick="javascript:obj_copy('{{ item.0.1 }}')">Copy</span> 
          <span class="action" onClick="javascript:obj_rename('{{ item.0.1 }}')">Rename</span> 
          <span class="action" onClick="javascript:$('#dialog' ).data('name', '{{ item.0.1 }}').dialog( 'open' )">Delete</span>
  {% ifequal what "system" %}
          <span class="action" onClick="window.location='/cblr/svc/op/autoinstall/system/{{ item.0.1 }}'">View automatic installation template</span>
  {% endifequal %}
  {% ifequal what "profile" %}
          <span class="action" onClick="window.location='/cblr/svc/op/autoinstall/profile/{{ item.0.1 }}'">View automatic installation template</span>
  {% endifequal %}
        </td>
      </tr>
{% endfor %}
    </tbody>
  </table>
  <input type="hidden" name="names" id="names" value=""/>
</form>
{% include "filter.tmpl" %}

{% endblock content %}
   070701000001B2000081A40000000000000000000000015ECE244400000958000000000000000000000000000000000000002800000000cobbler-3.1.2/web/templates/import.tmpl   {% extends "master.tmpl" %}

{% block content %}
<h1>DVD Importer</h1>
<hr />
<form method="post" action="/cobbler_web/import/run">
  {% csrf_token %}
  <div class="sectionbody">
  <ul>
    <li class="editrow">
      <label for="name" class="inputlabel">Prefix</label>
      <input type="text" size="128" name="name" id="name" />
      <span class="context-tip">Example:  rhel5u3, fedora11 (do not include the arch name)</span>
    </li>
    <li class="editrow">
      <label for="arch" class="inputlabel">Arch</label>
      <select name="arch" id="arch">
        <option value="i386">i386</option>
        <option value="x86_64">x86_64</option>
        <option value="ppc">ppc</option>
        <option value="ppc64">ppc64</option>
        <option value="ppc64le">ppc64le</option>
        <option value="ppc64el">ppc64el</option>
        <option value="arm">arm</option>
      </select>
      <span class="context-tip">Architecture of the DVD you are importing</span>
    </li>
    <li class="editrow">
      <label for="breed" class="inputlabel">Breed</label>
      <select name="breed" id="breed">
        <option value="redhat">Red Hat based (includes Fedora, CentOS, Scientific Linux)</option>
        <option value="debian">Debian</option>
        <option value="ubuntu">Ubuntu</option>
        <option value="suse">SUSE</option>
      </select>
      <span class="context-tip">Type of OS you are importing.  If yours is not listed here (ex: SUSE), you will have to add a distro manually.  Other distro imports may be supported in the future.  Non Red Hat based distros may require additional instructions, see the <a href="https://github.com/cobbler/cobbler/wiki">Wiki</a> for details.</span>
    </li>
    <li class="editrow">
      <label for="path" class="inputlabel">Path</label>
      <input type="text" size="128" name="path" id="path" />
      <span class="context-tip">Full path to mounted DVD contents only (ex: /mnt/cdrom).  No CD ISOs!.  Content will be copied by Cobbler to /var/www/cobbler/distro_mirror automatically and then cobbler will create distro and profile objects for each ISO imported.  If you need more control about where files are sourced or end up, create new distro and profile object manually.</span>
    </li>
    <li class="editrow">
      <input class="button" type="submit" name="submit" value="Run" />
    </li>
  </ul>
</form>
{% endblock content %}
070701000001B3000081A40000000000000000000000015ECE2444000000C7000000000000000000000000000000000000002700000000cobbler-3.1.2/web/templates/index.tmpl    {% extends "master.tmpl" %}

{% block content %}

Welcome to <a href="https://cobbler.github.io/">Cobbler {{ version }}</a>.
<p>
  Currently logged in as <b>{{ username }}</b>.
</p>

{% endblock %}

 070701000001B4000081A40000000000000000000000015ECE244400000375000000000000000000000000000000000000002600000000cobbler-3.1.2/web/templates/item.tmpl #extends cobbler.webui.master

#block body
<table class="sortable">
  <thead>
    <tr>
      <caption>$caption</caption>
      <th>Key</th>
      <th>Value</th>
    </tr>
  </thead>
  <tbody>
        #set $evenodd = 1
        #for $key,$value in $item_data.items():

            #if $evenodd % 2 == 0
                #set $tr_class = "roweven"
            #else
                #set $tr_class = "rowodd"
            #end if
            #set $evenodd += 1

    <tr class="$tr_class">
      <td>$key</td>
      <td>
            #if isinstance($value,dict):
         <ul style="list-style-type: none; margin: 0; padding: 0;">
                #for $skey,$sval in $value.items():
           <li>$skey = $sval</li>
                #end for
         </ul>
            #else
                $value
            #end if
      </td>
    </tr>
        #end for
  </tbody>
</table>
#end block body
   070701000001B5000081A40000000000000000000000015ECE24440000050D000000000000000000000000000000000000002700000000cobbler-3.1.2/web/templates/login.tmpl    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>{% block title %}Cobbler Web Interface{% endblock %}</title>
    <meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
    <link rel="stylesheet" type="text/css" media="all" href="/cobbler_webui_content/style.css" />
    <link rel="icon" type="image/png" href="/cobbler_webui_content/favicon.png" />
</head>
<body class="loginscreen">
  <div id="login">
    <img src="/cobbler_webui_content/logo-cobbler.png" width="185" />
    <form action="/cobbler_web/do_login" method="post">
      {% csrf_token %}
      {% if next %}<input type="hidden" name="next" value="{{ next|escape }}" />{% endif %}
      <div id="username">
        <label for="username">Username: </label>
        <input type="text" name="username" value="" id="username" autofocus>
      </div>
      <div id="password">
        <label for="password">Password: </label>
        <input type="password" name="password" value="" id="password">
      </div>
      <input class="button" type="submit" value="login" />
    </form>
{% if message %}
    <p class="error">{{ message }}</p>
{% endif %}
  </div>
</body>
</html>
   070701000001B6000081A40000000000000000000000015ECE24440000100B000000000000000000000000000000000000002800000000cobbler-3.1.2/web/templates/master.tmpl   <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
  <title>{% block title %}Cobbler Web Interface{% endblock %}</title>
  <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
  <link rel="stylesheet" href="/cobbler_webui_content/jquery-ui.css" type="text/css" />
  <link rel="stylesheet" type="text/css" media="all" href="/cobbler_webui_content/style.css" />
  <link rel="stylesheet" type="text/css" media="all" href="/cobbler_webui_content/jsGrowl.css" />
  <script src="/cobbler_webui_content/jquery.min.js"></script>
  <script src="/cobbler_webui_content/jquery-ui.min.js"></script>
  <script src="/cobbler_webui_content/jsGrowl.js" type="text/javascript"></script> 
  <script src="/cobbler_webui_content/jsGrowl_jquery.js" type="text/javascript"></script> 
  <script src="/cobbler_webui_content/cobbler.js" type="text/javascript"></script> 
  <link rel="icon" type="image/png" href="/cobbler_webui_content/favicon.png" />
</head>
<body onload="go_go_gadget()">
<div id="container">
  <div id="header">
    <div id="logo"><a href="/cobbler_web/"><img src="/cobbler_webui_content/logo-cobbler.png" /></a></div>
    <div id="user">
      <input type="hidden" name="username" id="username" value="{{ username }}" />
      <span>Logged in: <b>{{ username }}</b> <a class="action" href="javascript:menuaction('/cobbler_web/logout');">Logout</a></span>
    </div>
  </div>
  <div id="body">
    <div id="menubar">
      <form id="menuaction" method="POST" action="">{% csrf_token %}</form>
      <script type="text/javascript">
      function menuaction(action) {
         document.forms["menuaction"].action = action
         document.forms["menuaction"].submit();
      }
      </script>
      <h1>Configuration</h1>
      <ul>
        <li><a href="/cobbler_web/distro/list" class="edit">Distros</a></li>
        <li><a href="/cobbler_web/profile/list" class="edit">Profiles</a></li>
        <li><a href="/cobbler_web/system/list" class="edit">Systems</a></li>
        <li><a href="/cobbler_web/repo/list" class="edit">Repos</a></li>
        <li><a href="/cobbler_web/image/list" class="edit">Images</a></li>
        <li><a href="/cobbler_web/aifile/list" class="edit">Templates</a></li>
        <li><a href="/cobbler_web/snippet/list" class="edit">Snippets</a></li>
        <li><a href="/cobbler_web/mgmtclass/list" class="edit">Management Classes</a></li>
        <li><a href="/cobbler_web/setting/list" class="menu">Settings</a></li>
      </ul>
      <h1>Resources</h1>
      <ul>
        <li><a href="/cobbler_web/package/list" class="edit">Packages</a></li>
        <li><a href="/cobbler_web/file/list" class="edit">Files</a></li>
      </ul>
      <h1>Actions</h1>
      <ul>
        <li><a href="/cobbler_web/import/prompt">Import DVD</a></li>
        <li><a href="javascript:menuaction('/cobbler_web/sync');">Sync</a> ☼</li>
        <li><a href="javascript:menuaction('/cobbler_web/reposync');"">Reposync</a> ☼ </li>
        <li><a href="javascript:menuaction('/cobbler_web/hardlink');"">Hardlink</a> ☼ </li>
        <!-- <li><a href="javascript:menuaction('/cobbler_web/replicate');"">Replicate</a> ☼ </li> -->
        <li><a href="javascript:menuaction('/cobbler_web/buildiso');">Build ISO</a> ☼ </li>
      </ul>
      <h1>Cobbler</h1>
      <ul>
        <li><a href="/cobbler_web/check" class="menu">Check</a></li>
        <li><a href="/cobbler_web/events" class="menu">Events</a></li>
        <li><a href="https://cobbler.readthedocs.io/">Online Documentation</a></li>
        <li><a href="https://gitter.im/cobbler/community">Online Help Chat</a></li>
      </ul>
    </div>
    <div id="content">
  {% block content %}
      <h1 class="error">Template Failure</h1>
  {% endblock %}
    </div> <!-- content -->
    <div id="spacer">&nbsp</div>
  </div> <!-- body -->
  <div id="footer">
    <a href="https://cobbler.github.io/">Cobbler {{ version }}</a>
  </div>
  <div id="jsGrowl"></div>
</div> <!-- container -->
</body>
</html>
 070701000001B7000081A40000000000000000000000015ECE2444000005E1000000000000000000000000000000000000002A00000000cobbler-3.1.2/web/templates/paginate.tmpl {% if pageinfo %}
<script type="text/javascript">
// All of these functions depend on the form "action" defined in generic_list
function change_limit(value) {
    document.forms["action"].action = '/cobbler_web/{{ what }}/modifylist/limit/' + value
    document.forms["action"].submit();
}
function change_page(value) {
    document.forms["action"].action = '/cobbler_web/{{ what }}/modifylist/page/' + value
    document.forms["action"].submit();
}
</script>

<li class="paginate"><label for="limit">Items/page:</label>
  <select name="limit" id="limit" onchange="javascript:change_limit(this.value)">
  {% for p in pageinfo.items_per_page_list %}
    <option value="{{ p }}"{% ifequal pageinfo.items_per_page p %} selected="selected"{% endifequal %}>{{ p }}</option>
  {% endfor %}
  </select>
  {% ifnotequal pageinfo.prev_page "~" %}
  <a href="javascript:change_page('{{ pageinfo.prev_page }}')"><span class="lpointers">&lArr;</span></a>
  {% else %}
  <span class="lpointers">&lArr;</span>
  {% endifnotequal %}
  <select name="page" id="page" onchange="javascript:change_page(this.value)">
    {% for p in pageinfo.pages %}<option value="{{ p }}"{% ifequal pageinfo.page p %} selected="selected"{% endifequal %}>Page {{ p }}</option>{% endfor %}
  </select>
  {% ifnotequal pageinfo.next_page "~" %}
  <a href="javascript:change_page('{{ pageinfo.next_page }}')"><span class="rpointers">&rArr;</span></a>
  {% else %}
  <span class="rpointers">&rArr;</span>
  {% endifnotequal %}
</li>
{% endif %}
   070701000001B8000081A40000000000000000000000015ECE244400000340000000000000000000000000000000000000002A00000000cobbler-3.1.2/web/templates/settings.tmpl {% extends "master.tmpl" %}

{% block content %}
<h1>Settings</h1>
<hr />
<p>
  These settings live in /etc/cobbler/settings on the server.
  <br />
  After making changes <a href="/cobbler_web/sync">sync</a> or run "cobbler sync" from the command line then restart cobblerd.
</p>
{% if settings %}
<table id="listitems" cellspacing="0">
  <thead>
    <tr>
      <th></th>
      <th>Setting</th>
      <th>Value</th>
    </tr>
  </thead>
  <tbody>
  {% for setting,value in settings %}
    <tr class="{% cycle 'rowodd' 'roweven' %}">
      <td></td>
      <td><a href="/cobbler_web/setting/edit/{{ setting }}">{{ setting }}</a></td>
      <td>{% if value %}{{ value }}{% else %}None{% endif %}</td>
    </tr>
  {% endfor %}
  </tbody>
</table>
{% else %}
<h2 class="error">No settings found.</h2>
{% endif %}
{% endblock content %}
070701000001B9000081A40000000000000000000000015ECE244400000775000000000000000000000000000000000000002E00000000cobbler-3.1.2/web/templates/snippet_edit.tmpl {% extends 'master.tmpl' %}
{% block content %}

{% if not editable %}
<blockquote>
NOTE: You do not have permission to make changes to this
snippet and can only read it.

Contact your Cobbler server administrator
if you need to resolve this.
</blockquote>
<br />
{% endif %}
<h1>{% ifequal editmode 'edit' %}Editing{% else %}Adding{% endifequal %} a Snippet</h1>
<hr />
<form id="snippetform" method="post" action="/cobbler_web/snippet/save">
  {% csrf_token %}
  <ol>
    <li>
      <label for="snippetdata">{% if snippet_name %}Snippet: {{ snippet_name }}{% else %}Filename:{% endif %}</label>
{% ifnotequal editmode 'edit' %}
      <input type="text" name="snippet_name" id="snippet_name" />
      <span class="context-tip">Example:  some-snippet (to be saved in /var/lib/cobbler/snippets/)</span>
{% else %}
      <input type="hidden" name="snippet_name" value="{{ snippet_name }}" />
{% endifnotequal %}
    </li>
    <li>
      <pre><textarea name="snippetdata" id="snippetdata">{{ snippetdata }}</textarea></pre>
    </li>
{% if deleteable %}
    <li>
      <input type="checkbox" name="delete1" value="delete1" />
      <label class="delete" for="delete1">Delete</label>
      <br>
      <input type="checkbox" name="delete2" value="delete2" />
      <label class="delete" for="delete2">Really?</label>
      <span class="context-tip">Check both buttons and click save to delete this object</span>
    </li>
{% else %}
  {% ifequal editmode "edit" %}
    <li>
      <span class="warn">NOTE: This automatic OS installation template is currently in-use.</span>
    </li>
  {% endifequal %}
{% endif %}
{% if editable %}
    <li>
      <input type="hidden" name="editmode" value="{{ editmode }}" />
      <input class="button" type="submit" name="submit" value="Save" />
      <input class="button" type="reset" name="reset" value="Reset" />
    </li>
{% endif %}
  </ol>
</form>
{% endblock content %}
   070701000001BA000081A40000000000000000000000015ECE2444000003A9000000000000000000000000000000000000002E00000000cobbler-3.1.2/web/templates/snippet_list.tmpl {% extends 'master.tmpl' %}
{% block content %}
<h1>Cobbler Snippets</h1>
<hr />
<!-- This is kind weird, but force the name "snippet"
because we know this is the snippet page. If this gets moved
to generic_list, then it can be hacked around -->
<ul id="submenubar">
  <li><a class="action" href="/cobbler_web/{{ what }}/edit">Create new automatic installation snippet</a><li>
</ul>
<table id="listitems" cellspacing="0">
  <thead>
    <tr>
      <th></th>
      <th>File</th>
      <th>Actions</th>
    </tr>
  </thead>
  <tbody>
{% for snippet,option in snippets %}
    <tr class="{% cycle 'rowodd' 'roweven' %}">
      <td></td>
      <td>{{ snippet }}</td>
  {% if option %}
      <td>
    {% ifequal option "editable" %}<span class="action" onClick="window.location='/cobbler_web/snippet/edit/file:{{ snippet }}'">Edit</a> {% endifequal %}
      </td>
  {% endif %}
    </tr>
{% endfor %}
  </tbody>
</table>
{% endblock content %}
   070701000001BB000081A40000000000000000000000015ECE244400000144000000000000000000000000000000000000002E00000000cobbler-3.1.2/web/templates/task_created.tmpl {% extends "master.tmpl" %}

{% block content %}

<h1>Task Enqueued</h1>
<hr />

A background task has been created for the action you have initiated.  Pop-up notifications will alert you to status updates regarding this and other tasks.  You can also browse the <a href="/cobbler_web/events">Task Log</a>.

{% endblock %}

07070100000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000B00000000TRAILER!!!                                                                                                            40148 blocks
